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

Calculator : 2D Conduction Shape Factors
Category   : Conduction

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

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

  shape_factor_calc < 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 (Configuration (1-12)
): 1
  Line 2 (Thermal conductivity k [W/m-K]
): 1.5
  Line 3 (Temperature T1 [Â°C]
): 60.0
  Line 4 (Temperature T2 [Â°C]
): 20.0
  Line 5 (Length L [m]
): 5.0
  Line 6 (Depth/Distance z [m]
): 1.2
  Line 7 (Radius r [m]): 0.3

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