pub fn sp_salinometer(rt: f64, t90: f64) -> Result<f64>
Expand description

Practical Salinity from a laboratory salinometer

Arguments

  • Rt: C(SP, t_68, 0)/C(SP=35, t_68, 0) [ unitless ]
  • t90: temperature (ITS-90) of the bath of the salinometer [ deg C ]

Example:

use gsw::practical_salinity::sp_salinometer;
let sp = sp_salinometer(0.9, 10.0).unwrap();
assert_eq!(sp, 31.130296542699828);