Function if97::ts

source ·
pub fn ts(t: f64, s: f64, o_id: i32) -> f64
Expand description

ts(t,s,o_id) - the propertry of o_id (thermodynamic,transport,etc)

Examples

 use if97::*;

 let t:f64=300.0-273.15;
 let s:f64=0.392294792;
 let p=ts(t,s,OP);
 println!("t={p:.6} s={s:.6} p={p:.6}");