関数IAPWS95_calculate_viscosity_mu0 マニュアル
(The documentation of function
IAPWS95_calculate_viscosity_mu0
)
Last Update: 2023/9/22
◆機能・用途
(Purpose)
μ
¯
0
(
τ
)
(
IAPWS95/viscosity.hのマニュアル
参照) を計算する。
Compute
μ
¯
0
(
τ
)
; see
the documentation of
IAPWS95/viscosity.h
.
◆形式
(Format)
#include <IAPWS95/viscosity.h>
inline double IAPWS95_calculate_viscosity_mu0
(const double tau)
◆引数
(Arguments)
tau
規格化した温度の逆数(
τ
=
T
c
/
T
)。
Inverse of the normalized temperature (
τ
=
T
c
/
T
).
◆戻り値
(Return value)
指定した温度における
μ
¯
0
(
τ
)
の値。
IAPWS95/viscosity.hのマニュアル
の(2)式を用いて計算する。
The value of
μ
¯
0
(
τ
)
at the given temperature, computed by Eq. (2) of
the documentation of
IAPWS95/viscosity.h
.
◆使用例
(Example)
const double T=600.0;
double mu0=IAPWS95_calculate_viscosity_mu0(IAPWS95_Tc/T);