Skip to content

Commit

Permalink
fix wetterdienst version
Browse files Browse the repository at this point in the history
  • Loading branch information
k-rieck committed Dec 18, 2024
1 parent de82eb7 commit ab8d15d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hisim/components/controller_mpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -715,9 +715,9 @@ def optimize( # noqa: C901
# Numerical values of pv forecast (casadi fromat)
pv_forecast_24h = np.reshape(np.array(pv_forecast_24h), (1, len(pv_forecast_24h)))

p_el = np.reshape(np.array(price_purchase_forecast_24h), (1, len(price_purchase_forecast_24h)))
p_el: np.ndarray = np.reshape(np.array(price_purchase_forecast_24h), (1, len(price_purchase_forecast_24h)))

feed_in_tariff = np.reshape(
feed_in_tariff: np.ndarray = np.reshape(
np.array(price_injection_forecast_24h),
(1, len(price_injection_forecast_24h)),
)
Expand Down

0 comments on commit ab8d15d

Please sign in to comment.