-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNSx.nb
2380 lines (2348 loc) · 99.6 KB
/
NSx.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 12.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 99403, 2372]
NotebookOptionsPosition[ 96836, 2329]
NotebookOutlinePosition[ 97177, 2344]
CellTagsIndexPosition[ 97134, 2341]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell[BoxData[{"ClearAll", "\[IndentingNewLine]",
RowBox[{
RowBox[{"B1", "=",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"Cos", "[", "\[Theta]1", "]"}], ",",
RowBox[{
RowBox[{"-",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}]]}],
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}]}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]1"}]],
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}], ",",
RowBox[{"Cos", "[", "\[Theta]1", "]"}]}], "}"}]}], "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"B2", "=",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"Cos", "[", "\[Theta]2", "]"}], ",",
RowBox[{
RowBox[{"-",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}]]}],
RowBox[{"Sin", "[", "\[Theta]2", "]"}]}]}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]2"}]],
RowBox[{"Sin", "[", "\[Theta]2", "]"}]}], ",",
RowBox[{"Cos", "[", "\[Theta]2", "]"}]}], "}"}]}], "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"B3", "=",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"Cos", "[", "\[Theta]3", "]"}], ",",
RowBox[{
RowBox[{"-",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}]]}],
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}]}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]3"}]],
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}], ",",
RowBox[{"Cos", "[", "\[Theta]3", "]"}]}], "}"}]}], "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{"t", "=",
RowBox[{"B1", ".",
RowBox[{"{",
RowBox[{"a2", ",", "a3"}], "}"}]}]}], "\n",
RowBox[{"a1p2", "=", "a1"}], "\[IndentingNewLine]",
RowBox[{"a2p2", "=",
RowBox[{"t", "[",
RowBox[{"[", "1", "]"}], "]"}]}], "\n",
RowBox[{"a3p2", "=",
RowBox[{"t", "[",
RowBox[{"[", "2", "]"}], "]"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"t", "=",
RowBox[{"B2", ".",
RowBox[{"{",
RowBox[{"a1p2", ",", "a2p2"}], "}"}]}]}], ";"}], "\[IndentingNewLine]",
RowBox[{"a1p3", "=",
RowBox[{"t", "[",
RowBox[{"[", "1", "]"}], "]"}]}], "\[IndentingNewLine]",
RowBox[{"a2p3", "=",
RowBox[{"t", "[",
RowBox[{"[", "2", "]"}], "]"}]}], "\[IndentingNewLine]",
RowBox[{"a3p3", "=", "a3p2"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"t", "=",
RowBox[{"B3", ".",
RowBox[{"{",
RowBox[{"a2p3", ",", "a3p3"}], "}"}]}]}], ";"}], "\[IndentingNewLine]",
RowBox[{"a1p4", "=", "a1p3"}], "\[IndentingNewLine]",
RowBox[{"a2p4", "=",
RowBox[{"t", "[",
RowBox[{"[", "1", "]"}], "]"}]}], "\[IndentingNewLine]",
RowBox[{"a3p4", "=",
RowBox[{"t", "[",
RowBox[{"[", "2", "]"}], "]"}]}], "\[IndentingNewLine]",
RowBox[{"\[Psi]", "=",
RowBox[{
RowBox[{"(",
RowBox[{"\[Alpha]", "+",
RowBox[{"\[Beta]", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]4"}]], "a1p2"}], "+",
RowBox[{
FractionBox["\[Gamma]",
SqrtBox["2"]],
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "2", " ", "\[Phi]4"}]],
SuperscriptBox["a1p2", "2"]}]}], ")"}], "*", "a2p2"}]}]}], "Input",
CellChangeTimes->{{3.783334223588764*^9, 3.78333470012187*^9}, {
3.78333481207758*^9, 3.783334823806631*^9}, {3.783334854670766*^9,
3.7833348725223703`*^9}, {3.783334995389861*^9, 3.7833350157250347`*^9}, {
3.783335126305456*^9, 3.783335128007498*^9}, {3.7833352125733085`*^9,
3.783335227222227*^9}, {3.783335345793552*^9, 3.7833353561961603`*^9}, {
3.7833353875817285`*^9, 3.7833353883567505`*^9}, {3.7833354831778*^9,
3.783335488149089*^9}, {3.7833355216103935`*^9, 3.7833356018501835`*^9}, {
3.783335632972601*^9, 3.7833356489657664`*^9}, {3.783335689636527*^9,
3.7833356991563053`*^9}, {3.7833357729701157`*^9,
3.7833358536985035`*^9}, {3.7833359283276787`*^9,
3.7833360322956386`*^9}, {3.783336070467886*^9, 3.783336083115884*^9}, {
3.7833361261252174`*^9, 3.7833361826792045`*^9}, {3.7833362220149117`*^9,
3.7833362235835733`*^9}, {3.783336310251992*^9, 3.783336448766717*^9}, {
3.7833364793337374`*^9, 3.7833365008172045`*^9}, {3.783336537900011*^9,
3.783336618656063*^9}, 3.78333666566202*^9, {3.7833366974604554`*^9,
3.7833367057660027`*^9}, {3.783348673796358*^9, 3.783348722185847*^9}, {
3.783348875833346*^9, 3.7833489341440864`*^9}, {3.783348971648582*^9,
3.783348974272189*^9}, {3.783349145876757*^9, 3.7833491486749334`*^9}, {
3.783349383238702*^9, 3.7833494006310863`*^9}},
CellLabel->
"In[220]:=",ExpressionUUID->"bb111202-5ed8-4df3-ba8d-21626f1a82be"],
Cell[BoxData["ClearAll"], "Output",
CellChangeTimes->{{3.7833358356091413`*^9, 3.783335856583186*^9},
3.7833362002053523`*^9, {3.783336427303582*^9, 3.783336449582082*^9},
3.783336503153507*^9, 3.7833365481022677`*^9, {3.7833365984103985`*^9,
3.783336619121069*^9}, {3.783336668039177*^9, 3.7833366723471756`*^9},
3.7833367229676876`*^9, {3.783348684474228*^9, 3.7833487227014685`*^9},
3.7833488786977406`*^9, {3.78334891544407*^9, 3.7833489347325497`*^9},
3.7833489754632487`*^9, 3.7833491493511252`*^9, 3.7833494016872635`*^9,
3.783349638801221*^9},
CellLabel->
"Out[220]=",ExpressionUUID->"fd380bd9-a112-4caa-8ec4-1518a2cf2923"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{
RowBox[{"a2", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}]}], "-",
RowBox[{"a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}]], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}]}], ",",
RowBox[{
RowBox[{"a3", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}]}], "+",
RowBox[{"a2", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]1"}]], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}]}]}], "}"}]], "Output",
CellChangeTimes->{{3.7833358356091413`*^9, 3.783335856583186*^9},
3.7833362002053523`*^9, {3.783336427303582*^9, 3.783336449582082*^9},
3.783336503153507*^9, 3.7833365481022677`*^9, {3.7833365984103985`*^9,
3.783336619121069*^9}, {3.783336668039177*^9, 3.7833366723471756`*^9},
3.7833367229676876`*^9, {3.783348684474228*^9, 3.7833487227014685`*^9},
3.7833488786977406`*^9, {3.78334891544407*^9, 3.7833489347325497`*^9},
3.7833489754632487`*^9, 3.7833491493511252`*^9, 3.7833494016872635`*^9,
3.783349638812193*^9},
CellLabel->
"Out[224]=",ExpressionUUID->"2066a982-48ad-476a-a6d2-52a242d3a503"],
Cell[BoxData["a1"], "Output",
CellChangeTimes->{{3.7833358356091413`*^9, 3.783335856583186*^9},
3.7833362002053523`*^9, {3.783336427303582*^9, 3.783336449582082*^9},
3.783336503153507*^9, 3.7833365481022677`*^9, {3.7833365984103985`*^9,
3.783336619121069*^9}, {3.783336668039177*^9, 3.7833366723471756`*^9},
3.7833367229676876`*^9, {3.783348684474228*^9, 3.7833487227014685`*^9},
3.7833488786977406`*^9, {3.78334891544407*^9, 3.7833489347325497`*^9},
3.7833489754632487`*^9, 3.7833491493511252`*^9, 3.7833494016872635`*^9,
3.7833496388201694`*^9},
CellLabel->
"Out[225]=",ExpressionUUID->"4fd02398-8280-4840-98eb-9195d7192231"],
Cell[BoxData[
RowBox[{
RowBox[{"a2", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}]}], "-",
RowBox[{"a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}]], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}]}]], "Output",
CellChangeTimes->{{3.7833358356091413`*^9, 3.783335856583186*^9},
3.7833362002053523`*^9, {3.783336427303582*^9, 3.783336449582082*^9},
3.783336503153507*^9, 3.7833365481022677`*^9, {3.7833365984103985`*^9,
3.783336619121069*^9}, {3.783336668039177*^9, 3.7833366723471756`*^9},
3.7833367229676876`*^9, {3.783348684474228*^9, 3.7833487227014685`*^9},
3.7833488786977406`*^9, {3.78334891544407*^9, 3.7833489347325497`*^9},
3.7833489754632487`*^9, 3.7833491493511252`*^9, 3.7833494016872635`*^9,
3.7833496388261538`*^9},
CellLabel->
"Out[226]=",ExpressionUUID->"57ec3db5-680d-42bd-972b-ff330a5682c6"],
Cell[BoxData[
RowBox[{
RowBox[{"a3", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}]}], "+",
RowBox[{"a2", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]1"}]], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}]}]], "Output",
CellChangeTimes->{{3.7833358356091413`*^9, 3.783335856583186*^9},
3.7833362002053523`*^9, {3.783336427303582*^9, 3.783336449582082*^9},
3.783336503153507*^9, 3.7833365481022677`*^9, {3.7833365984103985`*^9,
3.783336619121069*^9}, {3.783336668039177*^9, 3.7833366723471756`*^9},
3.7833367229676876`*^9, {3.783348684474228*^9, 3.7833487227014685`*^9},
3.7833488786977406`*^9, {3.78334891544407*^9, 3.7833489347325497`*^9},
3.7833489754632487`*^9, 3.7833491493511252`*^9, 3.7833494016872635`*^9,
3.7833496388331347`*^9},
CellLabel->
"Out[227]=",ExpressionUUID->"162758e1-0182-4f5a-b949-35023b0921b4"],
Cell[BoxData[
RowBox[{
RowBox[{"a1", " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}]}], "-",
RowBox[{
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}]], " ",
RowBox[{"(",
RowBox[{
RowBox[{"a2", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}]}], "-",
RowBox[{"a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}]], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}]}], ")"}], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}]}]}]], "Output",
CellChangeTimes->{{3.7833358356091413`*^9, 3.783335856583186*^9},
3.7833362002053523`*^9, {3.783336427303582*^9, 3.783336449582082*^9},
3.783336503153507*^9, 3.7833365481022677`*^9, {3.7833365984103985`*^9,
3.783336619121069*^9}, {3.783336668039177*^9, 3.7833366723471756`*^9},
3.7833367229676876`*^9, {3.783348684474228*^9, 3.7833487227014685`*^9},
3.7833488786977406`*^9, {3.78334891544407*^9, 3.7833489347325497`*^9},
3.7833489754632487`*^9, 3.7833491493511252`*^9, 3.7833494016872635`*^9,
3.7833496388411493`*^9},
CellLabel->
"Out[229]=",ExpressionUUID->"34d9c66a-da59-48d7-8629-e6bf4682b320"],
Cell[BoxData[
RowBox[{
RowBox[{
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"(",
RowBox[{
RowBox[{"a2", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}]}], "-",
RowBox[{"a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}]], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}]}], ")"}]}], "+",
RowBox[{"a1", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]2"}]], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}]}]}]], "Output",
CellChangeTimes->{{3.7833358356091413`*^9, 3.783335856583186*^9},
3.7833362002053523`*^9, {3.783336427303582*^9, 3.783336449582082*^9},
3.783336503153507*^9, 3.7833365481022677`*^9, {3.7833365984103985`*^9,
3.783336619121069*^9}, {3.783336668039177*^9, 3.7833366723471756`*^9},
3.7833367229676876`*^9, {3.783348684474228*^9, 3.7833487227014685`*^9},
3.7833488786977406`*^9, {3.78334891544407*^9, 3.7833489347325497`*^9},
3.7833489754632487`*^9, 3.7833491493511252`*^9, 3.7833494016872635`*^9,
3.7833496388490925`*^9},
CellLabel->
"Out[230]=",ExpressionUUID->"daff50b9-ed17-4413-a5ac-5c4658261cc4"],
Cell[BoxData[
RowBox[{
RowBox[{"a3", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}]}], "+",
RowBox[{"a2", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]1"}]], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}]}]], "Output",
CellChangeTimes->{{3.7833358356091413`*^9, 3.783335856583186*^9},
3.7833362002053523`*^9, {3.783336427303582*^9, 3.783336449582082*^9},
3.783336503153507*^9, 3.7833365481022677`*^9, {3.7833365984103985`*^9,
3.783336619121069*^9}, {3.783336668039177*^9, 3.7833366723471756`*^9},
3.7833367229676876`*^9, {3.783348684474228*^9, 3.7833487227014685`*^9},
3.7833488786977406`*^9, {3.78334891544407*^9, 3.7833489347325497`*^9},
3.7833489754632487`*^9, 3.7833491493511252`*^9, 3.7833494016872635`*^9,
3.7833496388580704`*^9},
CellLabel->
"Out[231]=",ExpressionUUID->"2f7b36bc-94ff-4bda-93d2-be0372759346"],
Cell[BoxData[
RowBox[{
RowBox[{"a1", " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}]}], "-",
RowBox[{
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}]], " ",
RowBox[{"(",
RowBox[{
RowBox[{"a2", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}]}], "-",
RowBox[{"a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}]], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}]}], ")"}], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}]}]}]], "Output",
CellChangeTimes->{{3.7833358356091413`*^9, 3.783335856583186*^9},
3.7833362002053523`*^9, {3.783336427303582*^9, 3.783336449582082*^9},
3.783336503153507*^9, 3.7833365481022677`*^9, {3.7833365984103985`*^9,
3.783336619121069*^9}, {3.783336668039177*^9, 3.7833366723471756`*^9},
3.7833367229676876`*^9, {3.783348684474228*^9, 3.7833487227014685`*^9},
3.7833488786977406`*^9, {3.78334891544407*^9, 3.7833489347325497`*^9},
3.7833489754632487`*^9, 3.7833491493511252`*^9, 3.7833494016872635`*^9,
3.783349638866084*^9},
CellLabel->
"Out[233]=",ExpressionUUID->"d0cb7f7f-1675-4f85-9937-294f43b7ed50"],
Cell[BoxData[
RowBox[{
RowBox[{
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"(",
RowBox[{
RowBox[{"a2", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}]}], "-",
RowBox[{"a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}]], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}]}], ")"}]}], "+",
RowBox[{"a1", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]2"}]], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}]}]}], ")"}]}], "-",
RowBox[{
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}]], " ",
RowBox[{"(",
RowBox[{
RowBox[{"a3", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}]}], "+",
RowBox[{"a2", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]1"}]], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}]}], ")"}], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}]}]], "Output",
CellChangeTimes->{{3.7833358356091413`*^9, 3.783335856583186*^9},
3.7833362002053523`*^9, {3.783336427303582*^9, 3.783336449582082*^9},
3.783336503153507*^9, 3.7833365481022677`*^9, {3.7833365984103985`*^9,
3.783336619121069*^9}, {3.783336668039177*^9, 3.7833366723471756`*^9},
3.7833367229676876`*^9, {3.783348684474228*^9, 3.7833487227014685`*^9},
3.7833488786977406`*^9, {3.78334891544407*^9, 3.7833489347325497`*^9},
3.7833489754632487`*^9, 3.7833491493511252`*^9, 3.7833494016872635`*^9,
3.783349638877018*^9},
CellLabel->
"Out[234]=",ExpressionUUID->"aac2c584-f56d-4f80-a72d-59daf301e91a"],
Cell[BoxData[
RowBox[{
RowBox[{
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
RowBox[{"(",
RowBox[{
RowBox[{"a3", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}]}], "+",
RowBox[{"a2", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]1"}]], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}]}], ")"}]}], "+",
RowBox[{
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]3"}]], " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"(",
RowBox[{
RowBox[{"a2", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}]}], "-",
RowBox[{"a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}]], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}]}], ")"}]}], "+",
RowBox[{"a1", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]2"}]], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}]}]}], ")"}], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}]}]], "Output",
CellChangeTimes->{{3.7833358356091413`*^9, 3.783335856583186*^9},
3.7833362002053523`*^9, {3.783336427303582*^9, 3.783336449582082*^9},
3.783336503153507*^9, 3.7833365481022677`*^9, {3.7833365984103985`*^9,
3.783336619121069*^9}, {3.783336668039177*^9, 3.7833366723471756`*^9},
3.7833367229676876`*^9, {3.783348684474228*^9, 3.7833487227014685`*^9},
3.7833488786977406`*^9, {3.78334891544407*^9, 3.7833489347325497`*^9},
3.7833489754632487`*^9, 3.7833491493511252`*^9, 3.7833494016872635`*^9,
3.783349638886991*^9},
CellLabel->
"Out[235]=",ExpressionUUID->"9b8e478c-6a79-4bd6-a555-197fd05d1e03"],
Cell[BoxData[
RowBox[{
RowBox[{"(",
RowBox[{"\[Alpha]", "+",
RowBox[{"a1", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]4"}]], " ", "\[Beta]"}], "+",
FractionBox[
RowBox[{
SuperscriptBox["a1", "2"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]], " ",
"\[Gamma]"}],
SqrtBox["2"]]}], ")"}], " ",
RowBox[{"(",
RowBox[{
RowBox[{"a2", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}]}], "-",
RowBox[{"a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}]], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}]}], ")"}]}]], "Output",
CellChangeTimes->{{3.7833358356091413`*^9, 3.783335856583186*^9},
3.7833362002053523`*^9, {3.783336427303582*^9, 3.783336449582082*^9},
3.783336503153507*^9, 3.7833365481022677`*^9, {3.7833365984103985`*^9,
3.783336619121069*^9}, {3.783336668039177*^9, 3.7833366723471756`*^9},
3.7833367229676876`*^9, {3.783348684474228*^9, 3.7833487227014685`*^9},
3.7833488786977406`*^9, {3.78334891544407*^9, 3.7833489347325497`*^9},
3.7833489754632487`*^9, 3.7833491493511252`*^9, 3.7833494016872635`*^9,
3.783349638896965*^9},
CellLabel->
"Out[236]=",ExpressionUUID->"8298717a-23cb-416f-843f-f2b251d9d9b4"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Collect", "[",
RowBox[{
RowBox[{
RowBox[{"a2", " ", "\[Alpha]", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}]}], "+",
RowBox[{"a1", " ", "a2", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]4"}]], " ", "\[Beta]", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}], " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]2", "]"}], "2"], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}]}], "+",
FractionBox[
RowBox[{
SuperscriptBox["a1", "2"], " ", "a2", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]], " ", "\[Gamma]",
" ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}], " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]2", "]"}], "3"], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}]}],
SqrtBox["2"]], "-",
RowBox[{"a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}]], " ", "\[Alpha]", " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}], "-",
RowBox[{"a1", " ", "a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ", "\[Beta]", " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]2", "]"}], "2"], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}], "-",
FractionBox[
RowBox[{
SuperscriptBox["a1", "2"], " ", "a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]2", "]"}], "3"], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}]}],
SqrtBox["2"]], "+",
RowBox[{"a1", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]2"}]], " ", "\[Alpha]",
" ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}]}], "+",
RowBox[{
SuperscriptBox["a1", "2"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]2"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ", "\[Beta]", " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}]}], "-",
RowBox[{
SuperscriptBox["a2", "2"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ", "\[Beta]", " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]1", "]"}], "2"], " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}]}], "+",
FractionBox[
RowBox[{
SuperscriptBox["a1", "3"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]2"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]2", "]"}], "2"], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}]}],
SqrtBox["2"]], "-",
RowBox[{
SqrtBox["2"], " ", "a1", " ",
SuperscriptBox["a2", "2"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]1", "]"}], "2"], " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]2", "]"}], "2"], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}]}], "+",
RowBox[{"2", " ", "a2", " ", "a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ", "\[Beta]", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}]}], "+",
RowBox[{"2", " ",
SqrtBox["2"], " ", "a1", " ", "a2", " ", "a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}], " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]2", "]"}], "2"], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}]}], "-",
RowBox[{
SuperscriptBox["a3", "2"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]1"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ", "\[Beta]", " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]1", "]"}], "2"], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}]}], "-",
RowBox[{
SqrtBox["2"], " ", "a1", " ",
SuperscriptBox["a3", "2"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]1"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]2", "]"}], "2"], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]1", "]"}], "2"], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}]}], "-",
RowBox[{"a1", " ", "a2", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]4"}]], " ", "\[Beta]", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]2", "]"}], "2"]}], "-",
RowBox[{
SqrtBox["2"], " ",
SuperscriptBox["a1", "2"], " ", "a2", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]], " ", "\[Gamma]",
" ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]2", "]"}], "2"]}], "+",
FractionBox[
RowBox[{
SuperscriptBox["a2", "3"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]1", "]"}], "3"], " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]2", "]"}], "2"]}],
SqrtBox["2"]], "+",
RowBox[{"a1", " ", "a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ", "\[Beta]", " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]2", "]"}], "2"]}], "+",
RowBox[{
SqrtBox["2"], " ",
SuperscriptBox["a1", "2"], " ", "a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]2", "]"}], "2"]}], "-",
FractionBox[
RowBox[{"3", " ",
SuperscriptBox["a2", "2"], " ", "a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]1", "]"}], "2"], " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]2", "]"}], "2"]}],
SqrtBox["2"]], "+",
FractionBox[
RowBox[{"3", " ", "a2", " ",
SuperscriptBox["a3", "2"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]1"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]1", "]"}], "2"], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]2", "]"}], "2"]}],
SqrtBox["2"]], "-",
FractionBox[
RowBox[{
SuperscriptBox["a3", "3"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"3", " ", "\[ImaginaryI]", " ", "\[Phi]1"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]1", "]"}], "3"], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]2", "]"}], "2"]}],
SqrtBox["2"]], "+",
FractionBox[
RowBox[{"a1", " ",
SuperscriptBox["a2", "2"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]1", "]"}], "2"], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]2", "]"}], "3"]}],
SqrtBox["2"]], "-",
RowBox[{
SqrtBox["2"], " ", "a1", " ", "a2", " ", "a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]2", "]"}], "3"]}], "+",
FractionBox[
RowBox[{"a1", " ",
SuperscriptBox["a3", "2"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]1"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
RowBox[{"Cos", "[", "\[Theta]3", "]"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]1", "]"}], "2"], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]2", "]"}], "3"]}],
SqrtBox["2"]], "-",
RowBox[{"a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}]], " ", "\[Alpha]", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}], "-",
RowBox[{"a1", " ", "a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ", "\[Beta]", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}], "-",
FractionBox[
RowBox[{
SuperscriptBox["a1", "2"], " ", "a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}], " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]2", "]"}], "2"], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}],
SqrtBox["2"]], "-",
RowBox[{"a2", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]1"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}]}]], " ", "\[Alpha]", " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}], "-",
RowBox[{"a1", " ", "a2", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]1"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ", "\[Beta]", " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}], "-",
FractionBox[
RowBox[{
SuperscriptBox["a1", "2"], " ", "a2", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]1"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]2", "]"}], "2"], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}],
SqrtBox["2"]], "+",
RowBox[{"a2", " ", "a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ", "\[Beta]", " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]1", "]"}], "2"], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}], "+",
RowBox[{
SqrtBox["2"], " ", "a1", " ", "a2", " ", "a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]1", "]"}], "2"], " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}], "+",
RowBox[{
SuperscriptBox["a2", "2"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]1"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ", "\[Beta]", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}], "-",
RowBox[{
SuperscriptBox["a3", "2"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ", "\[Beta]", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}], "+",
RowBox[{
SqrtBox["2"], " ", "a1", " ",
SuperscriptBox["a2", "2"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]1"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}], "-",
RowBox[{
SqrtBox["2"], " ", "a1", " ",
SuperscriptBox["a3", "2"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
RowBox[{"Cos", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}], "-",
RowBox[{"a2", " ", "a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ", "\[Beta]", " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]1", "]"}], "2"], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}], "-",
RowBox[{
SqrtBox["2"], " ", "a1", " ", "a2", " ", "a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
RowBox[{"Cos", "[", "\[Theta]2", "]"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]1", "]"}], "2"], " ",
RowBox[{"Sin", "[", "\[Theta]2", "]"}], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}], "-",
FractionBox[
RowBox[{
SuperscriptBox["a2", "2"], " ", "a3", " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]1", "]"}], "3"], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]2", "]"}], "2"], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}],
SqrtBox["2"]], "-",
FractionBox[
RowBox[{
SuperscriptBox["a2", "3"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "\[Phi]1"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]1", "]"}], "2"], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]2", "]"}], "2"], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}],
SqrtBox["2"]], "+",
RowBox[{
SqrtBox["2"], " ", "a2", " ",
SuperscriptBox["a3", "2"], " ",
SuperscriptBox["\[ExponentialE]",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "\[Phi]1"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]2"}], "+",
RowBox[{"\[ImaginaryI]", " ", "\[Phi]3"}], "+",
RowBox[{"2", " ", "\[ImaginaryI]", " ", "\[Phi]4"}]}]], " ",
"\[Gamma]", " ",
SuperscriptBox[
RowBox[{"Cos", "[", "\[Theta]1", "]"}], "2"], " ",
RowBox[{"Sin", "[", "\[Theta]1", "]"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "\[Theta]2", "]"}], "2"], " ",
RowBox[{"Sin", "[", "\[Theta]3", "]"}]}], "+",
RowBox[{
SqrtBox["2"], " ",
SuperscriptBox["a2", "2"], " ", "a3", " ",
SuperscriptBox["\[ExponentialE]",