mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
kEpsilon: Minor update of the lookup of fvOptions
This commit is contained in:
@ -41,9 +41,7 @@ void kEpsilon<BasicTurbulenceModel>::correctNut()
|
|||||||
{
|
{
|
||||||
this->nut_ = Cmu_*sqr(k_)/epsilon_;
|
this->nut_ = Cmu_*sqr(k_)/epsilon_;
|
||||||
this->nut_.correctBoundaryConditions();
|
this->nut_.correctBoundaryConditions();
|
||||||
|
fv::options::New(this->mesh_).correct(this->nut_);
|
||||||
fv::options& fvOptions(fv::options::New(this->mesh_));
|
|
||||||
fvOptions.correct(this->nut_);
|
|
||||||
|
|
||||||
BasicTurbulenceModel::correctNut();
|
BasicTurbulenceModel::correctNut();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user