Make x plot usable
This commit is contained in:
parent
11147ce483
commit
4bdbfbde31
1 changed files with 1 additions and 2 deletions
|
@ -143,7 +143,7 @@ ax_r.legend(loc="upper left")
|
|||
ax_fft.legend(loc="upper right")
|
||||
fig_r.tight_layout()
|
||||
|
||||
fig_x, ax_x = plt.subplots(figsize=(10, 1))
|
||||
fig_x, ax_x = plt.subplots()
|
||||
ax_x.plot(x, -botl, color="k")
|
||||
ax_x.plot(
|
||||
x,
|
||||
|
@ -159,7 +159,6 @@ if config.has_option("post", "compare"):
|
|||
ax_x.axvline(x0, c="k", alpha=0.2)
|
||||
ax_x.set(xlabel="x (m)", ylabel="z (m)")
|
||||
ax_x.autoscale(axis="x", tight=True)
|
||||
ax_x.set(aspect="equal")
|
||||
fig_x.tight_layout()
|
||||
|
||||
out = pathlib.Path(config.get("post", "out")).joinpath(f"t{t0}x{x0}")
|
||||
|
|
Loading…
Reference in a new issue