1
Fork 0

Update diff for larger figure

This commit is contained in:
Edgar P. Burkhart 2022-05-06 11:43:58 +02:00
parent d5d90a36a5
commit 9e229b7193
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
1 changed files with 1 additions and 2 deletions

View File

@ -57,8 +57,8 @@ def get_pickle(out):
models = list(map(get_pickle, args.output))
fig, ax = plt.subplots(len(models), figsize=(6, 1.5 * len(models)), dpi=100, constrained_layout=True)
if args.timestep is None:
fig, ax = plt.subplots(len(models), constrained_layout=True)
for i, (_ax, _model) in enumerate(zip(ax, models)):
_ax.contour(
_model.t,
@ -77,7 +77,6 @@ if args.timestep is None:
)
)
else:
fig, ax = plt.subplots(len(models), constrained_layout=True)
for i, (_ax, _model) in enumerate(zip(ax, models)):
_ax.tricontour(
_model.x,