We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cb7cf0 commit 99ccde2Copy full SHA for 99ccde2
tests/unit/test_models/test_submodels/test_electrolyte_diffusion/test_constant_concentration.py
@@ -11,7 +11,13 @@ class TestConstantConcentration(unittest.TestCase):
11
def test_public_functions(self):
12
param = pybamm.LithiumIonParameters()
13
a = pybamm.Scalar(0)
14
- variables = {"Porosity": a, "Electrolyte concentration": a}
+ variables = {
15
+ "Porosity": a,
16
+ "Negative electrode porosity": a,
17
+ "Separator porosity": a,
18
+ "Positive electrode porosity": a,
19
+ "Electrolyte concentration": a,
20
+ }
21
submodel = pybamm.electrolyte_diffusion.ConstantConcentration(param)
22
std_tests = tests.StandardSubModelTests(submodel, variables)
23
std_tests.test_all()
0 commit comments