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

Calculator : Combined Free & Forced Convection
Category   : Convection

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

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

  combined_convection < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Characteristic diameter D [m]
Free stream velocity V [m/s]
Free stream temperature Tinf [C]
Surface temperature Ts [C]
Characteristic length L [m]
Orientation (1=Assisting, 2=Opposing, 3=Transverse)
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
