All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
interMixingFoam.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 Application
25  interMixingFoam
26 
27 Description
28  Solver for 3 incompressible fluids, two of which are miscible, using a VOF
29  method to capture the interface, with optional mesh motion and mesh topology
30  changes including adaptive re-meshing.
31 
32 \*---------------------------------------------------------------------------*/
33 
34 #include "fvCFD.H"
35 #include "interfaceCompression.H"
36 #include "CMULES.H"
37 #include "localEulerDdtScheme.H"
38 #include "subCycle.H"
41 #include "pimpleControl.H"
42 #include "pressureReference.H"
43 #include "fvModels.H"
44 #include "fvConstraints.H"
45 #include "CorrectPhi.H"
46 #include "fvcSmooth.H"
47 
48 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
49 
50 int main(int argc, char *argv[])
51 {
52  #include "postProcess.H"
53 
54  #include "setRootCaseLists.H"
55  #include "createTime.H"
56  #include "createMesh.H"
57  #include "initContinuityErrs.H"
58  #include "createDyMControls.H"
59  #include "createFields.H"
60  #include "initCorrectPhi.H"
61  #include "createUfIfPresent.H"
62 
63  turbulence->validate();
64 
65  if (!LTS)
66  {
67  #include "readTimeControls.H"
68  #include "CourantNo.H"
69  #include "setInitialDeltaT.H"
70  }
71 
72  // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
73 
74  Info<< "\nStarting time loop\n" << endl;
75 
76  while (pimple.run(runTime))
77  {
78  #include "readDyMControls.H"
79 
80  if (LTS)
81  {
82  #include "setRDeltaT.H"
83  }
84  else
85  {
86  #include "CourantNo.H"
87  #include "alphaCourantNo.H"
88  #include "setDeltaT.H"
89  }
90 
92 
93  // Update the mesh for topology change, mesh to mesh mapping
94  mesh.update();
95 
96  runTime++;
97 
98  Info<< "Time = " << runTime.userTimeName() << nl << endl;
99 
100  // --- Pressure-velocity PIMPLE corrector loop
101  while (pimple.loop())
102  {
103  if (pimple.firstPimpleIter() || moveMeshOuterCorrectors)
104  {
105  // Move the mesh
106  mesh.move();
107 
108  if (mesh.changing())
109  {
110  gh = (g & mesh.C()) - ghRef;
111  ghf = (g & mesh.Cf()) - ghRef;
112 
113  MRF.update();
114 
115  if (correctPhi)
116  {
117  #include "correctPhi.H"
118  }
119 
120  mixture.correct();
121 
122  if (checkMeshCourantNo)
123  {
124  #include "meshCourantNo.H"
125  }
126  }
127  }
128 
129  fvModels.correct();
130 
131  #include "alphaEqnSubCycle.H"
132 
133  mixture.correct();
134 
135  #include "UEqn.H"
136 
137  // --- Pressure corrector loop
138  while (pimple.correct())
139  {
140  #include "pEqn.H"
141  }
142 
143  if (pimple.turbCorr())
144  {
145  turbulence->correct();
146  }
147  }
148 
149  #include "continuityErrs.H"
150 
151  runTime.write();
152 
153  Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
154  << " ClockTime = " << runTime.elapsedClockTime() << " s"
155  << nl << endl;
156  }
157 
158  Info<< "End\n" << endl;
159 
160  return 0;
161 }
162 
163 
164 // ************************************************************************* //
pimpleNoLoopControl & pimple
IOMRFZoneList & MRF
virtual void correct()
Correct the fvModels.
Definition: fvModels.C:353
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
Read the control parameters used by setDeltaT.
virtual void preUpdateMesh()
Prepare for mesh update.
Definition: fvModels.C:255
correctPhi
checkMeshCourantNo
fvMesh & mesh
Info<< "Reading field U\"<< endl;volVectorField U(IOobject("U", runTime.timeName(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE), mesh);volScalarField rho(IOobject("rho", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE), thermo.rho());volVectorField rhoU(IOobject("rhoU", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::NO_WRITE), rho *U);volScalarField rhoE(IOobject("rhoE", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::NO_WRITE), rho *(e+0.5 *magSqr(U)));surfaceScalarField pos(IOobject("pos", runTime.timeName(), mesh), mesh, dimensionedScalar(dimless, 1.0));surfaceScalarField neg(IOobject("neg", runTime.timeName(), mesh), mesh, dimensionedScalar(dimless, -1.0));surfaceScalarField phi("phi", fvc::flux(rhoU));Info<< "Creating turbulence model\"<< endl;autoPtr< compressible::momentumTransportModel > turbulence(compressible::momentumTransportModel::New(rho, U, phi, thermo))
Definition: createFields.H:94
const surfaceScalarField & ghf
static const char nl
Definition: Ostream.H:260
bool LTS
Definition: createRDeltaT.H:1
moveMeshOuterCorrectors
Foam::fvModels & fvModels
Calculates and outputs the mean and maximum Courant Numbers.
const volScalarField & gh
messageStream Info
const dimensionedVector & g
Execute application functionObjects to post-process existing results.
Provides functions smooth spread and sweep which use the FvFaceCellWave algorithm to smooth and redis...
CMULES: Multidimensional universal limiter for explicit corrected implicit solution.
Creates and initialises the velocity field Uf if required.