-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathangle-details.dat
2208 lines (1405 loc) · 60.1 KB
/
angle-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 :
A position: 29.790000915527344 33.25 38.380001068115234
B position: 30.669998168945313 32.59000015258789 38.86000061035156
C position: 31.14000129699707 32.83000183105469 39.9900016784668
Setoup Vectors V1 and V2 :
Vector1: 0.8799972534179688 -0.6599998474121094 0.4799995422363281
Vector2 0.4700031280517578 0.24000167846679688 1.1300010681152344
Dot Product : 0.797600386038539
mod V1: 1.2001643742230732
mod V2: 1.247159236018756
COS(theta) : 0.8288320412310447
Angle Bwn given three atoms ; 34.02105332682124
Frame : 1
=======================
Coordinates of Given Atoms :
A position: 29.79977798461914 33.23897933959961 38.39091110229492
B position: 30.689823150634766 32.54901123046875 38.860862731933594
C position: 31.12985610961914 32.819000244140625 39.96084976196289
Setoup Vectors V1 and V2 :
Vector1: 0.890045166015625 -0.6899681091308594 0.4699516296386719
Vector2 0.440032958984375 0.269989013671875 1.0999870300292969
Dot Product : 0.7223060961259762
mod V1: 1.2202831324596102
mod V2: 1.2151109162248235
COS(theta) : 0.7192445744040967
Angle Bwn given three atoms ; 44.007853726668124
Frame : 2
=======================
Coordinates of Given Atoms :
A position: 31.395219802856445 32.7837028503418 39.29460144042969
B position: 31.6225643157959 32.35505294799805 38.1812858581543
C position: 32.30495834350586 32.99689865112305 37.405418395996094
Setoup Vectors V1 and V2 :
Vector1: 0.22734451293945313 -0.42864990234375 -1.1133155822753906
Vector2 0.6823940277099609 0.641845703125 -0.7758674621582031
Dot Product : 0.7437967752994155
mod V1: 1.2144537257879262
mod V2: 1.2163872058312926
COS(theta) : 0.7449809424610161
Angle Bwn given three atoms ; 41.842537943371305
Frame : 3
=======================
Coordinates of Given Atoms :
A position: 30.632984161376953 34.684722900390625 39.16574478149414
B position: 30.727336883544922 34.63835525512695 37.95717239379883
C position: 30.826553344726563 35.720977783203125 37.40673065185547
Setoup Vectors V1 and V2 :
Vector1: 0.09435272216796875 -0.046367645263671875 -1.2085723876953125
Vector2 0.09921646118164063 1.0826225280761719 -0.5504417419433594
Dot Product : 0.6244113762077177
mod V1: 1.2131362705843693
mod V2: 1.2185653678572559
COS(theta) : 0.6272057779430608
Angle Bwn given three atoms ; 51.155730548567234
Frame : 4
=======================
Coordinates of Given Atoms :
A position: 30.031112670898438 34.3962287902832 39.056766510009766
B position: 30.361473083496094 34.434017181396484 37.892967224121094
C position: 30.70159149169922 35.47327423095703 37.35905838012695
Setoup Vectors V1 and V2 :
Vector1: 0.33036041259765625 0.03778839111328125 -1.1637992858886719
Vector2 0.340118408203125 1.0392570495605469 -0.5339088439941406
Dot Product : 0.7729962408920983
mod V1: 1.2103696718563328
mod V2: 1.216878958793799
COS(theta) : 0.7771533628446273
Angle Bwn given three atoms ; 38.999326143946995
Frame : 5
=======================
Coordinates of Given Atoms :
A position: 30.98843765258789 33.44572448730469 39.23387145996094
B position: 31.270112991333008 33.94927215576172 38.166351318359375
C position: 31.135086059570313 35.14624786376953 38.00532150268555
Setoup Vectors V1 and V2 :
Vector1: 0.2816753387451172 0.5035476684570313 -1.0675201416015625
Vector2 -0.1350269317626953 1.1969757080078125 -0.16102981567382813
Dot Product : 0.7366031418532657
mod V1: 1.2134663174520786
mod V2: 1.215283390571104
COS(theta) : 0.7377061487923141
Angle Bwn given three atoms ; 42.46362050056931
Frame : 6
=======================
Coordinates of Given Atoms :
A position: 30.42559051513672 34.50856018066406 38.5674934387207
B position: 30.802640914916992 34.333892822265625 37.425025939941406
C position: 31.307254791259766 35.24248123168945 36.799861907958984
Setoup Vectors V1 and V2 :
Vector1: 0.37705039978027344 -0.1746673583984375 -1.1424674987792969
Vector2 0.5046138763427734 0.9085884094238281 -0.6251640319824219
Dot Product : 0.745793714409956
mod V1: 1.215692261977255
mod V2: 1.2128471168376995
COS(theta) : 0.7440482962412055
Angle Bwn given three atoms ; 41.92258021399603
Frame : 7
=======================
Coordinates of Given Atoms :
A position: 30.691875457763672 34.561988830566406 38.72163009643555
B position: 31.11172103881836 34.181480407714844 37.64931869506836
C position: 31.703615188598633 34.918365478515625 36.88947296142578
Setoup Vectors V1 and V2 :
Vector1: 0.4198455810546875 -0.3805084228515625 -1.0723114013671875
Vector2 0.5918941497802734 0.7368850708007813 -0.7598457336425781
Dot Product : 0.7829044105892535
mod V1: 1.212810254447988
mod V2: 1.2127257855954134
COS(theta) : 0.7828498834800083
Angle Bwn given three atoms ; 38.47774622910442
Frame : 8
=======================
Coordinates of Given Atoms :
A position: 30.1529598236084 34.03193283081055 39.17939376831055
B position: 30.219066619873047 34.16502380371094 37.979469299316406
C position: 30.488712310791016 35.24041748046875 37.482059478759766
Setoup Vectors V1 and V2 :
Vector1: 0.06610679626464844 0.13309097290039063 -1.1999244689941406
Vector2 0.26964569091796875 1.0753936767578125 -0.4974098205566406
Dot Product : 0.7578048182476778
mod V1: 1.2090914137776425
mod V2: 1.215153030785631
COS(theta) : 0.761603970671293
Angle Bwn given three atoms ; 40.39419483271694
Frame : 9
=======================
Coordinates of Given Atoms :
A position: 29.641481399536133 31.247068405151367 40.96485137939453
B position: 30.30998992919922 31.76873779296875 40.092002868652344
C position: 30.66367530822754 32.90681457519531 40.30411148071289
Setoup Vectors V1 and V2 :
Vector1: 0.6685085296630859 0.5216693878173828 -0.8728485107421875
Vector2 0.3536853790283203 1.1380767822265625 0.21210861206054688
Dot Product : 0.6450028248182207
mod V1: 1.216925275899436
mod V2: 1.21049666372602
COS(theta) : 0.6415954890568285
Angle Bwn given three atoms ; 50.08910575793849
Frame : 10
=======================
Coordinates of Given Atoms :
A position: 30.725343704223633 31.422971725463867 40.512454986572266
B position: 30.64816665649414 32.197757720947266 39.58173370361328
C position: 30.806045532226563 33.38860321044922 39.724063873291016
Setoup Vectors V1 and V2 :
Vector1: -0.07717704772949219 0.7747859954833984 -0.9307212829589844
Vector2 0.15787887573242188 1.1908454895019531 0.14233016967773438
Dot Product : 0.7779960643965751
mod V1: 1.213462707315828
mod V2: 1.209667969514847
COS(theta) : 0.7755631168846482
Angle Bwn given three atoms ; 39.14388538003961
Frame : 11
=======================
Coordinates of Given Atoms :
A position: 31.694791793823242 30.735313415527344 40.70793151855469
B position: 31.276649475097656 31.62657928466797 39.999202728271484
C position: 31.42623519897461 32.78277587890625 40.32080078125
Setoup Vectors V1 and V2 :
Vector1: -0.41814231872558594 0.891265869140625 -0.7087287902832031
Vector2 0.14958572387695313 1.1561965942382813 0.3215980529785156
Dot Product : 0.740004641986161
mod V1: 1.2130516668223559
mod V2: 1.2093766001521467
COS(theta) : 0.7377627206649633
Angle Bwn given three atoms ; 42.45881917840035
Frame : 12
=======================
Coordinates of Given Atoms :
A position: 31.084415435791016 31.871566772460938 40.47618865966797
B position: 30.55602264404297 32.06160354614258 39.400691986083984
C position: 30.215702056884766 33.17945098876953 39.09149932861328
Setoup Vectors V1 and V2 :
Vector1: -0.5283927917480469 0.19003677368164063 -1.0754966735839844
Vector2 -0.3403205871582031 1.1178474426269531 -0.3091926574707031
Dot Product : 0.72479074120929
mod V1: 1.2132625489204047
mod V2: 1.2087187871730625
COS(theta) : 0.7220763440265325
Angle Bwn given three atoms ; 43.7738256115783
Frame : 13
=======================
Coordinates of Given Atoms :
A position: 31.49144744873047 32.536834716796875 40.159420013427734
B position: 30.97081756591797 32.18449401855469 39.12283706665039
C position: 30.79674530029297 33.00870895385742 38.24092102050781
Setoup Vectors V1 and V2 :
Vector1: -0.5206298828125 -0.3523406982421875 -1.0365829467773438
Vector2 -0.174072265625 0.8242149353027344 -0.8819160461425781
Dot Product : 0.7144018913677428
mod V1: 1.2123133456597561
mod V2: 1.21959309840605
COS(theta) : 0.7186917634121782
Angle Bwn given three atoms ; 44.05342463409705
Frame : 14
=======================
Coordinates of Given Atoms :
A position: 30.49679946899414 32.288414001464844 40.875083923339844
B position: 30.502155303955078 32.427085876464844 39.666099548339844
C position: 30.908109664916992 33.46287536621094 39.183555603027344
Setoup Vectors V1 and V2 :
Vector1: 0.0053558349609375 0.138671875 -1.208984375
Vector2 0.40595436096191406 1.0357894897460938 -0.4825439453125
Dot Product : 0.729197185341036
mod V1: 1.2169230842079892
mod V2: 1.2126448240974033
COS(theta) : 0.7266335925624287
Angle Bwn given three atoms ; 43.39508634409728
Frame : 15
=======================
Coordinates of Given Atoms :
A position: 30.84264373779297 32.84697341918945 40.747047424316406
B position: 30.468984603881836 32.99613952636719 39.59716796875
C position: 30.440746307373047 34.101295471191406 39.08989715576172
Setoup Vectors V1 and V2 :
Vector1: -0.3736591339111328 0.14916610717773438 -1.1498794555664063
Vector2 -0.028238296508789063 1.1051559448242188 -0.5072708129882813
Dot Product : 0.7587035937940527
mod V1: 1.2182341475346485
mod V2: 1.2163431840890224
COS(theta) : 0.7575259213697219
Angle Bwn given three atoms ; 40.753428624595074
Frame : 16
=======================
Coordinates of Given Atoms :
A position: 32.70691680908203 30.37328338623047 40.10737991333008
B position: 31.893821716308594 30.260150909423828 39.20973587036133
C position: 31.431249618530273 31.294036865234375 38.762962341308594
Setoup Vectors V1 and V2 :
Vector1: -0.8130950927734375 -0.11313247680664063 -0.89764404296875
Vector2 -0.4625720977783203 1.0338859558105469 -0.4467735290527344
Dot Product : 0.6601926207513316
mod V1: 1.216424027663846
mod V2: 1.2175794436206446
COS(theta) : 0.66081970232094
Angle Bwn given three atoms ; 48.637582052818374
Frame : 17
=======================
Coordinates of Given Atoms :
A position: 30.740924835205078 30.219913482666016 41.13725662231445
B position: 30.935771942138672 30.652748107910156 40.013118743896484
C position: 31.247512817382813 31.809144973754883 39.838287353515625
Setoup Vectors V1 and V2 :
Vector1: 0.19484710693359375 0.4328346252441406 -1.1241378784179688
Vector2 0.3117408752441406 1.1563968658447266 -0.17483139038085938
Dot Product : 0.7578049999792711
mod V1: 1.2202447203674676
mod V2: 1.2103727110671298
COS(theta) : 0.7516742149959237
Angle Bwn given three atoms ; 41.264387582553226
Frame : 18
=======================
Coordinates of Given Atoms :
A position: 30.314830780029297 28.368392944335938 41.71346664428711
B position: 29.595312118530273 28.42792510986328 40.72992706298828
C position: 28.661537170410156 29.206911087036133 40.745731353759766
Setoup Vectors V1 and V2 :
Vector1: -0.7195186614990234 0.05953216552734375 -0.9835395812988281
Vector2 -0.9337749481201172 0.7789859771728516 0.015804290771484375
Dot Product : 0.7026990774211299
mod V1: 1.2200824935057446
mod V2: 1.2161433229580547
COS(theta) : 0.7004303361479784
Angle Bwn given three atoms ; 45.53845986562827
Frame : 19
=======================
Coordinates of Given Atoms :
A position: 29.865453720092773 27.85198211669922 42.66337203979492
B position: 29.36009407043457 28.261287689208984 41.63903045654297
C position: 28.927459716796875 29.388839721679688 41.737281799316406
Setoup Vectors V1 and V2 :
Vector1: -0.5053596496582031 0.4093055725097656 -1.0243415832519531
Vector2 -0.4326343536376953 1.1275520324707031 0.0982513427734375
Dot Product : 0.5795063395562465
mod V1: 1.213340474215431
mod V2: 1.2116927812911586
COS(theta) : 0.5787193811422241
Angle Bwn given three atoms ; 54.639478948609394
Frame : 20
=======================
Coordinates of Given Atoms :
A position: 29.64212417602539 29.118513107299805 42.13699722290039
B position: 29.271160125732422 29.33563995361328 41.0089225769043
C position: 28.367416381835938 30.140655517578125 40.8530387878418
Setoup Vectors V1 and V2 :
Vector1: -0.37096405029296875 0.21712684631347656 -1.1280746459960938
Vector2 -0.9037437438964844 0.8050155639648438 -0.1558837890625
Dot Product : 0.685895480462932
mod V1: 1.2071912859770868
mod V2: 1.2202879039596155
COS(theta) : 0.6933366467370038
Angle Bwn given three atoms ; 46.10518278923007
Frame : 21
=======================
Coordinates of Given Atoms :
A position: 29.36687469482422 29.226497650146484 42.32649612426758
B position: 28.86404037475586 28.72222137451172 41.34621047973633
C position: 27.77416229248047 28.97272300720215 40.888492584228516
Setoup Vectors V1 and V2 :
Vector1: -0.5028343200683594 -0.5042762756347656 -0.98028564453125
Vector2 -1.0898780822753906 0.2505016326904297 -0.4577178955078125
Dot Product : 0.8704003562961589
mod V1: 1.211650469599516
mod V2: 1.2083422421122896
COS(theta) : 0.8680238603876131
Angle Bwn given three atoms ; 29.770194898437307
Frame : 22
=======================
Coordinates of Given Atoms :
A position: 28.870363235473633 29.07651138305664 42.983184814453125
B position: 28.431129455566406 28.422718048095703 42.05418395996094
C position: 27.28433609008789 28.565044403076172 41.69139099121094
Setoup Vectors V1 and V2 :
Vector1: -0.43923377990722656 -0.6537933349609375 -0.9290008544921875
Vector2 -1.1467933654785156 0.14232635498046875 -0.36279296875
Dot Product : 0.7476933403886505
mod V1: 1.2179551001158249
mod V2: 1.211202110550508
COS(theta) : 0.7435477316340903
Angle Bwn given three atoms ; 41.96548872895123
Frame : 23
=======================
Coordinates of Given Atoms :
A position: 30.14822769165039 29.337242126464844 42.69925308227539
B position: 29.471757888793945 28.978532791137695 41.75971984863281
C position: 28.258899688720703 29.054887771606445 41.754051208496094
Setoup Vectors V1 and V2 :
Vector1: -0.6764698028564453 -0.35870933532714844 -0.9395332336425781
Vector2 -1.2128582000732422 0.07635498046875 -0.00566864013671875
Dot Product : 0.798398579001514
mod V1: 1.2120257747038063
mod V2: 1.215272492080804
COS(theta) : 0.8005372913905702
Angle Bwn given three atoms ; 36.81855942381233
Frame : 24
=======================
Coordinates of Given Atoms :
A position: 29.694538116455078 28.569427490234375 42.58842086791992
B position: 29.137283325195313 28.335342407226563 41.53444290161133
C position: 27.991912841796875 28.69951820373535 41.343936920166016
Setoup Vectors V1 and V2 :
Vector1: -0.5572547912597656 -0.2340850830078125 -1.0539779663085938
Vector2 -1.1453704833984375 0.36417579650878906 -0.1905059814453125
Dot Product : 0.7538041749794502
mod V1: 1.2149890048608418
mod V2: 1.2168771852449298
COS(theta) : 0.7549756409358872
Angle Bwn given three atoms ; 40.976758624988136
Frame : 25
=======================
Coordinates of Given Atoms :
A position: 30.253753662109375 30.21589469909668 41.86703109741211
B position: 29.4543399810791 29.987977981567383 40.98493957519531
C position: 28.283742904663086 30.28496742248535 41.10986328125
Setoup Vectors V1 and V2 :
Vector1: -0.7994136810302734 -0.22791671752929688 -0.8820915222167969
Vector2 -1.1705970764160156 0.29698944091796875 0.1249237060546875
Dot Product : 0.7579083173113759
mod V1: 1.2120617629124544
mod V2: 1.2141277427292931
COS(theta) : 0.7592001848832205
Angle Bwn given three atoms ; 40.60626139825449
Frame : 26
=======================
Coordinates of Given Atoms :
A position: 29.80620574951172 28.781627655029297 43.075077056884766
B position: 29.24066925048828 28.398841857910156 42.073158264160156
C position: 28.072399139404297 28.576236724853516 41.78440475463867
Setoup Vectors V1 and V2 :
Vector1: -0.5655364990234375 -0.3827857971191406 -1.0019187927246094
Vector2 -1.1682701110839844 0.17739486694335938 -0.2887535095214844
Dot Product : 0.8821027206431609
mod V1: 1.212517119639373
mod V2: 1.2164302612690179
COS(theta) : 0.8849495199351977
Angle Bwn given three atoms ; 27.754690153531783
Frame : 27
=======================
Coordinates of Given Atoms :
A position: 30.179195404052734 28.727981567382813 42.92337417602539
B position: 29.656940460205078 28.359046936035156 41.889339447021484
C position: 28.56553840637207 28.721511840820313 41.49076461791992
Setoup Vectors V1 and V2 :
Vector1: -0.5222549438476563 -0.36893463134765625 -1.0340347290039063
Vector2 -1.0914020538330078 0.36246490478515625 -0.3985748291015625
Dot Product : 0.8484044777142117
mod V1: 1.215767580324106
mod V2: 1.217128236754517
COS(theta) : 0.849353990620193
Angle Bwn given three atoms ; 31.85852478385477
Frame : 28
=======================
Coordinates of Given Atoms :
A position: 30.361703872680664 29.37335968017578 42.82245635986328
B position: 29.793466567993164 28.778194427490234 41.926361083984375
C position: 28.653860092163086 29.137765884399414 41.66083526611328
Setoup Vectors V1 and V2 :
Vector1: -0.5682373046875 -0.5951652526855469 -0.8960952758789063
Vector2 -1.1396064758300781 0.3595714569091797 -0.26552581787109375
Dot Product : 0.671498906238412
mod V1: 1.2165944500511494
mod V2: 1.2241317381449408
COS(theta) : 0.6756591099207253
Angle Bwn given three atoms ; 47.494645189619916
Frame : 29
=======================
Coordinates of Given Atoms :
A position: 29.926448822021484 28.580318450927734 42.07587814331055
B position: 29.368064880371094 27.940603256225586 41.21293258666992
C position: 28.244125366210938 28.224143981933594 40.84501647949219
Setoup Vectors V1 and V2 :
Vector1: -0.5583839416503906 -0.6397151947021484 -0.862945556640625
Vector2 -1.1239395141601563 0.2835407257080078 -0.3679161071777344
Dot Product : 0.7636960354466282
mod V1: 1.210662294098413
mod V2: 1.216140467440505
COS(theta) : 0.7671517136181869
Angle Bwn given three atoms ; 39.901200316120594
Frame : 30
=======================
Coordinates of Given Atoms :
A position: 29.72266960144043 28.318540573120117 42.73484420776367
B position: 29.108135223388672 27.7733154296875 41.84306716918945
C position: 28.0972900390625 28.258649826049805 41.38530731201172
Setoup Vectors V1 and V2 :
Vector1: -0.6145343780517578 -0.5452251434326172 -0.8917770385742188
Vector2 -1.0108451843261719 0.4853343963623047 -0.4577598571777344
Dot Product : 0.7648023305991956
mod V1: 1.212513606260475
mod V2: 1.211157111943432
COS(theta) : 0.7639467113222137
Angle Bwn given three atoms ; 40.18662239969641
Frame : 31
=======================
Coordinates of Given Atoms :
A position: 30.15917205810547 29.315349578857422 42.007972717285156
B position: 29.516494750976563 28.778026580810547 41.13027572631836
C position: 28.313541412353516 28.610355377197266 41.17596435546875
Setoup Vectors V1 and V2 :
Vector1: -0.6426773071289063 -0.537322998046875 -0.8776969909667969
Vector2 -1.2029533386230469 -0.16767120361328125 0.045688629150390625
Dot Product : 0.8231036337529076
mod V1: 1.2133021607500392
mod V2: 1.2154414088137293
COS(theta) : 0.8245548986658736
Angle Bwn given three atoms ; 34.456609201229526
Frame : 32
=======================
Coordinates of Given Atoms :
A position: 29.31603240966797 28.821449279785156 42.623321533203125
B position: 28.75259017944336 28.235809326171875 41.7203483581543
C position: 27.94879722595215 28.82576560974121 41.022300720214844
Setoup Vectors V1 and V2 :
Vector1: -0.5634422302246094 -0.5856399536132813 -0.9029731750488281
Vector2 -0.8037929534912109 0.5899562835693359 -0.6980476379394531
Dot Product : 0.7377072157760267
mod V1: 1.21482585456781
mod V2: 1.2171286018485954
COS(theta) : 0.7391055670530898
Angle Bwn given three atoms ; 42.344720753259715
Frame : 33
=======================
Coordinates of Given Atoms :
A position: 29.904067993164063 28.330198287963867 42.70378875732422
B position: 29.532424926757813 27.800487518310547 41.67866134643555
C position: 28.630077362060547 28.28675651550293 41.0334358215332
Setoup Vectors V1 and V2 :
Vector1: -0.37164306640625 -0.5297107696533203 -1.0251274108886719
Vector2 -0.9023475646972656 0.4862689971923828 -0.6452255249023438
Dot Product : 0.7392076629294024
mod V1: 1.21226988614329
mod V2: 1.211199671041516
COS(theta) : 0.7385550762296446
Angle Bwn given three atoms ; 42.39152473403734
Frame : 34
=======================
Coordinates of Given Atoms :
A position: 29.48955535888672 28.41650390625 42.66163635253906
B position: 29.07058334350586 27.71617889404297 41.77202606201172
C position: 28.001020431518555 27.91008186340332 41.22665023803711
Setoup Vectors V1 and V2 :
Vector1: -0.4189720153808594 -0.7003250122070313 -0.8896102905273438
Vector2 -1.0695629119873047 0.19390296936035156 -0.5453758239746094
Dot Product : 0.7974937746403157
mod V1: 1.2072278746811733
mod V2: 1.2161406060162239
COS(theta) : 0.8033815178773758
Angle Bwn given three atoms ; 36.54576227685805
Frame : 35
=======================
Coordinates of Given Atoms :
A position: 27.80567741394043 27.936195373535156 41.97218322753906
B position: 28.880037307739258 27.84851837158203 42.535980224609375
C position: 29.3064022064209 28.829193115234375 43.11174011230469
Setoup Vectors V1 and V2 :
Vector1: 1.0743598937988281 -0.087677001953125 0.5637969970703125
Vector2 0.4263648986816406 0.9806747436523438 0.5757598876953125
Dot Product : 0.6966984215687262
mod V1: 1.216471739080041
mod V2: 1.214499661566159
COS(theta) : 0.6955689721561391
Angle Bwn given three atoms ; 45.92742570768715
Frame : 36
=======================
Coordinates of Given Atoms :
A position: 28.27191925048828 29.316967010498047 41.37875747680664
B position: 29.40500831604004 28.878780364990234 41.477806091308594
C position: 30.100868225097656 29.08745765686035 42.45064926147461
Setoup Vectors V1 and V2 :
Vector1: 1.1330890655517578 -0.4381866455078125 0.09904861450195313
Vector2 0.6958599090576172 0.2086772918701172 0.9728431701660156
Dot Product : 0.7933904197234369
mod V1: 1.2188966300753734
mod V2: 1.2141626987000484
COS(theta) : 0.7903090626106695
Angle Bwn given three atoms ; 37.78559674127472
Frame : 37
=======================
Coordinates of Given Atoms :
A position: 29.054716110229492 29.236858367919922 40.92353820800781
B position: 30.1037540435791 29.59657859802246 40.433311462402344
C position: 30.64429473876953 30.638179779052734 40.77607345581055
Setoup Vectors V1 and V2 :
Vector1: 1.0490379333496094 0.35972023010253906 -0.49022674560546875
Vector2 0.5405406951904297 1.0416011810302734 0.3427619934082031
Dot Product : 0.7737016137434694
mod V1: 1.2125186562104404
mod V2: 1.222539589381783
COS(theta) : 0.7800959171433979
Angle Bwn given three atoms ; 38.730641675959674
Frame : 38
=======================
Coordinates of Given Atoms :
A position: 28.374073028564453 28.62447166442871 41.60393142700195
B position: 29.56262969970703 28.836965560913086 41.647178649902344
C position: 30.17386245727539 29.173776626586914 42.644657135009766
Setoup Vectors V1 and V2 :
Vector1: 1.1885566711425781 0.212493896484375 0.043247222900390625
Vector2 0.6112327575683594 0.3368110656738281 0.9974784851074219
Dot Product : 0.8411932417366188
mod V1: 1.2081767001764414
mod V2: 1.2173785385561706
COS(theta) : 0.8476000233402123
Angle Bwn given three atoms ; 32.04841367333864
Frame : 39
=======================
Coordinates of Given Atoms :
A position: 29.337738037109375 30.26232147216797 41.41747283935547
B position: 30.359813690185547 29.613128662109375 41.48958969116211
C position: 31.06995391845703 29.61151123046875 42.475990295410156
Setoup Vectors V1 and V2 :
Vector1: 1.0220756530761719 -0.6491928100585938 0.07211685180664063
Vector2 0.7101402282714844 -0.001617431640625 0.9864006042480469
Dot Product : 0.7980031687766314
mod V1: 1.2129677594880077
mod V2: 1.2154373336192614
COS(theta) : 0.7996278846578688
Angle Bwn given three atoms ; 36.905417365809726
Frame : 40
=======================
Coordinates of Given Atoms :
A position: 29.444133758544922 30.01108741760254 41.52079772949219
B position: 30.417016983032227 29.289297103881836 41.39310836791992
C position: 31.362258911132813 29.43105697631836 42.138587951660156
Setoup Vectors V1 and V2 :
Vector1: 0.9728832244873047 -0.7217903137207031 -0.12768936157226563
Vector2 0.9452419281005859 0.14175987243652344 0.7454795837402344
Dot Product : 0.7220993000191811
mod V1: 1.218108204770241
mod V2: 1.2121542698213152
COS(theta) : 0.7185697841336938
Angle Bwn given three atoms ; 44.06347493592972
Frame : 41
=======================
Coordinates of Given Atoms :
A position: 28.375045776367188 29.399118423461914 40.47636032104492
B position: 29.121047973632813 28.728200912475586 41.15874481201172
C position: 29.271577835083008 28.84819221496582 42.359554290771484
Setoup Vectors V1 and V2 :
Vector1: 0.746002197265625 -0.6709175109863281 0.6823844909667969
Vector2 0.1505298614501953 0.11999130249023438 1.2008094787597656
Dot Product : 0.8512051063007675
mod V1: 1.2133829479538785
mod V2: 1.2161416677923744
COS(theta) : 0.8531403868462382
Angle Bwn given three atoms ; 31.44510403097851
Frame : 42
=======================
Coordinates of Given Atoms :
A position: 28.213117599487305 28.66770362854004 41.45573043823242
B position: 29.38925552368164 28.421310424804688 41.59747314453125
C position: 29.99481201171875 28.816722869873047 42.57392120361328
Setoup Vectors V1 and V2 :
Vector1: 1.176137924194336 -0.24639320373535156 0.14174270629882813
Vector2 0.6055564880371094 0.3954124450683594 0.9764480590820313
Dot Product : 0.7531954021396814
mod V1: 1.2100004224644088
mod V2: 1.215113358499462
COS(theta) : 0.7563780786425482
Angle Bwn given three atoms ; 40.85407064011306
Frame : 43
=======================
Coordinates of Given Atoms :
A position: 28.094392776489258 28.556005477905273 41.375484466552734
B position: 29.293851852416992 28.574247360229492 41.5471305847168
C position: 29.767642974853516 29.410356521606445 42.28098678588867
Setoup Vectors V1 and V2 :
Vector1: 1.1994590759277344 0.01824188232421875 0.1716461181640625
Vector2 0.47379112243652344 0.8361091613769531 0.733856201171875
Dot Product : 0.7095088350542937
mod V1: 1.211815675330591
mod V2: 1.2091738838713595
COS(theta) : 0.7079620863045843
Angle Bwn given three atoms ; 44.93065395395596
Frame : 44
=======================
Coordinates of Given Atoms :
A position: 28.395065307617188 29.97591781616211 40.75391387939453
B position: 29.282594680786133 29.20157814025879 41.05489730834961
C position: 29.784503936767578 29.276329040527344 42.160335540771484
Setoup Vectors V1 and V2 :
Vector1: 0.8875293731689453 -0.7743396759033203 0.3009834289550781
Vector2 0.5019092559814453 0.07475090026855469 1.105438232421875
Dot Product : 0.7202952091538464
mod V1: 1.2156896587621682
mod V2: 1.2163446403181981
COS(theta) : 0.7206832852335366
Angle Bwn given three atoms ; 43.88907741994025
Frame : 45
=======================
Coordinates of Given Atoms :
A position: 27.94559669494629 28.827289581298828 41.34653091430664
B position: 29.022573471069336 28.362945556640625 41.66291809082031