forked from pybamm-team/PyBaMM
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request pybamm-team#975 from pybamm-team/issue-966-exchang…
…e-current Issue 966 exchange current
- Loading branch information
Showing
60 changed files
with
661 additions
and
458 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
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
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
32 changes: 32 additions & 0 deletions
32
...t/parameters/lead-acid/anodes/lead_Sulzer2019/lead_exchange_current_density_Sulzer2019.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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
from pybamm import standard_parameters_lead_acid | ||
|
||
|
||
def lead_exchange_current_density_Sulzer2019(c_e, T): | ||
""" | ||
Dimensional exchange-current density in the negative (lead) electrode, from [1]_ | ||
References | ||
---------- | ||
.. [1] V. Sulzer, S. J. Chapman, C. P. Please, D. A. Howey, and C. W. Monroe, | ||
“Faster lead-acid battery simulations from porous-electrode theory: Part I. Physical | ||
model.” | ||
[Journal of the Electrochemical Society](https://doi.org/10.1149/2.0301910jes), | ||
166(12), 2363 (2019). | ||
Parameters | ||
---------- | ||
c_e : :class:`pybamm.Symbol` | ||
Electrolyte concentration [mol.m-3] | ||
T : :class:`pybamm.Symbol` | ||
Temperature [K] | ||
Returns | ||
------- | ||
:class:`pybamm.Symbol` | ||
Exchange-current density [A.m-2] | ||
""" | ||
j0_ref = 0.06 # srinivasan2003mathematical | ||
j0 = j0_ref * (c_e / standard_parameters_lead_acid.c_e_typ) | ||
|
||
return j0 |
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
39 changes: 39 additions & 0 deletions
39
...acid/cathodes/lead_dioxide_Sulzer2019/lead_dioxide_exchange_current_density_Sulzer2019.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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
from pybamm import standard_parameters_lead_acid | ||
|
||
|
||
def lead_dioxide_exchange_current_density_Sulzer2019(c_e, T): | ||
""" | ||
Dimensional exchange-current density in the positive electrode, from [1]_ | ||
References | ||
---------- | ||
.. [1] V. Sulzer, S. J. Chapman, C. P. Please, D. A. Howey, and C. W. Monroe, | ||
“Faster lead-acid battery simulations from porous-electrode theory: Part I. Physical | ||
model.” | ||
[Journal of the Electrochemical Society](https://doi.org/10.1149/2.0301910jes), | ||
166(12), 2363 (2019). | ||
Parameters | ||
---------- | ||
c_e : :class:`pybamm.Symbol` | ||
Electrolyte concentration [mol.m-3] | ||
T : :class:`pybamm.Symbol` | ||
Temperature [K] | ||
Returns | ||
------- | ||
:class:`pybamm.Symbol` | ||
Exchange-current density [A.m-2] | ||
""" | ||
c_ox = 0 | ||
c_hy = 0 | ||
param = standard_parameters_lead_acid | ||
c_w_dim = (1 - c_e * param.V_e - c_ox * param.V_ox - c_hy * param.V_hy) / param.V_w | ||
c_w_ref = (1 - param.c_e_typ * param.V_e) / param.V_w | ||
c_w = c_w_dim / c_w_ref | ||
|
||
j0_ref = 0.004 # srinivasan2003mathematical | ||
j0 = j0_ref * (c_e / param.c_e_typ) ** 2 * c_w | ||
|
||
return j0 |
32 changes: 32 additions & 0 deletions
32
.../lead-acid/cathodes/lead_dioxide_Sulzer2019/oxygen_exchange_current_density_Sulzer2019.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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
from pybamm import standard_parameters_lead_acid | ||
|
||
|
||
def oxygen_exchange_current_density_Sulzer2019(c_e, T): | ||
""" | ||
Dimensional oxygen exchange-current density in the positive electrode, from [1]_ | ||
References | ||
---------- | ||
.. [1] V. Sulzer, S. J. Chapman, C. P. Please, D. A. Howey, and C. W. Monroe, | ||
“Faster lead-acid battery simulations from porous-electrode theory: Part I. Physical | ||
model.” | ||
[Journal of the Electrochemical Society](https://doi.org/10.1149/2.0301910jes), | ||
166(12), 2363 (2019). | ||
Parameters | ||
---------- | ||
c_e : :class:`pybamm.Symbol` | ||
Electrolyte concentration [mol.m-3] | ||
T : :class:`pybamm.Symbol` | ||
Temperature [K] | ||
Returns | ||
------- | ||
:class:`pybamm.Symbol` | ||
Exchange-current density [A.m-2] | ||
""" | ||
j0_ref = 2.5e-23 # srinivasan2003mathematical | ||
j0 = j0_ref * (c_e / standard_parameters_lead_acid.c_e_typ) | ||
|
||
return j0 |
Oops, something went wrong.