Changeset 2080 for trunk


Ignore:
Timestamp:
Jan 22, 2019, 7:05:11 PM (6 years ago)
Author:
mvals
Message:

Mars GCM:

  • typo in vdifc.F (visible in debug mode) in the case of rdstorm=false, condition for defining pdqsdif(stormdust_mass/number)
  • typo in physiq_mod.F (visible in debug mode): wrong indices for tracers in aerosol(:,:,:)

MV

Location:
trunk/LMDZ.MARS
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/README

    r2079 r2080  
    26812681We want to separate both parametrizations related to the formation of the detached dust layers. Therefore, rocketduststorm_mod.F90 now only comprises the rocket dust storm scheme, whereas it contained also before the calculation of the vertical velocity induced by the presence of the sub-grid scale topography. This latter part is under development and will be integrated as a fully independant parametrization: the aim is to simulate the entrainment of dust by slope winds, from the boundary layer up to the top of the sub-grid scale topography.
    26822682- Addition of initial surface parameters "summit" and "base" to prepare the previously described slope wind parametrization
     2683
     2684== 22/01/2019 == MV
     2685- typo in vdifc.F (visible in debug mode) in the case of rdstorm=false, condition for defining pdqsdif(stormdust_mass/number)
     2686- typo in physiq_mod.F (visible in debug mode): wrong indices for tracers in aerosol(:,:,:)
  • trunk/LMDZ.MARS/libf/phymars/physiq_mod.F

    r2079 r2080  
    30683068           if (rdstorm) then
    30693069             call writediagfi(1,'aerosol_dust','opacity of env. dust',''
    3070      &                        ,1,aerosol(:,:,igcm_dust_mass))
     3070     &                        ,1,aerosol(:,:,1))
    30713071             call writediagfi(1,'aerosol_stormdust',
    30723072     &                         'opacity of storm dust',''
    3073      &                        ,1,aerosol(:,:,igcm_stormdust_mass))
     3073     &                        ,1,aerosol(:,:,2))
    30743074             call WRITEDIAGFI(ngrid,'dqsdifdustq','diffusion',
    30753075     &                       'kg.m-2.s-1',0,zdqsdif(1,igcm_dust_mass))
  • trunk/LMDZ.MARS/libf/phymars/vdifc_mod.F

    r1996 r2080  
    548548
    549549! calcul de zc et zd pour la couche top en prenant en compte le terme
    550 ! de variation de masse (on fait une boucle pour que ça converge)
     550! de variation de masse (on fait une boucle pour que \E7a converge)
    551551
    552552! Identification des points de grilles qui ont besoin de la correction
     
    740740                  endif ! if (submicron)
    741741                ELSE ! outside dust injection time frame
    742                         pdqsdif(ig,igcm_dust_mass)= 0.
    743                         pdqsdif(ig,igcm_dust_number)= 0.
     742                  pdqsdif(ig,igcm_dust_mass)= 0.
     743                  pdqsdif(ig,igcm_dust_number)= 0.
     744                  if (rdstorm) then     
    744745                        pdqsdif(ig,igcm_stormdust_mass)= 0.
    745746                        pdqsdif(ig,igcm_stormdust_number)= 0.
     747                  end if
    746748                ENDIF
    747749               
Note: See TracChangeset for help on using the changeset viewer.