34template<
class CloudType>
44 duration_(this->
coeffDict().getScalar(
"duration")),
45 parcelsPerSecond_(this->
coeffDict().getScalar(
"parcelsPerSecond")),
46 randomise_(this->
coeffDict().getBool(
"randomise")),
58 injectorCells_(injectors_.size()),
59 injectorTetFaces_(injectors_.size()),
60 injectorTetPts_(injectors_.size())
64 duration_ =
owner.db().time().userTimeToTime(duration_);
70 this->
volumeTotal_ += injectors_[i].mDot()/injectors_[i].rho();
76template<
class CloudType>
83 inputFileName_(im.inputFileName_),
84 duration_(im.duration_),
85 parcelsPerSecond_(im.parcelsPerSecond_),
86 randomise_(im.randomise_),
87 injectors_(im.injectors_),
88 injectorCells_(im.injectorCells_),
89 injectorTetFaces_(im.injectorTetFaces_),
90 injectorTetPts_(im.injectorTetPts_)
96template<
class CloudType>
100 bitSet reject(injectors_.size());
107 !this->findCellAtPosition
110 injectorTetFaces_[i],
113 !this->ignoreOutOfBounds_
122 const label nRejected = reject.count();
133 <<
" positions rejected, out of bounds" <<
endl;
138template<
class CloudType>
141 return this->
SOI_ + duration_;
145template<
class CloudType>
152 if ((time0 >= 0.0) && (time0 < duration_))
154 return floor(injectorCells_.size()*(time1 - time0)*parcelsPerSecond_);
161template<
class CloudType>
169 if ((time0 >= 0.0) && (time0 < duration_))
173 volume += injectors_[i].mDot()/injectors_[i].rho()*(time1 - time0);
181template<
class CloudType>
185 const label nParcels,
196 Random& rnd = this->owner().rndGen();
197 injectorI = rnd.position<label>(0, injectorCells_.size() - 1);
201 injectorI = parcelI*injectorCells_.size()/nParcels;
204 position = injectors_[injectorI].x();
205 cellOwner = injectorCells_[injectorI];
206 tetFacei = injectorTetFaces_[injectorI];
207 tetPti = injectorTetPts_[injectorI];
211template<
class CloudType>
215 const label nParcels,
220 label injectorI = parcelI*injectorCells_.size()/nParcels;
223 parcel.U() = injectors_[injectorI].U();
226 parcel.d() = injectors_[injectorI].d();
229 parcel.rho() = injectors_[injectorI].rho();
232 parcel.T() = injectors_[injectorI].T();
235 parcel.cp() = injectors_[injectorI].cp();
239template<
class CloudType>
246template<
class CloudType>
const CloudType & owner() const
Return const access to the owner cloud.
Defines the attributes of an object for which implicit objectRegistry management is supported,...
Templated injection model class.
bool ignoreOutOfBounds_
Optional flag to indicate that injections attempted outside the mesh should be ignored.
scalar volumeTotal_
Total volume of particles introduced by this injector [m^3] Note: scaled to ensure massTotal is achie...
InjectionModel(CloudType &owner)
Construct null from owner.
virtual bool findCellAtPosition(label &celli, label &tetFacei, label &tetPti, vector &position, bool errorOnNotFound=true)
Find the cell that contains the supplied position.
scalar SOI_
Start of injection [s].
Type position(const Type &start, const Type &end)
Return a sample on the interval [start,end].
Particle injection sources read from look-up table. Each row corresponds to an injection site.
virtual scalar volumeToInject(const scalar time0, const scalar time1)
Volume of parcels to introduce relative to SOI.
virtual label parcelsToInject(const scalar time0, const scalar time1)
Number of parcels to introduce relative to SOI.
ThermoLookupTableInjection(const dictionary &dict, CloudType &owner, const word &modelName)
Construct from dictionary.
virtual void setPositionAndCell(const label parcelI, const label nParcels, const scalar time, vector &position, label &cellOwner, label &tetFacei, label &tetPti)
Set the injection position and owner cell, tetFace and tetPt.
virtual bool validInjection(const label parcelI)
Return flag to identify whether or not injection of parcelI is permitted.
virtual void setProperties(const label parcelI, const label nParcels, const scalar time, typename CloudType::parcelType &parcel)
Set the parcel properties.
virtual void updateMesh()
Set injector locations when mesh is updated.
virtual bool fullyDescribed() const
Flag to identify whether model fully describes the parcel.
scalar timeEnd() const
Return the end-of-injection time.
const Cmpt & x() const noexcept
Access to the vector x component.
A bitSet stores bits (elements with only two states) in packed internal format and supports a variety...
unsigned int count(const bool on=true) const
Count number of bits set.
void flip()
Invert all bits in the addressable region.
void set(const bitSet &bitset)
Set specified bits from another bitset.
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Lookup type of boundary radiation properties.
const dictionary & coeffDict() const
Return const access to the coefficients dictionary.
const dictionary & dict() const
Return const access to the cloud dictionary.
const word & modelName() const
Return const access to the name of the sub-model.
A Vector of values with scalar precision, where scalar is float/double depending on the compilation f...
A class for handling words, derived from Foam::string.
Different types of constants.
void inplaceSubset(const BoolListType &select, ListType &input, const bool invert=false)
Inplace extract elements of the input list when select is true.
DSMCCloud< dsmcParcel > CloudType
messageStream Info
Information stream (stdout output on master, null elsewhere).
const word GlobalIOList< Tuple2< scalar, vector > >::typeName("scalarVectorTable")
Ostream & endl(Ostream &os)
Add newline and flush stream.
#define forAll(list, i)
Loop across all elements in list.