initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / solvers / multiphase / interPhaseChangeFoam / interPhaseChangeFoam.C
blobb97e1d5725caaf48e945414cd23c87c327ddc159
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     interPhaseChangeFoam
28 Description
29     Solver for 2 incompressible, isothermal immiscible fluids with phase-change
30     (e.g. cavitation).  Uses a VOF (volume of fluid) phase-fraction based
31     interface capturing approach.
33     The momentum and other fluid properties are of the "mixture" and a
34     single momentum equation is solved.
36     The set of phase-change models provided are designed to simulate cavitation
37     but other mechanisms of phase-change are supported within this solver
38     framework.
40     Turbulence modelling is generic, i.e. laminar, RAS or LES may be selected.
42 \*---------------------------------------------------------------------------*/
44 #include "fvCFD.H"
45 #include "MULES.H"
46 #include "subCycle.H"
47 #include "interfaceProperties.H"
48 #include "phaseChangeTwoPhaseMixture.H"
49 #include "turbulenceModel.H"
51 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
53 int main(int argc, char *argv[])
55     #include "setRootCase.H"
56     #include "createTime.H"
57     #include "createMesh.H"
58     #include "readGravitationalAcceleration.H"
59     #include "readPISOControls.H"
60     #include "initContinuityErrs.H"
61     #include "createFields.H"
62     #include "readTimeControls.H"
63     #include "correctPhi.H"
64     #include "CourantNo.H"
65     #include "setInitialDeltaT.H"
67     // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
69     Info<< "\nStarting time loop\n" << endl;
71     while (runTime.run())
72     {
73         #include "readPISOControls.H"
74         #include "readTimeControls.H"
75         #include "CourantNo.H"
76         #include "setDeltaT.H"
78         runTime++;
80         Info<< "Time = " << runTime.timeName() << nl << endl;
82         #include "alphaEqnSubCycle.H"
84         turbulence->correct();
86         // --- Outer-corrector loop
87         for (int oCorr=0; oCorr<nOuterCorr; oCorr++)
88         {
89             #include "UEqn.H"
91             // --- PISO loop
92             for (int corr=0; corr<nCorr; corr++)
93             {
94                 #include "pEqn.H"
95             }
97             #include "continuityErrs.H"
98         }
100         twoPhaseProperties->correct();
102         runTime.write();
104         Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
105             << "  ClockTime = " << runTime.elapsedClockTime() << " s"
106             << nl << endl;
107     }
109     Info<< "End\n" << endl;
111     return 0;
115 // ************************************************************************* //