/* -------------------------------------------- * File Name : global_evap.h * Purpose : contains all the parameters and reference values for the evaporation model * Output files : - * Creation Date : 16/12/2022 * Created by : Joauma Marichal ----------------------------------------------*/ #ifndef GLOBAL_EVAP_ #define GLOBAL_EVAP_ const double RH = 0.4; // in [-] : Relative humidity const double T_infty = 298.15; // in [K] : Temperature far away from the pool's surface const double Ma = 28.97e-3; // in [kg/mol] : Molar mass of dry air const double Mw = 18.02e-3; // in [kg/mol] : Molar mass of water const double R = 8.314; // in [J/mol K] : Gas constant const double Tc = 647.14; // in [K] : Critical temperature of water const double Pc = 22.064e6; // in [Pa] : Crtical pressure of water const double P_infty = 101325; // in [Pa] : pressure far from the pool's surface const double W_ref = 0.044; // in [m] : width of the domain const int descent_steps = 0; const int transformation = 0; #endif /* GLOBAL_EVAP_ */