Initial commit up to species parsing in thermo.inp

This commit is contained in:
Alex Selimov 2026-03-26 23:47:57 -04:00
parent a7a75c1dd1
commit 516cf945ad
11 changed files with 16523 additions and 0 deletions

View file

@ -17,6 +17,25 @@ Below are the list of solvers in CEA and whether they are currently supported or
- [ ] shock
- [ ] rocket
## Overview
```
.
├── Cargo.toml
├── LICENSE
├── README.md
└── src
├── properties/ # Thermodynamic input data and polynomial calculations
├── models/ # Basic Gas and GasMixture structs
├── equilibrium/ # Iterative solvers for TP, HP, SP, UV, TV, SV
├── rocket/ # Rocket solver functions
├── cj/ # Cj detonation functions
├── shock/ # shock solver functions
├── inputs.rs # input file parsing
└── main.rs
```
## License
This project is licensed under the [MIT License](LICENSE).