From 211a9a377a1f93fd6ecf3a098783239f98b516e7 Mon Sep 17 00:00:00 2001 From: Henry Weller Date: Thu, 3 Dec 2015 13:40:32 +0000 Subject: [PATCH] turbulenceModels/LES/Smagorinsky: Added support for fvOptions --- .../turbulenceModels/LES/Smagorinsky/Smagorinsky.C | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/TurbulenceModels/turbulenceModels/LES/Smagorinsky/Smagorinsky.C b/src/TurbulenceModels/turbulenceModels/LES/Smagorinsky/Smagorinsky.C index 9827f7606..8f11a96b9 100644 --- a/src/TurbulenceModels/turbulenceModels/LES/Smagorinsky/Smagorinsky.C +++ b/src/TurbulenceModels/turbulenceModels/LES/Smagorinsky/Smagorinsky.C @@ -24,6 +24,7 @@ License \*---------------------------------------------------------------------------*/ #include "Smagorinsky.H" +#include "fvOptions.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -69,6 +70,7 @@ void Smagorinsky::correctNut() this->nut_ = Ck_*this->delta()*sqrt(k); this->nut_.correctBoundaryConditions(); + fv::options::New(this->mesh_).correct(this->nut_); BasicTurbulenceModel::correctNut(); }