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
Propylene.h
Go to the documentation of this file.
1 #ifndef PROPYLENE_H
2 #define PROPYLENE_H
3 
4 class PropyleneClass : public Fluid {
5 
6 public:
9  double psat(double);
10  double rhosatL(double);
11  double rhosatV(double);
12  double surface_tension_T(double T);
13  void ECSParams(double *e_k, double *sigma)
14  {
15  // From Huber (2003)
16  *e_k = 298.9; *sigma = 0.4678;
17  };
18  double ECS_f_int(double T)
19  {
20  // From Huber (2003)
21  return 1.09939e-3+3.72538e-7*T;
22  };
23  double ECS_psi_viscosity(double rhor)
24  {
25  // From Huber (2003)
26  return 1.33962-0.256307*rhor+4.68211e-2*rhor*rhor;
27  };
28  double ECS_chi_conductivity(double rhor)
29  {
30  // From Huber (2003)
31  return 1.3521-0.123177*rhor;
32  };
33 };
34 
35 #endif
double surface_tension_T(double T)
Definition: Propylene.cpp:110
double rhosatL(double)
Definition: Propylene.cpp:81
double ECS_chi_conductivity(double rhor)
Definition: Propylene.h:28
Fluid is the abstract base class that is employed by all the other fluids.
Definition: FluidClass.h:147
double ECS_psi_viscosity(double rhor)
Definition: Propylene.h:23
double psat(double)
Definition: Propylene.cpp:67
double rhosatV(double)
Definition: Propylene.cpp:96
double ECS_f_int(double T)
Definition: Propylene.h:18
void ECSParams(double *e_k, double *sigma)
Definition: Propylene.h:13