Kinematic parcel class with one/two-way coupling with the continuous phase. More...
#include <lagrangianIntermediate/KinematicParcel.H>
Kinematic parcel class with one/two-way coupling with the continuous phase.
Definition at line 76 of file KinematicParcel.H.
Classes | |
class | constantProperties |
Class to hold kinematic particle constant properties. More...
| |
class | trackData |
Class used to pass kinematic tracking data to the trackToFace function. More...
| |
Public Member Functions | |
TypeName ("KinematicParcel") | |
Runtime type information.
| |
KinematicParcel (KinematicCloud< ParcelType > &owner, const vector &position, const label cellI) | |
Construct from owner, position, and cloud owner.
| |
KinematicParcel (KinematicCloud< ParcelType > &owner, const vector &position, const label cellI, const label typeId, const scalar nParticle0, const scalar d0, const vector &U0, const constantProperties &constProps) | |
Construct from components.
| |
KinematicParcel (const Cloud< ParcelType > &c, Istream &is, bool readFields=true) | |
Construct from Istream.
| |
KinematicParcel (const KinematicParcel &p) | |
Construct as a copy.
| |
autoPtr< KinematicParcel > | clone () const |
Construct and return a clone.
| |
bool | active () const |
Return const access to active flag.
| |
label | typeId () const |
Return const access to type id.
| |
scalar | nParticle () const |
Return const access to number of particles.
| |
scalar | d () const |
Return const access to diameter.
| |
const vector & | U () const |
Return const access to velocity.
| |
scalar | rho () const |
Return const access to density.
| |
scalar | tTurb () const |
Return const access to time spent in turbulent eddy.
| |
const vector & | UTurb () const |
Return const access to turbulent velocity fluctuation.
| |
bool & | active () |
Return const access to active flag.
| |
label | typeId () |
Return access to type id.
| |
scalar & | nParticle () |
Return access to number of particles.
| |
scalar & | d () |
Return access to diameter.
| |
vector & | U () |
Return access to velocity.
| |
scalar & | rho () |
Return access to density.
| |
scalar & | tTurb () |
Return access to time spent in turbulent eddy.
| |
vector & | UTurb () |
Return access to turbulent velocity fluctuation.
| |
scalar | wallImpactDistance (const vector &n) const |
The nearest distance to a wall that.
| |
label | faceInterpolation () const |
Return the index of the face to be used in the interpolation.
| |
scalar | massCell (const label cellI) const |
Cell owner mass.
| |
scalar | mass () const |
Particle mass.
| |
scalar | volume () const |
Particle volume.
| |
scalar | volume (const scalar d) const |
Particle volume for a given diameter.
| |
scalar | areaP () const |
Particle projected area.
| |
scalar | areaP (const scalar d) const |
Projected area for given diameter.
| |
scalar | areaS () const |
Particle surface area.
| |
scalar | areaS (const scalar d) const |
Surface area for given diameter.
| |
scalar | Re (const vector &U, const scalar d, const scalar rhoc, const scalar muc) const |
Reynolds number.
| |
template<class TrackData > | |
void | setCellValues (TrackData &td, const scalar dt, const label cellI) |
Set cell values.
| |
template<class TrackData > | |
void | cellValueSourceCorrection (TrackData &td, const scalar dt, const label cellI) |
Correct cell values using latest transfer information.
| |
template<class TrackData > | |
void | calc (TrackData &td, const scalar dt, const label cellI) |
Update parcel properties over the time interval.
| |
template<class TrackData > | |
bool | move (TrackData &td) |
Move the parcel.
| |
template<class TrackData > | |
bool | hitPatch (const polyPatch &p, TrackData &td, const label patchI) |
Overridable function to handle the particle hitting a patch.
| |
bool | hitPatch (const polyPatch &p, int &td, const label patchI) |
Overridable function to handle the particle hitting a patch.
| |
template<class TrackData > | |
void | hitProcessorPatch (const processorPolyPatch &, TrackData &td) |
Overridable function to handle the particle hitting a.
| |
void | hitProcessorPatch (const processorPolyPatch &, int &) |
Overridable function to handle the particle hitting a.
| |
template<class TrackData > | |
void | hitWallPatch (const wallPolyPatch &, TrackData &td) |
Overridable function to handle the particle hitting a wallPatch.
| |
void | hitWallPatch (const wallPolyPatch &, int &) |
Overridable function to handle the particle hitting a wallPatch.
| |
template<class TrackData > | |
void | hitPatch (const polyPatch &, TrackData &td) |
Overridable function to handle the particle hitting a polyPatch.
| |
void | hitPatch (const polyPatch &, int &) |
void | transformProperties (const tensor &T) |
Transform the physical properties of the particle.
| |
void | transformProperties (const vector &separation) |
Transform the physical properties of the particle.
| |
Static Public Member Functions | |
static void | readFields (Cloud< ParcelType > &c) |
Read.
| |
static void | writeFields (const Cloud< ParcelType > &c) |
Write.
| |
Static Public Attributes | |
static string | propHeader = " (UTurbx UTurby UTurbz)" |
String representation of properties.
| |
Protected Member Functions | |
template<class TrackData > | |
const vector | calcVelocity (TrackData &td, const scalar dt, const label cellI, const scalar Re, const scalar mu, const scalar d, const vector &U, const scalar rho, const scalar mass, const vector &Su, vector &dUTrans) const |
Calculate new particle velocity.
| |
Protected Attributes | |
bool | active_ |
Active flag - tracking inactive when active = false.
| |
label | typeId_ |
Parcel type id.
| |
scalar | nParticle_ |
Number of particles in Parcel.
| |
scalar | d_ |
Diameter [m].
| |
vector | U_ |
Velocity of Parcel [m/s].
| |
scalar | rho_ |
Density [kg/m3].
| |
scalar | tTurb_ |
Time spent in turbulent eddy [s].
| |
vector | UTurb_ |
Turbulent velocity fluctuation [m/s].
| |
scalar | rhoc_ |
Density [kg/m3].
| |
vector | Uc_ |
Velocity [m/s].
| |
scalar | muc_ |
Viscosity [Pa.s].
| |
Friends | |
class | Cloud< ParcelType > |
Ostream & | operator (Ostream &, const KinematicParcel< ParcelType > &) |
KinematicParcel | ( | KinematicCloud< ParcelType > & | owner, |
const vector & | position, | ||
const label | cellI | ||
) | [inline]
|
Construct from owner, position, and cloud owner.
Other properties initialised as null
Definition at line 69 of file KinematicParcelI.H.
Referenced by KinematicParcel< BasicReactingParcel< ThermoType > >::clone().
KinematicParcel | ( | KinematicCloud< ParcelType > & | owner, |
const vector & | position, | ||
const label | cellI, | ||
const label | typeId, | ||
const scalar | nParticle0, | ||
const scalar | d0, | ||
const vector & | U0, | ||
const constantProperties & | constProps | ||
) | [inline]
|
Construct from components.
Definition at line 92 of file KinematicParcelI.H.
KinematicParcel | ( | const Cloud< ParcelType > & | c, |
Istream & | is, | ||
bool | readFields = true
|
||
) |
Construct from Istream.
Definition at line 50 of file KinematicParcelIO.C.
References Foam::readBool(), and readScalar.
KinematicParcel | ( | const KinematicParcel< ParcelType > & | p ) |
Construct as a copy.
const Foam::vector calcVelocity | ( | TrackData & | td, |
const scalar | dt, | ||
const label | cellI, | ||
const scalar | Re, | ||
const scalar | mu, | ||
const scalar | d, | ||
const vector & | U, | ||
const scalar | rho, | ||
const scalar | mass, | ||
const vector & | Su, | ||
vector & | dUTrans | ||
) | const [protected]
|
Calculate new particle velocity.
Definition at line 156 of file KinematicParcel.C.
References IntegrationScheme< Type >::integrationResult::average(), Foam::meshTools::constrainDirection(), d, mesh, polyMesh::solutionD(), Foam::fvc::Su(), and IntegrationScheme< Type >::integrationResult::value().
TypeName | ( | "KinematicParcel< ParcelType >" | ) |
Runtime type information.
autoPtr<KinematicParcel> clone | ( | ) | const [inline]
|
Construct and return a clone.
Reimplemented from Particle< ParcelType >.
Reimplemented in CoalParcel< ThermoType >, basicKinematicParcel, BasicReactingMultiphaseParcel< ThermoType >, BasicReactingParcel< ThermoType >, basicThermoParcel, ReactingMultiphaseParcel< ParcelType >, ReactingParcel< ParcelType >, ThermoParcel< ParcelType >, ReactingMultiphaseParcel< BasicReactingMultiphaseParcel< ThermoType > >, ReactingMultiphaseParcel< CoalParcel< ThermoType > >, ReactingParcel< BasicReactingMultiphaseParcel< ThermoType > >, ReactingParcel< CoalParcel< ThermoType > >, ReactingParcel< BasicReactingParcel< ThermoType > >, ThermoParcel< BasicReactingMultiphaseParcel< ThermoType > >, ThermoParcel< basicThermoParcel >, ThermoParcel< CoalParcel< ThermoType > >, and ThermoParcel< BasicReactingParcel< ThermoType > >.
Definition at line 304 of file KinematicParcel.H.
bool active | ( | ) | const [inline]
|
Return const access to active flag.
Definition at line 205 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::active_.
Referenced by KinematicParcel< ParcelType >::writeFields().
Foam::label typeId | ( | ) | const [inline]
|
Return const access to type id.
Definition at line 212 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::typeId_.
Referenced by KinematicParcel< ParcelType >::writeFields().
Foam::scalar nParticle | ( | ) | const [inline]
|
Return const access to number of particles.
Definition at line 219 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::nParticle_.
Referenced by KinematicParcel< ParcelType >::writeFields().
Foam::scalar d | ( | ) | const [inline]
|
Return const access to diameter.
Definition at line 226 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::d_.
Referenced by KinematicParcel< ParcelType >::areaS(), and KinematicParcel< ParcelType >::writeFields().
const Foam::vector & U | ( | ) | const [inline]
|
Return const access to velocity.
Definition at line 233 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::U_.
Referenced by KinematicParcel< ParcelType >::writeFields().
Foam::scalar rho | ( | ) | const [inline]
|
Return const access to density.
Definition at line 240 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::rho_.
Referenced by KinematicParcel< ParcelType >::writeFields().
Foam::scalar tTurb | ( | ) | const [inline]
|
Return const access to time spent in turbulent eddy.
Definition at line 247 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::tTurb_.
Referenced by KinematicParcel< ParcelType >::writeFields().
const Foam::vector & UTurb | ( | ) | const [inline]
|
Return const access to turbulent velocity fluctuation.
Definition at line 254 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::UTurb_.
Referenced by KinematicParcel< ParcelType >::writeFields().
bool & active | ( | ) | [inline]
|
Return const access to active flag.
Definition at line 261 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::active_.
Foam::label typeId | ( | ) | [inline]
|
Return access to type id.
Definition at line 268 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::typeId_.
Foam::scalar & nParticle | ( | ) | [inline]
|
Return access to number of particles.
Definition at line 275 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::nParticle_.
Foam::scalar & d | ( | ) | [inline]
|
Return access to diameter.
Definition at line 282 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::d_.
Foam::vector & U | ( | ) | [inline]
|
Return access to velocity.
Definition at line 289 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::U_.
Foam::scalar & rho | ( | ) | [inline]
|
Return access to density.
Definition at line 296 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::rho_.
Foam::scalar & tTurb | ( | ) | [inline]
|
Return access to time spent in turbulent eddy.
Definition at line 303 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::tTurb_.
Foam::vector & UTurb | ( | ) | [inline]
|
Return access to turbulent velocity fluctuation.
Definition at line 310 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::UTurb_.
Foam::scalar wallImpactDistance | ( | const vector & | n ) | const [inline]
|
The nearest distance to a wall that.
the particle can be in the n direction
Reimplemented from Particle< ParcelType >.
Definition at line 318 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::d_.
Foam::label faceInterpolation | ( | ) | const [inline]
|
Return the index of the face to be used in the interpolation.
routine
Reimplemented from Particle< ParcelType >.
Definition at line 327 of file KinematicParcelI.H.
References Particle< ParcelType >::cloud(), and Particle< ParcelType >::face().
Foam::scalar massCell | ( | const label | cellI ) | const [inline]
|
Cell owner mass.
Definition at line 343 of file KinematicParcelI.H.
References primitiveMesh::cellVolumes(), Particle< ParcelType >::cloud(), Cloud< ParticleType >::pMesh(), and KinematicParcel< ParcelType >::rhoc_.
Foam::scalar mass | ( | ) | const [inline]
|
Particle mass.
Definition at line 352 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::rho_, and KinematicParcel< ParcelType >::volume().
Foam::scalar volume | ( | ) | const [inline]
|
Particle volume.
Definition at line 359 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::d_.
Referenced by KinematicParcel< ParcelType >::mass().
Foam::scalar volume | ( | const scalar | d ) | const [inline]
|
Particle volume for a given diameter.
Definition at line 367 of file KinematicParcelI.H.
References Foam::mathematicalConstant::pi(), and Foam::pow3().
Foam::scalar areaP | ( | ) | const [inline]
|
Particle projected area.
Definition at line 374 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::d_.
Foam::scalar areaP | ( | const scalar | d ) | const [inline]
|
Projected area for given diameter.
Definition at line 382 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::areaS().
Foam::scalar areaS | ( | ) | const [inline]
|
Particle surface area.
Definition at line 389 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::d_.
Referenced by KinematicParcel< ParcelType >::areaP().
Foam::scalar areaS | ( | const scalar | d ) | const [inline]
|
Surface area for given diameter.
Definition at line 397 of file KinematicParcelI.H.
References KinematicParcel< ParcelType >::d(), and Foam::mathematicalConstant::pi().
Foam::scalar Re | ( | const vector & | U, |
const scalar | d, | ||
const scalar | rhoc, | ||
const scalar | muc | ||
) | const [inline]
|
Reynolds number.
Definition at line 406 of file KinematicParcelI.H.
References Foam::mag(), and KinematicParcel< ParcelType >::Uc_.
void setCellValues | ( | TrackData & | td, |
const scalar | dt, | ||
const label | cellI | ||
) |
Set cell values.
Reimplemented in ReactingMultiphaseParcel< ParcelType >, ReactingParcel< ParcelType >, ThermoParcel< ParcelType >, ReactingMultiphaseParcel< BasicReactingMultiphaseParcel< ThermoType > >, ReactingMultiphaseParcel< CoalParcel< ThermoType > >, ReactingParcel< BasicReactingMultiphaseParcel< ThermoType > >, ReactingParcel< CoalParcel< ThermoType > >, ReactingParcel< BasicReactingParcel< ThermoType > >, ThermoParcel< BasicReactingMultiphaseParcel< ThermoType > >, ThermoParcel< basicThermoParcel >, ThermoParcel< CoalParcel< ThermoType > >, and ThermoParcel< BasicReactingParcel< ThermoType > >.
Definition at line 33 of file KinematicParcel.C.
References Foam::endl(), Foam::nl, and WarningIn.
void cellValueSourceCorrection | ( | TrackData & | td, |
const scalar | dt, | ||
const label | cellI | ||
) |
Correct cell values using latest transfer information.
Reimplemented in ReactingMultiphaseParcel< ParcelType >, ReactingParcel< ParcelType >, ThermoParcel< ParcelType >, ReactingMultiphaseParcel< BasicReactingMultiphaseParcel< ThermoType > >, ReactingMultiphaseParcel< CoalParcel< ThermoType > >, ReactingParcel< BasicReactingMultiphaseParcel< ThermoType > >, ReactingParcel< CoalParcel< ThermoType > >, ReactingParcel< BasicReactingParcel< ThermoType > >, ThermoParcel< BasicReactingMultiphaseParcel< ThermoType > >, ThermoParcel< basicThermoParcel >, ThermoParcel< CoalParcel< ThermoType > >, and ThermoParcel< BasicReactingParcel< ThermoType > >.
Definition at line 76 of file KinematicParcel.C.
void calc | ( | TrackData & | td, |
const scalar | dt, | ||
const label | cellI | ||
) |
Update parcel properties over the time interval.
Reimplemented in ReactingMultiphaseParcel< ParcelType >, ReactingParcel< ParcelType >, ThermoParcel< ParcelType >, ReactingMultiphaseParcel< BasicReactingMultiphaseParcel< ThermoType > >, ReactingMultiphaseParcel< CoalParcel< ThermoType > >, ReactingParcel< BasicReactingMultiphaseParcel< ThermoType > >, ReactingParcel< CoalParcel< ThermoType > >, ReactingParcel< BasicReactingParcel< ThermoType > >, ThermoParcel< BasicReactingMultiphaseParcel< ThermoType > >, ThermoParcel< basicThermoParcel >, ThermoParcel< CoalParcel< ThermoType > >, and ThermoParcel< BasicReactingParcel< ThermoType > >.
Definition at line 89 of file KinematicParcel.C.
References Foam::Re(), and Foam::fvc::Su().
bool move | ( | TrackData & | td ) |
Move the parcel.
Definition at line 231 of file KinematicParcel.C.
References polyMesh::boundaryMesh(), Foam::meshTools::constrainToMeshCentre(), TimeState::deltaTValue(), mesh, Foam::min(), p, and objectRegistry::time().
bool hitPatch | ( | const polyPatch & | p, |
TrackData & | td, | ||
const label | patchI | ||
) |
Overridable function to handle the particle hitting a patch.
Executed before other patch-hitting functions
Reimplemented from Particle< ParcelType >.
Definition at line 295 of file KinematicParcel.C.
References p.
bool hitPatch | ( | const polyPatch & | p, |
int & | td, | ||
const label | patchI | ||
) |
Overridable function to handle the particle hitting a patch.
Executed before other patch-hitting functions without trackData
Definition at line 317 of file KinematicParcel.C.
void hitProcessorPatch | ( | const processorPolyPatch & | , |
TrackData & | td | ||
) |
Overridable function to handle the particle hitting a.
processorPatch
Reimplemented from Particle< ParcelType >.
Definition at line 330 of file KinematicParcel.C.
void hitProcessorPatch | ( | const processorPolyPatch & | , |
int & | |||
) |
Overridable function to handle the particle hitting a.
processorPatch without trackData
Definition at line 341 of file KinematicParcel.C.
void hitWallPatch | ( | const wallPolyPatch & | wpp, |
TrackData & | td | ||
) |
Overridable function to handle the particle hitting a wallPatch.
Reimplemented from Particle< ParcelType >.
Definition at line 351 of file KinematicParcel.C.
void hitWallPatch | ( | const wallPolyPatch & | , |
int & | |||
) |
Overridable function to handle the particle hitting a wallPatch.
without trackData
Definition at line 362 of file KinematicParcel.C.
void hitPatch | ( | const polyPatch & | , |
TrackData & | td | ||
) |
Overridable function to handle the particle hitting a polyPatch.
Reimplemented from Particle< ParcelType >.
Definition at line 372 of file KinematicParcel.C.
void hitPatch | ( | const polyPatch & | , |
int & | |||
) |
Overridable function to handle the particle hitting a polyPatch without trackData
Definition at line 382 of file KinematicParcel.C.
void transformProperties | ( | const tensor & | T ) | [virtual]
|
Transform the physical properties of the particle.
according to the given transformation tensor
Reimplemented from Particle< ParcelType >.
Definition at line 387 of file KinematicParcel.C.
References Foam::transform(), and Particle< ParticleType >::transformProperties().
void transformProperties | ( | const vector & | separation ) | [virtual]
|
Transform the physical properties of the particle.
according to the given separation vector
Reimplemented from Particle< ParcelType >.
Definition at line 396 of file KinematicParcel.C.
References Particle< ParticleType >::transformProperties().
void readFields | ( | Cloud< ParcelType > & | c ) | [static]
|
Read.
Reimplemented from Particle< ParcelType >.
Reimplemented in ReactingMultiphaseParcel< ParcelType >, ReactingParcel< ParcelType >, ThermoParcel< ParcelType >, ReactingMultiphaseParcel< BasicReactingMultiphaseParcel< ThermoType > >, ReactingMultiphaseParcel< CoalParcel< ThermoType > >, ReactingParcel< BasicReactingMultiphaseParcel< ThermoType > >, ReactingParcel< CoalParcel< ThermoType > >, ReactingParcel< BasicReactingParcel< ThermoType > >, ThermoParcel< BasicReactingMultiphaseParcel< ThermoType > >, ThermoParcel< basicThermoParcel >, ThermoParcel< CoalParcel< ThermoType > >, and ThermoParcel< BasicReactingParcel< ThermoType > >.
Definition at line 109 of file KinematicParcelIO.C.
References Cloud< ParticleType >::checkFieldIOobject(), d, Cloud< ParticleType >::fieldIOobject(), forAllIter, p, Foam::readFields(), rho, Cloud< ParticleType >::size(), and U.
void writeFields | ( | const Cloud< ParcelType > & | c ) | [static]
|
Write.
Reimplemented from Particle< ParcelType >.
Reimplemented in ReactingMultiphaseParcel< ParcelType >, ReactingParcel< ParcelType >, ThermoParcel< ParcelType >, ReactingMultiphaseParcel< BasicReactingMultiphaseParcel< ThermoType > >, ReactingMultiphaseParcel< CoalParcel< ThermoType > >, ReactingParcel< BasicReactingMultiphaseParcel< ThermoType > >, ReactingParcel< CoalParcel< ThermoType > >, ReactingParcel< BasicReactingParcel< ThermoType > >, ThermoParcel< BasicReactingMultiphaseParcel< ThermoType > >, ThermoParcel< basicThermoParcel >, ThermoParcel< CoalParcel< ThermoType > >, and ThermoParcel< BasicReactingParcel< ThermoType > >.
Definition at line 162 of file KinematicParcelIO.C.
References KinematicParcel< ParcelType >::active(), KinematicParcel< ParcelType >::d(), d, Cloud< ParticleType >::fieldIOobject(), forAllConstIter, KinematicParcel< ParcelType >::nParticle(), p, KinematicParcel< ParcelType >::rho(), rho, Cloud< ParticleType >::size(), KinematicParcel< ParcelType >::tTurb(), KinematicParcel< ParcelType >::typeId(), KinematicParcel< ParcelType >::U(), U, KinematicParcel< ParcelType >::UTurb(), and regIOobject::write().
friend class Cloud< ParcelType > [friend]
|
Reimplemented in ReactingMultiphaseParcel< ParcelType >, ReactingParcel< ParcelType >, ThermoParcel< ParcelType >, ReactingMultiphaseParcel< BasicReactingMultiphaseParcel< ThermoType > >, ReactingMultiphaseParcel< CoalParcel< ThermoType > >, ReactingParcel< BasicReactingMultiphaseParcel< ThermoType > >, ReactingParcel< CoalParcel< ThermoType > >, ReactingParcel< BasicReactingParcel< ThermoType > >, ThermoParcel< BasicReactingMultiphaseParcel< ThermoType > >, ThermoParcel< basicThermoParcel >, ThermoParcel< CoalParcel< ThermoType > >, and ThermoParcel< BasicReactingParcel< ThermoType > >.
Definition at line 265 of file KinematicParcel.H.
Ostream& operator | ( | Ostream & | , |
const KinematicParcel< ParcelType > & | |||
) | [friend]
|
bool active_ [protected]
|
Active flag - tracking inactive when active = false.
Definition at line 198 of file KinematicParcel.H.
Referenced by KinematicParcel< ParcelType >::active().
label typeId_ [protected]
|
Parcel type id.
Definition at line 201 of file KinematicParcel.H.
Referenced by KinematicParcel< ParcelType >::typeId().
scalar nParticle_ [protected]
|
Number of particles in Parcel.
Definition at line 204 of file KinematicParcel.H.
Referenced by KinematicParcel< ParcelType >::nParticle().
scalar d_ [protected]
|
Diameter [m].
Definition at line 207 of file KinematicParcel.H.
Referenced by KinematicParcel< ParcelType >::areaP(), KinematicParcel< ParcelType >::areaS(), KinematicParcel< ParcelType >::d(), KinematicParcel< ParcelType >::volume(), and KinematicParcel< ParcelType >::wallImpactDistance().
Velocity of Parcel [m/s].
Definition at line 210 of file KinematicParcel.H.
Referenced by KinematicParcel< ParcelType >::U().
scalar rho_ [protected]
|
Density [kg/m3].
Definition at line 213 of file KinematicParcel.H.
Referenced by KinematicParcel< ParcelType >::mass(), and KinematicParcel< ParcelType >::rho().
scalar tTurb_ [protected]
|
Time spent in turbulent eddy [s].
Definition at line 216 of file KinematicParcel.H.
Referenced by KinematicParcel< ParcelType >::tTurb().
Turbulent velocity fluctuation [m/s].
Definition at line 219 of file KinematicParcel.H.
Referenced by KinematicParcel< ParcelType >::UTurb().
scalar rhoc_ [protected]
|
Density [kg/m3].
Definition at line 225 of file KinematicParcel.H.
Referenced by KinematicParcel< ParcelType >::massCell().
Velocity [m/s].
Definition at line 228 of file KinematicParcel.H.
Referenced by KinematicParcel< ParcelType >::Re().
scalar muc_ [protected]
|
Viscosity [Pa.s].
Definition at line 231 of file KinematicParcel.H.
Foam::string propHeader = " (UTurbx UTurby UTurbz)" [static]
|
String representation of properties.
Reimplemented from Particle< ParcelType >.
Reimplemented in ReactingMultiphaseParcel< ParcelType >, ReactingParcel< ParcelType >, ThermoParcel< ParcelType >, ReactingMultiphaseParcel< BasicReactingMultiphaseParcel< ThermoType > >, ReactingMultiphaseParcel< CoalParcel< ThermoType > >, ReactingParcel< BasicReactingMultiphaseParcel< ThermoType > >, ReactingParcel< CoalParcel< ThermoType > >, ReactingParcel< BasicReactingParcel< ThermoType > >, ThermoParcel< BasicReactingMultiphaseParcel< ThermoType > >, ThermoParcel< basicThermoParcel >, ThermoParcel< CoalParcel< ThermoType > >, and ThermoParcel< BasicReactingParcel< ThermoType > >.
Definition at line 259 of file KinematicParcel.H.