Skip to content

Commit

Permalink
Updated scada_funcs_plots.py
Browse files Browse the repository at this point in the history
fixed wrong y axis label on rpm and pitch curve filters plot #27
  • Loading branch information
delta006 committed Sep 19, 2024
1 parent 5fee858 commit 15d1f23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wind_up/plots/scada_funcs_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def plot_filter_rpm_and_pt_curve_one_ttype_or_wtg(
y = [rpm_v_pw_curve["y_limit"].iloc[0], *list(rpm_v_pw_curve["y_limit"]), rpm_v_pw_curve["y_limit"].iloc[-1]]
plt.plot(x, y, color="red")
plt.xlabel("pw_clipped [kW]")
plt.ylabel(f"{DataColumns.gen_rpm_mean} [deg]")
plt.ylabel(f"{DataColumns.gen_rpm_mean} [RPM]")
plt.grid()

plt.subplot(2, 2, 2)
Expand All @@ -376,7 +376,7 @@ def plot_filter_rpm_and_pt_curve_one_ttype_or_wtg(
y = [rpm_v_ws_curve["y_limit"].iloc[0], *list(rpm_v_ws_curve["y_limit"]), rpm_v_ws_curve["y_limit"].iloc[-1]]
plt.plot(x, y, color="red")
plt.xlabel(f"{DataColumns.wind_speed_mean} [m/s]")
plt.ylabel(f"{DataColumns.gen_rpm_mean} [deg]")
plt.ylabel(f"{DataColumns.gen_rpm_mean} [RPM]")
plt.grid()

plt.subplot(2, 2, 3)
Expand Down

0 comments on commit 15d1f23

Please sign in to comment.