Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
360604b1
Commit
360604b1
authored
Jun 12, 2015
by
Henry Weller
Browse files
twoPhaseEulerFoam: Minor reorganization
parent
d71b8393
Changes
4
Hide whitespace changes
Inline
Side-by-side
applications/solvers/multiphase/twoPhaseEulerFoam/pU/UEqns.H
View file @
360604b1
Info
<<
"Constructing momentum equations"
<<
endl
;
MRF
.
correctBoundaryVelocity
(
U1
);
MRF
.
correctBoundaryVelocity
(
U2
);
MRF
.
correctBoundaryVelocity
(
U
);
...
...
applications/solvers/multiphase/twoPhaseEulerFoam/pUf/UEqns.H
View file @
360604b1
Info
<<
"Constructing face momentum equations"
<<
endl
;
MRF
.
correctBoundaryVelocity
(
U1
);
MRF
.
correctBoundaryVelocity
(
U2
);
MRF
.
correctBoundaryVelocity
(
U
);
...
...
applications/solvers/multiphase/twoPhaseEulerFoam/pUf/pEqn.H
View file @
360604b1
...
...
@@ -358,5 +358,3 @@ if (thermo1.dpdt() || thermo2.dpdt())
{
dpdt
=
fvc
::
ddt
(
p
);
}
#include "pUf/DDtU.H"
applications/solvers/multiphase/twoPhaseEulerFoam/twoPhaseEulerFoam.C
View file @
360604b1
...
...
@@ -93,18 +93,18 @@ int main(int argc, char *argv[])
fluid
.
correct
();
#include "contErrs.H"
#include "EEqns.H"
if
(
faceMomentum
)
{
Info
<<
"Constructing face momentum equations"
<<
endl
;
#include "pUf/UEqns.H"
#include "EEqns.H"
#include "pUf/pEqn.H"
#include "pUf/DDtU.H"
}
else
{
Info
<<
"Constructing momentum equations"
<<
endl
;
#include "pU/UEqns.H"
#include "EEqns.H"
#include "pU/pEqn.H"
#include "pU/DDtU.H"
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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