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

ENH: Added deprecation warnings for SpalartAllmaras and kOmegaSST DES variants

parent 67ba5acf
Branches
Tags
1 merge request!560Integration of grey area turbulence models from Upstream CFD
......@@ -173,6 +173,11 @@ SpalartAllmarasDES<BasicTurbulenceModel>::SpalartAllmarasDES
if (type == typeName)
{
WarningInFunction
<< "This model is not recommended and will be deprecated in future "
<< "releases. Please consider using the DDES/IDDES versions instead"
<< endl;
this->printCoeffs(type);
}
}
......
......@@ -174,6 +174,11 @@ kOmegaSSTDES<BasicTurbulenceModel>::kOmegaSSTDES
if (type == typeName)
{
WarningInFunction
<< "This model is not recommended and will be deprecated in future "
<< "releases. Please consider using the DDES/IDDES versions instead"
<< endl;
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