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

Calculator : Convective Mass Transfer
Category   : Masstransfer

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

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

  convective_mass_transfer < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Geometry (1=Flat Plate, 2=Circular Pipe, 3=Sphere, 4=Single Cylinder)
Flow Regime (1=Laminar, 2=Turbulent, 3=Mixed)
Characteristic Length L [m]
Pipe Inner Diameter D [m]
Plate Width W [m]
Free-stream/Mean Velocity U [m/s]
Fluid Density rho [kg/m3]
Fluid Dynamic Viscosity mu [Pa-s]
Binary Diffusivity Dab [m2/s]
Bulk Solute Concentration C_bulk [mol/m3]
Surface Solute Concentration C_surface [mol/m3]
Solute Molecular Weight [g/mol]
Pipe / Plate Length [m]

Website : https://thermofluidcalc.com
