Skip to content
Snippets Groups Projects
Commit 573021c9 authored by Henry Weller's avatar Henry Weller
Browse files

TurbulenceModels/phaseCompressible: Do not call correctNut in constructor

if it depends on the availability of the physical properties of both
phases as the construction of the phase-system may not be complete.
parent 360604b1
Branches
No related merge requests found
......@@ -96,7 +96,9 @@ NicenoKEqn<BasicTurbulenceModel>::NicenoKEqn
{
if (type == typeName)
{
correctNut();
// Cannot correct nut yet: construction of the phases is not complete
// correctNut();
this->printCoeffs(type);
}
}
......
......@@ -73,7 +73,9 @@ SmagorinskyZhang<BasicTurbulenceModel>::SmagorinskyZhang
{
if (type == typeName)
{
correctNut();
// Cannot correct nut yet: construction of the phases is not complete
// correctNut();
this->printCoeffs(type);
}
}
......
......@@ -106,7 +106,9 @@ LaheyKEpsilon<BasicTurbulenceModel>::LaheyKEpsilon
{
if (type == typeName)
{
correctNut();
// Cannot correct nut yet: construction of the phases is not complete
// correctNut();
this->printCoeffs(type);
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment