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

Calculator : Fluid Statics Calculator
Category   : Fluid

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

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

  fluid_statics_calc < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Calculation mode (1=Layered, 2=Surfaces, 3=Manometer)
Surface pressure [kPa]
Number of fluid layers
Density and thickness of layers
Depth of interest [m]

Website : https://thermofluidcalc.com
