- 积分
- 316
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2013-6-10
- 最后登录
- 1970-1-1
|

楼主 |
发表于 2013-11-25 16:34:28
|
显示全部楼层
刚刚看到这个,觉得很有用,分享一下。希望我和遇到同样问题的同志们可以解决难题,继续深入!
The input data you are using is CSFR, so you would first need to download 2 types of data: the pressure data and the surface data. They should look something like this:
pgbh06.gdas.1999010100.grb2
flxf06.gdas.1999010100.grb2
After doing that, you will need to run ungrib.exe twice, once with the surface data and then again with the pressure data, and you would link the corresponding Vtables each time:
Vtable.CFSR_sfc_flxf06
Vtable.CFSR_press_pgbh06
When you do this, you will need to change the name of the prefix in namelist.wps. For example, you would set:
prefix = 'SFC'
in the &ungrib section when running the surface data, and then set it to '=PRESS' (or whatever you choose) when running the pressure data. Then when you run metgrid.exe, you need to set (in the &metgrid section):
fg_name = 'SFC', 'PRESS'
so that metgrid will use both of the ungrib files. |
|