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

Calculator : Heat Generation in Solids
Category   : Conduction

Files Included:
  - heat_generation.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 heat_generation.f90 -o heat_gen

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

  heat_gen < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Geometry (1=Plane Wall, 2=Cylinder, 3=Sphere)
Characteristic dimension (L, ro) [m]
Thermal conductivity k [W/m-K]
Volumetric heat generation rate q_dot [W/m3]
Convection coefficient h [W/m2-K]
Ambient fluid temperature Tinf [Â°C]

Website : https://thermofluidcalc.com
