[][src]Enum wavecar_rs::WavecarType

pub enum WavecarType {
    Standard,
    GammaHalf(GammaHalfDirection),
    SpinOrbitCoupling,
}

WAVECAR type enumeration.

Variants

Standard

Most typical WAVECAR type, vasp is executed via vasp_std, calculations is done with all the grids in k-space.

vasp is executed via vasp_gam, only half of the k-space is utilized. When transforming k-grid into real space grid, inversed complex to real FFT is applied.

SpinOrbitCoupling

vasp is executed via vasp_ncl, there should be LNONCOLLINEAR = T in OUTCAR. In this type WAVECAR, ISPIN = 1, but two spinor component is stored in ONE spin component side by side.

Trait Implementations

impl Clone for WavecarType[src]

impl Copy for WavecarType[src]

impl Debug for WavecarType[src]

impl Display for WavecarType[src]

impl PartialEq<WavecarType> for WavecarType[src]

impl PartialOrd<WavecarType> for WavecarType[src]

impl StructuralPartialEq for WavecarType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.