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: docs/source/user_guide/python.rst
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,3 +57,30 @@ will return
57
57
If running calculations with multiple MLIPs, ``arch`` and ``mlip_model`` will be overwritten with the most recent MLIP information.
58
58
Results labelled by the architecture (e.g. ``mace_mp_energy``) will be saved between MLIPs,
59
59
unless the same ``arch`` is chosen, in which case these values will also be overwritten.
60
+
61
+
62
+
Additional Calculators
63
+
======================
64
+
65
+
Although ``janus-core`` only directly supports the MLIP calculators listed in :doc:`Getting started </getting_started/getting_started>`,
66
+
any valid `ASE calculator <https://wiki.fysik.dtu.dk/ase/ase/calculators/calculators.html>`_
67
+
can be attached to a structure, including calculators for currently unsupported MLIPs.
68
+
69
+
This structure can then be passed to ``janus-core`` calculations, which can be run as usual.
70
+
71
+
For example, performing geometry optimisation using the (`ASE built-in <https://wiki.fysik.dtu.dk/ase/ase/calculators/others.html#lennard-jones>`_) Lennard Jones potential calculator:
72
+
73
+
.. code-block:: python
74
+
75
+
from janus_core.calculations.geom_opt import GeomOpt
0 commit comments