setXC Subroutine

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:

 call setXC( 1, (/'GGA'/), (/'PBE'/), (/1._dp/), (/1._dp/) )

Stops with an error message if n is larger than the internal module parameter maxFunc

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)


Contents

None