-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWDM.M
188 lines (161 loc) · 4.39 KB
/
WDM.M
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
% WDM.m Wavelet Directional Method
% Driver for producing WDM directional wave spectra plots
% from a specified array of 3 or more wave staffs.
%
%
% M.Donelan / Bergen 1994.11.26; Modified by A.Babanin and M.Donelan
% 2012.05 and earlier
clf
clear
np = 6;% Set number of wave staffs.
npp = (np*(np-1))/2;
% load data array with each wave staff time series as a column.
for run = [62]
if run > 99
eval(['load s87',int2str(run)])
elseif run > 9
eval(['load s870',int2str(run)])
else
eval(['load s8700',int2str(run)])
end
if length(data) > 4095
%data=binavg(data,2); % binavg; Modify as necessary to subsample time series.
% Reduce data to a multiple of 4096 points: wavelet analysis done 4096
% point chunks; i.e. 2^12 points
tlen = fix(length(data)/4096);
data=data(1:4096*tlen,:);
% Apply calibrations [to metres] to the wave staffs and set in desired order.
ws=[.58467*data(:,3) .57756*data(:,1) .59762*data(:,4) ...
.58998*data(:,6) .57155*data(:,5) .57363*data(:,2) ];
ws = detrend(ws);% Remove mean and trend.
%
% a and R are the angle [rad] and position [m] of the wave staffs
% from the array centre; i.e. Polar coordinates of the staffs
% np is number of probes
%
A = [0 33:72:359]; dr=pi/180; A = dr*A; % 28 Oct 87 DB Corrected June 22 1994
R = [0 0.25 0.25 0.25 0.25 0.25] ; % Radius of array (m). i.e. Polar coordinates of the staffs
X = R.*cos(A);
Y = R.*sin(A);
l=0;x=[];y=[];
for j=1:np-1
for k=(j+1):np
l=l+1;
x(l)=X(k)-X(j);
y(l)=Y(k)-Y(j);
end
end
i=sqrt(-1);
r=abs(x+i*y);
a=atan2(y,x);
l=0;rr=[];
for j=1:npp-1
for k=(j+1):npp
l=l+1;
rr(l)=a(j)-a(k);
csj(l)=cos(a(j));
csk(l)=cos(a(k));
snj(l)=sin(a(j));
snk(l)=sin(a(k));
rk(l)=r(k);
rj(l)=r(j);
end
end
rr=rr*180/pi;
ii=find(rr<0);
rr(ii)=rr(ii)+360;
ii=find(rr>70 & rr<110);
jj=find(rr>250 & rr<290);
ij=sort([ii jj]);
rr
clear ii jj X Y x y rr a r
ns=4;n=4096;lf=.0625;hf=1;nv=4;% Set parameters required by Wavelet.m
for i1=1:n:length(ws(:,1))-n+1
i1
lp=log(lf)/log(2);lp=floor(lp);
hp=log(hf)/log(2);hp=ceil(hp);
AMP = [];
for jj=1:np
eval(['wx',int2str(jj),' = [];'])
eval(['B',int2str(jj),' = [];'])
eval(['AMP',int2str(jj),' = [];'])
x=ws(i1:i1+n-1,jj);x=x(:);
eval(['[wx',int2str(jj),',f]=wavelet(x,lp,hp,nv,ns);'])
eval(['B',int2str(jj),'=angle(wx',int2str(jj),');'])
eval(['AMP',int2str(jj),'=abs(wx',int2str(jj),');'])
end
AMP = AMP1;
for jj = 2:np
eval(['AMP = AMP + AMP',int2str(jj),';'])
eval(['clear AMP',int2str(jj),' wx',int2str(jj)])
end
AMP = AMP/np;
clear AMP1 wx1 x
mxmf=max(find(f < ns/2));
kkm=[];thm=[];kks=[];ths=[];
%********************************************
for mf=1:mxmf
%********************************************
l=0;b=[];
for j=1:np-1
for k=(j+1):np
l=l+1;
eval(['b(:,l)=B',int2str(k),'(:,mf)-B',int2str(j),'(:,mf);'])
end
end
ill=find(b(:) > pi); b(ill)=b(ill)-2*pi;
ill=find(b(:) < -pi); b(ill)=b(ill)+2*pi;
lb=length(b);
l=0;AA=[];
for j=1:npp-1
for k=(j+1):npp
l=l+1;
if length(find(ij == l)) ==0
AA(:,l)=zeros(lb,1); bk(:,l)=zeros(lb,1);bj(:,l)=zeros(lb,1);
else
AA(:,l)=rk(l)/rj(l)*b(:,j)./b(:,k);
bk(:,l)=b(:,k);bj(:,l)=b(:,j);
end
end
end
th=[];ll=0;
for l=ij
ll=ll+1;
th(:,ll)=atan2((AA(:,l)*csk(l)-csj(l)),(snj(l)-AA(:,l)*snk(l)));
kk(:,ll)=(snk(l)*bj(:,l)/rj(l)-snj(l)*bk(:,l)/rk(l)) ./ ...
(csj(l)*snk(l) - csk(l)*snj(l))./cos(th(:,ll));
end
th = th+(kk<0)*pi;
kk = abs(kk);
thm = [thm meanang(th')'];
ths = [ths std(th')'];
kkm = [kkm mean(kk')'];
kks = [kks std(kk')'];
end %%% end of 'for mf=1:mxmf' loop (frequency bin loop)
clear AA b bj bk ill th kk j k l
if i1 == 1
AAp=AMP;
ddd=round(thm*180/pi);
kkmp=kkm;
eval(['save yw',int2str(run),' AAp ddd kkmp f'])
else
eval(['load yw',int2str(run)])
AAp=[AAp;AMP];
kkmp=[kkmp;kkm];
ddd=[ddd;round(thm*180/pi)];
eval(['save yw',int2str(run),' AAp ddd kkmp f'])
end
clear AAp ddd kkmp f
end
clear B1
for jj = 2:np
eval(['clear B',int2str(jj)])
end
clear csj csk dr hf hp kkm kks lb ll lf mf mxmf mw A R
clear n rj rk snj snk thm ths wn t i1 ij jj lp data AMP
waveplots
wavenums
% wavelognums
else
end % end of 'if length(data) > 4096' loop
end