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

Calculator : Psychrometric Processes (HVAC)
Category   : Thermo

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

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

  psychrometric < 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 (Process type (1=Sensible Heating, 2=Sensible Cooling, 3=Cooling & Dehumidification, 4=Evaporative Cooling, 5=Adiabatic Mixing)): 1
  Line 2 (Inlet dry-bulb temp [°C]): 25.0
  Line 3 (Inlet relative humidity [%]): 50.0
  Line 4 (Atmospheric pressure [kPa]): 101.325
  Line 5 (Air volumetric flow rate [m3/s]): 2.0
  Line 6 (Target outlet temperature [°C]): 40.0
  Line 7 (Target outlet relative humidity [%]): 30.0
  Line 8 (Stream 2 dry-bulb temp [°C]): 5.0
  Line 9 (Stream 2 relative humidity [%]): 80.0
  Line 10 (Stream 2 volumetric flow rate [m3/s]): 1.0

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