pub fn ph(p: f64, h: f64, o_id: i32) -> f64Expand description
ph(p,h,o_id) - the propertry of o_id (thermodynamic,transport,etc)
Examples
use if97::*;
let p:f64 = 3.0;
let h:f64= 0.115331273e+3;
let t=ph(p,h,OT);
println!("p={p:.6} h={h:.6} t={t:.6}");