Ignore:
Timestamp:
Jan 31, 2023, 9:52:30 PM (22 months ago)
Author:
romain.vande
Message:

Mars PCM:
Move a endif misplaced
RV

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/libf/evolution/comsoil_h_PEM.F90

    r2863 r2885  
    2222  real, save, allocatable :: h2o_adsorbded_phys(:,:,:)  ! h2o that is in the regolith [kg/m^2]
    2323  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]
    2425
    2526contains
     
    4445    allocate(co2_adsorbded_phys(ngrid,nsoilmx_PEM,nslope))
    4546    allocate(h2o_adsorbded_phys(ngrid,nsoilmx_PEM,nslope))
     47    allocate(water_reservoir(ngrid))
    4648  end subroutine ini_comsoil_h_PEM
    4749
     
    6466    if (allocated(co2_adsorbded_phys)) deallocate(co2_adsorbded_phys)
    6567    if (allocated(h2o_adsorbded_phys)) deallocate(h2o_adsorbded_phys)
     68    if (allocated(water_reservoir)) deallocate(water_reservoir)
    6669  end subroutine end_comsoil_h_PEM
    6770
Note: See TracChangeset for help on using the changeset viewer.