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

Inconsistent dimension sizes of U&V in 850hp pressure level

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.

lslrsgis

Member
Dear WRF Community,

After running wrf using NARR as forcing, I am trying to extract U, V fields of 850hp from wrfout files. However, I have found they have different dimensions.

U850: [267] x [271]
V850: [268] x [270]

I am simply use the 6rd of 27 layers since 85000 is found as 6th in &mod_levs of namelist.wps.all_options. The ncl script (attached) is written as follows:
u850 = ull(6-1,:,:)*1.94386
v850 = vll(6-1,:,:)*1.94386

&mod_levs
press_pa = 201300 , 200100 , 100000 ,
95000 , 90000 ,
85000 , 80000 ,
75000 , 70000 ,
65000 , 60000 ,
55000 , 50000 ,
45000 , 40000 ,
35000 , 30000 ,
25000 , 20000 ,
15000 , 10000 ,
5000 , 1000
/

Is it reasonable? Why they have different dimensions? Thanks very much.
 

Attachments

  • Map_Contour_Overlay_Temp2m_UV850mb_WRF_UCM_NEWYORK_VERSION001.ncl.txt
    5.2 KB · Views: 50
U and V are not defined at the center of a cell, but at east-west and north-south faces.
Dimension of U is 1 larger than the number of cells in x-direction.
Dimension of V is 1 larger than the number of cells in y-direction.
Please read the clarification at: https://www.openwfm.org/wiki/How_to_interpret_WRF_variables
Regards, Gerard
 
WRF implements staggered grid structure. You can find the helpful information in the document here:
http://www2.mmm.ucar.edu/wrf/users/docs/technote/v4_technote.pdf
 
Top