Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Aug 31, 2024
1 parent 0d33017 commit 3772b30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/tutorials/algorithms/rolling_horizon.jl
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ time_series[1:21:end, :]

solar_investment = 150;

# We multiple the level of solar investment by the time series of availability
# We multiply the level of solar investment by the time series of availability
# to get actual MW generated.

time_series.solar_MW = solar_investment * time_series.solar_pu;
Expand Down Expand Up @@ -189,7 +189,7 @@ set_silent(model)
0 <= s[1:optimization_window] <= 40
0 <= c[1:optimization_window] <= 10
0 <= d[1:optimization_window] <= 10
## Initialize empty parameters. These values will get updated layer
## Initialize empty parameters. These values will get updated later
D[t in 1:optimization_window] in Parameter(0)
A[t in 1:optimization_window] in Parameter(0)
S_0 in Parameter(0)
Expand Down

0 comments on commit 3772b30

Please sign in to comment.