ENH: patchCloud: return pTraits<Type>::max for unfound points
[OpenFOAM-1.7.x.git] / applications / solvers / multiphase / interFoam / interFoam.C
blobb8bae27d67d1b72db4a103e5e602f0ec77350a98
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2010 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 "interpolationTable.H"
48 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 int main(int argc, char *argv[])
52     #include "setRootCase.H"
53     #include "createTime.H"
54     #include "createMesh.H"
55     #include "readPISOControls.H"
56     #include "initContinuityErrs.H"
57     #include "createFields.H"
58     #include "readTimeControls.H"
59     #include "correctPhi.H"
60     #include "CourantNo.H"
61     #include "setInitialDeltaT.H"
63     // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
65     Info<< "\nStarting time loop\n" << endl;
67     while (runTime.run())
68     {
69         #include "readPISOControls.H"
70         #include "readTimeControls.H"
71         #include "CourantNo.H"
72         #include "alphaCourantNo.H"
73         #include "setDeltaT.H"
75         runTime++;
77         Info<< "Time = " << runTime.timeName() << nl << endl;
79         twoPhaseProperties.correct();
81         #include "alphaEqnSubCycle.H"
83         #include "UEqn.H"
85         // --- PISO loop
86         for (int corr=0; corr<nCorr; corr++)
87         {
88             #include "pEqn.H"
89         }
91         turbulence->correct();
93         runTime.write();
95         Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
96             << "  ClockTime = " << runTime.elapsedClockTime() << " s"
97             << nl << endl;
98     }
100     Info<< "End\n" << endl;
102     return 0;
106 // ************************************************************************* //