Changeset 2885 for trunk/LMDZ.COMMON/libf/evolution/comsoil_h_PEM.F90
- Timestamp:
- Jan 31, 2023, 9:52:30 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/comsoil_h_PEM.F90
r2863 r2885 22 22 real, save, allocatable :: h2o_adsorbded_phys(:,:,:) ! h2o that is in the regolith [kg/m^2] 23 23 LOGICAL soil_pem ! True by default, to run with the subsurface physic. Read in pem.def 24 real,save,allocatable,dimension(:) :: water_reservoir ! Large reserve of water [kg/m^2] 24 25 25 26 contains … … 44 45 allocate(co2_adsorbded_phys(ngrid,nsoilmx_PEM,nslope)) 45 46 allocate(h2o_adsorbded_phys(ngrid,nsoilmx_PEM,nslope)) 47 allocate(water_reservoir(ngrid)) 46 48 end subroutine ini_comsoil_h_PEM 47 49 … … 64 66 if (allocated(co2_adsorbded_phys)) deallocate(co2_adsorbded_phys) 65 67 if (allocated(h2o_adsorbded_phys)) deallocate(h2o_adsorbded_phys) 68 if (allocated(water_reservoir)) deallocate(water_reservoir) 66 69 end subroutine end_comsoil_h_PEM 67 70
Note: See TracChangeset
for help on using the changeset viewer.