- 积分
- 42203
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-3-5
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 royalosyin 于 2013-6-26 09:14 编辑
在网上发现了个做降水IDF分析的matlab代码,改了改,并加了些标注。用来学习概念还不错。放了两个例子文件,一个是降水强度,一个是降水量。
我机器的显示器分辨率是1920×1080。如果你的不是,需要稍微改一改程序。
%% Algorithm
% With this routine you can get the different
% intensity - duration - frecuency curves, using the Gumbel's method.
% Equations used in this routine:
% 1 - 1 / T = exp( -exp ( - ( i + a ) / c) )
%
% Where: c = ( sqrt(6) / pi ) * s;
% a = ( 0.577 * c ) - imed;
% s = standard deviation of data
% imed = data media
%% Usage
% Inputs:
% Precipitations or Intensity of rain
%
% Outputs:
% Intensity - Duration - Return Period plot
%
% Requirements or additional information:
% This routine gets the data since a *.xls file.
% Please, chek the file comments.m
%
% Example:
% >> run IDFplot_Gumbel
%
% Development: Gabriel Ruiz Mtz.
% Thanks to Mr. George A.Z.
% 08-ene-06
% Modified by: Chonghua Yin
% 2013-6-1
% This routine is provided "as is" without warranty of any kind.
|
评分
-
查看全部评分
|