We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f84459d commit 4fcb406Copy full SHA for 4fcb406
1 file changed
rocketpy/stochastic/stochastic_parachute.py
@@ -39,6 +39,9 @@ def __init__(
39
sampling_rate=None,
40
lag=None,
41
noise=None,
42
+ parachute_radius=None,
43
+ parachute_height=None,
44
+ porosity=None,
45
):
46
"""Initializes the Stochastic Parachute class.
47
@@ -70,6 +73,9 @@ def __init__(
70
73
self.sampling_rate = sampling_rate
71
74
self.lag = lag
72
75
self.noise = noise
76
+ self.parachute_radius = parachute_radius
77
+ self.parachute_height = parachute_height
78
+ self.porosity = porosity
79
80
self._validate_trigger(trigger)
81
self._validate_noise(noise)
@@ -81,6 +87,9 @@ def __init__(
87
lag=lag,
82
88
noise=noise,
83
89
name=None,
90
+ parachute_radius=parachute_radius,
91
+ parachute_height=parachute_height,
92
+ porosity=porosity
84
93
)
85
94
86
95
def _validate_trigger(self, trigger):
0 commit comments