We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5161797 commit 72b25adCopy full SHA for 72b25ad
arc/statmech/arkane.py
@@ -289,7 +289,10 @@ def compute_high_p_rate_coefficient(self,
289
logger.error(f'Failed to generate kinetics for {self.reaction.label}, got:\n{e}')
290
success = False
291
if success:
292
- self.reaction.kinetics = kinetics_job.reaction.kinetics
+ self.reaction.kinetics = {'A': kinetics_job.reaction.kinetics.A.value,
293
+ 'n': kinetics_job.reaction.kinetics.n.value,
294
+ 'Ea': kinetics_job.reaction.kinetics.Ea.value,
295
+ }
296
plotter.log_kinetics(ts_species.label, path=arkane_output_path)
297
298
# Initialize the Arkane species_dict in case another reaction uses the same species.
0 commit comments