Wave asymmetry and skewness#
%run initialize/init_3b.ipynb
Packages successfully loaded
Wave asymmetry and skewness can be demonstrated by using a second order wave, as in equation 1. The phase difference between the wave components influences the shape of the combined wave. You can assess the impact of phase differences and the amplitudes on the asymmetry on skewness in the interactive graph below. The figures 5.13 and 5.16 of the book can be reproduced with this figure, without scaling the y-axis. What are the amplitudes and the phases of wave component 1 and 2 to reproduce these figures? You can check it below the graph.
\begin{equation} \tag{1} \eta = \eta_1 cos(wt-kx-\phi_1) + \eta_2 cos(2(wt-kx)-\phi_2) \end{equation}
second_order_waves()
Can you make the left panel of figure 5.15, without scaling to (dividing by) \(\eta_1\)? You can rewrite equation 1 such that the surface elevation is a function of x/L. You may assume that t=0 to simplify the process. You can put this equation in the formula below to check your outcome, which will automatically be plotted for 3 wave lengths.
x_L = 1 # The ratio of x/L (an arbitrary value can be usefull to check your code)
eta1 = 1
eta2 = ...
phi1 = ...
phi2 = ...
def second_order_waves_x_L(x_L, eta1, eta2, phi1, phi2):
...
return eta
show_second_order_waves_x_L()
Can you rewrite equation 1 now so that the surface elevation is a function of t/T? You may assume that x=0 to simplify the process. You can put this equation in the formula below to check your outcome.
t_T = 1 # t/T, an arbitrary value for testing
def second_order_waves_t_T(t_T, more_arguments):
...
return eta
show_second_order_waves_t_T()
2) Further Investigating Skewness & Asymmetry#
Later in this course we will consider how wave shape influences sediment transport. Sediment transport is proportional to higher powers of the orbital velocity signal, so as a first step, let us consider what higher powers of the surface elevation look like. Remember that under a progressive wave (like we see in the nearshore), velocity and surface elevation are in phase. Here we compare eta with \(\eta^3\) when we vary the phase of the first harmonic component, as in Figure 5.14 and 5.17. How do the peaks in \(\eta^3\) change? What might this mean for the corresponding velocity signal and direction of sediment transport?”
asymmetric()
A final thought provoking question on this section: what is the influence on the time/space averaged value of \(\eta^3\) when the amplitudes and phases of the wave components change