solvers::solid::thermophysicalPredictor: Moved thermo correction into the non-orthogonality correction loop

Resolves bug-report https://bugs.openfoam.org/view.php?id=4043
This commit is contained in:
Henry Weller
2023-12-20 10:23:13 +00:00
parent 195dfbe168
commit 3c347ca566

View File

@ -236,9 +236,9 @@ void Foam::solvers::solid::thermophysicalPredictor()
eEqn.solve();
fvConstraints().constrain(e);
}
thermo_.correct();
thermo_.correct();
}
}