Using pyBaMM for modeling supercapacitors #2912
Replies: 5 comments
-
I am not hugely familiar with cyclic voltammetry but it sounds doable. How do you solve the model (or perform the experiment) to generate the above plot? Just a triangular current profile? |
Beta Was this translation helpful? Give feedback.
-
Sorry I should have added details on that. A cyclic voltammetry is simple an applied voltage that increases/decreases with time until a certain threshold/zero voltage is reached and then repeat. So yes, a triangular current profile. Any ideas of what do add to the modeling equations to capture the bottom slanted line? My current modeling equation is where |
Beta Was this translation helpful? Give feedback.
-
Would be great to have a special |
Beta Was this translation helpful? Give feedback.
-
I am not super familiar with supercapacitors, but aren't they sometimes modelled similarly to batteries, just with an additional capacitance term which, for supercaps, is dominant? |
Beta Was this translation helpful? Give feedback.
-
I use pybamm to model cyclic voltammetry and other similar input voltage waveforms (like Fourier transformed large amplitude AC voltammetry). A special Edc_forward = -pybamm.t
Edc_backwards = pybamm.t - 2*t_reverse
Eapp = E_start + \
(pybamm.t <= t_reverse) * Edc_forward + \
(pybamm.t > t_reverse) * Edc_backwards |
Beta Was this translation helpful? Give feedback.
-
I am interested in modeling a supercapacitor whose cyclic voltammetry is as follows:
I am able to capture the overall shape with a simple heat equation and effective properties through Bruggeman, but the bottom slanted line remains elusive. I have been told that it could be due to side reactions or leakage resistance. Can pyBaMM be applied for this type of models? Apologies if this is not the right place for user questions.
Beta Was this translation helpful? Give feedback.
All reactions