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

Calculator : Steady Conduction — Plane Walls
Category   : Conduction

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

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

  heat_conduction < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Number of layers
Thickness layer 1 [m]
Conductivity layer 1 [W/m-K]
Thickness layer 2 [m]
Conductivity layer 2 [W/m-K]
Thickness layer 3 [m]
Conductivity layer 3 [W/m-K]
Inner surface temperature [Â°C]
Outer surface temperature [Â°C]
Wall Area [m2]

Website : https://thermofluidcalc.com
