Skip to content

Commit

Permalink
make target dependent on number of agents
Browse files Browse the repository at this point in the history
  • Loading branch information
malinradtke committed Jan 15, 2024
1 parent a53a47b commit cd563a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosima_core/scenarios/mango/mango_cohda_scenario.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# [3200, 3200, 3200, 3200, 4000], same weight
# Target 20 agents DayAhead:
# [4000, 4000, 4000, 4000, 4000], same weight
target = ([20000, 20000, 20000, 20000], [1, 1, 1, 1])
target = ([3200 * NUMBER_OF_AGENTS/20 for _ in range(4)], [1, 1, 1, 1])


def main():
Expand Down

0 comments on commit cd563a5

Please sign in to comment.