turbulenceModels/LES/WALE: Added support for fvOptions
This commit is contained in:
parent
211a9a377a
commit
039da4c00d
1 changed files with 2 additions and 0 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue