Skip to content

Commit 4f4b607

Browse files
authored
add more headlines to tutorials and fix a typo (#1126)
* try to fix the doc * try to fix the doc * add headlines to two tutorials * fix spelling * fix linting * remove one comment
1 parent 8d16d9f commit 4f4b607

File tree

4 files changed

+42
-27
lines changed

4 files changed

+42
-27
lines changed

tutorials/grueneisen_workflow.ipynb

+22-14
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,22 @@
44
"cell_type": "markdown",
55
"id": "0",
66
"metadata": {},
7+
"source": [
8+
"# Grueneisen Workflow (VASP)"
9+
]
10+
},
11+
{
12+
"cell_type": "markdown",
13+
"id": "1",
14+
"metadata": {},
715
"source": [
816
"This part is needed for the execution in the notebook.\n"
917
]
1018
},
1119
{
1220
"cell_type": "code",
1321
"execution_count": null,
14-
"id": "1",
22+
"id": "2",
1523
"metadata": {},
1624
"outputs": [],
1725
"source": [
@@ -32,7 +40,7 @@
3240
},
3341
{
3442
"cell_type": "markdown",
35-
"id": "2",
43+
"id": "3",
3644
"metadata": {},
3745
"source": [
3846
"Let's load all required Makers."
@@ -41,7 +49,7 @@
4149
{
4250
"cell_type": "code",
4351
"execution_count": null,
44-
"id": "3",
52+
"id": "4",
4553
"metadata": {},
4654
"outputs": [],
4755
"source": [
@@ -54,7 +62,7 @@
5462
{
5563
"cell_type": "code",
5664
"execution_count": null,
57-
"id": "4",
65+
"id": "5",
5866
"metadata": {},
5967
"outputs": [],
6068
"source": [
@@ -74,7 +82,7 @@
7482
{
7583
"cell_type": "code",
7684
"execution_count": null,
77-
"id": "5",
85+
"id": "6",
7886
"metadata": {},
7987
"outputs": [],
8088
"source": [
@@ -112,7 +120,7 @@
112120
{
113121
"cell_type": "code",
114122
"execution_count": null,
115-
"id": "6",
123+
"id": "7",
116124
"metadata": {},
117125
"outputs": [],
118126
"source": [
@@ -148,7 +156,7 @@
148156
},
149157
{
150158
"cell_type": "markdown",
151-
"id": "7",
159+
"id": "8",
152160
"metadata": {},
153161
"source": [
154162
"Then one can use the `GruneisenMaker` to generate a `Flow`."
@@ -157,7 +165,7 @@
157165
{
158166
"cell_type": "code",
159167
"execution_count": null,
160-
"id": "8",
168+
"id": "9",
161169
"metadata": {},
162170
"outputs": [],
163171
"source": [
@@ -182,7 +190,7 @@
182190
{
183191
"cell_type": "code",
184192
"execution_count": null,
185-
"id": "9",
193+
"id": "10",
186194
"metadata": {},
187195
"outputs": [],
188196
"source": [
@@ -191,7 +199,7 @@
191199
},
192200
{
193201
"cell_type": "markdown",
194-
"id": "10",
202+
"id": "11",
195203
"metadata": {},
196204
"source": [
197205
"We can then run the code with \"mock_vasp\"."
@@ -200,7 +208,7 @@
200208
{
201209
"cell_type": "code",
202210
"execution_count": null,
203-
"id": "11",
211+
"id": "12",
204212
"metadata": {
205213
"jupyter": {
206214
"is_executing": true
@@ -220,7 +228,7 @@
220228
},
221229
{
222230
"cell_type": "markdown",
223-
"id": "12",
231+
"id": "13",
224232
"metadata": {},
225233
"source": [
226234
"Let's then analyze outputs from the workflow."
@@ -229,7 +237,7 @@
229237
{
230238
"cell_type": "code",
231239
"execution_count": null,
232-
"id": "13",
240+
"id": "14",
233241
"metadata": {},
234242
"outputs": [],
235243
"source": [
@@ -249,7 +257,7 @@
249257
{
250258
"cell_type": "code",
251259
"execution_count": null,
252-
"id": "14",
260+
"id": "15",
253261
"metadata": {},
254262
"outputs": [],
255263
"source": [

tutorials/lobster_workflow.ipynb

+18-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,25 @@
11
{
22
"cells": [
33
{
4-
"cell_type": "raw",
4+
"cell_type": "markdown",
55
"id": "0",
66
"metadata": {},
7+
"source": [
8+
"# LOBSTER Workflow Tutorial (Using VASP for DFT)"
9+
]
10+
},
11+
{
12+
"cell_type": "markdown",
13+
"id": "1",
14+
"metadata": {},
715
"source": [
816
"The first lines are needed to ensure that we can mock VASP and LOBSTER runs. The test files here might not belong to the same calculation but are good enough for testing."
917
]
1018
},
1119
{
1220
"cell_type": "code",
1321
"execution_count": null,
14-
"id": "1",
22+
"id": "2",
1523
"metadata": {},
1624
"outputs": [],
1725
"source": [
@@ -31,7 +39,7 @@
3139
},
3240
{
3341
"cell_type": "markdown",
34-
"id": "2",
42+
"id": "3",
3543
"metadata": {},
3644
"source": [
3745
"We first load a structure that we want to analyze with bonding analysis."
@@ -40,7 +48,7 @@
4048
{
4149
"cell_type": "code",
4250
"execution_count": null,
43-
"id": "3",
51+
"id": "4",
4452
"metadata": {},
4553
"outputs": [],
4654
"source": [
@@ -57,7 +65,7 @@
5765
},
5866
{
5967
"cell_type": "markdown",
60-
"id": "4",
68+
"id": "5",
6169
"metadata": {},
6270
"source": [
6371
"Then, we initialize a workflow:"
@@ -66,7 +74,7 @@
6674
{
6775
"cell_type": "code",
6876
"execution_count": null,
69-
"id": "5",
77+
"id": "6",
7078
"metadata": {},
7179
"outputs": [],
7280
"source": [
@@ -91,7 +99,7 @@
9199
},
92100
{
93101
"cell_type": "markdown",
94-
"id": "6",
102+
"id": "7",
95103
"metadata": {},
96104
"source": [
97105
"We then run this workflow locally to show-case the capabilities. In real-life, you would omit the `mock*` parts."
@@ -100,7 +108,7 @@
100108
{
101109
"cell_type": "code",
102110
"execution_count": null,
103-
"id": "7",
111+
"id": "8",
104112
"metadata": {},
105113
"outputs": [],
106114
"source": [
@@ -116,7 +124,7 @@
116124
},
117125
{
118126
"cell_type": "markdown",
119-
"id": "8",
127+
"id": "9",
120128
"metadata": {},
121129
"source": [
122130
"We can also analyze the data from the database"
@@ -125,7 +133,7 @@
125133
{
126134
"cell_type": "code",
127135
"execution_count": null,
128-
"id": "9",
136+
"id": "10",
129137
"metadata": {},
130138
"outputs": [],
131139
"source": [

tutorials/qha_workflow.ipynb

+1-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
]
7575
},
7676
{
77-
"cell_type": "markdown",
77+
"cell_type": "raw",
7878
"id": "3",
7979
"metadata": {},
8080
"source": [
@@ -166,7 +166,6 @@
166166
" \"GGA\": \"PE\",\n",
167167
" \"ISPIN\": 1,\n",
168168
" \"KSPACING\": 0.1,\n",
169-
" # \"EDIFFG\": 1e-5,\n",
170169
" \"ALGO\": \"Normal\",\n",
171170
" \"LAECHG\": False,\n",
172171
" \"ISMEAR\": 0,\n",

tutorials/tutorials.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Tutorials
44

55
The section includes tutorials for workflows in atomate2.
6-
They can also be found in the form of jupyternotebooks in:
6+
They can also be found in the form of jupyter notebooks in:
77
[https://github.com/materialsproject/atomate2/tree/main/tutorials](https://github.com/materialsproject/atomate2/tree/main/tutorials)
88

99
```{toctree}

0 commit comments

Comments
 (0)