Skip to content

Substitutional Point Defects in Graphene.

Introduction.

This tutorial demonstrates the process of creating materials with substitution defects, based on the work presented in the following manuscript, where nitrogen defects in graphene are studied.

Manuscript

Yoshitaka Fujimoto and Susumu Saito, "Formation, stabilities, and electronic properties of nitrogen defects in graphene", Physical Review B, 2011. DOI: 10.1103/PhysRevB.84.245446. 1

We use the Materials Designer to create a supercell of graphene, identify the crystal site positions for defects, and introduce nitrogen atoms and vacancies accordingly.

We will focus on creating graphene-nitrogen structures from FIG. 1. Specifically, the material from FIG. 1. b) of the paper:

Point Defect, Substitution, 0

1. Create Graphene Supercell.

First, we navigate to Materials Designer and import the graphene material from the Standata.

Standata Graphene Import

We then use the Advanced menu to create a supercell of graphene with a size of 4x4x1.

Supercell Creation for Graphene

2. Identify Defect Sites.

Next, we open the 3D editor to identify the crystal site positions for the defects.

3D Editor

Hover over the atoms to get the coordinates of the atoms to replace. Then copy/paste these coordinates into a text file for later use.

3. Create Nitrogen Defects and Vacancies.

For the defect creation, we will use the JupyterLite environment with the corresponding notebook.

3.1. Launch JupyterLite Session.

Select the "Advanced > JupyterLite Transformation" menu item to launch the JupyterLite environment.

JupyterLite Dialog

3.2. Open create_point_defect.ipynb notebook.

Find create_point_defect.ipynb in the list of notebooks and click/double-click open it.

3.3. Open and modify the notebook.

Next, edit create_point_defect.ipynb notebook to modify the parameters by adding a list of defect configuration objects containing the approximate coordinates of the atoms to replace.

Copy the below content and edit the "1.1. Set up defect parameters" cell in the notebook as follows:

DEFECT_TYPE = "substitution"
SITE_ID = None # `from_site_id` method will be ignored
COORDINATE = None # default method will be ignored
APPROXIMATE_COORDINATE = None   
CHEMICAL_ELEMENT = "N"
SUPERCELL_MATRIX = [[1, 0, 0], [0, 1, 0], [0, 0, 1]]
USE_CARTESIAN_COORDINATES = True

DEFECT_CONFIGS = [
    {
        "defect_type": "substitution",
        "approximate_coordinate": [4.9, 2.85, 10],
        "chemical_element": CHEMICAL_ELEMENT,
        "use_cartesian_coordinates": USE_CARTESIAN_COORDINATES
    },
      {
        "defect_type": "substitution",
        "approximate_coordinate": [3.7, 4.9, 10],
        "chemical_element": CHEMICAL_ELEMENT,
        "use_cartesian_coordinates": USE_CARTESIAN_COORDINATES
    },
      {
        "defect_type": "substitution",
        "approximate_coordinate": [2.45, 2.85, 10],
        "chemical_element": CHEMICAL_ELEMENT,
        "use_cartesian_coordinates": USE_CARTESIAN_COORDINATES
    },
      {
        "defect_type": "vacancy",
        "approximate_coordinate": [3.7, 3.55, 10],
        "use_cartesian_coordinates": USE_CARTESIAN_COORDINATES
    },
]  

Here's the visual of the updated content:

Notebook setup

4. Run the Notebook.

Run the notebook by clicking Run > Run All in the top menu to run cells and wait for the results to appear.

Run All

5. Analyze the Results.

After running the notebook, the user will be able to visualize the structure of Graphene with substitution defects.

Review the Results

6. Pass the Material to Materials Designer.

The user can pass the material with substitution defects in the current Materials Designer environment and save it.

Final Material

Or the user can save or download the material in Material JSON format or POSCAR format.

Interactive JupyterLite Notebook.

The following JupyterLite notebook demonstrates the process of creating materials with substitution defects in graphene. Select "Run" > "Run All Cells".

References.


  1. Yoshitaka Fujimoto and Susumu Saito. Formation, stabilities, and electronic properties of nitrogen defects in graphene. Phys. Rev. B, 84:245446, Dec 2011. URL: https://link.aps.org/doi/10.1103/PhysRevB.84.245446