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

Calculator : Adiabatic Flame Temperature (Tools)
Category   : Tools

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=Ethane, 3=Propane, 4=Butane, 5=Hydrogen, 6=Methanol, 7=Ethanol)): 1
  Line 2 (Inlet temperature [K]): 298.15
  Line 3 (Excess air percentage [%]): 0.0
  Line 4 (Pressure P [atm]): 1.0

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