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

Re: Plotting monthly average wind speed maps at different heights using NCL

This post was from a previous version of the WRF&MPAS-A Support Forum. New replies have been disabled and if you have follow up questions related to this post, then please start a new thread from the forum home page.

Hi,

I am using the wrf model to simulate winds for the purpose of mesoscale wind resource assessment.

I seek assistance in terms of plotting average wind speed maps for a month at 10 m and also at higher heights using NCL.

I am able to plot the wind speed maps for each time record but unable to do monthly average wind speed maps.

Appreciate guidance, scripts, assistance and advice.

Regards
Kunal
 
Hi Kunal,

Making a monthly average is quite easy in NCL. You can use the NCL function dim_avg_n. For example, if you want an average for January and your file starts on the 1st of Jan, you want to subset the data and average over the 'Time' dimension:

jan_avg = dim_avg_n(t2(0:30,:,:),0)

http://www.ncl.ucar.edu/Document/Functions/Built-in/dim_avg_n.shtml
 
Hi,
I am having same problem to plot wind speed at any given height. Need your assistance to get working ncl script to plot it using wrf output data.
 
Top