Regarding Capacity degradation #2450
-
I am trying to simulate the lithium ion battery with my parameters.
The capacity is increasing initially and then decreasing. |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 2 replies
-
Can you provide a minimum working example to reproduce this behaviour? |
Beta Was this translation helpful? Give feedback.
-
I am trying to simulate the example code given for long experiments,
I am trying to run the above mentioned code in the local system with latest version of pybamm, but I am getting the error as mentioned below
|
Beta Was this translation helpful? Give feedback.
-
Which PyBaMM version are you using? You can print it by running the following commands: import pybamm
print(pybamm.__version__) |
Beta Was this translation helpful? Give feedback.
-
This relates to a breaking change in v22.8 (this PR), where the domains in the parameters are now nested: |
Beta Was this translation helpful? Give feedback.
-
Regarding above mentioned issue, The Loss of capacity is increasing, but capacity is not decreasing.
Even though the loss of capacity is very less, it should reflect in the capacity loss, or I am missing something very important in including in degradation model. |
Beta Was this translation helpful? Give feedback.
-
This issue is similar to the issue in #2472. |
Beta Was this translation helpful? Give feedback.
This relates to a breaking change in v22.8 (this PR), where the domains in the parameters are now nested:
param.c_n_max
should now beparam.n.prim.c_max
,param.C_n_init
should beparam.n.cap_init
, and so on...