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

Calculator : Psychrometric Processes (HVAC)
Category   : Thermo

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

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

  psychrometric < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Process type (1=Sensible Heating, 2=Sensible Cooling, 3=Cooling & Dehumidification, 4=Evaporative Cooling, 5=Adiabatic Mixing)
Inlet dry-bulb temp [°C]
Inlet relative humidity [%]
Atmospheric pressure [kPa]
Air volumetric flow rate [m3/s]
Target outlet temperature [°C]
Target outlet relative humidity [%]
Stream 2 dry-bulb temp [°C]
Stream 2 relative humidity [%]
Stream 2 volumetric flow rate [m3/s]

Website : https://thermofluidcalc.com
