initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / solvers / multiphase / compressibleInterFoam / compressibleInterFoam.C
blobf35288529420f7df8e080bbfad5b74cb63526cd5
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Application
26     compressibleLesInterFoam
28 Description
29     Solver for 2 compressible, isothermal immiscible fluids using a VOF
30     (volume of fluid) phase-fraction based interface capturing approach.
32     The momentum and other fluid properties are of the "mixture" and a single
33     momentum equation is solved.
35     Turbulence modelling is generic, i.e.  laminar, RAS or LES may be selected.
37 \*---------------------------------------------------------------------------*/
39 #include "fvCFD.H"
40 #include "MULES.H"
41 #include "subCycle.H"
42 #include "interfaceProperties.H"
43 #include "twoPhaseMixture.H"
44 #include "turbulenceModel.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"
54     #include "readControls.H"
55     #include "initContinuityErrs.H"
56     #include "createFields.H"
57     #include "CourantNo.H"
58     #include "setInitialDeltaT.H"
60     // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
62     Info<< "\nStarting time loop\n" << endl;
64     while (runTime.run())
65     {
66         #include "readControls.H"
67         #include "CourantNo.H"
68         #include "setDeltaT.H"
70         runTime++;
72         Info<< "Time = " << runTime.timeName() << nl << endl;
74         // --- Outer-corrector loop
75         for (int oCorr=0; oCorr<nOuterCorr; oCorr++)
76         {
77             #include "alphaEqnsSubCycle.H"
79             solve(fvm::ddt(rho) + fvc::div(rhoPhi));
81             #include "UEqn.H"
83             // --- PISO loop
84             for (int corr=0; corr<nCorr; corr++)
85             {
86                 #include "pEqn.H"
87             }
88         }
90         rho = alpha1*rho1 + alpha2*rho2;
92         turbulence->correct();
94         runTime.write();
96         Info<< "ExecutionTime = "
97             << runTime.elapsedCpuTime()
98             << " s\n\n" << endl;
99     }
101     Info<< "End\n" << endl;
103     return 0;
107 // ************************************************************************* //