msaezo / ISA_Calculator

Basic ISA Calculator for Python projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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)


  

About

Basic ISA Calculator for Python projects

License:GNU General Public License v3.0


Languages

Language:Python 100.0%