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

Calculator : Variable Conductivity k = f(T)
Category   : Conduction

Files Included:
  - dependent_k.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 dependent_k.f90 -o dependent_k_calc

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

  dependent_k_calc < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Geometry (1=Slab, 2=Cylinder, 3=Sphere)
Slab thickness L [m]
Slab area A [m2]
Conductivity model (1=Linear, 2=Quadratic, 3=Tabular)
Reference conductivity k0 [W/m-K]
Temperature coefficient beta [1/K]
Boundary 1 temperature T1 [Â°C]
Boundary 2 temperature T2 [Â°C]

Website : https://thermofluidcalc.com
