Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / applications / solvers / multiphase / compressibleInterFoam / compressibleInterFoam.C
blobd8204d7f2d939ab690526b9d9f3b0e3883e688e2
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2011 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
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.
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.
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/>.
24 Application
25     compressibleInterFoam
27 Description
28     Solver for 2 compressible, isothermal immiscible fluids using a VOF
29     (volume of fluid) phase-fraction based interface capturing approach.
31     The momentum and other fluid properties are of the "mixture" and a single
32     momentum equation is solved.
34     Turbulence modelling is generic, i.e.  laminar, RAS or LES may be selected.
36 \*---------------------------------------------------------------------------*/
38 #include "fvCFD.H"
39 #include "MULES.H"
40 #include "subCycle.H"
41 #include "interfaceProperties.H"
42 #include "twoPhaseMixture.H"
43 #include "turbulenceModel.H"
44 #include "pimpleControl.H"
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 int main(int argc, char *argv[])
50     #include "setRootCase.H"
51     #include "createTime.H"
52     #include "createMesh.H"
53     #include "readGravitationalAcceleration.H"
55     pimpleControl pimple(mesh);
57     #include "readControls.H"
58     #include "initContinuityErrs.H"
59     #include "createFields.H"
60     #include "CourantNo.H"
61     #include "setInitialDeltaT.H"
63     // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
65     Info<< "\nStarting time loop\n" << endl;
67     while (runTime.run())
68     {
69         #include "readControls.H"
70         #include "CourantNo.H"
71         #include "setDeltaT.H"
73         runTime++;
75         Info<< "Time = " << runTime.timeName() << nl << endl;
77         // --- Outer-corrector loop
78         for (pimple.start(); pimple.loop(); pimple++)
79         {
80             #include "alphaEqnsSubCycle.H"
82             solve(fvm::ddt(rho) + fvc::div(rhoPhi));
84             #include "UEqn.H"
86             // --- PISO loop
87             for (int corr=0; corr<pimple.nCorr(); corr++)
88             {
89                 #include "pEqn.H"
90             }
92             if (pimple.turbCorr())
93             {
94                 turbulence->correct();
95             }
96         }
98         rho = alpha1*rho1 + alpha2*rho2;
100         runTime.write();
102         Info<< "ExecutionTime = "
103             << runTime.elapsedCpuTime()
104             << " s\n\n" << endl;
105     }
107     Info<< "End\n" << endl;
109     return 0;
113 // ************************************************************************* //