U.S. Standard Atmosphere 1976 Model

Complete implementation of COESA's 1976 standard atmospheric model for altitudes from sea level to 1000 km in altitude.
273 descargas
Actualizado 8 oct 2021

Ver licencia

Functionality
  • Allowed altitude inputs include any geometric or geopotential height in meters, kilometers, feet, or miles from 0 km to 1000 km
  • Returns kinetic and molecular-scale temperatures, pressure, density, gravitational acceleration, number density, speed of sound, dynamic and kinematic viscosities, and thermal conductivity coefficient
  • Automatically outputs variables in engineering unit system (SI or English) based on input height units
  • Independent of toolboxes other than base MATLAB (no symbolic)
Example Function Calls
Results = StandardAtmos(30000) % returns air properties as table for geometric altitude of 30,000 m
Results = StandardAtmos([40,50,60],'HeightUnit','mi') % returns air properties as table for geometric altitudes of 40, 50, and 60 mi
Results = StandardAtmos(20000,'UnitSystem','English') % returns air properties as table for geometric altitudes of 20,000 ft in English units
Results = StandardAtmos(84000,'ReferenceFrame','Geopotential') % returns air properties as table for geopotential altitude of 84,000 m
Results = StandardAtmos(1000,'HeightUnit','km','OutputFormat','Struct') % returns air properties as struct for geometric altitude of 1000 km

Citar como

William Gravel (2024). U.S. Standard Atmosphere 1976 Model (https://www.mathworks.com/matlabcentral/fileexchange/92653-u-s-standard-atmosphere-1976-model), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2021a
Compatible con cualquier versión hasta R2021b
Compatibilidad con las plataformas
Windows macOS Linux
Etiquetas Añadir etiquetas
Agradecimientos

Inspirado por: Complete 1976 Standard Atmosphere

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versión Publicado Notas de la versión
1.2.1

Fix missing indices in CalcPressure.m

1.2.0

Fix incorrect unit system implementation

1.1.0

Include output selection functionality and implement number density calculations in lower atmosphere.

1.0.0