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

Calculator : Semi-Infinite Solid Conduction
Category   : Conduction

Files Included:
  - semi_infinite_solid.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 semi_infinite_solid.f90 -o semi_infinite_calc

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

  semi_infinite_calc < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Boundary condition type (1=Constant Temp, 2=Constant Heat Flux, 3=Convection)
Initial temperature Ti [Â°C]
Boundary parameter (Ts [Â°C] or qs [W/m2] or h [W/m2-K])
Boundary fluid temperature [Â°C]
Thermal conductivity k [W/m-K]
Thermal diffusivity alpha [m2/s]
Position x [m]
Time t [s]

Website : https://thermofluidcalc.com
