Skip to content
Snippets Groups Projects
Commit e90092ad authored by Andrew Heather's avatar Andrew Heather
Browse files

INT: continuation of 7441e184 for S-A DES models

parent 115bf529
Branches
Tags
No related merge requests found
...@@ -152,6 +152,17 @@ tmp<volScalarField> SpalartAllmarasDES<BasicTurbulenceModel>::dTilda ...@@ -152,6 +152,17 @@ tmp<volScalarField> SpalartAllmarasDES<BasicTurbulenceModel>::dTilda
} }
template<class BasicTurbulenceModel>
void SpalartAllmarasDES<BasicTurbulenceModel>::correctNut()
{
// Correct the turbulence viscosity
SpalartAllmarasBase<DESModel<BasicTurbulenceModel>>::correctNut();
// Correct the turbulence thermal diffusivity
BasicTurbulenceModel::correctNut();
}
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template<class BasicTurbulenceModel> template<class BasicTurbulenceModel>
......
...@@ -143,6 +143,7 @@ protected: ...@@ -143,6 +143,7 @@ protected:
const volTensorField& gradU const volTensorField& gradU
) const; ) const;
virtual void correctNut();
public: public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment