(self, mech)
| 341 | P1 = 3.7e6 |
| 342 | |
| 343 | def setup_gas(self, mech): |
| 344 | gas = ct.Solution(mech) |
| 345 | self.X0 = 1 + np.sin(range(1, gas.n_species + 1)) |
| 346 | self.X1 = 1 + np.sin(range(2, gas.n_species + 2)) |
| 347 | return gas |
| 348 | |
| 349 | def check_rates_composition(self, mech): |
| 350 | gas = self.setup_gas(mech) |
no test coverage detected