Skip to content

Commit c42c309

Browse files
#1547 changelog
1 parent b3d25b2 commit c42c309

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
## Bug fixes
2929

30+
- Fixed ElectrodeSOH model for multi-dimensional simulations ([#1548](https://github.com/pybamm-team/PyBaMM/pull/1548))
3031
- Removed the overly-restrictive check "each variable in the algebraic eqn keys must appear in the eqn" ([#1510](https://github.com/pybamm-team/PyBaMM/pull/1510))
3132
- Made parameters importable through pybamm ([#1475](https://github.com/pybamm-team/PyBaMM/pull/1475))
3233

pybamm/solvers/solution.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ def get_cycle_summary_variables(cycle_solution, esoh_sim):
746746
},
747747
solver=solver,
748748
)
749-
except pybamm.SolverError:
749+
except pybamm.SolverError: # pragma: no cover
750750
raise pybamm.SolverError(
751751
"Could not solve for summary variables, run "
752752
"`sim.solve(calc_esoh=False)` to skip this step"

0 commit comments

Comments
 (0)