{ "cells": [ { "cell_type": "markdown", "id": "0", "metadata": {}, "source": [ "# Empirical models with scipy trust-constr:\n", "## Identifying equivalent circuit parameters using bounds, nonlinear constraints, and gradient-based optimisers\n", "\n", "Here, we provide a short example of how to identify equivalent-circuit parameters using the [scipy trust-constr](https://docs.scipy.org/doc/scipy-1.14.0/reference/generated/scipy.optimize.minimize.html) method -- a trust-region based optimiser that can handle parameter bounds, and both linear and nonlinear constraints. As shown here, these turn out to be useful tools for fitting empirical battery models.\n", "\n", "### Importing libraries\n", "\n", "If you don't already have PyBOP installed, check out the [installation guide](https://pybop-docs.readthedocs.io/en/latest/installation.html) first.\n", "\n", "We begin by importing the necessary libraries." ] }, { "cell_type": "code", "execution_count": null, "id": "1", "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "import scipy.optimize\n", "\n", "import pybop\n", "\n", "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\"" ] }, { "cell_type": "markdown", "id": "2", "metadata": {}, "source": [ "### Initialising the model and parameters\n", "\n", "PyBOP needs to know some model parameters in order to run. Where these are unknown, and to be fitted, any sensible initial guess can be provided.\n", "\n", "Model parameters can either be defined using a PyBOP ```ParameterSet``` object, or by importing from a JSON file. For clarity, we will define the initial parameters from a ```ParameterSet```.\n", "\n", "Here, we'll fit a Thevenin model with two RC pairs. The initial parameter set must contain all the parameters that the PyBaMM model will use, and therefore it will need definitions for each circuit component, and each RC pair overpotential." ] }, { "cell_type": "code", "execution_count": null, "id": "3", "metadata": {}, "outputs": [], "source": [ "parameter_set = {\n", " \"chemistry\": \"ecm\",\n", " \"Initial SoC\": 0.5,\n", " \"Initial temperature [K]\": 25 + 273.15,\n", " \"Cell capacity [A.h]\": 5,\n", " \"Nominal cell capacity [A.h]\": 5,\n", " \"Ambient temperature [K]\": 25 + 273.15,\n", " \"Current function [A]\": 5,\n", " \"Upper voltage cut-off [V]\": 4.2,\n", " \"Lower voltage cut-off [V]\": 3.0,\n", " \"Cell thermal mass [J/K]\": 1000,\n", " \"Cell-jig heat transfer coefficient [W/K]\": 10,\n", " \"Jig thermal mass [J/K]\": 500,\n", " \"Jig-air heat transfer coefficient [W/K]\": 10,\n", " \"Open-circuit voltage [V]\": pybop.empirical.Thevenin().default_parameter_values[\n", " \"Open-circuit voltage [V]\"\n", " ],\n", " \"R0 [Ohm]\": 0.01,\n", " \"Element-1 initial overpotential [V]\": 0,\n", " \"Element-2 initial overpotential [V]\": 0,\n", " \"R1 [Ohm]\": 0.005,\n", " \"R2 [Ohm]\": 0.0003,\n", " \"C1 [F]\": 10000,\n", " \"C2 [F]\": 5000,\n", " \"Entropic change [V/K]\": 0.0004,\n", "}\n", "\n", "model = pybop.empirical.Thevenin(\n", " parameter_set=parameter_set, options={\"number of rc elements\": 2}\n", ")" ] }, { "cell_type": "markdown", "id": "4", "metadata": {}, "source": [ "### Generating synthetic data\n", "\n", "Ordinarily, we would want to fit models to experimental data. For simplicity we'll use our model to generate some synthetic data, by simulating a discharge and corrupting the results with random noise. We will then use this synthetic data to form a PyBOP ```Dataset```, from which we can demonstrate the model fitting procedure." ] }, { "cell_type": "code", "execution_count": null, "id": "5", "metadata": {}, "outputs": [], "source": [ "sigma = 0.001\n", "t_eval = np.linspace(0, 500, 500)\n", "values = model.predict(t_eval=t_eval)\n", "corrupt_values = values[\"Voltage [V]\"].data + np.random.normal(0, sigma, len(t_eval))\n", "\n", "# Form dataset\n", "dataset = pybop.Dataset(\n", " {\n", " \"Time [s]\": t_eval,\n", " \"Current function [A]\": values[\"Current [A]\"].data,\n", " \"Voltage [V]\": corrupt_values,\n", " }\n", ")" ] }, { "cell_type": "markdown", "id": "6", "metadata": {}, "source": [ "### Identifying parameters\n", "\n", "Now for the fun part! We begin by defining the parameters that we want to fit. In this case, it's the series resistance $R_0$, and the RC parameters $R_1$ and $C_1$. Since we don't want to make things too easy, we've set up our parameters to have quite different values to those used in simulating the data." ] }, { "cell_type": "code", "execution_count": null, "id": "7", "metadata": {}, "outputs": [], "source": [ "parameters = pybop.Parameters(\n", " pybop.Parameter(\n", " \"R0 [Ohm]\",\n", " prior=pybop.Gaussian(2e-3, 1e-4),\n", " bounds=[1e-4, 1e-1],\n", " ),\n", " pybop.Parameter(\n", " \"R1 [Ohm]\",\n", " prior=pybop.Gaussian(1e-3, 1e-4),\n", " bounds=[1e-5, 1e-2],\n", " ),\n", " pybop.Parameter(\n", " \"C1 [F]\",\n", " prior=pybop.Gaussian(5000, 300),\n", " bounds=[2500, 5e4],\n", " ),\n", ")" ] }, { "cell_type": "markdown", "id": "8", "metadata": {}, "source": [ "We can now set up a problem and cost for identifying these parameters from our synthetic dataset." ] }, { "cell_type": "code", "execution_count": null, "id": "9", "metadata": {}, "outputs": [], "source": [ "problem = pybop.FittingProblem(model, parameters, dataset)\n", "cost = pybop.SumSquaredError(problem)" ] }, { "cell_type": "markdown", "id": "10", "metadata": {}, "source": [ "The voltage over any given RC branch will evolve over a timescale $\\tau = R \\times C$. The data we work with will place some limits on which parameters can realistically be identified. We can't expect to fit fast timescales with low sample-rate data; similarly, we can't get good parameters for a long timescale if we only have short amounts of data. \n", "\n", "To illustrate, imagine trying to fit a timescale of $\\tau=0.1$ s from data with a sample rate of 1 Hz. Virtually all the interesting dynamics will have happened over the course of a single sample, so there's not enough information to work from for parameter identification. Similarly, it would be unreasonable to fit a timescale of $\\tau=1000$ s from only one minute of data; across the range of data that we have, the dynamics will have barely changed, giving us very little to work from for fitting $R$ and $C$.\n", "\n", "In general therefore, we need to be careful to make sure our parameter values are sensible. To make sure that the optimiser doesn't propose excessively long or short timescales, we can use nonlinear constraints. The ```scipy.optimize.NonlinearConstraint``` function handles this for us." ] }, { "cell_type": "code", "execution_count": null, "id": "11", "metadata": {}, "outputs": [], "source": [ "tau_constraint = scipy.optimize.NonlinearConstraint(lambda x: x[1] * x[2], 5, 750)" ] }, { "cell_type": "markdown", "id": "12", "metadata": {}, "source": [ "Let's dig into what's going on here.\n", "\n", "The nonlinear constraint will receive a parameter vector from PyBOP. We know from our parameters list that parameter 0 will be $R_0$, \n", "parameter 1 will be $R_1$, and parameter 2 will be $C_1$. We can therefore compute the RC timescale $R_1 \\times C_1$ using ```lambda x: x[1] * x[2]```. Next, we tell scipy that we want this to be constrained to the range $5\\leq R_1 \\times C_1 \\leq 750$. There's a lot of flexibility in our choice of lower and upper bounds, however these are reasonable numbers given our sampling rate (1 Hz), and data time-span (500 s).\n", "\n", "Now all we need to do is set up an optimiser to use this." ] }, { "cell_type": "code", "execution_count": null, "id": "13", "metadata": {}, "outputs": [], "source": [ "optim = pybop.SciPyMinimize(\n", " cost,\n", " method=\"trust-constr\",\n", " constraints=tau_constraint,\n", " max_iterations=100,\n", ")" ] }, { "cell_type": "markdown", "id": "14", "metadata": {}, "source": [ "Note that ```COBYLA```, ```COBYQA```, and ```SLSQP``` can also be used as the method; these are all different Scipy optimisers with constraint capabilities.\n", "\n", "Finally, we run the parameteriser, and plot some results. Don't worry if the solver sometimes terminates early -- this happens when the model receives a bad set of parameters, but PyBOP will catch and handle these cases automatically." ] }, { "cell_type": "code", "execution_count": null, "id": "15", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "OptimisationResult:\n", " Initial parameters: [2.01470532e-03 1.05171055e-03 4.57653422e+03]\n", " Optimised parameters: [8.41410880e-03 6.45916310e-03 4.57841684e+03]\n", " Final cost: 0.0013884834785099927\n", " Optimisation time: 9.16286301612854 seconds\n", " Number of iterations: 100\n", " SciPy result available: Yes\n" ] }, { "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=\"2629d9d4-d284-487a-8a44-9bca7fda192b\" 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(\"2629d9d4-d284-487a-8a44-9bca7fda192b\")) { Plotly.newPlot( \"2629d9d4-d284-487a-8a44-9bca7fda192b\", [{\"line\":{\"width\":4},\"mode\":\"lines\",\"name\":\"Data\",\"x\":[0.0,1.002004008016032,2.004008016032064,3.006012024048096,4.008016032064128,5.0100200400801596,6.012024048096192,7.014028056112224,8.016032064128256,9.018036072144287,10.020040080160319,11.02204408817635,12.024048096192384,13.026052104208416,14.028056112224448,15.03006012024048,16.03206412825651,17.034068136272545,18.036072144288575,19.03807615230461,20.040080160320638,21.04208416833667,22.0440881763527,23.046092184368735,24.04809619238477,25.0501002004008,26.052104208416832,27.054108216432862,28.056112224448896,29.058116232464926,30.06012024048096,31.06212424849699,32.06412825651302,33.06613226452905,34.06813627254509,35.07014028056112,36.07214428857715,37.07414829659318,38.07615230460922,39.07815631262525,40.080160320641276,41.08216432865731,42.08416833667334,43.08617234468937,44.0881763527054,45.09018036072144,46.09218436873747,47.0941883767535,48.09619238476954,49.09819639278557,50.1002004008016,51.10220440881763,52.104208416833664,53.106212424849694,54.108216432865724,55.110220440881754,56.11222444889779,57.11422845691382,58.11623246492985,59.11823647294589,60.12024048096192,61.12224448897795,62.12424849699398,63.126252505010015,64.12825651302605,65.13026052104208,66.1322645290581,67.13426853707413,68.13627254509018,69.13827655310621,70.14028056112224,71.14228456913827,72.1442885771543,73.14629258517033,74.14829659318636,75.1503006012024,76.15230460921843,77.15430861723446,78.1563126252505,79.15831663326652,80.16032064128255,81.16232464929858,82.16432865731463,83.16633266533066,84.16833667334669,85.17034068136272,86.17234468937875,87.17434869739478,88.1763527054108,89.17835671342685,90.18036072144288,91.18236472945891,92.18436873747494,93.18637274549097,94.188376753507,95.19038076152303,96.19238476953907,97.1943887775551,98.19639278557113,99.19839679358716,100.2004008016032,101.20240480961922,102.20440881763525,103.20641282565128,104.20841683366733,105.21042084168336,106.21242484969939,107.21442885771542,108.21643286573145,109.21843687374748,110.22044088176351,111.22244488977955,112.22444889779558,113.22645290581161,114.22845691382764,115.23046092184367,116.2324649298597,117.23446893787573,118.23647294589178,119.2384769539078,120.24048096192384,121.24248496993987,122.2444889779559,123.24649298597193,124.24849699398796,125.250501002004,126.25250501002003,127.25450901803606,128.2565130260521,129.25851703406812,130.26052104208415,131.26252505010018,132.2645290581162,133.26653306613224,134.26853707414827,135.2705410821643,136.27254509018036,137.2745490981964,138.27655310621242,139.27855711422845,140.28056112224448,141.2825651302605,142.28456913827654,143.28657314629257,144.2885771543086,145.29058116232463,146.29258517034066,147.2945891783567,148.29659318637272,149.29859719438875,150.3006012024048,151.30260521042084,152.30460921843687,153.3066132264529,154.30861723446893,155.31062124248496,156.312625250501,157.31462925851702,158.31663326653305,159.31863727454908,160.3206412825651,161.32264529058114,162.32464929859717,163.3266533066132,164.32865731462925,165.33066132264528,166.3326653306613,167.33466933867734,168.33667334669337,169.3386773547094,170.34068136272543,171.34268537074146,172.3446893787575,173.34669338677352,174.34869739478955,175.35070140280558,176.3527054108216,177.35470941883764,178.3567134268537,179.35871743486973,180.36072144288576,181.3627254509018,182.36472945891782,183.36673346693385,184.36873747494988,185.3707414829659,186.37274549098194,187.37474949899797,188.376753507014,189.37875751503003,190.38076152304606,191.3827655310621,192.38476953907815,193.38677354709418,194.3887775551102,195.39078156312624,196.39278557114227,197.3947895791583,198.39679358717433,199.39879759519036,200.4008016032064,201.40280561122242,202.40480961923845,203.40681362725448,204.4088176352705,205.41082164328654,206.41282565130257,207.41482965931863,208.41683366733466,209.4188376753507,210.42084168336672,211.42284569138275,212.42484969939878,213.4268537074148,214.42885771543084,215.43086172344687,216.4328657314629,217.43486973947893,218.43687374749496,219.438877755511,220.44088176352702,221.44288577154308,222.4448897795591,223.44689378757514,224.44889779559117,225.4509018036072,226.45290581162322,227.45490981963925,228.45691382765528,229.45891783567131,230.46092184368734,231.46292585170337,232.4649298597194,233.46693386773543,234.46893787575146,235.47094188376752,236.47294589178355,237.47494989979958,238.4769539078156,239.47895791583164,240.48096192384767,241.4829659318637,242.48496993987973,243.48697394789576,244.4889779559118,245.49098196392782,246.49298597194385,247.49498997995988,248.4969939879759,249.49899799599197,250.501002004008,251.50300601202403,252.50501002004006,253.5070140280561,254.50901803607212,255.51102204408815,256.5130260521042,257.51503006012024,258.51703406813624,259.5190380761523,260.5210420841683,261.52304609218436,262.52505010020036,263.5270541082164,264.5290581162324,265.5310621242485,266.5330661322645,267.53507014028054,268.53707414829654,269.5390781563126,270.5410821643286,271.54308617234466,272.5450901803607,273.5470941883767,274.5490981963928,275.5511022044088,276.55310621242484,277.55511022044084,278.5571142284569,279.5591182364729,280.56112224448896,281.56312625250496,282.565130260521,283.567134268537,284.5691382765531,285.57114228456913,286.57314629258514,287.5751503006012,288.5771543086172,289.57915831663325,290.58116232464926,291.5831663326653,292.5851703406813,293.5871743486974,294.5891783567134,295.59118236472943,296.59318637274544,297.5951903807615,298.5971943887775,299.59919839679355,300.6012024048096,301.6032064128256,302.6052104208417,303.6072144288577,304.60921843687373,305.61122244488973,306.6132264529058,307.6152304609218,308.61723446893785,309.61923847695385,310.6212424849699,311.6232464929859,312.625250501002,313.62725450901803,314.62925851703403,315.6312625250501,316.6332665330661,317.63527054108215,318.63727454909815,319.6392785571142,320.6412825651302,321.64328657314627,322.64529058116227,323.64729458917833,324.64929859719433,325.6513026052104,326.6533066132264,327.65531062124245,328.6573146292585,329.6593186372745,330.66132264529057,331.66332665330657,332.6653306613226,333.66733466933863,334.6693386773547,335.6713426853707,336.67334669338675,337.67535070140275,338.6773547094188,339.6793587174348,340.68136272545087,341.68336673346687,342.6853707414829,343.687374749499,344.689378757515,345.69138276553105,346.69338677354705,347.6953907815631,348.6973947895791,349.69939879759517,350.70140280561117,351.7034068136272,352.7054108216432,353.7074148296593,354.7094188376753,355.71142284569135,356.7134268537074,357.7154308617234,358.71743486973946,359.71943887775547,360.7214428857715,361.7234468937875,362.7254509018036,363.7274549098196,364.72945891783564,365.73146292585164,366.7334669338677,367.7354709418837,368.73747494989976,369.73947895791576,370.7414829659318,371.7434869739479,372.7454909819639,373.74749498997994,374.74949899799594,375.751503006012,376.753507014028,377.75551102204406,378.75751503006006,379.7595190380761,380.7615230460921,381.7635270541082,382.7655310621242,383.76753507014024,384.7695390781563,385.7715430861723,386.77354709418836,387.77555110220436,388.7775551102204,389.7795591182364,390.7815631262525,391.7835671342685,392.78557114228454,393.78757515030054,394.7895791583166,395.7915831663326,396.79358717434866,397.79559118236466,398.7975951903807,399.7995991983968,400.8016032064128,401.80360721442884,402.80561122244484,403.8076152304609,404.8096192384769,405.81162324649296,406.81362725450896,407.815631262525,408.817635270541,409.8196392785571,410.8216432865731,411.82364729458914,412.82565130260514,413.8276553106212,414.82965931863725,415.83166332665326,416.8336673346693,417.8356713426853,418.8376753507014,419.8396793587174,420.84168336673343,421.84368737474944,422.8456913827655,423.8476953907815,424.84969939879755,425.85170340681356,426.8537074148296,427.8557114228457,428.8577154308617,429.85971943887773,430.86172344689373,431.8637274549098,432.8657314629258,433.86773547094185,434.86973947895785,435.8717434869739,436.8737474949899,437.875751503006,438.877755511022,439.87975951903803,440.88176352705403,441.8837675350701,442.88577154308615,443.88777555110215,444.8897795591182,445.8917835671342,446.89378757515027,447.8957915831663,448.89779559118233,449.89979959919833,450.9018036072144,451.9038076152304,452.90581162324645,453.90781563126245,454.9098196392785,455.9118236472945,456.91382765531057,457.9158316633266,458.91783567134263,459.9198396793587,460.9218436873747,461.92384769539075,462.92585170340675,463.9278557114228,464.9298597194388,465.93186372745487,466.93386773547087,467.9358717434869,468.93787575150293,469.939879759519,470.94188376753505,471.94388777555105,472.9458917835671,473.9478957915831,474.94989979959917,475.95190380761517,476.9539078156312,477.9559118236472,478.9579158316633,479.9599198396793,480.96192384769535,481.96392785571135,482.9659318637274,483.9679358717434,484.96993987975947,485.9719438877755,486.9739478957915,487.9759519038076,488.9779559118236,489.97995991983964,490.98196392785565,491.9839679358717,492.9859719438877,493.98797595190376,494.98997995991976,495.9919839679358,496.9939879759518,497.9959919839679,498.99799599198394,500.0],\"y\":[3.6477789068369204,3.6448630394521726,3.6441958989032193,3.6437994325000846,3.643194704321128,3.6415325151433855,3.6405193295906284,3.6418546231613123,3.639242289665052,3.6389611838366656,3.639283133547337,3.6383275447165913,3.6371688797772377,3.6354563209276702,3.637182744826977,3.6360050004779416,3.6358523336060307,3.636146115129919,3.634206190791263,3.633786793339037,3.634663289733323,3.6334608668522352,3.6321981470432956,3.631395944325774,3.6310184665819123,3.628534397325631,3.630393942302052,3.6312108322533967,3.6312525687328496,3.630920172412795,3.6277452343708605,3.628259792676611,3.6284967620466126,3.629046157524974,3.6265710386983425,3.626991186497115,3.626792857176281,3.623822888682014,3.6249333376900204,3.6239624165017164,3.6253413623832897,3.624625211802447,3.6232253921064097,3.6230789504404077,3.6217273699419663,3.6229888351349344,3.6223590203501224,3.620966353261813,3.621234478538418,3.6213445374598643,3.623758007576279,3.620549802692375,3.621562970988505,3.6216047258130075,3.620787044110922,3.6188513559694804,3.620654799992435,3.619094308786157,3.6207678718882477,3.616352918946582,3.617144383816364,3.6190769979304065,3.617647957569165,3.6157993984082695,3.6177742071084236,3.617602811564581,3.615133673839911,3.6161697735306038,3.6163999519671615,3.6150165368187994,3.6152559642175017,3.615114433356346,3.614460933751315,3.614529407293362,3.6127881124178183,3.614434616394579,3.613187053145479,3.611967699204313,3.6124358889242885,3.612970417611592,3.609892854581222,3.6104580602936243,3.6095650761672275,3.6113351949234547,3.6120271100688246,3.6110051944620967,3.6094553727754097,3.611234782862858,3.6101662090232316,3.6113370073381845,3.6101622154226054,3.6098761101315375,3.610272415681595,3.6099785737925996,3.6078720049969157,3.6090115604178097,3.6084133632983257,3.6099612997383157,3.60812883956941,3.6087376495495302,3.607079080389043,3.6078126506800494,3.6069751129793413,3.6061983080370643,3.606329195511747,3.6058656298209897,3.6065202335462088,3.606142149950012,3.6047236364735267,3.605678992127464,3.606340401424036,3.6058197716903018,3.6064560586374346,3.6048184614281653,3.6046072102079654,3.6052985895615297,3.604210690113493,3.6049185614620978,3.604434203946289,3.6033038329274882,3.603238724370999,3.6031558421667196,3.6031705681363464,3.602983598359611,3.603586916761243,3.6028626143574938,3.6016621331702683,3.6028183311651154,3.6019706373915596,3.6013888919073955,3.6010710625243147,3.6016535561797274,3.6013559162294393,3.601788754756492,3.59993828195837,3.6007458358490636,3.6002771346862183,3.602156864847549,3.6012692700768074,3.5994893635688268,3.600092546960415,3.5984296800398,3.5999991743502435,3.598567014577626,3.5998904513684087,3.5997405470300357,3.5993011999503612,3.599195681451398,3.598368979345646,3.598681017824748,3.599005016409206,3.5969700181615756,3.599212068624954,3.597286498273013,3.598948821484949,3.598442926815186,3.597456551147863,3.598068607159003,3.5958607764363464,3.596142626954703,3.5942802561171554,3.5958258961645053,3.596595614997224,3.5963121301121697,3.5961335378688726,3.594617103696975,3.5958542003943887,3.59563393969906,3.5959071465919688,3.5961928248940414,3.594099653598296,3.5955679124859232,3.594593977492272,3.595475733096605,3.5946267719949576,3.5957091522569953,3.5926943513693725,3.592624843887196,3.59406706162292,3.593075651906136,3.594364159457502,3.5938038394928564,3.593562358583157,3.593685633912573,3.592819910362926,3.592094580674784,3.5933943523826617,3.5929400521484762,3.593086234087965,3.592863698924742,3.592667953157396,3.592305309977877,3.5916528587182524,3.593931233138635,3.591085063139359,3.592035142288614,3.591579945574132,3.592260134130895,3.5921821486194876,3.5907829023132947,3.590632702562804,3.591895109833214,3.593123505020113,3.5900287466916683,3.5907384274331267,3.588707578346998,3.5901956895057356,3.5897219288844733,3.591249780286238,3.588925253595133,3.5895842221335688,3.5915515760783054,3.589334637580728,3.5888794050523156,3.5895914904267183,3.5890497552891345,3.5896342036521003,3.5878828775374743,3.590262194665913,3.591214921911955,3.587729374486235,3.5897945876683943,3.5876732748450926,3.5906398413089757,3.590860300844685,3.588632779285287,3.5892590863619835,3.591198466573039,3.5886327645728655,3.5884505591047344,3.589360057640676,3.5886039311210345,3.587648423514166,3.586258966105293,3.58719792900112,3.5884239419536423,3.5880501583117894,3.5856988091802338,3.5878317309755485,3.5858970895485265,3.586679537753772,3.586610362485887,3.5863549623927344,3.5874145633842867,3.5854475682951774,3.5875784039273895,3.587399160726391,3.58639737817317,3.586387995769718,3.5867102942484093,3.5860049918098347,3.586717305605846,3.585031663630339,3.585534542330817,3.5844024588421854,3.5870363765301168,3.5858451354764527,3.5846614326571533,3.5856410995353483,3.586004262258651,3.5866485779479085,3.5847272277213857,3.586700573953632,3.5844705469898774,3.584669694911128,3.5860939056880823,3.58554127912704,3.58396108741242,3.5847938763442477,3.5824933659173688,3.5849441602920256,3.5854602878117765,3.5859809699374843,3.5860688303192574,3.584370608777704,3.584044531964269,3.5856204387311434,3.5848324599862793,3.5827593111021003,3.584266941163421,3.5829241123404674,3.5829984572796696,3.5841128900604695,3.5831674022792397,3.585458738638187,3.582947868338668,3.583175530151306,3.582230840785666,3.5812992461733684,3.582830300262932,3.5830106560131294,3.5835439170726087,3.5830405228232673,3.581331708270041,3.5840802500806106,3.5795955102316617,3.5809953882345873,3.5819091590436276,3.58363743828232,3.581494303024155,3.581044909594112,3.583099127331062,3.582488620562221,3.581042980366149,3.5822833452776734,3.5805026717569146,3.5827714056019526,3.582042907427934,3.582219034367139,3.5810801657410933,3.5823089031101456,3.582956998317813,3.5806347698676446,3.579936862206812,3.5801671154619243,3.5805695852008737,3.5814585503920933,3.582520501067707,3.5826799888269147,3.5801653337335284,3.579300004842184,3.582015194296455,3.582024166182772,3.5817320519074594,3.5810590141477743,3.57928921147559,3.5809838931786233,3.5802651092352744,3.581053655680618,3.579562295500637,3.581112042067977,3.578223444840266,3.5797229192014273,3.580146244457662,3.5786665713746735,3.579986250797533,3.579198860433748,3.5797766992636695,3.577774479426439,3.5788250808263844,3.580524861860678,3.5798796475176817,3.578711161633387,3.579001953637378,3.5803015745287596,3.5795071239124137,3.5782415945441337,3.5776844371874628,3.5798295631335812,3.579355618839779,3.5784721110747277,3.579810874851141,3.5787328754490777,3.5803056698249662,3.576381863009774,3.579731883162755,3.5801672227852532,3.5789223595025565,3.5773185056562493,3.578218973557992,3.577940908341008,3.578719537750479,3.578230001901263,3.5768988884423836,3.57776300238476,3.5770320733183945,3.578872040226704,3.577896620409933,3.57645301433815,3.576482109762866,3.577568168670118,3.577390128643743,3.5772360572239514,3.577602034911471,3.5762498909984672,3.577967758553512,3.575324625519928,3.575118029625683,3.5757383770561373,3.5781419003437396,3.5753998718093603,3.5776851339789606,3.575878068932925,3.577058549615134,3.5768864532643625,3.5758468919369024,3.5763366843851747,3.5742563729180796,3.575917080807397,3.5763994906866046,3.5769433011550436,3.575590548654508,3.576031326435272,3.57472881687849,3.575069765811465,3.5749092310536095,3.5747536357005454,3.5746486103314483,3.5751690170392108,3.5752676091766475,3.5745154472414904,3.578105615144287,3.5757794674887773,3.5755899288655244,3.574693958223865,3.574974418268465,3.575724635262353,3.577413310694882,3.5739079184578593,3.5758879378119373,3.5757763785025487,3.57459561705922,3.5748758236881994,3.5735246401647265,3.576522341315541,3.5738752625860006,3.5750462556924085,3.575202147172333,3.574412080908722,3.575823288533548,3.573594461952258,3.5727948508465666,3.5748638272086706,3.5735095781874513,3.5741434682167736,3.5742551572267867,3.5738816905254054,3.5742582456425667,3.5728980611080225,3.5718225109919213,3.5752203786106618,3.572586667544787,3.571995349236241,3.57156509067872,3.573645744483774,3.574112031666643,3.5737640310395764,3.5716302010770162,3.574792430923837,3.572873420347733,3.572630888614252,3.5726751681091113,3.573916967198157,3.5712570368869487,3.5731958200816702,3.5726413325333906,3.5729362253256043,3.5727329614470387,3.574592191638162,3.5725835114999738,3.572476490981218,3.5714664748546023,3.5712098842618727,3.5722707280112442,3.5718073553982896,3.5717994443995678,3.57164956755468,3.57161251568246,3.573025103234414,3.5729842770805154,3.5698346110365287,3.5706661601913994,3.5723199713289895,3.571361765783018,3.571092196790128,3.57224471464921,3.569355784396344,3.570906856816603,3.5680026824053677,3.572119451898039,3.5694632199208565,3.5723557961585586,3.569953839766177,3.570756807651284,3.572249166218233,3.570487419028467,3.569727996543496,3.570210561505359,3.569793347149532,3.568865715135132,3.570862047445075,3.570858528594606,3.5719620075480583,3.570285664890378,3.5696891890461977,3.571276080343998,3.569388389782271,3.5689190215247897,3.5701379217450917,3.5686833018374324,3.569022284315135,3.569849317409536,3.5701709851600523,3.5692859405283146,3.5689005351004828,3.570020849825909,3.5684399156581708,3.569890121002343,3.5680125428136793,3.5680395206240116],\"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\":{\"x\":0.5},\"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 [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('2629d9d4-d284-487a-8a44-9bca7fda192b');\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=\"77235874-5d8c-42b3-aadc-4e2588091f02\" 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(\"77235874-5d8c-42b3-aadc-4e2588091f02\")) { Plotly.newPlot( \"77235874-5d8c-42b3-aadc-4e2588091f02\", [{\"fill\":\"toself\",\"fillcolor\":\"rgba(255,229,204,0.8)\",\"hoverinfo\":\"skip\",\"line\":{\"color\":\"rgba(255,255,255,0)\"},\"showlegend\":false,\"x\":[0.0,1.002004008016032,2.004008016032064,3.006012024048096,4.008016032064128,5.0100200400801596,6.012024048096192,7.014028056112224,8.016032064128256,9.018036072144287,10.020040080160319,11.02204408817635,12.024048096192384,13.026052104208416,14.028056112224448,15.03006012024048,16.03206412825651,17.034068136272545,18.036072144288575,19.03807615230461,20.040080160320638,21.04208416833667,22.0440881763527,23.046092184368735,24.04809619238477,25.0501002004008,26.052104208416832,27.054108216432862,28.056112224448896,29.058116232464926,30.06012024048096,31.06212424849699,32.06412825651302,33.06613226452905,34.06813627254509,35.07014028056112,36.07214428857715,37.07414829659318,38.07615230460922,39.07815631262525,40.080160320641276,41.08216432865731,42.08416833667334,43.08617234468937,44.0881763527054,45.09018036072144,46.09218436873747,47.0941883767535,48.09619238476954,49.09819639278557,50.1002004008016,51.10220440881763,52.104208416833664,53.106212424849694,54.108216432865724,55.110220440881754,56.11222444889779,57.11422845691382,58.11623246492985,59.11823647294589,60.12024048096192,61.12224448897795,62.12424849699398,63.126252505010015,64.12825651302605,65.13026052104208,66.1322645290581,67.13426853707413,68.13627254509018,69.13827655310621,70.14028056112224,71.14228456913827,72.1442885771543,73.14629258517033,74.14829659318636,75.1503006012024,76.15230460921843,77.15430861723446,78.1563126252505,79.15831663326652,80.16032064128255,81.16232464929858,82.16432865731463,83.16633266533066,84.16833667334669,85.17034068136272,86.17234468937875,87.17434869739478,88.1763527054108,89.17835671342685,90.18036072144288,91.18236472945891,92.18436873747494,93.18637274549097,94.188376753507,95.19038076152303,96.19238476953907,97.1943887775551,98.19639278557113,99.19839679358716,100.2004008016032,101.20240480961922,102.20440881763525,103.20641282565128,104.20841683366733,105.21042084168336,106.21242484969939,107.21442885771542,108.21643286573145,109.21843687374748,110.22044088176351,111.22244488977955,112.22444889779558,113.22645290581161,114.22845691382764,115.23046092184367,116.2324649298597,117.23446893787573,118.23647294589178,119.2384769539078,120.24048096192384,121.24248496993987,122.2444889779559,123.24649298597193,124.24849699398796,125.250501002004,126.25250501002003,127.25450901803606,128.2565130260521,129.25851703406812,130.26052104208415,131.26252505010018,132.2645290581162,133.26653306613224,134.26853707414827,135.2705410821643,136.27254509018036,137.2745490981964,138.27655310621242,139.27855711422845,140.28056112224448,141.2825651302605,142.28456913827654,143.28657314629257,144.2885771543086,145.29058116232463,146.29258517034066,147.2945891783567,148.29659318637272,149.29859719438875,150.3006012024048,151.30260521042084,152.30460921843687,153.3066132264529,154.30861723446893,155.31062124248496,156.312625250501,157.31462925851702,158.31663326653305,159.31863727454908,160.3206412825651,161.32264529058114,162.32464929859717,163.3266533066132,164.32865731462925,165.33066132264528,166.3326653306613,167.33466933867734,168.33667334669337,169.3386773547094,170.34068136272543,171.34268537074146,172.3446893787575,173.34669338677352,174.34869739478955,175.35070140280558,176.3527054108216,177.35470941883764,178.3567134268537,179.35871743486973,180.36072144288576,181.3627254509018,182.36472945891782,183.36673346693385,184.36873747494988,185.3707414829659,186.37274549098194,187.37474949899797,188.376753507014,189.37875751503003,190.38076152304606,191.3827655310621,192.38476953907815,193.38677354709418,194.3887775551102,195.39078156312624,196.39278557114227,197.3947895791583,198.39679358717433,199.39879759519036,200.4008016032064,201.40280561122242,202.40480961923845,203.40681362725448,204.4088176352705,205.41082164328654,206.41282565130257,207.41482965931863,208.41683366733466,209.4188376753507,210.42084168336672,211.42284569138275,212.42484969939878,213.4268537074148,214.42885771543084,215.43086172344687,216.4328657314629,217.43486973947893,218.43687374749496,219.438877755511,220.44088176352702,221.44288577154308,222.4448897795591,223.44689378757514,224.44889779559117,225.4509018036072,226.45290581162322,227.45490981963925,228.45691382765528,229.45891783567131,230.46092184368734,231.46292585170337,232.4649298597194,233.46693386773543,234.46893787575146,235.47094188376752,236.47294589178355,237.47494989979958,238.4769539078156,239.47895791583164,240.48096192384767,241.4829659318637,242.48496993987973,243.48697394789576,244.4889779559118,245.49098196392782,246.49298597194385,247.49498997995988,248.4969939879759,249.49899799599197,250.501002004008,251.50300601202403,252.50501002004006,253.5070140280561,254.50901803607212,255.51102204408815,256.5130260521042,257.51503006012024,258.51703406813624,259.5190380761523,260.5210420841683,261.52304609218436,262.52505010020036,263.5270541082164,264.5290581162324,265.5310621242485,266.5330661322645,267.53507014028054,268.53707414829654,269.5390781563126,270.5410821643286,271.54308617234466,272.5450901803607,273.5470941883767,274.5490981963928,275.5511022044088,276.55310621242484,277.55511022044084,278.5571142284569,279.5591182364729,280.56112224448896,281.56312625250496,282.565130260521,283.567134268537,284.5691382765531,285.57114228456913,286.57314629258514,287.5751503006012,288.5771543086172,289.57915831663325,290.58116232464926,291.5831663326653,292.5851703406813,293.5871743486974,294.5891783567134,295.59118236472943,296.59318637274544,297.5951903807615,298.5971943887775,299.59919839679355,300.6012024048096,301.6032064128256,302.6052104208417,303.6072144288577,304.60921843687373,305.61122244488973,306.6132264529058,307.6152304609218,308.61723446893785,309.61923847695385,310.6212424849699,311.6232464929859,312.625250501002,313.62725450901803,314.62925851703403,315.6312625250501,316.6332665330661,317.63527054108215,318.63727454909815,319.6392785571142,320.6412825651302,321.64328657314627,322.64529058116227,323.64729458917833,324.64929859719433,325.6513026052104,326.6533066132264,327.65531062124245,328.6573146292585,329.6593186372745,330.66132264529057,331.66332665330657,332.6653306613226,333.66733466933863,334.6693386773547,335.6713426853707,336.67334669338675,337.67535070140275,338.6773547094188,339.6793587174348,340.68136272545087,341.68336673346687,342.6853707414829,343.687374749499,344.689378757515,345.69138276553105,346.69338677354705,347.6953907815631,348.6973947895791,349.69939879759517,350.70140280561117,351.7034068136272,352.7054108216432,353.7074148296593,354.7094188376753,355.71142284569135,356.7134268537074,357.7154308617234,358.71743486973946,359.71943887775547,360.7214428857715,361.7234468937875,362.7254509018036,363.7274549098196,364.72945891783564,365.73146292585164,366.7334669338677,367.7354709418837,368.73747494989976,369.73947895791576,370.7414829659318,371.7434869739479,372.7454909819639,373.74749498997994,374.74949899799594,375.751503006012,376.753507014028,377.75551102204406,378.75751503006006,379.7595190380761,380.7615230460921,381.7635270541082,382.7655310621242,383.76753507014024,384.7695390781563,385.7715430861723,386.77354709418836,387.77555110220436,388.7775551102204,389.7795591182364,390.7815631262525,391.7835671342685,392.78557114228454,393.78757515030054,394.7895791583166,395.7915831663326,396.79358717434866,397.79559118236466,398.7975951903807,399.7995991983968,400.8016032064128,401.80360721442884,402.80561122244484,403.8076152304609,404.8096192384769,405.81162324649296,406.81362725450896,407.815631262525,408.817635270541,409.8196392785571,410.8216432865731,411.82364729458914,412.82565130260514,413.8276553106212,414.82965931863725,415.83166332665326,416.8336673346693,417.8356713426853,418.8376753507014,419.8396793587174,420.84168336673343,421.84368737474944,422.8456913827655,423.8476953907815,424.84969939879755,425.85170340681356,426.8537074148296,427.8557114228457,428.8577154308617,429.85971943887773,430.86172344689373,431.8637274549098,432.8657314629258,433.86773547094185,434.86973947895785,435.8717434869739,436.8737474949899,437.875751503006,438.877755511022,439.87975951903803,440.88176352705403,441.8837675350701,442.88577154308615,443.88777555110215,444.8897795591182,445.8917835671342,446.89378757515027,447.8957915831663,448.89779559118233,449.89979959919833,450.9018036072144,451.9038076152304,452.90581162324645,453.90781563126245,454.9098196392785,455.9118236472945,456.91382765531057,457.9158316633266,458.91783567134263,459.9198396793587,460.9218436873747,461.92384769539075,462.92585170340675,463.9278557114228,464.9298597194388,465.93186372745487,466.93386773547087,467.9358717434869,468.93787575150293,469.939879759519,470.94188376753505,471.94388777555105,472.9458917835671,473.9478957915831,474.94989979959917,475.95190380761517,476.9539078156312,477.9559118236472,478.9579158316633,479.9599198396793,480.96192384769535,481.96392785571135,482.9659318637274,483.9679358717434,484.96993987975947,485.9719438877755,486.9739478957915,487.9759519038076,488.9779559118236,489.97995991983964,490.98196392785565,491.9839679358717,492.9859719438877,493.98797595190376,494.98997995991976,495.9919839679358,496.9939879759518,497.9959919839679,498.99799599198394,500.0,500.0,498.99799599198394,497.9959919839679,496.9939879759518,495.9919839679358,494.98997995991976,493.98797595190376,492.9859719438877,491.9839679358717,490.98196392785565,489.97995991983964,488.9779559118236,487.9759519038076,486.9739478957915,485.9719438877755,484.96993987975947,483.9679358717434,482.9659318637274,481.96392785571135,480.96192384769535,479.9599198396793,478.9579158316633,477.9559118236472,476.9539078156312,475.95190380761517,474.94989979959917,473.9478957915831,472.9458917835671,471.94388777555105,470.94188376753505,469.939879759519,468.93787575150293,467.9358717434869,466.93386773547087,465.93186372745487,464.9298597194388,463.9278557114228,462.92585170340675,461.92384769539075,460.9218436873747,459.9198396793587,458.91783567134263,457.9158316633266,456.91382765531057,455.9118236472945,454.9098196392785,453.90781563126245,452.90581162324645,451.9038076152304,450.9018036072144,449.89979959919833,448.89779559118233,447.8957915831663,446.89378757515027,445.8917835671342,444.8897795591182,443.88777555110215,442.88577154308615,441.8837675350701,440.88176352705403,439.87975951903803,438.877755511022,437.875751503006,436.8737474949899,435.8717434869739,434.86973947895785,433.86773547094185,432.8657314629258,431.8637274549098,430.86172344689373,429.85971943887773,428.8577154308617,427.8557114228457,426.8537074148296,425.85170340681356,424.84969939879755,423.8476953907815,422.8456913827655,421.84368737474944,420.84168336673343,419.8396793587174,418.8376753507014,417.8356713426853,416.8336673346693,415.83166332665326,414.82965931863725,413.8276553106212,412.82565130260514,411.82364729458914,410.8216432865731,409.8196392785571,408.817635270541,407.815631262525,406.81362725450896,405.81162324649296,404.8096192384769,403.8076152304609,402.80561122244484,401.80360721442884,400.8016032064128,399.7995991983968,398.7975951903807,397.79559118236466,396.79358717434866,395.7915831663326,394.7895791583166,393.78757515030054,392.78557114228454,391.7835671342685,390.7815631262525,389.7795591182364,388.7775551102204,387.77555110220436,386.77354709418836,385.7715430861723,384.7695390781563,383.76753507014024,382.7655310621242,381.7635270541082,380.7615230460921,379.7595190380761,378.75751503006006,377.75551102204406,376.753507014028,375.751503006012,374.74949899799594,373.74749498997994,372.7454909819639,371.7434869739479,370.7414829659318,369.73947895791576,368.73747494989976,367.7354709418837,366.7334669338677,365.73146292585164,364.72945891783564,363.7274549098196,362.7254509018036,361.7234468937875,360.7214428857715,359.71943887775547,358.71743486973946,357.7154308617234,356.7134268537074,355.71142284569135,354.7094188376753,353.7074148296593,352.7054108216432,351.7034068136272,350.70140280561117,349.69939879759517,348.6973947895791,347.6953907815631,346.69338677354705,345.69138276553105,344.689378757515,343.687374749499,342.6853707414829,341.68336673346687,340.68136272545087,339.6793587174348,338.6773547094188,337.67535070140275,336.67334669338675,335.6713426853707,334.6693386773547,333.66733466933863,332.6653306613226,331.66332665330657,330.66132264529057,329.6593186372745,328.6573146292585,327.65531062124245,326.6533066132264,325.6513026052104,324.64929859719433,323.64729458917833,322.64529058116227,321.64328657314627,320.6412825651302,319.6392785571142,318.63727454909815,317.63527054108215,316.6332665330661,315.6312625250501,314.62925851703403,313.62725450901803,312.625250501002,311.6232464929859,310.6212424849699,309.61923847695385,308.61723446893785,307.6152304609218,306.6132264529058,305.61122244488973,304.60921843687373,303.6072144288577,302.6052104208417,301.6032064128256,300.6012024048096,299.59919839679355,298.5971943887775,297.5951903807615,296.59318637274544,295.59118236472943,294.5891783567134,293.5871743486974,292.5851703406813,291.5831663326653,290.58116232464926,289.57915831663325,288.5771543086172,287.5751503006012,286.57314629258514,285.57114228456913,284.5691382765531,283.567134268537,282.565130260521,281.56312625250496,280.56112224448896,279.5591182364729,278.5571142284569,277.55511022044084,276.55310621242484,275.5511022044088,274.5490981963928,273.5470941883767,272.5450901803607,271.54308617234466,270.5410821643286,269.5390781563126,268.53707414829654,267.53507014028054,266.5330661322645,265.5310621242485,264.5290581162324,263.5270541082164,262.52505010020036,261.52304609218436,260.5210420841683,259.5190380761523,258.51703406813624,257.51503006012024,256.5130260521042,255.51102204408815,254.50901803607212,253.5070140280561,252.50501002004006,251.50300601202403,250.501002004008,249.49899799599197,248.4969939879759,247.49498997995988,246.49298597194385,245.49098196392782,244.4889779559118,243.48697394789576,242.48496993987973,241.4829659318637,240.48096192384767,239.47895791583164,238.4769539078156,237.47494989979958,236.47294589178355,235.47094188376752,234.46893787575146,233.46693386773543,232.4649298597194,231.46292585170337,230.46092184368734,229.45891783567131,228.45691382765528,227.45490981963925,226.45290581162322,225.4509018036072,224.44889779559117,223.44689378757514,222.4448897795591,221.44288577154308,220.44088176352702,219.438877755511,218.43687374749496,217.43486973947893,216.4328657314629,215.43086172344687,214.42885771543084,213.4268537074148,212.42484969939878,211.42284569138275,210.42084168336672,209.4188376753507,208.41683366733466,207.41482965931863,206.41282565130257,205.41082164328654,204.4088176352705,203.40681362725448,202.40480961923845,201.40280561122242,200.4008016032064,199.39879759519036,198.39679358717433,197.3947895791583,196.39278557114227,195.39078156312624,194.3887775551102,193.38677354709418,192.38476953907815,191.3827655310621,190.38076152304606,189.37875751503003,188.376753507014,187.37474949899797,186.37274549098194,185.3707414829659,184.36873747494988,183.36673346693385,182.36472945891782,181.3627254509018,180.36072144288576,179.35871743486973,178.3567134268537,177.35470941883764,176.3527054108216,175.35070140280558,174.34869739478955,173.34669338677352,172.3446893787575,171.34268537074146,170.34068136272543,169.3386773547094,168.33667334669337,167.33466933867734,166.3326653306613,165.33066132264528,164.32865731462925,163.3266533066132,162.32464929859717,161.32264529058114,160.3206412825651,159.31863727454908,158.31663326653305,157.31462925851702,156.312625250501,155.31062124248496,154.30861723446893,153.3066132264529,152.30460921843687,151.30260521042084,150.3006012024048,149.29859719438875,148.29659318637272,147.2945891783567,146.29258517034066,145.29058116232463,144.2885771543086,143.28657314629257,142.28456913827654,141.2825651302605,140.28056112224448,139.27855711422845,138.27655310621242,137.2745490981964,136.27254509018036,135.2705410821643,134.26853707414827,133.26653306613224,132.2645290581162,131.26252505010018,130.26052104208415,129.25851703406812,128.2565130260521,127.25450901803606,126.25250501002003,125.250501002004,124.24849699398796,123.24649298597193,122.2444889779559,121.24248496993987,120.24048096192384,119.2384769539078,118.23647294589178,117.23446893787573,116.2324649298597,115.23046092184367,114.22845691382764,113.22645290581161,112.22444889779558,111.22244488977955,110.22044088176351,109.21843687374748,108.21643286573145,107.21442885771542,106.21242484969939,105.21042084168336,104.20841683366733,103.20641282565128,102.20440881763525,101.20240480961922,100.2004008016032,99.19839679358716,98.19639278557113,97.1943887775551,96.19238476953907,95.19038076152303,94.188376753507,93.18637274549097,92.18436873747494,91.18236472945891,90.18036072144288,89.17835671342685,88.1763527054108,87.17434869739478,86.17234468937875,85.17034068136272,84.16833667334669,83.16633266533066,82.16432865731463,81.16232464929858,80.16032064128255,79.15831663326652,78.1563126252505,77.15430861723446,76.15230460921843,75.1503006012024,74.14829659318636,73.14629258517033,72.1442885771543,71.14228456913827,70.14028056112224,69.13827655310621,68.13627254509018,67.13426853707413,66.1322645290581,65.13026052104208,64.12825651302605,63.126252505010015,62.12424849699398,61.12224448897795,60.12024048096192,59.11823647294589,58.11623246492985,57.11422845691382,56.11222444889779,55.110220440881754,54.108216432865724,53.106212424849694,52.104208416833664,51.10220440881763,50.1002004008016,49.09819639278557,48.09619238476954,47.0941883767535,46.09218436873747,45.09018036072144,44.0881763527054,43.08617234468937,42.08416833667334,41.08216432865731,40.080160320641276,39.07815631262525,38.07615230460922,37.07414829659318,36.07214428857715,35.07014028056112,34.06813627254509,33.06613226452905,32.06412825651302,31.06212424849699,30.06012024048096,29.058116232464926,28.056112224448896,27.054108216432862,26.052104208416832,25.0501002004008,24.04809619238477,23.046092184368735,22.0440881763527,21.04208416833667,20.040080160320638,19.03807615230461,18.036072144288575,17.034068136272545,16.03206412825651,15.03006012024048,14.028056112224448,13.026052104208416,12.024048096192384,11.02204408817635,10.020040080160319,9.018036072144287,8.016032064128256,7.014028056112224,6.012024048096192,5.0100200400801596,4.008016032064128,3.006012024048096,2.004008016032064,1.002004008016032,0.0],\"y\":[3.656109961180105,3.654138756220611,3.6525601197958975,3.6512016353692878,3.649969089900473,3.648816101047378,3.6477181372655783,3.646662756082672,3.6456439626273442,3.644657704841294,3.643700710357344,3.642770720381246,3.641866272025432,3.640986581957213,3.640130647510651,3.6392981468456402,3.63848796883394,3.637699660464938,3.636932223076807,3.6361849160665987,3.6354570516903553,3.634747883357635,3.6340568673065152,3.6333833904968436,3.632726844366995,3.6320867270978074,3.631462580114078,3.630853861400514,3.630259872533917,3.629680278674994,3.6291146673177104,3.6285625385774334,3.6280232900994496,3.627496601570091,3.6269820738047667,3.626479282801129,3.6259880413209604,3.625511039065916,3.6250446199944357,3.6245884284733187,3.624142119688745,3.623705370110975,3.6232778662462937,3.6228592895747584,3.622449331776667,3.622047719843161,3.62165418286171,3.6212684625931315,3.6208903136065973,3.620519503414648,3.620155720167572,3.619798708963234,3.6194482921280406,3.6191042568493503,3.61876639970787,3.618434526648778,3.6181084529528524,3.6177879153553247,3.6174727254311034,3.6171627340741574,3.616857766468547,3.616557653188628,3.6162622299486133,3.6159713373521325,3.6156848295897617,3.615402556801589,3.615124372646543,3.6148501372431676,3.6145797146942362,3.614312972857211,3.614049783114707,3.6137900625719572,3.6135345159884893,3.613287136814055,3.6130428767486187,3.6128016333627784,3.6125633079396398,3.612327805333793,3.61209502874249,3.6118648909429303,3.611637306115106,3.6114121908412256,3.611189464409804,3.6109690486650914,3.61075086785649,3.6105348495281904,3.610320921803979,3.6101090153176876,3.609899062539755,3.6096909975973546,3.609484756123301,3.609280275104958,3.6090774927331504,3.608876348251066,3.608676781803171,3.6084787342841143,3.6082822424715895,3.608087206555391,3.6078935655221995,3.6077012703697773,3.6075102728200963,3.607320525189136,3.607131980256679,3.606944591136112,3.6067583111442216,3.606573093670992,3.6063888920494014,3.6062057983952034,3.6060258530673424,3.6058545859979185,3.605684237814299,3.605514774521954,3.6053461625936993,3.605178368888242,3.6050113605687275,3.6048451050212815,3.6046795697735563,3.604514722413275,3.6043506235613867,3.604187231721192,3.6040244898280687,3.603862375259042,3.603700866011405,3.603539940660158,3.6033795783154425,3.603219758579982,3.6030604615065145,3.602901667555232,3.6027433575512173,3.602585541010071,3.602428203924804,3.6022713159752757,3.6021148626785573,3.6019588300468706,3.6018032045588666,3.6016479731309032,3.601493123088326,3.601338642136742,3.601184518333305,3.601030740057987,3.6008772986822657,3.600724184514942,3.600571385008081,3.6004188899575666,3.600270940396897,3.6001337849763564,3.59999690459933,3.5998602897708762,3.599723931105472,3.5995878192998614,3.5994519451059057,3.5993163196804474,3.5991809518356885,3.599045810810242,3.598910889291855,3.5987761799444975,3.5986416753764803,3.5985073681085695,3.598373250542103,3.5982393149271057,3.5981055533304036,3.5979719576037423,3.5978385193519014,3.597705229900809,3.5975720802656594,3.5974390611190272,3.5973061627589837,3.597173375077213,3.597040687527125,3.5969080890919747,3.596775821327354,3.5966437000738427,3.5965117028945452,3.596379824214532,3.5962480582317773,3.5961163988919878,3.5959848398634335,3.595853374511773,3.595721995874883,3.5955906966376876,3.5954659890926233,3.595352936243132,3.5952399384786675,3.595126986820622,3.595014071811577,3.59490118349013,3.594788311365722,3.594675444393469,3.5945626685215384,3.594450049814271,3.594337475520062,3.5942249433813536,3.5941124513834732,3.593999997762676,3.593887581014185,3.5937751999002283,3.593662853458085,3.593550541008122,3.5934382621618344,3.5933260168298897,3.5932138052301643,3.5931016278957864,3.5929894684026693,3.5928773354517123,3.592765232922919,3.592653161635179,3.5925411226805175,3.59242911742933,3.5923171475356144,3.5922052149422026,3.592093321885996,3.5919814709031943,3.5918696648345323,3.5917579068305088,3.5916462003566227,3.5915345308877424,3.591430549076465,3.5913367472508755,3.5912429769731253,3.59114923820157,3.5910555308489425,3.5909618547745783,3.5908682097766436,3.590774595584359,3.5906810118502284,3.5905874581422634,3.590493933936212,3.590400438607781,3.590306971424866,3.590213529243737,3.5901201107842757,3.5900267161602817,3.5899333439300087,3.5898399924894315,3.5897466600639443,3.5896533447000665,3.5895600442571474,3.589466756399066,3.5893734785859355,3.5892802080658073,3.589186941866373,3.589093676786667,3.5890004093887717,3.5889072735765666,3.5888141673813774,3.5887210861228116,3.5886280289236088,3.5885349946978535,3.588441982135956,3.588348989689627,3.5882560155568606,3.588163057666912,3.58807721569697,3.587998374263086,3.5879195410971394,3.5878407129032186,3.587761886041568,3.587683056513566,3.587604219946706,3.5875253715795736,3.5874465062468266,3.587367618364172,3.587288701913348,3.587209750427102,3.5871307569741675,3.587051714144246,3.5869726140329847,3.5868937186352707,3.586814818828241,3.5867359102183975,3.5866569920488076,3.58657806364466,3.586499124418767,3.586420173877074,3.586341211624162,3.5862622373687567,3.586183250929233,3.5861042522391227,3.5860252413526177,3.58594621845008,3.585867183843544,3.5857881379822247,3.5857090814580244,3.585630018373589,3.5855509476392604,3.5854718700338015,3.5853927869089497,3.585313699795636,3.585239673152697,3.585169372885166,3.5850990743548636,3.585028779867229,3.584958491935753,3.5848882132877575,3.5848179468701664,3.584747695855274,3.5846774636465213,3.5846072538842675,3.58453707045156,3.5844667621814903,3.5843964056619604,3.5843260416637857,3.5842556710892155,3.584185294993207,3.5841149145905677,3.584044531263108,3.58397414656679,3.583903762238871,3.5838333802050557,3.5837630025866454,3.5836926317076814,3.5836222701020977,3.5835519205208675,3.5834815859391504,3.583411269563445,3.583340974838729,3.5832707054556168,3.5832004653575007,3.5831302587477034,3.5830600900966223,3.5829899641488825,3.582919885930481,3.582849860755936,3.582779761968458,3.5827122939001335,3.5826463014793535,3.582580324751501,3.5825143636131944,3.582448417841775,3.5823824870893586,3.5823165708769027,3.5822506685882627,3.582184779464252,3.5821189025967044,3.582053036922532,3.581987181217786,3.581921334091717,3.581855493980835,3.5817896591429697,3.581723827651329,3.5816580202662807,3.58159223877906,3.581526465081213,3.5814606977780294,3.5813949353457684,3.5813291761281247,3.5812634183327052,3.5811976600275037,3.5811318991373704,3.58106613344049,3.5810003605648504,3.58093457798472,3.5808687830171175,3.5808029728182884,3.5807371443801768,3.5806712945268977,3.580605419911214,3.5805395690622674,3.580473764391567,3.580407954016491,3.580342975917314,3.5802783171761763,3.580213651248672,3.5801489777182307,3.5800842962114245,3.580019606400628,3.5799549080066755,3.579890200801521,3.579825484610896,3.5797607593169665,3.5796960248609944,3.5796312812459923,3.5795665285393854,3.579501766875667,3.579436998534085,3.5793722257394855,3.579307446245468,3.579242660649251,3.579177869639047,3.5791130739970147,3.579048274602206,3.578983472433516,3.578918668572632,3.5788538642069856,3.578789060632698,3.5787242592575326,3.5786594616038427,3.5785946693115203,3.5785298841409485,3.5784651079759473,3.5784003428267264,3.5783355537182193,3.5782706876132075,3.5782058137663295,3.578140932602008,3.5780760446320303,3.5780108607280345,3.577945595230676,3.577880325031841,3.5778150510374065,3.577749774262931,3.577684495838116,3.5776192170112715,3.5775539391537783,3.577488663764551,3.577423392474501,3.577358127051003,3.577292869402352,3.577227621582234,3.5771623857941837,3.5770971643960503,3.5770319599044615,3.576966774999284,3.5769016125280904,3.576836475510619,3.57677136714324,3.5767062908034175,3.5766412500541724,3.576576082372612,3.576510914558789,3.5764457545784496,3.5763806026512497,3.5763154589592165,3.5762503236446426,3.576185196807988,3.5761200785057765,3.576054968748498,3.575989867498502,3.5759247746679,3.5758596901164648,3.5757946136495264,3.5757295450158724,3.575663432910896,3.575597162524387,3.5755308988572554,3.5754646414111058,3.575398389620493,3.5753321476293065,3.575265912841677,3.575199683128146,3.5751334577931204,3.575067236072519,3.5750010171319007,3.574934800064591,3.574868583889811,3.5748023675508045,3.5747361499129644,3.574669929761963,3.574603705801877,3.5745374766533153,3.5744712408515484,3.5744049968446334,3.574338742991544,3.574272477560297,3.5742061987260803,3.5741399045693782,3.5740736342478185,3.5740073939264256,3.5739411505903163,3.5738749038715456,3.5738086534083364,3.573742398845928,3.5736761398374224,3.573609876044633,3.573543607138929,3.5734773328020855,3.573411052727129,3.573344766619184,3.573276392743403,3.573207869963002,3.573139340346051,3.5730708036545424,3.573002259666801,3.5729337081783346,3.572865149002679,3.5727965866853593,3.5727280285000695,3.5726594657267534,3.5725908986333996,3.5725223275314884,3.5724537527773594,3.572385174773581,3.572316593970318,3.5722480108667,3.5721794260121897,3.572110840007949,3.5720422535082097,3.5719736672216413,3.571905081912718,3.5718364984030893,3.5717679175729424,3.5716993403623785,3.571630767772774,3.571562200868154,3.5714936405140083,3.5714250823771803,3.5713565256302573,3.571287969674171,3.571219413781035,3.5711508570876753,3.5678180104943436,3.567886567187703,3.5679551230808393,3.5680236790369255,3.5680922357838485,3.5681607939206765,3.568229354274822,3.5682979211794423,3.5683664937690467,3.5684350709796107,3.5685036518097575,3.5685722353193863,3.5686408206283096,3.568709406914878,3.568777993414617,3.568846579418858,3.5689151642733683,3.5689837473769863,3.5690523281802493,3.5691209061840277,3.5691894809381566,3.569258052040068,3.5693266191334216,3.5693951819067378,3.5694637400920275,3.569532302409347,3.569600861585003,3.5696694130734694,3.5697379570612107,3.5698064937527194,3.5698750233696703,3.5699435461500713,3.5700119200258524,3.5700782061337972,3.5701444862087537,3.570210760545597,3.5702770294513013,3.5703432932440906,3.5704095522525963,3.5704758068150046,3.570542057278214,3.5706083039969845,3.570674547333094,3.5707407876544868,3.5708070579760465,3.5708733521327485,3.5709396309669654,3.571005896398212,3.5710721502513016,3.5711383942582167,3.5712046300599836,3.5712708592085454,3.5713370831686313,3.5714033033196326,3.5714695209574727,3.5715357372964793,3.571601953471259,3.571668170538569,3.5717343894791873,3.5718006111997886,3.5718668365348143,3.571933066248345,3.5719993010359747,3.5720655430271613,3.572131794817774,3.5721980522639236,3.572264315931055,3.5723305863175643,3.5723966984225406,3.5724617670561947,3.572526843523133,3.5725919280745684,3.57265702090517,3.572722122155166,3.5727872319124447,3.572852350214656,3.572917477051311,3.5729826123658848,3.573047756057918,3.573112907985118,3.5731780679654572,3.5732432357792803,3.5733084034608407,3.5733734442100857,3.5734385205499084,3.5735036289172872,3.5735687659347586,3.573633928405952,3.5736991133111298,3.5737643178027185,3.573829539200852,3.573894774988902,3.57396002280902,3.574025280457671,3.574090545881169,3.5741558171712193,3.5742210925604465,3.5742863704179397,3.574351649244784,3.574416927669599,3.5744822044440747,3.574547478438509,3.5746127486373442,3.5746780141347028,3.5747431980386986,3.574808086008676,3.5748729671729977,3.5749378410198758,3.5750027071248875,3.5750674962333946,3.5751322613826155,3.5751970375476168,3.5752618227181885,3.575326615010511,3.575391412664201,3.575456214039366,3.575521017613654,3.5755858219793004,3.575650625840184,3.5757154280088743,3.575780227403683,3.5758450230457153,3.5759098140559193,3.5759745996521364,3.5760393791461538,3.5761041519407533,3.5761689202823352,3.5762336819460536,3.5762984346526605,3.5763631782676626,3.5764279127236347,3.576492638017564,3.576557354208189,3.5766220614133437,3.5766867598072962,3.5767514496180928,3.576816131124899,3.57688080465534,3.5769454705828445,3.577010129323982,3.577075107423159,3.577140917798235,3.5772067224689357,3.5772725733178823,3.577338447933566,3.577404297786845,3.5774701262249566,3.5775359364237858,3.5776017313913884,3.5776675139715186,3.5777332868471583,3.5777990525440386,3.577864813434172,3.5779305717393735,3.577996329534793,3.5780620887524366,3.5781278511846977,3.578193618487881,3.5782593921857284,3.578325173672949,3.5783909810579972,3.578456812549638,3.578522647387503,3.578588487498385,3.578654334624454,3.5787201903292,3.5787860560033726,3.5788519328709203,3.578917821994931,3.578983724283571,3.579049640496027,3.579115571248443,3.5791815170198626,3.579247478158169,3.5793134548860217,3.5793794473068017,3.5794469153751263,3.579517014162604,3.579587039337149,3.5796571175555507,3.5797272435032905,3.5797974121543716,3.579867618764169,3.579937858862285,3.5800081282453973,3.580078422970113,3.5801487393458187,3.5802190739275357,3.580289423508766,3.5803597851143496,3.5804301559933136,3.580500533611724,3.580570915645539,3.580641299973458,3.5807116846697764,3.580782067997236,3.580852448399875,3.5809228244958837,3.580993195070454,3.5810635590686286,3.5811339155881585,3.581204223858228,3.5812744072909357,3.5813446170531895,3.581414849261942,3.5814851002768346,3.5815553666944258,3.581625645342421,3.581695933273897,3.581766227761532,3.581836526291834,3.5819068265593654,3.581980853202304,3.582059940315618,3.5821390234404697,3.5822181010459286,3.582297171780257,3.5823762348646926,3.582455291388893,3.582534337250212,3.5826133718567483,3.582692394759286,3.582771405645791,3.5828504043359013,3.582929390775425,3.5830083650308304,3.5830873272837422,3.5831662778254354,3.5832452170513283,3.583324145455476,3.5834030636250658,3.5834819722349094,3.583560872041939,3.583639767439653,3.5837188675509144,3.5837979103808357,3.58387690383377,3.583955855320016,3.58403477177084,3.584113659653495,3.584192524986242,3.584271373353374,3.5843502099202342,3.5844290394482363,3.584507866309887,3.5845866945038076,3.5846655276697543,3.584744369103638,3.58483021107358,3.584923168963529,3.5850161430962952,3.5851091355426243,3.5852021481045218,3.585295182330277,3.58538823952948,3.5854813207880456,3.585574426983235,3.58566756279544,3.585760830193335,3.5858540952730413,3.5859473614724755,3.5860406319926037,3.586133909805734,3.5862271976638156,3.5863204981067347,3.5864138134706125,3.5865071458960998,3.586600497336677,3.58669386956695,3.586787264190944,3.5868806826504054,3.586974124831534,3.5870675920144492,3.58716108734288,3.5872546115489317,3.5873481652568966,3.587441748991027,3.587535363183312,3.5876290081812465,3.5877226842556107,3.5878163916082384,3.5879101303797936,3.5880039006575437,3.5880977024831333,3.5882016842944107,3.588313353763291,3.588425060237177,3.5885368182412005,3.5886486243098625,3.588760475292664,3.588872368348871,3.5889843009422826,3.589096270835998,3.5892082760871857,3.589320315041847,3.5894323863295874,3.5895444888583805,3.5896566218093375,3.5897687813024546,3.5898809586368325,3.589993170236558,3.5901054155685026,3.59021769441479,3.590330006864753,3.5904423533068965,3.590554734420853,3.5906671511693444,3.5907796047901415,3.590892096788022,3.59100462892673,3.5911172032209393,3.5912298219282066,3.5913425978001374,3.59145546477239,3.591568336896798,3.5916812252182453,3.5917941402272904,3.5919070918853357,3.5920200896498002,3.5921331424992915,3.592257850044356,3.5923891492815514,3.5925205279184413,3.5926519932701018,3.592783552298656,3.5929152116384455,3.5930469776212,3.5931788563012135,3.593310853480511,3.5934429747340224,3.593575242498643,3.593707840933793,3.5938405284838812,3.593973316165652,3.5941062145256955,3.5942392336723277,3.594372383307477,3.5945056727585696,3.5946391110104106,3.594772706737072,3.594906468333774,3.5950404039487713,3.5951745215152378,3.5953088287831485,3.5954433333511657,3.595578042698523,3.59571296421691,3.5958481052423568,3.5959834730871156,3.596119098512574,3.5962549727065296,3.59639108451214,3.5965274431775445,3.5966640580059983,3.5968009383830246,3.596938093803565,3.597086043364235,3.597238538414749,3.5973913379216103,3.597544452088934,3.5976978934646553,3.5978516717399733,3.5980057955434104,3.598160276494994,3.5983151265375715,3.598470357965535,3.598625983453539,3.5987820160852255,3.598938469381944,3.599095357331472,3.599252694416739,3.5994105109578856,3.5995688209619003,3.5997276149131827,3.5998869119866503,3.6000467317221108,3.600207094066826,3.6003680194180734,3.60052952866571,3.600691643234737,3.6008543851278603,3.601017776968055,3.601181875819943,3.6013467231802245,3.6015122584279498,3.6016785139753957,3.6018455222949104,3.6020133160003676,3.6021819279286222,3.6023513912209673,3.6025217394045868,3.6026930064740106,3.6028729518018716,3.6030560454560696,3.60324024707766,3.60342546455089,3.60361174454278,3.603799133663347,3.603987678595804,3.6041774262267645,3.6043684237764455,3.6045607189288678,3.604754359962059,3.6049493958782577,3.6051458876907825,3.6053439352098393,3.6055435016577344,3.6057446461398186,3.605947428511626,3.6061519095299692,3.606358151004023,3.6065662159464233,3.606776168724356,3.6069880752106473,3.6072020029348586,3.6074180212631584,3.6076362020717596,3.607856617816472,3.608079344247894,3.6083044595217744,3.6085320443495985,3.6087621821491584,3.6089949587404613,3.609230461346308,3.6094687867694466,3.609710030155287,3.609954290220723,3.6102016693951575,3.6104572159786255,3.610716936521375,3.6109801262638794,3.6112468681009045,3.611517290649836,3.6117915260532114,3.612069710208257,3.61235198299643,3.6126384907588007,3.6129293833552816,3.613224806595296,3.613524919875215,3.6138298874808257,3.6141398788377717,3.614455068761993,3.6147756063595207,3.6151016800554463,3.615433553114538,3.6157714102560186,3.616115445534709,3.6164658623699024,3.61682287357424,3.6171866568213162,3.6175574670132655,3.6179356159997997,3.6183213362683784,3.618714873249829,3.6191164851833353,3.6195264429814267,3.619945019652962,3.620372523517643,3.6208092730954133,3.621255581879987,3.621711773401104,3.6221781924725844,3.6226551947276286,3.623146436207797,3.623649227211435,3.624163754976759,3.624690443506118,3.6252296919841016,3.6257818207243786,3.6263474320816624,3.626927025940585,3.6275210148071824,3.6281297335207463,3.6287538805044757,3.629393997773663,3.630050543903512,3.6307240207131835,3.631415036764303,3.6321242050970235,3.632852069473267,3.6335993764834753,3.634366813871606,3.6351551222406084,3.6359653002523085,3.636797800917319,3.637653735363881,3.6385334254321,3.639437873787914,3.6403678637640122,3.641324858247962,3.6423111160340125,3.6433299094893403,3.6443852906722465,3.6454832544540463,3.646636243307141,3.647868788775956,3.6492272732025657,3.6508059096272794,3.6527771145867733],\"type\":\"scatter\"},{\"mode\":\"markers\",\"name\":\"Reference\",\"showlegend\":true,\"x\":[0.0,1.002004008016032,2.004008016032064,3.006012024048096,4.008016032064128,5.0100200400801596,6.012024048096192,7.014028056112224,8.016032064128256,9.018036072144287,10.020040080160319,11.02204408817635,12.024048096192384,13.026052104208416,14.028056112224448,15.03006012024048,16.03206412825651,17.034068136272545,18.036072144288575,19.03807615230461,20.040080160320638,21.04208416833667,22.0440881763527,23.046092184368735,24.04809619238477,25.0501002004008,26.052104208416832,27.054108216432862,28.056112224448896,29.058116232464926,30.06012024048096,31.06212424849699,32.06412825651302,33.06613226452905,34.06813627254509,35.07014028056112,36.07214428857715,37.07414829659318,38.07615230460922,39.07815631262525,40.080160320641276,41.08216432865731,42.08416833667334,43.08617234468937,44.0881763527054,45.09018036072144,46.09218436873747,47.0941883767535,48.09619238476954,49.09819639278557,50.1002004008016,51.10220440881763,52.104208416833664,53.106212424849694,54.108216432865724,55.110220440881754,56.11222444889779,57.11422845691382,58.11623246492985,59.11823647294589,60.12024048096192,61.12224448897795,62.12424849699398,63.126252505010015,64.12825651302605,65.13026052104208,66.1322645290581,67.13426853707413,68.13627254509018,69.13827655310621,70.14028056112224,71.14228456913827,72.1442885771543,73.14629258517033,74.14829659318636,75.1503006012024,76.15230460921843,77.15430861723446,78.1563126252505,79.15831663326652,80.16032064128255,81.16232464929858,82.16432865731463,83.16633266533066,84.16833667334669,85.17034068136272,86.17234468937875,87.17434869739478,88.1763527054108,89.17835671342685,90.18036072144288,91.18236472945891,92.18436873747494,93.18637274549097,94.188376753507,95.19038076152303,96.19238476953907,97.1943887775551,98.19639278557113,99.19839679358716,100.2004008016032,101.20240480961922,102.20440881763525,103.20641282565128,104.20841683366733,105.21042084168336,106.21242484969939,107.21442885771542,108.21643286573145,109.21843687374748,110.22044088176351,111.22244488977955,112.22444889779558,113.22645290581161,114.22845691382764,115.23046092184367,116.2324649298597,117.23446893787573,118.23647294589178,119.2384769539078,120.24048096192384,121.24248496993987,122.2444889779559,123.24649298597193,124.24849699398796,125.250501002004,126.25250501002003,127.25450901803606,128.2565130260521,129.25851703406812,130.26052104208415,131.26252505010018,132.2645290581162,133.26653306613224,134.26853707414827,135.2705410821643,136.27254509018036,137.2745490981964,138.27655310621242,139.27855711422845,140.28056112224448,141.2825651302605,142.28456913827654,143.28657314629257,144.2885771543086,145.29058116232463,146.29258517034066,147.2945891783567,148.29659318637272,149.29859719438875,150.3006012024048,151.30260521042084,152.30460921843687,153.3066132264529,154.30861723446893,155.31062124248496,156.312625250501,157.31462925851702,158.31663326653305,159.31863727454908,160.3206412825651,161.32264529058114,162.32464929859717,163.3266533066132,164.32865731462925,165.33066132264528,166.3326653306613,167.33466933867734,168.33667334669337,169.3386773547094,170.34068136272543,171.34268537074146,172.3446893787575,173.34669338677352,174.34869739478955,175.35070140280558,176.3527054108216,177.35470941883764,178.3567134268537,179.35871743486973,180.36072144288576,181.3627254509018,182.36472945891782,183.36673346693385,184.36873747494988,185.3707414829659,186.37274549098194,187.37474949899797,188.376753507014,189.37875751503003,190.38076152304606,191.3827655310621,192.38476953907815,193.38677354709418,194.3887775551102,195.39078156312624,196.39278557114227,197.3947895791583,198.39679358717433,199.39879759519036,200.4008016032064,201.40280561122242,202.40480961923845,203.40681362725448,204.4088176352705,205.41082164328654,206.41282565130257,207.41482965931863,208.41683366733466,209.4188376753507,210.42084168336672,211.42284569138275,212.42484969939878,213.4268537074148,214.42885771543084,215.43086172344687,216.4328657314629,217.43486973947893,218.43687374749496,219.438877755511,220.44088176352702,221.44288577154308,222.4448897795591,223.44689378757514,224.44889779559117,225.4509018036072,226.45290581162322,227.45490981963925,228.45691382765528,229.45891783567131,230.46092184368734,231.46292585170337,232.4649298597194,233.46693386773543,234.46893787575146,235.47094188376752,236.47294589178355,237.47494989979958,238.4769539078156,239.47895791583164,240.48096192384767,241.4829659318637,242.48496993987973,243.48697394789576,244.4889779559118,245.49098196392782,246.49298597194385,247.49498997995988,248.4969939879759,249.49899799599197,250.501002004008,251.50300601202403,252.50501002004006,253.5070140280561,254.50901803607212,255.51102204408815,256.5130260521042,257.51503006012024,258.51703406813624,259.5190380761523,260.5210420841683,261.52304609218436,262.52505010020036,263.5270541082164,264.5290581162324,265.5310621242485,266.5330661322645,267.53507014028054,268.53707414829654,269.5390781563126,270.5410821643286,271.54308617234466,272.5450901803607,273.5470941883767,274.5490981963928,275.5511022044088,276.55310621242484,277.55511022044084,278.5571142284569,279.5591182364729,280.56112224448896,281.56312625250496,282.565130260521,283.567134268537,284.5691382765531,285.57114228456913,286.57314629258514,287.5751503006012,288.5771543086172,289.57915831663325,290.58116232464926,291.5831663326653,292.5851703406813,293.5871743486974,294.5891783567134,295.59118236472943,296.59318637274544,297.5951903807615,298.5971943887775,299.59919839679355,300.6012024048096,301.6032064128256,302.6052104208417,303.6072144288577,304.60921843687373,305.61122244488973,306.6132264529058,307.6152304609218,308.61723446893785,309.61923847695385,310.6212424849699,311.6232464929859,312.625250501002,313.62725450901803,314.62925851703403,315.6312625250501,316.6332665330661,317.63527054108215,318.63727454909815,319.6392785571142,320.6412825651302,321.64328657314627,322.64529058116227,323.64729458917833,324.64929859719433,325.6513026052104,326.6533066132264,327.65531062124245,328.6573146292585,329.6593186372745,330.66132264529057,331.66332665330657,332.6653306613226,333.66733466933863,334.6693386773547,335.6713426853707,336.67334669338675,337.67535070140275,338.6773547094188,339.6793587174348,340.68136272545087,341.68336673346687,342.6853707414829,343.687374749499,344.689378757515,345.69138276553105,346.69338677354705,347.6953907815631,348.6973947895791,349.69939879759517,350.70140280561117,351.7034068136272,352.7054108216432,353.7074148296593,354.7094188376753,355.71142284569135,356.7134268537074,357.7154308617234,358.71743486973946,359.71943887775547,360.7214428857715,361.7234468937875,362.7254509018036,363.7274549098196,364.72945891783564,365.73146292585164,366.7334669338677,367.7354709418837,368.73747494989976,369.73947895791576,370.7414829659318,371.7434869739479,372.7454909819639,373.74749498997994,374.74949899799594,375.751503006012,376.753507014028,377.75551102204406,378.75751503006006,379.7595190380761,380.7615230460921,381.7635270541082,382.7655310621242,383.76753507014024,384.7695390781563,385.7715430861723,386.77354709418836,387.77555110220436,388.7775551102204,389.7795591182364,390.7815631262525,391.7835671342685,392.78557114228454,393.78757515030054,394.7895791583166,395.7915831663326,396.79358717434866,397.79559118236466,398.7975951903807,399.7995991983968,400.8016032064128,401.80360721442884,402.80561122244484,403.8076152304609,404.8096192384769,405.81162324649296,406.81362725450896,407.815631262525,408.817635270541,409.8196392785571,410.8216432865731,411.82364729458914,412.82565130260514,413.8276553106212,414.82965931863725,415.83166332665326,416.8336673346693,417.8356713426853,418.8376753507014,419.8396793587174,420.84168336673343,421.84368737474944,422.8456913827655,423.8476953907815,424.84969939879755,425.85170340681356,426.8537074148296,427.8557114228457,428.8577154308617,429.85971943887773,430.86172344689373,431.8637274549098,432.8657314629258,433.86773547094185,434.86973947895785,435.8717434869739,436.8737474949899,437.875751503006,438.877755511022,439.87975951903803,440.88176352705403,441.8837675350701,442.88577154308615,443.88777555110215,444.8897795591182,445.8917835671342,446.89378757515027,447.8957915831663,448.89779559118233,449.89979959919833,450.9018036072144,451.9038076152304,452.90581162324645,453.90781563126245,454.9098196392785,455.9118236472945,456.91382765531057,457.9158316633266,458.91783567134263,459.9198396793587,460.9218436873747,461.92384769539075,462.92585170340675,463.9278557114228,464.9298597194388,465.93186372745487,466.93386773547087,467.9358717434869,468.93787575150293,469.939879759519,470.94188376753505,471.94388777555105,472.9458917835671,473.9478957915831,474.94989979959917,475.95190380761517,476.9539078156312,477.9559118236472,478.9579158316633,479.9599198396793,480.96192384769535,481.96392785571135,482.9659318637274,483.9679358717434,484.96993987975947,485.9719438877755,486.9739478957915,487.9759519038076,488.9779559118236,489.97995991983964,490.98196392785565,491.9839679358717,492.9859719438877,493.98797595190376,494.98997995991976,495.9919839679358,496.9939879759518,497.9959919839679,498.99799599198394,500.0],\"y\":[3.6477789068369204,3.6448630394521726,3.6441958989032193,3.6437994325000846,3.643194704321128,3.6415325151433855,3.6405193295906284,3.6418546231613123,3.639242289665052,3.6389611838366656,3.639283133547337,3.6383275447165913,3.6371688797772377,3.6354563209276702,3.637182744826977,3.6360050004779416,3.6358523336060307,3.636146115129919,3.634206190791263,3.633786793339037,3.634663289733323,3.6334608668522352,3.6321981470432956,3.631395944325774,3.6310184665819123,3.628534397325631,3.630393942302052,3.6312108322533967,3.6312525687328496,3.630920172412795,3.6277452343708605,3.628259792676611,3.6284967620466126,3.629046157524974,3.6265710386983425,3.626991186497115,3.626792857176281,3.623822888682014,3.6249333376900204,3.6239624165017164,3.6253413623832897,3.624625211802447,3.6232253921064097,3.6230789504404077,3.6217273699419663,3.6229888351349344,3.6223590203501224,3.620966353261813,3.621234478538418,3.6213445374598643,3.623758007576279,3.620549802692375,3.621562970988505,3.6216047258130075,3.620787044110922,3.6188513559694804,3.620654799992435,3.619094308786157,3.6207678718882477,3.616352918946582,3.617144383816364,3.6190769979304065,3.617647957569165,3.6157993984082695,3.6177742071084236,3.617602811564581,3.615133673839911,3.6161697735306038,3.6163999519671615,3.6150165368187994,3.6152559642175017,3.615114433356346,3.614460933751315,3.614529407293362,3.6127881124178183,3.614434616394579,3.613187053145479,3.611967699204313,3.6124358889242885,3.612970417611592,3.609892854581222,3.6104580602936243,3.6095650761672275,3.6113351949234547,3.6120271100688246,3.6110051944620967,3.6094553727754097,3.611234782862858,3.6101662090232316,3.6113370073381845,3.6101622154226054,3.6098761101315375,3.610272415681595,3.6099785737925996,3.6078720049969157,3.6090115604178097,3.6084133632983257,3.6099612997383157,3.60812883956941,3.6087376495495302,3.607079080389043,3.6078126506800494,3.6069751129793413,3.6061983080370643,3.606329195511747,3.6058656298209897,3.6065202335462088,3.606142149950012,3.6047236364735267,3.605678992127464,3.606340401424036,3.6058197716903018,3.6064560586374346,3.6048184614281653,3.6046072102079654,3.6052985895615297,3.604210690113493,3.6049185614620978,3.604434203946289,3.6033038329274882,3.603238724370999,3.6031558421667196,3.6031705681363464,3.602983598359611,3.603586916761243,3.6028626143574938,3.6016621331702683,3.6028183311651154,3.6019706373915596,3.6013888919073955,3.6010710625243147,3.6016535561797274,3.6013559162294393,3.601788754756492,3.59993828195837,3.6007458358490636,3.6002771346862183,3.602156864847549,3.6012692700768074,3.5994893635688268,3.600092546960415,3.5984296800398,3.5999991743502435,3.598567014577626,3.5998904513684087,3.5997405470300357,3.5993011999503612,3.599195681451398,3.598368979345646,3.598681017824748,3.599005016409206,3.5969700181615756,3.599212068624954,3.597286498273013,3.598948821484949,3.598442926815186,3.597456551147863,3.598068607159003,3.5958607764363464,3.596142626954703,3.5942802561171554,3.5958258961645053,3.596595614997224,3.5963121301121697,3.5961335378688726,3.594617103696975,3.5958542003943887,3.59563393969906,3.5959071465919688,3.5961928248940414,3.594099653598296,3.5955679124859232,3.594593977492272,3.595475733096605,3.5946267719949576,3.5957091522569953,3.5926943513693725,3.592624843887196,3.59406706162292,3.593075651906136,3.594364159457502,3.5938038394928564,3.593562358583157,3.593685633912573,3.592819910362926,3.592094580674784,3.5933943523826617,3.5929400521484762,3.593086234087965,3.592863698924742,3.592667953157396,3.592305309977877,3.5916528587182524,3.593931233138635,3.591085063139359,3.592035142288614,3.591579945574132,3.592260134130895,3.5921821486194876,3.5907829023132947,3.590632702562804,3.591895109833214,3.593123505020113,3.5900287466916683,3.5907384274331267,3.588707578346998,3.5901956895057356,3.5897219288844733,3.591249780286238,3.588925253595133,3.5895842221335688,3.5915515760783054,3.589334637580728,3.5888794050523156,3.5895914904267183,3.5890497552891345,3.5896342036521003,3.5878828775374743,3.590262194665913,3.591214921911955,3.587729374486235,3.5897945876683943,3.5876732748450926,3.5906398413089757,3.590860300844685,3.588632779285287,3.5892590863619835,3.591198466573039,3.5886327645728655,3.5884505591047344,3.589360057640676,3.5886039311210345,3.587648423514166,3.586258966105293,3.58719792900112,3.5884239419536423,3.5880501583117894,3.5856988091802338,3.5878317309755485,3.5858970895485265,3.586679537753772,3.586610362485887,3.5863549623927344,3.5874145633842867,3.5854475682951774,3.5875784039273895,3.587399160726391,3.58639737817317,3.586387995769718,3.5867102942484093,3.5860049918098347,3.586717305605846,3.585031663630339,3.585534542330817,3.5844024588421854,3.5870363765301168,3.5858451354764527,3.5846614326571533,3.5856410995353483,3.586004262258651,3.5866485779479085,3.5847272277213857,3.586700573953632,3.5844705469898774,3.584669694911128,3.5860939056880823,3.58554127912704,3.58396108741242,3.5847938763442477,3.5824933659173688,3.5849441602920256,3.5854602878117765,3.5859809699374843,3.5860688303192574,3.584370608777704,3.584044531964269,3.5856204387311434,3.5848324599862793,3.5827593111021003,3.584266941163421,3.5829241123404674,3.5829984572796696,3.5841128900604695,3.5831674022792397,3.585458738638187,3.582947868338668,3.583175530151306,3.582230840785666,3.5812992461733684,3.582830300262932,3.5830106560131294,3.5835439170726087,3.5830405228232673,3.581331708270041,3.5840802500806106,3.5795955102316617,3.5809953882345873,3.5819091590436276,3.58363743828232,3.581494303024155,3.581044909594112,3.583099127331062,3.582488620562221,3.581042980366149,3.5822833452776734,3.5805026717569146,3.5827714056019526,3.582042907427934,3.582219034367139,3.5810801657410933,3.5823089031101456,3.582956998317813,3.5806347698676446,3.579936862206812,3.5801671154619243,3.5805695852008737,3.5814585503920933,3.582520501067707,3.5826799888269147,3.5801653337335284,3.579300004842184,3.582015194296455,3.582024166182772,3.5817320519074594,3.5810590141477743,3.57928921147559,3.5809838931786233,3.5802651092352744,3.581053655680618,3.579562295500637,3.581112042067977,3.578223444840266,3.5797229192014273,3.580146244457662,3.5786665713746735,3.579986250797533,3.579198860433748,3.5797766992636695,3.577774479426439,3.5788250808263844,3.580524861860678,3.5798796475176817,3.578711161633387,3.579001953637378,3.5803015745287596,3.5795071239124137,3.5782415945441337,3.5776844371874628,3.5798295631335812,3.579355618839779,3.5784721110747277,3.579810874851141,3.5787328754490777,3.5803056698249662,3.576381863009774,3.579731883162755,3.5801672227852532,3.5789223595025565,3.5773185056562493,3.578218973557992,3.577940908341008,3.578719537750479,3.578230001901263,3.5768988884423836,3.57776300238476,3.5770320733183945,3.578872040226704,3.577896620409933,3.57645301433815,3.576482109762866,3.577568168670118,3.577390128643743,3.5772360572239514,3.577602034911471,3.5762498909984672,3.577967758553512,3.575324625519928,3.575118029625683,3.5757383770561373,3.5781419003437396,3.5753998718093603,3.5776851339789606,3.575878068932925,3.577058549615134,3.5768864532643625,3.5758468919369024,3.5763366843851747,3.5742563729180796,3.575917080807397,3.5763994906866046,3.5769433011550436,3.575590548654508,3.576031326435272,3.57472881687849,3.575069765811465,3.5749092310536095,3.5747536357005454,3.5746486103314483,3.5751690170392108,3.5752676091766475,3.5745154472414904,3.578105615144287,3.5757794674887773,3.5755899288655244,3.574693958223865,3.574974418268465,3.575724635262353,3.577413310694882,3.5739079184578593,3.5758879378119373,3.5757763785025487,3.57459561705922,3.5748758236881994,3.5735246401647265,3.576522341315541,3.5738752625860006,3.5750462556924085,3.575202147172333,3.574412080908722,3.575823288533548,3.573594461952258,3.5727948508465666,3.5748638272086706,3.5735095781874513,3.5741434682167736,3.5742551572267867,3.5738816905254054,3.5742582456425667,3.5728980611080225,3.5718225109919213,3.5752203786106618,3.572586667544787,3.571995349236241,3.57156509067872,3.573645744483774,3.574112031666643,3.5737640310395764,3.5716302010770162,3.574792430923837,3.572873420347733,3.572630888614252,3.5726751681091113,3.573916967198157,3.5712570368869487,3.5731958200816702,3.5726413325333906,3.5729362253256043,3.5727329614470387,3.574592191638162,3.5725835114999738,3.572476490981218,3.5714664748546023,3.5712098842618727,3.5722707280112442,3.5718073553982896,3.5717994443995678,3.57164956755468,3.57161251568246,3.573025103234414,3.5729842770805154,3.5698346110365287,3.5706661601913994,3.5723199713289895,3.571361765783018,3.571092196790128,3.57224471464921,3.569355784396344,3.570906856816603,3.5680026824053677,3.572119451898039,3.5694632199208565,3.5723557961585586,3.569953839766177,3.570756807651284,3.572249166218233,3.570487419028467,3.569727996543496,3.570210561505359,3.569793347149532,3.568865715135132,3.570862047445075,3.570858528594606,3.5719620075480583,3.570285664890378,3.5696891890461977,3.571276080343998,3.569388389782271,3.5689190215247897,3.5701379217450917,3.5686833018374324,3.569022284315135,3.569849317409536,3.5701709851600523,3.5692859405283146,3.5689005351004828,3.570020849825909,3.5684399156581708,3.569890121002343,3.5680125428136793,3.5680395206240116],\"type\":\"scatter\"},{\"line\":{\"width\":4},\"mode\":\"lines\",\"name\":\"Model\",\"x\":[0.0,1.002004008016032,2.004008016032064,3.006012024048096,4.008016032064128,5.0100200400801596,6.012024048096192,7.014028056112224,8.016032064128256,9.018036072144287,10.020040080160319,11.02204408817635,12.024048096192384,13.026052104208416,14.028056112224448,15.03006012024048,16.03206412825651,17.034068136272545,18.036072144288575,19.03807615230461,20.040080160320638,21.04208416833667,22.0440881763527,23.046092184368735,24.04809619238477,25.0501002004008,26.052104208416832,27.054108216432862,28.056112224448896,29.058116232464926,30.06012024048096,31.06212424849699,32.06412825651302,33.06613226452905,34.06813627254509,35.07014028056112,36.07214428857715,37.07414829659318,38.07615230460922,39.07815631262525,40.080160320641276,41.08216432865731,42.08416833667334,43.08617234468937,44.0881763527054,45.09018036072144,46.09218436873747,47.0941883767535,48.09619238476954,49.09819639278557,50.1002004008016,51.10220440881763,52.104208416833664,53.106212424849694,54.108216432865724,55.110220440881754,56.11222444889779,57.11422845691382,58.11623246492985,59.11823647294589,60.12024048096192,61.12224448897795,62.12424849699398,63.126252505010015,64.12825651302605,65.13026052104208,66.1322645290581,67.13426853707413,68.13627254509018,69.13827655310621,70.14028056112224,71.14228456913827,72.1442885771543,73.14629258517033,74.14829659318636,75.1503006012024,76.15230460921843,77.15430861723446,78.1563126252505,79.15831663326652,80.16032064128255,81.16232464929858,82.16432865731463,83.16633266533066,84.16833667334669,85.17034068136272,86.17234468937875,87.17434869739478,88.1763527054108,89.17835671342685,90.18036072144288,91.18236472945891,92.18436873747494,93.18637274549097,94.188376753507,95.19038076152303,96.19238476953907,97.1943887775551,98.19639278557113,99.19839679358716,100.2004008016032,101.20240480961922,102.20440881763525,103.20641282565128,104.20841683366733,105.21042084168336,106.21242484969939,107.21442885771542,108.21643286573145,109.21843687374748,110.22044088176351,111.22244488977955,112.22444889779558,113.22645290581161,114.22845691382764,115.23046092184367,116.2324649298597,117.23446893787573,118.23647294589178,119.2384769539078,120.24048096192384,121.24248496993987,122.2444889779559,123.24649298597193,124.24849699398796,125.250501002004,126.25250501002003,127.25450901803606,128.2565130260521,129.25851703406812,130.26052104208415,131.26252505010018,132.2645290581162,133.26653306613224,134.26853707414827,135.2705410821643,136.27254509018036,137.2745490981964,138.27655310621242,139.27855711422845,140.28056112224448,141.2825651302605,142.28456913827654,143.28657314629257,144.2885771543086,145.29058116232463,146.29258517034066,147.2945891783567,148.29659318637272,149.29859719438875,150.3006012024048,151.30260521042084,152.30460921843687,153.3066132264529,154.30861723446893,155.31062124248496,156.312625250501,157.31462925851702,158.31663326653305,159.31863727454908,160.3206412825651,161.32264529058114,162.32464929859717,163.3266533066132,164.32865731462925,165.33066132264528,166.3326653306613,167.33466933867734,168.33667334669337,169.3386773547094,170.34068136272543,171.34268537074146,172.3446893787575,173.34669338677352,174.34869739478955,175.35070140280558,176.3527054108216,177.35470941883764,178.3567134268537,179.35871743486973,180.36072144288576,181.3627254509018,182.36472945891782,183.36673346693385,184.36873747494988,185.3707414829659,186.37274549098194,187.37474949899797,188.376753507014,189.37875751503003,190.38076152304606,191.3827655310621,192.38476953907815,193.38677354709418,194.3887775551102,195.39078156312624,196.39278557114227,197.3947895791583,198.39679358717433,199.39879759519036,200.4008016032064,201.40280561122242,202.40480961923845,203.40681362725448,204.4088176352705,205.41082164328654,206.41282565130257,207.41482965931863,208.41683366733466,209.4188376753507,210.42084168336672,211.42284569138275,212.42484969939878,213.4268537074148,214.42885771543084,215.43086172344687,216.4328657314629,217.43486973947893,218.43687374749496,219.438877755511,220.44088176352702,221.44288577154308,222.4448897795591,223.44689378757514,224.44889779559117,225.4509018036072,226.45290581162322,227.45490981963925,228.45691382765528,229.45891783567131,230.46092184368734,231.46292585170337,232.4649298597194,233.46693386773543,234.46893787575146,235.47094188376752,236.47294589178355,237.47494989979958,238.4769539078156,239.47895791583164,240.48096192384767,241.4829659318637,242.48496993987973,243.48697394789576,244.4889779559118,245.49098196392782,246.49298597194385,247.49498997995988,248.4969939879759,249.49899799599197,250.501002004008,251.50300601202403,252.50501002004006,253.5070140280561,254.50901803607212,255.51102204408815,256.5130260521042,257.51503006012024,258.51703406813624,259.5190380761523,260.5210420841683,261.52304609218436,262.52505010020036,263.5270541082164,264.5290581162324,265.5310621242485,266.5330661322645,267.53507014028054,268.53707414829654,269.5390781563126,270.5410821643286,271.54308617234466,272.5450901803607,273.5470941883767,274.5490981963928,275.5511022044088,276.55310621242484,277.55511022044084,278.5571142284569,279.5591182364729,280.56112224448896,281.56312625250496,282.565130260521,283.567134268537,284.5691382765531,285.57114228456913,286.57314629258514,287.5751503006012,288.5771543086172,289.57915831663325,290.58116232464926,291.5831663326653,292.5851703406813,293.5871743486974,294.5891783567134,295.59118236472943,296.59318637274544,297.5951903807615,298.5971943887775,299.59919839679355,300.6012024048096,301.6032064128256,302.6052104208417,303.6072144288577,304.60921843687373,305.61122244488973,306.6132264529058,307.6152304609218,308.61723446893785,309.61923847695385,310.6212424849699,311.6232464929859,312.625250501002,313.62725450901803,314.62925851703403,315.6312625250501,316.6332665330661,317.63527054108215,318.63727454909815,319.6392785571142,320.6412825651302,321.64328657314627,322.64529058116227,323.64729458917833,324.64929859719433,325.6513026052104,326.6533066132264,327.65531062124245,328.6573146292585,329.6593186372745,330.66132264529057,331.66332665330657,332.6653306613226,333.66733466933863,334.6693386773547,335.6713426853707,336.67334669338675,337.67535070140275,338.6773547094188,339.6793587174348,340.68136272545087,341.68336673346687,342.6853707414829,343.687374749499,344.689378757515,345.69138276553105,346.69338677354705,347.6953907815631,348.6973947895791,349.69939879759517,350.70140280561117,351.7034068136272,352.7054108216432,353.7074148296593,354.7094188376753,355.71142284569135,356.7134268537074,357.7154308617234,358.71743486973946,359.71943887775547,360.7214428857715,361.7234468937875,362.7254509018036,363.7274549098196,364.72945891783564,365.73146292585164,366.7334669338677,367.7354709418837,368.73747494989976,369.73947895791576,370.7414829659318,371.7434869739479,372.7454909819639,373.74749498997994,374.74949899799594,375.751503006012,376.753507014028,377.75551102204406,378.75751503006006,379.7595190380761,380.7615230460921,381.7635270541082,382.7655310621242,383.76753507014024,384.7695390781563,385.7715430861723,386.77354709418836,387.77555110220436,388.7775551102204,389.7795591182364,390.7815631262525,391.7835671342685,392.78557114228454,393.78757515030054,394.7895791583166,395.7915831663326,396.79358717434866,397.79559118236466,398.7975951903807,399.7995991983968,400.8016032064128,401.80360721442884,402.80561122244484,403.8076152304609,404.8096192384769,405.81162324649296,406.81362725450896,407.815631262525,408.817635270541,409.8196392785571,410.8216432865731,411.82364729458914,412.82565130260514,413.8276553106212,414.82965931863725,415.83166332665326,416.8336673346693,417.8356713426853,418.8376753507014,419.8396793587174,420.84168336673343,421.84368737474944,422.8456913827655,423.8476953907815,424.84969939879755,425.85170340681356,426.8537074148296,427.8557114228457,428.8577154308617,429.85971943887773,430.86172344689373,431.8637274549098,432.8657314629258,433.86773547094185,434.86973947895785,435.8717434869739,436.8737474949899,437.875751503006,438.877755511022,439.87975951903803,440.88176352705403,441.8837675350701,442.88577154308615,443.88777555110215,444.8897795591182,445.8917835671342,446.89378757515027,447.8957915831663,448.89779559118233,449.89979959919833,450.9018036072144,451.9038076152304,452.90581162324645,453.90781563126245,454.9098196392785,455.9118236472945,456.91382765531057,457.9158316633266,458.91783567134263,459.9198396793587,460.9218436873747,461.92384769539075,462.92585170340675,463.9278557114228,464.9298597194388,465.93186372745487,466.93386773547087,467.9358717434869,468.93787575150293,469.939879759519,470.94188376753505,471.94388777555105,472.9458917835671,473.9478957915831,474.94989979959917,475.95190380761517,476.9539078156312,477.9559118236472,478.9579158316633,479.9599198396793,480.96192384769535,481.96392785571135,482.9659318637274,483.9679358717434,484.96993987975947,485.9719438877755,486.9739478957915,487.9759519038076,488.9779559118236,489.97995991983964,490.98196392785565,491.9839679358717,492.9859719438877,493.98797595190376,494.98997995991976,495.9919839679358,496.9939879759518,497.9959919839679,498.99799599198394,500.0],\"y\":[3.6544435378834392,3.6524723329239452,3.6508936964992316,3.649535212072622,3.648302666603807,3.647149677750712,3.6460517139689124,3.644996332786006,3.6439775393306784,3.642991281544628,3.642034287060678,3.64110429708458,3.640199848728766,3.639320158660547,3.638464224213985,3.6376317235489743,3.6368215455372743,3.636033237168272,3.635265799780141,3.6345184927699328,3.6337906283936894,3.633081460060969,3.6323904440098493,3.6317169672001777,3.631060421070329,3.6304203038011416,3.629796156817412,3.6291874381038483,3.628593449237251,3.6280138553783283,3.6274482440210445,3.6268961152807675,3.6263568668027837,3.625830178273425,3.625315650508101,3.624812859504463,3.6243216180242945,3.6238446157692503,3.62337819669777,3.622922005176653,3.6224756963920792,3.622038946814309,3.621611442949628,3.6211928662780926,3.620782908480001,3.620381296546495,3.6199877595650443,3.6196020392964656,3.6192238903099314,3.618853080117982,3.618489296870906,3.6181322856665683,3.6177818688313748,3.6174378335526844,3.617099976411204,3.616768103352112,3.6164420296561866,3.616121492058659,3.6158063021344375,3.6154963107774916,3.615191343171881,3.614891229891962,3.6145958066519475,3.6143049140554666,3.614018406293096,3.613736133504923,3.6134579493498773,3.6131837139465017,3.6129132913975703,3.6126465495605453,3.612383359818041,3.6121236392752913,3.6118680926918234,3.611620713517389,3.611376453451953,3.6111352100661125,3.610896884642974,3.610661382037127,3.6104286054458243,3.6101984676462644,3.6099708828184403,3.6097457675445597,3.609523041113138,3.6093026253684255,3.6090844445598242,3.6088684262315245,3.6086544985073132,3.6084425920210217,3.6082326392430892,3.6080245743006887,3.607818332826635,3.607613851808292,3.6074110694364845,3.6072099249544003,3.607010358506505,3.6068123109874484,3.6066158191749236,3.606420783258725,3.6062271422255336,3.6060348470731114,3.6058438495234304,3.60565410189247,3.605465556960013,3.605278167839446,3.6050918878475557,3.604906670374326,3.6047224687527355,3.6045393750985375,3.6043594297706765,3.6041881627012526,3.604017814517633,3.603848351225288,3.6036797392970334,3.6035119455915763,3.6033449372720616,3.6031786817246156,3.6030131464768904,3.602848299116609,3.602684200264721,3.602520808424526,3.602358066531403,3.602195951962376,3.6020344427147393,3.601873517363492,3.6017131550187766,3.6015533352833162,3.6013940382098486,3.6012352442585662,3.6010769342545514,3.600919117713405,3.600761780628138,3.60060489267861,3.6004484393818914,3.6002924067502047,3.6001367812622007,3.5999815498342373,3.59982669979166,3.5996722188400763,3.599518095036639,3.599364316761321,3.5992108753856,3.599057761218276,3.598904961711415,3.5987524666609008,3.598604517100231,3.5984673616796905,3.598330481302664,3.5981938664742104,3.598057507808806,3.5979213960031955,3.59778552180924,3.5976498963837815,3.5975145285390226,3.597379387513576,3.597244465995189,3.5971097566478316,3.5969752520798144,3.5968409448119036,3.596706827245437,3.59657289163044,3.5964391300337377,3.5963055343070764,3.5961720960552355,3.596038806604143,3.5959056569689936,3.5957726378223613,3.595639739462318,3.595506951780547,3.595374264230459,3.595241665795309,3.5951093980306883,3.594977276777177,3.5948452795978794,3.594713400917866,3.5945816349351114,3.594449975595322,3.5943184165667676,3.5941869512151072,3.5940555725782173,3.5939242733410217,3.5937995657959574,3.593686512946466,3.5935735151820016,3.5934605635239563,3.593347648514911,3.593234760193464,3.593121888069056,3.5930090210968033,3.5928962452248725,3.592783626517605,3.592671052223396,3.5925585200846877,3.5924460280868074,3.5923335744660103,3.592221157717519,3.5921087766035624,3.591996430161419,3.591884117711456,3.5917718388651685,3.591659593533224,3.5915473819334984,3.5914352045991205,3.5913230451060034,3.5912109121550464,3.5910988096262533,3.590986738338513,3.5908746993838516,3.590762694132664,3.5906507242389485,3.5905387916455367,3.59042689858933,3.5903150476065284,3.5902032415378664,3.590091483533843,3.589979777059957,3.5898681075910766,3.589764125779799,3.5896703239542096,3.5895765536764594,3.5894828149049043,3.5893891075522766,3.5892954314779124,3.5892017864799777,3.589108172287693,3.5890145885535625,3.5889210348455975,3.588827510639546,3.588734015311115,3.5886405481282,3.5885471059470713,3.58845368748761,3.588360292863616,3.588266920633343,3.5881735691927656,3.5880802367672784,3.5879869214034006,3.5878936209604815,3.5878003331024,3.5877070552892696,3.5876137847691414,3.587520518569707,3.587427253490001,3.587333986092106,3.5872408502799007,3.5871477440847115,3.5870546628261457,3.586961605626943,3.5868685714011876,3.5867755588392902,3.586682566392961,3.5865895922601947,3.586496634370246,3.586410792400304,3.58633195096642,3.5862531178004735,3.5861742896065527,3.586095462744902,3.5860166332169,3.58593779665004,3.5858589482829077,3.5857800829501607,3.585701195067506,3.585622278616682,3.585543327130436,3.5854643336775016,3.5853852908475803,3.585306190736319,3.585227295338605,3.5851483955315753,3.5850694869217317,3.5849905687521417,3.584911640347994,3.5848327011221013,3.584753750580408,3.5846747883274963,3.584595814072091,3.584516827632567,3.5844378289424568,3.584358818055952,3.584279795153414,3.584200760546878,3.584121714685559,3.5840426581613585,3.583963595076923,3.5838845243425945,3.5838054467371356,3.583726363612284,3.58364727649897,3.5835732498560313,3.5835029495885,3.5834326510581977,3.583362356570563,3.583292068639087,3.5832217899910916,3.5831515235735005,3.583081272558608,3.5830110403498554,3.5829408305876016,3.582870647154894,3.5828003388848244,3.5827299823652945,3.5826596183671198,3.5825892477925496,3.582518871696541,3.582448491293902,3.5823781079664423,3.582307723270124,3.582237338942205,3.58216695690839,3.5820965792899795,3.5820262084110155,3.5819558468054318,3.5818854972242016,3.5818151626424846,3.581744846266779,3.581674551542063,3.581604282158951,3.581534042060835,3.5814638354510375,3.5813936667999564,3.5813235408522166,3.581253462633815,3.58118343745927,3.581113338671792,3.5810458706034676,3.5809798781826876,3.580913901454835,3.5808479403165285,3.580781994545109,3.5807160637926927,3.580650147580237,3.580584245291597,3.580518356167586,3.5804524793000385,3.580386613625866,3.58032075792112,3.580254910795051,3.580189070684169,3.5801232358463038,3.580057404354663,3.5799915969696148,3.5799258154823943,3.579860041784547,3.5797942744813636,3.5797285120491025,3.579662752831459,3.5795969950360393,3.579531236730838,3.5794654758407045,3.579399710143824,3.5793339372681845,3.5792681546880543,3.5792023597204516,3.5791365495216225,3.579070721083511,3.579004871230232,3.578938996614548,3.5788731457656016,3.578807341094901,3.578741530719825,3.578676552620648,3.5786118938795104,3.578547227952006,3.578482554421565,3.5784178729147587,3.578353183103962,3.5782884847100096,3.578223777504855,3.57815906131423,3.5780943360203006,3.5780296015643285,3.5779648579493264,3.5779001052427195,3.577835343579001,3.577770575237419,3.5777058024428197,3.5776410229488023,3.5775762373525852,3.577511446342381,3.577446650700349,3.57738185130554,3.57731704913685,3.5772522452759663,3.5771874409103197,3.577122637336032,3.5770578359608667,3.576993038307177,3.5769282460148544,3.5768634608442826,3.5767986846792814,3.5767339195300605,3.5766691304215534,3.5766042643165417,3.5765393904696636,3.576474509305342,3.5764096213353644,3.5763444374313687,3.57627917193401,3.576213901735175,3.5761486277407406,3.576083350966265,3.57601807254145,3.5759527937146056,3.5758875158571124,3.575822240467885,3.575756969177835,3.575691703754337,3.575626446105686,3.575561198285568,3.5754959624975178,3.5754307410993844,3.5753655366077957,3.575300351702618,3.5752351892314245,3.575170052213953,3.5751049438465743,3.5750398675067516,3.5749748267575066,3.574909659075946,3.574844491262123,3.5747793312817837,3.574714179354584,3.5746490356625507,3.5745839003479767,3.574518773511322,3.5744536552091106,3.574388545451832,3.574323444201836,3.5742583513712343,3.574193266819799,3.5741281903528606,3.5740631217192065,3.57399700961423,3.573930739227721,3.5738644755605895,3.57379821811444,3.573731966323827,3.5736657243326406,3.573599489545011,3.57353325983148,3.5734670344964545,3.573400812775853,3.5733345938352348,3.573268376767925,3.573202160593145,3.5731359442541386,3.5730697266162985,3.573003506465297,3.5729372825052113,3.5728710533566495,3.5728048175548826,3.5727385735479675,3.572672319694878,3.5726060542636313,3.5725397754294144,3.5724734812727124,3.5724072109511527,3.5723409706297597,3.5722747272936504,3.5722084805748797,3.5721422301116705,3.572075975549262,3.5720097165407565,3.571943452747967,3.571877183842263,3.5718109095054196,3.571744629430463,3.5716783433225183,3.571609969446737,3.571541446666336,3.5714729170493853,3.5714043803578766,3.5713358363701353,3.5712672848816687,3.571198725706013,3.5711301633886934,3.5710616052034037,3.5709930424300875,3.5709244753367337,3.5708559042348225,3.5707873294806936,3.570718751476915,3.570650170673652,3.570581587570034,3.570513002715524,3.570444416711283,3.570375830211544,3.5703072439249754,3.570238658616052,3.5701700751064234,3.5701014942762765,3.5700329170657126,3.569964344476108,3.569895777571488,3.5698272172173424,3.5697586590805144,3.5696901023335914,3.569621546377505,3.569552990484369,3.5694844337910094],\"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('77235874-5d8c-42b3-aadc-4e2588091f02');\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=\"cff09d62-2d3b-491a-bb96-12fcdbb6b98e\" 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(\"cff09d62-2d3b-491a-bb96-12fcdbb6b98e\")) { Plotly.newPlot( \"cff09d62-2d3b-491a-bb96-12fcdbb6b98e\", [{\"line\":{\"width\":4},\"mode\":\"lines\",\"name\":\"SciPyMinimize\",\"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\":[1.6452272290214909,1.135721412546804,0.07054833429082369,0.01207453206767255,0.01207453206767255,0.009315982049576288,0.007875928742744533,0.007875928742744533,0.0025673436340360968,0.0021822336254682766,0.0019452274333005542,0.0019452274333005542,0.0014562460954814186,0.001395583827579924,0.001395583827579924,0.001394666324042201,0.001394666324042201,0.001389235581487088,0.001389235581487088,0.001389235581487088,0.001389235581487088,0.001389235581487088,0.0013892355538691835,0.0013892355482527864,0.0013892355442519915,0.0013892355398744034,0.0013892355398740534,0.0013892355374478243,0.0013892355366423978,0.0013892355366423978,0.0013892355366423978,0.0013892355315088237,0.0013892355197798866,0.0013892355197427466,0.0013892353780308644,0.0013892353780308644,0.001389227228770292,0.0013892270855590716,0.0013892244767154535,0.0013892241416472466,0.001389224139985368,0.0013891955174391028,0.0013891954548234404,0.0013891954363893957,0.0013891954363893957,0.0013891949909099995,0.0013891949909099995,0.0013891948127648743,0.0013891948075732412,0.0013891943633447157,0.0013891943475234031,0.0013891926980126182,0.0013891923857784526,0.0013891922859896615,0.0013891830271054732,0.001388829165480819,0.0013888114947262855,0.0013888114947262855,0.0013885952336305332,0.001388492725323214,0.001388492725323214,0.001388492725323214,0.001388492725323214,0.001388492725323214,0.001388492725323214,0.001388492725323214,0.001388490921229825,0.001388490921229825,0.001388490673946685,0.0013884906546774033,0.0013884862241326356,0.0013884862241326356,0.001388483478032295,0.001388483478032295,0.001388483478032295,0.001388483478032295,0.001388483478032295,0.001388483478032295,0.001388483478032295,0.001388483478032295,0.001388483478032295,0.001388483478032295,0.001388483478032295,0.001388483478032295,0.001388483478032295,0.001388483478032295,0.001388483478032295,0.001388483478032295,0.0013884834785099927,0.0013884834785099927,0.0013884834785099927,0.0013884834785099927,0.0013884834785099927,0.0013884834785099927,0.0013884834785099927,0.0013884834785099927,0.0013884834785099927,0.0013884834785099927,0.0013884834785099927,0.0013884834785099927],\"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('cff09d62-2d3b-491a-bb96-12fcdbb6b98e');\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=\"3365c472-2f2c-45d1-be06-d361cd75078a\" 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(\"3365c472-2f2c-45d1-be06-d361cd75078a\")) { Plotly.newPlot( \"3365c472-2f2c-45d1-be06-d361cd75078a\", [{\"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],\"y\":[0.002014705316062002,0.002014720217223196,0.002014705316062002,0.002014705316062002,0.0036549179153718076,0.0036549328165330014,0.0036549179153718076,0.0036549179153718076,0.010608872904764918,0.010608887805926111,0.010608872904764918,0.010608872904764918,0.012654148416912111,0.012654163318073305,0.012654148416912111,0.012654148416912111,0.012293291317156427,0.012293306218317621,0.012293291317156427,0.012293291317156427,0.011781088831003586,0.01178110373216478,0.011781088831003586,0.011781088831003586,0.009021248759057084,0.009021263660218277,0.009021248759057084,0.009021248759057084,0.009097986610991376,0.00909800151215257,0.009097986610991376,0.009097986610991376,0.009249916508267305,0.0092499314094285,0.009249916508267305,0.009249916508267305,0.008122956112166926,0.00812297101332812,0.008122956112166926,0.008122956112166926,0.008477639698887658,0.008477654600048852,0.008477639698887658,0.008477639698887658,0.008470485267812132,0.008470500168973326,0.008470485267812132,0.008470485267812132,0.00840437840734213,0.008404393308503323,0.00840437840734213,0.00840437840734213,0.008403781565244621,0.008403796466405815,0.008403781565244621,0.008403781565244621,0.008403781565244621,0.008403796466405815,0.008403781565244621,0.008403781565244621,0.008404308405361115,0.00840432330652231,0.008404308405361115,0.008404308405361115,0.008404316848972108,0.008404331750133302,0.008404316848972108,0.008404316848972108,0.008404327469053424,0.008404342370214618,0.008404327469053424,0.008404327469053424,0.008404308505465268,0.008404323406626462,0.008404308505465268,0.008404308505465268,0.008404308505470684,0.008404323406631877,0.008404308505470684,0.008404308505470684,0.008404335936007807,0.008404350837169,0.008404335936007807,0.008404335936007807,0.008404328030610194,0.008404342931771388,0.008404328030610194,0.008404328030610194,0.00840432236571003,0.008404337266871224,0.00840432236571003,0.00840432236571003,0.008404320013230712,0.008404334914391905,0.008404320013230712,0.008404320013230712,0.008404320013230712,0.008404334914391905,0.008404320013230712,0.008404320013230712,0.00840430847980716,0.008404323380968354,0.00840430847980716,0.00840430847980716,0.008404309582142252,0.008404324483303445,0.008404309582142252,0.008404309582142252,0.00840430833074293,0.008404323231904124,0.00840430833074293,0.00840430833074293,0.008404294373262594,0.008404309274423788,0.008404294373262594,0.008404294373262594,0.008403814001162038,0.008403828902323232,0.008403814001162038,0.008403814001162038,0.008403814001162038,0.008403828902323232,0.008403814001162038,0.008403814001162038,0.008403835529665513,0.008403850430826707,0.008403835529665513,0.008403835529665513,0.008404402576963567,0.008404417478124761,0.008404402576963567,0.008404402576963567,0.008404624412664966,0.00840463931382616,0.008404624412664966,0.008404624412664966,0.00840460862680165,0.008404623527962844,0.00840460862680165,0.00840460862680165,0.008405485288365797,0.008405500189526991,0.008405485288365797,0.008405485288365797,0.008405485288365797,0.008405500189526991,0.008405485288365797,0.008405485288365797,0.008405363168513058,0.008405378069674252,0.008405363168513058,0.008405363168513058,0.008405397392924313,0.008405412294085507,0.008405397392924313,0.008405397392924313,0.00814624502852717,0.008146259929688364,0.00814624502852717,0.00814624502852717,0.00814624502852717,0.008146259929688364,0.00814624502852717,0.00814624502852717,0.0084051142793896,0.008405129180550794,0.0084051142793896,0.0084051142793896,0.0084051142793896,0.008405129180550794,0.0084051142793896,0.0084051142793896,0.008407433862934641,0.008407448764095835,0.008407433862934641,0.008407433862934641,0.008407433862934641,0.008407448764095835,0.008407433862934641,0.008407433862934641,0.0084051170146017,0.008405131915762894,0.0084051170146017,0.0084051170146017,0.008405119074388779,0.008405133975549973,0.008405119074388779,0.008405119074388779,0.008405374813527974,0.008405389714689168,0.008405374813527974,0.008405374813527974,0.008405425190541597,0.008405440091702791,0.008405425190541597,0.008405425190541597,0.008405665539373367,0.00840568044053456,0.008405665539373367,0.008405665539373367,0.008405580577530701,0.008405595478691895,0.008405580577530701,0.008405580577530701,0.008405490811299564,0.008405505712460758,0.008405490811299564,0.008405490811299564,0.00840576444774016,0.008405779348901354,0.00840576444774016,0.00840576444774016,0.00840576444774016,0.008405779348901354,0.00840576444774016,0.00840576444774016,0.00842522443784579,0.008425239339006983,0.00842522443784579,0.00842522443784579,0.00842522443784579,0.008425239339006983,0.00842522443784579,0.00842522443784579,0.008424076863641987,0.00842409176480318,0.008424076863641987,0.008424076863641987,0.008403059046454806,0.008403073947616,0.008403059046454806,0.008403059046454806,0.008403059046454806,0.008403073947616,0.008403059046454806,0.008403059046454806,0.008412062455255224,0.008412077356416418,0.008412062455255224,0.008412062455255224,0.008414809781436735,0.00841482468259793,0.008414809781436735,0.008414809781436735,0.00839304501191146,0.008393059913072654,0.00839304501191146,0.00839304501191146,0.00839304501191146,0.008393059913072654,0.00839304501191146,0.00839304501191146,0.008408723381742995,0.008408738282904189,0.008408723381742995,0.008408723381742995,0.008408723381742995,0.008408738282904189,0.008408723381742995,0.008408723381742995,0.008382976354617109,0.008382991255778302,0.008382976354617109,0.008382976354617109,0.008382976354617109,0.008382991255778302,0.008382976354617109,0.008382976354617109,0.008407182882180632,0.008407197783341825,0.008407182882180632,0.008407182882180632,0.008407182882180632,0.008407197783341825,0.008407182882180632,0.008407182882180632,0.008407812266025091,0.008407827167186285,0.008407812266025091,0.008407812266025091,0.008407812266025091,0.008407827167186285,0.008407812266025091,0.008407812266025091,0.00841351436200802,0.008413529263169213,0.00841351436200802,0.00841351436200802,0.00841351436200802,0.008413529263169213,0.00841351436200802,0.00841351436200802,0.008414442390782373,0.008414457291943567,0.008414442390782373,0.008414442390782373,0.008413718688962107,0.0084137335901233,0.008413718688962107,0.008413718688962107,0.008413718688962107,0.0084137335901233,0.008413718688962107,0.008413718688962107,0.008414247431686426,0.00841426233284762,0.008414247431686426,0.008414247431686426,0.008414249116544275,0.008414264017705468,0.008414249116544275,0.008414249116544275,0.0084143079877792,0.008414322888940394,0.0084143079877792,0.0084143079877792,0.008413965072627125,0.00841397997378832,0.008413965072627125,0.008413965072627125,0.008413965072627125,0.00841397997378832,0.008413965072627125,0.008413965072627125,0.008414108804722457,0.008414123705883651,0.008414108804722457,0.008414108804722457,0.008414107392521379,0.008414122293682573,0.008414107392521379,0.008414107392521379,0.008414107392521379,0.008414122293682573,0.008414107392521379,0.008414107392521379,0.008413694703177509,0.008413709604338702,0.008413694703177509,0.008413694703177509,0.008413694703177509,0.008413709604338702,0.008413694703177509,0.008413694703177509,0.008414108451672188,0.008414123352833381,0.008414108451672188,0.008414108451672188,0.008414108451672188,0.008414123352833381,0.008414108451672188,0.008414108451672188,0.008414108628197322,0.008414123529358516,0.008414108628197322,0.008414108628197322,0.008414108628197322,0.008414123529358516,0.008414108628197322,0.008414108628197322,0.00841410871645989,0.008414123617621084,0.00841410871645989,0.00841410871645989,0.008414108760591173,0.008414123661752367,0.008414108760591173,0.008414108760591173,0.008414108782656816,0.00841412368381801,0.008414108782656816,0.008414108782656816,0.008414108793689637,0.00841412369485083,0.008414108793689637,0.008414108793689637,0.008414108799206047,0.00841412370036724,0.008414108799206047,0.008414108799206047,0.008414108799206047,0.00841412370036724,0.008414108799206047,0.008414108799206047,0.008414108801963983,0.008414123703125177,0.008414108801963983,0.008414108801963983,0.00841410880334322,0.008414123704504414,0.00841410880334322,0.00841410880334322,0.008414108804032839,0.008414123705194032,0.008414108804032839,0.008414108804032839,0.008414108804377648,0.008414123705538842,0.008414108804377648,0.008414108804377648,0.008414108804550053,0.008414123705711247,0.008414108804550053,0.008414108804550053,0.008414108804550053,0.008414123705711247,0.008414108804550053,0.008414108804550053,0.008414108804636278,0.008414123705797472,0.008414108804636278,0.008414108804636278,0.008414108804679367,0.00841412370584056,0.008414108804679367,0.008414108804679367,0.008414108804636283,0.008414123705797477,0.008414108804636283,0.008414108804636283,0.008414108804679367,0.00841412370584056,0.008414108804679367,0.008414108804679367,0.009284223285802282,0.009284238186963476,0.009284223285802282,0.009284223285802282,0.009284223285802282,0.009284238186963476,0.009284223285802282,0.009284223285802282,0.008421413541816409,0.008421428442977602,0.008421413541816409,0.008421413541816409,0.008421413541816409,0.008421428442977602,0.008421413541816409,0.008421413541816409,0.008413847385763486,0.00841386228692468,0.008413847385763486,0.008413847385763486,0.008413847385763486,0.00841386228692468,0.008413847385763486,0.008413847385763486,0.008413887879981388,0.008413902781142582,0.008413887879981388,0.008413887879981388,0.008413887879981388,0.008413902781142582,0.008413887879981388,0.008413887879981388,0.008413998342330378,0.008414013243491572,0.008413998342330378,0.008413998342330378,0.008413998342330378,0.008414013243491572,0.008413998342330378,0.008413998342330378,0.008414053573504872,0.008414068474666065,0.008414053573504872,0.008414053573504872,0.008414053573504872,0.008414068474666065,0.008414053573504872,0.008414053573504872,0.008414081189092119,0.008414096090253313,0.008414081189092119,0.008414081189092119,0.008414081189092119,0.008414096090253313,0.008414081189092119,0.008414081189092119,0.008414094996885743,0.008414109898046937,0.008414094996885743,0.008414094996885743,0.008414094996885743,0.008414109898046937,0.008414094996885743,0.008414094996885743,0.008409772013385584,0.008409786914546778,0.008409772013385584,0.008409772013385584,0.008409772013385584,0.008409786914546778,0.008409772013385584,0.008409772013385584],\"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],\"y\":[0.0010517105512964115,0.0010517105512964115,0.0010517254524576053,0.0010517105512964115,0.0013654374775928647,0.0013654374775928647,0.0013654523787540586,0.0013654374775928647,0.0017182097827011477,0.0017182097827011477,0.0017182246838623415,0.0017182097827011477,0.0023715077904967958,0.0023715077904967958,0.0023715226916579896,0.0023715077904967958,0.0023791402511288023,0.0023791402511288023,0.002379155152289996,0.0023791402511288023,0.0028563856520000905,0.0028563856520000905,0.0028564005531612844,0.0028563856520000905,0.005528847583465214,0.005528847583465214,0.005528862484626407,0.005528847583465214,0.005537440317711473,0.005537440317711473,0.005537455218872667,0.005537440317711473,0.0055562304619759745,0.0055562304619759745,0.005556245363137168,0.0055562304619759745,0.006782319887915811,0.006782319887915811,0.006782334789077005,0.006782319887915811,0.006396575039072105,0.006396575039072105,0.006396589940233299,0.006396575039072105,0.006396292833951676,0.006396292833951676,0.00639630773511287,0.006396292833951676,0.006469893574238385,0.006469893574238385,0.006469908475399579,0.006469893574238385,0.006470564975125107,0.006470564975125107,0.006470579876286301,0.006470564975125107,0.006470564975125111,0.006470564975125111,0.0064705798762863045,0.006470564975125111,0.006469942460648976,0.006469942460648976,0.00646995736181017,0.006469942460648976,0.006469943795203602,0.006469943795203602,0.006469958696364796,0.006469943795203602,0.006469946025764048,0.006469946025764048,0.006469960926925242,0.006469946025764048,0.0064699652968799055,0.0064699652968799055,0.006469980198041099,0.0064699652968799055,0.006469965296882907,0.006469965296882907,0.006469980198044101,0.006469965296882907,0.0064699497853289495,0.0064699497853289495,0.006469964686490143,0.0064699497853289495,0.006469949584155925,0.006469949584155925,0.006469964485317119,0.006469949584155925,0.0064699500035151295,0.0064699500035151295,0.006469964904676323,0.0064699500035151295,0.006469950712970947,0.006469950712970947,0.006469965614132141,0.006469950712970947,0.0064699507129709465,0.0064699507129709465,0.00646996561413214,0.0064699507129709465,0.006469966591325354,0.006469966591325354,0.006469981492486548,0.006469966591325354,0.006469972137059508,0.006469972137059508,0.006469987038220702,0.006469972137059508,0.006469971960420422,0.006469971960420422,0.006469986861581616,0.006469971960420422,0.006469979536416448,0.006469979536416448,0.006469994437577642,0.006469979536416448,0.006470224910170027,0.006470224910170027,0.006470239811331221,0.006470224910170027,0.0064702249098110174,0.0064702249098110174,0.006470239810972211,0.0064702249098110174,0.006470224525011534,0.006470224525011534,0.006470239426172728,0.006470224525011534,0.00646986248818498,0.00646986248818498,0.006469877389346174,0.00646986248818498,0.006469629847073077,0.006469629847073077,0.006469644748234271,0.006469629847073077,0.006469628231847119,0.006469628231847119,0.0064696431330083124,0.006469628231847119,0.006468641813153041,0.006468641813153041,0.006468656714314235,0.006468641813153041,0.00646864181693914,0.00646864181693914,0.006468656718100334,0.00646864181693914,0.006468798912164765,0.006468798912164765,0.006468813813325959,0.006468798912164765,0.00646874102739672,0.00646874102739672,0.006468755928557914,0.00646874102739672,0.006551864697392898,0.006551864697392898,0.006551879598554092,0.006551864697392898,0.006551856312755559,0.006551856312755559,0.006551871213916753,0.006551856312755559,0.006469037743246084,0.006469037743246084,0.006469052644407278,0.006469037743246084,0.0064690377432021235,0.0064690377432021235,0.006469052644363317,0.0064690377432021235,0.00644740018928575,0.00644740018928575,0.006447415090446944,0.00644740018928575,0.006447400189600762,0.006447400189600762,0.006447415090761956,0.006447400189600762,0.006468949724325239,0.006468949724325239,0.006468964625486433,0.006468949724325239,0.006468949643715908,0.006468949643715908,0.0064689645448771016,0.006468949643715908,0.00646876409801919,0.00646876409801919,0.006468778999180384,0.00646876409801919,0.006468707596455288,0.006468707596455288,0.0064687224976164815,0.006468707596455288,0.006468647827423968,0.006468647827423968,0.006468662728585162,0.006468647827423968,0.006468639919913109,0.006468639919913109,0.006468654821074303,0.006468639919913109,0.006468631902502458,0.006468631902502458,0.006468646803663652,0.006468631902502458,0.006468323977302542,0.006468323977302542,0.0064683388784637355,0.006468323977302542,0.006468323977696016,0.006468323977696016,0.00646833887885721,0.006468323977696016,0.006446394333960678,0.006446394333960678,0.006446409235121872,0.006446394333960678,0.006446396431967229,0.006446396431967229,0.006446411333128423,0.006446396431967229,0.006448102098286803,0.006448102098286803,0.006448116999447997,0.006448102098286803,0.006475944683499889,0.006475944683499889,0.0064759595846610825,0.006475944683499889,0.006475944683403429,0.006475944683403429,0.006475959584564623,0.006475944683403429,0.006458151355257806,0.006458151355257806,0.006458166256419,0.006458151355257806,0.006458458181708332,0.006458458181708332,0.006458473082869526,0.006458458181708332,0.0064830593149014315,0.0064830593149014315,0.006483074216062625,0.0064830593149014315,0.00648305931475047,0.00648305931475047,0.006483074215911664,0.00648305931475047,0.00646019469830702,0.00646019469830702,0.0064602095994682135,0.00646019469830702,0.006460194698305596,0.006460194698305596,0.00646020959946679,0.006460194698305596,0.00648655153188923,0.00648655153188923,0.006486566433050424,0.00648655153188923,0.006486551531677968,0.006486551531677968,0.006486566432839162,0.006486551531677968,0.0064678793591381204,0.0064678793591381204,0.006467894260299314,0.0064678793591381204,0.006467879359109796,0.006467879359109796,0.00646789426027099,0.006467879359109796,0.006466802014683368,0.006466802014683368,0.006466816915844562,0.006466802014683368,0.006466802014575388,0.006466802014575388,0.006466816915736582,0.006466802014575388,0.006460003895556488,0.006460003895556488,0.006460018796717682,0.006460003895556488,0.006460003895554797,0.006460003895554797,0.006460018796715991,0.006460003895554797,0.006458565319093876,0.006458565319093876,0.00645858022025507,0.006458565319093876,0.006458782785687627,0.006458782785687627,0.0064587976868488205,0.006458782785687627,0.006458782785687544,0.006458782785687544,0.006458797686848738,0.006458782785687544,0.006458624986244695,0.006458624986244695,0.006458639887405889,0.006458624986244695,0.006458625576195677,0.006458625576195677,0.006458640477356871,0.006458625576195677,0.006458947140621733,0.006458947140621733,0.0064589620417829265,0.006458947140621733,0.006459716037349473,0.006459716037349473,0.006459730938510667,0.006459716037349473,0.006459716037349251,0.006459716037349251,0.006459730938510445,0.006459716037349251,0.006459163146944118,0.006459163146944118,0.006459178048105312,0.006459163146944118,0.006457584677489965,0.006457584677489965,0.006457599578651159,0.006457584677489965,0.006457584677489974,0.006457584677489974,0.006457599578651168,0.006457584677489974,0.006458385437641197,0.006458385437641197,0.006458400338802391,0.006458385437641197,0.006458385437641157,0.006458385437641157,0.006458400338802351,0.006458385437641157,0.006458768529580566,0.006458768529580566,0.00645878343074176,0.006458768529580566,0.006458768529580568,0.006458768529580568,0.006458783430741762,0.006458768529580568,0.006458965838262333,0.006458965838262333,0.006458980739423527,0.006458965838262333,0.006458965838262334,0.006458965838262334,0.006458980739423528,0.006458965838262334,0.006459064492603217,0.006459064492603217,0.006459079393764411,0.006459064492603217,0.0064591138197736585,0.0064591138197736585,0.006459128720934852,0.0064591138197736585,0.0064591384833588795,0.0064591384833588795,0.006459153384520073,0.0064591384833588795,0.00645915081515149,0.00645915081515149,0.006459165716312684,0.00645915081515149,0.006459156981047796,0.006459156981047796,0.0064591718822089896,0.006459156981047796,0.006459156981047795,0.006459156981047795,0.006459171882208989,0.006459156981047795,0.006459160063995948,0.006459160063995948,0.0064591749651571415,0.006459160063995948,0.0064591616054700245,0.0064591616054700245,0.006459176506631218,0.0064591616054700245,0.006459162376207062,0.006459162376207062,0.006459177277368256,0.006459162376207062,0.006459162761575581,0.006459162761575581,0.006459177662736775,0.006459162761575581,0.006459162954259841,0.006459162954259841,0.006459177855421035,0.006459162954259841,0.0064591629542598405,0.0064591629542598405,0.006459177855421034,0.0064591629542598405,0.006459163050601971,0.006459163050601971,0.006459177951763165,0.006459163050601971,0.006459163098773035,0.006459163098773035,0.006459177999934229,0.006459163098773035,0.00645916305060197,0.00645916305060197,0.006459177951763164,0.00645916305060197,0.006459163098773035,0.006459163098773035,0.006459177999934229,0.006459163098773035,0.0037875834557273406,0.0037875834557273406,0.0037875983568885344,0.0037875834557273406,0.003787583670486921,0.003787583670486921,0.003787598571648115,0.003787583670486921,0.005115936447926094,0.005115936447926094,0.005115951349087288,0.005115936447926094,0.0051159364529595585,0.0051159364529595585,0.005115951354120752,0.0051159364529595585,0.006167552764808996,0.006167552764808996,0.00616756766597019,0.006167552764808996,0.006167552765045713,0.006167552765045713,0.006167567666206907,0.006167552765045713,0.0062127236827842856,0.0062127236827842856,0.006212738583945479,0.0062127236827842856,0.006212723682953422,0.006212723682953422,0.006212738584114616,0.006212723682953422,0.00633594339077866,0.00633594339077866,0.006335958291939854,0.00633594339077866,0.006335943390821067,0.006335943390821067,0.0063359582919822605,0.006335943390821067,0.006397553244775847,0.006397553244775847,0.006397568145937041,0.006397553244775847,0.00639755324478651,0.00639755324478651,0.006397568145947704,0.00639755324478651,0.006428358171774441,0.006428358171774441,0.006428373072935635,0.006428358171774441,0.006428358171777138,0.006428358171777138,0.006428373072938332,0.006428358171777138,0.006443760635273739,0.006443760635273739,0.006443775536434933,0.006443760635273739,0.0064437606352744274,0.0064437606352744274,0.006443775536435621,0.0064437606352744274,0.006451591556683793,0.006451591556683793,0.006451606457844987,0.006451591556683793,0.006451591556688196,0.006451591556688196,0.00645160645784939,0.006451591556688196],\"type\":\"scatter\",\"xaxis\":\"x2\",\"yaxis\":\"y2\"},{\"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],\"y\":[4576.534221409745,4576.534221409745,4576.534221409745,4576.53428960542,4576.534057854849,4576.534057854849,4576.534057854849,4576.534126050521,4576.533382420838,4576.533382420838,4576.533382420838,4576.5334506165,4576.533173654865,4576.533173654865,4576.533173654865,4576.533241850524,4576.53320824416,4576.53320824416,4576.53320824416,4576.533276439819,4576.533248750464,4576.533248750464,4576.533248750464,4576.533316946124,4576.53346514614,4576.53346514614,4576.53346514614,4576.5335333418025,4576.533457602044,4576.533457602044,4576.533457602044,4576.533525797707,4576.533442632643,4576.533442632643,4576.533442632643,4576.533510828305,4576.53352851309,4576.53352851309,4576.53352851309,4576.533596708753,4576.533501481793,4576.533501481793,4576.533501481793,4576.533569677456,4576.533502175715,4576.533502175715,4576.533502175715,4576.533570371378,4576.533507182504,4576.533507182504,4576.533507182504,4576.533575378167,4576.533507227589,4576.533507227589,4576.533507227589,4576.533575423253,4576.533507227589,4576.533507227589,4576.533507227589,4576.533575423253,4576.533507188344,4576.533507188344,4576.533507188344,4576.533575384007,4576.533507187515,4576.533507187515,4576.533507187515,4576.533575383179,4576.533507186472,4576.533507186472,4576.533507186472,4576.5335753821355,4576.533507187949,4576.533507187949,4576.533507187949,4576.5335753836125,4576.533507187958,4576.533507187958,4576.533507187958,4576.533575383622,4576.533521653021,4576.533521653021,4576.533521653021,4576.533589848685,4576.533521797213,4576.533521797213,4576.533521797213,4576.533589992877,4576.533522050705,4576.533522050705,4576.533522050705,4576.5335902463685,4576.533522303606,4576.533522303606,4576.533522303606,4576.53359049927,4576.533522303606,4576.533522303606,4576.533522303606,4576.53359049927,4576.533526319379,4576.533526319379,4576.533526319379,4576.533594515043,4576.533552799417,4576.533552799417,4576.533552799417,4576.533620995081,4576.533552843986,4576.533552843986,4576.533552843986,4576.533621039651,4576.533892431621,4576.533892431621,4576.533892431621,4576.53396062729,4576.560745807051,4576.560745807051,4576.560745807051,4576.56081400312,4576.560745807051,4576.560745807051,4576.560745807051,4576.56081400312,4576.560745822427,4576.560745822427,4576.560745822427,4576.560814018496,4576.560748592906,4576.560748592906,4576.560748592906,4576.560816788975,4576.560753540917,4576.560753540917,4576.560753540917,4576.560821736986,4576.560753737548,4576.560753737548,4576.560753737548,4576.560821933617,4576.6311827815625,4576.6311827815625,4576.6311827815625,4576.631250978681,4576.6311827815625,4576.6311827815625,4576.6311827815625,4576.631250978681,4576.631190243302,4576.631190243302,4576.631190243302,4576.63125844042,4576.63119600982,4576.63119600982,4576.63119600982,4576.63126420694,4578.481147589868,4578.481147589868,4578.481147589868,4578.481215814553,4578.481147588634,4578.481147588634,4578.481147588634,4578.481215813319,4576.633913175627,4576.633913175627,4576.633913175627,4576.633981372786,4576.633913175627,4576.633913175627,4576.633913175627,4576.633981372786,4576.634180088911,4576.634180088911,4576.634180088911,4576.634248286075,4576.634180088911,4576.634180088911,4576.634180088911,4576.634248286075,4576.633914251782,4576.633914251782,4576.633914251782,4576.633982448941,4576.633914256455,4576.633914256455,4576.633914256455,4576.633982453614,4576.633917928725,4576.633917928725,4576.633917928725,4576.633986125885,4576.633923067225,4576.633923067225,4576.633923067225,4576.633991264384,4576.6391022945645,4576.6391022945645,4576.6391022945645,4576.639170491801,4576.639102399679,4576.639102399679,4576.639102399679,4576.639170596916,4576.639102615724,4576.639102615724,4576.639102615724,4576.639170812961,4576.662540548714,4576.662540548714,4576.662540548714,4576.6626087463,4576.662540548714,4576.662540548714,4576.662540548714,4576.6626087463,4578.41674065493,4578.41674065493,4578.41674065493,4578.416808878656,4578.416740655239,4578.416740655239,4578.416740655239,4578.416808878965,4578.4167440551,4578.4167440551,4578.4167440551,4578.416812278826,4578.416806883359,4578.416806883359,4578.416806883359,4578.416875107086,4578.416806883359,4578.416806883359,4578.416806883359,4578.416875107086,4578.416833418318,4578.416833418318,4578.416833418318,4578.416901642045,4578.416833617325,4578.416833617325,4578.416833617325,4578.416901841052,4578.416945561703,4578.416945561703,4578.416945561703,4578.417013785432,4578.416945561703,4578.416945561703,4578.416945561703,4578.417013785432,4578.41684857703,4578.41684857703,4578.41684857703,4578.4169168007575,4578.41684857703,4578.41684857703,4578.41684857703,4578.4169168007575,4578.4169708077,4578.4169708077,4578.4169708077,4578.417039031429,4578.4169708077,4578.4169708077,4578.4169708077,4578.417039031429,4578.416888498601,4578.416888498601,4578.416888498601,4578.416956722329,4578.416888498601,4578.416888498601,4578.416888498601,4578.416956722329,4578.417069772016,4578.417069772016,4578.417069772016,4578.417137995746,4578.417069772016,4578.417069772016,4578.417069772016,4578.417137995746,4578.4168536073375,4578.4168536073375,4578.4168536073375,4578.416921831065,4578.4168536073375,4578.4168536073375,4578.4168536073375,4578.416921831065,4578.416833899223,4578.416833899223,4578.416833899223,4578.41690212295,4578.4168405437285,4578.4168405437285,4578.4168405437285,4578.416908767456,4578.4168405437285,4578.4168405437285,4578.4168405437285,4578.416908767456,4578.416835670061,4578.416835670061,4578.416835670061,4578.416903893788,4578.416835671879,4578.416835671879,4578.416835671879,4578.416903895606,4578.416837017206,4578.416837017206,4578.416837017206,4578.4169052409325,4578.4168422409075,4578.4168422409075,4578.4168422409075,4578.416910464635,4578.4168422409075,4578.4168422409075,4578.4168422409075,4578.416910464635,4578.416838443621,4578.416838443621,4578.416838443621,4578.416906667348,4578.416838523628,4578.416838523628,4578.416838523628,4578.416906747355,4578.416838523628,4578.416838523628,4578.416838523628,4578.416906747355,4578.416837476697,4578.416837476697,4578.416837476697,4578.416905700424,4578.416837476697,4578.416837476697,4578.416837476697,4578.416905700424,4578.416838463622,4578.416838463622,4578.416838463622,4578.416906687349,4578.416838463622,4578.416838463622,4578.416838463622,4578.416906687349,4578.4168384536215,4578.4168384536215,4578.4168384536215,4578.416906677348,4578.4168384536215,4578.4168384536215,4578.4168384536215,4578.416906677348,4578.416838448621,4578.416838448621,4578.416838448621,4578.416906672348,4578.416838446121,4578.416838446121,4578.416838446121,4578.416906669848,4578.416838444871,4578.416838444871,4578.416838444871,4578.416906668598,4578.4168384442455,4578.4168384442455,4578.4168384442455,4578.416906667972,4578.416838443934,4578.416838443934,4578.416838443934,4578.41690666766,4578.416838443934,4578.416838443934,4578.416838443934,4578.41690666766,4578.416838443777,4578.416838443777,4578.416838443777,4578.416906667504,4578.416838443699,4578.416838443699,4578.416838443699,4578.416906667426,4578.41683844366,4578.41683844366,4578.41683844366,4578.416906667387,4578.41683844364,4578.41683844364,4578.41683844364,4578.416906667367,4578.416838443631,4578.416838443631,4578.416838443631,4578.416906667358,4578.416838443631,4578.416838443631,4578.416838443631,4578.416906667358,4578.416838443625,4578.416838443625,4578.416838443625,4578.416906667352,4578.416838443623,4578.416838443623,4578.416838443623,4578.41690666735,4578.416838443626,4578.416838443626,4578.416838443626,4578.416906667353,4578.416838443623,4578.416838443623,4578.416838443623,4578.41690666735,4578.418305682174,4578.418305682174,4578.418305682174,4578.4183739059235,4578.418305682205,4578.418305682205,4578.418305682205,4578.4183739059545,4578.41690680579,4578.41690680579,4578.41690680579,4578.416975029519,4578.416906805791,4578.416906805791,4578.416906805791,4578.41697502952,4578.416853224267,4578.416853224267,4578.416853224267,4578.416921447994,4578.416853224267,4578.416853224267,4578.416853224267,4578.416921447994,4578.416850934721,4578.416850934721,4578.416850934721,4578.416919158449,4578.416850934721,4578.416850934721,4578.416850934721,4578.416919158449,4578.416844689172,4578.416844689172,4578.416844689172,4578.4169129128995,4578.416844689172,4578.416844689172,4578.416844689172,4578.4169129128995,4578.416841566398,4578.416841566398,4578.416841566398,4578.416909790126,4578.416841566398,4578.416841566398,4578.416841566398,4578.416909790126,4578.41684000501,4578.41684000501,4578.41684000501,4578.416908228738,4578.41684000501,4578.41684000501,4578.41684000501,4578.416908228738,4578.416839224317,4578.416839224317,4578.416839224317,4578.416907448044,4578.416839224317,4578.416839224317,4578.416839224317,4578.416907448044,4578.416849016307,4578.416849016307,4578.416849016307,4578.416917240035,4578.416849016307,4578.416849016307,4578.416849016307,4578.416917240035],\"type\":\"scatter\",\"xaxis\":\"x3\",\"yaxis\":\"y3\"}], {\"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.45],\"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.55,1.0],\"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.0,0.45],\"title\":{\"text\":\"Function Call\"}},\"yaxis3\":{\"anchor\":\"x3\",\"domain\":[0.575,1.0],\"title\":{\"text\":\"C1 [F]\"},\"showexponent\":\"last\",\"exponentformat\":\"e\"},\"xaxis4\":{\"anchor\":\"y4\",\"domain\":[0.55,1.0]},\"yaxis4\":{\"anchor\":\"x4\",\"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('3365c472-2f2c-45d1-be06-d361cd75078a');\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": [ "results = optim.run()\n", "\n", "# Plot the time series\n", "pybop.plot.dataset(dataset)\n", "\n", "# Plot the timeseries output\n", "pybop.plot.problem(problem, problem_inputs=results.x, title=\"Optimised Comparison\")\n", "\n", "# Plot convergence\n", "pybop.plot.convergence(optim)\n", "# Plot the parameter traces\n", "pybop.plot.parameters(optim);" ] }, { "cell_type": "markdown", "id": "16", "metadata": {}, "source": [ "### Conclusion\n", "\n", "Here, we have considered parameter estimation for an equivalent circuit model. We have introduced some issues of practical identifiability, whereby particularly fast or slow timescales can't be parameterised very well. To work around this challenge, nonlinear constraints have been implemented.\n", "\n", "A difficulty here is that fitting RC parameters is a [sloppy problem](https://sethna.lassp.cornell.edu/Sloppy/FittingExponentials.html) -- there's a range of timescales that will all produce reasonable looking results, and an optimiser will struggle to choose any one timescale over another. Gradient-free methods such as ```pybop.CMAES``` may do a better job of fitting timescales. Nevertheless, the resistance values can be fitted very accurately with gradient-based methods, whereas gradient-free methods don't always come up with such a good solution.\n", "\n", "The ideal approach would be to fit resistances with gradient-based or ordinary least-squares methods, and timescales using gradient-free optimisers. In the absence of this approach, general recommendations are as follows...\n", "\n", "+ If good initial guesses are available for the RC timescales, use a gradient-based method in the way we've done here, as it'll typically give the most accurate fit;\n", "+ Otherwise, use a gradient-free method to estimate timescales, then maybe consider moving back to a gradient-based method!" ] } ], "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 }