-
-
Notifications
You must be signed in to change notification settings - Fork 573
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3934ad4
commit d878763
Showing
59 changed files
with
270 additions
and
503 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
19 changes: 8 additions & 11 deletions
19
...ut/parameters/lithium-ion/anodes/graphite_Chen2020/graphite_LGM50_diffusivity_Chen2020.py
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 |
---|---|---|
@@ -1,35 +1,32 @@ | ||
from pybamm import exp | ||
from pybamm import exp, constants | ||
|
||
|
||
def graphite_LGM50_diffusivity_Chen2020(sto, T, T_inf, E_D_s, R_g): | ||
def graphite_LGM50_diffusivity_Chen2020(sto, T): | ||
""" | ||
LG M50 Graphite diffusivity as a function of stochiometry, in this case the | ||
diffusivity is taken to be a constant. The value is taken from [1]. | ||
References | ||
---------- | ||
.. [1] Chang-Hui Chen, Ferran Brosa Planella, Kieran O’Regan, Dominika Gastol, W. | ||
Dhammika Widanage, and Emma Kendrick. "Development of Experimental Techniques for | ||
Parameterization of Multi-scale Lithium-ion Battery Models." Submitted for | ||
publication (2020). | ||
Parameters | ||
---------- | ||
sto: :class: `numpy.Array` | ||
sto: :class:`pybamm.Symbol` | ||
Electrode stochiometry | ||
T: :class: `numpy.Array` | ||
T: :class:`pybamm.Symbol` | ||
Dimensional temperature | ||
T_inf: double | ||
Reference temperature | ||
E_D_s: double | ||
Solid diffusion activation energy | ||
R_g: double | ||
The ideal gas constant | ||
Returns | ||
------- | ||
: double | ||
Solid diffusivity | ||
""" | ||
|
||
D_ref = 3.3e-14 | ||
arrhenius = exp(E_D_s / R_g * (1 / T_inf - 1 / T)) | ||
arrhenius = exp(42770 / constants.R * (1 / 298.15 - 1 / T)) | ||
|
||
return D_ref * arrhenius |
19 changes: 8 additions & 11 deletions
19
...lithium-ion/anodes/graphite_Chen2020/graphite_LGM50_electrolyte_reaction_rate_Chen2020.py
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 |
---|---|---|
@@ -1,32 +1,29 @@ | ||
from pybamm import exp | ||
from pybamm import exp, constants | ||
|
||
|
||
def graphite_LGM50_electrolyte_reaction_rate_Chen2020(T, T_inf, E_r, R_g): | ||
def graphite_LGM50_electrolyte_reaction_rate_Chen2020(T): | ||
""" | ||
Reaction rate for Butler-Volmer reactions between graphite and LiPF6 in EC:DMC. | ||
References | ||
---------- | ||
.. [1] Chang-Hui Chen, Ferran Brosa Planella, Kieran O’Regan, Dominika Gastol, W. | ||
Dhammika Widanage, and Emma Kendrick. "Development of Experimental Techniques for | ||
Parameterization of Multi-scale Lithium-ion Battery Models." Submitted for | ||
publication (2020). | ||
Parameters | ||
---------- | ||
T: :class: `numpy.Array` | ||
T: :class:`pybamm.Symbol` | ||
Dimensional temperature | ||
T_inf: double | ||
Reference temperature | ||
E_r: double | ||
Reaction activation energy | ||
R_g: double | ||
The ideal gas constant | ||
Returns | ||
------- | ||
:`numpy.Array` | ||
:class:`pybamm.Symbol` | ||
Reaction rate | ||
""" | ||
|
||
m_ref = 6.48e-7 | ||
arrhenius = exp(E_r / R_g * (1 / T_inf - 1 / T)) | ||
arrhenius = exp(3500 / constants.R * (1 / 298.15 - 1 / T)) | ||
|
||
return m_ref * arrhenius |
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
47 changes: 21 additions & 26 deletions
47
pybamm/input/parameters/lithium-ion/anodes/graphite_Kim2011/graphite_diffusivity_Kim2011.py
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 |
---|---|---|
@@ -1,37 +1,32 @@ | ||
from pybamm import exp | ||
from pybamm import exp, constants | ||
|
||
|
||
def graphite_diffusivity_Kim2011(sto, T, T_inf, E_D_s, R_g): | ||
def graphite_diffusivity_Kim2011(sto, T): | ||
""" | ||
Graphite diffusivity [1]. | ||
Graphite diffusivity [1]. | ||
References | ||
---------- | ||
.. [1] Kim, G. H., Smith, K., Lee, K. J., Santhanagopalan, S., & Pesaran, A. | ||
(2011). Multi-domain modeling of lithium-ion batteries encompassing | ||
multi-physics in varied length scales. Journal of The Electrochemical | ||
Society, 158(8), A955-A969. | ||
References | ||
---------- | ||
.. [1] Kim, G. H., Smith, K., Lee, K. J., Santhanagopalan, S., & Pesaran, A. | ||
(2011). Multi-domain modeling of lithium-ion batteries encompassing | ||
multi-physics in varied length scales. Journal of The Electrochemical | ||
Society, 158(8), A955-A969. | ||
Parameters | ||
---------- | ||
sto: :class: `numpy.Array` | ||
Electrode stochiometry | ||
T: :class: `numpy.Array` | ||
Dimensional temperature | ||
T_inf: double | ||
Reference temperature | ||
E_D_s: double | ||
Solid diffusion activation energy | ||
R_g: double | ||
The ideal gas constant | ||
Parameters | ||
---------- | ||
sto: :class:`pybamm.Symbol` | ||
Electrode stochiometry | ||
T: :class:`pybamm.Symbol` | ||
Dimensional temperature | ||
Returns | ||
------- | ||
: double | ||
Solid diffusivity | ||
Returns | ||
------- | ||
: double | ||
Solid diffusivity | ||
""" | ||
|
||
D_ref = 9 * 10 ** (-14) | ||
arrhenius = exp(E_D_s / R_g * (1 / T_inf - 1 / T)) | ||
E_D_s = 4e3 | ||
arrhenius = exp(E_D_s / constants.R * (1 / 298.15 - 1 / T)) | ||
|
||
return D_ref * arrhenius |
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
Oops, something went wrong.