Master's thesis project - Condensed matter physics problems and deep learning solutions
The main idea lies in leveraging deep learning techniques to recognize the shift angles between layers of Van der Waals heterostructures. In our specific case, the material in question is Nanoporous Graphene (NPG). Scanning Tunneling Microscopy (STM) is employed for imaging the graphene layers, thus, enabling the detection of twisted bilayer and multilayer domains. On the simulation side, an analytic model is adopted to shed light on the number of misoriented layers, and their weak interaction: for each layer we can write an accurate analytical form that can describe the in-plane density.
The first step directly concerns the physics of the problem: the analytical model suggests that the in-plane electronic density of a graphene layer is given by
while the full three-dimensional electronic density is modeled as
The first notebook, npg_stm_images.ipynb
, is used to simulate STM-like images for a tuple of randomly generated twist angles, which depend on the number of layer: one acquired in Constant Current Mode (CCM-direct lattice), its corresponding image in reciprocal space (CCM-reciprocal), and one acquired in Constant Height Mode (CHM-direct).
Now that we have all the functions needed to generate a set of images for a single tuple of angles, we need to create a sufficient number of such tuples to build a dataset suitable for training a neural network.
The generate_dataset.py
script is designed to be adaptive, with all key variables defined via argument parsing to accommodate different generation environments. In my case, I had access to a CPU-based SLURM cluster, which allowed me to parallelize the generation process according to the number of jobs I could submit.
In parallel with the image generation, a metadata file is created to associate each image set with its corresponding angle tuple and identifier. Everything is then packaged into a single .HDF5
file.
- How/where to download your program
- Any modifications needed to be made to files/folders
Contributors names and contact info
MSc Giuseppina Pia Varano @GiusyVarano
- 0.2
- See commit change or See release history
- 0.1
- Initial Release
This project is licensed under the [NAME HERE] License - see the LICENSE.md file for details
Inspiration, code snippets, etc.