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

Calculator : Critical Pressure Coefficient
Category   : Cfd

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

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

  critical_cp < 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 (Min Cp (incompressible) ($C_{p,\min}$)\nSpecific Heat Ratio ($\gamma$)\ncpmin_init): 0.7
  Line 2 (Parameter 2): 1.4
  Line 3 (Parameter 3): -1.2

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