Skip to content

Commit

Permalink
Merge pull request #9 from NREL/develop
Browse files Browse the repository at this point in the history
Release 0.5.3
  • Loading branch information
RHammond2 committed May 7, 2024
2 parents a9f8fe5 + 89c678a commit 1e39b35
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## 0.5.3 (7 May 2024)

- A bug was fixed where the array system installation costs were nearly doubled when compared
to a direct ORBIT run. This was the result of a duplicated design result when calling both
`Project.connect_orbit_cable_lengths()` and `Project.orbit.run()`.

## 0.5.2 (9 April 2024)

- Pins FLORIS to v3.6 to avoid workarounds for previous versions, and to avoid issues with
Expand Down
2 changes: 1 addition & 1 deletion waves/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from waves.project import Project


__version__ = "0.5.2"
__version__ = "0.5.3"
3 changes: 3 additions & 0 deletions waves/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,9 @@ def connect_orbit_cable_lengths(self, save_results: bool = True) -> None:
index=False,
)

# Unset the ORBIT settings to ensure the design result isn't double counted
self.setup_orbit()

def generate_floris_positions_from_layout(
self,
x_col: str = "easting",
Expand Down

0 comments on commit 1e39b35

Please sign in to comment.