Skip to content

Commit 303491e

Browse files
committed
ENH: implementing previous comments
1 parent a81a9a6 commit 303491e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

rocketpy/simulation/flight.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2015,6 +2015,7 @@ def u_dot_parachute(self, t, u, post_processing=False):
20152015
# tf = 8 * nominal diameter / velocity at line stretch
20162016

20172017
# Calculate added mass
2018+
<<<<<<< HEAD
20182019
ma = (
20192020
self.parachute_added_mass_coefficient
20202021
* rho
@@ -2023,6 +2024,9 @@ def u_dot_parachute(self, t, u, post_processing=False):
20232024
* self.parachute_radius**2
20242025
* self.parachute_height
20252026
)
2027+
=======
2028+
ma = ka * rho * (4 / 3) * np.pi * self.parachute_radius**2 * self.parachute_height
2029+
>>>>>>> 159cce8e (ENH: implementing previous comments)
20262030

20272031
# Calculate freestream speed
20282032
freestream_x = vx - wind_velocity_x

0 commit comments

Comments
 (0)