solidPressureThermo.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) 2019 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 "solidPressureThermo.H"
27 #include "fvMesh.H"
28 
29 /* * * * * * * * * * * * * * * private static data * * * * * * * * * * * * * */
30 
31 namespace Foam
32 {
33  defineTypeNameAndDebug(solidPressureThermo, 0);
34 }
35 
36 
37 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
38 
40 (
41  const fvMesh& mesh,
42  const word& phaseName
43 )
44 :
45  solidThermo(mesh, phaseName),
46  p_(lookupOrConstruct(mesh, "p"))
47 {}
48 
49 
51 (
52  const fvMesh& mesh,
53  const dictionary& dict,
54  const word& phaseName
55 )
56 :
57  solidThermo(mesh, dict, phaseName),
58  p_(lookupOrConstruct(mesh, "p"))
59 {}
60 
61 
62 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
63 
65 {}
66 
67 
68 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
69 
71 {
72  return p_;
73 }
74 
75 
77 {
78  return p_;
79 }
80 
81 
82 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
virtual ~solidPressureThermo()
Destructor.
A class for handling words, derived from string.
Definition: word.H:59
defineTypeNameAndDebug(combustionModel, 0)
Fundamental solid thermodynamic properties.
Definition: solidThermo.H:48
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
virtual volScalarField & p()
Pressure [Pa].
solidPressureThermo(const fvMesh &, const word &phaseName)
Construct from mesh and phase name.
Namespace for OpenFOAM.