-
-
Notifications
You must be signed in to change notification settings - Fork 568
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
Issue 573 implement LGM50 #854
Issue 573 implement LGM50 #854
Conversation
…brosa/PyBaMM into issue-573-implement-LGM50
…brosa/PyBaMM into issue-573-implement-LGM50
…brosa/PyBaMM into issue-573-implement-LGM50
Codecov Report
@@ Coverage Diff @@
## master #854 +/- ##
=========================================
Coverage ? 98.24%
=========================================
Files ? 180
Lines ? 10277
Branches ? 0
=========================================
Hits ? 10097
Misses ? 180
Partials ? 0
Continue to review full report at Codecov.
|
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.
looks great thanks @ferranbrosa ! just a few minor comments
diffusivity is taken to be a constant. The value is taken from [1]. | ||
References | ||
---------- | ||
.. [1] Work in progress |
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.
is this the paper in the readme? info could be added here if so
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.
Done!
Reaction rate for Butler-Volmer reactions between graphite and LiPF6 in EC:DMC. | ||
References | ||
---------- | ||
.. [1] Work in progress |
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.
as above
+ (0.0155 / (0.029 * c_n_max)) * ((cosh((sto - 0.105) / 0.029)) ** (-2)) | ||
) | ||
|
||
return du_dT * 0 |
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.
you should just be able to return 0*sto (and remove the unnecessary function for du_dT), or alternatively just set this to be zero in the .csv instead of a [function] and it should work too. the latter is probably cleaner
"cathode": "nmc_Chen2020", | ||
"electrolyte": "lipf6_Nyman2008", | ||
"experiment": "1C_discharge_from_full_Chen2020", | ||
} |
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.
take a look at the latest master (see PR #818)-- you can add a reference here so people know to cite your paper if they use your parameter set
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.
I talked to @tinosulzer and he said he would do so after the PR is merged.
Codecov Report
@@ Coverage Diff @@
## master #854 +/- ##
=========================================
Coverage ? 98.24%
=========================================
Files ? 180
Lines ? 10277
Branches ? 0
=========================================
Hits ? 10097
Misses ? 180
Partials ? 0
Continue to review full report at Codecov.
|
1 similar comment
Codecov Report
@@ Coverage Diff @@
## master #854 +/- ##
=========================================
Coverage ? 98.24%
=========================================
Files ? 180
Lines ? 10277
Branches ? 0
=========================================
Hits ? 10097
Misses ? 180
Partials ? 0
Continue to review full report at Codecov.
|
Thanks @ferranbrosa , looks great! Merging |
Description
Addition of the LGM50 parameter set from
Fixes #573
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: