(self, input=None)
| 187 | return self.finalize(self._cls(**self._parts)) |
| 188 | |
| 189 | def from_input(self, input=None): |
| 190 | # create reaction rate object from input_data |
| 191 | if input is None: |
| 192 | input = self._input |
| 193 | else: |
| 194 | assert isinstance(input, dict) |
| 195 | return self.finalize(self._cls(input_data=input)) |
| 196 | |
| 197 | def from_yaml(self): |
| 198 | # create reaction rate object from yaml |
no test coverage detected