NUCIND: Difference between revisions

From VASP Wiki
No edit summary
No edit summary
Line 60: Line 60:
== Related tags and articles ==
== Related tags and articles ==
{{TAG|LCHIMAG}}, {{FILE|NICS}}, {{TAG|LNICSALL}}, {{TAG|LPOSNICS}}, {{TAG|POSNICS}}
{{TAG|LCHIMAG}}, {{FILE|NICS}}, {{TAG|LNICSALL}}, {{TAG|LPOSNICS}}, {{TAG|POSNICS}}
== References ==


<!-- [[Category:INCAR tag]][[Category:NMR]] -->
<!-- [[Category:INCAR tag]][[Category:NMR]] -->

Revision as of 16:40, 12 March 2025

NUCIND = .TRUE. | .FALSE.
Default: NUCIND = .FALSE. 

Description: Allows the nuclear-independent chemical shielding (NICS) to be calculated.


   Warning: Not yet released!

This page contains information about a feature that will be available in a future release of VASP. In other words, currently you cannot use it even with the latest version of VASP. The information may change significantly until it is released.

In conjunction with LCHIMAG = True, NUCIND calculates the chemical shielding tensor at positions off-nucleus, hence nuclear-independent chemical shielding (NICS). When NUCIND = True, by default these are calculated on the FFT grid NGX x NGY x NGZ in ppm. The output is written to NICS.

It is also written to vaspout.h5, if compiled with HDF5 support. You can find the data groups

/results/nics            Group
/results/nics/grid       Dataset {3}
/results/nics/structure  Group
/results/nics/structure/position Group
/results/nics/structure/position/direct_coordinates Dataset {SCALAR}
/results/nics/structure/position/ion_sha256 Dataset {2}
/results/nics/structure/position/ion_types Dataset {2}
/results/nics/structure/position/lattice_vectors Dataset {3, 3}
/results/nics/structure/position/number_ion_types Dataset {2}
/results/nics/structure/position/position_ions Dataset {8, 3}
/results/nics/structure/position/scale Dataset {SCALAR}
/results/nics/structure/position/system Dataset {SCALAR}
/results/nics/values     Dataset {9, 108, 108, 108}

and use py4vasp to access these, e.g., using

import py4vasp as pv
calc = pv.Calculation.from_path(".")
calc.nics.plot()

to select the isotropic chemical shielding in 3D space. It will produce an isosurface of the shielding (positive) and deshielding (negative) over the crystal structure.

Alternatively, produce a 2D contour plot of the NICS in a plane:

import py4vasp as pv
calc = pv.Calculation.from_path(".")
calc.nics.to_contour(a=0.5)

It will result in a contour plot showing the isotropic chemical shielding in the selected plane. The plane is selected as a fraction x of the lattice vector. Here, x=0.5 corresponds to half of the primary lattice vector . For the other lattice vectors use b=x or c=x.

For both the 2D and 3D plots, the isotropic chemical shielding is used by default. You can alternatively select the other properties (see LCHIMAG for details. Herzfeld-Berger convention is followed [1]) by inputting them as arguments into the functions, e.g., calc.nics.plot("anisotropic") or calc.nics.to_contour("span", a=0.5):

  • "isotropic" (default) - plot the isotropic chemical shielding
  • "anisotropic" - plot the anisotropic chemical shielding
  • "span" - plots the span
  • "skew" - plot the skew

Alternatively, if the POSNICS file is present, then the positions defined within that file will be used. These chemical shielding tensors are printed in the OUTCAR file as follows:

 nics 100
          1.187143         -0.003408         -0.000000
         -0.002977         -1.893648         -0.000000
         -0.000000         -0.000000         -0.326272

Related tags and articles

LCHIMAG, NICS, LNICSALL, LPOSNICS, POSNICS

References