関数IAPWS95_calculate_Delta マニュアル

(The documentation of function IAPWS95_calculate_Delta)

Last Update: 2023/9/22


◆機能・用途(Purpose)

残差項の計算式に登場するΔとその導関数を計算する。 関数IAPWS95_calculate_residual の内部で用いる補助関数である。
Compute Δ and its derivatives that appear in the equations of the residual part. This is a supplementary function used internally in function IAPWS95_calculate_residual.


◆形式(Format)

#include <IAPWS95/forward.h>
inline double IAPWS95_calculate_Delta
(const double delta,const double tau,
 const int Ndiff_delta,const int Ndiff_tau)


◆引数(Arguments)

delta 規格化した密度(δ=ρ/ρc)。
The normalized density (δ=ρ/ρc).
tau 規格化した温度の逆数(τ=Tc/T)。
Inverse of the normalized temperature (τ=Tc/T).
Ndiff_delta δでの微分回数。「戻り値」の項目参照。
The number of differentiation by δ. See “Return value” section for more detail.
Ndiff_tau τでの微分回数。「戻り値」の項目参照。
The number of differentiation by τ. See “Return value” section for more detail.


◆戻り値(Return value)

指定した密度・温度に対応するΔまたはその導関数の値。 引数Ndiff_delta, Ndiff_tauの値に応じて以下の量が計算される。
The value of Δ or its derivative for the given density and temperature. The following quantities are computed depending on the values of arguments Ndiff_delta and Ndiff_tau.

Ndiff_delta Ndiff_tau 計算する量
Quantity to compute
計算式(Wagner and Pruss (2002)の表6.5に基づく)
The equation (based on Table 6.5 of Wagner and Pruss (2002))
0 0 Δ θ2+Biδ~ai
1 0 Δδ (δ1)[2Aiθβiδ~1/(2βi)1+2Biaiδ~ai1]
2 0 2Δδ2 2Aiθβiδ~1/(2βi)1+2Biaiδ~ai1+4Biai(ai1)δ~ai1+2Ai2βi2δ~1/βi1+4Aiθβi(12βi1)δ~1/(2βi)1
0 1 Δτ 2θ
0 2 2Δτ2 2
1 1 2Δδτ 2Aiβiδ~1/(2βi)1(δ1)

ここで (1)θ(1τ)+Aiδ~1/(2βi) (2)δ~(δ1)2 である。またWagner and Pruss (2002)の表6.2によれば i=55, i=56のいずれの場合にも Ai=0.32, Bi=0.2, ai=3.5, βi=0.3である。
Here, θ and δ~ are defined as Eqs. (1) and (2), respectively. The constants are given as Ai=0.32, Bi=0.2, ai=3.5, and βi=0.3, regardless of whether i=55 or i=56, according to Table 6.2 of Wagner and Pruss (2002).


◆使用例(Example)

const double rho=20.0;
const double T=600.0;
double dDelta_ddelta=IAPWS95_calculate_Delta (rho/IAPWS95_rhoc,IAPWS95_Tc/T,1);