Nick Papior

Results 600 comments of Nick Papior

Yes in the kondo, `U=3.5` For a random seed of `149012049` I get: ```bash weight = 1.0 history = 2 Etot = -730.4125846500745 ADIIS Etot = -730.4603478123743 history = 3...

The script is this: ```python import Hubbard.hamiltonian as hh import Hubbard.sp2 as sp2 import Hubbard.density as dm import numpy as np import sisl AdaptivePulayMixer = sisl.mixing.AdaptivePulayMixer PulayMixer = sisl.mixing.PulayMixer LinearMixer...

I will have no problem with that. As long as it is disclosed that it originates from me, ;) Then you can do whatever with it ;)

Note however, that for small systems `

Yes, you could use `sisl.selector` code to let it automatically decide which one to use. It basically runs through all available methods, and then once it has tried them all,...

I think you should do this like I do in `fermi_level` i.e. pass `q` as a float or a list of floats. If only one value is passed, it is...

Good idea, give me some time :)

Please have a look at the updated look. It is now more complete and easier to extend with new versions!

Note that benchmarking the allocations is not really fair I think. In this case I have left all allocation timings out since that should be a benchmark by it-self. The...

For orbital: ```python def merge(self, other) -> Orbital: """ Merges two orbitals into one, with a preference of `self` """ cls = self.__class__ s = self.__getstate__() o = other.__getstate__() def...