-
Notifications
You must be signed in to change notification settings - Fork 0
/
energyAnalysis.nb
3253 lines (3208 loc) · 160 KB
/
energyAnalysis.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 11.2' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 163819, 3245]
NotebookOptionsPosition[ 162848, 3221]
NotebookOutlinePosition[ 163209, 3237]
CellTagsIndexPosition[ 163166, 3234]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[BoxData[{
RowBox[{
RowBox[{"SetDirectory", "[",
RowBox[{"NotebookDirectory", "[", "]"}], "]"}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{
"dir", "=",
"\"\</home/drladiges/kumonga/projects/FHDeX/exec/immersedIons/\>\""}],
";"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{
RowBox[{
"dir", "=",
"\"\</home/drladiges/kumongaRoot/scratch/drladiges/results_DISCOS2/WCA_\
fullwet/\>\""}], ";"}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"file", "=", "\"\<potentialDistribution000080000\>\""}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"raw", "=",
RowBox[{"Import", "[",
RowBox[{
RowBox[{"dir", "<>", "file"}], ",", "\"\<Table\>\""}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"binSize", " ", "=", " ",
RowBox[{
RowBox[{"raw", "[",
RowBox[{"[",
RowBox[{"2", ",", "1"}], "]"}], "]"}], "-",
RowBox[{"raw", "[",
RowBox[{"[",
RowBox[{"1", ",", "1"}], "]"}], "]"}]}]}],
";"}], "\[IndentingNewLine]"}], "Input",
CellChangeTimes->{{3.812482733405837*^9, 3.812482757237411*^9}, {
3.812482811418867*^9, 3.812482894994811*^9}, 3.812483181230523*^9,
3.812483256330386*^9, {3.812483383691114*^9, 3.812483406366593*^9},
3.8124834666829033`*^9, {3.8124851002585373`*^9, 3.812485100401178*^9},
3.812486348632841*^9, {3.812486446796754*^9, 3.812486453380438*^9}, {
3.8124904083018637`*^9, 3.8124904084853573`*^9}, 3.812491150195477*^9, {
3.812491820851347*^9, 3.812491820946451*^9}, 3.81249189035853*^9, {
3.812492174548667*^9, 3.812492174632538*^9}, {3.812493819626699*^9,
3.8124938205899487`*^9}, {3.8124939632118187`*^9, 3.812493964528098*^9}, {
3.812494593759611*^9, 3.812494593982782*^9}, {3.812494639082962*^9,
3.8124946392537327`*^9}, {3.8124965507130327`*^9, 3.8124965507726183`*^9},
3.812496883928746*^9, {3.8124974911685123`*^9, 3.812497491369219*^9}, {
3.812498345420664*^9, 3.812498350047061*^9}, 3.812498659326386*^9,
3.812498780672297*^9, 3.812498996719611*^9, {3.812499221024755*^9,
3.812499221168908*^9}, {3.8124993949710903`*^9, 3.8124993951769447`*^9}, {
3.81250008126793*^9, 3.812500081547567*^9}, 3.812506957228038*^9,
3.8125150709476557`*^9, {3.8125185711264477`*^9, 3.812518571308193*^9}, {
3.8125224926169357`*^9, 3.812522493805773*^9}, 3.812523347636101*^9, {
3.8125610449683943`*^9, 3.812561045152257*^9}, {3.812596539563792*^9,
3.812596540941956*^9}, {3.8126782544360743`*^9, 3.812678292050432*^9}, {
3.812678602325645*^9, 3.8126786025497093`*^9}, {3.812678671251919*^9,
3.8126786713466*^9}, 3.8126787434124928`*^9, {3.812679475020699*^9,
3.812679475258609*^9}, 3.8126796888286963`*^9, 3.812679889599502*^9, {
3.812685399009864*^9, 3.812685399099595*^9}, 3.812685606331126*^9,
3.8126866428321323`*^9, 3.812688207176667*^9,
3.8126892335361156`*^9},ExpressionUUID->"0a3c6e28-2a41-4264-b759-\
5842c054b04e"],
Cell[BoxData[{
RowBox[{
RowBox[{"kb", "=",
RowBox[{"1.38064852", "*",
SuperscriptBox["10",
RowBox[{"-", "16"}]]}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"T", "=", "295"}], ";"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"k", "=", "50"}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"vols", " ", "=",
RowBox[{"Table", "[", " ",
RowBox[{
RowBox[{"(",
RowBox[{
FractionBox["4", "3"], "\[Pi]", " ",
RowBox[{"(",
RowBox[{
SuperscriptBox[
RowBox[{"(",
FractionBox[
RowBox[{"2",
RowBox[{"(",
RowBox[{
RowBox[{"raw", "[",
RowBox[{"[",
RowBox[{"ii", ",", "1"}], "]"}], "]"}], "+",
RowBox[{"binSize", "/", "2"}]}], ")"}]}], "k"], ")"}],
FractionBox["3", "2"]], "-",
SuperscriptBox[
RowBox[{"(",
FractionBox[
RowBox[{"2",
RowBox[{"(",
RowBox[{
RowBox[{"raw", "[",
RowBox[{"[",
RowBox[{"ii", ",", "1"}], "]"}], "]"}], "-",
RowBox[{"binSize", "/", "2"}]}], ")"}]}], "k"], ")"}],
FractionBox["3", "2"]]}], ")"}]}], ")"}], ",",
RowBox[{"{",
RowBox[{"ii", ",", "1", ",",
RowBox[{"Length", "[", "raw", "]"}]}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"test", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"raw", "[",
RowBox[{"[",
RowBox[{"ii", ",", "1"}], "]"}], "]"}], ",",
RowBox[{
RowBox[{"raw", "[",
RowBox[{"[",
RowBox[{"ii", ",", "2"}], "]"}], "]"}], " ", "/",
RowBox[{"vols", "[",
RowBox[{"[", "ii", "]"}], "]"}]}]}], "}"}], ",",
RowBox[{"{",
RowBox[{"ii", ",", "1", ",",
RowBox[{"Length", "[", "raw", "]"}]}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"testNorm", "=",
RowBox[{"Total", "[",
RowBox[{"test", "[",
RowBox[{"[",
RowBox[{"All", ",", "2"}], "]"}], "]"}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"test2", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"test", "[",
RowBox[{"[",
RowBox[{"ii", ",", "1"}], "]"}], "]"}], ",", " ",
RowBox[{
RowBox[{"test", "[",
RowBox[{"[",
RowBox[{"ii", ",", "2"}], "]"}], "]"}], "/",
RowBox[{"(",
RowBox[{"binSize", "*", "testNorm"}], ")"}]}]}], "}"}], ",",
RowBox[{"{",
RowBox[{"ii", ",", "1", ",",
RowBox[{"Length", "[", "test", "]"}]}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]"}], "Input",
CellChangeTimes->{{3.812483424033421*^9, 3.8124834277311563`*^9}, {
3.8124847946732197`*^9, 3.8124848145818853`*^9}, 3.812486341107482*^9, {
3.812486377657919*^9, 3.812486402926119*^9}, {3.812486468329123*^9,
3.812486472805407*^9}, {3.8124904732703114`*^9, 3.812490548901903*^9}, {
3.8124914734760113`*^9, 3.812491486335712*^9}, 3.8124918404313707`*^9, {
3.812492004045575*^9, 3.812492016857625*^9}, {3.812496849298856*^9,
3.8124968641208563`*^9}, {3.812496927062533*^9, 3.8124969482867727`*^9},
3.812499226374652*^9,
3.8125150736668873`*^9},ExpressionUUID->"4ed43025-84a9-4b9e-ba36-\
c62672d30705"],
Cell[BoxData[{
RowBox[{
RowBox[{"m1", "=",
RowBox[{"Graphics", "[",
RowBox[{"{",
RowBox[{"Thick", ",", "Red", ",",
RowBox[{"Circle", "[",
RowBox[{
RowBox[{"{",
RowBox[{"0", ",", "0"}], "}"}], ",", "1"}], "]"}]}], "}"}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"m2", "=",
RowBox[{"Graphics", "[",
RowBox[{"{",
RowBox[{"Thick", ",", "Blue", ",",
RowBox[{"Line", "[",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"-", "0.5"}], ",",
RowBox[{"-", "0.5"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{"0.5", ",",
RowBox[{"-", "0.5"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{"0.5", ",", "0.5"}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"-", "0.5"}], ",", "0.5"}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"-", "0.5"}], ",",
RowBox[{"-", "0.5"}]}], "}"}]}], "}"}], "]"}]}], "}"}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"m3", "=",
RowBox[{"Graphics", "[",
RowBox[{"{",
RowBox[{"Thick", ",", "Purple", ",",
RowBox[{"Line", "[",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"-", "0.5"}], ",",
RowBox[{"-", "0.5"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{"0.5", ",", "0.5"}], "}"}]}], "}"}], "]"}], ",",
RowBox[{"Line", "[",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"-", "0.5"}], ",", "0.5"}], "}"}], ",",
RowBox[{"{",
RowBox[{"0.5", ",",
RowBox[{"-", "0.5"}]}], "}"}]}], "}"}], "]"}]}], "}"}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"m4", "=",
RowBox[{"Graphics", "[",
RowBox[{"{",
RowBox[{"Thick", ",", "Green", ",",
RowBox[{"Line", "[",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"0", ",",
RowBox[{"-", "0.5"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"-", "0.5"}], ",", "0"}], "}"}], ",",
RowBox[{"{",
RowBox[{"0", ",", "0.5"}], "}"}], ",",
RowBox[{"{",
RowBox[{"0.5", ",", "0"}], "}"}], ",",
RowBox[{"{",
RowBox[{"0", ",",
RowBox[{"-", "0.5"}]}], "}"}]}], "}"}], "]"}]}], "}"}], "]"}]}],
";"}], "\[IndentingNewLine]"}], "\[IndentingNewLine]"}], "Input",
CellChangeTimes->{{3.8124969344667053`*^9,
3.812496934599133*^9}},ExpressionUUID->"ba3bc9a0-ae96-4963-bc35-\
d2e26651c2d8"],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"pa", "=",
RowBox[{"Plot", "[",
RowBox[{
RowBox[{
FractionBox["1",
RowBox[{"kb", " ", "T"}]],
RowBox[{"Exp", "[",
RowBox[{"-",
FractionBox["x",
RowBox[{"kb", " ", "T"}]]}], "]"}]}], ",",
RowBox[{"{",
RowBox[{"x", ",", "0", ",",
RowBox[{"3.9", "*",
SuperscriptBox["10",
RowBox[{"-", "13"}]]}]}], "}"}], ",",
RowBox[{"PlotRange", "\[Rule]", "All"}], ",",
RowBox[{"PlotStyle", "\[Rule]", "Black"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"pb", "=",
RowBox[{"ListPlot", "[",
RowBox[{"test2", ",",
RowBox[{"PlotRange", "\[Rule]", "All"}], ",",
RowBox[{"PlotStyle", "\[Rule]", "Blue"}], ",",
RowBox[{"PlotMarkers", "\[Rule]",
RowBox[{"{",
RowBox[{"m2", ",", "0.03"}], "}"}]}]}], "]"}]}], ";"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{"Show", "[",
RowBox[{"pa", ",", "pb", ",",
RowBox[{"AspectRatio", "\[Rule]", "1"}], ",",
RowBox[{"Frame", "\[Rule]", "True"}], ",",
RowBox[{"Axes", "\[Rule]", "False"}]}], "]"}]}], "Input",
CellChangeTimes->{{3.812483424033421*^9, 3.8124834277311563`*^9}, {
3.8124847946732197`*^9, 3.8124848145818853`*^9}, 3.812486341107482*^9, {
3.812486377657919*^9, 3.812486402926119*^9}, {3.812486468329123*^9,
3.812486472805407*^9}, {3.8124904732703114`*^9, 3.812490548901903*^9}, {
3.8124914734760113`*^9, 3.812491486335712*^9}, 3.8124918404313707`*^9, {
3.812492004045575*^9, 3.812492016857625*^9}, {3.812496849298856*^9,
3.8124968641208563`*^9}, {3.812496927062533*^9, 3.812496965248865*^9}, {
3.81249702693402*^9, 3.812497073250846*^9}, {3.8124975110208406`*^9,
3.8124975520281982`*^9}, {3.812499403883882*^9, 3.812499412909875*^9},
3.8125069294536133`*^9, 3.812678615492045*^9,
3.8126794879755707`*^9},ExpressionUUID->"14b2b35a-9420-48a5-8c34-\
ad828c5b0ee3"],
Cell[BoxData[
GraphicsBox[{{{{}, {},
TagBox[
{GrayLevel[0], AbsoluteThickness[1.6], Opacity[1.],
LineBox[CompressedData["
1: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
rPMPofDxQfTtYHdo3SaWJeP3H+K/gsgqkg==
"]]},
Annotation[#, "Charting`Private`Tag$18962#1"]& ]}, {}, {}}, {{}, {
{RGBColor[0, 0, 1], AbsolutePointSize[6], AbsoluteThickness[1.6],
InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {5.*^-15, 2.3216460384509355*^13},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.5*^-14, 1.7468384206834516*^13},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {2.5*^-14, 1.3274475392597707*^13},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {3.5*^-14, 1.0303550120637496*^13},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {4.5*^-14, 8.053082847694143*^12},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {5.5*^-14, 6.19256319337883*^12}, Automatic,
Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {6.5*^-14, 4.7984363633554*^12}, Automatic,
Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {7.5*^-14, 3.7251615049453345*^12},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {8.5*^-14, 2.8738262459911577*^12},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {9.5*^-14, 2.202012825738193*^12},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.05*^-13, 1.7334053104862917*^12},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.15*^-13, 1.3671720985901807*^12},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.25*^-13, 1.054730419846376*^12},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.35*^-13, 8.311685420305161*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.45*^-13, 6.561673479723112*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.55*^-13, 5.053730537081477*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.65*^-13, 3.966128555298103*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.75*^-13, 2.9505719054689886*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.85*^-13, 2.360505140092507*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.95*^-13, 1.8153908676265662*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {2.05*^-13, 1.4211997383644934*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {2.15*^-13, 1.0900150732766052*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {2.25*^-13, 8.13443113186297*^10},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {2.35*^-13, 6.506561555360283*^10},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {2.45*^-13, 5.228399909227117*^10},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {2.55*^-13, 4.1471226944204414*^10},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {2.65*^-13, 3.3454101249236683*^10},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {2.75*^-13, 2.6013344873827118*^10},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {2.85*^-13, 1.9898802807579086*^10},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {2.95*^-13, 1.4432033107485762*^10},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {3.05*^-13, 1.0888716337554361*^10},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {3.15*^-13, 9.547122288016016*^9},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {3.25*^-13, 7.675237504298642*^9},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {3.35*^-13, 5.983162581873345*^9},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {3.45*^-13, 5.73647281949094*^9}, Automatic,
Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {3.55*^-13, 3.4558831226595087*^9},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {3.65*^-13, 2.7498161598808823*^9},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {3.75*^-13, 2.216172616045337*^9},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {3.85*^-13, 1.4329952946843278*^9},
Automatic, Scaled[{0.03, 0.03}]]}, {}}, {}, {}, {}, {}}},
AspectRatio->1,
Axes->False,
AxesLabel->{None, None},
AxesOrigin->{0, 0},
DisplayFunction->Identity,
Frame->True,
FrameLabel->{{None, None}, {None, None}},
FrameTicks->FrontEndValueCache[{{Automatic,
Charting`ScaledFrameTicks[{Identity, Identity}]}, {Automatic,
Charting`ScaledFrameTicks[{Identity, Identity}]}}, {{Automatic, {{0.,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {5.*^12,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {1.*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {1.5*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {2.*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {2.5*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {-5.*^12,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-4.*^12,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-3.*^12,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-2.*^12,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-1.*^12,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {1.*^12,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {2.*^12,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {3.*^12,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {4.*^12,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {6.*^12,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {7.*^12,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {8.*^12,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {9.*^12,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {1.1*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {1.2*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {1.3*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {1.4*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {1.6*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {1.7*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {1.8*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {1.9*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {2.1*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {2.2*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {2.3*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {2.4*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {2.6*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {2.7*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {2.8*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {2.9*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {3.*^13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}}}, {Automatic, {{0.,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {1.*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {2.*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {3.*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.01, 0.}, {
AbsoluteThickness[0.1]}}, {-1.*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-8.*^-14,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-6.*^-14,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-4.*^-14,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {-2.*^-14,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {2.*^-14,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {4.*^-14,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {6.*^-14,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {8.*^-14,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {1.2*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {1.4*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {1.6*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {1.8*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {2.2*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {2.4*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {2.6*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {2.8*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {3.2*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {3.4*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {3.6*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {3.8*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}, {4.*^-13,
FormBox[
TemplateBox[{0., 0.}, "Spacer2"], TraditionalForm], {0.005, 0.}, {
AbsoluteThickness[0.1]}}}}}],
GridLines->{None, None},
GridLinesStyle->Directive[
GrayLevel[0.5, 0.4]],
ImagePadding->All,
ImageSize->{609., Automatic},
Method->{
"DefaultBoundaryStyle" -> Automatic, "DefaultMeshStyle" ->
AbsolutePointSize[6], "ScalingFunctions" -> None,
"CoordinatesToolOptions" -> {"DisplayFunction" -> ({
(Identity[#]& )[
Part[#, 1]],
(Identity[#]& )[
Part[#, 2]]}& ), "CopiedValueFunction" -> ({
(Identity[#]& )[
Part[#, 1]],
(Identity[#]& )[
Part[#, 2]]}& )}},
PlotRange->{All, All},
PlotRangeClipping->True,
PlotRangePadding->{{
Scaled[0.02],
Scaled[0.02]}, {
Scaled[0.05],
Scaled[0.05]}},
Ticks->{Automatic, Automatic}]], "Output",
CellChangeTimes->{
3.812498679190289*^9, 3.812498787597541*^9, {3.812499002688196*^9,
3.812499021706407*^9}, 3.812499233344686*^9, {3.812499405919991*^9,
3.8124994143024673`*^9}, 3.812500089056829*^9, 3.8125069298382463`*^9,
3.8125069622191143`*^9, 3.812515078131879*^9, 3.812518583297093*^9,
3.812522503772152*^9, 3.812523358345223*^9, 3.812561049414216*^9,
3.812596547168775*^9, {3.812678262472169*^9, 3.812678297961816*^9},
3.81267861670298*^9, 3.8126786864586573`*^9, 3.8126787495996304`*^9,
3.812679488578382*^9, 3.812679694241823*^9, 3.8126798943112926`*^9,
3.812685406875489*^9, 3.812685611254772*^9, 3.812686649511343*^9,
3.812688212896027*^9,
3.812689237921836*^9},ExpressionUUID->"f45b2e85-aaa6-4e1c-85ca-\
0d3f26666dfc"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{
RowBox[{"(*", "wet", "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"pa", "=",
GraphicsBox[{{{{}, {},
TagBox[
{GrayLevel[0], AbsoluteThickness[1.6], Opacity[1.],
LineBox[CompressedData["
1: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
rPMPofDxQfTtYHdo3SaWJeP3H+K/gsgqkg==
"]]},
Annotation[#, "Charting`Private`Tag$18962#1"]& ]}, {}, {}}, {{}, {
{RGBColor[0, 0, 1], AbsolutePointSize[6], AbsoluteThickness[1.6],
InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {5.*^-15, 2.3216460384509355*^13},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.5*^-14, 1.7468384206834516*^13},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {2.5*^-14, 1.3274475392597707*^13},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {3.5*^-14, 1.0303550120637496*^13},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {4.5*^-14, 8.053082847694143*^12},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {5.5*^-14, 6.19256319337883*^12},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {6.5*^-14, 4.7984363633554*^12},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {7.5*^-14, 3.7251615049453345*^12},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {8.5*^-14, 2.8738262459911577*^12},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {9.5*^-14, 2.202012825738193*^12},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.05*^-13, 1.7334053104862917*^12},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.15*^-13, 1.3671720985901807*^12},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.25*^-13, 1.054730419846376*^12},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.35*^-13, 8.311685420305161*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.45*^-13, 6.561673479723112*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.55*^-13, 5.053730537081477*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.65*^-13, 3.966128555298103*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.75*^-13, 2.9505719054689886*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.85*^-13, 2.360505140092507*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {1.95*^-13, 1.8153908676265662*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {2.05*^-13, 1.4211997383644934*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {2.15*^-13, 1.0900150732766052*^11},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[
GraphicsBox[
{RGBColor[0, 0, 1], AbsolutePointSize[6], Thickness[Large],
LineBox[{{-0.5, -0.5}, {0.5, -0.5}, {0.5, 0.5}, {-0.5,
0.5}, {-0.5, -0.5}}]}], {2.25*^-13, 8.13443113186297*^10},
Automatic, Scaled[{0.03, 0.03}]], InsetBox[