-
Notifications
You must be signed in to change notification settings - Fork 7
/
angle_V2-details.dat
4005 lines (2904 loc) · 90.3 KB
/
angle_V2-details.dat
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
Total Frames found : 99
Frame : 0
=========================
Coordinates of Given Atoms
Atom1 Posions : 29.790000915527344 33.25 38.380001068115234
Atom2 Posions : 30.669998168945313 32.59000015258789 38.86000061035156
Atom3 Posions : 31.14000129699707 32.83000183105469 39.9900016784668
Splitting Coordinates :
a(x) : 29.790000915527344
a(y) :33.25
a(z) : 38.380001068115234
b(x) : 30.669998168945313
b(y) :32.59000015258789
b(z) : 38.86000061035156
c(x) : 31.14000129699707
c(y) :32.83000183105469
c(z) : 39.9900016784668
Setup Vectors :
ab(x) : 0.8799972534179688
ab(y) :-0.6599998474121094
ab(z) : 0.4799995422363281
bc(x) : 0.4700031280517578
bc(y) :0.24000167846679688
bc(z) : 1.1300010681152344
Dot product : 0.797600386038539
Mod ab : 1.2001643742230732
Mod bc : 1.247159236018756
COS_THETA : 0.8288320412310447
THETA (radians) : 0.5937793955496011
Frame : 0 Angle : 34.02105332682124
Frame : 1
=========================
Coordinates of Given Atoms
Atom1 Posions : 29.79977798461914 33.23897933959961 38.39091110229492
Atom2 Posions : 30.689823150634766 32.54901123046875 38.860862731933594
Atom3 Posions : 31.12985610961914 32.819000244140625 39.96084976196289
Splitting Coordinates :
a(x) : 29.79977798461914
a(y) :33.23897933959961
a(z) : 38.39091110229492
b(x) : 30.689823150634766
b(y) :32.54901123046875
b(z) : 38.860862731933594
c(x) : 31.12985610961914
c(y) :32.819000244140625
c(z) : 39.96084976196289
Setup Vectors :
ab(x) : 0.890045166015625
ab(y) :-0.6899681091308594
ab(z) : 0.4699516296386719
bc(x) : 0.440032958984375
bc(y) :0.269989013671875
bc(z) : 1.0999870300292969
Dot product : 0.7223060961259762
Mod ab : 1.2202831324596102
Mod bc : 1.2151109162248235
COS_THETA : 0.7192445744040967
THETA (radians) : 0.7680819442664155
Frame : 1 Angle : 44.007853726668124
Frame : 2
=========================
Coordinates of Given Atoms
Atom1 Posions : 31.395219802856445 32.7837028503418 39.29460144042969
Atom2 Posions : 31.6225643157959 32.35505294799805 38.1812858581543
Atom3 Posions : 32.30495834350586 32.99689865112305 37.405418395996094
Splitting Coordinates :
a(x) : 31.395219802856445
a(y) :32.7837028503418
a(z) : 39.29460144042969
b(x) : 31.6225643157959
b(y) :32.35505294799805
b(z) : 38.1812858581543
c(x) : 32.30495834350586
c(y) :32.99689865112305
c(z) : 37.405418395996094
Setup Vectors :
ab(x) : 0.22734451293945313
ab(y) :-0.42864990234375
ab(z) : -1.1133155822753906
bc(x) : 0.6823940277099609
bc(y) :0.641845703125
bc(z) : -0.7758674621582031
Dot product : 0.7437967752994155
Mod ab : 1.2144537257879262
Mod bc : 1.2163872058312926
COS_THETA : 0.7449809424610161
THETA (radians) : 0.730290054502486
Frame : 2 Angle : 41.842537943371305
Frame : 3
=========================
Coordinates of Given Atoms
Atom1 Posions : 30.632984161376953 34.684722900390625 39.16574478149414
Atom2 Posions : 30.727336883544922 34.63835525512695 37.95717239379883
Atom3 Posions : 30.826553344726563 35.720977783203125 37.40673065185547
Splitting Coordinates :
a(x) : 30.632984161376953
a(y) :34.684722900390625
a(z) : 39.16574478149414
b(x) : 30.727336883544922
b(y) :34.63835525512695
b(z) : 37.95717239379883
c(x) : 30.826553344726563
c(y) :35.720977783203125
c(z) : 37.40673065185547
Setup Vectors :
ab(x) : 0.09435272216796875
ab(y) :-0.046367645263671875
ab(z) : -1.2085723876953125
bc(x) : 0.09921646118164063
bc(y) :1.0826225280761719
bc(z) : -0.5504417419433594
Dot product : 0.6244113762077177
Mod ab : 1.2131362705843693
Mod bc : 1.2185653678572559
COS_THETA : 0.6272057779430608
THETA (radians) : 0.8928359293355432
Frame : 3 Angle : 51.155730548567234
Frame : 4
=========================
Coordinates of Given Atoms
Atom1 Posions : 30.031112670898438 34.3962287902832 39.056766510009766
Atom2 Posions : 30.361473083496094 34.434017181396484 37.892967224121094
Atom3 Posions : 30.70159149169922 35.47327423095703 37.35905838012695
Splitting Coordinates :
a(x) : 30.031112670898438
a(y) :34.3962287902832
a(z) : 39.056766510009766
b(x) : 30.361473083496094
b(y) :34.434017181396484
b(z) : 37.892967224121094
c(x) : 30.70159149169922
c(y) :35.47327423095703
c(z) : 37.35905838012695
Setup Vectors :
ab(x) : 0.33036041259765625
ab(y) :0.03778839111328125
ab(z) : -1.1637992858886719
bc(x) : 0.340118408203125
bc(y) :1.0392570495605469
bc(z) : -0.5339088439941406
Dot product : 0.7729962408920983
Mod ab : 1.2103696718563328
Mod bc : 1.216878958793799
COS_THETA : 0.7771533628446273
THETA (radians) : 0.680666647270979
Frame : 4 Angle : 38.999326143946995
Frame : 5
=========================
Coordinates of Given Atoms
Atom1 Posions : 30.98843765258789 33.44572448730469 39.23387145996094
Atom2 Posions : 31.270112991333008 33.94927215576172 38.166351318359375
Atom3 Posions : 31.135086059570313 35.14624786376953 38.00532150268555
Splitting Coordinates :
a(x) : 30.98843765258789
a(y) :33.44572448730469
a(z) : 39.23387145996094
b(x) : 31.270112991333008
b(y) :33.94927215576172
b(z) : 38.166351318359375
c(x) : 31.135086059570313
c(y) :35.14624786376953
c(z) : 38.00532150268555
Setup Vectors :
ab(x) : 0.2816753387451172
ab(y) :0.5035476684570313
ab(z) : -1.0675201416015625
bc(x) : -0.1350269317626953
bc(y) :1.1969757080078125
bc(z) : -0.16102981567382813
Dot product : 0.7366031418532657
Mod ab : 1.2134663174520786
Mod bc : 1.215283390571104
COS_THETA : 0.7377061487923141
THETA (radians) : 0.7411299900522972
Frame : 5 Angle : 42.46362050056931
Frame : 6
=========================
Coordinates of Given Atoms
Atom1 Posions : 30.42559051513672 34.50856018066406 38.5674934387207
Atom2 Posions : 30.802640914916992 34.333892822265625 37.425025939941406
Atom3 Posions : 31.307254791259766 35.24248123168945 36.799861907958984
Splitting Coordinates :
a(x) : 30.42559051513672
a(y) :34.50856018066406
a(z) : 38.5674934387207
b(x) : 30.802640914916992
b(y) :34.333892822265625
b(z) : 37.425025939941406
c(x) : 31.307254791259766
c(y) :35.24248123168945
c(z) : 36.799861907958984
Setup Vectors :
ab(x) : 0.37705039978027344
ab(y) :-0.1746673583984375
ab(z) : -1.1424674987792969
bc(x) : 0.5046138763427734
bc(y) :0.9085884094238281
bc(z) : -0.6251640319824219
Dot product : 0.745793714409956
Mod ab : 1.215692261977255
Mod bc : 1.2128471168376995
COS_THETA : 0.7440482962412055
THETA (radians) : 0.7316870556656596
Frame : 6 Angle : 41.92258021399603
Frame : 7
=========================
Coordinates of Given Atoms
Atom1 Posions : 30.691875457763672 34.561988830566406 38.72163009643555
Atom2 Posions : 31.11172103881836 34.181480407714844 37.64931869506836
Atom3 Posions : 31.703615188598633 34.918365478515625 36.88947296142578
Splitting Coordinates :
a(x) : 30.691875457763672
a(y) :34.561988830566406
a(z) : 38.72163009643555
b(x) : 31.11172103881836
b(y) :34.181480407714844
b(z) : 37.64931869506836
c(x) : 31.703615188598633
c(y) :34.918365478515625
c(z) : 36.88947296142578
Setup Vectors :
ab(x) : 0.4198455810546875
ab(y) :-0.3805084228515625
ab(z) : -1.0723114013671875
bc(x) : 0.5918941497802734
bc(y) :0.7368850708007813
bc(z) : -0.7598457336425781
Dot product : 0.7829044105892535
Mod ab : 1.212810254447988
Mod bc : 1.2127257855954134
COS_THETA : 0.7828498834800083
THETA (radians) : 0.6715633604447045
Frame : 7 Angle : 38.47774622910442
Frame : 8
=========================
Coordinates of Given Atoms
Atom1 Posions : 30.1529598236084 34.03193283081055 39.17939376831055
Atom2 Posions : 30.219066619873047 34.16502380371094 37.979469299316406
Atom3 Posions : 30.488712310791016 35.24041748046875 37.482059478759766
Splitting Coordinates :
a(x) : 30.1529598236084
a(y) :34.03193283081055
a(z) : 39.17939376831055
b(x) : 30.219066619873047
b(y) :34.16502380371094
b(z) : 37.979469299316406
c(x) : 30.488712310791016
c(y) :35.24041748046875
c(z) : 37.482059478759766
Setup Vectors :
ab(x) : 0.06610679626464844
ab(y) :0.13309097290039063
ab(z) : -1.1999244689941406
bc(x) : 0.26964569091796875
bc(y) :1.0753936767578125
bc(z) : -0.4974098205566406
Dot product : 0.7578048182476778
Mod ab : 1.2090914137776425
Mod bc : 1.215153030785631
COS_THETA : 0.761603970671293
THETA (radians) : 0.7050116985229906
Frame : 8 Angle : 40.39419483271694
Frame : 9
=========================
Coordinates of Given Atoms
Atom1 Posions : 29.641481399536133 31.247068405151367 40.96485137939453
Atom2 Posions : 30.30998992919922 31.76873779296875 40.092002868652344
Atom3 Posions : 30.66367530822754 32.90681457519531 40.30411148071289
Splitting Coordinates :
a(x) : 29.641481399536133
a(y) :31.247068405151367
a(z) : 40.96485137939453
b(x) : 30.30998992919922
b(y) :31.76873779296875
b(z) : 40.092002868652344
c(x) : 30.66367530822754
c(y) :32.90681457519531
c(z) : 40.30411148071289
Setup Vectors :
ab(x) : 0.6685085296630859
ab(y) :0.5216693878173828
ab(z) : -0.8728485107421875
bc(x) : 0.3536853790283203
bc(y) :1.1380767822265625
bc(z) : 0.21210861206054688
Dot product : 0.6450028248182207
Mod ab : 1.216925275899436
Mod bc : 1.21049666372602
COS_THETA : 0.6415954890568285
THETA (radians) : 0.8742198148556766
Frame : 9 Angle : 50.08910575793849
Frame : 10
=========================
Coordinates of Given Atoms
Atom1 Posions : 30.725343704223633 31.422971725463867 40.512454986572266
Atom2 Posions : 30.64816665649414 32.197757720947266 39.58173370361328
Atom3 Posions : 30.806045532226563 33.38860321044922 39.724063873291016
Splitting Coordinates :
a(x) : 30.725343704223633
a(y) :31.422971725463867
a(z) : 40.512454986572266
b(x) : 30.64816665649414
b(y) :32.197757720947266
b(z) : 39.58173370361328
c(x) : 30.806045532226563
c(y) :33.38860321044922
c(z) : 39.724063873291016
Setup Vectors :
ab(x) : -0.07717704772949219
ab(y) :0.7747859954833984
ab(z) : -0.9307212829589844
bc(x) : 0.15787887573242188
bc(y) :1.1908454895019531
bc(z) : 0.14233016967773438
Dot product : 0.7779960643965751
Mod ab : 1.213462707315828
Mod bc : 1.209667969514847
COS_THETA : 0.7755631168846482
THETA (radians) : 0.6831896819049631
Frame : 10 Angle : 39.14388538003961
Frame : 11
=========================
Coordinates of Given Atoms
Atom1 Posions : 31.694791793823242 30.735313415527344 40.70793151855469
Atom2 Posions : 31.276649475097656 31.62657928466797 39.999202728271484
Atom3 Posions : 31.42623519897461 32.78277587890625 40.32080078125
Splitting Coordinates :
a(x) : 31.694791793823242
a(y) :30.735313415527344
a(z) : 40.70793151855469
b(x) : 31.276649475097656
b(y) :31.62657928466797
b(z) : 39.999202728271484
c(x) : 31.42623519897461
c(y) :32.78277587890625
c(z) : 40.32080078125
Setup Vectors :
ab(x) : -0.41814231872558594
ab(y) :0.891265869140625
ab(z) : -0.7087287902832031
bc(x) : 0.14958572387695313
bc(y) :1.1561965942382813
bc(z) : 0.3215980529785156
Dot product : 0.740004641986161
Mod ab : 1.2130516668223559
Mod bc : 1.2093766001521467
COS_THETA : 0.7377627206649633
THETA (radians) : 0.7410461911719997
Frame : 11 Angle : 42.45881917840035
Frame : 12
=========================
Coordinates of Given Atoms
Atom1 Posions : 31.084415435791016 31.871566772460938 40.47618865966797
Atom2 Posions : 30.55602264404297 32.06160354614258 39.400691986083984
Atom3 Posions : 30.215702056884766 33.17945098876953 39.09149932861328
Splitting Coordinates :
a(x) : 31.084415435791016
a(y) :31.871566772460938
a(z) : 40.47618865966797
b(x) : 30.55602264404297
b(y) :32.06160354614258
b(z) : 39.400691986083984
c(x) : 30.215702056884766
c(y) :33.17945098876953
c(z) : 39.09149932861328
Setup Vectors :
ab(x) : -0.5283927917480469
ab(y) :0.19003677368164063
ab(z) : -1.0754966735839844
bc(x) : -0.3403205871582031
bc(y) :1.1178474426269531
bc(z) : -0.3091926574707031
Dot product : 0.72479074120929
Mod ab : 1.2132625489204047
Mod bc : 1.2087187871730625
COS_THETA : 0.7220763440265325
THETA (radians) : 0.7639973831158617
Frame : 12 Angle : 43.7738256115783
Frame : 13
=========================
Coordinates of Given Atoms
Atom1 Posions : 31.49144744873047 32.536834716796875 40.159420013427734
Atom2 Posions : 30.97081756591797 32.18449401855469 39.12283706665039
Atom3 Posions : 30.79674530029297 33.00870895385742 38.24092102050781
Splitting Coordinates :
a(x) : 31.49144744873047
a(y) :32.536834716796875
a(z) : 40.159420013427734
b(x) : 30.97081756591797
b(y) :32.18449401855469
b(z) : 39.12283706665039
c(x) : 30.79674530029297
c(y) :33.00870895385742
c(z) : 38.24092102050781
Setup Vectors :
ab(x) : -0.5206298828125
ab(y) :-0.3523406982421875
ab(z) : -1.0365829467773438
bc(x) : -0.174072265625
bc(y) :0.8242149353027344
bc(z) : -0.8819160461425781
Dot product : 0.7144018913677428
Mod ab : 1.2123133456597561
Mod bc : 1.21959309840605
COS_THETA : 0.7186917634121782
THETA (radians) : 0.7688773066441716
Frame : 13 Angle : 44.05342463409705
Frame : 14
=========================
Coordinates of Given Atoms
Atom1 Posions : 30.49679946899414 32.288414001464844 40.875083923339844
Atom2 Posions : 30.502155303955078 32.427085876464844 39.666099548339844
Atom3 Posions : 30.908109664916992 33.46287536621094 39.183555603027344
Splitting Coordinates :
a(x) : 30.49679946899414
a(y) :32.288414001464844
a(z) : 40.875083923339844
b(x) : 30.502155303955078
b(y) :32.427085876464844
b(z) : 39.666099548339844
c(x) : 30.908109664916992
c(y) :33.46287536621094
c(z) : 39.183555603027344
Setup Vectors :
ab(x) : 0.0053558349609375
ab(y) :0.138671875
ab(z) : -1.208984375
bc(x) : 0.40595436096191406
bc(y) :1.0357894897460938
bc(z) : -0.4825439453125
Dot product : 0.729197185341036
Mod ab : 1.2169230842079892
Mod bc : 1.2126448240974033
COS_THETA : 0.7266335925624287
THETA (radians) : 0.7573871358917265
Frame : 14 Angle : 43.39508634409728
Frame : 15
=========================
Coordinates of Given Atoms
Atom1 Posions : 30.84264373779297 32.84697341918945 40.747047424316406
Atom2 Posions : 30.468984603881836 32.99613952636719 39.59716796875
Atom3 Posions : 30.440746307373047 34.101295471191406 39.08989715576172
Splitting Coordinates :
a(x) : 30.84264373779297
a(y) :32.84697341918945
a(z) : 40.747047424316406
b(x) : 30.468984603881836
b(y) :32.99613952636719
b(z) : 39.59716796875
c(x) : 30.440746307373047
c(y) :34.101295471191406
c(z) : 39.08989715576172
Setup Vectors :
ab(x) : -0.3736591339111328
ab(y) :0.14916610717773438
ab(z) : -1.1498794555664063
bc(x) : -0.028238296508789063
bc(y) :1.1051559448242188
bc(z) : -0.5072708129882813
Dot product : 0.7587035937940527
Mod ab : 1.2182341475346485
Mod bc : 1.2163431840890224
COS_THETA : 0.7575259213697219
THETA (radians) : 0.7112815109756881
Frame : 15 Angle : 40.753428624595074
Frame : 16
=========================
Coordinates of Given Atoms
Atom1 Posions : 32.70691680908203 30.37328338623047 40.10737991333008
Atom2 Posions : 31.893821716308594 30.260150909423828 39.20973587036133
Atom3 Posions : 31.431249618530273 31.294036865234375 38.762962341308594
Splitting Coordinates :
a(x) : 32.70691680908203
a(y) :30.37328338623047
a(z) : 40.10737991333008
b(x) : 31.893821716308594
b(y) :30.260150909423828
b(z) : 39.20973587036133
c(x) : 31.431249618530273
c(y) :31.294036865234375
c(z) : 38.762962341308594
Setup Vectors :
ab(x) : -0.8130950927734375
ab(y) :-0.11313247680664063
ab(z) : -0.89764404296875
bc(x) : -0.4625720977783203
bc(y) :1.0338859558105469
bc(z) : -0.4467735290527344
Dot product : 0.6601926207513316
Mod ab : 1.216424027663846
Mod bc : 1.2175794436206446
COS_THETA : 0.66081970232094
THETA (radians) : 0.8488859470305833
Frame : 16 Angle : 48.637582052818374
Frame : 17
=========================
Coordinates of Given Atoms
Atom1 Posions : 30.740924835205078 30.219913482666016 41.13725662231445
Atom2 Posions : 30.935771942138672 30.652748107910156 40.013118743896484
Atom3 Posions : 31.247512817382813 31.809144973754883 39.838287353515625
Splitting Coordinates :
a(x) : 30.740924835205078
a(y) :30.219913482666016
a(z) : 41.13725662231445
b(x) : 30.935771942138672
b(y) :30.652748107910156
b(z) : 40.013118743896484
c(x) : 31.247512817382813
c(y) :31.809144973754883
c(z) : 39.838287353515625
Setup Vectors :
ab(x) : 0.19484710693359375
ab(y) :0.4328346252441406
ab(z) : -1.1241378784179688
bc(x) : 0.3117408752441406
bc(y) :1.1563968658447266
bc(z) : -0.17483139038085938
Dot product : 0.7578049999792711
Mod ab : 1.2202447203674676
Mod bc : 1.2103727110671298
COS_THETA : 0.7516742149959237
THETA (radians) : 0.7201994271346172
Frame : 17 Angle : 41.264387582553226
Frame : 18
=========================
Coordinates of Given Atoms
Atom1 Posions : 30.314830780029297 28.368392944335938 41.71346664428711
Atom2 Posions : 29.595312118530273 28.42792510986328 40.72992706298828
Atom3 Posions : 28.661537170410156 29.206911087036133 40.745731353759766
Splitting Coordinates :
a(x) : 30.314830780029297
a(y) :28.368392944335938
a(z) : 41.71346664428711
b(x) : 29.595312118530273
b(y) :28.42792510986328
b(z) : 40.72992706298828
c(x) : 28.661537170410156
c(y) :29.206911087036133
c(z) : 40.745731353759766
Setup Vectors :
ab(x) : -0.7195186614990234
ab(y) :0.05953216552734375
ab(z) : -0.9835395812988281
bc(x) : -0.9337749481201172
bc(y) :0.7789859771728516
bc(z) : 0.015804290771484375
Dot product : 0.7026990774211299
Mod ab : 1.2200824935057446
Mod bc : 1.2161433229580547
COS_THETA : 0.7004303361479784
THETA (radians) : 0.7947960609425078
Frame : 18 Angle : 45.53845986562827
Frame : 19
=========================
Coordinates of Given Atoms
Atom1 Posions : 29.865453720092773 27.85198211669922 42.66337203979492
Atom2 Posions : 29.36009407043457 28.261287689208984 41.63903045654297
Atom3 Posions : 28.927459716796875 29.388839721679688 41.737281799316406
Splitting Coordinates :
a(x) : 29.865453720092773
a(y) :27.85198211669922
a(z) : 42.66337203979492
b(x) : 29.36009407043457
b(y) :28.261287689208984
b(z) : 41.63903045654297
c(x) : 28.927459716796875
c(y) :29.388839721679688
c(z) : 41.737281799316406
Setup Vectors :
ab(x) : -0.5053596496582031
ab(y) :0.4093055725097656
ab(z) : -1.0243415832519531
bc(x) : -0.4326343536376953
bc(y) :1.1275520324707031
bc(z) : 0.0982513427734375
Dot product : 0.5795063395562465
Mod ab : 1.213340474215431
Mod bc : 1.2116927812911586
COS_THETA : 0.5787193811422241
THETA (radians) : 0.9536388092273635
Frame : 19 Angle : 54.639478948609394
Frame : 20
=========================
Coordinates of Given Atoms
Atom1 Posions : 29.64212417602539 29.118513107299805 42.13699722290039
Atom2 Posions : 29.271160125732422 29.33563995361328 41.0089225769043
Atom3 Posions : 28.367416381835938 30.140655517578125 40.8530387878418
Splitting Coordinates :
a(x) : 29.64212417602539
a(y) :29.118513107299805
a(z) : 42.13699722290039
b(x) : 29.271160125732422
b(y) :29.33563995361328
b(z) : 41.0089225769043
c(x) : 28.367416381835938
c(y) :30.140655517578125
c(z) : 40.8530387878418
Setup Vectors :
ab(x) : -0.37096405029296875
ab(y) :0.21712684631347656
ab(z) : -1.1280746459960938
bc(x) : -0.9037437438964844
bc(y) :0.8050155639648438
bc(z) : -0.1558837890625
Dot product : 0.685895480462932
Mod ab : 1.2071912859770868
Mod bc : 1.2202879039596155
COS_THETA : 0.6933366467370038
THETA (radians) : 0.8046872419058875
Frame : 20 Angle : 46.10518278923007
Frame : 21
=========================
Coordinates of Given Atoms
Atom1 Posions : 29.36687469482422 29.226497650146484 42.32649612426758
Atom2 Posions : 28.86404037475586 28.72222137451172 41.34621047973633
Atom3 Posions : 27.77416229248047 28.97272300720215 40.888492584228516
Splitting Coordinates :
a(x) : 29.36687469482422
a(y) :29.226497650146484
a(z) : 42.32649612426758
b(x) : 28.86404037475586
b(y) :28.72222137451172
b(z) : 41.34621047973633
c(x) : 27.77416229248047
c(y) :28.97272300720215
c(z) : 40.888492584228516
Setup Vectors :
ab(x) : -0.5028343200683594
ab(y) :-0.5042762756347656
ab(z) : -0.98028564453125
bc(x) : -1.0898780822753906
bc(y) :0.2505016326904297
bc(z) : -0.4577178955078125
Dot product : 0.8704003562961589
Mod ab : 1.211650469599516
Mod bc : 1.2083422421122896
COS_THETA : 0.8680238603876131
THETA (radians) : 0.5195879199381499
Frame : 21 Angle : 29.770194898437307
Frame : 22
=========================
Coordinates of Given Atoms
Atom1 Posions : 28.870363235473633 29.07651138305664 42.983184814453125
Atom2 Posions : 28.431129455566406 28.422718048095703 42.05418395996094
Atom3 Posions : 27.28433609008789 28.565044403076172 41.69139099121094
Splitting Coordinates :
a(x) : 28.870363235473633
a(y) :29.07651138305664
a(z) : 42.983184814453125
b(x) : 28.431129455566406
b(y) :28.422718048095703
b(z) : 42.05418395996094
c(x) : 27.28433609008789
c(y) :28.565044403076172
c(z) : 41.69139099121094
Setup Vectors :
ab(x) : -0.43923377990722656
ab(y) :-0.6537933349609375
ab(z) : -0.9290008544921875
bc(x) : -1.1467933654785156
bc(y) :0.14232635498046875
bc(z) : -0.36279296875
Dot product : 0.7476933403886505
Mod ab : 1.2179551001158249
Mod bc : 1.211202110550508
COS_THETA : 0.7435477316340903
THETA (radians) : 0.7324359505287692
Frame : 22 Angle : 41.96548872895123
Frame : 23
=========================
Coordinates of Given Atoms
Atom1 Posions : 30.14822769165039 29.337242126464844 42.69925308227539
Atom2 Posions : 29.471757888793945 28.978532791137695 41.75971984863281
Atom3 Posions : 28.258899688720703 29.054887771606445 41.754051208496094
Splitting Coordinates :
a(x) : 30.14822769165039
a(y) :29.337242126464844
a(z) : 42.69925308227539
b(x) : 29.471757888793945
b(y) :28.978532791137695
b(z) : 41.75971984863281
c(x) : 28.258899688720703
c(y) :29.054887771606445
c(z) : 41.754051208496094
Setup Vectors :
ab(x) : -0.6764698028564453
ab(y) :-0.35870933532714844
ab(z) : -0.9395332336425781
bc(x) : -1.2128582000732422
bc(y) :0.07635498046875
bc(z) : -0.00566864013671875
Dot product : 0.798398579001514
Mod ab : 1.2120257747038063
Mod bc : 1.215272492080804
COS_THETA : 0.8005372913905702
THETA (radians) : 0.6426050877867114
Frame : 23 Angle : 36.81855942381233
Frame : 24
=========================
Coordinates of Given Atoms
Atom1 Posions : 29.694538116455078 28.569427490234375 42.58842086791992
Atom2 Posions : 29.137283325195313 28.335342407226563 41.53444290161133
Atom3 Posions : 27.991912841796875 28.69951820373535 41.343936920166016
Splitting Coordinates :
a(x) : 29.694538116455078
a(y) :28.569427490234375
a(z) : 42.58842086791992
b(x) : 29.137283325195313
b(y) :28.335342407226563
b(z) : 41.53444290161133
c(x) : 27.991912841796875
c(y) :28.69951820373535
c(z) : 41.343936920166016
Setup Vectors :
ab(x) : -0.5572547912597656
ab(y) :-0.2340850830078125
ab(z) : -1.0539779663085938
bc(x) : -1.1453704833984375
bc(y) :0.36417579650878906
bc(z) : -0.1905059814453125
Dot product : 0.7538041749794502
Mod ab : 1.2149890048608418
Mod bc : 1.2168771852449298
COS_THETA : 0.7549756409358872
THETA (radians) : 0.7151793548010273