Replies: 1 comment 5 replies
-
You can do it like this (not using experiment). import pybamm
pybamm.set_logging_level("INFO")
# load models
model = pybamm.lithium_ion.SPM({"thermal": "lumped"})
T = model.variables["Volume-averaged cell temperature [K]"]
model.events.append(pybamm.Event("Temperature cut-off", (273.15 + 30) - T))
param = pybamm.ParameterValues("Chen2020")
param.search("heat transfer coefficient")
param.update({"Total heat transfer coefficient [W.m-2.K-1]": 1})
# create and run simulations
sim = pybamm.Simulation(model, parameter_values=param, C_rate=-5)
sim.solve([0, 3600], initial_soc=0)
# plot
pybamm.dynamic_plot(sim, ["Volume-averaged cell temperature [K]"]) It's not possible when using experiment |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am currently charging the cccv using pybamm.

At this time, the temperature and voltage limits should be put in this run.
For voltage, it was put at an "until 4.1 V".
I want to set the temperature limit so that the temperature of the cell does not exceed 40 degrees.("Charge at 50 A until 4.1 V")
I'm really curious about what to do at this time.
I'd really appreciate it if you could help me.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions