15 lines
591 B
Python
Raw Normal View History

2021-01-22 15:30:10 +08:00
'''
2021-01-22 16:15:33 +08:00
Standard Atmosphere Model
2021-01-22 15:30:10 +08:00
This subpackage defines the following functions:
expo.py
expo - Estimate the air densities at given geometric or geopotential altitudes
above the sea level using a exponential atmosphere model.
ussa76.py
2021-01-22 16:15:33 +08:00
lapse_tp - Calculate the temperature and pressure at a given geopotential altitude above base of a specific layer.
ussa76 - Implements the U.S. Standard Atmosphere 1976(USSA76) up to 86km.
2021-01-22 15:30:10 +08:00
2021-01-22 16:15:33 +08:00
coesa76.py
coesa76 - Implements the U.S. Committee on Extension to the Standard Atmosphere(COESA 1976) up to 1000km.
2021-01-22 15:30:10 +08:00
'''