00001 /* 00002 * CuLiq class header file 00003 * Data from JANAF (Chase et al. 1985) 00004 * Converted to ShomateVinetPhase 11/7/07 00005 * Victor Kress 00006 * $Id: CuLiq.h,v 1.5 2007/12/04 05:15:16 kress Exp $ 00007 */ 00008 #ifndef CULIQ_H 00009 #define CULIQ_H 00010 00011 #include "ShomateVinetPhase.h" 00012 00020 class CuLiq: public ShomateVinetPhase { 00021 public: 00023 CuLiq(); 00025 virtual ~CuLiq(); 00026 private: 00028 const double tmp; 00030 virtual double getVolume(double ttk); 00032 virtual double getdVdT(double ttk); 00034 virtual double getd2VdT2(double ttk); 00035 }; 00036 00037 #endif 00038 00039 00040