Files
CoolProp/include/HumidAirProp.h
2014-05-14 12:46:24 +02:00

41 lines
1.0 KiB
C++

#ifndef HUMAIR_H
#define HUMAIR_H
#include "CoolPropTools.h"
namespace HumidAir
{
// -----------------------
// Standard I/O function
// -----------------------
double HAPropsSI(const char *OutputName, const char *Input1Name, double Input1, const char *Input2Name, double Input2, const char *Input3Name, double Input3);
// -----------------------
// Extra I/O function
// -----------------------
double HAProps_Aux(const char* OutputName, double T, double p, double W, char *units);
// Properties for Ice Ih at temperatures below 273.16 K
double IceProps(const char* Name, double T, double p);
//Turn on the use of virial correlations for air and water
void UseVirialCorrelations(int flag);
void UseIsothermCompressCorrelation(int flag);
void UseIdealGasEnthalpyCorrelations(int flag);
// --------------
// Help functions
// --------------
void HAHelp(void);
int returnHumAirCode(const char * Code);
// ----------------------
// Other simple functions
// ----------------------
double cair_sat(double T);
} /* namespace HumidAir */
#endif