CoolProp  4.2.5
An open-source fluid property and humid air property database
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Cyclopropane_Propyne.h
Go to the documentation of this file.
1 #ifndef CYCLOPROPANECLASS_H
2 #define CYCLOPROPANECLASS_H
3 
4 class CycloPropaneClass : public Fluid {
5 
6 public:
9  double psat(double);
10  double rhosatL(double);
11  double rhosatV(double);
12 };
13 
14 class PropyneClass : public Fluid {
15 
16 public:
17  PropyneClass();
19  double psat(double);
20  double rhosatL(double);
21  double rhosatV(double);
22  double surface_tension_T(double T)
23  {
24  // Mulero, JPCRD, 2012
25  return 0.05801*pow(1-T/reduce.T,1.205);
26  }
27 };
28 
29 #endif
double rhosatV(double)
struct CriticalStruct reduce
A pointer to the point that is used to reduce the T and rho for EOS.
Definition: FluidClass.h:222
double psat(double)
Fluid is the abstract base class that is employed by all the other fluids.
Definition: FluidClass.h:147
double surface_tension_T(double T)
double rhosatL(double)