LATTICE CONSTRAINTS: Difference between revisions

From VASP Wiki
No edit summary
No edit summary
Line 3: Line 3:
Description: Sets three boolean to selectively allow changes in the lattice vectors.
Description: Sets three boolean to selectively allow changes in the lattice vectors.
----
----
The lattice in {{VASP}} is defined by 3 lattice vectors <math>\mathbf{a}_{1}</math>, <math>\mathbf{a}_{2}</math>, <math>\mathbf{a}_{3}</math>, which
The lattice vectors <math>\mathbf{a}_{1}</math>, <math>\mathbf{a}_{2}</math>, <math>\mathbf{a}_{3}</math>
are defined in the {{FILE|POSCAR}} file. The lattice can be represented by the following matrix:
defined in the {{FILE|POSCAR}} file can be represented by following matrix:


<math>
<math>
Line 15: Line 15:
</math>
</math>


The tag {{TAG|LATTICE_CONSTRAINTS}} can be used to constrain certain entries of this matrix.
{{TAG|LATTICE_CONSTRAINTS}} is used to constrain certain entries of this matrix during an MD run.
==Orthorhombic case==
==Orthorhombic case==
For orthorhombic boxes the lattice <math>\mathbf{A}</math> will be a diagonal matrix of the form:
For orthorhombic unit cells <math>\mathbf{A}</math> is of diagonal form:


<math>
<math>
Line 32: Line 32:
  {{TAGBL|LATTICE_CONSTRAINTS}} = .FALSE. .FALSE. .TRUE.
  {{TAGBL|LATTICE_CONSTRAINTS}} = .FALSE. .FALSE. .TRUE.


This way, the first two lattice constants are not allowed to change. The third lattice constant needs to be free to allow volume changes for the barostat. The system is then like a piston. The constraints are necessary for liquids in [[NpT ensemble|NpT]] simulations because if all lattice degrees of freedom are allowed to relax, irreversible deformations of the cell are very likely to happen. This can lead to undesirable results like a very flat supercell, which cannot be used to obtain valid MD trajectories.
Here, the first two lattice constants are not allowed to change. The third lattice constant needs to be free to allow volume changes for the barostat. The system is then like a piston. The constraints are necessary for liquids in [[NpT ensemble|NpT]] simulations because if all lattice degrees of freedom are allowed to relax, irreversible deformations of the cell are very likely to happen. This can lead to undesirable results like a very flat supercell, which cannot be used to obtain valid MD trajectories.


For [[Ionic minimization|structure relaxation]] ({{TAG|IBRION}}=1,2), {{TAG|LATTICE_CONSTRAINTS}} is useful to relax the lattice constants of 2D materials. In case of a slab in the <math>\mathbf{a}_1</math>-<math>\mathbf{a}_2</math> plane, add vacuum padding along <math>\mathbf{a}_3</math> and set
For [[Ionic minimization|structure relaxation]] ({{TAG|IBRION}}=1,2), {{TAG|LATTICE_CONSTRAINTS}} is useful to relax the lattice constants of 2D materials. In case of a slab in the <math>\mathbf{a}_1</math>-<math>\mathbf{a}_2</math> plane, add vacuum padding along <math>\mathbf{a}_3</math> and set

Revision as of 20:18, 4 December 2024

LATTICE_CONSTRAINTS = [logical][logical][logical] 

Description: Sets three boolean to selectively allow changes in the lattice vectors.


The lattice vectors , , defined in the POSCAR file can be represented by following matrix:

LATTICE_CONSTRAINTS is used to constrain certain entries of this matrix during an MD run.

Orthorhombic case

For orthorhombic unit cells is of diagonal form:

Therefore by setting one of the entries of LATTICE_CONSTRAINTS to FALSE the lattice parameter in this direction will not be allowed to change. For MD simulations (IBRION=0), we recommend using LATTICE_CONSTRAINTS for (orthorhombic) liquids in the isobaric-isothermal (NpT) ensemble in the following way:

LATTICE_CONSTRAINTS = .FALSE. .FALSE. .TRUE.

Here, the first two lattice constants are not allowed to change. The third lattice constant needs to be free to allow volume changes for the barostat. The system is then like a piston. The constraints are necessary for liquids in NpT simulations because if all lattice degrees of freedom are allowed to relax, irreversible deformations of the cell are very likely to happen. This can lead to undesirable results like a very flat supercell, which cannot be used to obtain valid MD trajectories.

For structure relaxation (IBRION=1,2), LATTICE_CONSTRAINTS is useful to relax the lattice constants of 2D materials. In case of a slab in the - plane, add vacuum padding along and set

LATTICE_CONSTRAINTS = .TRUE. .TRUE. .FALSE.

Non-orthorhombic case

For non-orthorhombic boxes LATTICE_CONSTRAINTS is more complicated to use. The tag will set certain rows and columns of the stress tensor

to zero. By setting certain entries of the stress tensor to zero the corresponding entries of the lattice will not be updated. For example when setting LATTICE_CONSTRAINTS = .FALSE. .TRUE. .TRUE. the used stress tensor will look like

and therefore the first row and the first column of the lattice will not change. Another example would be to set LATTICE_CONSTRAINTS = .FALSE. .TRUE. .FALSE. resulting in the following stress tensor

So only the / entry of the lattice will change.

Mind: Note that for non-orthorhombic boxes the angles between the lattice vectors , , will not be conserved.
Mind: LATTICE_CONSTRAINTS in combination with IBRION=1,2 is available from VASP 6.4.3.

Related tags and articles

IBRION, MDALGO, Interface pinning

Examples that use this tag