-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
140 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
# Copyright 2020 The TEMPO Collaboration | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
""" | ||
Example of a 5-site XYZ Heisenberg spin chain. | ||
""" | ||
|
||
import sys | ||
sys.path.insert(0,'.') | ||
|
||
import numpy as np | ||
import matplotlib.pyplot as plt | ||
|
||
import oqupy | ||
|
||
# ----------------------------------------------------------------------------- | ||
|
||
sx = oqupy.operators.sigma("x") | ||
sy = oqupy.operators.sigma("y") | ||
sz = oqupy.operators.sigma("z") | ||
|
||
up_dm = oqupy.operators.spin_dm("z+") | ||
down_dm = oqupy.operators.spin_dm("z-") | ||
|
||
# --- Parameters -------------------------------------------------------------- | ||
|
||
# -- time steps -- | ||
dt = 0.2 | ||
num_steps = 20 | ||
|
||
# -- bath -- | ||
alpha = 0.08 | ||
omega_cutoff = 4.0 | ||
temperature = 1.6 | ||
pt_dkmax = 40 | ||
pt_epsrel = 1.0e-5 | ||
|
||
# -- chain -- | ||
N = 5 | ||
h = np.array([[0.0, 0.0, 1.0]]*N) | ||
J = np.array([[1.3, 0.7, 1.2]]*(N-1)) | ||
tebd_order = 2 | ||
tebd_epsrel = 1.0e-5 | ||
|
||
|
||
# --- Compute process tensors ------------------------------------------------- | ||
|
||
correlations = oqupy.PowerLawSD(alpha=alpha, | ||
zeta=1, | ||
cutoff=omega_cutoff, | ||
cutoff_type='exponential', | ||
max_correlation_time=10.0, | ||
temperature=temperature) | ||
bath = oqupy.Bath(0.5 * sy, correlations) | ||
pt_tempo_parameters = oqupy.PtTempoParameters(dt=dt, | ||
dkmax=pt_dkmax, | ||
epsrel=pt_epsrel) | ||
|
||
print("Process tensor (PT) computation:") | ||
pt = oqupy.pt_tempo_compute(bath=bath, | ||
start_time=0.0, | ||
end_time=num_steps * dt, | ||
parameters=pt_tempo_parameters, | ||
progress_type='bar') | ||
|
||
|
||
# --- PT-TEBD preperation ----------------------------------------------------- | ||
|
||
# -- initial state -- | ||
initial_augmented_mps = oqupy.AugmentedMPS([up_dm] + [down_dm] * (N-1)) | ||
|
||
# -- chain hamiltonian -- | ||
system_chain = oqupy.SystemChain(hilbert_space_dimensions=[2]*N) | ||
|
||
for n in range(N): | ||
for i, xyz in enumerate(["x", "y", "z"]): | ||
system_chain.add_site_hamiltonian( | ||
site=n, | ||
hamiltonian=0.5*h[n, i]*oqupy.operators.sigma(xyz)) | ||
for n in range(N-1): | ||
for i, xyz in enumerate(["x", "y", "z"]): | ||
system_chain.add_nn_hamiltonian( | ||
site=n, | ||
hamiltonian_l=0.5*J[n, i]*oqupy.operators.sigma(xyz), | ||
hamiltonian_r=0.5*oqupy.operators.sigma(xyz)) | ||
|
||
pt_tebd_params = oqupy.PtTebdParameters( | ||
dt=dt, | ||
order=tebd_order, | ||
epsrel=tebd_epsrel) | ||
dynamics_sites=list(range(N)) | ||
|
||
|
||
# -- PT-TEBD computation ------------------------------------------------------ | ||
|
||
pt_tebd_closed = oqupy.PtTebd( | ||
initial_augmented_mps=initial_augmented_mps, | ||
system_chain=system_chain, | ||
process_tensors=[None]*N, | ||
parameters=pt_tebd_params, | ||
dynamics_sites=dynamics_sites, | ||
chain_control=None) | ||
pt_tebd_open = oqupy.PtTebd( | ||
initial_augmented_mps=initial_augmented_mps, | ||
system_chain=system_chain, | ||
process_tensors=[None, None, None, pt, pt], | ||
parameters=pt_tebd_params, | ||
dynamics_sites=dynamics_sites, | ||
chain_control=None) | ||
|
||
print("PT-TEBD computation (closed spin chain):") | ||
results_closed = pt_tebd_closed.compute(num_steps, progress_type="bar") | ||
print("PT-TEBD computation (open spin chain):") | ||
results_open = pt_tebd_open.compute(num_steps, progress_type="bar") | ||
|
||
|
||
# -- plot results ------------------------------------------------------------- | ||
|
||
plt.figure(1) | ||
|
||
for site, dyn in results_closed['dynamics'].items(): | ||
plt.plot(*dyn.expectations(sz, real=True), | ||
color=f"C{site}", linestyle="solid", | ||
label=f"$<\\sigma_{site}^z>$") | ||
for site, dyn in results_open['dynamics'].items(): | ||
plt.plot(*dyn.expectations(sz, real=True), | ||
color=f"C{site}", linestyle="dotted") | ||
|
||
plt.legend() | ||
plt.show() |