comp_flow/
lib.rs

1//! # Compressible Flow
2//!
3//! `comp-flow` is a collection of functions for basic compressible flow relations.
4//!
5//! <div class="warning">
6//!
7//! The included functions have no input checking or error handling whatsoever.
8//! Invalid (non-physical) inputs such as mach < 1 for a shock relation or gamma < 1
9//! may produce non-sensical outputs.
10//!
11//! </div>
12//!
13#![warn(missing_docs)]
14
15pub mod mach_from;
16pub mod mach_to;
17pub mod normal;
18pub mod oblique;
19
20#[doc(inline)]
21pub use mach_from::*;
22#[doc(inline)]
23pub use mach_to::*;
24#[doc(inline)]
25pub use normal::*;
26#[doc(inline)]
27pub use oblique::*;