Skip to content

Commit 75b8e5f

Browse files
authored
BUG: Fixes StochasticNoseCone powerseries issue #838 (#839)
* BUG: fix StochasticNoseCone powerseries issue by adding power parameter to constructor * DOC: Add bug fix #838 to changelog * BUG: pass power parameter into StochasticModel to allow variation
1 parent 2940eaa commit 75b8e5f

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,7 @@ You can install this version by running `pip install rocketpy==1.3.0`
306306

307307
### Fixed
308308

309+
- BUG: Fixes StochasticNoseCone powerseries issue #838 [#839](https://github.com/RocketPy-Team/RocketPy/pull/839)
309310
- MNT: Alter PYPI classifier naming. [#615](https://github.com/RocketPy-Team/RocketPy/pull/615)
310311
- DOC: Solve Dependencies Conflicts and pyproject build [#613](https://github.com/RocketPy-Team/RocketPy/pull/613)
311312
- BUG: Fixes nose cone bluffness issue #610 [#611](https://github.com/RocketPy-Team/RocketPy/pull/611)

rocketpy/stochastic/stochastic_aero_surfaces.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def __init__(
5454
base_radius=None,
5555
bluffness=None,
5656
rocket_radius=None,
57+
power=None,
5758
):
5859
"""Initializes the Stochastic Nose Cone class.
5960
@@ -84,6 +85,7 @@ def __init__(
8485
base_radius=base_radius,
8586
bluffness=bluffness,
8687
rocket_radius=rocket_radius,
88+
power=power,
8789
name=None,
8890
)
8991

0 commit comments

Comments
 (0)