Loading [MathJax]/extensions/TeX/AMSsymbols.js
CoolProp
6.7.1dev
An open-source fluid property and humid air property database
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
p
r
s
t
u
v
w
x
Variables
Typedefs
Enumerations
Enumerator
b
d
f
g
h
i
n
p
q
r
s
t
v
x
y
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerations
Enumerator
c
e
i
m
n
o
p
r
s
t
v
z
Related Functions
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
p
q
r
s
t
u
v
Variables
Typedefs
b
c
i
m
t
u
v
Enumerations
Enumerator
c
m
t
Macros
_
a
c
d
e
f
i
l
m
n
p
r
t
u
x
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
Backends
Cubics
CubicsLibrary.h
Go to the documentation of this file.
1
2
3
#ifndef CUBICS_LIBRARY_H
4
#define CUBICS_LIBRARY_H
5
6
#include <vector>
7
#include <string>
8
#include "
CoolPropFluid.h
"
9
10
namespace
CoolProp
{
11
12
namespace
CubicLibrary {
13
14
struct
CubicsValues
15
{
16
double
Tc
,
17
pc
,
18
molemass
,
19
acentric
,
20
rhomolarc
;
21
std::string
name
,
// name of fluid
22
CAS
,
// CAS reference number of fluid
23
BibTeX
;
// BibTex key(s) for the values
24
std::vector<std::string>
aliases
;
25
std::string
alpha_type
;
26
std::vector<double>
alpha_coeffs
;
27
IdealHelmholtzContainer
alpha0
;
28
CubicsValues
() :
rhomolarc
(-1){};
29
};
30
34
std::string
get_fluid_as_JSONstring
(
const
std::string& identifier);
35
39
CubicsValues
get_cubic_values
(
const
std::string& identifier);
40
44
void
add_fluids_as_JSON
(
const
std::string& JSON);
45
47
std::string
get_cubic_fluids_schema
();
48
50
std::string
get_cubic_fluids_list
();
51
52
}
/* namespace CubicLibrary */
53
54
}
/* namespace CoolProp */
55
56
#endif
Generated on Mon Mar 17 2025 04:25:23 for CoolProp by
1.9.1