Replies: 1 comment 2 replies
-
We set the reference potential to be zero at the interface between the negative current collector and electrode, which is why the negative electrode potential is always close to zero. You can look at the OCPs of each electrode by looking at the variables "Negative electrode open circuit potential [V]" and "Positive electrode open circuit potential [V]". You can also look at the potential difference between the electrolyte and electrode at the separator interface by looking at the variables "Negative electrode surface potential difference at separator interface [V]" and "Positive electrode surface potential difference at separator interface [V]", which might be of interest too. FYI you can do model.variables.search("string") to search for variables. See #3254 |
Beta Was this translation helpful? Give feedback.
-
Hi when I look at the negative potentials for my own and even standard parameter sets the negative electrode potentials are strange in shape and are extremely low (10^-5) but the positive electrode potential makes sense. What is the reason for this?
See below for standard 1C discharge of Chen2020 parameter set:
My code:
`
import pybamm
from Chen2020 import parameter_values
hrs = 10
dt = 10
sec_h = 3600
secs = hrs * sec_h
pts = int(secs/dt)
t_eval = np.linspace(0, secs, pts)
dt_max = 1
Crates = [1]
for i in Crates:
Thank you for your help
Beta Was this translation helpful? Give feedback.
All reactions