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

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

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

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

  inclined_plate < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Plate length L [m]
Plate width W [m]
Inclination angle theta [deg] (0=vertical, 90=horizontal)
Surface temperature Ts [C]
Ambient temperature Ta [C]
Configuration (1=Upper hot surface/Lower cold, 2=Lower hot surface/Upper cold)
Fluid type (1=Air, 2=Water, 3=Oil)
Custom density [kg/m3] (0=auto)
Custom viscosity [Pa-s] (0=auto)
Custom thermal conductivity [W/m-K] (0=auto)
Custom Prandtl number (0=auto)
Custom specific heat [J/kg-K] (0=auto)
Custom thermal expansion coefficient beta [1/K] (0=auto)

Website : https://thermofluidcalc.com
