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

Calculator : Steady Conduction — Plane Walls
Category   : Conduction

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

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

  heat_conduction < 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 (Number of layers
): 3
  Line 2 (Thickness layer 1 [m]
): 0.1
  Line 3 (Conductivity layer 1 [W/m-K]
): 0.8
  Line 4 (Thickness layer 2 [m]
): 0.05
  Line 5 (Conductivity layer 2 [W/m-K]
): 0.04
  Line 6 (Thickness layer 3 [m]
): 0.2
  Line 7 (Conductivity layer 3 [W/m-K]
): 1.2
  Line 8 (Inner surface temperature [Â°C]
): 100.0
  Line 9 (Outer surface temperature [Â°C]
): 20.0
  Line 10 (Wall Area [m2]): 1.0

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