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
Ether.h
Go to the documentation of this file.
1 #ifndef ETHER_H
2 #define ETHER_H
3 
4 class DimethylEtherClass : public Fluid {
5 
6 public:
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  double surface_tension_T(double T);
15  void ECSParams(double *e_k, double *sigma);
16 };
17 
18 #endif
void ECSParams(double *e_k, double *sigma)
Definition: Ether.cpp:122
double psat(double)
Definition: Ether.cpp:66
double viscosity_Trho(double T, double rho)
Definition: Ether.cpp:126
~DimethylEtherClass()
Definition: Ether.h:8
double rhosatL(double)
Definition: Ether.cpp:79
Fluid is the abstract base class that is employed by all the other fluids.
Definition: FluidClass.h:147
double surface_tension_T(double T)
Definition: Ether.cpp:152
double rhosatV(double)
Definition: Ether.cpp:93
double conductivity_Trho(double T, double rho)
Definition: Ether.cpp:108