mixtureAdiabaticFlameT.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-2015 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  mixtureAdiabaticFlameT
26 
27 Description
28  Calculates the adiabatic flame temperature for a given mixture
29  at a given temperature.
30 
31 \*---------------------------------------------------------------------------*/
32 
33 #include "argList.H"
34 #include "dictionary.H"
35 #include "IFstream.H"
36 #include "OSspecific.H"
37 
38 #include "specie.H"
39 #include "perfectGas.H"
40 #include "thermo.H"
41 #include "janafThermo.H"
42 #include "absoluteEnthalpy.H"
43 #include "mixture.H"
44 
45 using namespace Foam;
46 
48  thermo;
49 
50 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51 
52 int main(int argc, char *argv[])
53 {
54  argList::validArgs.append("controlFile");
55  argList args(argc, argv);
56 
57  const fileName controlFileName(args[1]);
58 
59  // Construct control dictionary
60  IFstream controlFile(controlFileName);
61 
62  // Check controlFile stream is OK
63  if (!controlFile.good())
64  {
66  << "Cannot read file " << controlFileName
67  << abort(FatalError);
68  }
69 
70  dictionary control(controlFile);
71 
72 
73  scalar P(readScalar(control.lookup("P")));
74  scalar T0(readScalar(control.lookup("T0")));
75  mixture rMix(control.lookup("reactants"));
76  mixture pMix(control.lookup("products"));
77 
78 
79  Info<< nl << "Reading thermodynamic data dictionary" << endl;
80 
81  fileName thermoDataFileName(findEtcFile("thermoData/thermoData"));
82 
83  // Construct control dictionary
84  IFstream thermoDataFile(thermoDataFileName);
85 
86  // Check thermoData stream is OK
87  if (!thermoDataFile.good())
88  {
90  << "Cannot read file " << thermoDataFileName
91  << abort(FatalError);
92  }
93 
94  dictionary thermoData(thermoDataFile);
95 
96 
97  thermo reactants
98  (
99  rMix[0].volFrac()*thermo(thermoData.subDict(rMix[0].name()))
100  );
101 
102  for (label i = 1; i < rMix.size(); i++)
103  {
104  reactants = reactants
105  + rMix[i].volFrac()*thermo(thermoData.subDict(rMix[i].name()));
106  }
107 
108 
109  thermo products
110  (
111  2*pMix[0].volFrac()*thermo(thermoData.subDict(pMix[0].name()))
112  );
113 
114  for (label i = 1; i < pMix.size(); i++)
115  {
116  products = products
117  + 2*pMix[i].volFrac()*thermo(thermoData.subDict(pMix[i].name()));
118  }
119 
120  Info<< "Adiabatic flame temperature of mixture " << rMix.name() << " = "
121  << products.THa(reactants.Ha(P, T0), P, 1000.0) << " K" << endl;
122 
123  return 0;
124 }
125 
126 
127 // ************************************************************************* //
Foam::argList::validArgs
static SLList< string > validArgs
A list of valid (mandatory) arguments.
Definition: argList.H:143
Foam::findEtcFile
fileName findEtcFile(const fileName &, bool mandatory=false)
Search for a file using findEtcFiles.
Definition: POSIX.C:404
OSspecific.H
Functions used by OpenFOAM that are specific to POSIX compliant operating systems and need to be repl...
Foam::fileName
A class for handling file names.
Definition: fileName.H:69
Foam::IFstream
Input from file stream.
Definition: IFstream.H:81
thermo.H
Foam::absoluteEnthalpy
Thermodynamics mapping class to expose the absolute enthalpy function as the standard enthalpy functi...
Definition: absoluteEnthalpy.H:45
thermo
Basic thermodynamics type based on the use of fitting functions for cp, h, s obtained from the templa...
Foam::argList
Extract command arguments and options from the supplied argc and argv parameters.
Definition: argList.H:97
Foam::endl
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
specie.H
thermo
rhoThermo & thermo
Definition: setRegionFluidFields.H:3
Foam::label
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
Foam::nl
static const char nl
Definition: Ostream.H:260
Foam::Info
messageStream Info
janafThermo.H
argList.H
main
int main(int argc, char *argv[])
Definition: postCalc.C:54
IFstream.H
perfectGas.H
Foam::FatalError
error FatalError
Foam::dictionary
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:137
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::abort
errorManip< error > abort(error &err)
Definition: errorManip.H:131
Foam::species::thermo
Definition: thermo.H:52
mixture.H
FatalErrorInFunction
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition: error.H:318
Foam::readScalar
bool readScalar(const char *buf, doubleScalar &s)
Read whole of buf as a scalar. Return true if succesful.
Definition: doubleScalar.H:63
dictionary.H
args
Foam::argList args(argc, argv)
absoluteEnthalpy.H
Foam::mixture
Definition: mixture.H:52