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

Calculator : Inverse Heat Conduction Problem (IHCP) Solver
Category   : Conduction

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

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

  ihcp_solver < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Number of sensors N
Method flag (1=Beck, 2=Tikhonov, 3=Function Spec)
Sensor 1 position x1 [m]
Sensor 1 temperature T1 [C]
Sensor 2 position x2 [m]
Sensor 2 temperature T2 [C]
Sensor 3 position x3 [m]
Sensor 3 temperature T3 [C]
Wall thickness L [m]
Conductivity k [W/mK]
Diffusivity alpha [m2/s]
Cross-section area A [m2]

Website : https://thermofluidcalc.com
