Skip to content

Commit

Permalink
DOC: Reduce verbosity of kink quad output in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-rocke committed Sep 10, 2024
1 parent e3f653e commit 8da8bdb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docs/applications/disloc_mobility.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@
"\n",
"Since the kink map is just a list of integers, it can be more convenient to exploit list addition, and specify kink maps in a form similar to `[0] * 5 + [1] * 5`, which would be identical to the input of `[0, 0, 0, 0, 0, 1, 1, 1, 1, 1]`.\n",
"\n",
"### Kinks in cylinders"
"### Kink in cylinders"
]
},
{
Expand Down Expand Up @@ -249,7 +249,8 @@
"source": [
"Si_quad_bulk, Si_quad_kink = Si_quad.build_kink_quadrupole(\n",
" glide_separation=8,\n",
" kink_map=[0]*5 + [1]*5\n",
" kink_map=[0]*5 + [1]*5,\n",
" verbose=False\n",
")\n",
"\n",
"Si_quad.view_quad(Si_quad_kink, mode=\"dxa\")"
Expand All @@ -270,7 +271,8 @@
"source": [
"Si_quad_bulk, Si_quad_kink = Si_quad.build_minimal_kink_quadrupole(\n",
" glide_separation=8,\n",
" n_kink=1\n",
" n_kink=1,\n",
" verbose=False\n",
")\n",
"\n",
"Si_quad.view_quad(Si_quad_kink, mode=\"dxa\")"
Expand Down

0 comments on commit 8da8bdb

Please sign in to comment.