爱气象,爱气象家园! 

气象家园

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
123
返回列表 发新帖
楼主: 双喜丸子

[分享资料] 求问grads画剖面图~~

[复制链接]
发表于 2015-5-14 17:42:32 | 显示全部楼层
一片绿叶 发表于 2015-5-13 23:01
嗯,没什么变化。在求平均这里确实不怎么熟,有一个问题:图片上的dim=3或=0是什么意思,求助大神
avera ...

你用的资料,还有你求平均的公式呢
密码修改失败请联系微信:mofangbao
发表于 2015-5-16 21:37:59 | 显示全部楼层
river 发表于 2015-5-14 17:42
你用的资料,还有你求平均的公式呢

随便的资料都可以,比如vwnd.1998.nc
公式为 d ave(ave(vwnd,lon=0,lon=360),t=1,t=5)
计算过程显示:
averaging.dim=3,start=1,end=5
averaging.dim=0,start=1,end=145
averaging.dim=0,start=1,end=145
averaging.dim=0,start=1,end=145
averaging.dim=0,start=1,end=145
averaging.dim=0,start=1,end=145
密码修改失败请联系微信:mofangbao
发表于 2015-5-17 21:15:42 | 显示全部楼层
一片绿叶 发表于 2015-5-16 21:37
随便的资料都可以,比如vwnd.1998.nc
公式为 d ave(ave(vwnd,lon=0,lon=360),t=1,t=5)
计算过程显示:
...

ave()

ave(expr, dim1, dim2 <,tinc> <,-b>)

Averages the result of expr over the specified dimension range. If the averaging dimension is time, an optional time increment tincr may be specified.

expr    - any valid GrADS expression
dim1    - the start point for the average
dim2    - the end point for the average
tinc    - optional increment for time averaging
-b      - use exact boundaries
dim1 and dim2 are standard GrADS dimension expressions whose dimensions must match.

Usage Notes

The limits and intervals of the averaging are set according to the grid coordinates of the default file. If dim1 and dim2 are specified in world coordinates, the coordinates are converted to the nearest integer grid coordinates based on the scaling of the default file. See the examples below for further illustration.
The end points are given normal weighting, unless the -b boundary flag is specified. The boundry flag indicates that the average should be taken to the exact boundaries specified by dim1 and dim2, rather than the nearest grid points.
The average is weighted by grid interval to account for non-linear grid spacing. Averages in the latitude dimension are weighted by the difference between the sines of the latitude at the northern and southern edges of the grid box. The edges of the grid box are always defined as being the midpoint between adjacent grid points. To calculate an average without using the latitude weighting, use the mean function.
Examples

For the following examples, the dimension environment is X-Y varying; Z-T are fixed.

Consider the following average, when the default file is file #1:
ave(z.2,t=1,t=10)
We are averaging a variable from file #2, but using the scaling from file #1. File #1 has a time interval of 6 hours, but file #2 has a time interval of 12 hours. The average will thus attempt to access data from file #2 for times that are not available, and an error will ocurr. To avoid this, the default file should be set to file #2: set dfile 2

The average:
ave(z,t=1,t=120,4)
will average only 00Z reports from file #1, since the time increment is 4, which for this file is 24 hours.

If you attempt to take a zonal average as follows:
ave(z,lon=0,lon=360)
the world coordinates will be converted to grid coordinates, here X varying from 1 to 181, and the grid point at longitude 0 (and 360) will be used twice in the average. To have the end points of this average weighted properly, use the -b flag:

ave(z,lon=0,lon=360,-b)
or average using the grid coordinates directly:

ave(z,x=1,x=180)
You can nest averaging operations:
ave(ave(z,x=1,x=180),y=1,y=46)
In this case, to take an areal average. Note that for areal averaging, the aave function is better. See the aave function description.

When nesting averages, the order of the nesting can have a dramatic affect on performance. Keep in mind the ordering of the data in a GrADS file: X varies the fastest, then Y, then Z, then T. When nesting averages, put the faster varying dimension within the inner average:

set lon -90
set lat -90 90
set lev 1000 100
d ave(ave(t,x=1,x=180),t=1,t=20)
This average would be more efficient than, for example:

ave(ave(t,t=1,t=20),x=1,x=180)
although the final numerical result would be the same.

The use of the define command can make certain operations much more efficient. If you want to calculate standard deviation, for example:
sqrt(ave(pow(ave(z,t=1,t=20)-z,2),t=1,t=20))
would be correct, but the inside average would be calculated 20 times. Defining the inside average in advance will be substantially faster:

define zave = ave(z,t=1,t=20)
d sqrt(ave(pow(zave-z,2),t=1,t=20))
密码修改失败请联系微信:mofangbao
发表于 2015-5-18 21:40:56 | 显示全部楼层
嗯 感谢!!!
密码修改失败请联系微信:mofangbao
回复

使用道具 举报

发表于 2015-10-22 21:27:05 | 显示全部楼层
给力,赞赞赞!
密码修改失败请联系微信:mofangbao
发表于 2015-10-22 21:46:13 | 显示全部楼层
来个图,呵呵!
密码修改失败请联系微信:mofangbao
发表于 2015-11-1 22:22:36 | 显示全部楼层
river好厉害{:eb502:}{:5_213:}
密码修改失败请联系微信:mofangbao
发表于 2016-4-11 16:08:06 | 显示全部楼层
那怎样改变时间坐标轴的间隔呢?默认显示了一天两个时次,我想让它显示3个时次要怎么做呢?
密码修改失败请联系微信:mofangbao
发表于 2018-1-4 10:15:31 | 显示全部楼层
学习了~~
密码修改失败请联系微信:mofangbao
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Copyright ©2011-2014 bbs.06climate.com All Rights Reserved.  Powered by Discuz! (京ICP-10201084)

本站信息均由会员发表,不代表气象家园立场,禁止在本站发表与国家法律相抵触言论

快速回复 返回顶部 返回列表