3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-22 05:02:20 +02:00

added omega_max in the solver initialisation

This commit is contained in:
aichhorn 2014-07-24 09:45:01 +02:00
parent bc2f470d21
commit 6fadfecf33

View File

@ -57,7 +57,7 @@ class SolverMultiBand(Solver):
"""
def __init__(self, beta, n_orb, gf_struct = False, map = False):
def __init__(self, beta, n_orb, gf_struct = False, map = False, omega_max = None):
self.n_orb = n_orb
@ -71,7 +71,12 @@ class SolverMultiBand(Solver):
self.map = {'up' : ['up' for v in range(n_orb)], 'down' : ['down' for v in range(n_orb)]}
# now initialize the solver with the stuff given above:
Solver.__init__(self, beta = beta, gf_struct = gf_struct)
if (omega_max is None):
Solver.__init__(self, beta = beta, gf_struct = gf_struct)
else:
n_w = int(omega_max*beta/(2.*numpy.pi))
Solver.__init__(self, beta = beta, gf_struct = gf_struct, n_w = n_w)
def solve(self, U_interact=None, J_hund=None, use_spinflip=False,