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
HumidAirProp.h
Go to the documentation of this file.
1 
2 
3 #ifndef HUMAIR_H
4 #define HUMAIR_H
5 
6 #include "CoolPropTools.h"
7 
8 // -----------------------
9 // Standard I/O function
10 // -----------------------
11 EXPORT_CODE double CONVENTION HAProps(const char *OutputName, const char *Input1Name, double Input1, const char *Input2Name, double Input2, const char *Input3Name, double Input3);
12 
13 // -----------------------
14 // Extra I/O function
15 // -----------------------
16 EXPORT_CODE double CONVENTION HAProps_Aux(const char* OutputName, double T, double p, double W, char *units);
17 
18 // Properties for Ice Ih at temperatures below 273.16 K
19 double IceProps(const char* Name, double T, double p);
20 
21 //Turn on the use of virial correlations for air and water
22 void UseVirialCorrelations(int flag);
23 void UseIsothermCompressCorrelation(int flag);
24 void UseIdealGasEnthalpyCorrelations(int flag);
25 
26 // --------------
27 // Help functions
28 // --------------
29 void HAHelp(void);
30 int returnHumAirCode(const char * Code);
31 
32 // ----------------------
33 // Other simple functions
34 // ----------------------
35 double cair_sat(double T);
36 
37 #endif
void HAHelp(void)
double cair_sat(double T)
#define EXPORT_CODE
Definition: CoolPropTools.h:31
double IceProps(const char *Name, double T, double p)
void UseIdealGasEnthalpyCorrelations(int flag)
void UseVirialCorrelations(int flag)
EXPORT_CODE double CONVENTION HAProps(const char *OutputName, const char *Input1Name, double Input1, const char *Input2Name, double Input2, const char *Input3Name, double Input3)
int returnHumAirCode(const char *Code)
EXPORT_CODE double CONVENTION HAProps_Aux(const char *OutputName, double T, double p, double W, char *units)
#define CONVENTION
Definition: CoolPropTools.h:34
void UseIsothermCompressCorrelation(int flag)