TurbulenceModels/phaseCompressible/RAS/continuousGasKEpsilon: Added support for fvOptions

This commit is contained in:
Henry Weller
2015-12-03 16:17:40 +00:00
parent 352f4ab80b
commit cdb7b896bf

View File

@ -24,7 +24,7 @@ License
\*---------------------------------------------------------------------------*/
#include "continuousGasKEpsilon.H"
#include "addToRunTimeSelectionTable.H"
#include "fvOptions.H"
#include "twoPhaseSystem.H"
#include "virtualMassModel.H"
@ -136,6 +136,7 @@ void continuousGasKEpsilon<BasicTurbulenceModel>::correctNut()
volScalarField omega((1 - expThetar)/(1 + expThetar));
nutEff_ = omega*liquidTurbulence.nut();
fv::options::New(this->mesh_).correct(nutEff_);
}