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

Calculator : Compressible Flow
Category   : Fluid

Files Included:
  - compressible_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 compressible_flow.f90 -o comp_flow

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

  comp_flow < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Solver mode (1=Isentropic Relations, 2=Normal Shock Relations)
Inlet Mach Number
Specific Heat Ratio (gamma)
Stagnation Temperature [K]
Stagnation Pressure [kPa]

Website : https://thermofluidcalc.com
