turbulenceModels/LES/Smagorinsky: Added support for fvOptions
This commit is contained in:
parent
e915136569
commit
211a9a377a
1 changed files with 2 additions and 0 deletions
|
|
@ -24,6 +24,7 @@ License
|
|||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
#include "Smagorinsky.H"
|
||||
#include "fvOptions.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
|
|
@ -69,6 +70,7 @@ void Smagorinsky<BasicTurbulenceModel>::correctNut()
|
|||
|
||||
this->nut_ = Ck_*this->delta()*sqrt(k);
|
||||
this->nut_.correctBoundaryConditions();
|
||||
fv::options::New(this->mesh_).correct(this->nut_);
|
||||
|
||||
BasicTurbulenceModel::correctNut();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue