- 积分
- 3442
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2015-7-27
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 空城不空 于 2017-8-27 18:51 编辑
我是类比于官网上 http://www2.mmm.ucar.edu/wrf/OnL ... ES/JAN00/index.html第一个个例来转的。
namelist是根据WRF Domain Wizard来设定的,但我只是修改namelist里一些数据,并没有全部添加WRF Domain Wizard多出来的变量
然后在这步 ./ungrib.exe >& ungrib_data.log之后
确实生成了FILE
但ungrib_data.log里出现了这样的情况,我没有贴完,以下大概都是这样子的- *** Starting program ungrib.exe ***
- Start_date = 2017-07-12_00:00:00 , End_date = 2017-07-15_00:00:00
- output format is WPS
- Path to intermediate files is ./
- Subsoil level 0 in the GRIB2 file, was not found in the Vtable
- Subsoil level 0 in the GRIB2 file, was not found in the Vtable
- Subsoil level 0 in the GRIB2 file, was not found in the Vtable
- Subsoil level 0 in the GRIB2 file, was not found in the Vtable
- Subsoil level 0 in the GRIB2 file, was not found in the Vtable
- Subsoil level 0 in the GRIB2 file, was not found in the Vtable
- Subsoil level 0 in the GRIB2 file, was not found in the Vtable
- Subsoil level 0 in the GRIB2 file, was not found in the Vtable
- Subsoil level 0 in the GRIB2 file, was not found in the Vtable
- Subsoil level 10 in the GRIB2 file, was not found in the Vtable
- Subsoil level 10 in the GRIB2 file, was not found in the Vtable
- Subsoil level 10 in the GRIB2 file, was not found in the Vtable
复制代码
这样有影响吗?
下面是我的namelist.wps
- &share
- wrf_core = 'ARW',
- max_dom = 2,
- start_date = '2017-07-12_00:00:00', '2017-07-12_00:00:00',
- end_date = '2017-07-15_00:00:00', '2017-07-15_00:00:00',
- interval_seconds = 21600,
- io_form_geogrid = 2,
- /
- &geogrid
- parent_id = 1,1
- parent_grid_ratio = 1,3
- i_parent_start = 1,20
- j_parent_start = 1,30
- e_we = 100,136,
- e_sn = 119,97,
- geog_data_res = '10m','2m',
- ! *Note: if using a version prior to 3.8, you will set
- ! geog_data_res = '10m', '2m'
- dx = 30000,
- dy = 30000,
- map_proj = 'lambert',
- ref_lat = 34.897,
- ref_lon = 105.234,
- truelat1 = 34.894,
- truelat2 = 34.894,
- stand_lon = 105.234,
- geog_data_path = '/home/geog'
- /
- &ungrib
- out_format = 'WPS',
- prefix = 'FILE',
- /
- &metgrid
- fg_name = 'FILE'
- io_form_metgrid = 2,
- /
复制代码
|
|