Skip to content

Commit

Permalink
allow stochastic fins with multiple fin sets
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamArmst committed Nov 24, 2024
1 parent 1f3eefc commit b872378
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Attention: The newest changes should be on top -->

### Fixed

- BUG: Allow multiple sets of stochastic fins [#737](https://github.com/RocketPy-Team/RocketPy/pull/737)
- BUG: forecast and reanalysis models - Update ECMWF dictionary values [#736](https://github.com/RocketPy-Team/RocketPy/pull/736)
- BUG: forecast and reanalysis models - move wind_speed to correct position [#735](https://github.com/RocketPy-Team/RocketPy/pull/735)
- BUG: Sideslip Angle and Damping Coefficient Calculation [#729](https://github.com/RocketPy-Team/RocketPy/pull/729)
Expand Down
3 changes: 1 addition & 2 deletions rocketpy/stochastic/stochastic_rocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,8 +442,7 @@ def get_surface_position(self_object, _):
for surface in surfaces:
if surface.component == validated_object.obj:
return surface.position
else:
raise AssertionError(error_msg)
raise AssertionError(error_msg)

Check warning on line 445 in rocketpy/stochastic/stochastic_rocket.py

View check run for this annotation

Codecov / codecov/patch

rocketpy/stochastic/stochastic_rocket.py#L445

Added line #L445 was not covered by tests

return get_surface_position

Expand Down

0 comments on commit b872378

Please sign in to comment.