Compare commits
2 commits
045b6ae439
...
a000c67e93
Author | SHA1 | Date | |
---|---|---|---|
a000c67e93 | |||
339c27b99b |
1 changed files with 8 additions and 5 deletions
|
@ -81,18 +81,21 @@ ax3d.quiver3D(
|
||||||
ax3d.set(xlabel="x (cm)", ylabel="y (cm)", zlabel="z (cm)")
|
ax3d.set(xlabel="x (cm)", ylabel="y (cm)", zlabel="z (cm)")
|
||||||
|
|
||||||
theta = np.angle(raw_ts["x"] + 1j * raw_ts["y"]).mean()
|
theta = np.angle(raw_ts["x"] + 1j * raw_ts["y"]).mean()
|
||||||
fig2dv, ax2dv = plt.subplots()
|
fig2dv, ax2dv = plt.subplots(figsize=(5/2.54, 2/3*10/2.54), dpi=200, constrained_layout=True)
|
||||||
x0 = ts_flt["x"] * np.cos(theta) + ts_flt["y"] * np.sin(theta)
|
x0 = ts_flt["x"] * np.cos(theta) + ts_flt["y"] * np.sin(theta)
|
||||||
ax2dv.plot(x0, z0, c="#0066ff", lw=1)
|
#ax2dv.plot(x0, z0, c="#0066ff", lw=1)
|
||||||
ax2dv.quiver(
|
ax2dv.quiver(
|
||||||
x0[:-1],
|
x0[:-1],
|
||||||
z0[:-1],
|
z0[:-1],
|
||||||
np.diff(x0)[:],
|
np.diff(x0)[:],
|
||||||
np.diff(z0)[:],
|
np.diff(z0)[:],
|
||||||
color="#0066ff",
|
color="k",
|
||||||
|
scale_units="xy",
|
||||||
|
scale=1,
|
||||||
)
|
)
|
||||||
ax2dv.grid()
|
ax2dv.grid(c="k", alpha=.2)
|
||||||
ax2dv.set(aspect="equal")
|
ax2dv.set(aspect="equal", xlabel="x (cm)", ylabel="z (cm)")
|
||||||
fig2dv.savefig("out_orbitals.pdf")
|
fig2dv.savefig("out_orbitals.pdf")
|
||||||
|
fig2dv.savefig("out_orbitals.jpg")
|
||||||
|
|
||||||
plt.show()
|
plt.show()
|
||||||
|
|
Loading…
Reference in a new issue