Backported heat transfer solvers and tutorials (vanilla OF 3.0.1) (in chtMultiRegionF...
[foam-extend-4.0.git] / applications / solvers / heatTransfer / buoyantBoussinesqPisoFoam / buoyantBoussinesqPisoFoam.C
blobe91ead7cd8831487e8d510f8cff7c13861affa56
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Application
25     buoyantBoussinesqPisoFoam
27 Description
28     Transient solver for buoyant, turbulent flow of incompressible fluids
30     Uses the Boussinesq approximation:
31     \f[
32         rho_{k} = 1 - beta(T - T_{ref})
33     \f]
35     where:
36         \f$ rho_{k} \f$ = the effective (driving) kinematic density
37         beta = thermal expansion coefficient [1/K]
38         T = temperature [K]
39         \f$ T_{ref} \f$ = reference temperature [K]
41     Valid when:
42     \f[
43         rho_{k} << 1
44     \f]
46 \*---------------------------------------------------------------------------*/
48 #include "fvCFD.H"
49 #include "singlePhaseTransportModel.H"
50 #include "turbulenceModel.H"
51 #include "pisoControl.H"
53 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
55 int main(int argc, char *argv[])
57 #   include "setRootCase.H"
58 #   include "createTime.H"
59 #   include "createMesh.H"
61     pisoControl piso(mesh);
63 #   include "readGravitationalAcceleration.H"
64 #   include "createFields.H"
65 #   include "initContinuityErrs.H"
66 #   include "createTimeControls.H"
67 #   include "CourantNo.H"
68 #   include "setInitialDeltaT.H"
70 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
72     Info<< "\nStarting time loop\n" << endl;
74     while (runTime.loop())
75     {
76         Info<< "Time = " << runTime.timeName() << nl << endl;
78 #       include "readTimeControls.H"
79 #       include "CourantNo.H"
80 #       include "setDeltaT.H"
82 #       include "UEqn.H"
83 #       include "TEqn.H"
85         // --- PISO loop
86         while (piso.correct())
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 // ************************************************************************* //