Quadratures

Quadrature rules

Fixed-size quadratures

These quadrature rules are meant to have a small size (typically less than 10). They have virtually zero creation cost, i.e. doing quad = GaussLegendre(4) is basically free.

VortexPasta.Quadratures.NoQuadratureType
NoQuadrature() <: StaticSizeQuadrature{1}

Inexpensive 1-point quadrature rule.

When integrating, evaluates approximated values at the segment midpoint. However, unlike a 1-point Gauss–Legendre quadrature, midpoint values are interpolated using a basic linear interpolation. In other words, segments are assumed to be straight.

source

Variable-size quadratures

These quadrature rules should be constructed just once, as they allocate vectors. These are usually adaptive quadratures.

VortexPasta.Quadratures.AdaptiveTanhSinhType
AdaptiveTanhSinh([T = Float64]; nlevels = 10, rtol = sqrt(eps(T))) <: PreallocatedQuadrature{T}

Adaptive tanh-sinh quadrature.

Behaves well when there are singularities at (or near) the endpoints.

It can be easily made adaptive because it can be written as a simple trapezoidal rule after a change of variables.

Optional arguments

  • T = Float64: quadrature precision;

  • nlevels = 10: maximum number of adaptivity levels. Must be ≥ 2;

  • rtol = sqrt(eps(T)): relative tolerance.

Computations are stopped either when the maximum adaptivity level is reached, or when the difference between two levels falls below the relative tolerance rtol.

Note that the maximum number of function evaluations is 2^nlevels, so it can make sense to use a small number of levels (or a large tolerance) when function evaluations are expensive.

source

Estimating integrals

VortexPasta.Quadratures.integrateFunction
Quadratures.integrate(f::Function, quad::AbstractQuadrature, lims::NTuple{2,T})
Quadratures.integrate(f::Function, quad::AbstractQuadrature, ::Type{T})

Integrate f(x) using the chosen quadrature.

There are two variants:

  • The first one requires passing the limits (a, b), which should be floats of the desired accuracy;

  • the second one assumes the default limits (0, 1), but requires setting the float type T. It may avoid some operations when the limits are (0, 1).

In both cases T must be a subtype of AbstractFloat (e.g. Float64).

Note that T is simply ignored for adaptive quadratures such as AdaptiveTanhSinh, which preallocate the quadrature coefficients with a possibly different element type T′ (which can be chosen when creating the quadrature).

source

Computing quadrature rules

VortexPasta.Quadratures.quadratureFunction
quadrature([T = Float64], q::StaticSizeQuadrature{N}) -> (xs, ws)

Return $N$-point quadrature rule valid in $[0, 1]$ interval.

Quadrature nodes xs and weights ws are returned as tuples.

This only works for fixed-size (non-adaptive) quadrature rules such as GaussLegendre.

source

Other functions

Base.lengthFunction
Base.length(q::StaticSizeQuadrature{N}) -> N

Return the number of points associated to the quadrature.

source
Base.length(s::SegmentIterator{<:AbstractFilament}) -> Int

Return the number of segments in a filament.

source