-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplots.js
More file actions
executable file
·1584 lines (1497 loc) · 45 KB
/
plots.js
File metadata and controls
executable file
·1584 lines (1497 loc) · 45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Adjust plot height.
*
* @param element Element whose height is to be adjusted.
* @return None.
*/
function adjustPlotHeight(element) {
windowInnerHeight = window.innerHeight;
var element = document.getElementById(element)
if (element !== null) {
element.style = "height: " + windowInnerHeight + "px;";
}
}
/**
* Remove plot.
*
* @param element Plot element to be cleared.
* @return None.
*/
function rmPlot(element) {
if (!!document.getElementById(element)) {
document.getElementById(element).innerHTML = '';
document.getElementById(element).style = '';
}
if (/animation/.test(element)) {
var IdSuffix = element.replace(/animation/, "");
var contID = "container" + IdSuffix;
var infoID = "info" + IdSuffix;
document.getElementById(infoID).innerHTML = "";
document.getElementById(infoID).style = "padding: 0px; border-bottom: 0px; margin: 0px;";
document.getElementById(contID).style = "border: 0px; padding: 0px;";
}
}
/**
* Remove XY phase plot
*
* @params None.
* @return Nothing. Just removes the plot.
*/
function removeXYPhasePlot() {
rmPlot("phasePlotXY");
}
/**
* Remove XZ phase plot
*
* @params None.
* @return Nothing. Just removes the plot.
*/
function removeXZPhasePlot() {
rmPlot("phasePlotXZ");
}
/**
* Remove YZ phase plot
*
* @params None.
* @return Nothing. Just removes the plot.
*/
function removeYZPhasePlot() {
rmPlot("phasePlotYZ");
}
/**
* Remove XYZ phase plot
*
* @params None.
* @return Nothing. Just removes the plot.
*/
function remove3DPhasePlot() {
rmPlot("phasePlotXYZ");
}
/**
* Remove time plot
*
* @params None.
* @return Nothing. Just removes the plot.
*/
function removeTimePlot() {
rmPlot("timePlot");
}
/**
* Remove error plot
*
* @params None.
* @return Nothing. Just removes the plot.
*/
function removeErrorPlot() {
rmPlot("errorPlot");
}
/**
* Remove 2D phase plot
*
* @params None.
* @return Nothing. Just removes the plot.
*/
function removePhasePlot() {
rmPlot("phasePlot");
}
/**
* Remove pendulum 1 coordinates plot
*
* @params None.
* @return Nothing.
*/
function removePendulum1Plot() {
rmPlot("pendulum1Plot");
}
/**
* Remove pendulum 1 coordinates against time plot
*
* @params None.
* @return Nothing.
*/
function removePendulum1TimePlot() {
rmPlot("pendulum1TimePlot");
}
/**
* Remove pendulum 2 coordinates plot
*
* @params None.
* @return Nothing.
*/
function removePendulum2Plot() {
rmPlot("pendulum2Plot");
}
/**
* Remove pendulum 2 coordinates against time plot
*
* @params None.
* @return Nothing.
*/
function removePendulum2TimePlot() {
rmPlot("pendulum2TimePlot");
}
/**
* Removes solution plots
*
* @params None.
* @return Nothing. Just removes the solution plots.
*/
// function removePlots() {
// // Clear HTML and CSS of the plots
// removeXYPhasePlot();
// removeXZPhasePlot();
// removeYZPhasePlot();
// remove3DPhasePlot();
// removePhasePlot();
// removeTimePlot();
// removeErrorPlot();
// removeXXDotPhasePlot();
// removeXThetaPhasePlot();
// removeThetaThetaDotPhasePlot();
// removeTheta1Theta2PhasePlot();
// removeTheta1Dtheta1PhasePlot();
// removeTheta1Dtheta2PhasePlot();
// removeTheta2Dtheta1PhasePlot();
// removeTheta2Dtheta2PhasePlot();
// removeDtheta1Dtheta2PhasePlot();
// removePendulum1Plot();
// removePendulum1TimePlot();
// removePendulum2Plot();
// removePendulum2TimePlot();
// removePendulumPlots();
// }
/**
* Remove all pendulum coordinate plots.
*
* @params None.
* @return Nothing.
*/
function removePendulumPlots() {
removePendulum1Plot();
removePendulum1TimePlot();
removePendulum2Plot();
removePendulum2TimePlot();
rmPlot("pendulumPlot");
rmPlot("pendulumTimePlot");
}
function fixPlotHeight(plotID) {
const container = document.getElementById(plotID)?.closest('.plot-container');
const svg = container?.querySelector('.svg-container');
if (container && svg) {
container.style.height = svg.offsetHeight + "px";
}
}
function min(x) {
var min;
try {
min = Math.min(...x)
} catch(e) {
if (e instanceof RangeError) {
min = x.reduce((a, b) => Math.min(a, b), Infinity);
} else {
throw e;
}
}
return min;
}
function max(x) {
var max;
try {
max = Math.max(...x)
} catch(e) {
if (e instanceof RangeError) {
max = x.reduce((a, b) => Math.max(a, b), -Infinity);
} else {
throw e;
}
}
return max;
}
/**
* Range of values for a plot.
* @param x Either an array or array of arrays.
* @returns Vector of values corresponding to minimum of x - 1% padding,
* maximum of x + 1% padding.
*/
function range(x) {
if (x[0].length == undefined) {
var xmin = min(x);
var xmax = max(x);
} else {
var xmin = max(x[0]);
var xmax = min(x[0]);
for (let i = 0; i < x.length; i++) {
let xmini = min(x[i]);
let xmaxi = max(x[i]);
if (xmin > xmini) {
xmin = xmini;
}
if (xmax < xmaxi) {
xmax = xmaxi;
}
}
}
let range = xmax - xmin;
let padding = range * 0.02;
return [xmin - padding, xmax+padding]
}
function addTitleAndFrmt(objectOfInputs, element, {title: title, label:label} = {}) {
if (/[pP]lot/.test(element)) {
var plotID = element;
} else {
var plotID = "animation" + element;
}
var contID = "container" + element;
var contEl = document.getElementById(contID)
var plotEl = document.getElementById(plotID)
if (label == undefined) {
var label = title;
}
if (title == undefined) {
var title = "Animation of the " + label.toLowerCase() + ".";
}
var infoEl = document.getElementById("info" + element)
if (infoEl) {
infoEl.innerHTML = title;
}
infoEl.style = "padding-top: 0px; border-bottom: 1px solid black; margin-bottom: 5px; width:100%;"
contEl.style = "border: 1px solid black; padding-bottom: 5px; padding-top: 0px; padding-left: 5px; width:100%";
plotEl.width = objectOfInputs.Width + "px";
plotEl.height = objectOfInputs.Height + "px";
document.getElementById(contID)
?.style.setProperty("display", "inline-block", "important");
return plotID;
}
/**
* Calculate scaled font size based on plot dimensions
* @param {number} width - Plot width
* @param {number} height - Plot height
* @param {number} minSize - Minimum font size (default: 16)
* @param {number} maxSize - Maximum font size (default: 24)
* @param {number} baseWidth - Base width for minimum size (default: 800)
* @param {number} baseHeight - Base height for minimum size (default: 600)
* @param {number} maxWidth - Width for maximum size (default: 1920)
* @param {number} maxHeight - Height for maximum size (default: 1080)
* @returns {number} Scaled font size
*/
function getScaledFontSize(width, height, minSize = 16, maxSize = 24,
baseWidth = 800, baseHeight = 600,
maxWidth = 1920, maxHeight = 1080) {
// Calculate scaling factors for width and height
const widthFactor = Math.min(Math.max((width - baseWidth) / (maxWidth - baseWidth), 0), 1);
const heightFactor = Math.min(Math.max((height - baseHeight) / (maxHeight - baseHeight), 0), 1);
// Use the average of width and height factors (or you could use max/min)
const scaleFactor = (widthFactor + heightFactor) / 2;
// Linear interpolation between minSize and maxSize
const fontSize = minSize + (maxSize - minSize) * scaleFactor;
return Math.round(fontSize);
}
/**
* Get scaled font sizes for different plot elements
* @param {number} width - Plot width
* @param {number} height - Plot height
* @returns {object} Object with scaled font sizes for different elements
*/
function getPlotFontSizes(objectOfInputs) {
return {
title: getScaledFontSize(objectOfInputs.Width, objectOfInputs.Height, 20, 32), // Title: 20-32px
axisTitle: getScaledFontSize(objectOfInputs.Width, objectOfInputs.Height, 16, 24), // Axis titles: 16-24px
axisLabels: getScaledFontSize(objectOfInputs.Width, objectOfInputs.Height, 12, 18), // Axis labels: 12-18px
legend: getScaledFontSize(objectOfInputs.Width, objectOfInputs.Height, 12, 16), // Legend: 12-16px
annotation: getScaledFontSize(objectOfInputs.Width, objectOfInputs.Height, 16, 24) // Annotations: 16-24px
};
}
function margin(objectOfInputs) {
return { l: Math.max(0.04*objectOfInputs.Width, 60),
r: 0,
b: 0.20*objectOfInputs.Height,
t: 0.20*objectOfInputs.Height};
}
function marginAn(timer, objectOfInputs) {
if (timer[1] > 0.95) {
var top = Math.max(0.08*objectOfInputs.Height, 48);
} else {
var top = 0;
}
// var top = 0;
return { l: Math.max(0.04*objectOfInputs.Width, 60),
r: 0,
b: 0.20*objectOfInputs.Height,
t: top};
}
/**
* Generate 2D plot
* @param x Array of x-axis values.
* @param y Array of y-axis values.
* @param element HTML element of the plot.
* @param title Title of the plot.
* @return Nothing.
*/
function gen2DPlot(x, y, element, title, xtitle="x", ytitle="y") {
// Height and width of the plot
adjustPlotHeight(element);
var objectOfInputs = readInputs();
var plotXY = {
x: x,
y: y,
type: 'scatter',
mode: 'lines',
opacity: 1
}
var dataXY = [plotXY];
// layout object
var fontSizes = getPlotFontSizes(objectOfInputs)
var layoutXY = {
margin: margin(objectOfInputs), // make space for labels
width: objectOfInputs.Width,
height: objectOfInputs.Height,
title: {text: title, font: {size: fontSizes.title }},
xaxis: {
range: range(x),
title: {text: xtitle, font: {size: fontSizes.axisTitle}},
tickfont: {size: fontSizes.axisLabels}
},
yaxis: {
range: range(y),
title: {text: ytitle, font: {size: fontSizes.axisTitle}},
tickfont: {size: fontSizes.axisLabels}
},
font: {size: fontSizes.legend}
};
Plotly.newPlot(element, dataXY, layoutXY);
fixPlotHeight(element);
}
/**
* Generate 3D plot
*
* @param x Array storing x-values.
* @param y Array storing y-values.
* @param z Array storing z-values.
* @param element HTML element the plot will go in.
* @param title Title for the plot.
*/
function gen3DPlot(x, y, z, element, title, {view = undefined, xtitle="x", ytitle="y", ztitle="z"} = {}) {
// Height and width of plot
adjustPlotHeight(element);
var objectOfInputs = readInputs();
// Plot object and data object array
var plotXYZ = {
x: x,
y: y,
z: z,
type: 'scatter3d',
mode: 'lines',
opacity: 1,
line: {
width: 6,
reversescale: false
}
};
var dataXYZ = [plotXYZ];
// layout object
var fontSizes = getPlotFontSizes(objectOfInputs)
var layoutXYZ = {
margin: margin(objectOfInputs), // make space for labels
width: objectOfInputs.Width,
height: objectOfInputs.Height,
title: {text: title, font: {size: fontSizes.title }},
xaxis: {
range: range(x),
title: {text: xtitle, font: {size: fontSizes.axisTitle}},
tickfont: {size: fontSizes.axisLabels}
},
yaxis: {
range: range(y),
title: {text: ytitle, font: {size: fontSizes.axisTitle}},
tickfont: {size: fontSizes.axisLabels}
},
font: {size: fontSizes.legend},
zaxis: {
range: range(z),
title: { text: ztitle, font: {size: fontSizes.axisTitle}},
tickfont: {size: fontSizes.axisLabels}
}
}
if (typeof view !== "undefined") {
layoutXYZ.scene = {
camera: {
eye: {
x: view[0], // Set to 0 to align the camera with the YZ plane
y: view[1],
z: view[2]
}
}
}
}
Plotly.newPlot(element, dataXYZ, layoutXYZ);
fixPlotHeight(element);
}
/**
* Generate multiple time plots on the one graph
*
* @param solution Solution object.
* @param varnames Names for the variables to be displayed on the plot.
* @param element HTML element of the plot.
* @param title Title of the plot.
* @return Nothing.
*/
function genMultPlot(solution, varnames, element, title) {
// Height and width of plot
adjustPlotHeight(element);
var objectOfInputs = readInputs();
// Extract solution
var {t, vars} = solution;
// Plot object and data object array
if (vars.length == 3) {
var [x, y, z] = vars;
var plotTX = {
x: t,
y: x,
type: 'scatter',
mode: 'lines',
opacity: 1,
name: varnames[0]
};
var plotTY = {
x: t,
y: y,
type: 'scatter',
mode: 'lines',
opacity: 1,
name: varnames[1]
};
var plotTZ = {
x: t,
y: z,
type: 'scatter',
mode: 'lines',
opacity: 1,
name: varnames[2]
};
var dataTimePlot = [plotTX, plotTY, plotTZ];
} else if (vars.length == 2) {
var [x, y] = vars;
var plotTX = {
x: t,
y: x,
type: 'scatter',
mode: 'lines',
opacity: 1,
name: varnames[0]
};
var plotTY = {
x: t,
y: y,
type: 'scatter',
mode: 'lines',
opacity: 1,
name: varnames[1]
};
var dataTimePlot = [plotTX, plotTY];
} else if (vars.length == 4) {
var [S, E, I, R] = vars;
var plotTS = {
x: t,
y: S,
type: 'scatter',
mode: 'lines',
opacity: 1,
name: varnames[0]
};
var plotTE = {
x: t,
y: E,
type: 'scatter',
mode: 'lines',
opacity: 1,
name: varnames[1]
};
var plotTI = {
x: t,
y: I,
type: 'scatter',
mode: 'lines',
opacity: 1,
name: varnames[2]
};
var plotTR = {
x: t,
y: R,
type: 'scatter',
mode: 'lines',
opacity: 1,
name: varnames[3]
};
var dataTimePlot = [plotTS, plotTE, plotTI, plotTR];
} else {
var N = vars.length;
var dataTimePlot = new Array(N);
for (let i = 0; i < N; i++) {
var plot = {
x: t,
y: vars[i],
type: 'scatter',
mode: 'lines',
opacity: 1,
name: varnames[i]
};
dataTimePlot[i] = plot;
}
}
var fontSizes = getPlotFontSizes(objectOfInputs);
// layout object
var layoutTimePlot = {
margin: margin(objectOfInputs), // make space for labels
width: objectOfInputs.Width,
height: objectOfInputs.Height,
title: {text: title, font: {size: fontSizes.title }},
xaxis: {
range: range(t),
title: {text: "t", font: {size: fontSizes.axisTitle}},
tickfont: {size: fontSizes.axisLabels}
},
yaxis: {
range: range(vars),
title: {text: "Variables", font: {size: fontSizes.axisTitle}},
tickfont: {size: fontSizes.axisLabels}
},
font: {size: fontSizes.legend}
};
Plotly.newPlot(element, dataTimePlot, layoutTimePlot);
fixPlotHeight(element);
}
function generatePendulumCoords(objectOfInputs, solution) {
if (objectOfInputs.hasOwnProperty("l1") && solution.vars.length == 8) {
// Extract solution values and pendulum lengths
var {t, vars} = solution;
var [r1, dr1, r2, dr2, theta1, dtheta1, theta2, dtheta2] = vars;
var N = theta1.length;
// Initialize arrays that will store x and y coords
var x1 = new Array(N);
var x2 = new Array(N);
var y1 = new Array(N);
var y2 = new Array(N);
for (let i = 0; i < N; i++) {
x1[i] = r1[i]*Math.cos(theta1[i]);
y1[i] = r1[i]*Math.sin(theta1[i]);
x2[i] = x1[i] + r2[i]*Math.cos(theta2[i]);
y2[i] = y1[i] + r2[i]*Math.sin(theta2[i]);
}
// Return t and Cartesian coordinates of the pendulum bobs
return [t, x1, y1, x2, y2];
} else if (objectOfInputs.hasOwnProperty("l3")) {
// Extract solution values and pendulum lengths
var {t, vars} = solution;
var [theta1, dtheta1, theta2, dtheta2, theta3, dtheta3] = vars;
var {l1, l2, l3} = objectOfInputs;
var N = theta1.length;
// Initialize arrays that will store x and y coords
var x1 = new Array(N);
var x2 = new Array(N);
var y1 = new Array(N);
var y2 = new Array(N);
var x3 = new Array(N);
var y3 = new Array(N);
for (let i = 0; i < N; i++) {
x1[i] = l1*Math.cos(theta1[i]);
y1[i] = l1*Math.sin(theta1[i]);
x2[i] = x1[i] + l2*Math.cos(theta2[i]);
y2[i] = y1[i] + l2*Math.sin(theta2[i]);
x3[i] = x2[i] + l3*Math.cos(theta3[i]);
y3[i] = y2[i] + l3*Math.sin(theta3[i]);
}
// Return t and Cartesian coordinates of the pendulum bobs
return [t, x1, y1, x2, y2, x3, y3];
} else if (objectOfInputs.hasOwnProperty("l1")) {
// Extract solution values and pendulum lengths
var {t, vars} = solution;
var [theta1, dtheta1, theta2, dtheta2] = vars;
var {l1, l2} = objectOfInputs;
var N = theta1.length;
// Initialize arrays that will store x and y coords
var x1 = new Array(N);
var x2 = new Array(N);
var y1 = new Array(N);
var y2 = new Array(N);
for (let i = 0; i < N; i++) {
x1[i] = l1*Math.cos(theta1[i]);
y1[i] = l1*Math.sin(theta1[i]);
x2[i] = x1[i] + l2*Math.cos(theta2[i]);
y2[i] = y1[i] + l2*Math.sin(theta2[i]);
}
// Return t and Cartesian coordinates of the pendulum bobs
return [t, x1, y1, x2, y2];
} else {
var vars = solution.vars;
if (solution.varsLen() > 2) {
var r = vars[0].map(item => item + objectOfInputs.l0);
var th = vars[2];
} else {
var r = objectOfInputs.l
var th = vars[0];
}
var N = th.length;
var x = new Array(N);
var y = new Array(N);
for (let i = 0; i < N; i++) {
if (typeof(r) == 'number') {
ri = r;
} else {
ri = r[i];
}
x[i] = ri*Math.cos(th[i]);
y[i] = ri*Math.sin(th[i]);
}
return [x, y];
}
}
function generatePendulumPlot(objectOfInputs, solution) {
if (objectOfInputs.hasOwnProperty("l1") && !objectOfInputs.hasOwnProperty("l3")) {
// This is for double pendulum
var [t1, x1, y1, x2, y2] = generatePendulumCoords(objectOfInputs, solution);
var x=[x1, x2];
var y=[y1, y2];
} else if (objectOfInputs.hasOwnProperty("l3")) {
var [t1, x1, y1, x2, y2, x3, y3] = generatePendulumCoords(objectOfInputs, solution);
var x=[x1, x2, x3];
var y=[y1, y2, y3];
} else {
// single pendulum systems
var [x, y] = generatePendulumCoords(objectOfInputs, solution);
}
var element = "pendulumPlot"
var fontSizes = getPlotFontSizes(objectOfInputs);
if (x1 == undefined) {
adjustPlotHeight("pendulumPlot");
// Show two pendulum bob locations on the same plot
var plotPen = {
x: x,
y: y,
type: 'scatter',
mode: 'lines',
opacity: 1,
name: "Pendulum bob"
}
var dataPen = [plotPen];
var layoutPen = {
margin: margin(objectOfInputs), // make space for labels
width: objectOfInputs.Width,
height: objectOfInputs.Height,
title: {text: "Pendulum position plot.", font: {size: fontSizes.title }},
xaxis: {
range: range(x),
title: {text: "x", font: {size: fontSizes.axisTitle}},
tickfont: {size: fontSizes.axisLabels}
},
yaxis: {
range: range(y),
title: {text: "y", font: {size: fontSizes.axisTitle}},
tickfont: {size: fontSizes.axisLabels}
},
font: {size: fontSizes.legend}
};
} else if (x3 == undefined) {
adjustPlotHeight(element);
// Show two pendulum bob locations on the same plot
var plotPen1 = {
x: x1,
y: y1,
type: 'scatter',
mode: 'lines',
opacity: 1,
name: "Pendulum 1 bob"
}
var plotPen2 = {
x: x2,
y: y2,
type: 'scatter',
mode: 'lines',
opacity: 1,
name: "Pendulum 2 bob"
}
var dataPen = [plotPen1, plotPen2];
var layoutPen = {
margin: margin(objectOfInputs), // make space for labels
width: objectOfInputs.Width,
height: objectOfInputs.Height,
title: {text: "Pendulum position plot.", font: {size: fontSizes.title }},
xaxis: {
range: range(x),
title: {text: "x", font: {size: fontSizes.axisTitle}},
tickfont: {size: fontSizes.axisLabels}
},
yaxis: {
range: range(y),
title: {text: "y", font: {size: fontSizes.axisTitle}},
tickfont: {size: fontSizes.axisLabels}
},
font: {size: fontSizes.legend}
};
} else {
adjustPlotHeight(element);
// Show two pendulum bob locations on the same plot
var plotPen1 = {
x: x1,
y: y1,
type: 'scatter',
mode: 'lines',
opacity: 1,
name: "Pendulum 1 bob"
}
var plotPen2 = {
x: x2,
y: y2,
type: 'scatter',
mode: 'lines',
opacity: 1,
name: "Pendulum 2 bob"
}
var plotPen3 = {
x: x3,
y: y3,
type: 'scatter',
mode: 'lines',
opacity: 1,
name: "Pendulum 3 bob"
}
var dataPen = [plotPen1, plotPen2, plotPen3];
var layoutPen = {
margin: margin(objectOfInputs), // make space for labels
width: objectOfInputs.Width,
height: objectOfInputs.Height,
title: {text: "Pendulum position plot.", font: {size: fontSizes.title }},
xaxis: {
range: range(x),
title: {text: "x", font: {size: fontSizes.axisTitle}},
tickfont: {size: fontSizes.axisLabels}
},
yaxis: {
range: range(y),
title: {text: "y", font: {size: fontSizes.axisTitle}},
tickfont: {size: fontSizes.axisLabels}
},
font: {size: fontSizes.legend}
};
}
Plotly.newPlot(element, dataPen, layoutPen);
fixPlotHeight(element);
}
function generatePendulumTimePlot(objectOfInputs, solution) {
if (objectOfInputs.hasOwnProperty("l1") && !objectOfInputs.hasOwnProperty("l3")) {
// This is for double pendulum
var [t1, x1, y1, x2, y2] = generatePendulumCoords(objectOfInputs, solution);
var x=[x1, x2];
var y=[y1, y2];
} else if (objectOfInputs.hasOwnProperty("l3")) {
var [t1, x1, y1, x2, y2, x3, y3] = generatePendulumCoords(objectOfInputs, solution);
var x=[x1, x2, x3];
var y=[y1, y2, y3];
} else {
// single pendulum systems
var [x, y] = generatePendulumCoords(objectOfInputs, solution);
}
var element = "pendulumTimePlot";
adjustPlotHeight(element);
var t = solution.t
if (x1 == undefined) {
// Plot pendulum bob location against time plot
var plotPenTime = {
x: t,
y: x,
z: y,
type: 'scatter3d',
mode: 'lines',
opacity: 1,
line: {
width: 6,
reversescale: false
},
name: "Pendulum"
}
var dataPen = [plotPenTime];
} else if (x3 == undefined) {
// Plot pendulum bob location against time plot
var plotPen1Time = {
x: t,
y: x1,
z: y1,
type: 'scatter3d',
mode: 'lines',
opacity: 1,
line: {
width: 6,
reversescale: false
},
name: "Pendulum 1 bob"
};
var plotPen2Time = {
x: t,
y: x2,
z: y2,
type: 'scatter3d',
mode: 'lines',
opacity: 1,
line: {
width: 6,
reversescale: false
},
name: 'Pendulum 2 bob'
};
var x = [x1, x2];
var y = [y1, y2];
var dataPen = [plotPen1Time, plotPen2Time];
} else {
// Plot pendulum bob location against time plot
var plotPen1Time = {
x: t,
y: x1,
z: y1,
type: 'scatter3d',
mode: 'lines',
opacity: 1,
line: {
width: 6,
reversescale: false
},
name: "Pendulum 1 bob"
};
var plotPen2Time = {
x: t,
y: x2,
z: y2,
type: 'scatter3d',
mode: 'lines',
opacity: 1,
line: {
width: 6,
reversescale: false
},
name: 'Pendulum 2 bob'
};
var plotPen3Time = {
x: t,
y: x3,
z: y3,
type: 'scatter3d',
mode: 'lines',
opacity: 1,
line: {
width: 6,
reversescale: false
},
name: 'Pendulum 3 bob'
};
var x = [x1, x2, x3];
var y = [y1, y2, y3];
var dataPen = [plotPen1Time, plotPen2Time, plotPen3Time];
}
var fontSizes = getPlotFontSizes(objectOfInputs);
var layoutPenTime = {
margin: margin(objectOfInputs), // make space for labels
width: objectOfInputs.Width,
height: objectOfInputs.Height,
title: {text: "Generate pendulum time plot.", font: {size: fontSizes.title }},
xaxis: {
range: range(t),
title: {text: "t", font: {size: fontSizes.axisTitle}},
tickfont: {size: fontSizes.axisLabels}
},
yaxis: {
range: range(x),
title: {text: "x", font: {size: fontSizes.axisTitle}},
tickfont: {size: fontSizes.axisLabels}
},
font: {size: fontSizes.legend},
zaxis: {
range: range(y),
title: { text: "y", font: {size: fontSizes.axisTitle}},
tickfont: {size: fontSizes.axisLabels}
}
};
Plotly.newPlot(element, dataPen, layoutPenTime);
fixPlotHeight(element);
}
function generatePendulumPlots(objectOfInputs, solution) {
generatePendulumPlot(objectOfInputs, solution);
generatePendulumTimePlot(objectOfInputs, solution);
}
/**
* Update time label in animation.
* @param layout Layout object for animation.
* @param t Time vector for solution.
* @param frame Frame number we are up to in the animation.
* @param IdSuffix Suffix of element IDs used.
* @return Nothing.
*/
function updateTimeLabel(layout, fontSizes, t, state, IdSuffix) {
layout.annotations[0].text = `Time: ${t[state.frame].toFixed(2)} s`;
layout.annotations[0].font = { size: fontSizes.annotation};
Plotly.relayout('animation' + IdSuffix, layout);
}
/**
* Pause animation via button.
* @param state State object for animation.
* @param IdSuffix Suffix of element IDs used.
* @param animateFrame animateFrame function.
* @return Nothing.
*/
function pause(state, IdSuffix, animateFrame) {
const pauseButton = document.getElementById("toggleButton" + IdSuffix);
if (!pauseButton) return;
pauseButton.addEventListener("click", () => {
state.paused = !state.paused;
pauseButton.textContent = state.paused ? "Play" : "Pause";
if (state.paused) {
state.pauseStart = Date.now();