Skip to content
Snippets Groups Projects
Commit c1973998 authored by Kostas Vilkelis's avatar Kostas Vilkelis :flamingo:
Browse files

check hermiticity of tb models

parent ea4a272e
No related branches found
No related tags found
1 merge request!4Interface refactoring
This commit is part of merge request !4. Comments created here will be created in the context of that merge request.
......@@ -15,6 +15,16 @@ class Model:
self._size = tb_model[_firstKey].shape[0]
self._localKey = tuple(np.zeros((self._ndim,), dtype=int))
def _check_hermiticity(h):
# assert hermiticity of the Hamiltonian
for vector in h.keys():
op_vector = tuple(-1*np.array(vector))
assert np.allclose(h[vector], h[op_vector].conj().T)
_check_hermiticity(tb_model)
_check_hermiticity(int_model)
def makeDensityMatrix(self, mf_model, nK=200):
self.hkfunc = tb2kfunc(addTb(self.tb_model, mf_model))
self.calculateEF(nK=nK)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment