xc_t Derived Type

type, public :: xc_t


Contents

Source Code


Components

TypeVisibility AttributesNameInitial
integer, public :: n_functs_libxc =0
character(len=200), public, allocatable:: libxc_name(:)
character(len=100), public, allocatable:: libxc_type(:)
integer, public, allocatable:: libxc_id(:)
real(kind=dp), public, allocatable:: libxc_weight(:)
type(ps_annotation_t), public :: annotation

Source Code

type, public :: xc_t
        integer                         :: n_functs_libxc = 0
        character(len=200), allocatable :: libxc_name(:)
        character(len=100), allocatable :: libxc_type(:)
        integer, allocatable            :: libxc_id(:)
        real(dp), allocatable           :: libxc_weight(:)
        type(ps_annotation_t)           :: annotation
end type xc_t