Particle-drag model wherein drag forces (per unit carrier-fluid velocity) are dynamically computed based on empirical expressions using a four-parameter general drag correlation for non-spherical particles. More...


Public Member Functions | |
| TypeName ("nonSphereDrag") | |
| Runtime type information. More... | |
| NonSphereDragForce (CloudType &owner, const fvMesh &mesh, const dictionary &dict) | |
| Construct from mesh. More... | |
| NonSphereDragForce (const NonSphereDragForce< CloudType > &df) | |
| Construct copy. More... | |
| virtual autoPtr< ParticleForce< CloudType > > | clone () const |
| Construct and return a clone. More... | |
| void | operator= (const NonSphereDragForce< CloudType > &)=delete |
| No copy assignment. More... | |
| virtual | ~NonSphereDragForce ()=default |
| Destructor. More... | |
| virtual forceSuSp | calcCoupled (const typename CloudType::parcelType &p, const typename CloudType::parcelType::trackingData &td, const scalar dt, const scalar mass, const scalar Re, const scalar muc) const |
| Calculate the non-coupled force. More... | |
Public Member Functions inherited from ParticleForce< CloudType > | |
| TypeName ("particleForce") | |
| Runtime type information. More... | |
| declareRunTimeSelectionTable (autoPtr, ParticleForce, dictionary,(CloudType &owner, const fvMesh &mesh, const dictionary &dict),(owner, mesh, dict)) | |
| Declare runtime constructor selection table. More... | |
| ParticleForce (CloudType &owner, const fvMesh &mesh, const dictionary &dict, const word &forceType, const bool readCoeffs) | |
| Construct from mesh. More... | |
| ParticleForce (const ParticleForce &pf) | |
| Construct copy. More... | |
| virtual | ~ParticleForce () |
| Destructor. More... | |
| const CloudType & | owner () const noexcept |
| Return const access to the cloud owner. More... | |
| CloudType & | owner () noexcept |
| Return reference to the cloud owner. More... | |
| const fvMesh & | mesh () const noexcept |
| Return the mesh database. More... | |
| const dictionary & | coeffs () const noexcept |
| Return the force coefficients dictionary. More... | |
| virtual void | cacheFields (const bool store) |
| Cache fields. More... | |
| virtual forceSuSp | calcNonCoupled (const typename CloudType::parcelType &p, const typename CloudType::parcelType::trackingData &td, const scalar dt, const scalar mass, const scalar Re, const scalar muc) const |
| Calculate the non-coupled force. More... | |
| virtual scalar | massAdd (const typename CloudType::parcelType &p, const typename CloudType::parcelType::trackingData &td, const scalar mass) const |
| Return the added mass. More... | |
Protected Member Functions | |
| scalar | CdRe (const scalar Re) const |
| Drag coefficient multiplied by Reynolds number. More... | |
Protected Attributes | |
| scalar | phi_ |
| Ratio of surface of sphere having same volume as particle to actual surface area of particle (0 < phi <= 1) More... | |
| scalar | a_ |
| scalar | b_ |
| scalar | c_ |
| scalar | d_ |
Additional Inherited Members | |
Public Types inherited from ParticleForce< CloudType > | |
| typedef VectorSpace< Vector< vector >, vector, 2 > | returnType |
| Convenience typedef for return type. More... | |
Static Public Member Functions inherited from ParticleForce< CloudType > | |
| static autoPtr< ParticleForce< CloudType > > | New (CloudType &owner, const fvMesh &mesh, const dictionary &dict, const word &forceType) |
| Selector. More... | |
Particle-drag model wherein drag forces (per unit carrier-fluid velocity) are dynamically computed based on empirical expressions using a four-parameter general drag correlation for non-spherical particles.
with
where
where
| = | Drag force per carrier-fluid velocity [kg/s] |
| = | Particle drag coefficient |
| = | Particle Reynolds number |
| = | Particle mass density |
| = | Dynamic viscosity of carrier at the cell occupying particle |
| = | Particle diameter |
| = | Density of carrier at the cell occupying particle |
| = | Relative velocity between particle and carrier |
| = | Surface area of sphere with the same volume as the particle |
| = | Actual surface area of the particle |
| = | Ratio of surface areas |
Constraints:

References:
Standard model (tag:HL), (Eq. 4,10-11):
Haider, A., & Levenspiel, O. (1989).
Drag coefficient and terminal velocity of
spherical and nonspherical particles.
Powder technology, 58(1), 63-70.
DOI:10.1016/0032-5910(89)80008-7constant/<CloudProperties>: subModels
{
particleForces
{
nonSphereDrag
{
phi <phi>;
}
}
}
where the entries mean:
| Property | Description | Type | Reqd | Deflt |
|---|---|---|---|---|
type | Type name: nonSphereDrag | word | yes | - |
phi | Ratio of surface area of sphere having same volume as particle to actual surface area of particle | scalar | yes | - |
phi is presumed constant, Eq. 12 offers little benefit.
is weighted with the particle mass at the stage of a function return, so that it can later be normalised with the effective mass, if necessary (e.g. when using virtual-mass forces).Definition at line 220 of file NonSphereDragForce.H.
| NonSphereDragForce | ( | CloudType & | owner, |
| const fvMesh & | mesh, | ||
| const dictionary & | dict | ||
| ) |
Construct from mesh.
Definition at line 38 of file NonSphereDragForce.C.
References Foam::exit(), Foam::FatalError, and FatalErrorInFunction.

| NonSphereDragForce | ( | const NonSphereDragForce< CloudType > & | df | ) |
Construct copy.
Definition at line 63 of file NonSphereDragForce.C.
|
virtualdefault |
Destructor.
|
protected |
Drag coefficient multiplied by Reynolds number.
Definition at line 27 of file NonSphereDragForce.C.
References Foam::pow(), and Foam::Re().

| TypeName | ( | "nonSphereDrag" | ) |
Runtime type information.
|
inlinevirtual |
Construct and return a clone.
Reimplemented from ParticleForce< CloudType >.
Definition at line 282 of file NonSphereDragForce.H.
|
delete |
No copy assignment.
|
virtual |
Calculate the non-coupled force.
Reimplemented from ParticleForce< CloudType >.
Definition at line 80 of file NonSphereDragForce.C.
References p, Foam::Re(), Foam::sqr(), and Foam::Zero.

|
protected |
Ratio of surface of sphere having same volume as particle to actual surface area of particle (0 < phi <= 1)
Definition at line 232 of file NonSphereDragForce.H.
|
protected |
Definition at line 237 of file NonSphereDragForce.H.
|
protected |
Definition at line 239 of file NonSphereDragForce.H.
|
protected |
Definition at line 241 of file NonSphereDragForce.H.
|
protected |
Definition at line 243 of file NonSphereDragForce.H.