-
Notifications
You must be signed in to change notification settings - Fork 0
/
cavity_raman_figures.nb
3894 lines (3858 loc) · 177 KB
/
cavity_raman_figures.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 10.2' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 176692, 3885]
NotebookOptionsPosition[ 175573, 3841]
NotebookOutlinePosition[ 175918, 3856]
CellTagsIndexPosition[ 175875, 3853]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell["Set directory", "Subchapter",
CellChangeTimes->{{3.6675856316253376`*^9, 3.6675856459880238`*^9}}],
Cell[BoxData[{
RowBox[{"NotebookDirectory", "[", "]"}], "\[IndentingNewLine]",
RowBox[{"SetDirectory", "[", "\"\< \>\"", "]"}]}], "Input",
CellChangeTimes->{{3.6675856568310237`*^9, 3.6675856621318407`*^9}, {
3.6683281061356616`*^9, 3.6683281435896616`*^9}, 3.677504376236923*^9}]
}, Closed]],
Cell[CellGroupData[{
Cell["RWA without A^2", "Subchapter",
CellChangeTimes->{{3.6607338471516848`*^9, 3.6607338597605286`*^9}, {
3.661634431687862*^9, 3.6616344345189257`*^9}, {3.664201548457323*^9,
3.6642015521722684`*^9}, {3.6672849300740833`*^9, 3.667284936945978*^9}, {
3.6675857597989264`*^9, 3.6675857820814695`*^9}, {3.6775043859082813`*^9,
3.6775043864908676`*^9}}],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{
RowBox[{"\[CapitalOmega]", "=", "100."}], ";"}], " ",
RowBox[{"(*", " ",
RowBox[{"vibr", " ", "energy", " ", "in", " ", "meV"}], " ",
"*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"NN", "=", "1000000."}], ";"}], " ",
RowBox[{"(*",
RowBox[{"total", " ", "number", " ", "of", " ", "molecules"}], " ",
"*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"wc", "=", "100."}], ";"}], " ",
RowBox[{"(*", " ",
RowBox[{"cavity", " ", "photon", " ", "energy", " ", "in", " ", "meV"}],
" ", "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"S", "=", "0.3"}], ";"}], " ",
RowBox[{"(*",
RowBox[{
RowBox[{"electronic", " ", "transition"}], " ", "-", " ",
RowBox[{"vibration", " ", "coupling"}]}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[CapitalDelta]", " ", "=", " ", "100."}], ";", " ",
RowBox[{"(*",
RowBox[{
RowBox[{"electronic", " ", "transition"}], " ", "-", " ",
RowBox[{"laser", " ", "frequency", " ", "detuning"}]}], "*)"}],
"\[IndentingNewLine]", "\[IndentingNewLine]",
RowBox[{"Pr1", " ", "=", " ",
RowBox[{"{", "}"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"Pr2", " ", "=", " ",
RowBox[{"{", "}"}]}], ";"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"Do", "[", "\[IndentingNewLine]", " ", "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"w", " ", "=", " ",
RowBox[{"wc",
RowBox[{"{",
RowBox[{
RowBox[{"1", " ", "+", " ", "coupl"}], ",", " ",
RowBox[{"1", " ", "-", " ", "coupl"}], ",", " ", "1"}], "}"}]}]}],
";", "\[IndentingNewLine]",
RowBox[{
RowBox[{"au", "[", "j_", "]"}], ":=", " ",
RowBox[{
RowBox[{"wc", "^", "2"}],
FractionBox[
RowBox[{
RowBox[{"Exp", "[",
RowBox[{
RowBox[{"-", "z"}], " ",
RowBox[{"w", "[",
RowBox[{"[", "j", "]"}], "]"}]}], "]"}], " ", "-", " ", "1"}],
RowBox[{
RowBox[{"w", "[",
RowBox[{"[", "j", "]"}], "]"}], "^", "2"}]],
RowBox[{"{",
RowBox[{"1", ",", "1", ",",
RowBox[{"2",
RowBox[{"(",
RowBox[{"NN", "-", "1"}], ")"}]}]}], "}"}]}]}], ";",
"\[IndentingNewLine]",
RowBox[{
RowBox[{"Prob", "[", "i_", "]"}], ":=", " ",
RowBox[{
FractionBox[
RowBox[{"S", " ", "NN"}], "2"], "*",
SuperscriptBox[
RowBox[{"(",
FractionBox["wc",
RowBox[{"w", "[",
RowBox[{"[", "i", "]"}], "]"}]], ")"}], "2"],
RowBox[{
RowBox[{"Abs", "[",
RowBox[{"NIntegrate", "[",
RowBox[{
RowBox[{
RowBox[{"Exp", "[",
RowBox[{
RowBox[{"-", "z"}], " ", "\[CapitalDelta]"}], "]"}],
RowBox[{"(",
RowBox[{
RowBox[{"Exp", "[",
RowBox[{
RowBox[{"-", "z"}], " ",
RowBox[{"w", "[",
RowBox[{"[", "i", "]"}], "]"}]}], "]"}], "-", "1"}], ")"}],
RowBox[{"Exp", "[",
RowBox[{
FractionBox[
RowBox[{"-", "S"}],
RowBox[{"2", "NN"}]],
RowBox[{"Sum", "[",
RowBox[{
RowBox[{
RowBox[{"au", "[", "j", "]"}], "[",
RowBox[{"[", "j", "]"}], "]"}], ",",
RowBox[{"{",
RowBox[{"j", ",", "1", ",", "3"}], "}"}]}], "]"}]}],
"]"}]}], ",",
RowBox[{"{",
RowBox[{"z", ",", "0", ",", "Infinity"}], "}"}]}], "]"}], "]"}],
"^", "2"}]}]}], ";", "\[IndentingNewLine]",
RowBox[{"AppendTo", "[",
RowBox[{"Pr1", ",",
RowBox[{"{",
RowBox[{"coupl", ",",
RowBox[{"Prob", "[", "1", "]"}]}], "}"}]}], "]"}], ";",
"\[IndentingNewLine]",
RowBox[{"AppendTo", "[",
RowBox[{"Pr2", ",",
RowBox[{"{",
RowBox[{"coupl", ",",
RowBox[{"Prob", "[", "2", "]"}]}], "}"}]}], "]"}], ";"}], ",",
"\[IndentingNewLine]",
RowBox[{"{",
RowBox[{"coupl", ",", "0.0001", ",", "0.5001", ",", "0.01"}], "}"}]}],
"]"}], ";"}], "\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"Pr1", "[",
RowBox[{"[",
RowBox[{"All", ",", "2"}], "]"}], "]"}], "=",
FractionBox[
RowBox[{"Pr1", "[",
RowBox[{"[",
RowBox[{"All", ",", "2"}], "]"}], "]"}],
RowBox[{"Pr1", "[",
RowBox[{"[",
RowBox[{"1", ",", "2"}], "]"}], "]"}]]}], ";",
RowBox[{"(*",
RowBox[{
RowBox[{
"normalization", " ", "by", " ", "the", " ", "probability", " ",
"without", " ", "light"}], "-",
RowBox[{"matter", " ", "coupling"}]}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Pr2", "[",
RowBox[{"[",
RowBox[{"All", ",", "2"}], "]"}], "]"}], "=",
FractionBox[
RowBox[{"Pr2", "[",
RowBox[{"[",
RowBox[{"All", ",", "2"}], "]"}], "]"}],
RowBox[{"Pr2", "[",
RowBox[{"[",
RowBox[{"1", ",", "2"}], "]"}], "]"}]]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Tot", " ", "=", " ",
FractionBox[
RowBox[{"Pr1", " ", "+", " ", "Pr2"}], "2"]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Probmain", " ", "=", " ",
RowBox[{"{",
RowBox[{"Pr1", ",", "Pr2", ",", "Tot"}], "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"ListLinePlot", "[",
RowBox[{"Probmain", ",",
RowBox[{"PlotLegends", "\[Rule]",
RowBox[{"Placed", "[",
RowBox[{
RowBox[{"{",
RowBox[{"\"\<UP\>\"", ",", "\"\<LP\>\"", ",", "\"\<Mean\>\""}], "}"}],
",",
RowBox[{"{",
RowBox[{"0.15", ",", "0.8"}], "}"}]}], "]"}]}], ",", " ",
RowBox[{"AxesStyle", "\[Rule]",
RowBox[{"Directive", "[", "Black", "]"}]}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"Directive", "[",
RowBox[{"Red", ",",
RowBox[{"Thickness", "[", "0.01", "]"}]}], "]"}], ",",
RowBox[{"Directive", "[",
RowBox[{"Blue", ",",
RowBox[{"Thickness", "[", "0.01", "]"}]}], "]"}], ",",
RowBox[{"Directive", "[",
RowBox[{
RowBox[{"Lighter", "[",
RowBox[{"Purple", ",", "0.4"}], "]"}], ",",
RowBox[{"Thickness", "[", "0.01", "]"}], ",",
RowBox[{"Dashing", "[", "0.03", "]"}]}], "]"}]}], "}"}]}], ",",
RowBox[{"Frame", "\[Rule]", "True"}], ",",
RowBox[{"FrameTicks", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"All", ",", "Automatic"}], "}"}], ",",
RowBox[{"{",
RowBox[{"All", ",", "Automatic"}], "}"}]}], "}"}]}], ",",
RowBox[{"FrameTicksStyle", "\[Rule]",
RowBox[{"Directive", "[",
RowBox[{"Black", ",", "17"}], "]"}]}], ",",
RowBox[{"AspectRatio", "\[Rule]", "0.65"}], ",",
RowBox[{"FrameLabel", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"Style", "[",
RowBox[{
"\"\<G\!\(\*SqrtBox[\(N\)]\)/\!\(\*SubscriptBox[\(\[Omega]\), \
\(v\)]\)\>\"", ",",
RowBox[{"FontTracking", "\[Rule]", "\"\<Narrow\>\""}], ",",
RowBox[{"FontFamily", "\[Rule]", "\"\<Times\>\""}], ",",
RowBox[{"FontSlant", "->", "Plain"}]}], "]"}], ",",
RowBox[{"Style", "[",
RowBox[{
"\"\<\!\(\*SubscriptBox[\(P\), \(n\)]\)/\!\(\*SubscriptBox[\(P\), \(n\
\)]\)(G=0)\>\"", ",",
RowBox[{"FontTracking", "\[Rule]", "\"\<Narrow\>\""}], ",",
RowBox[{"FontFamily", "\[Rule]", "\"\<Times\>\""}], ",",
RowBox[{"FontSlant", "->", "Plain"}]}], "]"}]}], "}"}]}], ",",
RowBox[{"LabelStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Black", ",", "20", ",",
RowBox[{"FontFamily", "\[Rule]", "\"\<Times\>\""}]}], "}"}]}], ",",
RowBox[{"DataRange", "\[Rule]",
RowBox[{"{",
RowBox[{"0", ",", "0.5"}], "}"}]}], ",",
RowBox[{"ImageSize", "\[Rule]", "500"}], ",",
RowBox[{"PlotRangePadding", "\[Rule]", "0"}], ",",
RowBox[{"PlotRange", "\[Rule]",
RowBox[{"{",
RowBox[{"0", ",", "1.8"}], "}"}]}]}], "]"}], "\[IndentingNewLine]",
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Export", "[",
RowBox[{"\"\<pr_RWA.txt\>\"", ",", "Probmain"}], "]"}],
";"}], "\[IndentingNewLine]"}], "Input",
CellChangeTimes->{{3.6607339028666086`*^9, 3.6607339560728235`*^9}, {
3.6607340707145977`*^9, 3.6607341743597775`*^9}, {3.6607350271397753`*^9,
3.6607350999458447`*^9}, {3.6607351644084864`*^9, 3.6607352504225407`*^9},
3.6607492131923323`*^9, {3.660756668644012*^9, 3.66075670252014*^9}, {
3.6607568343394575`*^9, 3.6607568511500187`*^9}, {3.660759227244211*^9,
3.6607592292238007`*^9}, {3.660759421805152*^9, 3.6607594219317193`*^9},
3.660759463768546*^9, {3.660759594696183*^9, 3.660759610273998*^9}, {
3.660759711069602*^9, 3.6607597194774017`*^9}, {3.660760608050561*^9,
3.660760612215743*^9}, {3.660760671596986*^9, 3.6607606744619694`*^9},
3.6607607283378525`*^9, {3.6607607954260235`*^9, 3.6607608238510256`*^9}, {
3.660760912920388*^9, 3.660760913128439*^9}, {3.660760946278879*^9,
3.6607609764713373`*^9}, {3.6607612013728733`*^9,
3.6607612149564066`*^9}, {3.6607612512478466`*^9, 3.6607612838257318`*^9},
3.661158830670029*^9, {3.6611593133536625`*^9, 3.6611593454837065`*^9},
3.661164536197731*^9, {3.661176127928852*^9, 3.6611761387031856`*^9}, {
3.661177739971179*^9, 3.6611777934442024`*^9}, {3.661182183603035*^9,
3.661182183860648*^9}, {3.6611877240410156`*^9, 3.6611877329566073`*^9}, {
3.6612407389190063`*^9, 3.6612407658404493`*^9}, {3.6615938905146265`*^9,
3.661593919423701*^9}, {3.6615943172976604`*^9, 3.6615943290363607`*^9}, {
3.6616076549870424`*^9, 3.6616076670942855`*^9}, 3.66161891039709*^9,
3.661619024643592*^9, {3.6616214067592487`*^9, 3.661621407623555*^9},
3.6621988305926723`*^9, {3.662198885753415*^9, 3.6621989340025325`*^9}, {
3.662393737337103*^9, 3.662393738071086*^9}, 3.663510859795921*^9,
3.663523335410612*^9, {3.663523515623415*^9, 3.6635235168567*^9}, {
3.663523933190005*^9, 3.6635239333055506`*^9}, 3.6635305956872854`*^9, {
3.663530965935787*^9, 3.6635309895262394`*^9}, 3.6635330511565113`*^9, {
3.6635748308317595`*^9, 3.663574830931162*^9}, 3.6635748615616817`*^9,
3.6635749448577967`*^9, {3.6635749764812713`*^9, 3.663575011872569*^9},
3.663575046580269*^9, {3.663575162470888*^9, 3.6635751858450584`*^9},
3.663579204784809*^9, {3.663648796754731*^9, 3.663648797038929*^9},
3.6637031380007825`*^9, 3.6641982660912433`*^9, {3.6641987723939266`*^9,
3.6641987814122543`*^9}, {3.6641998525491033`*^9, 3.664199852829713*^9}, {
3.6642013270985985`*^9, 3.664201328890815*^9}, {3.66446534699752*^9,
3.664465347060171*^9}, {3.664469481199032*^9, 3.664469495650008*^9}, {
3.6644708644757423`*^9, 3.664470912277031*^9}, {3.664470983762099*^9,
3.6644710201695786`*^9}, {3.6647301048841987`*^9,
3.6647301336378384`*^9}, {3.6650574105093775`*^9,
3.6650574717222204`*^9}, {3.665057502552418*^9, 3.6650575140132275`*^9},
3.6650577290072627`*^9, 3.6650791660317802`*^9, {3.6653887992786036`*^9,
3.6653888014443893`*^9}, 3.6653931286539154`*^9, 3.665393220289797*^9, {
3.665394400331439*^9, 3.6653944004444675`*^9}, {3.6653999696682153`*^9,
3.665399970690076*^9}, {3.6656874033777657`*^9, 3.665687433666294*^9}, {
3.6663514486070485`*^9, 3.66635148757943*^9}, {3.6663553700457025`*^9,
3.666355391502805*^9}, {3.6663557137281847`*^9, 3.666355733607345*^9},
3.666355891692116*^9, {3.666355925906066*^9, 3.666355952549055*^9}, {
3.6663560868679776`*^9, 3.6663561088885517`*^9}, {3.6663562140706363`*^9,
3.666356222238978*^9}, {3.66635629271292*^9, 3.6663562975079355`*^9}, {
3.6663563840922937`*^9, 3.6663564085501738`*^9}, {3.666356510819167*^9,
3.666356546420187*^9}, {3.6663566209329853`*^9, 3.666356688460352*^9}, {
3.666356724289934*^9, 3.6663567578635654`*^9}, {3.666356812850356*^9,
3.66635682401422*^9}, {3.6663568610540466`*^9, 3.6663568779832883`*^9}, {
3.6663569415124454`*^9, 3.666356977538826*^9}, {3.666357083078143*^9,
3.6663571938738365`*^9}, {3.666357295367672*^9, 3.666357321963687*^9}, {
3.6663573541940928`*^9, 3.6663573734803495`*^9}, 3.6663589235576525`*^9, {
3.666379400875784*^9, 3.666379402218356*^9}, 3.666379486473792*^9,
3.6663803239934616`*^9, 3.666380470717821*^9, 3.666383185227147*^9, {
3.6667200716412764`*^9, 3.6667201603872347`*^9}, {3.6672834953955994`*^9,
3.667283514646224*^9}, {3.6672835646536655`*^9, 3.6672838159249253`*^9},
3.6672838769041433`*^9, {3.6672839170822515`*^9, 3.6672839200333405`*^9}, {
3.667283960478994*^9, 3.6672839698398104`*^9}, {3.6672840510033045`*^9,
3.667284051684786*^9}, {3.6672841325180893`*^9, 3.6672842508139114`*^9}, {
3.667284326574575*^9, 3.6672843417843695`*^9}, {3.6672844369476852`*^9,
3.6672844562403383`*^9}, 3.6672846984471397`*^9, 3.6672866395499554`*^9, {
3.667286908773903*^9, 3.6672869432963653`*^9}, {3.6672869889527063`*^9,
3.6672870125004015`*^9}, 3.6675855841564903`*^9, {3.667585623681709*^9,
3.667585624816495*^9}, {3.6675858178952208`*^9, 3.667585964375621*^9}, {
3.6675860059625063`*^9, 3.66758600994882*^9}, {3.6675860558060246`*^9,
3.6675861377139587`*^9}, {3.6675862451421394`*^9,
3.6675862522290277`*^9}, {3.6675871278168807`*^9,
3.6675871744954824`*^9}, {3.6678993643444242`*^9,
3.6678993886875534`*^9}, {3.668147133274157*^9, 3.668147234980166*^9}, {
3.6681530103044324`*^9, 3.6681530393896666`*^9}, {3.6681598037161765`*^9,
3.668159871892033*^9}, {3.6681602342112927`*^9, 3.6681602604248686`*^9}, {
3.668160301323494*^9, 3.6681603191262846`*^9}, {3.668163892722303*^9,
3.6681639243949876`*^9}, {3.668163962462783*^9, 3.6681639679380217`*^9}, {
3.668168788240322*^9, 3.6681688348706384`*^9}, {3.6683325110359273`*^9,
3.6683325219581995`*^9}, {3.668338667693777*^9, 3.668338667827903*^9}, {
3.6683550356445184`*^9, 3.668355054720823*^9}, {3.668355739843119*^9,
3.6683557444758596`*^9}, {3.668357636969475*^9, 3.6683576395540237`*^9}, {
3.6683578973847685`*^9, 3.668357916951438*^9}, 3.668357972708255*^9, {
3.675148886542646*^9, 3.6751488888984337`*^9}, {3.6775043888291445`*^9,
3.677504426899105*^9}, 3.6775045725413976`*^9}],
Cell[BoxData[
TagBox[
GraphicsBox[{{{}, {{}, {},
{RGBColor[1, 0, 0], PointSize[0.01388888888888889], Thickness[0.01],
LineBox[CompressedData["
1:eJwd0nlMkwcABfBSmAqMVEGugigWbdkYYqelYXNvxHigGEUkWuWQKRGM1wAd
Q8ZmbYAggiKVo4pVsEjUsVoJQ+6tHQiVcEmhYiXs631QWbpGkDi7l7y8/19+
wd+d3Z9GJpFIX36sY7/YGmicYVFB+j9WOO3heext4iGLamO4PppFZ0T1Z378
ClQq6S8OcWaxEHVusGikFlddt6Xqls7i9j1a6/vCepQsq7gsbrGgnU5xbxY1
IsnaNv843QLlo/nE07JfYc+58VRBtWDRL0vhOSdGzTcLUsagGSWv0klnLz2F
7X3PcQHXjIDa5NCB5S0QJZdbQ9lmPDx6YD9d2Iq3ZIN20GJCFG3Xxcsb2iFL
8TfxRCY8V6P+TWcniNDYru0pJoSN1WhWNXSjx1q9leJvQnaz98KApQdL7gTl
To4a0XbzGiWX9SdiK6hcYZkRzjnuIYx8KTZQqFUpsUbs5hSwx2UyKO/RvD3d
jCiPcjzSC1G2+bSkzwBlQF4qM6EPSrI/E0UGrF389/z0ree4wjrvLt5pQIbq
++JSoh/5Bds7XNwMEHeZar8OkyNzroLGkuvxTnhCYsh6gRHhz8zoMj2+5c70
VrUNwsnItwXH6yEVh5+pcxrCBdHmsjFfPdLXnsrJvT8Efa4lMuG1Dp/eaOTG
xQyj29ewRVinw2/O2hKGeRilgRyXJyd1iM8OqfxwbQRHiglyIVMHO5F6d3zT
KOL4NFnAghaChDsPH0+MIq3J23BKqgX+mmrm5Y1BKBLSfijV4m8WtfvImpfw
lXiyIjlaFDYc7GdKX6Iy7oG9MUSLz/34Y67p4wju994nt2rwEYNq2l2B8uiV
bEGHBpnvKPqWJgU2sed+97qigc/JPf+Uxk8AB+kmJkeDZ8rixTT7BLrOGedt
dA2Sd/ct3SKYBP/m0KrDdjXI7Z94roQSK8KP3krsVeN+mAOoElWaZ/L5SjVi
bv+y/o+CV1h98SsvZoYaZg+H0CkI1wfOfIhS43q+Q+gUfJqDWlM91Ng8y962
I/M1VNTIdQnTBCZTLuwN8lFB8RO7WyEhkDck4dhaVeAKeBHaQgJrot8ekye9
gSang3EpkcDMId+WYdI0kmJ+PFG3kcB/craacQ==
"]]},
{RGBColor[0, 0, 1], PointSize[0.01388888888888889], Thickness[0.01],
LineBox[CompressedData["
1:eJwdknsw0wEAx9d2bpUkTiJZWI9Vo1qSVt1X79PjRKmTqHQuSsmjEk4lyanr
pcciUpJDJcU5EZJlWC5i2EStKT20/fa0/Yasz933vvf993sf55BIv1AqhUJZ
Nh5Tu66f9VvqMRNj/5FjwvYUC5+SFKxx7XTKW6hAzZJ7C+1u3wLdPXqXwl8B
knuiNa09B24Me+bv8wpkP2JWGi89xvKfl9l3nytQPd/SvPxJIY5eELCGJQqI
nxr2HeM/B1HQMmg1mcCIXUyXtbIUNrK9ewY9CVyRhFEiz5eh1Vp05mwYAYec
4AUt0yqw7cG0KAmPQPGBXX7zcytxQMaJpzQT4DK3JFxYXA3paJ5cSRJoGsDj
/poajMQYvSvclGB3ZH53LKgDbTLV2S9Eidjy6WTL37eQr3rGFtxRourOdct4
j3dwfum5iSFUghZnPoeV1ICypavCA6gqbA1I9RTx+ciOE5YlrVThJtf0SCMk
yeURGVEqiB0SD3L8BfCtemq4X6SCy4j25Jf7TUh+mCPPlakQ3heVflXWjBmx
NLP82WqU1v7JWc0Wouv0OkZJoBr63MOvfsV8gFc8cwufp4ZXsrSRV9UKqxU+
DUMiNRpK3Y7nTfgId99+rZutBmEuEXHx+eObN5pwbbcGUzIKk32928ANypxt
y9PgBe3HFdZQG/bnz/3aJNZgZ+ycu2PX22FvFakpZWihkx18KHL/hCVB6YLO
Q1pk+T8oftb9CS0RrWOri7TA+97ylMQOBIsHE+SEFt88ZtYFOnWi0n5ioIar
w6WCPc2chk7M3ehI7r6owyK72x2TwkQIqvEwzmrTYVyGvi/mXaB8Vq/bwRhG
tN7yZ0VJF3w09qQ+Yhi2R7arru7sRr3Nikzmm2G8FqePhOq60TNwSiqaqkfw
VgF9TVYPpF5pA44helCrzaxtIIYZvYhOq9Ajn20SVIyJZA/1hoUB3tnn5tWn
SlAbyvrVHmrAkIXJ0F6kHue4dtQacCPJZGgvMtj8rFwHEsvlnhs3R39G463i
8A1nSPTsP+XDsO0DK62QI+wmkfjxVYCmsg/88CejG7hGOK0lDgmD+pHeOGlT
dbYRdfQx9/rCfnwQmjDiH7vLp18=
"]]},
{RGBColor[0.7, 0.4, 0.7], PointSize[0.01388888888888889], Thickness[
0.01], Dashing[0.03], LineBox[CompressedData["
1:eJwdkn0w03EAxkcp3eqWlyRTrSiS3iRJuYfTyy0nFV0vhJRLnV6pdnIqnHbK
iqIiS5rcolhoN9xSCL2dxbysGXmpK+T7+00Woqzn7rnnnj+f5z6LQk/tDjNk
MBhrJ63PFV7WfV0uVmD8F4GBT8Is38IEbGzPU/lNdvnqew6Wabchnh1/cIcB
wZjb6Y/8T0JEK9rFg4YEWTk2sj9XRZAPO+jWGxFU2LGYpY/F+OBudsvOmEBV
MBp4ouYZXJ4nfZEzCcYtI1tMaQmKPPsDJ1gE1z+HM05dKYGIz07/ak7AFgYt
ezdbip3fCpx5VgT5If677bJl6KfNdMUcAjeb7RfjV1UgdG/r8ww7gvpeiDrk
cvA2K/xXrCJwbMr4Oj+vEk5Xjn6JWE8QVTpn7N3PV5Bt0UQd8CAoT7/Jinap
gu1EjpeOSzCFx7S1j63GY2tRxmZ/Au/9ia7NNTUwWlLY4RVMkOqmf6QWdxY0
pwwfn9zDjjnktKcOwUI1N+gCweLx4XOd9+txRFhQFpNAcExzJknQ8xb5AY0S
v1QCyct+4SbH9+Dzpln2ZhOMZB8t/hH5Af65EsqpiMAjrqv2bvlHcC2Sg1FJ
UC1ZefKRQQNcTd0fzFQQhC+O4EXnNqDpxygzq4tg5i1x3C6uAskl2xZqhwiK
pny7bj+gQOM88RkTYwp+UbZ3/t78BJv80+WjbAq6nkMPm50b0W8mUEpWU8jc
8yD/aWsjkBNRtmErBbxRlybENKElXZ2YFkih28WqMoCjRI7M+GJdJIWreXvf
OlUr8fsFb0x5jcJyy7SmGeHNkCo4qa9EFCZh0HQyW9ATe2lQIKdwdoT1XVrY
ghJ+fZ9nGwWL4z5agV8r1oQs4WuGKJSpksbDdK2w9h0eDDehEeRdN909sw0W
W12je1fSMKwwMjWHCtNZA0/2+dDIddQDqoKDNNO5NoIGN+vy0teJn5Fn0j2y
LpnGwCw9oWr0eXBYT57RSInVE6rGDS+HCnsFjXWDrlu2nW0HO8UmVjpEoy34
vO8CCw2SukNnBM7TIqaheP8vmQZVAVHe1tCC40kdfn+wAxOezicmwrTo2jdX
qmB0wlw6VWks0OIfEj+e6Q==
"]]}}, {}}, InsetBox[
TemplateBox[{"\"UP\"","\"LP\"","\"Mean\""},
"LineLegend",
DisplayFunction->(FormBox[
StyleBox[
StyleBox[
PaneBox[
TagBox[
GridBox[{{
TagBox[
GridBox[{{
GraphicsBox[{{
Directive[
EdgeForm[
Directive[
Opacity[0.3],
GrayLevel[0]]],
PointSize[0.125],
AbsoluteThickness[1.6],
RGBColor[1, 0, 0],
Thickness[0.09]], {
LineBox[{{0, 10}, {40, 10}}]}}, {
Directive[
EdgeForm[
Directive[
Opacity[0.3],
GrayLevel[0]]],
PointSize[0.125],
AbsoluteThickness[1.6],
RGBColor[1, 0, 0],
Thickness[0.09]], {}}}, AspectRatio -> Full,
ImageSize -> {40, 10}, PlotRangePadding -> None,
ImagePadding -> Automatic,
BaselinePosition -> (Scaled[-0.21] -> Baseline)], #}, {
GraphicsBox[{{
Directive[
EdgeForm[
Directive[
Opacity[0.3],
GrayLevel[0]]],
PointSize[0.125],
AbsoluteThickness[1.6],
RGBColor[0, 0, 1],
Thickness[0.09]], {
LineBox[{{0, 10}, {40, 10}}]}}, {
Directive[
EdgeForm[
Directive[
Opacity[0.3],
GrayLevel[0]]],
PointSize[0.125],
AbsoluteThickness[1.6],
RGBColor[0, 0, 1],
Thickness[0.09]], {}}}, AspectRatio -> Full,
ImageSize -> {40, 10}, PlotRangePadding -> None,
ImagePadding -> Automatic,
BaselinePosition -> (Scaled[-0.21] -> Baseline)], #2}, {
GraphicsBox[{{
Directive[
EdgeForm[
Directive[
Opacity[0.3],
GrayLevel[0]]],
PointSize[0.125],
AbsoluteThickness[1.6],
RGBColor[0.7, 0.4, 0.7],
Thickness[0.09],
Dashing[0.27]], {
LineBox[{{0, 10}, {40, 10}}]}}, {
Directive[
EdgeForm[
Directive[
Opacity[0.3],
GrayLevel[0]]],
PointSize[0.125],
AbsoluteThickness[1.6],
RGBColor[0.7, 0.4, 0.7],
Thickness[0.09],
Dashing[0.27]], {}}}, AspectRatio -> Full,
ImageSize -> {40, 10}, PlotRangePadding -> None,
ImagePadding -> Automatic,
BaselinePosition -> (Scaled[-0.21] -> Baseline)], #3}},
GridBoxAlignment -> {
"Columns" -> {Center, Left}, "Rows" -> {{Baseline}}},
AutoDelete -> False,
GridBoxDividers -> {
"Columns" -> {{False}}, "Rows" -> {{False}}},
GridBoxItemSize -> {"Columns" -> {{All}}, "Rows" -> {{All}}},
GridBoxSpacings -> {
"Columns" -> {{0.5}}, "Rows" -> {{0.8}}}], "Grid"]}},
GridBoxAlignment -> {"Columns" -> {{Left}}, "Rows" -> {{Top}}},
AutoDelete -> False,
GridBoxItemSize -> {
"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}},
GridBoxSpacings -> {"Columns" -> {{1}}, "Rows" -> {{0}}}],
"Grid"], Alignment -> Left, AppearanceElements -> None,
ImageMargins -> {{5, 5}, {5, 5}}, ImageSizeAction ->
"ResizeToFit"], LineIndent -> 0, StripOnInput -> False], {
GrayLevel[0], FontSize -> 20, FontFamily -> "Times", FontFamily ->
"Arial"}, Background -> Automatic, StripOnInput -> False],
TraditionalForm]& ),
Editable->True,
InterpretationFunction:>(RowBox[{"LineLegend", "[",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"Directive", "[",
RowBox[{
RowBox[{"PointSize", "[", "0.01388888888888889`", "]"}],
",",
RowBox[{"AbsoluteThickness", "[", "1.6`", "]"}], ",",
InterpretationBox[
ButtonBox[
TooltipBox[
GraphicsBox[{{
GrayLevel[0],
RectangleBox[{0, 0}]}, {
GrayLevel[0],
RectangleBox[{1, -1}]}, {
RGBColor[1, 0, 0],
RectangleBox[{0, -1}, {2, 1}]}}, AspectRatio -> 1, Frame ->
True, FrameStyle -> RGBColor[0.6666666666666666, 0., 0.],
FrameTicks -> None, PlotRangePadding -> None, ImageSize ->
Dynamic[{
Automatic, 1.35 CurrentValue["FontCapHeight"]/
AbsoluteCurrentValue[Magnification]}]],
"RGBColor[1, 0, 0]"], Appearance -> None, BaseStyle -> {},
BaselinePosition -> Baseline, DefaultBaseStyle -> {},
ButtonFunction :> With[{Typeset`box$ = EvaluationBox[]},
If[
Not[
AbsoluteCurrentValue["Deployed"]],
SelectionMove[Typeset`box$, All, Expression];
FrontEnd`Private`$ColorSelectorInitialAlpha = 1;
FrontEnd`Private`$ColorSelectorInitialColor =
RGBColor[1, 0, 0];
FrontEnd`Private`$ColorSelectorUseMakeBoxes = True;
MathLink`CallFrontEnd[
FrontEnd`AttachCell[Typeset`box$,
FrontEndResource["RGBColorValueSelector"], {
0, {Left, Bottom}}, {Left, Top},
"ClosingActions" -> {
"SelectionDeparture", "ParentChanged",
"EvaluatorQuit"}]]]], BaseStyle -> Inherited, Evaluator ->
Automatic, Method -> "Preemptive"],
RGBColor[1, 0, 0], Editable -> False, Selectable ->
False], ",",
RowBox[{"Thickness", "[", "0.01`", "]"}]}], "]"}], ",",
RowBox[{"Directive", "[",
RowBox[{
RowBox[{"PointSize", "[", "0.01388888888888889`", "]"}],
",",
RowBox[{"AbsoluteThickness", "[", "1.6`", "]"}], ",",
InterpretationBox[
ButtonBox[
TooltipBox[
GraphicsBox[{{
GrayLevel[0],
RectangleBox[{0, 0}]}, {
GrayLevel[0],
RectangleBox[{1, -1}]}, {
RGBColor[0, 0, 1],
RectangleBox[{0, -1}, {2, 1}]}}, AspectRatio -> 1, Frame ->
True, FrameStyle -> RGBColor[0., 0., 0.6666666666666666],
FrameTicks -> None, PlotRangePadding -> None, ImageSize ->
Dynamic[{
Automatic, 1.35 CurrentValue["FontCapHeight"]/
AbsoluteCurrentValue[Magnification]}]],
"RGBColor[0, 0, 1]"], Appearance -> None, BaseStyle -> {},
BaselinePosition -> Baseline, DefaultBaseStyle -> {},
ButtonFunction :> With[{Typeset`box$ = EvaluationBox[]},
If[
Not[
AbsoluteCurrentValue["Deployed"]],
SelectionMove[Typeset`box$, All, Expression];
FrontEnd`Private`$ColorSelectorInitialAlpha = 1;
FrontEnd`Private`$ColorSelectorInitialColor =
RGBColor[0, 0, 1];
FrontEnd`Private`$ColorSelectorUseMakeBoxes = True;
MathLink`CallFrontEnd[
FrontEnd`AttachCell[Typeset`box$,
FrontEndResource["RGBColorValueSelector"], {
0, {Left, Bottom}}, {Left, Top},
"ClosingActions" -> {
"SelectionDeparture", "ParentChanged",
"EvaluatorQuit"}]]]], BaseStyle -> Inherited, Evaluator ->
Automatic, Method -> "Preemptive"],
RGBColor[0, 0, 1], Editable -> False, Selectable ->
False], ",",
RowBox[{"Thickness", "[", "0.01`", "]"}]}], "]"}], ",",
RowBox[{"Directive", "[",
RowBox[{
RowBox[{"PointSize", "[", "0.01388888888888889`", "]"}],
",",
RowBox[{"AbsoluteThickness", "[", "1.6`", "]"}], ",",
InterpretationBox[
ButtonBox[
TooltipBox[
GraphicsBox[{{
GrayLevel[0],
RectangleBox[{0, 0}]}, {
GrayLevel[0],
RectangleBox[{1, -1}]}, {
RGBColor[0.7, 0.4, 0.7],
RectangleBox[{0, -1}, {2, 1}]}}, AspectRatio -> 1, Frame ->
True, FrameStyle ->
RGBColor[
0.4666666666666667, 0.2666666666666667,
0.4666666666666667], FrameTicks -> None, PlotRangePadding ->
None, ImageSize ->
Dynamic[{
Automatic, 1.35 CurrentValue["FontCapHeight"]/
AbsoluteCurrentValue[Magnification]}]],
"RGBColor[0.7, 0.4, 0.7]"], Appearance -> None,
BaseStyle -> {}, BaselinePosition -> Baseline,
DefaultBaseStyle -> {}, ButtonFunction :>
With[{Typeset`box$ = EvaluationBox[]},
If[
Not[
AbsoluteCurrentValue["Deployed"]],
SelectionMove[Typeset`box$, All, Expression];
FrontEnd`Private`$ColorSelectorInitialAlpha = 1;
FrontEnd`Private`$ColorSelectorInitialColor =
RGBColor[0.7, 0.4, 0.7];
FrontEnd`Private`$ColorSelectorUseMakeBoxes = True;
MathLink`CallFrontEnd[
FrontEnd`AttachCell[Typeset`box$,
FrontEndResource["RGBColorValueSelector"], {
0, {Left, Bottom}}, {Left, Top},
"ClosingActions" -> {
"SelectionDeparture", "ParentChanged",
"EvaluatorQuit"}]]]], BaseStyle -> Inherited, Evaluator ->
Automatic, Method -> "Preemptive"],
RGBColor[0.7, 0.4, 0.7], Editable -> False, Selectable ->
False], ",",
RowBox[{"Thickness", "[", "0.01`", "]"}], ",",
RowBox[{"Dashing", "[", "0.03`", "]"}]}], "]"}]}], "}"}],
",",
RowBox[{"{",
RowBox[{#, ",", #2, ",", #3}], "}"}], ",",
RowBox[{"LegendMarkers", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"False", ",", "Automatic"}], "}"}], ",",
RowBox[{"{",
RowBox[{"False", ",", "Automatic"}], "}"}], ",",
RowBox[{"{",
RowBox[{"False", ",", "Automatic"}], "}"}]}], "}"}]}], ",",
RowBox[{"Joined", "\[Rule]",
RowBox[{"{",
RowBox[{"True", ",", "True", ",", "True"}], "}"}]}], ",",
RowBox[{"LabelStyle", "\[Rule]",
RowBox[{"{",
RowBox[{
InterpretationBox[
ButtonBox[
TooltipBox[
GraphicsBox[{{
GrayLevel[0],
RectangleBox[{0, 0}]}, {
GrayLevel[0],
RectangleBox[{1, -1}]}, {
GrayLevel[0],
RectangleBox[{0, -1}, {2, 1}]}}, AspectRatio -> 1, Frame ->
True, FrameStyle -> GrayLevel[0.], FrameTicks -> None,
PlotRangePadding -> None, ImageSize ->
Dynamic[{
Automatic, 1.35 CurrentValue["FontCapHeight"]/
AbsoluteCurrentValue[Magnification]}]], "GrayLevel[0]"],
Appearance -> None, BaseStyle -> {}, BaselinePosition ->
Baseline, DefaultBaseStyle -> {}, ButtonFunction :>
With[{Typeset`box$ = EvaluationBox[]},
If[
Not[
AbsoluteCurrentValue["Deployed"]],
SelectionMove[Typeset`box$, All, Expression];
FrontEnd`Private`$ColorSelectorInitialAlpha = 1;
FrontEnd`Private`$ColorSelectorInitialColor =
GrayLevel[0];
FrontEnd`Private`$ColorSelectorUseMakeBoxes = True;
MathLink`CallFrontEnd[
FrontEnd`AttachCell[Typeset`box$,
FrontEndResource["GrayLevelColorValueSelector"], {
0, {Left, Bottom}}, {Left, Top},
"ClosingActions" -> {
"SelectionDeparture", "ParentChanged",
"EvaluatorQuit"}]]]], BaseStyle -> Inherited, Evaluator ->
Automatic, Method -> "Preemptive"],
GrayLevel[0], Editable -> False, Selectable -> False], ",",
"20", ",",
RowBox[{"FontFamily", "\[Rule]", "\"Times\""}]}], "}"}]}],
",",
RowBox[{"LegendLayout", "\[Rule]", "\"Column\""}]}], "]"}]& )],
Scaled[{0.15, 0.8}], ImageScaled[{0.5, 0.5}],
BaseStyle->{FontSize -> Larger},
FormatType->StandardForm]},
AspectRatio->0.65,
Axes->{True, True},
AxesLabel->{None, None},
AxesOrigin->{0, 0},
AxesStyle->Directive[
GrayLevel[0]],
DisplayFunction->Identity,
Frame->{{True, True}, {True, True}},
FrameLabel->{{
FormBox[
StyleBox[
"\"\\!\\(\\*SubscriptBox[\\(I\\), \
\\(n\\)]\\)/\\!\\(\\*SubscriptBox[\\(I\\), \\(n\\)]\\)(G=0)\"", FontTracking ->
"Narrow", FontFamily -> "Times", FontSlant -> Plain, StripOnInput ->
False], TraditionalForm], None}, {
FormBox[
StyleBox[
"\"G\\!\\(\\*SqrtBox[\\(N\\)]\\)/\\!\\(\\*SubscriptBox[\\(\[Omega]\\), \
\\(v\\)]\\)\"", FontTracking -> "Narrow", FontFamily -> "Times", FontSlant ->
Plain, StripOnInput -> False], TraditionalForm], None}},
FrameTicks->{{All, Automatic}, {All, Automatic}},
FrameTicksStyle->Directive[
GrayLevel[0], 17],
GridLines->{None, None},
GridLinesStyle->Directive[
GrayLevel[0.5, 0.4]],
ImageSize->500,
LabelStyle->{
GrayLevel[0], 20, FontFamily -> "Times"},
Method->{},
PlotRange->{{0, 0.5001}, {0, 1.8}},
PlotRangeClipping->True,
PlotRangePadding->{{0, 0}, {0, 0}},
Ticks->{Automatic, Automatic}],
InterpretTemplate[Legended[
Graphics[{{}, {{{}, {}, {
Hue[0.67, 0.6, 0.6],
Directive[
PointSize[0.01388888888888889],
AbsoluteThickness[1.6],
RGBColor[1, 0, 0],
Thickness[0.01]],
Line[CompressedData["
1:eJwd0nlMkwcABfBSmAqMVEGugigWbdkYYqelYXNvxHigGEUkWuWQKRGM1wAd
Q8ZmbYAggiKVo4pVsEjUsVoJQ+6tHQiVcEmhYiXs631QWbpGkDi7l7y8/19+
wd+d3Z9GJpFIX36sY7/YGmicYVFB+j9WOO3heext4iGLamO4PppFZ0T1Z378
ClQq6S8OcWaxEHVusGikFlddt6Xqls7i9j1a6/vCepQsq7gsbrGgnU5xbxY1
IsnaNv843QLlo/nE07JfYc+58VRBtWDRL0vhOSdGzTcLUsagGSWv0klnLz2F
7X3PcQHXjIDa5NCB5S0QJZdbQ9lmPDx6YD9d2Iq3ZIN20GJCFG3Xxcsb2iFL
8TfxRCY8V6P+TWcniNDYru0pJoSN1WhWNXSjx1q9leJvQnaz98KApQdL7gTl
To4a0XbzGiWX9SdiK6hcYZkRzjnuIYx8KTZQqFUpsUbs5hSwx2UyKO/RvD3d
jCiPcjzSC1G2+bSkzwBlQF4qM6EPSrI/E0UGrF389/z0ree4wjrvLt5pQIbq
++JSoh/5Bds7XNwMEHeZar8OkyNzroLGkuvxTnhCYsh6gRHhz8zoMj2+5c70
VrUNwsnItwXH6yEVh5+pcxrCBdHmsjFfPdLXnsrJvT8Efa4lMuG1Dp/eaOTG
xQyj29ewRVinw2/O2hKGeRilgRyXJyd1iM8OqfxwbQRHiglyIVMHO5F6d3zT
KOL4NFnAghaChDsPH0+MIq3J23BKqgX+mmrm5Y1BKBLSfijV4m8WtfvImpfw
lXiyIjlaFDYc7GdKX6Iy7oG9MUSLz/34Y67p4wju994nt2rwEYNq2l2B8uiV
bEGHBpnvKPqWJgU2sed+97qigc/JPf+Uxk8AB+kmJkeDZ8rixTT7BLrOGedt
dA2Sd/ct3SKYBP/m0KrDdjXI7Z94roQSK8KP3krsVeN+mAOoElWaZ/L5SjVi
bv+y/o+CV1h98SsvZoYaZg+H0CkI1wfOfIhS43q+Q+gUfJqDWlM91Ng8y962
I/M1VNTIdQnTBCZTLuwN8lFB8RO7WyEhkDck4dhaVeAKeBHaQgJrot8ekye9
gSang3EpkcDMId+WYdI0kmJ+PFG3kcB/craacQ==
"]]}, {
Hue[0.9060679774997897, 0.6, 0.6],
Directive[
PointSize[0.01388888888888889],
AbsoluteThickness[1.6],
RGBColor[0, 0, 1],
Thickness[0.01]],
Line[CompressedData["
1:eJwdknsw0wEAx9d2bpUkTiJZWI9Vo1qSVt1X79PjRKmTqHQuSsmjEk4lyanr
pcciUpJDJcU5EZJlWC5i2EStKT20/fa0/Yasz933vvf993sf55BIv1AqhUJZ
Nh5Tu66f9VvqMRNj/5FjwvYUC5+SFKxx7XTKW6hAzZJ7C+1u3wLdPXqXwl8B
knuiNa09B24Me+bv8wpkP2JWGi89xvKfl9l3nytQPd/SvPxJIY5eELCGJQqI
nxr2HeM/B1HQMmg1mcCIXUyXtbIUNrK9ewY9CVyRhFEiz5eh1Vp05mwYAYec
4AUt0yqw7cG0KAmPQPGBXX7zcytxQMaJpzQT4DK3JFxYXA3paJ5cSRJoGsDj
/poajMQYvSvclGB3ZH53LKgDbTLV2S9Eidjy6WTL37eQr3rGFtxRourOdct4
j3dwfum5iSFUghZnPoeV1ICypavCA6gqbA1I9RTx+ciOE5YlrVThJtf0SCMk
yeURGVEqiB0SD3L8BfCtemq4X6SCy4j25Jf7TUh+mCPPlakQ3heVflXWjBmx
NLP82WqU1v7JWc0Wouv0OkZJoBr63MOvfsV8gFc8cwufp4ZXsrSRV9UKqxU+
DUMiNRpK3Y7nTfgId99+rZutBmEuEXHx+eObN5pwbbcGUzIKk32928ANypxt
y9PgBe3HFdZQG/bnz/3aJNZgZ+ycu2PX22FvFakpZWihkx18KHL/hCVB6YLO
Q1pk+T8oftb9CS0RrWOri7TA+97ylMQOBIsHE+SEFt88ZtYFOnWi0n5ioIar
w6WCPc2chk7M3ehI7r6owyK72x2TwkQIqvEwzmrTYVyGvi/mXaB8Vq/bwRhG
tN7yZ0VJF3w09qQ+Yhi2R7arru7sRr3Nikzmm2G8FqePhOq60TNwSiqaqkfw
VgF9TVYPpF5pA44helCrzaxtIIYZvYhOq9Ajn20SVIyJZA/1hoUB3tnn5tWn
SlAbyvrVHmrAkIXJ0F6kHue4dtQacCPJZGgvMtj8rFwHEsvlnhs3R39G463i
8A1nSPTsP+XDsO0DK62QI+wmkfjxVYCmsg/88CejG7hGOK0lDgmD+pHeOGlT
dbYRdfQx9/rCfnwQmjDiH7vLp18=
"]]}, {
Hue[0.1421359549995791, 0.6, 0.6],
Directive[
PointSize[0.01388888888888889],
AbsoluteThickness[1.6],
RGBColor[0.7, 0.4, 0.7],
Thickness[0.01],
Dashing[0.03]],
Line[CompressedData["
1:eJwdkn0w03EAxkcp3eqWlyRTrSiS3iRJuYfTyy0nFV0vhJRLnV6pdnIqnHbK
iqIiS5rcolhoN9xSCL2dxbysGXmpK+T7+00Woqzn7rnnnj+f5z6LQk/tDjNk
MBhrJ63PFV7WfV0uVmD8F4GBT8Is38IEbGzPU/lNdvnqew6Wabchnh1/cIcB
wZjb6Y/8T0JEK9rFg4YEWTk2sj9XRZAPO+jWGxFU2LGYpY/F+OBudsvOmEBV
MBp4ouYZXJ4nfZEzCcYtI1tMaQmKPPsDJ1gE1z+HM05dKYGIz07/ak7AFgYt
ezdbip3fCpx5VgT5If677bJl6KfNdMUcAjeb7RfjV1UgdG/r8ww7gvpeiDrk
cvA2K/xXrCJwbMr4Oj+vEk5Xjn6JWE8QVTpn7N3PV5Bt0UQd8CAoT7/Jinap
gu1EjpeOSzCFx7S1j63GY2tRxmZ/Au/9ia7NNTUwWlLY4RVMkOqmf6QWdxY0
pwwfn9zDjjnktKcOwUI1N+gCweLx4XOd9+txRFhQFpNAcExzJknQ8xb5AY0S
v1QCyct+4SbH9+Dzpln2ZhOMZB8t/hH5Af65EsqpiMAjrqv2bvlHcC2Sg1FJ
UC1ZefKRQQNcTd0fzFQQhC+O4EXnNqDpxygzq4tg5i1x3C6uAskl2xZqhwiK
pny7bj+gQOM88RkTYwp+UbZ3/t78BJv80+WjbAq6nkMPm50b0W8mUEpWU8jc
8yD/aWsjkBNRtmErBbxRlybENKElXZ2YFkih28WqMoCjRI7M+GJdJIWreXvf
OlUr8fsFb0x5jcJyy7SmGeHNkCo4qa9EFCZh0HQyW9ATe2lQIKdwdoT1XVrY
ghJ+fZ9nGwWL4z5agV8r1oQs4WuGKJSpksbDdK2w9h0eDDehEeRdN909sw0W
W12je1fSMKwwMjWHCtNZA0/2+dDIddQDqoKDNNO5NoIGN+vy0teJn5Fn0j2y
LpnGwCw9oWr0eXBYT57RSInVE6rGDS+HCnsFjXWDrlu2nW0HO8UmVjpEoy34
vO8CCw2SukNnBM7TIqaheP8vmQZVAVHe1tCC40kdfn+wAxOezicmwrTo2jdX
qmB0wlw6VWks0OIfEj+e6Q==
"]]}}}, {}}, {
DisplayFunction -> Identity, PlotRangePadding -> {{0, 0}, {0, 0}},
AxesOrigin -> {0, 0}, PlotRange -> {{0, 0.5001}, {0, 1.8}},
DisplayFunction -> Identity, AspectRatio -> 0.65, Axes -> {True, True},
AxesLabel -> {None, None}, AxesOrigin -> {0, 0}, AxesStyle -> Directive[
GrayLevel[0]], DisplayFunction :> Identity,
Frame -> {{True, True}, {True, True}}, FrameLabel -> {{
Style[
"\!\(\*SubscriptBox[\(I\), \(n\)]\)/\!\(\*SubscriptBox[\(I\), \(n\)]\
\)(G=0)", FontTracking -> "Narrow", FontFamily -> "Times", FontSlant ->
Plain], None}, {
Style[
"G\!\(\*SqrtBox[\(N\)]\)/\!\(\*SubscriptBox[\(\[Omega]\), \(v\)]\)",
FontTracking -> "Narrow", FontFamily -> "Times", FontSlant ->
Plain], None}}, FrameTicks -> {{All, Automatic}, {All, Automatic}},
FrameTicksStyle -> Directive[
GrayLevel[0], 17], GridLines -> {None, None}, GridLinesStyle ->
Directive[
GrayLevel[0.5, 0.4]], ImageSize -> 500, LabelStyle -> {
GrayLevel[0], 20, FontFamily -> "Times"}, Method -> {},
PlotRange -> {{0, 0.5001}, {0, 1.8}}, PlotRangeClipping -> True,
PlotRangePadding -> {{0, 0}, {0, 0}}, Ticks -> {Automatic, Automatic}}],
Placed[
Unevaluated[
LineLegend[{
Directive[
PointSize[0.01388888888888889],
AbsoluteThickness[1.6],
RGBColor[1, 0, 0],
Thickness[0.01]],
Directive[
PointSize[0.01388888888888889],
AbsoluteThickness[1.6],
RGBColor[0, 0, 1],
Thickness[0.01]],
Directive[
PointSize[0.01388888888888889],
AbsoluteThickness[1.6],
RGBColor[0.7, 0.4, 0.7],
Thickness[0.01],
Dashing[0.03]]}, {"UP", "LP", "Mean"},
LegendMarkers -> {{False, Automatic}, {False, Automatic}, {
False, Automatic}}, Joined -> {True, True, True}, LabelStyle -> {
GrayLevel[0], 20, FontFamily -> "Times"}, LegendLayout ->
"Column"]], {0.15, 0.8}, Identity]]& ],
AutoDelete->True,
Editable->True,
SelectWithContents->False,
Selectable->True]], "Output",
CellChangeTimes->{
3.6672869175510936`*^9, 3.6672870289480314`*^9, 3.667585979977315*^9,
3.667586023048956*^9, 3.66758607103069*^9, {3.667586101108591*^9,
3.667586124976245*^9}, 3.667587161465722*^9, 3.66789938487879*^9,
3.668147153149241*^9, {3.668147214777837*^9, 3.6681472300436544`*^9},
3.6681530371570644`*^9, {3.668159860092676*^9, 3.6681598692481437`*^9},
3.6681603172530155`*^9, 3.6681646694959946`*^9, 3.6681688400753284`*^9,
3.6681688731897917`*^9, 3.6683281587023087`*^9, 3.6683325201440268`*^9,
3.6683386689838796`*^9, 3.668355746336257*^9, 3.668357641138403*^9, {
3.6683579062917705`*^9, 3.668357918556553*^9}, 3.668357974726358*^9}]
}, Open ]]
}, Closed]],
Cell[CellGroupData[{
Cell["\<\
RWA, vibron - photon detuning (for two values of Rabi splitting)\
\>", "Subchapter",
CellChangeTimes->{{3.666811462601018*^9, 3.6668114687149544`*^9}, {
3.6672848888858967`*^9, 3.66728489825354*^9}, {3.667286488117259*^9,
3.66728649314985*^9}, {3.667585789923072*^9, 3.6675857905036993`*^9}, {
3.66758615714375*^9, 3.667586157265946*^9}}],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{
RowBox[{"\[CapitalOmega]", "=", "100."}], ";"}], " ",
RowBox[{"(*", " ",
RowBox[{"vibr", " ", "energy", " ", "in", " ", "meV"}], " ",
"*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"NN", "=", "1000000."}], ";"}], " ",
RowBox[{"(*",
RowBox[{"total", " ", "number", " ", "of", " ", "molecules"}], " ",
"*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"S", "=", "0.3"}], ";"}], " ",
RowBox[{"(*",
RowBox[{
RowBox[{"electron", " ", "transition"}], " ", "-", " ",
RowBox[{"vibration", " ", "coupling"}]}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[CapitalDelta]", " ", "=", " ", "100."}], ";",
RowBox[{"(*",
RowBox[{
RowBox[{"electronic", " ", "transition"}], " ", "-", " ",
RowBox[{"laser", " ", "frequency", " ", "detuning"}]}], "*)"}],
"\[IndentingNewLine]",
RowBox[{"Pr1", " ", "=", " ",
RowBox[{"{", "}"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Pr2", " ", "=", " ",
RowBox[{"{", "}"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Pr3", " ", "=", " ",
RowBox[{"{", "}"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"Pr4", " ", "=", " ",
RowBox[{"{", "}"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{"(*", " ",
RowBox[{"coupl", " ", "=", " ",
RowBox[{"G",
RowBox[{
SqrtBox["N"], "/",
SubscriptBox["\[Omega]", "v"]}]}]}], " ",
"*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"coupl", " ", "=", " ",
RowBox[{"10", "^",
RowBox[{"(",
RowBox[{"-", "6"}], ")"}]}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"delt", " ", "=", " ", "0"}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"w", " ", "=", " ",
RowBox[{"\[CapitalOmega]",
RowBox[{"{",
RowBox[{
RowBox[{"1", " ", "+", " ",
FractionBox["delt",
RowBox[{"2", " ", "\[CapitalOmega]"}]], " ", "+", " ",
RowBox[{"Sqrt", "[",
RowBox[{
FractionBox[
RowBox[{"delt", "^", "2"}],
RowBox[{"4", " ",
RowBox[{"\[CapitalOmega]", "^", "2"}]}]], "+", " ",
RowBox[{"coupl", "^", "2"}]}], "]"}]}], ",", " ",
RowBox[{"1", " ", "+", " ",
FractionBox["delt",
RowBox[{"2", " ", "\[CapitalOmega]"}]], " ", "-", " ",
RowBox[{"Sqrt", "[",
RowBox[{
FractionBox[
RowBox[{"delt", "^", "2"}],
RowBox[{"4", " ",
RowBox[{"\[CapitalOmega]", "^", "2"}]}]], "+", " ",