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: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,6 +92,10 @@ If you use any of the following Featurizers, also cite the respective papers:
92
92
*`FeaturizeCharges`: R. Nelson, C. Ertural, P. C. Müller, R. Dronskowski, in Comprehensive Inorganic Chemistry III, *Elsevier*, **2023**, pp. 141–201. [https://doi.org/10.1016/B978-0-12-823144-9.00120-5](https://doi.org/10.1016/B978-0-12-823144-9.00120-5)
93
93
*`FeaturizeIcoxxlist`: V. L. Deringer, W. Zhang, M. Lumeij, S. Maintz, M. Wuttig, R. Mazzarello, R. Dronskowski, *Angewandte Chemie International Edition 2014*, *53*, 10817–10820. [https://doi.org/10.1002/anie.201404223](https://doi.org/10.1002/anie.201404223)
94
94
95
+
Cite the following paper as well if using aysmmetry index:
96
+
97
+
* F. Belli, E. Zurek, I. Errea, 2025 [https://arxiv.org/abs/2501.14420](https://arxiv.org/abs/2501.14420).
98
+
95
99
Please cite [pymatgen](https://github.com/materialsproject/pymatgen), [Lobster](https://schmeling.ac.rwth-aachen.de/cohp/index.php?menuID=1), and [ChemEnv](https://doi.org/10.1107/S2052520620007994) correctly as well.
Copy file name to clipboardExpand all lines: docs/fundamentals/index.ipynb
+14-4Lines changed: 14 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -281,8 +281,9 @@
281
281
]
282
282
},
283
283
{
284
-
"metadata": {},
285
284
"cell_type": "markdown",
285
+
"id": "a2f623edafa5efc9",
286
+
"metadata": {},
286
287
"source": [
287
288
"### ICOXX based features (ICOXX: ICOHP / ICOBI / ICOOP)\n",
288
289
"\n",
@@ -292,9 +293,18 @@
292
293
"\n",
293
294
"In the formula above, $\\delta$ is the Dirac delta function, $r$ is the distance between atoms A and B, and $B_{\\mathrm{AB}}$ is the bond strength between atoms A and B. The bond strength can be ICOHPs, ICOBIs, or ICOOPs. The BWDF is thus a histogram of bond strengths as a function of bond length. One can compute this for entire structure, for each unique atom pair in the structure, per site or per bond label.\n",
294
295
"\n",
295
-
"Here, from the BWDF mainly statistical features like mean, standard deviation, skewness, kurtosis, weighted mean, and weighted standard deviation are computed.\n"
296
-
],
297
-
"id": "a2f623edafa5efc9"
296
+
"Here, from the BWDF mainly statistical features like mean, standard deviation, skewness, kurtosis, weighted mean, and weighted standard deviation are computed.\n",
297
+
"\n",
298
+
"As proposed by [F. Belli, E. Zurek, I. Errea, 2025](https://arxiv.org/abs/2501.14420), one can also generate the asymmetry index (ASI) of the local bonding environment using ICOBI / ICOHP / ICOOP for a site using following formulation\n",
"$V_x$, is computed for each atom $x$ in the structure. The vector is the sum of the iCOXX values for all of the interactions between an atom and its neighboring atoms $\\alpha$ (iCOXX(x, $\\alpha$)) weighted by a unit vector, $i_{xα}$, which denotes the direction of each interaction. This summation is performed over all neighbors for which the iCOXX values fall above a user-defined threshold, and divided by the number of interactions considered, $B_x$.\n",
305
+
"\n",
306
+
"One can then get statistics of ASI from all sites in the structure."
Copy file name to clipboardExpand all lines: docs/tutorial/commandlineinterface.rst
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -228,6 +228,10 @@ command. Below is an example and sample output using this command.
228
228
:file: tutorial_assets/CdF2.html
229
229
230
230
231
+
- ``lobsterpy plot-auto-ia --save-plot-json auto_plot_data.json`` can be used to save underlying plot data from the automatic analysis as a json file. This json file can be then loaded using monty package via ``monty.serialization.loadfn`` function.
232
+
233
+
Note that ``--save-plot-json`` also works in combination with ``lobsterpy plot-auto`` subcommand.
234
+
231
235
2. Plotting of COHPs/COBIs/COOPs
232
236
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
233
237
@@ -274,7 +278,7 @@ You can plot COHPs/COBIs/COOPs from the command line.
0 commit comments