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 a2b9c6e commit 59ebbe6Copy full SHA for 59ebbe6
1 file changed
rocketpy/rocket/parachute.py
@@ -221,10 +221,9 @@ def __init__(
221
- 0.25975 * self.porosity**2
222
+ 1.2626 * self.porosity**3
223
)
224
- alpha, beta = self.noise_corr
225
- self.noise_function = lambda: alpha * self.noise_signal[-1][
+ self.noise_function = lambda: self.noise_corr[0] * self.noise_signal[-1][
226
1
227
- ] + beta * np.random.normal(noise[0], noise[1])
+ ] + self.noise_corr[1] * np.random.normal(noise[0], noise[1])
228
229
self.prints = _ParachutePrints(self)
230
0 commit comments