- 积分
- 1164
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-4-16
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
最近在做可降水量的计算,用的是ncep/ncar再分析数据的shum.mon.mean,pres.mon.mean,用的公式是:
其中,w为整层大气可降水量(也称整层水汽含量),q为比湿,ps为地表气压,p取300hpa,g为重力加速度,ρ为液态水密度。
计算GS如下:
'reinit'
'set grid off'
'set grads off'
'sdfopen g:\sqtl\shum.mon.mean.nc'
'sdfopen g:\sqtl\pres.mon.mean.nc'
'set lon 70 140'
'set lat 15 55'
'set z 1 8'
'set ccols 9 14 4 11 5 13 3 10 7 12 8 2 6'
'set mpdset cnworld'
'set map 1 1 1'
'draw map'
i=625
while(i<=636)
'set t 'i''
'set z 1'
'define w=vint(pres.2(z=1),shum.1,300)/1000'
'set gxout shaded'
'd w'
'cbarn'
'set gxout contour'
'd w'
'printim g:\kjs\'i'.tif x1000 y800 white'
'print'
'c'
i=i+1
endwhile
'disable print'
;
不知道怎么搞的,最后求得2000年1-12月各月可降水量(单位是mm)怎么比我已有的降水量数据小,也不知道是不是在求w的时候单位数量级搞错了。
求得的可降水量w大约是在5-55mm范围内,但我已有的降水量数据在6,7,8,9,10月的值都在100mm以上,7月的值超过了200mm。
不知道怎么搞的,降雨数据应该没有问题,按理说可降水量应该是大于降水量的
望大家帮我看看!!!
file:///C:\Documents and Settings\Administrator\Application Data\Tencent\Users\648465979\QQ\WinTemp\RichOle\HZUV%2PADJ4WZ]{B69~VWGB.jpg
file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\01\clip_image002.giffile:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\01\clip_image002.gif
|
|