;20161230 Ali ;plots Mars and its bow shock over the current plot ;keywords: ;rm: obsolete, kept for backward compatibility ;km: plots in units of km instead of Rm ;kkm: 1000 km ;p3d: plots in 3d ;lbst: bow shock extension (in Rm) ;half: plots only the upper half pro mvn_pui_plot_mars_bow_shock,rm=rm,km=km,kkm=kkm,p3d=p3d,lbst=lbst,half=half if ~keyword_set(half) then degrees=361 else degrees=181 theta=!dtor*findgen(degrees) ;theta in radians xmars=cos(theta) ymars=sin(theta) if ~keyword_set(lbst) then lbst=3. if ~keyword_set(half) then ybow=(-1.+findgen(201)/100.)*lbst else ybow=(findgen(101)/100.)*lbst xbow=1.7-.24*ybow^2 ;fit to nominal mars bow shock xtitle='$X (R_M)$' ytitle='$Y (R_M)$' ztitle='$Z (R_M)$' ; ytitle='$(Y^2+Z^2)^{1/2} (R_M)$' if keyword_set(km) then begin rmars=3400. ;radius of mars (km) xmars*=rmars ymars*=rmars xbow*=rmars ybow*=rmars xtitle='X (km)' ytitle='Y (km)' ztitle='Z (km)' endif if keyword_set(kkm) then begin rmars=3.4 ;radius of mars (1000 km) xmars*=rmars ymars*=rmars xbow*=rmars ybow*=rmars xtitle='X (1000 km)' ytitle='Y (1000 km)' ztitle='Z (1000 km)' endif p=plot(/o,[0],/nodata,xtitle=xtitle,ytitle=ytitle,ztitle=ztitle,/aspect_ratio,/aspect_z) ;bow shock p=plot(/o,xmars,ymars,'r') ;Mars p=plot(/o,xbow,ybow,'b') ;bow shock ; p=plot(/o,2.9*xmars,2.9*ymars,'--') ;MAVEN coverage if keyword_set(p3d) then begin p=plot3d(/o,0.*xmars,xmars,ymars,'r') p=plot3d(/o,xmars,0.*xmars,ymars,'r') p=plot3d(/o,xbow,0.*xbow,ybow,'b') endif end