39 template<
class BasicTurbulenceModel>
42 return exp(-3.4/
sqr(scalar(1) +
sqr(k_)/(this->
nu()*epsilon_)/50.0));
46 template<
class BasicTurbulenceModel>
55 template<
class BasicTurbulenceModel>
58 this->nut_ = Cmu_*fMu()*
sqr(k_)/epsilon_;
59 this->nut_.correctBoundaryConditions();
62 BasicTurbulenceModel::correctNut();
66 template<
class BasicTurbulenceModel>
74 dimVolume*this->rho_.dimensions()*k_.dimensions()
81 template<
class BasicTurbulenceModel>
89 dimVolume*this->rho_.dimensions()*epsilon_.dimensions()
98 template<
class BasicTurbulenceModel>
107 const word& propertiesName,
183 this->runTime_.timeName(),
196 this->runTime_.timeName(),
204 bound(k_, this->kMin_);
205 bound(epsilon_, this->epsilonMin_);
207 if (type == typeName)
209 this->printCoeffs(type);
216 template<
class BasicTurbulenceModel>
221 Cmu_.readIfPresent(this->coeffDict());
222 C1_.readIfPresent(this->coeffDict());
223 C2_.readIfPresent(this->coeffDict());
224 C3_.readIfPresent(this->coeffDict());
225 sigmak_.readIfPresent(this->coeffDict());
226 sigmaEps_.readIfPresent(this->coeffDict());
237 template<
class BasicTurbulenceModel>
240 if (!this->turbulence_)
275 C1_*alpha*rho*G*epsilon_/k_
276 -
fvm::SuSp(((2.0/3.0)*C1_ + C3_)*alpha*rho*divU, epsilon_)
277 -
fvm::Sp(C2_*f2()*alpha*rho*epsilon_/k_, epsilon_)
283 epsEqn.
ref().relax();
285 epsEqn.
ref().boundaryManipulate(epsilon_.boundaryFieldRef());
288 bound(epsilon_, this->epsilonMin_);
298 alpha*rho*G -
fvm::SuSp(2.0/3.0*alpha*rho*divU, k_)
299 -
fvm::Sp(alpha*rho*(epsilon_ + D)/k_, k_)
308 bound(k_, this->kMin_);
tmp< GeometricField< typename outerProduct< vector, Type >::type, fvPatchField, volMesh >> grad(const GeometricField< Type, fvsPatchField, surfaceMesh > &ssf)
fvMatrix< scalar > fvScalarMatrix
virtual tmp< fvScalarMatrix > epsilonSource() const
virtual bool read()
Re-read model coefficients if they have changed.
tmp< fvMatrix< Type > > Sp(const DimensionedField< scalar, volMesh > &, const GeometricField< Type, fvPatchField, volMesh > &)
void correct(GeometricField< Type, fvPatchField, volMesh > &field)
Apply correction to field.
const dimensionedScalar G
Newtonian constant of gravitation.
dimensionedSymmTensor sqr(const dimensionedVector &dv)
tmp< GeometricField< Type, fvPatchField, volMesh > > div(const GeometricField< Type, fvsPatchField, surfaceMesh > &ssf)
dimensionedScalar sqrt(const dimensionedScalar &ds)
tmp< volScalarField > magSqrGradGrad(const GeometricField< Type, fvPatchField, volMesh > &vf)
virtual void correct()
Solve the turbulence equations and correct the turbulence viscosity.
Generic dimensioned Type class.
Eddy viscosity turbulence model base class.
dimensionedSymmTensor twoSymm(const dimensionedSymmTensor &dt)
Templated abstract base class for RAS turbulence models.
void clear() const
If object pointer points to valid object:
const dimensionSet dimVolume(pow3(dimLength))
bool read(const char *, int32_t &)
dimensionedSymmTensor dev(const dimensionedSymmTensor &dt)
dimensionedScalar exp(const dimensionedScalar &ds)
tmp< fvMatrix< Type > > SuSp(const DimensionedField< scalar, volMesh > &, const GeometricField< Type, fvPatchField, volMesh > &)
A class for handling words, derived from string.
SolverPerformance< Type > solve(fvMatrix< Type > &, const dictionary &)
Solve returning the solution statistics given convergence tolerance.
tmp< fvMatrix< Type > > ddt(const GeometricField< Type, fvPatchField, volMesh > &vf)
void constrain(fvMatrix< Type > &eqn)
Apply constraints to equation.
dimensioned< scalar > magSqr(const dimensioned< Type > &)
BasicTurbulenceModel::transportModel transportModel
tmp< fvMatrix< Type > > div(const surfaceScalarField &flux, const GeometricField< Type, fvPatchField, volMesh > &vf, const word &name)
Bound the given scalar field if it has gone unbounded.
Info<< "Predicted p max-min : "<< max(p).value()<< " "<< min(p).value()<< endl;rho==max(psi *p+alphal *rhol0+((alphav *psiv+alphal *psil)-psi)*pSat, rhoMin);#1"/home/ubuntu/OpenFOAM-4.1/applications/solvers/multiphase/cavitatingFoam/alphavPsi.H"1{alphav=max(min((rho-rholSat)/(rhovSat-rholSat), scalar(1)), scalar(0));alphal=1.0-alphav;Info<< "max-min alphav: "<< max(alphav).value()<< " "<< min(alphav).value()<< endl;psiModel-> correct()
dimensioned< Type > min(const dimensioned< Type > &, const dimensioned< Type > &)
tmp< surfaceScalarField > absolute(const tmp< surfaceScalarField > &tphi, const volVectorField &U)
Return the given relative flux in absolute form.
volScalarField & bound(volScalarField &, const dimensionedScalar &lowerBound)
Bound the given scalar field if it has gone unbounded.
fileName::Type type(const fileName &)
Return the file type: DIRECTORY or FILE.
tmp< fvMatrix< Type > > laplacian(const GeometricField< Type, fvPatchField, volMesh > &vf, const word &name)
virtual tmp< fvScalarMatrix > kSource() const
BasicTurbulenceModel::rhoField rhoField
BasicTurbulenceModel::alphaField alphaField
tmp< volScalarField > f2() const
const dimensionSet dimTime(0, 0, 1, 0, 0, 0, 0)
volScalarField divU(fvc::div(fvc::absolute(phi, U)))
virtual void correctNut()
A class for managing temporary objects.
static options & New(const fvMesh &mesh)
Construct fvOptions and register to datbase if not present.
T & ref() const
Return non-const reference or generate a fatal error.
const dimensionedScalar alpha
Fine-structure constant: default SI units: [].
tmp< volScalarField > fMu() const
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
Launder and Sharma low-Reynolds k-epsilon turbulence model for incompressible and compressible and co...