diff --git a/post_process/post_process/__main__.py b/post_process/post_process/__main__.py index 09e419e..00664a9 100644 --- a/post_process/post_process/__main__.py +++ b/post_process/post_process/__main__.py @@ -113,13 +113,19 @@ with pd.HDFStore( color=color, ls=ls, ) - axi.legend() + pp((sensor_data.max().max(), sensor_data.max().min())) + pp((sensor_data.max().max()-sensor_data.max().min())\ + /sensor_data.max().max()) + pp(sensor_data.max()) axi.grid() axi.set( xlabel='t (s)', ylabel=config.get('figure', 'ylabel', fallback=''), xlim=(0,timesteps.max()), ylim=(0,figmax), + title=f'x={mesh.x.iat[sensor_id]}m', ) + axi.legend(loc='upper right') + fig.tight_layout() fig.savefig(config.get('figure', 'save')) plt.show()