OpenFOAM
4.1
The OpenFOAM Foundation
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
applications
solvers
combustion
fireFoam
fireFoam.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) 2011-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
fireFoam
26
27
Description
28
Transient solver for fires and turbulent diffusion flames with reacting
29
particle clouds, surface film and pyrolysis modelling.
30
31
\*---------------------------------------------------------------------------*/
32
33
#include "
fvCFD.H
"
34
#include "
turbulentFluidThermoModel.H
"
35
#include "
basicReactingCloud.H
"
36
#include "
surfaceFilmModel.H
"
37
#include "
pyrolysisModelCollection.H
"
38
#include "
radiationModel.H
"
39
#include "
SLGThermo.H
"
40
#include "
solidChemistryModel.H
"
41
#include "
psiCombustionModel.H
"
42
#include "
pimpleControl.H
"
43
#include "
fvOptions.H
"
44
45
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46
47
int
main(
int
argc,
char
*argv[])
48
{
49
#include "
postProcess.H
"
50
51
#include "
setRootCase.H
"
52
#include "
createTime.H
"
53
#include "
createMesh.H
"
54
#include "createControl.H"
55
#include "createFields.H"
56
#include "createFieldRefs.H"
57
#include "
createFvOptions.H
"
58
#include "initContinuityErrs.H"
59
#include "
createTimeControls.H
"
60
#include "compressibleCourantNo.H"
61
#include "setInitialDeltaT.H"
62
#include "
readPyrolysisTimeControls.H
"
63
64
turbulence
->validate();
65
66
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
67
68
Info
<<
"\nStarting time loop\n"
<<
endl
;
69
70
while
(runTime.run())
71
{
72
#include "
readTimeControls.H
"
73
#include "compressibleCourantNo.H"
74
#include "solidRegionDiffusionNo.H"
75
#include "setMultiRegionDeltaT.H"
76
#include "setDeltaT.H"
77
78
runTime++;
79
80
Info
<<
"Time = "
<< runTime.timeName() <<
nl
<<
endl
;
81
82
parcels.evolve();
83
84
surfaceFilm
.evolve();
85
86
if
(
solvePyrolysisRegion
)
87
{
88
pyrolysis.evolve();
89
}
90
91
if
(
solvePrimaryRegion
)
92
{
93
#include "rhoEqn.H"
94
95
// --- PIMPLE loop
96
while
(
pimple
.loop())
97
{
98
#include "UEqn.H"
99
#include "
YEEqn.H
"
100
101
// --- Pressure corrector loop
102
while
(
pimple
.correct())
103
{
104
#include "pEqn.H"
105
}
106
107
if
(
pimple
.turbCorr())
108
{
109
turbulence
->correct();
110
}
111
}
112
113
rho
=
thermo
.rho();
114
}
115
116
runTime.write();
117
118
Info
<<
"ExecutionTime = "
<< runTime.elapsedCpuTime() <<
" s"
119
<<
" ClockTime = "
<< runTime.elapsedClockTime() <<
" s"
120
<<
nl
<<
endl
;
121
}
122
123
Info
<<
"End"
<<
endl
;
124
125
return
0;
126
}
127
128
129
// ************************************************************************* //
turbulence
autoPtr< compressible::turbulenceModel > turbulence
Definition:
createFields.H:23
fvCFD.H
solvePrimaryRegion
Switch solvePrimaryRegion(additionalControlsDict.lookup("solvePrimaryRegion"))
createFvOptions.H
basicReactingCloud.H
solvePyrolysisRegion
Switch solvePyrolysisRegion(additionalControlsDict.lookupOrDefault< bool >("solvePyrolysisRegion", true))
radiationModel.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
solidChemistryModel.H
turbulentFluidThermoModel.H
readPyrolysisTimeControls.H
thermo
psiReactionThermo & thermo
Definition:
createFields.H:31
surfaceFilmModel.H
rho
rho
Definition:
readInitialConditions.H:96
psiCombustionModel.H
pyrolysisModelCollection.H
Foam::nl
static const char nl
Definition:
Ostream.H:262
YEEqn.H
createMesh.H
fvOptions.H
setRootCase.H
pimpleControl.H
Foam::Info
messageStream Info
SLGThermo.H
surfaceFilm
filmModelType & surfaceFilm
Definition:
createFieldRefs.H:3
postProcess.H
Execute application functionObjects to post-process existing results.
createTimeControls.H
Read the control parameters used by setDeltaT.
Generated by
1.8.11