Standard International Atmosphere Calculator
Project description
ISA Calculator
==> Basic ISA Calculator for Python projects
- Contents:
- Atmospheric Model up to 110km
- Accurate Calculations for Temperature, Pressure and Density
- Custom defined atmospheric conditions
- Tabulate your data to save future computation time
- Save tabulated data in .csv or .xlsx files
With this module, it is possible to calculate, using the 1976 standard atmosphere model, the Temperature, Density and Pressure at any point in the atmosphere from 0 up to 110,000 [m].
This package is useful for Aerospace and Aeronautical Engineers who wish to run simulations using atmospheric data.
To use this package, follow these steps:
- Install isacalc
- Import isacalc as isa
- Define the Atmosphere Model: isa.get_atmosphere()
- Calculate all parameters at a cetain height: isa.calculate_at_h(h, atmosphere_model)
- It calculates, at the defined height:
- Temperature
- Pressure
- Density
- Speed of sound
- Dynamic Viscosity
And thats it! An example Script:
import isacalc as isa
atmosphere = isa.get_atmosphere()
h = 50000.0
T, P, d, a, mu = isa.calculate_at_h(h, atmosphere)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
isacalc-v1.2.5.tar.gz
(3.5 kB
view hashes)