sitesym_type Derived Type

type, public :: sitesym_type


Inherited by

type~~sitesym_type~~InheritedByGraph type~sitesym_type sitesym_type type~lib_common_type lib_common_type type~lib_common_type->type~sitesym_type sitesym

Components

Type Visibility Attributes Name Initial
integer, public :: nkptirr = 9999
integer, public :: nsymmetry = 9999
integer, public, allocatable :: kptsym(:,:)
integer, public, allocatable :: ir2ik(:)
integer, public, allocatable :: ik2ir(:)
real(kind=dp), public :: symmetrize_eps = 1.d-3
complex(kind=dp), public, allocatable :: d_matrix_band(:,:,:,:)
complex(kind=dp), public, allocatable :: d_matrix_wann(:,:,:,:)

Source Code

  type sitesym_type
    ! Variables and parameters needed by other modules
    integer :: nkptirr = 9999
    integer :: nsymmetry = 9999
    integer, allocatable :: kptsym(:, :), ir2ik(:), ik2ir(:)
    real(kind=dp) :: symmetrize_eps = 1.d-3
    complex(kind=dp), allocatable :: d_matrix_band(:, :, :, :)
    complex(kind=dp), allocatable :: d_matrix_wann(:, :, :, :)
  end type sitesym_type