Last change
on this file since 726 was
650,
checked in by jleconte, 13 years ago
|
- Corrected the temperature used to differentiate sublimation and evaporation in watersat_grad
- Minor name changes in watercommon
- Better physical parametrization of the effective radius of liquid and icy water cloud particles in callcorrk
(for radfixed=true)
- Added consistency check in inifis
- Moved 1d water initialization from physiqu to rcm1d
|
File size:
1.1 KB
|
Rev | Line | |
---|
[135] | 1 | module watercommon_h |
---|
| 2 | |
---|
| 3 | implicit none |
---|
| 4 | |
---|
| 5 | real, parameter :: T_coup = 234.0 |
---|
[650] | 6 | real, parameter :: T_h2O_ice_liq = 273.16 |
---|
| 7 | real, parameter :: T_h2O_ice_clouds = T_h2O_ice_liq-15. |
---|
[135] | 8 | real, parameter :: mH2O = 18.01528 |
---|
| 9 | |
---|
[253] | 10 | ! benjamin additions |
---|
[650] | 11 | real, parameter :: RLVTT = 2.257E+6 ! Latent heat of vaporization (J kg-1) |
---|
[253] | 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 | |
---|
[650] | 16 | real, parameter :: RLFTT = 3.334E+5 ! Latent heat of fusion (J kg-1) ! entails an energy sink but better description of albedo |
---|
[253] | 17 | !real, parameter :: RLFTT = 0.0 |
---|
| 18 | real, parameter :: rhowater = 1.0E+3 ! mass of water (kg/m^3) |
---|
[650] | 19 | real, parameter :: capcal_h2o_liq = 4181.3 ! specific heat capacity of liquid water J/kg/K |
---|
[253] | 20 | real, parameter :: mx_eau_sol = 150 ! mass of water (kg/m^2) |
---|
| 21 | |
---|
[135] | 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 | |
---|
[650] | 25 | real, save :: epsi, RCPD, RCPV, RV, RVTMP2 |
---|
[135] | 26 | |
---|
| 27 | end module watercommon_h |
---|
Note: See
TracBrowser
for help on using the repository browser.