Skip to content

Commit b872378

Browse files
committed
allow stochastic fins with multiple fin sets
1 parent 1f3eefc commit b872378

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ Attention: The newest changes should be on top -->
4343

4444
### Fixed
4545

46+
- BUG: Allow multiple sets of stochastic fins [#737](https://github.com/RocketPy-Team/RocketPy/pull/737)
4647
- BUG: forecast and reanalysis models - Update ECMWF dictionary values [#736](https://github.com/RocketPy-Team/RocketPy/pull/736)
4748
- BUG: forecast and reanalysis models - move wind_speed to correct position [#735](https://github.com/RocketPy-Team/RocketPy/pull/735)
4849
- BUG: Sideslip Angle and Damping Coefficient Calculation [#729](https://github.com/RocketPy-Team/RocketPy/pull/729)

rocketpy/stochastic/stochastic_rocket.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -442,8 +442,7 @@ def get_surface_position(self_object, _):
442442
for surface in surfaces:
443443
if surface.component == validated_object.obj:
444444
return surface.position
445-
else:
446-
raise AssertionError(error_msg)
445+
raise AssertionError(error_msg)
447446

448447
return get_surface_position
449448

0 commit comments

Comments
 (0)