Are there any problems with the OKane2022 parameter set, or is there something wrong with my simulation experiment settings? #2245
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
@DrSOKane, what are your thoughts on this? |
Beta Was this translation helpful? Give feedback.
-
Hi Robin, I recommend disabling cracking in the positive electrode, because there aren't actually any degradation mechanisms associated wit it so you're just wasting computational power. You can do this by setting your options to be option={ If you're using the stress-driven loss of active material model, you should set option={ instead. In pull request #2262 I've modified the code so it does both of these automatically and you don't need to set the "particle mechanics" option at all (but you still can if you wish). I also strongly recommend setting "SEI porosity change" to "true" if you're modelling SEI on cracks. Sorry about the slow response: I had found a different bug with the SEI on cracks, where the loss of lithium inventory variable was being incremented but the lithium wasn't actually going anywhere. A partial fix for this has already been implemented: the full fix is in pull request #2262. |
Beta Was this translation helpful? Give feedback.
Hi Robin,
I recommend disabling cracking in the positive electrode, because there aren't actually any degradation mechanisms associated wit it so you're just wasting computational power. You can do this by setting your options to be
option={
"SEI":"solvent-diffusion limited",
"particle mechanics": ("swelling and cracking", "none"),
"SEI on cracks": "true",
}
If you're using the stress-driven loss of active material model, you should set
option={
"SEI":"solvent-diffusion limited",
"particle mechanics": ("swelling and cracking", "swelling only"),
"SEI on cracks": "true",
"loss of active material": "stress-driven",
}
instead. In pull request #2262 I've modified the code so it does both of th…