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

Calculator : Linde-Hampson Gas Liquefaction
Category   : Thermo

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

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

  linde_hampson < 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 (Gas type (1=Nitrogen, 2=Oxygen, 3=Air, 4=Methane, 5=Argon)): 1
  Line 2 (Inlet temperature Tin [K]): 300.0
  Line 3 (High pressure Phigh [MPa]): 20.0
  Line 4 (Low pressure Plow [MPa]): 0.1
  Line 5 (Pre-cooling temperature [K]): 300.0
  Line 6 (Compressor isothermal efficiency): 0.80
  Line 7 (Make-up mass flow rate [kg/s]): 1.0

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