SyntheticFields

VortexPasta.SyntheticFieldsModule
SyntheticFields

Provides implementations of synthetic vector fields.

These can be used to represent a "normal" fluid velocity field which influences the motion of vortex lines.

source

Uniform vector fields

VortexPasta.SyntheticFields.UniformVectorFieldType
UniformVectorField{T, N} <: SyntheticVectorField{T, N}
UniformVectorField(u⃗)

Represents a uniform (constant) vector field with no spatial fluctuations.

This can be used for instance to represent a uniform counterflow.

The input u⃗ can be an SVector{N, T} or a tuple.

source

Fourier vector fields

VortexPasta.SyntheticFields.FourierBandVectorFieldType
FourierBandVectorField{T, N} <: FourierSyntheticVectorField{T, N}
FourierBandVectorField(undef, Ls::NTuple; kmin, kmax)

Implements a synthetic vector field in Fourier space.

This type is adapted for vector fields described by a relatively small number of non-zero Fourier modes. The non-zero modes are within a "band" given by $k_{\min} ≤ |\bm{k}| ≤ k_{\max}$.

One should initialise the Fourier coefficients of the vector field before performing any evaluations. For this one can call SyntheticFields.init_coefficients! after creating the vector field. After that, one can evaluate the field as described in SyntheticVectorField.

Moreover the state can be saved to an HDF5 file with SyntheticFields.save_coefficients and loaded back with SyntheticFields.load_coefficients!.

Positional arguments

  • undef: this is Julia's undef variable, used here to explicitly indicate that Fourier coefficients are not initialised by this function (but only allocated).

  • Ls: domain period in each direction. For example, Ls = (2π, 2π, 2π) for a $2π$-periodic cubic domain.

Keyword arguments

  • kmin: minimum forcing wavenumber (magnitude);

  • kmax: maximum forcing wavenumber (magnitude).

These should satisfy 0 ≤ kmin ≤ kmax. Moreover, one usually wants 0 < kmin to ensure that the generated field has zero mean value.

source
VortexPasta.SyntheticFields.init_coefficients!Function
SyntheticFields.init_coefficients!([rng::AbstractRNG,] f::FourierBandVectorField, u_rms::Real)

Initialise Fourier coefficients of vector field.

The "active" Fourier modes are chosen randomly following a normal distribution such that the resulting velocity components have an rms value given by u_rms (on average). The generated field is divergence-free (in 3D).

Positional arguments

  • rng (optional): random number generator for determining Fourier coefficients of the forcing velocity field. Default value is Random.default_rng().

  • f: field to be initialised (of type FourierBandVectorField).

  • u_rms: typical magnitude (rms value) of each vector component.

The total rms value of the vector field is N * u_rms where N is the number of dimensions. Note that the rms value of a single component may slightly differ from u_rms.

source
VortexPasta.SyntheticFields.from_fourier_grid!Function
SyntheticFields.from_fourier_grid!(
    [op::Function], field::FourierBandVectorField{T, N},
    ûs_grid::NTuple{N, AbstractArray}, ks_grid::NTuple{N, AbstractVector},
)

Copy values from vector field ûs_grid in Fourier space onto a FourierBandVectorField.

Only the wavenumbers within the band [kmin, kmax] in which field is defined are copied.

The ks_grid argument should contain the wavevectors associated to the grid where ûs_grid is defined.

By default, old values in field are discarded and are simply replaced by the values in ûs_grid. One can use the optional op argument to change this behaviour, which should be a function op(old, new, k⃗) taking 3 SVector{N}. For example, passing op(old, new, k⃗) = old - new * sum(abs2, k⃗) means that new values are first multiplied by $|\bm{k}|^2$ and then subtracted from previously existent ones. The result is then written onto field.

source
VortexPasta.SyntheticFields.remove_zeros!Function
SyntheticFields.remove_zeros!(field::FourierBandVectorField) -> Int

Remove entries associated to Fourier coefficients which are currently equal to zero.

Returns the number of removed coefficients. Coefficients and their associated wavevectors are removed.

This can help avoid useless computations when evaluating the Fourier sum in physical space.

source

Saving and loading data

Abstract types

VortexPasta.SyntheticFields.SyntheticVectorFieldType
SyntheticVectorField{T, N} <: Function

Abstract type representing a synthetic vector field in $N$ dimensions.

Here T <: AbstractFloat is the type of the returned values when evaluating the field at a position.

A field can be evaluated using the f(x⃗) syntax, where f is a SyntheticVectorField and x⃗ is a physical location, returning an SVector{N, T}. Here x⃗ can be an N-element tuple or SVector.

source