turbulenceModels/LES/WALE: Added support for fvOptions

This commit is contained in:
Henry Weller
2015-12-03 13:48:20 +00:00
parent 2ddf4b7793
commit cb31786753

View File

@ -24,6 +24,7 @@ License
\*---------------------------------------------------------------------------*/
#include "WALE.H"
#include "fvOptions.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -89,6 +90,7 @@ void WALE<BasicTurbulenceModel>::correctNut()
{
this->nut_ = Ck_*this->delta()*sqrt(this->k(fvc::grad(this->U_)));
this->nut_.correctBoundaryConditions();
fv::options::New(this->mesh_).correct(this->nut_);
BasicTurbulenceModel::correctNut();
}