関数IAPWS95_calculate_thermal_conductivity マニュアル

(The documentation of function IAPWS95_calculate_thermal_conductivity)

Last Update: 2023/9/25


◆機能・用途(Purpose)

Huber et al. (2012)の計算式を用いて 指定された密度・温度における熱伝導率を計算する。
Compute the thermal conductivity at given density and temperature using the equations of Huber et al. (2012).


◆形式(Format)

#include <IAPWS95/thermal_conductivity.h>
inline double IAPWS95_calculate_thermal_conductivity
(const double rho,const double T)


◆引数(Arguments)

rho 密度\(\rho\) [kg m\(^{-3}\)]。
The density \(\rho\) [kg m\(^{-3}\)].
T 温度\(T\) [K]。
The temperature \(T\) [K].


◆戻り値(Return value)

引数で指定した密度・温度における熱伝導率[J s\(^{-1}\) m\(^{-1}\) K\(^{-1}\)]。
The thermal conductivity [J s\(^{-1}\) m\(^{-1}\) K\(^{-1}\)] at the density and temperature specified by the arguments.


◆使用例(Example)

const double rho=20.0;
const double T=600.0;
double lambda=IAPWS95_calculate_thermal_conductivity(rho,T);