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

Calculator : Psychrometrics (Moist Air Solver)
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 -ffree-line-length-none 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 ($T_{db}$) [°C]): 25.0
  Line 3 (Barometric Pressure ($P$) [kPa]): 101.325
  Line 4 (Second Value (RH [%] or T_wb [°C] or T_dp [°C] or W [kg/kg])): 50.0

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