- 积分
- 55955
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-6-21
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
HYSPLIT模式在核应急扩散模拟中有广泛的应用,这里给出一个脚本绘制多年前用HYSPLIT模拟的福岛核电站泄露扩散情况的图形。
- fn = r'D:\Working\MIScript\JapanNuclear\cdump15'
- f = addfile_hyconc(fn)
- tidx = 5
- data = f['C137'][tidx,0,:,:]
- #Plot
- axesm(outerposition=[0,0,1,1])
- geoshow('cn_province', edgecolor='b')
- geoshow('country', edgecolor='b')
- levs = [1e-14,1e-13,1e-12,1e-11]
- cols = ['w',(0,255,255),'g','y','r']
- layer = contourfm(data, levs, colors=cols, smooth=False)
- scatterm(141.0, 37.5, size=10, marker='S', color='r')
- text(142.5, 39, 'Fukushima', bold=True)
- xlim(110, 200)
- ylim(15, 70)
- yticks(arange(20, 61, 20))
- colorbar(layer, label='C137', labelloc='top', shrink=0.8)
- t = f.gettime(tidx)
- title('Simulation of cesium-137 emitted from Fukushima (%s)' % t.strftime('%Y-%m-%d'))
|
|