Skip to content

OwenShepherd/atmus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Atmus

The 1976 US Standard Atmosphere model, written in Rust.

PLEASE NOTE:

  • Pressure and temperature are tested, but assumes altitude above 0km and below 80km.
  • Expanded altitude regimes are being worked on.
  • Improved documentation and structure are being worked on.

Usage

The API exposes a single public function. See the following example:

use crate::atmus::atmus;
fn test_atmus_return_values() {
	let some_result = atmus(1.0);
	assert_eq!(f32::floor(some_result.0), 89874.0);
	assert_eq!(f32::floor(some_result.1), 0.0);
}

The return is simply a tuple: (Pressure [Pa], Temperature [K]).
Atmus expects the altitude in kilometers.

Development References

About

The 1976 US Standard Atmosphere model written in Rust.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages