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
c205857f
Commit
c205857f
authored
Apr 28, 2013
by
Henry
Browse files
interPhaseChangeFoam: Improve consistency with current interFoam
parent
b0a68b77
Changes
2
Hide whitespace changes
Inline
Side-by-side
applications/solvers/multiphase/interFoam/interFoam.C
View file @
c205857f
...
...
@@ -63,7 +63,6 @@ int main(int argc, char *argv[])
#include "CourantNo.H"
#include "setInitialDeltaT.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Info
<<
"
\n
Starting time loop
\n
"
<<
endl
;
...
...
applications/solvers/multiphase/interPhaseChangeFoam/interPhaseChangeFoam.C
View file @
c205857f
...
...
@@ -81,14 +81,10 @@ int main(int argc, char *argv[])
Info
<<
"Time = "
<<
runTime
.
timeName
()
<<
nl
<<
endl
;
#include "alphaEqnSubCycle.H"
if
(
pimple
.
nCorrPIMPLE
()
==
1
)
{
interface
.
correct
();
}
twoPhaseProperties
->
correct
();
turbulence
->
correct
();
#include "alphaEqnSubCycle.H"
interface
.
correct
();
// --- Pressure-velocity PIMPLE corrector loop
while
(
pimple
.
loop
())
...
...
@@ -100,9 +96,12 @@ int main(int argc, char *argv[])
{
#include "pEqn.H"
}
}
twoPhaseProperties
->
correct
();
if
(
pimple
.
turbCorr
())
{
turbulence
->
correct
();
}
}
runTime
.
write
();
...
...
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