From 11d27156e32b399a454e4931dcef39943ca177f0 Mon Sep 17 00:00:00 2001 From: DrSOKane Date: Thu, 4 Jan 2024 19:51:31 +0000 Subject: [PATCH] Restored original experiment protocol to coupled degradation example notebook --- .../notebooks/models/coupled-degradation.ipynb | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/docs/source/examples/notebooks/models/coupled-degradation.ipynb b/docs/source/examples/notebooks/models/coupled-degradation.ipynb index 1551a79a64..8c083d986a 100644 --- a/docs/source/examples/notebooks/models/coupled-degradation.ipynb +++ b/docs/source/examples/notebooks/models/coupled-degradation.ipynb @@ -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()"