Ignore:
Timestamp:
Jul 18, 2018, 4:48:34 PM (6 years ago)
Author:
mvals
Message:

Mars GCM:
Integration of the detached dust layer parametrizations (rocket dust storm, slope wind lifting, CW, and dust injection scheme, DB).
Still experimental, default behaviour (rdstorm=.false., dustinjection=0) identical to previous revision.
NB: Updated newstart requires an updated "surface.nc" containing the "hmons" field.
EM+MV

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/surfdat_h.F90

    r1770 r1974  
    2020  real,save :: iceradius(2) , dtemisice(2)
    2121  real,save,allocatable :: zmea(:),zstd(:),zsig(:),zgam(:),zthe(:)
     22  real,save,allocatable :: hmons(:)
    2223  real,save,allocatable :: z0(:) ! surface roughness length (m)
    2324  real,save :: z0_default ! default (constant over planet) surface roughness (m)
     
    5556    allocate(capcal(ngrid))
    5657    allocate(fluxgrd(ngrid))
    57  
     58    allocate(hmons(ngrid))
     59   
    5860  end subroutine ini_surfdat_h
    5961
     
    7981    if (allocated(capcal))      deallocate(capcal)
    8082    if (allocated(fluxgrd))     deallocate(fluxgrd)
     83    if (allocated(hmons))       deallocate(hmons)
    8184
    8285  end subroutine end_surfdat_h
Note: See TracChangeset for help on using the changeset viewer.