=========================================================================
  ThermoFluidCalc — Offline Fortran Execution Guide
=========================================================================

Calculator : Drying Rate Calculator
Category   : Masstransfer

Files Included:
  - drying_rate.f90 (Fortran Source Code)
  - input.txt (Pre-configured Sample Input)

-------------------------------------------------------------------------
1. How to Compile
-------------------------------------------------------------------------
Make sure you have a Fortran compiler installed (like gfortran).
Run the following compilation command in your terminal:

  gfortran -O3 drying_rate.f90 -o drying_rate

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

  drying_rate < input.txt

-------------------------------------------------------------------------
3. Input File Details
-------------------------------------------------------------------------
The input file 'input.txt' contains sequential parameters separated by
newlines. Here is the structure of the included 'input.txt':

  Line 1 (Drying Mode (1=Constant+Falling, 2=Falling only)): 1
  Line 2 (Dry Solid Mass Ms [kg]): 10.0
  Line 3 (Exposed Drying Area A [m2]): 2.0
  Line 4 (Initial Moisture X0 [kg/kg]): 1.20
  Line 5 (Critical Moisture Xc [kg/kg]): 0.45
  Line 6 (Equilibrium Moisture Xe [kg/kg]): 0.08
  Line 7 (Final Moisture Xf [kg/kg]): 0.15
  Line 8 (Constant Drying Rate Nc [kg/m2-h]): 0.80
  Line 9 (Falling Rate Coefficient kf [1/h]): 0.18
  Line 10 (Air Temperature Tair [C]): 60.0
  Line 11 (Relative Humidity RH [%]): 20.0

=========================================================================
ThermoFluidCalc — https://thermofluidcalc.com
