Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
9ddb6371
Commit
9ddb6371
authored
Nov 03, 2011
by
andy
Browse files
BUG: pimple solvers were using nCorrPIMPLE instead of nCorrPISO in pEqns
parent
4e99a6f3
Changes
5
Hide whitespace changes
Inline
Side-by-side
applications/solvers/compressible/rhoPimpleFoam/pEqn.H
View file @
9ddb6371
...
...
@@ -5,7 +5,7 @@ rho.relax();
U
=
rAU
*
UEqn
().
H
();
if
(
pimple
.
nCorrPI
MPLE
()
<=
1
)
if
(
pimple
.
nCorrPI
SO
()
<=
1
)
{
UEqn
.
clear
();
}
...
...
applications/solvers/compressible/rhoPimpleFoam/rhoPorousMRFPimpleFoam/pEqn.H
View file @
9ddb6371
...
...
@@ -6,7 +6,7 @@ rho.relax();
volScalarField
rAU
(
1
.
0
/
UEqn
().
A
());
U
=
rAU
*
UEqn
().
H
();
if
(
pimple
.
nCorrPI
MPLE
()
<=
1
)
if
(
pimple
.
nCorrPI
SO
()
<=
1
)
{
UEqn
.
clear
();
}
...
...
applications/solvers/incompressible/pimpleFoam/SRFPimpleFoam/pEqn.H
View file @
9ddb6371
volScalarField
rAUrel
(
1
.
0
/
UrelEqn
().
A
());
Urel
=
rAUrel
*
UrelEqn
().
H
();
if
(
pimple
.
nCorrPI
MPLE
()
<=
1
)
if
(
pimple
.
nCorrPI
SO
()
<=
1
)
{
UrelEqn
.
clear
();
}
...
...
applications/solvers/incompressible/pimpleFoam/pEqn.H
View file @
9ddb6371
U
=
rAU
*
UEqn
().
H
();
if
(
pimple
.
nCorrPI
MPLE
()
<=
1
)
if
(
pimple
.
nCorrPI
SO
()
<=
1
)
{
UEqn
.
clear
();
}
...
...
applications/solvers/incompressible/pimpleFoam/pimpleDyMFoam/pEqn.H
View file @
9ddb6371
U
=
rAU
*
UEqn
().
H
();
if
(
pimple
.
nCorrPI
MPLE
()
<=
1
)
if
(
pimple
.
nCorrPI
SO
()
<=
1
)
{
UEqn
.
clear
();
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment