The 1976 US Standard Atmosphere model, written in Rust.
There is some basic usage in the unit tests of ./src/lib.rs
. Essentially:
use crate::atmosphere::get_pressure;
fn test_pressure_at_1km() {
let some_result: f32 = get_pressure(1.0);
assert_eq!(f32::floor(some_result), 89874.0);
}
Currently, only get_pressure
is tested. It takes one parameter as input: the
altitude in kilometers.