Skip to content

Commit

Permalink
fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
gituser789 committed Aug 7, 2024
1 parent 20013f4 commit 48bfa24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hct/hydrodynamic.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 48bfa24

Please sign in to comment.