-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalibrationV8-nonlinear-px.nb
1874 lines (1834 loc) · 88.5 KB
/
calibrationV8-nonlinear-px.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.1' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 90421, 1866]
NotebookOptionsPosition[ 87475, 1794]
NotebookOutlinePosition[ 87809, 1809]
CellTagsIndexPosition[ 87766, 1806]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{"Clear", "[", "\"\<Global`*\>\"", "]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Off", "[",
RowBox[{"DeleteDirectory", "::", "nodir"}], "]"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Required", " ", "Package"}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Needs", "[", "\"\<ErrorBarPlots`\>\"", "]"}],
"\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Required", " ", "Folder"}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{"SetDirectory", "[",
RowBox[{"NotebookDirectory", "[", "]"}], "]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"DeleteDirectory", "[",
RowBox[{"\"\<ResultsNonLinear\>\"", ",",
RowBox[{"DeleteContents", "\[Rule]", "True"}]}], "]"}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"CreateDirectory", "[", "\"\<ResultsNonLinear\>\"", "]"}], ";"}],
"\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Dataset", " ", "Folder", " ", "Path"}],
"*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
"dataPath", "=",
"\"\</home/edwin/Dropbox/Cinvestav \
Experiments/Project/Results/down/2*/seq*/reParticula*.dat\>\""}],
";"}]}], "Input",
CellChangeTimes->{{3.897050167792068*^9, 3.897050167980356*^9}, {
3.8974189984719543`*^9, 3.897418999445661*^9}, {3.89809056258147*^9,
3.898090603628419*^9}, {3.898090843436068*^9, 3.8980908750675507`*^9}, {
3.898091205586952*^9, 3.898091308075817*^9}, {3.898091354836885*^9,
3.898091394377548*^9}, {3.898091494779606*^9, 3.898091498954399*^9}, {
3.898093295066371*^9, 3.8980932987025347`*^9}, 3.898093652230329*^9, {
3.898116279497744*^9, 3.898116284390321*^9}, {3.898131669866302*^9,
3.898131690869083*^9}, {3.89813199814686*^9, 3.898132036272077*^9},
3.8981930028158617`*^9, {3.8981939355819798`*^9, 3.8981939448110123`*^9}, {
3.898193984414222*^9,
3.898193984915498*^9}},ExpressionUUID->"af312873-6fe2-4d95-9ad2-\
41bde37bc369"],
Cell[BoxData["\<\"/home/edwin/Dropbox/Cinvestav \
Experiments/Project/Computational/Modules\"\>"], "Output",
CellChangeTimes->{3.898093652757856*^9, 3.898108955366081*^9,
3.898114855734393*^9, 3.898115092729344*^9, 3.898115494150049*^9,
3.898116246360914*^9, 3.8981181248560266`*^9, 3.898130366386634*^9,
3.898131038535861*^9, 3.898131091783163*^9, 3.89813169464426*^9,
3.898132065351406*^9, 3.8981930685316896`*^9, 3.898193440568342*^9,
3.898193727635892*^9, 3.898193988488409*^9, 3.89835680631629*^9,
3.898536658468255*^9},ExpressionUUID->"3fbe67f4-ad5f-48d8-9da6-\
d1e90c587985"]
}, Open ]],
Cell[CellGroupData[{
Cell["Calibration", "Subsubsection",
CellChangeTimes->{{3.897080650541477*^9, 3.8970806600797377`*^9}, {
3.897141716935377*^9,
3.897141720049444*^9}},ExpressionUUID->"efd3c296-3988-45aa-b4ab-\
54c4b4965a9b"],
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"z", " ", "Steps", " ", "in", " ", "\[Mu]m"}], "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"zStep", "=", "0.5"}], ";"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Px", " ", "to", " ", "\[Mu]m"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Px", "=", "0.127735"}],
RowBox[{"(*", "\[Mu]m", "*)"}], ";"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Carvajal", " ", "Parameters"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Alpha]1", "=",
RowBox[{"30.8437", "/", "Px"}]}],
RowBox[{"(*", "Px", "*)"}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Alpha]2", "=",
RowBox[{"1", "/", "145.2783"}]}], " ",
RowBox[{"(*",
SuperscriptBox["\[Mu]m",
RowBox[{"-", "1"}]], "*)"}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Alpha]3", "=",
RowBox[{
RowBox[{"-", "31.0573"}], "/", "Px"}]}],
RowBox[{"(*", "Px", "*)"}], ";"}]}]}]], "Input",
CellChangeTimes->{{3.897052721968832*^9, 3.8970527304073544`*^9}, {
3.897052807677116*^9, 3.897052807820506*^9}, {3.8971408989922867`*^9,
3.8971409022731447`*^9}, 3.897141171776352*^9, {3.897411466948674*^9,
3.8974114907722473`*^9}, {3.8975903200217733`*^9,
3.8975903742815857`*^9}, {3.897766959112567*^9, 3.897766959492331*^9}, {
3.898193263512807*^9, 3.8981932895781937`*^9}, {3.898193329175971*^9,
3.898193334924572*^9}, {3.8981933686584263`*^9, 3.8981933812012367`*^9}, {
3.898193705777419*^9,
3.8981937234827013`*^9}},ExpressionUUID->"f9d53e53-6f1f-4f33-8e40-\
554ffe7c33de"],
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"Number", " ", "of", " ", "Particles"}], "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"nFile", "=",
RowBox[{"Length", "@",
RowBox[{"FileNames", "[", "dataPath", "]"}]}]}], ";"}]}]], "Input",
CellChangeTimes->{{3.8974115645308313`*^9, 3.89741161266199*^9},
3.898091681795123*^9,
3.8981303763448763`*^9},ExpressionUUID->"a5460eb8-70c2-4008-ab41-\
86fdbb1e0ee9"],
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"Import", " ", "Data"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"data", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"Import", "[",
RowBox[{
RowBox[{
RowBox[{"FileNames", "[", "dataPath", "]"}], "[",
RowBox[{"[", "i", "]"}], "]"}], ",", "\"\<Data\>\""}], "]"}], ",",
RowBox[{"{",
RowBox[{"i", ",", "nFile"}], "}"}]}], "]"}]}], ";"}]}]], "Input",Expres\
sionUUID->"f11653a3-fbd1-46c9-9980-20593737d40a"],
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"Radius", " ", "List"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"RListRaw", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"Last", "/@",
RowBox[{"data", "[",
RowBox[{"[", "i", "]"}], "]"}]}], ",",
RowBox[{"{",
RowBox[{"i", ",", "nFile"}], "}"}]}], "]"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"RList", "=",
RowBox[{"Table", "[", "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"aux", "=",
RowBox[{"RListRaw", "[",
RowBox[{"[", "i", "]"}], "]"}]}], ";",
RowBox[{"\[Theta]", "=", "1"}], ";", "\[IndentingNewLine]",
RowBox[{"While", "[", "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"RListRaw", "[",
RowBox[{"[",
RowBox[{"i", ",", "\[Theta]"}], "]"}], "]"}], "\[Equal]", "0."}],
",", "\[IndentingNewLine]",
RowBox[{
RowBox[{"aux", "=",
RowBox[{"Drop", "[",
RowBox[{"aux", ",", "1"}], "]"}]}], ";",
RowBox[{"\[Theta]", "++"}]}]}], "]"}], ";", "\[IndentingNewLine]",
"aux"}], ",", "\[IndentingNewLine]",
RowBox[{"{",
RowBox[{"i", ",", "nFile"}], "}"}]}], "]"}]}], ";"}]}]}]], "Input",
CellChangeTimes->{
3.89819301331437*^9},ExpressionUUID->"f38af264-9ea4-49b7-874f-8d20fee69a5a"],
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"Match", " ", "Dataset", " ", "Lengths"}], "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"Lengths", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"Length", "@",
RowBox[{"RList", "[",
RowBox[{"[", "i", "]"}], "]"}]}], ",",
RowBox[{"{",
RowBox[{"i", ",", "nFile"}], "}"}]}], "]"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"RList", "=",
RowBox[{"Map", "[",
RowBox[{
RowBox[{
RowBox[{"Take", "[",
RowBox[{"#", ",",
RowBox[{"Min", "@", "Lengths"}]}], "]"}], "&"}], ",", "RList"}],
"]"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"zList", "=",
RowBox[{"Range", "[",
RowBox[{"0.5", ",",
RowBox[{
RowBox[{"Min", "@", "Lengths"}], " ", "zStep"}], ",", "zStep"}],
"]"}]}], ";"}]}]}]], "Input",
CellChangeTimes->{{3.897050146038492*^9, 3.897050149138932*^9}, {
3.8970502587302217`*^9, 3.897050342524042*^9}, {3.897050383190118*^9,
3.8970504562600727`*^9}, {3.897050502111178*^9, 3.897050558469019*^9}, {
3.897051985009411*^9, 3.897052018916128*^9}, {3.897052253654716*^9,
3.897052254862934*^9}, {3.897052389595187*^9, 3.897052443245496*^9}, {
3.89705276709101*^9, 3.897052854090671*^9}, 3.897052981172195*^9, {
3.897053039376954*^9, 3.8970530590975103`*^9}, {3.897053102484981*^9,
3.8970531081210823`*^9}, {3.89705316462803*^9, 3.897053214641295*^9}, {
3.8970824520182333`*^9, 3.897082484215201*^9}, {3.8971409263047943`*^9,
3.8971409429501343`*^9}, {3.897141171782823*^9, 3.897141171786645*^9}, {
3.897411630083494*^9, 3.8974116408326693`*^9}, {3.897411865143632*^9,
3.89741186719862*^9}, {3.897411948593055*^9, 3.897411950214559*^9}, {
3.897411983790441*^9, 3.8974120205551987`*^9}, {3.897418329951823*^9,
3.8974183299721117`*^9}, {3.897589860097665*^9, 3.897589860458984*^9}, {
3.897757900728861*^9, 3.897757903352355*^9}, {3.897758105329048*^9,
3.8977581056009903`*^9}, {3.897758152834296*^9, 3.897758208066103*^9}, {
3.897758340846999*^9, 3.897758375641246*^9}, 3.8981151023104773`*^9,
3.898115178419263*^9, {3.898128490392324*^9, 3.8981286365590887`*^9}, {
3.898129593721933*^9, 3.898129608005172*^9}, {3.898129699140024*^9,
3.898129700698819*^9}, {3.898129747866561*^9, 3.898129761462537*^9}, {
3.89812979588835*^9, 3.8981298418878403`*^9}, {3.898129928462591*^9,
3.8981299288632107`*^9}, {3.898130109912383*^9, 3.8981301184147*^9},
3.898130354270438*^9, {3.89813038686121*^9,
3.898130430251863*^9}},ExpressionUUID->"d952e387-8d70-457a-9300-\
cda09be1247d"],
Cell[BoxData[
RowBox[{
RowBox[{"(*", "Calibration", "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"zRList", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"DeleteCases", "[",
RowBox[{
RowBox[{"Transpose", "[",
RowBox[{"{",
RowBox[{"zList", ",",
RowBox[{"RList", "[",
RowBox[{"[", "i", "]"}], "]"}]}], "}"}], "]"}], ",",
RowBox[{"{",
RowBox[{"_", ",", "0."}], "}"}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"i", ",", "nFile"}], "}"}]}], "]"}]}], ";"}]}]], "Input",
CellChangeTimes->{
3.898193013317028*^9},ExpressionUUID->"21d3ddde-1d0d-4f0c-b865-\
b75bb6255adb"],
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"Calibration", " ", "Fits"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"zRFits", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"NonlinearModelFit", "[",
RowBox[{
RowBox[{"zRList", "[",
RowBox[{"[", "i", "]"}], "]"}], ",",
RowBox[{
RowBox[{"a1", " ",
RowBox[{"Exp", "[",
RowBox[{"a2", " ", "x"}], "]"}]}], "+", "a3"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"a1", ",", "\[Alpha]1"}], "}"}], ",",
RowBox[{"{",
RowBox[{"a2", ",", "\[Alpha]2"}], "}"}], ",",
RowBox[{"{",
RowBox[{"a3", ",", "\[Alpha]3"}], "}"}]}], "}"}], ",", "x", ",",
RowBox[{"Method", "\[Rule]", "\"\<NMinimize\>\""}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"i", ",", "nFile"}], "}"}]}], "]"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"RMeanList", "=",
RowBox[{"Mean", "/@",
RowBox[{"Transpose", "[",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"Table", "[",
RowBox[{
RowBox[{
RowBox[{"zRFits", "[",
RowBox[{"[", "j", "]"}], "]"}], "[",
RowBox[{"zList", "[",
RowBox[{"[", "i", "]"}], "]"}], "]"}], ",",
RowBox[{"{",
RowBox[{"i", ",",
RowBox[{"Length", "@", "zList"}]}], "}"}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"j", ",", "nFile"}], "}"}]}], "]"}], "]"}]}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Sigma]MeanList", "=",
RowBox[{"StandardDeviation", "/@",
RowBox[{"Transpose", "[",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"Table", "[",
RowBox[{
RowBox[{
RowBox[{"zRFits", "[",
RowBox[{"[", "j", "]"}], "]"}], "[",
RowBox[{"zList", "[",
RowBox[{"[", "i", "]"}], "]"}], "]"}], ",",
RowBox[{"{",
RowBox[{"i", ",",
RowBox[{"Length", "@", "zList"}]}], "}"}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"j", ",", "nFile"}], "}"}]}], "]"}], "]"}]}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"zRMeanList", "=",
RowBox[{"Transpose", "[",
RowBox[{"{",
RowBox[{"zList", ",", "RMeanList"}], "}"}], "]"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"zRFit", "=",
RowBox[{"NonlinearModelFit", "[",
RowBox[{"zRMeanList", ",",
RowBox[{
RowBox[{"a1", " ",
RowBox[{"Exp", "[",
RowBox[{"a2", " ", "x"}], "]"}]}], "+", "a3"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"a1", ",", "\[Alpha]1"}], "}"}], ",",
RowBox[{"{",
RowBox[{"a2", ",", "\[Alpha]2"}], "}"}], ",",
RowBox[{"{",
RowBox[{"a3", ",", "\[Alpha]3"}], "}"}]}], "}"}], ",", "x", ",",
RowBox[{"Method", "\[Rule]", "\"\<NMinimize\>\""}], ",",
RowBox[{"Weights", "\[Rule]",
RowBox[{"1", "/",
SuperscriptBox["\[Sigma]MeanList", "2"]}]}]}], "]"}]}],
";"}]}]}]], "Input",
CellChangeTimes->{{3.897053144269908*^9, 3.8970531457048683`*^9}, {
3.897053233174429*^9, 3.8970532637809553`*^9}, {3.897053378490964*^9,
3.897053387852062*^9}, {3.8970535871207647`*^9, 3.897053636936788*^9}, {
3.8970547971502333`*^9, 3.89705481447606*^9}, 3.897054872799739*^9,
3.897055239209627*^9, {3.897055324930314*^9, 3.8970553286059637`*^9}, {
3.897055463531629*^9, 3.8970554741621647`*^9}, {3.897055523470275*^9,
3.8970556161394672`*^9}, {3.897057641532015*^9, 3.897057650768716*^9}, {
3.897074316853888*^9, 3.897074324613974*^9}, {3.8970806829190702`*^9,
3.897080700844604*^9}, {3.897080752248378*^9, 3.897080753404572*^9}, {
3.897080804796321*^9, 3.897080824417015*^9}, {3.897080863990787*^9,
3.8970809295281677`*^9}, {3.897081026396469*^9, 3.89708110604414*^9},
3.897140520387413*^9, 3.897140962144318*^9, {3.897412243231524*^9,
3.8974122460466423`*^9}, {3.897412496272784*^9, 3.897412542788863*^9}, {
3.897412591754882*^9, 3.897412618565827*^9}, {3.897412723261599*^9,
3.897412771976207*^9}, {3.897413033628065*^9, 3.897413035824667*^9}, {
3.897413071979224*^9, 3.89741328667566*^9}, {3.897414220251145*^9,
3.897414267501617*^9}, {3.8974147803698473`*^9, 3.8974147815328503`*^9}, {
3.897414844017424*^9, 3.897414855523127*^9}, {3.897415153455907*^9,
3.897415155484433*^9}, 3.897415201912632*^9, 3.897415262528707*^9, {
3.897415307845449*^9, 3.89741534086025*^9}, {3.8974157124351807`*^9,
3.8974157785209513`*^9}, {3.8974165454396143`*^9, 3.897416590619484*^9}, {
3.897416664679603*^9, 3.8974166715825863`*^9}, 3.897416716294858*^9, {
3.897417164039925*^9, 3.897417166434363*^9}, {3.897417940869314*^9,
3.897417942668434*^9}, 3.8974180577531357`*^9, {3.897418215370502*^9,
3.897418349697322*^9}, {3.897418414107175*^9, 3.897418496984838*^9}, {
3.897418827562181*^9, 3.897418849612068*^9}, {3.897419070935704*^9,
3.8974190946944933`*^9}, {3.897419274461918*^9, 3.897419309183927*^9}, {
3.897590146739924*^9, 3.89759015423279*^9}, {3.897590225179058*^9,
3.897590263534449*^9}, {3.8975902999539413`*^9, 3.897590313370121*^9}, {
3.897590380023155*^9, 3.897590428860283*^9}, {3.897591601758091*^9,
3.897591610739068*^9}, {3.8975916597979317`*^9, 3.897591663500733*^9}, {
3.89759170067976*^9, 3.897591715516039*^9}, {3.8975918963849382`*^9,
3.8975919376514587`*^9}, {3.897591996518497*^9, 3.897592017850913*^9}, {
3.897592186388232*^9, 3.897592196724247*^9}, {3.8975922510947866`*^9,
3.897592278876278*^9}, {3.8977399180287437`*^9, 3.897739951394547*^9}, {
3.898107885123914*^9, 3.898107886559214*^9}, {3.8981085955289507`*^9,
3.8981086327631702`*^9}, {3.89810867743266*^9, 3.898108701409216*^9}, {
3.8981087425674257`*^9, 3.898108749290863*^9}, {3.89811482212122*^9,
3.898114845433607*^9}, {3.898115436692141*^9, 3.898115480963622*^9}, {
3.898115605507392*^9, 3.8981156093434353`*^9}, {3.898115756147991*^9,
3.898115762320733*^9}, {3.898116035185511*^9, 3.898116035291677*^9}, {
3.898116146693014*^9,
3.898116236334961*^9}},ExpressionUUID->"118d8910-d13d-4b9b-9708-\
a016b61b0a78"],
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"Degrees", " ", "of", " ", "Freedom"}], "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"\[Nu]", "=",
RowBox[{
RowBox[{"zRFit", "[", "\"\<ANOVATableDegreesOfFreedom\>\"", "]"}], "[",
RowBox[{"[", "2", "]"}], "]"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Reduced", " ",
SuperscriptBox["\[Chi]", "2"]}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Chi]2\[Nu]", "=",
RowBox[{
RowBox[{"Total", "[",
SuperscriptBox[
RowBox[{"zRFit", "[", "\"\<StandardizedResiduals\>\"", "]"}], "2"],
"]"}], "/", "\[Nu]"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{"(*", "Probability", "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"P", "=",
RowBox[{"SurvivalFunction", "[",
RowBox[{
RowBox[{"ChiSquareDistribution", "[", "\[Nu]", "]"}], ",",
RowBox[{"\[Chi]2\[Nu]", " ", "\[Nu]"}]}], "]"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Autocorrelation", " ", "Test"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"d", "=",
RowBox[{
RowBox[{"Total", "[",
SuperscriptBox[
RowBox[{"Differences", "[",
RowBox[{"zRFit", "[", "\"\<StandardizedResiduals\>\"", "]"}], "]"}],
"2"], "]"}], "/",
RowBox[{"Total", "[",
SuperscriptBox[
RowBox[{"zRFit", "[", "\"\<StandardizedResiduals\>\"", "]"}], "2"],
"]"}]}]}], ";"}]}]}]], "Input",
CellChangeTimes->{{3.897418527823969*^9, 3.8974185278322372`*^9}, {
3.89774035500245*^9, 3.897740366257155*^9}, {3.8977404643555937`*^9,
3.8977404654605227`*^9}, {3.8980933200780354`*^9, 3.898093320275874*^9}, {
3.898093387472559*^9, 3.898093398085627*^9}, {3.8981187500893106`*^9,
3.898118769697132*^9}},ExpressionUUID->"badee4e4-887b-4eca-bed6-\
3158d1555b71"]
}, Open ]],
Cell[CellGroupData[{
Cell["Print Results", "Subsubsection",
CellChangeTimes->{{3.89707440099155*^9,
3.897074404777425*^9}},ExpressionUUID->"25458495-adf9-409c-ad2a-\
d426bccebb5c"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"Print", " ", "Results"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Print", "[", "]"}], "\[IndentingNewLine]",
RowBox[{"Print", "[",
RowBox[{"Style", "[",
RowBox[{"\"\<Statistical Parameters\>\"", ",", "Underlined"}], "]"}],
"]"}], "\[IndentingNewLine]",
RowBox[{"Print", "[",
RowBox[{"\"\<\!\(\*SuperscriptBox[\(R\), \(2\)]\) = \>\"", ",", " ",
RowBox[{"SetPrecision", "[",
RowBox[{
RowBox[{"zRFit", "[", "\"\<RSquared\>\"", "]"}], ",", "4"}], "]"}]}],
"]"}], "\[IndentingNewLine]",
RowBox[{"Print", "[",
RowBox[{"\"\<\[Nu] = \>\"", ",", " ",
RowBox[{"SetPrecision", "[",
RowBox[{"\[Nu]", ",", "4"}], "]"}]}], "]"}], "\[IndentingNewLine]",
RowBox[{"Print", "[",
RowBox[{
"\"\<\!\(\*SuperscriptBox[SubscriptBox[\(\[Chi]\), \(\[Nu]\)], \(2\)]\) = \
\>\"", ",", " ",
RowBox[{"SetPrecision", "[",
RowBox[{"\[Chi]2\[Nu]", ",", "4"}], "]"}]}], "]"}],
"\[IndentingNewLine]",
RowBox[{"Print", "[",
RowBox[{
"\"\<P(\!\(\*SuperscriptBox[SubscriptBox[\(\[Chi]\), \(\[Nu]\)], \
\(2\)]\);\[Nu]) = \>\"", ",", " ",
RowBox[{"SetPrecision", "[",
RowBox[{"P", ",", "4"}], "]"}]}], "]"}], "\[IndentingNewLine]",
RowBox[{"Print", "[",
RowBox[{"\"\<D = \>\"", ",", " ",
RowBox[{"SetPrecision", "[",
RowBox[{"d", ",", "4"}], "]"}]}], "]"}], "\[IndentingNewLine]",
RowBox[{"Print", "[",
RowBox[{"zRFit", "[", "\"\<ParameterTable\>\"", "]"}], "]"}],
"\[IndentingNewLine]",
RowBox[{"Print", "[", "]"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Fit", " ", "Plot"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"zRMeanList\[Sigma]", "=",
RowBox[{"MapAt", "[",
RowBox[{"ErrorBar", ",",
RowBox[{"Transpose", "[",
RowBox[{"{",
RowBox[{"zRMeanList", ",", "\[Sigma]MeanList"}], "}"}], "]"}], ",",
RowBox[{"{",
RowBox[{"All", ",", "2"}], "}"}]}], "]"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{"plot", "=",
RowBox[{"Legended", "[",
RowBox[{
RowBox[{"Show", "[", "\[IndentingNewLine]",
RowBox[{
RowBox[{"ErrorListPlot", "[", "zRMeanList\[Sigma]", "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Plot", "[",
RowBox[{
RowBox[{"zRFit", "[", "x", "]"}], ",",
RowBox[{"{",
RowBox[{"x", ",",
RowBox[{"First", "@", "zList"}], ",",
RowBox[{"Last", "@", "zList"}]}], "}"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Red", ",", "Dashed"}], "}"}]}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Frame", "\[Rule]", "True"}], ",", "\[IndentingNewLine]",
RowBox[{"FrameLabel", "\[Rule]",
RowBox[{"{",
RowBox[{"\"\<z (\[Mu]m)\>\"", ",", "\"\<R (Px)\>\""}], "}"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"PlotLabel", "\[Rule]", "\"\<Calibration\>\""}], ",",
"\[IndentingNewLine]",
RowBox[{"PlotRange", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"Min", "[",
RowBox[{"First", "/@", "zRMeanList"}], "]"}], ",",
RowBox[{"Max", "[",
RowBox[{"First", "/@", "zRMeanList"}], "]"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"Min", "@",
RowBox[{"DeleteCases", "[",
RowBox[{"RMeanList", ",", "0."}], "]"}]}], ",",
RowBox[{"Max", "@", "RMeanList"}]}], "}"}]}], "}"}]}]}], "]"}],
",",
RowBox[{"Placed", "[",
RowBox[{
RowBox[{"LineLegend", "[",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{
RowBox[{"ColorData", "[", "97", "]"}], "[", "1", "]"}], ",",
RowBox[{"{",
RowBox[{"Red", ",", "Dashed"}], "}"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{"\"\<Dataset\>\"", ",", "\"\<BestFit\>\""}], "}"}], ",",
RowBox[{"LegendFunction", "->", "Panel"}]}], "]"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"0.05", ",", "0.7"}], "}"}], ",",
RowBox[{"{",
RowBox[{"0", ",", "0"}], "}"}]}], "}"}]}], "]"}]}], "]"}]}],
"\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Residuals", " ", "Plot"}], "*)"}], "\[IndentingNewLine]",
RowBox[{"ResPlot", "=",
RowBox[{"ListLinePlot", "[",
RowBox[{
RowBox[{"Transpose", "[",
RowBox[{"{",
RowBox[{
RowBox[{"First", "/@", "zRMeanList"}], ",",
RowBox[{"zRFit", "[", "\"\<FitResiduals\>\"", "]"}]}], "}"}], "]"}],
",", " ", "\[IndentingNewLine]",
RowBox[{"AspectRatio", "\[Rule]",
RowBox[{"1", "/", "5"}]}], ",", "\[IndentingNewLine]",
RowBox[{"Frame", "\[Rule]", "True"}], ",", "\[IndentingNewLine]",
RowBox[{"Filling", "\[Rule]", "Axis"}], ",", "\[IndentingNewLine]",
RowBox[{"FrameLabel", "\[Rule]",
RowBox[{"{",
RowBox[{"\"\<z (\[Mu]m)\>\"", ",", "\"\<\>\""}], "}"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"PlotLabel", "\[Rule]", "\"\<Residuals\>\""}]}],
"]"}]}]}]}]], "Input",
CellChangeTimes->{{3.89705489186969*^9, 3.897054901905694*^9}, {
3.897054980468507*^9, 3.8970550037599277`*^9}, {3.8970551245187817`*^9,
3.897055126379683*^9}, {3.8970556541000147`*^9, 3.897055659903884*^9}, {
3.8970557200574827`*^9, 3.8970557387645817`*^9}, {3.897055821087817*^9,
3.897055832817995*^9}, {3.897055880364205*^9, 3.897055889570777*^9}, {
3.8970560084302177`*^9, 3.8970560832787933`*^9}, {3.8970562672109833`*^9,
3.897056320591157*^9}, {3.89705635668176*^9, 3.897056437229364*^9}, {
3.8970564973591347`*^9, 3.897056567801815*^9}, {3.897056706671378*^9,
3.8970567735802402`*^9}, {3.8970568643387117`*^9, 3.897056962228826*^9}, {
3.897057162336144*^9, 3.8970572126854973`*^9}, {3.897057306103808*^9,
3.8970573361236753`*^9}, {3.897057460731963*^9, 3.897057482564755*^9}, {
3.897057556109251*^9, 3.897057602895411*^9}, {3.897074365821213*^9,
3.897074381450069*^9}, {3.897074435000045*^9, 3.897074471693438*^9}, {
3.8970745311577883`*^9, 3.897074533146134*^9}, {3.8970745891397753`*^9,
3.897074589381736*^9}, {3.897076111556308*^9, 3.897076145529462*^9}, {
3.897076249699292*^9, 3.8970762545001707`*^9}, {3.897076304731386*^9,
3.897076363789113*^9}, {3.897076437745552*^9, 3.8970764462784777`*^9}, {
3.897076585657364*^9, 3.897076611070167*^9}, {3.897076980946991*^9,
3.897077162242497*^9}, 3.897077309872497*^9, {3.897414330035624*^9,
3.8974143370390053`*^9}, {3.89741479061795*^9, 3.897414790844017*^9}, {
3.897414870122733*^9, 3.8974149251048307`*^9}, {3.897414957225521*^9,
3.897414961634975*^9}, {3.897415015743845*^9, 3.897415024540285*^9}, {
3.897415057975647*^9, 3.897415063362731*^9}, {3.897415112954666*^9,
3.897415114484638*^9}, {3.897418330012623*^9, 3.897418330070643*^9}, {
3.8974185278396683`*^9, 3.897418527851295*^9}, {3.897418570746874*^9,
3.897418607278789*^9}, {3.897418649410537*^9, 3.8974187040275784`*^9}, {
3.897418821330752*^9, 3.897418821996269*^9}, 3.897418951313223*^9, {
3.897419340764542*^9, 3.8974194598481092`*^9}, {3.898093342170403*^9,
3.898093342456005*^9}, 3.898131978218234*^9, {3.898193026262344*^9,
3.898193062700367*^9}, {3.898536624558343*^9, 3.898536647791073*^9}, {
3.898536726268395*^9,
3.898536747077881*^9}},ExpressionUUID->"025c5697-27a1-47b0-8c63-\
ea50df8730d1"],
Cell[CellGroupData[{
Cell[BoxData["\<\"\"\>"], "Print",
CellChangeTimes->{
3.8970744071307783`*^9, {3.897074447474143*^9, 3.897074472758045*^9},
3.897074535256357*^9, 3.897074589922097*^9, 3.8970763859722137`*^9, {
3.897076438181134*^9, 3.897076446881522*^9}, 3.897076992743352*^9,
3.8970770260805073`*^9, {3.897077058799752*^9, 3.897077097361761*^9}, {
3.897077132709629*^9, 3.897077164442902*^9}, 3.897077311455154*^9,
3.897080760752923*^9, 3.8970808274932528`*^9, 3.8970808742785683`*^9,
3.8970810536991453`*^9, {3.897081086636455*^9, 3.8970811084613028`*^9},
3.897081860046487*^9, 3.897140490340452*^9, {3.8971409477849607`*^9,
3.897140966314547*^9}, 3.8974122533794737`*^9, {3.897414862200774*^9,
3.897414926118371*^9}, 3.897414969501552*^9, 3.897415025551384*^9, {
3.897415063959742*^9, 3.897415085004682*^9}, 3.8974151151917963`*^9,
3.8974151585116787`*^9, 3.897418066045368*^9, 3.897418536022521*^9,
3.897418577625193*^9, 3.897418705419979*^9, 3.89741888418929*^9,
3.8974189343702908`*^9, {3.897419319593932*^9, 3.897419341936064*^9},
3.897419462085041*^9, 3.897419596108099*^9, 3.897419659974288*^9,
3.897589763984774*^9, 3.897589869427792*^9, 3.8975916152019997`*^9,
3.897591722743782*^9, 3.897591943835205*^9, 3.897592148180746*^9, {
3.8975922566158247`*^9, 3.897592284082121*^9}, 3.897739535479344*^9,
3.897740009991048*^9, 3.897740376541523*^9, 3.8977404808152723`*^9,
3.897745476012383*^9, 3.897766964851861*^9, 3.8980917403995028`*^9, {
3.898093376270611*^9, 3.898093403548225*^9}, 3.898108957464632*^9,
3.8981148608791113`*^9, 3.89811549631868*^9, 3.898116249350458*^9,
3.898118130476429*^9, 3.898130474452697*^9, 3.8981320682618856`*^9, {
3.8981930562891397`*^9, 3.8981930850616207`*^9}, 3.898193457012895*^9,
3.898193743898534*^9, 3.898194001642668*^9, 3.898356834053237*^9,
3.898536681428216*^9, {3.898536732123085*^9,
3.898536747846361*^9}},ExpressionUUID->"b20c70b3-3908-4674-8d32-\
635b4122f42e"],
Cell[BoxData[
StyleBox["\<\"Statistical Parameters\"\>",
StripOnInput->False,
FontVariations->{"Underline"->True}]], "Print",
CellChangeTimes->{
3.8970744071307783`*^9, {3.897074447474143*^9, 3.897074472758045*^9},
3.897074535256357*^9, 3.897074589922097*^9, 3.8970763859722137`*^9, {
3.897076438181134*^9, 3.897076446881522*^9}, 3.897076992743352*^9,
3.8970770260805073`*^9, {3.897077058799752*^9, 3.897077097361761*^9}, {
3.897077132709629*^9, 3.897077164442902*^9}, 3.897077311455154*^9,
3.897080760752923*^9, 3.8970808274932528`*^9, 3.8970808742785683`*^9,
3.8970810536991453`*^9, {3.897081086636455*^9, 3.8970811084613028`*^9},
3.897081860046487*^9, 3.897140490340452*^9, {3.8971409477849607`*^9,
3.897140966314547*^9}, 3.8974122533794737`*^9, {3.897414862200774*^9,
3.897414926118371*^9}, 3.897414969501552*^9, 3.897415025551384*^9, {
3.897415063959742*^9, 3.897415085004682*^9}, 3.8974151151917963`*^9,
3.8974151585116787`*^9, 3.897418066045368*^9, 3.897418536022521*^9,
3.897418577625193*^9, 3.897418705419979*^9, 3.89741888418929*^9,
3.8974189343702908`*^9, {3.897419319593932*^9, 3.897419341936064*^9},
3.897419462085041*^9, 3.897419596108099*^9, 3.897419659974288*^9,
3.897589763984774*^9, 3.897589869427792*^9, 3.8975916152019997`*^9,
3.897591722743782*^9, 3.897591943835205*^9, 3.897592148180746*^9, {
3.8975922566158247`*^9, 3.897592284082121*^9}, 3.897739535479344*^9,
3.897740009991048*^9, 3.897740376541523*^9, 3.8977404808152723`*^9,
3.897745476012383*^9, 3.897766964851861*^9, 3.8980917403995028`*^9, {
3.898093376270611*^9, 3.898093403548225*^9}, 3.898108957464632*^9,
3.8981148608791113`*^9, 3.89811549631868*^9, 3.898116249350458*^9,
3.898118130476429*^9, 3.898130474452697*^9, 3.8981320682618856`*^9, {
3.8981930562891397`*^9, 3.8981930850616207`*^9}, 3.898193457012895*^9,
3.898193743898534*^9, 3.898194001642668*^9, 3.898356834053237*^9,
3.898536681428216*^9, {3.898536732123085*^9,
3.89853674784783*^9}},ExpressionUUID->"55226534-7ad5-40bf-80c3-\
7b93866e3146"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"\\!\\(\\*SuperscriptBox[\\(R\\), \\(2\\)]\\) = \"\>",
"\[InvisibleSpace]", "0.9999994952493491684`4."}],
SequenceForm[
"\!\(\*SuperscriptBox[\(R\), \(2\)]\) = ", 0.9999994952493491684`4.],
Editable->False]], "Print",
CellChangeTimes->{
3.8970744071307783`*^9, {3.897074447474143*^9, 3.897074472758045*^9},
3.897074535256357*^9, 3.897074589922097*^9, 3.8970763859722137`*^9, {
3.897076438181134*^9, 3.897076446881522*^9}, 3.897076992743352*^9,
3.8970770260805073`*^9, {3.897077058799752*^9, 3.897077097361761*^9}, {
3.897077132709629*^9, 3.897077164442902*^9}, 3.897077311455154*^9,
3.897080760752923*^9, 3.8970808274932528`*^9, 3.8970808742785683`*^9,
3.8970810536991453`*^9, {3.897081086636455*^9, 3.8970811084613028`*^9},
3.897081860046487*^9, 3.897140490340452*^9, {3.8971409477849607`*^9,
3.897140966314547*^9}, 3.8974122533794737`*^9, {3.897414862200774*^9,
3.897414926118371*^9}, 3.897414969501552*^9, 3.897415025551384*^9, {
3.897415063959742*^9, 3.897415085004682*^9}, 3.8974151151917963`*^9,
3.8974151585116787`*^9, 3.897418066045368*^9, 3.897418536022521*^9,
3.897418577625193*^9, 3.897418705419979*^9, 3.89741888418929*^9,
3.8974189343702908`*^9, {3.897419319593932*^9, 3.897419341936064*^9},
3.897419462085041*^9, 3.897419596108099*^9, 3.897419659974288*^9,
3.897589763984774*^9, 3.897589869427792*^9, 3.8975916152019997`*^9,
3.897591722743782*^9, 3.897591943835205*^9, 3.897592148180746*^9, {
3.8975922566158247`*^9, 3.897592284082121*^9}, 3.897739535479344*^9,
3.897740009991048*^9, 3.897740376541523*^9, 3.8977404808152723`*^9,
3.897745476012383*^9, 3.897766964851861*^9, 3.8980917403995028`*^9, {
3.898093376270611*^9, 3.898093403548225*^9}, 3.898108957464632*^9,
3.8981148608791113`*^9, 3.89811549631868*^9, 3.898116249350458*^9,
3.898118130476429*^9, 3.898130474452697*^9, 3.8981320682618856`*^9, {
3.8981930562891397`*^9, 3.8981930850616207`*^9}, 3.898193457012895*^9,
3.898193743898534*^9, 3.898194001642668*^9, 3.898356834053237*^9,
3.898536681428216*^9, {3.898536732123085*^9,
3.898536747849172*^9}},ExpressionUUID->"fe7dff51-8645-48bf-8e36-\
092f4dbd0275"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"\[Nu] = \"\>", "\[InvisibleSpace]", "15.`4."}],
SequenceForm["\[Nu] = ", 15.`4.],
Editable->False]], "Print",
CellChangeTimes->{
3.8970744071307783`*^9, {3.897074447474143*^9, 3.897074472758045*^9},
3.897074535256357*^9, 3.897074589922097*^9, 3.8970763859722137`*^9, {
3.897076438181134*^9, 3.897076446881522*^9}, 3.897076992743352*^9,
3.8970770260805073`*^9, {3.897077058799752*^9, 3.897077097361761*^9}, {
3.897077132709629*^9, 3.897077164442902*^9}, 3.897077311455154*^9,
3.897080760752923*^9, 3.8970808274932528`*^9, 3.8970808742785683`*^9,
3.8970810536991453`*^9, {3.897081086636455*^9, 3.8970811084613028`*^9},
3.897081860046487*^9, 3.897140490340452*^9, {3.8971409477849607`*^9,
3.897140966314547*^9}, 3.8974122533794737`*^9, {3.897414862200774*^9,
3.897414926118371*^9}, 3.897414969501552*^9, 3.897415025551384*^9, {
3.897415063959742*^9, 3.897415085004682*^9}, 3.8974151151917963`*^9,
3.8974151585116787`*^9, 3.897418066045368*^9, 3.897418536022521*^9,
3.897418577625193*^9, 3.897418705419979*^9, 3.89741888418929*^9,
3.8974189343702908`*^9, {3.897419319593932*^9, 3.897419341936064*^9},
3.897419462085041*^9, 3.897419596108099*^9, 3.897419659974288*^9,
3.897589763984774*^9, 3.897589869427792*^9, 3.8975916152019997`*^9,
3.897591722743782*^9, 3.897591943835205*^9, 3.897592148180746*^9, {
3.8975922566158247`*^9, 3.897592284082121*^9}, 3.897739535479344*^9,
3.897740009991048*^9, 3.897740376541523*^9, 3.8977404808152723`*^9,
3.897745476012383*^9, 3.897766964851861*^9, 3.8980917403995028`*^9, {
3.898093376270611*^9, 3.898093403548225*^9}, 3.898108957464632*^9,
3.8981148608791113`*^9, 3.89811549631868*^9, 3.898116249350458*^9,
3.898118130476429*^9, 3.898130474452697*^9, 3.8981320682618856`*^9, {
3.8981930562891397`*^9, 3.8981930850616207`*^9}, 3.898193457012895*^9,
3.898193743898534*^9, 3.898194001642668*^9, 3.898356834053237*^9,
3.898536681428216*^9, {3.898536732123085*^9,
3.898536747850708*^9}},ExpressionUUID->"289f4514-3fe6-4f7e-b871-\
b63bc7cf6770"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"\\!\\(\\*SuperscriptBox[SubscriptBox[\\(\[Chi]\\), \
\\(\[Nu]\\)], \\(2\\)]\\) = \"\>", "\[InvisibleSpace]",
"1.32076754620493797`4."}],
SequenceForm[
"\!\(\*SuperscriptBox[SubscriptBox[\(\[Chi]\), \(\[Nu]\)], \(2\)]\) = ",
1.32076754620493797`4.],
Editable->False]], "Print",
CellChangeTimes->{
3.8970744071307783`*^9, {3.897074447474143*^9, 3.897074472758045*^9},
3.897074535256357*^9, 3.897074589922097*^9, 3.8970763859722137`*^9, {
3.897076438181134*^9, 3.897076446881522*^9}, 3.897076992743352*^9,
3.8970770260805073`*^9, {3.897077058799752*^9, 3.897077097361761*^9}, {
3.897077132709629*^9, 3.897077164442902*^9}, 3.897077311455154*^9,
3.897080760752923*^9, 3.8970808274932528`*^9, 3.8970808742785683`*^9,
3.8970810536991453`*^9, {3.897081086636455*^9, 3.8970811084613028`*^9},
3.897081860046487*^9, 3.897140490340452*^9, {3.8971409477849607`*^9,
3.897140966314547*^9}, 3.8974122533794737`*^9, {3.897414862200774*^9,
3.897414926118371*^9}, 3.897414969501552*^9, 3.897415025551384*^9, {
3.897415063959742*^9, 3.897415085004682*^9}, 3.8974151151917963`*^9,
3.8974151585116787`*^9, 3.897418066045368*^9, 3.897418536022521*^9,
3.897418577625193*^9, 3.897418705419979*^9, 3.89741888418929*^9,
3.8974189343702908`*^9, {3.897419319593932*^9, 3.897419341936064*^9},
3.897419462085041*^9, 3.897419596108099*^9, 3.897419659974288*^9,
3.897589763984774*^9, 3.897589869427792*^9, 3.8975916152019997`*^9,
3.897591722743782*^9, 3.897591943835205*^9, 3.897592148180746*^9, {
3.8975922566158247`*^9, 3.897592284082121*^9}, 3.897739535479344*^9,
3.897740009991048*^9, 3.897740376541523*^9, 3.8977404808152723`*^9,
3.897745476012383*^9, 3.897766964851861*^9, 3.8980917403995028`*^9, {
3.898093376270611*^9, 3.898093403548225*^9}, 3.898108957464632*^9,
3.8981148608791113`*^9, 3.89811549631868*^9, 3.898116249350458*^9,
3.898118130476429*^9, 3.898130474452697*^9, 3.8981320682618856`*^9, {
3.8981930562891397`*^9, 3.8981930850616207`*^9}, 3.898193457012895*^9,
3.898193743898534*^9, 3.898194001642668*^9, 3.898356834053237*^9,
3.898536681428216*^9, {3.898536732123085*^9,
3.898536747852367*^9}},ExpressionUUID->"f3c2f382-4f92-4104-b533-\
a2688a3c2f92"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"P(\\!\\(\\*SuperscriptBox[SubscriptBox[\\(\[Chi]\\), \
\\(\[Nu]\\)], \\(2\\)]\\);\[Nu]) = \"\>", "\[InvisibleSpace]",
"0.179283129267331115`4."}],
SequenceForm[
"P(\!\(\*SuperscriptBox[SubscriptBox[\(\[Chi]\), \(\[Nu]\)], \
\(2\)]\);\[Nu]) = ", 0.179283129267331115`4.],
Editable->False]], "Print",
CellChangeTimes->{
3.8970744071307783`*^9, {3.897074447474143*^9, 3.897074472758045*^9},
3.897074535256357*^9, 3.897074589922097*^9, 3.8970763859722137`*^9, {
3.897076438181134*^9, 3.897076446881522*^9}, 3.897076992743352*^9,
3.8970770260805073`*^9, {3.897077058799752*^9, 3.897077097361761*^9}, {
3.897077132709629*^9, 3.897077164442902*^9}, 3.897077311455154*^9,
3.897080760752923*^9, 3.8970808274932528`*^9, 3.8970808742785683`*^9,
3.8970810536991453`*^9, {3.897081086636455*^9, 3.8970811084613028`*^9},
3.897081860046487*^9, 3.897140490340452*^9, {3.8971409477849607`*^9,
3.897140966314547*^9}, 3.8974122533794737`*^9, {3.897414862200774*^9,
3.897414926118371*^9}, 3.897414969501552*^9, 3.897415025551384*^9, {
3.897415063959742*^9, 3.897415085004682*^9}, 3.8974151151917963`*^9,
3.8974151585116787`*^9, 3.897418066045368*^9, 3.897418536022521*^9,
3.897418577625193*^9, 3.897418705419979*^9, 3.89741888418929*^9,
3.8974189343702908`*^9, {3.897419319593932*^9, 3.897419341936064*^9},
3.897419462085041*^9, 3.897419596108099*^9, 3.897419659974288*^9,
3.897589763984774*^9, 3.897589869427792*^9, 3.8975916152019997`*^9,
3.897591722743782*^9, 3.897591943835205*^9, 3.897592148180746*^9, {
3.8975922566158247`*^9, 3.897592284082121*^9}, 3.897739535479344*^9,
3.897740009991048*^9, 3.897740376541523*^9, 3.8977404808152723`*^9,
3.897745476012383*^9, 3.897766964851861*^9, 3.8980917403995028`*^9, {
3.898093376270611*^9, 3.898093403548225*^9}, 3.898108957464632*^9,
3.8981148608791113`*^9, 3.89811549631868*^9, 3.898116249350458*^9,
3.898118130476429*^9, 3.898130474452697*^9, 3.8981320682618856`*^9, {
3.8981930562891397`*^9, 3.8981930850616207`*^9}, 3.898193457012895*^9,
3.898193743898534*^9, 3.898194001642668*^9, 3.898356834053237*^9,
3.898536681428216*^9, {3.898536732123085*^9,
3.898536747853915*^9}},ExpressionUUID->"abac2074-fb4a-44ba-875e-\
55998b805b77"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"D = \"\>", "\[InvisibleSpace]", "0.1646272984399360095`4."}],
SequenceForm["D = ", 0.1646272984399360095`4.],
Editable->False]], "Print",
CellChangeTimes->{
3.8970744071307783`*^9, {3.897074447474143*^9, 3.897074472758045*^9},
3.897074535256357*^9, 3.897074589922097*^9, 3.8970763859722137`*^9, {
3.897076438181134*^9, 3.897076446881522*^9}, 3.897076992743352*^9,
3.8970770260805073`*^9, {3.897077058799752*^9, 3.897077097361761*^9}, {
3.897077132709629*^9, 3.897077164442902*^9}, 3.897077311455154*^9,
3.897080760752923*^9, 3.8970808274932528`*^9, 3.8970808742785683`*^9,
3.8970810536991453`*^9, {3.897081086636455*^9, 3.8970811084613028`*^9},
3.897081860046487*^9, 3.897140490340452*^9, {3.8971409477849607`*^9,
3.897140966314547*^9}, 3.8974122533794737`*^9, {3.897414862200774*^9,
3.897414926118371*^9}, 3.897414969501552*^9, 3.897415025551384*^9, {
3.897415063959742*^9, 3.897415085004682*^9}, 3.8974151151917963`*^9,
3.8974151585116787`*^9, 3.897418066045368*^9, 3.897418536022521*^9,
3.897418577625193*^9, 3.897418705419979*^9, 3.89741888418929*^9,
3.8974189343702908`*^9, {3.897419319593932*^9, 3.897419341936064*^9},
3.897419462085041*^9, 3.897419596108099*^9, 3.897419659974288*^9,
3.897589763984774*^9, 3.897589869427792*^9, 3.8975916152019997`*^9,
3.897591722743782*^9, 3.897591943835205*^9, 3.897592148180746*^9, {
3.8975922566158247`*^9, 3.897592284082121*^9}, 3.897739535479344*^9,
3.897740009991048*^9, 3.897740376541523*^9, 3.8977404808152723`*^9,
3.897745476012383*^9, 3.897766964851861*^9, 3.8980917403995028`*^9, {
3.898093376270611*^9, 3.898093403548225*^9}, 3.898108957464632*^9,
3.8981148608791113`*^9, 3.89811549631868*^9, 3.898116249350458*^9,
3.898118130476429*^9, 3.898130474452697*^9, 3.8981320682618856`*^9, {
3.8981930562891397`*^9, 3.8981930850616207`*^9}, 3.898193457012895*^9,
3.898193743898534*^9, 3.898194001642668*^9, 3.898356834053237*^9,
3.898536681428216*^9, {3.898536732123085*^9,
3.8985367478575993`*^9}},ExpressionUUID->"c1b66cde-45d7-41ad-a8d6-\
cdbc91ebc0e1"],
Cell[BoxData[
StyleBox[
TagBox[GridBox[{
{"\<\"\"\>", "\<\"Estimate\"\>", "\<\"Standard Error\"\>", "\<\"t\
\[Hyphen]Statistic\"\>", "\<\"P\[Hyphen]Value\"\>"},
{"a1", "493.99417172079285`", "28.107942361611695`",
"17.574896282534837`", "2.0349777471531788`*^-11"},
{"a2", "0.0071677159352130145`", "0.00039551735031711615`",
"18.122380546557856`", "1.3097415972097225`*^-11"},
{"a3",
RowBox[{"-", "488.143533194351`"}], "28.117494489497027`",
RowBox[{"-", "17.360847474396824`"}], "2.4258599260293613`*^-11"}
},
AutoDelete->False,
GridBoxAlignment->{"Columns" -> {{Left}}, "Rows" -> {{Automatic}}},
GridBoxDividers->{
"ColumnsIndexed" -> {2 -> GrayLevel[0.7]},
"RowsIndexed" -> {2 -> GrayLevel[0.7]}},
GridBoxItemSize->{"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}},
GridBoxSpacings->{
"ColumnsIndexed" -> {2 -> 1}, "RowsIndexed" -> {2 -> 0.75}}],
"Grid"], "DialogStyle",
StripOnInput->False]], "Print",
CellChangeTimes->{
3.8970744071307783`*^9, {3.897074447474143*^9, 3.897074472758045*^9},
3.897074535256357*^9, 3.897074589922097*^9, 3.8970763859722137`*^9, {
3.897076438181134*^9, 3.897076446881522*^9}, 3.897076992743352*^9,
3.8970770260805073`*^9, {3.897077058799752*^9, 3.897077097361761*^9}, {
3.897077132709629*^9, 3.897077164442902*^9}, 3.897077311455154*^9,
3.897080760752923*^9, 3.8970808274932528`*^9, 3.8970808742785683`*^9,
3.8970810536991453`*^9, {3.897081086636455*^9, 3.8970811084613028`*^9},
3.897081860046487*^9, 3.897140490340452*^9, {3.8971409477849607`*^9,
3.897140966314547*^9}, 3.8974122533794737`*^9, {3.897414862200774*^9,
3.897414926118371*^9}, 3.897414969501552*^9, 3.897415025551384*^9, {
3.897415063959742*^9, 3.897415085004682*^9}, 3.8974151151917963`*^9,
3.8974151585116787`*^9, 3.897418066045368*^9, 3.897418536022521*^9,
3.897418577625193*^9, 3.897418705419979*^9, 3.89741888418929*^9,
3.8974189343702908`*^9, {3.897419319593932*^9, 3.897419341936064*^9},
3.897419462085041*^9, 3.897419596108099*^9, 3.897419659974288*^9,
3.897589763984774*^9, 3.897589869427792*^9, 3.8975916152019997`*^9,
3.897591722743782*^9, 3.897591943835205*^9, 3.897592148180746*^9, {
3.8975922566158247`*^9, 3.897592284082121*^9}, 3.897739535479344*^9,
3.897740009991048*^9, 3.897740376541523*^9, 3.8977404808152723`*^9,
3.897745476012383*^9, 3.897766964851861*^9, 3.8980917403995028`*^9, {
3.898093376270611*^9, 3.898093403548225*^9}, 3.898108957464632*^9,
3.8981148608791113`*^9, 3.89811549631868*^9, 3.898116249350458*^9,
3.898118130476429*^9, 3.898130474452697*^9, 3.8981320682618856`*^9, {
3.8981930562891397`*^9, 3.8981930850616207`*^9}, 3.898193457012895*^9,
3.898193743898534*^9, 3.898194001642668*^9, 3.898356834053237*^9,
3.898536681428216*^9, {3.898536732123085*^9,
3.898536747859272*^9}},ExpressionUUID->"28cb2d43-3fed-402a-aa6e-\
eb5920d139a8"],
Cell[BoxData["\<\"\"\>"], "Print",
CellChangeTimes->{
3.8970744071307783`*^9, {3.897074447474143*^9, 3.897074472758045*^9},
3.897074535256357*^9, 3.897074589922097*^9, 3.8970763859722137`*^9, {
3.897076438181134*^9, 3.897076446881522*^9}, 3.897076992743352*^9,
3.8970770260805073`*^9, {3.897077058799752*^9, 3.897077097361761*^9}, {
3.897077132709629*^9, 3.897077164442902*^9}, 3.897077311455154*^9,
3.897080760752923*^9, 3.8970808274932528`*^9, 3.8970808742785683`*^9,
3.8970810536991453`*^9, {3.897081086636455*^9, 3.8970811084613028`*^9},
3.897081860046487*^9, 3.897140490340452*^9, {3.8971409477849607`*^9,
3.897140966314547*^9}, 3.8974122533794737`*^9, {3.897414862200774*^9,
3.897414926118371*^9}, 3.897414969501552*^9, 3.897415025551384*^9, {
3.897415063959742*^9, 3.897415085004682*^9}, 3.8974151151917963`*^9,
3.8974151585116787`*^9, 3.897418066045368*^9, 3.897418536022521*^9,
3.897418577625193*^9, 3.897418705419979*^9, 3.89741888418929*^9,
3.8974189343702908`*^9, {3.897419319593932*^9, 3.897419341936064*^9},
3.897419462085041*^9, 3.897419596108099*^9, 3.897419659974288*^9,
3.897589763984774*^9, 3.897589869427792*^9, 3.8975916152019997`*^9,
3.897591722743782*^9, 3.897591943835205*^9, 3.897592148180746*^9, {
3.8975922566158247`*^9, 3.897592284082121*^9}, 3.897739535479344*^9,
3.897740009991048*^9, 3.897740376541523*^9, 3.8977404808152723`*^9,
3.897745476012383*^9, 3.897766964851861*^9, 3.8980917403995028`*^9, {
3.898093376270611*^9, 3.898093403548225*^9}, 3.898108957464632*^9,
3.8981148608791113`*^9, 3.89811549631868*^9, 3.898116249350458*^9,
3.898118130476429*^9, 3.898130474452697*^9, 3.8981320682618856`*^9, {
3.8981930562891397`*^9, 3.8981930850616207`*^9}, 3.898193457012895*^9,
3.898193743898534*^9, 3.898194001642668*^9, 3.898356834053237*^9,
3.898536681428216*^9, {3.898536732123085*^9,
3.898536747861165*^9}},ExpressionUUID->"80e7ea02-d72a-4f82-a6ef-\
511d354387d7"]
}, Open ]],
Cell[BoxData[
TagBox[
GraphicsBox[{{{{}, {{{}, {
{RGBColor[0.368417, 0.506779, 0.709798], PointSize[
0.012833333333333334`], AbsoluteThickness[1.6],
PointBox[{{0.5, 7.598475219968211}, {1., 9.389826058161796}, {1.5,
11.185554776716403`}, {2., 12.98578689448969}, {2.5,
14.790644189958241`}, {3., 16.60024486410619}, {3.5,
18.414703696604622`}, {4., 20.234132195561052`}, {4.5,
22.05863874110504}, {5., 23.888328723066273`}, {5.5,
25.723304672990263`}, {6., 27.56366639072634}, {6.5,
29.409511065813852`}, {7., 31.260933393881988`}, {7.5,
33.118025688270585`}, {8., 34.98087798707031}, {8.5,