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

Calculator : Adiabatic Flame Temperature
Category   : Thermo

Files Included:
  - combustion_aft.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 combustion_aft.f90 -o combustion_aft

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

  combustion_aft < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Fuel type (1=Methane, 2=Propane, 3=Octane, 4=Hydrogen, 5=Custom CxHyOz)
Excess Air [%]
Inlet Temperature [K]
Pressure [kPa]
Carbon atoms (x) for custom fuel
Hydrogen atoms (y) for custom fuel
Oxygen atoms (z) for custom fuel

Website : https://thermofluidcalc.com
