-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPhysRevA.102.042218.nb
2647 lines (2613 loc) · 126 KB
/
PhysRevA.102.042218.nb
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
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 12.3' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 128613, 2639]
NotebookOptionsPosition[ 126825, 2607]
NotebookOutlinePosition[ 127219, 2623]
CellTagsIndexPosition[ 127176, 2620]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[TextData[StyleBox["Quantum-stochasticity-induced asymmetry in the \
angular distribution of electrons in a quasiclassical regime", "Title",
FontWeight->"Regular",
FontColor->RGBColor[
0.2964217593652247, 0.6292210269321736, 0.2727702754253452]]], "Text",
CellChangeTimes->{{3.822636147120782*^9, 3.822636149053595*^9}, {
3.822636240732341*^9, 3.82263625191656*^9}, {3.822637212068983*^9,
3.822637212721833*^9}, 3.823094727278884*^9, {3.833550853313994*^9,
3.833550862795432*^9}, {3.833795877595468*^9, 3.833795921123438*^9}, {
3.8337976113677797`*^9, 3.8337976215952806`*^9}, {3.8368849167533627`*^9,
3.836884938754459*^9}, {3.836885017010099*^9, 3.83688501802005*^9}, {
3.838269556945876*^9, 3.8382695941735563`*^9}, {3.838269705424317*^9,
3.8382697091991663`*^9}, 3.8831173137769127`*^9, {3.8862456737560463`*^9,
3.886245692971734*^9}},ExpressionUUID->"8475005d-885e-4226-9a07-\
9930eedbe8ad"],
Cell[TextData[{
StyleBox["Paper: Hu et al, Phys Rev A 102, 042218 (2020)\nNotebook: \
\[CapitalOAcute]scar Amaro, February 2023 @", "Section",
FontSize->24,
FontColor->GrayLevel[0]],
StyleBox[ButtonBox[" ",
BaseStyle->"Hyperlink",
ButtonData->{
URL["http://epp.ist.utl.pt/"], None},
ButtonNote->"http://epp.ist.utl.pt/"], "Section",
FontSize->24,
FontColor->GrayLevel[0]],
StyleBox[ButtonBox["GoLP-EPP",
BaseStyle->"Hyperlink",
ButtonData->{
URL["http://epp.ist.utl.pt/"], None},
ButtonNote->"http://epp.ist.utl.pt/"], "Section",
FontSize->24,
FontVariations->{"Underline"->True},
FontColor->GrayLevel[0]]
}], "Text",
CellChangeTimes->{{3.8226362283387003`*^9, 3.822636334723393*^9},
3.822636391632341*^9, {3.8226372468331547`*^9, 3.822637246833611*^9}, {
3.832755002125525*^9, 3.8327550028655148`*^9}, {3.8328159555988827`*^9,
3.8328159559877577`*^9}, {3.833550866979972*^9, 3.8335508675107203`*^9}, {
3.8337959288036613`*^9, 3.833795929749477*^9}, {3.836884940028832*^9,
3.836884940645474*^9}, {3.8382695643134193`*^9, 3.8382695830795717`*^9}, {
3.838269712757929*^9, 3.838269733266273*^9}, 3.88181907427205*^9, {
3.883117777672618*^9, 3.88311778570466*^9}, {3.886245698420047*^9,
3.886245703659898*^9}, {3.886245774881447*^9, 3.886245789441456*^9}, {
3.886246002137081*^9, 3.886246005361104*^9}},
FontSize->14,ExpressionUUID->"21944ec4-9f68-4e5c-a477-fa5b6efad296"],
Cell[TextData[{
StyleBox["Introduction", "Section",
FontSize->24,
FontWeight->"Bold",
FontColor->GrayLevel[0]],
StyleBox["\nQuantum stochastic angular broadening in electron-LP laser \
scattering.\nWe compare this notebook\[CloseCurlyQuote]s implementation with \
data retrieved from the paper (with WebPlotDigitizer).", "Section",
FontSize->24,
FontColor->GrayLevel[0]]
}], "Text",
CellChangeTimes->{{3.8226362283387003`*^9, 3.822636334723393*^9}, {
3.822636391632341*^9, 3.8226364148286*^9}, {3.822636632459257*^9,
3.82263666754714*^9}, {3.8226367225529222`*^9, 3.822636739164402*^9}, {
3.8230947324882936`*^9, 3.823094753820561*^9}, {3.833550870010079*^9,
3.8335508705241623`*^9}, {3.833552192734445*^9, 3.833552244447419*^9}, {
3.833795945276964*^9, 3.833795995813528*^9}, {3.833797624215995*^9,
3.833797700970443*^9}, {3.836884956779365*^9, 3.8368850450508223`*^9}, {
3.838269587610732*^9, 3.8382696377305927`*^9}, {3.838269737595594*^9,
3.838269819553781*^9}, {3.8862460104117203`*^9, 3.8862460355767508`*^9}, {
3.886328927112472*^9, 3.886328955088323*^9}},
FontSize->14,ExpressionUUID->"3f4a0901-22a9-493e-8bcf-d27483433b40"],
Cell[CellGroupData[{
Cell["Figures 4, 5 and 6", "Chapter",
CellChangeTimes->{{3.883665569166625*^9, 3.883665570134708*^9}, {
3.8836665512714*^9,
3.883666555574975*^9}},ExpressionUUID->"d744eb32-db99-4c69-bb2e-\
3b79c3f20114"],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"SetDirectory", "[",
RowBox[{"NotebookDirectory", "[", "]"}], "]"}],
";"}], "\[IndentingNewLine]",
RowBox[{"Clear", "[",
RowBox[{
"\[CapitalDelta]\[Theta]y", ",", "\[CapitalDelta]\[Theta]x", ",",
"\[CapitalDelta]\[Theta]i", ",", "\[CapitalDelta]\[Theta]p", ",",
"\[Epsilon]0", ",", "\[Gamma]", ",", "m", ",", "\[Tau]", ",", "T0", ",",
"\[Sigma]y", ",", "W0", ",", "a0", ",", "\[Delta]", ",",
"\[CapitalDelta]\[Theta]Q", ",", "imgsz", ",", "asp", ",", "fig4alst", ",",
"fig4alst2", ",", "fig4blst", ",", "fig4blst2"}],
"]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"asp", "=",
RowBox[{"1", "/", "2"}]}], ";",
RowBox[{"imgsz", "=", "300"}], ";"}], "\[IndentingNewLine]",
"\[IndentingNewLine]",
RowBox[{"(*", " ",
RowBox[{
RowBox[{"fixed", " ", "parameters"}], ",", " ",
RowBox[{"beginning", " ", "of", " ", "section", " ", "IV"}]}], " ",
"*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Gamma]", "=",
RowBox[{"\[Epsilon]0", "/", "0.511"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"\[CapitalDelta]\[Theta]i", "=", "0.001"}], ";"}], " ",
RowBox[{"(*",
RowBox[{"[", "rad", "]"}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"T0", "=", "1"}], ";"}], "\[IndentingNewLine]",
RowBox[{"(*", " ",
RowBox[{
RowBox[{"\[Epsilon]0", "=",
RowBox[{"300", " ", "MeV"}]}], ",", " ",
RowBox[{"W0", "=",
RowBox[{"3", " ", "\[Mu]m"}]}], ",", " ",
RowBox[{"\[Tau]", "=",
RowBox[{"8", " ", "T0"}]}], ",", " ",
RowBox[{"\[Sigma]y", "=",
RowBox[{"0.3", " ", "\[Mu]m"}]}]}], " ", "*)"}], "\[IndentingNewLine]",
"\[IndentingNewLine]",
RowBox[{"(*", " ", "equations", " ", "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"\[CapitalDelta]\[Theta]y", "=",
RowBox[{"Sqrt", "[",
RowBox[{
RowBox[{
RowBox[{"(", "\[CapitalDelta]\[Theta]i", ")"}], "^", "2"}], "+",
RowBox[{
RowBox[{"(", "\[CapitalDelta]\[Theta]p", ")"}], "^", "2"}]}], "]"}]}],
";"}],
RowBox[{"(*", "14", "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"\[CapitalDelta]\[Theta]p", "=",
FractionBox[
RowBox[{"1.07",
RowBox[{"a0", "^", "2"}], " ", "\[Sigma]y", " ", "\[Tau]"}],
RowBox[{
RowBox[{"\[Gamma]", "^", "2"}], " ",
RowBox[{"W0", "^", "2"}], " ", "T0"}]]}], ";"}],
RowBox[{"(*", "15", "*)"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{
RowBox[{"\[CapitalDelta]\[Theta]Q", " ", "=",
FractionBox[
RowBox[{"2",
RowBox[{"Sqrt", "[",
RowBox[{"2",
RowBox[{"Log", "[", "2", "]"}], "\[Sigma]px"}], "]"}]}],
RowBox[{"m", " ", "\[Gamma]"}]]}], ";"}],
RowBox[{"(*", "16", "*)"}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"\[CapitalDelta]\[Theta]Q", "=",
RowBox[{
RowBox[{"(",
RowBox[{"3.3", " ",
RowBox[{"10", "^",
RowBox[{"-", "6"}]}]}], " ", ")"}],
RowBox[{"(",
RowBox[{"a0", "^", "2.26"}], ")"}], " ",
RowBox[{"(",
RowBox[{"\[Gamma]", "^",
RowBox[{"-", "0.24"}]}], ")"}], " ",
RowBox[{
RowBox[{"(",
RowBox[{"\[Tau]", "/", "T0"}], ")"}], "^", "0.5"}]}]}], ";"}],
RowBox[{"(*", "17", "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"\[CapitalDelta]\[Theta]x", "=",
RowBox[{"Sqrt", "[",
RowBox[{
RowBox[{"\[CapitalDelta]\[Theta]Q", "^", "2"}], "+",
RowBox[{"\[CapitalDelta]\[Theta]y", "^", "2"}]}], "]"}]}], ";"}],
RowBox[{"(*", " ", "19", " ", "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"\[Delta]", "=",
RowBox[{
FractionBox["\[CapitalDelta]\[Theta]x", "\[CapitalDelta]\[Theta]y"], "//",
"Simplify"}]}], ";"}],
RowBox[{"(*",
RowBox[{"Sqrt", "[",
RowBox[{"1", "+",
FractionBox[
RowBox[{"\[CapitalDelta]\[Theta]Q", "^", "2"}],
RowBox[{
RowBox[{
RowBox[{"(", "\[CapitalDelta]\[Theta]i", ")"}], "^", "2"}], "+",
RowBox[{
RowBox[{"(", "\[CapitalDelta]\[Theta]p", ")"}], "^", "2"}]}]]}],
"]"}], "*)"}], "\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Print", "[", "\"\<FIG. 4\>\"", "]"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Fig4", " ", "a"}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"fig4alst", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"1000", " ", "\[CapitalDelta]\[Theta]x"}], "/.",
RowBox[{"{",
RowBox[{
RowBox[{"\[Epsilon]0", "->", "300"}], ",",
RowBox[{"W0", "->", "3"}], ",",
RowBox[{"\[Tau]", "->", "8"}], ",",
RowBox[{"\[Sigma]y", "->", "0.3"}]}], "}"}]}], ")"}], ",", "a0"}],
"}"}], ",",
RowBox[{"{",
RowBox[{"a0", ",", "10", ",", "100", ",", "1"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"fig4alst2", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"-",
RowBox[{"(",
RowBox[{
RowBox[{"1000", " ", "\[CapitalDelta]\[Theta]x"}], "/.",
RowBox[{"{",
RowBox[{
RowBox[{"\[Epsilon]0", "->", "300"}], ",",
RowBox[{"W0", "->", "3"}], ",",
RowBox[{"\[Tau]", "->", "8"}], ",",
RowBox[{"\[Sigma]y", "->", "0.3"}]}], "}"}]}], ")"}]}], ",",
"a0"}], "}"}], ",",
RowBox[{"{",
RowBox[{"a0", ",", "10", ",", "100", ",", "1"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Show", "[",
RowBox[{"{",
RowBox[{
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"{",
RowBox[{"fig4alst", ",", "fig4alst2"}], "}"}], ",",
RowBox[{"Joined", "\[Rule]", "True"}], ",",
RowBox[{"PlotRange", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"-", "100"}], ",",
RowBox[{"+", "100"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{"10", ",", "100"}], "}"}]}], "}"}]}], ",",
RowBox[{"Frame", "\[Rule]", "True"}], ",",
RowBox[{"FrameLabel", "\[Rule]",
RowBox[{"{",
RowBox[{"\"\<\[Theta]x\>\"", ",", "\"\<a0\>\""}], "}"}]}], ",",
RowBox[{"FrameTicks", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"30", ",", "50", ",", "70", ",", "90"}], "}"}], ",",
"None"}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"-", "75"}], ",",
RowBox[{"-", "50"}], ",",
RowBox[{"-", "25"}], ",", "0", ",", "25", ",", "50", ",",
"75"}], "}"}], ",", "None"}], "}"}]}], "}"}]}], ",",
RowBox[{"GridLines", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"-", "75"}], ",",
RowBox[{"-", "50"}], ",",
RowBox[{"-", "25"}], ",", "0", ",", "25", ",", "50", ",", "75"}],
"}"}], ",",
RowBox[{"{",
RowBox[{"30", ",", "50", ",", "70", ",", "90"}], "}"}]}], "}"}]}],
",",
RowBox[{"ImageSize", "\[Rule]", "imgsz"}], ",", " ",
RowBox[{"AspectRatio", "\[Rule]", "asp"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"{",
RowBox[{"Black", ",", "Dashed"}], "}"}], "}"}]}], ",",
RowBox[{"PlotLabel", "\[Rule]", "\"\<FIG. 4 (a)\>\""}]}], "]"}], ",",
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"Import", "[", "\"\<data/fig4a_estimate.csv\>\"", "]"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Cyan", ",",
RowBox[{"Opacity", "[", "0.3", "]"}]}], "}"}]}], ",",
RowBox[{"PlotLegends", "\[Rule]", "\"\<Cyan Estimate\>\""}]}], "]"}],
",",
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"Import", "[", "\"\<data/fig4a_numerical.csv\>\"", "]"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Red", ",",
RowBox[{"Opacity", "[", "0.3", "]"}]}], "}"}]}], ",",
RowBox[{"PlotLegends", "\[Rule]", "\"\<Red Numerical\>\""}]}], "]"}]}],
"}"}], "]"}], "\[IndentingNewLine]", "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Fig4", " ", "b"}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"fig4blst", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"1000", " ", "\[CapitalDelta]\[Theta]y"}], "/.",
RowBox[{"{",
RowBox[{
RowBox[{"\[Epsilon]0", "->", "300"}], ",",
RowBox[{"W0", "->", "3"}], ",",
RowBox[{"\[Tau]", "->", "8"}], ",",
RowBox[{"\[Sigma]y", "->", "0.3"}]}], "}"}]}], ")"}], ",", "a0"}],
"}"}], ",",
RowBox[{"{",
RowBox[{"a0", ",", "10", ",", "100", ",", "1"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"fig4blst2", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"-",
RowBox[{"(",
RowBox[{
RowBox[{"1000", " ", "\[CapitalDelta]\[Theta]y"}], "/.",
RowBox[{"{",
RowBox[{
RowBox[{"\[Epsilon]0", "->", "300"}], ",",
RowBox[{"W0", "->", "3"}], ",",
RowBox[{"\[Tau]", "->", "8"}], ",",
RowBox[{"\[Sigma]y", "->", "0.3"}]}], "}"}]}], ")"}]}], ",",
"a0"}], "}"}], ",",
RowBox[{"{",
RowBox[{"a0", ",", "10", ",", "100", ",", "1"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Show", "[",
RowBox[{"{",
RowBox[{
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"{",
RowBox[{"fig4blst", ",", "fig4blst2"}], "}"}], ",",
RowBox[{"Joined", "\[Rule]", "True"}], ",",
RowBox[{"PlotRange", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"-", "100"}], ",",
RowBox[{"+", "100"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{"10", ",", "100"}], "}"}]}], "}"}]}], ",",
RowBox[{"Frame", "\[Rule]", "True"}], ",",
RowBox[{"FrameLabel", "\[Rule]",
RowBox[{"{",
RowBox[{"\"\<\[Theta]y\>\"", ",", "\"\<a0\>\""}], "}"}]}], ",",
RowBox[{"FrameTicks", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"30", ",", "50", ",", "70", ",", "90"}], "}"}], ",",
"None"}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"-", "75"}], ",",
RowBox[{"-", "50"}], ",",
RowBox[{"-", "25"}], ",", "0", ",", "25", ",", "50", ",",
"75"}], "}"}], ",", "None"}], "}"}]}], "}"}]}], ",",
RowBox[{"GridLines", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"-", "75"}], ",",
RowBox[{"-", "50"}], ",",
RowBox[{"-", "25"}], ",", "0", ",", "25", ",", "50", ",", "75"}],
"}"}], ",",
RowBox[{"{",
RowBox[{"30", ",", "50", ",", "70", ",", "90"}], "}"}]}], "}"}]}],
",",
RowBox[{"ImageSize", "\[Rule]", "imgsz"}], ",", " ",
RowBox[{"AspectRatio", "\[Rule]", "asp"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"{",
RowBox[{"Black", ",", "Dashed"}], "}"}], "}"}]}], ",",
RowBox[{"PlotLabel", "\[Rule]", "\"\<FIG. 4 (b)\>\""}]}], "]"}], ",",
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"Import", "[", "\"\<data/fig4b_estimate.csv\>\"", "]"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Cyan", ",",
RowBox[{"Opacity", "[", "0.3", "]"}]}], "}"}]}], ",",
RowBox[{"PlotLegends", "\[Rule]", "\"\<Cyan Estimate\>\""}]}], "]"}],
",",
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"Import", "[", "\"\<data/fig4b_numerical.csv\>\"", "]"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Red", ",",
RowBox[{"Opacity", "[", "0.3", "]"}]}], "}"}]}], ",",
RowBox[{"PlotLegends", "\[Rule]", "\"\<Red Numerical\>\""}]}], "]"}]}],
"}"}], "]"}], "\[IndentingNewLine]", "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Fig4", " ", "c"}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Show", "[",
RowBox[{"{",
RowBox[{
RowBox[{"Plot", "[",
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"1000", " ", "\[CapitalDelta]\[Theta]Q"}], "/.",
RowBox[{"{",
RowBox[{
RowBox[{"\[Epsilon]0", "->", "300"}], ",",
RowBox[{"W0", "->", "3"}], ",",
RowBox[{"\[Tau]", "->", "8"}], ",",
RowBox[{"\[Sigma]y", "->", "0.3"}]}], "}"}]}], ")"}], ",",
RowBox[{"{",
RowBox[{"a0", ",", "10", ",", "100"}], "}"}], ",",
RowBox[{"PlotRange", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"10", ",", "100"}], "}"}], ",",
RowBox[{"{",
RowBox[{"0", ",", "100"}], "}"}]}], "}"}]}], ",",
RowBox[{"Frame", "\[Rule]", "True"}], ",",
RowBox[{"FrameLabel", "\[Rule]",
RowBox[{"{",
RowBox[{"\"\<a0\>\"", ",", "\"\<\[CapitalDelta]\[Theta]Q\>\""}],
"}"}]}], ",",
RowBox[{"FrameTicks", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"0", ",", "25", ",", "50", ",", "75", ",", "100"}],
"}"}], ",", "None"}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"10", ",", "30", ",", "50", ",", "70", ",", "90"}],
"}"}], ",", "None"}], "}"}]}], "}"}]}], ",",
RowBox[{"GridLines", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"10", ",", "30", ",", "50", ",", "70", ",", "90"}], "}"}],
",",
RowBox[{"{",
RowBox[{"0", ",", "25", ",", "50", ",", "75", ",", "100"}],
"}"}]}], "}"}]}], ",",
RowBox[{"ImageSize", "\[Rule]", "imgsz"}], ",", " ",
RowBox[{"AspectRatio", "\[Rule]", "asp"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"{",
RowBox[{"Black", ",", "Dashed"}], "}"}], "}"}]}], ",",
RowBox[{"PlotLabel", "\[Rule]", "\"\<FIG. 4 (c)\>\""}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"Import", "[", "\"\<data/fig4c_estimate.csv\>\"", "]"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Black", ",",
RowBox[{"Opacity", "[", "0.3", "]"}]}], "}"}]}], ",",
RowBox[{"PlotLegends", "\[Rule]", "\"\<Black Estimate\>\""}]}], "]"}],
",",
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"Import", "[", "\"\<data/fig4c_numerical.csv\>\"", "]"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Red", ",",
RowBox[{"Opacity", "[", "0.3", "]"}]}], "}"}]}], ",",
RowBox[{"PlotLegends", "\[Rule]", "\"\<Red Numerical\>\""}]}], "]"}]}],
"}"}], "]"}], "\[IndentingNewLine]", "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Fig4", " ", "d"}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Show", "[",
RowBox[{"{",
RowBox[{
RowBox[{"Plot", "[",
RowBox[{
RowBox[{"(",
RowBox[{"\[Delta]", "/.",
RowBox[{"{",
RowBox[{
RowBox[{"\[Epsilon]0", "->", "300"}], ",",
RowBox[{"W0", "->", "3"}], ",",
RowBox[{"\[Tau]", "->", "8"}], ",",
RowBox[{"\[Sigma]y", "->", "0.3"}]}], "}"}]}], ")"}], ",",
RowBox[{"{",
RowBox[{"a0", ",", "10", ",", "100"}], "}"}], ",",
RowBox[{"PlotRange", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"10", ",", "100"}], "}"}], ",",
RowBox[{"{",
RowBox[{"0", ",", "6"}], "}"}]}], "}"}]}], ",",
RowBox[{"GridLines", "\[Rule]", "Automatic"}], ",",
RowBox[{"Frame", "\[Rule]", "True"}], ",",
RowBox[{"FrameLabel", "\[Rule]",
RowBox[{"{",
RowBox[{"\"\<a0\>\"", ",", "\"\<\[Delta]\>\""}], "}"}]}], ",",
RowBox[{"ImageSize", "\[Rule]", "imgsz"}], ",", " ",
RowBox[{"AspectRatio", "\[Rule]", "asp"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"{",
RowBox[{"Black", ",", "Dashed"}], "}"}], "}"}]}], ",",
RowBox[{"PlotLabel", "\[Rule]", "\"\<FIG. 4 (d)\>\""}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"Import", "[", "\"\<data/fig4d_estimate.csv\>\"", "]"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Black", ",",
RowBox[{"Opacity", "[", "0.3", "]"}]}], "}"}]}], ",",
RowBox[{"PlotLegends", "\[Rule]", "\"\<Black Estimate\>\""}]}], "]"}],
",",
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"Import", "[", "\"\<data/fig4d_numerical.csv\>\"", "]"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Red", ",",
RowBox[{"Opacity", "[", "0.3", "]"}]}], "}"}]}], ",",
RowBox[{"PlotLegends", "\[Rule]", "\"\<Red Numerical\>\""}]}], "]"}]}],
"}"}], "]"}], "\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Print", "[", "\"\<FIG. 5\>\"", "]"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Fig5", " ", "a"}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Show", "[",
RowBox[{"{",
RowBox[{
RowBox[{"Plot", "[",
RowBox[{
RowBox[{"(",
RowBox[{"\[Delta]", "/.",
RowBox[{"{",
RowBox[{
RowBox[{"a0", "->", "30"}], ",",
RowBox[{"\[Epsilon]0", "->", "300"}], ",",
RowBox[{"W0", "->", "3"}], ",",
RowBox[{"\[Sigma]y", "->", "0.3"}]}], "}"}]}], ")"}], ",",
RowBox[{"{",
RowBox[{"\[Tau]", ",", "4", ",", "40"}], "}"}], ",",
RowBox[{"PlotRange", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"4", ",", "40"}], "}"}], ",",
RowBox[{"{",
RowBox[{"0", ",", "4"}], "}"}]}], "}"}]}], ",",
RowBox[{"Frame", "\[Rule]", "True"}], ",",
RowBox[{"FrameLabel", "\[Rule]",
RowBox[{"{",
RowBox[{"\"\<\[Tau]/T0\>\"", ",", "\"\<\[Delta]\>\""}], "}"}]}], ",",
RowBox[{"FrameTicks", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "2", ",", "3", ",", "4"}], "}"}], ",",
"None"}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"Table", "[",
RowBox[{"x", ",",
RowBox[{"{",
RowBox[{"x", ",", "4", ",", "41", ",", "4"}], "}"}]}], "]"}],
",", "None"}], "}"}]}], "}"}]}], ",",
RowBox[{"GridLines", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"Table", "[",
RowBox[{"x", ",",
RowBox[{"{",
RowBox[{"x", ",", "4", ",", "41", ",", "4"}], "}"}]}], "]"}],
",",
RowBox[{"{",
RowBox[{"1", ",", "2", ",", "3", ",", "4"}], "}"}]}], "}"}]}], ",",
RowBox[{"ImageSize", "\[Rule]", "imgsz"}], ",", " ",
RowBox[{"AspectRatio", "\[Rule]", "asp"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"{",
RowBox[{"Black", ",", "Dashed"}], "}"}], "}"}]}], ",",
RowBox[{"PlotLabel", "\[Rule]", "\"\<FIG. 5 (a)\>\""}]}], "]"}], ",",
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"Import", "[", "\"\<data/fig5a_estimate.csv\>\"", "]"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Black", ",",
RowBox[{"Opacity", "[", "0.3", "]"}]}], "}"}]}], ",",
RowBox[{"PlotLegends", "\[Rule]", "\"\<Black Estimate\>\""}]}], "]"}],
",",
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"Import", "[", "\"\<data/fig5a_MCM.csv\>\"", "]"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Red", ",",
RowBox[{"Opacity", "[", "0.3", "]"}]}], "}"}]}], ",",
RowBox[{"PlotLegends", "\[Rule]", "\"\<Red MCM\>\""}]}], "]"}]}],
"}"}], "]"}], "\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Print", "[", "\"\<FIG. 6\>\"", "]"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Fig6", " ", "a"}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Show", "[",
RowBox[{"{",
RowBox[{
RowBox[{"Plot", "[",
RowBox[{
RowBox[{"(",
RowBox[{"\[Delta]", "/.",
RowBox[{"{",
RowBox[{
RowBox[{"a0", "->", "30"}], ",",
RowBox[{"W0", "->", "3"}], ",",
RowBox[{"\[Tau]", "->", "8"}], ",",
RowBox[{"\[Sigma]y", "->", "0.3"}]}], "}"}]}], ")"}], ",",
RowBox[{"{",
RowBox[{"\[Epsilon]0", ",", "100", ",", "1000"}], "}"}], ",",
RowBox[{"PlotRange", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"100", ",", "1000"}], "}"}], ",",
RowBox[{"{",
RowBox[{"0", ",", "4.5"}], "}"}]}], "}"}]}], ",",
RowBox[{"Frame", "\[Rule]", "True"}], ",",
RowBox[{"FrameLabel", "\[Rule]",
RowBox[{"{",
RowBox[{"\"\<\[Epsilon]0[MeV]\>\"", ",", "\"\<\[Delta]\>\""}],
"}"}]}], ",",
RowBox[{"FrameTicks", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "2", ",", "3", ",", "4"}], "}"}], ",",
"None"}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"Table", "[",
RowBox[{"x", ",",
RowBox[{"{",
RowBox[{"x", ",", "100", ",", "1001", ",", "100"}], "}"}]}],
"]"}], ",", "None"}], "}"}]}], "}"}]}], ",",
RowBox[{"GridLines", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"Table", "[",
RowBox[{"x", ",",
RowBox[{"{",
RowBox[{"x", ",", "100", ",", "1001", ",", "100"}], "}"}]}],
"]"}], ",",
RowBox[{"{",
RowBox[{"1", ",", "2", ",", "3", ",", "4"}], "}"}]}], "}"}]}], ",",
RowBox[{"ImageSize", "\[Rule]", "imgsz"}], ",", " ",
RowBox[{"AspectRatio", "\[Rule]", "asp"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"{",
RowBox[{"Black", ",", "Dashed"}], "}"}], "}"}]}], ",",
RowBox[{"PlotLabel", "\[Rule]", "\"\<FIG. 6 (a)\>\""}]}], "]"}], ",",
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"Import", "[", "\"\<data/fig6a_estimate.csv\>\"", "]"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Black", ",",
RowBox[{"Opacity", "[", "0.3", "]"}]}], "}"}]}], ",",
RowBox[{"PlotLegends", "\[Rule]", "\"\<Black Estimate\>\""}]}], "]"}],
",",
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"Import", "[", "\"\<data/fig6a_MCM.csv\>\"", "]"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Red", ",",
RowBox[{"Opacity", "[", "0.3", "]"}]}], "}"}]}], ",",
RowBox[{"PlotLegends", "\[Rule]", "\"\<Red MCM\>\""}]}], "]"}]}],
"}"}], "]"}], "\[IndentingNewLine]", "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Fig6", " ", "b"}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{"Show", "[",
RowBox[{"{",
RowBox[{
RowBox[{"Plot", "[",
RowBox[{
RowBox[{"(",
RowBox[{"\[Delta]", "/.",
RowBox[{"{",
RowBox[{
RowBox[{"a0", "->", "30"}], ",",
RowBox[{"\[Epsilon]0", "->", "300"}], ",",
RowBox[{"\[Tau]", "->", "8"}], ",",
RowBox[{"\[Sigma]y", "->",
RowBox[{"0.1", "W0"}]}]}], "}"}]}], ")"}], ",",
RowBox[{"{",
RowBox[{"W0", ",", "2", ",", "10"}], "}"}], ",",
RowBox[{"PlotRange", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"2", ",", "10"}], "}"}], ",",
RowBox[{"{",
RowBox[{"0", ",", "5"}], "}"}]}], "}"}]}], ",",
RowBox[{"Frame", "\[Rule]", "True"}], ",",
RowBox[{"FrameLabel", "\[Rule]",
RowBox[{"{",
RowBox[{"\"\<W0[\[Mu]m]\>\"", ",", "\"\<\[Delta]\>\""}], "}"}]}], ",",
RowBox[{"FrameTicks", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "2", ",", "3", ",", "4"}], "}"}], ",", "None"}],
"}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"Table", "[",
RowBox[{"x", ",",
RowBox[{"{",
RowBox[{"x", ",", "2", ",", "11", ",", "1"}], "}"}]}], "]"}],
",", "None"}], "}"}]}], "}"}]}], ",",
RowBox[{"GridLines", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"Table", "[",
RowBox[{"x", ",",
RowBox[{"{",
RowBox[{"x", ",", "2", ",", "11", ",", "1"}], "}"}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"1", ",", "2", ",", "3", ",", "4"}], "}"}]}], "}"}]}], ",",
RowBox[{"ImageSize", "\[Rule]", "imgsz"}], ",", " ",
RowBox[{"AspectRatio", "\[Rule]", "asp"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"{",
RowBox[{"Black", ",", "Dashed"}], "}"}], "}"}]}], ",",
RowBox[{"PlotLabel", "\[Rule]", "\"\<FIG. 6 (b)\>\""}]}], "]"}], ",",
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"Import", "[", "\"\<data/fig6b_estimate.csv\>\"", "]"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Black", ",",
RowBox[{"Opacity", "[", "0.3", "]"}]}], "}"}]}], ",",
RowBox[{"PlotLegends", "\[Rule]", "\"\<Black Estimate\>\""}]}], "]"}],
",",
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"Import", "[", "\"\<data/fig6b_MCM.csv\>\"", "]"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Red", ",",
RowBox[{"Opacity", "[", "0.3", "]"}]}], "}"}]}], ",",
RowBox[{"PlotLegends", "\[Rule]", "\"\<Red MCM\>\""}]}], "]"}]}], "}"}],
"]"}]}], "Input",
CellChangeTimes->CompressedData["
1:eJwdz0sowwEAx/Elj5rMX3m2ZbYk7bAWiyZim2fZwgFlJCwxj0wNKWG1iCGP
GQfSkHLAZYnYapHHGBM5eIxFYuwwrYTY73/49Tn8Tl9WTWuJ3I9CobB8g0Vv
6vw+t0tod0klMO09VQljv8dVkBFjG4O1eu06DO9WbUOijGGBkSfxh5D5dHYF
t4J+76CqccQBQ+05tc2fLqHZEdMCg8Rt9Bafe8pQHtRod0cnfUqHEpdgRVbX
JhwOKTbBqoX7A/gZsHMH42ctj5Cm8/+Bt/rnrCmfHxlaCTQbq0tgAlVWBouC
jythXYG9HvYTf2PQ+56tgxaCMw813GxSa8+yAXJ6NKvw1TO3AR+imUZIeFO2
4VaD3gzX2X/78DKw8wjGiTptMJmqIXVU9F7A8zXxNTSUZzqhaSX9BUpFPDc0
WqdJB254YTp0Ep4o+KVWxEGqx8mBuYpyPpS1D5IuMlgC+GpoKoTc/OhSKBYo
SdWn6ZXkzw6QwyR6XgdccQq6IDuCPwFnaMJJ+A/FsTIg
"],
CellLabel->"In[1]:=",ExpressionUUID->"f0113619-2f77-4919-aa83-a6a90a8ec08b"],
Cell[BoxData["\<\"FIG. 4\"\>"], "Print",
CellChangeTimes->{{3.886246723301874*^9, 3.886246769308964*^9},
3.886248160948024*^9, {3.886248194670745*^9, 3.886248321103335*^9}, {
3.886326902256081*^9, 3.886326960389278*^9}, {3.8863269919782047`*^9,
3.8863270837747087`*^9}, {3.886327215796563*^9, 3.886327245648039*^9},
3.886327291169853*^9, 3.886327398447379*^9, 3.886327453299925*^9,
3.886327546577944*^9, {3.886327593906107*^9, 3.8863276392805*^9},
3.8863276745459833`*^9, 3.886327704608234*^9, 3.8863277374565773`*^9,
3.88632777707154*^9, {3.886328312531165*^9, 3.886328338318802*^9},
3.8863283710373087`*^9, {3.886328456532501*^9, 3.8863285072800283`*^9}, {
3.886328571066601*^9, 3.8863285840681477`*^9}, {3.886328627777893*^9,
3.8863286389894876`*^9}, {3.88632899079005*^9, 3.8863290105387897`*^9},
3.8863291809857597`*^9, 3.886329230134651*^9, {3.886329262325432*^9,
3.886329265756197*^9}, {3.886329306773747*^9, 3.886329349132518*^9}, {
3.886329401899671*^9, 3.8863294280459146`*^9}, {3.8863295004188337`*^9,
3.886329538533662*^9}, {3.8863296268114367`*^9, 3.886329634677486*^9},
3.886329667203639*^9, 3.886329725079043*^9, 3.886329993926846*^9, {
3.8863300436285973`*^9, 3.886330048373591*^9}, {3.8863301313985233`*^9,
3.886330207706897*^9}, 3.886330276826477*^9, {3.886330313524365*^9,
3.88633038392933*^9}, 3.886330424295329*^9, 3.886330468457868*^9,
3.8863305480244007`*^9, {3.8863306117625113`*^9, 3.886330664560357*^9}, {
3.886330817528409*^9, 3.886330826382777*^9}, {3.886331034104937*^9,
3.886331043444427*^9}, 3.886331152113253*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"4fde4bed-e406-4220-8e87-968938d43534"],
Cell[BoxData[
TemplateBox[{
GraphicsBox[{{{}, {{{}, {}, {
Hue[0.67, 0.6, 0.6],
Directive[
PointSize[0.009166666666666668],
AbsoluteThickness[1.6],
GrayLevel[0],
Dashing[{Small, Small}]],
LineBox[CompressedData["
1:eJw1yw1Q03Ucx/E/AfEgnhoQ4NJ4fhiwgzFgPAw+2xiMbYxtjG2YFIqGB4HH
eXUUR0I82KBOrAOJp0xQ0Xl2UenB0TWkM4pD8TQgk+iQUONpyIMJnj3x7Xf3
u9+97v37eO0/rDn4HMMwr/xz/30HbBxGsz2WEpn/ji/GxE0PP+/63/4oYDiy
itcfkQNhaK+XsLOWyWz0R4kujVavkEMQ39aYoLWskjmQNrOPuLU8JodhdWTQ
o+DYE3I4eIaufZe/3iBzMatcYl3ze0aOQOdkZWhNAYNN81Bjannn0LQVORKO
a0s5QWXW5CiMV9zbXhRpS45Gv6zZ5b6THZkPe9e6bzTWDuQYbCiyW8rct5Bj
MZn27S2hYis5Dn+4LDyobt9GjofSMaejzW4HWQAHxnSAk/4COQGcq6UX1844
kxNx98ut2o0trmRgtcneKanixU2XA5duWU3dsXWnLkST3Y2xoU88qAvx483v
a30FLOoi5BVaHiwvvkRdhKFS90ep3bupi7En6KN+lsiTuhglYWsu97le1JNQ
k81m6oO9qSeBt6vn2sshPtQlMOz77adPeb7UJRiRD/V4SPyoJ0N/+oTLyWx/
6slwXelu9Ho3gHoKdl648efVs4HUUzBd88Za1VgQdSmSTQ2pxduDqUtxUCc4
d0IdQj0Vr5bz+xabQ6mngqU3sxvmONRlGPsl/DuJTxh1GcLrgzlFt8mMHE8j
HI8PGsOpyzG8sLs5S8ylrkAdb+KJn1UEdQUeLpWncwfITBqcPX/gVhp51NNw
qHUgfJc2kroS4y3nRmx8oqgrcbSkz5iwRmbSYbsoG74+HE09HR+wT1r1nudT
V6E9buo9m9qYTUOFvKHiju6iWPqvQr59m2lQH7dpswrBlomfZZJ42qsxzp/Z
L4gW0F6NyzFXijtDE2ivhkTaF1AVmEh7NeaMR5QWZ9Beg7zhmcVfG8jQQP7F
9Pq2nULaa5B/u66w+hTZrIF3QJlQGCSifQa6Ts8VSL4iIwOxwd0THwvFtM/A
28Y9lZybZHMGcvP5ErfcJNprcVH/pp3qMRlaVLV6X7jzoYT2Wkw6yRx6/JNp
r0XN2WdP5/rJTCYEtoVZJa+l0D4Tsx2zC3v/Ipdnwm3Gsbb1MyntM3Hv985l
fnIq7XXIsp63RMyToUMv96j4eKOM9jpM2B0+rxDJaa+DtEw3UWghM3rEv3Wg
ceWUgvZ6zK3nvz+VkUZ7PSY587kxDkra66G1Ch1dN5MZA55v4hsDS9Npb0BO
78aOKZaK9gZ4mlhn8krJZgOu5O+97neXzGThbzn8he0=
"]]}, {
Hue[0.9060679774997897, 0.6, 0.6],
Directive[
PointSize[0.009166666666666668],
AbsoluteThickness[1.6],
GrayLevel[0],
Dashing[{Small, Small}]],
LineBox[CompressedData["
1:eJw1ywlM02ccxvE/A8YhRh0wwE7HfRRoaClQjuLTlkJbSimltMXJhqLDwMAQ
s4WNMGEcW2GLuAVELp2gohiXsU0DYbHI4tgIitEBc3YsyFDHVeRwgnEXv73J
mzeffN/Ha98hzYEXGIZ57Z/77ztg4zCa5bF4lfnv+GJM0vjoi87/7Y98hqMo
f/MxORCGtjopO3OJzEZ/pPjSaNUyOQRxrQ3xWssKmQNZE/uwW/MTchhWRgY9
8j98SuaCb+jce/mbdTIPM6pF1nW/5+RwdExUhFbnM6YN81Hd1fzewSkrcgQc
Vxezg0qtyZEYL7+/tTDClhyFfkWTywMnO7IA9q6132qsHcjRWFdmNZe6byLH
YCLl6m2RcjM5Fn+4zD+sattCjoPKMbu91W4bWQgHpms/J/Ulcjw410ourp5x
Ju/Cva82a9c3uZKBlUZ7p4TylzdcBly6bTV519adugiNdjfHhk54UBfhx1vf
1/gKWdTFyC2wPFxaeIW6GEMl7o/l3TupS7A76NN+ltiTugTFYasuD3he1BNQ
ncVm6oK9qSeAv6Pn+qshPtSlMOz97aeTfF/qUowkD/V4SP2oJ0J/+pjL8Sx/
6olwXe5u8Ho/gHoStl+4+ee1s4HUkzBV/dZq5VgQdRkSu+rlRVuDqctwQCc8
dywthLocr5cJ+haaQqnLwdKb2PWzHOoKjP3C/U7qE0ZdAW5dMKfwDplJxrNw
x6ODRi71ZAzP72zKlPCoK1HLNz/1swqnrsSjxbJU3gCZSYGz5w+8CiOfegoO
tgxwd2gjqKsw3nxuxMYnkroKR4r7jPGrZCYVtguK4RvDUdRT8TH7uFXveQF1
NdpiJz+wqYneMNTIHSpq7y6Mof9q5Nm3dg3qYzdsUiPYYv5ZIY2jfRrGBdP7
hFFC2qfhcvSVoo7QeNqnQSrrC6gM3EX7NMwaD6sszqC9BrnD0wu/1pOhQfKX
U2tbtotor0HendqCqlNkkwbeAaUiUZCY9unoPD2bL/2ajHTEBHebPxNJaJ+O
d427Kzi3yKZ05OQJpG45CbTX4qL+bTv1EzK0qGzxvnD3EynttZhwUjj0+CfS
Xovqs8+fzfaTmQwIbQsyi99Ion0GZtpn5vf8RS7LgNu0Y03L5zLaZ+D+7x1L
gkQ57XXItJ6zhM+RoUMv74jkaIOC9jqY7Q6dV4qTaa+DrFRnLrCQGT3i3tnf
sHxKSXs9ZtfyPppMT6G9HhOcuZxoBxXt9dBahY6umciMAS82CoyBJam0NyC7
d33bJEtNewM8u1hnckvIJgOu5O254XePzGTib9MLs20=
"]]}}}, {{}, {}}}, {{}, {{{
Directive[
PointSize[0.012833333333333334`],
AbsoluteThickness[1.6],
RGBColor[0, 1, 1],
Opacity[0.3]],
PointBox[CompressedData["
1:eJwBUQKu/SFib1JlAgAAACQAAAACAAAAAFB1/xOz5z/IN5BYsyUvQAB+3aPe
5N4/KB2IGFtHJUAAF0f/b5nvP+g4NPQR4ipAQL7CagU4A0CoG3IWOKBAQABm
7QOvLfw/fND81R/zN0CAt1x2bqf1PwByZsTquTVAgOu8gcr2B0CWEsdVXbdB
QIAhncEpZf0/yJyMqVveOUCAXLXVvdMMQJZeo1wLxkJAACINW0mBAECwRh+X
HLY8QIDBUMXLcgFAwI0SoKFUO0DAqpKZWi8PQM5Y/2mbiENAAF8Fz/rUEUA8
Gcll8y5EQKDS+MgE+hNA7qMSnw84RUDA5k/6UdgXQNpC1QDPl0ZAgKvGGTNM
FkBisrpamuNFQCCLsSV76BlAnwj/lJeDR0CALxNRpPgbQICJCDt+T0hAwItv
f9/vHkCKJs2FHx5JQJBLfg3I5CNALGTpalBeTEAgwDeL7LglQDpjc1akIU1A
sL0RMdc3J0A403qK6VFOQACe/rSYWS5AtyehzGnkUECokCQ6SEAwQLXD8klI
ZVFA0GLVz1xIMUBno92zH9dRQHhCwNuk5DRA4OFH1kNxU0C42ehMVyM2QHhb
niJ0yFNAiHge2+bqNkD+iIRVYC1UQFhGBgN77TdAi9DUj/pvVECAWl00yMs7
QIxdFwam8FVAwE9WOOD/PEDDMFc59EJWQGgzK4X2HT5ACnCkloStVkAgFwDS
DDw/QPKg0vc26FZAqJWrAS2NQUC/Pt0aBUpYQCwg4JI6O0JAkcgX2GKMWECE
qSMGyOdCQAlv1yLk6FhAoAUAcA==
"]]}}}, {{}, {}}}, {{}, {{{
Directive[
PointSize[0.011000000000000001`],
AbsoluteThickness[1.6],
RGBColor[1, 0, 0],
Opacity[0.3]],
PointBox[CompressedData["
1:eJwV0ms023cYB/AMc22JyylZtY2aiNUlRtWo5pG4hCTiEhGrM2FotN2mzkQd
RWZmemYNp8GO0lKrM6Vq6lK0y68YenFbq3UL0p2NkIlYOKbU/n3xnO/5vHhe
PN/z2CV+FZmsg8Ph/LF5l2updf0/p3PQRFdhBtLwYZ0xJioyCEOJkpeCOz9g
dtwln69iIXUSiVXpgFn/oxmOOxOV2lL+fNMTA7czoxJYD0KQ5UoUvj4yBtb7
v6Van2agxsHRrgk1D9brWjTb6iCUSWf/QszjgTZfXjdXEIiEphdGivaiQZtg
zOslBKBT+fudWrIxwwnD+mYa2rNce5X4hgvaI0ndl+n+yHPb1G7jIhcoNpPn
5ONU9OR+GomvjIIHxtc3Gvz8UN0XF6Qi3yhg7H6eJ2rwQW9n+RbZpZGAX6xw
oRl7o4lMsxW5IgKWDsTdt+o7jg79ulbFcY2AkvTt4pVWD0ReShifyw0HyshP
Cb033ZG9olVXWcUBStF06Ykzbqhbkrn5NzsMiPLTjdp9zog8Jno2pM+GkpSQ
5Q4tGbGrH0mZMibg17ycsmYdUE52+c7e5VAQZ30o9O0/iq4qLyYfPhYC+PPL
GgMKEd0yyjE1HgwGgcT8x4dUWzTCLNvkfx8EYnnGiuCaNZoenT0ybxMIC9JW
qWm2JVoe0gjdW+kgPvtuwQyh7o+5v234A27KMGnpkgFayJHX1uxSARE8WPwA
HMKn2uZUPPYF3M35ZRPGlszKgp5GnfAG3Nm+0uTpl7Jn8/GFmnPHATcZ6/XC
YYAqtAfDyFfugCNOTacldcm2dtWpRZnOmP/9QL7eL2vZS446YEECsZlJztG4
XeqO69VFrrMPQJmsLYD2HrQZPRUd7DsJQNinal/Vh0lDfP6LDSoIFMr3e4Lx
sHBjPZ3oSAOiQfKq0UkrqKwxrwjYoQOuC1eSsmADbcHVeEkWdu/zry8NGx6G
Zm97gwl1EKw1LsTemLYD+mIeWXKPAbiYeHjt6QB7Yapw009CgagzR3KQkMHd
ZbSsvYwJlDtx+4XKY1BMShw3+Y8Fgkf3TrUPusFBB6A3pIcB/rueJ7pad8DX
bhHsFRwQOh3adNbzBJkoV7BRGw5Dw7l2PCsviF7Vb4mPjICWelZ6QYo3VLoQ
Ori7EUBsK1zq3PaBma7wxi9vR8LkjEjzz10/WJlKoRE/iwLVlStBlnQAY4Ej
Z9KaC6q7CVK3Zn9oapc2x9ViHvN8zSTQgVHuuWplHw0q7BuEBQFAV/Jsvesx
W8zkFKgDwUzX+/ktMg9UHs1Paz4NBj1FsWKnDjP3G8LD3xnADn58nWQeA6oM
7pkpSih4DLSzCRmYyx3bN64xodS0qaNzDnPnto6FARs80qtp4kA+LE0Oh7ti
PeiZjQW+beKD+A9J70AjB2b/IlTa6cfC/85x5VA=
"]]}}}, {{}, {}}}}, {
DisplayFunction -> Identity, DisplayFunction -> Identity, AspectRatio ->
NCache[
Rational[1, 2], 0.5], Axes -> {True, True}, AxesLabel -> {None, None},
AxesOrigin -> {0, 10.}, DisplayFunction :> Identity,
Frame -> {{True, True}, {True, True}}, FrameLabel -> {{
FormBox["\"a0\"", TraditionalForm], None}, {