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

Calculator : Hydraulic Jump Analysis
Category   : Fluid

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

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

  hydraulic_jump_calc < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Initial water depth y1 [m]
Channel width b [m]
Flow input mode (1=Discharge Q [m3/s], 2=Froude Number Fr1)
Flow parameter value

Website : https://thermofluidcalc.com
