登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
错误如下:(红色)
FOUND the following input files:
/home/yixiang/wrf/WRFV3.6/test/em_real/wrfout_d01_2003-05-01_00:00:00
START PROCESSING DATA
Processing time --- 2003-05-01_00:00:00
Found the right date - continue
Processing time --- 2003-05-01_06:00:00
PGFIO-F-231/formatted read/internal file/error on data conversion.
In source file module_date_pack.f, atline number 685
我的namelist.ARWpost为: &datetime
start_date ='2003-05-01_00:00:00',
end_date = '2003-05-04_00:00:00',
interval_seconds = 21600,
tacc = 0,
debug_level = 0,
/
&io
input_root_name ='/home/yixiang/wrf/WRFV3.6/test/em_real/wrfout_d01_2003-05-01_00:00:00'
output_root_name ='/home/yixiang/wrf/dataout/doz'
plot = 'all_list'
fields = 'height,pressure,tk,tc'
mercator_defs = .true.
/
split_output = .true.
frames_per_outfile = 2
plot = 'all'
plot = 'list'
plot = 'all_list'
! Below is a list of all available diagnostics
fields ='height,geopt,theta,tc,tk,td,td2,rh,rh2,umet,vmet,pressure,u10m,v10m,wdir,wspd,wd10,ws10,slp,mcape,mcin,lcl,lfc,cape,cin,dbz,max_dbz,clfr'
&interp
interp_method = 0,
interp_levels =1000.,950.,900.,850.,800.,750.,700.,650.,600.,550.,500.,450.,400.,350.,300.,250.,200.,150.,100.,
/
extrapolate = .true.
interp_method = 0, ! 0 is model levels, -1 is nice heightlevels, 1 is user specified pressure/height
interp_levels =1000.,950.,900.,850.,800.,750.,700.,650.,600.,550.,500.,450.,400.,350.,300.,250.,200.,150.,100.,
interp_levels = 0.25, 0.50, 0.75, 1.00,2.00, 3.00, 4.00, 5.00, 6.00, 7.00, 8.00, 9.00, 10.0, 11.0, 12.0, 13.0, 14.0,15.0, 16.0, 17.0, 18.0, 19.0, 20.0,
按照错误提示找到module_date_pack.f 的第685行,红色部分 INTEGER :: century_year , month , day ,hour , minute , second
INTEGER :: century_year1, month1, day1,hour1, minute1, second1
INTEGER :: century_year2, month2, day2,hour2, minute2, second2
INTEGER , INTENT(OUT) ::seconds
READ(date1,FMT='( I4.4)') century_year1
READ(date1,FMT='( 5X,I2.2)')month1
READ(date1,FMT='( 8X,I2.2)')day1
READ(date1,FMT='(11X,I2.2)')hour1
READ(date1,FMT='(14X,I2.2)') minute1
READ(date1,FMT='(17X,I2.2)')second1
希望大家帮我看一下,已经纠结很久了。另外我前面的数据都是安装最新的WRF3.6版,ARWpost为3.1版,会不会有所影响?
|