Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / applications / solvers / multiphase / interFoam / LTSInterFoam / LTSInterFoam.C
blob10ea651604f771af5384e7e8b205bc25b80ab97d
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2010-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     interFoam
27 Description
28     Solver for 2 incompressible, 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     For a two-fluid approach see twoPhaseEulerFoam.
38 \*---------------------------------------------------------------------------*/
40 #include "fvCFD.H"
41 #include "MULES.H"
42 #include "subCycle.H"
43 #include "interfaceProperties.H"
44 #include "twoPhaseMixture.H"
45 #include "turbulenceModel.H"
46 #include "fvcSmooth.H"
47 #include "pimpleControl.H"
49 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51 int main(int argc, char *argv[])
53     #include "setRootCase.H"
54     #include "createTime.H"
55     #include "createMesh.H"
56     #include "initContinuityErrs.H"
57     #include "createFields.H"
59     pimpleControl pimple(mesh);
61     #include "correctPhi.H"
62     #include "CourantNo.H"
63     #include "setInitialrDeltaT.H"
65     // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
67     Info<< "\nStarting time loop\n" << endl;
69     while (runTime.run())
70     {
71         runTime++;
73         Info<< "Time = " << runTime.timeName() << nl << endl;
75         #include "setrDeltaT.H"
77         twoPhaseProperties.correct();
79         #include "alphaEqnSubCycle.H"
81         turbulence->correct();
83         // --- Pressure-velocity PIMPLE corrector loop
84         for (pimple.start(); pimple.loop(); pimple++)
85         {
86             #include "UEqn.H"
88             // --- PISO loop
89             for (int corr=0; corr<pimple.nCorr(); corr++)
90             {
91                 #include "pEqn.H"
92             }
93         }
95         runTime.write();
97         Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
98             << "  ClockTime = " << runTime.elapsedClockTime() << " s"
99             << nl << endl;
100     }
102     Info<< "End\n" << endl;
104     return 0;
108 // ************************************************************************* //