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

Calculator : Vapor-Compression Refrigeration
Category   : Thermo

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

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

  refrig_calc < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Refrigerant type (1=R134a, 2=R22, 3=Ammonia)
Evaporator temperature Tevap [Â°C]
Condenser temperature Tcond [Â°C]
Compressor isentropic efficiency
Mass flow rate mdot [kg/s]

Website : https://thermofluidcalc.com
