(self)
| 1115 | return self.finalize(rxn) |
| 1116 | |
| 1117 | def from_empty(self): |
| 1118 | # create reaction object with an "empty" rate of the correct type |
| 1119 | rxn = ct.Reaction(equation=self._equation, |
| 1120 | rate=self._rate_cls(), third_body=self._3rd_body) |
| 1121 | return self.finalize(rxn) |
| 1122 | |
| 1123 | def from_rate(self, rate): |
| 1124 | # create reaction object from dictionary |
no test coverage detected