You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hi PyBaMM community,
I have tried IDAKLU solver recently (v 23.3) and found that options argument is not working for IDAKLU solver. Can you please look at it.
Here is the minimum example:
import pybamm
model = pybamm.lithium_ion.DFN()
idasolver = pybamm.IDAKLUSolver(atol=1e-8, rtol=1e-8,root_method='casadi',root_tol=1e-6,extrap_tol=1e-6,options=None)
sim = pybamm.Simulation(model,solver=idasolver)
sim.solve([0, 3600])
sim.plot()
Error: TypeError: init() got an unexpected keyword argument 'options'
Thanks,
Ganesh
Beta Was this translation helpful? Give feedback.
All reactions