WRF | Vertical Levels and Heights
Hybrid Vertical Coordinate
WRF is a hybrid vertical coordinate (HVC) and at the surface, it is terrain-following - meaning the heights come from the static geographic data used in the WPS process. Additional details about the HVC can be found in the Dynamics chapter of the WRF Users Guide.
- Prior to WRFV4.0, the vertical coordinate defaulted to terrain-following. To convert back to that option, set
“hybrid_opt=0”
in the&dynamics
section of the namelist. real.exe and wrf.exe must both be run with the same“hybrid_opt”
value. - When using HVC output with post-processors, use either hydrostatic pressure (
P_HYD
) or total pressure (PB + P
) for diagnostics and vertical interpolation. - In wrfout, you can find variables
PH
andPHB
,(PH + PHB)/9.8
will give you the real altitude of each model level. You can do vertical interpolation to put the variables in any levels you want for calculation. PH
andPHB
are geopotential, which is a physical variable defined in geoscience



Determine pressure and height at each WRF vertical level
1 |
|
the result of (PH+PHB)/9.8 is the height above sea level that is not what you need to check.
Above surface, (HGT
is terrain height.)
(PH+PHB)/9.81-HGT
The center height above surface, absolute altitude should be calculated by running average from the top and bottom:
(((PH(k)+PH(k+1)) / 2) + ((PHB(k)+(PHB(k+1)) / 2) / 9.81 – HGT,
where PH and PHB are staggered in the vertical direction, meaning that they are at the tops and bottoms of grid cells. HGT is terrain height. This center height of grid cell is changing from model time to time based on definition of eta vertical coordinate system. You never get it fixed. So you cannot get the answer to your question by re-setting eta levels.
WRF離地⾼度設定與計算
WRF離地⾼度設定與計算, 簡單分享⼀個使⽤python計算wrfout中的離地⾼度程序,如下:
"znu"
"eta values on half (mass) levels""znw"
"eta values on full (w) levels" ""
1 |
|
其中 HGT
變數代表了地面海拔高度,在 geo_em 檔案中就存在了,而 z
代表了海平面高度,是一個診斷量,根據氣壓等值進行計算出來的。而ZNU代表了垂直方向上質量(Mass)格點的 eta 值,也就是可以在 namelist.input 中手動設定 eta_levels 後得到的,其中注意 eta_levels 為非交錯(Unstaggered)格點,數量比質量格點多1。
1 |
|
P
代表某一層的氣壓,也就是你需要研究的那一層, Ptop
代表模式頂層氣壓, Pbot
代表地面氣壓。 (WRF中好像是10hpa,不太確定)。從表達式可以看出,地面的eta值就是1,頂層就是0。這樣一來,無論某個地區的下墊面的海拔高度是多少,它的eta座標值都統一成1。
Outputs, e_vert = 54
1 |
|
加密低層層數,總共設定了40層質量格點,對應的 &domains
組中的 eta_levels
設定如下:
1 |
|
Choosing an appropriate number of vertical levels (e_vert)
A better question for this is "what is the stretching rate I need to use?"
See Setting Model Vertical Levels in the WRF Users' Guide.
A good procedure to follow may be:
- Determine the model top pressure.
- Determine how thick your lowest layer is (50 m by default)
- Determine maximum thickness (1 km by default).
Then based on your needs, the stretching rates can be chosen using the table in chapter 4 of UG (link above) as a guideline.
- Choose the stretching rate(s) - larger if you want fewer levels but it’s not recommended that the rate be > 1.3.
- Find the minimum number of levels that works for that stretching factor by iterating running real and changing e_vert. The minimum is the one that gives the smoothest variation in DNW, which can also be viewed in wrfinput as part of the process
It is worth mentioning that when one chooses this method, the real program prints out the thickness of the layer, and it can be very good information for making adjustments for the stretching parameters.
*Additional Notes Smoothly varying vertical levels can be very important for model stability. Tests have shown that two different sets of vertical levels gives different numbers of CFL prints. For cases with dz > dx (as can occur for dx < 1 km at the top), tests have also shown that continuous stretching works through to the model top better than having many equal dz levels.
WRF和CMAQ 垂直層sigma座標設定
- 網格類公告模式CMAQ 技術文件
- 表1.3-3 WRF和CMAQ 垂直層sigma座標設定
LEVEL | SIGMA | 氣壓(Pa) | Full LevelHeight (m) | Half LevelHeight (m) |
---|---|---|---|---|
1.000 | 100000 | 0 | ||
1 | 0.995 | 99550 | 38 | 19 |
2 | 0.990 | 99100 | 76 | 57 |
3 | 0.980 | 98200 | 153 | 115 |
4 | 0.960 | 96400 | 309 | 231 |
5 | 0.930 | 93700 | 548 | 429 |
6 | 0.890 | 90100 | 878 | 713 |
7 | 0.850 | 86500 | 1221 | 1050 |
8 | 0.800 | 82000 | 1671 | 1446 |
9 | 0.750 | 77500 | 2146 | 1909 |
10 | 0.700 | 73000 | 2649 | 2398 |
11 | 0.650 | 68500 | 3185 | 2917 |
12 | 0.600 | 64000 | 3757 | 3471 |
13 | 0.550 | 59500 | 4371 | 4064 |
14 | 0.500 | 55000 | 5033 | 4702 |
15 | 0.450 | 50500 | 5751 | 5392 |
16 | 0.400 | 46000 | 6537 | 6144 |
17 | 0.350 | 41500 | 7404 | 6971 |
18 | 0.300 | 37000 | 8370 | 7887 |
19 | 0.250 | 32500 | 9462 | 8916 |
20 | 0.200 | 28000 | 10716 | 10089 |
21 | 0.150 | 23500 | 12191 | 11454 |
22 | 0.100 | 19000 | 13981 | 13086 |
23 | 0.050 | 14500 | 16256 | 15119 |
24 | 0.000 | 10000 | 19384 | 17820 |
References
- Setting first layer thickness
- height of first layer
- calculate height of first model layer
- Mapping vertical levels to physical altitude
- Vertical Levels Adjustment
- To increase vertical levels below a specific height, I would suggest you run REAL program first to create eta levels. Then you can manually increase the number of levels based on the automatically generated eta levels by REAL. For example , suppose you run REAL and get the following eta levels:
1
2
3
4
5
6
7
8eta_levels =
1, 0.993, 0.983, 0.97, 0.954, 0.934, 0.909, 0.88,
....
....
/
You can then replace the first several eta levels by:
1, 0.999, 0.998, 0.996, 0.993, 0.990, 0.980. 0.970, 0.960, 0.950,
0.940, 0.930, 0.920, 0.910, 0.900, 0.890, 0.880, 0.870,
- To increase vertical levels below a specific height, I would suggest you run REAL program first to create eta levels. Then you can manually increase the number of levels based on the automatically generated eta levels by REAL. For example , suppose you run REAL and get the following eta levels:
- This is just an example to show how to add more levels within certain height
- Once wrfinput is produced, you will find
PH
andPHB
in wrfinput, and (PH=PHB) is the geopotential height corresponding to model levels.
- Once wrfinput is produced, you will find
- Stretched vertical levels information?
- Does the REAL program generate the Full level height based on the International Standard Atmosphere?
- Vertical profile of Wind
- 计算wrfout垂直层离地高度