Changeset 4135 for trunk/LMDZ.COMMON/libf/evolution/soil_therm_inertia.F90
- Timestamp:
- Mar 16, 2026, 6:09:43 PM (4 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/soil_therm_inertia.F90
r4117 r4135 26 26 ! PARAMETERS 27 27 ! ---------- 28 real(dp), parameter :: TI_regolith_avg = 250._dp ! Average of observed thermal inertia for regolith [SI], Mellon et al. 2000 29 real(dp), parameter :: TI_breccia = 750._dp ! Thermal inertia for breccia [SI], Mellon et al. 2000; Wood et al. 2008 30 real(dp), parameter :: TI_bedrock = 2300._dp ! Thermal inertia for bedrock [SI], Mellon et al. 2000; Wood et al. 2008 31 real(dp), parameter, private :: P610 = 610._dp ! Reference mean surface pressure [Pa] 28 32 real(dp), parameter, private :: reg_inertie_thresold = 370._dp ! Above this thermal inertia, the regolith has too much cementation to be dependant on the pressure [J/m^2/K/s^1/2] 29 33 real(dp), parameter, private :: reg_inertie_minvalue = 50._dp ! Minimum value of the Thermal Inertia at low pressure (Piqueux & Christensen 2009) [J/m^2/K/s^1/2] … … 56 60 ! DEPENDENCIES 57 61 ! ------------ 58 use planet, only:porosity62 use soil, only: regolith_porosity 59 63 60 64 ! DECLARATION … … 78 82 ice_thermalinertia = inertie_purewaterice 79 83 else 80 ice_thermalinertia = sqrt(surf_thermalinertia**2 + porosity*pore_filling*inertie_purewaterice**2) ! Siegler et al., 201284 ice_thermalinertia = sqrt(surf_thermalinertia**2 + regolith_porosity*pore_filling*inertie_purewaterice**2) ! Siegler et al., 2012 81 85 end if 82 86 … … 106 110 use geometry, only: ngrid, nslope, nsoil 107 111 use soil, only: volcapa, layer, inertiedat, depth_breccia, depth_bedrock, index_breccia, index_bedrock, reg_thprop_dependp 108 use planet, only: TI_breccia, TI_bedrock, TI_regolith_avg, P610109 112 use display, only: print_msg, LVL_NFO 110 113
Note: See TracChangeset
for help on using the changeset viewer.
