thermo.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-2023 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 \*---------------------------------------------------------------------------*/
25 
26 #include "thermo.H"
27 
28 /* * * * * * * * * * * * * * * private static data * * * * * * * * * * * * * */
29 
30 template<class Thermo, template<class> class Type>
31 const Foam::scalar Foam::species::thermo<Thermo, Type>::tol_ = 1.0e-4;
32 
33 template<class Thermo, template<class> class Type>
35 
36 
37 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
38 
39 template<class Thermo, template<class> class Type>
41 (
42  const word& name,
43  const dictionary& dict
44 )
45 :
46  Thermo(name, dict)
47 {}
48 
49 
50 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
51 
52 template<class Thermo, template<class> class Type>
54 {
55  Thermo::write(os);
56 }
57 
58 
59 // * * * * * * * * * * * * * * * Ostream Operator * * * * * * * * * * * * * //
60 
61 template<class Thermo, template<class> class Type>
62 Foam::Ostream& Foam::species::operator<<
63 (
64  Ostream& os, const thermo<Thermo, Type>& st
65 )
66 {
67  st.write(os);
68  return os;
69 }
70 
71 
72 // ************************************************************************* //
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:57
virtual Ostream & write(const char)=0
Write character.
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
Basic thermodynamics type based on the use of fitting functions for cp, h, s obtained from the templa...
Definition: thermo.H:92
void write(Ostream &os) const
Write to Ostream.
Definition: thermo.C:53
thermo(const Thermo &sp)
Construct from components.
Definition: thermoI.H:34
A class for handling words, derived from string.
Definition: word.H:62
void write(std::ostream &os, const bool binary, List< floatScalar > &fField)
Write floats ascii or binary.
word name(const complex &)
Return a string representation of a complex.
Definition: complex.C:47
dictionary dict