-
-
Notifications
You must be signed in to change notification settings - Fork 690
Change fundamental SEI variable from thickness to concentration: attempt 2 #4869
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
Changes from 33 commits
8462010
a57f516
3a18d62
be55ba0
5d7a89c
3dc8c53
1acde17
8aad2ef
fd229e0
bbe7eaf
031cba4
fae6a70
819a0c4
b003988
95b3b1a
2b5fdf0
d9455f3
ed3feae
1fc07d3
c0f8ba8
c4858f7
cf652a0
c28351e
b5c63ad
7962766
4e99f94
8bb9951
880c355
b618798
b653bf1
43f490a
019e430
fbb65cc
94ba0f2
fd27c7c
7930b68
73eb376
c6db6c9
50fb6a0
ef0a19d
c3a8aa0
d224d31
fbc422f
e3ebf5d
bbc740c
c9fff0d
573ac67
6ca03d6
06d8f56
69475fa
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -368,15 +368,15 @@ def SEI_limited_dead_lithium_OKane2022(L_sei): | |
Parameters | ||
---------- | ||
L_sei : :class:`pybamm.Symbol` | ||
Total SEI thickness [m] | ||
SEI thickness [m] | ||
Returns | ||
------- | ||
:class:`pybamm.Symbol` | ||
Dead lithium decay rate [s-1] | ||
""" | ||
|
||
gamma_0 = pybamm.Parameter("Dead lithium decay constant [s-1]") | ||
L_sei_0 = pybamm.Parameter("Initial SEI thickness [m]") | ||
L_sei_0 = pybamm.Scalar(5e-9) | ||
|
||
|
||
gamma = gamma_0 * L_sei_0 / L_sei | ||
|
||
|
@@ -522,7 +522,7 @@ def get_parameter_values(): | |
"SEI electron conductivity [S.m-1]": 8.95e-14, | ||
"SEI lithium interstitial diffusivity [m2.s-1]": 1e-20, | ||
"Lithium interstitial reference concentration [mol.m-3]": 15.0, | ||
"Initial SEI thickness [m]": 5e-09, | ||
"Initial SEI concentration [mol.m-3]": 38.34, | ||
"EC initial concentration in electrolyte [mol.m-3]": 4541.0, | ||
"EC diffusivity [m2.s-1]": 2e-18, | ||
"SEI kinetic rate constant [m.s-1]": 1e-12, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,15 +79,15 @@ def SEI_limited_dead_lithium_OKane2022(L_sei): | |
Parameters | ||
---------- | ||
L_sei : :class:`pybamm.Symbol` | ||
Total SEI thickness [m] | ||
SEI thickness [m] | ||
Returns | ||
------- | ||
:class:`pybamm.Symbol` | ||
Dead lithium decay rate [s-1] | ||
""" | ||
|
||
gamma_0 = pybamm.Parameter("Dead lithium decay constant [s-1]") | ||
L_sei_0 = pybamm.Parameter("Initial SEI thickness [m]") | ||
L_sei_0 = pybamm.Scalar(5e-9) | ||
|
||
|
||
gamma = gamma_0 * L_sei_0 / L_sei | ||
|
||
|
@@ -522,7 +522,7 @@ def get_parameter_values(): | |
"Dead lithium decay constant [s-1]": 1e-06, | ||
"Dead lithium decay rate [s-1]": SEI_limited_dead_lithium_OKane2022, | ||
# sei | ||
"Ratio of lithium moles to SEI moles": 1.0, | ||
"Ratio of lithium moles to SEI moles": 1.0, # not physical but true to paper | ||
"SEI partial molar volume [m3.mol-1]": 9.585e-05, | ||
"SEI reaction exchange current density [A.m-2]": 1.5e-07, | ||
"SEI resistivity [Ohm.m]": 200000.0, | ||
|
@@ -532,8 +532,8 @@ def get_parameter_values(): | |
"SEI electron conductivity [S.m-1]": 8.95e-14, | ||
"SEI lithium interstitial diffusivity [m2.s-1]": 1e-20, | ||
"Lithium interstitial reference concentration [mol.m-3]": 15.0, | ||
"Initial SEI thickness [m]": 5e-09, | ||
"Initial SEI on cracks thickness [m]": 5e-13, # avoid division by zero | ||
"Initial SEI concentration [mol.m-3]": 20.03, | ||
"Initial SEI on cracks concentration [mol.m-3]": 0.002003, | ||
"EC initial concentration in electrolyte [mol.m-3]": 4541.0, | ||
"EC diffusivity [m2.s-1]": 2e-18, | ||
"SEI kinetic rate constant [m.s-1]": 1e-12, | ||
|
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.
Just a note for later, this needs to be moved up to a current release