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_);
76template<
class CloudType>
79 const KinematicLookupTableInjection<CloudType>& im
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>
99 bitSet reject(injectors_.size());
106 !this->findCellAtPosition
109 injectorTetFaces_[i],
112 !this->ignoreOutOfBounds_
121 const label nRejected = reject.count();
132 <<
" positions rejected, out of bounds" <<
endl;
137template<
class CloudType>
140 return this->
SOI_ + duration_;
144template<
class CloudType>
151 if ((time0 >= 0.0) && (time0 < duration_))
153 return floor(injectorCells_.size()*(time1 - time0)*parcelsPerSecond_);
160template<
class CloudType>
168 if ((time0 >= 0.0) && (time0 < duration_))
172 volume += injectors_[i].mDot()/injectors_[i].rho()*(time1 - time0);
180template<
class CloudType>
184 const label nParcels,
195 Random& rnd = this->owner().
rndGen();
196 injectorI = rnd.
position<label>(0, injectorCells_.size() - 1);
200 injectorI = int64_t(parcelI)*int64_t(injectors_.size())/nParcels;
203 position = injectors_[injectorI].x();
204 cellOwner = injectorCells_[injectorI];
205 tetFacei = injectorTetFaces_[injectorI];
206 tetPti = injectorTetPts_[injectorI];
210template<
class CloudType>
214 const label nParcels,
219 label injectorI = int64_t(parcelI)*int64_t(injectors_.size())/nParcels;
222 parcel.
U() = injectors_[injectorI].U();
225 parcel.d() = injectors_[injectorI].d();
228 parcel.rho() = injectors_[injectorI].rho();
232template<
class CloudType>
239template<
class CloudType>
const CloudType & owner() const
Return const access to the owner cloud.
Random & rndGen()
Return reference to the random object.
const vector & U() const
Return const access to velocity.
Defines the attributes of an object for which implicit objectRegistry management is supported,...
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].
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.
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.
KinematicLookupTableInjection(const dictionary &dict, CloudType &owner, const word &modelName)
Construct from dictionary.
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.
Type position(const Type &start, const Type &end)
Return a sample on the interval [start,end].
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.