Search found 3 matches

by Jakob
18 Apr 2024, 05:49
Forum: HowTos and FAQ for TeNPy
Topic: Applying different time evolution to different subsystems with TEBD
Replies: 2
Views: 15053

Re: Applying different time evolution to different subsystems with TEBD

Hi, This can not be done out of the box. TEBD will also be difficult, since your gates are not nearest neighbour (even if H_i are NN on their subsystem, they are NNN on the full system). You could force TEBD by grouping sites to a nearest neighbour model. I would go for MPO time evolution though. Yo...
by Jakob
10 Apr 2024, 12:45
Forum: HowTos and FAQ for TeNPy
Topic: Matrix representation of dN operator
Replies: 1
Views: 2837

Re: Matrix representation of dN operator

Yes, you can have a look at the operator in the site In [3]: import tenpy as tp In [4]: site = tp.FermionSite(filling=0.5) In [5]: site.dN Out[5]: <npc.Array shape=(2, 2) labels=['p', 'p*']> In [6]: site.dN.to_ndarray() Out[6]: array([[-0.5, 0. ], [ 0. , 0.5]]) In[7]: # The basis is { |empty> , |ful...
by Jakob
31 Mar 2024, 20:58
Forum: HowTos and FAQ for TeNPy
Topic: Issue in running chiral_pi_flux.py
Replies: 4
Views: 12738

Re: Issue in running chiral_pi_flux.py

Hi,
Yes it turns out those examples are not yet updated for v1.0.
They should run with v0.99.
Working on a fix in https://github.com/tenpy/tenpy/pull/400.
Thanks for posting!