Particle-drag model wherein drag forces (per unit carrier-fluid velocity) are dynamically computed using empirical expressions based on their level of contamination. More...
#include <TomiyamaDragForce.H>


Public Types | |
| enum | contaminationType : char { PURE = 0 , SLIGHT , FULL } |
| Options for the contamination types. More... | |
| Public Types inherited from ParticleForce< CloudType > | |
| typedef VectorSpace< Vector< vector >, vector, 2 > | returnType |
| Convenience typedef for return type. | |
Public Member Functions | |
| TypeName ("TomiyamaDrag") | |
| Runtime type information. | |
| TomiyamaDragForce (CloudType &owner, const fvMesh &mesh, const dictionary &dict) | |
| Construct from mesh. | |
| TomiyamaDragForce (const TomiyamaDragForce< CloudType > &df) | |
| Copy construct. | |
| virtual autoPtr< ParticleForce< CloudType > > | clone () const |
| Construct and return a clone. | |
| void | operator= (const TomiyamaDragForce< CloudType > &)=delete |
| No copy assignment. | |
| virtual | ~TomiyamaDragForce ()=default |
| Destructor. | |
| 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 coupled force. | |
| Public Member Functions inherited from ParticleForce< CloudType > | |
| TypeName ("particleForce") | |
| Runtime type information. | |
| declareRunTimeSelectionTable (autoPtr, ParticleForce, dictionary,(CloudType &owner, const fvMesh &mesh, const dictionary &dict),(owner, mesh, dict)) | |
| Declare runtime constructor selection table. | |
| ParticleForce (CloudType &owner, const fvMesh &mesh, const dictionary &dict, const word &forceType, const bool readCoeffs) | |
| Construct from mesh. | |
| ParticleForce (const ParticleForce &pf) | |
| Construct copy. | |
| virtual | ~ParticleForce () |
| Destructor. | |
| const CloudType & | owner () const noexcept |
| Return const access to the cloud owner. | |
| CloudType & | owner () noexcept |
| Return reference to the cloud owner. | |
| const fvMesh & | mesh () const noexcept |
| Return the mesh database. | |
| const dictionary & | coeffs () const noexcept |
| Return the force coefficients dictionary. | |
| virtual void | cacheFields (const bool store) |
| Cache fields. | |
| 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. | |
| virtual scalar | massAdd (const typename CloudType::parcelType &p, const typename CloudType::parcelType::trackingData &td, const scalar mass) const |
| Return the added mass. | |
Static Public Attributes | |
| static const Enum< contaminationType > | contaminationTypeNames |
| Names for the contaminationType options. | |
Additional Inherited Members | |
| 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. | |
Particle-drag model wherein drag forces (per unit carrier-fluid velocity) are dynamically computed using empirical expressions based on their level of contamination.
![\[ \mathrm{F}_\mathrm{D} =
\frac{3}{4}
\frac{\mu_c\,\mathrm{C}_\mathrm{D}\,\mathrm{Re}_p}{\rho_p \, d_p^2}
\]](form_593.png)
For pure systems:
![\[ \mathrm{C}_\mathrm{D} =
\max\left[
\min\left(\frac{16}{Re}(1+0.15Re^{0.687}), \frac{48}{Re}\right),
\frac{8}{3}\frac{Eo}{Eo+4}
\right]
\]](form_634.png)
For slightly contaminated systems:
![\[ \mathrm{C}_\mathrm{D} =
\max\left[
\min\left(\frac{24}{Re}(1+0.15Re^{0.687}), \frac{72}{Re}\right),
\frac{8}{3}\frac{Eo}{Eo+4}
\right]
\]](form_635.png)
For fully contaminated systems:
![\[ \mathrm{C}_\mathrm{D} =
\max\left[
\frac{24}{Re}(1+0.15Re^{0.687}),
\frac{8}{3}\frac{Eo}{Eo+4}
\right]
\]](form_636.png)
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 |
![]() | = | Eotvos number |
Constraints:
References:
Tomiyama, A., Kataoka, I., Zun, I., & Sakaguchi, T. (1998).
Drag coefficients of single bubbles under normal and micro gravity
conditions.
JSME International Journal Series B
Fluids and Thermal Engineering, 41(2), 472-479.
constant/<CloudProperties>: subModels
{
particleForces
{
tomiyamaDrag
{
// Mandatory entries
sigma <scalar>;
contamination <word>; // pure | slight | full
}
}
}
where the entries mean:
| Property | Description | Type | Reqd | Deflt |
|---|---|---|---|---|
type | Type name: tomiyamaDrag | word | yes | - |
sigma | Surface tension | scalar | yes | - |
contamination | Contamination type | word | yes | - |
Options for the contamination entry:
pure | Pure systems
slight | Slightly contaminated systems
full | Fully contaminated systems

Definition at line 207 of file TomiyamaDragForce.H.
| enum contaminationType : char |
Options for the contamination types.
| Enumerator | |
|---|---|
| PURE | "Pure systems" |
| SLIGHT | "Slightly contaminated systems" |
| FULL | "Fully contaminated systems" |
Definition at line 218 of file TomiyamaDragForce.H.
| TomiyamaDragForce | ( | CloudType & | owner, |
| const fvMesh & | mesh, | ||
| const dictionary & | dict ) |
Construct from mesh.
Definition at line 70 of file TomiyamaDragForce.C.
References ParticleForce< CloudType >::coeffs(), contaminationTypeNames, dict, Foam::GlobalIOList< Tuple2< scalar, vector > >::typeName, ParticleForce< CloudType >::mesh(), ParticleForce< CloudType >::owner(), and ParticleForce< CloudType >::ParticleForce().
Referenced by clone(), operator=(), TomiyamaDragForce(), and TypeName().


Copy construct.
Definition at line 87 of file TomiyamaDragForce.C.
References ParticleForce< CloudType >::ParticleForce(), and TomiyamaDragForce().

|
virtualdefault |
| TypeName | ( | "TomiyamaDrag" | ) |
Runtime type information.
References dict, ParticleForce< CloudType >::mesh(), ParticleForce< CloudType >::owner(), and TomiyamaDragForce().

|
inlinevirtual |
Construct and return a clone.
Reimplemented from ParticleForce< CloudType >.
Definition at line 282 of file TomiyamaDragForce.H.
References TomiyamaDragForce().

|
delete |
|
virtual |
Calculate the coupled force.
Reimplemented from ParticleForce< CloudType >.
Definition at line 101 of file TomiyamaDragForce.C.
References Foam::max(), p, Foam::Re(), Foam::sqr(), td(), and Foam::Zero.

|
static |
Names for the contaminationType options.
Definition at line 228 of file TomiyamaDragForce.H.
Referenced by TomiyamaDragForce().