3D Fermi surface#
PyProcar’s 3D Fermi surface utility is able to generate Fermi surface plots projected over spin, atoms and orbitals or a combination of one or many of each. This utility is also capable of projecting external properties that are provided on a mesh grid in momentum space. This feature is useful when one wants to project properties that are not provided in PROCAR file such as Fermi velocity, electron-phonon coupling and electron effective mass. We divide this section into three sub sections, plain Fermi surface, projection of properties from PROCAR and projection of properties from external file.
Note
When plotting 3D Fermi surfaces, it is important to use a
Monkhorst-Pack k-grid while setting ISYM=-1
in the INCAR file
(turn off symmetry).
3D surfaces#
This section focuses on how the 3d image is created, if you are only interested in using this functionality, you can skip this part and move to the examples section. A surface is created by adding a collection of small polygons. By increasing the number of polygons, one can increase the smoothness of the surface. These polygons are defined by a collection of points on the surface also known as vertices and a recipe for their connections to create the polygons, which is defined by a list of points. This list is called faces. For example the following defines a cube:
vertices
1 1.000000 -1.000000 -1.000000
2 1.000000 -1.000000 1.000000
3 -1.000000 -1.000000 1.000000
4 -1.000000 -1.000000 -1.000000
5 1.000000 1.000000 -0.999999
6 0.999999 1.000000 1.000001
7 -1.000000 1.000000 1.000000
8 -1.000000 1.000000 -1.000000
faces
2 3 4
8 7 6
5 6 2
6 7 3
3 7 8
1 4 8
1 2 4
5 8 6
1 5 2
2 6 3
4 3 8
5 1 8
for example the first face defined by a triangle instructs to connect points 2,3 and 4. One can also assign colors to each face. pyprocar uses this feature to assign the projection colors to the surfaces. Another important aspect to this in definning the surface is the normals to the faces, however a tutorial about fermi surface is not a good place to get into details about surfaces.
To generate the fermi surface PyProcar uses different levels of
generality to surfaces. The level is the definition of a surface which
is handled by the class surface in pyprocar.core.Surface
which only requires faces and vertices. The next level is an
isosurface which is handeled by pyprocar.core.Isosurface, this class
represents the equation
@software{trimesh,
author = {{Dawson-Haggerty et al.}},
title = {trimesh},
url = {https://trimsh.org/},
version = {3.2.0},
date = {2019-12-8},
}
@article{sullivan2019pyvista,
doi = {10.21105/joss.01450},
url = {https://doi.org/10.21105/joss.01450},
year = {2019},
month = {may},
publisher = {The Open Journal},
volume = {4},
number = {37},
pages = {1450},
author = {C. Bane Sullivan and Alexander Kaszynski},
title = {{PyVista}: 3D plotting and mesh analysis through a streamlined interface for the Visualization Toolkit ({VTK})},
journal = {Journal of Open Source Software}
}
Keyboard shortcuts#
When plotting with the interactive rendering windows in VTK, several keyboard shortcuts are available:
Key |
Action |
|
---|---|---|
Linux/Windows |
Mac |
|
|
Close the rendering window |
|
|
Focus and zoom in on a point |
|
|
Isometric camera view |
|
|
Switch all datasets to a wireframe representation |
|
|
Reset the camera to view all datasets |
|
|
Switch all datasets to a surface representation |
|
|
|
Pan the rendering scene |
|
|
Rotate the rendering scene in 3D |
|
Rotate the rendering scene in 2D (view-plane) |
|
|
|
Continuously zoom the rendering scene |
|
Save a screenhsot (only on |
|
|
Enable interactive cell selection/picking |
|
|
Zoom in and out |
|
|
Increase/decrease the point size and line widths |