<div dir="ltr">Dear NCL users,<div><br></div><div>I want to draw a 'ventilation index' calculated with pblh(m), wind speed, z level.</div><div><br></div><div>-------------------------------------------------------------------------------------------</div><div>pblh=wrf_user_getvar(input_fils,"PBLH",-1)   ;PBL HEIGHT [m]<br><br>uvm10 =wrf_user_getvar(input_fils,"uvmet10",-1)    ; 10m U and V components <br>u10 = uvm10(0,:,:,:)<br>v10 = uvm10(1,:,:,:)<br>ws = sqrt(u10^2+v10^2)<br><br>pblws:= pblh*ws         ; 3d[t,y,x]<br>----------------------------------------------------------------------------------------------</div><div><br></div><div>this is the simple version of this idea. But i wnat to get a  average windspeed at  0~z level which means 0~pblh(m).</div><div><br></div><div>I will be grateful for help</div></div>