import avogadro as avo
import openchemistry as oc
Once you have imported the basic Python modules we load a file
# Get the Avogadro classes necessary to open a file.
m = avo.core.Molecule()
f = avo.io.FileFormatManager()
# Read a file using Avogadro's wrapped file format API
f.read_file(m, 'h2o-restricted.fchk')
True
The oc.load
method can accept an avogadro Molecule directly
mol = oc.load(m)
Show the orbital, note that this is calculated using the Avogadro 2 libraries from the output in the CJSON file. You can use numeric orbital numbers, or homo/lumo.
mol.structure.show()
<jupyterlab_cjson.CJSON object>
mol.orbitals.show(mo='lumo', iso=0.05)
<jupyterlab_cjson.CJSON object>
mol.orbitals.show(mo='homo', iso=0.05)
<jupyterlab_cjson.CJSON object>