initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / applications / solvers / multiphase / rasInterFoam / rasInterFoam.C
blob33e85efd4b6eb7fc77b9f9832554cc252f4afa31
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 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     rasInterFoam
28 Description
29     Solver for 2 incompressible, isothermal immiscible fluids using a VOF
30     (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.  Turbulence is modelled using a run-time
33     selectable incompressible RAS model.
35 \*---------------------------------------------------------------------------*/
37 #include "fvCFD.H"
38 #include "MULES.H"
39 #include "subCycle.H"
40 #include "interfaceProperties.H"
41 #include "twoPhaseMixture.H"
42 #include "incompressible/RASModel/RASModel.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 int main(int argc, char *argv[])
48     #include "setRootCase.H"
49     #include "createTime.H"
50     #include "createMesh.H"
51     #include "readEnvironmentalProperties.H"
52     #include "readPISOControls.H"
53     #include "initContinuityErrs.H"
54     #include "createFields.H"
55     #include "readTimeControls.H"
56     #include "correctPhi.H"
57     #include "CourantNo.H"
58     #include "setInitialDeltaT.H"
60 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
62     Info<< "\nStarting time loop\n" << endl;
64     while (runTime.run())
65     {
66         #include "readPISOControls.H"
67         #include "readTimeControls.H"
68         #include "CourantNo.H"
69         #include "setDeltaT.H"
71         runTime++;
73         Info<< "Time = " << runTime.timeName() << nl << endl;
75         #include "gammaEqnSubCycle.H"
77         #include "UEqn.H"
79         // --- PISO loop
80         for (int corr=0; corr < nCorr; corr++)
81         {
82             #include "pEqn.H"
83         }
85         #include "continuityErrs.H"
87         p = pd + rho*gh;
89         turbulence->correct();
91         runTime.write();
93         Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
94             << "  ClockTime = " << runTime.elapsedClockTime() << " s"
95             << nl << endl;
96     }
98     Info<< "End\n" << endl;
100     return(0);
104 // ************************************************************************* //