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

Calculator : Lumped System Transient Analysis
Category   : Conduction

Files Included:
  - lumped_system_analysis.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 lumped_system_analysis.f90 -o lumped_system

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

  lumped_system < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Geometry (1=Sphere, 2=Cylinder, 3=Plane Wall, 4=Cube)
Radius/Half-thickness [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]
Target temperature T_target [Â°C]

Website : https://thermofluidcalc.com
