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

Calculator : Composite Wall Conduction with Convection
Category   : Conduction

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

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

  composite_wall_convection_calc < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Inner air temperature [Â°C]
Outer air temperature [Â°C]
Inner convection coefficient hi [W/m2-K]
Outer convection coefficient ho [W/m2-K]
Use radiation flag (0=No, 1=Yes)
Wall area [m2]
Number of layers
Layer 1 thickness [m]
Layer 1 thermal conductivity [W/m-K]
Layer 2 thickness [m]
Layer 2 thermal conductivity [W/m-K]
Inner relative humidity RH_in [%]

Website : https://thermofluidcalc.com
