We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3660162 commit 3c30f50Copy full SHA for 3c30f50
tests/unit/test_models/test_full_battery_models/test_lithium_ion/test_mpm.py
@@ -60,6 +60,11 @@ def test_differential_surface_form(self):
60
model = pybamm.lithium_ion.MPM(options)
61
model.check_well_posedness()
62
63
+ def test_current_sigmoid(self):
64
+ options = {"open circuit potential": "current sigmoid"}
65
+ model = pybamm.lithium_ion.MPM(options)
66
+ model.check_well_posedness()
67
+
68
def test_necessary_options(self):
69
options = {"particle size": "single"}
70
with self.assertRaises(pybamm.OptionError):
0 commit comments