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/comsaison_h.F90

    r1770 r1974  
    99  real,save,allocatable :: mu0(:)
    1010  real,save,allocatable :: fract(:)
     11  real,save,allocatable :: local_time(:) ! local solar time as fraction of day (0,1)
    1112
    1213contains
     
    1920    allocate(mu0(ngrid))
    2021    allocate(fract(ngrid))
     22    allocate(local_time(ngrid))
    2123 
    2224  end subroutine ini_comsaison_h
     
    2931    if (allocated(mu0)) deallocate(mu0)
    3032    if (allocated(fract)) deallocate(fract)
     33    if (allocated(local_time)) deallocate(local_time)
    3134
    3235  end subroutine end_comsaison_h
Note: See TracChangeset for help on using the changeset viewer.