関数IAPWS95_calculate_viscosity_mu1 マニュアル
(The documentation of function
IAPWS95_calculate_viscosity_mu1
)
Last Update: 2023/9/22
◆機能・用途
(Purpose)
\(\bar{\mu}_1(\delta,\tau)\) (
IAPWS95/viscosity.hのマニュアル
参照) を計算する。
Compute \(\bar{\mu}_1(\delta,\tau)\); see
the documentation of
IAPWS95/viscosity.h
.
◆形式
(Format)
#include <IAPWS95/viscosity.h>
inline double IAPWS95_calculate_viscosity_mu1
(const double delta,const double tau)
◆引数
(Arguments)
delta
規格化した密度(\(\delta=\rho/\rho_c\))。
The normalized density (\(\delta=\rho/\rho_c\)).
tau
規格化した温度の逆数(\(\tau=T_c/T\))。
Inverse of the normalized temperature (\(\tau=T_c/T\)).
◆戻り値
(Return value)
指定した温度における\(\bar{\mu}_1(\delta,\tau)\)の値。
IAPWS95/viscosity.hのマニュアル
の(3)式を用いて計算する。
The value of \(\bar{\mu}_1(\tau)\) at the given temperature, computed by Eq. (3) of
the documentation of
IAPWS95/viscosity.h
.
◆使用例
(Example)
const double rho=20.0;
const double T=600.0;
double mu1=IAPWS95_calculate_viscosity_mu1(rho/IAPWS95_rhoc,IAPWS95_Tc/T);