TurbulenceModels/phaseCompressible/LES/SmagorinskyZhang: Added support for fvOptions

This commit is contained in:
Henry Weller
2015-12-03 16:39:00 +00:00
parent bdabd09781
commit 5a6038ccf5

View File

@ -24,6 +24,7 @@ License
\*---------------------------------------------------------------------------*/
#include "SmagorinskyZhang.H"
#include "fvOptions.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -142,6 +143,9 @@ void SmagorinskyZhang<BasicTurbulenceModel>::correctNut()
*(mag(this->U_ - gasTurbulence.U()));
this->nut_.correctBoundaryConditions();
fv::options::New(this->mesh_).correct(this->nut_);
BasicTurbulenceModel::correctNut();
}