Skip to content
Snippets Groups Projects
Commit 2d10e89d authored by sergio's avatar sergio Committed by sergio
Browse files

ENH: adding nNonOrthCorr loop for thermal shell

parent 1549e237
Branches
Tags
No related merge requests found
......@@ -114,7 +114,7 @@ thermalShell::thermalShell
)
:
thermalShellModel(modelType, mesh, patch, dict),
nNonOrthCorr_(1),//solution().get<label>("nNonOrthCorr")),
nNonOrthCorr_(1),
thermo_(dict.subDict("thermo")),
qs_
(
......@@ -168,7 +168,8 @@ thermalShell::~thermalShell()
// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
void thermalShell::init()
{}
{
}
void thermalShell::preEvolveRegion()
......@@ -177,6 +178,8 @@ void thermalShell::preEvolveRegion()
void thermalShell::evolveRegion()
{
nNonOrthCorr_ = solution().get<label>("nNonOrthCorr");
for (int nonOrth=0; nonOrth<=nNonOrthCorr_; nonOrth++)
{
solveEnergy();
......
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