(self)
| 71 | assert system.convert_to(4, ct.Units("m")) == 4 |
| 72 | |
| 73 | def test_convert_activation_energy(self): |
| 74 | system = ct.UnitSystem() |
| 75 | assert system.convert_activation_energy_to("3 J/mol", "J/kmol") == 3000 |
| 76 | assert system.convert_activation_energy_to(4, "J/mol") == 0.004 |
| 77 | |
| 78 | def test_convert_rate_coeff(self): |
| 79 | system = ct.UnitSystem({"length": "cm"}) |
nothing calls this directly
no test coverage detected