mixtureAdiabaticFlameT.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-2018 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  #include "removeCaseOptions.H"
56 
57  argList::validArgs.append("properties dictionary");
58  argList args(argc, argv);
59 
60  const fileName propertiesFileName(args[1]);
61 
62  // Construct properties dictionary
63  IFstream propertiesFile(propertiesFileName);
64 
65  // Check propertiesFile stream is OK
66  if (!propertiesFile.good())
67  {
69  << "Cannot read file " << propertiesFileName
70  << abort(FatalError);
71  }
72 
73  dictionary properties(propertiesFile);
74 
75 
76  scalar P(readScalar(properties.lookup("P")));
77  scalar T0(readScalar(properties.lookup("T0")));
78  mixture rMix(properties.lookup("reactants"));
79  mixture pMix(properties.lookup("products"));
80 
81 
82  Info<< nl << "Reading thermodynamic data dictionary" << endl;
83 
84  fileName thermoDataFileName(findEtcFile("thermoData/thermoData"));
85 
86  // Construct properties dictionary
87  IFstream thermoDataFile(thermoDataFileName);
88 
89  // Check thermoData stream is OK
90  if (!thermoDataFile.good())
91  {
93  << "Cannot read file " << thermoDataFileName
94  << abort(FatalError);
95  }
96 
97  dictionary thermoData(thermoDataFile);
98 
99 
100  thermo reactants
101  (
102  rMix[0].volFrac()*thermo(thermoData.subDict(rMix[0].name()))
103  );
104 
105  for (label i = 1; i < rMix.size(); i++)
106  {
107  reactants = reactants
108  + rMix[i].volFrac()*thermo(thermoData.subDict(rMix[i].name()));
109  }
110 
111 
112  thermo products
113  (
114  2*pMix[0].volFrac()*thermo(thermoData.subDict(pMix[0].name()))
115  );
116 
117  for (label i = 1; i < pMix.size(); i++)
118  {
119  products = products
120  + 2*pMix[i].volFrac()*thermo(thermoData.subDict(pMix[i].name()));
121  }
122 
123  Info<< "Adiabatic flame temperature of mixture " << rMix.name() << " = "
124  << products.THa(reactants.Ha(P, T0), P, 1000.0) << " K" << endl;
125 
126  return 0;
127 }
128 
129 
130 // ************************************************************************* //
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:256
static SLList< string > validArgs
A list of valid (mandatory) arguments.
Definition: argList.H:153
Thermodynamics mapping class to expose the absolute enthalpy functions.
rhoReactionThermo & thermo
Definition: createFields.H:28
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 successful.
Definition: doubleScalar.H:68
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:265
Input from file stream.
Definition: IFstream.H:81
Basic thermodynamics type based on the use of fitting functions for cp, h, s obtained from the templa...
Definition: thermo.H:52
messageStream Info
Foam::argList args(argc, argv)
Namespace for OpenFOAM.