multiphaseInterFoam.C
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2011-2017 OpenFOAM Foundation
9-------------------------------------------------------------------------------
10License
11 This file is part of OpenFOAM.
12
13 OpenFOAM is free software: you can redistribute it and/or modify it
14 under the terms of the GNU General Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
17
18 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25
26Application
27 multiphaseInterFoam
28
29Group
30 grpMultiphaseSolvers
31
32Description
33 Solver for N incompressible fluids which captures the interfaces and
34 includes surface-tension and contact-angle effects for each phase, with
35 optional mesh motion and mesh topology changes.
36
37 Turbulence modelling is generic, i.e. laminar, RAS or LES may be selected.
38
39\*---------------------------------------------------------------------------*/
40
41#include "fvCFD.H"
42#include "dynamicFvMesh.H"
43#include "multiphaseMixture.H"
45#include "pimpleControl.H"
46#include "fvOptions.H"
47#include "CorrectPhi.H"
48
49// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50
51int main(int argc, char *argv[])
52{
53 argList::addNote
54 (
55 "Solver for N incompressible fluids which captures the interfaces and"
56 " includes surface-tension and contact-angle effects for each phase.\n"
57 "With optional mesh motion and mesh topology changes."
58 );
59
60 #include "postProcess.H"
61
62 #include "addCheckCaseOptions.H"
63 #include "setRootCaseLists.H"
64 #include "createTime.H"
65 #include "createDynamicFvMesh.H"
66 #include "initContinuityErrs.H"
67 #include "createDyMControls.H"
68 #include "createFields.H"
69 #include "initCorrectPhi.H"
70 #include "createUfIfPresent.H"
71
72 turbulence->validate();
73
74 #include "CourantNo.H"
75 #include "setInitialDeltaT.H"
76
77 const surfaceScalarField& rhoPhi(mixture.rhoPhi());
78
79 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
80
81 Info<< "\nStarting time loop\n" << endl;
82
83 while (runTime.run())
84 {
85 #include "readDyMControls.H"
86 #include "CourantNo.H"
87 #include "alphaCourantNo.H"
88 #include "setDeltaT.H"
89
90 ++runTime;
91
92 Info<< "Time = " << runTime.timeName() << nl << endl;
93
94 // --- Pressure-velocity PIMPLE corrector loop
95 while (pimple.loop())
96 {
97 if (pimple.firstIter() || moveMeshOuterCorrectors)
98 {
99 scalar timeBeforeMeshUpdate = runTime.elapsedCpuTime();
100
101 mesh.update();
102
103 if (mesh.changing())
104 {
105 Info<< "Execution time for mesh.update() = "
106 << runTime.elapsedCpuTime() - timeBeforeMeshUpdate
107 << " s" << endl;
108
109 gh = (g & mesh.C()) - ghRef;
110 ghf = (g & mesh.Cf()) - ghRef;
111
112 MRF.update();
113
114 if (correctPhi)
115 {
116 // Calculate absolute flux
117 // from the mapped surface velocity
118 phi = mesh.Sf() & Uf();
119
120 #include "correctPhi.H"
121
122 // Make the flux relative to the mesh motion
123 fvc::makeRelative(phi, U);
124
125 mixture.correct();
126 }
127
129 {
130 #include "meshCourantNo.H"
131 }
132 }
133 }
134
135 mixture.solve();
136 rho = mixture.rho();
137
138 #include "UEqn.H"
139
140 // --- Pressure corrector loop
141 while (pimple.correct())
142 {
143 #include "pEqn.H"
144 }
145
146 if (pimple.turbCorr())
147 {
148 turbulence->correct();
149 }
150 }
151
152 runTime.write();
153
154 runTime.printExecutionTime(Info);
155 }
156
157 Info<< "End\n" << endl;
158
159 return 0;
160}
161
162
163// ************************************************************************* //
Required Classes.
rhoPhi
Definition: rhoEqn.H:10
const uniformDimensionedVectorField & g
surfaceScalarField & phi
const surfaceScalarField & ghf
IOMRFZoneList & MRF
const volScalarField & gh
pimpleControl & pimple
U
Definition: pEqn.H:72
dynamicFvMesh & mesh
engineTime & runTime
Creates and initialises the velocity field Uf if required.
autoPtr< surfaceVectorField > Uf
compressible::turbulenceModel & turbulence
Calculates and outputs the mean and maximum Courant Numbers.
messageStream Info
Information stream (stdout output on master, null elsewhere)
GeometricField< scalar, fvsPatchField, surfaceMesh > surfaceScalarField
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:372
constexpr char nl
The newline '\n' character (0x0a)
Definition: Ostream.H:53
Execute application functionObjects to post-process existing results.
checkMeshCourantNo
correctPhi
moveMeshOuterCorrectors
Info<< "Creating temperaturePhaseChangeTwoPhaseMixture\n"<< endl;autoPtr< temperaturePhaseChangeTwoPhaseMixture > mixture
Definition: createFields.H:39