ENH: Time: access to libs
[OpenFOAM-2.0.x.git] / applications / solvers / multiphase / cavitatingFoam / cavitatingFoam.C
blob159eb0f0bd45d4719b3f78b7890195b35731b8db
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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     cavitatingFoam
27 Description
28     Transient cavitation code based on the homogeneous equilibrium model
29     from which the compressibility of the liquid/vapour "mixture" is obtained.
31     Turbulence modelling is generic, i.e. laminar, RAS or LES may be selected.
33 \*---------------------------------------------------------------------------*/
35 #include "fvCFD.H"
36 #include "barotropicCompressibilityModel.H"
37 #include "twoPhaseMixture.H"
38 #include "turbulenceModel.H"
39 #include "pimpleControl.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 int main(int argc, char *argv[])
45     #include "setRootCase.H"
47     #include "createTime.H"
48     #include "createMesh.H"
49     #include "readThermodynamicProperties.H"
50     #include "readControls.H"
51     #include "createFields.H"
52     #include "initContinuityErrs.H"
53     #include "compressibleCourantNo.H"
54     #include "setInitialDeltaT.H"
56     pimpleControl pimple(mesh);
58     // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
60     Info<< "\nStarting time loop\n" << endl;
62     while (runTime.run())
63     {
64         #include "readControls.H"
65         #include "CourantNo.H"
66         #include "setDeltaT.H"
68         runTime++;
69         Info<< "Time = " << runTime.timeName() << nl << endl;
71         for (pimple.start(); pimple.loop(); pimple++)
72         {
73             #include "rhoEqn.H"
74             #include "gammaPsi.H"
75             #include "UEqn.H"
77             for (int corr=0; corr<pimple.nCorr(); corr++)
78             {
79                 #include "pEqn.H"
80             }
82             if (pimple.turbCorr())
83             {
84                 turbulence->correct();
85             }
86         }
88         runTime.write();
90         Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
91             << "  ClockTime = " << runTime.elapsedClockTime() << " s"
92             << nl << endl;
93     }
95     Info<< "End\n" << endl;
97     return 0;
101 // ************************************************************************* //