File: MeOH.log

package info (click to toggle)
python-goodvibes 3.2%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 23,136 kB
  • sloc: python: 3,698; makefile: 38
file content (958 lines) | stat: -rwxr-xr-x 56,670 bytes parent folder | download
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
 Entering Link 1 = C:\G09W\l1.exe PID=     26556.
  
 Copyright (c) 1988,1990,1992,1993,1995,1998,2003,2009, 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 A.02,
 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, 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, 2009.
 
 ******************************************
 Gaussian 09:  IA32W-G09RevA.02 11-Jun-2009
                21-Mar-2019 
 ******************************************
 %chk=C:\Google Drive\Rob Paton CSU\Project GoodVibes Guilian\media test\MeOH.chk
 -----------------------------------------
 # opt freq b3lyp/sto-3g geom=connectivity
 -----------------------------------------
 1/14=-1,18=20,19=15,26=3,38=1,57=2/1,3;
 2/9=110,12=2,17=6,18=5,40=1/2;
 3/6=3,11=2,16=1,25=1,30=1,71=1,74=-5/1,2,3;
 4//1;
 5/5=2,38=5/2;
 6/7=2,8=2,9=2,10=2,28=1/1;
 7//1,2,3,16;
 1/14=-1,18=20,19=15/3(2);
 2/9=110/2;
 99//99;
 2/9=110/2;
 3/6=3,11=2,16=1,25=1,30=1,71=1,74=-5/1,2,3;
 4/5=5,16=3/1;
 5/5=2,38=5/2;
 7//1,2,3,16;
 1/14=-1,18=20,19=15/3(-5);
 2/9=110/2;
 6/7=2,8=2,9=2,10=2,19=2,28=1/1;
 99/9=1/99;
 -------------------
 Title Card Required
 -------------------
 Symbolic Z-matrix:
 Charge =  0 Multiplicity = 1
 C                     0.68068  -0.01552  0. 
 H                     1.10282   1.00718  -0.00058 
 H                     1.0664   -0.54563   0.89946 
 H                     1.06632  -0.54662  -0.8989 
 O                    -0.77996   0.12912   0. 
 H                    -1.07994  -0.85472   0.00001 
 

 GradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGrad
 Berny optimization.
 Initialization pass.
                           ----------------------------
                           !    Initial Parameters    !
                           ! (Angstroms and Degrees)  !
 --------------------------                            --------------------------
 ! Name  Definition              Value          Derivative Info.                !
 --------------------------------------------------------------------------------
 ! R1    R(1,2)                  1.1064         estimate D2E/DX2                !
 ! R2    R(1,3)                  1.113          estimate D2E/DX2                !
 ! R3    R(1,4)                  1.113          estimate D2E/DX2                !
 ! R4    R(1,5)                  1.4678         estimate D2E/DX2                !
 ! R5    R(5,6)                  1.0286         estimate D2E/DX2                !
 ! A1    A(2,1,3)              107.9654         estimate D2E/DX2                !
 ! A2    A(2,1,4)              107.9662         estimate D2E/DX2                !
 ! A3    A(2,1,5)              106.7739         estimate D2E/DX2                !
 ! A4    A(3,1,4)              107.7775         estimate D2E/DX2                !
 ! A5    A(3,1,5)              113.0663         estimate D2E/DX2                !
 ! A6    A(4,1,5)              113.0679         estimate D2E/DX2                !
 ! A7    A(1,5,6)              101.3017         estimate D2E/DX2                !
 ! D1    D(2,1,5,6)            179.9692         estimate D2E/DX2                !
 ! D2    D(3,1,5,6)            -61.4433         estimate D2E/DX2                !
 ! D3    D(4,1,5,6)             61.3798         estimate D2E/DX2                !
 --------------------------------------------------------------------------------
 Trust Radius=3.00D-01 FncErr=1.00D-07 GrdErr=1.00D-06
 Number of steps in this run=  25 maximum allowed number of steps= 100.
 GradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGrad

                          Input orientation:                          
 ---------------------------------------------------------------------
 Center     Atomic      Atomic             Coordinates (Angstroms)
 Number     Number       Type             X           Y           Z
 ---------------------------------------------------------------------
      1          6           0        0.680681   -0.015524   -0.000002
      2          1           0        1.102821    1.007184   -0.000577
      3          1           0        1.066403   -0.545634    0.899463
      4          1           0        1.066324   -0.546624   -0.898904
      5          8           0       -0.779961    0.129117    0.000003
      6          1           0       -1.079944   -0.854720    0.000008
 ---------------------------------------------------------------------
                    Distance matrix (angstroms):
                    1          2          3          4          5
     1  C    0.000000
     2  H    1.106406   0.000000
     3  H    1.113030   1.795172   0.000000
     4  H    1.113020   1.795172   1.798367   0.000000
     5  O    1.467786   2.077467   2.161800   2.161811   0.000000
     6  H    1.950397   2.868998   2.347628   2.347218   1.028555
                    6
     6  H    0.000000
 Stoichiometry    CH4O
 Framework group  C1[X(CH4O)]
 Deg. of freedom    12
 Full point group                 C1      NOp   1
 Largest Abelian subgroup         C1      NOp   1
 Largest concise Abelian subgroup C1      NOp   1
                         Standard orientation:                         
 ---------------------------------------------------------------------
 Center     Atomic      Atomic             Coordinates (Angstroms)
 Number     Number       Type             X           Y           Z
 ---------------------------------------------------------------------
      1          6           0        0.680681   -0.015524   -0.000002
      2          1           0        1.102821    1.007184   -0.000577
      3          1           0        1.066403   -0.545634    0.899463
      4          1           0        1.066324   -0.546624   -0.898904
      5          8           0       -0.779961    0.129117    0.000003
      6          1           0       -1.079944   -0.854720    0.000008
 ---------------------------------------------------------------------
 Rotational constants (GHZ):    120.4733728     23.4973903     22.5179446
 Standard basis: STO-3G (5D, 7F)
 There are    14 symmetry adapted basis functions of A   symmetry.
 Integral buffers will be    262144 words long.
 Raffenetti 2 integral format.
 Two-electron integral symmetry is turned on.
    14 basis functions,    42 primitive gaussians,    14 cartesian basis functions
     9 alpha electrons        9 beta electrons
       nuclear repulsion energy        39.0975612907 Hartrees.
 NAtoms=    6 NActive=    6 NUniq=    6 SFac= 7.50D-01 NAtFMM=   80 NAOKFM=F Big=F
 One-electron integrals computed using PRISM.
 NBasis=    14 RedAO= T  NBF=    14
 NBsUse=    14 1.00D-06 NBFU=    14
 Harris functional with IExCor=  402 diagonalized for initial guess.
 ExpMin= 1.69D-01 ExpMax= 1.31D+02 ExpMxC= 1.31D+02 IAcc=1 IRadAn=         1 AccDes= 0.00D+00
 HarFok:  IExCor=  402 AccDes= 0.00D+00 IRadAn=         1 IDoV= 1
 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
         Omega=  0.000000  0.000000  1.000000  0.000000  0.000000 ICntrl=     500 IOpCl=  0
         NMat0=    1 NMatS0=    1 NMatT0=    0 NMatD0=    1 NMtDS0=    0 NMtDT0=    0
         I1Cent=           4 NGrid=           0.
 Petite list used in FoFCou.
 Initial guess orbital symmetries:
       Occupied  (A) (A) (A) (A) (A) (A) (A) (A) (A)
       Virtual   (A) (A) (A) (A) (A)
 The electronic state of the initial guess is 1-A.
 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.
 Keep R1 ints in memory in canonical form, NReq=927997.
 Integral accuracy reduced to 1.0D-05 until final iterations.
 Initial convergence to 1.0D-05 achieved.  Increase integral accuracy.
 SCF Done:  E(RB3LYP) =  -114.179050125     A.U. after   11 cycles
             Convg  =    0.3915D-08             -V/T =  2.0151

 **********************************************************************

            Population analysis using the SCF density.

 **********************************************************************

 Orbital symmetries:
       Occupied  (A) (A) (A) (A) (A) (A) (A) (A) (A)
       Virtual   (A) (A) (A) (A) (A)
 The electronic state is 1-A.
 Alpha  occ. eigenvalues --  -18.87393 -10.04292  -0.93227  -0.63125  -0.42547
 Alpha  occ. eigenvalues --   -0.38619  -0.35051  -0.23896  -0.14296
 Alpha virt. eigenvalues --    0.29402   0.36055   0.43334   0.44207   0.45883
          Condensed to atoms (all electrons):
              1          2          3          4          5          6
     1  C    4.810988   0.373775   0.366922   0.366929   0.251455  -0.034249
     2  H    0.373775   0.603478  -0.021778  -0.021774  -0.017624   0.003579
     3  H    0.366922  -0.021778   0.633544  -0.026514  -0.013445  -0.003655
     4  H    0.366929  -0.021774  -0.026514   0.633533  -0.013439  -0.003665
     5  O    0.251455  -0.017624  -0.013445  -0.013439   7.799571   0.232007
     6  H   -0.034249   0.003579  -0.003655  -0.003665   0.232007   0.641838
 Mulliken atomic charges:
              1
     1  C   -0.135819
     2  H    0.080344
     3  H    0.064926
     4  H    0.064929
     5  O   -0.238525
     6  H    0.164145
 Sum of Mulliken atomic charges =   0.00000
 Mulliken charges with hydrogens summed into heavy atoms:
              1
     1  C    0.074380
     5  O   -0.074380
 Sum of Mulliken charges with hydrogens summed into heavy atoms =   0.00000
 Electronic spatial extent (au):  <R**2>=             85.0396
 Charge=              0.0000 electrons
 Dipole moment (field-independent basis, Debye):
    X=              0.6478    Y=             -1.2100    Z=             -0.0001  Tot=              1.3725
 Quadrupole moment (field-independent basis, Debye-Ang):
   XX=            -12.1019   YY=            -11.1895   ZZ=            -12.3326
   XY=              1.4445   XZ=             -0.0001   YZ=              0.0000
 Traceless Quadrupole moment (field-independent basis, Debye-Ang):
   XX=             -0.2272   YY=              0.6851   ZZ=             -0.4580
   XY=              1.4445   XZ=             -0.0001   YZ=              0.0000
 Octapole moment (field-independent basis, Debye-Ang**2):
  XXX=             -4.9602  YYY=              0.2504  ZZZ=              0.0007  XYY=             -1.8856
  XXY=             -1.1467  XXZ=              0.0000  XZZ=             -0.9930  YZZ=             -0.3737
  YYZ=             -0.0008  XYZ=             -0.0001
 Hexadecapole moment (field-independent basis, Debye-Ang**3):
 XXXX=            -58.1630 YYYY=            -17.6281 ZZZZ=            -15.5073 XXXY=              1.3360
 XXXZ=              0.0000 YYYX=              1.3017 YYYZ=              0.0000 ZZZX=              0.0010
 ZZZY=              0.0000 XXYY=            -11.4967 XXZZ=            -12.1859 YYZZ=             -5.6350
 XXYZ=             -0.0001 YYXZ=             -0.0011 ZZXY=             -0.6270
 N-N= 3.909756129072D+01 E-N=-3.459779463382D+02  KE= 1.124826257674D+02
 Calling FoFJK, ICntrl=      2127 FMM=F ISym2X=0 I1Cent= 0 IOpClX= 0 NMat=1 NMatS=1 NMatT=0.
 ***** Axes restored to original set *****
 -------------------------------------------------------------------
 Center     Atomic                   Forces (Hartrees/Bohr)
 Number     Number              X              Y              Z
 -------------------------------------------------------------------
      1        6           0.000185332    0.000034886    0.000004693
      2        1           0.000012736    0.000029717    0.000001034
      3        1          -0.000065097   -0.000012705   -0.000002999
      4        1          -0.000064512   -0.000011286   -0.000001343
      5        8          -0.000075719   -0.000023713   -0.000005927
      6        1           0.000007260   -0.000016900    0.000004543
 -------------------------------------------------------------------
 Cartesian Forces:  Max     0.000185332 RMS     0.000053760

 GradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGrad
 Berny optimization.
 Internal  Forces:  Max     0.000083721 RMS     0.000044872
 Search for a local minimum.
 Step number   1 out of a maximum of   25
 All quantities printed in internal units (Hartrees-Bohrs-Radians)
 Mixed Optimization -- En-DIIS/RFO-DIIS
 Second derivative matrix not updated -- first step.
 The second derivative matrix:
                          R1        R2        R3        R4        R5
           R1           0.32984
           R2           0.00000   0.32281
           R3           0.00000   0.00000   0.32282
           R4           0.00000   0.00000   0.00000   0.36007
           R5           0.00000   0.00000   0.00000   0.00000   0.43001
           A1           0.00000   0.00000   0.00000   0.00000   0.00000
           A2           0.00000   0.00000   0.00000   0.00000   0.00000
           A3           0.00000   0.00000   0.00000   0.00000   0.00000
           A4           0.00000   0.00000   0.00000   0.00000   0.00000
           A5           0.00000   0.00000   0.00000   0.00000   0.00000
           A6           0.00000   0.00000   0.00000   0.00000   0.00000
           A7           0.00000   0.00000   0.00000   0.00000   0.00000
           D1           0.00000   0.00000   0.00000   0.00000   0.00000
           D2           0.00000   0.00000   0.00000   0.00000   0.00000
           D3           0.00000   0.00000   0.00000   0.00000   0.00000
                          A1        A2        A3        A4        A5
           A1           0.16000
           A2           0.00000   0.16000
           A3           0.00000   0.00000   0.16000
           A4           0.00000   0.00000   0.00000   0.16000
           A5           0.00000   0.00000   0.00000   0.00000   0.16000
           A6           0.00000   0.00000   0.00000   0.00000   0.00000
           A7           0.00000   0.00000   0.00000   0.00000   0.00000
           D1           0.00000   0.00000   0.00000   0.00000   0.00000
           D2           0.00000   0.00000   0.00000   0.00000   0.00000
           D3           0.00000   0.00000   0.00000   0.00000   0.00000
                          A6        A7        D1        D2        D3
           A6           0.16000
           A7           0.00000   0.16000
           D1           0.00000   0.00000   0.00795
           D2           0.00000   0.00000   0.00000   0.00795
           D3           0.00000   0.00000   0.00000   0.00000   0.00795
     Eigenvalues ---    0.00795   0.09458   0.10213   0.16000   0.16000
     Eigenvalues ---    0.16000   0.16000   0.32281   0.32282   0.32984
     Eigenvalues ---    0.36007   0.430011000.000001000.000001000.00000
 RFO step:  Lambda=-1.93847597D-07 EMin= 7.95099993D-03
 Linear search not attempted -- first point.
 Iteration  1 RMS(Cart)=  0.00042136 RMS(Int)=  0.00000018
 Iteration  2 RMS(Cart)=  0.00000012 RMS(Int)=  0.00000011
 Variable       Old X    -DE/DX   Delta X   Delta X   Delta X     New X
                                 (Linear)    (Quad)   (Total)
    R1        2.09080   0.00003   0.00000   0.00010   0.00010   2.09090
    R2        2.10332  -0.00002   0.00000  -0.00006  -0.00006   2.10326
    R3        2.10330  -0.00002   0.00000  -0.00005  -0.00005   2.10325
    R4        2.77371   0.00006   0.00000   0.00018   0.00018   2.77389
    R5        1.94369   0.00001   0.00000   0.00003   0.00003   1.94372
    A1        1.88435   0.00004   0.00000   0.00035   0.00035   1.88471
    A2        1.88437   0.00004   0.00000   0.00035   0.00035   1.88471
    A3        1.86356   0.00005   0.00000   0.00038   0.00038   1.86394
    A4        1.88107   0.00005   0.00000   0.00013   0.00013   1.88121
    A5        1.97338  -0.00008   0.00000  -0.00056  -0.00056   1.97282
    A6        1.97341  -0.00008   0.00000  -0.00057  -0.00057   1.97283
    A7        1.76805  -0.00002   0.00000  -0.00014  -0.00014   1.76791
    D1        3.14106   0.00000   0.00000   0.00036   0.00036   3.14141
    D2       -1.07239   0.00004   0.00000   0.00072   0.00072  -1.07167
    D3        1.07128  -0.00003   0.00000   0.00001   0.00001   1.07129
         Item               Value     Threshold  Converged?
 Maximum Force            0.000084     0.000450     YES
 RMS     Force            0.000045     0.000300     YES
 Maximum Displacement     0.000864     0.001800     YES
 RMS     Displacement     0.000421     0.001200     YES
 Predicted change in Energy=-9.690117D-08
 Optimization completed.
    -- Stationary point found.
                           ----------------------------
                           !   Optimized Parameters   !
                           ! (Angstroms and Degrees)  !
 --------------------------                            --------------------------
 ! Name  Definition              Value          Derivative Info.                !
 --------------------------------------------------------------------------------
 ! R1    R(1,2)                  1.1064         -DE/DX =    0.0                 !
 ! R2    R(1,3)                  1.113          -DE/DX =    0.0                 !
 ! R3    R(1,4)                  1.113          -DE/DX =    0.0                 !
 ! R4    R(1,5)                  1.4678         -DE/DX =    0.0001              !
 ! R5    R(5,6)                  1.0286         -DE/DX =    0.0                 !
 ! A1    A(2,1,3)              107.9654         -DE/DX =    0.0                 !
 ! A2    A(2,1,4)              107.9662         -DE/DX =    0.0                 !
 ! A3    A(2,1,5)              106.7739         -DE/DX =    0.0                 !
 ! A4    A(3,1,4)              107.7775         -DE/DX =    0.0                 !
 ! A5    A(3,1,5)              113.0663         -DE/DX =   -0.0001              !
 ! A6    A(4,1,5)              113.0679         -DE/DX =   -0.0001              !
 ! A7    A(1,5,6)              101.3017         -DE/DX =    0.0                 !
 ! D1    D(2,1,5,6)            179.9692         -DE/DX =    0.0                 !
 ! D2    D(3,1,5,6)            -61.4433         -DE/DX =    0.0                 !
 ! D3    D(4,1,5,6)             61.3798         -DE/DX =    0.0                 !
 --------------------------------------------------------------------------------
 GradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGrad

                          Input orientation:                          
 ---------------------------------------------------------------------
 Center     Atomic      Atomic             Coordinates (Angstroms)
 Number     Number       Type             X           Y           Z
 ---------------------------------------------------------------------
      1          6           0        0.680681   -0.015524   -0.000002
      2          1           0        1.102821    1.007184   -0.000577
      3          1           0        1.066403   -0.545634    0.899463
      4          1           0        1.066324   -0.546624   -0.898904
      5          8           0       -0.779961    0.129117    0.000003
      6          1           0       -1.079944   -0.854720    0.000008
 ---------------------------------------------------------------------
                    Distance matrix (angstroms):
                    1          2          3          4          5
     1  C    0.000000
     2  H    1.106406   0.000000
     3  H    1.113030   1.795172   0.000000
     4  H    1.113020   1.795172   1.798367   0.000000
     5  O    1.467786   2.077467   2.161800   2.161811   0.000000
     6  H    1.950397   2.868998   2.347628   2.347218   1.028555
                    6
     6  H    0.000000
 Stoichiometry    CH4O
 Framework group  C1[X(CH4O)]
 Deg. of freedom    12
 Full point group                 C1      NOp   1
 Largest Abelian subgroup         C1      NOp   1
 Largest concise Abelian subgroup C1      NOp   1
                         Standard orientation:                         
 ---------------------------------------------------------------------
 Center     Atomic      Atomic             Coordinates (Angstroms)
 Number     Number       Type             X           Y           Z
 ---------------------------------------------------------------------
      1          6           0        0.680681   -0.015524   -0.000002
      2          1           0        1.102821    1.007184   -0.000577
      3          1           0        1.066403   -0.545634    0.899463
      4          1           0        1.066324   -0.546624   -0.898904
      5          8           0       -0.779961    0.129117    0.000003
      6          1           0       -1.079944   -0.854720    0.000008
 ---------------------------------------------------------------------
 Rotational constants (GHZ):    120.4733728     23.4973903     22.5179446
 1|1|UNPC-DESKTOP-NTK9DLK|FOpt|RB3LYP|STO-3G|C1H4O1|LEAHW|21-Mar-2019|0
 ||# opt freq b3lyp/sto-3g geom=connectivity||Title Card Required||0,1|
 C,0.680681,-0.015524,-0.000002|H,1.102821,1.007184,-0.000577|H,1.06640
 3,-0.545634,0.899463|H,1.066324,-0.546624,-0.898904|O,-0.779961,0.1291
 17,0.000003|H,-1.079944,-0.85472,0.000008||Version=IA32W-G09RevA.02|St
 ate=1-A|HF=-114.1790501|RMSD=3.915e-009|RMSF=5.376e-005|Dipole=0.25485
 47,-0.4760589,-0.0000259|Quadrupole=-0.1689066,0.5093829,-0.3404763,1.
 0739745,-0.0000479,-0.0000192|PG=C01 [X(C1H4O1)]||@


 THE RARE EARTHS PERPLEX US IN OUR RESEARCHES,
 BAFFLE US IN OUR SPECULATIONS, AND HAUNT US IN OUR
 VERY DREAMS.  THEY STRETCH LIKE AN UNKNOWN BEFORE US,
 MOCKING, MYSTIFYING, AND MURMURING STRANGE REVELATIONS
 AND POSSIBILITIES.  -- SIR WILLIAM CROOKE, 1832-1919
 Job cpu time:  0 days  0 hours  0 minutes  2.0 seconds.
 File lengths (MBytes):  RWF=      5 Int=      0 D2E=      0 Chk=      1 Scr=      1
 Normal termination of Gaussian 09 at Thu Mar 21 12:57:31 2019.
 Link1:  Proceeding to internal job step number  2.
 ------------------------------------------------------------------
 #N Geom=AllCheck Guess=TCheck SCRF=Check GenChk RB3LYP/STO-3G Freq
 ------------------------------------------------------------------
 1/10=4,29=7,30=1,38=1,40=1/1,3;
 2/12=2,40=1/2;
 3/6=3,11=2,14=-4,16=1,25=1,30=1,70=2,71=2,74=-5,116=1/1,2,3;
 4/5=101/1;
 5/5=2,98=1/2;
 8/6=4,10=90,11=11/1;
 11/6=1,8=1,9=11,15=111,16=1/1,2,10;
 10/6=1/2;
 6/7=2,8=2,9=2,10=2,18=1,28=1/1;
 7/8=1,10=1,25=1/1,2,3,16;
 1/10=4,30=1/3;
 99//99;
 -------------------
 Title Card Required
 -------------------
 Redundant internal coordinates taken from checkpoint file:
 C:\Google Drive\Rob Paton CSU\Project GoodVibes Guilian\media test\MeOH.chk
 Charge =  0 Multiplicity = 1
 C,0,0.680681,-0.015524,-0.000002
 H,0,1.102821,1.007184,-0.000577
 H,0,1.066403,-0.545634,0.899463
 H,0,1.066324,-0.546624,-0.898904
 O,0,-0.779961,0.129117,0.000003
 H,0,-1.079944,-0.85472,0.000008
 Recover connectivity data from disk.

 GradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGrad
 Berny optimization.
 Initialization pass.
                           ----------------------------
                           !    Initial Parameters    !
                           ! (Angstroms and Degrees)  !
 --------------------------                            --------------------------
 ! Name  Definition              Value          Derivative Info.                !
 --------------------------------------------------------------------------------
 ! R1    R(1,2)                  1.1064         calculate D2E/DX2 analytically  !
 ! R2    R(1,3)                  1.113          calculate D2E/DX2 analytically  !
 ! R3    R(1,4)                  1.113          calculate D2E/DX2 analytically  !
 ! R4    R(1,5)                  1.4678         calculate D2E/DX2 analytically  !
 ! R5    R(5,6)                  1.0286         calculate D2E/DX2 analytically  !
 ! A1    A(2,1,3)              107.9654         calculate D2E/DX2 analytically  !
 ! A2    A(2,1,4)              107.9662         calculate D2E/DX2 analytically  !
 ! A3    A(2,1,5)              106.7739         calculate D2E/DX2 analytically  !
 ! A4    A(3,1,4)              107.7775         calculate D2E/DX2 analytically  !
 ! A5    A(3,1,5)              113.0663         calculate D2E/DX2 analytically  !
 ! A6    A(4,1,5)              113.0679         calculate D2E/DX2 analytically  !
 ! A7    A(1,5,6)              101.3017         calculate D2E/DX2 analytically  !
 ! D1    D(2,1,5,6)            179.9692         calculate D2E/DX2 analytically  !
 ! D2    D(3,1,5,6)            -61.4433         calculate D2E/DX2 analytically  !
 ! D3    D(4,1,5,6)             61.3798         calculate D2E/DX2 analytically  !
 --------------------------------------------------------------------------------
 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        0.680681   -0.015524   -0.000002
      2          1           0        1.102821    1.007184   -0.000577
      3          1           0        1.066403   -0.545634    0.899463
      4          1           0        1.066324   -0.546624   -0.898904
      5          8           0       -0.779961    0.129117    0.000003
      6          1           0       -1.079944   -0.854720    0.000008
 ---------------------------------------------------------------------
                    Distance matrix (angstroms):
                    1          2          3          4          5
     1  C    0.000000
     2  H    1.106406   0.000000
     3  H    1.113030   1.795172   0.000000
     4  H    1.113020   1.795172   1.798367   0.000000
     5  O    1.467786   2.077467   2.161800   2.161811   0.000000
     6  H    1.950397   2.868998   2.347628   2.347218   1.028555
                    6
     6  H    0.000000
 Stoichiometry    CH4O
 Framework group  C1[X(CH4O)]
 Deg. of freedom    12
 Full point group                 C1      NOp   1
 Largest Abelian subgroup         C1      NOp   1
 Largest concise Abelian subgroup C1      NOp   1
                         Standard orientation:                         
 ---------------------------------------------------------------------
 Center     Atomic      Atomic             Coordinates (Angstroms)
 Number     Number       Type             X           Y           Z
 ---------------------------------------------------------------------
      1          6           0        0.680681   -0.015524   -0.000002
      2          1           0        1.102821    1.007184   -0.000577
      3          1           0        1.066403   -0.545634    0.899463
      4          1           0        1.066324   -0.546624   -0.898904
      5          8           0       -0.779961    0.129117    0.000003
      6          1           0       -1.079944   -0.854720    0.000008
 ---------------------------------------------------------------------
 Rotational constants (GHZ):    120.4733728     23.4973903     22.5179446
 Standard basis: STO-3G (5D, 7F)
 There are    14 symmetry adapted basis functions of A   symmetry.
 Integral buffers will be    262144 words long.
 Raffenetti 2 integral format.
 Two-electron integral symmetry is turned on.
    14 basis functions,    42 primitive gaussians,    14 cartesian basis functions
     9 alpha electrons        9 beta electrons
       nuclear repulsion energy        39.0975612907 Hartrees.
 NAtoms=    6 NActive=    6 NUniq=    6 SFac= 7.50D-01 NAtFMM=   80 NAOKFM=F Big=F
 One-electron integrals computed using PRISM.
 NBasis=    14 RedAO= T  NBF=    14
 NBsUse=    14 1.00D-06 NBFU=    14
 Initial guess read from the checkpoint file:  C:\Google Drive\Rob Paton CSU\Proj
 ect GoodVibes Guilian\media test\MeOH.chk
 B after Tr=     0.000000    0.000000    0.000000
         Rot=    1.000000    0.000000    0.000000    0.000000 Ang=   0.00 deg.
 Initial guess orbital symmetries:
       Occupied  (A) (A) (A) (A) (A) (A) (A) (A) (A)
       Virtual   (A) (A) (A) (A) (A)
 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.
 Keep R1 ints in memory in canonical form, NReq=927997.
 SCF Done:  E(RB3LYP) =  -114.179050125     A.U. after    1 cycles
             Convg  =    0.3265D-09             -V/T =  2.0151
 Range of M.O.s used for correlation:     1    14
 NBasis=    14 NAE=     9 NBE=     9 NFC=     0 NFV=     0
 NROrb=     14 NOA=     9 NOB=     9 NVA=     5 NVB=     5
 Symmetrizing basis deriv contribution to polar:
 IMax=3 JMax=2 DiffMx= 0.00D+00
 G2DrvN: will do     7 centers at a time, making    1 passes doing MaxLOS=1.
 Calling FoFCou, ICntrl=  3107 FMM=F I1Cent=   0 AccDes= 0.00D+00.
 FoFDir/FoFCou used for L=0 through L=1.
 End of G2Drv Frequency-dependent properties file   721 does not exist.
 End of G2Drv Frequency-dependent properties file   722 does not exist.
          IDoAtm=111111
          Differentiating once with respect to electric field.
                with respect to dipole field.
          Differentiating once with respect to nuclear coordinates.
          Keep R1 ints in memory in canonical form, NReq=806676.
          There are    21 degrees of freedom in the 1st order CPHF.  IDoFFX=5.
     18 vectors produced by pass  0 Test12= 2.14D-16 4.76D-09 XBig12= 5.27D+00 1.25D+00.
 AX will form    18 AO Fock derivatives at one time.
     18 vectors produced by pass  1 Test12= 2.14D-16 4.76D-09 XBig12= 1.27D-01 1.72D-01.
      9 vectors produced by pass  2 Test12= 2.14D-16 4.76D-09 XBig12= 1.35D-05 1.63D-03.
 Inverted reduced A of dimension    45 with in-core refinement.
 Isotropic polarizability for W=    0.000000        8.48 Bohr**3.
 End of Minotr Frequency-dependent properties file   721 does not exist.
 End of Minotr Frequency-dependent properties file   722 does not exist.

 **********************************************************************

            Population analysis using the SCF density.

 **********************************************************************

 Orbital symmetries:
       Occupied  (A) (A) (A) (A) (A) (A) (A) (A) (A)
       Virtual   (A) (A) (A) (A) (A)
 The electronic state is 1-A.
 Alpha  occ. eigenvalues --  -18.87393 -10.04292  -0.93227  -0.63125  -0.42547
 Alpha  occ. eigenvalues --   -0.38619  -0.35051  -0.23896  -0.14296
 Alpha virt. eigenvalues --    0.29402   0.36055   0.43334   0.44207   0.45883
          Condensed to atoms (all electrons):
              1          2          3          4          5          6
     1  C    4.810988   0.373775   0.366922   0.366929   0.251455  -0.034249
     2  H    0.373775   0.603478  -0.021778  -0.021774  -0.017624   0.003579
     3  H    0.366922  -0.021778   0.633544  -0.026514  -0.013445  -0.003655
     4  H    0.366929  -0.021774  -0.026514   0.633533  -0.013439  -0.003665
     5  O    0.251455  -0.017624  -0.013445  -0.013439   7.799571   0.232007
     6  H   -0.034249   0.003579  -0.003655  -0.003665   0.232007   0.641838
 Mulliken atomic charges:
              1
     1  C   -0.135819
     2  H    0.080344
     3  H    0.064926
     4  H    0.064929
     5  O   -0.238525
     6  H    0.164145
 Sum of Mulliken atomic charges =   0.00000
 Mulliken charges with hydrogens summed into heavy atoms:
              1
     1  C    0.074380
     5  O   -0.074380
 Sum of Mulliken charges with hydrogens summed into heavy atoms =   0.00000
 APT atomic charges:
              1
     1  C    0.214497
     2  H    0.013258
     3  H   -0.041391
     4  H   -0.041370
     5  O   -0.204227
     6  H    0.059233
 Sum of APT charges=   0.00000
 APT Atomic charges with hydrogens summed into heavy atoms:
              1
     1  C    0.144994
     2  H    0.000000
     3  H    0.000000
     4  H    0.000000
     5  O   -0.144994
     6  H    0.000000
 Sum of APT charges=   0.00000
 Electronic spatial extent (au):  <R**2>=             85.0396
 Charge=              0.0000 electrons
 Dipole moment (field-independent basis, Debye):
    X=              0.6478    Y=             -1.2100    Z=             -0.0001  Tot=              1.3725
 Quadrupole moment (field-independent basis, Debye-Ang):
   XX=            -12.1019   YY=            -11.1895   ZZ=            -12.3326
   XY=              1.4445   XZ=             -0.0001   YZ=              0.0000
 Traceless Quadrupole moment (field-independent basis, Debye-Ang):
   XX=             -0.2272   YY=              0.6851   ZZ=             -0.4580
   XY=              1.4445   XZ=             -0.0001   YZ=              0.0000
 Octapole moment (field-independent basis, Debye-Ang**2):
  XXX=             -4.9602  YYY=              0.2504  ZZZ=              0.0007  XYY=             -1.8856
  XXY=             -1.1467  XXZ=              0.0000  XZZ=             -0.9930  YZZ=             -0.3737
  YYZ=             -0.0008  XYZ=             -0.0001
 Hexadecapole moment (field-independent basis, Debye-Ang**3):
 XXXX=            -58.1630 YYYY=            -17.6281 ZZZZ=            -15.5073 XXXY=              1.3360
 XXXZ=              0.0000 YYYX=              1.3017 YYYZ=              0.0000 ZZZX=              0.0010
 ZZZY=              0.0000 XXYY=            -11.4967 XXZZ=            -12.1859 YYZZ=             -5.6350
 XXYZ=             -0.0001 YYXZ=             -0.0011 ZZXY=             -0.6270
 N-N= 3.909756129072D+01 E-N=-3.459779463544D+02  KE= 1.124826257718D+02
  Exact polarizability:  10.423   1.658   9.091   0.000   0.000   5.932
 Approx polarizability:  13.503   0.756  12.789   0.000   0.000   7.207
 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 ---  -19.7722  -17.8125   -0.0002    0.0003    0.0005    3.9186
 Low frequencies ---  400.9523 1081.3967 1152.1924
 Diagonal vibrational polarizability:
        0.6569917       0.1172576      10.3669792
 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 --   400.9522              1081.3967              1152.1924
 Red. masses --     1.0636                 1.6810                 2.1141
 Frc consts  --     0.1007                 1.1582                 1.6536
 IR Inten    --    61.3836                20.8961                 0.1891
  Atom  AN      X      Y      Z        X      Y      Z        X      Y      Z
     1   6     0.00   0.00   0.00     0.15   0.08   0.00     0.22  -0.10   0.00
     2   1     0.00   0.00  -0.30     0.74  -0.18   0.00    -0.30   0.12   0.00
     3   1     0.05   0.24   0.12    -0.20  -0.21  -0.03     0.50   0.18   0.03
     4   1    -0.05  -0.24   0.12    -0.20  -0.21   0.03     0.50   0.18  -0.03
     5   8     0.00   0.00   0.06    -0.16  -0.01   0.00    -0.18   0.04   0.00
     6   1     0.00   0.00  -0.87     0.40  -0.20   0.00    -0.48   0.10   0.00
                     4                      5                      6
                     A                      A                      A
 Frequencies --  1178.3370              1582.4441              1604.2806
 Red. masses --     1.2485                 1.2134                 1.2065
 Frc consts  --     1.0213                 1.7903                 1.8295
 IR Inten    --     0.8686                10.2097                 1.8160
  Atom  AN      X      Y      Z        X      Y      Z        X      Y      Z
     1   6     0.00   0.00   0.13     0.00   0.10   0.00     0.13   0.02   0.00
     2   1     0.00   0.00  -0.22     0.41  -0.06   0.00    -0.51   0.28   0.00
     3   1     0.65  -0.08  -0.19    -0.01  -0.10  -0.11    -0.50  -0.20   0.13
     4   1    -0.65   0.08  -0.19    -0.01  -0.10   0.11    -0.50  -0.20  -0.13
     5   8     0.00   0.00  -0.06     0.03  -0.07   0.00     0.01  -0.01   0.00
     6   1     0.00   0.00  -0.02    -0.85   0.21   0.00    -0.18   0.04   0.00
                     7                      8                      9
                     A                      A                      A
 Frequencies --  1662.1115              1683.9415              3218.4824
 Red. masses --     1.0567                 1.0430                 1.0358
 Frc consts  --     1.7199                 1.7426                 6.3216
 IR Inten    --     2.9674                 2.9857                16.2403
  Atom  AN      X      Y      Z        X      Y      Z        X      Y      Z
     1   6     0.00   0.00  -0.07     0.02  -0.05   0.00    -0.05   0.02   0.00
     2   1     0.00   0.00   0.75     0.27  -0.14   0.00     0.15   0.37   0.00
     3   1     0.27   0.38   0.06    -0.23   0.48   0.40     0.22  -0.30   0.53
     4   1    -0.27  -0.38   0.06    -0.23   0.48  -0.40     0.22  -0.30  -0.53
     5   8     0.00   0.00  -0.01     0.01  -0.02   0.00     0.00   0.00   0.00
     6   1     0.00   0.00   0.00    -0.11   0.02   0.00     0.01   0.01   0.00
                    10                     11                     12
                     A                      A                      A
 Frequencies --  3353.5075              3426.2577              3688.2174
 Red. masses --     1.1067                 1.1047                 1.0681
 Frc consts  --     7.3330                 7.6406                 8.5603
 IR Inten    --    19.1421                 2.4577                42.8010
  Atom  AN      X      Y      Z        X      Y      Z        X      Y      Z
     1   6     0.00   0.00   0.09    -0.01  -0.09   0.00     0.00   0.01   0.00
     2   1     0.00   0.00   0.01     0.34   0.85   0.00    -0.01  -0.03   0.00
     3   1    -0.23   0.34  -0.57    -0.09   0.12  -0.23     0.00  -0.01   0.01
     4   1     0.23  -0.35  -0.57    -0.09   0.12   0.23     0.00  -0.01  -0.01
     5   8     0.00   0.00   0.00     0.00   0.00   0.00     0.02   0.06   0.00
     6   1     0.00   0.00  -0.01     0.00  -0.04   0.00    -0.30  -0.95   0.00

 -------------------
 - Thermochemistry -
 -------------------
 Temperature   298.150 Kelvin.  Pressure   1.00000 Atm.
 Atom     1 has atomic number  6 and mass  12.00000
 Atom     2 has atomic number  1 and mass   1.00783
 Atom     3 has atomic number  1 and mass   1.00783
 Atom     4 has atomic number  1 and mass   1.00783
 Atom     5 has atomic number  8 and mass  15.99491
 Atom     6 has atomic number  1 and mass   1.00783
 Molecular mass:    32.02621 amu.
 Principal axes and moments of inertia in atomic units:
                           1         2         3
     Eigenvalues --    14.98042  76.80603  80.14680
           X            0.99893   0.04624   0.00000
           Y           -0.04624   0.99893   0.00000
           Z            0.00000   0.00000   1.00000
 This molecule is an asymmetric top.
 Rotational symmetry number  1.
 Rotational temperatures (Kelvin)      5.78180     1.12770     1.08069
 Rotational constants (GHZ):         120.47337    23.49739    22.51794
 Zero-point vibrational energy     143744.0 (Joules/Mol)
                                   34.35564 (Kcal/Mol)
 Warning -- explicit consideration of   1 degrees of freedom as
           vibrations may cause significant error
 Vibrational temperatures:    576.88  1555.89  1657.75  1695.36  2276.78
          (Kelvin)           2308.20  2391.40  2422.81  4630.67  4824.94
                             4929.61  5306.52
 
 Zero-point correction=                           0.054749 (Hartree/Particle)
 Thermal correction to Energy=                    0.057967
 Thermal correction to Enthalpy=                  0.058911
 Thermal correction to Gibbs Free Energy=         0.032002
 Sum of electronic and zero-point Energies=           -114.124301
 Sum of electronic and thermal Energies=              -114.121083
 Sum of electronic and thermal Enthalpies=            -114.120139
 Sum of electronic and thermal Free Energies=         -114.147048
 
                     E (Thermal)             CV                S
                      KCal/Mol        Cal/Mol-Kelvin    Cal/Mol-Kelvin
 Total                   36.375              8.372             56.635
 Electronic               0.000              0.000              0.000
 Translational            0.889              2.981             36.324
 Rotational               0.889              2.981             19.162
 Vibrational             34.597              2.411              1.149
 Vibration     1          0.767              1.468              0.959
                       Q            Log10(Q)             Ln(Q)
 Total Bot       0.190573D-14        -14.719938        -33.893909
 Total V=0       0.290330D+11         10.462892         24.091700
 Vib (Bot)       0.778215D-25        -25.108900        -57.815379
 Vib (Bot)    1  0.444223D+00         -0.352399         -0.811429
 Vib (V=0)       0.118558D+01          0.073930          0.170229
 Vib (V=0)    1  0.116883D+01          0.067751          0.156003
 Electronic      0.100000D+01          0.000000          0.000000
 Translational   0.712383D+07          6.852714         15.778956
 Rotational      0.343755D+04          3.536249          8.142514
 ***** Axes restored to original set *****
 -------------------------------------------------------------------
 Center     Atomic                   Forces (Hartrees/Bohr)
 Number     Number              X              Y              Z
 -------------------------------------------------------------------
      1        6           0.000185333    0.000034885    0.000004693
      2        1           0.000012736    0.000029719    0.000001034
      3        1          -0.000065097   -0.000012705   -0.000002999
      4        1          -0.000064512   -0.000011286   -0.000001343
      5        8          -0.000075721   -0.000023715   -0.000005927
      6        1           0.000007260   -0.000016898    0.000004543
 -------------------------------------------------------------------
 Cartesian Forces:  Max     0.000185333 RMS     0.000053760

 GradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGrad
 Berny optimization.
 Internal  Forces:  Max     0.000083721 RMS     0.000044872
 Search for a local minimum.
 Step number   1 out of a maximum of    2
 All quantities printed in internal units (Hartrees-Bohrs-Radians)
 Second derivative matrix not updated -- analytic derivatives used.
 The second derivative matrix:
                          R1        R2        R3        R4        R5
           R1           0.40698
           R2          -0.00324   0.38605
           R3          -0.00325  -0.00213   0.38607
           R4           0.00981   0.01712   0.01711   0.38952
           R5          -0.00170   0.00077   0.00078  -0.02162   0.48782
           A1           0.00522   0.00702  -0.00534  -0.02468  -0.00021
           A2           0.00522  -0.00534   0.00702  -0.02468  -0.00021
           A3           0.00421  -0.00424  -0.00424   0.01837   0.00698
           A4          -0.00491   0.00753   0.00753  -0.02814   0.00073
           A5          -0.00433  -0.00090  -0.00399   0.02747  -0.00351
           A6          -0.00433  -0.00399  -0.00090   0.02746  -0.00352
           A7           0.00276  -0.00315  -0.00316   0.06577   0.01421
           D1           0.00000  -0.00444   0.00443   0.00001   0.00000
           D2           0.00667   0.00092  -0.00718  -0.00262   0.00225
           D3          -0.00667   0.00718  -0.00092   0.00263  -0.00226
                          A1        A2        A3        A4        A5
           A1           0.08732
           A2           0.00221   0.08732
           A3          -0.04515  -0.04515   0.14851
           A4           0.00310   0.00310  -0.00061   0.09087
           A5          -0.03949  -0.00150  -0.02984  -0.04735   0.14406
           A6          -0.00150  -0.03949  -0.02984  -0.04734  -0.03163
           A7          -0.00678  -0.00678   0.03397   0.00306  -0.01161
           D1          -0.02771   0.02770   0.00001   0.00000  -0.01909
           D2           0.02765   0.00024   0.02373  -0.02382  -0.00414
           D3          -0.00024  -0.02765  -0.02372   0.02382   0.02033
                          A6        A7        D1        D2        D3
           A6           0.14405
           A7          -0.01162   0.28754
           D1           0.01908   0.00000   0.03228
           D2          -0.02033   0.00703  -0.01277   0.03425
           D3           0.00414  -0.00702  -0.01277  -0.01677   0.03425
     Eigenvalues ---    0.00531   0.11187   0.11331   0.15830   0.18257
     Eigenvalues ---    0.19097   0.27435   0.37967   0.38915   0.40814
     Eigenvalues ---    0.43958   0.493651000.000001000.000001000.00000
 Angle between quadratic step and forces=  41.68 degrees.
 Linear search not attempted -- first point.
 Iteration  1 RMS(Cart)=  0.00038895 RMS(Int)=  0.00000016
 Iteration  2 RMS(Cart)=  0.00000011 RMS(Int)=  0.00000008
 Variable       Old X    -DE/DX   Delta X   Delta X   Delta X     New X
                                 (Linear)    (Quad)   (Total)
    R1        2.09080   0.00003   0.00000   0.00004   0.00004   2.09085
    R2        2.10332  -0.00002   0.00000  -0.00008  -0.00008   2.10324
    R3        2.10330  -0.00002   0.00000  -0.00006  -0.00006   2.10324
    R4        2.77371   0.00006   0.00000   0.00033   0.00033   2.77405
    R5        1.94369   0.00001   0.00000   0.00004   0.00004   1.94372
    A1        1.88435   0.00004   0.00000   0.00034   0.00034   1.88469
    A2        1.88437   0.00004   0.00000   0.00032   0.00032   1.88469
    A3        1.86356   0.00005   0.00000   0.00023   0.00023   1.86378
    A4        1.88107   0.00005   0.00000   0.00022   0.00022   1.88129
    A5        1.97338  -0.00008   0.00000  -0.00050  -0.00050   1.97288
    A6        1.97341  -0.00008   0.00000  -0.00053  -0.00053   1.97288
    A7        1.76805  -0.00002   0.00000  -0.00022  -0.00022   1.76782
    D1        3.14106   0.00000   0.00000   0.00054   0.00054   3.14159
    D2       -1.07239   0.00004   0.00000   0.00081   0.00081  -1.07158
    D3        1.07128  -0.00003   0.00000   0.00030   0.00030   1.07158
         Item               Value     Threshold  Converged?
 Maximum Force            0.000084     0.000450     YES
 RMS     Force            0.000045     0.000300     YES
 Maximum Displacement     0.000811     0.001800     YES
 RMS     Displacement     0.000389     0.001200     YES
 Predicted change in Energy=-9.282656D-08
 Optimization completed.
    -- Stationary point found.
                           ----------------------------
                           !   Optimized Parameters   !
                           ! (Angstroms and Degrees)  !
 --------------------------                            --------------------------
 ! Name  Definition              Value          Derivative Info.                !
 --------------------------------------------------------------------------------
 ! R1    R(1,2)                  1.1064         -DE/DX =    0.0                 !
 ! R2    R(1,3)                  1.113          -DE/DX =    0.0                 !
 ! R3    R(1,4)                  1.113          -DE/DX =    0.0                 !
 ! R4    R(1,5)                  1.4678         -DE/DX =    0.0001              !
 ! R5    R(5,6)                  1.0286         -DE/DX =    0.0                 !
 ! A1    A(2,1,3)              107.9654         -DE/DX =    0.0                 !
 ! A2    A(2,1,4)              107.9662         -DE/DX =    0.0                 !
 ! A3    A(2,1,5)              106.7739         -DE/DX =    0.0                 !
 ! A4    A(3,1,4)              107.7775         -DE/DX =    0.0                 !
 ! A5    A(3,1,5)              113.0663         -DE/DX =   -0.0001              !
 ! A6    A(4,1,5)              113.0679         -DE/DX =   -0.0001              !
 ! A7    A(1,5,6)              101.3017         -DE/DX =    0.0                 !
 ! D1    D(2,1,5,6)            179.9692         -DE/DX =    0.0                 !
 ! D2    D(3,1,5,6)            -61.4433         -DE/DX =    0.0                 !
 ! D3    D(4,1,5,6)             61.3798         -DE/DX =    0.0                 !
 --------------------------------------------------------------------------------
 GradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGrad

 1|1|UNPC-DESKTOP-NTK9DLK|Freq|RB3LYP|STO-3G|C1H4O1|LEAHW|21-Mar-2019|0
 ||#N Geom=AllCheck Guess=TCheck SCRF=Check GenChk RB3LYP/STO-3G Freq||
 Title Card Required||0,1|C,0.680681,-0.015524,-0.000002|H,1.102821,1.0
 07184,-0.000577|H,1.066403,-0.545634,0.899463|H,1.066324,-0.546624,-0.
 898904|O,-0.779961,0.129117,0.000003|H,-1.079944,-0.85472,0.000008||Ve
 rsion=IA32W-G09RevA.02|State=1-A|HF=-114.1790501|RMSD=3.265e-010|RMSF=
 5.376e-005|ZeroPoint=0.0547492|Thermal=0.057967|Dipole=0.2548547,-0.47
 60589,-0.0000259|DipoleDeriv=0.335147,0.0511619,0.0000908,0.0361367,0.
 0771463,-0.0000011,0.0000505,0.0000289,0.2311975,0.0117214,-0.0262345,
 -0.0000048,-0.0311573,-0.0275761,0.0000573,0.0000117,0.0000579,0.05562
 99,-0.0669473,-0.0018093,-0.0153649,0.0468622,0.0124934,0.0587168,-0.0
 456693,0.0476917,-0.0697185,-0.0669324,-0.001795,0.0153384,0.0469005,0
 .0124116,-0.0587931,0.045595,-0.0477691,-0.0695898,-0.3250312,0.037788
 4,-0.0000773,-0.0098658,0.1197966,0.0000128,0.0000131,-0.0000473,-0.40
 74466,0.1120426,-0.0591116,0.0000178,-0.0888764,-0.1942719,0.0000073,-
 0.000001,0.0000379,0.2599275|Polar=10.4225629,1.6575871,9.0912837,0.00
 01942,0.0000111,5.9316359|PG=C01 [X(C1H4O1)]|NImag=0||0.57978046,0.017
 97899,0.73107318,-0.00000601,0.00000371,0.66465150,-0.10167930,-0.1044
 7177,0.00006075,0.11620217,-0.10661210,-0.34761387,0.00015318,0.119398
 99,0.35795056,0.00006138,0.00015550,-0.06851831,-0.00006469,-0.0001674
 6,0.05862529,-0.08607002,0.04385684,-0.08090631,0.00646109,-0.00646025
 ,0.01271935,0.10067389,0.04175304,-0.13668201,0.11667245,0.01247010,-0
 .01077807,0.03044491,-0.05314729,0.13350770,-0.07093616,0.11589486,-0.
 26787741,0.00024440,-0.00614291,0.00354205,0.08625081,-0.12710436,0.27
 558919,-0.08606582,0.04393965,0.08084626,0.00645984,-0.00647327,-0.012
 71332,0.00753265,-0.00632570,-0.01016043,0.10065995,0.04183233,-0.1369
 4594,-0.11683192,0.01246919,-0.01080204,-0.03042796,-0.00631246,0.0104
 2330,0.01935199,-0.05323501,0.13379346,0.07088582,-0.11605638,-0.26764
 851,-0.00025901,0.00616048,0.00357125,0.01016580,-0.01938537,-0.020105
 93,-0.08618371,0.12727525,0.27533778,-0.27766846,0.06116975,-0.0000010
 1,-0.01725806,-0.00311833,-0.00000022,-0.03178331,0.00558004,-0.005479
 08,-0.03177611,0.00557718,0.00547055,0.44155618,-0.02459675,-0.1111966
 9,0.00000312,-0.04033293,0.00923665,-0.00000485,0.02146293,0.00214344,
 -0.00106538,0.02149265,0.00214010,0.00107174,0.08303731,0.55257332,-0.
 00001061,0.00000410,-0.05592402,0.00001277,-0.00000546,0.00089734,-0.0
 2813585,0.00141080,0.00764180,0.02811879,-0.00140978,0.00763403,0.0000
 1596,-0.00000055,0.04380615,-0.02829686,-0.06247345,0.00000632,-0.0101
 8574,0.00326495,-0.00000251,0.00318571,-0.00033019,0.00008047,0.003189
 50,-0.00033123,-0.00007946,-0.08307025,-0.06106321,-0.00000106,0.11517
 764,0.02964448,0.00136534,-0.00000053,0.00046642,0.00200677,-0.0000001
 4,0.00060023,0.00138565,-0.00093420,0.00060169,0.00139113,0.00093429,-
 0.15224595,-0.45489682,0.00000088,0.12093314,0.44874793,0.00000557,-0.
 00000179,-0.00468325,0.00000577,0.00000216,0.00188238,-0.00009380,-0.0
 0203843,0.00121030,0.00009242,0.00204243,0.00121139,-0.00000619,-0.000
 00407,-0.00405529,-0.00000376,-0.00000030,0.00443447||-0.00018533,-0.0
 0003488,-0.00000469,-0.00001274,-0.00002972,-0.00000103,0.00006510,0.0
 0001270,0.00000300,0.00006451,0.00001129,0.00000134,0.00007572,0.00002
 372,0.00000593,-0.00000726,0.00001690,-0.00000454|||@


 THE RARE EARTHS PERPLEX US IN OUR RESEARCHES,
 BAFFLE US IN OUR SPECULATIONS, AND HAUNT US IN OUR
 VERY DREAMS.  THEY STRETCH LIKE AN UNKNOWN BEFORE US,
 MOCKING, MYSTIFYING, AND MURMURING STRANGE REVELATIONS
 AND POSSIBILITIES.  -- SIR WILLIAM CROOKE, 1832-1919
 Job cpu time:  0 days  0 hours  0 minutes  5.0 seconds.
 File lengths (MBytes):  RWF=      5 Int=      0 D2E=      0 Chk=      1 Scr=      1
 Normal termination of Gaussian 09 at Thu Mar 21 12:57:36 2019.