From 382f0ec26dfb53af8b5c31922dbd7bd831192f4d Mon Sep 17 00:00:00 2001 From: "caroline.moeller" Date: Tue, 28 Apr 2020 13:49:32 +0200 Subject: [PATCH] Fix legend entry --- examples/solar_thermal_collector/plots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/solar_thermal_collector/plots.py b/examples/solar_thermal_collector/plots.py index c08e7861..bd15e708 100644 --- a/examples/solar_thermal_collector/plots.py +++ b/examples/solar_thermal_collector/plots.py @@ -18,7 +18,7 @@ def plot_collector_heat(data_precalc, periods, eta_0): t = list(range(1, periods + 1)) fig, ax = plt.subplots() - ax.plot(t, heat_calc, label='CSP precalculation') + ax.plot(t, heat_calc, label='Solar thermal precalculation') ax.plot(t, heat_compare, label='constant efficiency') ax.set( xlabel='time in h',