-
Notifications
You must be signed in to change notification settings - Fork 0
/
TableGammaLamdaI (2).nb
1905 lines (1859 loc) · 81.8 KB
/
TableGammaLamdaI (2).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[ 81688, 1897]
NotebookOptionsPosition[ 77831, 1802]
NotebookOutlinePosition[ 78216, 1818]
CellTagsIndexPosition[ 78173, 1815]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[BoxData[{
RowBox[{
RowBox[{
RowBox[{"freq", "[", "\[Lambda]_", "]"}], ":=",
RowBox[{
RowBox[{"(",
RowBox[{"2", "*", "\[Pi]", "*", "137"}], ")"}], "/",
RowBox[{"(",
RowBox[{"\[Lambda]", "*", "18.897"}], ")"}]}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"Int", "[",
RowBox[{"\[Lambda]_", ",", "\[Mu]_"}], "]"}], ":=",
RowBox[{"3.256", "*", "\[Mu]", "*",
SuperscriptBox["\[Lambda]",
RowBox[{"-", "0.175"}]]}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"EAmp", "[",
RowBox[{"\[Lambda]_", ",", "\[Mu]_"}], "]"}], ":=",
SqrtBox[
FractionBox[
RowBox[{"8", "*", "\[Pi]", "*",
RowBox[{"intSiToAu", "[",
RowBox[{"Int", "[",
RowBox[{"\[Lambda]", ",", "\[Mu]"}], "]"}], "]"}]}], "137"]]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"a0", "[",
RowBox[{"\[Lambda]_", ",", "\[Mu]_"}], "]"}], ":=",
FractionBox[
RowBox[{"EAmp", "[",
RowBox[{"\[Lambda]", ",", "\[Mu]"}], "]"}],
RowBox[{"137", "*",
RowBox[{"freq", "[", "\[Lambda]", "]"}]}]]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"gamma", "[",
RowBox[{"\[Lambda]_", ",", "\[Mu]_", ",", "Ip_"}], "]"}], ":=",
FractionBox[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a0", "[",
RowBox[{"\[Lambda]", ",", "\[Mu]"}], "]"}], ")"}], "3"], "*",
SqrtBox[
RowBox[{"2", "*", "Ip", "*",
RowBox[{"(",
SuperscriptBox["137", "2"], ")"}]}]]}],
RowBox[{"16", "*",
RowBox[{"freq", "[", "\[Lambda]", "]"}]}]]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"intSiToAu", "[", "\[Mu]1_", "]"}], ":=",
RowBox[{"\[Mu]1", "/",
RowBox[{"(",
RowBox[{"6.43640931", "*",
SuperscriptBox["10", "15"]}], ")"}]}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"\[Lambda]AuToSi", "[", "\[Lambda]_", "]"}], ":=",
RowBox[{"\[Lambda]", "/", "18.897"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"nextGamma", "[", "\[Gamma]_", "]"}], ":=",
RowBox[{"10", "^",
RowBox[{"(",
RowBox[{
RowBox[{"Log10", "[", "\[Gamma]", "]"}], "+", "0.25"}], ")"}]}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"nextGamma2", "[", "\[Gamma]_", "]"}], ":=",
RowBox[{"10", "^",
RowBox[{"(",
RowBox[{
RowBox[{"Log10", "[", "\[Gamma]", "]"}], "+", "0.125"}], ")"}]}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"solve\[Lambda]", "[",
RowBox[{"\[Mu]_", ",", "Ip_", ",", "\[Gamma]_"}], "]"}], ":=",
RowBox[{
RowBox[{"NSolve", "[",
RowBox[{
RowBox[{
RowBox[{"gamma", "[",
RowBox[{"\[Lambda]", ",", "\[Mu]", ",", "Ip"}], "]"}], "\[Equal]",
"\[Gamma]"}], ",", "\[Lambda]", ",", "Reals"}], "]"}], "[",
RowBox[{"[",
RowBox[{"1", ",", "1", ",", "2"}], "]"}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"cutoffClassical", "[",
RowBox[{"\[Lambda]_", ",", "\[Mu]_"}], "]"}], ":=",
RowBox[{"3.2", "*",
FractionBox[
SuperscriptBox[
RowBox[{"(",
RowBox[{"EAmp", "[",
RowBox[{"\[Lambda]", ",", "\[Mu]"}], "]"}], ")"}], "2"],
RowBox[{"4", "*",
SuperscriptBox[
RowBox[{"(",
RowBox[{"freq", "[", "\[Lambda]", "]"}], ")"}], "2"]}]]}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"cutoffRelativistic", "[", "Ip_", "]"}], ":=",
RowBox[{"1.5", "*",
SqrtBox[
RowBox[{"2", "*", "Ip", "*",
SuperscriptBox["137", "2"]}]]}]}], ";"}]}], "Input",
CellChangeTimes->{{3.773674097383049*^9, 3.773674103777275*^9}, {
3.7736751033033104`*^9, 3.773675108844103*^9}, {3.773675175209626*^9,
3.7736751813600616`*^9}, {3.7736752471787972`*^9, 3.773675341891262*^9}, {
3.7736753753347983`*^9, 3.773675378574774*^9}, 3.773752479767711*^9, {
3.7737603842941046`*^9, 3.7737603862736025`*^9}, {3.7741053619569597`*^9,
3.774105370469037*^9}},ExpressionUUID->"64bee85e-f0e6-42f7-bb04-\
1d598d2b9f72"],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{"intSiToAu", "[",
RowBox[{"5.50", "*",
SuperscriptBox["10", "12"]}], "]"}], "\[IndentingNewLine]",
RowBox[{"intSiToAu", "[",
RowBox[{"1.70", "*",
SuperscriptBox["10", "17"]}], "]"}], "\[IndentingNewLine]",
RowBox[{"intSiToAu", "[",
RowBox[{"5.11", "*",
SuperscriptBox["10", "18"]}], "]"}], "\[IndentingNewLine]",
RowBox[{"intSiToAu", "[",
RowBox[{"3.58", "*",
SuperscriptBox["10", "20"]}], "]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"gammaTable1", "=",
RowBox[{"{",
RowBox[{
RowBox[{"N", "[",
RowBox[{"7", "*",
SuperscriptBox["10",
RowBox[{"-", "5"}]]}], "]"}], ",",
RowBox[{"1.24", "*",
SuperscriptBox["10",
RowBox[{"-", "4"}]]}], ",",
RowBox[{"2.21", "*",
SuperscriptBox["10",
RowBox[{"-", "4"}]]}], ",",
RowBox[{"3.94", "*",
SuperscriptBox["10",
RowBox[{"-", "4"}]]}], ",",
RowBox[{"7.00", "*",
SuperscriptBox["10",
RowBox[{"-", "4"}]]}], ",",
RowBox[{"1.24", "*",
SuperscriptBox["10",
RowBox[{"-", "3"}]]}], ",",
RowBox[{"2.21", "*",
SuperscriptBox["10",
RowBox[{"-", "3"}]]}], ",",
RowBox[{"3.94", "*",
SuperscriptBox["10",
RowBox[{"-", "3"}]]}], ",",
RowBox[{"7", "*",
SuperscriptBox["10",
RowBox[{"-", "3"}]]}], ",",
RowBox[{"1.24", "*",
SuperscriptBox["10",
RowBox[{"-", "2"}]]}], ",", " ",
RowBox[{"2.21", "*",
SuperscriptBox["10",
RowBox[{"-", "2"}]]}], ",",
RowBox[{"3.94", "*",
SuperscriptBox["10",
RowBox[{"-", "2"}]]}], ",",
RowBox[{"7", "*",
SuperscriptBox["10",
RowBox[{"-", "2"}]]}], ",", "0.124", ",", " ", "0.221", ",", " ",
"0.394", ",", " ", "0.7", ",", "1.24", ",", "2.21", ",", "3.94", ",",
"7", ",", "12.4", ",", "22.1", ",", "39.4", ",", "70"}], "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"gammaTable2", "=",
RowBox[{"{",
RowBox[{
"93.3", ",", "124", ",", "166", ",", "221", ",", "295", ",", "394", ",",
"525", ",", "700", ",", "933", ",", "1240", ",", "1660", ",", "2210",
",", "2950", ",", "3940", ",", "5250", ",", "7000", ",", "9330", ",",
"12400", ",", "22100", ",", "16600", ",", "22100", ",", "29500", ",",
"39400", ",", "52500", ",", "70000", ",", "93300"}], "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"gammaTable3", " ", "=", " ",
RowBox[{"{",
RowBox[{
"124", ",", "221", ",", "394", ",", "700", ",", "1240", ",", "2210", ",",
"3940", ",", "7000", ",", "12400", ",", "22100", ",", "39400", ",",
"70000", ",", "124000", ",", "221000", ",", "394000", ",", "700000", ",",
"1240000", ",", "2210000", ",", "3940000", ",", "7000000"}], "}"}]}],
";"}]}], "Input",
CellChangeTimes->{{3.7736741145447598`*^9, 3.7736741212772655`*^9}, {
3.7736799808363247`*^9, 3.773680011325594*^9}, {3.773680055223049*^9,
3.77368008597791*^9}, 3.7736802765961156`*^9, {3.7737504038341727`*^9,
3.7737504768947315`*^9}, 3.7737527633814583`*^9, {3.7741053457368975`*^9,
3.774105354160342*^9}, {3.774105401719277*^9, 3.774105478290903*^9}, {
3.774109374543519*^9, 3.774109397679614*^9}, {3.7741805159199824`*^9,
3.774180687410699*^9}, {3.774180717633067*^9, 3.7741807711643972`*^9},
3.7741808280017185`*^9, {3.7741810233865232`*^9,
3.7741810918624315`*^9}},ExpressionUUID->"1d737880-fa22-4e7c-9ed1-\
7b60671b9193"],
Cell[BoxData["0.0008545137102226955`"], "Output",
CellChangeTimes->{
3.7736741236548567`*^9, 3.7736751355043077`*^9, 3.773675443016697*^9,
3.773675613484336*^9, 3.773680014607328*^9, 3.773680088578615*^9,
3.773680279346146*^9, {3.7737527419658337`*^9, 3.7737527645319276`*^9},
3.7741038267376976`*^9, 3.774105467917658*^9, 3.774105504921447*^9,
3.774109306682135*^9, 3.7741093979860196`*^9, 3.7741807755650864`*^9,
3.774180828416157*^9,
3.7741810932918615`*^9},ExpressionUUID->"85b0dfa4-f880-4ca9-be72-\
1f787ec821c8"],
Cell[BoxData["26.41224195233786`"], "Output",
CellChangeTimes->{
3.7736741236548567`*^9, 3.7736751355043077`*^9, 3.773675443016697*^9,
3.773675613484336*^9, 3.773680014607328*^9, 3.773680088578615*^9,
3.773680279346146*^9, {3.7737527419658337`*^9, 3.7737527645319276`*^9},
3.7741038267376976`*^9, 3.774105467917658*^9, 3.774105504921447*^9,
3.774109306682135*^9, 3.7741093979860196`*^9, 3.7741807755650864`*^9,
3.774180828416157*^9,
3.774181093295331*^9},ExpressionUUID->"f9fde8e2-aba9-4f0f-bbac-\
37e6c8fa945d"],
Cell[BoxData["793.9209198614499`"], "Output",
CellChangeTimes->{
3.7736741236548567`*^9, 3.7736751355043077`*^9, 3.773675443016697*^9,
3.773675613484336*^9, 3.773680014607328*^9, 3.773680088578615*^9,
3.773680279346146*^9, {3.7737527419658337`*^9, 3.7737527645319276`*^9},
3.7741038267376976`*^9, 3.774105467917658*^9, 3.774105504921447*^9,
3.774109306682135*^9, 3.7741093979860196`*^9, 3.7741807755650864`*^9,
3.774180828416157*^9,
3.774181093297811*^9},ExpressionUUID->"eb8e9512-a656-4fad-8189-\
49ae81d0fa53"],
Cell[BoxData["55621.07422904091`"], "Output",
CellChangeTimes->{
3.7736741236548567`*^9, 3.7736751355043077`*^9, 3.773675443016697*^9,
3.773675613484336*^9, 3.773680014607328*^9, 3.773680088578615*^9,
3.773680279346146*^9, {3.7737527419658337`*^9, 3.7737527645319276`*^9},
3.7741038267376976`*^9, 3.774105467917658*^9, 3.774105504921447*^9,
3.774109306682135*^9, 3.7741093979860196`*^9, 3.7741807755650864`*^9,
3.774180828416157*^9,
3.774181093300291*^9},ExpressionUUID->"4db9de7e-3d20-4747-a1d9-\
8310d9ba73b0"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"Kr1\[Lambda]Table1", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"solve\[Lambda]", "[",
RowBox[{
RowBox[{"5.50", "*",
SuperscriptBox["10", "12"]}], ",", "0.18898", ",", "\[Gamma]"}],
"]"}], ",",
RowBox[{"{",
RowBox[{"\[Gamma]", ",", "gammaTable1"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Kr1ISi1", "=", " ",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"Int", "[",
RowBox[{"\[Lambda]", ",",
RowBox[{"5.50", "*",
SuperscriptBox["10", "12"]}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"\[Lambda]", ",", "Kr1\[Lambda]Table1"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Kr1eClassical1", " ", "=", " ",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"cutoffClassical", "[",
RowBox[{"\[Lambda]", ",",
RowBox[{"5.50", "*",
SuperscriptBox["10", "12"]}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"\[Lambda]", ",", "Kr1\[Lambda]Table1"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Kr1eRelativistic1", " ", "=", " ",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"cutoffRelativistic", "[", "0.18898", "]"}], ",",
RowBox[{"{",
RowBox[{"\[Lambda]", ",", "Kr1\[Lambda]Table1"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Kr1Grid1", " ", "=", " ",
RowBox[{"Transpose", "[",
RowBox[{"{",
RowBox[{
"gammaTable1", ",", "Kr1\[Lambda]Table1", ",", "Kr1ISi1", ",",
"Kr1eClassical1", ",", "Kr1eRelativistic1"}], "}"}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{"Kr1Table1", " ", "=", " ",
RowBox[{"Labeled", "[",
RowBox[{
RowBox[{"Grid", "[",
RowBox[{
RowBox[{"Prepend", "[",
RowBox[{"Kr1Grid1", ",",
RowBox[{"{",
RowBox[{
"\"\<\!\(\*SubscriptBox[\(\[CapitalGamma]\), \(r\)]\)\>\"", ",",
"\"\<\[Lambda](nm}\>\"", ",",
"\"\<I(W/\!\(\*SuperscriptBox[\(cm\), \(2\)]\))\>\"", ",",
"\"\<\!\(\*SubscriptBox[\(\[Epsilon]\), \
\(cutoff\)]\)(\!\(\*SubscriptBox[\(\[CapitalGamma]\), \(r\)]\)<<1)\>\"", ",",
"\"\<\!\(\*SubscriptBox[\(\[Epsilon]\), \(cutoff\)]\)\>\""}],
"}"}]}], "]"}], ",",
RowBox[{"Frame", "\[Rule]", "All"}], ",",
RowBox[{"Background", "\[Rule]",
RowBox[{"{",
RowBox[{"{",
RowBox[{
RowBox[{"Lighter", "[", "LightPurple", "]"}], ",",
RowBox[{"Lighter", "[", "LightBlue", "]"}], ",",
RowBox[{"Lighter", "[", "LightGreen", "]"}], ",",
RowBox[{"Lighter", "[", "LightRed", "]"}], ",",
RowBox[{"Lighter", "[", "LightOrange", "]"}]}], "}"}], "}"}]}]}],
"]"}], ",", "\"\<Kr1+\>\"", ",", "Top", ",",
RowBox[{"LabelStyle", "\[Rule]", "Larger"}]}],
"]"}]}], "\[IndentingNewLine]",
RowBox[{"Export", "[",
RowBox[{
"\"\<C:\\\\class\\\\220\\\\WorkCalcs\\\\8_2_19\\\\Kr1Table1.png\>\"", ",",
"Kr1Table1"}], "]"}]}], "Input",
CellChangeTimes->{{3.7736741329445577`*^9, 3.7736741832567806`*^9}, {
3.773674304582778*^9, 3.773674305660573*^9}, {3.773674603531542*^9,
3.7736746992966437`*^9}, 3.7736748130749483`*^9, {3.773674856777686*^9,
3.773674941951665*^9}, {3.7736751487395372`*^9, 3.7736751533664064`*^9}, {
3.7736751978507347`*^9, 3.7736752076924033`*^9}, {3.7736754512313585`*^9,
3.7736754826794777`*^9}, {3.7736756189823804`*^9,
3.7736756225746713`*^9}, {3.773675655986498*^9, 3.773675717942857*^9}, {
3.773676790794407*^9, 3.7736767980232487`*^9}, {3.7736768439584*^9,
3.773676854992423*^9}, {3.7736769501230636`*^9, 3.7736770045312304`*^9}, {
3.7736770640898676`*^9, 3.7736773414022913`*^9}, {3.7736773773363576`*^9,
3.7736774097606373`*^9}, {3.7736775385910077`*^9,
3.7736775471343603`*^9}, {3.773677654469742*^9, 3.7736776632930346`*^9}, {
3.7736776973409395`*^9, 3.7736777526884775`*^9}, 3.7736777869651947`*^9, {
3.7736779119221153`*^9, 3.773677913279645*^9}, {3.773677955869684*^9,
3.7736779610612946`*^9}, 3.7737524919398937`*^9, {3.7737533772429423`*^9,
3.7737534662121468`*^9}, {3.773753505992159*^9, 3.7737535112193823`*^9}, {
3.773753573767313*^9, 3.7737535873982863`*^9}, {3.7737536294042654`*^9,
3.773753630705274*^9}, {3.7737536658111978`*^9, 3.773753695257261*^9},
3.7737537304158735`*^9},ExpressionUUID->"841a9ba6-c478-4dee-9daf-\
b1e9ea35c96a"],
Cell[BoxData[
TemplateBox[{TagBox[
GridBox[{{
"\"\\!\\(\\*SubscriptBox[\\(\[CapitalGamma]\\), \\(r\\)]\\)\"",
"\"\[Lambda](nm}\"",
"\"I(W/\\!\\(\\*SuperscriptBox[\\(cm\\), \\(2\\)]\\))\"",
"\"\\!\\(\\*SubscriptBox[\\(\[Epsilon]\\), \
\\(cutoff\\)]\\)(\\!\\(\\*SubscriptBox[\\(\[CapitalGamma]\\), \\(r\\)]\\)<<1)\
\"", "\"\\!\\(\\*SubscriptBox[\\(\[Epsilon]\\), \\(cutoff\\)]\\)\""}, {
"0.00007`", "3211.028286153062`", "4.358974844561874`*^12",
"0.4938818947594363`", "126.33821785192318`"}, {
"0.000124`", "3741.8402337212574`", "4.2438220858693604`*^12",
"0.6529472989710435`", "126.33821785192318`"}, {
"0.000221`", "4367.516573911897`", "4.130532440715845`*^12",
"0.8658160677081201`", "126.33821785192318`"}, {
"0.00039400000000000004`", "5098.231647785195`",
"4.0202092816134307`*^12", "1.1482548046928929`",
"126.33821785192318`"}, {
"0.0007`", "5945.695445926494`", "3.9134664975367456`*^12",
"1.5202584289847019`", "126.33821785192318`"}, {
"0.00124`", "6928.572548850014`", "3.8100829086627935`*^12",
"2.0098907157287678`", "126.33821785192318`"}, {
"0.00221`", "8087.10515428908`", "3.708372014097934`*^12",
"2.665139558365055`", "126.33821785192318`"}, {
"0.00394`", "9440.132564771135`", "3.609324416338028`*^12",
"3.534537434920216`", "126.33821785192318`"}, {
FractionBox["7", "1000"], "11009.337565837297`",
"3.51349126193039`*^12", "4.679632348184754`",
"126.33821785192318`"}, {
"0.0124`", "12829.280398467714`", "3.4206739767014844`*^12",
"6.186809709663636`", "126.33821785192318`"}, {
"0.0221`", "14974.475464428606`", "3.3293584283195854`*^12",
"8.203784996003092`", "126.33821785192318`"}, {
"0.0394`", "17479.806528439487`", "3.240433974906308`*^12",
"10.879950014399197`", "126.33821785192318`"}, {
FractionBox["7", "100"], "20385.422486043484`",
"3.1543954331616953`*^12", "14.404760727952194`",
"126.33821785192318`"}, {
"0.124`", "23755.31675277416`", "3.071064524154776`*^12",
"19.044127167734853`", "126.33821785192318`"}, {
"0.221`", "27727.463802773607`", "2.98908186721364`*^12",
"25.252744476140045`", "126.33821785192318`"}, {
"0.394`", "32366.456103795525`", "2.9092459237512036`*^12",
"33.49046784632426`", "126.33821785192318`"}, {
"0.7`", "37746.63529475329`", "2.8320009378035264`*^12",
"44.3404772407052`", "126.33821785192318`"}, {
"1.24`", "43986.49468227639`", "2.7571868514100913`*^12",
"58.62129216845992`", "126.33821785192318`"}, {
"2.21`", "51341.51448312229`", "2.6835832191894443`*^12",
"77.73254709721323`", "126.33821785192318`"}, {
"3.94`", "59931.2972380162`", "2.611906895929798`*^12",
"103.08976007070532`", "126.33821785192318`"}, {
"7", "69893.49752503703`", "2.5425567217744995`*^12",
"136.48806523515208`", "126.33821785192318`"}, {
"12.4`", "81447.52328793847`", "2.4753889974620283`*^12",
"180.4470147270434`", "126.33821785192318`"}, {
"22.1`", "95066.43406588737`", "2.4093080130416035`*^12",
"239.27493837074076`", "126.33821785192318`"}, {
"39.4`", "110971.6917141958`", "2.344957357269137`*^12",
"317.3290585309637`", "126.33821785192318`"}, {
"70", "129418.18411458192`", "2.282695106893068`*^12",
"420.1351250801029`", "126.33821785192318`"}}, AutoDelete -> False,
GridBoxBackground -> {"Columns" -> {
RGBColor[0.96, 0.92, 0.96],
RGBColor[0.9133333333333333, 0.96, 1],
RGBColor[0.92, 1, 0.92],
RGBColor[1, 0.9, 0.9],
RGBColor[1, 0.9333333333333333, 0.8666666666666667]}},
GridBoxFrame -> {"Columns" -> {{True}}, "Rows" -> {{True}}},
GridBoxItemSize -> {
"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}], "Grid"],
"\"Kr1+\""},
"Labeled",
DisplayFunction->(GridBox[{{
ItemBox[#2, BaseStyle -> Larger, DefaultBaseStyle -> "LabeledLabel"]}, {
TagBox[
ItemBox[
PaneBox[
TagBox[#, "SkipImageSizeLevel"], Alignment -> {Center, Baseline},
BaselinePosition -> Baseline], DefaultBaseStyle -> "Labeled"],
"SkipImageSizeLevel"]}},
GridBoxAlignment -> {"Columns" -> {{Center}}, "Rows" -> {{Center}}},
AutoDelete -> False,
GridBoxItemSize -> {"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}},
BaselinePosition -> {2, 1}]& ),
InterpretationFunction->(RowBox[{"Labeled", "[",
RowBox[{#, ",", #2, ",", "Top", ",",
RowBox[{"LabelStyle", "\[Rule]", "Larger"}]}], "]"}]& )]], "Output",
CellChangeTimes->{
3.7736772124550476`*^9, {3.7736772781690035`*^9, 3.773677342177574*^9}, {
3.7736774017567644`*^9, 3.773677410609275*^9}, {3.7736775408352413`*^9,
3.773677547954922*^9}, 3.773677581468809*^9, {3.773677717459779*^9,
3.773677722857648*^9}, 3.7736777536390543`*^9, 3.7736777880716133`*^9,
3.77367791446342*^9, 3.7736779620361204`*^9, 3.773752494737474*^9,
3.773752767569933*^9, 3.7737534680496883`*^9, 3.7737535137607374`*^9,
3.773753588359036*^9, 3.7737536317727346`*^9, {3.7737536779319696`*^9,
3.77375369678741*^9}, 3.7737537313372016`*^9,
3.7737539046278768`*^9},ExpressionUUID->"b93c6130-751a-42de-ac21-\
49e97c25d0c1"],
Cell[BoxData["\<\"C:\\\\class\\\\220\\\\WorkCalcs\\\\8_2_19\\\\Kr1Table1.png\"\
\>"], "Output",
CellChangeTimes->{
3.7736772124550476`*^9, {3.7736772781690035`*^9, 3.773677342177574*^9}, {
3.7736774017567644`*^9, 3.773677410609275*^9}, {3.7736775408352413`*^9,
3.773677547954922*^9}, 3.773677581468809*^9, {3.773677717459779*^9,
3.773677722857648*^9}, 3.7736777536390543`*^9, 3.7736777880716133`*^9,
3.77367791446342*^9, 3.7736779620361204`*^9, 3.773752494737474*^9,
3.773752767569933*^9, 3.7737534680496883`*^9, 3.7737535137607374`*^9,
3.773753588359036*^9, 3.7737536317727346`*^9, {3.7737536779319696`*^9,
3.77375369678741*^9}, 3.7737537313372016`*^9,
3.7737539047999907`*^9},ExpressionUUID->"4246e0e9-72a4-47cf-a6c6-\
1c47dd03f8ad"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"Kr9\[Lambda]Table1", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"solve\[Lambda]", "[",
RowBox[{
RowBox[{"1.70", "*",
SuperscriptBox["10", "17"]}], ",", "8.48358", ",", "\[Gamma]"}],
"]"}], ",",
RowBox[{"{",
RowBox[{"\[Gamma]", ",", "gammaTable1"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Kr9ISi1", "=", " ",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"Int", "[",
RowBox[{"\[Lambda]", ",",
RowBox[{"1.70", "*",
SuperscriptBox["10", "17"]}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"\[Lambda]", ",", "Kr9\[Lambda]Table1"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Kr9eClassical1", " ", "=", " ",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"cutoffClassical", "[",
RowBox[{"\[Lambda]", ",",
RowBox[{"1.70", "*",
SuperscriptBox["10", "17"]}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"\[Lambda]", ",", "Kr9\[Lambda]Table1"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Kr9eRelativistic1", " ", "=", " ",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"cutoffRelativistic", "[", "8.48358", "]"}], ",",
RowBox[{"{",
RowBox[{"\[Lambda]", ",", "Kr9\[Lambda]Table1"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Kr9Grid1", " ", "=", " ",
RowBox[{"Transpose", "[",
RowBox[{"{",
RowBox[{
"gammaTable1", ",", "Kr9\[Lambda]Table1", ",", "Kr9ISi1", ",",
"Kr9eClassical1", ",", "Kr9eRelativistic1"}], "}"}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{"Kr9Table1", " ", "=", " ",
RowBox[{"Labeled", "[",
RowBox[{
RowBox[{"Grid", "[",
RowBox[{
RowBox[{"Prepend", "[",
RowBox[{"Kr9Grid1", ",",
RowBox[{"{",
RowBox[{
"\"\<\!\(\*SubscriptBox[\(\[CapitalGamma]\), \(r\)]\)\>\"", ",",
"\"\<\[Lambda](nm}\>\"", ",",
"\"\<I(W/\!\(\*SuperscriptBox[\(cm\), \(2\)]\))\>\"", ",",
"\"\<\!\(\*SubscriptBox[\(\[Epsilon]\), \
\(cutoff\)]\)(\!\(\*SubscriptBox[\(\[CapitalGamma]\), \(r\)]\)<<1)\>\"", ",",
"\"\<\!\(\*SubscriptBox[\(\[Epsilon]\), \(cutoff\)]\)\>\""}],
"}"}]}], "]"}], ",",
RowBox[{"Frame", "\[Rule]", "All"}], ",",
RowBox[{"Background", "\[Rule]",
RowBox[{"{",
RowBox[{"{",
RowBox[{
RowBox[{"Lighter", "[", "LightPurple", "]"}], ",",
RowBox[{"Lighter", "[", "LightBlue", "]"}], ",",
RowBox[{"Lighter", "[", "LightGreen", "]"}], ",",
RowBox[{"Lighter", "[", "LightRed", "]"}], ",",
RowBox[{"Lighter", "[", "LightOrange", "]"}]}], "}"}], "}"}]}]}],
"]"}], ",", "\"\<Kr9+\>\"", ",", "Top", ",",
RowBox[{"LabelStyle", "\[Rule]", "Larger"}]}],
"]"}]}], "\[IndentingNewLine]",
RowBox[{"Export", "[",
RowBox[{
"\"\<C:\\\\class\\\\220\\\\WorkCalcs\\\\8_2_19\\\\Kr9Table1.png\>\"", ",",
"Kr9Table1"}], "]"}]}], "Input",
CellChangeTimes->{{3.773678173898165*^9, 3.773678230567957*^9}, {
3.773752508838504*^9, 3.773752624438822*^9}, 3.7737526840464983`*^9,
3.7737527875680437`*^9, {3.773753708111246*^9,
3.7737537252649174`*^9}},ExpressionUUID->"6d513df0-540c-4eab-89aa-\
f7fb39311c3b"],
Cell[BoxData[
TemplateBox[{TagBox[
GridBox[{{
"\"\\!\\(\\*SubscriptBox[\\(\[CapitalGamma]\\), \\(r\\)]\\)\"",
"\"\[Lambda](nm}\"",
"\"I(W/\\!\\(\\*SuperscriptBox[\\(cm\\), \\(2\\)]\\))\"",
"\"\\!\\(\\*SubscriptBox[\\(\[Epsilon]\\), \
\\(cutoff\\)]\\)(\\!\\(\\*SubscriptBox[\\(\[CapitalGamma]\\), \\(r\\)]\\)<<1)\
\"", "\"\\!\\(\\*SubscriptBox[\\(\[Epsilon]\\), \\(cutoff\\)]\\)\""}, {
"0.00007`", "30.449323033795185`", "3.0444386746827245`*^17",
"3.101794301650839`", "846.4794200628861`"}, {
"0.000124`", "35.48287086375395`", "2.964012536757826`*^17",
"4.100794608421903`", "846.4794200628861`"}, {
"0.000221`", "41.41599237477368`", "2.8848876531681126`*^17",
"5.437703575675515`", "846.4794200628861`"}, {
"0.00039400000000000004`", "48.34516812385675`",
"2.8078346523453187`*^17", "7.21154237041722`",
"846.4794200628861`"}, {
"0.0007`", "56.38144082202301`", "2.733282292748247`*^17",
"9.547887829251735`", "846.4794200628861`"}, {
"0.00124`", "65.7018016978513`", "2.6610760957595155`*^17",
"12.62299273397145`", "846.4794200628861`"}, {
"0.00221`", "76.68785675701153`", "2.5900381586087315`*^17",
"16.73824204320665`", "846.4794200628861`"}, {
"0.00394`", "89.51825407023648`", "2.5208603477684432`*^17",
"22.198440944969732`", "846.4794200628861`"}, {
FractionBox["7", "1000"], "104.39860569770667`",
"2.4539276005057603`*^17", "29.39013781521714`",
"846.4794200628861`"}, {
"0.0124`", "121.65663716780449`", "2.3891012266663994`*^17",
"38.85587081943966`", "846.4794200628861`"}, {
"0.0221`", "141.9989486371944`", "2.325323710849683`*^17",
"51.52335775533072`", "846.4794200628861`"}, {
"0.0394`", "165.75633352341174`", "2.2632162074227814`*^17",
"68.33084450959136`", "846.4794200628861`"}, {
FractionBox["7", "100"], "193.3095130723934`",
"2.203124311199203`*^17", "90.46819739032804`",
"846.4794200628861`"}, {
"0.124`", "225.26531974027824`", "2.1449235068303414`*^17",
"119.60544769021476`", "846.4794200628861`"}, {
"0.221`", "262.9321285892503`", "2.0876643621128115`*^17",
"158.598279767451`", "846.4794200628861`"}, {
"0.394`", "306.9224527275448`", "2.0319045464281546`*^17",
"210.33478535581514`", "846.4794200628861`"}, {
"0.7`", "357.94125404786627`", "1.977954333125635`*^17",
"278.47758967696046`", "846.4794200628861`"}, {
"1.24`", "417.11217290756184`", "1.9257019329285146`*^17",
"368.1673532335206`", "846.4794200628861`"}, {
"2.21`", "486.8578599205605`", "1.874294950204304`*^17",
"488.1943926217084`", "846.4794200628861`"}, {
"3.94`", "568.3124740146762`", "1.824234057822012`*^17",
"647.4487802425288`", "846.4794200628861`"}, {
"7", "662.7813567632244`", "1.7757978176914282`*^17",
"857.2047436481855`", "846.4794200628861`"}, {
"12.4`", "772.3450950561881`", "1.7288858659414826`*^17",
"1133.2861721988734`", "846.4794200628861`"}, {
"22.1`", "901.4895860700034`", "1.682732925902924`*^17",
"1502.7512614685481`", "846.4794200628861`"}, {
"39.4`", "1052.3148933890182`", "1.637788499251941`*^17",
"1992.965273568095`", "846.4794200628861`"}, {
"70", "1227.238050672296`", "1.5943026775215942`*^17",
"2638.632334419922`", "846.4794200628861`"}}, AutoDelete -> False,
GridBoxBackground -> {"Columns" -> {
RGBColor[0.96, 0.92, 0.96],
RGBColor[0.9133333333333333, 0.96, 1],
RGBColor[0.92, 1, 0.92],
RGBColor[1, 0.9, 0.9],
RGBColor[1, 0.9333333333333333, 0.8666666666666667]}},
GridBoxFrame -> {"Columns" -> {{True}}, "Rows" -> {{True}}},
GridBoxItemSize -> {
"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}], "Grid"],
"\"Kr9+\""},
"Labeled",
DisplayFunction->(GridBox[{{
ItemBox[#2, BaseStyle -> Larger, DefaultBaseStyle -> "LabeledLabel"]}, {
TagBox[
ItemBox[
PaneBox[
TagBox[#, "SkipImageSizeLevel"], Alignment -> {Center, Baseline},
BaselinePosition -> Baseline], DefaultBaseStyle -> "Labeled"],
"SkipImageSizeLevel"]}},
GridBoxAlignment -> {"Columns" -> {{Center}}, "Rows" -> {{Center}}},
AutoDelete -> False,
GridBoxItemSize -> {"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}},
BaselinePosition -> {2, 1}]& ),
InterpretationFunction->(RowBox[{"Labeled", "[",
RowBox[{#, ",", #2, ",", "Top", ",",
RowBox[{"LabelStyle", "\[Rule]", "Larger"}]}], "]"}]& )]], "Output",
CellChangeTimes->{
3.773678251629201*^9, 3.7737526458540306`*^9, 3.773752685495515*^9, {
3.7737527506199856`*^9, 3.77375278927474*^9}, {3.773753718396304*^9,
3.7737537261026583`*^9},
3.773753907001238*^9},ExpressionUUID->"d62a63ca-e0b0-4c8f-ae2b-\
5f20d08fb1a2"],
Cell[BoxData["\<\"C:\\\\class\\\\220\\\\WorkCalcs\\\\8_2_19\\\\Kr9Table1.png\"\
\>"], "Output",
CellChangeTimes->{
3.773678251629201*^9, 3.7737526458540306`*^9, 3.773752685495515*^9, {
3.7737527506199856`*^9, 3.77375278927474*^9}, {3.773753718396304*^9,
3.7737537261026583`*^9},
3.773753907202614*^9},ExpressionUUID->"eb5dea3c-5150-48ec-a540-\
8c2d049c9279"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"Kr9\[Lambda]Table2", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"solve\[Lambda]", "[",
RowBox[{
RowBox[{"1.70", "*",
SuperscriptBox["10", "17"]}], ",", "8.48358", ",", "\[Gamma]"}],
"]"}], ",",
RowBox[{"{",
RowBox[{"\[Gamma]", ",", "gammaTable2"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Kr9ISi2", "=", " ",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"Int", "[",
RowBox[{"\[Lambda]", ",",
RowBox[{"1.70", "*",
SuperscriptBox["10", "17"]}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"\[Lambda]", ",", "Kr9\[Lambda]Table2"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Kr9eClassical2", " ", "=", " ",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"cutoffClassical", "[",
RowBox[{"\[Lambda]", ",",
RowBox[{"1.70", "*",
SuperscriptBox["10", "17"]}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"\[Lambda]", ",", "Kr9\[Lambda]Table2"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Kr9eRelativistic2", " ", "=", " ",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"cutoffRelativistic", "[", "8.48358", "]"}], ",",
RowBox[{"{",
RowBox[{"\[Lambda]", ",", "Kr9\[Lambda]Table2"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Kr9Grid2", " ", "=", " ",
RowBox[{"Transpose", "[",
RowBox[{"{",
RowBox[{
"gammaTable2", ",", "Kr9\[Lambda]Table2", ",", "Kr9ISi2", ",",
"Kr9eClassical2", ",", "Kr9eRelativistic2"}], "}"}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{"Kr9Table2", " ", "=", " ",
RowBox[{"Labeled", "[",
RowBox[{
RowBox[{"Grid", "[",
RowBox[{
RowBox[{"Prepend", "[",
RowBox[{"Kr9Grid2", ",",
RowBox[{"{",
RowBox[{
"\"\<\!\(\*SubscriptBox[\(\[CapitalGamma]\), \(r\)]\)\>\"", ",",
"\"\<\[Lambda](nm}\>\"", ",",
"\"\<I(W/\!\(\*SuperscriptBox[\(cm\), \(2\)]\))\>\"", ",",
"\"\<\!\(\*SubscriptBox[\(\[Epsilon]\), \
\(cutoff\)]\)(\!\(\*SubscriptBox[\(\[CapitalGamma]\), \(r\)]\)<<1)\>\"", ",",
"\"\<\!\(\*SubscriptBox[\(\[Epsilon]\), \(cutoff\)]\)\>\""}],
"}"}]}], "]"}], ",",
RowBox[{"Frame", "\[Rule]", "All"}], ",",
RowBox[{"Background", "\[Rule]",
RowBox[{"{",
RowBox[{"{",
RowBox[{
RowBox[{"Lighter", "[", "LightPurple", "]"}], ",",
RowBox[{"Lighter", "[", "LightBlue", "]"}], ",",
RowBox[{"Lighter", "[", "LightGreen", "]"}], ",",
RowBox[{"Lighter", "[", "LightRed", "]"}], ",",
RowBox[{"Lighter", "[", "LightOrange", "]"}]}], "}"}], "}"}]}]}],
"]"}], ",", "\"\<Kr9+\>\"", ",", "Top", ",",
RowBox[{"LabelStyle", "\[Rule]", "Larger"}]}],
"]"}]}], "\[IndentingNewLine]",
RowBox[{"Export", "[",
RowBox[{
"\"\<C:\\\\class\\\\220\\\\WorkCalcs\\\\8_7_19\\\\Kr9Table2.png\>\"", ",",
"Kr9Table2"}], "]"}]}], "Input",
CellChangeTimes->{{3.774103877501825*^9, 3.7741039426261673`*^9}, {
3.7741807844466734`*^9,
3.7741808126115837`*^9}},ExpressionUUID->"b41855e3-4028-4183-9326-\
038f6f363810"],
Cell[BoxData[
TemplateBox[{TagBox[
GridBox[{{
"\"\\!\\(\\*SubscriptBox[\\(\[CapitalGamma]\\), \\(r\\)]\\)\"",
"\"\[Lambda](nm}\"",
"\"I(W/\\!\\(\\*SuperscriptBox[\\(cm\\), \\(2\\)]\\))\"",
"\"\\!\\(\\*SubscriptBox[\\(\[Epsilon]\\), \
\\(cutoff\\)]\\)(\\!\\(\\*SubscriptBox[\\(\[CapitalGamma]\\), \\(r\\)]\\)<<1)\
\"", "\"\\!\\(\\*SubscriptBox[\\(\[Epsilon]\\), \\(cutoff\\)]\\)\""}, {
"93.3`", "1325.3046738243145`", "1.572997617833983`*^17",
"3036.0575831326496`", "846.4794200628861`"}, {
"124", "1430.1115733430033`", "1.5521853545146694`*^17",
"3488.461257678505`", "846.4794200628861`"}, {
"166", "1546.2009962686463`", "1.5311289800318445`*^17",
"4022.4824167469687`", "846.4794200628861`"}, {
"221", "1669.2417658108052`", "1.5107494685450464`*^17",
"4625.74209776963`", "846.4794200628861`"}, {
"295", "1803.3459127117776`", "1.4904571186055155`*^17",
"5326.329697828376`", "846.4794200628861`"}, {
"394", "1948.5172074891734`", "1.470398580039908`*^17",
"6134.710115849639`", "846.4794200628861`"}, {
"525", "2104.063856243819`", "1.450768132359179`*^17",
"7057.750796898427`", "846.4794200628861`"}, {
"700", "2272.4133949289535`", "1.431357219966018`*^17",
"8122.1909326062105`", "846.4794200628861`"}, {
"933", "2453.9983025383763`", "1.4122296405950325`*^17",
"9345.538236198214`", "846.4794200628861`"}, {
"1240", "2648.063832218435`", "1.3935444914160554`*^17",
"10738.119148416095`", "846.4794200628861`"}, {
"1660", "2863.020628515036`", "1.3746401804171226`*^17",
"12381.933544012532`", "846.4794200628861`"}, {
"2210", "3090.848874776469`", "1.3563435537368266`*^17",
"14238.876721466004`", "846.4794200628861`"}, {
"2950", "3339.162606221114`", "1.3381251802713958`*^17",
"16395.412961269358`", "846.4794200628861`"}, {
"3940", "3607.9688045219373`", "1.3201167215247282`*^17",
"18883.755128421708`", "846.4794200628861`"}, {
"5250", "3895.986510600015`", "1.3024926007005339`*^17",
"21725.042469687196`", "846.4794200628861`"}, {
"7000", "4207.7106675625855`", "1.285065577593937`*^17",
"25001.58308725245`", "846.4794200628861`"}, {
"9330", "4543.942074454299`", "1.2678929295019861`*^17",
"28767.26891132449`", "846.4794200628861`"}, {
"12400", "4903.283205457663`", "1.2511174930929805`*^17",
"33053.88660739055`", "846.4794200628861`"}, {
"22100", "5723.165428985412`", "1.2177186714718277`*^17",
"43829.85605420225`", "846.4794200628861`"}, {
"16600", "5301.30761723973`", "1.2341452942637912`*^17",
"38113.846725606934`", "846.4794200628861`"}, {
"22100", "5723.165428985412`", "1.2177186714718277`*^17",
"43829.85605420225`", "846.4794200628861`"}, {
"29500", "6182.955156960754`", "1.2013623040370573`*^17",
"50468.06739735943`", "846.4794200628861`"}, {
"39400", "6680.689728769455`", "1.185194397019819`*^17",
"58127.63782087942`", "846.4794200628861`"}, {
"52500", "7213.997258559615`", "1.169371546727377`*^17",
"66873.63777665906`", "846.4794200628861`"}, {
"70000", "7791.200800624358`", "1.153725649810915`*^17",
"76959.42659503757`", "846.4794200628861`"}, {
"93300", "8413.783153247776`", "1.1383081295502325`*^17",
"88550.89345320658`", "846.4794200628861`"}}, AutoDelete -> False,
GridBoxBackground -> {"Columns" -> {
RGBColor[0.96, 0.92, 0.96],
RGBColor[0.9133333333333333, 0.96, 1],
RGBColor[0.92, 1, 0.92],
RGBColor[1, 0.9, 0.9],
RGBColor[1, 0.9333333333333333, 0.8666666666666667]}},
GridBoxFrame -> {"Columns" -> {{True}}, "Rows" -> {{True}}},
GridBoxItemSize -> {
"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}], "Grid"],
"\"Kr9+\""},
"Labeled",
DisplayFunction->(GridBox[{{
ItemBox[#2, BaseStyle -> Larger, DefaultBaseStyle -> "LabeledLabel"]}, {
TagBox[
ItemBox[
PaneBox[
TagBox[#, "SkipImageSizeLevel"], Alignment -> {Center, Baseline},
BaselinePosition -> Baseline], DefaultBaseStyle -> "Labeled"],
"SkipImageSizeLevel"]}},
GridBoxAlignment -> {"Columns" -> {{Center}}, "Rows" -> {{Center}}},
AutoDelete -> False,
GridBoxItemSize -> {"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}},
BaselinePosition -> {2, 1}]& ),
InterpretationFunction->(RowBox[{"Labeled", "[",
RowBox[{#, ",", #2, ",", "Top", ",",
RowBox[{"LabelStyle", "\[Rule]", "Larger"}]}], "]"}]& )]], "Output",
CellChangeTimes->{
3.7741039439081964`*^9, {3.774180782299618*^9,
3.774180836843633*^9}},ExpressionUUID->"5ddeaa40-b2ff-499f-8ef8-\
3fda32399285"],
Cell[BoxData["\<\"C:\\\\class\\\\220\\\\WorkCalcs\\\\8_7_19\\\\Kr9Table2.png\"\
\>"], "Output",
CellChangeTimes->{
3.7741039439081964`*^9, {3.774180782299618*^9,
3.774180836997394*^9}},ExpressionUUID->"ceaf8abb-4633-4624-b18d-\
00a14ce6ab19"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"Kr9\[Lambda]Table3", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"solve\[Lambda]", "[",
RowBox[{
RowBox[{"1.70", "*",
SuperscriptBox["10", "17"]}], ",", "8.48358", ",", "\[Gamma]"}],
"]"}], ",",
RowBox[{"{",
RowBox[{"\[Gamma]", ",", "gammaTable3"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Kr9ISi3", "=", " ",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"Int", "[",
RowBox[{"\[Lambda]", ",",
RowBox[{"1.70", "*",
SuperscriptBox["10", "17"]}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"\[Lambda]", ",", "Kr9\[Lambda]Table3"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Kr9eClassical3", " ", "=", " ",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"cutoffClassical", "[",
RowBox[{"\[Lambda]", ",",
RowBox[{"1.70", "*",
SuperscriptBox["10", "17"]}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"\[Lambda]", ",", "Kr9\[Lambda]Table3"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Kr9eRelativistic3", " ", "=", " ",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"cutoffRelativistic", "[", "8.48358", "]"}], ",",
RowBox[{"{",
RowBox[{"\[Lambda]", ",", "Kr9\[Lambda]Table3"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Kr9Grid3", " ", "=", " ",
RowBox[{"Transpose", "[",
RowBox[{"{",
RowBox[{
"gammaTable3", ",", "Kr9\[Lambda]Table3", ",", "Kr9ISi3", ",",
"Kr9eClassical3", ",", "Kr9eRelativistic3"}], "}"}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{"Kr9Table3", " ", "=", " ",
RowBox[{"Labeled", "[",
RowBox[{
RowBox[{"Grid", "[",
RowBox[{
RowBox[{"Prepend", "[",
RowBox[{"Kr9Grid3", ",",
RowBox[{"{",
RowBox[{
"\"\<\!\(\*SubscriptBox[\(\[CapitalGamma]\), \(r\)]\)\>\"", ",",
"\"\<\[Lambda](nm}\>\"", ",",
"\"\<I(W/\!\(\*SuperscriptBox[\(cm\), \(2\)]\))\>\"", ",",
"\"\<\!\(\*SubscriptBox[\(\[Epsilon]\), \
\(cutoff\)]\)(\!\(\*SubscriptBox[\(\[CapitalGamma]\), \(r\)]\)<<1)\>\"", ",",
"\"\<\!\(\*SubscriptBox[\(\[Epsilon]\), \(cutoff\)]\)\>\""}],
"}"}]}], "]"}], ",",
RowBox[{"Frame", "\[Rule]", "All"}], ",",
RowBox[{"Background", "\[Rule]",
RowBox[{"{",
RowBox[{"{",
RowBox[{
RowBox[{"Lighter", "[", "LightPurple", "]"}], ",",
RowBox[{"Lighter", "[", "LightBlue", "]"}], ",",
RowBox[{"Lighter", "[", "LightGreen", "]"}], ",",
RowBox[{"Lighter", "[", "LightRed", "]"}], ",",
RowBox[{"Lighter", "[", "LightOrange", "]"}]}], "}"}], "}"}]}]}],
"]"}], ",", "\"\<Kr9+\>\"", ",", "Top", ",",
RowBox[{"LabelStyle", "\[Rule]", "Larger"}]}],
"]"}]}], "\[IndentingNewLine]",
RowBox[{"Export", "[",
RowBox[{
"\"\<C:\\\\class\\\\220\\\\WorkCalcs\\\\8_6_19\\\\Kr9Table3.png\>\"", ",",
"Kr9Table3"}], "]"}]}], "Input",
CellChangeTimes->{{3.7741055176662025`*^9,
3.774105574193859*^9}},ExpressionUUID->"12ce71ca-9e88-41bd-b270-\
6ae587a3b6e1"],
Cell[BoxData[
TemplateBox[{TagBox[
GridBox[{{
"\"\\!\\(\\*SubscriptBox[\\(\[CapitalGamma]\\), \\(r\\)]\\)\"",
"\"\[Lambda](nm}\"",
"\"I(W/\\!\\(\\*SuperscriptBox[\\(cm\\), \\(2\\)]\\))\"",
"\"\\!\\(\\*SubscriptBox[\\(\[Epsilon]\\), \
\\(cutoff\\)]\\)(\\!\\(\\*SubscriptBox[\\(\[CapitalGamma]\\), \\(r\\)]\\)<<1)\
\"", "\"\\!\\(\\*SubscriptBox[\\(\[Epsilon]\\), \\(cutoff\\)]\\)\""}, {
"2.94`", "525.4935844916669`", "1.8494134825758637`*^17",
"561.2021630431389`", "846.4794200628861`"}, {
"5.24`", "613.3668725360387`", "1.800040440359309`*^17",
"744.172085508464`", "846.4794200628861`"}, {
"9.33`", "715.7431513476383`", "1.7520673937057776`*^17",
"986.3151179880056`", "846.4794200628861`"}, {
"16.5`", "833.6913745653544`", "1.7059150027813277`*^17",
"1302.9222046544762`", "846.4794200628861`"}, {