Enum rusty_kernel_tools::core::KernelType[][src]

pub enum KernelType {
    Laplace,
    Helmholtz(Complex<f64>),
    ModifiedHelmholtz(f64),
}
Expand description

This enum defines the type of the kernel.

Variants

Laplace

The Laplace kernel defined as g(x, y) = 1 / (4 pi | x- y| )

Helmholtz(Complex<f64>)

The Helmholtz kernel defined as g(x, y) = exp( 1j * k * | x- y| ) / (4 pi | x- y| )

ModifiedHelmholtz(f64)

The modified Helmholtz kernel defined as g(x, y) = exp( -omega * | x- y| ) / (4 * pi * | x- y |)

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.