-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi, the Prada 2013 set is for a 2.3 Ah cell (see this PR where the parameters in During discharge, we expect the negative electrode to delithiate and the positive electrode to lithiate, so the negative concentration goes down and the positive concentration goes up. Also note that the electrodes won't be fully utilised, but operate in some stoichiometry window - at 0% SOC the negative electrode won't be totally empty and the positive electrode won't be totally full. There is a helper function in PyBaMM to do this, as shown in the example below. import pybamm
model = pybamm.lithium_ion.DFN()
parameter_values = pybamm.ParameterValues("Prada2013")
x_0, x_100, y_100, y_0 = pybamm.lithium_ion.get_min_max_stoichiometries(
parameter_values
)
print("x_0: ", x_0, "x_100: ", x_100, "y_100: ", y_100, "y_0: ", y_0)
experiment = pybamm.Experiment(["Discharge at 1 C until 2 V"])
sim = pybamm.Simulation(model, parameter_values=parameter_values, experiment=experiment)
sim.solve()
print("Final time: " + str(sim.solution["Time [s]"].data[-1]) + " s")
sim.plot(
[
"Average negative particle concentration",
"Average positive particle concentration",
"Voltage [V]",
]
) |
Beta Was this translation helpful? Give feedback.
-
can somehow change these stoichiometric values so as to be able to reach closer to 0% and 100%? |
Beta Was this translation helpful? Give feedback.
Hi, the Prada 2013 set is for a 2.3 Ah cell (see this PR where the parameters in
Prada2013
were updated to better match those given in the paper, which is a 2.3 Ah cell, instead of the mix-and-match with the 1.1 Ah cell from Lain2019.)During discharge, we expect the negative electrode to delithiate and the positive electrode to lithiate, so the negative concentration goes down and the positive concentration goes up. Also note that the electrodes won't be fully utilised, but operate in some stoichiometry window - at 0% SOC the negative electrode won't be totally empty and the positive electrode won't be totally full. There is a helper function in PyBaMM to do this, as shown in the example…