NSRDSfunc7.H
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 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 Class
25  Foam::NSRDSfunc7
26 
27 Description
28  NSRDS-AICHE function number 107
29 
30  Source:
31  \verbatim
32  NSRDS - AICHE
33  Data Compilation Tables
34  of Properties of
35  Pure Compounds
36 
37  Design Institute for Physical Property Data
38  American Institute of Chemical Engineers
39  345 East 47th Street
40  New York, New York 10017
41 
42  National Standard Reference Data System
43  American Institute of Chemical Engineers
44 
45  T.E. Daubert - R.P. Danner
46 
47  Department of Chemical Engineering
48  The Pennsylvania State University
49  University Park, PA 16802
50  \endverbatim
51 
52 \*---------------------------------------------------------------------------*/
53 
54 #ifndef NSRDSfunc7_H
55 #define NSRDSfunc7_H
56 
57 #include "thermophysicalFunction.H"
58 
59 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
60 
61 namespace Foam
62 {
63 
64 /*---------------------------------------------------------------------------*\
65  Class NSRDSfunc7 Declaration
66 \*---------------------------------------------------------------------------*/
67 
68 class NSRDSfunc7
69 :
71 {
72  // Private data
73 
74  // NSRDS function 107 coefficients
75  scalar a_, b_, c_, d_, e_;
76 
77 
78 public:
79 
80  //- Runtime type information
81  TypeName("NSRDSfunc7");
82 
83 
84  // Constructors
85 
86  //- Construct from components
88  (
89  const scalar a,
90  const scalar b,
91  const scalar c,
92  const scalar d,
93  const scalar e
94  );
95 
96  //- Construct from Istream
97  NSRDSfunc7(Istream& is);
98 
99  //- Construct from dictionary
100  NSRDSfunc7(const dictionary& dict);
101 
102 
103  // Member Functions
104 
105  //- Evaluate the function and return the result
106  scalar f(scalar, scalar T) const
107  {
108  return a_ + b_*sqr((c_/T)/sinh(c_/T)) + d_*sqr((e_/T)/cosh(e_/T));
109  }
110 
111  //- Write the function coefficients
112  void writeData(Ostream& os) const
113  {
114  os << a_ << token::SPACE
115  << b_ << token::SPACE
116  << c_ << token::SPACE
117  << d_ << token::SPACE
118  << e_;
119  }
120 
121 
122  // Ostream Operator
124  friend Ostream& operator<<(Ostream& os, const NSRDSfunc7& f)
125  {
126  f.writeData(os);
127  return os;
128  }
129 };
130 
131 
132 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
133 
134 } // End namespace Foam
135 
136 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
137 
138 #endif
139 
140 // ************************************************************************* //
dictionary dict
const double e
Elementary charge.
Definition: doubleFloat.H:78
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
dimensionedSymmTensor sqr(const dimensionedVector &dv)
An Istream is an abstract base class for all input systems (streams, files, token lists etc)...
Definition: Istream.H:57
NSRDS-AICHE function number 107.
Definition: NSRDSfunc7.H:67
scalar f(scalar, scalar T) const
Evaluate the function and return the result.
Definition: NSRDSfunc7.H:105
Abstract base class for thermo-physical functions.
const dimensionedScalar b
Wien displacement law constant: default SI units: [m.K].
Definition: createFields.H:27
NSRDSfunc7(const scalar a, const scalar b, const scalar c, const scalar d, const scalar e)
Construct from components.
Definition: NSRDSfunc7.C:41
TypeName("NSRDSfunc7")
Runtime type information.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:53
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
friend Ostream & operator<<(Ostream &os, const NSRDSfunc7 &f)
Definition: NSRDSfunc7.H:123
dimensionedScalar sinh(const dimensionedScalar &ds)
const dimensionedScalar c
Speed of light in a vacuum.
dimensionedScalar cosh(const dimensionedScalar &ds)
void writeData(Ostream &os) const
Write the function coefficients.
Definition: NSRDSfunc7.H:111
Namespace for OpenFOAM.