All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
function1.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) 2017 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 "function1.H"
28 
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
30 
31 namespace Foam
32 {
33 namespace saturationModels
34 {
35  defineTypeNameAndDebug(function1, 0);
36  addToRunTimeSelectionTable(saturationModel, function1, dictionary);
37 }
38 }
39 
40 
41 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
42 
44 :
45  saturationModel(),
46  function_
47  (
48  Function1<scalar>::New("function", dict)
49  )
50 {}
51 
52 
53 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
54 
56 {}
57 
58 
59 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
60 
63 (
64  const volScalarField& T
65 ) const
66 {
68  return volScalarField::null();
69 }
70 
71 
74 (
75  const volScalarField& T
76 ) const
77 {
79  return volScalarField::null();
80 }
81 
82 
85 (
86  const volScalarField& T
87 ) const
88 {
90  return volScalarField::null();
91 }
92 
93 
96 (
97  const volScalarField& p
98 ) const
99 {
100  tmp<volScalarField> tTsat
101  (
102  new volScalarField
103  (
104  IOobject
105  (
106  "Tsat",
107  p.mesh().time().timeName(),
108  p.mesh(),
111  ),
112  p.mesh(),
114  )
115  );
116 
117  volScalarField& Tsat = tTsat.ref();
118 
119  forAll(Tsat, celli)
120  {
121  Tsat[celli] = function_->value(p[celli]);
122  }
123 
124  volScalarField::Boundary& TsatBf = Tsat.boundaryFieldRef();
125 
126  forAll(Tsat.boundaryField(), patchi)
127  {
128  scalarField& Tsatp = TsatBf[patchi];
129  const scalarField& pp = p.boundaryField()[patchi];
130 
131  forAll(Tsatp, facei)
132  {
133  Tsatp[facei] = function_->value(pp[facei]);
134 
135  }
136  }
137 
138  return tTsat;
139 }
140 
141 
142 // ************************************************************************* //
function1(const dictionary &dict)
Construct from a dictionary.
dictionary dict
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:428
virtual tmp< volScalarField > pSatPrime(const volScalarField &T) const
Saturation pressure derivetive w.r.t. temperature.
virtual tmp< volScalarField > Tsat(const volScalarField &p) const
Saturation temperature.
Macros for easy insertion into run-time selection tables.
tmp< DimensionedField< TypeR, GeoMesh > > New(const tmp< DimensionedField< TypeR, GeoMesh >> &tdf1, const word &name, const dimensionSet &dimensions)
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:52
virtual ~function1()
Destructor.
Field< scalar > scalarField
Specialisation of Field<T> for scalar.
const dimensionSet dimTemperature(0, 0, 0, 1, 0, 0, 0)
Definition: dimensionSets.H:52
virtual tmp< volScalarField > pSat(const volScalarField &T) const
Saturation pressure.
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
defineTypeNameAndDebug(combustionModel, 0)
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
Internal & ref()
Return a reference to the dimensioned internal field.
static const GeometricField< scalar, fvPatchField, volMesh > & null()
Return a null geometric field.
label patchi
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
A class for managing temporary objects.
Definition: PtrList.H:53
#define NotImplemented
Issue a FatalErrorIn for a function not currently implemented.
Definition: error.H:366
virtual tmp< volScalarField > lnPSat(const volScalarField &T) const
Natural log of the saturation pressure.
Namespace for OpenFOAM.