OpenFOAM
4.1
The OpenFOAM Foundation
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
applications
solvers
combustion
reactingFoam
rhoReactingBuoyantFoam
rhoReactingBuoyantFoam.C
Go to the documentation of this file.
1
/*---------------------------------------------------------------------------*\
2
========= |
3
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4
\\ / O peration |
5
\\ / A nd | Copyright (C) 2012-2016 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
rhoReactingBuoyantFoam
26
27
Description
28
Solver for combustion with chemical reactions using a density based
29
thermodynamics package with enhanced buoyancy treatment.
30
31
\*---------------------------------------------------------------------------*/
32
33
#include "
fvCFD.H
"
34
#include "
rhoCombustionModel.H
"
35
#include "
turbulentFluidThermoModel.H
"
36
#include "
multivariateScheme.H
"
37
#include "
pimpleControl.H
"
38
#include "
fvOptions.H
"
39
#include "
localEulerDdtScheme.H
"
40
#include "
fvcSmooth.H
"
41
42
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43
44
int
main(
int
argc,
char
*argv[])
45
{
46
#include "
postProcess.H
"
47
48
#include "
setRootCase.H
"
49
#include "
createTime.H
"
50
#include "
createMesh.H
"
51
#include "createControl.H"
52
#include "
createTimeControls.H
"
53
#include "
createRDeltaT.H
"
54
#include "initContinuityErrs.H"
55
#include "createFields.H"
56
#include "createFieldRefs.H"
57
#include "
createFvOptions.H
"
58
59
turbulence
->validate();
60
61
if
(!
LTS
)
62
{
63
#include "compressibleCourantNo.H"
64
#include "setInitialDeltaT.H"
65
}
66
67
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
68
69
Info
<<
"\nStarting time loop\n"
<<
endl
;
70
71
while
(runTime.run())
72
{
73
#include "
readTimeControls.H
"
74
75
if
(
LTS
)
76
{
77
#include "setRDeltaT.H"
78
}
79
else
80
{
81
#include "compressibleCourantNo.H"
82
#include "setDeltaT.H"
83
}
84
85
runTime++;
86
87
Info
<<
"Time = "
<< runTime.timeName() <<
nl
<<
endl
;
88
89
#include "rhoEqn.H"
90
91
// --- Pressure-velocity PIMPLE corrector loop
92
while
(
pimple
.loop())
93
{
94
#include "UEqn.H"
95
#include "YEqn.H"
96
#include "EEqn.H"
97
98
// --- Pressure corrector loop
99
while
(
pimple
.correct())
100
{
101
#include "pEqn.H"
102
}
103
104
if
(
pimple
.turbCorr())
105
{
106
turbulence
->correct();
107
}
108
}
109
110
rho
=
thermo
.rho();
111
112
runTime.write();
113
114
Info
<<
"ExecutionTime = "
<< runTime.elapsedCpuTime() <<
" s"
115
<<
" ClockTime = "
<< runTime.elapsedClockTime() <<
" s"
116
<<
nl
<<
endl
;
117
}
118
119
Info
<<
"End\n"
<<
endl
;
120
121
return
0;
122
}
123
124
125
// ************************************************************************* //
turbulence
autoPtr< compressible::turbulenceModel > turbulence
Definition:
createFields.H:23
fvCFD.H
createFvOptions.H
pimple
const dictionary & pimple
Definition:
readFluidMultiRegionPIMPLEControls.H:1
Foam::endl
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition:
Ostream.H:253
readTimeControls.H
Read the control parameters used by setDeltaT.
createTime.H
multivariateScheme.H
turbulentFluidThermoModel.H
thermo
psiReactionThermo & thermo
Definition:
createFields.H:31
rho
rho
Definition:
readInitialConditions.H:96
Foam::nl
static const char nl
Definition:
Ostream.H:262
LTS
bool LTS
Definition:
createRDeltaT.H:1
rhoCombustionModel.H
createMesh.H
fvOptions.H
setRootCase.H
createRDeltaT.H
pimpleControl.H
localEulerDdtScheme.H
Foam::Info
messageStream Info
postProcess.H
Execute application functionObjects to post-process existing results.
fvcSmooth.H
Provides functions smooth spread and sweep which use the FaceCellWave algorithm to smooth and redistr...
createTimeControls.H
Read the control parameters used by setDeltaT.
Generated by
1.8.11