-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFitSTO_Decay.nb
5132 lines (4912 loc) · 225 KB
/
FitSTO_Decay.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.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 230545, 5124]
NotebookOptionsPosition[ 223532, 5007]
NotebookOutlinePosition[ 223885, 5023]
CellTagsIndexPosition[ 223842, 5020]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell["Slater-type orbitals in PPSTM d-orb decay", "Title",
CellChangeTimes->{{3.756209262755712*^9,
3.756209277982842*^9}},ExpressionUUID->"31a0a181-8ba3-44aa-929a-\
be5e7aa62e04"],
Cell["\<\
This was calculations of STO decay for d-orbitals for \
https://github.com/ondrejkrejci/PPSTM/tree/dOrbSlaterDecay\
\>", "Text",
CellChangeTimes->{{3.7562092879880466`*^9, 3.756209296368606*^9}, {
3.756209326523877*^9,
3.7562093794714117`*^9}},ExpressionUUID->"0bca0a99-c0dc-435e-8f28-\
0d296d959e1e"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{
RowBox[{"eV", "=", "0.036749034"}], ";",
RowBox[{"(*",
RowBox[{"eV", " ", "to", " ", "Hertree", " ",
RowBox[{"(",
RowBox[{"atomic", " ", "units"}], ")"}]}], "*)"}], "\n",
RowBox[{"aB", "=", "1.889725989"}], ";"}],
RowBox[{"(*",
RowBox[{"Angstrom", " ", "to", " ", "Bohr", " ", "radius"}], "*)"}],
"*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"nstar", "=",
RowBox[{"{",
RowBox[{
"1", ",", "2", ",", "3", ",", "3.7", ",", "4.0", ",", "4.2", ",",
"4.3"}], "}"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"dzeta1", "=",
RowBox[{"{", "}"}]}], ";",
RowBox[{"dzeta2", "=",
RowBox[{"{", "}"}]}], ";",
RowBox[{"s01", "=",
RowBox[{"{", "}"}]}], ";",
RowBox[{"s02", "=",
RowBox[{"{", "}"}]}], ";",
RowBox[{"nstar01", "=",
RowBox[{"{", "}"}]}], ";",
RowBox[{"nstar02", "=",
RowBox[{"{", "}"}]}], ";",
RowBox[{"Nnorm1", "=",
RowBox[{"{", "}"}]}], ";",
RowBox[{"Nnorm2", "=",
RowBox[{"{", "}"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{"For", "[",
RowBox[{
RowBox[{"n", "=", "1"}], ",",
RowBox[{"n", "\[LessEqual]", "118"}], ",",
RowBox[{"n", "++"}], ",",
RowBox[{"{", "\[IndentingNewLine]",
RowBox[{
RowBox[{"conf", "=",
RowBox[{"ElementData", "[",
RowBox[{"n", ",", "\"\<ElectronConfiguration\>\""}], "]"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"ntmp", "=",
RowBox[{"Length", "[", "conf", "]"}]}], ",", "\[IndentingNewLine]",
RowBox[{"s", "=", "0"}], ",", "\[IndentingNewLine]",
RowBox[{"tmpconf", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"0", "*", "i", "*", "j"}], ",",
RowBox[{"{",
RowBox[{"i", ",", "ntmp"}], "}"}], ",",
RowBox[{"{",
RowBox[{"j", ",", "4"}], "}"}]}], "]"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"For", "[",
RowBox[{
RowBox[{"i", "=", "1"}], ",",
RowBox[{"i", "\[LessEqual]", "ntmp"}], ",",
RowBox[{"i", "++"}], ",",
RowBox[{"For", "[",
RowBox[{
RowBox[{"j", "=", "1"}], ",",
RowBox[{"j", "\[LessEqual]",
RowBox[{"Length", "[",
RowBox[{"conf", "[",
RowBox[{"[", "i", "]"}], "]"}], " ", "]"}]}], ",",
RowBox[{"j", "++"}], ",",
RowBox[{
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "j"}], "]"}], "]"}], "=",
RowBox[{"conf", "[",
RowBox[{"[",
RowBox[{"i", ",", "j"}], "]"}], "]"}]}]}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{
RowBox[{"scrennN", "[", "i_", "]"}], ":=",
RowBox[{"If", "[",
RowBox[{
RowBox[{"i", "\[Equal]", "ntmp"}], ",",
RowBox[{"0.35", "*",
RowBox[{"(",
RowBox[{
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "1"}], "]"}], "]"}], "+",
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "2"}], "]"}], "]"}], "-", "1"}], ")"}]}],
",", "\[IndentingNewLine]",
RowBox[{"If", "[",
RowBox[{
RowBox[{"i", "\[Equal]",
RowBox[{"ntmp", "-", "1"}]}], ",",
RowBox[{"0.85", "*",
RowBox[{"(",
RowBox[{
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "1"}], "]"}], "]"}], "+",
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "2"}], "]"}], "]"}], "+",
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "3"}], "]"}], "]"}], "+",
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "4"}], "]"}], "]"}]}], ")"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"(",
RowBox[{
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "1"}], "]"}], "]"}], "+",
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "2"}], "]"}], "]"}], "+",
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "3"}], "]"}], "]"}], "+",
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "4"}], "]"}], "]"}]}], ")"}]}], "]"}]}],
" ", "]"}]}], ",", "\[IndentingNewLine]",
RowBox[{"If", "[",
RowBox[{
RowBox[{"n", "\[Equal]", "1"}], ",",
RowBox[{"s1", "=", "0"}], ",",
RowBox[{"If", "[",
RowBox[{
RowBox[{"n", "\[Equal]", "2"}], ",",
RowBox[{"s1", "=", "0.30"}], ",",
RowBox[{"s1", "=",
RowBox[{"Sum", "[",
RowBox[{
RowBox[{"scrennN", "[", "i", "]"}], ",",
RowBox[{"{",
RowBox[{"i", ",", "ntmp"}], "}"}]}], "]"}]}]}], "]"}]}], "]"}],
",", "\[IndentingNewLine]",
RowBox[{"s01", "=",
RowBox[{"Append", "[",
RowBox[{"s01", ",", "s1"}], " ", "]"}]}], ",", "\[IndentingNewLine]",
RowBox[{"nstar01", "=",
RowBox[{"Append", "[",
RowBox[{"nstar01", ",",
RowBox[{"nstar", "[",
RowBox[{"[", "ntmp", "]"}], "]"}]}], " ", "]"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"dzeta1", "=",
RowBox[{"Append", "[",
RowBox[{"dzeta1", ",",
RowBox[{
RowBox[{"(",
RowBox[{"n", "-", "s1"}], ")"}], "/",
RowBox[{"nstar", "[",
RowBox[{"[", "ntmp", "]"}], "]"}]}]}], " ", "]"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"Nnorm1", "=",
RowBox[{"Append", "[",
RowBox[{"Nnorm1", ",",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"2", "*",
RowBox[{"dzeta1", "[",
RowBox[{"[", "n", "]"}], "]"}]}], ")"}], "^",
RowBox[{"(",
RowBox[{"ntmp", "+", "0.5"}], ")"}]}], "/",
RowBox[{"Sqrt", "[",
RowBox[{"Factorial", "[",
RowBox[{"2", "ntmp"}], "]"}], "]"}]}]}], "]"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"If", "[",
RowBox[{
RowBox[{"n", "<", "11"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"s2", "=", "None"}], ",",
RowBox[{"dzetatmp2", "=", "0"}], ",",
RowBox[{"nstartmp", "=", "None"}], ",",
RowBox[{"norm2tmp", "=", "None"}]}], "}"}], ",",
RowBox[{"{", "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"scrennD", "[", "i_", "]"}], ":=",
RowBox[{"If", "[",
RowBox[{
RowBox[{"i", "\[Equal]",
RowBox[{"ntmp", "-", "1"}]}], ",",
RowBox[{
RowBox[{"0.35", "*",
RowBox[{"(",
RowBox[{
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "3"}], "]"}], "]"}], "-", "1"}],
")"}]}], "+",
RowBox[{"1", "*",
RowBox[{"(",
RowBox[{
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "1"}], "]"}], "]"}], "+",
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "2"}], "]"}], "]"}]}], ")"}]}]}], ",",
"\[IndentingNewLine]",
RowBox[{"(",
RowBox[{
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "1"}], "]"}], "]"}], "+",
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "2"}], "]"}], "]"}], "+",
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "3"}], "]"}], "]"}], "+",
RowBox[{"tmpconf", "[",
RowBox[{"[",
RowBox[{"i", ",", "4"}], "]"}], "]"}]}], ")"}]}], "]"}]}],
" ", ",", "\[IndentingNewLine]",
RowBox[{"s2", "=",
RowBox[{"Sum", "[",
RowBox[{
RowBox[{"scrennD", "[", "i", "]"}], ",",
RowBox[{"{",
RowBox[{"i", ",",
RowBox[{"ntmp", "-", "1"}]}], "}"}]}], "]"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"nstartmp", "=",
RowBox[{"nstar", "[",
RowBox[{"[",
RowBox[{"ntmp", "-", "1"}], "]"}], "]"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"dzetatmp2", "=",
RowBox[{
RowBox[{"(",
RowBox[{"n", "-", "s2"}], ")"}], "/", "nstartmp"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"norm2tmp", "=",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"2", "*", "dzetatmp2"}], ")"}], "^",
RowBox[{"(",
RowBox[{"ntmp", "-", "0.5"}], ")"}]}], "/",
RowBox[{"Sqrt", "[",
RowBox[{"Factorial", "[",
RowBox[{"2",
RowBox[{"(",
RowBox[{"ntmp", "-", "1"}], ")"}]}], "]"}], "]"}]}]}], ","}],
"\[IndentingNewLine]", "}"}]}], "]"}], ",", "\[IndentingNewLine]",
RowBox[{"s02", "=",
RowBox[{"Append", "[",
RowBox[{"s02", ",", "s2"}], " ", "]"}]}], ",", "\[IndentingNewLine]",
RowBox[{"nstar02", "=",
RowBox[{"Append", "[",
RowBox[{"nstar02", ",", "nstartmp"}], " ", "]"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"dzeta2", "=",
RowBox[{"Append", "[",
RowBox[{"dzeta2", ",", "dzetatmp2"}], " ", "]"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"Nnorm2", "=",
RowBox[{"Append", "[",
RowBox[{"Nnorm2", ",", "norm2tmp"}], "]"}]}]}],
"\[IndentingNewLine]", "}"}]}], "]"}], "\[IndentingNewLine]", "s01",
"\[IndentingNewLine]", "nstar01", "\[IndentingNewLine]", "dzeta1",
"\[IndentingNewLine]", "Nnorm1", "\[IndentingNewLine]",
"\[IndentingNewLine]", "s02", "\[IndentingNewLine]", "nstar02",
"\[IndentingNewLine]", "dzeta2", "\[IndentingNewLine]",
"Nnorm2"}]}]], "Input",
CellChangeTimes->{{3.701779720149867*^9, 3.701779739049364*^9}, {
3.7017797903568373`*^9, 3.701779793846738*^9}, {3.70178293570718*^9,
3.7017829407025433`*^9}, {3.702033678915482*^9, 3.702033711499441*^9}, {
3.702033761043295*^9, 3.7020340020501547`*^9}, {3.702034034875766*^9,
3.702034234208577*^9}, {3.702034272560989*^9, 3.702034465391819*^9},
3.702034505938348*^9, {3.702034563513516*^9, 3.702034566785187*^9}, {
3.702034714928967*^9, 3.702034726544017*^9}, {3.702034756776595*^9,
3.70203513396179*^9}, {3.7033078442987967`*^9, 3.7033078825947638`*^9}, {
3.703308032490773*^9, 3.7033080615545177`*^9}, {3.703308180177286*^9,
3.703308197513323*^9}, 3.703308300993238*^9, 3.703308392215931*^9, {
3.703308439687396*^9, 3.7033084839993362`*^9}, {3.70330867686735*^9,
3.7033087281980124`*^9}, {3.703308758704352*^9, 3.703308806042592*^9}, {
3.703308973444556*^9, 3.703308974313464*^9}, 3.7033090346942244`*^9, {
3.703311210884574*^9, 3.70331127803047*^9}, {3.703311317163178*^9,
3.703311333848505*^9}, {3.7033123493393803`*^9, 3.7033123728040047`*^9}, {
3.703312636329378*^9, 3.7033127706409607`*^9}, 3.70331282728207*^9, {
3.703322299290628*^9,
3.703322366418783*^9}},ExpressionUUID->"111ab945-21f9-4c8f-9291-\
5e14b96dc74a"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
"0", ",", "0.3`", ",", "1.7`", ",", "2.05`", ",", "2.4`", ",", "2.75`", ",",
"3.0999999999999996`", ",", "3.45`", ",", "3.8`", ",",
"4.1499999999999995`", ",", "8.8`", ",", "9.15`", ",", "9.5`", ",",
"9.850000000000001`", ",", "10.200000000000001`", ",", "10.55`", ",",
"10.9`", ",", "11.25`", ",", "16.8`", ",", "17.150000000000002`", ",",
"18.`", ",", "18.85`", ",", "19.700000000000003`", ",",
"21.049999999999997`", ",", "21.4`", ",", "22.25`", ",", "23.1`", ",",
"23.950000000000003`", ",", "25.299999999999997`", ",", "25.65`", ",",
"25.999999999999996`", ",", "26.349999999999998`", ",",
"26.699999999999996`", ",", "27.049999999999997`", ",", "27.4`", ",",
"27.749999999999996`", ",", "34.8`", ",", "35.15`", ",", "36.`", ",",
"36.85`", ",", "38.2`", ",", "39.05`", ",", "39.4`", ",", "40.75`", ",",
"41.6`", ",", "27.749999999999996`", ",", "43.3`", ",", "43.65`", ",",
"44.`", ",", "44.349999999999994`", ",", "44.699999999999996`", ",",
"45.05`", ",", "45.4`", ",", "45.75`", ",", "52.8`", ",", "53.15`", ",",
"54.`", ",", "55.`", ",", "56.15`", ",", "57.15`", ",", "58.15`", ",",
"59.15`", ",", "60.15`", ",", "61.`", ",", "62.15`", ",", "63.15`", ",",
"64.14999999999999`", ",", "65.14999999999999`", ",", "66.14999999999999`",
",", "67.14999999999999`", ",", "68.`", ",", "68.85`", ",",
"69.69999999999999`", ",", "70.55`", ",", "71.39999999999999`", ",",
"72.25`", ",", "73.1`", ",", "74.45`", ",", "75.3`", ",",
"75.64999999999999`", ",", "76.`", ",", "76.35`", ",", "76.7`", ",",
"77.05`", ",", "77.39999999999999`", ",", "77.75`", ",", "84.8`", ",",
"85.14999999999999`", ",", "86.`", ",", "86.85`", ",", "88.`", ",", "89.`",
",", "90.`", ",", "91.14999999999999`", ",", "92.14999999999999`", ",",
"93.`", ",", "94.14999999999999`", ",", "95.14999999999999`", ",",
"96.14999999999999`", ",", "97.14999999999999`", ",", "98.14999999999999`",
",", "99.14999999999999`", ",", "99.5`", ",", "100.85`", ",",
"101.69999999999999`", ",", "102.55`", ",", "103.39999999999999`", ",",
"104.25`", ",", "105.1`", ",", "106.45`", ",", "107.3`", ",",
"107.64999999999999`", ",", "108.`", ",", "108.35`", ",", "108.7`", ",",
"109.05`", ",", "109.39999999999999`", ",", "109.75`"}], "}"}]], "Output",
CellChangeTimes->{
3.702034506915311*^9, 3.7020345680262938`*^9, {3.7020347180432453`*^9,
3.7020347273420267`*^9}, 3.702035330262237*^9, {3.7033087419238663`*^9,
3.703308806761209*^9}, 3.70330897534235*^9, 3.703309035073394*^9,
3.703312380416876*^9, {3.703312816493971*^9, 3.703312828456691*^9}, {
3.7033223476285553`*^9,
3.703322367151039*^9}},ExpressionUUID->"5e7ec316-f3f0-4eba-a142-\
7700f7b51ef0"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
"1", ",", "1", ",", "2", ",", "2", ",", "2", ",", "2", ",", "2", ",", "2",
",", "2", ",", "2", ",", "3", ",", "3", ",", "3", ",", "3", ",", "3", ",",
"3", ",", "3", ",", "3", ",", "3.7`", ",", "3.7`", ",", "3.7`", ",",
"3.7`", ",", "3.7`", ",", "3.7`", ",", "3.7`", ",", "3.7`", ",", "3.7`",
",", "3.7`", ",", "3.7`", ",", "3.7`", ",", "3.7`", ",", "3.7`", ",",
"3.7`", ",", "3.7`", ",", "3.7`", ",", "3.7`", ",", "4.`", ",", "4.`", ",",
"4.`", ",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`", ",",
"4.`", ",", "3.7`", ",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`", ",",
"4.`", ",", "4.`", ",", "4.`", ",", "4.`", ",", "4.2`", ",", "4.2`", ",",
"4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`",
",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",",
"4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`",
",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",",
"4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`",
",", "4.2`", ",", "4.2`", ",", "4.3`", ",", "4.3`", ",", "4.3`", ",",
"4.3`", ",", "4.3`", ",", "4.3`", ",", "4.3`", ",", "4.3`", ",", "4.3`",
",", "4.3`", ",", "4.3`", ",", "4.3`", ",", "4.3`", ",", "4.3`", ",",
"4.3`", ",", "4.3`", ",", "4.3`", ",", "4.3`", ",", "4.3`", ",", "4.3`",
",", "4.3`", ",", "4.3`", ",", "4.3`", ",", "4.3`", ",", "4.3`", ",",
"4.3`", ",", "4.3`", ",", "4.3`", ",", "4.3`", ",", "4.3`", ",", "4.3`",
",", "4.3`"}], "}"}]], "Output",
CellChangeTimes->{
3.702034506915311*^9, 3.7020345680262938`*^9, {3.7020347180432453`*^9,
3.7020347273420267`*^9}, 3.702035330262237*^9, {3.7033087419238663`*^9,
3.703308806761209*^9}, 3.70330897534235*^9, 3.703309035073394*^9,
3.703312380416876*^9, {3.703312816493971*^9, 3.703312828456691*^9}, {
3.7033223476285553`*^9,
3.703322367155526*^9}},ExpressionUUID->"65beeafc-c171-4a49-a3ce-\
cfa63e78209b"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
"1", ",", "1.7`", ",", "0.65`", ",", "0.9750000000000001`", ",", "1.3`",
",", "1.625`", ",", "1.9500000000000002`", ",", "2.275`", ",", "2.6`", ",",
"2.9250000000000003`", ",", "0.7333333333333331`", ",",
"0.9499999999999998`", ",", "1.1666666666666665`", ",",
"1.3833333333333329`", ",", "1.5999999999999996`", ",",
"1.8166666666666664`", ",", "2.033333333333333`", ",", "2.25`", ",",
"0.5945945945945943`", ",", "0.7702702702702696`", ",",
"0.8108108108108107`", ",", "0.8513513513513509`", ",",
"0.891891891891891`", ",", "0.7972972972972979`", ",",
"0.9729729729729732`", ",", "1.0135135135135134`", ",",
"1.0540540540540535`", ",", "1.0945945945945936`", ",",
"1.0000000000000007`", ",", "1.1756756756756759`", ",",
"1.3513513513513522`", ",", "1.5270270270270274`", ",",
"1.7027027027027035`", ",", "1.878378378378379`", ",",
"2.054054054054054`", ",", "2.2297297297297303`", ",",
"0.5500000000000007`", ",", "0.7125000000000004`", ",", "0.75`", ",",
"0.7874999999999996`", ",", "0.6999999999999993`", ",",
"0.7375000000000007`", ",", "0.9000000000000004`", ",", "0.8125`", ",",
"0.8499999999999996`", ",", "4.9324324324324325`", ",",
"0.9250000000000007`", ",", "1.0875000000000004`", ",", "1.25`", ",",
"1.4125000000000014`", ",", "1.575000000000001`", ",",
"1.7375000000000007`", ",", "1.9000000000000004`", ",", "2.0625`", ",",
"0.5238095238095245`", ",", "0.6785714285714288`", ",",
"0.7142857142857142`", ",", "0.7142857142857142`", ",",
"0.6785714285714288`", ",", "0.6785714285714288`", ",",
"0.6785714285714288`", ",", "0.6785714285714288`", ",",
"0.6785714285714288`", ",", "0.7142857142857142`", ",",
"0.6785714285714288`", ",", "0.6785714285714288`", ",",
"0.6785714285714306`", ",", "0.6785714285714306`", ",",
"0.6785714285714306`", ",", "0.6785714285714306`", ",",
"0.7142857142857142`", ",", "0.7500000000000013`", ",",
"0.7857142857142884`", ",", "0.8214285714285721`", ",",
"0.8571428571428591`", ",", "0.8928571428571428`", ",",
"0.9285714285714298`", ",", "0.8452380952380946`", ",",
"0.8809523809523816`", ",", "1.0357142857142876`", ",",
"1.1904761904761905`", ",", "1.3452380952380965`", ",",
"1.4999999999999993`", ",", "1.6547619047619053`", ",",
"1.8095238095238115`", ",", "1.9642857142857142`", ",",
"0.5116279069767449`", ",", "0.6627906976744206`", ",",
"0.6976744186046512`", ",", "0.732558139534885`", ",",
"0.6976744186046512`", ",", "0.6976744186046512`", ",",
"0.6976744186046512`", ",", "0.6627906976744206`", ",",
"0.6627906976744206`", ",", "0.6976744186046512`", ",",
"0.6627906976744206`", ",", "0.6627906976744206`", ",",
"0.6627906976744206`", ",", "0.6627906976744206`", ",",
"0.6627906976744206`", ",", "0.6627906976744206`", ",",
"0.813953488372093`", ",", "0.732558139534885`", ",",
"0.7674418604651189`", ",", "0.8023255813953495`", ",",
"0.8372093023255833`", ",", "0.872093023255814`", ",",
"0.9069767441860478`", ",", "0.8255813953488366`", ",",
"0.8604651162790704`", ",", "1.0116279069767462`", ",",
"1.1627906976744187`", ",", "1.3139534883720942`", ",",
"1.4651162790697667`", ",", "1.6162790697674425`", ",",
"1.7674418604651183`", ",", "1.9186046511627908`"}], "}"}]], "Output",
CellChangeTimes->{
3.702034506915311*^9, 3.7020345680262938`*^9, {3.7020347180432453`*^9,
3.7020347273420267`*^9}, 3.702035330262237*^9, {3.7033087419238663`*^9,
3.703308806761209*^9}, 3.70330897534235*^9, 3.703309035073394*^9,
3.703312380416876*^9, {3.703312816493971*^9, 3.703312828456691*^9}, {
3.7033223476285553`*^9,
3.7033223671601963`*^9}},ExpressionUUID->"4eb9f979-d28c-49d2-be70-\
e1a95b0639cb"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
"2.`", ",", "4.4330576355378`", ",", "0.3933260945661586`", ",",
"1.0838792634848684`", ",", "2.224988389482816`", ",",
"3.8868947562744958`", ",", "6.131347017581049`", ",", "9.01411035875953`",
",", "12.586435026117075`", ",", "16.896005582635137`", ",",
"0.14239466820175076`", ",", "0.3523476303863682`", ",",
"0.7231901466510577`", ",", "1.3127519847871687`", ",",
"2.184533333333331`", ",", "3.407235115985338`", ",", "5.054390213064163`",
",", "7.204063794571089`", ",", "0.010860980255206258`", ",",
"0.03481519487999593`", ",", "0.04385434276348628`", ",",
"0.054621604400137115`", ",", "0.06734101994586131`", ",",
"0.04065987436429259`", ",", "0.09961579698514528`", ",",
"0.11970372500943761`", ",", "0.14280969515079042`", ",",
"0.16924450030114388`", ",", "0.11268723396380255`", ",",
"0.23343642136460382`", ",", "0.4368496378134122`", ",",
"0.757155315600358`", ",", "1.235945819860035`", ",", "1.922642690205231`",
",", "2.8749356331715195`", ",", "4.159199277104524`", ",",
"0.0008867031513057881`", ",", "0.003682139495569068`", ",",
"0.004882254432394314`", ",", "0.006385009580614476`", ",",
"0.003340586177585667`", ",", "0.004451174243438095`", ",",
"0.013308136956657142`", ",", "0.007582492559016869`", ",",
"0.009718238456432222`", ",", "148.13233547385516`", ",",
"0.01547258901059774`", ",", "0.03768290892198411`", ",",
"0.08105662769466102`", ",", "0.15875227966046354`", ",",
"0.28895254863319025`", ",", "0.49587239577152625`", ",",
"0.8108271175738541`", ",", "1.2733571300399373`", ",",
"0.00006182349138655981`", ",", "0.00033258119714257124`", ",",
"0.0004641883728151649`", ",", "0.0004641883728151649`", ",",
"0.00033258119714257124`", ",", "0.00033258119714257124`", ",",
"0.00033258119714257124`", ",", "0.00033258119714257124`", ",",
"0.00033258119714257124`", ",", "0.0004641883728151649`", ",",
"0.00033258119714257124`", ",", "0.00033258119714257124`", ",",
"0.000332581197142577`", ",", "0.000332581197142577`", ",",
"0.000332581197142577`", ",", "0.000332581197142577`", ",",
"0.0004641883728151649`", ",", "0.0006374185555278961`", ",",
"0.0008624753893946516`", ",", "0.0011514105916989275`", ",",
"0.001518351620052529`", ",", "0.0019797453994364255`", ",",
"0.002554618470246576`", ",", "0.0013864058972848058`", ",",
"0.001814334290126723`", ",", "0.005195008618579244`", ",",
"0.012844320397635564`", ",", "0.028426344372350823`", ",",
"0.05769254183269154`", ",", "0.10922129764340646`", ",",
"0.19529649633526308`", ",", "0.33293294144624885`", ",",
"4.024180764082544`*^-6", ",", "0.000028044249657426776`", ",",
"0.000041201856481009244`", ",", "0.00005940685043038059`", ",",
"0.000041201856481009244`", ",", "0.000041201856481009244`", ",",
"0.000041201856481009244`", ",", "0.000028044249657426776`", ",",
"0.000028044249657426776`", ",", "0.000041201856481009244`", ",",
"0.000028044249657426776`", ",", "0.000028044249657426776`", ",",
"0.000028044249657426776`", ",", "0.000028044249657426776`", ",",
"0.000028044249657426776`", ",", "0.000028044249657426776`", ",",
"0.00013092353025701144`", ",", "0.00005940685043038059`", ",",
"0.00008420966190169974`", ",", "0.0001175305010582436`", ",",
"0.00016172461664486177`", ",", "0.00021965539906198243`", ",",
"0.00029477586829123416`", ",", "0.00014561966328857987`", ",",
"0.00019861877778551675`", ",", "0.0006686160564991814`", ",",
"0.0019001260286134088`", ",", "0.004751937645583643`", ",",
"0.010753788617793632`", ",", "0.022459154825461083`", ",",
"0.04391463897139793`", ",", "0.08126658099428428`"}], "}"}]], "Output",
CellChangeTimes->{
3.702034506915311*^9, 3.7020345680262938`*^9, {3.7020347180432453`*^9,
3.7020347273420267`*^9}, 3.702035330262237*^9, {3.7033087419238663`*^9,
3.703308806761209*^9}, 3.70330897534235*^9, 3.703309035073394*^9,
3.703312380416876*^9, {3.703312816493971*^9, 3.703312828456691*^9}, {
3.7033223476285553`*^9,
3.70332236716508*^9}},ExpressionUUID->"ae15a3d2-5432-497d-8b4c-\
20c5a0db603f"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
"None", ",", "None", ",", "None", ",", "None", ",", "None", ",", "None",
",", "None", ",", "None", ",", "None", ",", "None", ",", "9.65`", ",",
"9.65`", ",", "9.65`", ",", "9.65`", ",", "9.65`", ",", "9.65`", ",",
"9.65`", ",", "9.65`", ",", "17.65`", ",", "17.65`", ",", "18.`", ",",
"18.35`", ",", "18.7`", ",", "19.4`", ",", "19.4`", ",", "19.75`", ",",
"20.1`", ",", "20.45`", ",", "21.15`", ",", "21.15`", ",", "21.15`", ",",
"21.15`", ",", "21.15`", ",", "21.15`", ",", "21.15`", ",", "21.15`", ",",
"35.65`", ",", "35.65`", ",", "36.`", ",", "36.35`", ",", "37.05`", ",",
"37.4`", ",", "37.4`", ",", "38.1`", ",", "38.45`", ",", "21.15`", ",",
"39.15`", ",", "39.15`", ",", "39.15`", ",", "39.15`", ",", "39.15`", ",",
"39.15`", ",", "39.15`", ",", "39.15`", ",", "53.65`", ",", "53.65`", ",",
"54.`", ",", "55.`", ",", "56.65`", ",", "57.65`", ",", "58.65`", ",",
"59.65`", ",", "60.65`", ",", "61.`", ",", "62.65`", ",", "63.65`", ",",
"64.65`", ",", "65.65`", ",", "66.65`", ",", "67.65`", ",", "68.`", ",",
"68.35`", ",", "68.7`", ",", "69.05`", ",", "69.4`", ",", "69.75`", ",",
"70.1`", ",", "70.8`", ",", "71.15`", ",", "71.15`", ",", "71.15`", ",",
"71.15`", ",", "71.15`", ",", "71.15`", ",", "71.15`", ",", "71.15`", ",",
"85.65`", ",", "85.65`", ",", "86.`", ",", "86.35`", ",", "88.`", ",",
"89.`", ",", "90.`", ",", "91.65`", ",", "92.65`", ",", "93.`", ",",
"94.65`", ",", "95.65`", ",", "96.65`", ",", "97.65`", ",", "98.65`", ",",
"99.65`", ",", "99.65`", ",", "100.35`", ",", "100.7`", ",", "101.05`",
",", "101.4`", ",", "101.75`", ",", "102.1`", ",", "102.8`", ",",
"103.15`", ",", "103.15`", ",", "103.15`", ",", "103.15`", ",", "103.15`",
",", "103.15`", ",", "103.15`", ",", "103.15`"}], "}"}]], "Output",
CellChangeTimes->{
3.702034506915311*^9, 3.7020345680262938`*^9, {3.7020347180432453`*^9,
3.7020347273420267`*^9}, 3.702035330262237*^9, {3.7033087419238663`*^9,
3.703308806761209*^9}, 3.70330897534235*^9, 3.703309035073394*^9,
3.703312380416876*^9, {3.703312816493971*^9, 3.703312828456691*^9}, {
3.7033223476285553`*^9,
3.7033223671688223`*^9}},ExpressionUUID->"6f04fa30-326f-4c0c-9955-\
8226190e70db"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
"None", ",", "None", ",", "None", ",", "None", ",", "None", ",", "None",
",", "None", ",", "None", ",", "None", ",", "None", ",", "2", ",", "2",
",", "2", ",", "2", ",", "2", ",", "2", ",", "2", ",", "2", ",", "3", ",",
"3", ",", "3", ",", "3", ",", "3", ",", "3", ",", "3", ",", "3", ",", "3",
",", "3", ",", "3", ",", "3", ",", "3", ",", "3", ",", "3", ",", "3", ",",
"3", ",", "3", ",", "3.7`", ",", "3.7`", ",", "3.7`", ",", "3.7`", ",",
"3.7`", ",", "3.7`", ",", "3.7`", ",", "3.7`", ",", "3.7`", ",", "3", ",",
"3.7`", ",", "3.7`", ",", "3.7`", ",", "3.7`", ",", "3.7`", ",", "3.7`",
",", "3.7`", ",", "3.7`", ",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`",
",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`",
",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`",
",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`",
",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`",
",", "4.`", ",", "4.`", ",", "4.`", ",", "4.`", ",", "4.2`", ",", "4.2`",
",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",",
"4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`",
",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",",
"4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`",
",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",", "4.2`", ",",
"4.2`", ",", "4.2`", ",", "4.2`"}], "}"}]], "Output",
CellChangeTimes->{
3.702034506915311*^9, 3.7020345680262938`*^9, {3.7020347180432453`*^9,
3.7020347273420267`*^9}, 3.702035330262237*^9, {3.7033087419238663`*^9,
3.703308806761209*^9}, 3.70330897534235*^9, 3.703309035073394*^9,
3.703312380416876*^9, {3.703312816493971*^9, 3.703312828456691*^9}, {
3.7033223476285553`*^9,
3.70332236717155*^9}},ExpressionUUID->"3c0effab-749f-440e-84d5-\
47d7f4115efa"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
"0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0",
",", "0", ",", "0", ",", "0.6749999999999998`", ",", "1.1749999999999998`",
",", "1.6749999999999998`", ",", "2.175`", ",", "2.675`", ",", "3.175`",
",", "3.675`", ",", "4.175`", ",", "0.45000000000000046`", ",",
"0.7833333333333338`", ",", "1.`", ",", "1.2166666666666661`", ",",
"1.4333333333333336`", ",", "1.5333333333333337`", ",",
"1.8666666666666671`", ",", "2.083333333333333`", ",",
"2.2999999999999994`", ",", "2.5166666666666666`", ",",
"2.616666666666667`", ",", "2.95`", ",", "3.2833333333333337`", ",",
"3.616666666666667`", ",", "3.95`", ",", "4.283333333333333`", ",",
"4.616666666666667`", ",", "4.95`", ",", "0.3648648648648652`", ",",
"0.6351351351351354`", ",", "0.8108108108108107`", ",",
"0.986486486486486`", ",", "1.0675675675675682`", ",",
"1.2432432432432434`", ",", "1.5135135135135136`", ",",
"1.594594594594594`", ",", "1.7702702702702693`", ",",
"8.283333333333333`", ",", "2.1216216216216215`", ",",
"2.391891891891892`", ",", "2.6621621621621623`", ",",
"2.9324324324324325`", ",", "3.2027027027027026`", ",",
"3.472972972972973`", ",", "3.743243243243243`", ",", "4.013513513513513`",
",", "0.33750000000000036`", ",", "0.5875000000000004`", ",", "0.75`",
",", "0.75`", ",", "0.5875000000000004`", ",", "0.5875000000000004`", ",",
"0.5875000000000004`", ",", "0.5875000000000004`", ",",
"0.5875000000000004`", ",", "0.75`", ",", "0.5875000000000004`", ",",
"0.5875000000000004`", ",", "0.5874999999999986`", ",",
"0.5874999999999986`", ",", "0.5874999999999986`", ",",
"0.5874999999999986`", ",", "0.75`", ",", "0.9125000000000014`", ",",
"1.0749999999999993`", ",", "1.2375000000000007`", ",",
"1.3999999999999986`", ",", "1.5625`", ",", "1.7250000000000014`", ",",
"1.8000000000000007`", ",", "1.9624999999999986`", ",",
"2.2124999999999986`", ",", "2.4624999999999986`", ",",
"2.7124999999999986`", ",", "2.9624999999999986`", ",",
"3.2124999999999986`", ",", "3.4624999999999986`", ",",
"3.7124999999999986`", ",", "0.32142857142857006`", ",",
"0.5595238095238081`", ",", "0.7142857142857142`", ",",
"0.8690476190476204`", ",", "0.7142857142857142`", ",",
"0.7142857142857142`", ",", "0.7142857142857142`", ",",
"0.5595238095238081`", ",", "0.5595238095238081`", ",",
"0.7142857142857142`", ",", "0.5595238095238081`", ",",
"0.5595238095238081`", ",", "0.5595238095238081`", ",",
"0.5595238095238081`", ",", "0.5595238095238081`", ",",
"0.5595238095238081`", ",", "0.7976190476190462`", ",",
"0.8690476190476204`", ",", "1.023809523809523`", ",",
"1.1785714285714293`", ",", "1.333333333333332`", ",",
"1.488095238095238`", ",", "1.6428571428571441`", ",",
"1.7142857142857149`", ",", "1.8690476190476175`", ",",
"2.107142857142856`", ",", "2.3452380952380936`", ",",
"2.5833333333333317`", ",", "2.82142857142857`", ",", "3.059523809523808`",
",", "3.297619047619046`", ",", "3.5357142857142843`"}], "}"}]], "Output",\
CellChangeTimes->{
3.702034506915311*^9, 3.7020345680262938`*^9, {3.7020347180432453`*^9,
3.7020347273420267`*^9}, 3.702035330262237*^9, {3.7033087419238663`*^9,
3.703308806761209*^9}, 3.70330897534235*^9, 3.703309035073394*^9,
3.703312380416876*^9, {3.703312816493971*^9, 3.703312828456691*^9}, {
3.7033223476285553`*^9,
3.703322367173689*^9}},ExpressionUUID->"7e43fb9c-e440-4e55-bd48-\
374d5467dfbe"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
"None", ",", "None", ",", "None", ",", "None", ",", "None", ",", "None",
",", "None", ",", "None", ",", "None", ",", "None", ",",
"0.4322438276742651`", ",", "1.728080759680856`", ",", "4.19282172258681`",
",", "8.055964087731057`", ",", "13.513841913690907`", ",",
"20.740952284156236`", ",", "29.8959753568781`", ",", "41.12544098151994`",
",", "0.025774042174249747`", ",", "0.1793708487061989`", ",",
"0.4216370213557839`", ",", "0.8376052112472867`", ",",
"1.4864624390108396`", ",", "1.8822042771283685`", ",",
"3.746902908614307`", ",", "5.502935288720561`", ",", "7.78011761921944`",
",", "10.661754442350937`", ",", "12.219632466457242`", ",",
"18.59155828751841`", ",", "27.04214591426085`", ",", "37.93310810653827`",
",", "51.64503443130784`", ",", "68.57649621906913`", ",",
"89.14326813863906`", ",", "113.77764303352284`", ",",
"0.0012063377507127147`", ",", "0.014614108948313047`", ",",
"0.04385434276348628`", ",", "0.1059948709713097`", ",",
"0.15123555025032526`", ",", "0.300176854941467`", ",",
"0.7274666394284195`", ",", "0.9200279323258946`", ",",
"1.4724915472704472`", ",", "689.6944335078086`", ",",
"3.325679671819647`", ",", "5.7044224264940695`", ",",
"9.234853232987803`", ",", "14.26923801906461`", ",", "21.21776021248009`",
",", "30.551394276969926`", ",", "42.804649059378484`", ",",
"58.5781972247798`", ",", "0.00006043509847965381`", ",",
"0.0012744615863702169`", ",", "0.004882254432394314`", ",",
"0.004882254432394314`", ",", "0.0012744615863702169`", ",",
"0.0012744615863702169`", ",", "0.0012744615863702169`", ",",
"0.0012744615863702169`", ",", "0.0012744615863702169`", ",",
"0.004882254432394314`", ",", "0.0012744615863702169`", ",",
"0.0012744615863702169`", ",", "0.0012744615863701956`", ",",
"0.0012744615863701956`", ",", "0.0012744615863701956`", ",",
"0.0012744615863701956`", ",", "0.004882254432394314`", ",",
"0.014357018563445494`", ",", "0.035361445774165556`", ",",
"0.07669765778533487`", ",", "0.1511776729157679`", ",",
"0.27656269768089925`", ",", "0.4765664954912666`", ",",
"0.6022575287687404`", ",", "0.9688055531722233`", ",",
"1.873447366143331`", ",", "3.375613966887325`", ",", "5.745357631678496`",
",", "9.33048962530546`", ",", "14.568696954656737`", ",",
"22.000232024391522`", ",", "32.281150345692375`", ",",
"2.585684889162215`*^-6", ",", "0.00009491770019592179`", ",",
"0.0004641883728151649`", ",", "0.001660770879430069`", ",",
"0.0004641883728151649`", ",", "0.0004641883728151649`", ",",
"0.0004641883728151649`", ",", "0.00009491770019592179`", ",",
"0.00009491770019592179`", ",", "0.0004641883728151649`", ",",
"0.00009491770019592179`", ",", "0.00009491770019592179`", ",",
"0.00009491770019592179`", ",", "0.00009491770019592179`", ",",
"0.00009491770019592179`", ",", "0.00009491770019592179`", ",",
"0.0009510368565169151`", ",", "0.001660770879430069`", ",",
"0.004818934945379509`", ",", "0.012032057404528045`", ",",
"0.026830469832021014`", ",", "0.05478052813320204`", ",",
"0.10421379037700183`", ",", "0.13742550102588288`", ",",
"0.24102321269124755`", ",", "0.5254572174876255`", ",",
"1.0537597364738576`", ",", "1.9756017417999925`", ",",
"3.504091026802635`", ",", "5.933028465828519`", ",", "9.6567197826483`",
",", "15.19245822854203`"}], "}"}]], "Output",
CellChangeTimes->{
3.702034506915311*^9, 3.7020345680262938`*^9, {3.7020347180432453`*^9,
3.7020347273420267`*^9}, 3.702035330262237*^9, {3.7033087419238663`*^9,
3.703308806761209*^9}, 3.70330897534235*^9, 3.703309035073394*^9,
3.703312380416876*^9, {3.703312816493971*^9, 3.703312828456691*^9}, {
3.7033223476285553`*^9,
3.703322367175976*^9}},ExpressionUUID->"1d58cb64-9ff9-4a29-a565-\
58a9ef4566c0"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"i", "=", "26"}], ";",
RowBox[{"j", "=", "4"}], ";"}], "\[IndentingNewLine]",
RowBox[{"Integrate", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"Nnorm1", "[",
RowBox[{"[", "i", "]"}], "]"}], "^", "2"}], "*",
RowBox[{"r", "^",
RowBox[{"(",
RowBox[{"2", "*", "j"}], ")"}]}], "*",
RowBox[{"Exp", "[",
RowBox[{
RowBox[{"-", "2"}], "*",
RowBox[{"dzeta1", "[",
RowBox[{"[", "i", "]"}], "]"}], "*", "r"}], "]"}]}], ",",
RowBox[{"{",
RowBox[{"r", ",", "0", ",", "Infinity"}], "}"}]}],
"]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"i", "=", "26"}], ";",
RowBox[{"j", "=", "3"}], ";"}], "\[IndentingNewLine]",
RowBox[{"Integrate", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"Nnorm2", "[",
RowBox[{"[", "i", "]"}], "]"}], "^", "2"}], "*",
RowBox[{"r", "^",
RowBox[{"(",
RowBox[{"2", "*", "j"}], ")"}]}], "*",
RowBox[{"Exp", "[",
RowBox[{
RowBox[{"-", "2"}], "*",
RowBox[{"dzeta2", "[",
RowBox[{"[", "i", "]"}], "]"}], "*", "r"}], "]"}]}], ",",
RowBox[{"{",
RowBox[{"r", ",", "0", ",", "Infinity"}], "}"}]}], "]"}]}], "Input",
CellChangeTimes->{{3.703312396510212*^9, 3.703312606350618*^9}, {
3.703322383838707*^9,
3.703322396542947*^9}},ExpressionUUID->"2b67e810-6650-4e52-995a-\
c6ad15d4cdbb"],
Cell[BoxData["0.9999999999999996`"], "Output",
CellChangeTimes->{{3.703312576814526*^9, 3.703312607062017*^9},
3.70332239715422*^9},ExpressionUUID->"4c28bc5a-daa6-4e61-8170-\
d90388da2de2"],
Cell[BoxData["0.9999999999999991`"], "Output",
CellChangeTimes->{{3.703312576814526*^9, 3.703312607062017*^9},
3.703322397200768*^9},ExpressionUUID->"aeaf3bc3-c771-488c-9b69-\
e83c368f77d8"]
}, Open ]],
Cell[" ", "Text",
Editable->False,
Selectable->False,
CellFrame->{{0, 0}, {0, 0.5}},
ShowCellBracket->False,
CellMargins->{{0, 0}, {1, 1}},
CellElementSpacings->{"CellMinHeight"->1},
CellFrameMargins->0,
CellFrameColor->RGBColor[0, 0, 1],
CellSize->{
Inherited, 3},ExpressionUUID->"5b621ee2-196b-415a-838d-8e06cac97ed7"],
Cell[BoxData[{
RowBox[{
RowBox[{"F", "[",
RowBox[{"r_", ",", "i_", ",", "j_"}], "]"}], ":=",
RowBox[{"If", "[",
RowBox[{
RowBox[{"j", "\[Equal]", "1"}], ",",
RowBox[{
RowBox[{"Nnorm1", "[",
RowBox[{"[", "i", "]"}], "]"}], "*",
RowBox[{"r", "^",
RowBox[{"(",
RowBox[{
RowBox[{"ElementData", "[",
RowBox[{"26", ",", "\"\<Period\>\""}], "]"}], "-", "1"}], ")"}]}],
"*",
RowBox[{"Exp", "[",
RowBox[{
RowBox[{"-",
RowBox[{"dzeta1", "[",
RowBox[{"[", "i", "]"}], "]"}]}], "*", "r"}], "]"}]}], ",",
RowBox[{
RowBox[{"Nnorm2", "[",
RowBox[{"[", "i", "]"}], "]"}], "*",
RowBox[{"r", "^",
RowBox[{"(",
RowBox[{
RowBox[{"ElementData", "[",
RowBox[{"26", ",", "\"\<Period\>\""}], "]"}], "-", "2"}], ")"}]}],
"*",
RowBox[{"Exp", "[",
RowBox[{
RowBox[{"-",
RowBox[{"dzeta2", "[",
RowBox[{"[", "i", "]"}], "]"}]}], "*", "r"}], "]"}]}]}],
"]"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"aB", "=", "1.889725989"}], ";"}],
RowBox[{"(*",
RowBox[{"Angstrom", " ", "to", " ", "Bohr", " ", "radius"}],
"*)"}]}]}], "Input",
CellChangeTimes->{{3.703322473712873*^9, 3.703322577173553*^9}, {
3.703322652485094*^9, 3.70332267568672*^9}, {3.703322706821*^9,
3.703322723092657*^9}, 3.703322769316751*^9, {3.7033229921302958`*^9,
3.703322992603127*^9}, {3.703323190026559*^9,
3.7033232041239767`*^9}},ExpressionUUID->"f8781ec3-c1e9-4ec6-8760-\
24c56ae76490"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"LogPlot", "[",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"F", "[",
RowBox[{"r", ",", "26", ",", "1"}], "]"}], ",",
RowBox[{"F", "[",
RowBox[{"r", ",", "26", ",", "2"}], "]"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{"r", ",",
RowBox[{"4", "*", "aB"}], ",",
RowBox[{"8", "*", "aB"}]}], "}"}], ",",
RowBox[{"Ticks", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"Table", "[",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"i", "*", "aB"}], ",", "i"}], "}"}], ",",
RowBox[{"{",
RowBox[{"i", ",", "0", ",", "8"}], "}"}]}], "]"}], ",",
"Automatic"}], "}"}]}]}], "]"}]], "Input",
CellChangeTimes->{{3.703322894708043*^9, 3.7033230480108547`*^9}, {
3.703323093381901*^9, 3.703323131498642*^9}, {3.7033232181561413`*^9,
3.7033232542591057`*^9}, {3.703323288185816*^9,
3.703323327386774*^9}},ExpressionUUID->"be05f9cf-60ee-4078-9882-\
de7a852c1b7c"],
Cell[BoxData[
GraphicsBox[{{{}, {},
TagBox[
{RGBColor[0.368417, 0.506779, 0.709798], AbsoluteThickness[1.6], Opacity[
1.], LineBox[CompressedData["
1:eJwVzHk41HkcwPFxRpkJY9zm+M5kMOZXZIto90NR7TNTjQ6kQoW2emhboZIj
Z+kQkYjdypDmWbOK1Da7+0kHRq1YSo6xpNhK6yjtesS2f7yf139v3o5o/3Bt
Go0m/dz/ht9+GyzzYgPdS67JuU3H+4Vu5tVfsqFxlWdUooqOJD7hibE3G6aC
Ffx9v9FRs8TI94kvG7b0atFWP6Dj5hoRtW4dG7auGziq1UpHP+UemnQHGxRd
vsePDNPRXj5ctjqLDffWZ9ZmWzBwOGdw5Kt2NqiShzg2sQysD6uymoznQORC
livTdz6muz+eCTXkQvXtCOsNusaYOfOw4f5GLgS/G0xbHm6MX9yt3HaynAuR
143qklqM0fpKSYtmnAtx6owp5WITVKQcZuT78mCRidRy8yUTLGIHC5oKeGDS
wbA1YJgidknMswZ4sHxb013/GFPMzRN2XHMjIPfNO+4yaIrFe5n7A1MIZP3p
aJgoZaK2ts5A6iMC/gpTSXItE83yu7lMNh+uCvc9dhWa4fZVDzzFe/gwmzS/
iZFrhhsmz/MVKj40miSob+izsHxn1EA5XQBHPrSrtA+z0GV001FxkABEF8v6
vF6xMPKQ/UsLhQBczq5/GrTVHDt4Bo6nPgrAw+5Bok+zOb572OYR8fUCUD1z
nSNYaYHhTpd4vxQvAHVUycSxOxZo9mPyy9KhBXBA5+lQvMgSo5zXxA562MOx
56m6SXJLpDWTFzUZ9nD1ze8HtCytcFRIE+q02YPom5s1zVlWmJ3ycGktXwia
EJXyjo41bp8qEYxHC0H/w2Gv6Vhr7InersmtF8JET8x0zHtrvHWFRFczHWBk
ZfDpRftt8NHkx+4tIQ5QaTkxxBy0wWy/m6zd1Q7gIdMPXbHDFo/VpotoMw6g
7O7tSe+0xWcDgZbmaxyh0//NqX6JHT4zYrWdKXKEvoHTT4ub7ZCxeSDy3CtH
kArHy/x82DhWXKiedneC3qqqmpB7bJynFWo4mu4ECd+W2wR4cTBVIOKEtTpB
qq3pCdkNDlas7NNawhfBZELQiXBrLmqnlWF+tAhaA8r8tAO4aIj+kqB6Ecwu
q1C+LORi1M+6yiKmMzR2bsxtes7Fue0NIxEhzlCNGYZJ5jz0f/3dvwXVzpAd
XzInNZCHrRyXftmMM6gbGkFWwMMq5vj3J9aIwSp43MPkDx4u1b0oEhaLQTk9
aCBkEfzIDMhbOyQG7+fl8il/gm5Sz9LLw2KYRJbx/I0ED2RwKif/EsPYspNH
+ZsIjvwz9GvpWzFI206HSQIIvuiNf/1uTAxxBi+kpcEEWyqKvM9Mi+FyUnad
zy6CFZ6av1tMKCju+/To1EGCgzH1U3wmBV/Kus5fjiVIqsr14s0oeK+uDa+L
I1jCjbbhWlBwrWH33P5DBPP0aKv221LQmVQX55ZIMKmFV2ospGBth6q/O4Og
ykC/cpfD55/Nnp7RTIJT3q9v3HKkQOFi2qV3nODBmutNoc4U+NyTaRZmE9x7
YcWHn1wokJPMuWlnCF5tE9L0FlMQmK9jdyGH4Kt5RvOC3ChgYrxr1VmCYYnt
XK2lFMy6SCI68wiW1t0SbXKnIHmiMm3kHMGe0YtLKj0o+CFsVq5dQNDaKcX7
0zIKijwkaovzBAN2hktkXhRcd88Zcy4k+B81/iiW
"]]},
Annotation[#, "Charting`Private`Tag$134368#1"]& ],
TagBox[
{RGBColor[0.880722, 0.611041, 0.142051], AbsoluteThickness[1.6], Opacity[
1.], LineBox[CompressedData["
1:eJwVi3841Accx8/5ER36caKazp377e773eF+fMXqcyukUQ9C8kzIqdXmatTU
KtSYlaYparjrKUWmFEnqqZ5PyjX64UdaizAXkVGoUaZr9sfreT+v5/28OHHa
EA2dRqMFTfP/aq4ORQX7sGDJXuesZBMX7xyXO1YuYUHoo3Z3HY2Hrim7m2er
WdAkHuipp/OwS2nr2+zLAn3f32ucZvAwvFpCrl7NAsPr7zOvzeKh34XNtKA4
FhQ39jjSOTwUnBk4vSKLBX6Hh/rylvFw4HDv8NI2FmQET1k1Z/GwLrZiwXiK
C/SemEzxceFjBvXAFGPDhrBvrjIczvHxR5Ph7p01bNhVU3suXSlAxa2yL7NL
2JB1u1/BeCDAhcW6pq4xNjid7Zj7V6QQy9N32ef5cqAkQ9HVPibEAlYUryGf
A5vot2vifxIhtgc6Zhk5YBCc2rTIUYy5R4SPf5O7QsjHVrbVBTEWbmFuXZvu
Ct0P/eJnLXFDOt3cuP++K2Q/vGw60OiGDnkdbCaLC2k6tWnpBglG+9d7E5u5
UGzobTCNSjB0/Bi3/DoXrI85ffYxW4olGxKNJXY8ULxLcUzkE+g+EraHiORB
b1j5u5ZLBG7cKehzKucB50qSc9oqEh9zrMWHJnjQc3FPw/xuEl8ZWr0SVvLh
5+Ldc8x3f4oat5OcG4V8eJNKTxIwZOhwPq1P38+HlpiBdlWoDBOlATt6vQQQ
eKtqdPtJGdLuuT6vzhRAts3Xc4sGZTgipAnNWwWwTW9h+5WHOx5MN6guc4Xw
8oUuMCHNHaMndbwxrRB6plIDlze44zNtdFdunRAuDV4vDZvvgbXFrtpKpgh8
H3lb2SV44P3xiY5160VgpJ2P0Fd44EG/mnmbKkUQZRMZnvDBA/ddzpDQTCIY
EPJbLfw98Ylx7XzHADGsfnQ09vOcabed15pTIIaj3yVWXe30RPtw48ajL8RQ
7pSLZkI5jhYeb5yi3CDMuFmauUOODLMYm5EMNxh+eT/oT5Tjfp7EJbZl+hdV
NdfbKLB0ebeZkisBmde2tLG1CqT/cBrztBJ4eo9o6z+lQBsMCYysk0A5bVU1
640CE69ZXChgSmFrhVo3olbizLa7wwnrpUAT1URnHlRiyGDS+/xKKbyW6VbG
dCixxcW9J9gkBYfG7sJ/+SqsYI6dOBBAgMlmox2hVaHKokgiLCQgbhl9wZmb
KpxgRhxZ1U9Ax/FsTbs1hfIgb/2pAQJuKN928mdS+G2mS9n4SwKurIuO2Mag
cPhd/039EAGcp15B1vYUPu9MGXw1SoCBYPgqmRQ2lRaoc6YIoMvMNbmLKCz1
7nrdNIcEa8syzRceFPYm101ymSQsFihM+Z4UulaUWKY4kGB4i8eMcgp1bO0n
bCcSTi998mCnisIjljT/rc4kjDtM+Z71oTC1iaOfLZx2BjPB0p/C69ZWZfEi
EoaScuyDV1A4qR68VCsmIZYzs7YogMLt1VUNMVISFG/e28kDKdzy67J/LrqT
oKbdqo8LpvBsq5Bm6UnCQw6xoyKEwhcMW0aknIQZf+QLJ0MpjN3bxjZTkRCk
izv0SziF+iu1kjCKhN/331F3RlD4bKRIWeY13RdzJ0SRFC50S1d/WEyCc3/q
+eR1FEZs0AQG+5CQrHoaj1EU/gd1WSb7
"]]},
Annotation[#, "Charting`Private`Tag$134368#2"]& ]}, {}, {}},
AspectRatio->NCache[GoldenRatio^(-1), 0.6180339887498948],
Axes->{True, True},
AxesLabel->{None, None},
AxesOrigin->{7.558903956, -24.35840444853916},
CoordinatesToolOptions:>{"DisplayFunction" -> ({
Part[#, 1],
Exp[
Part[#, 2]]}& ), "CopiedValueFunction" -> ({
Part[#, 1],
Exp[
Part[#, 2]]}& )},
DisplayFunction->Identity,
Frame->{{False, False}, {False, False}},
FrameLabel->{{None, None}, {None, None}},
FrameTicks->{{
Charting`ScaledTicks[{Log, Exp}],
Charting`ScaledFrameTicks[{Log, Exp}]}, {Automatic, Automatic}},
GridLines->{None, None},
GridLinesStyle->Directive[
GrayLevel[0.5, 0.4]],
ImagePadding->All,
Method->{
"DefaultBoundaryStyle" -> Automatic, "DefaultMeshStyle" ->
AbsolutePointSize[6], "ScalingFunctions" -> None,
"CoordinatesToolOptions" -> {"DisplayFunction" -> ({
(Part[{{Identity, Identity}, {Log, Exp}}, 1, 2][#]& )[
Part[#, 1]],
(Part[{{Identity, Identity}, {Log, Exp}}, 2, 2][#]& )[
Part[#, 2]]}& ), "CopiedValueFunction" -> ({
(Part[{{Identity, Identity}, {Log, Exp}}, 1, 2][#]& )[
Part[#, 1]],
(Part[{{Identity, Identity}, {Log, Exp}}, 2, 2][#]& )[
Part[#, 2]]}& )}},
PlotRange->{{7.558903956,
15.117807912}, {-24.35840444853916, -3.7156083482909765`}},