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

Calculator : Psychrometrics
Category   : Thermo

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

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

  psychro_calc < 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 (Input mode (1=T_db/RH, 2=T_db/T_wb, 3=T_db/T_dp, 4=T_db/W)
): 1
  Line 2 (Dry-Bulb Temperature (Tdb) [Â°C]
): 25.0
  Line 3 (Barometric Pressure (P) [kPa]
): 101.325
  Line 4 (Second Value (RH [%] or Twb [Â°C] or Tdp [Â°C] or W [g/kg_da])): 50.0

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