We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Including a rest before the following discharge step does not allow successful simulation due to a bug with 'DAE solver'.
"Newton/Linesearch algorithm failed to converge"
experiment = pybamm.Experiment( ["Rest for 5 minutes", "Discharge at 0.5C until 2.5 V", "Rest for 120 minutes"], period="10 seconds", ) model = pybamm.lithium_ion.DFN() chemistry = pybamm.parameter_sets.Chen2020 parameter_values = pybamm.ParameterValues(chemistry=chemistry) parameter_values["Negative electrode diffusivity [m2.s-1]"] = 1.3e-14 sim = pybamm.Simulation(model, parameter_values=parameter_values, experiment=experiment) sim.solve()
The text was updated successfully, but these errors were encountered:
looks like this will be fixed by PR #951
Sorry, something went wrong.
Yep this should be fixed now
No branches or pull requests
Including a rest before the following discharge step does not allow successful simulation due to a bug with 'DAE solver'.
"Newton/Linesearch algorithm failed to converge"
experiment = pybamm.Experiment(
["Rest for 5 minutes",
"Discharge at 0.5C until 2.5 V",
"Rest for 120 minutes"],
period="10 seconds",
)
model = pybamm.lithium_ion.DFN()
chemistry = pybamm.parameter_sets.Chen2020
parameter_values = pybamm.ParameterValues(chemistry=chemistry)
parameter_values["Negative electrode diffusivity [m2.s-1]"] = 1.3e-14
sim = pybamm.Simulation(model, parameter_values=parameter_values, experiment=experiment)
sim.solve()
The text was updated successfully, but these errors were encountered: