/usr/include/palabos/particles/particle2D.h is in libplb-dev 1.5~r1+repack1-2build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | /* This file is part of the Palabos library.
*
* Copyright (C) 2011-2015 FlowKit Sarl
* Route d'Oron 2
* 1010 Lausanne, Switzerland
* E-mail contact: contact@flowkit.com
*
* The most recent release of Palabos can be downloaded at
* <http://www.palabos.org/>
*
* The library Palabos is free software: you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The library 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef PARTICLE_2D_H
#define PARTICLE_2D_H
#include "core/globalDefs.h"
#include "core/array.h"
#include "atomicBlock/blockLattice2D.h"
#include <vector>
namespace plb {
template<typename T, template<typename U> class Descriptor>
class Particle2D {
public:
Particle2D();
/// The tag does not need to be unique and exists only for the
/// user's convenience.
Particle2D(plint tag_, Array<T,2> const& position_);
virtual ~Particle2D() { }
virtual void velocityToParticle(TensorField2D<T,2>& velocityField, T scaling=1.) =0;
virtual void rhoBarJtoParticle(NTensorField2D<T>& rhoBarJfield, bool velIsJ, T scaling=1.) =0;
virtual void fluidToParticle(BlockLattice2D<T,Descriptor>& fluid, T scaling=1.) =0;
virtual void advance() =0;
Array<T,2> const& getPosition() const { return position; }
Array<T,2>& getPosition() { return position; }
virtual void reset(Array<T,2> const& position);
virtual void serialize(HierarchicSerializer& serializer) const;
virtual void unserialize(HierarchicUnserializer& unserializer);
/// Return a unique ID for this class.
virtual int getId() const =0;
/// Return this particle's tag (not necessarily unique).
plint getTag() const;
/// Set a tag for this particle (not necessarily unique).
void setTag(plint tag_);
virtual Particle2D<T,Descriptor>* clone() const =0;
virtual bool getScalar(plint whichScalar, T& scalar) const;
virtual bool setScalar(plint whichScalar, T scalar);
virtual bool getVector(plint whichVector, Array<T,2>& vector) const;
virtual bool setVector(plint whichVector, Array<T,2> const& vector);
virtual bool getTensor(plint whichVector, Array<T,SymmetricTensorImpl<T,2>::n>& tensor) const;
virtual bool setTensor(plint whichVector, Array<T,SymmetricTensorImpl<T,2>::n> const& tensor);
virtual bool setScalars(std::vector<T> const& scalars);
virtual bool setVectors(std::vector<Array<T,2> > const& vectors);
virtual bool setTensors(std::vector<Array<T,SymmetricTensorImpl<T,2>::n> > const& tensors);
virtual void rescale(int dxScale, int dtScale);
private:
plint tag;
Array<T,2> position;
};
/// Serialize the whole particle chain into a byte-stream, and append it to
/// the vector data.
template<typename T, template<typename U> class Descriptor>
void serialize(Particle2D<T,Descriptor> const& particle, std::vector<char>& data);
/// Unserialize all data into newly generated particle objects.
template<typename T, template<typename U> class Descriptor>
void generateAndUnserializeParticles (
std::vector<char> const& data,
std::vector<Particle2D<T,Descriptor>*>& particle );
template<typename T, template<typename U> class Descriptor>
class PointParticle2D : public Particle2D<T,Descriptor> {
public:
PointParticle2D();
PointParticle2D(plint tag_, Array<T,2> const& position_, Array<T,2> const& velocity_);
virtual void velocityToParticle(TensorField2D<T,2>& velocityField, T scaling=1.);
virtual void rhoBarJtoParticle(NTensorField2D<T>& rhoBarJfield, bool velIsJ, T scaling=1.);
virtual void fluidToParticle(BlockLattice2D<T,Descriptor>& fluid, T scaling=1.);
virtual void advance();
virtual void serialize(HierarchicSerializer& serializer) const;
virtual void unserialize(HierarchicUnserializer& unserializer);
virtual int getId() const;
virtual void reset(Array<T,2> const& position);
virtual PointParticle2D<T,Descriptor>* clone() const;
virtual bool getVector(plint whichVector, Array<T,2>& vector) const;
virtual bool setVectors(std::vector<Array<T,2> > const& vectors);
virtual void rescale(int dxScale, int dtScale);
Array<T,2> const& getVelocity() const { return velocity; }
Array<T,2>& getVelocity() { return velocity; }
private:
Array<T,2> velocity;
static int id;
};
template<typename T, template<typename U> class Descriptor>
class NormedVelocityParticle2D : public PointParticle2D<T,Descriptor> {
public:
NormedVelocityParticle2D();
NormedVelocityParticle2D(plint tag_, Array<T,2> const& position_, Array<T,2> const& velocity_,
T fluidUmax_, T particleUmax_, T exponent_);
virtual void advance();
virtual void serialize(HierarchicSerializer& serializer) const;
virtual void unserialize(HierarchicUnserializer& unserializer);
virtual NormedVelocityParticle2D<T,Descriptor>* clone() const;
virtual void rescale(int dxScale, int dtScale);
virtual int getId() const;
private:
T fluidUmax, particleUmax, exponent;
static int id;
};
/* *************** class RestParticle2D ************************************ */
template<typename T, template<typename U> class Descriptor>
class RestParticle2D : public Particle2D<T,Descriptor> {
public:
RestParticle2D();
RestParticle2D( plint tag_, Array<T,2> const& position );
virtual void velocityToParticle(TensorField2D<T,2>& velocityField, T scaling=1.);
virtual void rhoBarJtoParticle(NTensorField2D<T>& rhoBarJfield, bool velIsJ, T scaling=1.);
virtual void fluidToParticle(BlockLattice2D<T,Descriptor>& fluid, T scaling=1.);
virtual void advance();
virtual int getId() const;
virtual RestParticle2D<T,Descriptor>* clone() const;
virtual bool getVector(plint whichVector, Array<T,2>& vector) const;
private:
static int id;
};
/* *************** class VerletParticle2D ************************************ */
template<typename T, template<typename U> class Descriptor>
class VerletParticle2D : public Particle2D<T,Descriptor> {
public:
VerletParticle2D();
VerletParticle2D( plint tag_, Array<T,2> const& position );
virtual void velocityToParticle(TensorField2D<T,2>& velocityField, T scaling=1.);
virtual void rhoBarJtoParticle(NTensorField2D<T>& rhoBarJfield, bool velIsJ, T scaling=1.);
virtual void fluidToParticle(BlockLattice2D<T,Descriptor>& fluid, T scaling=1.);
/// Implements "steps 1 and 2" of the Rest algorithm: given
/// x(t), v(t), and a(t), it computes v(t+1/2) and x(t+1).
virtual void advance();
virtual void serialize(HierarchicSerializer& serializer) const;
virtual void unserialize(HierarchicUnserializer& unserializer);
virtual int getId() const;
virtual void reset(Array<T,2> const& position);
virtual VerletParticle2D<T,Descriptor>* clone() const;
virtual bool getVector(plint whichVector, Array<T,2>& vector) const;
virtual bool getScalar(plint whichScalar, T& scalar) const;
Array<T,2> const& get_v() const { return v; }
Array<T,2> const& get_vHalfTime() const { return vHalfTime; }
Array<T,2> const& get_a() const { return a; }
T getFluidCompliance() const { return fluidCompliance; }
T get_rho() const { return rho; }
T get_invRho() const { return invRho; }
void set_v(Array<T,2> const& v_) { v = v_; }
void set_vHalfTime(Array<T,2> const& vHalfTime_) { vHalfTime = vHalfTime_; }
void set_a(Array<T,2> const& a_) { a = a_; }
void setFluidCompliance(T fluidCompliance_) { fluidCompliance = fluidCompliance_; }
void set_rho(T rho_) { rho=rho_; invRho = 1./rho; }
private:
Array<T,2> v, vHalfTime, a;
T fluidCompliance;
T rho, invRho;
static int id;
};
template<typename T, template<typename U> class Descriptor>
class VerletGeryaParticle2D : public VerletParticle2D<T,Descriptor> {
public:
VerletGeryaParticle2D();
VerletGeryaParticle2D(plint tag_, Array<T,2> const& position_,
T fluidConcentration_);
//virtual void advance();
virtual void serialize(HierarchicSerializer& serializer) const;
virtual void unserialize(HierarchicUnserializer& unserializer);
virtual VerletGeryaParticle2D<T,Descriptor>* clone() const;
virtual int getId() const;
virtual void reset(Array<T,2> const& position);
T getFluidConcentration() ;
void setFluidConcentration(T fluidConcentration_) ;
private:
T fluidConcentration;
static int id;
};
} // namespace plb
#endif // PARTICLE_2D_H
|