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

Calculator : Transient Conduction — 1D Series
Category   : Conduction

Files Included:
  - transient_conduction_1d.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 transient_conduction_1d.f90 -o transient_1d

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

  transient_1d < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Geometry (1=Slab, 2=Cylinder, 3=Sphere)
Characteristic length/radius [m]
Thermal conductivity k [W/m-K]
Density rho [kg/m3]
Specific heat Cp [J/kg-K]
Convection coefficient h [W/m2-K]
Initial temperature Ti [Â°C]
Ambient temperature Tinf [Â°C]
Position ratio x/L or r/ro
Time t [s]

Website : https://thermofluidcalc.com
