From 48bfa2420ad76a3800dd01133aaa04d1ef598ec6 Mon Sep 17 00:00:00 2001 From: gituser789 <62549000+gituser789@users.noreply.github.com> Date: Wed, 7 Aug 2024 18:43:40 +0200 Subject: [PATCH] fix quotes --- hct/hydrodynamic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hct/hydrodynamic.py b/hct/hydrodynamic.py index 7a08160..41e1721 100644 --- a/hct/hydrodynamic.py +++ b/hct/hydrodynamic.py @@ -281,7 +281,7 @@ def calc_volume_flow(fan_name: str, geometry: Geometry, plot: bool = False): if plot: plt.plot(fan_cubic_meter_second, np.array(result_list_delta_p_total), label=r'Heat sink') - plt.plot(fan_cubic_meter_second, fan_pressure_drop_pascal, label=f'Fan: {fan_name.replace('.csv', '')}') + plt.plot(fan_cubic_meter_second, fan_pressure_drop_pascal, label=f"Fan: {fan_name.replace('.csv', '')}") plt.plot(intersection_volume_flow, intersection_pressure, 'ro') plt.xlabel('Volume flow im m³/s') plt.ylabel(r'Pressure drop $\Delta p$ in Pa')