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

Calculator : Real Gas Equations of State
Category   : Thermo

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

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

  real_gas_eos < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
EOS model (1=van der Waals, 2=Redlich-Kwong, 3=Peng-Robinson)
Temperature T [K]
Pressure P [Pa]
Critical temperature Tc [K]
Critical pressure Pc [Pa]
Acentric factor omega
Molar mass [g/mol]

Website : https://thermofluidcalc.com
