Three-phase sine wave generator¶
In this demo, we will look at ways to embed code generated from the Engee model subsystem.
The purpose of this example is to develop a model of a three-phase sine wave generator. The input signals of the generator are the amplitude [V] and frequency [Hz] of the output signals: instantaneous phase voltages. The phase difference of the sinusoidal signals is equal to $- \frac{2 \cdot \pi}{3}$.
In the course of the example we will perform modelling of the algorithm, code generation, embedding and testing in Engee models, embedding and testing on the target device - Arduino-compatible platform.
The developed model sine_generator.engee
represents the algorithm of a three-phase sine wave generator contained within the subsystem SinGen
. The inputs of the subsystem are supplied with amplitude values Amp = 1.0
and frequency values Freq = 25.0
. The output sinusoidal signals Sin_A
, Sin_B
and Sin_C
are logged.
Step of the model calculation is 0.001 sec.
The content of the subsystem SinGen
is shown in the figure below.
This subsystem reproduces standard calculations using the following equations:
$$ Sin_A = Amplitude \cdot sin(2 \cdot \pi \cdot Frequency \cdot t + \varphi_A) = 1 \cdot sin(2 \cdot \pi \cdot 25 \cdot t), $$
$$ Sin_B = Amplitude \cdot sin(2 \cdot \pi \cdot Frequency \cdot t + \varphi_B) = 1 \cdot sin(2 \cdot \pi \cdot 25 \cdot t - \frac{2 \cdot \pi}{3}), $$
$$ Sin_C = Amplitude \cdot sin(2 \cdot \pi \cdot Frequency \cdot t + \varphi_C) = 1 \cdot sin(2 \cdot \pi \cdot 25 \cdot t - \frac{4 \cdot \pi}{3}). $$
Let's load and execute the described model:
From the obtained model data we plot the output variables - instantaneous phase voltages SinGen.Sin_A
, SinGen.Sin_B
, SinGen.Sin_C
.
The plots of output signals obtained as a result of modelling are three-phase sinusoidal voltages V_a
, V_b
, V_c
with frequency 25 Hz, amplitude 1 V and phase shift $- \frac{2 \cdot \pi}{3}$.
To embed the developed algorithm it is necessary to generate the code from the subsystem SinGen
:
[ Info: Generated code and artifacts: /user/start/examples/codegen/sine_generator/sine_generator_SinGen_code
As a result of executing the code generation command, the files main.c
, sine_generator_SinGen.h
and sine_generator_SinGen.c
were created in the specified directory.
Now let's look at and test ways to embed the code generated from the model.
Embedding code into the Engee model¶
To test the generated code, we embed it into the Engee model sine_generator_test.engee
. The input and output parameters of the algorithm are identical to those in the original model sine_generator.engee
. However, the algorithm itself is implemented here on the basis of generated C files embedded in the block C Function
.
Code embedding consists of the following. In the block C Function
the locations of the generated files are specified, input and output variables are initialised, and the calculation functions generated from the model are called.
Contents of the tab </> OutputCode
of the block C Function
:
// engee-cfunction-start
//
// build source_files /user/start/examples/codegen/sine_generator/sine_generator_SinGen_code/sine_generator_SinGen.c
// build include_directories /user/start/examples/codegen/sine_generator/sine_generator/sine_generator_SinGen_code
// build library_directories
// build headers sine_generator_SinGen.h
// build defines
// build libraries
//
// Name Scope Label Type Size Port
// symbol A Input 'A' double 1 1
// symbol F Input 'F' double 1 2
// symbol Va Output 'Va' double 1 1
// symbol Vb Output 'Vb' double 1 2
// symbol Vc Output 'Vc' double 1 3
//
// engee-cfunction-end
//
// transfer frequency and amplitude values to the structure
sine_generator_SinGen_U.Frequency = F;
sine_generator_SinGen_U.Amplitude = A;
sine_generator_SinGen_step();
// transfer from the structure the values of instantaneous voltages by phases
Va = sine_generator_SinGen_Y.Sin_A;
Vb = sine_generator_SinGen_Y.Sin_B;
Vc = sine_generator_SinGen_Y.Sin_C;
Contents of tab </> StartCode
of block C Function
:
// call the initialisation function
sine_generator_SinGen_init();
Contents of the </> TerminateCode
tab of the C Function
block :
// call the termination function
sine_generator_SinGen_term();
Let's load and execute the sine_generator_test.engee
model to test the generated code:
From the obtained model data, plot the output variables - instantaneous phase voltages SinGen.Sin_A
, SinGen.Sin_B
, SinGen.Sin_C
.
As can be seen from the obtained graphs, the resulting voltage signals in the model for testing also have a sinusoidal form with the specified frequency, amplitude and phase shift.
Let us also compare the results of modelling of sinusoidal signals of phase A for the original and test models:
As can be seen from the above graphs, the simulation results of the initial model and the model for testing the code generation results completely coincide.
Embedding the code into the Arduino sketch¶
In order to test the developed algorithm on the target device, it is necessary to plug the generated files sine_generator_SinGen.c
and sine_generator_SinGen.h
into the user programme project.
For demonstration in this example the Iskra Neo controller from Amperka is used. Execution of the algorithm on the target device consists in the controller transmitting the values of the generated signals to the serial port. Displaying of the transmitted values will be done by Arduino IDE tools.
To embed the algorithm code, a sketch for the Arduino IDE sine_generator.ino
has been previously developed, which is also attached to the folder of this demo. The contents of the sketch are functionally identical to the contents of the C Function
block of the Engee test model, except for the functions of working with peripherals and the cycle of maintaining the calculation step. A detailed description of the sketch operation is given in the comments to the code.
Executing the code on Arduino¶
After successfully compiling and loading the sketch into the target device, let's open the "Serial Plotter" from the Arduino IDE toolbox. A screenshot of the plotter with the output signals is shown in the figure below.
It can be seen from the plotter plots that the resulting signals also have specified amplitude, frequency and phase shifts.
In this demo, a model of a three-phase sine wave generator with specified parameters such as amplitude, frequency, and phase shift was developed. The generator algorithm was debugged in the Engee model, then the resulting code generation files were tested by embedding them in the Engee model, and finally the generated C files were loaded into a custom sketch and tested on the target device.
Thus, using a simple example of a sine wave generator, we have looked at the possibilities of generating code from the Engee model.
{"id": "48c9cc36-8545-4a72-ad12-0e63410b88f4", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "V_a", "zmin": null, "yaxis": "y", "legendgroup": "V_a", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [0, 0, 0.15643446504023087, 0.15643446504023087, 0.3090169943749474, 0.3090169943749474, 0.4539904997395468, 0.4539904997395468, 0.5877852522924731, 0.5877852522924731, 0.7071067811865475, 0.7071067811865475, 0.8090169943749475, 0.8090169943749475, 0.8910065241883678, 0.8910065241883678, 0.9510565162951535, 0.9510565162951535, 0.9876883405951378, 0.9876883405951378, 1, 1, 0.9876883405951378, 0.9876883405951378, 0.9510565162951535, 0.9510565162951535, 0.8910065241883679, 0.8910065241883679, 0.8090169943749475, 0.8090169943749475, 0.7071067811865476, 0.7071067811865476, 0.5877852522924732, 0.5877852522924732, 0.45399049973954647, 0.45399049973954647, 0.3090169943749475, 0.3090169943749475, 0.15643446504023098, 0.15643446504023098, 1.2246467991473532e-16, 1.2246467991473532e-16, -0.15643446504023117, -0.15643446504023117, -0.3090169943749473, -0.3090169943749473, -0.4539904997395467, -0.4539904997395467, -0.5877852522924734, -0.5877852522924734, -0.7071067811865477, -0.7071067811865477, -0.8090169943749473, -0.8090169943749473, -0.8910065241883678, -0.8910065241883678, -0.9510565162951535, -0.9510565162951535, -0.9876883405951377, -0.9876883405951377, -1, -1, -0.9876883405951378, -0.9876883405951378, -0.9510565162951536, -0.9510565162951536, -0.8910065241883676, -0.8910065241883676, -0.809016994374947, -0.809016994374947, -0.707106781186547, -0.707106781186547, -0.5877852522924734, -0.5877852522924734, -0.45399049973954697, -0.45399049973954697, -0.3090169943749476, -0.3090169943749476, -0.15643446504023112, -0.15643446504023112, -2.4492935982947064e-16, -2.4492935982947064e-16, 0.1564344650402315, 0.1564344650402315, 0.309016994374948, 0.309016994374948, 0.4539904997395466, 0.4539904997395466, 0.5877852522924729, 0.5877852522924729, 0.7071067811865474, 0.7071067811865474, 0.8090169943749472, 0.8090169943749472, 0.8910065241883678, 0.8910065241883678, 0.9510565162951538, 0.9510565162951538, 0.9876883405951378, 0.9876883405951378, 1, 1, 0.9876883405951379, 0.9876883405951379, 0.9510565162951536, 0.9510565162951536, 0.8910065241883676, 0.8910065241883676, 0.8090169943749476, 0.8090169943749476, 0.7071067811865471, 0.7071067811865471, 0.5877852522924734, 0.5877852522924734, 0.4539904997395463, 0.4539904997395463, 0.3090169943749478, 0.3090169943749478, 0.1564344650402321, 0.1564344650402321, 3.6739403974420594e-16, 3.6739403974420594e-16, -0.15643446504023137, -0.15643446504023137, -0.30901699437494706, -0.30901699437494706, -0.45399049973954725, -0.45399049973954725, -0.5877852522924728, -0.5877852522924728, -0.7071067811865479, -0.7071067811865479, -0.8090169943749482, -0.8090169943749482, -0.8910065241883681, -0.8910065241883681, -0.951056516295154, -0.951056516295154, -0.9876883405951378, -0.9876883405951378, -1, -1, -0.9876883405951379, -0.9876883405951379, -0.9510565162951538, -0.9510565162951538, -0.8910065241883685, -0.8910065241883685, -0.8090169943749477, -0.8090169943749477, -0.7071067811865472, -0.7071067811865472, -0.5877852522924735, -0.5877852522924735, -0.4539904997395464, -0.4539904997395464, -0.3090169943749479, -0.3090169943749479, -0.15643446504023048, -0.15643446504023048, -4.898587196589413e-16], "type": "scatter", "x": [0, 0.001, 0.001, 0.002, 0.002, 0.003, 0.003, 0.004, 0.004, 0.005, 0.005, 0.006, 0.006, 0.007, 0.007, 0.008, 0.008, 0.009, 0.009, 0.01, 0.01, 0.011, 0.011, 0.012, 0.012, 0.013, 0.013, 0.014, 0.014, 0.015, 0.015, 0.016, 0.016, 0.017, 0.017, 0.018, 0.018, 0.019, 0.019, 0.02, 0.02, 0.021, 0.021, 0.022, 0.022, 0.023, 0.023, 0.024, 0.024, 0.025, 0.025, 0.026, 0.026, 0.027, 0.027, 0.028, 0.028, 0.029, 0.029, 0.03, 0.03, 0.031, 0.031, 0.032, 0.032, 0.033, 0.033, 0.034, 0.034, 0.035, 0.035, 0.036, 0.036, 0.037, 0.037, 0.038, 0.038, 0.039, 0.039, 0.04, 0.04, 0.041, 0.041, 0.042, 0.042, 0.043, 0.043, 0.044, 0.044, 0.045, 0.045, 0.046, 0.046, 0.047, 0.047, 0.048, 0.048, 0.049, 0.049, 0.05, 0.05, 0.051, 0.051, 0.052, 0.052, 0.053, 0.053, 0.054, 0.054, 0.055, 0.055, 0.056, 0.056, 0.057, 0.057, 0.058, 0.058, 0.059, 0.059, 0.06, 0.06, 0.061, 0.061, 0.062, 0.062, 0.063, 0.063, 0.064, 0.064, 0.065, 0.065, 0.066, 0.066, 0.067, 0.067, 0.068, 0.068, 0.069, 0.069, 0.07, 0.07, 0.071, 0.071, 0.072, 0.072, 0.073, 0.073, 0.074, 0.074, 0.075, 0.075, 0.076, 0.076, 0.077, 0.077, 0.078, 0.078, 0.079, 0.079, 0.08, 0.08], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 161, "currentCount": 161}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "V_b", "zmin": null, "yaxis": "y", "legendgroup": "V_b", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [-0.8660254037844387, -0.8660254037844387, -0.9335804264972019, -0.9335804264972019, -0.9781476007338057, -0.9781476007338057, -0.9986295347545738, -0.9986295347545738, -0.9945218953682733, -0.9945218953682733, -0.9659258262890682, -0.9659258262890682, -0.9135454576426009, -0.9135454576426009, -0.8386705679454239, -0.8386705679454239, -0.7431448254773941, -0.7431448254773941, -0.6293203910498373, -0.6293203910498373, -0.49999999999999983, -0.49999999999999983, -0.3583679495453001, -0.3583679495453001, -0.20791169081775895, -0.20791169081775895, -0.05233595624294368, -0.05233595624294368, 0.10452846326765361, 0.10452846326765361, 0.2588190451025209, 0.2588190451025209, 0.4067366430758003, 0.4067366430758003, 0.5446390350150275, 0.5446390350150275, 0.6691306063588582, 0.6691306063588582, 0.7771459614569709, 0.7771459614569709, 0.8660254037844387, 0.8660254037844387, 0.933580426497202, 0.933580426497202, 0.9781476007338057, 0.9781476007338057, 0.9986295347545738, 0.9986295347545738, 0.9945218953682733, 0.9945218953682733, 0.9659258262890682, 0.9659258262890682, 0.9135454576426009, 0.9135454576426009, 0.838670567945424, 0.838670567945424, 0.7431448254773942, 0.7431448254773942, 0.6293203910498374, 0.6293203910498374, 0.49999999999999994, 0.49999999999999994, 0.3583679495453002, 0.3583679495453002, 0.20791169081775931, 0.20791169081775931, 0.05233595624294292, 0.05233595624294292, -0.10452846326765437, -0.10452846326765437, -0.2588190451025216, -0.2588190451025216, -0.4067366430758002, -0.4067366430758002, -0.5446390350150271, -0.5446390350150271, -0.6691306063588582, -0.6691306063588582, -0.7771459614569706, -0.7771459614569706, -0.8660254037844388, -0.8660254037844388, -0.9335804264972022, -0.9335804264972022, -0.9781476007338057, -0.9781476007338057, -0.9986295347545738, -0.9986295347545738, -0.9945218953682733, -0.9945218953682733, -0.9659258262890684, -0.9659258262890684, -0.9135454576426008, -0.9135454576426008, -0.8386705679454243, -0.8386705679454243, -0.743144825477394, -0.743144825477394, -0.6293203910498365, -0.6293203910498365, -0.49999999999999967, -0.49999999999999967, -0.35836794954530077, -0.35836794954530077, -0.20791169081775898, -0.20791169081775898, -0.0523359562429426, -0.0523359562429426, 0.10452846326765382, 0.10452846326765382, 0.25881904510252196, 0.25881904510252196, 0.4067366430758005, 0.4067366430758005, 0.5446390350150281, 0.5446390350150281, 0.6691306063588585, 0.6691306063588585, 0.7771459614569706, 0.7771459614569706, 0.8660254037844388, 0.8660254037844388, 0.9335804264972022, 0.9335804264972022, 0.9781476007338057, 0.9781476007338057, 0.9986295347545739, 0.9986295347545739, 0.9945218953682733, 0.9945218953682733, 0.965925826289068, 0.965925826289068, 0.9135454576426001, 0.9135454576426001, 0.8386705679454234, 0.8386705679454234, 0.7431448254773929, 0.7431448254773929, 0.6293203910498366, 0.6293203910498366, 0.4999999999999982, 0.4999999999999982, 0.3583679495453009, 0.3583679495453009, 0.20791169081775912, 0.20791169081775912, 0.052335956242944494, 0.052335956242944494, -0.10452846326765369, -0.10452846326765369, -0.25881904510252185, -0.25881904510252185, -0.4067366430758004, -0.4067366430758004, -0.544639035015028, -0.544639035015028, -0.6691306063588583, -0.6691306063588583, -0.7771459614569716, -0.7771459614569716, -0.8660254037844387], "type": "scatter", "x": [0, 0.001, 0.001, 0.002, 0.002, 0.003, 0.003, 0.004, 0.004, 0.005, 0.005, 0.006, 0.006, 0.007, 0.007, 0.008, 0.008, 0.009, 0.009, 0.01, 0.01, 0.011, 0.011, 0.012, 0.012, 0.013, 0.013, 0.014, 0.014, 0.015, 0.015, 0.016, 0.016, 0.017, 0.017, 0.018, 0.018, 0.019, 0.019, 0.02, 0.02, 0.021, 0.021, 0.022, 0.022, 0.023, 0.023, 0.024, 0.024, 0.025, 0.025, 0.026, 0.026, 0.027, 0.027, 0.028, 0.028, 0.029, 0.029, 0.03, 0.03, 0.031, 0.031, 0.032, 0.032, 0.033, 0.033, 0.034, 0.034, 0.035, 0.035, 0.036, 0.036, 0.037, 0.037, 0.038, 0.038, 0.039, 0.039, 0.04, 0.04, 0.041, 0.041, 0.042, 0.042, 0.043, 0.043, 0.044, 0.044, 0.045, 0.045, 0.046, 0.046, 0.047, 0.047, 0.048, 0.048, 0.049, 0.049, 0.05, 0.05, 0.051, 0.051, 0.052, 0.052, 0.053, 0.053, 0.054, 0.054, 0.055, 0.055, 0.056, 0.056, 0.057, 0.057, 0.058, 0.058, 0.059, 0.059, 0.06, 0.06, 0.061, 0.061, 0.062, 0.062, 0.063, 0.063, 0.064, 0.064, 0.065, 0.065, 0.066, 0.066, 0.067, 0.067, 0.068, 0.068, 0.069, 0.069, 0.07, 0.07, 0.071, 0.071, 0.072, 0.072, 0.073, 0.073, 0.074, 0.074, 0.075, 0.075, 0.076, 0.076, 0.077, 0.077, 0.078, 0.078, 0.079, 0.079, 0.08, 0.08], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 161, "currentCount": 161}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "V_c", "zmin": null, "yaxis": "y", "legendgroup": "V_c", "zmax": null, "line": {"color": "rgba(62, 164, 78, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [0.8660254037844385, 0.8660254037844385, 0.7771459614569706, 0.7771459614569706, 0.6691306063588579, 0.6691306063588579, 0.5446390350150268, 0.5446390350150268, 0.4067366430757998, 0.4067366430757998, 0.25881904510252035, 0.25881904510252035, 0.10452846326765305, 0.10452846326765305, -0.05233595624294425, -0.05233595624294425, -0.20791169081775973, -0.20791169081775973, -0.35836794954530066, -0.35836794954530066, -0.5000000000000003, -0.5000000000000003, -0.6293203910498377, -0.6293203910498377, -0.7431448254773945, -0.7431448254773945, -0.8386705679454243, -0.8386705679454243, -0.9135454576426011, -0.9135454576426011, -0.9659258262890684, -0.9659258262890684, -0.9945218953682734, -0.9945218953682734, -0.9986295347545738, -0.9986295347545738, -0.9781476007338056, -0.9781476007338056, -0.9335804264972016, -0.9335804264972016, -0.8660254037844385, -0.8660254037844385, -0.7771459614569703, -0.7771459614569703, -0.669130606358858, -0.669130606358858, -0.5446390350150269, -0.5446390350150269, -0.40673664307579954, -0.40673664307579954, -0.25881904510252, -0.25881904510252, -0.10452846326765318, -0.10452846326765318, 0.052335956242944126, 0.052335956242944126, 0.20791169081775962, 0.20791169081775962, 0.35836794954530055, 0.35836794954530055, 0.5000000000000002, 0.5000000000000002, 0.6293203910498377, 0.6293203910498377, 0.7431448254773944, 0.7431448254773944, 0.8386705679454247, 0.8386705679454247, 0.9135454576426013, 0.9135454576426013, 0.9659258262890685, 0.9659258262890685, 0.9945218953682734, 0.9945218953682734, 0.9986295347545738, 0.9986295347545738, 0.9781476007338056, 0.9781476007338056, 0.9335804264972016, 0.9335804264972016, 0.8660254037844386, 0.8660254037844386, 0.7771459614569702, 0.7771459614569702, 0.6691306063588573, 0.6691306063588573, 0.5446390350150269, 0.5446390350150269, 0.40673664307580004, 0.40673664307580004, 0.2588190451025206, 0.2588190451025206, 0.10452846326765329, 0.10452846326765329, -0.052335956242944, -0.052335956242944, -0.20791169081776037, -0.20791169081776037, -0.35836794954530127, -0.35836794954530127, -0.5000000000000009, -0.5000000000000009, -0.6293203910498368, -0.6293203910498368, -0.7431448254773944, -0.7431448254773944, -0.8386705679454246, -0.8386705679454246, -0.913545457642601, -0.913545457642601, -0.9659258262890685, -0.9659258262890685, -0.9945218953682734, -0.9945218953682734, -0.9986295347545738, -0.9986295347545738, -0.9781476007338056, -0.9781476007338056, -0.9335804264972021, -0.9335804264972021, -0.8660254037844386, -0.8660254037844386, -0.7771459614569702, -0.7771459614569702, -0.6691306063588581, -0.6691306063588581, -0.5446390350150263, -0.5446390350150263, -0.40673664307580015, -0.40673664307580015, -0.25881904510251985, -0.25881904510251985, -0.10452846326765165, -0.10452846326765165, 0.05233595624294477, 0.05233595624294477, 0.20791169081776112, 0.20791169081776112, 0.35836794954530116, 0.35836794954530116, 0.5000000000000016, 0.5000000000000016, 0.6293203910498368, 0.6293203910498368, 0.7431448254773942, 0.7431448254773942, 0.8386705679454235, 0.8386705679454235, 0.9135454576426009, 0.9135454576426009, 0.9659258262890685, 0.9659258262890685, 0.9945218953682733, 0.9945218953682733, 0.9986295347545738, 0.9986295347545738, 0.9781476007338058, 0.9781476007338058, 0.9335804264972017, 0.9335804264972017, 0.8660254037844383], "type": "scatter", "x": [0, 0.001, 0.001, 0.002, 0.002, 0.003, 0.003, 0.004, 0.004, 0.005, 0.005, 0.006, 0.006, 0.007, 0.007, 0.008, 0.008, 0.009, 0.009, 0.01, 0.01, 0.011, 0.011, 0.012, 0.012, 0.013, 0.013, 0.014, 0.014, 0.015, 0.015, 0.016, 0.016, 0.017, 0.017, 0.018, 0.018, 0.019, 0.019, 0.02, 0.02, 0.021, 0.021, 0.022, 0.022, 0.023, 0.023, 0.024, 0.024, 0.025, 0.025, 0.026, 0.026, 0.027, 0.027, 0.028, 0.028, 0.029, 0.029, 0.03, 0.03, 0.031, 0.031, 0.032, 0.032, 0.033, 0.033, 0.034, 0.034, 0.035, 0.035, 0.036, 0.036, 0.037, 0.037, 0.038, 0.038, 0.039, 0.039, 0.04, 0.04, 0.041, 0.041, 0.042, 0.042, 0.043, 0.043, 0.044, 0.044, 0.045, 0.045, 0.046, 0.046, 0.047, 0.047, 0.048, 0.048, 0.049, 0.049, 0.05, 0.05, 0.051, 0.051, 0.052, 0.052, 0.053, 0.053, 0.054, 0.054, 0.055, 0.055, 0.056, 0.056, 0.057, 0.057, 0.058, 0.058, 0.059, 0.059, 0.06, 0.06, 0.061, 0.061, 0.062, 0.062, 0.063, 0.063, 0.064, 0.064, 0.065, 0.065, 0.066, 0.066, 0.067, 0.067, 0.068, 0.068, 0.069, 0.069, 0.07, 0.07, 0.071, 0.071, 0.072, 0.072, 0.073, 0.073, 0.074, 0.074, 0.075, 0.075, 0.076, 0.076, 0.077, 0.077, 0.078, 0.078, 0.079, 0.079, 0.08, 0.08], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 161, "currentCount": 161}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.0023999999999999994, 0.0824], "domain": [0.06085593467483231, 0.9956255468066492], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Время, сек", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 300, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.06, 1.06], "domain": [0.10108632254301551, 0.9868766404199475], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Напряжение, В", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "top", "xanchor": "left", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 0.07}, "width": 634.984375}}
{"id": "4aa0395a-2a5f-4ced-9082-b99e1b5ac375", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "V_a", "zmin": null, "yaxis": "y", "legendgroup": "V_a", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [0, 0, 0.15643446504023087, 0.15643446504023087, 0.3090169943749474, 0.3090169943749474, 0.4539904997395468, 0.4539904997395468, 0.5877852522924731, 0.5877852522924731, 0.7071067811865475, 0.7071067811865475, 0.8090169943749475, 0.8090169943749475, 0.8910065241883678, 0.8910065241883678, 0.9510565162951535, 0.9510565162951535, 0.9876883405951378, 0.9876883405951378, 1, 1, 0.9876883405951378, 0.9876883405951378, 0.9510565162951535, 0.9510565162951535, 0.8910065241883679, 0.8910065241883679, 0.8090169943749475, 0.8090169943749475, 0.7071067811865476, 0.7071067811865476, 0.5877852522924732, 0.5877852522924732, 0.45399049973954647, 0.45399049973954647, 0.3090169943749475, 0.3090169943749475, 0.15643446504023098, 0.15643446504023098, 1.2246467991473532e-16, 1.2246467991473532e-16, -0.15643446504023117, -0.15643446504023117, -0.3090169943749473, -0.3090169943749473, -0.4539904997395467, -0.4539904997395467, -0.5877852522924734, -0.5877852522924734, -0.7071067811865477, -0.7071067811865477, -0.8090169943749473, -0.8090169943749473, -0.8910065241883678, -0.8910065241883678, -0.9510565162951535, -0.9510565162951535, -0.9876883405951377, -0.9876883405951377, -1, -1, -0.9876883405951378, -0.9876883405951378, -0.9510565162951536, -0.9510565162951536, -0.8910065241883676, -0.8910065241883676, -0.809016994374947, -0.809016994374947, -0.707106781186547, -0.707106781186547, -0.5877852522924734, -0.5877852522924734, -0.45399049973954697, -0.45399049973954697, -0.3090169943749476, -0.3090169943749476, -0.15643446504023112, -0.15643446504023112, -2.4492935982947064e-16, -2.4492935982947064e-16, 0.1564344650402315, 0.1564344650402315, 0.309016994374948, 0.309016994374948, 0.4539904997395466, 0.4539904997395466, 0.5877852522924729, 0.5877852522924729, 0.7071067811865474, 0.7071067811865474, 0.8090169943749472, 0.8090169943749472, 0.8910065241883678, 0.8910065241883678, 0.9510565162951538, 0.9510565162951538, 0.9876883405951378, 0.9876883405951378, 1, 1, 0.9876883405951379, 0.9876883405951379, 0.9510565162951536, 0.9510565162951536, 0.8910065241883676, 0.8910065241883676, 0.8090169943749476, 0.8090169943749476, 0.7071067811865471, 0.7071067811865471, 0.5877852522924734, 0.5877852522924734, 0.4539904997395463, 0.4539904997395463, 0.3090169943749478, 0.3090169943749478, 0.1564344650402321, 0.1564344650402321, 3.6739403974420594e-16, 3.6739403974420594e-16, -0.15643446504023137, -0.15643446504023137, -0.30901699437494706, -0.30901699437494706, -0.45399049973954725, -0.45399049973954725, -0.5877852522924728, -0.5877852522924728, -0.7071067811865479, -0.7071067811865479, -0.8090169943749482, -0.8090169943749482, -0.8910065241883681, -0.8910065241883681, -0.951056516295154, -0.951056516295154, -0.9876883405951378, -0.9876883405951378, -1, -1, -0.9876883405951379, -0.9876883405951379, -0.9510565162951538, -0.9510565162951538, -0.8910065241883685, -0.8910065241883685, -0.8090169943749477, -0.8090169943749477, -0.7071067811865472, -0.7071067811865472, -0.5877852522924735, -0.5877852522924735, -0.4539904997395464, -0.4539904997395464, -0.3090169943749479, -0.3090169943749479, -0.15643446504023048, -0.15643446504023048, -4.898587196589413e-16], "type": "scatter", "x": [0, 0.001, 0.001, 0.002, 0.002, 0.003, 0.003, 0.004, 0.004, 0.005, 0.005, 0.006, 0.006, 0.007, 0.007, 0.008, 0.008, 0.009, 0.009, 0.01, 0.01, 0.011, 0.011, 0.012, 0.012, 0.013, 0.013, 0.014, 0.014, 0.015, 0.015, 0.016, 0.016, 0.017, 0.017, 0.018, 0.018, 0.019, 0.019, 0.02, 0.02, 0.021, 0.021, 0.022, 0.022, 0.023, 0.023, 0.024, 0.024, 0.025, 0.025, 0.026, 0.026, 0.027, 0.027, 0.028, 0.028, 0.029, 0.029, 0.03, 0.03, 0.031, 0.031, 0.032, 0.032, 0.033, 0.033, 0.034, 0.034, 0.035, 0.035, 0.036, 0.036, 0.037, 0.037, 0.038, 0.038, 0.039, 0.039, 0.04, 0.04, 0.041, 0.041, 0.042, 0.042, 0.043, 0.043, 0.044, 0.044, 0.045, 0.045, 0.046, 0.046, 0.047, 0.047, 0.048, 0.048, 0.049, 0.049, 0.05, 0.05, 0.051, 0.051, 0.052, 0.052, 0.053, 0.053, 0.054, 0.054, 0.055, 0.055, 0.056, 0.056, 0.057, 0.057, 0.058, 0.058, 0.059, 0.059, 0.06, 0.06, 0.061, 0.061, 0.062, 0.062, 0.063, 0.063, 0.064, 0.064, 0.065, 0.065, 0.066, 0.066, 0.067, 0.067, 0.068, 0.068, 0.069, 0.069, 0.07, 0.07, 0.071, 0.071, 0.072, 0.072, 0.073, 0.073, 0.074, 0.074, 0.075, 0.075, 0.076, 0.076, 0.077, 0.077, 0.078, 0.078, 0.079, 0.079, 0.08, 0.08], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 161, "currentCount": 161}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "V_b", "zmin": null, "yaxis": "y", "legendgroup": "V_b", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [-0.8660254037844387, -0.8660254037844387, -0.9335804264972019, -0.9335804264972019, -0.9781476007338057, -0.9781476007338057, -0.9986295347545738, -0.9986295347545738, -0.9945218953682733, -0.9945218953682733, -0.9659258262890682, -0.9659258262890682, -0.9135454576426009, -0.9135454576426009, -0.8386705679454239, -0.8386705679454239, -0.7431448254773941, -0.7431448254773941, -0.6293203910498373, -0.6293203910498373, -0.49999999999999983, -0.49999999999999983, -0.3583679495453001, -0.3583679495453001, -0.20791169081775895, -0.20791169081775895, -0.05233595624294368, -0.05233595624294368, 0.10452846326765361, 0.10452846326765361, 0.2588190451025209, 0.2588190451025209, 0.4067366430758003, 0.4067366430758003, 0.5446390350150275, 0.5446390350150275, 0.6691306063588582, 0.6691306063588582, 0.7771459614569709, 0.7771459614569709, 0.8660254037844387, 0.8660254037844387, 0.933580426497202, 0.933580426497202, 0.9781476007338057, 0.9781476007338057, 0.9986295347545738, 0.9986295347545738, 0.9945218953682733, 0.9945218953682733, 0.9659258262890682, 0.9659258262890682, 0.9135454576426009, 0.9135454576426009, 0.838670567945424, 0.838670567945424, 0.7431448254773942, 0.7431448254773942, 0.6293203910498374, 0.6293203910498374, 0.49999999999999994, 0.49999999999999994, 0.3583679495453002, 0.3583679495453002, 0.20791169081775931, 0.20791169081775931, 0.05233595624294292, 0.05233595624294292, -0.10452846326765437, -0.10452846326765437, -0.2588190451025216, -0.2588190451025216, -0.4067366430758002, -0.4067366430758002, -0.5446390350150271, -0.5446390350150271, -0.6691306063588582, -0.6691306063588582, -0.7771459614569706, -0.7771459614569706, -0.8660254037844388, -0.8660254037844388, -0.9335804264972022, -0.9335804264972022, -0.9781476007338057, -0.9781476007338057, -0.9986295347545738, -0.9986295347545738, -0.9945218953682733, -0.9945218953682733, -0.9659258262890684, -0.9659258262890684, -0.9135454576426008, -0.9135454576426008, -0.8386705679454243, -0.8386705679454243, -0.743144825477394, -0.743144825477394, -0.6293203910498365, -0.6293203910498365, -0.49999999999999967, -0.49999999999999967, -0.35836794954530077, -0.35836794954530077, -0.20791169081775898, -0.20791169081775898, -0.0523359562429426, -0.0523359562429426, 0.10452846326765382, 0.10452846326765382, 0.25881904510252196, 0.25881904510252196, 0.4067366430758005, 0.4067366430758005, 0.5446390350150281, 0.5446390350150281, 0.6691306063588585, 0.6691306063588585, 0.7771459614569706, 0.7771459614569706, 0.8660254037844388, 0.8660254037844388, 0.9335804264972022, 0.9335804264972022, 0.9781476007338057, 0.9781476007338057, 0.9986295347545739, 0.9986295347545739, 0.9945218953682733, 0.9945218953682733, 0.965925826289068, 0.965925826289068, 0.9135454576426001, 0.9135454576426001, 0.8386705679454234, 0.8386705679454234, 0.7431448254773929, 0.7431448254773929, 0.6293203910498366, 0.6293203910498366, 0.4999999999999982, 0.4999999999999982, 0.3583679495453009, 0.3583679495453009, 0.20791169081775912, 0.20791169081775912, 0.052335956242944494, 0.052335956242944494, -0.10452846326765369, -0.10452846326765369, -0.25881904510252185, -0.25881904510252185, -0.4067366430758004, -0.4067366430758004, -0.544639035015028, -0.544639035015028, -0.6691306063588583, -0.6691306063588583, -0.7771459614569716, -0.7771459614569716, -0.8660254037844387], "type": "scatter", "x": [0, 0.001, 0.001, 0.002, 0.002, 0.003, 0.003, 0.004, 0.004, 0.005, 0.005, 0.006, 0.006, 0.007, 0.007, 0.008, 0.008, 0.009, 0.009, 0.01, 0.01, 0.011, 0.011, 0.012, 0.012, 0.013, 0.013, 0.014, 0.014, 0.015, 0.015, 0.016, 0.016, 0.017, 0.017, 0.018, 0.018, 0.019, 0.019, 0.02, 0.02, 0.021, 0.021, 0.022, 0.022, 0.023, 0.023, 0.024, 0.024, 0.025, 0.025, 0.026, 0.026, 0.027, 0.027, 0.028, 0.028, 0.029, 0.029, 0.03, 0.03, 0.031, 0.031, 0.032, 0.032, 0.033, 0.033, 0.034, 0.034, 0.035, 0.035, 0.036, 0.036, 0.037, 0.037, 0.038, 0.038, 0.039, 0.039, 0.04, 0.04, 0.041, 0.041, 0.042, 0.042, 0.043, 0.043, 0.044, 0.044, 0.045, 0.045, 0.046, 0.046, 0.047, 0.047, 0.048, 0.048, 0.049, 0.049, 0.05, 0.05, 0.051, 0.051, 0.052, 0.052, 0.053, 0.053, 0.054, 0.054, 0.055, 0.055, 0.056, 0.056, 0.057, 0.057, 0.058, 0.058, 0.059, 0.059, 0.06, 0.06, 0.061, 0.061, 0.062, 0.062, 0.063, 0.063, 0.064, 0.064, 0.065, 0.065, 0.066, 0.066, 0.067, 0.067, 0.068, 0.068, 0.069, 0.069, 0.07, 0.07, 0.071, 0.071, 0.072, 0.072, 0.073, 0.073, 0.074, 0.074, 0.075, 0.075, 0.076, 0.076, 0.077, 0.077, 0.078, 0.078, 0.079, 0.079, 0.08, 0.08], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 161, "currentCount": 161}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "V_c", "zmin": null, "yaxis": "y", "legendgroup": "V_c", "zmax": null, "line": {"color": "rgba(62, 164, 78, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [0.8660254037844385, 0.8660254037844385, 0.7771459614569706, 0.7771459614569706, 0.6691306063588579, 0.6691306063588579, 0.5446390350150268, 0.5446390350150268, 0.4067366430757998, 0.4067366430757998, 0.25881904510252035, 0.25881904510252035, 0.10452846326765305, 0.10452846326765305, -0.05233595624294425, -0.05233595624294425, -0.20791169081775973, -0.20791169081775973, -0.35836794954530066, -0.35836794954530066, -0.5000000000000003, -0.5000000000000003, -0.6293203910498377, -0.6293203910498377, -0.7431448254773945, -0.7431448254773945, -0.8386705679454243, -0.8386705679454243, -0.9135454576426011, -0.9135454576426011, -0.9659258262890684, -0.9659258262890684, -0.9945218953682734, -0.9945218953682734, -0.9986295347545738, -0.9986295347545738, -0.9781476007338056, -0.9781476007338056, -0.9335804264972016, -0.9335804264972016, -0.8660254037844385, -0.8660254037844385, -0.7771459614569703, -0.7771459614569703, -0.669130606358858, -0.669130606358858, -0.5446390350150269, -0.5446390350150269, -0.40673664307579954, -0.40673664307579954, -0.25881904510252, -0.25881904510252, -0.10452846326765318, -0.10452846326765318, 0.052335956242944126, 0.052335956242944126, 0.20791169081775962, 0.20791169081775962, 0.35836794954530055, 0.35836794954530055, 0.5000000000000002, 0.5000000000000002, 0.6293203910498377, 0.6293203910498377, 0.7431448254773944, 0.7431448254773944, 0.8386705679454247, 0.8386705679454247, 0.9135454576426013, 0.9135454576426013, 0.9659258262890685, 0.9659258262890685, 0.9945218953682734, 0.9945218953682734, 0.9986295347545738, 0.9986295347545738, 0.9781476007338056, 0.9781476007338056, 0.9335804264972016, 0.9335804264972016, 0.8660254037844386, 0.8660254037844386, 0.7771459614569702, 0.7771459614569702, 0.6691306063588573, 0.6691306063588573, 0.5446390350150269, 0.5446390350150269, 0.40673664307580004, 0.40673664307580004, 0.2588190451025206, 0.2588190451025206, 0.10452846326765329, 0.10452846326765329, -0.052335956242944, -0.052335956242944, -0.20791169081776037, -0.20791169081776037, -0.35836794954530127, -0.35836794954530127, -0.5000000000000009, -0.5000000000000009, -0.6293203910498368, -0.6293203910498368, -0.7431448254773944, -0.7431448254773944, -0.8386705679454246, -0.8386705679454246, -0.913545457642601, -0.913545457642601, -0.9659258262890685, -0.9659258262890685, -0.9945218953682734, -0.9945218953682734, -0.9986295347545738, -0.9986295347545738, -0.9781476007338056, -0.9781476007338056, -0.9335804264972021, -0.9335804264972021, -0.8660254037844386, -0.8660254037844386, -0.7771459614569702, -0.7771459614569702, -0.6691306063588581, -0.6691306063588581, -0.5446390350150263, -0.5446390350150263, -0.40673664307580015, -0.40673664307580015, -0.25881904510251985, -0.25881904510251985, -0.10452846326765165, -0.10452846326765165, 0.05233595624294477, 0.05233595624294477, 0.20791169081776112, 0.20791169081776112, 0.35836794954530116, 0.35836794954530116, 0.5000000000000016, 0.5000000000000016, 0.6293203910498368, 0.6293203910498368, 0.7431448254773942, 0.7431448254773942, 0.8386705679454235, 0.8386705679454235, 0.9135454576426009, 0.9135454576426009, 0.9659258262890685, 0.9659258262890685, 0.9945218953682733, 0.9945218953682733, 0.9986295347545738, 0.9986295347545738, 0.9781476007338058, 0.9781476007338058, 0.9335804264972017, 0.9335804264972017, 0.8660254037844383], "type": "scatter", "x": [0, 0.001, 0.001, 0.002, 0.002, 0.003, 0.003, 0.004, 0.004, 0.005, 0.005, 0.006, 0.006, 0.007, 0.007, 0.008, 0.008, 0.009, 0.009, 0.01, 0.01, 0.011, 0.011, 0.012, 0.012, 0.013, 0.013, 0.014, 0.014, 0.015, 0.015, 0.016, 0.016, 0.017, 0.017, 0.018, 0.018, 0.019, 0.019, 0.02, 0.02, 0.021, 0.021, 0.022, 0.022, 0.023, 0.023, 0.024, 0.024, 0.025, 0.025, 0.026, 0.026, 0.027, 0.027, 0.028, 0.028, 0.029, 0.029, 0.03, 0.03, 0.031, 0.031, 0.032, 0.032, 0.033, 0.033, 0.034, 0.034, 0.035, 0.035, 0.036, 0.036, 0.037, 0.037, 0.038, 0.038, 0.039, 0.039, 0.04, 0.04, 0.041, 0.041, 0.042, 0.042, 0.043, 0.043, 0.044, 0.044, 0.045, 0.045, 0.046, 0.046, 0.047, 0.047, 0.048, 0.048, 0.049, 0.049, 0.05, 0.05, 0.051, 0.051, 0.052, 0.052, 0.053, 0.053, 0.054, 0.054, 0.055, 0.055, 0.056, 0.056, 0.057, 0.057, 0.058, 0.058, 0.059, 0.059, 0.06, 0.06, 0.061, 0.061, 0.062, 0.062, 0.063, 0.063, 0.064, 0.064, 0.065, 0.065, 0.066, 0.066, 0.067, 0.067, 0.068, 0.068, 0.069, 0.069, 0.07, 0.07, 0.071, 0.071, 0.072, 0.072, 0.073, 0.073, 0.074, 0.074, 0.075, 0.075, 0.076, 0.076, 0.077, 0.077, 0.078, 0.078, 0.079, 0.079, 0.08, 0.08], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 161, "currentCount": 161}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.0023999999999999994, 0.0824], "domain": [0.06085593467483231, 0.9956255468066492], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Время, сек", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 300, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.06, 1.06], "domain": [0.10108632254301551, 0.9868766404199475], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Напряжение, В", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "top", "xanchor": "left", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 0.07}, "width": 634.984375}}
{"id": "fdb72995-1840-4f19-9598-06d8d07fda1d", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "V_a", "zmin": null, "yaxis": "y", "legendgroup": "V_a", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 4}, "y": [0, 0, 0.15643446504023087, 0.15643446504023087, 0.3090169943749474, 0.3090169943749474, 0.4539904997395468, 0.4539904997395468, 0.5877852522924731, 0.5877852522924731, 0.7071067811865475, 0.7071067811865475, 0.8090169943749475, 0.8090169943749475, 0.8910065241883678, 0.8910065241883678, 0.9510565162951535, 0.9510565162951535, 0.9876883405951378, 0.9876883405951378, 1, 1, 0.9876883405951378, 0.9876883405951378, 0.9510565162951535, 0.9510565162951535, 0.8910065241883679, 0.8910065241883679, 0.8090169943749475, 0.8090169943749475, 0.7071067811865476, 0.7071067811865476, 0.5877852522924732, 0.5877852522924732, 0.45399049973954647, 0.45399049973954647, 0.3090169943749475, 0.3090169943749475, 0.15643446504023098, 0.15643446504023098, 1.2246467991473532e-16, 1.2246467991473532e-16, -0.15643446504023117, -0.15643446504023117, -0.3090169943749473, -0.3090169943749473, -0.4539904997395467, -0.4539904997395467, -0.5877852522924734, -0.5877852522924734, -0.7071067811865477, -0.7071067811865477, -0.8090169943749473, -0.8090169943749473, -0.8910065241883678, -0.8910065241883678, -0.9510565162951535, -0.9510565162951535, -0.9876883405951377, -0.9876883405951377, -1, -1, -0.9876883405951378, -0.9876883405951378, -0.9510565162951536, -0.9510565162951536, -0.8910065241883676, -0.8910065241883676, -0.809016994374947, -0.809016994374947, -0.707106781186547, -0.707106781186547, -0.5877852522924734, -0.5877852522924734, -0.45399049973954697, -0.45399049973954697, -0.3090169943749476, -0.3090169943749476, -0.15643446504023112, -0.15643446504023112, -2.4492935982947064e-16, -2.4492935982947064e-16, 0.1564344650402315, 0.1564344650402315, 0.309016994374948, 0.309016994374948, 0.4539904997395466, 0.4539904997395466, 0.5877852522924729, 0.5877852522924729, 0.7071067811865474, 0.7071067811865474, 0.8090169943749472, 0.8090169943749472, 0.8910065241883678, 0.8910065241883678, 0.9510565162951538, 0.9510565162951538, 0.9876883405951378, 0.9876883405951378, 1, 1, 0.9876883405951379, 0.9876883405951379, 0.9510565162951536, 0.9510565162951536, 0.8910065241883676, 0.8910065241883676, 0.8090169943749476, 0.8090169943749476, 0.7071067811865471, 0.7071067811865471, 0.5877852522924734, 0.5877852522924734, 0.4539904997395463, 0.4539904997395463, 0.3090169943749478, 0.3090169943749478, 0.1564344650402321, 0.1564344650402321, 3.6739403974420594e-16, 3.6739403974420594e-16, -0.15643446504023137, -0.15643446504023137, -0.30901699437494706, -0.30901699437494706, -0.45399049973954725, -0.45399049973954725, -0.5877852522924728, -0.5877852522924728, -0.7071067811865479, -0.7071067811865479, -0.8090169943749482, -0.8090169943749482, -0.8910065241883681, -0.8910065241883681, -0.951056516295154, -0.951056516295154, -0.9876883405951378, -0.9876883405951378, -1, -1, -0.9876883405951379, -0.9876883405951379, -0.9510565162951538, -0.9510565162951538, -0.8910065241883685, -0.8910065241883685, -0.8090169943749477, -0.8090169943749477, -0.7071067811865472, -0.7071067811865472, -0.5877852522924735, -0.5877852522924735, -0.4539904997395464, -0.4539904997395464, -0.3090169943749479, -0.3090169943749479, -0.15643446504023048, -0.15643446504023048, -4.898587196589413e-16], "type": "scatter", "x": [0, 0.001, 0.001, 0.002, 0.002, 0.003, 0.003, 0.004, 0.004, 0.005, 0.005, 0.006, 0.006, 0.007, 0.007, 0.008, 0.008, 0.009, 0.009, 0.01, 0.01, 0.011, 0.011, 0.012, 0.012, 0.013, 0.013, 0.014, 0.014, 0.015, 0.015, 0.016, 0.016, 0.017, 0.017, 0.018, 0.018, 0.019, 0.019, 0.02, 0.02, 0.021, 0.021, 0.022, 0.022, 0.023, 0.023, 0.024, 0.024, 0.025, 0.025, 0.026, 0.026, 0.027, 0.027, 0.028, 0.028, 0.029, 0.029, 0.03, 0.03, 0.031, 0.031, 0.032, 0.032, 0.033, 0.033, 0.034, 0.034, 0.035, 0.035, 0.036, 0.036, 0.037, 0.037, 0.038, 0.038, 0.039, 0.039, 0.04, 0.04, 0.041, 0.041, 0.042, 0.042, 0.043, 0.043, 0.044, 0.044, 0.045, 0.045, 0.046, 0.046, 0.047, 0.047, 0.048, 0.048, 0.049, 0.049, 0.05, 0.05, 0.051, 0.051, 0.052, 0.052, 0.053, 0.053, 0.054, 0.054, 0.055, 0.055, 0.056, 0.056, 0.057, 0.057, 0.058, 0.058, 0.059, 0.059, 0.06, 0.06, 0.061, 0.061, 0.062, 0.062, 0.063, 0.063, 0.064, 0.064, 0.065, 0.065, 0.066, 0.066, 0.067, 0.067, 0.068, 0.068, 0.069, 0.069, 0.07, 0.07, 0.071, 0.071, 0.072, 0.072, 0.073, 0.073, 0.074, 0.074, 0.075, 0.075, 0.076, 0.076, 0.077, 0.077, 0.078, 0.078, 0.079, 0.079, 0.08, 0.08], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 161, "currentCount": 161}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "V_a_test", "zmin": null, "yaxis": "y", "legendgroup": "V_a_test", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [0, 0, 0.15643446504023087, 0.15643446504023087, 0.3090169943749474, 0.3090169943749474, 0.4539904997395468, 0.4539904997395468, 0.5877852522924731, 0.5877852522924731, 0.7071067811865475, 0.7071067811865475, 0.8090169943749475, 0.8090169943749475, 0.8910065241883678, 0.8910065241883678, 0.9510565162951535, 0.9510565162951535, 0.9876883405951378, 0.9876883405951378, 1, 1, 0.9876883405951378, 0.9876883405951378, 0.9510565162951535, 0.9510565162951535, 0.8910065241883679, 0.8910065241883679, 0.8090169943749475, 0.8090169943749475, 0.7071067811865476, 0.7071067811865476, 0.5877852522924732, 0.5877852522924732, 0.45399049973954647, 0.45399049973954647, 0.3090169943749475, 0.3090169943749475, 0.15643446504023098, 0.15643446504023098, 1.2246467991473532e-16, 1.2246467991473532e-16, -0.15643446504023117, -0.15643446504023117, -0.3090169943749473, -0.3090169943749473, -0.4539904997395467, -0.4539904997395467, -0.5877852522924734, -0.5877852522924734, -0.7071067811865477, -0.7071067811865477, -0.8090169943749473, -0.8090169943749473, -0.8910065241883678, -0.8910065241883678, -0.9510565162951535, -0.9510565162951535, -0.9876883405951377, -0.9876883405951377, -1, -1, -0.9876883405951378, -0.9876883405951378, -0.9510565162951536, -0.9510565162951536, -0.8910065241883676, -0.8910065241883676, -0.809016994374947, -0.809016994374947, -0.707106781186547, -0.707106781186547, -0.5877852522924734, -0.5877852522924734, -0.45399049973954697, -0.45399049973954697, -0.3090169943749476, -0.3090169943749476, -0.15643446504023112, -0.15643446504023112, -2.4492935982947064e-16, -2.4492935982947064e-16, 0.1564344650402315, 0.1564344650402315, 0.309016994374948, 0.309016994374948, 0.4539904997395466, 0.4539904997395466, 0.5877852522924729, 0.5877852522924729, 0.7071067811865474, 0.7071067811865474, 0.8090169943749472, 0.8090169943749472, 0.8910065241883678, 0.8910065241883678, 0.9510565162951538, 0.9510565162951538, 0.9876883405951378, 0.9876883405951378, 1, 1, 0.9876883405951379, 0.9876883405951379, 0.9510565162951536, 0.9510565162951536, 0.8910065241883676, 0.8910065241883676, 0.8090169943749476, 0.8090169943749476, 0.7071067811865471, 0.7071067811865471, 0.5877852522924734, 0.5877852522924734, 0.4539904997395463, 0.4539904997395463, 0.3090169943749478, 0.3090169943749478, 0.1564344650402321, 0.1564344650402321, 3.6739403974420594e-16, 3.6739403974420594e-16, -0.15643446504023137, -0.15643446504023137, -0.30901699437494706, -0.30901699437494706, -0.45399049973954725, -0.45399049973954725, -0.5877852522924728, -0.5877852522924728, -0.7071067811865479, -0.7071067811865479, -0.8090169943749482, -0.8090169943749482, -0.8910065241883681, -0.8910065241883681, -0.951056516295154, -0.951056516295154, -0.9876883405951378, -0.9876883405951378, -1, -1, -0.9876883405951379, -0.9876883405951379, -0.9510565162951538, -0.9510565162951538, -0.8910065241883685, -0.8910065241883685, -0.8090169943749477, -0.8090169943749477, -0.7071067811865472, -0.7071067811865472, -0.5877852522924735, -0.5877852522924735, -0.4539904997395464, -0.4539904997395464, -0.3090169943749479, -0.3090169943749479, -0.15643446504023048, -0.15643446504023048, -4.898587196589413e-16], "type": "scatter", "x": [0, 0.001, 0.001, 0.002, 0.002, 0.003, 0.003, 0.004, 0.004, 0.005, 0.005, 0.006, 0.006, 0.007, 0.007, 0.008, 0.008, 0.009, 0.009, 0.01, 0.01, 0.011, 0.011, 0.012, 0.012, 0.013, 0.013, 0.014, 0.014, 0.015, 0.015, 0.016, 0.016, 0.017, 0.017, 0.018, 0.018, 0.019, 0.019, 0.02, 0.02, 0.021, 0.021, 0.022, 0.022, 0.023, 0.023, 0.024, 0.024, 0.025, 0.025, 0.026, 0.026, 0.027, 0.027, 0.028, 0.028, 0.029, 0.029, 0.03, 0.03, 0.031, 0.031, 0.032, 0.032, 0.033, 0.033, 0.034, 0.034, 0.035, 0.035, 0.036, 0.036, 0.037, 0.037, 0.038, 0.038, 0.039, 0.039, 0.04, 0.04, 0.041, 0.041, 0.042, 0.042, 0.043, 0.043, 0.044, 0.044, 0.045, 0.045, 0.046, 0.046, 0.047, 0.047, 0.048, 0.048, 0.049, 0.049, 0.05, 0.05, 0.051, 0.051, 0.052, 0.052, 0.053, 0.053, 0.054, 0.054, 0.055, 0.055, 0.056, 0.056, 0.057, 0.057, 0.058, 0.058, 0.059, 0.059, 0.06, 0.06, 0.061, 0.061, 0.062, 0.062, 0.063, 0.063, 0.064, 0.064, 0.065, 0.065, 0.066, 0.066, 0.067, 0.067, 0.068, 0.068, 0.069, 0.069, 0.07, 0.07, 0.071, 0.071, 0.072, 0.072, 0.073, 0.073, 0.074, 0.074, 0.075, 0.075, 0.076, 0.076, 0.077, 0.077, 0.078, 0.078, 0.079, 0.079, 0.08, 0.08], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 161, "currentCount": 161}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.0023999999999999994, 0.0824], "domain": [0.06085593467483231, 0.9956255468066492], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Время, сек", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 300, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.06, 1.06], "domain": [0.10108632254301551, 0.9868766404199475], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Напряжение, В", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "top", "xanchor": "left", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 0.07}, "width": 634.984375}}