update SVO tutorial for dft tools 3

I changed the expression for gf_struct so that it works with dft_tools 3. 

While I was at it, I took out the definition of 'l' since it's not used
This commit is contained in:
Jonathan Karp 2021-02-25 12:41:57 -05:00 committed by GitHub
parent 5f658e93c3
commit 783dba2ae3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -144,11 +144,10 @@ It consist of two parts:
The first step is done using methods of the :ref:`TRIQS <triqslibs:welcome>` library::
n_orb = SK.corr_shells[0]['dim']
l = SK.corr_shells[0]['l']
spin_names = ["up","down"]
orb_names = [i for i in range(n_orb)]
# Use GF structure determined by DFT blocks:
gf_struct = [(block, indices) for block, indices in SK.gf_struct_solver[0].iteritems()]
gf_struct = SK.gf_struct_solver_list[0]
# Construct U matrix for density-density calculations:
Umat, Upmat = U_matrix_kanamori(n_orb=n_orb, U_int=U, J_hund=J)