tidying - using rasModel to provide fields instead of db lookup, and cache yPlusLam_
This commit is contained in:
parent
a1d6fdf994
commit
c03788a9d3
@ -40,7 +40,7 @@ namespace incompressible
|
|||||||
namespace RASModels
|
namespace RASModels
|
||||||
{
|
{
|
||||||
|
|
||||||
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
|
||||||
|
|
||||||
void omegaWallFunctionFvPatchScalarField::checkType()
|
void omegaWallFunctionFvPatchScalarField::checkType()
|
||||||
{
|
{
|
||||||
@ -56,6 +56,32 @@ void omegaWallFunctionFvPatchScalarField::checkType()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
scalar omegaWallFunctionFvPatchScalarField::calcYPlusLam
|
||||||
|
(
|
||||||
|
const scalar kappa,
|
||||||
|
const scalar E
|
||||||
|
) const
|
||||||
|
{
|
||||||
|
scalar ypl = 11.0;
|
||||||
|
|
||||||
|
for (int i=0; i<10; i++)
|
||||||
|
{
|
||||||
|
ypl = log(E*ypl)/kappa;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ypl;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void omegaWallFunctionFvPatchScalarField::writeLocalEntries(Ostream& os) const
|
||||||
|
{
|
||||||
|
writeEntryIfDifferent<word>(os, "G", "RASModel::G", GName_);
|
||||||
|
os.writeKeyword("Cmu") << Cmu_ << token::END_STATEMENT << nl;
|
||||||
|
os.writeKeyword("kappa") << kappa_ << token::END_STATEMENT << nl;
|
||||||
|
os.writeKeyword("E") << E_ << token::END_STATEMENT << nl;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
omegaWallFunctionFvPatchScalarField::omegaWallFunctionFvPatchScalarField
|
omegaWallFunctionFvPatchScalarField::omegaWallFunctionFvPatchScalarField
|
||||||
@ -65,14 +91,11 @@ omegaWallFunctionFvPatchScalarField::omegaWallFunctionFvPatchScalarField
|
|||||||
)
|
)
|
||||||
:
|
:
|
||||||
fixedInternalValueFvPatchField<scalar>(p, iF),
|
fixedInternalValueFvPatchField<scalar>(p, iF),
|
||||||
UName_("U"),
|
|
||||||
kName_("k"),
|
|
||||||
GName_("RASModel::G"),
|
GName_("RASModel::G"),
|
||||||
nuName_("nu"),
|
|
||||||
nutName_("nut"),
|
|
||||||
Cmu_(0.09),
|
Cmu_(0.09),
|
||||||
kappa_(0.41),
|
kappa_(0.41),
|
||||||
E_(9.8)
|
E_(9.8),
|
||||||
|
yPlusLam_(calcYPlusLam(kappa_, E_))
|
||||||
{
|
{
|
||||||
checkType();
|
checkType();
|
||||||
}
|
}
|
||||||
@ -87,14 +110,11 @@ omegaWallFunctionFvPatchScalarField::omegaWallFunctionFvPatchScalarField
|
|||||||
)
|
)
|
||||||
:
|
:
|
||||||
fixedInternalValueFvPatchField<scalar>(ptf, p, iF, mapper),
|
fixedInternalValueFvPatchField<scalar>(ptf, p, iF, mapper),
|
||||||
UName_(ptf.UName_),
|
|
||||||
kName_(ptf.kName_),
|
|
||||||
GName_(ptf.GName_),
|
GName_(ptf.GName_),
|
||||||
nuName_(ptf.nuName_),
|
|
||||||
nutName_(ptf.nutName_),
|
|
||||||
Cmu_(ptf.Cmu_),
|
Cmu_(ptf.Cmu_),
|
||||||
kappa_(ptf.kappa_),
|
kappa_(ptf.kappa_),
|
||||||
E_(ptf.E_)
|
E_(ptf.E_),
|
||||||
|
yPlusLam_(ptf.yPlusLam_)
|
||||||
{
|
{
|
||||||
checkType();
|
checkType();
|
||||||
}
|
}
|
||||||
@ -108,14 +128,11 @@ omegaWallFunctionFvPatchScalarField::omegaWallFunctionFvPatchScalarField
|
|||||||
)
|
)
|
||||||
:
|
:
|
||||||
fixedInternalValueFvPatchField<scalar>(p, iF, dict),
|
fixedInternalValueFvPatchField<scalar>(p, iF, dict),
|
||||||
UName_(dict.lookupOrDefault<word>("U", "U")),
|
|
||||||
kName_(dict.lookupOrDefault<word>("k", "k")),
|
|
||||||
GName_(dict.lookupOrDefault<word>("G", "RASModel::G")),
|
GName_(dict.lookupOrDefault<word>("G", "RASModel::G")),
|
||||||
nuName_(dict.lookupOrDefault<word>("nu", "nu")),
|
|
||||||
nutName_(dict.lookupOrDefault<word>("nut", "nut")),
|
|
||||||
Cmu_(dict.lookupOrDefault<scalar>("Cmu", 0.09)),
|
Cmu_(dict.lookupOrDefault<scalar>("Cmu", 0.09)),
|
||||||
kappa_(dict.lookupOrDefault<scalar>("kappa", 0.41)),
|
kappa_(dict.lookupOrDefault<scalar>("kappa", 0.41)),
|
||||||
E_(dict.lookupOrDefault<scalar>("E", 9.8))
|
E_(dict.lookupOrDefault<scalar>("E", 9.8)),
|
||||||
|
yPlusLam_(calcYPlusLam(kappa_, E_))
|
||||||
{
|
{
|
||||||
checkType();
|
checkType();
|
||||||
}
|
}
|
||||||
@ -127,14 +144,11 @@ omegaWallFunctionFvPatchScalarField::omegaWallFunctionFvPatchScalarField
|
|||||||
)
|
)
|
||||||
:
|
:
|
||||||
fixedInternalValueFvPatchField<scalar>(owfpsf),
|
fixedInternalValueFvPatchField<scalar>(owfpsf),
|
||||||
UName_(owfpsf.UName_),
|
|
||||||
kName_(owfpsf.kName_),
|
|
||||||
GName_(owfpsf.GName_),
|
GName_(owfpsf.GName_),
|
||||||
nuName_(owfpsf.nuName_),
|
|
||||||
nutName_(owfpsf.nutName_),
|
|
||||||
Cmu_(owfpsf.Cmu_),
|
Cmu_(owfpsf.Cmu_),
|
||||||
kappa_(owfpsf.kappa_),
|
kappa_(owfpsf.kappa_),
|
||||||
E_(owfpsf.E_)
|
E_(owfpsf.E_),
|
||||||
|
yPlusLam_(owfpsf.yPlusLam_)
|
||||||
{
|
{
|
||||||
checkType();
|
checkType();
|
||||||
}
|
}
|
||||||
@ -147,14 +161,12 @@ omegaWallFunctionFvPatchScalarField::omegaWallFunctionFvPatchScalarField
|
|||||||
)
|
)
|
||||||
:
|
:
|
||||||
fixedInternalValueFvPatchField<scalar>(owfpsf, iF),
|
fixedInternalValueFvPatchField<scalar>(owfpsf, iF),
|
||||||
UName_(owfpsf.UName_),
|
|
||||||
kName_(owfpsf.kName_),
|
|
||||||
GName_(owfpsf.GName_),
|
GName_(owfpsf.GName_),
|
||||||
nuName_(owfpsf.nuName_),
|
|
||||||
nutName_(owfpsf.nutName_),
|
|
||||||
Cmu_(owfpsf.Cmu_),
|
Cmu_(owfpsf.Cmu_),
|
||||||
kappa_(owfpsf.kappa_),
|
kappa_(owfpsf.kappa_),
|
||||||
E_(owfpsf.E_)
|
E_(owfpsf.E_),
|
||||||
|
yPlusLam_(owfpsf.yPlusLam_)
|
||||||
|
|
||||||
{
|
{
|
||||||
checkType();
|
checkType();
|
||||||
}
|
}
|
||||||
@ -169,28 +181,32 @@ void omegaWallFunctionFvPatchScalarField::updateCoeffs()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const label patchI = patch().index();
|
||||||
|
|
||||||
const RASModel& rasModel = db().lookupObject<RASModel>("RASProperties");
|
const RASModel& rasModel = db().lookupObject<RASModel>("RASProperties");
|
||||||
const scalar yPlusLam = rasModel.yPlusLam(kappa_, E_);
|
const scalarField& y = rasModel.y()[patchI];
|
||||||
const scalarField& y = rasModel.y()[patch().index()];
|
|
||||||
|
|
||||||
const scalar Cmu25 = pow(Cmu_, 0.25);
|
const scalar Cmu25 = pow(Cmu_, 0.25);
|
||||||
|
|
||||||
volScalarField& G = const_cast<volScalarField&>
|
volScalarField& G =
|
||||||
(db().lookupObject<volScalarField>(GName_));
|
const_cast<volScalarField&>(db().lookupObject<volScalarField>(GName_));
|
||||||
|
|
||||||
volScalarField& omega = const_cast<volScalarField&>
|
DimensionedField<scalar, volMesh>& omega =
|
||||||
(db().lookupObject<volScalarField>(dimensionedInternalField().name()));
|
const_cast<DimensionedField<scalar, volMesh>&>
|
||||||
|
(
|
||||||
|
dimensionedInternalField()
|
||||||
|
);
|
||||||
|
|
||||||
const scalarField& k = db().lookupObject<volScalarField>(kName_);
|
const tmp<volScalarField> tk = rasModel.k();
|
||||||
|
const volScalarField& k = tk();
|
||||||
|
|
||||||
const scalarField& nuw =
|
const scalarField& nuw = rasModel.nu().boundaryField()[patchI];
|
||||||
patch().lookupPatchField<volScalarField, scalar>(nuName_);
|
|
||||||
|
|
||||||
const scalarField& nutw =
|
const tmp<volScalarField> tnut = rasModel.nut();
|
||||||
patch().lookupPatchField<volScalarField, scalar>(nutName_);
|
const volScalarField& nut = tnut();
|
||||||
|
const scalarField& nutw = nut.boundaryField()[patchI];
|
||||||
|
|
||||||
const fvPatchVectorField& Uw =
|
const fvPatchVectorField& Uw = rasModel.U().boundaryField()[patchI];
|
||||||
patch().lookupPatchField<volVectorField, vector>(UName_);
|
|
||||||
|
|
||||||
const scalarField magGradUw = mag(Uw.snGrad());
|
const scalarField magGradUw = mag(Uw.snGrad());
|
||||||
|
|
||||||
@ -203,7 +219,7 @@ void omegaWallFunctionFvPatchScalarField::updateCoeffs()
|
|||||||
|
|
||||||
omega[faceCellI] = sqrt(k[faceCellI])/(Cmu25*kappa_*y[faceI]);
|
omega[faceCellI] = sqrt(k[faceCellI])/(Cmu25*kappa_*y[faceI]);
|
||||||
|
|
||||||
if (yPlus > yPlusLam)
|
if (yPlus > yPlusLam_)
|
||||||
{
|
{
|
||||||
G[faceCellI] =
|
G[faceCellI] =
|
||||||
(nutw[faceI] + nuw[faceI])
|
(nutw[faceI] + nuw[faceI])
|
||||||
@ -226,14 +242,7 @@ void omegaWallFunctionFvPatchScalarField::updateCoeffs()
|
|||||||
void omegaWallFunctionFvPatchScalarField::write(Ostream& os) const
|
void omegaWallFunctionFvPatchScalarField::write(Ostream& os) const
|
||||||
{
|
{
|
||||||
fixedInternalValueFvPatchField<scalar>::write(os);
|
fixedInternalValueFvPatchField<scalar>::write(os);
|
||||||
writeEntryIfDifferent<word>(os, "U", "U", UName_);
|
writeLocalEntries(os);
|
||||||
writeEntryIfDifferent<word>(os, "k", "k", kName_);
|
|
||||||
writeEntryIfDifferent<word>(os, "G", "RASModel::G", GName_);
|
|
||||||
writeEntryIfDifferent<word>(os, "nu", "nu", nuName_);
|
|
||||||
writeEntryIfDifferent<word>(os, "nut", "nut", nutName_);
|
|
||||||
os.writeKeyword("Cmu") << Cmu_ << token::END_STATEMENT << nl;
|
|
||||||
os.writeKeyword("kappa") << kappa_ << token::END_STATEMENT << nl;
|
|
||||||
os.writeKeyword("E") << E_ << token::END_STATEMENT << nl;
|
|
||||||
writeEntry("value", os);
|
writeEntry("value", os);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,23 +55,13 @@ class omegaWallFunctionFvPatchScalarField
|
|||||||
:
|
:
|
||||||
public fixedInternalValueFvPatchField<scalar>
|
public fixedInternalValueFvPatchField<scalar>
|
||||||
{
|
{
|
||||||
// Private data
|
protected:
|
||||||
|
|
||||||
//- Name of velocity field
|
// Protected data
|
||||||
word UName_;
|
|
||||||
|
|
||||||
//- Name of turbulence kinetic energy field
|
|
||||||
word kName_;
|
|
||||||
|
|
||||||
//- Name of turbulence generation field
|
//- Name of turbulence generation field
|
||||||
word GName_;
|
word GName_;
|
||||||
|
|
||||||
//- Name of laminar viscosity field
|
|
||||||
word nuName_;
|
|
||||||
|
|
||||||
//- Name of turbulent viscosity field
|
|
||||||
word nutName_;
|
|
||||||
|
|
||||||
//- Cmu coefficient
|
//- Cmu coefficient
|
||||||
scalar Cmu_;
|
scalar Cmu_;
|
||||||
|
|
||||||
@ -81,11 +71,20 @@ class omegaWallFunctionFvPatchScalarField
|
|||||||
//- E coefficient
|
//- E coefficient
|
||||||
scalar E_;
|
scalar E_;
|
||||||
|
|
||||||
|
//- Y+ at the edge of the laminar sublayer
|
||||||
|
scalar yPlusLam_;
|
||||||
|
|
||||||
// Private member functions
|
|
||||||
|
// Protected member functions
|
||||||
|
|
||||||
//- Check the type of the patch
|
//- Check the type of the patch
|
||||||
void checkType();
|
virtual void checkType();
|
||||||
|
|
||||||
|
//- Calculate the Y+ at the edge of the laminar sublayer
|
||||||
|
virtual scalar calcYPlusLam(const scalar kappa, const scalar E) const;
|
||||||
|
|
||||||
|
//- Write local wall function variables
|
||||||
|
virtual void writeLocalEntries(Ostream&) const;
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -168,7 +167,7 @@ public:
|
|||||||
// I-O
|
// I-O
|
||||||
|
|
||||||
//- Write
|
//- Write
|
||||||
void write(Ostream&) const;
|
virtual void write(Ostream&) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user