-
-
Notifications
You must be signed in to change notification settings - Fork 566
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#834 correcting errors on reaction limited model
- Loading branch information
1 parent
f76e200
commit ac61e40
Showing
12 changed files
with
196 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import pybamm as pb | ||
|
||
pb.set_logging_level("DEBUG") | ||
pb.settings.debug_mode = True | ||
|
||
options = {"sei": "reaction limited"} | ||
model = pb.lithium_ion.DFN(options) | ||
|
||
sim = pb.Simulation(model) | ||
|
||
solver = pb.CasadiSolver(mode="safe") | ||
sim.solve(solver=solver) | ||
sim.plot(["Terminal voltage [V]", "Total SEI thickness [m]"]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# SEI parameters | ||
|
||
Some example parameters for SEI growth from the papers: | ||
|
||
> Ramadass, P., Haran, B., Gomadam, P. M., White, R., & Popov, B. N. (2004). Development of first principles capacity fade model for Li-ion cells. Journal of the Electrochemical Society, 151(2), A196-A203. | ||
> Ploehn, H. J., Ramadass, P., & White, R. E. (2004). Solvent diffusion model for aging of lithium-ion battery cells. Journal of The Electrochemical Society, 151(3), A456-A462. | ||
> Single, F., Latz, A., & Horstmann, B. (2018). Identifying the mechanism of continued growth of the solid–electrolyte interphase. ChemSusChem, 11(12), 1950-1955. | ||
Note: this parameter set does not claim to be representative of the true parameter values. Instead these are parameter values that were used to fit SEI models to observed experimental data in the referenced papers. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Name [units],Value,Reference,Notes | ||
# Empty rows and rows starting with ‘#’ will be ignored,,, | ||
,,, | ||
# SEI properties,,, | ||
Inner SEI reaction proportion,0.5,, | ||
Inner SEI partial molar volume [m3.mol-1],95.86E-18, use same value, | ||
Outer SEI partial molar volume [m3.mol-1],95.86E-18, use same value, | ||
SEI reaction exchange current density [A.m-2],1.5E-6, Ramadass paper, | ||
SEI resistance per unit thickness [Ohm.m-1],1,Ramadass paper, | ||
Outer SEI solvent diffusivity [m2.s-1],2.5E-22,Single paper, | ||
Bulk solvent concentration [mol.m-3],2.636E3, Ploehn paper, | ||
Ratio of inner and outer SEI exchange current densities,1, Assume same, | ||
Inner SEI open-circuit potential [V],0.1,, | ||
Outer SEI open-circuit potential [V],0.8,, | ||
Inner SEI electron conducticity [S.m-1],8.95E-14, Single paper, | ||
Inner SEI lithium interstitial diffusivity [m2.s-1],1E-15, Single paper, | ||
Lithium interstitial reference concentration [mol.m-3],15, Single paper, | ||
Initial inner SEI thickness [m], 7.5E-9, 1/2 of initial thickness in Single paper, | ||
Initial outer SEI thickness [m], 7.5E-9, 1/2 of initial thickness in Single paper, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
from .base_sei import BaseModel | ||
from .reaction_limited import ReactionLimited |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters