diff --git a/pybamm/models/full_battery_models/lithium_ion/basic_dfn_half_cell.py b/pybamm/models/full_battery_models/lithium_ion/basic_dfn_half_cell.py index f50abde2ee..42fd33d61a 100644 --- a/pybamm/models/full_battery_models/lithium_ion/basic_dfn_half_cell.py +++ b/pybamm/models/full_battery_models/lithium_ion/basic_dfn_half_cell.py @@ -37,7 +37,7 @@ def __init__( name="Doyle-Fuller-Newman half cell model", options={"working electrode": None}, ): - super().__init__(options, name) + super().__init__({}, name) pybamm.citations.register("marquis2019asymptotic") # `param` is a class containing all the relevant parameters and functions for # this model. These are purely symbolic at this stage, and will be set by the @@ -50,7 +50,7 @@ def __init__( "or 'negative'" ) - # self.options.update(options) + self.options.update(options) working_electrode = options["working electrode"] ######################