=========================================================================
  ThermoFluidCalc — Offline Fortran Execution Guide
=========================================================================

Calculator : Anisotropic Thermal Conduction
Category   : Conduction

Files Included:
  - anisotropic_cond.f90 (Fortran Source Code)
  - input.txt (Pre-configured Sample Input)

-------------------------------------------------------------------------
1. How to Compile
-------------------------------------------------------------------------
Make sure you have a Fortran compiler installed (like gfortran).
Run the following compilation command in your terminal:

  gfortran -O3 anisotropic_cond.f90 -o anisotropic_cond

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

  anisotropic_cond < input.txt

-------------------------------------------------------------------------
3. Input File Details
-------------------------------------------------------------------------
The input file 'input.txt' contains sequential parameters separated by
newlines. Here is the structure of the included 'input.txt':

  Line 1 (Conductivity k_x [W/mK]): 7.0
  Line 2 (Conductivity k_y [W/mK]): 0.8
  Line 3 (Conductivity k_z [W/mK]): 0.8
  Line 4 (Thickness L_x [m]): 0.01
  Line 5 (Thickness L_y [m]): 0.01
  Line 6 (Thickness L_z [m]): 0.01
  Line 7 (Hot surface temperature T_hot [C]): 100.0
  Line 8 (Cold surface temperature T_cold [C]): 25.0
  Line 9 (Cross-section area A [m2]): 0.001
  Line 10 (Rotation angle theta [deg]): 0.0

=========================================================================
ThermoFluidCalc — https://thermofluidcalc.com
