- 积分
- 6572
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2013-12-4
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
正在试验一个时间段很长的WRF模拟,两层嵌套,于是考虑到在geogrid metgrid real过程中并行计算,且所用cpu个数都为24,其中geogrid和metgrid都运行成功,并已连接met_em_d*到run目录下,但是到real.exe过程的时候,总会报错如下:
***************************************************
FATAL CALLED FROM FILE: <stdin> LINE: 404
error opening met_em.d01.2010-05-01_00:00:00.nc for input; bad date in namelist or file not in directory
***************************************************
查询了相关解决方案,有说是ln的问题,cp就能解决,但没成功;有说是namelist时间设置问题,但反复看了发现没有错误。namelist.input如下:
***************************************************
&time_control
run_days = 91,
run_hours = 18,
run_minutes = 0,
run_seconds = 0,
start_year = 2010, 2010, 2000,
start_month = 05, 05, 01,
start_day = 01, 01, 24,
start_hour = 00, 00, 12,
start_minute = 00, 00, 00,
start_second = 00, 00, 00,
end_year = 2010, 2010, 2000,
end_month = 07, 07, 01,
end_day = 31, 31, 25,
end_hour = 18, 18, 12,
end_minute = 00, 00, 00,
end_second = 00, 00, 00,
interval_seconds = 21600,
input_from_file = .true.,.true.,.true.,
history_interval = 60, 60, 60,
frames_per_outfile = 1, 1, 1000,
restart = .false.,
restart_interval = 10000,
io_form_history = 102,
io_form_restart = 102,
io_form_input = 102,
io_form_boundary = 102,
debug_level = 0,
************************************************
个人估计的原因在于metgrid用并行后生成的文件在.nc后还有一个cpu的编号,如met_em.d01.2010-05-01_00:00:00.nc_0000,会不会是因为有了最后的编号导致real找不到报错中的nc文件。如果是这原因,那么应该怎么修改呢?如果不是,麻烦各位帮我想想办法~
|
|