Skip to content

Commit 13f53f0

Browse files
committed
Fix thrust3 and effective_thrust name
1 parent 4398e40 commit 13f53f0

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
@@ -2377,7 +2377,7 @@ def u_dot(self, t, u, post_processing=False): # pylint: disable=too-many-locals
23772377
M1,
23782378
M2,
23792379
M3,
2380-
effective_thrust,
2380+
thrust3,
23812381
]
23822382
)
23832383
return u_dot
@@ -2877,7 +2877,7 @@ def u_dot_generalized(self, t, u, post_processing=False): # pylint: disable=too
28772877

28782878
if post_processing:
28792879
self.__post_processed_variables.append(
2880-
[t, *v_dot, *w_dot, R1, R2, R3, M1, M2, M3, effective_thrust]
2880+
[t, *v_dot, *w_dot, R1, R2, R3, M1, M2, M3, thrust3]
28812881
)
28822882

28832883
return u_dot

0 commit comments

Comments
 (0)