This boundary condition provides a wall function for the turbulent viscosity (i.e. nut
) based on velocity (i.e. U
). Using Spalding's law gives a continuous nut
profile to the wall.
More...
Public Member Functions | |
TypeName ("nutUSpaldingWallFunction") | |
Runtime type information. More... | |
nutUSpaldingWallFunctionFvPatchScalarField (const fvPatch &, const DimensionedField< scalar, volMesh > &) | |
Construct from patch and internal field. More... | |
nutUSpaldingWallFunctionFvPatchScalarField (const fvPatch &, const DimensionedField< scalar, volMesh > &, const dictionary &) | |
Construct from patch, internal field and dictionary. More... | |
nutUSpaldingWallFunctionFvPatchScalarField (const nutUSpaldingWallFunctionFvPatchScalarField &, const fvPatch &, const DimensionedField< scalar, volMesh > &, const fvPatchFieldMapper &) | |
nutUSpaldingWallFunctionFvPatchScalarField (const nutUSpaldingWallFunctionFvPatchScalarField &) | |
Construct as copy. More... | |
virtual tmp< fvPatchScalarField > | clone () const |
Construct and return a clone. More... | |
nutUSpaldingWallFunctionFvPatchScalarField (const nutUSpaldingWallFunctionFvPatchScalarField &, const DimensionedField< scalar, volMesh > &) | |
Construct as copy setting internal field reference. More... | |
virtual tmp< fvPatchScalarField > | clone (const DimensionedField< scalar, volMesh > &iF) const |
Construct and return a clone setting internal field reference. More... | |
virtual | ~nutUSpaldingWallFunctionFvPatchScalarField () |
Destructor. More... | |
virtual tmp< scalarField > | yPlus () const |
Calculate and return the yPlus at the boundary. More... | |
virtual void | write (Ostream &os) const |
Write. More... | |
Public Member Functions inherited from nutWallFunctionFvPatchScalarField | |
TypeName ("nutWallFunction") | |
Runtime type information. More... | |
nutWallFunctionFvPatchScalarField (const fvPatch &, const DimensionedField< scalar, volMesh > &) | |
Construct from patch and internal field. More... | |
nutWallFunctionFvPatchScalarField (const fvPatch &, const DimensionedField< scalar, volMesh > &, const dictionary &) | |
Construct from patch, internal field and dictionary. More... | |
nutWallFunctionFvPatchScalarField (const nutWallFunctionFvPatchScalarField &, const fvPatch &, const DimensionedField< scalar, volMesh > &, const fvPatchFieldMapper &) | |
nutWallFunctionFvPatchScalarField (const nutWallFunctionFvPatchScalarField &) | |
Construct as copy. More... | |
nutWallFunctionFvPatchScalarField (const nutWallFunctionFvPatchScalarField &, const DimensionedField< scalar, volMesh > &) | |
Construct as copy setting internal field reference. More... | |
virtual tmp< scalarField > | yPlus () const =0 |
Calculate and return the yPlus at the boundary. More... | |
const wallFunctionCoefficients & | wallCoeffs () const noexcept |
Return wallFunctionCoefficients. More... | |
virtual void | updateCoeffs () |
Update the coefficients associated with the patch field. More... | |
virtual void | write (Ostream &) const |
Write. More... | |
Protected Member Functions | |
virtual tmp< scalarField > | calcNut () const |
Uncomment in case of intrumentation. More... | |
tmp< scalarField > | calcUTau (const scalarField &magGradU) const |
Calculate the friction velocity. More... | |
tmp< scalarField > | calcUTau (const scalarField &magGradU, const label maxIter, scalarField &err) const |
void | writeLocalEntries (Ostream &) const |
Write local wall function variables. More... | |
Protected Member Functions inherited from nutWallFunctionFvPatchScalarField | |
virtual const volVectorField & | U (const turbulenceModel &turb) const |
virtual void | checkType () |
Check the type of the patch. More... | |
virtual tmp< scalarField > | calcNut () const =0 |
Calculate the turbulent viscosity. More... | |
void | writeLocalEntries (Ostream &) const |
Write local wall function variables. More... | |
Protected Attributes | |
const label | maxIter_ |
Max iterations in calcNut. More... | |
const scalar | tolerance_ |
Convergence tolerance. More... | |
Protected Attributes inherited from nutWallFunctionFvPatchScalarField | |
word | UName_ |
Name of velocity field. More... | |
wallFunctionCoefficients | wallCoeffs_ |
Wall-function coefficients. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from nutWallFunctionFvPatchScalarField | |
static const nutWallFunctionFvPatchScalarField & | nutw (const turbulenceModel &turbModel, const label patchi) |
Return the nut patchField for the given wall patch. More... | |
This boundary condition provides a wall function for the turbulent viscosity (i.e. nut
) based on velocity (i.e. U
). Using Spalding's law gives a continuous nut
profile to the wall.
\[ y^+ = u^+ + \frac{1}{E} \left[exp(\kappa u^+) - 1 - \kappa u^+\, - 0.5 (\kappa u^+)^2 - \frac{1}{6} (\kappa u^+)^3\right] \]
where
\( y^+ \) | = | Wall-normal height of a cell centre in wall units |
\( u^+ \) | = | Velocity at \(y^+\) in wall units |
\( \kappa \) | = | von Karman constant |
<patchName> { // Mandatory entries type nutUSpaldingWallFunction; // Optional entries maxIter 10; tolerance 0.0001; // Inherited entries ... }
where the entries mean:
Property | Description | Type | Reqd | Deflt |
---|---|---|---|---|
type | Type name: nutUSpaldingWallFunction | word | yes | - |
maxIter | Number of Newton-Raphson iterations | label | no | 10 |
tolerance | Convergence tolerance | scalar | no | 0.0001 |
The inherited entries are elaborated in:
correctNut()
(called through turbulence->validate
) returns a slightly different value every time it is called. This is since the seed for the Newton-Raphson iteration uses the current value of *this
(=nut
).Definition at line 145 of file nutUSpaldingWallFunctionFvPatchScalarField.H.
nutUSpaldingWallFunctionFvPatchScalarField | ( | const fvPatch & | p, |
const DimensionedField< scalar, volMesh > & | iF | ||
) |
Construct from patch and internal field.
Definition at line 211 of file nutUSpaldingWallFunctionFvPatchScalarField.C.
nutUSpaldingWallFunctionFvPatchScalarField | ( | const fvPatch & | p, |
const DimensionedField< scalar, volMesh > & | iF, | ||
const dictionary & | dict | ||
) |
Construct from patch, internal field and dictionary.
Definition at line 247 of file nutUSpaldingWallFunctionFvPatchScalarField.C.
nutUSpaldingWallFunctionFvPatchScalarField | ( | const nutUSpaldingWallFunctionFvPatchScalarField & | ptf, |
const fvPatch & | p, | ||
const DimensionedField< scalar, volMesh > & | iF, | ||
const fvPatchFieldMapper & | mapper | ||
) |
Construct by mapping given nutUSpaldingWallFunctionFvPatchScalarField onto a new patch
Definition at line 228 of file nutUSpaldingWallFunctionFvPatchScalarField.C.
nutUSpaldingWallFunctionFvPatchScalarField | ( | const nutUSpaldingWallFunctionFvPatchScalarField & | wfpsf | ) |
Construct as copy.
Definition at line 265 of file nutUSpaldingWallFunctionFvPatchScalarField.C.
nutUSpaldingWallFunctionFvPatchScalarField | ( | const nutUSpaldingWallFunctionFvPatchScalarField & | wfpsf, |
const DimensionedField< scalar, volMesh > & | iF | ||
) |
Construct as copy setting internal field reference.
Definition at line 281 of file nutUSpaldingWallFunctionFvPatchScalarField.C.
|
virtual |
Destructor.
Definition at line 300 of file nutUSpaldingWallFunctionFvPatchScalarField.C.
|
protectedvirtual |
Uncomment in case of intrumentation.
mutable uint64_t invocations_; mutable uint64_t nontrivial_; mutable uint64_t nonconvergence_; mutable uint64_t iterations_; Calculate the turbulent viscosity
Implements nutWallFunctionFvPatchScalarField.
Definition at line 39 of file nutUSpaldingWallFunctionFvPatchScalarField.C.
References nutUSpaldingWallFunctionFvPatchScalarField::calcUTau(), forAll, IOobject::groupName(), Foam::mag(), Foam::max(), nutWallFunctionFvPatchScalarField::nutw(), turbulenceModel::propertiesName, tmp< T >::ref(), Foam::sqr(), nutUSpaldingWallFunctionFvPatchScalarField::tolerance_, and U.
|
protected |
Calculate the friction velocity.
Definition at line 95 of file nutUSpaldingWallFunctionFvPatchScalarField.C.
Referenced by nutUSpaldingWallFunctionFvPatchScalarField::calcNut().
|
protected |
Calculate the friction velocity and number of iterations for convergence
Definition at line 106 of file nutUSpaldingWallFunctionFvPatchScalarField.C.
References Foam::exp(), f(), forAll, IOobject::groupName(), Foam::mag(), magUp, Foam::max(), Foam::min(), Time::New(), fvPatchField< Type >::patchInternalField(), turbulenceModel::propertiesName, List< T >::setSize(), Foam::sqr(), Foam::sqrt(), U, uTau, y, and Foam::Zero.
|
protected |
Write local wall function variables.
Definition at line 199 of file nutUSpaldingWallFunctionFvPatchScalarField.C.
References os(), and Ostream::writeEntryIfDifferent().
TypeName | ( | "nutUSpaldingWallFunction" | ) |
Runtime type information.
|
inlinevirtual |
Construct and return a clone.
Definition at line 228 of file nutUSpaldingWallFunctionFvPatchScalarField.H.
|
inlinevirtual |
Construct and return a clone setting internal field reference.
Definition at line 244 of file nutUSpaldingWallFunctionFvPatchScalarField.H.
|
virtual |
Calculate and return the yPlus at the boundary.
Implements nutWallFunctionFvPatchScalarField.
Definition at line 322 of file nutUSpaldingWallFunctionFvPatchScalarField.C.
References IOobject::groupName(), Foam::mag(), turbulenceModel::propertiesName, fvPatchField< Type >::snGrad(), U, and y.
|
virtual |
Write.
Reimplemented from nutWallFunctionFvPatchScalarField.
Definition at line 346 of file nutUSpaldingWallFunctionFvPatchScalarField.C.
References os(), and ObukhovLength::write().
|
protected |
Max iterations in calcNut.
Definition at line 154 of file nutUSpaldingWallFunctionFvPatchScalarField.H.
|
protected |
Convergence tolerance.
Definition at line 157 of file nutUSpaldingWallFunctionFvPatchScalarField.H.
Referenced by nutUSpaldingWallFunctionFvPatchScalarField::calcNut().