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

Calculator : Steam Tables
Category   : Thermo

Files Included:
  - steam.f90 (Fortran 90/2008 Source Code)
  - steam_calc.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 -ffree-line-length-none steam.f90 steam_calc.f90 -o steam_calc

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

  steam_calc < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Input combination mode (1=T/P, 2=T/x, 3=P/x, 4=P/h, 5=P/s)
Parameter 1 (Temperature [Â°C] or Pressure [kPa])
Parameter 2 (Pressure [kPa] or Quality [0-1] or Enthalpy [kJ/kg] or Entropy [kJ/kg-K])

Website : https://thermofluidcalc.com
