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

Calculator : Porous Media Effective Conductivity
Category   : Conduction

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

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

  porous_media_cond < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Solid conductivity k_solid [W/mK]
Fluid conductivity k_fluid [W/mK]
Porosity (void fraction) epsilon
Hot temperature T_hot [C]
Cold temperature T_cold [C]
Sample thickness L [m]
Cross-section area A [m2]

Website : https://thermofluidcalc.com
