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-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  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 #include "etcFiles.H"
38 
39 #include "specie.H"
40 #include "perfectGas.H"
41 #include "thermo.H"
42 #include "janafThermo.H"
43 #include "absoluteEnthalpy.H"
44 #include "mixture.H"
45 
46 using namespace Foam;
47 
49  thermo;
50 
51 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
52 
53 int main(int argc, char *argv[])
54 {
55  argList::validArgs.append("controlFile");
56  argList args(argc, argv);
57 
58  const fileName controlFileName(args[1]);
59 
60  // Construct control dictionary
61  IFstream controlFile(controlFileName);
62 
63  // Check controlFile stream is OK
64  if (!controlFile.good())
65  {
67  << "Cannot read file " << controlFileName
68  << abort(FatalError);
69  }
70 
71  dictionary control(controlFile);
72 
73 
74  scalar P(readScalar(control.lookup("P")));
75  scalar T0(readScalar(control.lookup("T0")));
76  mixture rMix(control.lookup("reactants"));
77  mixture pMix(control.lookup("products"));
78 
79 
80  Info<< nl << "Reading thermodynamic data dictionary" << endl;
81 
82  fileName thermoDataFileName(findEtcFile("thermoData/thermoData"));
83 
84  // Construct control dictionary
85  IFstream thermoDataFile(thermoDataFileName);
86 
87  // Check thermoData stream is OK
88  if (!thermoDataFile.good())
89  {
91  << "Cannot read file " << thermoDataFileName
92  << abort(FatalError);
93  }
94 
95  dictionary thermoData(thermoDataFile);
96 
97 
98  thermo reactants
99  (
100  rMix[0].volFrac()*thermo(thermoData.subDict(rMix[0].name()))
101  );
102 
103  for (label i = 1; i < rMix.size(); i++)
104  {
105  reactants = reactants
106  + rMix[i].volFrac()*thermo(thermoData.subDict(rMix[i].name()));
107  }
108 
109 
110  thermo products
111  (
112  2*pMix[0].volFrac()*thermo(thermoData.subDict(pMix[0].name()))
113  );
114 
115  for (label i = 1; i < pMix.size(); i++)
116  {
117  products = products
118  + 2*pMix[i].volFrac()*thermo(thermoData.subDict(pMix[i].name()));
119  }
120 
121  Info<< "Adiabatic flame temperature of mixture " << rMix.name() << " = "
122  << products.THa(reactants.Ha(P, T0), P, 1000.0) << " K" << endl;
123 
124  return 0;
125 }
126 
127 
128 // ************************************************************************* //
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
A class for handling file names.
Definition: fileName.H:69
error FatalError
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition: error.H:319
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:253
static SLList< string > validArgs
A list of valid (mandatory) arguments.
Definition: argList.H:154
Thermodynamics mapping class to expose the absolute enthalpy function as the standard enthalpy functi...
psiReactionThermo & thermo
Definition: createFields.H:31
Functions used by OpenFOAM that are specific to POSIX compliant operating systems and need to be repl...
Functions to search &#39;etc&#39; directories for configuration files etc.
Extract command arguments and options from the supplied argc and argv parameters. ...
Definition: argList.H:102
bool readScalar(const char *buf, doubleScalar &s)
Read whole of buf as a scalar. Return true if succesful.
Definition: doubleScalar.H:63
errorManip< error > abort(error &err)
Definition: errorManip.H:131
fileName findEtcFile(const fileName &, bool mandatory=false)
Search for a file using findEtcFiles.
Definition: etcFiles.C:252
static const char nl
Definition: Ostream.H:262
Input from file stream.
Definition: IFstream.H:81
messageStream Info
Foam::argList args(argc, argv)
Namespace for OpenFOAM.