kpoint_dist_type Derived Type

type, public :: kpoint_dist_type


Components

Type Visibility Attributes Name Initial
integer, public :: max_int_kpts_on_node
integer, public :: num_int_kpts
integer, public, allocatable :: num_int_kpts_on_node(:)
real(kind=dp), public, allocatable :: int_kpts(:,:)
real(kind=dp), public, allocatable :: weight(:)

Source Code

  type kpoint_dist_type ! kpoints from file
    integer                       :: max_int_kpts_on_node
    integer                       :: num_int_kpts
    integer, allocatable          :: num_int_kpts_on_node(:)
    real(kind=dp), allocatable    :: int_kpts(:, :), weight(:)
  end type kpoint_dist_type