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

Calculator : Psychrometrics
Category   : Thermo

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

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

  psychro_calc < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Input mode (1=T_db/RH, 2=T_db/T_wb, 3=T_db/T_dp, 4=T_db/W)
Dry-Bulb Temperature (Tdb) [Â°C]
Barometric Pressure (P) [kPa]
Second Value (RH [%] or Twb [Â°C] or Tdp [Â°C] or W [g/kg_da])

Website : https://thermofluidcalc.com
