You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lang/en/docs/tutorials/materials/specific/passivation-surface-silicon-surface.md
+36-19Lines changed: 36 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,11 +3,11 @@
3
3
render_macros: true
4
4
---
5
5
6
-
# Passivation of Silicon (001) Surface
6
+
# Passivation of Silicon (100) Surface
7
7
8
8
## Introduction
9
9
10
-
This tutorial demonstrates how to passivate a reconstructed silicon (001) surface with hydrogen atoms, following the methodology described in the literature.
10
+
This tutorial demonstrates how to passivate a reconstructed silicon (100) surface with hydrogen atoms, following the methodology described in the literature.
11
11
12
12
!!!note "Manuscript"
13
13
Hansen, U., & Vogl, P.
@@ -23,17 +23,30 @@ We will recreate the passivated surface structure shown in Fig. 8:
23
23
24
24
### 1.1. Load Base Material
25
25
26
-
Navigate to [Materials Designer](../../../materials-designer/overview.md) and import the reconstructed Si(100) surface from [Standata](../../../materials-designer/header-menu/input-output/standata-import.md) using the search term "Silicon.*100.*reconstructed".
26
+
Navigate to [Materials Designer](../../../materials-designer/overview.md) and import the reconstructed Si(100) surface from [Standata](../../../materials-designer/header-menu/input-output/standata-import.md).
27
27
28
-
 from Standata")
Select the "Advanced > [JupyterLite Transformation](../../../materials-designer/header-menu/advanced/jupyterlite-dialog.md)" menu item to launch the JupyterLite environment.
33
33
34
34
### 1.3. Open Modified `create_supercell.ipynb` Notebook
35
35
36
-
Open `create_supercell.ipynb` and replace the "Get input materials" cell with the following code to adjust the Si atom position:
36
+
Open `create_supercell.ipynb`, select input material as the Si(100) structure, and set the supercell parameters in 1.1.:
37
+
38
+
```python
39
+
SUPERCELL_MATRIX= [
40
+
[1, 0, 0],
41
+
[0, 1, 0],
42
+
[0, 0, 1]
43
+
]
44
+
45
+
# or use the scaling factor
46
+
SCALING_FACTOR=None# [3, 3, 1]
47
+
```
48
+
49
+
Also add to the "Get input materials" cell the following code to adjust the Si atom position:
0 commit comments