mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-09 06:53:38 +01:00
Merge branch 'dev-stable' of https://github.com/QuantumPackage/qp2 into dev-stable
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
commit
1fc6b914f3
@ -313,6 +313,15 @@ def write_ezfio(res, filename):
|
||||
for i in range(len(sym)):
|
||||
sym[MOmap[i]] = sym0[i]
|
||||
|
||||
irrep = {}
|
||||
for i in sym:
|
||||
irrep[i] = 0
|
||||
|
||||
for i, j in enumerate(irrep.keys()):
|
||||
irrep[j] = i+1
|
||||
|
||||
sym = [ irrep[k] for k in sym ]
|
||||
|
||||
MoMatrix = []
|
||||
for i in range(len(MOs)):
|
||||
m = MOs[i]
|
||||
@ -329,6 +338,7 @@ def write_ezfio(res, filename):
|
||||
ezfio.set_mo_basis_mo_num(mo_num)
|
||||
ezfio.set_mo_basis_mo_coef(MoMatrix)
|
||||
ezfio.set_mo_basis_mo_occ(OccNum)
|
||||
ezfio.set_mo_basis_mo_symmetry(sym)
|
||||
|
||||
print("OK")
|
||||
|
||||
|
@ -32,6 +32,12 @@ doc: |MO| occupation numbers
|
||||
interface: ezfio
|
||||
size: (mo_basis.mo_num)
|
||||
|
||||
[mo_symmetry]
|
||||
type: integer
|
||||
doc: MOs with the same integer belong to the same irrep.
|
||||
interface: ezfio
|
||||
size: (mo_basis.mo_num)
|
||||
|
||||
[mo_class]
|
||||
type: MO_class
|
||||
doc: [ Core | Inactive | Active | Virtual | Deleted ], as defined by :ref:`qp_set_mo_class`
|
||||
|
Loading…
Reference in New Issue
Block a user