関数IAPWS95_calculate_thermal_conductivity_lambda2 マニュアル

(The documentation of function IAPWS95_calculate_thermal_conductivity_lambda2)

Last Update: 2023/9/25


◆機能・用途(Purpose)

λ¯1(δ,τ) (IAPWS95/thermal_conductivity.hのマニュアル参照) を計算する。
Compute λ¯1(δ,τ); see the documentation of IAPWS95/thermal_conductivity.h.


◆形式(Format)

#include <IAPWS95/thermal_conductivity.h>
inline double IAPWS95_calculate_thermal_conductivity_lambda2
(const double delta,const double tau)


◆引数(Arguments)

delta 規格化した密度(δ=ρ/ρc)。
The normalized density (δ=ρ/ρc).
tau 規格化した温度の逆数(τ=Tc/T)。
Inverse of the normalized temperature (τ=Tc/T).


◆戻り値(Return value)

指定した温度におけるλ¯1(δ,τ)の値。 IAPWS95/thermal_conductivity.hのマニュアル の(4)式を用いて計算する。
The value of λ¯1(τ) at the given temperature, computed by Eq. (4) of the documentation of IAPWS95/thermal_conductivity.h.


◆使用例(Example)

const double rho=20.0;
const double T=600.0;
double lambda2=IAPWS95_calculate_thermal_conductivity_lambda2 (rho/IAPWS95_rhoc,IAPWS95_Tc/T);