Skip to content

Commit 7e45bd4

Browse files
committed
Update run_quickstart.py
1 parent 149baa4 commit 7e45bd4

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

scripts/run_quickstart.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@ def main():
1212
input_folder = "..//model_library"
1313
output_folder = "..//temptemp"
1414

15-
model_name = "dummy_test"
15+
model_name = "dummy"
1616
model_year = 2016
1717

1818
# Simulation parameters
1919
sim_horizon = 24
20-
num_sim_days = 2
2120
steps_to_run = 2
2221
solver = "gurobi" # or highs
2322

@@ -32,7 +31,6 @@ def main():
3231

3332
simulator.run(
3433
sim_horizon=sim_horizon,
35-
num_sim_days=num_sim_days,
3634
steps_to_run=steps_to_run,
3735
solver=solver,
3836
)
@@ -44,7 +42,7 @@ def main():
4442

4543
# Plot the results
4644
simulator.plot_fuelmix("bar", output_folder)
47-
# simulator.plot_thermal_units(output_folder)
45+
simulator.plot_thermal_units(output_folder)
4846

4947

5048
if __name__ == "__main__":

0 commit comments

Comments
 (0)