Replies: 1 comment 1 reply
-
Hi, some ageing mechanisms must be enabled to make the cell degrade, for example: |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I tried these three ways of doing it with default model and parameters and SPM:
capacity_fade_val[i] = (solution.summary_variables["Measured capacity [A.h]"][0] - solution.summary_variables["Measured capacity [A.h]"][-1]) / solution.summary_variables["Measured capacity [A.h]"][0]
capacity_fade_val[i] = (param["Nominal cell capacity [A.h]"] -(p+n)) / param["Nominal cell capacity [A.h]"]
where p and n are:
p = solution.summary_variables['Positive electrode capacity [A.h]'][-1]
n = solution.summary_variables['Negative electrode capacity [A.h]'][-1]
capacity_fade_val[i] = (param["Nominal cell capacity [A.h]"] - solution.summary_variables['Total capacity lost to side reactions [A.h]'][-1]) / param["Nominal cell capacity [A.h]"]
but 1 and 2 result in negative values with a discharge (till 3.3 V) and charge (till 4.1 V) experiment, while 3 results in all 1's, i.e. without any losses. What should I do?
Beta Was this translation helpful? Give feedback.
All reactions