Replies: 1 comment 2 replies
-
If the event ("4.2V") is already triggered by the initial conditions, the step is skipped. For example, in your case, it could be that going from 0.5C at 3.8V to 1C makes the voltage go above 4.2V, in which case the step is skipped. To see if this is the case, you could try some lower C-rates or higher voltage limits in the second step. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
can i setup experiment at different crate until different terminal voltage? is there any better way to setup it?
for example the setup below. the simulation actually run the first charge till 3.8V, 2nd charge is skipped in the run for no reason.
experiment = pybamm.Experiment(
[
"Charge at 0.5C until 3.8V",
"Charge at 1C until 4.2V",
"Rest for 1 hour",
]
)
Beta Was this translation helpful? Give feedback.
All reactions