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

Calculator : Combustion Products Analysis
Category   : Tools

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

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

  combustion_products < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Fuel type (1=Methane, 2=Propane, 3=Butane, 4=Hydrogen, 5=Carbon, 6=Custom)
Excess air [%]
Fuel mass/volume flow rate [kg/h or m3/h]
Custom C mass fraction
Custom H mass fraction
Custom O mass fraction
Custom N mass fraction
Custom S mass fraction

Website : https://thermofluidcalc.com
