Skip to content
Snippets Groups Projects
Commit 7dd9969a authored by Christoph Groth's avatar Christoph Groth
Browse files

tutorial: use default value for magnetic field

parent 22a0b983
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@
+ size = (_defs.figwidth_in, _defs.figwidth_in)
+
# Calculate the wave functions in the system.
ham_mat = sys.hamiltonian_submatrix(sparse=True, kwargs={'B': 0})
ham_mat = sys.hamiltonian_submatrix(sparse=True)
evecs = sla.eigsh(ham_mat, k=20, which='SM')[1]
# Plot the probability density of the 10th eigenmode.
......
......@@ -36,7 +36,7 @@ def make_system(a=1, t=1.0, r=10):
rsq = x ** 2 + y ** 2
return rsq < r ** 2
def hopx(site1, site2, B):
def hopx(site1, site2, B=0):
# The magnetic field is controlled by the parameter B
y = site1.pos[1]
return -t * exp(-1j * B * y)
......@@ -81,7 +81,7 @@ def plot_spectrum(sys, Bfields):
#HIDDEN_BEGIN_wave
def plot_wave_function(sys):
# Calculate the wave functions in the system.
ham_mat = sys.hamiltonian_submatrix(sparse=True, kwargs={'B': 0})
ham_mat = sys.hamiltonian_submatrix(sparse=True)
evecs = sla.eigsh(ham_mat, k=20, which='SM')[1]
# Plot the probability density of the 10th eigenmode.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment