ElasticMaker#

class atomate2.vasp.flows.elastic.ElasticMaker(name='elastic', order=2, sym_reduce=True, symprec=0.1, bulk_relax_maker=<factory>, elastic_relax_maker=<factory>, generate_elastic_deformations_kwargs=<factory>, fit_elastic_tensor_kwargs=<factory>, task_document_kwargs=<factory>)[source]#

Bases: BaseElasticMaker

Maker to calculate elastic constants.

Calculate the elastic constant of a material. Initially, a tight structural relaxation is performed to obtain the structure in a state of approximately zero stress. Subsequently, perturbations are applied to the lattice vectors and the resulting stress tensor is calculated from DFT, while allowing for relaxation of the ionic degrees of freedom. Finally, constitutive relations from linear elasticity, relating stress and strain, are employed to fit the full 6x6 elastic tensor. From this, aggregate properties such as Voigt and Reuss bounds on the bulk and shear moduli are derived.

Note

It is heavily recommended to symmetrize the structure before passing it to this flow. Otherwise, the symmetry reduction routines will not be as effective at reducing the total number of deformations needed.

Parameters:
  • name (str) – Name of the flows produced by this maker.

  • order (int) – Order of the tensor expansion to be determined. Can be either 2 or 3.

  • sym_reduce (bool) – Whether to reduce the number of deformations using symmetry.

  • symprec (float) – Symmetry precision to use in the reduction of symmetry.

  • bulk_relax_maker (.BaseVaspMaker or None) – A maker to perform a tight relaxation on the bulk. Set to None to skip the bulk relaxation.

  • elastic_relax_maker (.BaseVaspMaker) – Maker used to generate elastic relaxations.

  • generate_elastic_deformations_kwargs (dict) – Keyword arguments passed to generate_elastic_deformations.

  • fit_elastic_tensor_kwargs (dict) – Keyword arguments passed to fit_elastic_tensor.

  • task_document_kwargs (dict) – Additional keyword args passed to ElasticDocument.from_stresses().

property prev_calc_dir_argname: str#

Name of argument informing static maker of previous calculation directory.

As this differs between different DFT codes (e.g., VASP, CP2K), it has been left as a property to be implemented by the inheriting class.

Note: this is only applicable if a relax_maker is specified; i.e., two calculations are performed for each ordering (relax -> static)