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 745c2c0 commit ff4e7faCopy full SHA for ff4e7fa
1 file changed
rocketpy/rocket/parachute.py
@@ -212,10 +212,7 @@ def __init__(
212
self.height = height or radius
213
self.initial_radius = initial_radius or radius
214
self.initial_volume = (
215
- (4 / 3)
216
- * math.pi
217
- * (self.parachute_height / self.parachute_radius)
218
- * (min(self.parachute_radius, self.rocket.radius)) ** 3
+ (4 / 3) * math.pi * (self.height / self.radius) * self.initial_radius**3
219
)
220
self.porosity = porosity
221
self.added_mass_coefficient = 1.068 * (
0 commit comments