Skip to content

Commit

Permalink
pybamm-team#983 fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
brosaplanella committed Aug 3, 2020
1 parent 6c9ccd6 commit 40d49d6
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ def test_spm_well_posed(self):
copy.check_well_posedness()

def test_dfn_half_cell_well_posed(self):
options = {"working electrode": "cathode"}
options = {"working electrode": "positive"}
model = pybamm.lithium_ion.BasicDFNHalfCell(options=options)
model.check_well_posedness()

copy = model.new_copy()
copy.check_well_posedness()
# copy = model.new_copy()
# copy.check_well_posedness()

# options = {"working electrode": "anode"}
# model = pybamm.lithium_ion.BasicDFNHalfCell(options=options)
# model.check_well_posedness()
options = {"working electrode": "negative"}
model = pybamm.lithium_ion.BasicDFNHalfCell(options=options)
model.check_well_posedness()

# copy = model.new_copy()
# copy.check_well_posedness()
Expand Down

0 comments on commit 40d49d6

Please sign in to comment.