orto 1.0.3__tar.gz → 1.0.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {orto-1.0.3 → orto-1.0.5}/PKG-INFO +1 -1
- {orto-1.0.3 → orto-1.0.5}/orto/__init__.py +1 -2
- orto-1.0.5/orto/__version__.py +1 -0
- {orto-1.0.3 → orto-1.0.5}/orto/cli.py +4 -1
- {orto-1.0.3 → orto-1.0.5}/orto.egg-info/PKG-INFO +1 -1
- {orto-1.0.3 → orto-1.0.5}/setup.py +1 -1
- orto-1.0.3/orto/__version__.py +0 -1
- {orto-1.0.3 → orto-1.0.5}/README.md +0 -0
- {orto-1.0.3 → orto-1.0.5}/orto/constants.py +0 -0
- {orto-1.0.3 → orto-1.0.5}/orto/exceptions.py +0 -0
- {orto-1.0.3 → orto-1.0.5}/orto/extractor.py +0 -0
- {orto-1.0.3 → orto-1.0.5}/orto/input.py +0 -0
- {orto-1.0.3 → orto-1.0.5}/orto/job.py +0 -0
- {orto-1.0.3 → orto-1.0.5}/orto/plotter.py +0 -0
- {orto-1.0.3 → orto-1.0.5}/orto/utils.py +0 -0
- {orto-1.0.3 → orto-1.0.5}/orto.egg-info/SOURCES.txt +0 -0
- {orto-1.0.3 → orto-1.0.5}/orto.egg-info/dependency_links.txt +0 -0
- {orto-1.0.3 → orto-1.0.5}/orto.egg-info/entry_points.txt +0 -0
- {orto-1.0.3 → orto-1.0.5}/orto.egg-info/requires.txt +0 -0
- {orto-1.0.3 → orto-1.0.5}/orto.egg-info/top_level.txt +0 -0
- {orto-1.0.3 → orto-1.0.5}/pyproject.toml +0 -0
- {orto-1.0.3 → orto-1.0.5}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.0.5'
|
|
@@ -872,13 +872,16 @@ def extract_orbs_func(uargs, save=True) -> None:
|
|
|
872
872
|
# if no rows greater than threshold, skip
|
|
873
873
|
if not len(mo[mo > uargs.threshold]):
|
|
874
874
|
continue
|
|
875
|
-
print(f'MO #{mo_num} (Occ={occupancies[mo_num]}, E={energies[mo_num]: .5f}):') # noqa
|
|
876
875
|
_output = ''
|
|
876
|
+
total = 0.
|
|
877
877
|
for row, val in mo.items():
|
|
878
878
|
if val > uargs.threshold and row[1] in uargs.elements:
|
|
879
879
|
_output += f' {row[1]+str(row[0]):5} {row[2]:5} : {val:>5.1f} %\n' # noqa
|
|
880
|
+
total += val
|
|
880
881
|
if len(_output):
|
|
882
|
+
print(f'MO #{mo_num} (Occ={occupancies[mo_num]}, E={energies[mo_num]: .5f}):') # noqa
|
|
881
883
|
print(_output)
|
|
884
|
+
print(f' Total: {total:>5.1f} %\n')
|
|
882
885
|
|
|
883
886
|
return
|
|
884
887
|
|
orto-1.0.3/orto/__version__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.0.3'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|