description |
---|
How elastic constants are calculated on the Materials Project (MP) website. |
Elasticity describes a material's ability to resist deformations (i.e. size and shape) when subjected to external forces. This can be thought about in two, complementary ways:
- how much force is required to deform (stretch or compress) a material by a certain amount;
- how much a material will deform (stretch or compress) when a certain amount of external forces is applied to that material.
Elasticity is considered a reversible process. When the force is removed, the material returns to its original size and shape. This is only true up to a point: if a material is deformed too much, then it will be permanently changed.
For small deformations, most elastic materials exhibit linear elasticity and can be described by a linear relation between the stress and strain. These relationships are quantified with elastic constants like the elasticity tensor and its inverse quantity, the compliance tensor, as part of the theory of linear elasticity. These tensors can be used to calculate numbers such as the bulk modulus, shear modulus, Young's modulus, and Poisson's ratio, which are especially useful to describe the elastic behavior of isotropic materials.
It is beyond the scope of this documentation to explain this theory, but if this concept is new to you, a good place to start is to learn about Hooke's Law. Readers with mathematical backgrounds are referred to "Physical properties of crystals: their representation by tensors and matrices" by J.F. Nye.
The Materials Project predicts elastic constants for over ten thousand materials. These are available via the Materials Project website and for direct download via the Materials Project API.
The elastic constants from the Materials Project (MP) are calculated from first-principles Density Functional Theory (DFT). For a material, the process is started by performing an accurate structural relaxation, to a state of approximately zero stress. Subsequently, the relaxed structure is strained by changing its lattice vectors (magnitude and angle) 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 elastic tensor. From this, aggregate properties such as Voigt, Reuss, and Hill bounds on the bulk and shear moduli are derived. Multiple consistency checks are performed on all the calculated data to ensure its reliability and accuracy. For example, the
Formally, the elastic tensor,
where
$$ \left[ \begin{matrix} \sigma_{1} \ \sigma_{2} \ \sigma_{3} \ \sigma_{4} \ \sigma_{5} \ \sigma_{6} \end{matrix} \right]
\left[ \begin{matrix} C_{11} & C_{12} & C_{13} & C_{14} & C_{15} & C_{16} \ C_{12} & C_{22} & C_{23} & C_{24} & C_{25} & C_{26} \ C_{13} & C_{23} & C_{33} & C_{34} & C_{35} & C_{36} \ C_{14} & C_{24} & C_{34} & C_{44} & C_{45} & C_{46} \ C_{15} & C_{25} & C_{35} & C_{45} & C_{55} & C_{56} \ C_{16} & C_{26} & C_{36} & C_{46} & C_{56} & C_{66} \ \end{matrix} \right] \left[ \begin{matrix} \epsilon_{1} \ \epsilon_{2} \ \epsilon_{3} \ 2 \epsilon_{5} \ 2 \epsilon_{5} \ 2 \epsilon_{6} \end{matrix} \right] $$
The elastic tensor in Voigt notation is a
With the lattice vectors$${\boldsymbol{a}_1, \boldsymbol{a}_2, \boldsymbol{a}_3}$$ of the relaxed structure, a material is first deformed according to SpacegroupAnalyzer
, are employed for all elastic constant calculations. In our experience, these cells typically yield more accurate and better converged elastic constants than primitive cells, at the cost of more computational time. We suspect this has to do with the fact that unit cells often exhibit higher symmetries and simpler Brillouin zones than primitive cells (an example is face centered cubic cells).
Different choices of lattice vectors with respect to a Cartesian coordinate system may lead to elastic tensors that look different from what might be expected. For example, for the hexagonal crystal system it is commonly stated that get_ieee_rotation
method pymatgen.core.tensors.Tensor
(including the elastic tensor).
From the elastic tensor defined above, a number of aggregate and derived properties is calculated. These properties are all available on the Materials Project webpage and are shown in the below Table. We report Voigt, Reuss and Voigt-Reuss-Hill [2] bounds on the bulk and shear moduli for polycrystalline materials. Finally, the elastic anisotropy index [3] and isotropic Poisson ratio are reported.
Property | Unit | Description | Equation |
---|---|---|---|
Elastic tensor, |
GPa | Tensor, describing elastic behavior, corresponding to IEEE orientation, symmetrized to crystal structure | see main text |
Elastic tensor (original), |
GPa | Tensor, describing elastic behavior, unsymmetrized, corresponding to POSCAR (conventional standard cell) orientation | see main text |
Compliance tensor, |
GPa$$^{-1}$$ | Tensor, describing elastic behavior | |
Bulk modulus Voigt average, |
GPa | Upper bound on |
|
Bulk modulus Reuss average, |
GPa | Lower bound on |
|
Shear modulus Voigt average, |
GPa | Upper bound on |
|
Shear modulus Reuss average, |
GPa | Lower bound on |
|
Bulk modulus VRH average, |
GPa | Average of |
|
Shear modulus VRH average, |
GPa | Average of |
|
Universal elastic anisotropy, |
- | Description of elastic anisotropy | |
Isotropic Poisson ratio, |
- | Number, describing lateral response to loading | $$\mu = \left(3K_{VRH} - 2G_{VRH}\right)$ / |
To obtain accurate elastic constants from DFT, a well-converged stress tensor is required. This typically means that more precise DFT-parameters have to be employed, compared to for example a simple total energy-calculation. Careful convergence testing and comparison to experimental results has led to a set of DFT-parameters that yield elastic constants, converged to within approximately 5% for over 95% of the systems. In choosing DFT-parameters for the calculations, we distinguish between metals and metallic compounds (metallics) on one hand and semiconductors and insulators (non-metallics) on the other hand. The most relevant DFT-parameters used in our HT-calculations are shown in Table 2. K-point density is expressed in per-reciprocal-atom (pra). The first-principles results presented in this work are performed using the projector augmented wave (PAW) method [3,4] as implemented in the Vienna Ab Initio Simulation Package (VASP) [5,6,7] . In all calculations, we employ the Perdew, Becke and Ernzerhof (PBE) [8] Generalized Gradient Approximation (GGA) for the exchange-correlation functional. As described in the literature, several filters are used to detect cases where the elastic tensor might not have been converged properly. For those cases, the calculation is repeated but now with more stringent DFT-convergence parameters. Hence, the numerical values in Table 2 are representative for our calculations, but in some cases more strict parameters have been used. The calculation details for each compound can be found on the Materials Project webpage.
Metallics | Non-metallics | |
---|---|---|
Plane wave energy cut-off (eV) | 700 | 700 |
Density of k-points (pra) | 7,000 | 1,000 |
Pseudo potential | GGA-PBE | GGA-PBE |
Tensor symmetrization and IEEE conversion procedures are implemented in pymatgen. Symmetrization occurs by finding all of the symmetry operations that correspond to a particular crystal symmetry, and taking the average over all transformed tensors with respect to these operations. If there are
If you use any elastic constants predicted by the Materials Project in your work, the corresponding methods paper(s) should be cited. See the How to Cite page for more.
Thanks to Maarten de Jong for the initial version of this page.
- IEEE standard on piezoelectricity. ANSI/IEEE Std 176-1987 0-1 (1988).
- Hill, R. The elastic behaviour of a crystalline aggregate. Proceedings of the Physical Society. Section A 65, 349 (1952).
- Ranganathan, S. I. & Ostoja-Starzewski, M. Universal elastic anisotropy index. Physical Review Letters 101, 055504 (2008).
- Bl�ochl, P. E. Projector augmented-wave method. Phys. Rev. B 50, 17953{17979 (1994).
- Kresse, G. & Joubert, D. From ultrasoft pseudopotentials to the projector augmented-wave method. Phys. Rev. B59, 1758{1775 (1999).
- Kresse, G. & Hafner, J. Ab initio molecular dynamics for liquid metals. Phys. Rev. B 47, 558{561 (1993).
- Kresse, G. & Furthm�uller, J. Efficffient iterative schemes for ab initio total-energy calculations using a plane-wave basis set. Phys. Rev. B 54, 11169{11186 (1996).
- Perdew, J. P., Burke, K. & Ernzerhof, M. Generalized gradient approximation made simple. Physical Review Letters 77, 3865 (1996).