You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
196 lines
5.4 KiB
Python
196 lines
5.4 KiB
Python
14 years ago
|
%% CHAPTER5 contains the commands used in Chapter 5 of the tutorial
|
||
|
%
|
||
|
% CALL: Chapter5
|
||
|
%
|
||
|
% Some of the commands are edited for fast computation.
|
||
|
% Each set of commands is followed by a 'pause' command.
|
||
|
%
|
||
|
|
||
|
% Tested on Matlab 5.3
|
||
|
% History
|
||
|
% Added Return values by GL August 2008
|
||
|
% Revised pab sept2005
|
||
|
% Added sections -> easier to evaluate using cellmode evaluation.
|
||
|
% Created by GL July 13, 2000
|
||
|
% from commands used in Chapter 5
|
||
|
%
|
||
|
|
||
|
%% Chapter 5 Extreme value analysis
|
||
|
|
||
|
%% Section 5.1 Weibull and Gumbel papers
|
||
|
pstate = 'off'
|
||
|
|
||
|
% Significant wave-height data on Weibull paper,
|
||
|
clf
|
||
|
Hs = load('atlantic.dat');
|
||
|
wei = plotweib(Hs)
|
||
|
wafostamp([],'(ER)')
|
||
|
disp('Block = 1'),pause(pstate)
|
||
|
|
||
|
%%
|
||
|
% Significant wave-height data on Gumbel paper,
|
||
|
clf
|
||
|
gum=plotgumb(Hs)
|
||
|
wafostamp([],'(ER)')
|
||
|
disp('Block = 2'),pause(pstate)
|
||
|
|
||
|
%%
|
||
|
% Significant wave-height data on Normal probability paper,
|
||
|
plotnorm(log(Hs),1,0);
|
||
|
wafostamp([],'(ER)')
|
||
|
disp('Block = 3'),pause(pstate)
|
||
|
|
||
|
%%
|
||
|
% Return values in the Gumbel distribution
|
||
|
clf
|
||
|
T=1:100000;
|
||
|
sT=gum(2) - gum(1)*log(-log(1-1./T));
|
||
|
semilogx(T,sT), hold
|
||
|
N=1:length(Hs); Nmax=max(N);
|
||
|
plot(Nmax./N,sort(Hs,'descend'),'.')
|
||
|
title('Return values in the Gumbel model')
|
||
|
xlabel('Return period')
|
||
|
ylabel('Return value')
|
||
|
wafostamp([],'(ER)')
|
||
|
disp('Block = 4'),pause(pstate)
|
||
|
|
||
|
%% Section 5.2 Generalized Pareto and Extreme Value distributions
|
||
|
%% Section 5.2.1 Generalized Extreme Value distribution
|
||
|
|
||
|
% Empirical distribution of significant wave-height with estimated
|
||
|
% Generalized Extreme Value distribution,
|
||
|
gev=fitgev(Hs,'plotflag',2)
|
||
|
wafostamp([],'(ER)')
|
||
|
disp('Block = 5a'),pause(pstate)
|
||
|
|
||
|
clf
|
||
|
x = linspace(0,14,200);
|
||
|
plotkde(Hs,[x;pdfgev(x,gev)]')
|
||
|
disp('Block = 5b'),pause(pstate)
|
||
|
|
||
|
% Analysis of yura87 wave data.
|
||
|
% Wave data interpolated (spline) and organized in 5-minute intervals
|
||
|
% Normalized to mean 0 and std = 1 to get stationary conditions.
|
||
|
% maximum level over each 5-minute interval analysed by GEV
|
||
|
xn = load('yura87.dat');
|
||
|
XI = 0:0.25:length(xn);
|
||
|
N = length(XI); N = N-mod(N,4*60*5);
|
||
|
YI = interp1(xn(:,1),xn(:,2),XI(1:N),'spline');
|
||
|
YI = reshape(YI,4*60*5,N/(4*60*5)); % Each column holds 5 minutes of
|
||
|
% interpolated data.
|
||
|
Y5 = (YI-ones(1200,1)*mean(YI))./(ones(1200,1)*std(YI));
|
||
|
Y5M = max(Y5);
|
||
|
Y5gev = fitgev(Y5M,'method','mps','plotflag',2)
|
||
|
wafostamp([],'(ER)')
|
||
|
disp('Block = 6'),pause(pstate)
|
||
|
|
||
|
%% Section 5.2.2 Generalized Pareto distribution
|
||
|
|
||
|
% Exceedances of significant wave-height data over level 3,
|
||
|
gpd3 = fitgenpar(Hs(Hs>3)-3,'plotflag',1);
|
||
|
wafostamp([],'(ER)')
|
||
|
|
||
|
%%
|
||
|
figure
|
||
|
% Exceedances of significant wave-height data over level 7,
|
||
|
gpd7 = fitgenpar(Hs(Hs>7),'fixpar',[nan,nan,7],'plotflag',1);
|
||
|
wafostamp([],'(ER)')
|
||
|
disp('Block = 6'),pause(pstate)
|
||
|
|
||
|
%%
|
||
|
%Simulates 100 values from the GEV distribution with parameters (0.3, 1, 2), then estimates the
|
||
|
%parameters using two different methods and plots the estimated distribution functions together
|
||
|
%with the empirical distribution.
|
||
|
Rgev = rndgev(0.3,1,2,1,100);
|
||
|
gp = fitgev(Rgev,'method','pwm');
|
||
|
gm = fitgev(Rgev,'method','ml','start',gp.params,'plotflag',0);
|
||
|
|
||
|
x=sort(Rgev);
|
||
|
plotedf(Rgev,gp,{'-','r-'});
|
||
|
hold on
|
||
|
plot(x,cdfgev(x,gm),'--')
|
||
|
hold off
|
||
|
wafostamp([],'(ER)')
|
||
|
disp('Block =7'),pause(pstate)
|
||
|
|
||
|
%%
|
||
11 years ago
|
% ;
|
||
14 years ago
|
Rgpd = rndgenpar(0.4,1,0,1,100);
|
||
|
plotedf(Rgpd);
|
||
|
hold on
|
||
|
gp = fitgenpar(Rgpd,'method','pkd','plotflag',0);
|
||
|
x=sort(Rgpd);
|
||
|
plot(x,cdfgenpar(x,gp))
|
||
|
% gm = fitgenpar(Rgpd,'method','mom','plotflag',0);
|
||
|
% plot(x,cdfgenpar(x,gm),'g--')
|
||
|
gw = fitgenpar(Rgpd,'method','pwm','plotflag',0);
|
||
|
plot(x,cdfgenpar(x,gw),'g:')
|
||
|
gml = fitgenpar(Rgpd,'method','ml','plotflag',0);
|
||
|
plot(x,cdfgenpar(x,gml),'--')
|
||
|
gmps = fitgenpar(Rgpd,'method','mps','plotflag',0);
|
||
|
plot(x,cdfgenpar(x,gmps),'r-.')
|
||
|
hold off
|
||
|
wafostamp([],'(ER)')
|
||
|
disp('Block = 8'),pause(pstate)
|
||
|
|
||
|
%%
|
||
|
% Return values for the GEV distribution
|
||
|
T = logspace(1,5,10);
|
||
|
[sT, sTlo, sTup] = invgev(1./T,Y5gev,'lowertail',false,'proflog',true);
|
||
|
|
||
|
%T = 2:100000;
|
||
|
%k=Y5gev.params(1); mu=Y5gev.params(3); sigma=Y5gev.params(2);
|
||
|
%sT1 = invgev(1./T,Y5gev,'lowertail',false);
|
||
|
%sT=mu + sigma/k*(1-(-log(1-1./T)).^k);
|
||
|
clf
|
||
|
semilogx(T,sT,T,sTlo,'r',T,sTup,'r'), hold
|
||
|
N=1:length(Y5M); Nmax=max(N);
|
||
|
plot(Nmax./N,sort(Y5M,'descend'),'.')
|
||
|
title('Return values in the GEV model')
|
||
|
xlabel('Return priod')
|
||
|
ylabel('Return value')
|
||
|
grid on
|
||
|
disp('Block = 9'),pause(pstate)
|
||
|
|
||
|
%% Section 5.3 POT-analysis
|
||
|
|
||
|
% Estimated expected exceedance over level u as function of u.
|
||
|
clf
|
||
|
plotreslife(Hs,'umin',2,'umax',10,'Nu',200);
|
||
|
wafostamp([],'(ER)')
|
||
|
disp('Block = 10'),pause(pstate)
|
||
|
|
||
|
%%
|
||
|
% Estimated distribution functions of monthly maxima
|
||
|
%with the POT method (solid),
|
||
|
% fitting a GEV (dashed) and the empirical distribution.
|
||
|
|
||
|
% POT- method
|
||
|
gpd7 = fitgenpar(Hs(Hs>7)-7,'method','pwm','plotflag',0);
|
||
|
khat = gpd7.params(1);
|
||
|
sigmahat = gpd7.params(2);
|
||
|
muhat = length(Hs(Hs>7))/(7*3*2);
|
||
|
bhat = sigmahat/muhat^khat;
|
||
|
ahat = 7-(bhat-sigmahat)/khat;
|
||
|
x = linspace(5,15,200);
|
||
|
plot(x,cdfgev(x,khat,bhat,ahat))
|
||
|
disp('Block = 11'),pause(pstate)
|
||
|
|
||
|
%%
|
||
|
% Since we have data to compute the monthly maxima mm over
|
||
|
%42 months we can also try to fit a
|
||
|
% GEV distribution directly:
|
||
|
mm = zeros(1,41);
|
||
|
for i=1:41
|
||
|
mm(i)=max(Hs(((i-1)*14+1):i*14));
|
||
|
end
|
||
|
|
||
|
gev=fitgev(mm);
|
||
|
hold on
|
||
|
plotedf(mm)
|
||
|
plot(x,cdfgev(x,gev),'--')
|
||
|
hold off
|
||
|
wafostamp([],'(ER)')
|
||
|
disp('Block = 12, Last block'),pause(pstate)
|
||
|
|