1 | module watercommon_h |
---|
2 | |
---|
3 | implicit none |
---|
4 | |
---|
5 | real, parameter :: T_coup = 234.0 |
---|
6 | real, parameter :: T_h2O_ice_liq = 273.16 |
---|
7 | real, parameter :: T_h2O_ice_clouds = T_h2O_ice_liq-15. |
---|
8 | real, parameter :: mH2O = 18.01528 |
---|
9 | |
---|
10 | ! benjamin additions |
---|
11 | real, parameter :: RLVTT = 2.257E+6 ! Latent heat of vaporization (J kg-1) |
---|
12 | real, parameter :: RLSTT = 2.257E+6 ! 2.591E+6 in reality ! Latent heat of sublimation (J kg-1) |
---|
13 | !real, parameter :: RLVTT = 0.0 |
---|
14 | !real, parameter :: RLSTT = 0.0 |
---|
15 | |
---|
16 | real, parameter :: RLFTT = 3.334E+5 ! Latent heat of fusion (J kg-1) ! entails an energy sink but better description of albedo |
---|
17 | !real, parameter :: RLFTT = 0.0 |
---|
18 | real, parameter :: rhowater = 1.0E+3 ! mass of water (kg/m^3) |
---|
19 | real, parameter :: capcal_h2o_liq = 4181.3 ! specific heat capacity of liquid water J/kg/K |
---|
20 | real, parameter :: mx_eau_sol = 150 ! mass of water (kg/m^2) |
---|
21 | |
---|
22 | ! This was the old Martian latent heat version: |
---|
23 | ! lw=(2834.3-0.28*(zt(ig,l)-To)-0.004*(zt(ig,l)-To)**2)*1.e+3 |
---|
24 | |
---|
25 | real, save :: epsi, RCPD, RCPV, RV, RVTMP2 |
---|
26 | |
---|
27 | end module watercommon_h |
---|