-
Notifications
You must be signed in to change notification settings - Fork 1
/
58528A1f.out
1914 lines (1884 loc) · 128 KB
/
58528A1f.out
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
Entering Gaussian System, Link 0=/usr/local/Cluster-Apps/gaussian/g09/g09
Initial command:
/usr/local/Cluster-Apps/gaussian/g09/l1.exe "/home/ke291/rds/hpc-work/07Dec0308GDB58freqs/58518A1af/Gau-193842.inp" -scrdir="/home/ke291/rds/hpc-work/07Dec0308GDB58freqs/58518A1af/"
Entering Link 1 = /usr/local/Cluster-Apps/gaussian/g09/l1.exe PID= 193865.
Copyright (c) 1988,1990,1992,1993,1995,1998,2003,2009,2013,
Gaussian, Inc. All Rights Reserved.
This is part of the Gaussian(R) 09 program. It is based on
the Gaussian(R) 03 system (copyright 2003, Gaussian, Inc.),
the Gaussian(R) 98 system (copyright 1998, Gaussian, Inc.),
the Gaussian(R) 94 system (copyright 1995, Gaussian, Inc.),
the Gaussian 92(TM) system (copyright 1992, Gaussian, Inc.),
the Gaussian 90(TM) system (copyright 1990, Gaussian, Inc.),
the Gaussian 88(TM) system (copyright 1988, Gaussian, Inc.),
the Gaussian 86(TM) system (copyright 1986, Carnegie Mellon
University), and the Gaussian 82(TM) system (copyright 1983,
Carnegie Mellon University). Gaussian is a federally registered
trademark of Gaussian, Inc.
This software contains proprietary and confidential information,
including trade secrets, belonging to Gaussian, Inc.
This software is provided under written license and may be
used, copied, transmitted, or stored only in accord with that
written license.
The following legend is applicable only to US Government
contracts under FAR:
RESTRICTED RIGHTS LEGEND
Use, reproduction and disclosure by the US Government is
subject to restrictions as set forth in subparagraphs (a)
and (c) of the Commercial Computer Software - Restricted
Rights clause in FAR 52.227-19.
Gaussian, Inc.
340 Quinnipiac St., Bldg. 40, Wallingford CT 06492
---------------------------------------------------------------
Warning -- This program may not be used in any manner that
competes with the business of Gaussian, Inc. or will provide
assistance to any competitor of Gaussian, Inc. The licensee
of this program is prohibited from giving any competitor of
Gaussian, Inc. access to this program. By using this program,
the user acknowledges that Gaussian, Inc. is engaged in the
business of creating and licensing software in the field of
computational chemistry and represents and warrants to the
licensee that it is not a competitor of Gaussian, Inc. and that
it will not use this program in any manner prohibited above.
---------------------------------------------------------------
Cite this work as:
Gaussian 09, Revision D.01,
M. J. Frisch, G. W. Trucks, H. B. Schlegel, G. E. Scuseria,
M. A. Robb, J. R. Cheeseman, G. Scalmani, V. Barone, B. Mennucci,
G. A. Petersson, H. Nakatsuji, M. Caricato, X. Li, H. P. Hratchian,
A. F. Izmaylov, J. Bloino, G. Zheng, J. L. Sonnenberg, M. Hada,
M. Ehara, K. Toyota, R. Fukuda, J. Hasegawa, M. Ishida, T. Nakajima,
Y. Honda, O. Kitao, H. Nakai, T. Vreven, J. A. Montgomery, Jr.,
J. E. Peralta, F. Ogliaro, M. Bearpark, J. J. Heyd, E. Brothers,
K. N. Kudin, V. N. Staroverov, T. Keith, R. Kobayashi, J. Normand,
K. Raghavachari, A. Rendell, J. C. Burant, S. S. Iyengar, J. Tomasi,
M. Cossi, N. Rega, J. M. Millam, M. Klene, J. E. Knox, J. B. Cross,
V. Bakken, C. Adamo, J. Jaramillo, R. Gomperts, R. E. Stratmann,
O. Yazyev, A. J. Austin, R. Cammi, C. Pomelli, J. W. Ochterski,
R. L. Martin, K. Morokuma, V. G. Zakrzewski, G. A. Voth,
P. Salvador, J. J. Dannenberg, S. Dapprich, A. D. Daniels,
O. Farkas, J. B. Foresman, J. V. Ortiz, J. Cioslowski,
and D. J. Fox, Gaussian, Inc., Wallingford CT, 2013.
******************************************
Gaussian 09: ES64L-G09RevD.01 24-Apr-2013
7-Dec-2020
******************************************
%mem=3400MB
%chk=58528A1af.chk
--------------------------------
# b3lyp/6-31g(2df,p) NoSymm Freq
--------------------------------
1/10=4,30=1,38=1/1,3;
2/12=2,15=1,17=6,18=5,40=1/2;
3/5=1,6=6,7=104,11=2,16=1,25=1,30=1,71=2,74=-5,140=1/1,2,3;
4//1;
5/5=2,38=5,98=1/2;
8/6=4,10=90,11=11/1;
11/6=1,8=1,9=11,15=111,16=1,31=1/1,2,10;
10/6=1,31=1/2;
6/7=2,8=2,9=2,10=2,18=1,28=1/1;
7/8=1,10=1,25=1,30=1/1,2,3,16;
1/10=4,30=1/3;
99//99;
---------
58528A1af
---------
Symbolic Z-matrix:
Charge = 0 Multiplicity = 1
C -2.24708 -1.81137 -0.18144
C -2.25734 -0.35404 0.2815
N -1.12683 0.42827 -0.22237
C -1.40866 1.85471 -0.15986
C 0.13188 0.09161 0.43954
C 1.37285 0.46262 -0.39254
C 2.65081 0.10391 0.31
C 3.56359 -0.75096 -0.141
H -3.1594 -2.31613 0.15222
H -1.39968 -2.37394 0.22118
H -2.1993 -1.86309 -1.27301
H -3.17009 0.12059 -0.09561
H -2.32387 -0.31003 1.38693
H -0.58919 2.4279 -0.60116
H -1.55826 2.2233 0.87423
H -2.31342 2.07966 -0.73282
H 0.15726 -0.98778 0.61002
H 0.19991 0.56565 1.43982
H 1.31268 -0.04327 -1.36173
H 1.3679 1.54164 -0.5959
H 2.81365 0.59154 1.27167
H 3.44548 -1.2613 -1.09309
H 4.4678 -0.97146 0.41667
GradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGrad
Berny optimization.
Initialization pass.
Trust Radius=3.00D-01 FncErr=1.00D-07 GrdErr=1.00D-07
Number of steps in this run= 2 maximum allowed number of steps= 2.
GradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGrad
Input orientation:
---------------------------------------------------------------------
Center Atomic Atomic Coordinates (Angstroms)
Number Number Type X Y Z
---------------------------------------------------------------------
1 6 0 -2.247082 -1.811368 -0.181442
2 6 0 -2.257339 -0.354042 0.281495
3 7 0 -1.126830 0.428269 -0.222368
4 6 0 -1.408658 1.854705 -0.159859
5 6 0 0.131882 0.091611 0.439537
6 6 0 1.372853 0.462619 -0.392538
7 6 0 2.650807 0.103907 0.310000
8 6 0 3.563591 -0.750958 -0.141000
9 1 0 -3.159397 -2.316133 0.152221
10 1 0 -1.399676 -2.373939 0.221182
11 1 0 -2.199295 -1.863087 -1.273013
12 1 0 -3.170095 0.120586 -0.095610
13 1 0 -2.323868 -0.310027 1.386931
14 1 0 -0.589191 2.427905 -0.601156
15 1 0 -1.558258 2.223299 0.874226
16 1 0 -2.313423 2.079660 -0.732822
17 1 0 0.157262 -0.987779 0.610018
18 1 0 0.199905 0.565653 1.439816
19 1 0 1.312682 -0.043274 -1.361725
20 1 0 1.367904 1.541637 -0.595902
21 1 0 2.813649 0.591535 1.271674
22 1 0 3.445484 -1.261303 -1.093093
23 1 0 4.467795 -0.971456 0.416672
---------------------------------------------------------------------
Distance matrix (angstroms):
1 2 3 4 5
1 C 0.000000
2 C 1.529122 0.000000
3 N 2.504519 1.464220 0.000000
4 C 3.760786 2.406993 1.455354 0.000000
5 C 3.109086 2.435562 1.461442 2.416824 0.000000
6 C 4.280129 3.781475 2.505704 3.119110 1.539482
7 C 5.281961 4.929546 3.828729 4.445820 2.522284
8 C 5.906778 5.849724 4.837070 5.613653 3.581002
9 H 1.094732 2.163382 3.435606 4.534134 4.088068
10 H 1.093933 2.195269 2.850184 4.245786 2.910719
11 H 1.093840 2.167275 2.739407 3.960580 3.491140
12 H 2.142841 1.095721 2.070186 2.472642 3.345187
13 H 2.172490 1.108311 2.137247 2.813580 2.662626
14 H 4.571236 3.361699 2.105013 1.093082 2.657303
15 H 4.226991 2.735458 2.147273 1.107959 2.754927
16 H 3.930461 2.637213 2.096583 1.094299 3.362481
17 H 2.661875 2.517905 2.084934 3.335346 1.093065
18 H 3.777096 2.868030 2.131186 2.609232 1.109009
19 H 4.146220 3.942309 2.733442 3.528810 2.158015
20 H 4.947984 4.183995 2.757320 2.827975 2.168516
21 H 5.787615 5.252570 4.217368 4.633871 2.852061
22 H 5.791285 5.935891 4.951653 5.843212 3.893493
23 H 6.793583 6.754769 5.802364 6.546165 4.464390
6 7 8 9 10
6 C 0.000000
7 C 1.501799 0.000000
8 C 2.517017 1.329425 0.000000
9 H 5.344110 6.296027 6.909003 0.000000
10 H 4.013680 4.749107 5.234430 1.762020 0.000000
11 H 4.352515 5.467951 5.977386 1.777171 1.770022
12 H 4.565471 5.835041 6.790006 2.449313 3.075288
13 H 4.174834 5.106713 6.098456 2.499416 2.544177
14 H 2.784868 4.090081 5.250001 5.447883 4.938707
15 H 3.646381 4.746199 6.009178 4.867379 4.646096
16 H 4.039709 5.443772 6.549958 4.563110 4.645385
17 H 2.141596 2.738532 3.496168 3.601990 2.120540
18 H 2.178060 2.737995 3.942947 4.609501 3.561591
19 H 1.094930 2.146370 2.656610 5.239982 3.910816
20 H 1.098026 2.129217 3.206863 5.994875 4.864037
21 H 2.205020 1.090466 2.088145 6.736838 5.258296
22 H 2.785405 2.112813 1.086684 6.803523 5.142067
23 H 3.505718 2.114055 1.084990 7.749332 6.035925
11 12 13 14 15
11 H 0.000000
12 H 2.502736 0.000000
13 H 3.082664 1.760527 0.000000
14 H 4.632110 3.498623 3.802350 0.000000
15 H 4.660484 2.821348 2.695694 1.776994 0.000000
16 H 3.981217 2.231120 3.194380 1.763969 1.781435
17 H 3.140912 3.577386 2.686810 3.700139 3.650183
18 H 4.360548 3.729949 2.671899 2.873364 2.481697
19 H 3.956459 4.661029 4.566264 3.209721 4.287088
20 H 4.977503 4.781539 4.581426 2.148423 3.344901
21 H 6.134347 6.156009 5.217296 4.296402 4.683395
22 H 5.679617 6.831579 6.351446 5.489158 6.407045
23 H 6.935426 7.732551 6.892429 6.177761 6.835871
16 17 18 19 20
16 H 0.000000
17 H 4.161332 0.000000
18 H 3.650944 1.761685 0.000000
19 H 4.248647 2.472823 3.075337 0.000000
20 H 3.722954 3.052514 2.541833 1.761101 0.000000
21 H 5.702577 3.160445 2.619275 3.096881 2.545724
22 H 6.667596 3.713194 4.504129 2.470749 3.524203
23 H 7.524331 4.314898 4.650206 3.738844 4.117070
21 22 23
21 H 0.000000
22 H 3.069910 0.000000
23 H 2.431084 1.846218 0.000000
Symmetry turned off by external request.
Stoichiometry C7H15N
Framework group C1[X(C7H15N)]
Deg. of freedom 63
Full point group C1 NOp 1
Rotational constants (GHZ): 3.3291745 0.9569188 0.7920085
Standard basis: 6-31G(2df,p) (6D, 7F)
299 basis functions, 457 primitive gaussians, 323 cartesian basis functions
32 alpha electrons 32 beta electrons
nuclear repulsion energy 382.0824513712 Hartrees.
NAtoms= 23 NActive= 23 NUniq= 23 SFac= 1.00D+00 NAtFMM= 60 NAOKFM=F Big=F
Integral buffers will be 131072 words long.
Raffenetti 2 integral format.
Two-electron integral symmetry is turned off.
One-electron integrals computed using PRISM.
NBasis= 299 RedAO= T EigKep= 3.51D-04 NBF= 299
NBsUse= 299 1.00D-06 EigRej= -1.00D+00 NBFU= 299
ExpMin= 1.61D-01 ExpMax= 4.17D+03 ExpMxC= 6.27D+02 IAcc=1 IRadAn= 1 AccDes= 0.00D+00
Harris functional with IExCor= 402 and IRadAn= 1 diagonalized for initial guess.
HarFok: IExCor= 402 AccDes= 0.00D+00 IRadAn= 1 IDoV= 1 UseB2=F ITyADJ=14
ICtDFT= 3500011 ScaDFX= 1.000000 1.000000 1.000000 1.000000
FoFCou: FMM=F IPFlag= 0 FMFlag= 100000 FMFlg1= 0
NFxFlg= 0 DoJE=T BraDBF=F KetDBF=T FulRan=T
wScrn= 0.000000 ICntrl= 500 IOpCl= 0 I1Cent= 200000004 NGrid= 0
NMat0= 1 NMatS0= 1 NMatT0= 0 NMatD0= 1 NMtDS0= 0 NMtDT0= 0
Symmetry not used in FoFCou.
Requested convergence on RMS density matrix=1.00D-08 within 128 cycles.
Requested convergence on MAX density matrix=1.00D-06.
Requested convergence on energy=1.00D-06.
No special actions if energy rises.
Integral accuracy reduced to 1.0D-05 until final iterations.
Initial convergence to 1.0D-05 achieved. Increase integral accuracy.
SCF Done: E(RB3LYP) = -330.519954181 A.U. after 13 cycles
NFock= 13 Conv=0.38D-08 -V/T= 2.0088
DoSCS=F DFT=T ScalE2(SS,OS)= 1.000000 1.000000
Range of M.O.s used for correlation: 1 299
NBasis= 299 NAE= 32 NBE= 32 NFC= 0 NFV= 0
NROrb= 299 NOA= 32 NOB= 32 NVA= 267 NVB= 267
**** Warning!!: The largest alpha MO coefficient is 0.42424679D+02
Symmetrizing basis deriv contribution to polar:
IMax=3 JMax=2 DiffMx= 0.00D+00
G2DrvN: will do 24 centers at a time, making 1 passes.
Calling FoFCou, ICntrl= 3107 FMM=F I1Cent= 0 AccDes= 0.00D+00.
End of G2Drv F.D. properties file 721 does not exist.
End of G2Drv F.D. properties file 722 does not exist.
End of G2Drv F.D. properties file 788 does not exist.
IDoAtm=11111111111111111111111
Differentiating once with respect to electric field.
with respect to dipole field.
Differentiating once with respect to nuclear coordinates.
There are 72 degrees of freedom in the 1st order CPHF. IDoFFX=6 NUNeed= 3.
69 vectors produced by pass 0 Test12= 1.19D-14 1.39D-09 XBig12= 6.51D+01 4.15D+00.
AX will form 69 AO Fock derivatives at one time.
69 vectors produced by pass 1 Test12= 1.19D-14 1.39D-09 XBig12= 4.37D+00 4.97D-01.
69 vectors produced by pass 2 Test12= 1.19D-14 1.39D-09 XBig12= 3.75D-02 2.41D-02.
69 vectors produced by pass 3 Test12= 1.19D-14 1.39D-09 XBig12= 7.44D-05 9.41D-04.
69 vectors produced by pass 4 Test12= 1.19D-14 1.39D-09 XBig12= 9.52D-08 3.79D-05.
31 vectors produced by pass 5 Test12= 1.19D-14 1.39D-09 XBig12= 6.63D-11 7.83D-07.
3 vectors produced by pass 6 Test12= 1.19D-14 1.39D-09 XBig12= 7.29D-14 3.51D-08.
InvSVY: IOpt=1 It= 1 EMax= 1.78D-15
Solved reduced A of dimension 379 with 72 vectors.
Isotropic polarizability for W= 0.000000 86.28 Bohr**3.
End of Minotr F.D. properties file 721 does not exist.
End of Minotr F.D. properties file 722 does not exist.
End of Minotr F.D. properties file 788 does not exist.
**********************************************************************
Population analysis using the SCF density.
**********************************************************************
Alpha occ. eigenvalues -- -14.31403 -10.20142 -10.20056 -10.19545 -10.18279
Alpha occ. eigenvalues -- -10.17943 -10.17125 -10.17053 -0.91484 -0.79174
Alpha occ. eigenvalues -- -0.74568 -0.71799 -0.66265 -0.62268 -0.56483
Alpha occ. eigenvalues -- -0.54932 -0.48312 -0.46650 -0.45403 -0.44611
Alpha occ. eigenvalues -- -0.42219 -0.41283 -0.39230 -0.38181 -0.36431
Alpha occ. eigenvalues -- -0.35798 -0.34804 -0.34311 -0.33206 -0.32369
Alpha occ. eigenvalues -- -0.25279 -0.20818
Alpha virt. eigenvalues -- 0.02370 0.08818 0.10597 0.11834 0.12778
Alpha virt. eigenvalues -- 0.13783 0.14601 0.15353 0.15538 0.17055
Alpha virt. eigenvalues -- 0.17416 0.18117 0.19069 0.19818 0.20677
Alpha virt. eigenvalues -- 0.21612 0.23376 0.24491 0.25089 0.27133
Alpha virt. eigenvalues -- 0.27992 0.30424 0.35931 0.43497 0.45146
Alpha virt. eigenvalues -- 0.45763 0.47221 0.48581 0.49709 0.51402
Alpha virt. eigenvalues -- 0.52061 0.53909 0.55203 0.56177 0.57282
Alpha virt. eigenvalues -- 0.57861 0.59306 0.62551 0.64595 0.65323
Alpha virt. eigenvalues -- 0.66033 0.66535 0.69012 0.72229 0.72497
Alpha virt. eigenvalues -- 0.73073 0.74046 0.74771 0.75578 0.76381
Alpha virt. eigenvalues -- 0.77153 0.77785 0.78395 0.78587 0.81102
Alpha virt. eigenvalues -- 0.82220 0.82967 0.83230 0.85718 0.86758
Alpha virt. eigenvalues -- 0.87466 0.88131 0.89542 0.92088 0.94000
Alpha virt. eigenvalues -- 0.95022 1.02405 1.04339 1.09097 1.11789
Alpha virt. eigenvalues -- 1.12162 1.16151 1.16590 1.17640 1.20334
Alpha virt. eigenvalues -- 1.24179 1.25060 1.28827 1.29485 1.33223
Alpha virt. eigenvalues -- 1.37255 1.41579 1.42526 1.44908 1.47822
Alpha virt. eigenvalues -- 1.48617 1.51638 1.52879 1.55800 1.57682
Alpha virt. eigenvalues -- 1.58602 1.60963 1.62916 1.64466 1.67615
Alpha virt. eigenvalues -- 1.69891 1.71887 1.73283 1.75704 1.77448
Alpha virt. eigenvalues -- 1.79642 1.83900 1.84752 1.90590 1.90801
Alpha virt. eigenvalues -- 1.93301 1.95962 1.97767 1.98709 2.02714
Alpha virt. eigenvalues -- 2.03781 2.06151 2.11861 2.16448 2.16752
Alpha virt. eigenvalues -- 2.18270 2.23391 2.24972 2.27170 2.30115
Alpha virt. eigenvalues -- 2.30405 2.34401 2.36783 2.37579 2.41173
Alpha virt. eigenvalues -- 2.46232 2.49194 2.50991 2.55719 2.61432
Alpha virt. eigenvalues -- 2.62047 2.67047 2.70031 2.72486 2.73351
Alpha virt. eigenvalues -- 2.76700 2.77489 2.78529 2.79322 2.81556
Alpha virt. eigenvalues -- 2.82727 2.83555 2.84199 2.86438 2.86851
Alpha virt. eigenvalues -- 2.87902 2.90257 2.92116 2.92761 2.94776
Alpha virt. eigenvalues -- 2.95672 2.97387 2.97931 2.99553 3.01970
Alpha virt. eigenvalues -- 3.04153 3.05739 3.08316 3.13466 3.17893
Alpha virt. eigenvalues -- 3.19265 3.22193 3.23814 3.24961 3.26262
Alpha virt. eigenvalues -- 3.28445 3.30968 3.33269 3.35318 3.36628
Alpha virt. eigenvalues -- 3.37550 3.41324 3.42318 3.45064 3.47013
Alpha virt. eigenvalues -- 3.49989 3.52658 3.54368 3.57301 3.59505
Alpha virt. eigenvalues -- 3.60139 3.61888 3.63761 3.65048 3.67633
Alpha virt. eigenvalues -- 3.68929 3.69634 3.74126 3.77424 3.78121
Alpha virt. eigenvalues -- 3.82445 3.83629 3.86317 3.88111 3.92068
Alpha virt. eigenvalues -- 3.94451 3.98023 3.99550 4.02925 4.11383
Alpha virt. eigenvalues -- 4.14275 4.19910 4.22344 4.27900 4.31229
Alpha virt. eigenvalues -- 4.38595 4.41242 4.42858 4.44377 4.46080
Alpha virt. eigenvalues -- 4.46644 4.47966 4.48744 4.50020 4.51539
Alpha virt. eigenvalues -- 4.55256 4.56159 4.57873 4.59204 4.60289
Alpha virt. eigenvalues -- 4.61571 4.65034 4.66297 4.67121 4.68172
Alpha virt. eigenvalues -- 4.69889 4.72124 4.73021 4.75403 4.76298
Alpha virt. eigenvalues -- 4.76770 4.81750 4.83833 4.86872 4.88993
Alpha virt. eigenvalues -- 4.91750 4.92912 4.95515 4.96694 4.99759
Alpha virt. eigenvalues -- 5.06110 5.06935 5.08050 5.11306 5.17202
Alpha virt. eigenvalues -- 5.27341 5.32633 5.34352 5.37874 5.42902
Alpha virt. eigenvalues -- 5.44504 5.48258 5.55034 5.58886 5.60416
Alpha virt. eigenvalues -- 5.75314 5.80465 6.08913 10.28566 11.06954
Alpha virt. eigenvalues -- 11.42326 11.44900 11.59179 11.83764 12.06433
Alpha virt. eigenvalues -- 12.29212 15.81248
Condensed to atoms (all electrons):
1 2 3 4 5 6
1 C 4.983097 0.410257 -0.039985 0.003725 -0.001225 0.000196
2 C 0.410257 4.798991 0.394980 -0.063807 -0.054894 0.003270
3 N -0.039985 0.394980 6.156977 0.402739 0.382593 -0.033191
4 C 0.003725 -0.063807 0.402739 4.962140 -0.072437 -0.001429
5 C -0.001225 -0.054894 0.382593 -0.072437 4.897250 0.406845
6 C 0.000196 0.003270 -0.033191 -0.001429 0.406845 4.948120
7 C -0.000001 -0.000228 0.003009 -0.000022 -0.043117 0.385035
8 C 0.000000 0.000000 -0.000008 0.000000 -0.002142 -0.009350
9 H 0.363456 -0.021798 0.002723 -0.000177 -0.000011 -0.000003
10 H 0.378254 -0.026972 -0.002568 -0.000004 -0.001355 -0.000246
11 H 0.370686 -0.026809 0.003640 0.000317 0.000214 -0.000078
12 H -0.030825 0.366114 -0.024972 -0.007854 0.005417 -0.000244
13 H -0.050730 0.343544 -0.040920 -0.000890 -0.009061 -0.000107
14 H -0.000243 0.005604 -0.024638 0.376424 -0.001419 -0.000398
15 H -0.000201 -0.007011 -0.041342 0.351228 -0.007472 -0.000647
16 H 0.000390 -0.003890 -0.024873 0.376269 0.005230 0.000063
17 H 0.001060 -0.007694 -0.019010 0.006658 0.352000 -0.029338
18 H -0.000520 -0.002657 -0.039863 -0.009811 0.338780 -0.055017
19 H -0.000036 0.000242 0.004460 0.000316 -0.028820 0.346640
20 H -0.000017 0.000048 -0.002137 -0.000101 -0.038008 0.358600
21 H 0.000000 0.000004 0.000025 0.000002 -0.001711 -0.063468
22 H 0.000000 0.000001 -0.000004 0.000000 0.000362 -0.017197
23 H 0.000000 0.000000 0.000001 0.000000 -0.000074 0.004970
7 8 9 10 11 12
1 C -0.000001 0.000000 0.363456 0.378254 0.370686 -0.030825
2 C -0.000228 0.000000 -0.021798 -0.026972 -0.026809 0.366114
3 N 0.003009 -0.000008 0.002723 -0.002568 0.003640 -0.024972
4 C -0.000022 0.000000 -0.000177 -0.000004 0.000317 -0.007854
5 C -0.043117 -0.002142 -0.000011 -0.001355 0.000214 0.005417
6 C 0.385035 -0.009350 -0.000003 -0.000246 -0.000078 -0.000244
7 C 4.608825 0.704178 0.000000 -0.000010 0.000008 0.000001
8 C 0.704178 4.962934 0.000000 -0.000001 0.000000 0.000000
9 H 0.000000 0.000000 0.603485 -0.030334 -0.027764 -0.003148
10 H -0.000010 -0.000001 -0.030334 0.588943 -0.033103 0.005279
11 H 0.000008 0.000000 -0.027764 -0.033103 0.588092 -0.004774
12 H 0.000001 0.000000 -0.003148 0.005279 -0.004774 0.640592
13 H 0.000055 0.000000 0.002452 -0.004558 0.006500 -0.047325
14 H -0.000298 0.000003 0.000002 0.000007 -0.000014 0.000251
15 H 0.000140 0.000000 0.000024 -0.000002 0.000048 -0.001003
16 H -0.000007 0.000000 -0.000023 0.000003 -0.000057 0.006594
17 H 0.001180 0.002045 -0.000282 0.006055 0.000015 0.000254
18 H 0.005229 0.000004 0.000025 0.000080 0.000099 -0.000265
19 H -0.017670 -0.011974 0.000001 0.000038 0.000104 -0.000004
20 H -0.024981 0.001393 0.000000 0.000000 0.000001 0.000007
21 H 0.373709 -0.053306 0.000000 0.000000 0.000000 0.000000
22 H -0.016372 0.361053 0.000000 0.000000 0.000000 0.000000
23 H -0.013830 0.364620 0.000000 0.000000 0.000000 0.000000
13 14 15 16 17 18
1 C -0.050730 -0.000243 -0.000201 0.000390 0.001060 -0.000520
2 C 0.343544 0.005604 -0.007011 -0.003890 -0.007694 -0.002657
3 N -0.040920 -0.024638 -0.041342 -0.024873 -0.019010 -0.039863
4 C -0.000890 0.376424 0.351228 0.376269 0.006658 -0.009811
5 C -0.009061 -0.001419 -0.007472 0.005230 0.352000 0.338780
6 C -0.000107 -0.000398 -0.000647 0.000063 -0.029338 -0.055017
7 C 0.000055 -0.000298 0.000140 -0.000007 0.001180 0.005229
8 C 0.000000 0.000003 0.000000 0.000000 0.002045 0.000004
9 H 0.002452 0.000002 0.000024 -0.000023 -0.000282 0.000025
10 H -0.004558 0.000007 -0.000002 0.000003 0.006055 0.000080
11 H 0.006500 -0.000014 0.000048 -0.000057 0.000015 0.000099
12 H -0.047325 0.000251 -0.001003 0.006594 0.000254 -0.000265
13 H 0.708481 -0.000439 0.010691 -0.001086 -0.000763 0.010735
14 H -0.000439 0.595846 -0.045088 -0.027147 0.000031 -0.001774
15 H 0.010691 -0.045088 0.679742 -0.043172 -0.000064 0.015935
16 H -0.001086 -0.027147 -0.043172 0.596164 -0.000271 -0.000244
17 H -0.000763 0.000031 -0.000064 -0.000271 0.627839 -0.044846
18 H 0.010735 -0.001774 0.015935 -0.000244 -0.044846 0.706190
19 H 0.000055 -0.000083 0.000114 -0.000040 -0.005928 0.006819
20 H -0.000004 0.005405 0.000129 -0.000188 0.006386 -0.005138
21 H 0.000002 0.000006 0.000009 0.000000 -0.000219 0.005030
22 H 0.000000 0.000000 0.000000 0.000000 0.000088 0.000024
23 H 0.000000 0.000000 0.000000 0.000000 -0.000048 0.000007
19 20 21 22 23
1 C -0.000036 -0.000017 0.000000 0.000000 0.000000
2 C 0.000242 0.000048 0.000004 0.000001 0.000000
3 N 0.004460 -0.002137 0.000025 -0.000004 0.000001
4 C 0.000316 -0.000101 0.000002 0.000000 0.000000
5 C -0.028820 -0.038008 -0.001711 0.000362 -0.000074
6 C 0.346640 0.358600 -0.063468 -0.017197 0.004970
7 C -0.017670 -0.024981 0.373709 -0.016372 -0.013830
8 C -0.011974 0.001393 -0.053306 0.361053 0.364620
9 H 0.000001 0.000000 0.000000 0.000000 0.000000
10 H 0.000038 0.000000 0.000000 0.000000 0.000000
11 H 0.000104 0.000001 0.000000 0.000000 0.000000
12 H -0.000004 0.000007 0.000000 0.000000 0.000000
13 H 0.000055 -0.000004 0.000002 0.000000 0.000000
14 H -0.000083 0.005405 0.000006 0.000000 0.000000
15 H 0.000114 0.000129 0.000009 0.000000 0.000000
16 H -0.000040 -0.000188 0.000000 0.000000 0.000000
17 H -0.005928 0.006386 -0.000219 0.000088 -0.000048
18 H 0.006819 -0.005138 0.005030 0.000024 0.000007
19 H 0.625901 -0.039253 0.006012 0.006889 -0.000021
20 H -0.039253 0.635287 -0.002055 0.000114 -0.000223
21 H 0.006012 -0.002055 0.653213 0.007185 -0.009388
22 H 0.006889 0.000114 0.007185 0.602149 -0.047012
23 H -0.000021 -0.000223 -0.009388 -0.047012 0.592081
Mulliken charges:
1
1 C -0.387337
2 C -0.107295
3 N -0.057636
4 C -0.323285
5 C -0.126943
6 C -0.243025
7 C 0.035167
8 C -0.319449
9 H 0.111373
10 H 0.120493
11 H 0.122876
12 H 0.095905
13 H 0.073369
14 H 0.117960
15 H 0.087944
16 H 0.116287
17 H 0.104854
18 H 0.071180
19 H 0.106238
20 H 0.104735
21 H 0.084950
22 H 0.102720
23 H 0.108918
Sum of Mulliken charges = 0.00000
Mulliken charges with hydrogens summed into heavy atoms:
1
1 C -0.032594
2 C 0.061980
3 N -0.057636
4 C -0.001094
5 C 0.049090
6 C -0.032052
7 C 0.120118
8 C -0.107811
APT charges:
1
1 C 0.046932
2 C 0.400271
3 N -0.649781
4 C 0.334319
5 C 0.386195
6 C 0.050392
7 C 0.081467
8 C -0.108576
9 H -0.028712
10 H -0.018705
11 H -0.013476
12 H -0.054653
13 H -0.110106
14 H -0.021667
15 H -0.092052
16 H -0.031426
17 H -0.025211
18 H -0.100715
19 H -0.030708
20 H -0.037266
21 H -0.010469
22 H 0.018362
23 H 0.015585
Sum of APT charges = 0.00000
APT charges with hydrogens summed into heavy atoms:
1
1 C -0.013961
2 C 0.235512
3 N -0.649781
4 C 0.189174
5 C 0.260269
6 C -0.017582
7 C 0.070998
8 C -0.074629
Electronic spatial extent (au): <R**2>= 1528.2749
Charge= 0.0000 electrons
Dipole moment (field-independent basis, Debye):
X= -0.4429 Y= 0.2163 Z= 0.4366 Tot= 0.6585
Quadrupole moment (field-independent basis, Debye-Ang):
XX= -51.5454 YY= -51.4766 ZZ= -52.7789
XY= -0.4813 XZ= 0.3508 YZ= 0.4083
Traceless Quadrupole moment (field-independent basis, Debye-Ang):
XX= 0.3882 YY= 0.4570 ZZ= -0.8453
XY= -0.4813 XZ= 0.3508 YZ= 0.4083
Octapole moment (field-independent basis, Debye-Ang**2):
XXX= -10.9956 YYY= 3.6005 ZZZ= -1.2526 XYY= -2.1233
XXY= -3.6150 XXZ= 2.2116 XZZ= 1.4058 YZZ= -0.2191
YYZ= -1.9748 XYZ= 3.1665
Hexadecapole moment (field-independent basis, Debye-Ang**3):
XXXX= -1485.4104 YYYY= -467.7192 ZZZZ= -133.2638 XXXY= -24.4145
XXXZ= 25.8642 YYYX= 1.0265 YYYZ= -4.5778 ZZZX= 1.7471
ZZZY= 3.6747 XXYY= -327.6933 XXZZ= -271.1664 YYZZ= -98.5732
XXYZ= 2.4741 YYXZ= -1.0550 ZZXY= -0.8715
N-N= 3.820824513712D+02 E-N=-1.529091904017D+03 KE= 3.276418437227D+02
Exact polarizability: 104.127 -8.366 83.044 -0.489 4.308 71.655
Approx polarizability: 127.552 -14.483 116.914 -1.919 7.821 109.996
Calling FoFJK, ICntrl= 100127 FMM=F ISym2X=0 I1Cent= 0 IOpClX= 0 NMat=1 NMatS=1 NMatT=0.
Full mass-weighted force constant matrix:
Low frequencies --- -12.6686 -0.0004 -0.0003 0.0010 8.3743 18.3840
Low frequencies --- 44.4370 63.2403 96.2839
Diagonal vibrational polarizability:
4.8046236 4.0711417 3.5094591
Harmonic frequencies (cm**-1), IR intensities (KM/Mole), Raman scattering
activities (A**4/AMU), depolarization ratios for plane and unpolarized
incident light, reduced masses (AMU), force constants (mDyne/A),
and normal coordinates:
1 2 3
A A A
Frequencies -- 44.1413 63.2181 96.2554
Red. masses -- 1.9299 2.9835 1.6786
Frc consts -- 0.0022 0.0070 0.0092
IR Inten -- 0.0024 0.0072 0.3211
Atom AN X Y Z X Y Z X Y Z
1 6 0.01 0.02 -0.10 0.21 -0.05 -0.01 0.07 -0.03 0.09
2 6 0.02 -0.02 0.03 0.04 -0.04 -0.04 -0.05 0.04 -0.12
3 7 -0.01 0.02 0.04 0.01 0.05 0.02 -0.01 0.03 -0.02
4 6 -0.03 0.01 0.08 -0.09 0.03 0.00 0.02 0.03 0.12
5 6 0.02 0.03 0.01 0.01 0.14 0.06 -0.02 -0.04 -0.04
6 6 -0.02 -0.12 -0.12 0.00 0.12 0.03 -0.02 -0.06 -0.05
7 6 0.01 0.09 -0.08 0.00 -0.01 -0.03 -0.01 0.00 -0.02
8 6 0.00 -0.03 0.12 -0.18 -0.21 -0.02 0.02 0.02 0.01
9 1 0.06 -0.04 -0.05 0.22 -0.12 -0.08 -0.07 0.06 -0.16
10 1 0.07 0.01 -0.23 0.22 0.03 0.08 -0.10 -0.01 0.48
11 1 -0.10 0.12 -0.10 0.31 -0.07 0.00 0.45 -0.18 0.12
12 1 0.00 0.01 0.11 0.03 -0.13 -0.11 0.00 -0.04 -0.35
13 1 0.07 -0.11 0.04 -0.04 -0.02 -0.05 -0.26 0.18 -0.13
14 1 -0.02 0.04 0.13 -0.10 0.07 0.04 0.05 0.07 0.22
15 1 -0.06 -0.02 0.09 -0.18 0.02 -0.02 -0.02 -0.08 0.15
16 1 -0.01 0.03 0.06 -0.07 -0.03 -0.06 0.05 0.11 0.10
17 1 -0.02 0.05 0.14 0.05 0.15 0.12 -0.05 -0.05 -0.07
18 1 0.10 0.15 -0.06 -0.01 0.20 0.03 0.01 -0.08 -0.02
19 1 -0.04 -0.35 0.00 -0.07 0.15 0.02 0.00 -0.10 -0.02
20 1 -0.07 -0.17 -0.38 0.05 0.12 0.07 -0.04 -0.07 -0.09
21 1 0.05 0.36 -0.22 0.15 0.04 -0.08 -0.04 0.04 -0.04
22 1 -0.04 -0.30 0.27 -0.34 -0.27 0.03 0.05 -0.01 0.03
23 1 0.03 0.13 0.15 -0.18 -0.33 -0.06 0.03 0.08 0.03
4 5 6
A A A
Frequencies -- 104.1999 173.2189 214.4294
Red. masses -- 2.3996 2.1283 1.2433
Frc consts -- 0.0154 0.0376 0.0337
IR Inten -- 0.2683 0.1330 0.5041
Atom AN X Y Z X Y Z X Y Z
1 6 0.06 0.01 -0.05 -0.09 0.00 -0.04 -0.07 -0.01 0.04
2 6 -0.03 0.01 -0.03 -0.04 0.00 -0.04 0.00 0.01 -0.05
3 7 -0.01 0.03 0.07 0.04 -0.06 0.06 0.02 -0.01 -0.05
4 6 -0.04 0.02 -0.07 0.09 -0.05 -0.06 -0.05 -0.02 0.04
5 6 -0.04 0.10 0.16 0.01 -0.06 0.12 0.01 0.02 0.00
6 6 -0.04 -0.15 0.05 -0.02 0.02 0.09 0.03 0.02 0.02
7 6 0.00 -0.11 0.01 0.09 0.14 -0.05 0.04 0.01 0.00
8 6 0.10 0.07 -0.12 -0.05 0.00 -0.06 0.02 -0.01 -0.01
9 1 0.06 -0.04 -0.11 -0.22 0.10 -0.25 0.02 0.00 0.30
10 1 0.07 0.05 -0.02 -0.24 -0.08 0.15 0.04 0.03 -0.12
11 1 0.12 0.04 -0.05 0.15 0.00 -0.03 -0.32 -0.11 0.03
12 1 -0.01 -0.01 -0.10 0.02 0.06 -0.14 0.02 0.02 -0.08
13 1 -0.13 -0.01 -0.03 -0.17 0.01 -0.05 0.00 0.07 -0.05
14 1 0.02 0.00 0.03 0.12 -0.10 -0.05 0.13 0.07 0.50
15 1 -0.22 0.09 -0.12 0.03 0.04 -0.09 -0.51 -0.20 0.03
16 1 0.05 -0.03 -0.23 0.13 -0.06 -0.13 0.20 0.04 -0.33
17 1 -0.10 0.14 0.42 0.03 -0.06 0.09 0.02 0.02 0.01
18 1 -0.01 0.33 0.05 -0.02 -0.07 0.13 -0.02 0.03 0.00
19 1 -0.13 -0.29 0.14 -0.06 0.01 0.10 0.03 0.02 0.01
20 1 0.02 -0.18 -0.13 -0.12 0.01 0.09 0.03 0.02 0.02
21 1 -0.04 -0.20 0.06 0.31 0.36 -0.20 0.08 0.04 -0.02
22 1 0.15 0.17 -0.18 -0.30 -0.21 0.09 -0.03 -0.04 0.01
23 1 0.14 0.12 -0.17 0.07 0.08 -0.22 0.03 -0.01 -0.04
7 8 9
A A A
Frequencies -- 245.3530 291.0447 341.4788
Red. masses -- 1.3331 1.9227 2.2873
Frc consts -- 0.0473 0.0960 0.1571
IR Inten -- 0.1067 0.4454 0.7520
Atom AN X Y Z X Y Z X Y Z
1 6 0.05 -0.01 0.02 0.12 0.05 -0.01 -0.09 -0.07 0.00
2 6 -0.03 0.02 -0.08 0.02 0.02 0.07 0.05 -0.04 -0.05
3 7 0.00 0.00 -0.02 0.01 -0.01 0.05 0.08 -0.06 -0.01
4 6 0.08 0.02 0.02 0.12 0.01 -0.05 0.14 -0.05 0.05
5 6 -0.03 -0.03 0.03 -0.01 -0.10 -0.01 0.07 0.13 0.06
6 6 -0.04 -0.03 0.04 -0.08 -0.02 -0.03 -0.02 0.05 -0.08
7 6 -0.01 0.02 0.01 -0.11 0.01 0.00 -0.12 0.01 0.00
8 6 -0.03 0.02 -0.02 -0.09 0.05 0.00 -0.10 0.04 0.00
9 1 0.29 -0.16 0.44 0.17 -0.07 -0.05 -0.17 0.08 0.00
10 1 0.32 0.18 -0.27 0.17 0.09 -0.06 -0.17 -0.15 0.05
11 1 -0.38 -0.11 0.01 0.13 0.14 -0.01 -0.08 -0.14 0.00
12 1 -0.01 -0.03 -0.19 0.00 0.01 0.11 0.09 0.01 -0.08
13 1 -0.13 0.08 -0.09 0.06 -0.02 0.08 0.01 -0.03 -0.05
14 1 0.02 -0.02 -0.16 0.35 -0.08 0.28 0.16 -0.08 0.07
15 1 0.32 0.03 0.05 -0.26 0.03 -0.12 0.20 -0.11 0.09
16 1 -0.03 0.06 0.21 0.37 0.10 -0.43 0.14 0.05 0.10
17 1 -0.04 -0.03 0.04 -0.01 -0.12 -0.14 0.15 0.17 0.32
18 1 -0.07 -0.02 0.03 0.04 -0.22 0.04 0.07 0.39 -0.07
19 1 -0.04 -0.05 0.05 -0.06 0.00 -0.04 -0.07 -0.06 -0.02
20 1 -0.07 -0.04 0.01 -0.12 -0.01 0.00 0.00 0.03 -0.19
21 1 0.04 0.08 -0.03 -0.19 -0.03 0.03 -0.28 -0.17 0.12
22 1 -0.10 -0.03 0.01 -0.05 0.10 -0.03 0.02 0.23 -0.11
23 1 0.01 0.05 -0.08 -0.12 0.02 0.04 -0.21 -0.13 0.11
10 11 12
A A A
Frequencies -- 359.4509 444.3213 463.2382
Red. masses -- 2.2611 2.0808 2.6187
Frc consts -- 0.1721 0.2420 0.3311
IR Inten -- 2.9711 1.2333 1.8418
Atom AN X Y Z X Y Z X Y Z
1 6 -0.03 -0.02 -0.01 -0.01 0.05 0.00 0.05 0.18 0.01
2 6 -0.12 -0.01 -0.04 0.04 0.05 -0.05 0.03 0.11 -0.01
3 7 -0.02 0.00 0.20 0.09 0.02 0.09 0.09 -0.11 -0.09
4 6 -0.01 0.00 -0.03 -0.12 -0.03 -0.01 -0.06 -0.17 0.02
5 6 0.07 0.00 0.02 0.11 -0.07 -0.02 0.02 -0.04 0.09
6 6 0.02 0.10 -0.09 0.06 -0.07 -0.05 -0.08 0.03 0.01
7 6 0.00 -0.03 -0.10 -0.01 0.05 0.10 -0.06 -0.03 -0.11
8 6 0.08 -0.04 0.06 -0.11 0.04 -0.03 0.03 -0.01 0.03
9 1 0.07 -0.11 0.12 0.00 0.10 0.08 0.08 0.09 -0.04
10 1 0.08 0.09 -0.09 0.00 0.04 -0.03 0.09 0.22 -0.02
11 1 -0.15 -0.06 -0.02 -0.08 0.00 0.00 0.09 0.26 0.01
12 1 -0.02 -0.01 -0.30 0.11 0.06 -0.19 0.08 0.15 -0.06
13 1 -0.43 0.00 -0.06 -0.14 0.09 -0.06 0.03 0.24 -0.01
14 1 0.02 -0.08 -0.09 -0.27 0.10 -0.14 -0.23 0.04 -0.01
15 1 -0.07 0.20 -0.11 -0.15 0.06 -0.05 -0.04 -0.32 0.08
16 1 0.03 -0.09 -0.12 -0.21 -0.29 0.03 -0.18 -0.29 0.16
17 1 0.13 -0.02 -0.08 0.07 -0.09 -0.13 0.07 -0.03 0.17
18 1 0.22 -0.09 0.05 0.22 -0.18 0.03 -0.08 0.06 0.04
19 1 -0.06 0.25 -0.16 0.19 -0.26 0.05 -0.23 0.16 -0.04
20 1 0.05 0.13 0.10 -0.05 -0.11 -0.24 -0.12 0.06 0.17
21 1 -0.12 -0.12 -0.04 -0.09 -0.05 0.16 -0.10 -0.05 -0.09
22 1 0.34 -0.03 0.02 -0.25 0.24 -0.12 0.24 -0.08 0.04
23 1 -0.06 -0.04 0.29 -0.10 -0.20 -0.14 -0.06 0.09 0.21
13 14 15
A A A
Frequencies -- 476.6848 649.4334 786.1003
Red. masses -- 2.4848 1.5205 1.2771
Frc consts -- 0.3327 0.3778 0.4650
IR Inten -- 4.7821 9.0734 5.0822
Atom AN X Y Z X Y Z X Y Z
1 6 -0.03 -0.09 0.01 0.00 -0.01 0.00 -0.01 -0.02 0.00
2 6 0.19 -0.03 -0.07 -0.02 0.00 0.00 -0.03 0.00 0.00
3 7 0.10 0.11 0.02 -0.02 0.01 -0.04 0.01 0.00 -0.02
4 6 -0.04 0.12 -0.03 0.00 0.04 -0.01 -0.01 0.06 0.00
5 6 -0.01 -0.06 0.07 -0.04 -0.05 0.07 0.04 -0.09 0.00
6 6 -0.11 -0.02 0.04 -0.01 0.00 0.02 0.02 -0.08 -0.02
7 6 -0.08 -0.04 -0.09 0.11 0.12 -0.07 0.01 0.03 -0.01
8 6 0.02 0.00 0.02 0.02 -0.04 0.01 -0.02 0.01 0.01
9 1 -0.15 0.22 0.15 0.01 -0.04 -0.01 0.02 -0.07 -0.01
10 1 -0.17 -0.28 0.03 0.01 0.01 0.01 0.02 0.04 0.02
11 1 -0.16 -0.27 0.01 0.02 -0.01 0.00 0.03 -0.04 0.00
12 1 0.14 -0.04 0.03 -0.05 -0.01 0.08 -0.04 0.02 0.07
13 1 0.25 -0.09 -0.06 0.07 -0.02 0.01 0.03 -0.04 0.01
14 1 -0.13 0.20 -0.09 0.00 0.04 0.00 -0.04 0.10 0.00
15 1 -0.08 0.17 -0.05 0.00 0.01 0.00 -0.04 0.05 0.00
16 1 -0.08 -0.05 -0.03 0.00 0.06 0.00 -0.02 0.02 -0.01
17 1 -0.12 -0.09 -0.14 -0.07 -0.05 0.02 -0.12 -0.01 0.46
18 1 0.01 -0.25 0.16 -0.12 -0.07 0.08 0.20 0.33 -0.22
19 1 -0.25 0.09 -0.01 -0.04 -0.18 0.11 0.14 0.36 -0.26
20 1 -0.14 0.00 0.17 -0.23 -0.04 -0.19 -0.16 0.02 0.49
21 1 -0.08 0.01 -0.11 -0.07 -0.25 0.15 -0.09 0.04 0.01
22 1 0.17 -0.12 0.07 0.24 0.30 -0.20 -0.09 0.08 -0.01
23 1 -0.01 0.18 0.13 -0.29 -0.54 0.31 -0.03 -0.09 -0.02
16 17 18
A A A
Frequencies -- 806.6665 822.6588 943.4347
Red. masses -- 1.1710 2.3471 1.6185
Frc consts -- 0.4489 0.9359 0.8487
IR Inten -- 2.4080 6.8396 1.2455
Atom AN X Y Z X Y Z X Y Z
1 6 -0.03 0.01 -0.03 0.05 0.11 -0.02 0.01 0.03 0.00
2 6 -0.07 0.01 -0.05 0.12 0.01 -0.10 0.00 -0.02 0.00
3 7 0.02 0.00 0.00 -0.09 0.01 0.13 -0.03 0.00 0.01
4 6 0.00 0.00 0.00 0.01 -0.14 0.02 -0.01 0.00 0.00
5 6 0.04 0.00 0.03 -0.14 0.02 -0.08 0.03 -0.01 -0.05
6 6 0.01 0.02 0.00 -0.03 -0.02 -0.02 0.10 -0.04 0.12
7 6 -0.02 -0.02 0.00 0.06 0.03 0.01 -0.05 0.01 -0.06
8 6 -0.01 0.00 0.00 0.03 -0.01 0.01 -0.09 0.05 -0.08
9 1 0.11 -0.15 0.11 -0.04 0.48 0.28 -0.01 0.09 0.04
10 1 0.07 0.40 0.30 -0.10 0.03 0.18 -0.02 0.00 0.02
11 1 0.15 -0.40 0.00 -0.08 -0.32 0.00 -0.02 -0.02 0.00
12 1 -0.12 0.27 0.40 0.07 0.05 0.08 0.00 -0.03 -0.02
13 1 0.29 -0.35 -0.02 0.15 -0.26 -0.07 -0.04 -0.06 0.00
14 1 -0.03 0.04 -0.01 0.10 -0.30 -0.02 0.03 -0.07 -0.01
15 1 -0.02 0.01 0.00 0.05 0.00 -0.02 0.01 0.04 -0.01
16 1 -0.01 -0.04 0.00 0.07 -0.07 -0.04 0.01 0.04 -0.01
17 1 0.11 -0.02 -0.05 -0.21 0.05 0.10 -0.01 0.01 0.07
18 1 0.03 -0.07 0.06 -0.06 0.17 -0.14 0.03 0.08 -0.09
19 1 -0.03 -0.05 0.03 0.10 0.12 -0.10 0.33 -0.11 0.14
20 1 0.04 0.00 -0.07 -0.05 0.01 0.11 0.08 -0.05 0.03
21 1 0.00 0.01 -0.01 0.02 -0.01 0.04 0.20 -0.14 -0.03
22 1 0.00 -0.03 0.02 -0.03 0.07 -0.03 0.36 -0.31 0.07
23 1 0.02 0.07 -0.01 0.00 -0.18 -0.02 -0.38 0.28 0.48
19 20 21
A A A
Frequencies -- 947.6739 966.4680 1001.3029
Red. masses -- 1.3607 2.4173 1.7400
Frc consts -- 0.7200 1.3303 1.0279
IR Inten -- 32.8390 10.0594 0.7599
Atom AN X Y Z X Y Z X Y Z
1 6 -0.01 -0.02 0.00 0.06 0.15 0.02 0.00 0.00 0.01
2 6 0.00 0.01 0.01 0.00 -0.12 -0.04 -0.01 0.00 -0.01
3 7 0.02 0.01 0.00 -0.10 -0.09 -0.07 -0.02 0.04 -0.02
4 6 0.01 -0.01 0.00 -0.06 0.11 -0.01 -0.02 -0.06 -0.01
5 6 -0.01 0.02 0.00 0.10 -0.08 0.12 -0.02 0.07 0.09
6 6 -0.02 0.00 -0.01 0.03 0.05 -0.06 0.15 -0.11 -0.01
7 6 -0.02 -0.04 0.03 -0.02 -0.04 0.02 -0.03 0.02 -0.08
8 6 0.09 0.12 -0.06 0.02 0.02 0.00 -0.04 0.03 0.03
9 1 0.01 -0.07 -0.02 -0.09 0.53 0.18 0.00 0.00 -0.01
10 1 0.01 0.01 -0.01 -0.11 -0.08 0.05 0.00 -0.03 -0.02
11 1 0.02 0.00 0.00 -0.13 0.04 0.02 -0.01 0.03 0.00
12 1 0.01 0.03 0.00 -0.11 -0.31 -0.03 -0.04 -0.03 0.02
13 1 0.01 0.03 0.00 -0.06 -0.23 -0.04 0.04 0.03 -0.01
14 1 -0.01 0.02 0.00 0.08 -0.08 0.01 0.07 -0.16 0.02
15 1 -0.01 -0.02 0.00 0.06 0.12 0.00 0.07 -0.08 0.02
16 1 0.00 -0.04 0.00 0.00 0.35 0.00 0.00 0.09 0.03
17 1 -0.02 0.01 -0.04 0.29 -0.08 0.11 -0.14 0.01 -0.25
18 1 0.00 -0.02 0.02 0.01 -0.05 0.10 -0.08 -0.25 0.24
19 1 -0.06 0.02 -0.02 -0.08 -0.03 0.00 -0.11 0.15 -0.12
20 1 0.02 0.00 0.02 0.06 0.03 -0.11 0.49 -0.04 0.29
21 1 -0.03 0.04 -0.01 -0.08 0.04 -0.01 -0.27 0.27 -0.17
22 1 -0.39 -0.47 0.31 -0.17 -0.08 0.08 -0.10 0.27 -0.09
23 1 -0.28 -0.58 0.26 0.04 -0.06 -0.06 -0.08 -0.14 0.02
22 23 24
A A A
Frequencies -- 1040.8396 1048.0676 1074.6549
Red. masses -- 1.7925 1.5174 2.3108
Frc consts -- 1.1441 0.9820 1.5723
IR Inten -- 1.0789 12.6391 42.0267
Atom AN X Y Z X Y Z X Y Z
1 6 0.02 -0.06 -0.01 -0.02 0.04 0.01 0.02 -0.10 -0.04
2 6 0.01 0.10 -0.01 -0.01 -0.06 0.00 0.06 0.18 -0.01
3 7 -0.03 0.02 0.01 0.01 0.01 -0.01 -0.13 0.02 -0.01
4 6 0.00 -0.02 0.00 -0.01 -0.01 -0.01 -0.10 -0.07 0.00
5 6 -0.09 -0.08 0.12 0.06 0.08 -0.05 0.17 -0.01 0.01
6 6 0.11 0.07 -0.10 -0.05 -0.07 0.07 -0.06 -0.01 0.04
7 6 0.01 0.02 -0.02 0.05 0.08 -0.06 0.01 0.00 0.01
8 6 -0.02 0.00 -0.01 0.00 -0.01 0.02 0.01 0.00 0.00
9 1 -0.02 -0.01 -0.03 0.01 0.00 0.01 0.00 -0.07 -0.04
10 1 -0.02 -0.17 -0.07 0.01 0.10 0.04 -0.01 -0.16 -0.06
11 1 -0.03 -0.04 -0.02 0.02 0.04 0.01 -0.01 -0.16 -0.04
12 1 -0.06 0.05 0.09 0.02 -0.04 -0.05 0.01 0.17 0.07
13 1 0.14 0.16 0.00 -0.08 -0.09 0.00 0.14 0.30 0.00
14 1 -0.01 0.00 -0.01 0.04 -0.06 0.01 0.21 -0.50 0.01
15 1 -0.02 -0.02 0.00 0.04 -0.02 0.01 0.20 0.04 0.01
16 1 -0.01 -0.06 0.01 0.01 0.08 0.00 0.03 0.46 -0.01
17 1 -0.12 -0.07 0.17 0.02 0.05 -0.19 0.17 -0.02 -0.01
18 1 -0.16 -0.01 0.09 0.10 -0.06 0.01 0.22 -0.01 -0.01
19 1 0.27 0.01 -0.08 -0.15 0.05 0.02 -0.15 -0.03 0.06
20 1 0.07 0.05 -0.17 -0.04 -0.05 0.13 -0.13 -0.01 0.04
21 1 -0.26 -0.44 0.26 -0.43 -0.55 0.34 0.05 0.01 0.00
22 1 -0.15 -0.35 0.19 -0.23 -0.25 0.17 0.02 0.02 -0.01
23 1 0.12 0.30 -0.11 0.14 0.15 -0.15 0.00 -0.03 0.01
25 26 27
A A A
Frequencies -- 1086.0644 1112.1958 1132.2877
Red. masses -- 1.7233 1.8784 1.3922
Frc consts -- 1.1976 1.3690 1.0516
IR Inten -- 9.5620 18.5361 1.0630
Atom AN X Y Z X Y Z X Y Z
1 6 0.11 -0.03 -0.06 -0.01 0.03 0.11 0.02 -0.02 0.00
2 6 -0.14 0.06 0.07 -0.06 -0.07 -0.12 -0.02 0.04 -0.01
3 7 0.00 0.07 -0.03 -0.01 0.13 -0.03 -0.02 -0.02 -0.02
4 6 0.07 -0.06 -0.04 0.03 -0.10 0.05 0.03 0.02 0.11
5 6 0.06 0.02 0.00 0.05 0.01 0.04 0.02 -0.03 -0.06
6 6 -0.02 -0.01 0.02 -0.03 0.01 -0.03 0.02 0.01 0.08
7 6 0.00 0.00 0.00 0.01 -0.01 0.04 -0.02 0.00 -0.07
8 6 0.00 0.00 0.00 0.00 0.00 -0.02 0.02 0.01 0.03
9 1 -0.08 0.45 0.16 -0.06 -0.05 -0.18 -0.03 0.06 -0.01
10 1 -0.17 -0.39 0.02 0.05 -0.08 -0.17 -0.02 -0.10 -0.03
11 1 -0.22 -0.29 -0.06 -0.02 0.44 0.08 -0.05 -0.02 -0.01
12 1 -0.26 -0.14 0.13 -0.30 -0.26 0.20 -0.05 0.02 0.04
13 1 -0.11 -0.07 0.08 0.38 0.01 -0.11 0.07 0.07 0.00
14 1 -0.12 0.28 0.06 0.01 -0.19 -0.11 -0.06 -0.10 -0.21
15 1 -0.08 -0.27 0.03 -0.03 0.20 -0.06 -0.19 0.48 -0.10
16 1 -0.04 -0.21 0.07 0.09 -0.21 -0.10 0.10 -0.41 -0.18
17 1 -0.02 0.01 -0.07 -0.12 0.00 -0.02 0.27 0.00 0.12
18 1 0.14 0.00 0.00 0.22 -0.03 0.04 -0.27 0.14 -0.13
19 1 -0.06 0.00 0.02 0.05 0.02 -0.04 -0.15 -0.10 0.14
20 1 -0.07 -0.01 0.03 -0.20 0.01 0.01 0.20 -0.02 -0.05
21 1 0.02 0.00 0.00 0.14 -0.01 0.02 -0.22 0.04 -0.05
22 1 0.01 0.01 -0.01 0.08 -0.04 0.00 -0.15 0.09 0.00
23 1 0.00 -0.01 0.01 -0.02 0.04 0.03 0.05 -0.09 -0.08
28 29 30
A A A
Frequencies -- 1184.2148 1203.6405 1249.6876
Red. masses -- 1.8164 1.9092 1.8444
Frc consts -- 1.5008 1.6297 1.6971
IR Inten -- 9.6611 8.6528 25.9498
Atom AN X Y Z X Y Z X Y Z
1 6 0.01 0.01 -0.06 -0.04 0.03 -0.05 0.07 -0.02 0.03
2 6 -0.01 -0.01 0.09 0.01 -0.06 0.09 -0.09 0.02 -0.03
3 7 0.04 -0.02 -0.10 0.03 0.13 -0.06 0.12 -0.12 0.00
4 6 -0.02 0.00 0.10 -0.02 -0.08 0.01 -0.07 0.05 0.03
5 6 -0.02 0.06 0.06 0.02 -0.04 0.01 -0.06 0.07 -0.01
6 6 -0.03 -0.05 -0.10 0.06 0.08 0.05 -0.03 0.00 0.03
7 6 0.05 0.02 0.09 -0.08 -0.05 -0.07 -0.04 -0.01 -0.06
8 6 -0.03 0.00 -0.04 0.05 0.00 0.04 0.03 0.00 0.03
9 1 0.04 0.05 0.12 0.07 -0.07 0.10 -0.06 0.16 -0.05
10 1 -0.05 0.06 0.13 -0.02 0.18 0.14 -0.04 -0.26 -0.09
11 1 -0.01 -0.25 -0.05 0.06 -0.18 -0.02 -0.14 0.09 0.01
12 1 0.11 0.03 -0.14 0.09 -0.11 -0.17 0.00 0.32 0.14
13 1 -0.19 0.07 0.07 -0.26 -0.02 0.06 0.13 -0.07 -0.02
14 1 0.03 -0.30 -0.20 0.06 -0.22 -0.02 0.06 -0.19 -0.03
15 1 -0.05 0.46 -0.08 0.09 0.06 -0.02 0.12 0.18 0.00
16 1 0.13 -0.16 -0.19 0.07 0.09 -0.07 0.05 0.20 -0.08
17 1 -0.12 0.02 -0.16 -0.38 -0.03 0.10 -0.15 0.05 -0.14
18 1 -0.01 -0.13 0.13 0.06 0.05 -0.03 0.28 -0.09 0.06
19 1 -0.08 0.16 -0.20 0.30 -0.15 0.16 0.56 -0.02 0.01
20 1 -0.06 0.00 0.12 -0.38 0.03 -0.15 -0.14 -0.01 0.00
21 1 0.21 -0.06 0.10 -0.14 0.08 -0.13 0.02 -0.02 -0.06
22 1 0.18 -0.11 0.00 -0.18 0.09 0.01 -0.07 0.06 0.00
23 1 -0.09 0.13 0.12 0.13 -0.12 -0.16 0.08 -0.12 -0.10
31 32 33
A A A
Frequencies -- 1275.3394 1301.2045 1328.5920
Red. masses -- 1.5129 1.3321 1.2483
Frc consts -- 1.4498 1.3288 1.2983
IR Inten -- 2.6391 11.5824 11.0903
Atom AN X Y Z X Y Z X Y Z
1 6 -0.04 0.00 -0.03 -0.01 0.01 -0.02 0.01 -0.01 0.04
2 6 0.07 0.01 0.00 -0.02 -0.02 0.02 0.03 0.02 -0.01
3 7 -0.11 -0.03 -0.02 0.06 0.04 -0.01 -0.05 0.02 -0.03
4 6 0.07 0.02 0.01 -0.04 -0.01 -0.01 0.02 -0.01 0.01
5 6 0.00 0.06 0.06 -0.04 -0.07 0.00 0.03 0.00 0.02
6 6 -0.06 -0.03 0.02 -0.10 0.02 0.01 0.00 -0.01 -0.02
7 6 -0.03 0.00 -0.04 0.02 0.02 -0.02 -0.01 -0.03 -0.06
8 6 0.02 0.00 0.02 -0.01 0.02 0.03 -0.01 0.05 0.07
9 1 0.02 -0.05 0.05 0.02 -0.01 0.03 -0.02 -0.03 -0.06
10 1 0.02 0.17 0.07 -0.03 0.03 0.05 0.03 -0.08 -0.10
11 1 0.08 -0.08 -0.02 0.00 -0.08 -0.01 0.00 0.11 0.03
12 1 -0.03 -0.23 -0.06 -0.07 -0.16 -0.01 0.17 0.29 -0.01
13 1 0.09 0.26 0.00 0.05 0.13 0.01 -0.27 -0.44 0.00
14 1 -0.08 0.18 -0.06 0.08 -0.14 0.03 -0.04 0.03 -0.04
15 1 -0.18 -0.04 -0.01 0.08 -0.01 0.01 -0.07 -0.03 -0.01
16 1 -0.02 -0.26 0.04 -0.02 0.05 0.00 0.00 -0.08 0.00
17 1 0.24 0.03 -0.15 -0.01 -0.05 0.14 -0.05 -0.01 -0.02
18 1 0.29 -0.11 0.11 0.33 0.08 -0.09 -0.09 -0.01 0.02
19 1 0.63 0.02 -0.05 0.01 0.00 0.01 -0.02 0.03 -0.04
20 1 0.01 -0.02 0.07 0.78 0.01 -0.13 0.03 -0.01 0.01
21 1 0.08 -0.05 -0.03 0.24 -0.17 0.04 0.55 -0.35 0.01
22 1 -0.03 0.05 0.00 -0.06 0.07 0.00 -0.27 0.19 0.03
23 1 0.05 -0.11 -0.07 -0.01 -0.04 0.01 0.00 0.01 0.02
34 35 36
A A A
Frequencies -- 1332.2275 1344.5127 1396.9946
Red. masses -- 1.3012 1.2312 1.2805
Frc consts -- 1.3607 1.3113 1.4724
IR Inten -- 7.7543 3.2540 6.0928
Atom AN X Y Z X Y Z X Y Z
1 6 0.00 0.01 -0.04 0.00 0.00 0.02 -0.02 0.09 0.04
2 6 -0.01 -0.02 0.00 0.03 0.01 -0.01 0.03 0.08 -0.01
3 7 0.01 -0.06 0.04 -0.07 -0.06 -0.04 0.02 -0.05 0.01
4 6 0.00 0.03 0.00 0.04 0.03 0.02 -0.01 0.03 0.01
5 6 -0.02 0.02 -0.03 0.00 0.00 0.01 0.03 0.02 -0.01
6 6 0.09 0.00 0.00 0.03 0.05 0.03 -0.01 0.00 0.00
7 6 -0.01 -0.04 -0.04 0.01 0.00 0.02 0.00 0.00 0.00
8 6 -0.01 0.04 0.05 0.00 -0.01 -0.02 0.00 0.00 0.00
9 1 0.02 0.03 0.06 0.02 -0.03 0.00 0.13 -0.39 -0.23
10 1 -0.02 0.07 0.08 0.01 -0.05 -0.05 -0.11 -0.26 -0.22
11 1 0.01 -0.09 -0.03 0.03 0.03 0.02 0.02 -0.42 0.05
12 1 -0.13 -0.22 0.01 0.12 0.18 -0.01 -0.26 -0.47 0.00
13 1 0.28 0.45 -0.01 -0.06 -0.13 -0.01 -0.06 -0.25 0.00
14 1 -0.01 0.04 0.01 -0.05 0.06 -0.10 0.04 -0.06 0.00
15 1 0.00 0.04 0.00 -0.14 -0.02 0.00 0.02 -0.03 0.02
16 1 0.00 0.02 0.00 0.00 -0.16 0.00 -0.01 -0.06 -0.02
17 1 -0.17 0.02 -0.02 -0.52 -0.01 0.02 -0.23 0.01 -0.03
18 1 0.16 -0.02 -0.01 0.63 -0.04 -0.02 -0.15 -0.01 0.01
19 1 -0.39 -0.01 0.04 -0.26 -0.06 0.11 0.05 0.00 -0.01
20 1 -0.29 0.00 0.00 0.13 0.03 -0.10 0.01 0.00 0.00
21 1 0.38 -0.24 -0.01 -0.22 0.12 0.00 0.01 0.00 0.00
22 1 -0.26 0.15 0.03 0.06 -0.05 -0.01 0.00 0.00 0.00
23 1 -0.02 0.08 0.05 -0.01 0.03 0.02 0.00 -0.01 -0.01
37 38 39
A A A
Frequencies -- 1409.8693 1415.0762 1455.7812
Red. masses -- 1.3482 1.3334 1.1635
Frc consts -- 1.5790 1.5731 1.4528
IR Inten -- 11.1926 22.4569 0.8430
Atom AN X Y Z X Y Z X Y Z
1 6 -0.01 -0.02 0.01 -0.03 -0.10 -0.03 0.00 0.00 0.00
2 6 0.02 0.06 0.02 0.02 0.10 0.00 0.00 0.00 0.00
3 7 0.03 0.03 -0.03 0.03 -0.04 0.01 0.00 0.00 0.00
4 6 -0.03 0.02 0.01 -0.02 0.03 0.01 0.00 0.00 0.00
5 6 -0.13 -0.01 0.02 0.04 0.02 -0.02 0.00 -0.01 0.00
6 6 0.06 -0.01 0.01 -0.02 0.01 0.00 0.04 0.00 -0.02
7 6 0.00 -0.01 0.00 0.00 0.00 0.00 -0.08 0.06 0.00
8 6 0.00 0.00 0.00 0.00 0.00 0.00 -0.02 0.03 0.03
9 1 -0.04 -0.01 -0.06 -0.12 0.30 0.28 0.01 0.00 0.01
10 1 0.05 0.04 -0.05 0.17 0.31 0.11 -0.01 0.00 0.01
11 1 0.01 0.01 0.01 0.19 0.41 -0.04 0.01 0.01 0.00
12 1 -0.08 -0.19 -0.06 -0.25 -0.40 0.01 0.00 -0.01 -0.01
13 1 -0.12 -0.32 0.02 -0.08 -0.26 0.01 0.01 -0.01 0.00
14 1 0.09 -0.19 -0.04 0.06 -0.10 -0.01 -0.02 0.01 -0.02
15 1 0.10 -0.15 0.07 0.04 -0.05 0.03 -0.02 0.00 0.00
16 1 0.02 -0.12 -0.11 0.00 -0.08 -0.05 0.01 0.03 0.00
17 1 0.59 -0.02 -0.13 -0.29 0.02 0.04 -0.02 -0.02 -0.08
18 1 0.45 0.11 -0.08 -0.13 -0.07 0.03 0.01 0.08 -0.04
19 1 -0.16 -0.02 0.03 0.04 0.01 -0.01 -0.14 -0.20 0.11
20 1 -0.23 -0.01 0.04 0.05 0.00 -0.03 0.04 0.04 0.25
21 1 -0.03 0.01 0.00 0.01 0.00 0.00 0.21 -0.13 0.04
22 1 -0.04 0.01 0.00 0.01 0.00 0.00 0.50 -0.27 0.10
23 1 -0.01 0.04 0.03 0.00 -0.01 -0.01 0.20 -0.41 -0.47
40 41 42
A A A
Frequencies -- 1462.8854 1481.1945 1488.8265
Red. masses -- 1.1709 1.1089 1.0630
Frc consts -- 1.4763 1.4334 1.3883
IR Inten -- 1.4924 1.7294 3.6380
Atom AN X Y Z X Y Z X Y Z
1 6 0.01 0.01 0.00 0.00 -0.01 0.02 -0.03 0.02 -0.02
2 6 0.00 -0.05 -0.01 0.00 0.01 0.01 0.00 -0.01 -0.02
3 7 -0.01 0.02 0.00 0.00 0.00 -0.01 0.00 0.00 0.00
4 6 -0.02 0.10 -0.01 0.00 -0.03 0.00 0.00 0.00 -0.02
5 6 0.02 0.01 -0.02 -0.01 0.01 -0.03 0.00 -0.01 0.03
6 6 0.00 0.00 0.01 0.03 -0.03 0.06 0.01 -0.02 0.03
7 6 -0.01 0.00 0.00 -0.03 0.01 0.00 -0.01 0.00 0.00
8 6 0.00 0.00 0.00 -0.01 0.01 0.01 0.00 0.00 0.00
9 1 -0.01 0.02 -0.04 -0.10 0.07 -0.16 0.20 -0.09 0.42
10 1 0.00 -0.01 0.00 0.11 0.11 -0.07 -0.16 -0.27 -0.08
11 1 -0.05 -0.05 0.00 -0.06 -0.11 0.01 0.38 0.13 0.00
12 1 0.00 0.16 0.21 0.01 -0.05 -0.08 -0.05 0.06 0.18
13 1 -0.15 0.22 -0.02 0.04 -0.08 0.01 -0.14 0.07 -0.03
14 1 0.28 -0.37 -0.01 -0.07 0.12 0.05 0.12 -0.01 0.20
15 1 0.14 -0.41 0.18 0.02 0.13 -0.05 0.03 0.15 -0.05
16 1 -0.09 -0.51 -0.11 0.02 0.10 0.02 -0.11 -0.10 0.13
17 1 -0.02 0.04 0.21 0.07 0.06 0.30 0.02 -0.05 -0.26
18 1 -0.08 -0.19 0.10 0.07 -0.28 0.12 0.01 0.24 -0.11
19 1 0.00 0.08 -0.04 -0.08 0.48 -0.22 -0.03 0.27 -0.12
20 1 -0.05 -0.02 -0.07 -0.05 -0.12 -0.50 -0.05 -0.07 -0.27
21 1 0.03 -0.01 0.00 0.06 -0.01 0.00 0.01 0.01 0.00
22 1 0.06 -0.03 0.01 0.17 -0.07 0.03 0.06 -0.02 0.01
23 1 0.03 -0.05 -0.06 0.06 -0.14 -0.15 0.02 -0.05 -0.05
43 44 45
A A A
Frequencies -- 1489.7011 1494.9965 1504.2213
Red. masses -- 1.0567 1.0494 1.0799
Frc consts -- 1.3816 1.3819 1.4397
IR Inten -- 4.1057 1.7734 8.9969
Atom AN X Y Z X Y Z X Y Z
1 6 0.03 -0.01 -0.01 0.00 -0.02 0.03 0.03 -0.01 0.00
2 6 -0.02 0.02 0.02 0.03 -0.01 0.00 0.03 -0.01 -0.01
3 7 0.00 0.00 0.00 0.01 -0.01 -0.01 -0.01 -0.01 0.01
4 6 0.02 0.03 -0.03 0.00 -0.01 -0.03 -0.01 0.01 0.02
5 6 0.01 -0.01 0.01 -0.01 0.00 0.01 0.02 -0.02 0.04