Skip to content

Commit

Permalink
Merge pull request #109 from RAMP-project/release/0.5.1
Browse files Browse the repository at this point in the history
Bug fix in .py example files
  • Loading branch information
FLomb authored Feb 8, 2024
2 parents f22eb60 + 94477c7 commit 9c9f78d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ramp/example/input_file_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@
)
uc.initialize(peak_enlarge=0.15)

Profiles_list = uc.generate_daily_load_profiles()
Profiles_list = uc.generate_daily_load_profiles(flat=False)

# post-processing
from ramp.post_process import post_process as pp
Expand Down
2 changes: 1 addition & 1 deletion ramp/example/input_file_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
)
uc.initialize(peak_enlarge=0.15)

Profiles_list = uc.generate_daily_load_profiles()
Profiles_list = uc.generate_daily_load_profiles(flat=False)

# post-processing
from ramp.post_process import post_process as pp
Expand Down
2 changes: 1 addition & 1 deletion ramp/example/input_file_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
)
uc.initialize(peak_enlarge=0.15)

Profiles_list = uc.generate_daily_load_profiles()
Profiles_list = uc.generate_daily_load_profiles(flat=False)

# post-processing
from ramp.post_process import post_process as pp
Expand Down

0 comments on commit 9c9f78d

Please sign in to comment.