Merge branch 'upstream/OpenFOAM' into master
[freefoam.git] / applications / solvers / multiphase / bubbleFoam / bubbleFoam.C
blob75cc01adeda06af77df2aaaa65c38062b60b8fcf
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     bubbleFoam
28 Description
29     Solver for a system of 2 incompressible fluid phases with one phase
30     dispersed, e.g. gas bubbles in a liquid.
32 Usage
33     - bubbleFoam [OPTION]
35     @param -case \<dir\> \n
36     Specify the case directory
38     @param -parallel \n
39     Run the case in parallel
41     @param -help \n
42     Display short usage message
44     @param -doc \n
45     Display Doxygen documentation page
47     @param -srcDoc \n
48     Display source code
50 \*---------------------------------------------------------------------------*/
52 #include <finiteVolume/fvCFD.H>
53 #include <finiteVolume/nearWallDist.H>
54 #include <finiteVolume/wallFvPatch.H>
55 #include <OpenFOAM/Switch.H>
57 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
59 int main(int argc, char *argv[])
61     #include <OpenFOAM/setRootCase.H>
63     #include <OpenFOAM/createTime.H>
64     #include <OpenFOAM/createMesh.H>
65     #include <finiteVolume/readGravitationalAcceleration.H>
66     #include "createFields.H"
67     #include <finiteVolume/initContinuityErrs.H>
69     // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
71     Info<< "\nStarting time loop\n" << endl;
73     while (runTime.loop())
74     {
75         Info<< "Time = " << runTime.timeName() << nl << endl;
77         #include "readBubbleFoamControls.H"
78         #include <finiteVolume/CourantNo.H>
80         #include "alphaEqn.H"
81         #include "liftDragCoeffs.H"
82         #include "UEqns.H"
84         // --- PISO loop
86         for (int corr=0; corr<nCorr; corr++)
87         {
88             #include "pEqn.H"
90             if (correctAlpha)
91             {
92                 #include "alphaEqn.H"
93             }
94         }
96         #include "DDtU.H"
98         #include "kEpsilon.H"
100         #include "write.H"
102         Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
103             << "  ClockTime = " << runTime.elapsedClockTime() << " s"
104             << nl << endl;
105     }
107     Info<< "End\n" << endl;
109     return 0;
113 // ************************ vim: set sw=4 sts=4 et: ************************ //