Liquid evaporation model. More...
#include <lagrangianIntermediate/LiquidEvaporation.H>
Liquid evaporation model.
Definition at line 48 of file LiquidEvaporation.H.
Public Member Functions | |
TypeName ("LiquidEvaporation") | |
Runtime type information. | |
LiquidEvaporation (const dictionary &dict, CloudType &cloud) | |
Construct from dictionary. | |
virtual | ~LiquidEvaporation () |
Destructor. | |
virtual bool | active () const |
Flag to indicate whether model activates phase change model. | |
virtual void | calculate (const scalar dt, const label cellI, const scalar Re, const scalar d, const scalar nu, const scalar T, const scalar Ts, const scalar pc, scalarField &dMassPC) const |
Update model. | |
![]() | |
TypeName ("PhaseChangeModel") | |
Runtime type information. | |
declareRunTimeSelectionTable (autoPtr, PhaseChangeModel, dictionary,(const dictionary &dict, CloudType &owner),(dict, owner)) | |
Declare runtime constructor selection table. | |
PhaseChangeModel (CloudType &owner) | |
Construct null from owner. | |
PhaseChangeModel (const dictionary &dict, CloudType &owner, const word &type) | |
Construct from dictionary. | |
virtual | ~PhaseChangeModel () |
Destructor. | |
const CloudType & | owner () const |
Return the owner cloud object. | |
const dictionary & | dict () const |
Return the cloud dictionary. | |
const dictionary & | coeffDict () const |
Return the coefficient dictionary. | |
const enthalpyTransferType & | enthalpyTransfer () const |
Return the enthalpy transfer type enumeration. |
Protected Member Functions | |
scalar | Sh (const scalar Re, const scalar Sc) const |
Sherwood number as a function of Reynolds and Schmidt numbers. | |
scalarField | calcXc (const label cellI) const |
Calculate the carrier phase component volume fractions at cellI. | |
![]() | |
enthalpyTransferType | wordToEnthalpyTransfer (const word &etName) const |
Convert word to enthalpy transfer type. | |
scalar | Sh () const |
Sherwood number. |
Protected Attributes | |
autoPtr< liquidMixture > | liquids_ |
Global liquid properties data. | |
List< word > | activeLiquids_ |
List of active liquid names. | |
List< label > | liqToCarrierMap_ |
Mapping between liquid and carrier species. | |
List< label > | liqToLiqMap_ |
Mapping between local and global liquid species. | |
![]() | |
const dictionary & | dict_ |
The cloud dictionary. | |
CloudType & | owner_ |
Reference to the owner cloud class. | |
const dictionary | coeffDict_ |
The coefficient dictionary. | |
enthalpyTransferType | enthalpyTransfer_ |
Enthalpy transfer type enumeration. |
Additional Inherited Members | |
![]() | |
enum | enthalpyTransferType { etLatentHeat, etEnthalpyDifference } |
Enthalpy transfer type. More... | |
![]() | |
static autoPtr < PhaseChangeModel< CloudType > > | New (const dictionary &dict, CloudType &owner) |
Selector. | |
![]() | |
static const Foam::wordList | enthalpyTransferTypeNames |
Name representations of enthalpy transfer types. |
LiquidEvaporation | ( | const dictionary & | dict, |
CloudType & | cloud | ||
) |
Construct from dictionary.
Definition at line 66 of file LiquidEvaporation.C.
References Foam::endl(), forAll, Foam::nl, and WarningIn.
|
virtual |
Destructor.
Definition at line 119 of file LiquidEvaporation.C.
|
protected |
Sherwood number as a function of Reynolds and Schmidt numbers.
Definition at line 53 of file LiquidEvaporation.C.
References Foam::cbrt(), and Foam::sqrt().
|
protected |
Calculate the carrier phase component volume fractions at cellI.
Definition at line 34 of file LiquidEvaporation.C.
References forAll, Foam::sum(), and Y.
TypeName | ( | "LiquidEvaporation< CloudType >" | ) |
Runtime type information.
|
virtual |
Flag to indicate whether model activates phase change model.
Implements PhaseChangeModel< CloudType >.
Definition at line 126 of file LiquidEvaporation.C.
|
virtual |
Update model.
Implements PhaseChangeModel< CloudType >.
Definition at line 134 of file LiquidEvaporation.C.
References A, forAll, Foam::max(), Foam::mathematicalConstant::pi(), pSat, sqr(), and Ts().
|
protected |
Global liquid properties data.
Definition at line 57 of file LiquidEvaporation.H.
List of active liquid names.
Definition at line 60 of file LiquidEvaporation.H.
|
protected |
Mapping between liquid and carrier species.
Definition at line 63 of file LiquidEvaporation.H.
|
protected |
Mapping between local and global liquid species.
Definition at line 66 of file LiquidEvaporation.H.