NSRDS6.H
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-2024 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::Function1s::NSRDS6
26 
27 Description
28  NSRDS function number 106
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 NSRDS6_H
55 #define NSRDS6_H
56 
57 #include "Function1.H"
58 
59 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
60 
61 namespace Foam
62 {
63 namespace Function1s
64 {
65 
66 /*---------------------------------------------------------------------------*\
67  Class NSRDS6 Declaration
68 \*---------------------------------------------------------------------------*/
69 
70 class NSRDS6
71 :
72  public FieldFunction1<scalar, NSRDS6>
73 {
74  // Private Data
75 
76  // NSRDS function 106 coefficients
77  scalar Tc_, a_, b_, c_, d_, e_;
78 
79 
80 public:
81 
82  //- Runtime type information
83  TypeName("NSRDS6");
84 
85 
86  // Constructors
87 
88  //- Construct from components
89  NSRDS6
90  (
91  const word& name,
92  const scalar Tc,
93  const scalar a,
94  const scalar b,
95  const scalar c,
96  const scalar d,
97  const scalar e
98  );
99 
100  //- Construct from name and dictionary
101  NSRDS6
102  (
103  const word& name,
104  const unitConversions& units,
105  const dictionary& dict
106  );
107 
108  //- Construct and return a clone
109  virtual tmp<Function1<scalar>> clone() const
110  {
111  return tmp<Function1<scalar>>(new NSRDS6(*this));
112  }
113 
114 
115  // Member Functions
116 
117  //- Evaluate the function and return the result
118  virtual scalar value(scalar T) const
119  {
120  scalar Tr = T/Tc_;
121  return a_*pow(1 - Tr, ((e_*Tr + d_)*Tr + c_)*Tr + b_);
122  }
123 
124  //- Integrate between two scalar values
125  virtual scalar integral(const scalar x1, const scalar x2) const;
126 
127  //- Write the function coefficients
128  virtual void write(Ostream& os, const unitConversions& units) const;
129 };
130 
131 
132 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
133 
134 } // End namespace Function1s
135 } // End namespace Foam
136 
137 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
138 
139 #endif
140 
141 // ************************************************************************* //
const word & name() const
Return the name of the entry.
Definition: Function1.C:78
NSRDS function number 106.
Definition: NSRDS6.H:72
virtual tmp< Function1< scalar > > clone() const
Construct and return a clone.
Definition: NSRDS6.H:108
virtual scalar value(scalar T) const
Evaluate the function and return the result.
Definition: NSRDS6.H:117
virtual void write(Ostream &os, const unitConversions &units) const
Write the function coefficients.
Definition: NSRDS6.C:96
virtual scalar integral(const scalar x1, const scalar x2) const
Integrate between two scalar values.
Definition: NSRDS6.C:85
TypeName("NSRDS6")
Runtime type information.
NSRDS6(const word &name, const scalar Tc, const scalar a, const scalar b, const scalar c, const scalar d, const scalar e)
Construct from components.
Definition: NSRDS6.C:43
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:57
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:162
A class for managing temporary objects.
Definition: tmp.H:55
A class for handling words, derived from string.
Definition: word.H:62
volScalarField & b
Definition: createFields.H:25
const dimensionedScalar c
Speed of light in a vacuum.
Namespace for OpenFOAM.
const doubleScalar e
Definition: doubleScalar.H:106
const HashTable< unitConversion > & units()
Get the table of unit conversions.
dimensionedScalar pow(const dimensionedScalar &ds, const dimensionedScalar &expt)
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
dictionary dict