changing parameters #1668
-
I am totally a beginner at python. I am trying to change the parameters set which are there in the youtube tutorial, but I am getting errors. where I am doing wrong? import pybamm Changing parameter sets SolverError Traceback (most recent call last) ~\anaconda3\lib\site-packages\pybamm\simulation.py in solve(self, t_eval, solver, check_model, save_at_cycles, starting_solution, **kwargs) SolverError: 't_eval' must be provided if not using an experiment or simulating a drive cycle. 't_eval' can be provided as an array of times at which to return the solution, or as a list [t0, tf] where t0 is the initial time and tf is the final time. For a constant current (dis)charge the suggested 't_eval' is [0, 3700/C] where C is the C-rate. For example, run
for a 1C discharge. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
The Replace
with
|
Beta Was this translation helpful? Give feedback.
The
solve
method requirest_eval
with a suggested value of [0, 3700/C] where C is the C-rate.Replace
with