Skip to content

flow_state

flow_state is a lightweight utility to compute thermodynamic and aerodynamic properties for compressible flows.

Features

  • CLI: Quick calculations from the terminal
  • API: Enables scripting and automation
  • Webapp: No installation required

Quick Start

Install the pypi package (see Installation for detailed instructions).

pip install flow-state-calculator

Use flow_state package (see User Guide for detailed examples)

1
2
3
4
5
6
# load package
from flow_state import solve
# solve from known values
state = solve(mach=7.0, pres=1000.0, temp=200.0)
# print results
print(state)

Webapp

Interactive flow calculator online (no installation required).

Launch Webapp

Why flow_state?

Specify the known quantities (Mach, altitude, Re, etc.), flow_state computes the rest.

License

BSD-3-Clause. See LICENSE for details.