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

Calculator : Combined Cycle Power Plant
Category   : Thermo

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

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

  combined_cycle < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Compressor inlet temperature T1 [K]
Turbine inlet temperature T3 [K]
Pressure ratio rp
Specific heat ratio gamma (gas)
Specific heat cp [J/kg-K] (gas)
Compressor isentropic efficiency
Gas turbine isentropic efficiency
Steam boiler pressure Pb [Pa]
Steam temperature Ts [K]
Steam condenser pressure Pc [Pa]
Steam turbine isentropic efficiency
Pump isentropic efficiency
Min pinch temp delta [K]
Gas mass flow rate [kg/s]

Website : https://thermofluidcalc.com
