Replies: 3 comments 8 replies
-
the issue seems to have something to do with changing |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
setting the Ah seems a bit artificial. Is there any way to give Pybamm the battery parameters and have it calculate Ah? |
Beta Was this translation helpful? Give feedback.
-
I am running a sensible LFP model based on Prada2013. By sensible, I mean I changed the min and max voltages to
` "Lower voltage cut-off [V]": 2.5,
my code is:
import pybamm#chemistry = pybamm.parameter_sets.Prada2013
param = pybamm.ParameterValues("Prada2013")
exp = pybamm.Experiment(
[
(
"Charge at 1 C until 3.65 V",
"Hold at 3.65 V until C/10",
"Rest for 5 minutes",
"Discharge at 1 C until 2.5 V",
"Rest for 5 minutes",
)
]
)
#model = pybamm.lithium_ion.DFN()
model = pybamm.lithium_ion.SPM()
sim = pybamm.Simulation(model,experiment=exp,parameter_values=param)
sim.solve([0, 3600],initial_soc=0) # solve for 1 hour
print(sim.parameter_values)
sim.plot(
`
So I start at 0% SoC, charge at 1C, but then the battery is charged in 20 min (see image). Any idea what I am missing?
Beta Was this translation helpful? Give feedback.
All reactions