|
1 |
| -def graphite_entropy_Enertech_Ai2020_function(sto, T): |
| 1 | +def graphite_entropy_Enertech_Ai2020_function(sto): |
2 | 2 | """
|
3 |
| - Lithium Cobalt Oxide (LiCO2) entropic change in open circuit potential (OCP) at |
4 |
| - a temperature of 298.15K as a function of the stochiometry. The fit is taken |
5 |
| - from Ref [1], which is only accurate |
6 |
| - for 0.43 < sto < 0.9936. |
| 3 | + Lithium Cobalt Oxide (LiCO2) entropic change in open circuit potential (OCP) at |
| 4 | + a temperature of 298.15K as a function of the stochiometry. The fit is taken |
| 5 | + from Ref [1], which is only accurate |
| 6 | + for 0.43 < sto < 0.9936. |
7 | 7 |
|
8 |
| - References |
9 |
| - ---------- |
10 |
| - .. [1] Ai, W., Kraft, L., Sturm, J., Jossen, A., & Wu, B. (2020). |
11 |
| - Electrochemical Thermal-Mechanical Modelling of Stress Inhomogeneity in Lithium-Ion Pouch Cells. # noqa |
12 |
| - Journal of The Electrochemical Society, 167(1), 013512. DOI: 10.1149/2.0122001JES # noqa |
| 8 | + References |
| 9 | + ---------- |
| 10 | + .. [1] Ai, W., Kraft, L., Sturm, J., Jossen, A., & Wu, B. (2020). |
| 11 | + Electrochemical Thermal-Mechanical Modelling of Stress Inhomogeneity in Lithium-Ion Pouch Cells. # noqa |
| 12 | + Journal of The Electrochemical Society, 167(1), 013512. DOI: 10.1149/2.0122001JES # noqa |
13 | 13 |
|
14 | 14 | Parameters
|
15 | 15 | ----------
|
16 | 16 | sto: double
|
17 | 17 | Stochiometry of material (li-fraction)
|
18 |
| - T : :class:`pybamm.Symbol` |
19 |
| - Temperature [K] |
| 18 | +
|
20 | 19 | Returns
|
21 | 20 | -------
|
22 | 21 | :class:`pybamm.Symbol`
|
23 |
| - Entropic change [v.K-1] |
| 22 | + Entropic change [V.K-1] |
24 | 23 | """
|
25 | 24 |
|
26 | 25 | du_dT = (
|
@@ -48,5 +47,5 @@ def graphite_entropy_Enertech_Ai2020_function(sto, T):
|
48 | 47 | + 165705.8597 * sto ** 8
|
49 | 48 | )
|
50 | 49 | )
|
51 |
| - # show no temperature dependence |
| 50 | + |
52 | 51 | return du_dT
|
0 commit comments