Skip to content

Commit

Permalink
Merge pull request #3635 from XuboGU/develop
Browse files Browse the repository at this point in the history
fix a value error in function `electrolyte_diffusivity_Ai2020` in `Ai2020.py`
  • Loading branch information
valentinsulzer authored Dec 19, 2023
2 parents 96e13f1 + 96b0886 commit b32acfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pybamm/input/parameters/lithium_ion/Ai2020.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ def electrolyte_diffusivity_Ai2020(c_e, T):
Solid diffusivity
"""

D_c_e = 10 ** (-8.43 - 54 / (T - 229 - 5e-3 * c_e) - 0.22e-3 * c_e)
D_c_e = 10 ** (-4.43 - 54 / (T - 229 - 5e-3 * c_e) - 0.22e-3 * c_e)

return D_c_e

Expand Down

0 comments on commit b32acfe

Please sign in to comment.