{ "cells": [ { "cell_type": "markdown", "id": "0", "metadata": {}, "source": [ "# Estimating ECM Parameters & Running a Thermal Submodel\n", "\n", "This notebook provides example usage for estimating stationary parameters for a two RC branch Thevenin model. With the estimated parameters, a thermal model is created and predictions are made.\n", "\n", "### Setting up the Environment\n", "\n", "Before we begin, we need to ensure that we have all the necessary tools. We will install PyBOP from its development branch and upgrade some dependencies:" ] }, { "cell_type": "code", "execution_count": null, "id": "1", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "/Users/engs2510/Documents/Git/PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Note: you may need to restart the kernel to use updated packages.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "/Users/engs2510/Documents/Git/PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Note: you may need to restart the kernel to use updated packages.\n" ] } ], "source": [ "%pip install --upgrade pip ipywidgets openpyxl pandas -q\n", "%pip install pybop -q\n", "\n", "import pandas as pd\n", "import pybamm\n", "\n", "import pybop\n", "\n", "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\"" ] }, { "cell_type": "markdown", "id": "2", "metadata": {}, "source": [ "In this example, we use the default parameter value for the `\"Open-circuit voltage [V]\"` as provided by the original PyBaMM class. To update this, provide a function definition that matches this [function](https://github.com/pybamm-team/PyBaMM/blob/1943aa5ab2895b5378220595923dbae3d66b13c9/pybamm/input/parameters/ecm/example_set.py#L17). First, we load and update the ECM input parameters," ] }, { "cell_type": "code", "execution_count": null, "id": "3", "metadata": {}, "outputs": [], "source": [ "parameter_set = pybop.ParameterSet(\"ECM_Example\")\n", "parameter_set.update(\n", " {\n", " \"Cell capacity [A.h]\": 3,\n", " \"Nominal cell capacity [A.h]\": 3,\n", " \"Element-1 initial overpotential [V]\": 0,\n", " \"Upper voltage cut-off [V]\": 4.2,\n", " \"Lower voltage cut-off [V]\": 2.5,\n", " \"R0 [Ohm]\": 1e-3,\n", " \"R1 [Ohm]\": 3e-3,\n", " \"C1 [F]\": 5e2,\n", " \"Open-circuit voltage [V]\": pybop.empirical.Thevenin().default_parameter_values[\n", " \"Open-circuit voltage [V]\"\n", " ],\n", " }\n", ")\n", "# Optional arguments - only needed for two RC pairs\n", "parameter_set.update(\n", " {\n", " \"R2 [Ohm]\": 0.002,\n", " \"C2 [F]\": 3e4,\n", " \"Element-2 initial overpotential [V]\": 0,\n", " },\n", " check_already_exists=False,\n", ")" ] }, { "cell_type": "markdown", "id": "4", "metadata": {}, "source": [ "Now that the initial parameter set is constructed, we can start the PyBOP fitting process. First, we define the model class with two RC elements." ] }, { "cell_type": "code", "execution_count": null, "id": "5", "metadata": {}, "outputs": [], "source": [ "model = pybop.empirical.Thevenin(\n", " parameter_set=parameter_set,\n", " options={\"number of rc elements\": 2},\n", " solver=pybamm.CasadiSolver(mode=\"safe\", dt_max=10),\n", ")" ] }, { "cell_type": "markdown", "id": "6", "metadata": {}, "source": [ "Next we need to select the data for parameter identification. In this example we use a single HPPC pulse from the \n", "`Kollmeyer, Phillip; Skells, Michael (2020), “Samsung INR21700 30T 3Ah Li-ion Battery Data”, Mendeley Data, V1, doi: 10.17632/9xyvy2njj3.1` dataset. This is imported and used to construct the `pybop.Dataset` class," ] }, { "cell_type": "code", "execution_count": null, "id": "7", "metadata": {}, "outputs": [], "source": [ "file_loc = r\"../../data/Samsung_INR21700/sample_hppc_pulse.xlsx\"\n", "df = pd.read_excel(file_loc, index_col=None, na_values=[\"NA\"])\n", "df = df.drop_duplicates(subset=[\"Time\"], keep=\"first\")\n", "\n", "dataset = pybop.Dataset(\n", " {\n", " \"Time [s]\": df[\"Time\"].to_numpy(),\n", " \"Current function [A]\": df[\"Current\"].to_numpy(),\n", " \"Voltage [V]\": df[\"Voltage\"].to_numpy(),\n", " }\n", ")" ] }, { "cell_type": "markdown", "id": "8", "metadata": {}, "source": [ "Next, we need to define the parameter for identification. In this example, we've construct a two-branch Thevenin model, so we will select those parameters for identification. The initial guess for the resistance parameter is generated from a random sample of the prior distributions. These are influenced by the `r_guess` parameter below." ] }, { "cell_type": "code", "execution_count": null, "id": "9", "metadata": {}, "outputs": [], "source": [ "r_guess = 0.005\n", "parameters = pybop.Parameters(\n", " pybop.Parameter(\n", " \"R0 [Ohm]\",\n", " prior=pybop.Gaussian(r_guess, r_guess / 10),\n", " bounds=[0, 0.2],\n", " ),\n", " pybop.Parameter(\n", " \"R1 [Ohm]\",\n", " prior=pybop.Gaussian(r_guess, r_guess / 10),\n", " bounds=[0, 0.2],\n", " ),\n", " pybop.Parameter(\n", " \"R2 [Ohm]\",\n", " prior=pybop.Gaussian(r_guess, r_guess / 10),\n", " bounds=[0, 0.2],\n", " ),\n", " pybop.Parameter(\n", " \"C1 [F]\",\n", " prior=pybop.Gaussian(500, 100),\n", " bounds=[100, 10000],\n", " ),\n", " pybop.Parameter(\n", " \"C2 [F]\",\n", " prior=pybop.Gaussian(2000, 500),\n", " bounds=[100, 10000],\n", " ),\n", ")" ] }, { "cell_type": "markdown", "id": "10", "metadata": {}, "source": [ "The `FittingProblem` class provides us with a single class that holds the objects we need to evaluate our selected `SumSquaredError` cost function. As we haven't built the model, we first do that with an initial OCV state selected from the first data point in the HPPC pulse." ] }, { "cell_type": "code", "execution_count": null, "id": "11", "metadata": {}, "outputs": [], "source": [ "model.build(\n", " initial_state={\"Initial open-circuit voltage [V]\": df[\"Voltage\"].to_numpy()[0]}\n", ")\n", "problem = pybop.FittingProblem(\n", " model,\n", " parameters,\n", " dataset,\n", ")\n", "\n", "cost = pybop.SumSquaredError(problem)" ] }, { "cell_type": "markdown", "id": "12", "metadata": {}, "source": [ "Next, we construct the optimisation class with our algorithm of choice and run it. In this case, we select the XNES method as it provides global optimisation capability. For the sake of reducing the runtime of this example, we limit the maximum iterations to 100; however, feel free to update this value. Due to the scale differences in the parameters, we update the optimiser step-size (`sigma0`) to be parameter specific, which helps ensure the optimiser explores the complete parameter space." ] }, { "cell_type": "code", "execution_count": null, "id": "13", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Halt: Maximum number of iterations (100) reached.\n", "OptimisationResult:\n", " Initial parameters: [4.59847203e-03 5.79853231e-03 4.71218325e-03 4.56580814e+02\n", " 2.27832888e+03]\n", " Optimised parameters: [1.03484584e-02 4.31327397e-03 3.22307076e-02 5.28180916e+02\n", " 2.04551572e+03]\n", " Final cost: 0.00028369216417807483\n", " Optimisation time: 15.296892166137695 seconds\n", " Number of iterations: 100\n", " SciPy result available: No\n" ] } ], "source": [ "optim = pybop.XNES(\n", " cost,\n", " sigma0=[1e-3, 1e-3, 1e-3, 20, 20],\n", " max_unchanged_iterations=30,\n", " max_iterations=100,\n", ")\n", "results = optim.run()" ] }, { "cell_type": "markdown", "id": "14", "metadata": {}, "source": [ "## Plotting and Visualisation\n", "\n", "Next, we use PyBOP's plotting utilities to visualise the results of the optimisation. This provides us with a visual confirmation of the optimisers' converged parameter values in the time-domain output." ] }, { "cell_type": "code", "execution_count": null, "id": "15", "metadata": {}, "outputs": [ { "data": { "text/html": [ " <script type=\"text/javascript\">\n", " window.PlotlyConfig = {MathJaxConfig: 'local'};\n", " if (window.MathJax && window.MathJax.Hub && window.MathJax.Hub.Config) {window.MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}\n", " if (typeof require !== 'undefined') {\n", " require.undef(\"plotly\");\n", " requirejs.config({\n", " paths: {\n", " 'plotly': ['https://cdn.plot.ly/plotly-2.34.0.min']\n", " }\n", " });\n", " require(['plotly'], function(Plotly) {\n", " window._Plotly = Plotly;\n", " });\n", " }\n", " </script>\n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "<div> <div id=\"dffa3690-32db-4172-bc67-4a2b2c28af82\" class=\"plotly-graph-div\" style=\"height:600px; width:600px;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"dffa3690-32db-4172-bc67-4a2b2c28af82\")) { Plotly.newPlot( \"dffa3690-32db-4172-bc67-4a2b2c28af82\", [{\"fill\":\"toself\",\"fillcolor\":\"rgba(255,229,204,0.8)\",\"hoverinfo\":\"skip\",\"line\":{\"color\":\"rgba(255,255,255,0)\"},\"showlegend\":false,\"x\":[0.0,0.100995227694511,0.202000513672829,0.304001569747925,0.404001027345657,0.492996722459793,0.594997778534889,0.696998834609985,0.796998292207718,0.897993519902229,0.997992977499962,1.09899826347828,1.20099931955338,1.30199454724789,1.4029998332262,1.50299929082394,1.59199498593807,1.69300027191639,1.7939954996109,1.895996555686,1.99599601328373,2.09799706935883,2.19999812543392,2.29900181293488,2.40099281072617,2.50399969518185,2.59699858725071,2.69299484789372,2.79299430549145,2.89899855852127,2.99499481916428,3.09600010514259,3.19699533283711,3.29800061881542,3.39899584650993,3.50000113248825,3.60200218856335,3.70299741625786,3.80400270223618,3.89199256896973,3.99299785494804,4.10499684512615,4.19599413871765,4.29799519479275,4.40399944782257,4.4989999383688,4.60100099444389,4.71199415624142,4.8039972782135,4.90399673581123,4.99300248920918,5.09599931538105,5.19599877297878,5.29799982905388,5.39799928665161,5.50000034272671,5.59999980032444,5.70099502801895,5.80200031399727,5.901999771595,6.00199922919273,6.10400028526783,6.19200021028519,6.2929954379797,6.39400072395802,6.49600178003311,6.59699700772762,6.69800229370594,6.79899752140045,6.89899697899818,7.0000022649765,7.10299909114838,7.20299854874611,7.30399377644062,7.39299952983856,7.49299898743629,7.59500004351139,7.69499950110912,7.79599472880364,7.89700001478195,7.99999684095383,8.09900052845478,8.20100158452988,8.30299258232117,8.40300209820271,8.49299356341362,8.59399884939194,8.70599783957005,8.79499353468418,8.89699459075928,9.00799781084061,9.09899510443211,9.19899456202984,9.30999778211117,9.40299667418003,9.50400196015835,9.61399935185909,9.69299711287022,9.79400239884853,9.89099442958832,9.91800092160702,10.0379962474108,10.1299993693829,10.2340020239353,10.3390004485846,10.4299977421761,10.5329945683479,10.6379929929972,10.7299961149693,10.8339987695217,10.938997194171,11.0299944877625,11.1339971423149,11.2389955669642,11.3299928605556,11.4339955151081,11.5259986370802,11.6309970617294,11.7349997162819,11.8390023708344,11.9309954345226,12.0340023189783,12.1390007436275,12.229998037219,12.3349964618683,12.4269995838404,12.5310022383928,12.6349948346615,12.7269979566336,12.831000611186,12.9339974373579,13.0269963294268,13.131994754076,13.2350016385317,13.32699470222,13.4319931268692,13.5350000113249,13.6269930750132,13.732997328043,13.8349983841181,13.9270015060902,14.0319999307394,14.1369983553886,14.2309930175543,14.3360015004873,14.4389983266592,14.5329929888248,14.6269977092743,14.740002527833,14.8369945585728,14.9289976805449,15.0350019335747,15.1379987597466,15.2319934219122,15.3329987078905,15.4279991984367,15.5339933931828,15.6279981136322,15.7289933413267,15.8359933644533,15.929002314806,16.0319991409779,16.1379933357239,16.2319980561733,16.3339991122484,16.4260022342205,16.5319964289665,16.635999083519,16.7280022054911,16.8350022286177,16.9379990547895,17.0309979468584,17.1370021998882,17.2279994934797,17.332997918129,17.4259968101978,17.5299994647503,17.6359936594963,17.7279967814684,17.8319994360209,17.9369978606701,18.029996752739,18.1349951773882,18.2269982993603,18.3329924941063,18.435999378562,18.5289982706308,18.6330009251833,18.7359977513552,18.828996643424,18.9350008964539,19.0379977226257,19.1309966146946,19.2379966378212,19.3409934639931,19.4329965859652,19.525995478034,19.6290023624897,19.7360023856163,19.8290012776852,19.9269991368055,19.9449934065342,20.060995593667,20.1690014451742,20.2520024031401,20.3529976308346,20.4559944570065,20.5569997429848,20.6590007990599,20.7599960267544,20.8610013127327,20.9630023688078,21.0519980639219,21.153999119997,21.2560001760721,21.358997002244,21.4589964598417,21.5609975159168,21.6620028018951,21.7629980295897,21.8519937247038,21.9539947807789,22.0550000667572,22.1579968929291,22.2599979490042,22.3609931766987,22.4509947001934,22.5529957562685,22.6529952138662,22.7560020983219,22.8579930961132,22.9589983820915,23.0609994381666,23.1630004942417,23.2510004192591,23.3530014753342,23.455998301506,23.5569935292006,23.6589945852757,23.7609956413507,23.8609950989485,23.9520024508238,24.0539934486151,24.1509955376387,24.2629945278168,24.3549976497889,24.456998705864,24.5519991964102,24.6589992195368,24.7519981116056,24.8560007661581,24.9609991908073,25.054993852973,25.1589965075254,25.2519953995943,25.3589954227209,25.4629980772734,25.5550011992455,25.6539948284626,25.7509969174862,25.857001170516,25.9500000625849,26.0539926588535,26.1609926819801,26.2540016323328,26.3569984585047,26.4639984816313,26.5579931437969,26.659994199872,26.7539989203215,26.8599931150675,26.9639957696199,27.0569946616888,27.1629989147186,27.2539962083101,27.36000046134,27.4529993534088,27.5559961795807,27.6629962027073,27.7549993246794,27.8590019792318,27.9509950429201,28.0590008944273,28.1619977205992,28.2560024410486,28.3619966357946,28.4519981592894,28.5580024123192,28.651001304388,28.7539981305599,28.8600023835897,28.9530012756586,29.0589954704046,29.1509985923767,29.2579986155033,29.3609954416752,29.4539943337441,29.5609943568707,29.6640012413263,29.7590017318726,29.8520006239414,29.9529958516359,30.0619974732399,30.1549963653088,30.2719943225384,30.3539995104074,30.4589979350567,30.5750001221895,30.6569952517748,30.7609979063272,30.8679979294539,30.9600010514259,31.0529999434948,31.1529994010925,31.2509972602129,31.3579972833395,31.458992511034,31.5539930015802,31.6599972546101,31.7619983106852,31.8569988012314,31.9629929959774,32.0569977164269,32.1610003709793,32.2539992630482,32.3599934577942,32.4519965797663,32.5580008327961,32.6519954949617,32.7559981495142,32.862002402544,32.9550012946129,33.0589938908815,33.1520028412342,33.2579970359802,33.3549991250038,33.4559943526983,33.5619986057282,33.6529958993197,33.7590001523495,33.8529948145151,33.9560016989708,34.0630017220974,34.1580022126436,34.2609990388155,34.3630000948906,34.4530016183853,34.5519952476025,34.6559979021549,34.7569931298494,34.8559968173504,34.9609952419996,35.0509967654944,35.1609941571951,35.253993049264,35.3559941053391,35.4629941284657,35.5599962174892,35.6619972735643,35.7629925012589,35.8519982546568,35.9539993107319,36.0709972679615,36.1559998244047,36.2589966505766,36.3509997725487,36.4619929343462,36.5509986877441,36.6620019078255,36.7539949715138,36.8559960275888,36.9649976491928,37.059998139739,37.1619991958141,37.2509948909283,37.3520001769066,37.4540012329817,37.5549964606762,37.6560017466545,37.7579927444458,37.8619953989983,37.9609990864992,38.0619943141937,38.1519958376884,38.2539968937635,38.3539963513613,38.4579990059137,38.5600000619888,38.6620011180639,38.7629963457584,38.8509962707758,38.9529973268509,39.0540026128292,39.1559936106205,39.2579946666956,39.3610015511513,39.461001008749,39.5630020648241,39.6519977599382,39.7529929876328,39.8549940437079,39.9580009281635,39.9580009281635,39.8549940437079,39.7529929876328,39.6519977599382,39.5630020648241,39.461001008749,39.3610015511513,39.2579946666956,39.1559936106205,39.0540026128292,38.9529973268509,38.8509962707758,38.7629963457584,38.6620011180639,38.5600000619888,38.4579990059137,38.3539963513613,38.2539968937635,38.1519958376884,38.0619943141937,37.9609990864992,37.8619953989983,37.7579927444458,37.6560017466545,37.5549964606762,37.4540012329817,37.3520001769066,37.2509948909283,37.1619991958141,37.059998139739,36.9649976491928,36.8559960275888,36.7539949715138,36.6620019078255,36.5509986877441,36.4619929343462,36.3509997725487,36.2589966505766,36.1559998244047,36.0709972679615,35.9539993107319,35.8519982546568,35.7629925012589,35.6619972735643,35.5599962174892,35.4629941284657,35.3559941053391,35.253993049264,35.1609941571951,35.0509967654944,34.9609952419996,34.8559968173504,34.7569931298494,34.6559979021549,34.5519952476025,34.4530016183853,34.3630000948906,34.2609990388155,34.1580022126436,34.0630017220974,33.9560016989708,33.8529948145151,33.7590001523495,33.6529958993197,33.5619986057282,33.4559943526983,33.3549991250038,33.2579970359802,33.1520028412342,33.0589938908815,32.9550012946129,32.862002402544,32.7559981495142,32.6519954949617,32.5580008327961,32.4519965797663,32.3599934577942,32.2539992630482,32.1610003709793,32.0569977164269,31.9629929959774,31.8569988012314,31.7619983106852,31.6599972546101,31.5539930015802,31.458992511034,31.3579972833395,31.2509972602129,31.1529994010925,31.0529999434948,30.9600010514259,30.8679979294539,30.7609979063272,30.6569952517748,30.5750001221895,30.4589979350567,30.3539995104074,30.2719943225384,30.1549963653088,30.0619974732399,29.9529958516359,29.8520006239414,29.7590017318726,29.6640012413263,29.5609943568707,29.4539943337441,29.3609954416752,29.2579986155033,29.1509985923767,29.0589954704046,28.9530012756586,28.8600023835897,28.7539981305599,28.651001304388,28.5580024123192,28.4519981592894,28.3619966357946,28.2560024410486,28.1619977205992,28.0590008944273,27.9509950429201,27.8590019792318,27.7549993246794,27.6629962027073,27.5559961795807,27.4529993534088,27.36000046134,27.2539962083101,27.1629989147186,27.0569946616888,26.9639957696199,26.8599931150675,26.7539989203215,26.659994199872,26.5579931437969,26.4639984816313,26.3569984585047,26.2540016323328,26.1609926819801,26.0539926588535,25.9500000625849,25.857001170516,25.7509969174862,25.6539948284626,25.5550011992455,25.4629980772734,25.3589954227209,25.2519953995943,25.1589965075254,25.054993852973,24.9609991908073,24.8560007661581,24.7519981116056,24.6589992195368,24.5519991964102,24.456998705864,24.3549976497889,24.2629945278168,24.1509955376387,24.0539934486151,23.9520024508238,23.8609950989485,23.7609956413507,23.6589945852757,23.5569935292006,23.455998301506,23.3530014753342,23.2510004192591,23.1630004942417,23.0609994381666,22.9589983820915,22.8579930961132,22.7560020983219,22.6529952138662,22.5529957562685,22.4509947001934,22.3609931766987,22.2599979490042,22.1579968929291,22.0550000667572,21.9539947807789,21.8519937247038,21.7629980295897,21.6620028018951,21.5609975159168,21.4589964598417,21.358997002244,21.2560001760721,21.153999119997,21.0519980639219,20.9630023688078,20.8610013127327,20.7599960267544,20.6590007990599,20.5569997429848,20.4559944570065,20.3529976308346,20.2520024031401,20.1690014451742,20.060995593667,19.9449934065342,19.9269991368055,19.8290012776852,19.7360023856163,19.6290023624897,19.525995478034,19.4329965859652,19.3409934639931,19.2379966378212,19.1309966146946,19.0379977226257,18.9350008964539,18.828996643424,18.7359977513552,18.6330009251833,18.5289982706308,18.435999378562,18.3329924941063,18.2269982993603,18.1349951773882,18.029996752739,17.9369978606701,17.8319994360209,17.7279967814684,17.6359936594963,17.5299994647503,17.4259968101978,17.332997918129,17.2279994934797,17.1370021998882,17.0309979468584,16.9379990547895,16.8350022286177,16.7280022054911,16.635999083519,16.5319964289665,16.4260022342205,16.3339991122484,16.2319980561733,16.1379933357239,16.0319991409779,15.929002314806,15.8359933644533,15.7289933413267,15.6279981136322,15.5339933931828,15.4279991984367,15.3329987078905,15.2319934219122,15.1379987597466,15.0350019335747,14.9289976805449,14.8369945585728,14.740002527833,14.6269977092743,14.5329929888248,14.4389983266592,14.3360015004873,14.2309930175543,14.1369983553886,14.0319999307394,13.9270015060902,13.8349983841181,13.732997328043,13.6269930750132,13.5350000113249,13.4319931268692,13.32699470222,13.2350016385317,13.131994754076,13.0269963294268,12.9339974373579,12.831000611186,12.7269979566336,12.6349948346615,12.5310022383928,12.4269995838404,12.3349964618683,12.229998037219,12.1390007436275,12.0340023189783,11.9309954345226,11.8390023708344,11.7349997162819,11.6309970617294,11.5259986370802,11.4339955151081,11.3299928605556,11.2389955669642,11.1339971423149,11.0299944877625,10.938997194171,10.8339987695217,10.7299961149693,10.6379929929972,10.5329945683479,10.4299977421761,10.3390004485846,10.2340020239353,10.1299993693829,10.0379962474108,9.91800092160702,9.89099442958832,9.79400239884853,9.69299711287022,9.61399935185909,9.50400196015835,9.40299667418003,9.30999778211117,9.19899456202984,9.09899510443211,9.00799781084061,8.89699459075928,8.79499353468418,8.70599783957005,8.59399884939194,8.49299356341362,8.40300209820271,8.30299258232117,8.20100158452988,8.09900052845478,7.99999684095383,7.89700001478195,7.79599472880364,7.69499950110912,7.59500004351139,7.49299898743629,7.39299952983856,7.30399377644062,7.20299854874611,7.10299909114838,7.0000022649765,6.89899697899818,6.79899752140045,6.69800229370594,6.59699700772762,6.49600178003311,6.39400072395802,6.2929954379797,6.19200021028519,6.10400028526783,6.00199922919273,5.901999771595,5.80200031399727,5.70099502801895,5.59999980032444,5.50000034272671,5.39799928665161,5.29799982905388,5.19599877297878,5.09599931538105,4.99300248920918,4.90399673581123,4.8039972782135,4.71199415624142,4.60100099444389,4.4989999383688,4.40399944782257,4.29799519479275,4.19599413871765,4.10499684512615,3.99299785494804,3.89199256896973,3.80400270223618,3.70299741625786,3.60200218856335,3.50000113248825,3.39899584650993,3.29800061881542,3.19699533283711,3.09600010514259,2.99499481916428,2.89899855852127,2.79299430549145,2.69299484789372,2.59699858725071,2.50399969518185,2.40099281072617,2.29900181293488,2.19999812543392,2.09799706935883,1.99599601328373,1.895996555686,1.7939954996109,1.69300027191639,1.59199498593807,1.50299929082394,1.4029998332262,1.30199454724789,1.20099931955338,1.09899826347828,0.997992977499962,0.897993519902229,0.796998292207718,0.696998834609985,0.594997778534889,0.492996722459793,0.404001027345657,0.304001569747925,0.202000513672829,0.100995227694511,0.0],\"y\":[4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.187310056119382,4.155771435923207,4.155119940629108,4.1543720269579865,4.153642245116547,4.153029209794047,4.152356028671012,4.151691452690198,4.151126350285331,4.150506119125076,4.149899049189874,4.149387840818592,4.148819687597899,4.148262822408065,4.14779329967312,4.1472707460295855,4.146820582527335,4.146320151171412,4.145837709755577,4.145368126664242,4.144962966757658,4.144520114256624,4.144079890408517,4.143707076398204,4.143286868849046,4.142926887630069,4.142528775645185,4.142139624585657,4.141802483938326,4.1414292309877325,4.141067373891693,4.140747022629304,4.140392315958999,4.140051220451541,4.13975212202294,4.139416869521829,4.139094085006008,4.1388107407558685,4.138489580469045,4.138185793358883,4.13791605212541,4.137612978635649,4.137314812372618,4.137051921151215,4.136762590866196,4.136482794221871,4.1362308010828865,4.135981956708202,4.135686877019602,4.135437031876718,4.135202872288747,4.134936409411505,4.1346806051636,4.134449611904628,4.134204061304852,4.133975549179857,4.133723291543882,4.1335018752918975,4.133266338867663,4.133019293871039,4.132806407711167,4.132572729197683,4.132334436608978,4.132124887294024,4.131899349655367,4.131697506475717,4.131466767086386,4.131242038090911,4.131044636204012,4.130816647294143,4.130598745699179,4.130403262809129,4.1301818602091505,4.129992969189172,4.1297762370660775,4.129585356956158,4.129373064835579,4.129157939155548,4.128972185219894,4.128763262484804,4.128553445901787,4.12836846184378,4.128160548169317,4.127979175000529,4.127771126496052,4.127569844296131,4.127388861640751,4.127187278995591,4.126988427978087,4.1268095047090805,4.126606294205266,4.126409575564115,4.126232550191329,4.126029556432748,4.125834830765129,4.125661436070376,4.125486678818191,4.125293708904222,4.125093909995947,4.124920788112034,4.124738902013839,4.124705667569737,4.15598761875615,4.156583003130559,4.1570249687705765,4.157543052917498,4.1580496990770675,4.158525608291752,4.158986580188162,4.1594237616208245,4.159842941415683,4.160248800364349,4.1605891039731695,4.160963487547399,4.161322474961586,4.161669691658125,4.16199277585228,4.16230882829371,4.162608981008546,4.162896866824465,4.163140853098698,4.163409905426626,4.163665487604463,4.163915598512922,4.164153321119377,4.16437923137432,4.164573038295389,4.164784432004475,4.164983443346168,4.165180366697958,4.165367669489925,4.165545990357952,4.165718962862129,4.165885228079492,4.166023523938771,4.166178130589858,4.166328254711712,4.166469850429005,4.166607491326787,4.166739972049829,4.166865058730672,4.166974951088763,4.16709380847229,4.1672028002520625,4.1673239266086135,4.167419909087313,4.167522751765116,4.167615267280536,4.167715840321134,4.167800242962366,4.1678914308690445,4.167980171353626,4.168056890393287,4.168139291154981,4.1682106059182935,4.168289992271246,4.16836451503252,4.168428338440041,4.168494869302238,4.1685579598245965,4.168624760935411,4.1686817615888865,4.168743601067072,4.168805211243641,4.168857159855434,4.16891300042268,4.168969189644132,4.1690170591033455,4.1690677027904055,4.16911315777713,4.1691630134109445,4.169210549180678,4.169251938817404,4.1692978770615525,4.169336293240481,4.169379914181438,4.169417320303516,4.16945776963724,4.169498747175832,4.169533164917549,4.169571198137077,4.169604094762493,4.169641857800574,4.1696770682206665,4.169708570259176,4.16974336626679,4.169772332772742,4.169805793343768,4.169834584680754,4.169865877511063,4.169897453830945,4.169924692002367,4.169955211209044,4.169981257024214,4.170011047552367,4.170039232416456,4.170064281073077,4.170092645179581,4.170119503324958,4.170143909787213,4.170167278091629,4.170192330053953,4.170219115793375,4.170241720962344,4.1702697857240025,4.170289235750154,4.170313881945255,4.170340796699299,4.170359610199858,4.17038322188923,4.170407220697678,4.170427685739051,4.170448269925248,4.170470191277217,4.1704914603845875,4.170514441975088,4.17053590274611,4.170555884834155,4.170577947005057,4.170598942593899,4.170618478188842,4.170640126433657,4.170659165733701,4.170680054480681,4.170698577015765,4.17071950807651,4.1707375210340984,4.170758096354545,4.170776218341236,4.170796270445604,4.1708165735624165,4.170834275486836,4.170853950057789,4.170871441109904,4.170891254840847,4.170909278255545,4.170927934561789,4.17094739874338,4.1709640132687555,4.170983260291375,4.171000231813069,4.171018730157434,4.171037836719328,4.171054728542626,4.171072991918699,4.171090996097428,4.1711068162873195,4.171124148163215,4.171142282081409,4.171159821009922,4.171176949304056,4.171195047635166,4.171210508373231,4.17122934118081,4.171245212219138,4.171262568136975,4.1712807199310955,4.171297129995352,4.1713143173753435,4.171331255667423,4.171346141543851,4.17136315483814,4.171382611752576,4.1713967108470875,4.1714137549522805,4.171428944790701,4.1714472283029895,4.171461858813347,4.1714800687864315,4.171495131395472,4.17151180426082,4.171529590778964,4.171545068847045,4.171561625753094,4.171576012799246,4.171592308608836,4.1716087308920855,4.171624958539138,4.171641156401934,4.171657481632656,4.171674098292762,4.171689888710173,4.171705970204446,4.17172027948039,4.171736472897846,4.171752325231392,4.171768788871825,4.171784913767244,4.171800997226637,4.171816881395076,4.171830699432439,4.1718466903451015,4.17186249838247,4.171878434033538,4.171894344836625,4.171910386101558,4.1719259339701615,4.171941767989271,4.171955562753636,4.171971194822728,4.171986931071516,4.172002798432303,4.170322686193539,4.170306818832752,4.170291082583963,4.170275450514872,4.170261655750506,4.170245821731397,4.170230273862794,4.170214232597861,4.170198321794774,4.170182386143706,4.170166578106337,4.170150587193675,4.170136769156311,4.170120884987873,4.170104801528479,4.1700886766330605,4.170072212992627,4.170056360659082,4.170040167241625,4.1700258579656815,4.170009776471408,4.169993986053997,4.169977369393892,4.16996104416317,4.169944846300374,4.169928618653321,4.169912196370071,4.169895900560482,4.16988151351433,4.16986495660828,4.1698494785402,4.169831692022056,4.169815019156707,4.169799956547667,4.169781746574583,4.169767116064225,4.169748832551937,4.169733642713516,4.169716598608323,4.169702499513812,4.169683042599376,4.169666029305087,4.169651143428658,4.169634205136579,4.169617017756588,4.169600607692331,4.169582455898211,4.169565099980374,4.169549228942046,4.1695303961344665,4.169514935396402,4.169496837065291,4.169479708771157,4.169462169842644,4.1694440359244505,4.169426704048555,4.169410883858664,4.169392879679934,4.169374616303862,4.169357724480563,4.16933861791867,4.169320119574304,4.16930314805261,4.169283901029991,4.169267286504615,4.169247822323024,4.16922916601678,4.169211142602083,4.16919132887114,4.169173837819025,4.169154163248072,4.169136461323652,4.1691161582068395,4.169096106102471,4.169077984115781,4.169057408795334,4.169039395837745,4.169018464777,4.168999942241917,4.168979053494937,4.168960014194893,4.168938365950077,4.1689188303551346,4.168897834766293,4.16887577259539,4.168855790507346,4.168834329736324,4.168811348145823,4.168790079038453,4.1687681576864835,4.168747573500287,4.1687271084589135,4.168703109650465,4.168679497961094,4.1686606844605345,4.16863376970649,4.16860912351139,4.168589673485238,4.1685616087235795,4.168539003554611,4.168512217815189,4.168487165852865,4.168463797548449,4.168439391086194,4.168412532940817,4.168384168834312,4.1683591201776915,4.168330935313603,4.16830114478545,4.1682750989702795,4.168244579763603,4.168217341592181,4.168185765272298,4.16815447244199,4.168125681105003,4.168092220533977,4.168063254028025,4.168028458020411,4.167996955981902,4.16796174556181,4.167923982523728,4.1678910858983125,4.167853052678785,4.167818634937068,4.167777657398475,4.167737208064752,4.167699801942674,4.167656181001717,4.167617764822788,4.16757182657864,4.167530436941914,4.16748290117218,4.167433045538366,4.167387590551641,4.167336946864581,4.167289077405368,4.167232888183916,4.167177047616669,4.167125099004877,4.167063488828307,4.167001649350122,4.166944648696647,4.166877847585832,4.166814757063474,4.1667482262012765,4.166684402793756,4.166609880032482,4.166530493679529,4.166459178916217,4.166376778154523,4.166300059114862,4.16621131863028,4.166120130723602,4.166035728082369,4.165935155041772,4.1658426395263515,4.165739796848548,4.165643814369849,4.165522688013298,4.165413696233526,4.165294838849999,4.165184946491908,4.165059859811064,4.164927379088023,4.16478973819024,4.164648142472948,4.164498018351094,4.164343411700006,4.164205115840727,4.164038850623364,4.1638658781191875,4.16368755725116,4.163500254459193,4.163303331107404,4.1631043197657105,4.1628929260566245,4.162699119135556,4.162473208880613,4.162235486274158,4.161985375365699,4.161729793187861,4.161460740859933,4.1612167545857,4.160928868769782,4.160628716054946,4.1603126636135155,4.159989579419361,4.159642362722821,4.159283375308634,4.158908991734405,4.158568688125585,4.158162829176918,4.15774364938206,4.157306467949398,4.156845496052988,4.156369586838303,4.155862940678734,4.155344856531812,4.154902890891795,4.154307506517386,4.1230255553309725,4.123058789775075,4.123240675873269,4.123413797757182,4.123613596665457,4.123806566579427,4.123981323831612,4.1241547185263645,4.124349444193983,4.124552437952564,4.124729463325351,4.124926181966502,4.125129392470316,4.125308315739322,4.125507166756827,4.125708749401986,4.125889732057367,4.1260910142572875,4.126299062761764,4.126480435930553,4.126688349605016,4.126873333663022,4.1270831502460394,4.127292072981129,4.127477826916784,4.1276929525968145,4.127905244717393,4.128096124827313,4.128312856950408,4.128501747970386,4.128723150570365,4.128918633460414,4.129136535055379,4.129364523965248,4.129561925852147,4.129786654847622,4.130017394236953,4.130219237416602,4.13044477505526,4.130654324370213,4.130892616958919,4.131126295472402,4.131339181632274,4.131586226628898,4.131821763053133,4.132043179305118,4.132295436941092,4.132523949066088,4.132769499665864,4.133000492924835,4.133256297172741,4.133522760049982,4.133756919637953,4.134006764780837,4.134301844469437,4.134550688844122,4.134802681983107,4.135082478627432,4.135371808912451,4.135634700133854,4.135932866396884,4.136235939886646,4.136505681120118,4.136809468230281,4.137130628517104,4.137413972767243,4.137736757283065,4.138072009784175,4.138371108212777,4.138712203720234,4.1390669103905395,4.139387261652929,4.139749118748968,4.140122371699562,4.140459512346893,4.1408486634064205,4.141246775391305,4.141606756610281,4.14202696415944,4.142399778169753,4.142840002017859,4.143282854518894,4.143688014425478,4.144157597516813,4.144640038932647,4.14514047028857,4.145590633790821,4.146113187434356,4.146582710169301,4.147139575359135,4.147707728579827,4.1482189369511095,4.148826006886312,4.149446238046567,4.150011340451433,4.150675916432248,4.151349097555283,4.151962132877783,4.152691914719222,4.1534398283903435,4.154091323684443,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618,4.185629943880618],\"type\":\"scatter\"},{\"mode\":\"markers\",\"name\":\"Reference\",\"showlegend\":true,\"x\":[0.0,0.100995227694511,0.202000513672829,0.304001569747925,0.404001027345657,0.492996722459793,0.594997778534889,0.696998834609985,0.796998292207718,0.897993519902229,0.997992977499962,1.09899826347828,1.20099931955338,1.30199454724789,1.4029998332262,1.50299929082394,1.59199498593807,1.69300027191639,1.7939954996109,1.895996555686,1.99599601328373,2.09799706935883,2.19999812543392,2.29900181293488,2.40099281072617,2.50399969518185,2.59699858725071,2.69299484789372,2.79299430549145,2.89899855852127,2.99499481916428,3.09600010514259,3.19699533283711,3.29800061881542,3.39899584650993,3.50000113248825,3.60200218856335,3.70299741625786,3.80400270223618,3.89199256896973,3.99299785494804,4.10499684512615,4.19599413871765,4.29799519479275,4.40399944782257,4.4989999383688,4.60100099444389,4.71199415624142,4.8039972782135,4.90399673581123,4.99300248920918,5.09599931538105,5.19599877297878,5.29799982905388,5.39799928665161,5.50000034272671,5.59999980032444,5.70099502801895,5.80200031399727,5.901999771595,6.00199922919273,6.10400028526783,6.19200021028519,6.2929954379797,6.39400072395802,6.49600178003311,6.59699700772762,6.69800229370594,6.79899752140045,6.89899697899818,7.0000022649765,7.10299909114838,7.20299854874611,7.30399377644062,7.39299952983856,7.49299898743629,7.59500004351139,7.69499950110912,7.79599472880364,7.89700001478195,7.99999684095383,8.09900052845478,8.20100158452988,8.30299258232117,8.40300209820271,8.49299356341362,8.59399884939194,8.70599783957005,8.79499353468418,8.89699459075928,9.00799781084061,9.09899510443211,9.19899456202984,9.30999778211117,9.40299667418003,9.50400196015835,9.61399935185909,9.69299711287022,9.79400239884853,9.89099442958832,9.91800092160702,10.0379962474108,10.1299993693829,10.2340020239353,10.3390004485846,10.4299977421761,10.5329945683479,10.6379929929972,10.7299961149693,10.8339987695217,10.938997194171,11.0299944877625,11.1339971423149,11.2389955669642,11.3299928605556,11.4339955151081,11.5259986370802,11.6309970617294,11.7349997162819,11.8390023708344,11.9309954345226,12.0340023189783,12.1390007436275,12.229998037219,12.3349964618683,12.4269995838404,12.5310022383928,12.6349948346615,12.7269979566336,12.831000611186,12.9339974373579,13.0269963294268,13.131994754076,13.2350016385317,13.32699470222,13.4319931268692,13.5350000113249,13.6269930750132,13.732997328043,13.8349983841181,13.9270015060902,14.0319999307394,14.1369983553886,14.2309930175543,14.3360015004873,14.4389983266592,14.5329929888248,14.6269977092743,14.740002527833,14.8369945585728,14.9289976805449,15.0350019335747,15.1379987597466,15.2319934219122,15.3329987078905,15.4279991984367,15.5339933931828,15.6279981136322,15.7289933413267,15.8359933644533,15.929002314806,16.0319991409779,16.1379933357239,16.2319980561733,16.3339991122484,16.4260022342205,16.5319964289665,16.635999083519,16.7280022054911,16.8350022286177,16.9379990547895,17.0309979468584,17.1370021998882,17.2279994934797,17.332997918129,17.4259968101978,17.5299994647503,17.6359936594963,17.7279967814684,17.8319994360209,17.9369978606701,18.029996752739,18.1349951773882,18.2269982993603,18.3329924941063,18.435999378562,18.5289982706308,18.6330009251833,18.7359977513552,18.828996643424,18.9350008964539,19.0379977226257,19.1309966146946,19.2379966378212,19.3409934639931,19.4329965859652,19.525995478034,19.6290023624897,19.7360023856163,19.8290012776852,19.9269991368055,19.9449934065342,20.060995593667,20.1690014451742,20.2520024031401,20.3529976308346,20.4559944570065,20.5569997429848,20.6590007990599,20.7599960267544,20.8610013127327,20.9630023688078,21.0519980639219,21.153999119997,21.2560001760721,21.358997002244,21.4589964598417,21.5609975159168,21.6620028018951,21.7629980295897,21.8519937247038,21.9539947807789,22.0550000667572,22.1579968929291,22.2599979490042,22.3609931766987,22.4509947001934,22.5529957562685,22.6529952138662,22.7560020983219,22.8579930961132,22.9589983820915,23.0609994381666,23.1630004942417,23.2510004192591,23.3530014753342,23.455998301506,23.5569935292006,23.6589945852757,23.7609956413507,23.8609950989485,23.9520024508238,24.0539934486151,24.1509955376387,24.2629945278168,24.3549976497889,24.456998705864,24.5519991964102,24.6589992195368,24.7519981116056,24.8560007661581,24.9609991908073,25.054993852973,25.1589965075254,25.2519953995943,25.3589954227209,25.4629980772734,25.5550011992455,25.6539948284626,25.7509969174862,25.857001170516,25.9500000625849,26.0539926588535,26.1609926819801,26.2540016323328,26.3569984585047,26.4639984816313,26.5579931437969,26.659994199872,26.7539989203215,26.8599931150675,26.9639957696199,27.0569946616888,27.1629989147186,27.2539962083101,27.36000046134,27.4529993534088,27.5559961795807,27.6629962027073,27.7549993246794,27.8590019792318,27.9509950429201,28.0590008944273,28.1619977205992,28.2560024410486,28.3619966357946,28.4519981592894,28.5580024123192,28.651001304388,28.7539981305599,28.8600023835897,28.9530012756586,29.0589954704046,29.1509985923767,29.2579986155033,29.3609954416752,29.4539943337441,29.5609943568707,29.6640012413263,29.7590017318726,29.8520006239414,29.9529958516359,30.0619974732399,30.1549963653088,30.2719943225384,30.3539995104074,30.4589979350567,30.5750001221895,30.6569952517748,30.7609979063272,30.8679979294539,30.9600010514259,31.0529999434948,31.1529994010925,31.2509972602129,31.3579972833395,31.458992511034,31.5539930015802,31.6599972546101,31.7619983106852,31.8569988012314,31.9629929959774,32.0569977164269,32.1610003709793,32.2539992630482,32.3599934577942,32.4519965797663,32.5580008327961,32.6519954949617,32.7559981495142,32.862002402544,32.9550012946129,33.0589938908815,33.1520028412342,33.2579970359802,33.3549991250038,33.4559943526983,33.5619986057282,33.6529958993197,33.7590001523495,33.8529948145151,33.9560016989708,34.0630017220974,34.1580022126436,34.2609990388155,34.3630000948906,34.4530016183853,34.5519952476025,34.6559979021549,34.7569931298494,34.8559968173504,34.9609952419996,35.0509967654944,35.1609941571951,35.253993049264,35.3559941053391,35.4629941284657,35.5599962174892,35.6619972735643,35.7629925012589,35.8519982546568,35.9539993107319,36.0709972679615,36.1559998244047,36.2589966505766,36.3509997725487,36.4619929343462,36.5509986877441,36.6620019078255,36.7539949715138,36.8559960275888,36.9649976491928,37.059998139739,37.1619991958141,37.2509948909283,37.3520001769066,37.4540012329817,37.5549964606762,37.6560017466545,37.7579927444458,37.8619953989983,37.9609990864992,38.0619943141937,38.1519958376884,38.2539968937635,38.3539963513613,38.4579990059137,38.5600000619888,38.6620011180639,38.7629963457584,38.8509962707758,38.9529973268509,39.0540026128292,39.1559936106205,39.2579946666956,39.3610015511513,39.461001008749,39.5630020648241,39.6519977599382,39.7529929876328,39.8549940437079,39.9580009281635],\"y\":[4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.16441,4.15666,4.15346,4.15177,4.15076,4.15008,4.14941,4.14874,4.14823,4.14772,4.14722,4.14671,4.14621,4.14587,4.14536,4.14503,4.14452,4.14418,4.14385,4.14334,4.143,4.14267,4.14233,4.14199,4.14166,4.14132,4.14098,4.14064,4.14031,4.14014,4.1398,4.13946,4.13913,4.13896,4.13862,4.13829,4.13795,4.13778,4.13744,4.13727,4.13694,4.1366,4.13643,4.13609,4.13593,4.13559,4.13542,4.13508,4.13491,4.13458,4.13441,4.13407,4.1339,4.13373,4.1334,4.13323,4.13289,4.13272,4.13255,4.13222,4.13205,4.13188,4.13154,4.13137,4.13121,4.13104,4.1307,4.13053,4.13036,4.13019,4.12986,4.12969,4.12952,4.12935,4.12918,4.12885,4.12868,4.12851,4.12834,4.12817,4.12783,4.12767,4.1275,4.12733,4.12716,4.12699,4.12682,4.12665,4.12649,4.12615,4.12598,4.12581,4.12564,4.12547,4.12531,4.12514,4.12497,4.1248,4.12463,4.12446,4.12446,4.14534,4.15343,4.1563,4.15764,4.15849,4.15899,4.1595,4.15984,4.16017,4.16051,4.16085,4.16102,4.16135,4.16152,4.16186,4.16203,4.1622,4.16236,4.1627,4.16287,4.16304,4.16321,4.16338,4.16354,4.16354,4.16371,4.16388,4.16405,4.16422,4.16439,4.16439,4.16456,4.16472,4.16489,4.16489,4.16506,4.16523,4.16523,4.1654,4.1654,4.16557,4.16557,4.16574,4.1659,4.1659,4.16607,4.16607,4.16624,4.16624,4.16641,4.16641,4.16658,4.16658,4.16675,4.16675,4.16692,4.16692,4.16692,4.16708,4.16708,4.16725,4.16725,4.16725,4.16742,4.16742,4.16759,4.16759,4.16759,4.16776,4.16776,4.16776,4.16793,4.16793,4.16793,4.1681,4.1681,4.1681,4.16826,4.16826,4.16826,4.16826,4.16843,4.16843,4.16843,4.16843,4.1686,4.1686,4.1686,4.16877,4.16877,4.16877,4.16877,4.16894,4.16894,4.16894,4.16894,4.16911,4.16911,4.16911,4.16911,4.16928,4.16928,4.16928,4.16928,4.16944,4.16944,4.16944,4.16944,4.16944,4.16961,4.16961,4.16961,4.16961,4.16961,4.16978,4.16978,4.16978,4.16978,4.16978,4.16995,4.16995,4.16995,4.16995,4.16995,4.16995,4.17012,4.17012,4.17012,4.17012,4.17012,4.17029,4.17029,4.17029,4.17029,4.17029,4.17029,4.17029,4.17045,4.17045,4.17045,4.17045,4.17045,4.17045,4.17062,4.17062,4.17062,4.17062,4.17062,4.17062,4.17062,4.17079,4.17079,4.17079,4.17079,4.17079,4.17079,4.17079,4.17096,4.17096,4.17096,4.17096,4.17096,4.17096,4.17096,4.17096,4.17113,4.17113,4.17113,4.17113,4.17113,4.17113,4.17113,4.17113,4.17113,4.1713,4.1713,4.1713,4.1713,4.1713,4.1713,4.1713,4.1713,4.1713,4.17147,4.17147,4.17147,4.17147,4.17147,4.17147,4.17147,4.17147,4.17147,4.17163,4.17163,4.17163,4.17163,4.17163,4.17163,4.17163,4.17163],\"type\":\"scatter\"},{\"line\":{\"width\":4},\"mode\":\"lines\",\"name\":\"Model\",\"x\":[0.0,0.100995227694511,0.202000513672829,0.304001569747925,0.404001027345657,0.492996722459793,0.594997778534889,0.696998834609985,0.796998292207718,0.897993519902229,0.997992977499962,1.09899826347828,1.20099931955338,1.30199454724789,1.4029998332262,1.50299929082394,1.59199498593807,1.69300027191639,1.7939954996109,1.895996555686,1.99599601328373,2.09799706935883,2.19999812543392,2.29900181293488,2.40099281072617,2.50399969518185,2.59699858725071,2.69299484789372,2.79299430549145,2.89899855852127,2.99499481916428,3.09600010514259,3.19699533283711,3.29800061881542,3.39899584650993,3.50000113248825,3.60200218856335,3.70299741625786,3.80400270223618,3.89199256896973,3.99299785494804,4.10499684512615,4.19599413871765,4.29799519479275,4.40399944782257,4.4989999383688,4.60100099444389,4.71199415624142,4.8039972782135,4.90399673581123,4.99300248920918,5.09599931538105,5.19599877297878,5.29799982905388,5.39799928665161,5.50000034272671,5.59999980032444,5.70099502801895,5.80200031399727,5.901999771595,6.00199922919273,6.10400028526783,6.19200021028519,6.2929954379797,6.39400072395802,6.49600178003311,6.59699700772762,6.69800229370594,6.79899752140045,6.89899697899818,7.0000022649765,7.10299909114838,7.20299854874611,7.30399377644062,7.39299952983856,7.49299898743629,7.59500004351139,7.69499950110912,7.79599472880364,7.89700001478195,7.99999684095383,8.09900052845478,8.20100158452988,8.30299258232117,8.40300209820271,8.49299356341362,8.59399884939194,8.70599783957005,8.79499353468418,8.89699459075928,9.00799781084061,9.09899510443211,9.19899456202984,9.30999778211117,9.40299667418003,9.50400196015835,9.61399935185909,9.69299711287022,9.79400239884853,9.89099442958832,9.91800092160702,10.0379962474108,10.1299993693829,10.2340020239353,10.3390004485846,10.4299977421761,10.5329945683479,10.6379929929972,10.7299961149693,10.8339987695217,10.938997194171,11.0299944877625,11.1339971423149,11.2389955669642,11.3299928605556,11.4339955151081,11.5259986370802,11.6309970617294,11.7349997162819,11.8390023708344,11.9309954345226,12.0340023189783,12.1390007436275,12.229998037219,12.3349964618683,12.4269995838404,12.5310022383928,12.6349948346615,12.7269979566336,12.831000611186,12.9339974373579,13.0269963294268,13.131994754076,13.2350016385317,13.32699470222,13.4319931268692,13.5350000113249,13.6269930750132,13.732997328043,13.8349983841181,13.9270015060902,14.0319999307394,14.1369983553886,14.2309930175543,14.3360015004873,14.4389983266592,14.5329929888248,14.6269977092743,14.740002527833,14.8369945585728,14.9289976805449,15.0350019335747,15.1379987597466,15.2319934219122,15.3329987078905,15.4279991984367,15.5339933931828,15.6279981136322,15.7289933413267,15.8359933644533,15.929002314806,16.0319991409779,16.1379933357239,16.2319980561733,16.3339991122484,16.4260022342205,16.5319964289665,16.635999083519,16.7280022054911,16.8350022286177,16.9379990547895,17.0309979468584,17.1370021998882,17.2279994934797,17.332997918129,17.4259968101978,17.5299994647503,17.6359936594963,17.7279967814684,17.8319994360209,17.9369978606701,18.029996752739,18.1349951773882,18.2269982993603,18.3329924941063,18.435999378562,18.5289982706308,18.6330009251833,18.7359977513552,18.828996643424,18.9350008964539,19.0379977226257,19.1309966146946,19.2379966378212,19.3409934639931,19.4329965859652,19.525995478034,19.6290023624897,19.7360023856163,19.8290012776852,19.9269991368055,19.9449934065342,20.060995593667,20.1690014451742,20.2520024031401,20.3529976308346,20.4559944570065,20.5569997429848,20.6590007990599,20.7599960267544,20.8610013127327,20.9630023688078,21.0519980639219,21.153999119997,21.2560001760721,21.358997002244,21.4589964598417,21.5609975159168,21.6620028018951,21.7629980295897,21.8519937247038,21.9539947807789,22.0550000667572,22.1579968929291,22.2599979490042,22.3609931766987,22.4509947001934,22.5529957562685,22.6529952138662,22.7560020983219,22.8579930961132,22.9589983820915,23.0609994381666,23.1630004942417,23.2510004192591,23.3530014753342,23.455998301506,23.5569935292006,23.6589945852757,23.7609956413507,23.8609950989485,23.9520024508238,24.0539934486151,24.1509955376387,24.2629945278168,24.3549976497889,24.456998705864,24.5519991964102,24.6589992195368,24.7519981116056,24.8560007661581,24.9609991908073,25.054993852973,25.1589965075254,25.2519953995943,25.3589954227209,25.4629980772734,25.5550011992455,25.6539948284626,25.7509969174862,25.857001170516,25.9500000625849,26.0539926588535,26.1609926819801,26.2540016323328,26.3569984585047,26.4639984816313,26.5579931437969,26.659994199872,26.7539989203215,26.8599931150675,26.9639957696199,27.0569946616888,27.1629989147186,27.2539962083101,27.36000046134,27.4529993534088,27.5559961795807,27.6629962027073,27.7549993246794,27.8590019792318,27.9509950429201,28.0590008944273,28.1619977205992,28.2560024410486,28.3619966357946,28.4519981592894,28.5580024123192,28.651001304388,28.7539981305599,28.8600023835897,28.9530012756586,29.0589954704046,29.1509985923767,29.2579986155033,29.3609954416752,29.4539943337441,29.5609943568707,29.6640012413263,29.7590017318726,29.8520006239414,29.9529958516359,30.0619974732399,30.1549963653088,30.2719943225384,30.3539995104074,30.4589979350567,30.5750001221895,30.6569952517748,30.7609979063272,30.8679979294539,30.9600010514259,31.0529999434948,31.1529994010925,31.2509972602129,31.3579972833395,31.458992511034,31.5539930015802,31.6599972546101,31.7619983106852,31.8569988012314,31.9629929959774,32.0569977164269,32.1610003709793,32.2539992630482,32.3599934577942,32.4519965797663,32.5580008327961,32.6519954949617,32.7559981495142,32.862002402544,32.9550012946129,33.0589938908815,33.1520028412342,33.2579970359802,33.3549991250038,33.4559943526983,33.5619986057282,33.6529958993197,33.7590001523495,33.8529948145151,33.9560016989708,34.0630017220974,34.1580022126436,34.2609990388155,34.3630000948906,34.4530016183853,34.5519952476025,34.6559979021549,34.7569931298494,34.8559968173504,34.9609952419996,35.0509967654944,35.1609941571951,35.253993049264,35.3559941053391,35.4629941284657,35.5599962174892,35.6619972735643,35.7629925012589,35.8519982546568,35.9539993107319,36.0709972679615,36.1559998244047,36.2589966505766,36.3509997725487,36.4619929343462,36.5509986877441,36.6620019078255,36.7539949715138,36.8559960275888,36.9649976491928,37.059998139739,37.1619991958141,37.2509948909283,37.3520001769066,37.4540012329817,37.5549964606762,37.6560017466545,37.7579927444458,37.8619953989983,37.9609990864992,38.0619943141937,38.1519958376884,38.2539968937635,38.3539963513613,38.4579990059137,38.5600000619888,38.6620011180639,38.7629963457584,38.8509962707758,38.9529973268509,39.0540026128292,39.1559936106205,39.2579946666956,39.3610015511513,39.461001008749,39.5630020648241,39.6519977599382,39.7529929876328,39.8549940437079,39.9580009281635],\"y\":[4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.18647,4.154931379803825,4.154279884509726,4.153531970838604,4.152802188997165,4.152189153674665,4.15151597255163,4.150851396570816,4.150286294165949,4.149666063005694,4.149058993070492,4.148547784699209,4.147979631478517,4.147422766288683,4.146953243553738,4.146430689910203,4.145980526407953,4.145480095052029,4.144997653636195,4.14452807054486,4.144122910638276,4.1436800581372415,4.143239834289135,4.142867020278822,4.142446812729664,4.142086831510687,4.141688719525803,4.141299568466275,4.140962427818944,4.14058917486835,4.140227317772311,4.139906966509922,4.139552259839617,4.139211164332159,4.138912065903558,4.138576813402447,4.138254028886625,4.137970684636486,4.137649524349663,4.1373457372395,4.137075996006028,4.136772922516267,4.136474756253236,4.136211865031833,4.135922534746814,4.135642738102489,4.135390744963504,4.1351419005888195,4.134846820900219,4.1345969757573355,4.134362816169364,4.134096353292123,4.133840549044217,4.133609555785246,4.13336400518547,4.1331354930604745,4.1328832354245,4.132661819172515,4.1324262827482805,4.132179237751656,4.131966351591784,4.131732673078301,4.131494380489595,4.131284831174642,4.1310592935359844,4.130857450356335,4.130626710967004,4.130401981971529,4.13020458008463,4.129976591174761,4.129758689579797,4.129563206689747,4.129341804089768,4.12915291306979,4.128936180946695,4.128745300836775,4.128533008716197,4.128317883036166,4.1281321291005115,4.127923206365422,4.1277133897824045,4.127528405724398,4.127320492049935,4.127139118881146,4.12693107037667,4.126729788176749,4.126548805521368,4.126347222876209,4.126148371858704,4.125969448589698,4.125766238085884,4.125569519444733,4.125392494071947,4.125189500313366,4.124994774645747,4.124821379950994,4.124646622698809,4.124453652784839,4.1242538538765645,4.124080731992652,4.123898845894457,4.123865611450355,4.155147562636768,4.155742947011177,4.156184912651194,4.156702996798116,4.157209642957685,4.15768555217237,4.15814652406878,4.158583705501442,4.1590028852963,4.159408744244967,4.159749047853787,4.160123431428016,4.160482418842204,4.160829635538743,4.161152719732898,4.161468772174328,4.161768924889164,4.162056810705082,4.1623007969793155,4.162569849307244,4.162825431485081,4.16307554239354,4.163313264999995,4.163539175254938,4.163732982176007,4.163944375885093,4.164143387226786,4.1643403105785755,4.1645276133705424,4.16470593423857,4.1648789067427465,4.165045171960109,4.165183467819388,4.165338074470476,4.16548819859233,4.1656297943096225,4.165767435207405,4.165899915930447,4.16602500261129,4.166134894969381,4.166253752352908,4.16636274413268,4.166483870489231,4.1665798529679305,4.166682695645734,4.166775211161154,4.166875784201752,4.166960186842984,4.167051374749662,4.167140115234244,4.167216834273905,4.167299235035599,4.167370549798911,4.167449936151864,4.167524458913138,4.167588282320659,4.167654813182856,4.167717903705214,4.167784704816029,4.167841705469504,4.1679035449476896,4.167965155124259,4.168017103736052,4.168072944303298,4.16812913352475,4.168177002983963,4.168227646671023,4.168273101657748,4.168322957291562,4.168370493061296,4.168411882698022,4.16845782094217,4.168496237121099,4.168539858062056,4.168577264184134,4.1686177135178575,4.16865869105645,4.168693108798167,4.168731142017695,4.16876403864311,4.168801801681192,4.168837012101284,4.168868514139794,4.168903310147408,4.16893227665336,4.168965737224386,4.168994528561372,4.16902582139168,4.169057397711563,4.169084635882985,4.169115155089662,4.169141200904832,4.169170991432985,4.169199176297074,4.169224224953695,4.169252589060199,4.169279447205576,4.169303853667831,4.169327221972247,4.169352273934571,4.169379059673993,4.169401664842962,4.16942972960462,4.169449179630772,4.169473825825873,4.169500740579917,4.169519554080476,4.169543165769848,4.169567164578296,4.169587629619669,4.169608213805866,4.169630135157835,4.169651404265205,4.169674385855706,4.169695846626728,4.169715828714772,4.169737890885675,4.169758886474517,4.169778422069459,4.169800070314275,4.169819109614319,4.169839998361299,4.1698585208963825,4.169879451957128,4.169897464914716,4.169918040235163,4.169936162221854,4.169956214326222,4.169976517443034,4.169994219367454,4.170013893938407,4.170031384990522,4.170051198721465,4.170069222136163,4.1700878784424065,4.170107342623997,4.170123957149373,4.170143204171993,4.170160175693686,4.170178674038052,4.1701977805999455,4.170214672423244,4.170232935799317,4.170250939978046,4.170266760167937,4.170284092043833,4.170302225962026,4.1703197648905395,4.170336893184674,4.170354991515784,4.170370452253849,4.170389285061428,4.170405156099756,4.170422512017593,4.170440663811713,4.17045707387597,4.170474261255961,4.1704911995480405,4.170506085424469,4.170523098718758,4.170542555633194,4.170556654727705,4.170573698832898,4.170588888671319,4.170607172183607,4.170621802693965,4.170640012667049,4.170655075276089,4.170671748141438,4.170689534659582,4.170705012727662,4.170721569633712,4.170735956679864,4.170752252489454,4.170768674772703,4.170784902419756,4.170801100282552,4.170817425513274,4.17083404217338,4.170849832590791,4.170865914085064,4.170880223361007,4.170896416778464,4.1709122691120095,4.170928732752443,4.170944857647862,4.170960941107255,4.170976825275694,4.170990643313057,4.171006634225719,4.171022442263088,4.171038377914156,4.171054288717243,4.171070329982176,4.171085877850779,4.1711017118698885,4.171115506634254,4.171131138703346,4.171146874952134,4.171162742312921],\"type\":\"scatter\"}], {\"autosize\":false,\"height\":600,\"legend\":{\"font\":{\"size\":12},\"x\":1,\"xanchor\":\"right\",\"y\":1,\"yanchor\":\"top\"},\"margin\":{\"b\":10,\"l\":10,\"pad\":4,\"r\":10,\"t\":75},\"plot_bgcolor\":\"white\",\"showlegend\":true,\"title\":{\"text\":\"Optimised Comparison\"},\"width\":600,\"xaxis\":{\"exponentformat\":\"e\",\"showexponent\":\"last\",\"tickfont\":{\"size\":12},\"title\":{\"text\":\"Time \\u002f s\"}},\"yaxis\":{\"exponentformat\":\"e\",\"showexponent\":\"last\",\"tickfont\":{\"size\":12},\"title\":{\"text\":\"Voltage \\u002f V\"}},\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}}}, {\"responsive\": true} ).then(function(){\n", " \n", "var gd = document.getElementById('dffa3690-32db-4172-bc67-4a2b2c28af82');\n", "var x = new MutationObserver(function (mutations, observer) {{\n", " var display = window.getComputedStyle(gd).display;\n", " if (!display || display === 'none') {{\n", " console.log([gd, 'removed!']);\n", " Plotly.purge(gd);\n", " observer.disconnect();\n", " }}\n", "}});\n", "\n", "// Listen for the removal of the full notebook cells\n", "var notebookContainer = gd.closest('#notebook-container');\n", "if (notebookContainer) {{\n", " x.observe(notebookContainer, {childList: true});\n", "}}\n", "\n", "// Listen for the clearing of the current output cell\n", "var outputEl = gd.closest('.output');\n", "if (outputEl) {{\n", " x.observe(outputEl, {childList: true});\n", "}}\n", "\n", " }) }; }); </script> </div>" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "pybop.plot.problem(problem, problem_inputs=results.x, title=\"Optimised Comparison\");" ] }, { "cell_type": "markdown", "id": "16", "metadata": {}, "source": [ "## Convergence and Parameter Trajectories\n", "\n", "To assess the optimisation process, we can plot the convergence of the cost function and the trajectories of the parameters:" ] }, { "cell_type": "code", "execution_count": null, "id": "17", "metadata": {}, "outputs": [ { "data": { "text/html": [ "<div> <div id=\"8d0214ca-75fb-480b-ba75-60fcceebd568\" class=\"plotly-graph-div\" style=\"height:600px; width:600px;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"8d0214ca-75fb-480b-ba75-60fcceebd568\")) { Plotly.newPlot( \"8d0214ca-75fb-480b-ba75-60fcceebd568\", [{\"line\":{\"width\":4},\"mode\":\"lines\",\"name\":\"Exponential Natural Evolution Strategy\\u003cbr\\u003e(xNES)\",\"x\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],\"y\":[0.027317221847531645,0.021440072142362952,0.01552412102254861,0.012012697599616696,0.008455337068229521,0.007060982064744613,0.006468575885311447,0.006468575885311447,0.006468575885311447,0.00577865726443192,0.00552959457263925,0.004763073450242218,0.0044775975377058085,0.004379013004955744,0.004379013004955744,0.004273168340889667,0.003955897110882922,0.003955897110882922,0.0034986880564286216,0.003342689669412001,0.003342689669412001,0.002890395520799275,0.002890395520799275,0.002890395520799275,0.002659226757681212,0.0025947235815543222,0.0022234589812387255,0.0021782100360826563,0.001915500023808849,0.0018954106379730532,0.0016734069352450295,0.001505744674036485,0.0014510279913266051,0.0013806087112642924,0.0012993110648199405,0.0012162712732874713,0.0011695042684091333,0.001098695125595453,0.0009550058560525744,0.0009381713175978102,0.0009193352804017623,0.000854353976503966,0.0006956063110731118,0.0006911210433261203,0.0006911210433261203,0.0005687450342881079,0.0005249600650235622,0.0005249600650235622,0.0005034454143888297,0.0004521246292701974,0.0004521246292701974,0.00043186616433197277,0.00043186616433197277,0.00038987050389080956,0.00037207703569764363,0.00037019678749396505,0.0003508492980074643,0.00033796219653211917,0.0003225206227158696,0.0003174522823275387,0.0003092268121382846,0.0003034627340588516,0.0003034627340588516,0.0003034627340588516,0.0003034627340588516,0.0003034627340588516,0.0003021967696156857,0.00030077808134607747,0.00030077808134607747,0.00030014232286289624,0.0002990635913786941,0.00029790915169589175,0.0002960894640707812,0.00029537725484261174,0.00029537725484261174,0.00029537725484261174,0.00029537725484261174,0.00029482343273847596,0.00029482343273847596,0.0002942910619252594,0.0002942910619252594,0.0002942910619252594,0.0002942910619252594,0.0002942910619252594,0.0002942910619252594,0.0002942910619252594,0.00029119310312722706,0.00029119310312722706,0.00029119310312722706,0.00029015435466887824,0.00028969506572116334,0.00028853785732028107,0.00028853785732028107,0.00028704187767006453,0.00028704187767006453,0.0002848039056068079,0.0002848039056068079,0.0002848039056068079,0.00028444408355875737,0.00028369216417807483],\"type\":\"scatter\"}], {\"autosize\":false,\"height\":600,\"legend\":{\"font\":{\"size\":12},\"x\":1,\"xanchor\":\"right\",\"y\":1,\"yanchor\":\"top\"},\"margin\":{\"b\":10,\"l\":10,\"pad\":4,\"r\":10,\"t\":75},\"plot_bgcolor\":\"white\",\"showlegend\":true,\"title\":{\"text\":\"Convergence\",\"x\":0.5},\"width\":600,\"xaxis\":{\"exponentformat\":\"e\",\"showexponent\":\"last\",\"tickfont\":{\"size\":12},\"title\":{\"text\":\"Iteration\"}},\"yaxis\":{\"exponentformat\":\"e\",\"showexponent\":\"last\",\"tickfont\":{\"size\":12},\"title\":{\"text\":\"Cost\"}},\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}}}, {\"responsive\": true} ).then(function(){\n", " \n", "var gd = document.getElementById('8d0214ca-75fb-480b-ba75-60fcceebd568');\n", "var x = new MutationObserver(function (mutations, observer) {{\n", " var display = window.getComputedStyle(gd).display;\n", " if (!display || display === 'none') {{\n", " console.log([gd, 'removed!']);\n", " Plotly.purge(gd);\n", " observer.disconnect();\n", " }}\n", "}});\n", "\n", "// Listen for the removal of the full notebook cells\n", "var notebookContainer = gd.closest('#notebook-container');\n", "if (notebookContainer) {{\n", " x.observe(notebookContainer, {childList: true});\n", "}}\n", "\n", "// Listen for the clearing of the current output cell\n", "var outputEl = gd.closest('.output');\n", "if (outputEl) {{\n", " x.observe(outputEl, {childList: true});\n", "}}\n", "\n", " }) }; }); </script> </div>" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "<div> <div id=\"129abe4d-18d1-4e94-aab8-c2edc4df17b6\" class=\"plotly-graph-div\" style=\"height:576px; width:1024px;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"129abe4d-18d1-4e94-aab8-c2edc4df17b6\")) { Plotly.newPlot( \"129abe4d-18d1-4e94-aab8-c2edc4df17b6\", [{\"line\":{\"width\":2},\"mode\":\"lines\",\"name\":\"R0 [Ohm]\",\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799],\"y\":[0.004281466123206767,0.004651892757183634,0.004583929395450131,0.005264877700407695,0.0037513045380579433,0.002655637860668602,0.005094892887651204,0.004496202920474702,0.00476031461882361,0.005905709080527245,0.0052384035217262585,0.004592284253832084,0.004930309919998332,0.00426064569870311,0.004225916865474619,0.00459502665244664,0.005655634520886077,0.005462507487161507,0.005876682374112504,0.006144816357929872,0.003831405529843377,0.006068002690538709,0.005208268540692574,0.005016963024814788,0.006680363913673443,0.007394679623782869,0.005984284328632126,0.006596367676213052,0.005898568096086729,0.005872314271588571,0.004329281241508954,0.00603876427908049,0.005520298058623581,0.005663095712113438,0.0054615329567857486,0.006888957885293237,0.005764877921496829,0.005623843703578673,0.0075143273513227984,0.005256187480676278,0.005607704802097024,0.006251287147695888,0.007415830640885986,0.007444877303263752,0.008709458365523623,0.008244027700016844,0.007528588453463789,0.008660830327927645,0.008541293940095585,0.008472560617199911,0.007895195576062832,0.005806371301277473,0.0062507305302931335,0.00982301736167389,0.006258487068767598,0.009766700335316793,0.008434757254366241,0.009935054391332606,0.008641987781177736,0.008766723693688722,0.009657055864935902,0.010759614670412535,0.008603910838086927,0.010380458769361164,0.006194750196384414,0.00908860791764733,0.0069210389135262946,0.008126395096502655,0.009201248274796367,0.00992236051955522,0.008429372016496536,0.00813523559000973,0.007777602537085795,0.009283179580605485,0.008436249933552766,0.00796898743341517,0.010677013557985096,0.008860360851556674,0.008791905656112516,0.008888368319570681,0.00852353634790086,0.00850487077056023,0.009196775844689361,0.008251347329966541,0.009341649761378395,0.00897947610343511,0.008950605840444615,0.00897860692029067,0.008521297923941146,0.00934300914282646,0.008209076592675035,0.008634110407155535,0.00936293827709159,0.00877613933590872,0.008873035168347464,0.009039356639589177,0.009265180829629226,0.00920108858159179,0.010224687822399442,0.009000083970245275,0.009845078471869408,0.009259925844782897,0.009503786021448121,0.010187207498053462,0.009162498170382078,0.009536390660986702,0.008877707066182254,0.009507780336004879,0.008316407935637943,0.009179771035430124,0.009028390804060989,0.00937587106480923,0.008760262339725789,0.00910292597490612,0.008868838619054391,0.008950712445038707,0.010193116848253487,0.009486061772612984,0.008257118078477284,0.007828320033894207,0.008231222283287865,0.008340865006995728,0.00911878594592489,0.008719787644986297,0.008833354234091454,0.009308441007852091,0.007678427724521113,0.009460220513739692,0.008777358071196256,0.009593124732708229,0.009216911572861494,0.00867387806024836,0.00874464883035249,0.008509100495292462,0.008900691856313318,0.009044025922068315,0.009164884175992035,0.009194038296521772,0.009266982298861462,0.00946802525031182,0.009308904659239555,0.008606105489508041,0.008798315378104582,0.008611327560882717,0.008858731817109592,0.00882757565496589,0.009092411612827974,0.009208265792302564,0.009765564355721276,0.009228619787586247,0.008986630410615405,0.009371207358323221,0.00835385899875997,0.009008446916945035,0.009083538595797249,0.00926964568180527,0.008745935135557128,0.009596525481848393,0.009534146870432556,0.008647328151420589,0.00927988657394749,0.009071227750951273,0.009553240189982496,0.008816509661912102,0.009608770732953359,0.009511643668714478,0.008763061891857025,0.00955764709298915,0.009612369707054097,0.00933963550107287,0.00982478211289166,0.00957550241951257,0.009524471122084611,0.008983756253904447,0.009694684135363263,0.010061536813916973,0.010066693163562852,0.010061216513735927,0.009480247101298078,0.009141994526740145,0.009711920983853253,0.009325244689008189,0.009186732977740183,0.00951684637725546,0.009629236915924757,0.009901505282424238,0.00951062675220278,0.009646365962883034,0.010264158979907238,0.009709726476375217,0.00960121376964036,0.009246237014196895,0.009324288497054918,0.010052824341646342,0.009409149092913873,0.010058875182085793,0.009634854381692644,0.009204351831328682,0.009937121912767072,0.009969210212555096,0.009760220676257477,0.009711360828615774,0.009739782846853395,0.00984004668363315,0.009807628346549547,0.009716367830386832,0.00980082102578798,0.010032334860113928,0.009896054385049658,0.009834459190487638,0.00994818526201638,0.009335863964227442,0.009625151735948244,0.00938743724618936,0.01001669889564248,0.00924024839025478,0.009826852189305908,0.010057247475281762,0.0103401843962648,0.009982807817273233,0.010579691896345911,0.010469067479147545,0.009857903019130525,0.009978529484271508,0.009475304240779055,0.010039391091829959,0.010306062044309498,0.010539191655387949,0.010197750237549454,0.01071279893698013,0.009846209828037149,0.010078369926709473,0.009945481908989645,0.010002385726537303,0.009922258344764975,0.009936631300123393,0.009778159586153154,0.009451033522596469,0.009523597841431567,0.00966235498524964,0.009868020837162735,0.009903670932110737,0.01019414893645481,0.010035974508224833,0.010016639989827351,0.009894733430842274,0.010030270973073052,0.009810604244034567,0.010006661954154854,0.009791918203188185,0.009552722231381865,0.010237253298008984,0.009842539074427031,0.010037023123702535,0.00965969451927797,0.009789377697461195,0.009960163247996576,0.010029165268649764,0.010210551774130739,0.009981098956261515,0.00990846846330204,0.00993223192111073,0.010074622984417093,0.009862634573474438,0.009958711045120429,0.009938000665180536,0.010031244257859246,0.010073627774141398,0.009708255614426411,0.010086954936054071,0.00976514174156001,0.009883424779593,0.009780333885422952,0.010129894989585586,0.009770032662948158,0.009859868317327235,0.010219768575580863,0.009822377813515023,0.01022152649354448,0.009911884250877821,0.009914156864860687,0.009919685498091795,0.010317834311010255,0.010132184957608016,0.010179013695927169,0.01014724758395401,0.010166314575471371,0.010191580959007697,0.010105292448619371,0.01024026347282649,0.01005285767347618,0.009956985988291419,0.010074923781078927,0.010128280021754041,0.009861168953981186,0.009700182455814721,0.00991334045554789,0.009943527119490585,0.010010725976402905,0.01028319099405273,0.01011223882024562,0.01019953779899655,0.010238253712982153,0.010167923440684866,0.010025605304180254,0.010214940710486304,0.010337333373290484,0.010307257051583451,0.010133884076989803,0.009937469459943666,0.010064086454151673,0.010441161824865784,0.009883989086499583,0.01010414806965471,0.010128282177517881,0.009949156672832382,0.009875384217310714,0.010342375036241533,0.010134284027590819,0.01031575294686922,0.009888691805720324,0.010091824737652189,0.01004206322372352,0.010078604100319032,0.010135914109427758,0.009996121203847658,0.010038758653387422,0.00996365150827054,0.009927438464206887,0.010089583509314421,0.010118740046477311,0.010128528543822355,0.009808409907054928,0.01005169744776234,0.010109736389107681,0.010090811836349217,0.009977624433238722,0.009989391270082847,0.01012369422018648,0.010009075275777525,0.010068228482583208,0.010461019941462412,0.009939121154042045,0.009857925552837422,0.010281242607094126,0.01027312524472225,0.009835500274779346,0.010557463598150315,0.01020572290048872,0.010245937493269568,0.010098874393078989,0.010259954679303159,0.009888026176294914,0.00988671131849051,0.009841519352209921,0.010645650674705763,0.010193832753428708,0.009996639662363083,0.010207857551993627,0.01030974549449149,0.010067199298925139,0.010473943632581284,0.010497720931076341,0.010117040641609338,0.010297504906162205,0.010741698827716587,0.010211778243566396,0.010635037193436583,0.010533853589530984,0.01051468013186404,0.01016460812313895,0.010261725332867302,0.010595535514876289,0.01051535901093795,0.010370637354638392,0.010478237471773759,0.010420003062933681,0.010819669601463505,0.010565293771383256,0.010169997684114503,0.010606883660236868,0.010572204086553802,0.010498950128702082,0.010770530432712417,0.010502289693264822,0.01068674055845242,0.01006834511788015,0.0105175418564593,0.010250165869834663,0.010739726710279103,0.010357340688906745,0.010143996872532195,0.010411195935469558,0.010245789611317698,0.01058054890558662,0.01059966344836117,0.010729754477526679,0.010616329602651645,0.010436495825454464,0.01078314204925551,0.01082356218289921,0.010482068673244924,0.01076920094316372,0.0104309091516946,0.010402124308428996,0.010298247808576622,0.010617981924014466,0.01064315240723832,0.010294129366802997,0.010704209094448644,0.010407926834996589,0.010428885355835225,0.010666520437077874,0.010508655758495678,0.010310331979559838,0.010421299669710003,0.010343589275263838,0.01079119917756675,0.010395050822016708,0.010264887348526725,0.010497632936672918,0.010359034489098374,0.010362574107810068,0.01040742983329885,0.01038757791940391,0.010311733159328143,0.010277214025293831,0.010492799747544919,0.01057288566893102,0.010420387670505118,0.010263560799191994,0.010362928612182404,0.010557146665458771,0.010443577083361254,0.010235928184745217,0.010516705067628798,0.010417203928128796,0.010713643582824586,0.01027709926682624,0.010475464465236757,0.010409138208567353,0.010688364759885523,0.010449707971685589,0.010272126863874166,0.010380750577858401,0.010436581518826921,0.010453093968748108,0.010443888801488574,0.010359635752359658,0.010165313213979336,0.010398439395763686,0.010309109423708692,0.010306648453922623,0.010186540838754182,0.010367937912632531,0.010377056847007942,0.01031803674257636,0.010260905588029945,0.010318879947895907,0.010541576206079557,0.010486365216558881,0.010435025959610522,0.010391367588724307,0.01050115636568229,0.010321650670065262,0.0104339307845695,0.010340403238985173,0.010393709764129877,0.010185098536801843,0.010473710121323292,0.010438952256206958,0.010320216631197818,0.010269504028395974,0.010475630300769588,0.010325133338631037,0.01030200806827365,0.010391652425592333,0.010458660500736024,0.010337704041603599,0.01031491383490445,0.010540942080671696,0.010454312445055876,0.010336393970527016,0.010227361170226637,0.010266773825597156,0.010183031509759041,0.010483756160157925,0.010425557510080974,0.010430402676765317,0.010436663573945858,0.010416219396759616,0.010523679108265833,0.01038521082597922,0.01056494948760825,0.010397274667648964,0.010276379424710057,0.010576386842196498,0.01032764863009161,0.010468817930201756,0.010625087371519185,0.010446651424148596,0.01050096734938912,0.01041843998707548,0.010259533842853642,0.010438928588272493,0.010464561825115034,0.01042278173226987,0.01038539984224178,0.010526003449446443,0.010496171857429596,0.01044052074080001,0.010357243955769188,0.010448598888568276,0.01035310261310103,0.010455263628527039,0.010057460359133586,0.010384511296596854,0.010326925781123037,0.010358967653729277,0.010463697646063355,0.010490186543321527,0.010463788263583714,0.010615402253361944,0.010499498051556585,0.010349814839222291,0.010402900430349788,0.010398982221389099,0.010402864338766122,0.01046747732613798,0.010386717652656809,0.010494086663273849,0.010382377892202494,0.010268370675658903,0.010277707302152106,0.010258876277012023,0.010242198051388717,0.010288285638045439,0.010344471909018743,0.01038999546082493,0.01042889920337175,0.010325988277287226,0.01036725666876415,0.010432494543738482,0.010412710880245415,0.010412238318665064,0.010437418481369056,0.010310821850754692,0.01045597903573829,0.010372616017493891,0.01035092759500095,0.010539491526125147,0.010327737540415622,0.010400509159910695,0.010326597978618677,0.010380313214238763,0.010321858784022168,0.010333583891671268,0.010486710957294771,0.010414904495428059,0.010287149728191503,0.010440065603402124,0.01044679786637513,0.010376720292648205,0.010353098757067244,0.010369291779813819,0.010399878023807138,0.010244256120103698,0.010466246609664425,0.010593050793300182,0.01041109280724841,0.010465015275827853,0.010343970551954237,0.010437802629012356,0.010500099305248447,0.010319073891323319,0.01048475920799162,0.01031331505130455,0.010319029136141298,0.010352195626895577,0.010319746557176762,0.010314950029009364,0.010366390138620375,0.010286756855632372,0.010407092105508364,0.010359568070234654,0.010240643287367214,0.010242347341985024,0.01034268306804888,0.010319033582429726,0.010310981268792032,0.010232934909019087,0.010266005167575504,0.010347091131308345,0.010335924867564048,0.010365330074613013,0.010418378655075042,0.010264052044392269,0.010407449331944438,0.01028547995077265,0.010414938389680434,0.010374943326570416,0.010394601329926817,0.010388480169171986,0.01042201757224253,0.010419787020734992,0.01034757895695768,0.010426166677674136,0.010341935491283606,0.010299225042428624,0.010270271266865463,0.01031069111336557,0.01031377554440015,0.010378035565874688,0.010312241833861239,0.01035875323961986,0.010365414357951725,0.010186776735494167,0.010345941976196406,0.010347713702907565,0.0103129273750194,0.01034358259456229,0.010291246023255658,0.010296448679668438,0.010419563108892013,0.010231408979314885,0.010386777570803453,0.010291901896757322,0.010294862046274195,0.010327758264576388,0.010406295008903173,0.010289168969867863,0.010244061209568056,0.010257479580435786,0.0103889705934408,0.010277587325282967,0.010329384876727358,0.010328337073854202,0.010362250469102266,0.01034780360060667,0.010375171044747108,0.010442906503152511,0.010411379136277677,0.010433847676844214,0.010370686719771349,0.010390051308389934,0.010391695492241816,0.010379597281332987,0.01040528572149007,0.010400476299411364,0.010405774900504235,0.010335948969233304,0.010345567716513342,0.01040243471862147,0.010327013671856256,0.010389654430645245,0.010401653903157773,0.010468866446313814,0.010430240548973138,0.010511317761392436,0.010370600367939513,0.01042305160840834,0.010298118559476314,0.010422753274509595,0.010431270089949688,0.010370814499984551,0.010419734764480828,0.010386344997086376,0.010401306401029459,0.010448795793446779,0.010349743586689919,0.01038197618562748,0.010352601367913092,0.010414307745644362,0.010417412114729479,0.010361087358539205,0.01046457392355696,0.010444302715542109,0.01039262089692984,0.010433550490225367,0.010459983540824764,0.010451099076945549,0.010417005327628796,0.010444724225008029,0.010383514221354112,0.010389047908079135,0.010360088410263233,0.01041511664250683,0.010426164070120265,0.010414432016682282,0.010416568987953102,0.010409069487721698,0.010467782683860276,0.010456601557695419,0.010465300001154584,0.010451273705719018,0.010399619606316853,0.010476602120500285,0.01046106159205156,0.01043978987091585,0.01035815918588755,0.010430348175170212,0.010433638001596133,0.010441647644349078,0.010453872992712379,0.010405672857512684,0.01042030496494288,0.010360133026865321,0.010351709451560574,0.01046181752420672,0.01036355049739234,0.01040564595541974,0.010422688174248632,0.010383928043207038,0.010408514348009264,0.010353801745753958,0.01037158646292822,0.010392353914498713,0.010388411445462405,0.01043269709021193,0.0104320135501805,0.010405247843146455,0.010400373565969656,0.010321921608523596,0.010409102656417257,0.010387263249593975,0.010365647675124446,0.01037383515386366,0.010417988635070064,0.010396416642315488,0.010423473239405127,0.010398268000746669,0.010407520531132936,0.010402464280958205,0.010396607254048717,0.010412096874774873,0.0103853526024238,0.01038925742448259,0.010399994189798499,0.010412339006315744,0.010477232362963832,0.010415079734977024,0.010433671652760804,0.010425143127684581,0.010399081409000078,0.010390488955377097,0.010378948688343872,0.010381683914090464,0.01036061391401816,0.010387769715554768,0.01039056369785735,0.010355369982241042,0.01040822101075364,0.010349511363067283,0.010426865474758388,0.010413470202844019,0.010391798346235914,0.010378056243925331,0.010409895232696281,0.010382156277110885,0.010418671127919443,0.010418922883580857,0.010413350256287875,0.010363953964573626,0.0104293725856725,0.010426212087676311,0.0103619470654526,0.010378213390177098,0.01034401998104237,0.010391449123809956,0.010400825653998816,0.010391362870761105,0.01039550753027602,0.010358897717536205,0.010372430286727628,0.010340162456849104,0.01040660578800394,0.010377371973560534,0.010342637914342995,0.010355727724519072,0.010405969109385677,0.010418049262804551,0.010389163050274519,0.010380691121859438,0.0104057682073686,0.010356634956565084,0.01038857479380668,0.01039421535366458,0.010366754120861,0.0103185077864166,0.010370164654767642,0.010372174833424298,0.010387867962371532,0.01035424336068119,0.010390333150983248,0.010398501604319314,0.010375901382579891,0.010325577238134986,0.010363072044384618,0.010368969162715803,0.010348458362346036],\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\"},{\"line\":{\"width\":2},\"mode\":\"lines\",\"name\":\"R1 [Ohm]\",\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799],\"y\":[0.0074872396465730795,0.007101734046318012,0.005900925753418433,0.004530431491852689,0.006070029686260345,0.004952758408164293,0.003935104151943267,0.00747882482832407,0.007181924134314116,0.006530192255485982,0.005633783356931003,0.008346930846246403,0.00764867694108933,0.006553973059044313,0.007043035942548037,0.007602331761922825,0.006644132370788472,0.008170992061082771,0.0047966283291546105,0.00760020117067955,0.005413681872006153,0.0077535163339455615,0.009272609318291701,0.0076472683022076856,0.008798823410470034,0.006470980287512794,0.006741134205056161,0.008020564982681265,0.006802121631441921,0.008406806019201948,0.006872351926470547,0.007884826208437282,0.008118690784935361,0.009704054822594545,0.008939556108330405,0.009913497255516785,0.010225207546884468,0.006447063892505208,0.010360469674988765,0.008529236468377548,0.011043153015607092,0.009683242295588203,0.011335431333804281,0.008616202277460731,0.010126552426150837,0.009938688691543476,0.008839149938442124,0.009178914551302942,0.008725583656742884,0.009558915228467817,0.010268800054105978,0.00933813866865828,0.009432904921441058,0.00994272303794913,0.00927129082605417,0.007818898775143954,0.00771212452555709,0.008199887798361836,0.007716823887283633,0.011227576275440309,0.00869096273864766,0.01153366453486997,0.010296297556952766,0.011256488058438954,0.008340043217849546,0.00826076599505111,0.008105916093765188,0.01114060050053886,0.01063972150252409,0.00862150614466404,0.008595962747749469,0.007598994439942743,0.007350196669001634,0.008093226305661363,0.009252267227643619,0.0076215067209659875,0.008375979073246345,0.008600410985904803,0.007891210912133685,0.008564240654063863,0.007978902901991804,0.009968757909159605,0.008380489047837477,0.009580196589935717,0.006373819382216767,0.006983782804042507,0.009089248791778387,0.008238197374368919,0.0070442592872534526,0.008386056846167193,0.007979096755525345,0.007916640035774133,0.007578469473894923,0.00921169138337511,0.007700196892194234,0.008258156338255085,0.009419535798459038,0.008203156942982561,0.009393588230961643,0.0070820900086437655,0.008006387086970023,0.00817871977957511,0.008310931286866727,0.00796542812993053,0.0068226072326671465,0.007099568297356663,0.007861090606860814,0.008260834867926036,0.006737315953741265,0.008330010333171767,0.008737015826038938,0.008146812996788762,0.008588664896502554,0.008456877869406552,0.009589082466543145,0.008108148421856833,0.00805040893506276,0.009500632505531651,0.006618814132992537,0.007439626452604624,0.008031934209207867,0.008048165917330008,0.008763789913654303,0.007772248617600814,0.007565985760186184,0.008503392705018145,0.007485310643955726,0.008440168790243452,0.007801718807158766,0.009086805000769391,0.007455399660361359,0.007383842785857576,0.007516541493625473,0.008016214982142843,0.007789154406303532,0.007603056619042891,0.007909160128320014,0.008010709022264547,0.007541725852837026,0.006697264697159311,0.007704306038134399,0.006732278615280705,0.0070600705673366255,0.007309960821454945,0.008003342182850091,0.00684236323459122,0.008477173389774053,0.007089747925440685,0.007612665934580505,0.006286856858889741,0.007019580904760955,0.00776194762282127,0.007764050107945364,0.007682245295814178,0.007490236854774433,0.007042514300942569,0.008166574486843532,0.007781086129229774,0.0076906071628150595,0.008988486017271795,0.007442077889422304,0.007071835252091525,0.007382022553960439,0.007014191578650256,0.007320817680652383,0.007383022908232995,0.007224126598660947,0.006869893455690977,0.00692316803021248,0.007170899341535744,0.006597244543345842,0.007893429441077238,0.006637670049520217,0.007880728518180218,0.00714157075250892,0.008261220958216168,0.0065012277611787945,0.006551579847461405,0.007293032973653901,0.006529114766781962,0.006450996059615913,0.006839401490800261,0.0058582883976771105,0.006588478022390574,0.006701411890921235,0.007019782174411602,0.006859727635003469,0.006285874717485231,0.006996253025611842,0.006657268061539068,0.007137136875216885,0.007605112587055434,0.005889622272960438,0.006832056007298183,0.007321246414003657,0.007123267465942643,0.006843592649142477,0.006072057670143258,0.007306262519266605,0.006930609102860108,0.00620885589687125,0.007689710492362336,0.006912982650589411,0.006870707551713111,0.007851781329054165,0.007568886340005026,0.007094200616698971,0.007117107841327053,0.006595146948389601,0.006712465120647758,0.006439080907880441,0.006934717484129909,0.005701172896850431,0.0077731801285975295,0.006598920521710344,0.006751110227906236,0.007000706088601436,0.006327899365244158,0.006356794899798896,0.005980999660077376,0.005919386569860988,0.006705875180972864,0.006268949469439884,0.007599092503025646,0.006481345492315398,0.006262329464772487,0.006158377840452877,0.006448380918702007,0.006776259084472856,0.0067690956641956405,0.006498196764997346,0.0058869993971067455,0.006380837003851087,0.005712391733625621,0.006166593993185969,0.006748579072988537,0.006597431022048267,0.006991742053001718,0.0065309037981969836,0.006139464184852194,0.005647025871459858,0.006036060566003366,0.006322805444216938,0.0059244911999700774,0.005843703316056785,0.006254181763353403,0.006113688109915825,0.006580847958154235,0.00599899900075736,0.006032668584927219,0.006660929369716995,0.006456248385555455,0.006087492774296682,0.00617325579720454,0.006567862596952871,0.006309101859379088,0.006054765543833547,0.006456389543584428,0.0061643115993888845,0.0058387670139512324,0.006223893118038908,0.006487816009211616,0.006056486121937563,0.005512882167576376,0.0057402869930074105,0.006404317277035012,0.005761690499728937,0.006196113376878326,0.005949683769082824,0.006303454029127576,0.006051853091992225,0.006748359166366967,0.006302587624709157,0.005991788192577044,0.0059495799443602705,0.006040918271449398,0.005737709749380847,0.005734934151143063,0.005879269611794858,0.0060547289405230055,0.005799453626083131,0.0059702366857416235,0.005961565970847428,0.005862805686175854,0.0062368606131619105,0.006446745115444153,0.00588664379177651,0.006023654912629975,0.0058354423969148,0.005932702836975722,0.0065964784461315954,0.006431922597001242,0.005988086299062568,0.005948657730363459,0.0055377844795269394,0.005642832453030245,0.0058630743761681064,0.005261768194686862,0.005984950608672985,0.005991446041475658,0.005954490165200876,0.005875139754107039,0.005912111710428614,0.006166633217436296,0.005547090773763306,0.006200562244656644,0.00599960938330648,0.005951100202166379,0.005658050959557179,0.005624021301909145,0.005495225760851077,0.005627431312791674,0.00536609699590151,0.0056410552025687385,0.005772462950349135,0.005612325369084303,0.005500602377254715,0.00575553745321948,0.00571352651256845,0.00577594984236028,0.0058311066235695146,0.005828162715987081,0.005858369015886726,0.005849568388067877,0.005736038329586236,0.005963404813870953,0.005811682969325162,0.005486270199953307,0.0056479248936617404,0.005717766503426387,0.0058897808785048035,0.005771414858427878,0.006036867769052626,0.00577310319309538,0.0059672357395586595,0.005701500218314779,0.005874773780623567,0.0056490924271521735,0.006074083791386978,0.005966637671973111,0.005669345202104353,0.005177680936426376,0.00572900628458226,0.0058848457374500295,0.00514756617132852,0.005510059948564144,0.005476552656983963,0.005350711538280061,0.00511621968302618,0.005474641785298041,0.005703346246727944,0.005104597762645963,0.004976610585324327,0.00564682480235606,0.005315044100632794,0.0051148067207565295,0.005090111056751886,0.005585970018941139,0.0053004531618659366,0.005589577168761158,0.005090592821974226,0.005109755786567835,0.005402932037619213,0.005671932420929095,0.0050788457813047035,0.004797429264463993,0.0050096726838230006,0.004705205586053385,0.0048137084352905795,0.004863364620313073,0.004934522120412439,0.0057108281684853995,0.005329466675876719,0.004985235342790847,0.004433210271287407,0.004960976684349863,0.005253289916526932,0.004747225298296945,0.004847092297174122,0.004901272923680021,0.004822599479579137,0.0049915138544043116,0.004967581419458233,0.004931761385727652,0.004899120431544039,0.0053574339821246195,0.0053337499107271626,0.004768812323873782,0.005233807751901426,0.005231683257512139,0.005641982177449373,0.005120158829843151,0.004879380792669337,0.004659980644186782,0.005222671861364673,0.004440223761593252,0.004362202744984756,0.004639694883978876,0.004278138478070584,0.004317650118335567,0.004994853453847613,0.0049498667487417065,0.00464328350999934,0.0046129696129365875,0.004852102469899477,0.004868274124439025,0.004944151180424652,0.004899595810248514,0.004958760692412558,0.004875370134077329,0.004966791460395981,0.00486551138335093,0.005010879466915646,0.0047634385354561725,0.004681640232531736,0.004990949386278523,0.004850719630108049,0.004916383748613757,0.004936974486106655,0.005021809166284164,0.005150664407349269,0.0049459816264785916,0.004752407469785975,0.005016775099688923,0.0048589623857549485,0.005098520849532404,0.004793846865943532,0.004847370030835932,0.004715675742482903,0.0047013126928117715,0.004816401165338591,0.005104198486966323,0.00508495516592824,0.004725985073955252,0.004758712511128006,0.004921771605366375,0.004792043995913518,0.004738677855456612,0.004461150654760597,0.004725151627248876,0.004893436219987953,0.0048435298205102935,0.004690554727695044,0.004786659627168149,0.00486973447502106,0.005030901162165455,0.004663855330623063,0.004615510458116556,0.004790315863838347,0.004772903174318419,0.00464367170021805,0.004756227435108972,0.0047334834960567765,0.004743280475720233,0.004770341493264807,0.004768756421449635,0.00469312123264812,0.004768988755854784,0.004856991013822554,0.004868182478612186,0.004843551238248513,0.004739918354333532,0.0050515117508383636,0.005031838066442383,0.004816613562022667,0.00471185366700242,0.0046275304669691365,0.004884705977987098,0.004798798307978233,0.004757791256184403,0.004821230356070917,0.004625823513644254,0.004630953197813061,0.004751427606069085,0.0044641386358670425,0.0046023498120857185,0.004849583744670565,0.004661507781728155,0.00483119272420386,0.004592536125674401,0.004711930395534415,0.004622690862422481,0.004644575907784597,0.004649662195160931,0.0046187076404420714,0.004663480650130166,0.004428533881092398,0.004686191741775571,0.0044990139987447575,0.004584728547965754,0.004468751299879143,0.004572146907345427,0.004558822994985293,0.004486718668635335,0.004605583259837215,0.004583863422175542,0.004559353968133662,0.0045330017275235866,0.004541243483803181,0.004576522922055208,0.004506921314215659,0.004594640525340264,0.004498094933008363,0.004520092907542756,0.004460009996475869,0.004259155307341185,0.004449083170699224,0.004440321876327527,0.004423719216236805,0.004344142622319053,0.004243805441428203,0.004516979996513393,0.004651779339808599,0.004568428915378386,0.004414133669830806,0.00452401068516364,0.00451392573623547,0.0044013014957662395,0.004545887182613924,0.004573769081469899,0.004346414687550313,0.0045167963160097305,0.00449105675573805,0.0046203707955649684,0.004549968975387774,0.004559418144822261,0.004798107214453742,0.004372561283518396,0.00441569038003883,0.004527047423139859,0.004407461157900934,0.004504886303903292,0.004567211764411086,0.0044580819599390215,0.0045319584676891175,0.004327242105138229,0.004623096341213135,0.004536844261865627,0.004397066542161027,0.004481692100194429,0.004508530303534387,0.0045937796064343525,0.004454246209136146,0.004500941486799726,0.00444001811135518,0.004535607971630609,0.004519031964603834,0.004348479745864996,0.0044592988076455065,0.004385704139673983,0.004492661823304882,0.004496934235483401,0.004383233093281916,0.004584502293876459,0.004311418923903019,0.004718436489535036,0.004608609912956575,0.004598462346990147,0.004292213992274938,0.004426999993305668,0.004409220352238047,0.004453722736224459,0.0044209827761337505,0.004449215185066929,0.0043331692664309645,0.004455270889858159,0.004484740941864944,0.004404516124506462,0.004418906713542426,0.004307201680342916,0.0043575249930126745,0.004457420515662624,0.004428344128332086,0.00453055368564462,0.004476406944170555,0.0045726866076120035,0.004435603909419489,0.004406430466851491,0.004351963915665299,0.004479653302598938,0.00439610564293607,0.004460792319866018,0.00449500379611703,0.004390921561845491,0.004387170789778274,0.004439370209388638,0.004351430439299714,0.0044223383278205255,0.004285220989975936,0.004293834093634855,0.004460267009431367,0.004400974023285022,0.004549453487468304,0.0045888282102914775,0.004512378293405765,0.00448544153038635,0.004334648243275677,0.00452380183712358,0.0045104938553132,0.004419578754108344,0.004397010180296967,0.004446790163657052,0.004435545198405427,0.004552535795466141,0.0045007156296605925,0.004511434687921011,0.004534402693382258,0.004413178265372506,0.004525362193447715,0.004406301982844836,0.004560593015136125,0.004414811656737686,0.004352800540805889,0.004371314883958282,0.004489901514945219,0.004634894334320504,0.004418546979227945,0.004444657971649955,0.004447082646954788,0.004462112779941267,0.004443705911396341,0.004377088769999002,0.004412045667673522,0.004423400022546304,0.004413152422408967,0.004658633102960534,0.004421289803695659,0.004488707095757258,0.004349402639883705,0.004413239115078391,0.00438085757954478,0.0043476117582224505,0.004456333283378499,0.004426500754008299,0.004382031744023228,0.004416638939420301,0.004397607900069098,0.00436316844281325,0.0044632540410727995,0.004412511532113432,0.0045144538877793326,0.004617879774082394,0.004418232641629059,0.004431011851326013,0.004548704929854204,0.004410260005439154,0.004552037224084969,0.004443143552001004,0.0043495052823367695,0.004346125212122816,0.0043306434385870785,0.004369762433150088,0.004388053596462833,0.004362496028585279,0.004334762301090589,0.004423179288817531,0.004355304944912726,0.004380740572777353,0.004424197678994674,0.004332909253996177,0.0043679213565361846,0.004374077621852203,0.004389900108950628,0.00438679849360775,0.004331266188162262,0.004293446799720197,0.004355456961826007,0.004376132349123998,0.004409334339481519,0.004379847311018914,0.004347019266146138,0.004369600197052659,0.0043184036636638844,0.004441575888579523,0.004354374262349752,0.004365583670850023,0.004423301323418861,0.004366167897663003,0.004358163612803311,0.004357503368223404,0.00434080818421345,0.00436701645824108,0.004298785433310893,0.004345987253218553,0.004327754193818681,0.004321339036777674,0.004413453950598618,0.004359256852379857,0.004354493650228585,0.0043546192414302045,0.00436538264154862,0.004391494050147329,0.004319716959171981,0.004346170386606085,0.004381538816550915,0.004314028216502125,0.004386716513327729,0.0043344424654292325,0.004363171683385428,0.0043631871529061774,0.004298722254831853,0.0043725541018159635,0.004299170086903939,0.0042790673778131645,0.004303424758171752,0.004285021751454071,0.004299747455599654,0.004330520934909359,0.004334717586205535,0.004314902716164513,0.004320866958995544,0.00431868287117877,0.004311476088197525,0.004312779761746566,0.004297499940616022,0.004314145813326958,0.004286445122263045,0.004338203843958628,0.004330928147475144,0.004337853773058503,0.004239392038045356,0.004316232340179155,0.004312128092584149,0.0043423344814109985,0.004271420975429508,0.004280890698849754,0.004333419029154984,0.00428333985203952,0.0042909930187443315,0.004333536640040669,0.0042904612280115105,0.004317540296121164,0.004320883199915053,0.004288828023470131,0.004291851309751839,0.004347503465662378,0.004308051926145317,0.004286124736466497,0.0042603764629148225,0.0043185716714809735,0.004291785971414975,0.004283174254021244,0.004289535812456963,0.004276574470592912,0.004334228446070533,0.00437642265346088,0.004292864181906329,0.004304670830220187,0.0042746156041538405,0.0043103910443932116,0.00434558585523766,0.004324990939750529,0.004336608837161284,0.004311853790434934,0.004298867468648661,0.004363552350318749,0.004282183422657208,0.004336946763494199,0.004290362279960401,0.004324179924632587,0.00432470581784363,0.004309191445433925,0.004284340154094577,0.0043200629632815825,0.004308842091488428,0.004288321160393972,0.004280806691260351,0.004339332977353563,0.004335763313157062,0.004285510913476515,0.0043543929882319254,0.004345434204584978,0.004296826426092286,0.004330902820195185,0.0042551499879855,0.004316418377278628,0.0042902067413593615,0.00428048420511909,0.004217697990314124,0.0043059138459552,0.004295086477905375,0.004328491238691867,0.004295351353791013,0.004326242188489839,0.0042996943761704765,0.0043161250650110275,0.0043578631428870945,0.004336178733678967,0.0042935995876535946,0.004319210288221011,0.004327369181767998,0.004386318285910781,0.00426339226184645,0.004314472174260348,0.004317474771088019,0.004322214327679,0.00427187066705083,0.0043064219431399285,0.004323484425016041,0.0043132739722016545],\"type\":\"scatter\",\"xaxis\":\"x2\",\"yaxis\":\"y2\"},{\"line\":{\"width\":2},\"mode\":\"lines\",\"name\":\"R2 [Ohm]\",\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799],\"y\":[0.0048256239034205764,0.005730269866777386,0.004018165138117704,0.0033374773006188546,0.003504296931804496,0.0050209357142208325,0.0046194975864095175,0.005954959601408152,0.0038125741023742124,0.0056894803479303905,0.004737832282005382,0.005948150949289249,0.006055446431531451,0.004564041247093,0.0070700509658686754,0.00719191673439802,0.006111807246264342,0.005270112301971842,0.006348226040572729,0.005644877095113295,0.008254478792331285,0.006331274374383673,0.0047989606125065625,0.006399832722266147,0.005261434555879009,0.0037900714758068417,0.004451887851829356,0.005564182915657898,0.005847986993042122,0.005462838569636594,0.006067077910078047,0.006136243185498767,0.0063352053437615,0.005634242177733127,0.004526806953533485,0.005049391182470106,0.0065534537019220395,0.005636530839859431,0.005567460296584121,0.006765585974236456,0.0049128414594428235,0.005308194428743767,0.006650148640677866,0.005544914606451608,0.00576815470585719,0.0061547178542323755,0.004708143906736444,0.0054432807961086885,0.006532567940875479,0.005161707572445705,0.006603098332727668,0.007232971984156522,0.006489308088050058,0.0057266479504000335,0.005780342794192535,0.005855913506086451,0.0055366780801509845,0.005979488230726166,0.004976582338312807,0.005831613497286133,0.005230237881177035,0.006099910959220202,0.006188139727793754,0.007374443275310935,0.0055437536310168276,0.0056629895012279986,0.005254855912014209,0.005683939251611501,0.005698860461120938,0.004347427685284254,0.006029434629053239,0.006711776528468908,0.005810529528004906,0.006789848151600956,0.005475008413429346,0.006433177877715648,0.007092466893148965,0.006054834551968347,0.006939525564400573,0.005521769608239736,0.006098913616594302,0.0061061866243115,0.007373697554703248,0.007446805415651027,0.007288585332972134,0.006078665045139627,0.005987085763527308,0.006971012275008519,0.007668479492905208,0.00758750075628816,0.00820845736057237,0.0076474366026464515,0.007569649442726529,0.007460969014520392,0.008179695962378095,0.0072059222969354944,0.008568402379040607,0.008895748922707817,0.008271607564785574,0.00787886131827195,0.007894039195416574,0.007714653352605025,0.008010529893755919,0.007535598940269267,0.008356993956613185,0.008224735151362784,0.008685505034369944,0.006136295232307829,0.007478667709948399,0.0077245919544514825,0.008064621964383204,0.007423306236858568,0.009200381132693773,0.008390712940968706,0.009453644347608054,0.007922728392682855,0.008143754646248986,0.008515486164053142,0.009241463522485713,0.00808727716260827,0.009412817777850826,0.008878099015074421,0.008243201353197477,0.00915540795644364,0.008678756219147028,0.009033483395049108,0.00934432486563725,0.010119270940034791,0.009260430189675742,0.009195981382160514,0.009189526288522931,0.007551724723719737,0.008742358259033797,0.009733032348534867,0.008883997329994954,0.008448589745687612,0.009366610237534193,0.008945590893905066,0.008398306424661307,0.008820556955858642,0.008445872608846262,0.009776407289054335,0.008378512155051426,0.008534733222074887,0.00869812591862051,0.009605605015557604,0.010408345299876935,0.009290504123968587,0.009292024076282535,0.009178870969549172,0.009955921509566666,0.009981691803073964,0.009921784842642131,0.00964893810766941,0.009507285089985312,0.010151942358518271,0.009732630744771303,0.00980906443275292,0.009668284022690297,0.009911976308488698,0.009041187719675846,0.009651876571630332,0.0097461337393156,0.00931643962243545,0.009463253691203597,0.010164483247442867,0.009781200983517766,0.00961085027094911,0.010766656023027428,0.010056041476459478,0.010188507011010667,0.010184187192446825,0.010067047245761015,0.009702285952340586,0.009696126464797386,0.010502345431035643,0.010650125576424942,0.010558109629497863,0.010858784682071616,0.00959697134105345,0.009653422836039564,0.010503810755049,0.009989462804639403,0.010003743820719023,0.01102446256233765,0.010621862107332574,0.010274980619294986,0.009623099905062825,0.010733207158379965,0.010680955896994995,0.010012020989466389,0.009965848078664703,0.010881837868301289,0.011484215521811426,0.011381895949070707,0.01108316290946938,0.011182720974686344,0.011805734702954505,0.011779222606338615,0.011998521018611869,0.011459575394626772,0.012168629908443657,0.011348083650823605,0.012206098554021551,0.010998556389676594,0.012086521679290124,0.012116689489900176,0.011217658843249788,0.011976618942591727,0.01177874650811076,0.012830282643634484,0.011575840565640766,0.0111213010476566,0.011741682850518737,0.012447852356363313,0.010831552947595588,0.013268002979748405,0.01200956149012506,0.013092601929277779,0.012851002330094554,0.01137895194980719,0.012351921852890017,0.011596714236679307,0.011066884759880555,0.012767348325693567,0.013370378698822318,0.012444505264591121,0.012381913206253835,0.012553778753354106,0.012801753663729144,0.013382147280460853,0.013104112887328979,0.012949895256822616,0.012751570253838957,0.012745476129715202,0.013157525811973379,0.013519696646210659,0.012955974091327333,0.013533667003011096,0.012954418122511165,0.013265706003485037,0.01258322755220294,0.012785315885066189,0.013890045643457784,0.01316953293945284,0.01358801109963374,0.0134689872314891,0.013985674419716402,0.014950134827225674,0.013516075292452452,0.014092920664479786,0.01373627620083994,0.014815035315057958,0.014747880974038409,0.013667151179152136,0.014576847205809524,0.014204962433629615,0.015643129474999552,0.014740229563890412,0.014675521189134517,0.015609809212149465,0.014640633641502948,0.015137953027590825,0.012917774886027852,0.01560442455001016,0.01615819439217093,0.014573151623559301,0.014860032875491973,0.014765574812634893,0.014200588336241405,0.015164732121521527,0.013865482208992867,0.016897443665274892,0.01630003583450167,0.01631960567941395,0.015409399934586225,0.01507221319960024,0.01534215250764006,0.01569622285028504,0.01643976632426501,0.015771337841391193,0.01701354955558362,0.015915403811328336,0.014880061087164826,0.01641956283195231,0.016346618829558398,0.016359834399059706,0.016348142653059856,0.016978647199616264,0.01729593823530197,0.01643816400293754,0.017253409137220174,0.015966854784559815,0.017123429250383525,0.015785898839195053,0.01671476348585723,0.017290485168794185,0.016628748820838642,0.016022637081992176,0.016373896591242817,0.016646829633722108,0.017768993804716506,0.017288585014816494,0.016818826272979502,0.017709869512683996,0.016645232697898058,0.017363281906444816,0.01843276418842526,0.01881373836029491,0.017048336905685336,0.018259873746523318,0.017243573585664237,0.01923280511647354,0.017672119029114964,0.019140123814032645,0.019350584833132015,0.018765619343622458,0.017919585689374205,0.018624225514519397,0.01837488423306744,0.018599895699264797,0.01946360720179805,0.02017997521169433,0.017811691916669,0.018634891961297008,0.01946212365124646,0.019022376757651668,0.017649874990840603,0.020582581522366358,0.020396928295293222,0.019376881778388574,0.019685712374933374,0.020029392704966616,0.02038234483467909,0.01917942405294451,0.020498205370164266,0.020737345373293664,0.021274931620064542,0.02061511491321838,0.019974283413071014,0.02117317797210964,0.02146486917397672,0.020242260450496954,0.019734434302905918,0.020798453067465777,0.022790210297845465,0.02200277803023306,0.019718956901190465,0.02125352893464696,0.021600077115302072,0.02099060656624496,0.020314595062505096,0.022561861485057996,0.021320891483115504,0.020991683288071786,0.021534601138137287,0.021036079181777863,0.021036530734334678,0.019513449489899935,0.021503930396812542,0.02195909458155776,0.022476038197249838,0.02342214453621176,0.021384861074182665,0.02341445489183546,0.023397801704730985,0.019710847730081773,0.022154887488499756,0.021665276699205295,0.021270086837811657,0.020797048964507757,0.023842450499097976,0.020857419717590794,0.024365993982354065,0.02269770679796163,0.022460245353984127,0.024582015637839447,0.02286874357085945,0.02387680838775063,0.022259848060427998,0.021819733166595693,0.022247426690914666,0.024306004793218206,0.023440682727810306,0.024145198019325822,0.023453461076775404,0.025119222761686693,0.025107396900532635,0.02534459587566362,0.02522469690663511,0.025145055033821934,0.02260708262226782,0.02523422335806944,0.025518482658355497,0.02366063822631709,0.025838391457436882,0.026693785907980685,0.026254374794411818,0.02488873770369743,0.025841947366154073,0.024977904615351647,0.02557302731611492,0.024990768834623842,0.025255613666869018,0.02519548564685999,0.024487261876835354,0.025685498777716188,0.024942485749864022,0.026537587263209525,0.024972150324630453,0.025432400431987773,0.02676907152642553,0.02607261155881909,0.026447122590297512,0.025947372640755254,0.026404869814619487,0.024718723311189142,0.025789969875975073,0.02551965213124798,0.0246929725948373,0.02656428993695251,0.026880528074563977,0.02576924971405547,0.027289761999100885,0.028567316775062572,0.029180423535711132,0.02707479079143095,0.028756699936112875,0.02762409055414876,0.02630047281795092,0.02794122211578879,0.027425793890805822,0.027100527645249377,0.028805338873052665,0.025513395496481545,0.026607345607319845,0.02855985064686375,0.02657486593918199,0.028626795055699553,0.028854476985639664,0.028330639526425158,0.028713170798494062,0.028404618968252884,0.02961391592235498,0.0313905383658751,0.028064485925985396,0.02798075784222155,0.027725352784037757,0.030689612147012383,0.028287544210344864,0.027887196390493113,0.0290977060635587,0.027904513222340183,0.030317612350328177,0.028561178846861792,0.03115104045984059,0.03264659753914304,0.030109941404715575,0.031326699979783275,0.030053471608558435,0.031324588003905904,0.03206770657953561,0.03126921880568972,0.02763366304778824,0.030811359528051547,0.03481650815896798,0.03196041188455303,0.031761733186645796,0.03258313590640519,0.03173194652709565,0.03137753544468834,0.03386887497747132,0.0356278190232392,0.031368219095107286,0.03197383579889896,0.0323932524708779,0.03218356199290446,0.031095937829384527,0.032807706705681915,0.03466606780265851,0.03261487065995819,0.029486985887523385,0.0367682776715782,0.03321345856359017,0.03416373424010569,0.03430932489640756,0.03467656064704583,0.03810672057785348,0.037370143201989045,0.03854871381707065,0.036953211932575294,0.03243387776228542,0.03086306741945821,0.037566902579765846,0.036748186745488236,0.03695975376533013,0.03846143772738117,0.03584038748957411,0.036974680644463416,0.03626702246470384,0.038036429533735566,0.03821845772510928,0.04108340533958677,0.03672373921269857,0.037497065180672896,0.03615126764564177,0.03699558064402504,0.03640083934968772,0.0372617115909444,0.0354057260800049,0.035238853737526374,0.035229442855431,0.0338150704878568,0.03609317531314809,0.03735742718396482,0.03764099682842663,0.035575739716072016,0.037014557764691404,0.03780347154749307,0.036121223094851884,0.035506035445864045,0.036533175862120244,0.03576212492458558,0.0374272981043541,0.03686231053176054,0.03761539101990245,0.037675276101546286,0.03552522101728269,0.03705742688268516,0.03595239509045903,0.03663622511311789,0.035537010237938885,0.036560399716990995,0.03624498861672344,0.03779545182590963,0.037378455814560486,0.03627095298086234,0.03559087117008461,0.036534307963134116,0.038233565299761026,0.03469936005415779,0.03637901859036542,0.03626243971458957,0.03535004647504788,0.035883252675900305,0.03635836713483309,0.037273753031792256,0.034681480333680646,0.03486059635856415,0.03612331822334694,0.034735229217348076,0.0356591800787272,0.036557442735768074,0.03678915523074576,0.03562707461099754,0.035801400065102976,0.036077112183618296,0.03580273479727045,0.0384781717837866,0.036223289155720005,0.03394725336921518,0.03406403891550781,0.03797166527528232,0.035836490813321284,0.03682265916314791,0.03582065616179695,0.035289752498539426,0.035904320915935505,0.03658053831233142,0.034985466088375015,0.03606531031058595,0.03591176307564907,0.03541320639304834,0.034956618758803376,0.03600531124553431,0.035288909405808186,0.035571276634085804,0.03619408667512655,0.03659589000804883,0.034713371434565564,0.03512758721531398,0.036848647637888324,0.03517417630472614,0.035139756403931015,0.03437564443148501,0.03560019544141684,0.03591654044213837,0.03554667114050045,0.03562412463848218,0.035413281421977624,0.03514613635081728,0.03460425716230369,0.03655093507856783,0.031203778433206434,0.033369060917918275,0.034432515295674725,0.03599946675340496,0.032654309090760045,0.03429228562225921,0.034383687466947345,0.03608485973719114,0.0355848547242809,0.034936062642571084,0.034461774627102995,0.034901828505599336,0.0342453660813708,0.03545230076500919,0.03337879960428017,0.034645300852359964,0.03391635443530006,0.03551101583606119,0.03397242469568737,0.03444001802973432,0.033445455314257966,0.03314304011294024,0.03419483800894421,0.034380068577583155,0.033877015425062114,0.03437860377909283,0.033054022795563194,0.03323077162826671,0.03424656477920113,0.03378983984399412,0.036323589948402416,0.034978345331909244,0.03610448884166737,0.03505660779196825,0.03418853756953469,0.03418834477174807,0.034881769405750766,0.03762857613716122,0.0337843829499554,0.03342980074255052,0.03386289778273927,0.03526865476419436,0.03594350233073036,0.033669325650038856,0.03406054065410062,0.034344504651901565,0.03429921468486035,0.03542923626661553,0.03434276952499204,0.03492145143347275,0.03420295128351075,0.03479545380556961,0.03575143611865564,0.0359553723567353,0.034618679304611204,0.03556121605774877,0.03504814613462603,0.034257790254541405,0.035267199321749855,0.03525642713057908,0.03524013999165149,0.03414725978404444,0.035314628948586,0.03511171023388958,0.03488832142887233,0.0342910136155565,0.0346044543910714,0.03625473599206407,0.03570154151484721,0.036159390096958816,0.035674091651921785,0.035885715501296246,0.03353425064453029,0.03521560641069963,0.034766168497363255,0.03543204129872878,0.03600580746774594,0.03482057304270629,0.03645679350808276,0.035754219193973716,0.03669411140519603,0.03331053048750858,0.03655208990084986,0.035959543764780735,0.0359220528108956,0.03473037371941607,0.035292348487094505,0.034182203425372835,0.03420570275308689,0.035368394274074115,0.03520397262229657,0.034979863321929955,0.03473917405329078,0.0365288787577659,0.035167082298063056,0.03527966535565362,0.03330927977514601,0.03609552510982073,0.03530277556755143,0.03383567583927411,0.034969139333985086,0.03517619531457234,0.03457062945542135,0.032750257114949693,0.034383143669276556,0.03374055682527469,0.03488268430483221,0.03546289722876582,0.03451698641312987,0.03448056320296894,0.03393646176193106,0.0347002519619619,0.03433231955428988,0.03425833526175042,0.03388781612154981,0.033397703421525544,0.03374227237592777,0.034370866350947354,0.034474927015234795,0.03521422337808608,0.03339004786803672,0.03492936422897206,0.03434954358032339,0.03345093300607412,0.03402268247048371,0.03445891669257727,0.03470324869342852,0.03407132432575254,0.03426819366779389,0.03429480027927719,0.034237444156115765,0.033762649106153786,0.03260069840718558,0.03340543366908771,0.03342435029017994,0.03336183654210428,0.03325871829550775,0.03364715526022301,0.033500989103906816,0.032428712122798846,0.034228411325516635,0.033381721992696685,0.03311275070695818,0.03311319031197626,0.03326248023255105,0.03366617437678607,0.03328754725670448,0.03352334605345478,0.03415991172609022,0.034416132016354566,0.0340713546375041,0.03243863260632256,0.03300108103957286,0.032413115334191535,0.03423727643097128,0.03281248183336263,0.03391963467205277,0.03216660704980898,0.032541255677469724,0.03233769850203728,0.031171269481435233,0.03309939884305532,0.03215729644928178,0.03324122992736274,0.031927007552370816,0.032184920651186874,0.031683851085478734,0.032740080700467314,0.032844889576400554,0.031880582025256114,0.0318361865420303,0.033330876709446525,0.03173567660487054,0.03291744622675132,0.032216320225555685,0.032521936083367765,0.03168758870748968,0.0311980369355406,0.03246181952397694,0.03190254510556399,0.03024504707793659,0.031885056622676794,0.03167982442902472,0.03198075800459537,0.03201989211387537,0.030159456179052763,0.03191337321982261,0.03245017122813257,0.031199643268676438,0.031753837902694634,0.031191012159259762,0.03125981810844095,0.031322796321499084,0.0322285618561029,0.03149757388320663,0.03172014360962437,0.031341980260851554,0.030840046592344017,0.031209617021573086,0.031233087031617715,0.03253546444124217,0.0329390346617041,0.03185826273498676,0.032627040597151026,0.03123941080710503,0.03183136732331663,0.03223070757856588],\"type\":\"scatter\",\"xaxis\":\"x3\",\"yaxis\":\"y3\"},{\"line\":{\"width\":2},\"mode\":\"lines\",\"name\":\"C1 [F]\",\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799],\"y\":[491.99488209680646,474.62834610602897,462.3882295241347,451.60163094778716,454.11861692831457,464.3038942003422,456.6982576396722,460.15010505047906,484.4226474912147,493.5442427869159,456.1440976173037,472.90211665583,482.7537411597486,485.760578179483,442.57563901129555,462.7933129545129,463.41845900866684,472.9285376766415,477.456453925758,499.083933630449,460.62168712552244,503.64306653826026,512.0185355246376,475.920437536099,492.7155904037811,544.0313062680038,470.81460412192905,486.82311704975655,553.3536526553623,501.4905342560697,537.6515335077993,545.9264577895818,463.3762598371945,472.0917227229484,474.61125912245956,492.24331103970707,475.9631287558298,478.44570979292797,498.0576096750232,461.2437299205821,486.36104641718254,477.5727707282199,496.20048828280994,458.6412861422835,457.16907986130514,506.12565240776956,511.49974651292683,473.8891210169708,473.27581036899676,481.6869988532472,488.66514884775955,508.06781868014815,514.4949550906094,466.5419822722388,500.8038069800529,486.3482308960677,510.05655652952476,454.6655389783505,432.87183558950863,477.2921911927437,492.77479321512305,446.2623020244559,512.1873784616972,483.23881256647456,504.83267925569214,510.8145254898265,498.5122005677733,505.85790452344247,541.6782075392999,524.6348261186657,514.930009550813,517.6526776296396,514.9387574173733,466.32428967082086,513.0005509857307,512.4227994201175,494.6692343889805,528.1170290897362,508.1274469117326,512.2815653219513,527.3487700546258,546.936864607351,497.778702751367,486.10118198181686,516.1336309598802,482.777909115816,513.1792240438867,491.45270527690985,495.6022722527017,506.68234941098245,473.81948400103914,486.5533048192007,457.53533896737304,507.23638636573196,499.2341834421331,473.7928635465427,490.4063233696511,502.06000795842886,537.4416855208084,466.39157477538066,511.47971899258124,497.32074259814726,503.26633447476644,502.70559205709554,497.317293050318,464.9892068817869,522.214594315349,504.3720388533496,499.4949071723157,537.9617415435144,489.7531581259046,479.2962835371485,515.4847522486098,477.1877856786997,474.30007936472157,523.7299564574876,495.69697057689626,479.4246046240867,489.1175191664077,490.59796662748283,518.683916347716,551.8227219710194,552.0464639154703,498.724475020553,550.8777612957235,553.6868329512487,515.8617033639293,478.2082547106539,503.47853908531243,497.4747744429699,513.7812145793497,531.1997591203302,510.2792888693028,565.1572549266535,528.662257198813,524.34329894125,519.2457303235456,535.2269346619755,528.4784682847737,509.4624064795126,528.5597885697244,512.8534529413807,506.9819891825995,520.6752727375978,526.9118668832963,547.8052970842652,524.6680662151114,532.8298086786089,522.5671511225231,518.2371363153311,511.2173061610983,561.2932559530077,550.16424653912,547.0440939343542,528.0300839343303,531.3197929879709,553.7866858936062,495.95459439278363,520.8293229888692,518.7131589174038,550.6103852401043,537.8050810701125,530.8521209683976,554.0755568146599,548.5043292276791,504.8892982426628,537.5389790385047,551.9538635425748,568.1236747824141,575.1361004832858,542.3376666876286,538.1845302663586,547.7981908554067,492.9876647889681,577.0356625430778,531.1403665014897,549.7954156673605,567.3970446682846,562.1270282936001,542.2663879857687,589.0231812396148,559.9768684595081,579.8467656529353,549.7394712879264,526.2305896984092,522.632836983683,553.8886609016312,553.0953967587809,527.0558227913091,536.7878250106302,527.3819855729413,541.6804841760144,541.16438906141,553.8973581339203,569.5237392066588,566.7866847993394,527.4856477810248,544.557466500784,539.1493228088364,558.5409878511867,536.1715662240787,549.4053272881946,518.3485839501013,517.5836156218014,566.3482300182882,523.4332617443805,568.3420990470999,562.7224522970633,519.9264421058413,575.5368175061184,551.8793035633902,577.5524427681944,542.5886546369059,555.5589430661626,581.4577109480343,526.0985717117305,588.0365568283696,556.8960143181431,595.1000076735655,538.5490054691794,563.540736901367,586.891679277495,578.9957132836453,575.8802326051143,581.3867443861388,553.1800746055438,520.3896734176552,539.9227028302732,604.6518311244688,543.2221651825112,618.2686266936752,578.2437601594455,616.3752380620768,584.3425788683322,629.8057717564789,605.3741017854617,642.757447641342,565.1133352034426,560.3167513813132,532.4826181840541,592.1638685956219,670.8081766241155,630.017597990261,643.3370596502937,643.7332518448757,634.4438857517755,628.4360326091984,634.8211520253616,616.2871916278185,635.1073691203628,654.9338634313796,635.7602264420975,639.3035743178787,627.712357258105,633.2314996824125,621.9736465062953,628.5214015029782,631.8933668589652,645.4821702352035,625.0411690553751,631.7353527022641,653.8622048438743,602.099595151006,600.0774788909399,649.363487676076,589.2418213958798,581.2966304922334,560.4909749797391,587.713012469093,620.6772675887424,650.9066791697297,673.8191560219935,595.6035829832588,600.3652884443459,651.2153209408549,619.9975084720407,614.0715425456661,663.3461153286513,653.0874726781103,622.6906434696239,652.8976809461172,631.7629487196742,593.8816690058945,628.2417620204047,623.805115206808,610.210188662552,594.4677338181365,622.7782359441295,600.4100886210065,639.895796511028,626.4662068162576,629.835270138468,611.3999113895237,636.7292904305639,646.6243064035909,679.331764041202,656.1542806302576,619.1120653962693,630.2012759808034,648.924048567284,655.2158022164164,637.0577844553551,642.9164325457139,621.5650156424747,628.5885041461793,649.6380001081487,640.3865663171406,635.6040356018048,613.2459041203135,641.603733254749,620.2446919682299,648.0420238142062,608.2959997370174,601.1057655456882,595.5393180953953,619.6914702024259,646.0931798838993,641.9903297595642,643.6334613689535,624.2490360525253,637.045621686473,620.493063311499,630.5807974543939,621.2826254318065,627.0669403778522,628.5701228525428,589.7519690452907,584.7043830892412,626.6931744539235,615.8750170508616,592.8795732797867,630.9753628427541,651.5898220319083,659.0698092720453,628.2928157382421,591.0278762935199,623.7726484529695,612.7968821501887,615.6847961224457,606.5359444238943,625.8951594689391,621.2961210456162,617.1256045993844,651.115789273106,613.1438686713,612.8847043851067,603.5026328153559,655.6303598093914,612.5909083637232,630.4085018869031,658.4629265835923,637.8219275698092,640.3512554233109,607.7493690381563,625.6054294419456,616.226498784271,623.687673651655,595.0410599093452,608.2429240021673,605.8006850487128,606.5481995051346,629.2162275169857,593.7208314697389,606.7469790925262,640.5222538469259,625.3917655491784,623.2197878762843,629.0487359340391,640.3717736529582,632.0835377391742,633.6305987729767,636.1336970214037,645.6213702530027,630.5890073445339,615.1324285840402,662.6843376906363,645.310023081025,619.8115103721512,656.0263668059879,637.3712902721369,640.04979067307,624.864720273116,630.6761927422056,641.7312665250947,623.5109914888016,622.0929194650266,659.4161196973993,596.0305062925701,653.0631438040502,647.775679123846,613.6666499917806,643.8777151868184,633.7145138962895,598.7983502885548,597.0582613309465,613.0233765675118,597.020514135559,644.0507139060202,634.9487210558483,637.9288473570762,638.2995684710432,617.6233339729633,617.8129248158674,594.6619386333316,623.5443947444131,579.3632174518633,629.0363689541117,605.8110565085178,629.8710291405356,635.8781511582421,658.2524706235773,612.0460233646465,644.7917820753835,593.2109071207138,657.7032243692147,621.1770883488496,633.038846153941,633.8019021883758,584.2995689037627,629.2209385311761,591.5136244544957,602.4610270076821,656.1878752787751,666.6807508570344,632.0004197107785,630.7775080909184,628.1570446887072,607.6179967097186,626.6360180823496,685.0481550463103,612.4466745718006,606.8792469283987,636.6392607133151,633.6136414305314,626.1066878311187,609.3834471991926,634.9153856473083,600.6429649329795,587.1730844272956,615.7071929468046,633.0130588418876,633.4526890174269,623.2114917462695,653.2266112685451,642.903791138356,618.1856934079024,590.9867407230049,651.8296151620996,617.1649376172237,613.8996719025332,648.3902956270816,637.99349900368,663.9524336062733,631.9648588118728,668.6419342379648,618.7414935517488,638.8599921398682,591.9515026390371,621.3390174143667,595.345007893079,652.4616710510081,609.2543001096705,616.2700412627541,625.7866054961385,610.2855781754769,600.7282080802194,598.1550650188994,600.5688856930534,601.8925603772512,633.0630979747641,625.6775872832558,595.3180226378977,576.6991967661489,655.8299184595966,622.8847105681602,633.611381370517,592.89046438361,616.1988351054887,622.5340607659576,592.1808558446198,578.2333985458305,590.2671816785252,649.6591642273315,592.1363430818379,581.2245126773723,600.7975624467108,552.1700070320054,613.5131130941542,544.1066770004873,558.1238115150036,582.020304445907,622.9578514472274,562.823103482267,604.144930175103,536.404076500582,515.374967219909,565.9118632158173,605.1066282548375,564.0194378115701,578.0035675892975,570.8677751587951,555.5340606044549,602.4639248254306,571.1284049606693,597.8915184629504,586.2267693465124,530.4453663427275,557.1848028384788,584.7132932874542,564.821020592227,557.6868412673849,579.284381836623,564.2781366581797,588.9026641363171,555.381041875982,562.6802348312643,566.4899887343622,606.1338218300597,594.7981165323894,554.2404145982765,554.4873989215148,585.0888172542807,573.9139320401632,573.7528520231116,553.5673875689286,580.6075405879658,595.787816426351,537.2821502270724,537.1163357322856,560.8948919479776,537.1970671896527,559.7167148433199,555.1282270346802,553.9576947199275,529.6610686888012,557.6466389136687,563.0858355117206,543.3784456859426,555.1725631071677,570.0034473870257,601.9061340343092,539.3972247474877,576.8378611903469,557.4177032748751,546.0105802761942,563.3138473466423,580.3597139260652,608.5334523499878,589.7069195691713,553.8883348801621,575.2571274145643,562.5237184984575,561.6419694190942,569.5034200373173,551.3258488469902,564.3192657467886,590.713595336883,566.3812152339962,584.6030860025468,571.2196036894981,549.5347150813178,551.75124833904,576.4853348256919,597.0892352585482,552.1458420698061,550.4158892985963,558.0505473188291,568.7434227485959,546.6832594757035,581.2271424685539,539.7273815615622,555.0137408318408,533.9668178495162,568.6402121249878,546.8995789296952,556.5403028851345,532.972467770873,545.3086455652692,521.6126522921674,568.3569912438484,550.2806085857982,521.9883907166835,535.3058310987906,535.8620286707985,542.6193706576053,562.5816736341599,538.5227064008592,550.9763116980438,552.4120122545637,531.3182422711744,537.0032582257943,535.2026293324216,555.6595588189065,504.7930386554016,548.5759270465454,543.7392086147875,532.4586712976782,538.1554639341945,534.3252930159209,544.2673629538332,530.2018344391103,548.306380642376,551.9088026914886,534.4014322569977,551.2384149504896,558.12522152384,538.5742275957127,537.3456557399563,567.6278753073798,544.6700869905723,539.6952227918124,547.0372500733357,531.6182899893892,544.7656969648181,552.8604202642015,550.7137868261284,535.0615591335327,542.029882837732,537.773206402053,542.4221075433893,577.1558201635769,541.0446935739835,555.8010470387622,544.126372989331,536.6036505364065,559.8995045416987,536.9351323356813,527.9801129667082,548.0164122982208,530.6983452763285,544.3248084721915,535.0545303076569,537.5600731371618,539.6373442421805,542.7602726259101,519.1042948315722,529.0454688169922,529.5984269391189,537.5985009734369,537.9877180077207,523.5180813898537,551.1842567645149,521.0876619292951,535.5498525436446,521.9536094937318,533.2055030160284,536.914917021101,538.1603546664963,542.9635524798249,553.3206263830934,524.1511022797367,528.7711310879484,543.3829740582398,526.2240365210534,524.1249607141834,543.1130886558115,530.6638521332998,535.175285042829,535.0348751893459,551.6220184853521,549.2292147415327,538.0154634434153,533.5927214609403,535.1454129572564,542.6943192420758,538.0135726746022,541.3458638277283,545.0418157720497,556.5349587885602,545.1448242329108,542.6844213821912,538.1140126064433,543.5130905826325,526.4056389209707,538.2872450109866,540.4099717377086,528.845389988723,554.6217253498984,559.8593285384726,557.7330859348049,561.0870094186929,555.815692052191,559.1626051722238,555.752523371792,559.0052901421014,570.1615169425503,545.2165301807033,547.8478520995416,560.4327108306404,552.7259579884377,554.1459656259982,559.9169804669359,561.623945951419,565.1923523131481,555.3289981399718,555.0324327653841,563.8152917413516,560.5826683169215,557.7886238602397,553.5187447388664,572.691123078979,537.5308984071778,566.1608706933388,545.9632461902106,553.2146202998473,557.0420081197921,552.3498440476681,543.1817149658772,569.9724164903238,547.0960294756462,554.8683350028224,588.312252229054,546.3597627071672,548.9957359082337,557.1248433500508,545.7675325422894,547.3784876744463,538.9301515463306,550.9499181180845,557.0270611389841,545.9765238070871,548.7904020678092,536.2829550114834,538.1310958857686,539.9179180351426,537.8290960607151,552.669068410594,548.7718146752544,553.8154030312484,563.7357271655543,549.6923451990039,546.3392286167789,548.2848231779285,550.4516082209931,556.0866888008355,552.1026659604381,547.0930158407614,557.0246325940551,554.3732196019351,567.7684290095391,551.4238783319967,551.1613662500363,563.9677998115626,565.9952092733149,549.1309742705588,558.6718781079098,554.0615825730237,561.2927600125422,556.458685784048,549.6337418401213,521.5595388108045,546.2598622050102,556.8091484468167,551.5828952347642,537.9852851453782,540.3601548585846,553.0085609087528,533.2285743282022,527.0839663189981,535.5802299628423,533.1131836139627,526.8659994773691,546.1055247785296,533.9178016691588,532.0407685797284,550.9824729045198,539.8778118278198,557.6545372362257,549.5982144626994,543.8932675148582,562.3178592339074,543.5041348918628,551.6185416388854,545.3833839489215,548.4969530235298,535.3288819812727,550.0940371134583,549.6758893343385,564.4037283827845,545.0565613598159,553.5875541881987,552.1593744032228,557.3951246012081,555.5960915416915,566.0792599862984,541.3574216868055,560.7222813908927,537.1898069265158,555.8997224846951,546.5768970630905,563.6043224060953,547.8838566635421,554.5460673636048,534.523072595478,541.0108480881594,536.6206681535728,550.4476954950429,545.4082441739467,534.7036333285347,528.1809162735591],\"type\":\"scatter\",\"xaxis\":\"x4\",\"yaxis\":\"y4\"},{\"line\":{\"width\":2},\"mode\":\"lines\",\"name\":\"C2 [F]\",\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799],\"y\":[2304.8084438206993,2297.175399110566,2271.03646992133,2269.5489023359187,2245.451569407035,2313.522707837136,2290.602124942313,2283.3603816833634,2313.2302589894443,2312.9833079140512,2302.0514389667355,2288.5346498408016,2247.4772105000293,2257.335510236842,2313.5328182597473,2280.7775679281044,2292.2261754062547,2316.4972564688223,2307.2696960935987,2256.2553716823386,2311.652591718123,2289.0041311070318,2295.416639693759,2280.4574944090673,2269.3073686866096,2316.049832247503,2340.801955536219,2305.7892354932787,2298.7663393304974,2261.524538303648,2249.915896547012,2265.0182160148747,2258.139288489415,2249.5372509937556,2270.380870741731,2275.9312237069726,2284.4397783483037,2275.3821004885303,2247.3253981275116,2245.6478611516027,2274.6217081725026,2240.358600147568,2247.6592789889696,2253.898923065531,2257.455566720543,2247.2618507866914,2265.785839379295,2268.0138787991314,2256.500868743038,2249.3066475894716,2245.240702819897,2243.9367261708494,2240.527190059753,2277.7371193386375,2263.223689501665,2246.9993609568137,2263.39360908906,2244.6945189750318,2240.6070601925862,2248.3355347052425,2258.0772617041957,2231.347200167085,2269.418234596838,2248.7203472410706,2267.7336129120363,2261.8794141644503,2279.405636075424,2268.5545303707186,2272.9197178775057,2277.0576424500036,2270.322008376733,2252.8277198686246,2255.2358970605383,2275.2257473259315,2268.8936717828647,2231.075682978084,2266.0500522775433,2269.8617559333,2249.1686161383886,2248.833701582999,2228.203305968902,2265.161898306278,2248.9802108352815,2270.682899143843,2286.332347539956,2250.099349206433,2267.4396160678452,2253.030120761841,2272.783307385641,2283.2818574226135,2278.627852325094,2291.374743355963,2263.3472156124744,2260.1339788219243,2281.0156257428134,2276.7965037446857,2293.242375280136,2284.221497817609,2316.2378232100937,2279.101249217468,2288.6843276867676,2243.6451627645424,2280.9930890104692,2268.308614787277,2270.4819630418515,2255.5459568148794,2269.2954970301516,2279.2715581544508,2258.8521360830578,2275.004628424266,2272.377487109681,2279.1004698645047,2265.7170422518443,2286.3592160682397,2280.583460840873,2261.333810693028,2284.510103742135,2268.2242299708355,2255.141808964554,2272.377552260586,2247.192576625395,2266.157682591388,2282.9002436754135,2261.8329390256126,2255.63152236477,2252.6379572200944,2267.0462032845435,2274.4423187560624,2254.902100323388,2269.9612613762165,2258.5173466959754,2245.074084077444,2264.9951907516165,2250.5267436326217,2279.587471984073,2269.1697191218122,2249.6457434159684,2257.9847747334816,2241.2730525664033,2245.494543835451,2279.840222446373,2240.1536669986435,2285.459537724933,2249.8510634424697,2239.564464038357,2264.1456951616237,2261.5999045062545,2249.3656767285356,2269.369889336426,2247.845717193487,2280.1807144202303,2266.7396658908333,2263.666813048462,2268.056661877845,2294.976755705263,2272.208598947902,2258.2543894970745,2266.305196906412,2273.1480048398016,2270.6867035131727,2293.0503201633333,2259.5816613388783,2265.5266238163504,2283.2587927030013,2259.7209067065482,2241.26035754412,2261.2556069060374,2286.9523935422303,2265.576558161276,2277.8081902875024,2259.0541564270816,2275.111483036648,2246.7836182260694,2246.6499595632563,2268.411937484269,2261.5626134234876,2260.589507166601,2260.4059603432956,2264.8805115534833,2268.308029382039,2286.730569988829,2244.992123374832,2274.640758746587,2282.9905015945797,2271.2487890771145,2258.445803385377,2260.9853179533566,2260.9745644013974,2279.312552247948,2265.765720448728,2263.1495030093265,2269.5772630794454,2276.1429620086055,2272.746948716355,2271.4831057023302,2257.904294452775,2268.3255736430115,2275.388644888039,2252.9253217543624,2273.398057155809,2247.711804579529,2273.2819687666924,2257.0494938558895,2257.5923265383676,2272.250035899356,2283.6796729746266,2261.9565769691403,2270.599390903012,2270.41043941465,2291.4980817371834,2251.542408382589,2237.487543363519,2262.6423348722537,2264.3354543944297,2251.263700662579,2237.487285336351,2265.8018857040474,2250.6242465859154,2286.94127715953,2277.0109220463555,2260.567144462326,2261.145033815712,2266.5909068477495,2259.9617232373976,2269.2036172290555,2294.9766340454157,2279.5627558594824,2253.314737150442,2286.7344996999695,2278.6459082250353,2256.8293969755528,2276.651771462513,2253.818984526815,2280.795565663716,2268.8131801054055,2254.351554392706,2273.564550995497,2257.6421890575007,2254.8679136164255,2275.3794779812306,2286.2247151207675,2273.587301047693,2297.248172958392,2262.5921099771913,2258.46081776921,2273.006619785006,2230.053885047118,2285.528807933404,2254.6351985580045,2239.0970892574874,2254.5023133204418,2236.994421292776,2237.210895780501,2234.7053984975596,2274.8716442671807,2217.3907484732276,2271.7632325236627,2250.073913231869,2263.9382974086802,2265.9984046336726,2265.149063437492,2275.4548025977724,2238.003227252739,2244.094316314318,2263.212504912706,2244.5653901548503,2247.3077371601885,2267.3965904640836,2229.0058541083154,2288.12916761797,2216.488499930501,2270.242923646387,2259.2865647194376,2227.5426498734323,2249.90081465734,2248.2736120049767,2241.7206475118583,2252.3785947843144,2272.03822014475,2231.163848328044,2260.291766403437,2255.5472437029453,2223.853357354946,2256.6296199396656,2274.7656889244213,2247.6944747160137,2264.3138178765066,2268.2010341738332,2220.3184002057315,2252.464473740533,2261.552025904819,2280.6047018235454,2246.74777333341,2248.5205233603965,2247.3160565880553,2251.956680491439,2223.085899808804,2247.8657764506975,2242.955753801165,2265.7944789476614,2239.210852930737,2245.372771175401,2222.9589077782084,2258.391725737136,2238.4735543427814,2227.829287574875,2234.5447623831806,2212.578267967837,2252.0239763890977,2236.6355978784486,2240.335346570444,2250.3579712728447,2242.341218631334,2232.8517193377284,2235.4152851420167,2258.52364389149,2259.676752404587,2223.1804182345168,2250.0918301840493,2275.9670904963955,2257.2467468650866,2215.968270665964,2240.6184075368024,2267.7343195169524,2238.8588885065046,2245.9199644901632,2237.8539166333626,2228.2638220131794,2232.3277573633486,2234.2091925000695,2233.918002756845,2227.9753495852397,2225.327388822777,2265.025494667804,2233.591218919514,2260.3885028106174,2210.145902484875,2222.953699299185,2247.6788668076438,2216.2346877692885,2234.1507888618885,2234.6818103200826,2210.4225341603506,2233.8718557828656,2234.3935486244213,2246.7397907366326,2244.5244031226157,2266.86923756137,2256.9025630721635,2224.3456811358487,2239.842845466971,2241.1408403277333,2239.275520022993,2235.0574298928564,2238.1868405954065,2219.986814366142,2236.9994513079378,2261.464905264794,2238.2880259900617,2243.9233850395817,2244.791457283834,2250.381038041238,2235.4569842971628,2232.7924466492777,2243.6210028614464,2237.4459109615186,2223.298892724138,2248.085103234594,2232.6227763722663,2241.7367812781863,2222.972140554076,2226.069890028519,2232.2753471833057,2231.9220900654495,2249.508577164391,2238.0074054709594,2213.606559838284,2249.328541087371,2237.4929175377442,2225.2993479423776,2243.7681724802205,2249.984795060393,2281.0325652783968,2256.350699219562,2235.397285684854,2261.7587928812723,2248.819880178119,2228.2595557724235,2245.2867485608244,2225.716289327125,2224.343104786494,2242.175108231803,2241.322071155363,2228.1908451348777,2252.468893417165,2242.4532794635284,2225.3958318719156,2238.3758405841013,2265.121613697406,2257.274738028041,2214.6356111882938,2238.245471644107,2235.981090076991,2219.964438901107,2236.699313739954,2242.2284084798303,2214.1986793242513,2217.5512672417185,2215.635226056782,2251.701732078399,2253.3383367478536,2226.4761520207526,2234.1586206779084,2253.025708733767,2239.0577614701515,2244.3516989084774,2218.5238965649596,2219.4176153342823,2226.497310333115,2207.91959073176,2213.1338001288314,2246.912862333591,2230.312651194514,2248.157739560383,2219.358731332133,2215.3396492181337,2264.157171440037,2246.1068990029894,2219.341006411977,2270.635928187148,2202.6908844418967,2268.3884776842688,2220.806755246971,2238.0544915650394,2216.4514190886816,2225.4373279024253,2216.151252225593,2195.9296574540076,2241.0844234812525,2210.61403523671,2221.534060802586,2234.4841654066527,2234.4509583787576,2235.6685831306777,2222.9248264288094,2222.1491085442954,2228.1683984380998,2228.4596769508407,2191.9927946367175,2206.347470353764,2222.4680047148813,2197.0893507686224,2235.3904776848894,2231.0464775380806,2226.56241992524,2219.2025806645574,2212.4441657572033,2213.631293381935,2232.5610598662815,2185.4456285315496,2184.01856174215,2217.306793742851,2203.8448313933645,2238.067578082174,2223.6219577845804,2213.3784808004643,2203.573324193762,2191.33702488914,2234.2493063100624,2203.025842540733,2228.0069338385856,2244.2345803077746,2185.5877036396746,2198.3774479954086,2235.7488848233293,2211.89852321389,2215.869661454406,2224.308994832218,2207.1198984710495,2194.6348680930714,2204.5258579299248,2193.1038113783384,2201.6751479951486,2176.628042674026,2198.3191600806736,2213.656566296425,2159.3185726570464,2206.511350328596,2171.313615763994,2176.4044053223247,2162.0271774058947,2185.668520153143,2215.1107511573405,2179.0049364639544,2171.1237914452713,2208.1880158647027,2210.1089050000296,2152.1963087929157,2157.555390434302,2156.1395726948526,2195.868776621402,2154.145526400575,2126.8156227283635,2169.3201038731604,2157.7499839135717,2157.2437502655976,2170.614512160673,2202.6768665740465,2182.939983471454,2181.928854702984,2131.555676138526,2150.3275460484933,2155.0043830422073,2173.5886507080945,2172.773739642203,2187.781089486479,2209.041882042561,2149.880977339995,2210.473579157538,2181.062537545343,2188.172959559825,2168.703525316206,2142.832101907716,2167.6621191849727,2189.4704607251942,2147.0012953290934,2163.581194313972,2164.1733584192416,2186.219029336301,2173.590344532439,2173.189568019463,2175.620252286202,2156.2228254216834,2182.8435843810257,2185.949470396106,2210.914353447443,2183.4016256124455,2168.0484276894426,2199.5771440217773,2171.8820919851332,2187.395580763709,2141.337972176717,2162.89061284583,2142.313070204119,2185.1525740459183,2134.517588418602,2169.253569411436,2200.2094991184235,2146.939737478819,2162.17385676224,2169.8775495252653,2172.989905350984,2145.688231712565,2168.0939182584507,2124.7078719149536,2138.425710710188,2178.6017492872697,2162.2452171834243,2137.0944054755664,2133.656835299575,2132.901076309205,2143.1110479857666,2152.456942517062,2144.5308512592715,2164.7913519639005,2151.230892124652,2136.111273009532,2145.2986737259394,2156.593519846221,2162.3206642208143,2125.7485316738953,2138.2308083541443,2149.4184252995396,2121.986344760903,2144.448261071641,2136.996662392718,2140.4858892900174,2155.3858101378287,2156.052322102071,2129.1881142351526,2134.024155827412,2143.2115118337456,2134.398129998421,2131.9830702059194,2123.033169330362,2142.954107506828,2124.8457150474983,2145.6552423773746,2124.9058244889166,2141.8562188248848,2119.771932245724,2142.6085144484523,2124.543831883036,2139.9406487142796,2150.5634325740634,2123.371629704638,2153.927196767329,2109.6789407033525,2137.247935743754,2161.5375127351076,2137.198920968282,2112.7749575785606,2082.189969857553,2119.9410826018543,2150.0438477749144,2154.6188056434453,2145.4521918379346,2124.298069191923,2153.662208523083,2149.057933214962,2166.8660699105153,2127.388211759404,2133.3961794070788,2144.011897460483,2145.7897760162737,2099.919484308207,2129.631054273041,2147.38796457767,2127.130124906276,2155.630642958385,2133.3812357059574,2134.46802032083,2136.2242230068096,2136.0522254664884,2142.482625751658,2126.3718928859644,2132.400137228636,2143.5149043722986,2126.837836026756,2132.0607411750134,2119.9098900964545,2124.8262067093,2133.293531231703,2121.806420858036,2145.96501480885,2109.7346915065373,2126.836407608009,2133.7693044726598,2140.2152541694245,2118.0476556962194,2123.8822240352683,2111.1704158465586,2111.3615133951093,2149.568792105604,2104.350373083464,2116.8384721346724,2126.8411896473654,2140.809911236912,2128.0824976546937,2129.5643234903373,2136.344869177702,2133.2864936285964,2113.0890327342836,2125.9631333212164,2108.78715676257,2106.160993807359,2117.821898937574,2131.9466273318376,2093.242507565819,2135.569308834138,2136.4480699680216,2128.6197229873505,2114.565039865645,2101.2596612196076,2152.0784956135476,2145.1563230934294,2129.273557914499,2139.7476608209085,2151.4847197320705,2151.4415080299436,2148.7458204124755,2146.0474460693827,2123.835336409154,2134.568454588993,2149.4433671066727,2115.4873428356896,2135.513559814009,2128.6612837255684,2102.043903623927,2110.684524480367,2117.523650419901,2131.891659938251,2097.8399369176773,2100.029104093444,2126.5800574547793,2116.9363524962187,2121.9417748960664,2142.4597675272908,2101.3413444728617,2093.136262644704,2083.2237032549,2108.456996976523,2079.627846773897,2117.1083117934554,2107.5359916504,2099.4155593902906,2098.6289018041093,2085.5704668522108,2087.2750668404933,2082.694329502191,2083.4156110944537,2092.172294521296,2084.7503706799116,2080.6944892770457,2101.9286197636707,2110.6418871448323,2096.23784357916,2104.6423517116573,2073.6286256727617,2096.4089592640917,2096.426476108898,2101.601089691396,2092.5685902194195,2105.1435991264643,2096.3431866417236,2085.62660736719,2083.0889870525752,2099.017507257489,2085.0542739551993,2084.112266517192,2104.188159705469,2092.6822405646794,2089.9913845333776,2085.4838708461443,2100.2362150056356,2097.168648789502,2059.290046807265,2077.2325331934157,2063.883326292066,2074.0725229410236,2077.1611921852254,2034.2124806324164,2091.7927186601414,2043.3667204661413,2071.6589139940615,2102.068051489194,2084.67015712218,2081.1330465361675,2069.2065019893375,2094.892160542139,2079.325750200204,2075.579904172377,2067.5988299239084,2083.5794659028684,2067.4727782347695,2079.486253272635,2083.6534379734144,2071.6737799430384,2090.2486018783125,2077.771231569987,2066.7410712901956,2066.594885594722,2079.4407908947255,2064.707121946005,2054.151383511029,2067.9380197328596,2073.1007127572416,2047.4181146560948,2068.598536723848,2078.1171048030087,2062.3382469629896,2068.993997228166,2056.807354652132,2080.7900067278983,2079.6371629472224,2064.5617446189713,2061.7524085967348,2074.6475503926163,2059.373930773132,2073.7494511191276,2063.0553157844593,2046.1339183596274,2058.179850174048,2069.459394547979,2065.4397146623132,2054.0456339748193,2073.299629531922,2060.853165394793,2057.386577764678,2067.7854894616507,2059.5462936468048,2046.4004773533834,2066.1536793413156,2066.6591266889873,2052.177215677925,2054.164512409109,2039.1900883939354,2049.2981077608874,2064.9388226375145,2057.31375725276,2060.1466614923747,2036.2495751256129,2060.0028421228862,2051.8776153812246,2044.0821012427186,2051.039279498196,2047.0296009672038,2065.5865814879967,2051.022920065644,2045.5157220523986],\"type\":\"scatter\",\"xaxis\":\"x5\",\"yaxis\":\"y5\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,0.26666666666666666],\"title\":{\"font\":{\"size\":12},\"text\":\"Function Call\"},\"tickfont\":{\"size\":12},\"showexponent\":\"last\",\"exponentformat\":\"e\"},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,0.425],\"title\":{\"font\":{\"size\":12},\"text\":\"R0 [Ohm]\"},\"tickfont\":{\"size\":12},\"showexponent\":\"last\",\"exponentformat\":\"e\"},\"xaxis2\":{\"anchor\":\"y2\",\"domain\":[0.3666666666666667,0.6333333333333333],\"title\":{\"text\":\"Function Call\"}},\"yaxis2\":{\"anchor\":\"x2\",\"domain\":[0.0,0.425],\"title\":{\"text\":\"R1 [Ohm]\"},\"showexponent\":\"last\",\"exponentformat\":\"e\"},\"xaxis3\":{\"anchor\":\"y3\",\"domain\":[0.7333333333333334,1.0],\"title\":{\"text\":\"Function Call\"}},\"yaxis3\":{\"anchor\":\"x3\",\"domain\":[0.0,0.425],\"title\":{\"text\":\"R2 [Ohm]\"},\"showexponent\":\"last\",\"exponentformat\":\"e\"},\"xaxis4\":{\"anchor\":\"y4\",\"domain\":[0.0,0.26666666666666666],\"title\":{\"text\":\"Function Call\"}},\"yaxis4\":{\"anchor\":\"x4\",\"domain\":[0.575,1.0],\"title\":{\"text\":\"C1 [F]\"},\"showexponent\":\"last\",\"exponentformat\":\"e\"},\"xaxis5\":{\"anchor\":\"y5\",\"domain\":[0.3666666666666667,0.6333333333333333],\"title\":{\"text\":\"Function Call\"}},\"yaxis5\":{\"anchor\":\"x5\",\"domain\":[0.575,1.0],\"title\":{\"text\":\"C2 [F]\"},\"showexponent\":\"last\",\"exponentformat\":\"e\"},\"xaxis6\":{\"anchor\":\"y6\",\"domain\":[0.7333333333333334,1.0]},\"yaxis6\":{\"anchor\":\"x6\",\"domain\":[0.575,1.0]},\"title\":{\"text\":\"Parameter Convergence\",\"x\":0.5},\"legend\":{\"orientation\":\"h\",\"yanchor\":\"bottom\",\"y\":1.02,\"xanchor\":\"right\",\"x\":1},\"margin\":{\"l\":10,\"r\":10,\"b\":10,\"t\":75,\"pad\":4},\"showlegend\":true,\"autosize\":false,\"width\":1024,\"height\":576,\"plot_bgcolor\":\"white\"}, {\"responsive\": true} ).then(function(){\n", " \n", "var gd = document.getElementById('129abe4d-18d1-4e94-aab8-c2edc4df17b6');\n", "var x = new MutationObserver(function (mutations, observer) {{\n", " var display = window.getComputedStyle(gd).display;\n", " if (!display || display === 'none') {{\n", " console.log([gd, 'removed!']);\n", " Plotly.purge(gd);\n", " observer.disconnect();\n", " }}\n", "}});\n", "\n", "// Listen for the removal of the full notebook cells\n", "var notebookContainer = gd.closest('#notebook-container');\n", "if (notebookContainer) {{\n", " x.observe(notebookContainer, {childList: true});\n", "}}\n", "\n", "// Listen for the clearing of the current output cell\n", "var outputEl = gd.closest('.output');\n", "if (outputEl) {{\n", " x.observe(outputEl, {childList: true});\n", "}}\n", "\n", " }) }; }); </script> </div>" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "pybop.plot.convergence(optim)\n", "pybop.plot.parameters(optim);" ] }, { "cell_type": "markdown", "id": "18", "metadata": {}, "source": [ "## Using the estimated parameter for thermal predictions\n", "With the estimated RC parameters, the temperature distribution for a given drive cycle can be calculated using the identified Thevenin model. We now we use a `.xlsx` file containing time-series current data as a pybamm experiment. A sample file is used here, but user's may choose to upload customized drive cycle." ] }, { "cell_type": "code", "execution_count": null, "id": "19", "metadata": {}, "outputs": [], "source": [ "file_loc = r\"../../data/Samsung_INR21700/sample_drive_cycle.xlsx\"\n", "df = pd.read_excel(file_loc, sheet_name=\"Sheet3\", index_col=None, na_values=[\"NA\"])\n", "\n", "# Remove duplicate rows, keeping the first occurrence\n", "df = df.drop_duplicates(subset=[\"Time\"], keep=\"first\")\n", "\n", "# Create the pybamm experiment\n", "experiment = pybamm.Experiment([pybamm.step.current(df.to_numpy())])" ] }, { "cell_type": "code", "execution_count": null, "id": "20", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[Step([[ 0 3]\n", " [ 1 3]\n", " [ 2 3]\n", " ...\n", " [3598 3]\n", " [3599 3]\n", " [3600 3]], duration=3600, period=1, direction=Discharge)]" ] }, "execution_count": null, "metadata": {}, "output_type": "execute_result" } ], "source": [ "experiment.steps" ] }, { "cell_type": "markdown", "id": "21", "metadata": {}, "source": [ "Update the estimated RC values. These values will be used to calculate heat generation and corresponding temperature distribution in the thermal submodel. Given `model.predict` is a light wrapper on the `PyBaMM.Simulation` class, we interact with it the same way. Visualisation of voltage response and cell temperature is plotted below using the PyBaMM solution." ] }, { "cell_type": "code", "execution_count": null, "id": "22", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "2024-12-04 10:47:30.094 - [WARNING] callbacks.on_experiment_infeasible_time(240): \n", "\n", "\tExperiment is infeasible: default duration (3600 seconds) was reached during 'Step([[ 0 3]\n", " [ 1 3]\n", " [ 2 3]\n", " ...\n", " [3598 3]\n", " [3599 3]\n", " [3600 3]], duration=3600, period=1, direction=Discharge)'. The returned solution only contains up to step 1 of cycle 1. Please specify a duration in the step instructions.\n" ] } ], "source": [ "sol = model.predict(\n", " inputs=results.x,\n", " experiment=experiment,\n", " parameter_set=parameter_set,\n", " initial_state={\"Initial SoC\": 0.95},\n", ")" ] }, { "cell_type": "markdown", "id": "23", "metadata": {}, "source": [ "## Conclusion\n", "\n", "This notebook illustrates how to extract EC parameters from an HPPC pulse using XNES in PyBOP, providing insights into the optimisation process through various visualisations. The estimated parameters are then used to run a thermal submodel." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.12.4" } }, "nbformat": 4, "nbformat_minor": 5 }