Hi again,

>     for (i, j), spin_current in zip(syst.graph, spin_current):
>         print('spin current from site {} to {} is {}'
>               .format(syst.sites[j].tag, syst.sites[j].tag))

This snippet should have read

     for (i, j), J in zip(syst.graph, spin_current):
         print('spin current from site {} to {} is {}'
               .format(syst.sites[j].tag, syst.sites[j].tag), J)

Happy Kwanting,

Joe

Attachment: signature.asc
Description: PGP signature

Reply via email to