Changeset 2628 for trunk/LMDZ.MARS/libf/phymars/initracer.F
- Timestamp:
- Feb 28, 2022, 6:46:07 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/initracer.F
r2616 r2628 181 181 enddo 182 182 endif ! of if (rdstorm) 183 if ( slpwind) then183 if (topflows) then 184 184 do iq=1,nq 185 185 if (noms(iq).eq."topdust_mass") then … … 192 192 endif 193 193 enddo 194 endif ! of if ( slpwind)194 endif ! of if (topflows) 195 195 ! 2. find chemistry and water tracers 196 196 do iq=1,nq … … 613 613 end if !(rdstorm) 614 614 !c ---------------------------------------------------------------------- 615 !c slope windscheme615 !c mountain top dust flows scheme 616 616 !c you need a radius value for topdust to active its sedimentation 617 617 !c we take the same value as for the normal dust 618 if ( slpwind) then618 if (topflows) then 619 619 rho_q(igcm_topdust_mass)=rho_dust 620 620 rho_q(igcm_topdust_number)=rho_dust 621 621 radius(igcm_topdust_mass) = 3.e-6 622 622 radius(igcm_topdust_number) = 3.e-6 623 end if !( slpwind)623 end if !(topflows) 624 624 !c ---------------------------------------------------------------------- 625 625 … … 859 859 endif 860 860 861 if ( slpwind) then861 if (topflows) then 862 862 ! verify that we indeed have topdust_mass and topdust_number tracers 863 863 if (igcm_topdust_mass.eq.0) then 864 864 write(*,*) "initracer: error !!" 865 write(*,*) " cannot use slpwindoption without ",865 write(*,*) " cannot use topflows option without ", 866 866 & "a topdust_mass tracer !" 867 call abort_physic("initracer"," slpwindissue",1)867 call abort_physic("initracer","topflows issue",1) 868 868 endif 869 869 if (igcm_topdust_number.eq.0) then 870 870 write(*,*) "initracer: error !!" 871 write(*,*) " cannot use slpwindoption without ",871 write(*,*) " cannot use topflows option without ", 872 872 & "a topdust_number tracer !" 873 call abort_physic("initracer"," slpwindissue",1)873 call abort_physic("initracer","topflows issue",1) 874 874 endif 875 875 endif
Note: See TracChangeset
for help on using the changeset viewer.