1
Fork 0

Added markers to reflection plot

This commit is contained in:
Edgar P. Burkhart 2022-03-04 11:23:27 +01:00
parent 255532ced2
commit 32596da600
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

@ -70,7 +70,7 @@ fig.tight_layout()
fig_r, ax_r = plt.subplots() fig_r, ax_r = plt.subplots()
ax_r.plot(1 / phi_eta[0, 1:], R[1:]) ax_r.plot(1 / phi_eta[0, 1:], R[1:], marker="+", lw=1)
ax_r.set(xlim=(1, 30), ylim=(0, 1), xlabel="t (s)", ylabel="R") ax_r.set(xlim=(1, 30), ylim=(0, 1), xlabel="t (s)", ylabel="R")
ax_r.grid() ax_r.grid()