gridxc_xcmod Module

Stores the information about the XC functional to use, and provides routines to set and to get it.

Note: data is currently global. In future, it will be put into a derived type and initialized and passed around in a single handle.


Uses

    • gridxc_precision
    • gridxc_sys
    • gridxc_vdwxc

Contents


Subroutines

public subroutine setXC(n, func, auth, wx, wc)

Sets the xc functional(s) to be used by atomxc and/or cellxc. The allowed functional/author values can be seen here. Usage example:

Read more…

Arguments

Type IntentOptional AttributesName
integer, intent(in) :: n

Number of functionals to use

character(len=*), intent(in) :: func(n)

Functional family labels (LDA, GGA, etc)

character(len=*), intent(in) :: auth(n)

Functional author labels

real(kind=dp), intent(in) :: wx(n)

Functional weights for exchange (sum(wx) must be 1)

real(kind=dp), intent(in) :: wc(n)

Functional weights for correlation (sum(wc) must be 1)

public subroutine setXC_family_authors(family, auth)

Sets a single XC functional in family/author style. It can only be used for built-in functionals and 'XC' libXC functionals

Arguments

Type IntentOptional AttributesName
character(len=*), intent(in) :: family
character(len=*), intent(in) :: auth

public subroutine setXC_libxc_ids(nfuncs, libxc_ids)

Sets the XC info using libxc numerical codes. It can only be used if LibXC support is compiled in

Arguments

Type IntentOptional AttributesName
integer, intent(in) :: nfuncs

number of functionals

integer, intent(in) :: libxc_ids(nfuncs)

numerical libxc codes

public subroutine getXC(n, func, auth, wx, wc)

Returns the xc functional(s) information previously set and stored in the module variables.

Arguments

Type IntentOptional AttributesName
integer, intent(out), optional :: n

Number of functionals

character(len=*), intent(out), optional :: func(:)

Functional name labels

character(len=*), intent(out), optional :: auth(:)

Functional author labels

real(kind=dp), intent(out), optional :: wx(:)

Functl weights for exchange

real(kind=dp), intent(out), optional :: wc(:)

Functl weights for correlation