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
R744.h
Go to the documentation of this file.
1 #ifndef R744_H
2 #define R744_H
3 
4  class R744Class : public Fluid{
5 
6  public:
7  R744Class();
8  ~R744Class(){};
9  double conductivity_Trho(double, double);
10  double viscosity_Trho(double, double);
11  double psat(double);
12  double rhosatL(double);
13  double rhosatV(double);
14  double surface_tension_T(double T)
15  {
16  // From Mulero, 2012, JPCRD
17  return 0.07863*pow(1-T/reduce.T,1.254);
18  };
19  };
20 
21 #endif
double conductivity_Trho(double, double)
Definition: R744.cpp:321
double viscosity_Trho(double, double)
Definition: R744.cpp:360
double psat(double)
Definition: R744.cpp:391
Definition: R744.h:4
double surface_tension_T(double T)
Definition: R744.h:14
struct CriticalStruct reduce
A pointer to the point that is used to reduce the T and rho for EOS.
Definition: FluidClass.h:222
~R744Class()
Definition: R744.h:8
Fluid is the abstract base class that is employed by all the other fluids.
Definition: FluidClass.h:147
R744Class()
Definition: R744.cpp:29
double rhosatL(double)
Definition: R744.cpp:403
double rhosatV(double)
Definition: R744.cpp:415