- Timestamp:
- Jan 22, 2019, 7:05:11 PM (6 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r2079 r2080 2681 2681 We 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. 2682 2682 - 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 3068 3068 if (rdstorm) then 3069 3069 call writediagfi(1,'aerosol_dust','opacity of env. dust','' 3070 & ,1,aerosol(:,:, igcm_dust_mass))3070 & ,1,aerosol(:,:,1)) 3071 3071 call writediagfi(1,'aerosol_stormdust', 3072 3072 & 'opacity of storm dust','' 3073 & ,1,aerosol(:,:, igcm_stormdust_mass))3073 & ,1,aerosol(:,:,2)) 3074 3074 call WRITEDIAGFI(ngrid,'dqsdifdustq','diffusion', 3075 3075 & 'kg.m-2.s-1',0,zdqsdif(1,igcm_dust_mass)) -
trunk/LMDZ.MARS/libf/phymars/vdifc_mod.F
r1996 r2080 548 548 549 549 ! 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) 551 551 552 552 ! Identification des points de grilles qui ont besoin de la correction … … 740 740 endif ! if (submicron) 741 741 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 744 745 pdqsdif(ig,igcm_stormdust_mass)= 0. 745 746 pdqsdif(ig,igcm_stormdust_number)= 0. 747 end if 746 748 ENDIF 747 749
Note: See TracChangeset
for help on using the changeset viewer.