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

Calculator : Anisotropic Thermal Conduction
Category   : Conduction

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

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

  anisotropic_cond < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Conductivity k_x [W/mK]
Conductivity k_y [W/mK]
Conductivity k_z [W/mK]
Thickness L_x [m]
Thickness L_y [m]
Thickness L_z [m]
Hot surface temperature T_hot [C]
Cold surface temperature T_cold [C]
Cross-section area A [m2]
Rotation angle theta [deg]

Website : https://thermofluidcalc.com
