- 积分
- 32410
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-12-11
- 最后登录
- 1970-1-1
|

楼主 |
发表于 2015-4-6 21:22:47
|
显示全部楼层
rsl.out里大量的“Error in mapping flagsoap to start_ind“垃圾信息,
要么是namelist设置有问题,要么是数据有问题,
下面是相关的代码部分,问题出在那
chem/module_mosaic_therm.F
5081 ! 20130807 acd_alma_bugfix start
5082 do iv = start_ind, ngas_ioa + ngas_soa
5083 if (flagsoap(iv-start_ind+1).eq.2) then
5084 xsumfresh(ibin)= xsumfresh(ibin)+aer(iv,jtotal,ibin)
5085 elseif (flagsoap(iv-start_ind+1).eq.1) then
5086 xsumaged(ibin)= xsumaged(ibin)+aer(iv,jtotal,ibin)
5087 elseif (flagsoap(iv-start_ind+1).eq.0) then <---------------
5088 print *, 'Error in mapping flagsoap to start_ind'
5089 endif
5090 enddo |
|