File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -343,7 +343,7 @@ def centerOfMass(self):
343
343
t : float
344
344
Time in seconds.
345
345
346
- Returns
346
+ Returnsg
347
347
-------
348
348
Function
349
349
Position of the center of mass as a function
@@ -406,7 +406,7 @@ def terminateBurn(t, y):
406
406
events = terminateBurn ,
407
407
atol = 1e-12 ,
408
408
rtol = 1e-11 ,
409
- method = "BDF " ,
409
+ method = "LSODA " ,
410
410
)
411
411
412
412
self .grainBurnOut = sol .t [- 1 ]
Original file line number Diff line number Diff line change @@ -105,7 +105,9 @@ def test_burn_area_asserts_extreme_values(solid_motor):
105
105
)
106
106
107
107
assert np .allclose (solid_motor .burnArea .getSource ()[0 ][- 1 ], initial_burn_area )
108
- assert np .allclose (solid_motor .burnArea .getSource ()[- 1 ][- 1 ], final_burn_area , atol = 1e-6 )
108
+ assert np .allclose (
109
+ solid_motor .burnArea .getSource ()[- 1 ][- 1 ], final_burn_area , atol = 1e-6
110
+ )
109
111
110
112
111
113
def test_evaluate_inertia_11_asserts_extreme_values (solid_motor ):
You can’t perform that action at this time.
0 commit comments