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
Ethanol.h
Go to the documentation of this file.
1 #ifndef ETHANOL_H
2 #define ETHANOL_H
3 
4 class EthanolClass : public Fluid {
5 
6 public:
7  EthanolClass();
9  double psat(double);
10  double rhosatL(double);
11  double rhosatV(double);
12  double viscosity_Trho(double T, double rho);
13  double conductivity_Trho(double T, double rho);
14  void ECSParams(double *e_k, double *sigma)
15  {
16  // from Kiselev 2005
17  *e_k = 362.6;
18  *sigma = 0.453;
19  };
20  double surface_tension_T(double);
21 };
22 
23 #endif
double rhosatL(double)
Definition: Ethanol.cpp:83
double psat(double)
Definition: Ethanol.cpp:69
double conductivity_Trho(double T, double rho)
Definition: Ethanol.cpp:151
double rhosatV(double)
Definition: Ethanol.cpp:98
double surface_tension_T(double)
Definition: Ethanol.cpp:171
Fluid is the abstract base class that is employed by all the other fluids.
Definition: FluidClass.h:147
~EthanolClass()
Definition: Ethanol.h:8
EthanolClass()
Definition: Ethanol.cpp:7
void ECSParams(double *e_k, double *sigma)
Definition: Ethanol.h:14
double viscosity_Trho(double T, double rho)
Definition: Ethanol.cpp:113