Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
Hydrogen-Real-Gas-Model
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MetHyInfra
Hydrogen-Real-Gas-Model
Commits
519e6c9d
Commit
519e6c9d
authored
2 years ago
by
Sebastian Weiss
Browse files
Options
Downloads
Patches
Plain Diff
Upload New File
parent
4dccd12b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/thermophysicalModels/mySpecie/equationOfState/LeachmanH2Gas/LeachmanH2Gas.H
+249
-0
249 additions, 0 deletions
...ls/mySpecie/equationOfState/LeachmanH2Gas/LeachmanH2Gas.H
with
249 additions
and
0 deletions
src/thermophysicalModels/mySpecie/equationOfState/LeachmanH2Gas/LeachmanH2Gas.H
0 → 100644
+
249
−
0
View file @
519e6c9d
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2014-2017 OpenFOAM Foundation
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Class
Foam::LeachmanH2Gas
Group
grpSpecieEquationOfState
Description
LeachmanH2Gas gas equation of state.
SourceFiles
LeachmanH2GasI.H
LeachmanH2Gas.C
\*---------------------------------------------------------------------------*/
#ifndef LeachmanH2Gas_H
#define LeachmanH2Gas_H
#include
"autoPtr.H"
#include
"scalar.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace
Foam
{
// Forward declaration of friend functions and operators
template
<
class
Specie
>
class
LeachmanH2Gas
;
template
<
class
Specie
>
inline
LeachmanH2Gas
<
Specie
>
operator
+
(
const
LeachmanH2Gas
<
Specie
>&
,
const
LeachmanH2Gas
<
Specie
>&
);
template
<
class
Specie
>
inline
LeachmanH2Gas
<
Specie
>
operator
*
(
const
scalar
,
const
LeachmanH2Gas
<
Specie
>&
);
template
<
class
Specie
>
inline
LeachmanH2Gas
<
Specie
>
operator
==
(
const
LeachmanH2Gas
<
Specie
>&
,
const
LeachmanH2Gas
<
Specie
>&
);
template
<
class
Specie
>
Ostream
&
operator
<<
(
Ostream
&
,
const
LeachmanH2Gas
<
Specie
>&
);
/*---------------------------------------------------------------------------*\
Class LeachmanH2Gas Declaration
\*---------------------------------------------------------------------------*/
template
<
class
Specie
>
class
LeachmanH2Gas
:
public
Specie
{
public:
// Public Data
private:
// Private data
//- Critical temperature [K]
scalar
Tc_
;
//- Critical volume [m^3/kmol]
scalar
Vc_
;
//- Critical pressure [Pa]
scalar
Pc_
;
public:
// Constructors
//- Construct from components
inline
LeachmanH2Gas
(
const
Specie
&
sp
,
const
scalar
&
Tc
,
const
scalar
&
Vc
,
const
scalar
&
Pc
);
//- Construct from dictionary
LeachmanH2Gas
(
const
dictionary
&
dict
);
//- Construct as named copy
inline
LeachmanH2Gas
(
const
word
&
name
,
const
LeachmanH2Gas
&
);
//- Construct and return a clone
inline
autoPtr
<
LeachmanH2Gas
>
clone
()
const
;
// Selector from dictionary
inline
static
autoPtr
<
LeachmanH2Gas
>
New
(
const
dictionary
&
dict
);
// Member functions
//- Return the instantiated type name
static
word
typeName
()
{
return
"LeachmanH2Gas<"
+
word
(
Specie
::
typeName_
())
+
'>'
;
}
// Fundamental properties
//- Is the equation of state is incompressible i.e. rho != f(p)
static
const
bool
incompressible
=
false
;
//- Is the equation of state is isochoric i.e. rho = const
static
const
bool
isochoric
=
false
;
//- Return density [kg/m^3]
inline
scalar
rho
(
scalar
p
,
scalar
T
)
const
;
//- Return enthalpy departure [J/kg]
inline
scalar
H
(
const
scalar
p
,
const
scalar
T
)
const
;
//- Return Cp departure [J/(kg K)]
inline
scalar
Cp
(
scalar
p
,
scalar
T
)
const
;
//- Return internal energy departure [J/kg]
inline
scalar
E
(
const
scalar
p
,
const
scalar
T
)
const
;
//- Return Cv departure [J/(kg K)]
inline
scalar
Cv
(
scalar
p
,
scalar
T
)
const
;
//- Return entropy [J/(kg K)]
inline
scalar
S
(
const
scalar
p
,
const
scalar
T
)
const
;
//- Return compressibility rho/p [s^2/m^2]
inline
scalar
psi
(
scalar
p
,
scalar
T
)
const
;
//- Return compression factor []
inline
scalar
Z
(
scalar
p
,
scalar
T
)
const
;
//- Return (Cp - Cv) [J/(kg K)]
inline
scalar
CpMCv
(
scalar
p
,
scalar
T
)
const
;
//- Temperature derivative of heat capacity at constant pressure [J/(kg K^2)]
inline
scalar
dCpdT
(
const
scalar
p
,
const
scalar
T
)
const
;
//- Speed of sound [m/s]
inline
scalar
w
(
const
scalar
p
,
const
scalar
T
)
const
;
// IO
//- Write to Ostream
void
write
(
Ostream
&
os
)
const
;
// Member operators
inline
void
operator
+=
(
const
LeachmanH2Gas
&
);
inline
void
operator
*=
(
const
scalar
);
// Friend operators
friend
LeachmanH2Gas
operator
+
<
Specie
>
(
const
LeachmanH2Gas
&
,
const
LeachmanH2Gas
&
);
friend
LeachmanH2Gas
operator
*
<
Specie
>
(
const
scalar
s
,
const
LeachmanH2Gas
&
);
friend
LeachmanH2Gas
operator
==
<
Specie
>
(
const
LeachmanH2Gas
&
,
const
LeachmanH2Gas
&
);
// Ostream Operator
friend
Ostream
&
operator
<<
<
Specie
>
(
Ostream
&
,
const
LeachmanH2Gas
&
);
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
}
// End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include
"LeachmanH2GasI.H"
#ifdef NoRepository
#include
"LeachmanH2Gas.C"
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment