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

Calculator : Free Convection: Inclined & Horizontal Plates
Category   : Convection

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

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

  inclined_plate < 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 (Plate length L [m]): 0.5
  Line 2 (Plate width W [m]): 0.3
  Line 3 (Inclination angle theta [deg] (0=vertical, 90=horizontal)): 30.0
  Line 4 (Surface temperature Ts [C]): 80.0
  Line 5 (Ambient temperature Ta [C]): 25.0
  Line 6 (Configuration (1=Upper hot surface/Lower cold, 2=Lower hot surface/Upper cold)): 1
  Line 7 (Fluid type (1=Air, 2=Water, 3=Oil)): 1
  Line 8 (Custom density [kg/m3] (0=auto)): 0.0
  Line 9 (Custom viscosity [Pa-s] (0=auto)): 0.0
  Line 10 (Custom thermal conductivity [W/m-K] (0=auto)): 0.0
  Line 11 (Custom Prandtl number (0=auto)): 0.0
  Line 12 (Custom specific heat [J/kg-K] (0=auto)): 0.0
  Line 13 (Custom thermal expansion coefficient beta [1/K] (0=auto)): 0.0

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