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

Calculator : McCabe-Thiele Distillation Column
Category   : Masstransfer

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

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

  distillation_mccabe_thiele < 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 (Relative Volatility alpha): 2.45
  Line 2 (Distillate mole fraction xD): 0.95
  Line 3 (Bottoms mole fraction xB): 0.05
  Line 4 (Feed mole fraction zF): 0.45
  Line 5 (Feed thermal condition q): 1.0
  Line 6 (Reflux factor R/Rmin): 1.5
  Line 7 (Feed flow rate F [mol/s]): 100.0

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