- 积分
- 6155
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2017-9-11
- 最后登录
- 1970-1-1
![[用户3898940107] 粉丝数:10 微博数:3 新浪微博达人勋](source/plugin/sina_login/img/light.png)
|
GrADS
系统平台: |
linux |
问题截图: |
|
问题概况: |
嵌套格点数设置认识 |
我看过提问的智慧: |
没看过(看完再来提问) |
自己思考时长(天): |
1 |
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
菜鸟一枚,参考黄小仙的帖子,学习嵌套。中心经纬度点:116.39,39.92,e_we = 10,16,19,e_sn= 10, 16,19,
修改namelist.wps,在之后ncl util/plotgrids_new.ncl命令后显示
(0) Warning: Western edge of grid must be at least 5 grid points from mother domain!
(0) Warning: Southern edge of grid must be at least 5 grid points from mother domain!
(0) Warning: Eastern edge of grid must be at least 5 grid points from mother domain!
(0) Warning: Northern edge of grid must be at least 5 grid points from mother domain!
(0) Warning: Inner nest (domain = 2) is not fully contained in mother nest (domain = 1)!
(0) For the current setup of mother domain = 1, you can only have a nest of size 10X10. Stopping Program!
我修改为10,16,22,还是不行,
就直接改成100,200,300.
Warning: Western edge of grid must be at least 5 grid points from mother domain!
(0) Warning: Southern edge of grid must be at least 5 grid points from mother domain!
(0) Nest does not end on mother grid domain point. Try 199 or 202.
(0) Nest does not end on mother grid domain point. Try 199 or 202.
(0) Warning: Western edge of grid must be at least 5 grid points from mother domain!
(0) Warning: Southern edge of grid must be at least 5 grid points from mother domain!
(0) Nest does not end on mother grid domain point. Try 298 or 301.
(0) Nest does not end on mother grid domain point. Try 298 or 301.
但可以出图,显示如上图所示,研究区域的中心显示错误。
希望得到大家的指导,深入对于格点数和嵌套的认识;我也去找找解决方法,多尝试尝试,两条路走。谢谢
namelist.wps具体设置:
&share
wrf_core = 'ARW',
max_dom = 3,
start_date = '2007-01-01_00:00:00','2007-01-01_00:00:00','2007-01-01_00:00:00',
end_date = '2007-01-02_00:00:00','2007-01-02_00:00:00','2007-01-02_00:00:00'
interval_seconds = 10800
io_form_geogrid = 2,
/
&geogrid
parent_id = 1, 1, 2,
parent_grid_ratio = 1, 3, 3,
i_parent_start = 1, 2, 2,
j_parent_start = 1, 2, 2,
e_we = 100, 200, 300,
e_sn = 100, 200, 300,
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!! IMPORTANT NOTE !!!!!!!!!!!!!!!!!!!!!!!!!!!!
! The default datasets used to produce the HGT_M, GREENFRAC,
! and LU_INDEX/LANDUSEF fields have changed in WPS v3.8. The HGT_M field
! is now interpolated from 30-arc-second USGS GMTED2010, the GREENFRAC
! field is interpolated from MODIS FPAR, and the LU_INDEX/LANDUSEF fields
! are interpolated from 21-class MODIS.
!
! To match the output given by the default namelist.wps in WPS v3.7.1,
! the following setting for geog_data_res may be used:
!
! geog_data_res = 'gtopo_10m+usgs_10m+nesdis_greenfrac+10m','gtopo_2m+usgs_2m+nesdis_greenfrac+2m',
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!! IMPORTANT NOTE !!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
geog_data_res = '10m','2m','30s'
dx = 80000,
dy = 80000,
map_proj = 'lambert',
ref_lat = 39.92,
ref_lon = 116.39,
truelat1 = 30.0,
truelat2 = 60.0,
stand_lon = 116.39,
geog_data_path = '/usr/local/software/wrf/GEOG'
/
&ungrib
out_format = 'WPS',
prefix = 'FILE',
/
&metgrid
fg_name = 'FILE',
io_form_metgrid = 2,
/
|
|