wannier_plot_type Derived Type

type, public :: wannier_plot_type

================================================== Contains information for how to plot the wannier functions. ==================================================


Inherited by

type~~wannier_plot_type~~InheritedByGraph type~wannier_plot_type wannier_plot_type type~lib_common_type lib_common_type type~lib_common_type->type~wannier_plot_type wann_plot

Components

Type Visibility Attributes Name Initial
integer, public, allocatable :: list(:)
integer, public :: supercell(3) = 2
real(kind=dp), public :: radius = 3.5_dp
real(kind=dp), public :: scale = 1.0_dp
character(len=20), public :: format = 'xcrysden'
character(len=20), public :: mode = 'crystal'
character(len=20), public :: spinor_mode = 'total'
logical, public :: spinor_phase = .true.

Source Code

  type wannier_plot_type
    !!==================================================
    !! Contains information for how to plot the wannier functions.
    !!==================================================
    integer, allocatable :: list(:)
    integer :: supercell(3) = 2
    real(kind=dp) :: radius = 3.5_dp
    real(kind=dp) :: scale = 1.0_dp
    character(len=20) :: format = 'xcrysden'
    character(len=20) :: mode = 'crystal'
    character(len=20) :: spinor_mode = 'total'
    logical :: spinor_phase = .true.
  end type wannier_plot_type