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

Calculator : Rankine Cycle
Category   : Thermo

Files Included:
  - rankine_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 rankine_cycle.f90 -o rankine_calc

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

  rankine_calc < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Cycle mode (1=Simple Rankine, 2=Reheat Rankine)
Boiler pressure Pb [kPa]
Turbine inlet temperature Ts [Â°C]
Condenser pressure Pc [kPa]
Turbine isentropic efficiency
Pump isentropic efficiency
Mass flow rate mdot [kg/s]

Website : https://thermofluidcalc.com
