Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

Wind Calculation

Hi,

What variables would I need to create mean global wind fields? I guess it would include the manipulation of V and U though I'm not sure.

Thanks in advance.

Nick
 

rneale

Rich Neale
CAM Project Scientist
Staff member
You can create global mean wind fields from the U and V output fields along with
gaussian weight field (gw) which will allow you to weight the values of U and V with decreasing area as the grid size decreases towards the pole.
 
thanks richard for the reply, so would I just add U and V together for a mean wind direction. Also, is level 15 of CAM the standard for getting a "mean" wind field?

cheers,

Nick
 

rneale

Rich Neale
CAM Project Scientist
Staff member
At each vertical level you can use U and V to calculate the mean magnitude. I am not sure calculating the mean wind direction will tell you anything?

There is no standard level based on level number (15 as you say), but there are some standard pressure levels. It all depends on what you are interesting in.
 
thanks richard,

im using wind direction anomalies to see any effects of altimetry.

And just to confirm, out of the 26 levels, 1 is at ground elevation and 26 at the top of the atmoshpere?

cheers,

Nick
 

rneale

Rich Neale
CAM Project Scientist
Staff member
The levels go from 1 at the top of the model, to 26 next to the surface
 
So, to plot the near surface wind magnitudes, I have added the following code in the srfxfer.F90 module:

sqrt(state%u(i,pver)**2 + state%v(i,pver)**2))

where "i" is the column index, "state" is the physics_state derived type and "pver" is the lowest mid-layer level.

This gives me surface wind magnitudes at about 992.5 mb.

Scott
 
Hi,I have a question about how to proper apply the gw to calculate the wind field at any level.If I only multiply the field by gw, the results are very small wind values. Say I'm trying to calculate the V component, which is V(lon,lat,levels,time) = V(144,96,32,1000).If I choose one V value, as an example, that is in the lat index number 49 (V=10m/s). The gw in that lat is 0.0331.So, after the multiplication, the new V wind is 0.331 m/s. That is an very low value. What am I doing wrong? Any help will be very appreciated!
 
Top