Skip to content

Commit d6787a8

Browse files
committed
Fix thrust3 and effective_thrust name
1 parent f10055d commit d6787a8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

rocketpy/simulation/flight.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2204,7 +2204,7 @@ def u_dot(self, t, u, post_processing=False): # pylint: disable=too-many-locals
22042204
M1,
22052205
M2,
22062206
M3,
2207-
net_thrust,
2207+
thrust3,
22082208
]
22092209
)
22102210
return u_dot
@@ -2701,7 +2701,7 @@ def u_dot_generalized(self, t, u, post_processing=False): # pylint: disable=too
27012701

27022702
if post_processing:
27032703
self.__post_processed_variables.append(
2704-
[t, *v_dot, *w_dot, R1, R2, R3, M1, M2, M3, effective_thrust]
2704+
[t, *v_dot, *w_dot, R1, R2, R3, M1, M2, M3, thrust3]
27052705
)
27062706

27072707
return u_dot

0 commit comments

Comments
 (0)