-
I’ve been following the example code for the pouch cell model from the PyBaMM documentation: Pouch Cell Model. I am trying to simulate CCCV cycling using string-based instructions with pybamm.Experiment. However, I encounter a NotImplementedError when running the simulation. Is there a better way to simulate CCCV cycling if the string-based experimental instructions don't work for this model yet? For instance, using the following experiment setup:
I receive the error:
Entire code for reference:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I think it's because the solver Casadi stores intermediate variables, and currently pybamm doesn't support handling 3D variables, so errors occur. The IDAKLUSolver solver can solve it, but it cannot access 3D variables。 |
Beta Was this translation helpful? Give feedback.
Looks like this is a known issue #1549 #3552 and Valentin mentions some workarounds in #1549