PLUGINS/OCCUPANCIES: Difference between revisions

From VASP Wiki
 
(7 intermediate revisions by the same user not shown)
Line 32: Line 32:
     additions.NELECT += 1
     additions.NELECT += 1
</syntaxhighlight>
</syntaxhighlight>
{{NB| mind | You may not make modifications to quantities in <code>constants</code>}}
{{NB| mind | You may not make modifications to quantities in <code>constants</code>}}


----
== Related tags and articles ==
<!--[[The_VASP_Manual|Contents]]-->
[[Plugins]],
 
{{TAG|PLUGINS/LOCAL_POTENTIAL}},
<!-- Link to categories like this: [[Category:INCAR]][[Category:Electronic Minimization]]  
{{TAG|PLUGINS/STRUCTURE}},
only comment it out when you want the page to show up on the category page, i.e., not when it is in the Construction namespace.-->
{{TAG|PLUGINS/FORCE_AND_STRESS}},
[[Category:INCAR tag]][[Category:Electronic occupancy]]

Latest revision as of 10:45, 18 December 2024

PLUGINS/OCCUPANCIES = .True. | .False.
Default: PLUGINS/OCCUPANCIES = .False. 

Description: PLUGINS/OCCUPANCIES calls the Python plugin for the occupancies interface for each ionic relaxation step


When PLUGINS/OCCUPANCIES=.TRUE., VASP calls the occupancies Python function at the end of each ionic relaxation step. The primary use-case of this tag to recompute the occupancies after performing modifications through other plugins such as PLUGINS/LOCAL_POTENTIAL. It also allows changing NELECT, EFERMI, NUPDOWN, ISMEAR, SIGMA, EMIN and EMAX at the end of each SCF step, to be reflected in the next step.

Expected inputs

The occupancies Python function expects the following inputs,

def occupancies(constants, additions):

where constants and additions and Python dataclasses. The constants dataclass consists of the following inputs, listed here with their associated datatypes

   NELECT: float
   EFERMI: float
   NUPDOWN: float
   ISMEAR: int
   SIGMA: float
   EMIN: float
   EMAX: float

The additions dataclass consists of the same quantities as the constants tag.

Mind: Calling this interface implicitly triggers a recalculation of the occupancies

Modifying quantities

Modify the quantities listed in additions by adding to them.

import numpy as np
def structure(constants, additions)
    additions.NELECT += 1
Mind: You may not make modifications to quantities in constants

Related tags and articles

Plugins, PLUGINS/LOCAL_POTENTIAL, PLUGINS/STRUCTURE, PLUGINS/FORCE_AND_STRESS,