|
54 | 54 | * density_density: used for full d-shell or eg- or t2g-subset |
55 | 55 | * kanamori: only physical for the t2g or the eg subset |
56 | 56 | * full_slater: used for full d-shell or eg- or t2g-subset |
| 57 | + * ntot: U/2 (Ntot^2 - Ntot) interaction |
| 58 | + * simple_intra: density-density like but only intra orbital with given U value (no rotations applied) |
57 | 59 | * crpa: use the cRPA matrix as interaction Hamiltonian |
58 | 60 | * crpa_density_density: use the density-density terms of the cRPA matrix |
59 | 61 | * dynamic: use dynamic U from h5 archive |
|
401 | 403 | dc_fixed_occ : list of float, optional, default= 'none' |
402 | 404 | If given, the occupation for the DC for each impurity is set to the provided value. |
403 | 405 | Still uses the same kind of DC! |
| 406 | +dc_orb_shift : list of float, optional, default= 'none' |
| 407 | + extra potential shift per orbital per impurity added to the DC |
404 | 408 | dc_U : float or comma seperated list of floats, optional, default= general_params['U'] |
405 | 409 | U values for DC determination if only one value is given, the same U is assumed for all impurities |
406 | 410 | dc_J : float or comma seperated list of floats, optional, default= general_params['J'] |
|
871 | 875 | 'dc_fixed_occ': {'converter': lambda s: list(map(float, s.split(','))), |
872 | 876 | 'used': True, 'default': 'none'}, |
873 | 877 |
|
| 878 | + 'dc_orb_shift': {'converter': lambda s: list(map(float, s.split(','))), |
| 879 | + 'used': True, 'default': 'none'}, |
| 880 | + |
874 | 881 | 'dc_nominal': {'converter': BOOL_PARSER, 'used': True, 'default': False}, |
875 | 882 |
|
876 | 883 | 'dc_U': {'converter': lambda s: list(map(float, s.split(','))), |
|
0 commit comments