1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
//! Propertry ID - o_id
//!
//! 1. The Basic propertry in IAPWS-IF97 Equation - p,t,v,d,h,s,cp,cv,w
//!    * region1_pT.rs, region2_pT.rs, region5_pT.rs
//!    * region3_Td.rs
//! 2. Transport propertry
//!    * common::transport_further.rs
//! 3. The extended propertry
//!    * region1_pT_ext.rs, region2_pT_ext.rs, region5_pT_ext.rs
//!    * region3_Td_ext.rs
//!

/// 0. p - Pressure  MPa   
pub const OP: i32 = 0;
/// 1. t - Temperature  °C
pub const OT: i32 = 1;
/// 2. ρ - Density   kg/m³
pub const OD: i32 = 2;
/// 3. v - Specific Volume  m³/kg   
pub const OV: i32 = 3;
/// 4. h - Specific enthalpy  kJ/kg  
pub const OH: i32 = 4;
/// 5. s - Specific entropy  kJ/(kg·K) )
pub const OS: i32 = 5;
/// 6. e - Specific exergy  kJ/kg
pub const OE: i32 = 6;
/// 7. u - Specific internal energy  kJ/kg
pub const OU: i32 = 7;
/// 8. cp - Specific isobaric heat capacity  kJ/(kg·K)
pub const OCP: i32 = 8;
/// 9. cv -  Specific isochoric heat capacity  kJ/(kg·K)
pub const OCV: i32 = 9;
/// 10. w -  Speed of sound   m/s
pub const OW: i32 = 10;
/// 11. k - Isentropic exponent
pub const OKS: i32 = 11;
/// 12. f - Specific Helmholtz free energy   kJ/kg
pub const OF: i32 = 12;
/// 13. g - Specific Gibbs free energy kJ/kg
pub const OG: i32 = 13;
/// 14. z - Compressibility factor
pub const OZ: i32 = 14;
/// 15. x - Steam quality
pub const OX: i32 = 15;
/// 16. r - Region
pub const OR: i32 = 16;
/// 17. δt - Isobaric cubic expansion coefficient  1/K
pub const OEC: i32 = 17;
/// 18. kT - Isothermal compressibility   1/MPa  
pub const OKT: i32 = 18;
/// 19. (∂V/∂T)p - Partial derivative   m³/(kg·K)
pub const ODVDT: i32 = 19;
/// 20. (∂V/∂P)T -  Partial derivative  m³/(kg·MPa)
pub const ODVDP: i32 = 20;
/// 21. (∂p/∂t)v - Partial derivative    MPa/K
pub const ODPDT: i32 = 21;
/// 22. δt -  Isothermal throttling coefficient kJ/(kg·MPa)
pub const OIJTC: i32 = 22;
/// 23. μ - Joule-Thomson coefficient   K/MPa  joule
pub const OJTC: i32 = 23;
/// 24. η - Dynamic viscosity   Pa.s dv 
pub const ODV: i32 = 24;
/// 25. ν -  Kinematic viscosity  m²/s
pub const OKV: i32 = 25;
/// 26. λ - Thermal conductivity  W/(m.K) tc
pub const OTC: i32 = 26;
/// 27. a - Thermal diffusivity   m²/s
pub const OTD: i32 = 27;
/// 28. Pr -  Prandtl number
pub const OPR: i32 = 28;
/// 29. σ - Surface tension   N/m
pub const OST: i32 = 29;
/// 30. ε - Static Dielectric Constant
pub const OSDC: i32 = 30;
/// 31. β - Isochoric pressure coefficient    1/K
pub const OPC: i32 = 31;
/// 32. βp -  Isothermal stress coefficient, kg/m³
pub const OBETAP: i32 = 32;
/// 33. fi-  Fugacity coefficient 
pub const OFI: i32 = 33;
/// 34. f* - Fugacity MPa
pub const OFU: i32 = 34;
/// 35. αp - Relative pressure coefficient  1/K
pub const OALFAP: i32 = 35;