Skip to content

Commit

Permalink
Restored original experiment protocol to coupled degradation example …
Browse files Browse the repository at this point in the history
…notebook
  • Loading branch information
DrSOKane committed Jan 4, 2024
1 parent 90ddf89 commit 11d2715
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions docs/source/examples/notebooks/models/coupled-degradation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -105,22 +105,21 @@
"cycle_number = 10\n",
"exp = pybamm.Experiment(\n",
" [\n",
" \"Hold at 4.2 V until C/100\",\n",
" \"Rest for 4 hours\",\n",
" \"Discharge at 0.1C until 2.5 V\", # initial capacity check\n",
" \"Charge at 0.3C until 4.2 V\",\n",
" \"Hold at 4.2 V until C/100\",\n",
" \"Hold at 4.2 V until C/100 (5 minute period)\",\n",
" \"Rest for 4 hours (5 minute period)\",\n",
" \"Discharge at 0.1C until 2.5 V (5 minute period)\", # initial capacity check\n",
" \"Charge at 0.3C until 4.2 V (5 minute period)\",\n",
" \"Hold at 4.2 V until C/100 (5 minute period)\",\n",
" ]\n",
" + [\n",
" (\n",
" \"Discharge at 1C until 2.5 V\", # ageing cycles\n",
" \"Charge at 0.3C until 4.2 V\",\n",
" \"Hold at 4.2 V until C/100\",\n",
" \"Charge at 0.3C until 4.2 V (5 minute period)\",\n",
" \"Hold at 4.2 V until C/100 (5 minute period)\",\n",
" )\n",
" ]\n",
" * cycle_number\n",
" + [\"Discharge at 0.1C until 2.5 V\"], # final capacity check\n",
" period=\"5 minutes\",\n",
" + [\"Discharge at 0.1C until 2.5 V (5 minute period)\"], # final capacity check\n",
")\n",
"sim = pybamm.Simulation(model, parameter_values=param, experiment=exp, var_pts=var_pts)\n",
"sol = sim.solve()"
Expand Down

0 comments on commit 11d2715

Please sign in to comment.