@@ -31,7 +31,7 @@ def __init__(
31
31
self .flight = flight
32
32
return None
33
33
34
- def printInitialConditionsData (self ):
34
+ def initial_conditions (self ):
35
35
"""Prints all initial conditions data available about the Flight.
36
36
37
37
Parameters
@@ -79,7 +79,7 @@ def printInitialConditionsData(self):
79
79
80
80
return None
81
81
82
- def printNumericalIntegrationSettings (self ):
82
+ def numerical_integration_settings (self ):
83
83
"""Prints out the Numerical Integration settings available about the
84
84
flight.
85
85
@@ -114,7 +114,7 @@ def printNumericalIntegrationSettings(self):
114
114
115
115
return None
116
116
117
- def printSurfaceWindConditions (self ):
117
+ def surface_wind_conditions (self ):
118
118
"""Prints out the Surface Wind Conditions available about the flight.
119
119
120
120
Returns
@@ -137,7 +137,7 @@ def printSurfaceWindConditions(self):
137
137
138
138
return None
139
139
140
- def printLaunchRailConditions (self ):
140
+ def launch_rail_conditions (self ):
141
141
"""Prints out the Launch Rail Conditions available about the flight.
142
142
143
143
Parameters
@@ -154,7 +154,7 @@ def printLaunchRailConditions(self):
154
154
print ("Launch Rail Heading: {:.2f}°" .format (self .flight .heading ))
155
155
return None
156
156
157
- def printOutOfRailConditions (self ):
157
+ def out_of_rail_conditions (self ):
158
158
"""Prints out the Out of Rail Conditions available about the flight.
159
159
160
160
Returns
@@ -191,7 +191,7 @@ def printOutOfRailConditions(self):
191
191
192
192
return None
193
193
194
- def printBurnOutConditions (self ):
194
+ def burn_out_conditions (self ):
195
195
"""Prints out the Burn Out Conditions available about the flight.
196
196
197
197
Returns
@@ -239,7 +239,7 @@ def printBurnOutConditions(self):
239
239
240
240
return None
241
241
242
- def printApogeeConditions (self ):
242
+ def apogee_conditions (self ):
243
243
"""Prints out the Apogee Conditions available about the flight.
244
244
245
245
Returns
@@ -263,7 +263,7 @@ def printApogeeConditions(self):
263
263
264
264
return None
265
265
266
- def printEventsRegistered (self ):
266
+ def events_registered (self ):
267
267
"""Prints out the Events Registered available about the flight.
268
268
269
269
Returns
@@ -298,7 +298,7 @@ def printEventsRegistered(self):
298
298
)
299
299
return None
300
300
301
- def printImpactConditions (self ):
301
+ def impact_conditions (self ):
302
302
"""Prints out the Impact Conditions available about the flight.
303
303
304
304
Returns
@@ -320,7 +320,7 @@ def printImpactConditions(self):
320
320
321
321
return None
322
322
323
- def printMaximumValues (self ):
323
+ def maximum_values (self ):
324
324
"""Prints out the Maximum Values available about the flight.
325
325
326
326
Returns
@@ -381,7 +381,7 @@ def printMaximumValues(self):
381
381
)
382
382
return None
383
383
384
- def allPrints (self ):
384
+ def all (self ):
385
385
"""Prints out all data available about the Flight.
386
386
387
387
Parameters
@@ -394,33 +394,33 @@ def allPrints(self):
394
394
"""
395
395
396
396
# Print initial conditions
397
- self .printInitialConditionsData ()
397
+ self .initial_conditions ()
398
398
399
399
# Print surface wind conditions
400
- self .printSurfaceWindConditions ()
400
+ self .surface_wind_conditions ()
401
401
402
402
# Print launch rail orientation
403
- self .printLaunchRailConditions ()
403
+ self .launch_rail_conditions ()
404
404
405
405
# Print out of rail conditions
406
- self .printOutOfRailConditions ()
406
+ self .out_of_rail_conditions ()
407
407
408
408
# Print burnOut conditions
409
- self .printBurnOutConditions ()
409
+ self .burn_out_conditions ()
410
410
411
411
# Print apogee conditions
412
- self .printApogeeConditions ()
412
+ self .apogee_conditions ()
413
413
414
414
# Print events registered
415
- self .printEventsRegistered ()
415
+ self .events_registered ()
416
416
417
417
# Print impact conditions
418
- self .printImpactConditions ()
418
+ self .impact_conditions ()
419
419
420
420
# Print maximum values
421
- self .printMaximumValues ()
421
+ self .maximum_values ()
422
422
423
423
# Print Numerical Integration Information
424
- self .printNumericalIntegrationSettings ()
424
+ self .numerical_integration_settings ()
425
425
426
426
return None
0 commit comments