mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: pimple solvers were using nCorrPIMPLE instead of nCorrPISO in pEqns
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
volScalarField rAUrel(1.0/UrelEqn().A());
|
||||
Urel = rAUrel*UrelEqn().H();
|
||||
|
||||
if (pimple.nCorrPIMPLE() <= 1)
|
||||
if (pimple.nCorrPISO() <= 1)
|
||||
{
|
||||
UrelEqn.clear();
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
U = rAU*UEqn().H();
|
||||
|
||||
if (pimple.nCorrPIMPLE() <= 1)
|
||||
if (pimple.nCorrPISO() <= 1)
|
||||
{
|
||||
UEqn.clear();
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
U = rAU*UEqn().H();
|
||||
|
||||
if (pimple.nCorrPIMPLE() <= 1)
|
||||
if (pimple.nCorrPISO() <= 1)
|
||||
{
|
||||
UEqn.clear();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user