File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -689,7 +689,7 @@ cdef class ArrheniusBM(KineticsModel):
689689 # fill in parameters
690690 A_units = [' ' , ' s^-1' , ' m^3/(mol*s)' , ' m^6/(mol^2*s)' ]
691691 order = len (rxns[0 ].reactants)
692- if order != 1 and rxn.is_surface_reaction:
692+ if order != 1 and rxn.is_surface_reaction() :
693693 raise NotImplementedError (" Units not implemented for surface reactions." )
694694 self .A = (A, A_units[order])
695695
@@ -1626,7 +1626,7 @@ cdef class ArrheniusChargeTransferBM(KineticsModel):
16261626 # fill in parameters
16271627 A_units = [' ' , ' s^-1' , ' m^3/(mol*s)' , ' m^6/(mol^2*s)' ]
16281628 order = len (rxns[0 ].reactants)
1629- if order != 1 and rxn.is_surface_reaction:
1629+ if order != 1 and rxn.is_surface_reaction() :
16301630 raise NotImplementedError (" Units not implemented for surface reactions" )
16311631 self .A = (A, A_units[order])
16321632
You can’t perform that action at this time.
0 commit comments