(self)
| 1787 | return r, rsurf, sim |
| 1788 | |
| 1789 | def test_advance_reverse(self): |
| 1790 | surf, gas = self.import_phases() |
| 1791 | gas.TPX = 1500, 4000, 'NH3:1.0, SiF4:0.4' |
| 1792 | r, rsurf, sim = self.make_reactors(gas, surf) |
| 1793 | |
| 1794 | sim.advance(0.1) |
| 1795 | with pytest.raises(ct.CanteraError, match="backwards in time"): |
| 1796 | sim.advance(0.09) |
| 1797 | |
| 1798 | def test_no_mass_flow_rate(self): |
| 1799 | surf, gas = self.import_phases() |
nothing calls this directly
no test coverage detected