Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

wrf-python: vertical sections of the meridional wind

vrojas

New member
Good morning support team.

I am processing the outputs of the WRF model using the wrf-python package. Making an analysis of the diurnal surface wind cycle (wind10), Figure_02, the results are consistent with previous studies and empirical observations. With flows from the valleys (lowlands, north-east part) to the mountains (highlands) during the day. However, when doing the same analysis of a vertical section (red line, Figure_01) with the wind data (3D), figura_01, the wind flow on the surface is from the highlands to the lowlands in the north part of the vertical s ection, this does not agree with the results on the surface. To process the 3D wind data and perform the vertical section I have used the following wrf-python functions:

p = getvar(fo, "pressure")
data_var = getvar(fo, var_name)
df_var_cross = vertcross(data_var, p, wrfin=fo, start_point=start_point,
end_point=end_point, latlon=True, meta=True)

Please, I want to know if using the functions getvar and vertcross are enough to do the transformation of the 3D winds, or is it necessary to do some kind of additional transformation for the southern hemisphere, where the study area is located.
Thanks for your help.
All the best.
 

Attachments

  • figura_03.png
    figura_03.png
    621 KB · Views: 24
  • figura_01.png
    figura_01.png
    103.9 KB · Views: 24
  • figura_02.png
    figura_02.png
    444.5 KB · Views: 22
Please check whether wrf_python has the option for extrapolation/ if not and if your cross section is along high-terrain area, it is possible that data are missing at levels below the ground.
 
Top