/* DESCRIPTOR Boltzmann sample, written in C++, using the OpenLB * library * * Copyright (C) 2006-2016 Thomas Henn, Fabian Klemens, Robin Trunk, Davide Dapelo * E-mail contact: info@openlb.net * The most recent release of OpenLB can be downloaded at * * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the Free * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #ifndef PARTICLEDYNAMICS_2D_H #define PARTICLEDYNAMICS_2D_H #include "core/superLattice2D.h" #include "functors/analytical/indicator/smoothIndicatorBaseF2D.h" namespace olb { template class ParticleDynamics2D { private: SuperLattice2D& _sLattice; UnitConverter const& _converter; SuperGeometry2D& _superGeometry; std::shared_ptr > _indicatorF; std::vector* > _vectorOfIndicator; T _lengthX; T _lengthY; Vector _accExt; bool _escapeFromDomain=false; bool _oldWallCollision=true; public: ParticleDynamics2D(SuperLattice2D& sLattice, UnitConverter const& converter, SuperGeometry2D& superGeometry, T lengthX, T lengthY, Vector accExt = Vector (0.,0.)) : _sLattice(sLattice), _converter(converter), _superGeometry(superGeometry), _lengthX(lengthX), _lengthY(lengthY), _accExt(accExt) {} ParticleDynamics2D(SuperLattice2D& sLattice, UnitConverter const& converter, SuperGeometry2D& superGeometry, std::shared_ptr > indicatorF, bool escapeFromDomain, bool oldWallCollision=false, Vector accExt = Vector (0.,0.)) : _sLattice(sLattice), _converter(converter), _superGeometry(superGeometry), _indicatorF(indicatorF), _accExt(accExt), _escapeFromDomain(escapeFromDomain), _oldWallCollision(oldWallCollision) {} void addCircle(Vector< T, 2> center, T radius, T density, T epsilon, Vector vel = Vector (0.,0.)); void addCuboid(Vector< T, 2> center, T xLength, T yLength, T density, T epsilon, T theta=0, Vector vel = Vector (0.,0.)); void addTriangle(Vector< T, 2> center, T radius, T density, T epsilon, T theta, Vector vel = Vector (0.,0.)); void addParticle(SmoothIndicatorF2D& indicator); void computeBoundaryForce(std::vector* >& indicator); void addWallColl(SmoothIndicatorF2D& indicator, T delta); void verletIntegration(SmoothIndicatorF2D& indicator); void updateParticleDynamics(std::string name, SmoothIndicatorF2D& indicator); void checkAndRemoveEscaped(); void addParticleField(SmoothIndicatorF2D& indicator); void simulateTimestep(std::string name); void print(); void load(std::string filename, T epsilon); void save(std::string filename); }; } #endif