Kelvin waves
This tutorial describes the simulation of Kelvin waves propagating along nearly-straight and infinite vortex lines.
Here we will:
- learn how to define infinite but unclosed filaments;
- look at diagnostics such as the energy over time;
- perform spatial and temporal Fourier analysis to detect relevant wavenumbers and frequencies associated to Kelvin waves.
It is recommended to first follow the vortex ring tutorial before following this tutorial.
- Physical configuration
- Defining an unclosed infinite curve
- Defining a curve from parametric function
- Using predefined curves
- Ensuring periodicity of the velocity
- Simulating Kelvin waves
- Measuring performance
- Fourier analysis
Physical configuration
The idea of this tutorial is to study the time evolution of an infinite straight line slightly modified by a sinusoidal perturbation.
We will consider such a vortex line in a cubic periodic domain of size $L = 2π$. The line is oriented in the $z$ direction and modified by a perturbation of amplitude $ϵL$ along $x$. The perturbation is periodic with period $λ = L/m = 2π/m$ where $m$ is an integer representing the mode of the perturbation (relative to the domain size $L$).
Such an infinite line $\bm{s} = (x, y, z)$ can be parametrised as
\[\begin{align*} x(t) &= x_0 + ϵ \, \sin(2πmt) \\ y(t) &= y_0 \\ z(t) &= z_0 + \left( t - \frac{1}{2} \right) L \end{align*}\]
for $t ∈ \mathbb{R}$. In particular, note that the line exactly crosses the domain after a period $T = 1$, going from $\bm{s}(t)$ to $\bm{s}(t + 1) = \bm{s}(t) + (0, \, 0, \, L)$.
The analytical prediction is that, over time, a small perturbation should rotate around the vortex in the direction opposite to its circulation. Its frequency is given by (see e.g. Schwarz (1985)):
\[ω_{\text{KW}}(k) = \frac{Γ k^2}{4π} \left[ \ln\left( \frac{2}{k a} \right) - γ + \frac{1}{2} - Δ \right]\]
where $k = 2πm/L$ is the perturbation wavenumber, $γ ≈ 0.5772$ the Euler–Mascheroni constant, $Δ$ the vortex core parameter and $a$ its radius ($a ≪ 1/k$).
Defining an unclosed infinite curve
Following the vortex ring tutorial, one may want to define such a line as follows:
using VortexPasta
using VortexPasta.Filaments
using VortexPasta.Filaments: Vec3
N = 64 # number of discretisation points per line
m = 2 # perturbation mode
L = 2π # domain period
x⃗₀ = Vec3(L/4, L/4, L/2) # line "origin"
ϵ = 0.01
ts = range(0, 1; length = N + 1)[1:N] # important: we exclude the endpoint (t = 1)
points = [x⃗₀ + Vec3(ϵ * L * sinpi(2m * t), 0, L * (t - 1/2)) for t ∈ ts]
f = Filaments.init(ClosedFilament, points, QuinticSplineMethod())
Let's look at the result:
using GLMakie
# Give a colour to a filament based on its local orientation wrt Z.
function filament_colour(f::AbstractFilament, refinement)
cs = Float32[]
ζs = range(0, 1; length = refinement + 1)[1:refinement] # for interpolation
for seg ∈ segments(f), ζ ∈ ζs
colour = seg(ζ, UnitTangent())[3] # in [-1, 1]
push!(cs, colour)
end
let seg = last(segments(f)) # "close" the curve
colour = seg(1.0, UnitTangent())[3]
push!(cs, colour)
end
cs
end
# Plot a list of filaments
function plot_filaments(fs::AbstractVector)
fig = Figure()
ax = Axis3(fig[1, 1]; aspect = :data)
ticks = range(0, 2π; step = π/2)
tickformat(xs) = map(x -> string(x/π, "π"), xs)
ax.xticks = ax.yticks = ax.zticks = ticks
ax.xtickformat = ax.ytickformat = ax.ztickformat = tickformat
hidespines!(ax)
wireframe!(ax, Rect(0, 0, 0, L, L, L); color = (:black, 0.5), linewidth = 0.2)
for f ∈ fs
refinement = 4
color = filament_colour(f, refinement)
plot!(
ax, f;
refinement, color, colormap = :RdBu_9, colorrange = (-1, 1), markersize = 4,
)
end
fig
end
# Plot a single filament
plot_filaments(f::AbstractFilament) = plot_filaments([f])
plot_filaments(f)

Things look almost as expected except for the fact that the line tries to close itself when it reaches the end. To avoid this, one needs to explicitly give Filaments.init
an end-to-end vector via the offset
keyword argument. In our case the end-to-end vector is $\bm{Δ} = (0, 0, 2π)$.
f = Filaments.init(ClosedFilament, points, QuinticSplineMethod(); offset = (0, 0, 2π))
plot_filaments(f)

Now everything looks fine! Note that the end-to-end vector corresponds to the separation between a node f[i]
and the node f[i + N]
. For example:
@show f[end + 1] - f[begin]
@show Vec3(0, 0, 2π)
f[end + 1] - f[begin] = [0.0, 0.0, 6.283185307179586]
Vec3(0, 0, 2π) = [0.0, 0.0, 6.283185307179586]
The end-to-end vector must be an integer multiple of the domain period, which in this case is $(2π, 2π, 2π)$.
Defining a curve from parametric function
The Filaments.init
function actually allows to define a curve directly from its (continuous) parametric function. In this case one doesn't need to care about end-to-end vectors and "offsets", since these are usually encoded in the parametrisation.
For example, for the curve above we would define the function:
fcurve(t) = x⃗₀ + Vec3(
ϵ * L * sinpi(2 * m * t),
0,
(t - 0.5) * L,
)
fcurve (generic function with 1 method)
The function will be evaluated over the interval $t ∈ [0, 1]$. The only assumption is that the parametric function must either represent:
- a closed curve with period $T = 1$;
- an unclosed periodic curve which crosses the domain after a period $T = 1$.
Here we are in the second case, and the function above indeed satisfies this condition.
Now we just pass the function to Filaments.init
:
f′ = Filaments.init(fcurve, ClosedFilament, N, QuinticSplineMethod())
Note that this generates a filament which is practically identical to the previous one (just with a shift in the node positions, not really visible here):
plot_filaments([f, f′])

Using predefined curves
There is another convenient way of defining such curves, using the VortexPasta.PredefinedCurves
module which provides definitions of parametric functions for commonly-used curves. As we will see in the next section, this is particularly convenient when we want to create multiple vortices which share the same geometry, but which have for instance different orientations or different spatial locations in the domain.
Here we want to use the PeriodicLine
definitions, which allow one to pass arbitrary functions as perturbations. Note that curve definitions in PredefinedCurves
are normalised. In particular, the period of PeriodicLine
is 1, and the perturbation that we give it will be in terms of this unit period.
using VortexPasta.PredefinedCurves: PeriodicLine, define_curve
x_perturb(t) = ϵ * sinpi(2m * t) # perturbation along x (takes t ∈ [0, 1])
p = PeriodicLine(x = x_perturb) # this represents a line with period 1 along z
We now want to "convert" this line to a parametric function which can be then evaluated to generate points. This is done using the define_curve
function, which allows in particular to rescale the curve (we want a period of $L = 2π$ instead of $1$). We would also like the curve to be centred at $\bm{x}_0$.
S = define_curve(p; scale = L, translate = x⃗₀)
@show S(0.0) S(0.5) S(1.0)
S(0.0) = [1.5707963267948966, 1.5707963267948966, 0.0]
S(0.5) = [1.5707963267948966, 1.5707963267948966, 3.141592653589793]
S(1.0) = [1.5707963267948966, 1.5707963267948966, 6.283185307179586]
As we can see, S
is a function which can be evaluated at any value of $t$. In fact, S
is identical to the fcurve
function we defined above. We can now pass this function to Filaments.init
to generate a filament:
f = Filaments.init(S, ClosedFilament, N, QuinticSplineMethod())
plot_filaments(f)

Ensuring periodicity of the velocity
For now we have initialised one infinite unclosed filament. One needs to be careful when working with unclosed filaments in periodic domains. Indeed, a single straight vortex filament in a periodic domain generates a non-zero circulation along the domain boundaries (or equivalently, a non-zero mean vorticity), which violates the periodicity condition.
The mean vorticity in the periodic domain is given by
\[⟨ \bm{ω} ⟩ = \frac{1}{V} ∫_Ω \bm{ω}(\bm{x}) \, \mathrm{d}^3\bm{x} = \frac{Γ}{V} ∫_{\mathcal{C}} \mathrm{d}\bm{s} = \frac{Γ}{V} ∫_{\mathcal{C}} \bm{s}'(t) \, \mathrm{d}t\]
where $Ω$ represents the periodic domain and $V = L^3$ is its volume. So the last integral must be zero to ensure periodicity. It is quite obvious that this is not the case for the filament defined above, and we can readily verify it:
integrate(f′, GaussLegendre(4)) do ff, i, ζ
ff(i, ζ, Derivative(1))
end
3-element SVector{3, Float64} with indices SOneTo(3):
-6.765421556309548e-17
-1.333667967889273e-29
6.283185307179587
This means that, for each vortex oriented in the $+z$ direction, we need to compensate by a vortex oriented in the $-z$ direction to obtain a zero total circulation.
In practice, to make sure that the total circulation is zero and to stabilise the system, we want to have four vortices such that their coordinates respect mirror symmetry with respect to the planes $x = L/2$ and $y = L/2$. Respecting these two symmetries means that both planes effectively become impermeable (but free-slip) walls. That is, the velocity induced by the vortices on those planes can only be parallel to the planes and not normal to them. More generally, due to periodicity, all planes $x = nL/2$ and $y = nL/2$ (for integer $n$) effectively become impermeable walls.
Let's now create these four vortices:
funcs = [
# "Positive" vortices
define_curve(p; scale = (+L, +L, +L), translate = (0.25L, 0.25L, 0.5L)),
define_curve(p; scale = (-L, -L, +L), translate = (0.75L, 0.75L, 0.5L)), # mirror symmetry wrt x and y
# "Negative" vortices: we use the `orientation` keyword to flip their orientation.
define_curve(p; scale = (+L, -L, +L), translate = (0.25L, 0.75L, 0.5L), orientation = -1), # mirror symmetry wrt y
define_curve(p; scale = (-L, +L, +L), translate = (0.75L, 0.25L, 0.5L), orientation = -1), # mirror symmetry wrt x
]
fs = map(S -> Filaments.init(S, ClosedFilament, N, QuinticSplineMethod()), funcs)
plot_filaments(fs)

Here the colours represent the local orientation of the curve tangent with respect to the $z$ axis. We can check that, when we sum the contributions of all filaments, the mean vorticity is zero:
# This computes the integral along each filament and sums the results.
sum(fs) do f
integrate(f, GaussLegendre(4)) do ff, i, ζ
f(i, ζ, Derivative(1))
end
end
3-element SVector{3, Float64} with indices SOneTo(3):
-7.28583859910259e-17
-3.0445100560873424e-29
2.6645352591003757e-15
Now we're ready to perform simulations.
Simulating Kelvin waves
As in the vortex ring tutorial, we use the Timestepping
module to perform a temporal simulation of the configuration we just prepared.
Setting physical and numerical parameters
We start by setting the parameters for Biot–Savart computations:
using VortexPasta.BiotSavart
M = floor(Int, 32 * 2/3) # resolution of long-range grid
kmax = π * (M - 1) / L # maximum resolved wavenumber (Nyquist frequency) for long-range part
β = 3.5 # accuracy parameter
α = kmax / (2β) # Ewald splitting parameter
params = ParamsBiotSavart(;
Γ = 1.0, # vortex circulation
a = 1e-8, # vortex core size
Δ = 1/4, # vortex core parameter (1/4 for a constant vorticity distribution)
α = α, # Ewald splitting parameter
Ls = (L, L, L), # same domain size in all directions
Ns = (M, M, M), # same long-range resolution in all directions
rcut = β / α, # cut-off distance for short-range computations
quadrature = GaussLegendre(3), # quadrature for integrals over filament segments
backend_long = NonuniformFFTsBackend(), # this is the default
backend_short = CellListsBackend(2),
)
ParamsBiotSavart{Float64} with:
- Physical parameters:
* Vortex circulation: Γ = 1.0
* Vortex core radius: a = 1.0e-8
* Vortex core parameter: Δ = 0.25
* Domain period: Ls = (6.283185307179586, 6.283185307179586, 6.283185307179586)
- Numerical parameters:
* Ewald splitting parameter: α = 1.4285714285714286 (σ = 1/α√2 = 0.49497474683058323)
* Quadrature rule: GaussLegendre{3}()
* Quadrature rule (alt.): AdaptiveTanhSinh(Float64; nlevels = 5, rtol = 1.4901161193847656e-8) (used near singularities)
* Short-range backend: CellListsBackend{2}()
* Short-range cut-off: r_cut = 2.4499999999999997 (r_cut/L = 0.3899296105751435)
* Short-range cut-off coeff.: β_shortrange = 3.4999999999999996
* Local segment fraction: 1
* Long-range backend: NonuniformFFTsBackend(CPU(true); m = HalfSupport{4}(), σ = 1.5)
* Long-range resolution: Ns = (21, 21, 21) (kmax = 10.0)
* Long-range cut-off coeff.: β_longrange = 3.5
* Long-range spherical truncation: false
We would like to compute a few periods of Kelvin wave oscillations. For this, we first compute the expected Kelvin wave frequency and its associated period:
(; Γ, a, Δ,) = params # extract parameters needed for KW frequency
γ = MathConstants.eulergamma # Euler–Mascheroni constant
k = 2π * m / L
ω_kw = Γ * k^2 / (4 * π) * (
log(2 / (k * a)) - γ + 1/2 - Δ
)
T_kw = 2π / ω_kw # expected Kelvin wave period
1.0909579075062508
We create a VortexFilamentProblem
to simulate a few Kelvin wave periods. To make things more interesting later when doing the temporal Fourier analysis of the results, we don't simulate an integer number of periods so that the results are not exactly time-periodic.
using VortexPasta.Timestepping
tspan = (0.0, 3.2 * T_kw)
prob = VortexFilamentProblem(fs, tspan, params)
VortexFilamentProblem with fields:
├─ p: ParamsBiotSavart{Float64}(Γ = 1.0, a = 1.0e-8, Δ = 0.25, α = 1.4285714285714286, …)
├─ tspan: (0.0, 3.491065304020003) -- simulation timespan
└─ fs: 4-element VectorOfVectors -- vortex filaments at t = 0.0
We now create a callback which will be used to store some data for further analysis. We will store the times and the position over time of a single filament node to be able to visualise and analyse the oscillations. Moreover, we will store the system energy to verify that energy is conserved over time (see VFM notes for detains on how it is computed). For computing the energy we use the kinetic_energy_from_streamfunction
function from the Diagnostics
module.
using VortexPasta.Diagnostics
times::Vector{Float64} = Float64[]
X_probe::Vector{Vec3{Float64}} = Vec3{Float64}[] # will contain positions of a chosen node
energy::Vector{Float64} = Float64[]
function callback(iter)
(; nstep, t,) = iter
if nstep == 0 # make sure vectors are empty at the beginning of the simulation
empty!(times)
empty!(X_probe)
empty!(energy)
end
push!(times, t)
s⃗ = iter.fs[1][3] # we choose a single node of a single filament
push!(X_probe, s⃗)
# Compute energy
E = Diagnostics.kinetic_energy_from_streamfunction(iter)
push!(energy, E)
nothing
end
callback (generic function with 1 method)
Note that we have annotated the types of the variables times
, X_probe
and energy
for performance reasons, since these are global variables which are used (and modified) from within the callback
function. See here and here for details.
Choosing the timestep and the temporal scheme
In the vortex ring tutorial we have used the standard RK4
scheme. To capture the vortex evolution and avoid blow-up, this scheme requires the timestep $Δt$ to be of the order of the period of the fastest resolved Kelvin waves, which have a wavelength $λ$ equal to (twice) the filament resolution $δ$ (the typical distance between two discretisation points).
We first estimate the filament resolution using minimum_node_distance
:
δ = minimum_node_distance(prob.fs) # should be close to L/N in our case
0.0981747704246807
Now we compute the Kelvin wave frequency associated to this distance:
kelvin_wave_period(λ; a, Δ, Γ) = 2 * λ^2 / Γ / (log(λ / (π * a)) + 1/2 - (Δ + MathConstants.γ))
dt_kw = kelvin_wave_period(δ; a, Δ, Γ)
0.0013178102262909038
Note that this time scale is very small compared to the period of the large-scale Kelvin waves:
T_kw / dt_kw
827.8566107176529
This means that we would need a relatively large simulation time to observe the evolution of large-scale Kelvin waves over multiple periods.
For the RK4
scheme, this time scale really seems to set the maximum allowed timestep limit. We can check that a simulation with RK4
using dt = dt_kw
remains stable. In particular, energy stays constant in time after running a few iterations with this timestep:
iter = init(prob, RK4(); dt = dt_kw, callback)
for _ ∈ 1:40
step!(iter)
end
energy'
1×41 adjoint(::Vector{Float64}) with eltype Float64:
0.159397 0.159397 0.159397 0.159397 … 0.159397 0.159397 0.159397
However, using dt = 2 * dt_kw
quickly leads to instability and energy blow-up:
iter = init(prob, RK4(); dt = 2 * dt_kw, callback)
for _ ∈ 1:40
step!(iter)
end
energy'
1×41 adjoint(::Vector{Float64}) with eltype Float64:
0.159397 0.159397 0.159397 0.159397 … 0.313075 0.312704 0.320886
This limit is basically set by the short-range Biot–Savart interactions and in particular the local term (see Desingularisation), which presents fast temporal variations. On the upside, this term is cheap to compute, which means that we can take advantage of a splitting scheme (such as Strang splitting) to accelerate computations.
The idea is to write the time evolution of a vortex point due to the Biot–Savart law as:
\[\frac{\mathrm{d}\bm{s}}{\mathrm{d}t} = \bm{v}(\bm{s}) = \bm{v}_{\text{local}}(\bm{s}) + \bm{v}_{\text{non-local}}(\bm{s})\]
where the local term $\bm{v}_{\text{local}}(\bm{s})$ represents the fast dynamics (thus requiring very small timesteps) while being cheap to compute, while the non-local term $\bm{v}_{\text{non-local}}(\bm{s})$ represents the slow dynamics and has a higher computational cost.
Using a splitting method can make sense when it is easier or more convenient to separately solve the two equations:
\[\begin{align*} \frac{\mathrm{d}\bm{s}}{\mathrm{d}t} &= \bm{v}_{\text{local}}(\bm{s}) & \quad & \text{(fast)} \\ \frac{\mathrm{d}\bm{s}}{\mathrm{d}t} &= \bm{v}_{\text{non-local}}(\bm{s}) & \quad & \text{(slow)} \end{align*}\]
In some applications, this is the case because one of the terms is linear or because one of the sub-equations can be solved analytically. This is not the case here, but this splitting is still convenient because it allows us to use different timesteps for each sub-equation. In particular, we can use a smaller timestep for the local (fast) term, which is the one that sets the timestep limit.
One of the most popular (and classical) splitting methods is Strang splitting, which is second order in time. In this method, a single simulation timestep ($t → t + Δt$) is decomposed in 3 steps:
- Advance solution $\bm{s}(t) → \bm{s}_1$ in the interval $t → t + \frac{Δt}{2}$ using equation $\text{(fast)}$.
- Advance solution $\bm{s}_1 → \bm{s}_2$ in the interval $t → t + Δt$ using equation $\text{(slow)}$.
- Advance solution $\bm{s}_2 → \bm{s}(t + Δt)$ in the interval $t + \frac{Δt}{2} → t + Δt$ using equation $\text{(fast)}$.
In the following we use the Strang
splitting scheme, which allows to use different explicit Runge–Kutta schemes for the "fast" and "slow" equations, and allows to set a smaller timestep to solve the former.
Concretely, we solve steps 1 and 3 using the standard RK4 scheme, while for step 2 the Midpoint
scheme is used by default (but this can be changed, see Strang
docs for details). Moreover, steps 1 and 3 are decomposed into $M = 16$ substeps, meaning that they are solved with a smaller timestep $Δt_{\text{fast}} = (Δt/2) / M = Δt / 32$. In practice, this means that we can multiply our "global" timestep $Δt$ by 32 and retain the stability of the solver.
scheme = Strang(RK4(); nsubsteps = 16)
dt = 32 * dt_kw
0.04216992724130892
More generally, when using Strang splitting with the RK4
scheme for the fast dynamics, setting nsubsteps = M
allows us to set the global timestep to dt = 2M * dt_kw
. We could tune the number $M$ of inner iterations to allow even larger timesteps, but this might lead to precision loss.
Running the simulation
We now solve the full problem with this splitting scheme. Note that we use LocalTerm
to identify the "fast" motions to the local (LIA) term of the Biot–Savart integrals. We could alternatively use ShortRangeTerm
for a different interpretation of what represents the "fast" motions.
iter = init(prob, scheme; dt, callback, fast_term = LocalTerm())
reset_timer!(iter.to) # to get more accurate timings (removes most of the compilation time)
solve!(iter)
iter.to
────────────────────────────────────────────────────────────────────────────────
Time Allocations
─────────────────────── ────────────────────────
Tot / % measured: 5.27s / 87.5% 305MiB / 46.5%
Section ncalls time %tot avg alloc %tot avg
────────────────────────────────────────────────────────────────────────────────
Update values at n... 10.9k 4.41s 95.7% 406μs 141MiB 99.4% 13.3KiB
LIA term (only) 10.6k 547ms 11.9% 51.5μs 81.4MiB 57.4% 7.85KiB
Short-range comp... 249 424ms 9.2% 1.70ms 5.58MiB 3.9% 23.0KiB
Compute Biot–S... 249 392ms 8.5% 1.57ms 3.33MiB 2.3% 13.7KiB
Self-interaction 332 24.5ms 0.5% 73.8μs 2.25MiB 1.6% 6.94KiB
Process point ... 249 6.95ms 0.2% 27.9μs 0.00B 0.0% 0.00B
Background vor... 249 150μs 0.0% 602ns 0.00B 0.0% 0.00B
Long-range compo... 249 277ms 6.0% 1.11ms 12.0MiB 8.4% 49.3KiB
Vorticity to F... 249 124ms 2.7% 496μs 4.86MiB 3.4% 20.0KiB
Velocity 249 117ms 2.5% 471μs 5.37MiB 3.8% 22.1KiB
Convert to p... 249 117ms 2.5% 471μs 5.37MiB 3.8% 22.1KiB
Streamfunction 83 35.3ms 0.8% 425μs 1.75MiB 1.2% 21.6KiB
Convert to p... 83 35.2ms 0.8% 424μs 1.75MiB 1.2% 21.6KiB
Set interpolat... 249 539μs 0.0% 2.17μs 0.00B 0.0% 0.00B
Add point charges 249 7.74ms 0.2% 31.1μs 331KiB 0.2% 1.33KiB
Advect filaments 10.9k 200ms 4.3% 18.4μs 843KiB 0.6% 79.4B
Callback 83 636μs 0.0% 7.66μs 7.06KiB 0.0% 87.1B
reconnect! 83 3.33μs 0.0% 40.1ns 0.00B 0.0% 0.00B
Affect! 83 3.10μs 0.0% 37.4ns 0.00B 0.0% 0.00B
────────────────────────────────────────────────────────────────────────────────
We can check that energy is conserved:
energy'
1×84 adjoint(::Vector{Float64}) with eltype Float64:
0.159397 0.159397 0.159397 0.159397 … 0.159397 0.159397 0.159397
We see that the energy seems to take the same value at all times. We can verify this quantitatively by looking at its standard deviation (normalised by the mean energy), which is negligible:
using Statistics: mean, std
Emean = mean(energy)
Estd = std(energy)
Estd / Emean
1.5806446035661727e-8
We now plot the evolution of the $x$ and $y$ coordinates of the closen filament node:
fig = Figure()
ax = Axis(fig[1, 1]; xlabel = L"t / T_{\text{KW}}", ylabel = "Position")
tnorm = times ./ T_kw # normalised time
xpos = map(s⃗ -> s⃗[1], X_probe) # get all X positions over time
ypos = map(s⃗ -> s⃗[2], X_probe) # get all Y positions over time
scatterlines!(ax, tnorm, xpos; marker = 'o', label = L"x(t)")
scatterlines!(ax, tnorm, ypos; marker = 'o', label = L"y(t)")
Legend(fig[1, 2], ax; orientation = :vertical, framevisible = false, padding = (0, 0, 0, 0), labelsize = 22, rowgap = 5)
fig
We see that the $x$ and $y$ positions of the chosen point oscillate sinusoidally. The period of the oscillations are very close to the expected Kelvin wave period $T_{\text{KW}}$.
The oscillations above suggest circular trajectories, as we can check in the following figure:
scatterlines(
xpos, ypos;
color = tnorm,
axis = (aspect = DataAspect(), xlabel = L"x(t)", ylabel = L"y(t)"),
)
Measuring performance
The VortexPasta solver uses the TimerOutputs.jl package to estimate the time spent (and memory allocated) in different stages of the computation.
Accessing timing information is very simple, as it is all included in the to
field of the VortexFilamentSolver
:
iter.to
─────────────────────────────────────────────────────────────────────────────────────────
Time Allocations
─────────────────────── ────────────────────────
Tot / % measured: 9.27s / 49.7% 636MiB / 22.3%
Section ncalls time %tot avg alloc %tot avg
─────────────────────────────────────────────────────────────────────────────────────────
Update values at nodes 10.9k 4.41s 95.7% 406μs 141MiB 99.4% 13.3KiB
LIA term (only) 10.6k 547ms 11.9% 51.5μs 81.4MiB 57.4% 7.85KiB
Short-range component 249 424ms 9.2% 1.70ms 5.58MiB 3.9% 23.0KiB
Compute Biot–Savart 249 392ms 8.5% 1.57ms 3.33MiB 2.3% 13.7KiB
Self-interaction 332 24.5ms 0.5% 73.8μs 2.25MiB 1.6% 6.94KiB
Process point charges 249 6.95ms 0.2% 27.9μs 0.00B 0.0% 0.00B
Background vorticity 249 150μs 0.0% 602ns 0.00B 0.0% 0.00B
Long-range component 249 277ms 6.0% 1.11ms 12.0MiB 8.4% 49.3KiB
Vorticity to Fourier 249 124ms 2.7% 496μs 4.86MiB 3.4% 20.0KiB
Velocity 249 117ms 2.5% 471μs 5.37MiB 3.8% 22.1KiB
Convert to physical 249 117ms 2.5% 471μs 5.37MiB 3.8% 22.1KiB
Streamfunction 83 35.3ms 0.8% 425μs 1.75MiB 1.2% 21.6KiB
Convert to physical 83 35.2ms 0.8% 424μs 1.75MiB 1.2% 21.6KiB
Set interpolation points 249 539μs 0.0% 2.17μs 0.00B 0.0% 0.00B
Add point charges 249 7.74ms 0.2% 31.1μs 331KiB 0.2% 1.33KiB
Advect filaments 10.9k 200ms 4.3% 18.4μs 843KiB 0.6% 79.4B
Callback 83 636μs 0.0% 7.66μs 7.06KiB 0.0% 87.1B
reconnect! 83 3.33μs 0.0% 40.1ns 0.00B 0.0% 0.00B
Affect! 83 3.10μs 0.0% 37.4ns 0.00B 0.0% 0.00B
─────────────────────────────────────────────────────────────────────────────────────────
We can see that, in this particular case, the runtime is mostly dominated by the the LIA (local) term, which is computed much more often than the non-local interactions due to the use of a splitting scheme for the temporal evolution.
Fourier analysis
Spatial analysis
The idea is to identify the spatial fluctuations of a single vortex with respect to the unperturbed filament. For this, we first write the perturbations in complex representation as a function of the $z$ coordinate, i.e. $w(z) = x(z) + i y(z)$.
We want to apply the FFT to these two functions. For this, we need all points of the vortex filament to be equispaced in $z$:
f = iter.fs[1] # vortex to analyse
zs = getindex.(nodes(f), 3) # z locations
N = length(zs)
zs_expected = range(zs[begin], zs[begin] + L; length = N + 1)[1:N] # equispaced locations
isapprox(zs, zs_expected; rtol = 1e-5) # check that z locations are approximately equispaced
true
Now that we have verified this, we define the complex function $w(z) = x(z) + i y(z)$ and we perform a complex-to-complex FFT to obtain $\hat{w}(k)$:
xs = getindex.(nodes(f), 1) # x locations
ys = getindex.(nodes(f), 2) # y locations
ws = @. xs + im * ys
using FFTW: fft, fft!, fftfreq
w_hat = fft(ws)
@. w_hat = w_hat / N # normalise FFT
@show w_hat[1] # the zero frequency gives the mean location
w_hat[1] ≈ π/2 + π/2 * im # we expect the mean location to be (π/2, π/2)
true
The associated wavenumbers are multiples of $2π/Δz = 2πN/L$:
Δz = L / N
@assert isapprox(Δz, zs[2] - zs[1]; rtol = 1e-4)
ks = fftfreq(N, 2π / Δz)
ks' # should be integers if L = 2π
1×64 adjoint(::AbstractFFTs.Frequencies{Float64}) with eltype Float64:
0.0 1.0 2.0 3.0 4.0 5.0 6.0 … -6.0 -5.0 -4.0 -3.0 -2.0 -1.0
Note that this includes positive and negative wavenumbers. More precisely, ks[2:N÷2]
contains the positive wavenumbers, and ks[N÷2+1:end]
contains the corresponding negative wavenumbers.
We now want to compute the wave action spectrum $n(k) = |\hat{w}(k)|^2 + |\hat{w}(-k)|^2$, which is related to the amplitude of the oscillations at the scale $λ = 2π/k$.
function wave_action_spectrum(ks::AbstractVector, w_hat::AbstractVector)
@assert ks[2] == -ks[end] # contains positive and negative wavenumbers
@assert length(ks) == length(w_hat)
N = length(ks)
dk = ks[2] # this is the wavenumber increment
if iseven(N)
Nh = N ÷ 2
@assert ks[Nh + 1] ≈ -(ks[Nh] + dk) # wavenumbers change sign after index Nh
else
Nh = N ÷ 2 + 1
@assert ks[Nh + 1] == -ks[Nh] # wavenumbers change sign after index Nh
end
ks_pos = ks[2:Nh] # only positive wavenumbers
nk = similar(ks_pos)
for j ∈ eachindex(ks_pos)
local k = ks_pos[j]
i⁺ = 1 + j # index of coefficient corresponding to wavenumber +k
i⁻ = N + 1 - j # index of coefficient corresponding to wavenumber -k
@assert ks[i⁺] == -ks[i⁻] == k # verification
nk[j] = abs2(w_hat[i⁺]) + abs2(w_hat[i⁻])
end
ks_pos, nk
end
ks_pos, nk = wave_action_spectrum(ks, w_hat)
nk_normalised = nk ./ ((ϵ * L)^2 / 2)
sum(nk_normalised) # we expect the sum to be 1
0.9999903664789065
We can finally plot the final state:
fig = Figure()
ax = Axis(
fig[1, 1];
xscale = log10, yscale = log10, xlabel = L"k", ylabel = L"2 \, n(k) / A^2",
xlabelsize = 20, ylabelsize = 20,
xticks = LogTicks(0:4), xminorticksvisible = true, xminorticks = IntervalsBetween(9),
yminorticksvisible = true, yminorticks = exp10.(-40:10),
)
scatterlines!(ax, ks_pos, nk_normalised)
xlims!(ax, 0.8 * ks_pos[begin], nothing)
ylims!(ax, 1e-30, 1e1)
vlines!(ax, ks_pos[m]; linestyle = :dash, color = :orangered)
fig
We see that the wave action spectrum is strongly peaked at the wavenumber $k = 2πm/L$ (dashed vertical line) corresponding to the perturbation mode $m$ we chose at the beginning. Note that the other peaks (which here are about 6 orders of magnitude smaller than the main peak) are not numerical artefacts. Instead, these peaks appearing at wavenumbers $q = k (1 + 2n)$ for integer $n$ can be explained analytically (see box below). Their relative magnitude should further decrease if one decreases the perturbation amplitude.
A kind of proof using LIA
One way to illustrate this analytically is using the local induction approximation (LIA). Let's consider the perturbed line $\bm{s}(z) = [ϵ \sin(z), 0, z]$ parametrised by the $z$ coordinate. The LIA can be written as
\[\bm{v}_{\text{LIA}} = C \frac{\bm{s}' × \bm{s}''}{|\bm{s}'|^3}\]
where $C$ is (roughly) a constant. Derivatives are with respect to the chosen parametrisation (which can differ from the "natural" arc-length parametrisation), hence the normalising factor in the denominator.
In our case we have $\bm{s}' = [ϵ \cos(z), 0, 1]$ and $\bm{s}'' = [-ϵ \sin(z), 0, 0]$, and thus
\[v_{\text{LIA}} = \frac{C ϵ \sin(z)}{(1 + ϵ^2 \cos^2 z)^{3/2}}.\]
Using a Taylor expansion, one can easily show that the denominator introduces fluctuations over the odd harmonics $q = 1 + 2n$ for $n ∈ \{ 1, 2, 3, … \}$:
\[v_{\text{LIA}} = C ϵ \sin(z) \left[1 - \frac{3}{2} ϵ^2 \cos^2 z + \mathcal{O}(ϵ^4) \right].\]
Noting that $\sin(z) \cos^2(z) = [\sin(z) + \sin(3z)] / 4$, one clearly sees that the term in $ϵ^2$ excites modes at wavenumber $q = 3$, i.e. the third harmonic of the perturbed mode $k = 1$. Since the contribution is proportional to $ϵ^2$, this non-linear effect should be negligible for very small perturbation amplitudes. It is easy to see that all of this generalises to all odd harmonics $q = 1 + 2n$ by taking into account higher-order terms of the Taylor expansion.
In the tutorial, we initially perturbed the mode $k = 2$, which excites its odd harmonics $q = k (1 + 2n) = 6, 10, 14, …$ as seen in the above figure.
We also see that the sum $∑_k n(k)$ (which is basically just the value of the main peak in this case) is equal to $A^2/2$, where $A = ϵL$ is the amplitude of the initial perturbation.
The main conclusion is that, when we perturb a single Kelvin wave mode as we did here, that original mode is exactly preserved over time (except for negligible high-order effects).
Temporal analysis
We can do something similar to analyse the temporal oscillations of the filament. For example, we can take the same temporal data we analysed before, corresponding to the position of a single filament node:
xt = getindex.(X_probe, 1) # x positions of a single node over time
yt = getindex.(X_probe, 2) # y positions of a single node over time
zt = getindex.(X_probe, 3) # z positions of a single node over time
std(zt) / mean(zt) # ideally, the z positions shouldn't change over time
1.6604626841552364e-5
Similarly to before, we now write $w(t) = x(t) + i y(t)$ and perform an FFT:
inds_t = eachindex(times)[begin:end - 1] # don't consider the last time to make sure the timestep Δt is constant
wt = @views @. xt[inds_t] + im * yt[inds_t]
Nt = length(wt) # number of time snapshots
Δt = times[2] - times[1] # timestep
@assert times[begin:end-1] ≈ range(times[begin], times[end-1]; length = Nt) # check that times are equispaced
w_hat = fft(wt)
@. w_hat = w_hat / Nt # normalise FFT
ωs = fftfreq(Nt, 2π / Δt)
ωs_pos, nω = wave_action_spectrum(ωs, w_hat)
ωs_normalised = ωs_pos ./ ω_kw # normalise by expected KW frequency
fig = Figure()
ax = Axis(
fig[1, 1];
xscale = log10, yscale = log10, xlabel = L"ω / ω_{\text{kw}}", ylabel = L"n(ω)",
xlabelsize = 20, ylabelsize = 20,
xticks = LogTicks(0:4), xminorticksvisible = true, xminorticks = IntervalsBetween(9),
yticks = LogTicks(-20:10), yminorticksvisible = true, yminorticks = IntervalsBetween(9),
)
scatterlines!(ax, ωs_normalised, nω; label = "Original signal")
xlims!(ax, 0.8 * ωs_normalised[begin], 1.2 * ωs_normalised[end])
vlines!(ax, 1.0; linestyle = :dash, color = :orangered)
fig
We see that the temporal spectrum is strongly peaked near the analytical Kelvin wave frequency (dashed vertical line). However, since the trajectory is not perfectly periodic in time (the signal is discontinuous when going from the final time to the initial time), other frequencies are also present in the spectrum (this is known as spectral leakage).
To reduce the effect of spectral leakage, the usual solution is to apply a window function to the original signal to make it periodic. There are many examples of window functions which are commonly used in signal processing.
Here we use the DSP.jl package which includes many definitions of window functions. Note that we first need to subtract the mean value from our input signal before multiplying it by the window function. Below we compare the previous temporal spectrum with the one obtained after applying the Hann window:
using DSP: DSP
wt_mean = mean(wt)
window = DSP.Windows.hanning(Nt)
wt_windowed = @. (wt - wt_mean) * window
w_hat = fft(wt_windowed)
@. w_hat = w_hat / Nt # normalise FFT
_, nω_windowed = wave_action_spectrum(ωs, w_hat)
scatterlines!(ax, ωs_normalised, nω_windowed; label = "Windowed signal")
Legend(fig[0, 1], ax; orientation = :horizontal, framevisible = false, colgap = 32, patchsize = (40, 10))
rowgap!(fig[:, 1].layout, 6) # reduce gap between plot and legend (default gap is 18)
fig
The new spectrum is still peaked near the expected frequency, while artificial modes far from this frequency are strongly damped compared to the original spectrum. Note however that windowing tends to smoothen the spectrum around the analytical Kelvin wave frequency.
This page was generated using Literate.jl.