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

Calculator : 2D Thermal Bridge Calculator
Category   : Conduction

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

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

  thermal_bridge_calc < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Bridge Type (1=Concrete column bridge, 2=Linear slab bridge)
Inner temp [Â°C]
Outer temp [Â°C]
Inner film resistance Rsi [m2-K/W]
Outer film resistance Rse [m2-K/W]
Bridge thermal conductivity k_bridge [W/m-K]
Bridge thickness t_bridge [mm]
Bridge width/length w_bridge [mm]
Number of layers
Layer 1 thickness [mm]
Layer 1 thermal conductivity [W/m-K]
Layer 2 thickness [mm]
Layer 2 thermal conductivity [W/m-K]
Length along bridge axis L [m]

Website : https://thermofluidcalc.com
