-
-
Notifications
You must be signed in to change notification settings - Fork 607
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug fix: added SEI on cracks to total_kinetics.py #2262
Conversation
It's to keep you on your toes |
Codecov Report
@@ Coverage Diff @@
## develop #2262 +/- ##
========================================
Coverage 99.40% 99.40%
========================================
Files 364 364
Lines 20021 20034 +13
========================================
+ Hits 19901 19914 +13
Misses 120 120
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Wouldn't it be easier to put the roughness variable into the SEI current? I'm just thinking about conservation of lithium with this approach (we need to check conservation of lithium under side reactions more carefully) |
You would think so, but the fundamental variable for SEI - including on cracks - is thickness, not concentration, so multiplying by roughness would give the wrong SEI thickness, which matters a lot in the diffusion-limited cases. There are three places where I've deemed it necessary to multiply by roughness:
The only way to make it less confusing that I can think of is to change the fundamental variable to concentration instead of thickness. |
So is concentration not always directly proportional to thickness? If not, what is the equation that relates thickness and concentration in the general case? |
n_inner_cr = L_inner_cr * (roughness - 1) # inner SEI cracks concentration |
In that case it would be cleaner to have the fundamental variable be concentration (and for lithium plating too). Could you try this? It shouldn't be too difficult. |
I started to code this before realizing that the conversion between the two depends on the surface area to volume ratio. This matters because the initial condition is (a) given in metres, not mol.m-3 and (b) not zero. Whereas for plating there is no distiction between concentration and thickness, because the initial condition tends to be zero. I could change it so the initial condition is defined as a concentration, but that would be a breaking change that would render all previous results obtained using PyBaMM irreproducible unless the initial conditions were adjusted by performing the conversion manually, and not all users will know how to do this. |
Could you calculate the initial concentration based on the initial thickness? We know the initial surface area to volume ratio, even as a function of x. |
I could do that next week. To be honest, the initial SEI concentration should be part of the cell balancing process. That's beyond the scope of this PR, but making concentration the fundamental variable is a stepping stone that will make it possible in the future. |
Hi all, I've swapped the SEI concentration and thickness so that concentration is now the fundamental variable, but the tests reveal two bugs:
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, will merge once tests pass
Description
Previously, the loop in total_kinetics.py did not include the SEI on cracks reaction, so the SEI on cracks did not actually remove any lithium from the system. This has now been fixed.
Type of change
Please add a line in the relevant section of CHANGELOG.md to document the change (include PR #) - note reverse order of PR #s. If necessary, also add to the list of breaking changes.
Key checklist:
$ flake8
$ python run-tests.py --unit
$ cd docs
and then$ make clean; make html
You can run all three at once, using
$ python run-tests.py --quick
.Further checks: