Skip to content

Commit e893156

Browse files
authored
fix bug with bulk ocp lithiation (#5280)
1 parent 6ba2cde commit e893156

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pybamm/models/submodels/interface/open_circuit_potential/base_hysteresis_ocp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def _get_coupled_variables(self, variables):
8484
U_eq = self.phase_param.U(sto_surf, T)
8585
U_eq_x_av = self.phase_param.U(sto_surf, T)
8686
U_lith = self.phase_param.U(sto_surf, T, "lithiation")
87-
U_lith_bulk = self.phase_param.U(sto_bulk, T_bulk)
87+
U_lith_bulk = self.phase_param.U(sto_bulk, T_bulk, "lithiation")
8888
U_delith = self.phase_param.U(sto_surf, T, "delithiation")
8989
U_delith_bulk = self.phase_param.U(sto_bulk, T_bulk, "delithiation")
9090

0 commit comments

Comments
 (0)