Z2Pack icon indicating copy to clipboard operation
Z2Pack copied to clipboard

question about the surface Parameters

Open hahArcher1 opened this issue 3 years ago • 2 comments

hello developers , I get some questions about the surface Parameters. I use the TBmodels constructing model manually which is 2D materials Hamilton . Then I use the Z2pack to calculate the Z2 invariant. When I use "surface = lambda s,t2: [s/2, t2, 0] " , I can get the Z2=1,but when I use "surface = lambda s,t2: [s, t2, 0] ", I get the Z2=0. What is the problem?

hahArcher1 avatar Jun 09 '22 12:06 hahArcher1

For the Z2 invariant, the chosen surface should only cover half the Brillouin zone (between two time-reversal invariant lines).

If it covers the whole Brillouin zone (as with lambda s,t2: [s, t2, 0]), it effectively calculates twice the Z2 invariant. Because it's only defined modulo 2, that will always be zero.

greschd avatar Jun 09 '22 13:06 greschd

So I use "surface = lambda s,t2: [s/2, t2, 0] " to calculate the Z2 invariant which is correct because it covers the half of Brillouin zone? Thank you for your help!

hahArcher1 avatar Jun 09 '22 13:06 hahArcher1