Changeset 4136 for trunk/LMDZ.COMMON/libf/evolution/soil.F90
- Timestamp:
- Mar 17, 2026, 11:12:37 AM (3 weeks ago)
- File:
-
- 1 edited
-
trunk/LMDZ.COMMON/libf/evolution/soil.F90 (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/soil.F90
r4135 r4136 25 25 ! PARAMETERS 26 26 ! ---------- 27 ! Density and porosity of regolith and breccia 28 real(dp), parameter :: rho_regolith = 2000._dp ! [kg/m^3], Zent et al. 1995; Buhler and Piqueux 2021 27 real(dp), parameter :: rho_regolith = 2000._dp ! Density of the martian regolith [kg/m^3], Zent et al. 1995; Buhler and Piqueux 2021 29 28 real(dp), parameter :: regolith_porosity = 0.4_dp ! Porosity of the martian regolith for a random loose packing of monodisperse sphere, Scott 1960 30 29 real(dp), parameter :: breccia_porosity = 0.1_dp ! Porosity of breccia … … 255 254 256 255 !======================================================================= 257 SUBROUTINE set_soil( TI)256 SUBROUTINE set_soil(therm_initia) 258 257 !----------------------------------------------------------------------- 259 258 ! NAME … … 291 290 ! ARGUMENTS 292 291 ! --------- 293 real(dp), dimension(:,:,:), intent(inout) :: TI! Thermal inertia in the PEM [SI]292 real(dp), dimension(:,:,:), intent(inout) :: therm_initia ! Thermal inertia in the PEM [SI] 294 293 295 294 ! LOCAL VARIABLES … … 334 333 do islope = 1,nslope 335 334 do iloop = 1,nsoil_PCM 336 TI(ig,iloop,islope) = TI_PCM(ig,iloop,islope)335 therm_initia(ig,iloop,islope) = TI_PCM(ig,iloop,islope) 337 336 end do 338 337 if (nsoil > nsoil_PCM) then 339 338 do iloop = nsoil_PCM + 1,nsoil 340 TI(ig,iloop,islope) = TI_PCM(ig,nsoil_PCM,islope)339 therm_initia(ig,iloop,islope) = TI_PCM(ig,nsoil_PCM,islope) 341 340 end do 342 341 end if
Note: See TracChangeset
for help on using the changeset viewer.
