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

Calculator : Cylinders & Spheres Conduction
Category   : Conduction

Files Included:
  - heat_conduction_cylinders_spheres.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_conduction_cylinders_spheres.f90 -o heat_conduction_cyl_sph

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

  heat_conduction_cyl_sph < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Geometry (1=Cylinder, 2=Sphere)
Length L [m] (for Cylinder)
Number of layers
Layer 1 inner radius [m]
Layer 1 outer radius [m]
Layer 1 thermal conductivity [W/m-K]
Layer 2 inner radius [m]
Layer 2 outer radius [m]
Layer 2 thermal conductivity [W/m-K]
Inner surface temp [Â°C]
Outer surface temp [Â°C]

Website : https://thermofluidcalc.com
