Go to the documentation of this file.
31 #include "phasePairKey.H"
32 #include "phaseSystem.H"
38 namespace wallBoilingModels
40 namespace nucleateFluxModels
55 Foam::wallBoilingModels::nucleateFluxModels::exponential::exponential
61 a_(
dict.getOrDefault<scalar>(
"a", 6309)),
62 b_(
dict.getOrDefault<scalar>(
"b", 2.52))
80 liquid.thermo().T().boundaryField()[patchi];
82 return a_*
pow(
max((Tw-Tsatw), scalar(0)), b_);
92 os.writeEntry(
"a", a_);
93 os.writeEntry(
"b", b_);
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
Single incompressible phase derived from the phase-fraction. Used as part of the multiPhaseMixture fo...
const vector L(dict.get< vector >("L"))
Base class for nucleation flux models.
A class for managing temporary objects.
virtual tmp< scalarField > qNucleate(const phaseModel &liquid, const phaseModel &vapor, const label patchi, const scalarField &Tl, const scalarField &Tsatw, const scalarField &L) const
defineTypeNameAndDebug(exponential, 0)
Generic thermophysical properties class for a liquid in which the functions and coefficients for each...
Generic templated field type.
virtual void write(Ostream &os) const
dimensionedScalar pow(const dimensionedScalar &ds, const dimensionedScalar &expt)
label max(const labelHashSet &set, label maxValue=labelMin)
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
OBJstream os(runTime.globalPath()/outputName)
Macros for easy insertion into run-time selection tables.
virtual void write(Ostream &os) const
Nucleate flux sub-cooling correlation.
addToRunTimeSelectionTable(nucleateFluxModel, exponential, dictionary)
void write(vtk::formatter &fmt, const Type &val, const label n=1)
An Ostream is an abstract base class for all output systems (streams, files, token lists,...