Better bounding on topo change
This commit is contained in:
parent
5f6a39a46e
commit
e411de9576
1 changed files with 3 additions and 3 deletions
|
@ -85,9 +85,9 @@ int main(int argc, char *argv[])
|
||||||
// Mesh motion update
|
// Mesh motion update
|
||||||
if (meshChanged)
|
if (meshChanged)
|
||||||
{
|
{
|
||||||
T = max(T, TMin);
|
T.max(TMin);
|
||||||
p = max(p, pMin);
|
p.max(pMin);
|
||||||
e = max(e, thermo.Cv()*TMin);
|
e == max(e, thermo.Cv()*TMin);
|
||||||
|
|
||||||
thermo.correct();
|
thermo.correct();
|
||||||
rho = thermo.rho();
|
rho = thermo.rho();
|
||||||
|
|
Reference in a new issue