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
1f7b3883
Commit
1f7b3883
authored
Jun 30, 2015
by
Henry Weller
Browse files
pimpleFoam: Caching 1/A is no longer necessary
parent
8b47981d
Changes
4
Hide whitespace changes
Inline
Side-by-side
applications/solvers/incompressible/pimpleFoam/UEqn.H
View file @
1f7b3883
...
...
@@ -15,8 +15,6 @@ UEqn().relax();
fvOptions
.
constrain
(
UEqn
());
volScalarField
rAU
(
1
.
0
/
UEqn
().
A
());
if
(
pimple
.
momentumPredictor
())
{
solve
(
UEqn
()
==
-
fvc
::
grad
(
p
));
...
...
applications/solvers/incompressible/pimpleFoam/pEqn.H
View file @
1f7b3883
volScalarField
rAU
(
1
.
0
/
UEqn
().
A
());
volVectorField
HbyA
(
"HbyA"
,
U
);
HbyA
=
rAU
*
UEqn
().
H
();
...
...
applications/solvers/incompressible/pimpleFoam/pimpleDyMFoam/pEqn.H
View file @
1f7b3883
volScalarField
rAU
(
1
.
0
/
UEqn
().
A
());
volVectorField
HbyA
(
"HbyA"
,
U
);
HbyA
=
rAU
*
UEqn
().
H
();
...
...
applications/solvers/incompressible/pisoFoam/pEqn.H
View file @
1f7b3883
volScalarField
rAU
(
1
.
0
/
UEqn
.
A
());
volVectorField
HbyA
(
"HbyA"
,
U
);
HbyA
=
rAU
*
UEqn
.
H
();
surfaceScalarField
phiHbyA
...
...
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