Function gsw::conversions::t90_from_t48

source ·
pub fn t90_from_t48(t48: f64) -> f64
Expand description

ITS-90 temperature from IPTS-48 temperature

Arguments

  • t48: Temperature (IPTS-48) [deg C]

Returns

  • t90: Temperature ITS-90 [deg C]

References

Saunders, P. 1990: The International Temperature Scale of 1990, ITS-90. WOCE Newsletter 10, IOS, Wormley, UK.

Examples

use gsw::conversions::t90_from_t48;

let t90 = t90_from_t48(12.0);
assert!((t90 - 11.992475405902583).abs() <= f64::EPSILON);