From 8464e2043009de103be303a598000321c22dc983 Mon Sep 17 00:00:00 2001 From: JacksonBurns Date: Tue, 28 Jan 2025 12:51:30 -0500 Subject: [PATCH] efficiencies attribute has moved --- rmgpy/kinetics/falloff.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rmgpy/kinetics/falloff.pyx b/rmgpy/kinetics/falloff.pyx index 192833090a..2e5cef84d0 100644 --- a/rmgpy/kinetics/falloff.pyx +++ b/rmgpy/kinetics/falloff.pyx @@ -226,7 +226,7 @@ cdef class Lindemann(PDepKineticsModel): """ import cantera as ct assert isinstance(ct_reaction.rate, ct.LindemannRate), "Must have a Cantera LindemannRate attribute" - ct_reaction.efficiencies = PDepKineticsModel.get_cantera_efficiencies(self, species_list) + ct_reaction.third_body.efficiencies = PDepKineticsModel.get_cantera_efficiencies(self, species_list) ct_reaction.rate = self.to_cantera_kinetics()