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

Calculator : Multidimensional Transient Conduction
Category   : Conduction

Files Included:
  - multidimensional_transient.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 multidimensional_transient.f90 -o multidimensional_calc

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

  multidimensional_calc < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Geometry type (1=Rectangular block, 2=Cylinder block)
Thermal conductivity k [W/m-K]
Density rho [kg/m3]
Specific heat Cp [J/kg-K]
Convection coefficients h1 h2 h3 [W/m2-K]
Initial temperature Ti [Â°C]
Ambient fluid temperature T_inf [Â°C]
Half-thickness dimensions x1 x2 x3 [m]
Evaluation coordinates x y z [m]
Time t [s]

Website : https://thermofluidcalc.com
