Skip to content

Commit 733ec1d

Browse files
MNT: remove unused post_processed attribute from Flight class
1 parent 007b5ed commit 733ec1d

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

rocketpy/simulation/flight.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,6 @@ class Flight:
155155
Current integration time.
156156
Flight.y : list
157157
Current integration state vector u.
158-
Flight.post_processed : bool
159-
Defines if solution data has been post processed.
160158
Flight.initial_solution : list
161159
List defines initial condition - [tInit, x_init,
162160
y_init, z_init, vx_init, vy_init, vz_init, e0_init, e1_init,
@@ -1102,7 +1100,6 @@ def __init_solution_monitors(self):
11021100
self.impact_velocity = 0
11031101
self.impact_state = np.array([0])
11041102
self.parachute_events = []
1105-
self.post_processed = False
11061103
self.__post_processed_variables = []
11071104

11081105
def __init_flight_state(self):

0 commit comments

Comments
 (0)