=========================================================================
  ThermoFluidCalc — Offline Fortran Execution Guide
=========================================================================

Calculator : Adiabatic Flame Temperature
Category   : Thermo

Files Included:
  - combustion_aft.f90 (Fortran Source Code)
  - input.txt (Pre-configured Sample Input)

-------------------------------------------------------------------------
1. How to Compile
-------------------------------------------------------------------------
Make sure you have a Fortran compiler installed (like gfortran).
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 redirect the input.txt file into stdin:

  combustion_aft < input.txt

-------------------------------------------------------------------------
3. Input File Details
-------------------------------------------------------------------------
The input file 'input.txt' contains sequential parameters separated by
newlines. Here is the structure of the included 'input.txt':

  Line 1 (Fuel type (1=Methane, 2=Propane, 3=Octane, 4=Hydrogen, 5=Custom CxHyOz)): 1
  Line 2 (Excess Air [%]): 0.0
  Line 3 (Inlet Temperature [K]): 298.15
  Line 4 (Pressure [kPa]): 101.325
  Line 5 (Carbon atoms (x) for custom fuel): 1.0
  Line 6 (Hydrogen atoms (y) for custom fuel): 4.0
  Line 7 (Oxygen atoms (z) for custom fuel): 0.0

=========================================================================
ThermoFluidCalc — https://thermofluidcalc.com
