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):
689
689
# fill in parameters
690
690
A_units = [' ' , ' s^-1' , ' m^3/(mol*s)' , ' m^6/(mol^2*s)' ]
691
691
order = len (rxns[0 ].reactants)
692
- if order != 1 and rxn.is_surface_reaction:
692
+ if order != 1 and rxn.is_surface_reaction() :
693
693
raise NotImplementedError (" Units not implemented for surface reactions." )
694
694
self .A = (A, A_units[order])
695
695
@@ -1626,7 +1626,7 @@ cdef class ArrheniusChargeTransferBM(KineticsModel):
1626
1626
# fill in parameters
1627
1627
A_units = [' ' , ' s^-1' , ' m^3/(mol*s)' , ' m^6/(mol^2*s)' ]
1628
1628
order = len (rxns[0 ].reactants)
1629
- if order != 1 and rxn.is_surface_reaction:
1629
+ if order != 1 and rxn.is_surface_reaction() :
1630
1630
raise NotImplementedError (" Units not implemented for surface reactions" )
1631
1631
self .A = (A, A_units[order])
1632
1632
You can’t perform that action at this time.
0 commit comments