(self)
| 1877 | assert sim.solver_stats['steps'] == 13 |
| 1878 | |
| 1879 | def test_independent_variable(self): |
| 1880 | surf, gas = self.import_phases() |
| 1881 | r, rsurf, sim = self.make_reactors(gas, surf) |
| 1882 | with pytest.raises(ct.CanteraError, match="independent variable"): |
| 1883 | sim.time |
| 1884 | |
| 1885 | assert sim.distance == 0.0 |
| 1886 | |
| 1887 | def test_max_time_step(self): |
| 1888 | surf, gas = self.import_phases() |
nothing calls this directly
no test coverage detected