関数IAPWS95_check_TP マニュアル

(The documentation of function IAPWS95_check_TP)

Last Update: 2023/9/12


◆機能・用途(Purpose)

指定された温度と圧力がIAPWS-95の適用可能範囲にあるか否かをチェックする。
Check if a given temperature and pressure is within the valid range of IAPWS-95.


◆形式(Format)

#include <IAPWS95/check.h>
inline void IAPWS95_check_TP(const double T,const double P)


◆引数(Arguments)

T 温度 [K]。
A temperature [K].
P 圧力 [Pa]。
A pressure [Pa].


◆動作(Behaviour)

引数で与えた温度・圧力がIAPWS-95の適用可能範囲 (融解曲線から温度1273 [K]まで、圧力\(10^9\) [Pa]まで) にある場合は何もせず、 適用範囲外の場合はプログラムをエラー終了する。
Do nothing if the temperature and pressure given by the argument are within the valid range of IAPWS-95 (from the melting curve to a temperature of 1273 [K] and to a pressure of \(10^9\) [Pa]); otherwise, finish the program as an error.


◆使用例(Example)

double T=260.0;
double P=1.0e+06;
IAPWS95_check_TP(T,P);