How can I changed the exchange-current density #1733
Answered
by
brosaplanella
AmadeusTina
asked this question in
Q&A
-
Hi, everyone. |
Beta Was this translation helpful? Give feedback.
Answered by
brosaplanella
Oct 11, 2021
Replies: 1 comment 1 reply
-
Hi! You need to define it as a Python function of this form (with this particular inputs) def your_electrolyte_exchange_current_density(c_e, c_s_surf, T): and then you can pass your function to the parameters dictionary doing param["Positive electrode exchange-current density [A.m-2]"] = exchange_current_density (or with the negative one if that's the one you want to change. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
brosaplanella
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi! You need to define it as a Python function of this form (with this particular inputs)
and then you can pass your function to the parameters dictionary doing
(or with the negative one if that's the one you want to change.