=========================================================================
  ThermoFluidCalc — Standalone Fortran Execution Guide
=========================================================================

Calculator : Nozzle & Diffuser Flow
Category   : Fluid

Files Included:
  - nozzle_flow.f90 (Fortran 90/2008 Source Code)
  - input.txt (Pre-configured Sample Input)

-------------------------------------------------------------------------
1. How to Compile
-------------------------------------------------------------------------
Make sure you have GNU Fortran (gfortran) or Intel Fortran (ifort) installed.
Run the following compilation command in your terminal:

  gfortran -O3 nozzle_flow.f90 -o nozzle_flow_calc

-------------------------------------------------------------------------
2. How to Execute
-------------------------------------------------------------------------
Run the compiled binary and pipe the input.txt file into stdin:

  nozzle_flow_calc < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Specific heat ratio gamma
Stagnation temperature T0 [K]
Stagnation pressure P0 [kPa]
Nozzle throat area At [m2]
Nozzle exit area Ae [m2]
Back pressure Pb [kPa]

Website : https://thermofluidcalc.com
