1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
import pytest
from monty.serialization import loadfn
from emmet.core.qchem.task import TaskDocument
from emmet.core.molecules.orbitals import OrbitalDoc
@pytest.fixture(scope="session")
def closed_shell(test_dir):
task = TaskDocument(**loadfn((test_dir / "closed_shell_nbo_task.json.gz")))
return task
@pytest.fixture(scope="session")
def open_shell(test_dir):
task = TaskDocument(**loadfn((test_dir / "open_shell_nbo_task.json.gz")))
return task
def test_orbital(closed_shell, open_shell):
# Test closed-shell NBO parsing
doc = OrbitalDoc.from_task(
closed_shell, "b9ba54febc77d2a9177accf4605767db-C1Li2O3-1-2", deprecated=False
)
assert doc.property_name == "natural bonding orbitals"
assert doc.open_shell is False
assert len(doc.nbo_population) == len(closed_shell.output.initial_molecule)
assert doc.nbo_population[0].valence_electrons == pytest.approx(2.75426)
assert len(doc.nbo_lone_pairs) == 3
assert doc.nbo_lone_pairs[0].s_character == pytest.approx(0.02)
assert doc.nbo_lone_pairs[0].atom_index == 0
assert len(doc.nbo_bonds) == 10
assert doc.nbo_bonds[0].atom1_s_character == pytest.approx(29.93)
assert doc.nbo_bonds[0].atom1_index == 0
assert doc.nbo_bonds[0].atom2_index == 3
assert len(doc.nbo_interactions) == 95
assert doc.nbo_interactions[0].donor_index == 8
assert doc.nbo_interactions[0].acceptor_index == 19
assert doc.nbo_interactions[0].energy_difference == pytest.approx(0.95)
assert doc.alpha_population is None
assert doc.beta_population is None
# Test open-shell NBO parsing
doc = OrbitalDoc.from_task(
open_shell, "b9ba54febc77d2a9177accf4605767db-C1Li2O3-1-2", deprecated=False
)
assert doc.open_shell is True
assert len(doc.nbo_population) == len(open_shell.output.initial_molecule)
assert doc.alpha_population is not None
assert doc.beta_population is not None
assert doc.nbo_lone_pairs is None
assert doc.nbo_bonds is None
|