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

Calculator : Flat Plate Convection
Category   : Convection

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

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

  flat_plate_conv < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Plate Length L [m]
Plate Width W [m]
Surface Temp Ts [Â°C]
Free Stream Temp Tinf [Â°C]
Free Stream Velocity U [m/s]
Fluid Density [kg/m3]
Dynamic Viscosity [Pa-s]
Thermal Conductivity k [W/m-K]
Prandtl Number Pr
Specific Heat Cp [J/kg-K]

Website : https://thermofluidcalc.com
