diff --git a/interfaces/cython/cantera/onedim.pyx b/interfaces/cython/cantera/onedim.pyx index 4ce022c2a..68d0255e2 100644 --- a/interfaces/cython/cantera/onedim.pyx +++ b/interfaces/cython/cantera/onedim.pyx @@ -288,9 +288,10 @@ cdef class ReactingSurface1D(Boundary1D): 'InterfaceKinetics.') self.surf.setKineticsMgr(kin.kinetics) - def enable_coverage_equations(self, on=True): - """ Turn solving the surface coverage equations on or off. """ - self.surf.enableCoverageEquations(on) + property coverage_enabled: + """Controls whether or not to solve the surface coverage equations.""" + def __set__(self, value): + self.surf.enableCoverageEquations(value) cdef class _FlowBase(Domain1D):