-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBuoyVelocityToSlope.m
61 lines (49 loc) · 1.81 KB
/
BuoyVelocityToSlope.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
function slope=BuoyVelocityToSlope(Vel,T_s,depth,edepth);
%
% VelocityToSlope.m; 2016-09. M. Donelan, Duncan, BC.
%
% function slope=VelocityToSlope(Vel,T_s,depth);
%
% This routine computes the slopes of the water surfave from the time series of horizontal velocity components
%
% Vel, the velocity component time series, must be an even number of points long.
% T_s is sampling interval in sec.
% depth is that at buoy in m.
% edepth = effective depth of buoy velocities in m.
dr = pi/180;% degrees to radians.
x=fft(Vel);
[n,m] = size(x);
w=2*pi*(1:n/2)*(1/T_s)/n;
% First convert buoy velocity to orbital velocity using transfer function
% derived through Morison's equation.
load buoy_orbital_velocity_transfer_fcn Uf URatio Uphase
Uphdelay = -dr*(interp1(2*pi*Uf(3:end),Uphase(3:end),w,'linear','extrap'));% Phase correction
Uphdelay=[0 Uphdelay -Uphdelay(n/2-1:-1:1)]';
Uphdelay=Uphdelay*ones(1,m);
w=[0 w w(n/2-1:-1:1)]';
w(w<0.1) = 0.1;
Beta = 1.0./(interp1(2*pi*Uf(3:end),URatio(3:end),w,'linear','extrap'));% Magnitude correction
phase=angle(x) + Uphdelay;mag=abs(x.*Beta); % Shift phase and modify magnitude.
v=mag.*cos(phase)+sqrt(-1)*mag.*sin(phase);
% x=real(ifft(v));
% x(1,:) = x(2,:);
% x(n,:) = x(n-1,:);
% x is now the orbital velocity (v). Convert to slope.
x = v;
w=2*pi*(1:n/2)*(1/T_s)/n;
w=[0 w w(n/2-1:-1:1)]';
w(w<0.1) = 0.1;
k = WAVEK(w/2/pi,depth);
c = w./k;
c(c<0.2) = 0.2;
v = exp(k.*edepth).*x./c.*tanh(k.*depth); % Converts velocity (adjusted to surface) to slope.
phdelay = -pi./2.*ones(1,n/2);
phdelay=[0 phdelay -phdelay(n/2-1:-1:1)]';
phdelay=phdelay*ones(1,m);
phase=angle(v) + phdelay;mag=abs(v); % Shift phase by 90 deg.
v=mag.*cos(phase)+sqrt(-1)*mag.*sin(phase);
x=real(ifft(v));
x(1,:) = x(2,:);
x(n,:) = x(n-1,:);
slope = x;