Skip to content
Snippets Groups Projects
Commit 0a28bb92 authored by patavirt's avatar patavirt
Browse files

examples: fixup cpr_sns

parent 23d6ef00
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@ def j(T, h, phi, n=15, eta=0.1, alpha_soc=0.1, L=10, perturbative=False):
Jx = (J[:, :, 0] + J[:, :, 2]).real / 2
Jy = (J[:, :, 1] + J[:, :, 3]).real / 2
return Res(sol.x, sol.y, J, Jx, Jy)
return (sol.x, sol.y, J, Jx, Jy)
def main():
......@@ -86,9 +86,11 @@ def main():
T, h[:, None], phi[None, :], alpha_soc=alpha_soc, perturbative=False, mem=mem
)
Jx_mean = np.asarray([x.Jx[1:-1].sum(axis=1).mean(axis=0) for x in res])
Jx_mean = np.asarray(
[Res(*x).Jx[1:-1].sum(axis=1).mean(axis=0) for x in res.flat]
).reshape(res.shape)
plt.plot(phi / pi, Jx_mean)
plt.plot(phi / pi, Jx_mean.T)
plt.xlabel(r"$\varphi / \pi$")
plt.ylabel(r"$I$")
plt.legend()
......
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