(self)
| 385 | self.check(arr, arr.info(rows=10, width=self.width), 11) |
| 386 | |
| 387 | def test_scientific(self): |
| 388 | arr = ct.SolutionArray(self.gas, 20) |
| 389 | arr.set_equivalence_ratio(np.linspace(.5, 1.5, 20), "H2", "O2:1,N2:10") |
| 390 | arr.equilibrate("HP") |
| 391 | self.check(arr, arr.info(rows=7, width=self.width), 8) |
| 392 | |
| 393 | def test_plus_minus_i(self): |
| 394 | arr = ct.SolutionArray(self.gas, 20, |
nothing calls this directly
no test coverage detected