pw90_spin_hall_type Derived Type

type, public :: pw90_spin_hall_type

================================================== Contains variables controlling the calculation of spin hall conductivity in postw90 ==================================================


Components

Type Visibility Attributes Name Initial
logical, public :: freq_scan = .false.
integer, public :: alpha = 1
integer, public :: beta = 2
integer, public :: gamma = 3
logical, public :: bandshift = .false.
integer, public :: bandshift_firstband = 0
real(kind=dp), public :: bandshift_energyshift = 0._dp
character(len=120), public :: method = ' '

Source Code

  type pw90_spin_hall_type
    !!==================================================
    !! Contains variables controlling the calculation of spin hall conductivity in postw90
    !!==================================================
    logical :: freq_scan = .false.
    integer :: alpha = 1
    integer :: beta = 2
    integer :: gamma = 3
    logical :: bandshift = .false.
    integer :: bandshift_firstband = 0
    real(kind=dp) :: bandshift_energyshift = 0._dp
    character(len=120) :: method = ' '
  end type pw90_spin_hall_type