pisoFoam.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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.
15 
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.
20 
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/>.
23 
24 Application
25  pisoFoam
26 
27 Description
28  Transient solver for incompressible, turbulent flow, using the PISO
29  algorithm.
30 
31  Sub-models include:
32  - turbulence modelling, i.e. laminar, RAS or LES
33  - run-time selectable MRF and finite volume options, e.g. explicit porosity
34 
35 \*---------------------------------------------------------------------------*/
36 
37 #include "fvCFD.H"
40 #include "pisoControl.H"
41 #include "pressureReference.H"
42 #include "fvModels.H"
43 #include "fvConstraints.H"
44 
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 
47 int main(int argc, char *argv[])
48 {
49  #include "postProcess.H"
50 
51  #include "setRootCaseLists.H"
52  #include "createTime.H"
53  #include "createMesh.H"
54  #include "createControl.H"
55  #include "createFields.H"
56  #include "initContinuityErrs.H"
57 
58  turbulence->validate();
59 
60  // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
61 
62  Info<< "\nStarting time loop\n" << endl;
63 
64  while (runTime.loop())
65  {
66  Info<< "Time = " << runTime.timeName() << nl << endl;
67 
68  #include "CourantNo.H"
69 
70  // Pressure-velocity PISO corrector
71  {
72  fvModels.correct();
73 
74  #include "UEqn.H"
75 
76  // --- PISO loop
77  while (piso.correct())
78  {
79  #include "pEqn.H"
80  }
81  }
82 
83  laminarTransport.correct();
84  turbulence->correct();
85 
86  runTime.write();
87 
88  Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
89  << " ClockTime = " << runTime.elapsedClockTime() << " s"
90  << nl << endl;
91  }
92 
93  Info<< "End\n" << endl;
94 
95  return 0;
96 }
97 
98 
99 // ************************************************************************* //
virtual void correct()
Correct the fvModels.
Definition: fvModels.C:316
engineTime & runTime
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
pisoControl piso(mesh)
Info<< "Reading field U\"<< endl;volVectorField U(IOobject("U", runTime.timeName(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE), mesh);volScalarField rho(IOobject("rho", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE), thermo.rho());volVectorField rhoU(IOobject("rhoU", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::NO_WRITE), rho *U);volScalarField rhoE(IOobject("rhoE", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::NO_WRITE), rho *(e+0.5 *magSqr(U)));surfaceScalarField pos(IOobject("pos", runTime.timeName(), mesh), mesh, dimensionedScalar(dimless, 1.0));surfaceScalarField neg(IOobject("neg", runTime.timeName(), mesh), mesh, dimensionedScalar(dimless, -1.0));surfaceScalarField phi("phi", fvc::flux(rhoU));Info<< "Creating turbulence model\"<< endl;autoPtr< compressible::momentumTransportModel > turbulence(compressible::momentumTransportModel::New(rho, U, phi, thermo))
Definition: createFields.H:94
static const char nl
Definition: Ostream.H:260
Foam::fvModels & fvModels
messageStream Info
Execute application functionObjects to post-process existing results.
singlePhaseTransportModel laminarTransport(U, phi)