From 593d18e89005765e199a91a921e46a4778cddb18 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Fri, 24 Jun 2022 16:29:26 +0100 Subject: [PATCH 001/103] Added support for parsing TMDM from turbomole --- cclib/parser/turbomoleparser.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/cclib/parser/turbomoleparser.py b/cclib/parser/turbomoleparser.py index b6b8c6ac4..54ba0877f 100644 --- a/cclib/parser/turbomoleparser.py +++ b/cclib/parser/turbomoleparser.py @@ -995,6 +995,26 @@ def extract(self, inputfile, line): self.append_attribute("etdips", [tdm_x, tdm_y, tdm_z]) + # Mag dips. + while "Magnetic transition dipole moment / i:" not in line: + line = next(inputfile) + line = next(inputfile) + + line = next(inputfile) + tmdm_x = float(line.split()[1]) + line = next(inputfile) + tmdm_y = float(line.split()[1]) + line = next(inputfile) + tmdm_z = float(line.split()[1]) + + # It's not at all clear what units turbomole is using for its TMDM, + # they appear to be equal to bohr-magneton / ~274.03011803. + # For now, we will multiply the values by 137.015059015 (to get into + # a.u. which is the defacto TMDM unit in cclib?). + self.append_attribute("etmagdips", [i * 137.015059015 for i in (tmdm_x, tmdm_y, tmdm_z)]) + + + # Excitation energies with ricc2. # +================================================================================+ # | sym | multi | state | CC2 excitation energies | %t1 | %t2 | From 8f02562acfdf01e8ff7ccb81ec2b5ee39644ded3 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Fri, 24 Jun 2022 16:36:10 +0100 Subject: [PATCH 002/103] Added test for tubomole etmagdips --- test/data/testTD.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/data/testTD.py b/test/data/testTD.py index 87469f53f..f83fa476b 100644 --- a/test/data/testTD.py +++ b/test/data/testTD.py @@ -229,6 +229,11 @@ def testoscs(self): """Is the maximum of etoscs in the right range?""" self.assertEqual(len(self.data.etoscs), self.number) self.assertAlmostEqual(max(self.data.etoscs), 0.19, delta=0.1) + + @skipForLogfile('Turbomole/basicTurbomole7.4/CO_cc2_TD', 'There are no dipole moments in ricc2') + def testetmagdipsshape(self): + """Is the shape of etmagdips correct?""" + self.assertEqual(numpy.shape(self.data.etmagdips), (self.number, 3)) class TurbomoleTDADC2Test(GenericTDTest): """Customized time-dependent HF/DFT unittest""" From cca15f596bcce6fcbb8352e6740ca5dd9c172ed4 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Fri, 24 Jun 2022 16:51:57 +0100 Subject: [PATCH 003/103] Clarified comment re. Turbomole TMDM units --- cclib/parser/turbomoleparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cclib/parser/turbomoleparser.py b/cclib/parser/turbomoleparser.py index 54ba0877f..b175ff996 100644 --- a/cclib/parser/turbomoleparser.py +++ b/cclib/parser/turbomoleparser.py @@ -1007,7 +1007,7 @@ def extract(self, inputfile, line): line = next(inputfile) tmdm_z = float(line.split()[1]) - # It's not at all clear what units turbomole is using for its TMDM, + # No idea what units Turbomole is using for its TMDM here, # they appear to be equal to bohr-magneton / ~274.03011803. # For now, we will multiply the values by 137.015059015 (to get into # a.u. which is the defacto TMDM unit in cclib?). From b524458b6ac259e0e39154e4298d72091d18b998 Mon Sep 17 00:00:00 2001 From: "Karol M. Langner" Date: Tue, 28 Jun 2022 15:48:09 -0700 Subject: [PATCH 004/103] Update changelog and bump version to v1.7.2 --- ANNOUNCE | 2 +- CHANGELOG | 14 ++++++++++++++ INSTALL | 4 ++-- cclib/__init__.py | 4 ++-- doc/sphinx/Makefile | 2 +- doc/sphinx/changelog.rst | 17 +++++++++++++++++ doc/sphinx/conf.py | 2 +- doc/sphinx/index.rst | 6 +++--- setup.py | 4 ++-- 9 files changed, 43 insertions(+), 12 deletions(-) diff --git a/ANNOUNCE b/ANNOUNCE index 9f4969089..d2aacd307 100644 --- a/ANNOUNCE +++ b/ANNOUNCE @@ -1,4 +1,4 @@ -On behalf of the cclib development team, we are pleased to announce the release of cclib 1.7.1, which is now available for download from https://cclib.github.io. This is a major update to version 1.6.4 that drops support for Python 2, and includes several small improvements. +On behalf of the cclib development team, we are pleased to announce the release of cclib 1.7.2, which is now available for download from https://cclib.github.io. This is a major update to version 1.6.4 that drops support for Python 2, and includes several small improvements. WARNING: Support for Python 2 is dropped in this version. diff --git a/CHANGELOG b/CHANGELOG index d2e6e02da..d8cc0aa76 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ +Changes in cclib-1.7.2 + +Features: + * Support vibfreqs, vibirs, etenergies, etsyms, etoscs and etsecs for NWChem (BenoitDemota) + * Support temperature, pressure, enthalpy, entropy, zpve and electronic_thermal_energy for NWChem (BenoitDamota) + * Better metadata support for point group detection + * Updated code and test file versions to QChem 5.4 and ORCA 5.0 + +Bugfixes: + * Fixed parsing mpenergies for optimization for Turbomole (Oliver Lee) + * Fixed ccenergies for Gaussian (Oliver Lee) + * Fixed oscillator strengths for ORCA (Felix Plasser) + * Fixed units of parsed MO energies for fchk + Changes in cclib-1.7.1 Features: diff --git a/INSTALL b/INSTALL index 60f866558..867732a18 100644 --- a/INSTALL +++ b/INSTALL @@ -30,7 +30,7 @@ To test, try importing NumPy at the Python prompt. You should see something simi Type "help", "copyright", "credits" or "license" for more information. >>> import numpy >>> numpy.__version__ - '1.7.1' + '1.7.2' (To exit, press CTRL+Z in Windows or CTRL+D in Linux) @@ -55,7 +55,7 @@ To test, trying importing cclib at the Python prompt. You should see something s History is saved to ~/.pyhistory. >>> import cclib >>> cclib.__version__ - '1.7.1' + '1.7.2' To run the unit tests, change directory into INSTALLDIR/test and run the following command: diff --git a/cclib/__init__.py b/cclib/__init__.py index f477c8152..5a26ef2d1 100644 --- a/cclib/__init__.py +++ b/cclib/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2021, the cclib development team +# Copyright (c) 2022, the cclib development team # # This file is part of cclib (http://cclib.github.io) and is distributed under # the terms of the BSD 3-Clause License. @@ -25,7 +25,7 @@ as well as example methods that take parsed data as input. """ -__version__ = "1.7.1" +__version__ = "1.7.2" from cclib import parser from cclib import progress diff --git a/doc/sphinx/Makefile b/doc/sphinx/Makefile index 2bc8e77ed..bd09349ae 100644 --- a/doc/sphinx/Makefile +++ b/doc/sphinx/Makefile @@ -22,7 +22,7 @@ clean: -rm -rf attributes*.rst -rm -rf coverage*.rst -PRODUCTION_VERSION = v1.7.1 +PRODUCTION_VERSION = v1.7.2 CCLIB_PROD = $(BUILDDIR)/cclib_prod CCLIB_DEV = $(BUILDDIR)/cclib_dev SRC_PROD = $(CCLIB_PROD)/cclib diff --git a/doc/sphinx/changelog.rst b/doc/sphinx/changelog.rst index e4508a22c..edc1fa692 100644 --- a/doc/sphinx/changelog.rst +++ b/doc/sphinx/changelog.rst @@ -4,6 +4,23 @@ Changelog ========= +Changes in cclib-1.7.2 +---------------------- + +**Features** + + * Support vibfreqs, vibirs, etenergies, etsyms, etoscs and etsecs for NWChem (BenoitDemota) + * Support temperature, pressure, enthalpy, entropy, zpve and electronic_thermal_energy for NWChem (BenoitDamota) + * Better metadata support for point group detection + * Updated code and test file versions to QChem 5.4 and ORCA 5.0 + +**Bugfixes** + + * Fixed parsing mpenergies for optimization for Turbomole (Oliver Lee) + * Fixed ccenergies for Gaussian (Oliver Lee) + * Fixed oscillator strengths for ORCA (Felix Plasser) + * Fixed units of parsed MO energies for fchk + Changes in cclib-1.7.1 ---------------------- diff --git a/doc/sphinx/conf.py b/doc/sphinx/conf.py index a0c6645e6..5d97140f8 100644 --- a/doc/sphinx/conf.py +++ b/doc/sphinx/conf.py @@ -53,7 +53,7 @@ def setup(app): # The short X.Y version. version = '1.7' # The full version, including alpha/beta/rc tags. -release = '1.7.1' +release = '1.7.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/sphinx/index.rst b/doc/sphinx/index.rst index 593f1facf..a4bb4ae3a 100644 --- a/doc/sphinx/index.rst +++ b/doc/sphinx/index.rst @@ -12,7 +12,7 @@ The goals of cclib are centered around the reuse of data obtained from these pro Summary ------- -The current version is **cclib 1.7.1** (see the changelog_ for what's new). The following programs are supported and systematically tested at the versions given in parentheses: +The current version is **cclib 1.7.2** (see the changelog_ for what's new). The following programs are supported and systematically tested at the versions given in parentheses: - ADF_ (versions 2007 and 2013) - DALTON_ (versions 2013 and 2015) @@ -39,7 +39,7 @@ Many types of output data are parsed by cclib, including atom coordinates, orbit How to use cclib ---------------- -You can download the `source package for cclib 1.7.1`_ or the `current development version`_ (from the `GitHub repository`_). For information on packages available in various Linux distributions, installing the source code and requirements, as well as basic usage, the `How to install`_ is a good place to start. +You can download the `source package for cclib 1.7.2`_ or the `current development version`_ (from the `GitHub repository`_). For information on packages available in various Linux distributions, installing the source code and requirements, as well as basic usage, the `How to install`_ is a good place to start. If you need further help, find a bug, need new features or have any question, please send email to the `mailing list`_ or submit an issue to the `tracker`_. @@ -82,7 +82,7 @@ A record for the latest release is also available on Zenodo_. .. _`Q-Chem`: https://q-chem.com/ .. _Turbomole: http://www.turbomole-gmbh.com/ -.. _`source package for cclib 1.7.1`: https://github.com/cclib/cclib/releases/download/v1.7.1/cclib-1.7.1.zip +.. _`source package for cclib 1.7.2`: https://github.com/cclib/cclib/releases/download/v1.7.2/cclib-1.7.2.zip .. _`current development version`: https://github.com/cclib/cclib/archive/master.zip .. _`GitHub repository`: https://github.com/cclib/cclib .. _`mailing list`: https://groups.google.com/g/cclib diff --git a/setup.py b/setup.py index dfd00dd28..67276ef20 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2020, the cclib development team +# Copyright (c) 2022, the cclib development team # # This file is part of cclib (http://cclib.github.io) and is distributed under # the terms of the BSD 3-Clause License. @@ -34,7 +34,7 @@ def setup_cclib(): setuptools.setup( name="cclib", - version="1.7.1", + version="1.7.2", url="http://cclib.github.io/", author="cclib development team", author_email="cclib-users@lists.sourceforge.net", From 8eea1bc0a8bc7eebfbd8f204c35fd8dcb46b079b Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Fri, 1 Jul 2022 13:32:32 +0100 Subject: [PATCH 005/103] Updated the unit conversion algorithm for Turbomole etmagdips --- cclib/parser/turbomoleparser.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cclib/parser/turbomoleparser.py b/cclib/parser/turbomoleparser.py index b175ff996..284ce6102 100644 --- a/cclib/parser/turbomoleparser.py +++ b/cclib/parser/turbomoleparser.py @@ -1007,11 +1007,11 @@ def extract(self, inputfile, line): line = next(inputfile) tmdm_z = float(line.split()[1]) - # No idea what units Turbomole is using for its TMDM here, - # they appear to be equal to bohr-magneton / ~274.03011803. - # For now, we will multiply the values by 137.015059015 (to get into - # a.u. which is the defacto TMDM unit in cclib?). - self.append_attribute("etmagdips", [i * 137.015059015 for i in (tmdm_x, tmdm_y, tmdm_z)]) + # The Turbomole TEDM units are equivalent to bohr-magneton * 0.5a, + # where a is the fine structure constant (~ 1/137) (Thanks to Uwe Huniar for this info). + # Weirdly, this conversion does not seem to exactly match the bohr-magneton value + # printed by turbomole... + self.append_attribute("etmagdips", [i / (0.5 * (1/137.036)) for i in (tmdm_x, tmdm_y, tmdm_z)]) From 3903756bb33c86f0f3e73909bb012fa7102ac56c Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sat, 4 Jun 2022 13:22:35 -0400 Subject: [PATCH 006/103] NWChem: copy over newest data inputs and outputs before running 7.0 --- data/NWChem/basicNWChem7.0/C_bigbasis.nw | 11 + data/NWChem/basicNWChem7.0/C_bigbasis.out | 609 ++ .../basicNWChem7.0/C_bigbasis_spherical.nw | 14 + .../basicNWChem7.0/C_bigbasis_spherical.out | 3471 ++++++++++ data/NWChem/basicNWChem7.0/Trp_polar.in | 48 + data/NWChem/basicNWChem7.0/Trp_polar.out | 1310 ++++ data/NWChem/basicNWChem7.0/dvb_bomd_ks.nw | 45 + data/NWChem/basicNWChem7.0/dvb_bomd_ks.out | 2667 ++++++++ .../dvb_dispersion_bp86_d3zero.in | 42 + .../dvb_dispersion_bp86_d3zero.out | 3503 ++++++++++ data/NWChem/basicNWChem7.0/dvb_gopt_hf.nw | 30 + data/NWChem/basicNWChem7.0/dvb_gopt_hf.out | 5957 +++++++++++++++++ data/NWChem/basicNWChem7.0/dvb_gopt_ks.nw | 33 + data/NWChem/basicNWChem7.0/dvb_gopt_ks.out | 4776 +++++++++++++ data/NWChem/basicNWChem7.0/dvb_sp_hf.nw | 39 + data/NWChem/basicNWChem7.0/dvb_sp_hf.out | 3472 ++++++++++ .../basicNWChem7.0/dvb_sp_hf_overlaps.nw | 39 + .../basicNWChem7.0/dvb_sp_hf_overlaps.out | 2805 ++++++++ data/NWChem/basicNWChem7.0/dvb_sp_ks.nw | 40 + data/NWChem/basicNWChem7.0/dvb_sp_ks.out | 3443 ++++++++++ .../basicNWChem7.0/dvb_sp_ks_overlaps.nw | 40 + .../basicNWChem7.0/dvb_sp_ks_overlaps.out | 2776 ++++++++ data/NWChem/basicNWChem7.0/dvb_un_sp_ks.nw | 40 + data/NWChem/basicNWChem7.0/dvb_un_sp_ks.out | 3402 ++++++++++ data/NWChem/basicNWChem7.0/water_ccsd(t).nw | 18 + data/NWChem/basicNWChem7.0/water_ccsd(t).out | 694 ++ data/NWChem/basicNWChem7.0/water_mp2.nw | 15 + data/NWChem/basicNWChem7.0/water_mp2.out | 596 ++ 28 files changed, 39935 insertions(+) create mode 100644 data/NWChem/basicNWChem7.0/C_bigbasis.nw create mode 100644 data/NWChem/basicNWChem7.0/C_bigbasis.out create mode 100644 data/NWChem/basicNWChem7.0/C_bigbasis_spherical.nw create mode 100644 data/NWChem/basicNWChem7.0/C_bigbasis_spherical.out create mode 100644 data/NWChem/basicNWChem7.0/Trp_polar.in create mode 100644 data/NWChem/basicNWChem7.0/Trp_polar.out create mode 100644 data/NWChem/basicNWChem7.0/dvb_bomd_ks.nw create mode 100644 data/NWChem/basicNWChem7.0/dvb_bomd_ks.out create mode 100644 data/NWChem/basicNWChem7.0/dvb_dispersion_bp86_d3zero.in create mode 100644 data/NWChem/basicNWChem7.0/dvb_dispersion_bp86_d3zero.out create mode 100644 data/NWChem/basicNWChem7.0/dvb_gopt_hf.nw create mode 100644 data/NWChem/basicNWChem7.0/dvb_gopt_hf.out create mode 100644 data/NWChem/basicNWChem7.0/dvb_gopt_ks.nw create mode 100644 data/NWChem/basicNWChem7.0/dvb_gopt_ks.out create mode 100644 data/NWChem/basicNWChem7.0/dvb_sp_hf.nw create mode 100644 data/NWChem/basicNWChem7.0/dvb_sp_hf.out create mode 100644 data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.nw create mode 100644 data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.out create mode 100644 data/NWChem/basicNWChem7.0/dvb_sp_ks.nw create mode 100644 data/NWChem/basicNWChem7.0/dvb_sp_ks.out create mode 100644 data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.nw create mode 100644 data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.out create mode 100644 data/NWChem/basicNWChem7.0/dvb_un_sp_ks.nw create mode 100644 data/NWChem/basicNWChem7.0/dvb_un_sp_ks.out create mode 100644 data/NWChem/basicNWChem7.0/water_ccsd(t).nw create mode 100644 data/NWChem/basicNWChem7.0/water_ccsd(t).out create mode 100644 data/NWChem/basicNWChem7.0/water_mp2.nw create mode 100644 data/NWChem/basicNWChem7.0/water_mp2.out diff --git a/data/NWChem/basicNWChem7.0/C_bigbasis.nw b/data/NWChem/basicNWChem7.0/C_bigbasis.nw new file mode 100644 index 000000000..5cabbb527 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/C_bigbasis.nw @@ -0,0 +1,11 @@ + start carbon + title "C atom" + + geometry units angstroms + C -1.4152533224 0.2302217854 0.0000000000 + end + basis + * library aug-cc-pVQZ + end + task scf + diff --git a/data/NWChem/basicNWChem7.0/C_bigbasis.out b/data/NWChem/basicNWChem7.0/C_bigbasis.out new file mode 100644 index 000000000..1269acdc2 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/C_bigbasis.out @@ -0,0 +1,609 @@ + argument 1 = C_bigbasis.nw + + + + + Northwest Computational Chemistry Package (NWChem) 6.5 + ------------------------------------------------------ + + + Environmental Molecular Sciences Laboratory + Pacific Northwest National Laboratory + Richland, WA 99352 + + Copyright (c) 1994-2014 + Pacific Northwest National Laboratory + Battelle Memorial Institute + + NWChem is an open-source computational chemistry package + distributed under the terms of the + Educational Community License (ECL) 2.0 + A copy of the license is included with this distribution + in the LICENSE.TXT file + + ACKNOWLEDGMENT + -------------- + + This software and its documentation were developed at the + EMSL at Pacific Northwest National Laboratory, a multiprogram + national laboratory, operated for the U.S. Department of Energy + by Battelle under Contract Number DE-AC05-76RL01830. Support + for this work was provided by the Department of Energy Office + of Biological and Environmental Research, Office of Basic + Energy Sciences, and the Office of Advanced Scientific Computing. + + + Job information + --------------- + + hostname = boman + program = /usr/lib64/mpich/bin/nwchem_mpich + date = Thu Mar 12 23:38:59 2015 + + compiled = Sat_Dec_06_13:02:58_2014 + source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 + nwchem branch = 6.5 + nwchem revision = 26243 + ga revision = 10506 + input = C_bigbasis.nw + prefix = carbon. + data base = ./carbon.db + status = startup + nproc = 1 + time left = -1s + + + + Memory information + ------------------ + + heap = 13107194 doubles = 100.0 Mbytes + stack = 13107199 doubles = 100.0 Mbytes + global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) + total = 52428793 doubles = 400.0 Mbytes + verify = yes + hardfail = no + + + Directory information + --------------------- + + 0 permanent = . + 0 scratch = . + + + + + NWChem Input Module + ------------------- + + + C atom + ------ + + Scaling coordinates for geometry "geometry" by 1.889725989 + (inverse scale = 0.529177249) + + + + Geometry "geometry" -> "" + ------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.00000000 0.00000000 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + + + Effective nuclear repulsion energy (a.u.) 0.0000000000 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + + XYZ format geometry + ------------------- + 1 + geometry + C 0.00000000 0.00000000 0.00000000 + + library name resolved from: environment + library file name is: + + + + Summary of "ao basis" -> "" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + * aug-cc-pVQZ on all atoms + + + Basis "ao basis" -> "ao basis" (cartesian) + ----- + C (Carbon) + ---------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.39800000E+04 0.000091 + 1 S 5.08900000E+03 0.000704 + 1 S 1.15700000E+03 0.003693 + 1 S 3.26600000E+02 0.015360 + 1 S 1.06100000E+02 0.052929 + 1 S 3.81100000E+01 0.147043 + 1 S 1.47500000E+01 0.305631 + 1 S 6.03500000E+00 0.399345 + 1 S 2.53000000E+00 0.217051 + + 2 S 3.39800000E+04 -0.000019 + 2 S 5.08900000E+03 -0.000151 + 2 S 1.15700000E+03 -0.000785 + 2 S 3.26600000E+02 -0.003324 + 2 S 1.06100000E+02 -0.011512 + 2 S 3.81100000E+01 -0.034160 + 2 S 1.47500000E+01 -0.077173 + 2 S 6.03500000E+00 -0.141493 + 2 S 2.53000000E+00 -0.118019 + + 3 S 7.35500000E-01 1.000000 + + 4 S 2.90500000E-01 1.000000 + + 5 S 1.11100000E-01 1.000000 + + 6 S 4.14500000E-02 1.000000 + + 7 P 3.45100000E+01 0.005378 + 7 P 7.91500000E+00 0.036132 + 7 P 2.36800000E+00 0.142493 + + 8 P 8.13200000E-01 1.000000 + + 9 P 2.89000000E-01 1.000000 + + 10 P 1.00700000E-01 1.000000 + + 11 P 3.21800000E-02 1.000000 + + 12 D 1.84800000E+00 1.000000 + + 13 D 6.49000000E-01 1.000000 + + 14 D 2.28000000E-01 1.000000 + + 15 D 7.66000000E-02 1.000000 + + 16 F 1.41900000E+00 1.000000 + + 17 F 4.85000000E-01 1.000000 + + 18 F 1.87000000E-01 1.000000 + + 19 G 1.01100000E+00 1.000000 + + 20 G 4.24000000E-01 1.000000 + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C aug-cc-pVQZ 20 105 6s5p4d3f2g + + + NWChem SCF Module + ----------------- + + + C atom + + + + ao basis = "ao basis" + functions = 105 + atoms = 1 + closed shells = 3 + open shells = 0 + charge = 0.00 + wavefunction = RHF + input vectors = atomic + output vectors = ./carbon.movecs + use symmetry = F + symmetry adapt = F + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C aug-cc-pVQZ 20 105 6s5p4d3f2g + + + + Forming initial guess at 0.9s + + + Superposition of Atomic Density Guess + ------------------------------------- + + Sum of atomic energies: -37.67212527 + + Non-variational initial energy + ------------------------------ + + Total energy = -37.316033 + 1-e energy = -50.422595 + 2-e energy = 13.106562 + HOMO = -0.079258 + LUMO = -0.079258 + + + Starting SCF solution at 1.7s + + + + ---------------------------------------------- + Quadratically convergent ROHF + + Convergence threshold : 1.000E-04 + Maximum no. of iterations : 30 + Final Fock-matrix accuracy: 1.000E-07 + ---------------------------------------------- + + + Integral file = ./carbon.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 0 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 2.216D+04 #integrals = 2.375D+06 #direct = 0.0% #cached =100.0% + + + iter energy gnorm gmax time + ----- ------------------- --------- --------- -------- + 1 -37.5688058794 4.90D-01 1.83D-01 3.0 + 2 -37.6026156044 1.46D-01 6.13D-02 3.1 + 3 -37.6045955930 2.99D-03 1.16D-03 3.3 + 4 -37.6045963875 8.86D-06 4.00D-06 3.6 + + + Final RHF results + ------------------ + + Total SCF energy = -37.604596387455 + One-electron energy = -50.311751325836 + Two-electron energy = 12.707154938381 + Nuclear repulsion energy = 0.000000000000 + + Time for solution = 3.0s + + + Final eigenvalues + ----------------- + + 1 + 1 -11.3648 + 2 -0.7255 + 3 -0.3584 + 4 0.0186 + 5 0.0186 + 6 0.0485 + 7 0.0794 + 8 0.0951 + 9 0.0951 + 10 0.2075 + 11 0.2193 + 12 0.2193 + 13 0.2278 + + ROHF Final Molecular Orbital Analysis + ------------------------------------- + + Vector 2 Occ=2.000000D+00 E=-7.255323D-01 + MO Center= -1.5D-17, -1.6D-17, 3.5D-17, r^2= 8.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.739716 1 C s 2 0.338000 1 C s + 3 0.220047 1 C s 5 0.188087 1 C s + + Vector 3 Occ=2.000000D+00 E=-3.583778D-01 + MO Center= -7.5D-16, -5.4D-16, 2.0D-16, r^2= 1.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.258782 1 C px 10 0.243404 1 C px + 14 -0.234054 1 C py 11 -0.220145 1 C py + 16 0.160781 1 C px + + Vector 4 Occ=0.000000D+00 E= 1.855930D-02 + MO Center= 6.1D-15, 8.5D-15, -2.7D-15, r^2= 5.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 20 0.474785 1 C py 19 0.356554 1 C px + 11 0.206000 1 C py 67 0.178570 1 C fxxy + 74 0.174497 1 C fyzz 72 0.162537 1 C fyyy + 21 -0.156056 1 C pz 10 0.154702 1 C px + + Vector 5 Occ=0.000000D+00 E= 1.855930D-02 + MO Center= -1.6D-14, 8.0D-16, -3.8D-14, r^2= 5.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.558745 1 C pz 19 0.254273 1 C px + 12 0.242429 1 C pz 75 0.200903 1 C fzzz + 68 0.195177 1 C fxxz 73 0.191457 1 C fyyz + 18 -0.153533 1 C pz + + Vector 6 Occ=0.000000D+00 E= 4.854699D-02 + MO Center= 3.6D-14, -5.9D-14, 3.3D-14, r^2= 1.4D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 6 7.640961 1 C s 4 -3.364331 1 C s + 40 -2.246431 1 C dxx 43 -2.240694 1 C dyy + 45 -2.221777 1 C dzz 39 -1.391775 1 C dzz + 34 -1.374537 1 C dxx 37 -1.378548 1 C dyy + 5 0.995797 1 C s 96 0.705855 1 C gxxzz + + Vector 7 Occ=0.000000D+00 E= 7.943320D-02 + MO Center= -4.0D-14, 3.5D-14, 1.6D-14, r^2= 1.6D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 16 1.789684 1 C px 17 -1.618670 1 C py + 19 -1.100977 1 C px 20 0.995773 1 C py + 18 -0.835602 1 C pz 66 -0.764368 1 C fxxx + 71 -0.765981 1 C fxzz 69 -0.757589 1 C fxyy + 72 0.692096 1 C fyyy 74 0.692787 1 C fyzz + + Vector 8 Occ=0.000000D+00 E= 9.506261D-02 + MO Center= -2.1D-15, 3.9D-15, -1.2D-14, r^2= 1.3D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 18 2.711864 1 C pz 17 -1.485893 1 C py + 21 -1.322348 1 C pz 68 -1.083519 1 C fxxz + 73 -1.080983 1 C fyyz 75 -1.080464 1 C fzzz + 15 1.006088 1 C pz 20 0.724545 1 C py + 58 -0.626803 1 C fxxz 63 -0.622303 1 C fyyz + + Vector 9 Occ=0.000000D+00 E= 9.506261D-02 + MO Center= 6.8D-15, 5.8D-15, 4.9D-15, r^2= 1.3D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 16 2.205141 1 C px 17 1.875104 1 C py + 18 1.090628 1 C pz 19 -1.075262 1 C px + 20 -0.914331 1 C py 66 -0.880977 1 C fxxx + 69 -0.875694 1 C fxyy 71 -0.877156 1 C fxzz + 13 0.818096 1 C px 72 -0.748648 1 C fyyy + + Vector 10 Occ=0.000000D+00 E= 2.075448D-01 + MO Center= 5.0D-15, 9.9D-15, -1.8D-15, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 6 10.898838 1 C s 4 -7.674247 1 C s + 5 6.413766 1 C s 45 -4.504887 1 C dzz + 43 -4.342119 1 C dyy 40 -4.292754 1 C dxx + 34 -3.417422 1 C dxx 37 -3.382306 1 C dyy + 39 -3.266521 1 C dzz 94 1.667303 1 C gxxyy + + Vector 11 Occ=0.000000D+00 E= 2.193480D-01 + MO Center= -6.6D-16, 2.6D-15, -5.9D-15, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 44 1.517574 1 C dyz 42 1.392189 1 C dxz + 38 -1.216819 1 C dyz 36 -1.116284 1 C dxz + 95 0.646161 1 C gxxyz 104 0.638967 1 C gyzzz + 102 0.635152 1 C gyyyz 98 0.596281 1 C gxyyz + 100 0.586409 1 C gxzzz 93 0.581271 1 C gxxxz + + Vector 12 Occ=0.000000D+00 E= 2.193480D-01 + MO Center= -1.4D-15, -1.6D-15, 1.2D-15, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 41 1.201826 1 C dxy 45 -0.973002 1 C dzz + 35 -0.963647 1 C dxy 39 0.780171 1 C dzz + 43 0.539213 1 C dyy 97 0.507777 1 C gxyyy + 92 0.505100 1 C gxxxy 99 0.500161 1 C gxyzz + 44 0.485006 1 C dyz 42 -0.469926 1 C dxz + + Vector 13 Occ=0.000000D+00 E= 2.278086D-01 + MO Center= -1.0D-15, 1.5D-15, -9.8D-16, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 42 1.359944 1 C dxz 36 -1.111694 1 C dxz + 44 -0.943978 1 C dyz 38 0.771660 1 C dyz + 41 -0.704054 1 C dxy 45 -0.645980 1 C dzz + 43 0.595415 1 C dyy 93 0.584108 1 C gxxxz + 100 0.586810 1 C gxzzz 98 0.581774 1 C gxyyz + + Vector 14 Occ=0.000000D+00 E= 2.278086D-01 + MO Center= 6.2D-15, 1.1D-15, 5.5D-16, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 40 1.092387 1 C dxx 34 -0.892978 1 C dxx + 43 -0.891940 1 C dyy 44 -0.848737 1 C dyz + 37 0.729121 1 C dyy 38 0.693805 1 C dyz + 91 0.468942 1 C gxxxx 103 -0.469054 1 C gyyzz + 96 0.387989 1 C gxxzz 101 -0.383955 1 C gyyyy + + Vector 15 Occ=0.000000D+00 E= 2.333995D-01 + MO Center= -4.0D-16, 4.5D-16, -3.1D-15, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 6 3.267210 1 C s 4 -2.491286 1 C s + 5 2.253137 1 C s 40 -1.643299 1 C dxx + 41 1.612327 1 C dxy 43 -1.481095 1 C dyy + 39 -1.440538 1 C dzz 35 -1.346972 1 C dxy + 37 -0.993735 1 C dyy 45 -0.946271 1 C dzz + + Vector 16 Occ=0.000000D+00 E= 3.090704D-01 + MO Center= 8.1D-16, -5.5D-15, 4.7D-17, r^2= 9.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 16 5.363539 1 C px 17 -4.851024 1 C py + 69 -2.517154 1 C fxyy 18 -2.504231 1 C pz + 66 -2.485406 1 C fxxx 71 -2.477851 1 C fxzz + 67 2.287407 1 C fxxy 72 2.244319 1 C fyyy + 74 2.241080 1 C fyzz 13 1.520692 1 C px + + Vector 17 Occ=0.000000D+00 E= 3.237123D-01 + MO Center= -5.1D-17, -9.5D-17, 2.9D-15, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 17 5.892821 1 C py 16 4.622255 1 C px + 72 -2.808538 1 C fyyy 67 -2.783698 1 C fxxy + 74 -2.792126 1 C fyzz 66 -2.205848 1 C fxxx + 71 -2.198352 1 C fxzz 69 -2.166655 1 C fxyy + 14 1.630339 1 C py 57 -1.538540 1 C fxxy + + Vector 18 Occ=0.000000D+00 E= 3.237123D-01 + MO Center= 8.1D-16, -4.3D-16, 4.5D-15, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 18 7.059687 1 C pz 68 -3.359855 1 C fxxz + 73 -3.363373 1 C fyyz 75 -3.350233 1 C fzzz + 16 2.888679 1 C px 15 1.953170 1 C pz + 58 -1.829117 1 C fxxz 63 -1.827132 1 C fyyz + 65 -1.834547 1 C fzzz 66 -1.378545 1 C fxxx + + Vector 19 Occ=0.000000D+00 E= 5.318156D-01 + MO Center= -8.0D-16, 1.6D-15, -1.3D-15, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 23.980912 1 C s 4 -19.360996 1 C s + 6 10.671023 1 C s 34 -8.103800 1 C dxx + 37 -8.061044 1 C dyy 39 -7.920065 1 C dzz + 45 -5.568979 1 C dzz 40 -5.515605 1 C dxx + 43 -5.528025 1 C dyy 94 3.707229 1 C gxxyy + + +------------------------------------------------------------ +EAF file 0: "./carbon.aoints.0" size=28835840 bytes +------------------------------------------------------------ + write read awrite aread wait + ----- ---- ------ ----- ---- + calls: 55 8 0 432 432 + data(b): 2.88e+07 4.19e+06 0.00e+00 2.26e+08 + time(s): 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +rate(mb/s): 0.00e+00 0.00e+00 +------------------------------------------------------------ + + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 0.000000000000 0.000000000000 0.000000000000 + 0.000000000000 0.000000000000 0.000000000000 + 0.000000000000 0.000000000000 0.000000000000 + + Mulliken analysis of the total density + -------------------------------------- + + Atom Charge Shell Charges + ----------- ------ ------------------------------------------------------- + 1 C 6 6.00 1.99 -0.03 0.37 1.39 0.33 0.00 0.18 0.59 0.69 0.34 0.02 0.01 -0.12 0.11 0.01 0.01 0.10 0.07 0.02 -0.08 + + Multipole analysis of the density wrt the origin + ------------------------------------------------ + + L x y z total open nuclear + - - - - ----- ---- ------- + 0 0 0 0 -0.000000 0.000000 6.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 + 1 0 1 0 0.000000 0.000000 0.000000 + 1 0 0 1 -0.000000 0.000000 0.000000 + + 2 2 0 0 -5.400126 0.000000 0.000000 + 2 1 1 0 1.474636 0.000000 0.000000 + 2 1 0 1 0.761248 0.000000 0.000000 + 2 0 2 0 -5.103420 0.000000 0.000000 + 2 0 1 1 -0.688506 0.000000 0.000000 + 2 0 0 2 -4.125119 0.000000 0.000000 + + + Parallel integral file used 55 records with 0 large values + + + Task times cpu: 3.7s wall: 4.8s + Summary of allocated global arrays +----------------------------------- + No active global arrays + + + + GA Statistics for process 0 + ------------------------------ + + create destroy get put acc scatter gather read&inc +calls: 173 173 5770 3356 3125 0 0 54 +number of processes/call 1.00e+00 1.00e+00 1.00e+00 0.00e+00 0.00e+00 +bytes total: 2.09e+07 1.36e+07 2.55e+06 0.00e+00 0.00e+00 4.32e+02 +bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 1146600 bytes +MA_summarize_allocated_blocks: starting scan ... +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +MA usage statistics: + + allocation statistics: + heap stack + ---- ----- + current number of blocks 0 0 + maximum number of blocks 16 14 + current total bytes 0 0 + maximum total bytes 80152 38093528 + maximum total K-bytes 81 38094 + maximum total M-bytes 1 39 + + + NWChem Input Module + ------------------- + + + + + + CITATION + -------- + Please cite the following reference when publishing + results obtained with NWChem: + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + + AUTHORS + ------- + E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, + J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, + S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, + F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, + P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, + D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, + A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, + A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, + H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, + K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, + H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, + A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, + R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, + K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, + A. T. Wong, Z. Zhang. + + Total times cpu: 3.7s wall: 5.7s diff --git a/data/NWChem/basicNWChem7.0/C_bigbasis_spherical.nw b/data/NWChem/basicNWChem7.0/C_bigbasis_spherical.nw new file mode 100644 index 000000000..fb1373dd8 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/C_bigbasis_spherical.nw @@ -0,0 +1,14 @@ + start carbon + title "C atom" + + geometry units angstroms + C -1.4152533224 0.2302217854 0.0000000000 + end + basis spherical + * library aug-cc-pCVQZ + end + scf + print "final vectors" "final vectors analysis" + end + task scf + diff --git a/data/NWChem/basicNWChem7.0/C_bigbasis_spherical.out b/data/NWChem/basicNWChem7.0/C_bigbasis_spherical.out new file mode 100644 index 000000000..780acd44b --- /dev/null +++ b/data/NWChem/basicNWChem7.0/C_bigbasis_spherical.out @@ -0,0 +1,3471 @@ + argument 1 = C_bigbasis_spherical.nw + + + + + Northwest Computational Chemistry Package (NWChem) 6.1.1 + -------------------------------------------------------- + + + Environmental Molecular Sciences Laboratory + Pacific Northwest National Laboratory + Richland, WA 99352 + + Copyright (c) 1994-2012 + Pacific Northwest National Laboratory + Battelle Memorial Institute + + NWChem is an open-source computational chemistry package + distributed under the terms of the + Educational Community License (ECL) 2.0 + A copy of the license is included with this distribution + in the LICENSE.TXT file + + ACKNOWLEDGMENT + -------------- + + This software and its documentation were developed at the + EMSL at Pacific Northwest National Laboratory, a multiprogram + national laboratory, operated for the U.S. Department of Energy + by Battelle under Contract Number DE-AC05-76RL01830. Support + for this work was provided by the Department of Energy Office + of Biological and Environmental Research, Office of Basic + Energy Sciences, and the Office of Advanced Scientific Computing. + + + Job information + --------------- + + hostname = boman + program = nwchem + date = Thu Jan 1 16:59:11 2015 + + compiled = Mon_Apr_29_14:32:06_2013 + source = /home/adam/bin/nwchem-6.1.1-src + nwchem branch = 6.1.1 + input = C_bigbasis_spherical.nw + prefix = carbon. + data base = ./carbon.db + status = startup + nproc = 1 + time left = -1s + + + + Memory information + ------------------ + + heap = 13107201 doubles = 100.0 Mbytes + stack = 13107201 doubles = 100.0 Mbytes + global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) + total = 52428802 doubles = 400.0 Mbytes + verify = yes + hardfail = no + + + Directory information + --------------------- + + 0 permanent = . + 0 scratch = . + + + + + NWChem Input Module + ------------------- + + + C atom + ------ + + Scaling coordinates for geometry "geometry" by 1.889725989 + (inverse scale = 0.529177249) + + + + Geometry "geometry" -> "" + ------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.00000000 -0.00000000 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + + + Effective nuclear repulsion energy (a.u.) 0.0000000000 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 -0.0000000000 0.0000000000 + + + XYZ format geometry + ------------------- + 1 + geometry + C 0.00000000 -0.00000000 0.00000000 + + library name resolved from: .nwchemrc + library file name is: + + + + Summary of "ao basis" -> "" (spherical) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + * aug-cc-pCVQZ on all atoms + + + Basis "ao basis" -> "ao basis" (spherical) + ----- + C (Carbon) + ---------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.39800000E+04 0.000091 + 1 S 5.08900000E+03 0.000704 + 1 S 1.15700000E+03 0.003693 + 1 S 3.26600000E+02 0.015360 + 1 S 1.06100000E+02 0.052929 + 1 S 3.81100000E+01 0.147043 + 1 S 1.47500000E+01 0.305631 + 1 S 6.03500000E+00 0.399345 + 1 S 2.53000000E+00 0.217051 + + 2 S 3.39800000E+04 -0.000019 + 2 S 5.08900000E+03 -0.000151 + 2 S 1.15700000E+03 -0.000785 + 2 S 3.26600000E+02 -0.003324 + 2 S 1.06100000E+02 -0.011512 + 2 S 3.81100000E+01 -0.034160 + 2 S 1.47500000E+01 -0.077173 + 2 S 6.03500000E+00 -0.141493 + 2 S 2.53000000E+00 -0.118019 + + 3 S 7.35500000E-01 1.000000 + + 4 S 2.90500000E-01 1.000000 + + 5 S 1.11100000E-01 1.000000 + + 6 S 7.21600000E+00 1.000000 + + 7 S 1.95700000E+01 1.000000 + + 8 S 5.30730000E+01 1.000000 + + 9 S 4.14500000E-02 1.000000 + + 10 P 3.45100000E+01 0.005378 + 10 P 7.91500000E+00 0.036132 + 10 P 2.36800000E+00 0.142493 + + 11 P 8.13200000E-01 1.000000 + + 12 P 2.89000000E-01 1.000000 + + 13 P 1.00700000E-01 1.000000 + + 14 P 8.18200000E+00 1.000000 + + 15 P 2.41860000E+01 1.000000 + + 16 P 7.14940000E+01 1.000000 + + 17 P 3.21800000E-02 1.000000 + + 18 D 1.84800000E+00 1.000000 + + 19 D 6.49000000E-01 1.000000 + + 20 D 2.28000000E-01 1.000000 + + 21 D 8.65600000E+00 1.000000 + + 22 D 3.32130000E+01 1.000000 + + 23 D 7.66000000E-02 1.000000 + + 24 F 1.41900000E+00 1.000000 + + 25 F 4.85000000E-01 1.000000 + + 26 F 2.46940000E+01 1.000000 + + 27 F 1.87000000E-01 1.000000 + + 28 G 1.01100000E+00 1.000000 + + 29 G 4.24000000E-01 1.000000 + + + + Summary of "ao basis" -> "ao basis" (spherical) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C aug-cc-pCVQZ 29 109 9s8p6d4f2g + + + NWChem SCF Module + ----------------- + + + C atom + + + + ao basis = "ao basis" + functions = 109 + atoms = 1 + closed shells = 3 + open shells = 0 + charge = 0.00 + wavefunction = RHF + input vectors = atomic + output vectors = ./carbon.movecs + use symmetry = F + symmetry adapt = F + + + Summary of "ao basis" -> "ao basis" (spherical) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C aug-cc-pCVQZ 29 109 9s8p6d4f2g + + + + Forming initial guess at 0.5s + + + Superposition of Atomic Density Guess + ------------------------------------- + + Sum of atomic energies: -37.67213751 + + Non-variational initial energy + ------------------------------ + + Total energy = -37.316043 + 1-e energy = -50.422650 + 2-e energy = 13.106606 + HOMO = -0.079257 + LUMO = -0.079257 + + + Starting SCF solution at 1.7s + + + + ---------------------------------------------- + Quadratically convergent ROHF + + Convergence threshold : 1.000E-04 + Maximum no. of iterations : 30 + Final Fock-matrix accuracy: 1.000E-07 + ---------------------------------------------- + + + Integral file = ./carbon.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 0 Max. records in file = 853811 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 9.477D+04 #integrals = 1.842D+06 #direct = 0.0% #cached =100.0% + + + iter energy gnorm gmax time + ----- ------------------- --------- --------- -------- + 1 -37.5687978055 4.94D-01 2.24D-01 7.7 + 2 -37.6026044581 1.47D-01 8.78D-02 7.9 + 3 -37.6045774813 3.03D-03 1.54D-03 8.1 + 4 -37.6045782752 9.14D-06 4.86D-06 8.5 + + + Final RHF results + ------------------ + + Total SCF energy = -37.604578275230 + One-electron energy = -50.311163754239 + Two-electron energy = 12.706585479010 + Nuclear repulsion energy = 0.000000000000 + + Time for solution = 7.1s + + + Final eigenvalues + ----------------- + + 1 + 1 -11.3649 + 2 -0.7256 + 3 -0.3584 + 4 0.0189 + 5 0.0189 + 6 0.0832 + 7 0.0898 + 8 0.1082 + 9 0.1082 + 10 0.2323 + 11 0.2323 + 12 0.2416 + 13 0.2416 + + ROHF Final Molecular Orbital Analysis + ------------------------------------- + + Vector 1 Occ=2.000000D+00 E=-1.136493D+01 + MO Center= 2.3D-16, -3.3D-17, 2.1D-19, r^2= 2.7D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.993702 1 C s + + Vector 2 Occ=2.000000D+00 E=-7.256175D-01 + MO Center= -1.0D-14, 1.6D-14, 1.1D-15, r^2= 8.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.591838 1 C s 2 0.344912 1 C s + 3 0.281046 1 C s 5 0.271536 1 C s + + Vector 3 Occ=2.000000D+00 E=-3.584495D-01 + MO Center= 7.3D-14, -1.2D-13, 1.1D-14, r^2= 1.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 17 0.382586 1 C py 14 0.281794 1 C py + 20 0.250183 1 C py 16 -0.221047 1 C px + 13 -0.162812 1 C px + + Vector 4 Occ=0.000000D+00 E= 1.886942D-02 + MO Center= -1.1D-14, 1.6D-14, -1.8D-14, r^2= 4.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.528099 1 C pz 18 0.300047 1 C pz + 21 0.237740 1 C pz 15 0.183356 1 C pz + + Vector 5 Occ=0.000000D+00 E= 1.886942D-02 + MO Center= 9.5D-14, 1.2D-13, -1.8D-14, r^2= 4.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.457264 1 C px 32 0.264193 1 C py + 16 0.259801 1 C px 19 0.205851 1 C px + 13 0.158762 1 C px 17 0.150105 1 C py + + Vector 6 Occ=0.000000D+00 E= 8.315941D-02 + MO Center= -6.6D-13, 1.2D-12, -5.6D-13, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 9 1.822073 1 C s 5 -1.382087 1 C s + 4 0.256983 1 C s 2 -0.200476 1 C s + 3 -0.201430 1 C s + + Vector 7 Occ=0.000000D+00 E= 8.983622D-02 + MO Center= 5.7D-13, -1.0D-12, 4.6D-16, r^2= 1.4D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 32 1.099152 1 C py 31 -0.635057 1 C px + 20 -0.461848 1 C py 19 0.266842 1 C px + + Vector 8 Occ=0.000000D+00 E= 1.081510D-01 + MO Center= -1.9D-13, -3.1D-14, 1.5D-14, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 1.030035 1 C px 19 -0.703088 1 C px + 32 0.595118 1 C py 20 -0.406220 1 C py + 13 -0.181854 1 C px + + Vector 9 Occ=0.000000D+00 E= 1.081510D-01 + MO Center= 5.2D-16, 4.4D-14, 5.6D-13, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 1.189595 1 C pz 21 -0.812002 1 C pz + 15 -0.210025 1 C pz + + Vector 10 Occ=0.000000D+00 E= 2.323427D-01 + MO Center= -2.6D-15, 8.1D-15, -4.5D-16, r^2= 7.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 62 0.951929 1 C d 1 60 -0.549996 1 C d -1 + 47 -0.168930 1 C d 1 + + Vector 11 Occ=0.000000D+00 E= 2.323427D-01 + MO Center= -2.9D-14, -5.8D-15, 9.2D-15, r^2= 7.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 61 0.952102 1 C d 0 59 -0.476224 1 C d -2 + 63 -0.274549 1 C d 2 46 -0.168960 1 C d 0 + + Vector 12 Occ=0.000000D+00 E= 2.416048D-01 + MO Center= 1.9D-14, -2.7D-14, -1.5D-14, r^2= 7.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 60 0.952279 1 C d -1 62 0.550197 1 C d 1 + 45 -0.170617 1 C d -1 + + Vector 13 Occ=0.000000D+00 E= 2.416048D-01 + MO Center= 6.6D-14, -6.5D-14, -3.0D-15, r^2= 7.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 63 0.952798 1 C d 2 59 -0.549298 1 C d -2 + 48 -0.170710 1 C d 2 + + Vector 14 Occ=0.000000D+00 E= 2.453715D-01 + MO Center= 5.2D-14, -5.4D-14, 7.2D-15, r^2= 7.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 59 0.824007 1 C d -2 61 0.549138 1 C d 0 + 63 0.475050 1 C d 2 5 0.172653 1 C s + + Vector 15 Occ=0.000000D+00 E= 4.438319D-01 + MO Center= -1.2D-13, 2.0D-13, 4.6D-15, r^2= 5.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 20 1.635336 1 C py 19 -0.944848 1 C px + 17 -0.895120 1 C py 32 -0.677720 1 C py + 16 0.517173 1 C px 31 0.391566 1 C px + + Vector 16 Occ=0.000000D+00 E= 4.625643D-01 + MO Center= -1.4D-13, -8.9D-14, 2.5D-16, r^2= 5.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 19 1.568107 1 C px 16 -1.002953 1 C px + 20 0.906005 1 C py 31 -0.633349 1 C px + 17 -0.579476 1 C py 32 -0.365930 1 C py + 10 -0.158582 1 C px + + Vector 17 Occ=0.000000D+00 E= 4.625643D-01 + MO Center= -1.6D-14, -1.1D-14, -4.4D-14, r^2= 5.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 1.811023 1 C pz 18 -1.158320 1 C pz + 33 -0.731461 1 C pz 12 -0.183147 1 C pz + + Vector 18 Occ=0.000000D+00 E= 4.987099D-01 + MO Center= 2.6D-13, -1.2D-13, 4.3D-14, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 3.787878 1 C s 4 -2.769078 1 C s + 9 -1.559979 1 C s 3 0.395359 1 C s + 1 0.283346 1 C s 2 0.265029 1 C s + + Vector 19 Occ=0.000000D+00 E= 7.441460D-01 + MO Center= 1.3D-14, 9.6D-15, -5.0D-15, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 89 0.934717 1 C f 1 87 -0.540054 1 C f -1 + 85 0.278730 1 C f -3 75 -0.181053 1 C f 1 + + Vector 20 Occ=0.000000D+00 E= 7.441460D-01 + MO Center= -1.0D-14, -4.0D-15, -1.4D-14, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 88 0.881421 1 C f 0 86 -0.591491 1 C f -2 + 90 -0.340998 1 C f 2 74 -0.170730 1 C f 0 + + Vector 21 Occ=0.000000D+00 E= 7.622662D-01 + MO Center= -5.1D-14, 7.9D-14, -7.6D-15, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 87 0.764442 1 C f -1 91 -0.683862 1 C f 3 + 89 0.441672 1 C f 1 73 -0.150448 1 C f -1 + + Vector 22 Occ=0.000000D+00 E= 7.622662D-01 + MO Center= -5.2D-14, 7.3D-14, -1.0D-14, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 90 0.967478 1 C f 2 86 -0.557762 1 C f -2 + 76 -0.190407 1 C f 2 + + Vector 23 Occ=0.000000D+00 E= 7.735613D-01 + MO Center= -5.5D-14, 8.4D-14, -1.1D-14, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 86 0.765024 1 C f -2 88 0.684010 1 C f 0 + 90 0.441046 1 C f 2 72 -0.151921 1 C f -2 + + Vector 24 Occ=0.000000D+00 E= 7.735613D-01 + MO Center= -8.1D-14, 1.2D-13, -2.9D-14, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 85 1.081515 1 C f -3 89 -0.241789 1 C f 1 + 71 -0.214771 1 C f -3 + + Vector 25 Occ=0.000000D+00 E= 7.755696D-01 + MO Center= 6.3D-14, -6.9D-14, 3.7D-14, r^2= 3.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 1.167693 1 C d 1 45 -0.674658 1 C d -1 + 62 -0.591071 1 C d 1 60 0.341503 1 C d -1 + + Vector 26 Occ=0.000000D+00 E= 7.755696D-01 + MO Center= 3.9D-14, -9.3D-14, 2.9D-14, r^2= 3.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 46 1.167905 1 C d 0 61 -0.591179 1 C d 0 + 44 -0.584165 1 C d -2 48 -0.336778 1 C d 2 + 59 0.295697 1 C d -2 63 0.170473 1 C d 2 + + Vector 27 Occ=0.000000D+00 E= 7.774147D-01 + MO Center= -1.3D-14, 9.4D-14, 9.4D-14, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 91 0.883006 1 C f 3 87 0.592230 1 C f -1 + 89 0.342173 1 C f 1 77 -0.175905 1 C f 3 + + Vector 28 Occ=0.000000D+00 E= 7.910500D-01 + MO Center= 5.2D-14, -1.5D-13, 1.3D-14, r^2= 3.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 1.164315 1 C d 2 44 -0.671241 1 C d -2 + 63 -0.590993 1 C d 2 59 0.340714 1 C d -2 + + Vector 29 Occ=0.000000D+00 E= 7.910500D-01 + MO Center= 6.3D-14, -9.7D-14, -9.1D-14, r^2= 3.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 1.163681 1 C d -1 47 0.672339 1 C d 1 + 60 -0.590670 1 C d -1 62 -0.341271 1 C d 1 + + Vector 30 Occ=0.000000D+00 E= 7.982763D-01 + MO Center= 5.0D-14, -7.6D-14, -8.1D-15, r^2= 3.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 44 1.005773 1 C d -2 46 0.670272 1 C d 0 + 48 0.579840 1 C d 2 59 -0.509525 1 C d -2 + 61 -0.339560 1 C d 0 63 -0.293747 1 C d 2 + 5 -0.212227 1 C s 4 0.194625 1 C s + + Vector 31 Occ=0.000000D+00 E= 1.573792D+00 + MO Center= 1.3D-15, -2.4D-15, -2.2D-15, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 18 2.114028 1 C pz 15 -1.449468 1 C pz + 21 -1.189515 1 C pz 33 0.359030 1 C pz + + Vector 32 Occ=0.000000D+00 E= 1.573792D+00 + MO Center= -7.3D-16, -3.9D-15, 5.6D-16, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 16 1.830468 1 C px 13 -1.255048 1 C px + 17 1.057592 1 C py 19 -1.029963 1 C px + 14 -0.725130 1 C py 20 -0.595083 1 C py + 31 0.310872 1 C px 32 0.179613 1 C py + + Vector 33 Occ=0.000000D+00 E= 1.591118D+00 + MO Center= -6.5D-15, 1.0D-14, 4.1D-16, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 17 1.862310 1 C py 14 -1.228912 1 C py + 16 -1.075987 1 C px 20 -1.049997 1 C py + 13 0.710029 1 C px 19 0.606657 1 C px + 32 0.315816 1 C py 31 -0.182469 1 C px + + Vector 34 Occ=0.000000D+00 E= 2.025893D+00 + MO Center= 1.4D-14, -1.9D-14, 3.5D-15, r^2= 1.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 4.720430 1 C s 3 -3.664892 1 C s + 2 -2.822864 1 C s 5 -2.748516 1 C s + 1 -1.454671 1 C s 9 0.806025 1 C s + 6 -0.540375 1 C s + + Vector 35 Occ=0.000000D+00 E= 2.089992D+00 + MO Center= -2.4D-15, -1.6D-15, -1.2D-15, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 105 0.818190 1 C g 0 103 -0.633998 1 C g -2 + 107 -0.365507 1 C g 2 + + Vector 36 Occ=0.000000D+00 E= 2.089992D+00 + MO Center= 7.0D-16, 2.4D-16, -1.7D-15, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 106 0.896119 1 C g 1 104 -0.517751 1 C g -1 + 102 0.391170 1 C g -3 97 -0.159099 1 C g 1 + + Vector 37 Occ=0.000000D+00 E= 2.118339D+00 + MO Center= -3.0D-15, 3.6D-15, 1.5D-15, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 107 0.897129 1 C g 2 103 -0.517205 1 C g -2 + 109 -0.338713 1 C g 4 101 -0.196126 1 C g -4 + 98 -0.160278 1 C g 2 + + Vector 38 Occ=0.000000D+00 E= 2.118339D+00 + MO Center= 1.3D-16, 3.9D-15, -4.2D-16, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 108 0.830278 1 C g 3 104 -0.634021 1 C g -1 + 106 -0.366317 1 C g 1 + + Vector 39 Occ=0.000000D+00 E= 2.138632D+00 + MO Center= -3.7D-15, 4.5D-15, 1.3D-15, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 102 1.035836 1 C g -3 106 -0.338995 1 C g 1 + 104 0.195861 1 C g -1 93 -0.185905 1 C g -3 + + Vector 40 Occ=0.000000D+00 E= 2.138632D+00 + MO Center= -1.7D-15, 1.1D-14, -2.8D-15, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 101 0.633857 1 C g -4 105 -0.619030 1 C g 0 + 103 -0.479673 1 C g -2 109 -0.367022 1 C g 4 + 107 -0.276537 1 C g 2 + + Vector 41 Occ=0.000000D+00 E= 2.150826D+00 + MO Center= -4.8D-15, 6.7D-15, 4.5D-16, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 108 0.732525 1 C g 3 104 0.719194 1 C g -1 + 106 0.415529 1 C g 1 + + Vector 42 Occ=0.000000D+00 E= 2.150826D+00 + MO Center= -8.7D-15, 3.2D-15, 5.1D-15, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 109 0.896505 1 C g 4 101 0.519103 1 C g -4 + 107 0.339216 1 C g 2 103 -0.195562 1 C g -2 + 100 -0.161337 1 C g 4 + + Vector 43 Occ=0.000000D+00 E= 2.154894D+00 + MO Center= -4.2D-15, 5.2D-15, -2.5D-15, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 101 0.708762 1 C g -4 103 0.536358 1 C g -2 + 105 0.415310 1 C g 0 109 -0.410394 1 C g 4 + 107 0.309217 1 C g 2 + + Vector 44 Occ=0.000000D+00 E= 2.190629D+00 + MO Center= 2.9D-15, -1.3D-15, -2.8D-15, r^2= 1.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 42 1.241259 1 C d 1 47 -0.932057 1 C d 1 + 40 -0.717162 1 C d -1 45 0.538514 1 C d -1 + 62 0.312896 1 C d 1 60 -0.180782 1 C d -1 + + Vector 45 Occ=0.000000D+00 E= 2.190629D+00 + MO Center= -1.2D-15, -2.4D-15, -2.3D-15, r^2= 1.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 41 1.241485 1 C d 0 46 -0.932226 1 C d 0 + 39 -0.620968 1 C d -2 44 0.466283 1 C d -2 + 43 -0.357995 1 C d 2 61 0.312953 1 C d 0 + 48 0.268817 1 C d 2 59 -0.156533 1 C d -2 + + Vector 46 Occ=0.000000D+00 E= 2.224676D+00 + MO Center= 2.0D-15, -1.3D-14, -1.6D-14, r^2= 1.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 43 1.239821 1 C d 2 48 -0.937001 1 C d 2 + 39 -0.714771 1 C d -2 44 0.540192 1 C d -2 + 63 0.312789 1 C d 2 59 -0.180326 1 C d -2 + + Vector 47 Occ=0.000000D+00 E= 2.224676D+00 + MO Center= 3.4D-15, 3.4D-15, 1.5D-16, r^2= 1.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 40 1.239146 1 C d -1 45 -0.936490 1 C d -1 + 42 0.715941 1 C d 1 47 -0.541076 1 C d 1 + 60 0.312618 1 C d -1 62 0.180622 1 C d 1 + + Vector 48 Occ=0.000000D+00 E= 2.237431D+00 + MO Center= -1.3D-14, 3.2D-15, 6.9D-16, r^2= 1.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 1.072153 1 C d -2 44 -0.810965 1 C d -2 + 41 0.714509 1 C d 0 43 0.618108 1 C d 2 + 46 -0.540447 1 C d 0 48 -0.467530 1 C d 2 + 59 0.270116 1 C d -2 4 -0.195140 1 C s + 61 0.180012 1 C d 0 63 0.155725 1 C d 2 + + Vector 49 Occ=0.000000D+00 E= 2.245171D+00 + MO Center= -2.4D-16, -6.2D-15, 5.5D-15, r^2= 1.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 74 1.047608 1 C f 0 72 -0.703013 1 C f -2 + 88 -0.509554 1 C f 0 76 -0.405293 1 C f 2 + 86 0.341944 1 C f -2 90 0.197133 1 C f 2 + + Vector 50 Occ=0.000000D+00 E= 2.245171D+00 + MO Center= 9.6D-15, -2.5D-15, 6.1D-15, r^2= 1.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 75 1.110953 1 C f 1 73 -0.641877 1 C f -1 + 89 -0.540365 1 C f 1 71 0.331283 1 C f -3 + 87 0.312207 1 C f -1 85 -0.161135 1 C f -3 + + Vector 51 Occ=0.000000D+00 E= 2.283145D+00 + MO Center= 4.7D-16, -1.2D-14, 1.0D-14, r^2= 1.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 76 1.147874 1 C f 2 72 -0.661763 1 C f -2 + 90 -0.556016 1 C f 2 86 0.320549 1 C f -2 + + Vector 52 Occ=0.000000D+00 E= 2.283145D+00 + MO Center= 1.8D-14, -5.6D-15, 2.7D-15, r^2= 1.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 73 0.906980 1 C f -1 77 -0.811375 1 C f 3 + 75 0.524026 1 C f 1 87 -0.439329 1 C f -1 + 91 0.393020 1 C f 3 89 -0.253831 1 C f 1 + + Vector 53 Occ=0.000000D+00 E= 2.306622D+00 + MO Center= 1.0D-14, -1.4D-14, 4.6D-15, r^2= 1.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 72 0.906951 1 C f -2 74 0.810907 1 C f 0 + 76 0.522868 1 C f 2 86 -0.438101 1 C f -2 + 88 -0.391707 1 C f 0 90 -0.252570 1 C f 2 + + Vector 54 Occ=0.000000D+00 E= 2.306622D+00 + MO Center= 9.6D-15, -2.0D-15, -2.6D-15, r^2= 1.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 71 1.282157 1 C f -3 85 -0.619343 1 C f -3 + 75 -0.286647 1 C f 1 73 0.165616 1 C f -1 + + Vector 55 Occ=0.000000D+00 E= 2.314600D+00 + MO Center= 1.5D-14, -2.1D-14, -3.9D-16, r^2= 1.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 77 1.046539 1 C f 3 73 0.701912 1 C f -1 + 91 -0.505034 1 C f 3 75 0.405544 1 C f 1 + 87 -0.338726 1 C f -1 89 -0.195705 1 C f 1 + + Vector 56 Occ=0.000000D+00 E= 5.167138D+00 + MO Center= 7.7D-16, -2.5D-16, 1.7D-16, r^2= 6.8D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 2.085560 1 C pz 12 -1.880435 1 C pz + 18 -1.328506 1 C pz 21 0.583766 1 C pz + 24 0.388461 1 C pz 33 -0.172182 1 C pz + + Vector 57 Occ=0.000000D+00 E= 5.167138D+00 + MO Center= 2.9D-16, 8.4D-17, -1.8D-16, r^2= 6.8D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 1.805820 1 C px 10 -1.628209 1 C px + 16 -1.150311 1 C px 14 1.043347 1 C py + 11 -0.940729 1 C py 17 -0.664615 1 C py + 19 0.505465 1 C px 22 0.336356 1 C px + 20 0.292042 1 C py 23 0.194336 1 C py + + Vector 58 Occ=0.000000D+00 E= 5.224839D+00 + MO Center= 1.5D-15, -3.5D-16, -8.1D-17, r^2= 6.8D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 1.814637 1 C py 11 -1.622529 1 C py + 17 -1.155596 1 C py 13 -1.048442 1 C px + 10 0.937448 1 C px 16 0.667669 1 C px + 20 0.506276 1 C py 23 0.333227 1 C py + 19 -0.292511 1 C px 22 -0.192529 1 C px + + Vector 59 Occ=0.000000D+00 E= 5.873904D+00 + MO Center= -1.1D-15, -8.0D-16, -5.0D-16, r^2= 8.6D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 97 1.004091 1 C g 1 95 -0.580134 1 C g -1 + 106 -0.480086 1 C g 1 93 0.438301 1 C g -3 + 104 0.277379 1 C g -1 102 -0.209565 1 C g -3 + + Vector 60 Occ=0.000000D+00 E= 5.873904D+00 + MO Center= -5.7D-16, -5.0D-16, -5.8D-16, r^2= 8.6D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 96 0.916772 1 C g 0 94 -0.710387 1 C g -2 + 105 -0.438336 1 C g 0 98 -0.409546 1 C g 2 + 103 0.339657 1 C g -2 107 0.195816 1 C g 2 + + Vector 61 Occ=0.000000D+00 E= 5.921174D+00 + MO Center= 7.4D-16, -3.1D-15, 2.7D-16, r^2= 8.5D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 98 1.004440 1 C g 2 94 -0.579071 1 C g -2 + 107 -0.479360 1 C g 2 100 -0.379231 1 C g 4 + 103 0.276356 1 C g -2 92 -0.219581 1 C g -4 + 109 0.180985 1 C g 4 + + Vector 62 Occ=0.000000D+00 E= 5.921174D+00 + MO Center= 5.0D-16, -1.4D-15, -5.1D-16, r^2= 8.5D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 99 0.929593 1 C g 3 95 -0.709855 1 C g -1 + 108 -0.443640 1 C g 3 97 -0.410142 1 C g 1 + 104 0.338772 1 C g -1 106 0.195736 1 C g 1 + + Vector 63 Occ=0.000000D+00 E= 5.954845D+00 + MO Center= 6.1D-16, -2.8D-15, -6.5D-16, r^2= 8.5D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 92 0.709350 1 C g -4 96 -0.692757 1 C g 0 + 94 -0.536802 1 C g -2 100 -0.410735 1 C g 4 + 101 -0.338077 1 C g -4 105 0.330169 1 C g 0 + 98 -0.309473 1 C g 2 103 0.255841 1 C g -2 + 109 0.195757 1 C g 4 + + Vector 64 Occ=0.000000D+00 E= 5.954845D+00 + MO Center= 2.1D-15, 3.9D-17, -2.0D-16, r^2= 8.5D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 93 1.159205 1 C g -3 102 -0.552479 1 C g -3 + 97 -0.379370 1 C g 1 95 0.219189 1 C g -1 + 106 0.180808 1 C g 1 + + Vector 65 Occ=0.000000D+00 E= 5.975011D+00 + MO Center= 3.2D-15, -6.7D-15, -3.9D-16, r^2= 8.5D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 100 1.003032 1 C g 4 92 0.580785 1 C g -4 + 109 -0.477657 1 C g 4 98 0.379523 1 C g 2 + 101 -0.276577 1 C g -4 94 -0.218801 1 C g -2 + 107 -0.180734 1 C g 2 + + Vector 66 Occ=0.000000D+00 E= 5.975011D+00 + MO Center= 6.4D-16, -2.7D-15, -2.2D-16, r^2= 8.5D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 99 0.819567 1 C g 3 95 0.804652 1 C g -1 + 97 0.464904 1 C g 1 108 -0.390288 1 C g 3 + 104 -0.383186 1 C g -1 106 -0.221393 1 C g 1 + + Vector 67 Occ=0.000000D+00 E= 5.981727D+00 + MO Center= -5.4D-17, -1.4D-15, -3.6D-16, r^2= 8.5D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 92 0.792927 1 C g -4 94 0.600050 1 C g -2 + 96 0.464628 1 C g 0 100 -0.459128 1 C g 4 + 101 -0.377499 1 C g -4 98 0.345936 1 C g 2 + 103 -0.285673 1 C g -2 105 -0.221201 1 C g 0 + 109 0.218583 1 C g 4 107 -0.164694 1 C g 2 + + Vector 68 Occ=0.000000D+00 E= 6.319864D+00 + MO Center= 3.8D-15, -1.4D-15, 2.7D-15, r^2= 5.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 1.214770 1 C d 1 42 -1.031836 1 C d 1 + 35 -0.701857 1 C d -1 40 0.596164 1 C d -1 + 47 0.484143 1 C d 1 45 -0.279723 1 C d -1 + 62 -0.152192 1 C d 1 + + Vector 69 Occ=0.000000D+00 E= 6.319864D+00 + MO Center= 3.8D-15, -5.7D-15, -4.1D-15, r^2= 5.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 1.214991 1 C d 0 41 -1.032024 1 C d 0 + 34 -0.607716 1 C d -2 39 0.516199 1 C d -2 + 46 0.484231 1 C d 0 38 -0.350355 1 C d 2 + 43 0.297595 1 C d 2 44 -0.242203 1 C d -2 + 61 -0.152219 1 C d 0 + + Vector 70 Occ=0.000000D+00 E= 6.374996D+00 + MO Center= 9.9D-15, -1.1D-14, 7.7D-16, r^2= 5.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 1.215090 1 C d 2 43 -1.035060 1 C d 2 + 34 -0.700513 1 C d -2 39 0.596724 1 C d -2 + 48 0.484346 1 C d 2 44 -0.279231 1 C d -2 + 63 -0.152020 1 C d 2 + + Vector 71 Occ=0.000000D+00 E= 6.374996D+00 + MO Center= 2.2D-15, -4.4D-15, -8.4D-16, r^2= 5.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 1.214427 1 C d -1 40 -1.034496 1 C d -1 + 37 0.701660 1 C d 1 42 -0.597701 1 C d 1 + 45 0.484082 1 C d -1 47 0.279688 1 C d 1 + 60 -0.151937 1 C d -1 + + Vector 72 Occ=0.000000D+00 E= 6.393611D+00 + MO Center= -8.1D-16, -7.9D-15, -7.8D-16, r^2= 5.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 34 1.052128 1 C d -2 39 -0.896942 1 C d -2 + 36 0.701164 1 C d 0 38 0.606564 1 C d 2 + 41 -0.597744 1 C d 0 43 -0.517097 1 C d 2 + 44 0.419310 1 C d -2 46 0.279438 1 C d 0 + 48 0.241737 1 C d 2 + + Vector 73 Occ=0.000000D+00 E= 6.418132D+00 + MO Center= -1.5D-16, 2.9D-15, -2.3D-15, r^2= 6.2D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 68 1.034477 1 C f 1 75 -0.651911 1 C f 1 + 66 -0.597694 1 C f -1 73 0.376657 1 C f -1 + 64 0.308478 1 C f -3 89 0.242004 1 C f 1 + 71 -0.194398 1 C f -3 + + Vector 74 Occ=0.000000D+00 E= 6.418132D+00 + MO Center= -7.6D-16, 7.5D-16, 5.4D-15, r^2= 6.2D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 67 0.975493 1 C f 0 65 -0.654621 1 C f -2 + 74 -0.614740 1 C f 0 72 0.412532 1 C f -2 + 69 -0.377391 1 C f 2 76 0.237826 1 C f 2 + 88 0.228205 1 C f 0 86 -0.153141 1 C f -2 + + Vector 75 Occ=0.000000D+00 E= 6.473027D+00 + MO Center= 4.6D-16, 3.9D-15, -2.4D-16, r^2= 6.2D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 69 1.068947 1 C f 2 76 -0.672991 1 C f 2 + 65 -0.616260 1 C f -2 72 0.387987 1 C f -2 + 90 0.249312 1 C f 2 + + Vector 76 Occ=0.000000D+00 E= 6.473027D+00 + MO Center= -3.5D-15, 8.5D-15, 2.1D-15, r^2= 6.2D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 66 0.844617 1 C f -1 70 -0.755585 1 C f 3 + 73 -0.531756 1 C f -1 68 0.487994 1 C f 1 + 77 0.475704 1 C f 3 75 -0.307232 1 C f 1 + 87 0.196991 1 C f -1 91 -0.176226 1 C f 3 + + Vector 77 Occ=0.000000D+00 E= 6.506281D+00 + MO Center= -4.6D-15, 5.8D-15, 1.5D-15, r^2= 6.2D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 65 0.844905 1 C f -2 67 0.755431 1 C f 0 + 72 -0.531564 1 C f -2 69 0.487097 1 C f 2 + 74 -0.475272 1 C f 0 76 -0.306452 1 C f 2 + 86 0.196669 1 C f -2 88 0.175842 1 C f 0 + + Vector 78 Occ=0.000000D+00 E= 6.506281D+00 + MO Center= -5.1D-15, 2.2D-14, 6.8D-16, r^2= 6.2D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 64 1.194442 1 C f -3 71 -0.751471 1 C f -3 + 85 0.278031 1 C f -3 68 -0.267037 1 C f 1 + 75 0.168004 1 C f 1 66 0.154285 1 C f -1 + + Vector 79 Occ=0.000000D+00 E= 6.517435D+00 + MO Center= -5.2D-15, 4.9D-15, -2.2D-16, r^2= 6.2D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 70 0.975150 1 C f 3 66 0.654031 1 C f -1 + 77 -0.613346 1 C f 3 73 -0.411370 1 C f -1 + 68 0.377880 1 C f 1 75 -0.237677 1 C f 1 + 91 0.226829 1 C f 3 87 0.152134 1 C f -1 + + Vector 80 Occ=0.000000D+00 E= 8.952275D+00 + MO Center= -4.5D-16, 6.4D-16, -5.5D-17, r^2= 4.8D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 15.465343 1 C s 1 10.092079 1 C s + 6 4.129188 1 C s 3 3.351480 1 C s + 4 -2.545550 1 C s 5 1.231572 1 C s + 9 -0.353825 1 C s 8 0.186934 1 C s + + Vector 81 Occ=0.000000D+00 E= 1.865905D+01 + MO Center= 3.5D-16, -4.0D-17, -6.2D-17, r^2= 2.0D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 -1.979321 1 C pz 24 1.983407 1 C pz + 15 1.126312 1 C pz 18 -0.598158 1 C pz + 21 0.260696 1 C pz + + Vector 82 Occ=0.000000D+00 E= 1.865905D+01 + MO Center= 2.2D-16, -9.7D-18, -2.1D-17, r^2= 2.0D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 10 -1.713832 1 C px 22 1.717369 1 C px + 11 -0.990199 1 C py 23 0.992243 1 C py + 13 0.975238 1 C px 14 0.563463 1 C py + 16 -0.517926 1 C px 17 -0.299242 1 C py + 19 0.225728 1 C px + + Vector 83 Occ=0.000000D+00 E= 1.872025D+01 + MO Center= 4.7D-16, -1.6D-16, -9.2D-18, r^2= 2.0D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 -1.716852 1 C py 23 1.717173 1 C py + 10 0.991946 1 C px 22 -0.992131 1 C px + 14 0.977380 1 C py 13 -0.564701 1 C px + 17 -0.518567 1 C py 16 0.299613 1 C px + 20 0.225792 1 C py + + Vector 84 Occ=0.000000D+00 E= 2.637504D+01 + MO Center= 1.9D-16, -2.8D-17, 3.4D-17, r^2= 1.1D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.998986 1 C d 0 36 -0.571869 1 C d 0 + 49 -0.499675 1 C d -2 41 0.349426 1 C d 0 + 53 -0.288067 1 C d 2 34 0.286039 1 C d -2 + 39 -0.174777 1 C d -2 38 0.164904 1 C d 2 + 46 -0.159597 1 C d 0 + + Vector 85 Occ=0.000000D+00 E= 2.637504D+01 + MO Center= 2.5D-16, 2.2D-18, -3.3D-17, r^2= 1.1D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 52 0.998804 1 C d 1 50 -0.577080 1 C d -1 + 37 -0.571765 1 C d 1 42 0.349362 1 C d 1 + 35 0.330349 1 C d -1 40 -0.201851 1 C d -1 + 47 -0.159568 1 C d 1 + + Vector 86 Occ=0.000000D+00 E= 2.642040D+01 + MO Center= 1.8D-16, 8.0D-17, 7.2D-18, r^2= 1.1D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.998752 1 C d -1 52 0.577049 1 C d 1 + 35 -0.572579 1 C d -1 40 0.349734 1 C d -1 + 37 -0.330819 1 C d 1 42 0.202066 1 C d 1 + 45 -0.159642 1 C d -1 + + Vector 87 Occ=0.000000D+00 E= 2.642040D+01 + MO Center= 2.7D-16, -6.4D-17, 1.8D-17, r^2= 1.1D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 53 0.999296 1 C d 2 49 -0.576106 1 C d -2 + 38 -0.572891 1 C d 2 43 0.349925 1 C d 2 + 34 0.330278 1 C d -2 39 -0.201736 1 C d -2 + 48 -0.159729 1 C d 2 + + Vector 88 Occ=0.000000D+00 E= 2.643532D+01 + MO Center= 2.0D-16, -1.4D-16, -2.6D-17, r^2= 1.1D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.865395 1 C d -2 51 0.576721 1 C d 0 + 53 0.498910 1 C d 2 34 -0.496358 1 C d -2 + 36 -0.330785 1 C d 0 39 0.303136 1 C d -2 + 38 -0.286156 1 C d 2 41 0.202017 1 C d 0 + 43 0.174761 1 C d 2 + + Vector 89 Occ=0.000000D+00 E= 3.520177D+01 + MO Center= 5.1D-17, 1.6D-16, 9.5D-17, r^2= 1.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 10.107443 1 C s 6 6.793142 1 C s + 1 4.180155 1 C s 7 -1.860925 1 C s + 3 1.694535 1 C s 4 -1.183806 1 C s + 5 0.570961 1 C s 8 0.510409 1 C s + 9 -0.166050 1 C s + + Vector 90 Occ=0.000000D+00 E= 6.630290D+01 + MO Center= 2.3D-16, -2.6D-17, -1.5D-17, r^2= 5.9D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 24 1.803929 1 C pz 27 -1.704877 1 C pz + 12 -1.032950 1 C pz 15 0.517579 1 C pz + 18 -0.274524 1 C pz 30 0.172721 1 C pz + + Vector 91 Occ=0.000000D+00 E= 6.630290D+01 + MO Center= 2.2D-16, -2.9D-17, 6.4D-18, r^2= 5.9D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 1.561967 1 C px 25 -1.476201 1 C px + 23 0.902452 1 C py 10 -0.894399 1 C px + 26 -0.852900 1 C py 11 -0.516754 1 C py + 13 0.448156 1 C px 14 0.258930 1 C py + 16 -0.237702 1 C px + + Vector 92 Occ=0.000000D+00 E= 6.634334D+01 + MO Center= 2.1D-16, 1.6D-17, -2.7D-17, r^2= 5.9D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 1.562781 1 C py 26 -1.476138 1 C py + 22 -0.902928 1 C px 11 -0.895168 1 C py + 25 0.852868 1 C px 10 0.517201 1 C px + 14 0.448503 1 C py 13 -0.259132 1 C px + 17 -0.237814 1 C py + + Vector 93 Occ=0.000000D+00 E= 9.865573D+01 + MO Center= 2.5D-16, -1.9D-17, -1.7D-17, r^2= 2.6D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 81 0.790987 1 C f 0 79 -0.530801 1 C f -2 + 83 -0.306016 1 C f 2 + + Vector 94 Occ=0.000000D+00 E= 9.865573D+01 + MO Center= 2.2D-16, -4.1D-17, 2.8D-17, r^2= 2.6D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 82 0.838817 1 C f 1 80 -0.484641 1 C f -1 + 78 0.250132 1 C f -3 + + Vector 95 Occ=0.000000D+00 E= 9.867875D+01 + MO Center= 2.3D-16, 1.5D-17, -1.5D-17, r^2= 2.6D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 80 0.684899 1 C f -1 84 -0.612704 1 C f 3 + 82 0.395714 1 C f 1 + + Vector 96 Occ=0.000000D+00 E= 9.867875D+01 + MO Center= 2.2D-16, -4.3D-17, -1.4D-18, r^2= 2.6D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 83 0.866809 1 C f 2 79 -0.499725 1 C f -2 + + Vector 97 Occ=0.000000D+00 E= 9.869254D+01 + MO Center= 2.3D-16, -2.6D-17, 3.9D-17, r^2= 2.6D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 79 0.685271 1 C f -2 81 0.612702 1 C f 0 + 83 0.395065 1 C f 2 + + Vector 98 Occ=0.000000D+00 E= 9.869254D+01 + MO Center= 2.1D-16, -4.1D-17, 1.3D-18, r^2= 2.6D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 78 0.968767 1 C f -3 82 -0.216585 1 C f 1 + + Vector 99 Occ=0.000000D+00 E= 9.869713D+01 + MO Center= 1.9D-16, 2.2D-17, -1.9D-17, r^2= 2.6D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 84 0.790997 1 C f 3 80 0.530520 1 C f -1 + 82 0.306519 1 C f 1 + + Vector 100 Occ=0.000000D+00 E= 1.151039D+02 + MO Center= 2.7D-16, -6.7D-18, 1.2D-17, r^2= 2.6D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 56 1.000215 1 C d 0 54 -0.500289 1 C d -2 + 51 -0.495685 1 C d 0 58 -0.288423 1 C d 2 + 49 0.247933 1 C d -2 36 0.191588 1 C d 0 + + Vector 101 Occ=0.000000D+00 E= 1.151039D+02 + MO Center= 2.0D-16, -2.7D-17, -1.3D-17, r^2= 2.6D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 57 1.000033 1 C d 1 55 -0.577789 1 C d -1 + 52 -0.495595 1 C d 1 50 0.286340 1 C d -1 + 37 0.191553 1 C d 1 + + Vector 102 Occ=0.000000D+00 E= 1.151263D+02 + MO Center= 1.9D-16, -6.0D-17, -2.8D-17, r^2= 2.6D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 58 1.000570 1 C d 2 54 -0.576837 1 C d -2 + 53 -0.495986 1 C d 2 49 0.285940 1 C d -2 + 38 0.191737 1 C d 2 + + Vector 103 Occ=0.000000D+00 E= 1.151263D+02 + MO Center= 2.4D-16, -3.0D-17, 5.4D-17, r^2= 2.6D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 55 1.000025 1 C d -1 57 0.577781 1 C d 1 + 50 -0.495716 1 C d -1 52 -0.286408 1 C d 1 + 35 0.191633 1 C d -1 + + Vector 104 Occ=0.000000D+00 E= 1.151337D+02 + MO Center= 2.2D-16, -1.4D-17, 2.2D-17, r^2= 2.6D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 54 0.866532 1 C d -2 56 0.577478 1 C d 0 + 58 0.499566 1 C d 2 49 -0.429578 1 C d -2 + 51 -0.286281 1 C d 0 53 -0.247657 1 C d 2 + 34 0.166074 1 C d -2 + + Vector 105 Occ=0.000000D+00 E= 1.215482D+02 + MO Center= 2.5D-16, 5.2D-17, -2.5D-17, r^2= 4.3D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 5.715575 1 C s 6 4.392563 1 C s + 7 -3.722977 1 C s 1 2.655251 1 C s + 8 2.664212 1 C s 3 0.847036 1 C s + 4 -0.593581 1 C s 5 0.288850 1 C s + + Vector 106 Occ=0.000000D+00 E= 2.248202D+02 + MO Center= 2.3D-16, -3.7D-17, -4.6D-18, r^2= 1.8D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 30 1.589602 1 C pz 27 -1.570140 1 C pz + 24 0.950457 1 C pz 12 -0.487795 1 C pz + 15 0.245604 1 C pz + + Vector 107 Occ=0.000000D+00 E= 2.248202D+02 + MO Center= 2.6D-16, -2.2D-17, -3.6D-20, r^2= 1.8D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 28 1.376385 1 C px 25 -1.359534 1 C px + 22 0.822970 1 C px 29 0.795235 1 C py + 26 -0.785499 1 C py 23 0.475488 1 C py + 10 -0.422366 1 C px 11 -0.244031 1 C py + 13 0.212661 1 C px + + Vector 108 Occ=0.000000D+00 E= 2.248392D+02 + MO Center= 2.5D-16, -5.9D-17, 2.3D-17, r^2= 1.8D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 29 1.376404 1 C py 26 -1.359687 1 C py + 23 0.823160 1 C py 28 -0.795245 1 C px + 25 0.785586 1 C px 22 -0.475597 1 C px + 11 -0.422488 1 C py 10 0.244101 1 C px + 14 0.212715 1 C py + + Vector 109 Occ=0.000000D+00 E= 5.084469D+02 + MO Center= 2.3D-16, -3.4D-17, 1.7D-19, r^2= 1.0D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 68.411147 1 C s 2 43.112051 1 C s + 6 -13.880356 1 C s 7 -7.956733 1 C s + 8 -7.232811 1 C s 3 -0.260955 1 C s + 4 0.205742 1 C s + + + Final MO vectors + ---------------- + + + global array: scf_init: MOs[1:109,1:109], handle: -1000 + + 1 2 3 4 5 6 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.99370 0.00059 0.00000 0.00000 -0.00000 -0.07328 + 2 0.00103 0.34491 0.00000 0.00000 -0.00000 -0.20048 + 3 0.01599 0.28105 0.00000 0.00000 -0.00000 -0.20143 + 4 -0.00368 0.59184 -0.00000 -0.00000 0.00000 0.25698 + 5 0.00171 0.27154 0.00000 0.00000 -0.00000 -1.38209 + 6 0.00044 0.00026 0.00000 0.00000 -0.00000 -0.02902 + 7 -0.00002 -0.00008 -0.00000 -0.00000 -0.00000 0.00059 + 8 0.00005 0.00007 0.00000 0.00000 -0.00000 -0.00160 + 9 -0.00044 0.00291 -0.00000 -0.00000 0.00000 1.82207 + 10 -0.00000 -0.00000 -0.08330 0.00009 0.08364 -0.00000 + 11 -0.00000 0.00000 0.14418 0.00010 0.04833 0.00000 + 12 -0.00000 -0.00000 -0.00007 0.09660 -0.00013 0.00000 + 13 0.00000 -0.00000 -0.16281 0.00018 0.15876 -0.00000 + 14 -0.00000 0.00000 0.28179 0.00019 0.09173 0.00000 + 15 0.00000 0.00000 -0.00014 0.18336 -0.00025 0.00000 + 16 -0.00000 -0.00000 -0.22105 0.00029 0.25980 -0.00000 + 17 0.00000 0.00000 0.38259 0.00032 0.15011 0.00000 + 18 -0.00000 -0.00000 -0.00019 0.30005 -0.00041 0.00000 + 19 0.00000 0.00000 -0.14455 0.00023 0.20585 0.00000 + 20 -0.00000 -0.00000 0.25018 0.00025 0.11893 -0.00000 + 21 0.00000 0.00000 -0.00012 0.23774 -0.00033 0.00000 + 22 0.00000 -0.00000 -0.00009 -0.00000 -0.00001 0.00000 + 23 0.00000 -0.00000 0.00016 -0.00000 -0.00000 -0.00000 + 24 0.00000 0.00000 -0.00000 -0.00001 0.00000 0.00000 + 25 -0.00000 0.00000 0.00016 -0.00000 -0.00005 0.00000 + 26 -0.00000 0.00000 -0.00028 -0.00000 -0.00003 0.00000 + 27 0.00000 -0.00000 0.00000 -0.00006 0.00000 -0.00000 + 28 0.00000 -0.00000 -0.00012 0.00000 0.00013 -0.00000 + 29 0.00000 -0.00000 0.00022 0.00000 0.00007 -0.00000 + 30 -0.00000 0.00000 -0.00000 0.00015 -0.00000 0.00000 + 31 0.00000 -0.00000 -0.01189 0.00052 0.45726 -0.00000 + 32 -0.00000 0.00000 0.02059 0.00056 0.26419 0.00000 + 33 -0.00000 -0.00000 -0.00001 0.52810 -0.00073 -0.00000 + 34 -0.00006 -0.00144 0.00000 -0.00000 -0.00000 -0.00044 + 35 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 36 -0.00004 -0.00096 0.00000 -0.00000 0.00000 -0.00029 + 37 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 38 -0.00004 -0.00083 0.00000 0.00000 0.00000 -0.00025 + 39 -0.00060 0.00027 -0.00000 -0.00000 -0.00000 0.00004 + 40 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 41 -0.00040 0.00018 -0.00000 -0.00000 0.00000 0.00003 + 42 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 43 -0.00035 0.00016 0.00000 -0.00000 0.00000 0.00003 + 44 -0.00001 -0.00630 0.00000 -0.00000 0.00000 -0.00795 + 45 -0.00000 -0.00001 0.00000 -0.00000 0.00000 -0.00001 + 46 -0.00000 -0.00420 0.00000 -0.00000 0.00000 -0.00530 + 47 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 48 -0.00000 -0.00363 0.00000 0.00000 0.00000 -0.00458 + 49 0.00037 -0.00036 -0.00000 -0.00000 -0.00000 0.00010 + 50 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 51 0.00025 -0.00024 -0.00000 -0.00000 0.00000 0.00007 + 52 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 53 0.00021 -0.00021 0.00000 -0.00000 -0.00000 0.00006 + 54 0.00001 0.00001 -0.00000 -0.00000 -0.00000 -0.00001 + 55 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 56 0.00001 0.00001 0.00000 0.00000 -0.00000 -0.00001 + 57 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 58 0.00001 0.00001 0.00000 0.00000 0.00000 -0.00000 + 59 -0.00004 -0.00333 -0.00000 -0.00000 0.00000 0.04652 + 60 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00004 + 61 -0.00002 -0.00222 -0.00000 -0.00000 -0.00000 0.03100 + 62 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00002 + 63 -0.00002 -0.00192 -0.00000 -0.00000 -0.00000 0.02682 + 64 0.00000 0.00000 -0.00000 0.00000 0.00204 0.00000 + 65 0.00000 -0.00000 -0.00000 0.00144 -0.00000 0.00000 + 66 -0.00000 0.00000 0.00219 0.00000 0.00026 0.00000 + 67 -0.00000 0.00000 -0.00000 0.00129 -0.00000 0.00000 + 68 0.00000 0.00000 0.00127 0.00000 -0.00046 0.00000 + 69 0.00000 0.00000 -0.00000 0.00083 -0.00000 0.00000 + 70 0.00000 0.00000 0.00326 0.00000 0.00000 0.00000 + 71 -0.00000 -0.00000 -0.00001 0.00001 0.00379 -0.00000 + 72 0.00000 0.00000 -0.00001 0.00268 -0.00000 0.00000 + 73 0.00000 0.00000 0.00495 0.00000 0.00049 -0.00000 + 74 -0.00000 -0.00000 -0.00001 0.00240 -0.00000 0.00000 + 75 -0.00000 -0.00000 0.00286 0.00000 -0.00085 0.00000 + 76 -0.00000 0.00000 -0.00000 0.00155 -0.00000 0.00000 + 77 -0.00000 -0.00000 0.00737 0.00000 0.00000 -0.00000 + 78 0.00000 -0.00000 -0.00000 0.00000 0.00001 0.00000 + 79 0.00000 -0.00000 -0.00000 0.00001 -0.00000 0.00000 + 80 -0.00000 0.00000 0.00001 0.00000 0.00000 0.00000 + 81 0.00000 0.00000 -0.00000 0.00001 -0.00000 0.00000 + 82 -0.00000 -0.00000 0.00001 0.00000 -0.00000 0.00000 + 83 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 84 -0.00000 -0.00000 0.00002 0.00000 0.00000 -0.00000 + 85 0.00000 0.00000 -0.00001 0.00002 0.01143 0.00000 + 86 -0.00000 -0.00000 -0.00001 0.00809 -0.00001 0.00000 + 87 0.00000 0.00000 0.00412 0.00001 0.00148 0.00000 + 88 -0.00000 0.00000 -0.00000 0.00723 -0.00001 0.00000 + 89 0.00000 0.00000 0.00238 0.00000 -0.00256 0.00000 + 90 -0.00000 0.00000 -0.00000 0.00466 -0.00001 0.00000 + 91 0.00000 0.00000 0.00614 0.00000 0.00001 0.00000 + 92 -0.00001 -0.00004 -0.00000 0.00000 -0.00000 -0.00006 + 93 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 94 -0.00001 -0.00003 0.00000 0.00000 -0.00000 -0.00004 + 95 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 96 -0.00001 -0.00003 0.00000 0.00000 -0.00000 -0.00003 + 97 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 98 -0.00000 -0.00002 0.00000 0.00000 -0.00000 -0.00002 + 99 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 100 0.00001 0.00002 0.00000 -0.00000 0.00000 0.00003 + 101 -0.00000 -0.00026 0.00000 -0.00000 0.00000 0.00019 + 102 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 103 -0.00000 -0.00020 -0.00000 -0.00000 -0.00000 0.00015 + 104 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 105 -0.00000 -0.00015 0.00000 -0.00000 0.00000 0.00011 + 106 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 107 -0.00000 -0.00011 -0.00000 -0.00000 0.00000 0.00009 + 108 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 109 0.00000 0.00015 0.00000 0.00000 -0.00000 -0.00011 + + 7 8 9 10 11 12 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 2 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 3 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 4 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 5 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 6 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 7 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 8 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 9 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 10 0.01362 -0.06278 -0.00053 -0.00000 0.00000 0.00000 + 11 -0.02358 -0.03627 -0.00034 -0.00000 -0.00000 -0.00000 + 12 0.00001 0.00063 -0.07251 0.00000 -0.00000 -0.00000 + 13 0.05534 -0.18185 -0.00154 -0.00000 0.00000 -0.00000 + 14 -0.09578 -0.10507 -0.00099 -0.00000 0.00000 -0.00000 + 15 0.00005 0.00183 -0.21002 0.00000 -0.00000 0.00000 + 16 -0.01283 -0.09161 -0.00078 -0.00000 0.00000 0.00000 + 17 0.02220 -0.05293 -0.00050 -0.00000 -0.00000 0.00000 + 18 -0.00001 0.00092 -0.10581 0.00000 -0.00000 -0.00000 + 19 0.26684 -0.70309 -0.00597 -0.00000 0.00000 -0.00000 + 20 -0.46185 -0.40622 -0.00385 -0.00000 0.00000 -0.00000 + 21 0.00023 0.00709 -0.81200 -0.00000 -0.00000 0.00000 + 22 0.00199 -0.00431 -0.00004 0.00000 0.00000 -0.00000 + 23 -0.00345 -0.00249 -0.00002 0.00000 0.00000 -0.00000 + 24 0.00000 0.00004 -0.00498 0.00000 -0.00000 0.00000 + 25 -0.00015 0.00030 0.00000 0.00000 -0.00000 -0.00000 + 26 0.00027 0.00017 0.00000 0.00000 -0.00000 0.00000 + 27 -0.00000 -0.00000 0.00034 0.00000 0.00000 -0.00000 + 28 0.00012 -0.00030 -0.00000 0.00000 0.00000 0.00000 + 29 -0.00020 -0.00018 -0.00000 -0.00000 0.00000 -0.00000 + 30 0.00000 0.00000 -0.00035 0.00000 -0.00000 0.00000 + 31 -0.63506 1.03003 0.00874 0.00000 -0.00000 0.00000 + 32 1.09915 0.59512 0.00564 -0.00000 0.00000 0.00000 + 33 -0.00054 -0.01039 1.18960 0.00000 0.00000 -0.00000 + 34 0.00000 -0.00000 0.00000 0.00000 0.00440 0.00001 + 35 0.00000 0.00000 -0.00000 0.00508 -0.00001 -0.00875 + 36 0.00000 -0.00000 0.00000 -0.00000 -0.00879 0.00001 + 37 -0.00000 0.00000 -0.00000 -0.00879 0.00000 -0.00506 + 38 0.00000 0.00000 -0.00000 -0.00000 0.00253 -0.00001 + 39 -0.00000 0.00000 -0.00000 -0.00003 -0.02964 -0.00009 + 40 -0.00000 -0.00000 0.00000 -0.03423 0.00004 0.06290 + 41 -0.00000 0.00000 -0.00000 0.00003 0.05925 -0.00005 + 42 0.00000 -0.00000 0.00000 0.05924 -0.00002 0.03634 + 43 -0.00000 -0.00000 0.00000 0.00002 -0.01708 0.00010 + 44 0.00000 -0.00000 0.00000 0.00009 0.08451 0.00025 + 45 -0.00000 0.00000 -0.00000 0.09760 -0.00013 -0.17062 + 46 0.00000 -0.00000 0.00000 -0.00009 -0.16896 0.00015 + 47 -0.00000 0.00000 -0.00000 -0.16893 0.00005 -0.09858 + 48 0.00000 0.00000 -0.00000 -0.00005 0.04872 -0.00027 + 49 -0.00000 0.00000 -0.00000 -0.00000 -0.00057 -0.00000 + 50 -0.00000 -0.00000 0.00000 -0.00066 0.00000 0.00121 + 51 -0.00000 0.00000 0.00000 0.00000 0.00114 -0.00000 + 52 -0.00000 -0.00000 0.00000 0.00114 -0.00000 0.00070 + 53 -0.00000 -0.00000 0.00000 0.00000 -0.00033 0.00000 + 54 0.00000 -0.00000 0.00000 0.00000 0.00007 0.00000 + 55 0.00000 0.00000 -0.00000 0.00008 -0.00000 -0.00015 + 56 -0.00000 0.00000 0.00000 -0.00000 -0.00014 0.00000 + 57 0.00000 0.00000 -0.00000 -0.00014 0.00000 -0.00009 + 58 0.00000 0.00000 -0.00000 -0.00000 0.00004 -0.00000 + 59 -0.00000 0.00000 -0.00000 -0.00049 -0.47622 -0.00140 + 60 -0.00000 -0.00000 0.00000 -0.55000 0.00071 0.95228 + 61 -0.00000 0.00000 0.00000 0.00052 0.95210 -0.00081 + 62 0.00000 -0.00000 0.00000 0.95193 -0.00029 0.55020 + 63 -0.00000 -0.00000 0.00000 0.00026 -0.27455 0.00149 + 64 0.00000 -0.00148 -0.00001 -0.00000 0.00000 -0.00000 + 65 0.00000 0.00001 -0.00104 -0.00000 0.00000 -0.00000 + 66 -0.00032 -0.00019 -0.00000 0.00000 0.00000 -0.00000 + 67 0.00000 0.00001 -0.00093 -0.00000 -0.00000 -0.00000 + 68 -0.00018 0.00033 0.00000 -0.00000 0.00000 -0.00000 + 69 0.00000 0.00001 -0.00060 0.00000 0.00000 0.00000 + 70 -0.00048 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 71 0.00000 -0.00555 -0.00005 0.00000 0.00000 0.00000 + 72 0.00000 0.00003 -0.00392 0.00000 -0.00000 0.00000 + 73 -0.00225 -0.00072 -0.00001 -0.00000 -0.00000 0.00000 + 74 0.00000 0.00003 -0.00351 0.00000 0.00000 0.00000 + 75 -0.00130 0.00124 0.00001 0.00000 -0.00000 0.00000 + 76 0.00000 0.00002 -0.00226 -0.00000 -0.00000 0.00000 + 77 -0.00335 -0.00001 -0.00000 0.00000 0.00000 0.00000 + 78 0.00000 -0.00001 -0.00000 -0.00000 -0.00000 0.00000 + 79 0.00000 0.00000 -0.00001 -0.00000 0.00000 -0.00000 + 80 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 81 0.00000 0.00000 -0.00001 -0.00000 -0.00000 0.00000 + 82 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 83 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 84 -0.00001 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 85 -0.00000 -0.00195 -0.00002 -0.00000 0.00000 -0.00000 + 86 -0.00000 0.00001 -0.00138 -0.00000 0.00000 -0.00000 + 87 0.00341 -0.00025 -0.00000 0.00000 0.00000 -0.00000 + 88 -0.00000 0.00001 -0.00123 -0.00000 -0.00000 -0.00000 + 89 0.00197 0.00044 0.00000 -0.00000 0.00000 -0.00000 + 90 -0.00000 0.00001 -0.00080 0.00000 -0.00000 -0.00000 + 91 0.00508 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 92 0.00000 0.00000 -0.00000 0.00000 0.00039 -0.00000 + 93 0.00000 -0.00000 0.00000 0.00064 -0.00000 0.00000 + 94 -0.00000 -0.00000 0.00000 0.00000 -0.00030 0.00000 + 95 -0.00000 -0.00000 0.00000 0.00012 -0.00000 -0.00060 + 96 0.00000 0.00000 -0.00000 -0.00000 -0.00039 0.00000 + 97 0.00000 -0.00000 0.00000 -0.00021 -0.00000 -0.00035 + 98 0.00000 -0.00000 -0.00000 -0.00000 -0.00017 0.00000 + 99 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00061 + 100 0.00000 -0.00000 -0.00000 -0.00000 -0.00023 -0.00000 + 101 -0.00000 0.00000 0.00000 -0.00000 -0.00233 0.00000 + 102 0.00000 0.00000 0.00000 -0.00381 0.00000 -0.00000 + 103 0.00000 -0.00000 -0.00000 -0.00000 0.00176 -0.00001 + 104 0.00000 0.00000 -0.00000 -0.00072 0.00000 0.00377 + 105 -0.00000 0.00000 0.00000 0.00000 0.00227 -0.00001 + 106 -0.00000 0.00000 -0.00000 0.00125 0.00000 0.00218 + 107 -0.00000 0.00000 0.00000 0.00000 0.00102 -0.00000 + 108 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00384 + 109 -0.00000 0.00000 0.00000 0.00000 0.00135 0.00001 + + 13 14 15 16 17 18 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 0.01378 0.00000 -0.00000 -0.00000 0.28335 + 2 -0.00000 0.02575 0.00000 -0.00000 -0.00000 0.26503 + 3 -0.00000 0.02840 0.00000 -0.00000 -0.00000 0.39536 + 4 -0.00000 -0.08084 -0.00000 0.00000 0.00000 -2.76908 + 5 -0.00000 0.17265 0.00000 -0.00000 -0.00000 3.78788 + 6 -0.00000 0.00568 0.00000 -0.00000 -0.00000 0.12248 + 7 0.00000 -0.00013 -0.00000 0.00000 -0.00000 -0.00254 + 8 -0.00000 0.00031 0.00000 -0.00000 -0.00000 0.00659 + 9 0.00000 -0.14002 -0.00000 0.00000 0.00000 -1.55998 + 10 0.00000 0.00000 0.08354 -0.15858 -0.00003 -0.00000 + 11 0.00000 0.00000 -0.14458 -0.09162 -0.00011 0.00000 + 12 0.00000 -0.00000 0.00007 0.00008 -0.18315 -0.00000 + 13 -0.00000 0.00000 0.02720 -0.07483 -0.00001 -0.00000 + 14 -0.00000 -0.00000 -0.04707 -0.04323 -0.00005 0.00000 + 15 0.00000 -0.00000 0.00002 0.00004 -0.08642 -0.00000 + 16 0.00000 -0.00000 0.51717 -1.00295 -0.00017 -0.00000 + 17 0.00000 0.00000 -0.89512 -0.57948 -0.00067 0.00000 + 18 0.00000 -0.00000 0.00044 0.00048 -1.15832 -0.00000 + 19 -0.00000 0.00000 -0.94485 1.56811 0.00027 0.00000 + 20 -0.00000 -0.00000 1.63534 0.90600 0.00105 -0.00000 + 21 0.00000 -0.00000 -0.00081 -0.00076 1.81102 0.00000 + 22 -0.00000 0.00000 -0.00949 0.01618 0.00000 0.00000 + 23 -0.00000 0.00000 0.01643 0.00935 0.00001 -0.00000 + 24 0.00000 -0.00000 -0.00001 -0.00001 0.01869 0.00000 + 25 0.00000 0.00000 0.00031 -0.00060 -0.00000 -0.00000 + 26 0.00000 -0.00000 -0.00054 -0.00035 -0.00000 0.00000 + 27 -0.00000 -0.00000 0.00000 0.00000 -0.00069 -0.00000 + 28 -0.00000 -0.00000 -0.00034 0.00056 0.00000 0.00000 + 29 -0.00000 0.00000 0.00060 0.00032 0.00000 -0.00000 + 30 0.00000 -0.00000 -0.00000 -0.00000 0.00064 0.00000 + 31 0.00000 -0.00000 0.39157 -0.63335 -0.00011 -0.00000 + 32 0.00000 0.00000 -0.67772 -0.36593 -0.00042 0.00000 + 33 -0.00000 0.00000 0.00033 0.00031 -0.73146 -0.00000 + 34 0.00505 -0.00758 -0.00000 0.00000 0.00000 0.00255 + 35 0.00001 -0.00001 -0.00000 -0.00000 0.00000 0.00000 + 36 -0.00000 -0.00505 -0.00000 -0.00000 -0.00000 0.00170 + 37 0.00001 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 38 -0.00876 -0.00437 -0.00000 -0.00000 -0.00000 0.00147 + 39 -0.03628 0.05519 0.00000 -0.00000 -0.00000 -0.01939 + 40 -0.00010 0.00005 0.00000 0.00000 -0.00000 -0.00002 + 41 0.00000 0.03678 -0.00000 -0.00000 0.00000 -0.01292 + 42 -0.00009 0.00003 0.00000 0.00000 0.00000 -0.00001 + 43 0.06293 0.03182 -0.00000 0.00000 0.00000 -0.01118 + 44 0.09842 -0.14858 0.00000 0.00000 0.00000 0.06063 + 45 0.00027 -0.00013 -0.00000 -0.00000 0.00000 0.00005 + 46 -0.00000 -0.09902 0.00000 0.00000 -0.00000 0.04040 + 47 0.00025 -0.00007 -0.00000 -0.00000 -0.00000 0.00003 + 48 -0.17071 -0.08566 0.00000 -0.00000 -0.00000 0.03495 + 49 -0.00070 0.00106 0.00000 -0.00000 -0.00000 -0.00009 + 50 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 51 0.00000 0.00071 -0.00000 0.00000 0.00000 -0.00006 + 52 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 53 0.00121 0.00061 0.00000 0.00000 0.00000 -0.00005 + 54 0.00009 -0.00013 0.00000 0.00000 0.00000 0.00003 + 55 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 56 -0.00000 -0.00009 -0.00000 -0.00000 -0.00000 0.00002 + 57 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 58 -0.00015 -0.00007 0.00000 -0.00000 -0.00000 0.00002 + 59 -0.54930 0.82401 0.00000 -0.00000 -0.00000 -0.04647 + 60 -0.00149 0.00070 0.00000 0.00000 -0.00000 -0.00004 + 61 0.00000 0.54914 -0.00000 -0.00000 -0.00000 -0.03097 + 62 -0.00140 0.00041 0.00000 0.00000 0.00000 -0.00002 + 63 0.95280 0.47505 -0.00000 0.00000 0.00000 -0.02679 + 64 0.00000 0.00000 0.00000 -0.00153 -0.00000 -0.00000 + 65 0.00000 0.00000 0.00000 -0.00000 -0.00108 0.00000 + 66 0.00000 0.00000 -0.00083 -0.00020 -0.00000 -0.00000 + 67 0.00000 0.00000 0.00000 0.00000 -0.00097 -0.00000 + 68 -0.00000 0.00000 -0.00048 0.00034 -0.00000 -0.00000 + 69 0.00000 0.00000 0.00000 0.00000 -0.00063 0.00000 + 70 0.00000 0.00000 -0.00124 -0.00000 -0.00000 0.00000 + 71 -0.00000 -0.00000 0.00001 -0.01433 -0.00001 -0.00000 + 72 -0.00000 -0.00000 0.00001 -0.00000 -0.01014 -0.00000 + 73 -0.00000 -0.00000 -0.00820 -0.00185 -0.00002 0.00000 + 74 -0.00000 -0.00000 0.00001 0.00000 -0.00906 0.00000 + 75 0.00000 -0.00000 -0.00474 0.00320 -0.00001 0.00000 + 76 -0.00000 -0.00000 0.00001 0.00001 -0.00584 -0.00000 + 77 -0.00000 -0.00000 -0.01222 -0.00001 -0.00001 0.00000 + 78 0.00000 0.00000 0.00000 -0.00002 -0.00000 0.00000 + 79 0.00000 0.00000 0.00000 -0.00000 -0.00001 -0.00000 + 80 -0.00000 -0.00000 -0.00001 -0.00000 -0.00000 0.00000 + 81 0.00000 -0.00000 0.00000 0.00000 -0.00001 0.00000 + 82 0.00000 -0.00000 -0.00001 0.00000 -0.00000 -0.00000 + 83 0.00000 0.00000 0.00000 0.00000 -0.00001 -0.00000 + 84 -0.00000 0.00000 -0.00002 -0.00000 -0.00000 0.00000 + 85 0.00000 0.00000 -0.00004 0.04058 0.00002 0.00000 + 86 0.00000 0.00000 -0.00004 0.00000 0.02870 0.00000 + 87 0.00000 0.00000 0.02779 0.00524 0.00004 -0.00000 + 88 0.00000 0.00000 -0.00003 -0.00001 0.02566 -0.00000 + 89 -0.00000 0.00000 0.01606 -0.00907 0.00002 -0.00000 + 90 -0.00000 0.00000 -0.00002 -0.00003 0.01655 0.00000 + 91 0.00000 0.00000 0.04144 0.00004 0.00002 0.00000 + 92 -0.00043 -0.00064 -0.00000 0.00000 0.00000 -0.00012 + 93 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 94 0.00016 -0.00048 -0.00000 0.00000 0.00000 -0.00009 + 95 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 96 -0.00000 -0.00037 0.00000 0.00000 -0.00000 -0.00007 + 97 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 98 -0.00028 -0.00028 0.00000 0.00000 -0.00000 -0.00005 + 99 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 100 -0.00075 0.00037 0.00000 0.00000 -0.00000 0.00007 + 101 0.00272 0.00406 -0.00000 -0.00000 0.00000 0.00060 + 102 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 103 -0.00102 0.00307 0.00000 -0.00000 -0.00000 0.00046 + 104 -0.00001 0.00001 0.00000 -0.00000 -0.00000 0.00000 + 105 0.00000 0.00238 -0.00000 -0.00000 0.00000 0.00035 + 106 -0.00001 0.00000 -0.00000 0.00000 0.00000 0.00000 + 107 0.00178 0.00177 -0.00000 -0.00000 0.00000 0.00026 + 108 -0.00001 0.00001 0.00000 0.00000 -0.00000 0.00000 + 109 0.00469 -0.00235 -0.00000 -0.00000 0.00000 -0.00035 + + 19 20 21 22 23 24 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 2 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 3 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 4 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 6 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 7 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 8 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 9 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 10 0.00000 0.00000 -0.00000 -0.00000 -0.00001 0.00508 + 11 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00294 + 12 0.00000 -0.00000 -0.00000 -0.00000 0.00587 0.00001 + 13 0.00000 0.00000 0.00000 -0.00000 0.00002 -0.00879 + 14 -0.00000 -0.00000 -0.00000 0.00000 0.00001 -0.00508 + 15 -0.00000 0.00000 0.00000 -0.00000 -0.01016 -0.00002 + 16 -0.00000 -0.00000 -0.00000 -0.00000 -0.00008 0.04102 + 17 0.00000 0.00000 0.00000 -0.00000 -0.00002 0.02370 + 18 0.00000 -0.00000 -0.00000 -0.00000 0.04738 0.00008 + 19 0.00000 -0.00000 -0.00000 0.00000 0.00013 -0.06575 + 20 0.00000 0.00000 -0.00000 -0.00000 0.00004 -0.03799 + 21 -0.00000 -0.00000 -0.00000 0.00000 -0.07593 -0.00013 + 22 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00132 + 23 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00076 + 24 -0.00000 0.00000 0.00000 -0.00000 -0.00152 -0.00000 + 25 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00006 + 26 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00004 + 27 0.00000 -0.00000 -0.00000 0.00000 0.00007 0.00000 + 28 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00006 + 29 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00003 + 30 -0.00000 0.00000 0.00000 -0.00000 -0.00007 -0.00000 + 31 0.00000 0.00000 0.00000 -0.00000 -0.00004 0.02217 + 32 -0.00000 -0.00000 -0.00000 0.00000 -0.00001 0.01281 + 33 -0.00000 0.00000 0.00000 -0.00000 0.02561 0.00004 + 34 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 35 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 36 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 37 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 38 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 39 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 40 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 41 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 42 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 43 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 44 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 45 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 46 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 47 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 48 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 49 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 50 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 52 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 53 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 54 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 55 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 57 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 58 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 59 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 60 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 61 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 62 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 63 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 64 0.01020 0.00005 0.00002 0.00002 -0.00007 0.04091 + 65 0.00009 -0.02165 -0.00001 -0.02084 0.02894 0.00006 + 66 -0.01977 -0.00008 0.02856 0.00002 0.00003 0.00528 + 67 -0.00015 0.03226 -0.00003 -0.00000 0.02587 0.00004 + 68 0.03421 0.00017 0.01650 -0.00002 0.00004 -0.00915 + 69 0.00008 -0.01248 -0.00001 0.03614 0.01668 0.00000 + 70 0.00001 -0.00001 -0.02555 -0.00000 0.00002 0.00004 + 71 -0.05399 -0.00025 -0.00013 -0.00011 0.00037 -0.21477 + 72 -0.00048 0.11457 0.00003 0.10977 -0.15192 -0.00034 + 73 0.10461 0.00041 -0.15045 -0.00009 -0.00018 -0.02774 + 74 0.00080 -0.17073 0.00018 0.00000 -0.13583 -0.00024 + 75 -0.18105 -0.00089 -0.08692 0.00012 -0.00021 0.04802 + 76 -0.00041 0.06605 0.00005 -0.19041 -0.08758 -0.00002 + 77 -0.00005 0.00007 0.13459 0.00002 -0.00009 -0.00020 + 78 -0.00001 -0.00000 -0.00000 -0.00000 0.00000 -0.00004 + 79 -0.00000 0.00002 0.00000 0.00002 -0.00003 -0.00000 + 80 0.00002 0.00000 -0.00003 -0.00000 -0.00000 -0.00000 + 81 0.00000 -0.00003 0.00000 0.00000 -0.00002 -0.00000 + 82 -0.00003 -0.00000 -0.00002 0.00000 -0.00000 0.00001 + 83 -0.00000 0.00001 0.00000 -0.00003 -0.00002 -0.00000 + 84 -0.00000 0.00000 0.00002 0.00000 -0.00000 -0.00000 + 85 0.27873 0.00130 0.00065 0.00058 -0.00188 1.08152 + 86 0.00248 -0.59149 -0.00014 -0.55776 0.76502 0.00170 + 87 -0.54005 -0.00213 0.76444 0.00047 0.00089 0.13970 + 88 -0.00413 0.88142 -0.00092 -0.00000 0.68401 0.00119 + 89 0.93472 0.00460 0.44167 -0.00060 0.00107 -0.24179 + 90 0.00210 -0.34100 -0.00024 0.96748 0.44105 0.00011 + 91 0.00026 -0.00036 -0.68386 -0.00008 0.00046 0.00102 + 92 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 93 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 94 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 95 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 96 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 97 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 98 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 99 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 100 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 101 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 102 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 103 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 104 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 105 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 106 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 107 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 108 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 109 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + + 25 26 27 28 29 30 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.03626 + 2 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.05361 + 3 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.06426 + 4 0.00000 -0.00000 0.00000 0.00000 0.00000 0.19463 + 5 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.21223 + 6 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.01495 + 7 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00026 + 8 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00080 + 9 -0.00000 0.00000 0.00000 0.00000 0.00000 0.08676 + 10 -0.00000 0.00000 -0.00348 -0.00000 -0.00000 0.00000 + 11 -0.00000 -0.00000 0.00603 0.00000 -0.00000 -0.00000 + 12 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 13 0.00000 -0.00000 0.00626 0.00000 -0.00000 -0.00000 + 14 0.00000 0.00000 -0.01084 0.00000 0.00000 0.00000 + 15 0.00000 0.00000 0.00001 0.00000 -0.00000 0.00000 + 16 -0.00000 0.00000 -0.02769 -0.00000 -0.00000 0.00000 + 17 -0.00000 -0.00000 0.04793 -0.00000 -0.00000 -0.00000 + 18 -0.00000 0.00000 -0.00002 -0.00000 0.00000 -0.00000 + 19 0.00000 -0.00000 0.04668 0.00000 0.00000 -0.00000 + 20 0.00000 0.00000 -0.08079 0.00000 0.00000 0.00000 + 21 0.00000 -0.00000 0.00004 0.00000 -0.00000 0.00000 + 22 0.00000 -0.00000 0.00093 0.00000 0.00000 -0.00000 + 23 0.00000 0.00000 -0.00161 -0.00000 -0.00000 0.00000 + 24 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 25 -0.00000 0.00000 -0.00004 -0.00000 -0.00000 -0.00000 + 26 -0.00000 -0.00000 0.00008 -0.00000 -0.00000 -0.00000 + 27 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 28 0.00000 -0.00000 0.00004 0.00000 0.00000 -0.00000 + 29 0.00000 0.00000 -0.00007 0.00000 0.00000 0.00000 + 30 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 31 -0.00000 0.00000 -0.01573 -0.00000 -0.00000 0.00000 + 32 -0.00000 -0.00000 0.02723 -0.00000 -0.00000 -0.00000 + 33 -0.00000 0.00000 -0.00001 -0.00000 0.00000 -0.00000 + 34 -0.00001 -0.02564 -0.00000 -0.03074 -0.00003 0.04656 + 35 -0.02962 0.00002 0.00000 -0.00001 0.05328 0.00004 + 36 -0.00001 0.05127 0.00000 0.00000 -0.00005 0.03103 + 37 0.05126 0.00002 0.00000 -0.00003 0.03079 0.00002 + 38 0.00003 -0.01478 -0.00000 0.05331 0.00001 0.02684 + 39 0.00002 0.06090 0.00000 0.06760 0.00007 -0.10011 + 40 0.07033 -0.00004 -0.00000 0.00001 -0.11719 -0.00009 + 41 0.00003 -0.12175 -0.00000 -0.00000 0.00010 -0.06671 + 42 -0.12173 -0.00006 -0.00000 0.00007 -0.06771 -0.00005 + 43 -0.00006 0.03511 0.00000 -0.11725 -0.00001 -0.05771 + 44 -0.00015 -0.58417 -0.00000 -0.67124 -0.00073 1.00577 + 45 -0.67466 0.00034 0.00000 -0.00011 1.16368 0.00086 + 46 -0.00027 1.16791 0.00000 0.00000 -0.00099 0.67027 + 47 1.16769 0.00055 0.00000 -0.00073 0.67234 0.00050 + 48 0.00058 -0.33678 -0.00000 1.16432 0.00011 0.57984 + 49 0.00000 0.00103 0.00000 0.00116 0.00000 -0.00172 + 50 0.00119 -0.00000 -0.00000 0.00000 -0.00200 -0.00000 + 51 0.00000 -0.00206 -0.00000 -0.00000 0.00000 -0.00115 + 52 -0.00206 -0.00000 -0.00000 0.00000 -0.00116 -0.00000 + 53 -0.00000 0.00059 0.00000 -0.00200 -0.00000 -0.00099 + 54 -0.00000 -0.00024 -0.00000 -0.00028 -0.00000 0.00043 + 55 -0.00028 0.00000 0.00000 -0.00000 0.00049 0.00000 + 56 -0.00000 0.00049 0.00000 0.00000 -0.00000 0.00029 + 57 0.00049 0.00000 0.00000 -0.00000 0.00029 0.00000 + 58 0.00000 -0.00014 -0.00000 0.00049 0.00000 0.00025 + 59 0.00008 0.29570 0.00000 0.34071 0.00037 -0.50953 + 60 0.34150 -0.00017 -0.00000 0.00006 -0.59067 -0.00043 + 61 0.00014 -0.59118 -0.00000 -0.00000 0.00050 -0.33956 + 62 -0.59107 -0.00028 -0.00000 0.00037 -0.34127 -0.00025 + 63 -0.00029 0.17047 0.00000 -0.59099 -0.00006 -0.29375 + 64 -0.00000 -0.00000 -0.00003 -0.00000 -0.00000 0.00000 + 65 0.00000 0.00000 -0.00003 -0.00000 0.00000 0.00000 + 66 -0.00000 -0.00000 0.02249 0.00000 -0.00000 -0.00000 + 67 -0.00000 0.00000 -0.00003 -0.00000 0.00000 -0.00000 + 68 0.00000 -0.00000 0.01300 0.00000 -0.00000 -0.00000 + 69 -0.00000 0.00000 -0.00002 0.00000 0.00000 -0.00000 + 70 -0.00000 -0.00000 0.03354 0.00000 -0.00000 -0.00000 + 71 0.00000 0.00000 0.00017 0.00000 0.00000 -0.00000 + 72 -0.00000 -0.00000 0.00016 0.00000 -0.00000 -0.00000 + 73 0.00000 0.00000 -0.11798 -0.00000 0.00000 0.00000 + 74 0.00000 -0.00000 0.00014 -0.00000 -0.00000 0.00000 + 75 -0.00000 0.00000 -0.06817 -0.00000 0.00000 0.00000 + 76 0.00000 -0.00000 0.00009 -0.00000 -0.00000 0.00000 + 77 0.00000 0.00000 -0.17591 -0.00000 0.00000 0.00000 + 78 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 79 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 80 0.00000 0.00000 -0.00002 -0.00000 -0.00000 0.00000 + 81 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 82 -0.00000 0.00000 -0.00001 -0.00000 -0.00000 0.00000 + 83 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 84 0.00000 0.00000 -0.00003 -0.00000 0.00000 0.00000 + 85 -0.00000 -0.00000 -0.00083 -0.00000 -0.00000 0.00000 + 86 0.00000 0.00000 -0.00080 -0.00000 0.00000 -0.00000 + 87 -0.00000 -0.00000 0.59223 0.00000 -0.00000 -0.00000 + 88 -0.00000 0.00000 -0.00071 0.00000 0.00000 -0.00000 + 89 0.00000 -0.00000 0.34217 0.00000 -0.00000 -0.00000 + 90 -0.00000 0.00000 -0.00046 0.00000 0.00000 -0.00000 + 91 -0.00000 -0.00000 0.88301 0.00000 -0.00000 -0.00000 + 92 -0.00000 0.00043 0.00000 -0.00045 0.00000 -0.00066 + 93 0.00070 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 94 0.00000 -0.00032 -0.00000 0.00017 0.00000 -0.00050 + 95 0.00013 -0.00000 -0.00000 0.00000 -0.00063 -0.00000 + 96 0.00000 -0.00042 -0.00000 -0.00000 0.00000 -0.00039 + 97 -0.00023 -0.00000 0.00000 0.00000 -0.00036 -0.00000 + 98 -0.00000 -0.00019 -0.00000 -0.00030 0.00000 -0.00029 + 99 0.00000 0.00000 0.00000 0.00000 -0.00064 -0.00000 + 100 -0.00000 -0.00025 -0.00000 -0.00078 -0.00000 0.00038 + 101 0.00001 -0.00949 -0.00000 0.01104 -0.00000 0.01654 + 102 -0.01551 -0.00000 -0.00000 0.00002 -0.00001 -0.00000 + 103 -0.00001 0.00718 0.00000 -0.00416 -0.00003 0.01252 + 104 -0.00293 0.00002 0.00000 -0.00000 0.01529 0.00002 + 105 -0.00000 0.00927 0.00000 0.00000 -0.00002 0.00969 + 106 0.00508 0.00001 0.00000 -0.00001 0.00884 0.00001 + 107 0.00001 0.00414 0.00000 0.00721 -0.00001 0.00722 + 108 -0.00001 -0.00000 0.00000 -0.00001 0.01558 0.00002 + 109 0.00001 0.00550 0.00000 0.01906 0.00001 -0.00958 + + 31 32 33 34 35 36 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 0.00000 -0.00000 -1.45467 -0.00000 0.00000 + 2 0.00000 0.00000 -0.00000 -2.82286 -0.00000 0.00000 + 3 0.00000 0.00000 -0.00000 -3.66489 0.00000 -0.00000 + 4 -0.00000 -0.00000 0.00000 4.72043 -0.00000 0.00000 + 5 0.00000 0.00000 -0.00000 -2.74852 0.00000 -0.00000 + 6 0.00000 0.00000 -0.00000 -0.54037 -0.00000 0.00000 + 7 -0.00000 -0.00000 0.00000 0.00393 0.00000 -0.00000 + 8 0.00000 0.00000 -0.00000 -0.02811 -0.00000 -0.00000 + 9 -0.00000 0.00000 0.00000 0.80603 -0.00000 0.00000 + 10 0.00016 -0.06719 0.03914 -0.00000 0.00000 -0.00000 + 11 0.00005 -0.03882 -0.06774 0.00000 0.00000 -0.00000 + 12 -0.07760 -0.00016 0.00003 -0.00000 0.00000 0.00000 + 13 0.00294 -1.25505 0.71003 -0.00000 -0.00000 -0.00000 + 14 0.00098 -0.72513 -1.22891 0.00000 -0.00000 0.00000 + 15 -1.44947 -0.00304 0.00061 -0.00000 -0.00000 -0.00000 + 16 -0.00429 1.83047 -1.07599 0.00000 0.00000 0.00000 + 17 -0.00144 1.05759 1.86231 -0.00000 -0.00000 -0.00000 + 18 2.11403 0.00443 -0.00092 0.00000 0.00000 0.00000 + 19 0.00241 -1.02996 0.60666 -0.00000 -0.00000 -0.00000 + 20 0.00081 -0.59508 -1.05000 0.00000 0.00000 0.00000 + 21 -1.18952 -0.00249 0.00052 -0.00000 -0.00000 -0.00000 + 22 0.00014 -0.06070 0.03488 -0.00000 -0.00000 -0.00000 + 23 0.00005 -0.03507 -0.06038 0.00000 -0.00000 0.00000 + 24 -0.07010 -0.00015 0.00003 -0.00000 -0.00000 -0.00000 + 25 -0.00001 0.00386 -0.00233 0.00000 0.00000 0.00000 + 26 -0.00000 0.00223 0.00404 -0.00000 -0.00000 -0.00000 + 27 0.00445 0.00001 -0.00000 -0.00000 0.00000 0.00000 + 28 0.00001 -0.00297 0.00170 -0.00000 -0.00000 -0.00000 + 29 0.00000 -0.00172 -0.00295 0.00000 -0.00000 0.00000 + 30 -0.00343 -0.00001 0.00000 -0.00000 -0.00000 -0.00000 + 31 -0.00073 0.31087 -0.18247 0.00000 0.00000 0.00000 + 32 -0.00024 0.17961 0.31582 -0.00000 -0.00000 -0.00000 + 33 0.35903 0.00075 -0.00016 0.00000 0.00000 0.00000 + 34 -0.00000 0.00000 -0.00000 -0.01364 -0.00000 -0.00000 + 35 0.00000 0.00000 0.00000 -0.00001 -0.00000 -0.00000 + 36 0.00000 -0.00000 -0.00000 -0.00909 -0.00000 -0.00000 + 37 0.00000 -0.00000 0.00000 -0.00001 -0.00000 -0.00000 + 38 0.00000 -0.00000 -0.00000 -0.00787 -0.00000 0.00000 + 39 0.00000 -0.00000 -0.00000 0.04528 0.00000 0.00000 + 40 0.00000 -0.00000 0.00000 0.00004 0.00000 0.00000 + 41 -0.00000 0.00000 0.00000 0.03018 -0.00000 0.00000 + 42 0.00000 0.00000 -0.00000 0.00002 0.00000 0.00000 + 43 -0.00000 0.00000 0.00000 0.02611 0.00000 -0.00000 + 44 -0.00000 -0.00000 0.00000 -0.04329 -0.00000 -0.00000 + 45 -0.00000 0.00000 -0.00000 -0.00004 -0.00000 -0.00000 + 46 0.00000 0.00000 -0.00000 -0.02885 0.00000 -0.00000 + 47 -0.00000 -0.00000 0.00000 -0.00002 -0.00000 -0.00000 + 48 -0.00000 0.00000 -0.00000 -0.02496 -0.00000 0.00000 + 49 0.00000 -0.00000 -0.00000 0.00132 0.00000 0.00000 + 50 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 51 -0.00000 0.00000 0.00000 0.00088 0.00000 -0.00000 + 52 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 53 0.00000 0.00000 0.00000 0.00076 0.00000 -0.00000 + 54 -0.00000 0.00000 -0.00000 -0.00015 -0.00000 -0.00000 + 55 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 56 0.00000 -0.00000 0.00000 -0.00010 -0.00000 0.00000 + 57 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 58 0.00000 -0.00000 -0.00000 -0.00009 -0.00000 0.00000 + 59 -0.00000 0.00000 -0.00000 0.01759 0.00000 0.00000 + 60 0.00000 -0.00000 -0.00000 0.00001 0.00000 0.00000 + 61 -0.00000 -0.00000 0.00000 0.01172 -0.00000 0.00000 + 62 0.00000 0.00000 -0.00000 0.00001 0.00000 0.00000 + 63 0.00000 -0.00000 -0.00000 0.01014 0.00000 -0.00000 + 64 0.00002 -0.01095 0.00001 0.00000 -0.00000 0.00000 + 65 -0.00775 -0.00002 0.00001 0.00000 -0.00000 -0.00000 + 66 -0.00001 -0.00141 -0.00725 0.00000 -0.00000 0.00000 + 67 -0.00693 -0.00001 0.00001 -0.00000 0.00000 0.00000 + 68 -0.00001 0.00245 -0.00419 0.00000 0.00000 0.00000 + 69 -0.00447 -0.00000 0.00001 0.00000 0.00000 -0.00000 + 70 -0.00000 -0.00001 -0.01081 0.00000 0.00000 0.00000 + 71 -0.00008 0.03996 -0.00004 -0.00000 0.00000 -0.00000 + 72 0.02827 0.00007 -0.00004 -0.00000 0.00000 -0.00000 + 73 0.00003 0.00516 0.02781 -0.00000 0.00000 0.00000 + 74 0.02527 0.00005 -0.00003 0.00000 -0.00000 -0.00000 + 75 0.00004 -0.00893 0.01607 0.00000 -0.00000 -0.00000 + 76 0.01630 0.00001 -0.00002 -0.00000 -0.00000 0.00000 + 77 0.00002 0.00004 0.04147 0.00000 -0.00000 0.00000 + 78 0.00000 -0.00003 0.00000 -0.00000 0.00000 0.00000 + 79 -0.00002 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 80 -0.00000 -0.00000 -0.00002 0.00000 0.00000 0.00000 + 81 -0.00002 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 82 -0.00000 0.00001 -0.00001 0.00000 -0.00000 0.00000 + 83 -0.00001 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 84 -0.00000 -0.00000 -0.00003 -0.00000 -0.00000 -0.00000 + 85 0.00005 -0.02397 0.00002 0.00000 -0.00000 0.00000 + 86 -0.01696 -0.00004 0.00002 0.00000 -0.00000 0.00000 + 87 -0.00002 -0.00310 -0.01651 0.00000 -0.00000 -0.00000 + 88 -0.01516 -0.00003 0.00002 -0.00000 0.00000 0.00000 + 89 -0.00003 0.00536 -0.00954 -0.00000 0.00000 0.00000 + 90 -0.00978 -0.00001 0.00001 0.00000 0.00000 -0.00000 + 91 -0.00001 -0.00002 -0.02462 -0.00000 0.00000 -0.00000 + 92 -0.00000 -0.00000 -0.00000 0.00063 -0.02125 0.00003 + 93 -0.00000 0.00000 0.00000 -0.00000 -0.00002 -0.06945 + 94 -0.00000 -0.00000 -0.00000 0.00048 0.11256 0.00002 + 95 -0.00000 -0.00000 0.00000 0.00000 -0.00004 0.09192 + 96 0.00000 -0.00000 -0.00000 0.00037 -0.14526 0.00004 + 97 -0.00000 -0.00000 -0.00000 0.00000 -0.00009 -0.15910 + 98 -0.00000 -0.00000 -0.00000 0.00027 0.06489 -0.00012 + 99 0.00000 0.00000 0.00000 0.00000 0.00009 -0.00007 + 100 -0.00000 -0.00000 -0.00000 -0.00036 0.01230 0.00003 + 101 0.00000 0.00000 0.00000 -0.00162 0.11968 -0.00015 + 102 0.00000 -0.00000 -0.00000 0.00000 0.00012 0.39117 + 103 0.00000 0.00000 0.00000 -0.00122 -0.63400 -0.00012 + 104 0.00000 0.00000 -0.00000 -0.00000 0.00023 -0.51775 + 105 -0.00000 0.00000 0.00000 -0.00095 0.81819 -0.00025 + 106 -0.00000 0.00000 0.00000 -0.00000 0.00049 0.89612 + 107 0.00000 0.00000 0.00000 -0.00071 -0.36551 0.00065 + 108 -0.00000 -0.00000 -0.00000 -0.00000 -0.00050 0.00037 + 109 0.00000 0.00000 0.00000 0.00094 -0.06930 -0.00018 + + 37 38 39 40 41 42 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 2 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 3 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 4 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 5 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 6 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 7 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 8 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 9 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 10 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 11 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 12 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 13 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 14 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 15 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 16 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 17 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 18 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 19 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 20 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 21 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 22 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 23 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 24 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 25 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 26 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 27 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 28 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 29 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 30 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 31 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 32 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 33 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 34 0.00000 -0.00000 -0.00000 -0.00140 0.00000 0.00231 + 35 0.00000 0.00000 -0.00161 0.00000 -0.00401 -0.00000 + 36 -0.00000 0.00000 0.00000 0.00279 0.00000 0.00000 + 37 0.00000 0.00000 0.00279 -0.00000 -0.00232 0.00000 + 38 -0.00000 0.00000 0.00000 -0.00081 0.00000 -0.00402 + 39 -0.00000 0.00000 0.00000 0.00322 -0.00000 -0.00585 + 40 -0.00000 -0.00000 0.00372 -0.00000 0.01014 0.00000 + 41 0.00000 -0.00000 -0.00000 -0.00645 -0.00001 -0.00000 + 42 -0.00000 -0.00000 -0.00645 0.00000 0.00586 -0.00000 + 43 0.00000 -0.00000 -0.00000 0.00186 -0.00000 0.01015 + 44 0.00000 -0.00000 -0.00001 -0.01060 0.00001 0.01783 + 45 0.00000 0.00000 -0.01224 0.00001 -0.03091 -0.00001 + 46 -0.00000 0.00000 0.00001 0.02120 0.00003 0.00000 + 47 0.00000 0.00000 0.02119 -0.00000 -0.01786 0.00001 + 48 -0.00000 0.00000 0.00001 -0.00611 0.00001 -0.03093 + 49 -0.00000 0.00000 0.00000 0.00009 -0.00000 -0.00015 + 50 -0.00000 -0.00000 0.00010 -0.00000 0.00027 0.00000 + 51 0.00000 -0.00000 -0.00000 -0.00018 -0.00000 -0.00000 + 52 -0.00000 -0.00000 -0.00018 0.00000 0.00015 -0.00000 + 53 0.00000 -0.00000 -0.00000 0.00005 -0.00000 0.00027 + 54 0.00000 -0.00000 -0.00000 -0.00002 0.00000 0.00003 + 55 0.00000 0.00000 -0.00002 0.00000 -0.00004 -0.00000 + 56 -0.00000 0.00000 0.00000 0.00003 0.00000 0.00000 + 57 0.00000 0.00000 0.00003 -0.00000 -0.00003 0.00000 + 58 -0.00000 0.00000 0.00000 -0.00001 0.00000 -0.00004 + 59 -0.00000 0.00000 0.00000 0.00349 -0.00000 -0.00587 + 60 -0.00000 -0.00000 0.00403 -0.00000 0.01017 0.00000 + 61 0.00000 -0.00000 -0.00000 -0.00698 -0.00001 -0.00000 + 62 -0.00000 -0.00000 -0.00698 0.00000 0.00588 -0.00000 + 63 0.00000 -0.00000 -0.00000 0.00201 -0.00000 0.01018 + 64 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 65 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 66 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 67 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 68 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 69 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 70 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 71 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 72 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 73 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 74 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 75 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 76 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 77 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 78 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 79 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 80 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 81 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 82 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 83 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 84 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 85 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 86 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 87 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 88 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 89 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 90 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 91 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 92 0.03504 0.00003 0.00001 -0.11376 0.00007 -0.09342 + 93 -0.00011 0.00014 -0.18591 0.00007 0.00012 -0.00017 + 94 0.09240 -0.00012 -0.00007 0.08609 0.00021 0.03519 + 95 0.00006 0.11327 -0.03515 0.00022 -0.12943 -0.00003 + 96 -0.00000 -0.00018 0.00004 0.11110 0.00020 0.00000 + 97 0.00023 0.06544 0.06084 0.00010 -0.07478 0.00005 + 98 -0.16028 0.00021 0.00020 0.04963 0.00012 -0.06105 + 99 -0.00019 -0.14833 -0.00018 0.00000 -0.13183 -0.00000 + 100 0.06051 -0.00012 0.00012 0.06587 -0.00004 -0.16134 + 101 -0.19613 -0.00018 -0.00008 0.63386 -0.00039 0.51910 + 102 0.00059 -0.00078 1.03584 -0.00039 -0.00069 0.00094 + 103 -0.51720 0.00067 0.00041 -0.47967 -0.00115 -0.19556 + 104 -0.00036 -0.63402 0.19586 -0.00123 0.71919 0.00019 + 105 0.00000 0.00099 -0.00023 -0.61903 -0.00112 -0.00000 + 106 -0.00129 -0.36632 -0.33900 -0.00054 0.41553 -0.00030 + 107 0.89713 -0.00117 -0.00113 -0.27654 -0.00068 0.33922 + 108 0.00108 0.83028 0.00098 -0.00000 0.73253 0.00002 + 109 -0.33871 0.00069 -0.00068 -0.36702 0.00020 0.89650 + + 43 44 45 46 47 48 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00202 -0.00000 0.00000 -0.00000 -0.00000 0.08450 + 2 -0.00397 -0.00000 0.00000 -0.00000 -0.00000 0.14652 + 3 -0.00541 -0.00000 0.00000 -0.00000 -0.00000 0.13419 + 4 0.00659 0.00000 -0.00000 0.00000 0.00000 -0.19514 + 5 -0.00321 -0.00000 0.00000 -0.00000 -0.00000 0.13775 + 6 -0.00073 0.00000 -0.00000 -0.00000 0.00000 0.03385 + 7 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00050 + 8 -0.00004 0.00000 -0.00000 -0.00000 0.00000 0.00178 + 9 0.00088 0.00000 -0.00000 0.00000 0.00000 -0.04169 + 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 11 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 12 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 13 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 14 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 15 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 16 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 17 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 18 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 19 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 20 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 21 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 22 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 23 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 24 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 25 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 26 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 27 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 28 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 29 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 30 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 31 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 32 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 33 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 34 -0.00386 0.00001 0.03612 0.04013 0.00002 -0.05924 + 35 -0.00000 0.04172 -0.00002 -0.00004 -0.06957 -0.00005 + 36 -0.00257 0.00002 -0.07222 0.00000 0.00006 -0.03948 + 37 -0.00000 -0.07220 -0.00004 0.00002 -0.04020 -0.00003 + 38 -0.00223 -0.00004 0.02082 -0.06961 0.00004 -0.03415 + 39 0.01020 -0.00014 -0.62097 -0.71477 -0.00029 1.07215 + 40 0.00001 -0.71716 0.00034 0.00072 1.23915 0.00091 + 41 0.00680 -0.00033 1.24148 -0.00000 -0.00106 0.71451 + 42 0.00001 1.24126 0.00064 -0.00029 0.71594 0.00053 + 43 0.00588 0.00063 -0.35800 1.23982 -0.00072 0.61811 + 44 -0.02986 0.00010 0.46628 0.54019 0.00022 -0.81096 + 45 -0.00003 0.53851 -0.00025 -0.00055 -0.93649 -0.00069 + 46 -0.01990 0.00025 -0.93223 0.00000 0.00080 -0.54045 + 47 -0.00001 -0.93206 -0.00048 0.00022 -0.54108 -0.00040 + 48 -0.01721 -0.00047 0.26882 -0.93700 0.00055 -0.46753 + 49 0.00026 -0.00000 -0.00842 -0.00985 -0.00000 0.01482 + 50 0.00000 -0.00972 0.00000 0.00001 0.01707 0.00001 + 51 0.00017 -0.00000 0.01683 -0.00000 -0.00001 0.00988 + 52 0.00000 0.01683 0.00001 -0.00000 0.00986 0.00001 + 53 0.00015 0.00001 -0.00485 0.01708 -0.00001 0.00855 + 54 -0.00004 0.00000 0.00080 0.00093 0.00000 -0.00140 + 55 -0.00000 0.00092 -0.00000 -0.00000 -0.00161 -0.00000 + 56 -0.00003 0.00000 -0.00160 0.00000 0.00000 -0.00093 + 57 -0.00000 -0.00160 -0.00000 0.00000 -0.00093 -0.00000 + 58 -0.00003 -0.00000 0.00046 -0.00161 0.00000 -0.00081 + 59 0.00983 -0.00003 -0.15653 -0.18033 -0.00007 0.27012 + 60 0.00001 -0.18078 0.00008 0.00018 0.31262 0.00023 + 61 0.00655 -0.00008 0.31295 -0.00000 -0.00027 0.18001 + 62 0.00000 0.31290 0.00016 -0.00007 0.18062 0.00013 + 63 0.00566 0.00016 -0.09024 0.31279 -0.00018 0.15572 + 64 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 65 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 66 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 67 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 68 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 69 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 70 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 71 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 72 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 73 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 74 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 75 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 76 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 77 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 78 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 79 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 80 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 81 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 82 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 83 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 84 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 85 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 86 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 87 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 88 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 89 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 90 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 91 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 92 -0.12766 0.00001 -0.00742 0.00869 -0.00001 0.01306 + 93 0.00000 -0.01213 -0.00000 0.00002 -0.00001 -0.00000 + 94 -0.09661 -0.00001 0.00562 -0.00327 -0.00002 0.00988 + 95 -0.00017 -0.00229 0.00001 0.00001 0.01204 0.00002 + 96 -0.07481 -0.00000 0.00725 -0.00000 -0.00002 0.00765 + 97 -0.00010 0.00397 0.00001 -0.00000 0.00696 0.00001 + 98 -0.05570 0.00001 0.00324 0.00568 -0.00001 0.00570 + 99 -0.00018 -0.00001 -0.00000 0.00000 0.01226 0.00002 + 100 0.07392 0.00001 0.00430 0.01501 -0.00000 -0.00756 + 101 0.70876 -0.00000 0.00502 -0.00631 0.00001 -0.00978 + 102 -0.00000 0.00821 0.00000 -0.00001 0.00001 0.00000 + 103 0.53636 0.00001 -0.00380 0.00238 0.00001 -0.00740 + 104 0.00097 0.00155 -0.00001 -0.00001 -0.00874 -0.00001 + 105 0.41531 0.00000 -0.00491 0.00000 0.00001 -0.00573 + 106 0.00056 -0.00269 -0.00001 0.00000 -0.00505 -0.00001 + 107 0.30922 -0.00001 -0.00219 -0.00412 0.00001 -0.00427 + 108 0.00099 0.00001 0.00000 -0.00000 -0.00890 -0.00001 + 109 -0.41039 -0.00000 -0.00291 -0.01090 0.00000 0.00566 + + 49 50 51 52 53 54 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 2 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 3 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 4 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 5 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 6 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 7 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 8 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 9 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00472 + 11 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00273 + 12 0.00000 -0.00000 -0.00000 -0.00000 -0.00545 0.00000 + 13 0.00000 0.00000 -0.00000 0.00000 -0.00001 0.03512 + 14 -0.00000 -0.00000 0.00000 -0.00000 0.00002 0.02029 + 15 -0.00000 0.00000 0.00000 0.00000 0.04056 -0.00000 + 16 0.00000 0.00000 0.00000 -0.00000 0.00001 -0.06077 + 17 -0.00000 -0.00000 -0.00000 -0.00000 -0.00003 -0.03511 + 18 -0.00000 0.00000 -0.00000 0.00000 -0.07019 0.00000 + 19 -0.00000 -0.00000 -0.00000 -0.00000 -0.00001 0.03432 + 20 0.00000 0.00000 0.00000 0.00000 0.00002 0.01983 + 21 0.00000 -0.00000 0.00000 -0.00000 0.03964 -0.00000 + 22 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00306 + 23 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00177 + 24 -0.00000 0.00000 0.00000 0.00000 0.00353 -0.00000 + 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00017 + 26 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00010 + 27 0.00000 -0.00000 -0.00000 -0.00000 -0.00020 0.00000 + 28 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00014 + 29 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00008 + 30 -0.00000 0.00000 0.00000 0.00000 0.00016 -0.00000 + 31 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00981 + 32 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00567 + 33 -0.00000 0.00000 -0.00000 0.00000 -0.01133 0.00000 + 34 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 35 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 36 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 37 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 38 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 39 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 40 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 41 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 42 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 43 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 44 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 45 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 46 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 47 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 48 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 49 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 50 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 51 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 53 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 54 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 55 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 56 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 57 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 58 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 59 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 60 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 61 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 62 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 63 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 64 -0.00007 -0.02801 -0.00006 -0.00007 -0.00001 -0.10916 + 65 0.05945 -0.00011 0.05623 0.00001 -0.07722 -0.00003 + 66 0.00009 0.05428 -0.00005 -0.07707 -0.00012 -0.01410 + 67 -0.08859 0.00021 0.00000 0.00009 -0.06904 0.00000 + 68 -0.00025 -0.09395 0.00006 -0.04453 -0.00006 0.02440 + 69 0.03427 -0.00013 -0.09754 0.00003 -0.04452 0.00007 + 70 0.00004 -0.00003 0.00001 0.06895 -0.00005 -0.00010 + 71 0.00079 0.33128 0.00069 0.00077 0.00006 1.28216 + 72 -0.70301 0.00134 -0.66176 -0.00014 0.90695 0.00040 + 73 -0.00106 -0.64188 0.00059 0.90698 0.00135 0.16562 + 74 1.04761 -0.00251 -0.00000 -0.00109 0.81091 -0.00004 + 75 0.00293 1.11095 -0.00069 0.52403 0.00076 -0.28665 + 76 -0.40529 0.00157 1.14787 -0.00032 0.52287 -0.00080 + 77 -0.00042 0.00031 -0.00013 -0.81138 0.00055 0.00121 + 78 0.00000 0.00007 0.00000 0.00000 0.00000 0.00027 + 79 -0.00015 0.00000 -0.00014 -0.00000 0.00019 0.00000 + 80 -0.00000 -0.00013 0.00000 0.00019 0.00000 0.00004 + 81 0.00022 -0.00000 -0.00000 -0.00000 0.00017 -0.00000 + 82 0.00000 0.00023 -0.00000 0.00011 0.00000 -0.00006 + 83 -0.00009 0.00000 0.00024 -0.00000 0.00011 -0.00000 + 84 -0.00000 0.00000 -0.00000 -0.00017 0.00000 0.00000 + 85 -0.00039 -0.16114 -0.00034 -0.00037 -0.00003 -0.61934 + 86 0.34194 -0.00065 0.32055 0.00007 -0.43810 -0.00019 + 87 0.00052 0.31221 -0.00029 -0.43933 -0.00065 -0.08000 + 88 -0.50955 0.00122 0.00000 0.00053 -0.39171 0.00002 + 89 -0.00143 -0.54036 0.00033 -0.25383 -0.00037 0.13846 + 90 0.19713 -0.00076 -0.55602 0.00016 -0.25257 0.00039 + 91 0.00021 -0.00015 0.00006 0.39302 -0.00026 -0.00058 + 92 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 93 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 94 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 95 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 96 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 97 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 98 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 99 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 100 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 101 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 102 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 103 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 104 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 105 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 106 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 107 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 108 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 109 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + + 55 56 57 58 59 60 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 2 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 3 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 4 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 5 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 6 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 7 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 8 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 9 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 10 0.00329 -0.00130 -1.62821 0.93745 -0.00000 0.00000 + 11 -0.00570 -0.00168 -0.94073 -1.62253 0.00000 0.00000 + 12 0.00000 -1.88043 0.00197 0.00080 0.00000 0.00000 + 13 -0.02520 0.00145 1.80582 -1.04844 0.00000 -0.00000 + 14 0.04362 0.00186 1.04335 1.81464 -0.00000 -0.00000 + 15 -0.00002 2.08556 -0.00218 -0.00089 -0.00000 -0.00000 + 16 0.04434 -0.00092 -1.15031 0.66767 -0.00000 0.00000 + 17 -0.07675 -0.00119 -0.66461 -1.15560 0.00000 0.00000 + 18 0.00004 -1.32851 0.00139 0.00057 0.00000 0.00000 + 19 -0.02492 0.00040 0.50546 -0.29251 0.00000 -0.00000 + 20 0.04314 0.00052 0.29204 0.50628 -0.00000 -0.00000 + 21 -0.00002 0.58377 -0.00061 -0.00025 -0.00000 -0.00000 + 22 -0.00219 0.00027 0.33636 -0.19253 0.00000 -0.00000 + 23 0.00380 0.00035 0.19434 0.33323 -0.00000 -0.00000 + 24 -0.00000 0.38846 -0.00041 -0.00016 -0.00000 -0.00000 + 25 0.00013 0.00000 0.00275 -0.00164 -0.00000 -0.00000 + 26 -0.00022 0.00000 0.00159 0.00284 0.00000 -0.00000 + 27 0.00000 0.00317 -0.00000 -0.00000 -0.00000 0.00000 + 28 -0.00010 0.00001 0.01337 -0.00767 0.00000 -0.00000 + 29 0.00017 0.00001 0.00773 0.01328 -0.00000 -0.00000 + 30 -0.00000 0.01544 -0.00002 -0.00001 -0.00000 -0.00000 + 31 0.00712 -0.00012 -0.14909 0.08614 -0.00000 0.00000 + 32 -0.01232 -0.00015 -0.08614 -0.14908 -0.00000 0.00000 + 33 0.00001 -0.17218 0.00018 0.00007 0.00000 0.00000 + 34 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 35 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 36 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 37 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 38 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 39 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 40 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 41 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 42 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 43 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 45 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 46 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 47 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 48 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 49 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 50 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 51 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 52 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 53 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 54 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 55 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 56 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 57 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 58 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 59 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 60 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 61 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 62 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 63 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 64 0.00008 0.00002 0.01939 -0.00002 0.00000 -0.00000 + 65 0.00008 0.01372 -0.00001 -0.00002 -0.00000 0.00000 + 66 -0.05979 0.00002 0.00251 0.01352 0.00000 0.00000 + 67 0.00007 0.01227 -0.00001 -0.00002 0.00000 0.00000 + 68 -0.03454 0.00001 -0.00434 0.00781 -0.00000 -0.00000 + 69 0.00005 0.00791 -0.00002 -0.00001 -0.00000 -0.00000 + 70 -0.08915 0.00001 0.00002 0.02016 -0.00000 0.00000 + 71 -0.00099 -0.00002 -0.01525 0.00001 -0.00000 0.00000 + 72 -0.00095 -0.01079 0.00001 0.00001 0.00000 -0.00000 + 73 0.70191 -0.00002 -0.00197 -0.01054 -0.00000 -0.00000 + 74 -0.00085 -0.00965 0.00001 0.00001 -0.00000 0.00000 + 75 0.40554 -0.00001 0.00341 -0.00609 0.00000 0.00000 + 76 -0.00055 -0.00622 0.00002 0.00001 0.00000 0.00000 + 77 1.04654 -0.00001 -0.00001 -0.01571 0.00000 -0.00000 + 78 -0.00000 -0.00000 -0.00009 0.00000 -0.00000 -0.00000 + 79 -0.00000 -0.00007 0.00000 0.00000 0.00000 0.00000 + 80 0.00015 -0.00000 -0.00001 -0.00006 0.00000 -0.00000 + 81 -0.00000 -0.00006 0.00000 0.00000 -0.00000 -0.00000 + 82 0.00009 -0.00000 0.00002 -0.00004 0.00000 0.00000 + 83 -0.00000 -0.00004 0.00000 0.00000 -0.00000 -0.00000 + 84 0.00023 -0.00000 -0.00000 -0.00009 -0.00000 -0.00000 + 85 0.00048 0.00001 0.00682 -0.00001 0.00000 -0.00000 + 86 0.00046 0.00482 -0.00000 -0.00001 -0.00000 0.00000 + 87 -0.33873 0.00001 0.00088 0.00467 -0.00000 0.00000 + 88 0.00041 0.00431 -0.00000 -0.00001 0.00000 -0.00000 + 89 -0.19571 0.00000 -0.00152 0.00270 -0.00000 -0.00000 + 90 0.00026 0.00278 -0.00001 -0.00000 -0.00000 -0.00000 + 91 -0.50503 0.00000 0.00001 0.00696 -0.00000 0.00000 + 92 -0.00000 -0.00000 0.00000 -0.00000 -0.00017 0.13410 + 93 -0.00000 0.00000 -0.00000 0.00000 0.43830 0.00012 + 94 -0.00000 -0.00000 -0.00000 -0.00000 -0.00015 -0.71039 + 95 0.00000 -0.00000 0.00000 -0.00000 -0.58013 0.00027 + 96 -0.00000 0.00000 0.00000 0.00000 -0.00025 0.91677 + 97 0.00000 0.00000 -0.00000 0.00000 1.00409 0.00052 + 98 0.00000 -0.00000 -0.00000 0.00000 0.00072 -0.40955 + 99 -0.00000 -0.00000 0.00000 0.00000 0.00041 -0.00056 + 100 0.00000 -0.00000 0.00000 0.00000 -0.00021 -0.07765 + 101 0.00000 0.00000 -0.00000 -0.00000 0.00008 -0.06412 + 102 0.00000 -0.00000 0.00000 -0.00000 -0.20956 -0.00006 + 103 0.00000 0.00000 0.00000 0.00000 0.00007 0.33966 + 104 -0.00000 -0.00000 -0.00000 0.00000 0.27738 -0.00013 + 105 0.00000 -0.00000 -0.00000 -0.00000 0.00012 -0.43834 + 106 -0.00000 -0.00000 0.00000 -0.00000 -0.48009 -0.00025 + 107 0.00000 0.00000 0.00000 -0.00000 -0.00034 0.19582 + 108 0.00000 0.00000 -0.00000 -0.00000 -0.00020 0.00027 + 109 -0.00000 0.00000 -0.00000 -0.00000 0.00010 0.03713 + + 61 62 63 64 65 66 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 2 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 3 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 4 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 5 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 6 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 7 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 8 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 9 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 10 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 11 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 12 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 13 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 14 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 15 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 16 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 17 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 18 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 19 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 21 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 22 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 23 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 24 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 25 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 26 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 27 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 28 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 29 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 30 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 31 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 32 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 33 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 34 -0.00000 -0.00000 -0.00347 -0.00000 0.00487 0.00000 + 35 0.00000 -0.00000 0.00000 -0.00400 -0.00001 -0.00844 + 36 0.00000 0.00000 0.00693 -0.00000 0.00000 0.00001 + 37 0.00000 -0.00000 0.00000 0.00693 0.00000 -0.00488 + 38 0.00000 0.00000 -0.00200 0.00000 -0.00845 0.00001 + 39 0.00000 -0.00000 -0.00291 -0.00000 0.00540 0.00000 + 40 -0.00000 0.00000 0.00000 -0.00336 -0.00001 -0.00937 + 41 -0.00000 -0.00000 0.00581 -0.00000 0.00000 0.00001 + 42 -0.00000 0.00000 0.00000 0.00581 0.00000 -0.00541 + 43 -0.00000 -0.00000 -0.00168 0.00000 -0.00937 0.00001 + 44 -0.00000 0.00000 0.00203 0.00000 -0.00362 -0.00000 + 45 0.00000 -0.00000 -0.00000 0.00235 0.00001 0.00627 + 46 0.00000 0.00000 -0.00406 0.00000 -0.00000 -0.00001 + 47 0.00000 -0.00000 -0.00000 -0.00406 -0.00000 0.00362 + 48 0.00000 0.00000 0.00117 -0.00000 0.00627 -0.00001 + 49 0.00000 0.00000 -0.00010 -0.00000 0.00018 0.00000 + 50 -0.00000 0.00000 0.00000 -0.00011 -0.00000 -0.00031 + 51 -0.00000 -0.00000 0.00019 -0.00000 0.00000 0.00000 + 52 -0.00000 0.00000 0.00000 0.00019 0.00000 -0.00018 + 53 -0.00000 -0.00000 -0.00006 0.00000 -0.00031 0.00000 + 54 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 55 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 56 0.00000 0.00000 0.00001 -0.00000 0.00000 0.00000 + 57 0.00000 -0.00000 0.00000 0.00001 0.00000 -0.00000 + 58 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 59 0.00000 0.00000 -0.00054 -0.00000 0.00097 0.00000 + 60 -0.00000 0.00000 0.00000 -0.00062 -0.00000 -0.00168 + 61 -0.00000 -0.00000 0.00107 -0.00000 0.00000 0.00000 + 62 -0.00000 0.00000 0.00000 0.00107 0.00000 -0.00097 + 63 -0.00000 -0.00000 -0.00031 0.00000 -0.00168 0.00000 + 64 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 65 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 66 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 67 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 68 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 69 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 70 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 71 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 72 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 73 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 74 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 75 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 76 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 77 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 78 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 79 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 80 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 81 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 82 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 83 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 84 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 85 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 86 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 87 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 88 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 89 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 90 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 91 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 92 -0.21958 -0.00203 0.70935 -0.00052 0.58078 -0.00081 + 93 0.00067 -0.00087 0.00027 1.15921 0.00105 -0.00077 + 94 -0.57907 -0.00407 -0.53680 0.00079 -0.21880 -0.00115 + 95 0.00552 -0.70986 -0.00124 0.21919 0.00072 0.80465 + 96 -0.00001 0.00111 -0.69276 0.00016 -0.00000 -0.00125 + 97 0.00198 -0.41014 -0.00084 -0.37937 -0.00004 0.46490 + 98 1.00444 0.00706 -0.30947 -0.00107 0.37952 -0.00099 + 99 -0.00654 0.92959 0.00000 0.00109 0.00053 0.81957 + 100 -0.37923 -0.00239 -0.41073 -0.00051 1.00303 -0.00041 + 101 0.10479 0.00097 -0.33808 0.00025 -0.27658 0.00038 + 102 -0.00032 0.00042 -0.00013 -0.55248 -0.00050 0.00037 + 103 0.27636 0.00194 0.25584 -0.00037 0.10420 0.00055 + 104 -0.00263 0.33877 0.00059 -0.10447 -0.00034 -0.38319 + 105 0.00000 -0.00053 0.33017 -0.00008 0.00000 0.00060 + 106 -0.00094 0.19574 0.00040 0.18081 0.00002 -0.22139 + 107 -0.47936 -0.00337 0.14750 0.00051 -0.18073 0.00047 + 108 0.00312 -0.44364 -0.00000 -0.00052 -0.00025 -0.39029 + 109 0.18098 0.00114 0.19576 0.00024 -0.47766 0.00019 + + 67 68 69 70 71 72 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00031 -0.00000 -0.00000 -0.00000 0.00000 -0.04656 + 2 -0.00038 0.00000 0.00000 -0.00000 -0.00000 -0.07947 + 3 0.00019 0.00000 0.00000 -0.00000 -0.00000 -0.04778 + 4 -0.00014 -0.00000 -0.00000 -0.00000 0.00000 0.05609 + 5 0.00006 0.00000 0.00000 0.00000 -0.00000 -0.03017 + 6 -0.00011 0.00000 0.00000 -0.00000 -0.00000 -0.02190 + 7 -0.00001 -0.00000 -0.00000 -0.00000 0.00000 0.00124 + 8 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00131 + 9 -0.00002 -0.00000 -0.00000 -0.00000 0.00000 0.00881 + 10 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 11 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 12 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 13 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 14 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 15 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 16 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 17 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 18 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 19 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 20 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 21 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 22 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 23 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 24 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 25 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 26 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 27 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 28 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 29 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 30 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 31 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 32 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 33 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 34 -0.00761 -0.00048 -0.60772 -0.70051 -0.00046 1.05213 + 35 -0.00001 -0.70186 0.00072 0.00041 1.21443 0.00090 + 36 -0.00507 0.00035 1.21499 -0.00000 -0.00104 0.70116 + 37 -0.00000 1.21477 -0.00005 -0.00046 0.70166 0.00052 + 38 -0.00439 0.00042 -0.35036 1.21509 -0.00041 0.60656 + 39 -0.00924 0.00040 0.51620 0.59672 0.00039 -0.89694 + 40 -0.00001 0.59616 -0.00061 -0.00035 -1.03450 -0.00076 + 41 -0.00616 -0.00030 -1.03202 0.00000 0.00088 -0.59774 + 42 -0.00000 -1.03184 0.00005 0.00039 -0.59770 -0.00044 + 43 -0.00533 -0.00035 0.29760 -1.03506 0.00035 -0.51710 + 44 0.00611 -0.00019 -0.24220 -0.27923 -0.00018 0.41931 + 45 0.00001 -0.27972 0.00029 0.00016 0.48408 0.00036 + 46 0.00407 0.00014 0.48423 -0.00000 -0.00041 0.27944 + 47 0.00000 0.48414 -0.00002 -0.00018 0.27969 0.00021 + 48 0.00352 0.00017 -0.13963 0.48435 -0.00016 0.24174 + 49 -0.00030 0.00001 0.00925 0.01028 0.00001 -0.01525 + 50 -0.00000 0.01069 -0.00001 -0.00001 -0.01783 -0.00001 + 51 -0.00020 -0.00001 -0.01850 0.00000 0.00002 -0.01016 + 52 -0.00000 -0.01850 0.00000 0.00001 -0.01030 -0.00001 + 53 -0.00017 -0.00001 0.00533 -0.01784 0.00001 -0.00879 + 54 -0.00000 -0.00000 -0.00322 -0.00369 -0.00000 0.00552 + 55 -0.00000 -0.00372 0.00000 0.00000 0.00639 0.00000 + 56 -0.00000 0.00000 0.00644 -0.00000 -0.00001 0.00368 + 57 -0.00000 0.00644 -0.00000 -0.00000 0.00369 0.00000 + 58 -0.00000 0.00000 -0.00186 0.00639 -0.00000 0.00318 + 59 -0.00164 0.00006 0.07614 0.08764 0.00006 -0.13153 + 60 -0.00000 0.08793 -0.00009 -0.00005 -0.15194 -0.00011 + 61 -0.00109 -0.00004 -0.15222 0.00000 0.00013 -0.08766 + 62 -0.00000 -0.15219 0.00001 0.00006 -0.08778 -0.00006 + 63 -0.00095 -0.00005 0.04389 -0.15202 0.00005 -0.07583 + 64 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 65 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 66 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 67 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 68 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 69 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 70 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 71 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 72 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 73 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 74 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 75 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 76 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 77 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 78 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 79 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 80 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 81 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 82 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 83 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 84 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 85 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 86 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 87 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 88 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 89 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 90 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 91 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 92 0.79293 0.00000 -0.00429 0.00431 -0.00000 0.00612 + 93 -0.00000 -0.00701 0.00000 0.00001 -0.00001 -0.00000 + 94 0.60005 -0.00000 0.00325 -0.00162 -0.00001 0.00463 + 95 0.00108 -0.00133 0.00001 0.00000 0.00596 0.00001 + 96 0.46463 0.00000 0.00419 -0.00000 -0.00001 0.00359 + 97 0.00063 0.00230 0.00000 -0.00000 0.00345 0.00000 + 98 0.34594 0.00001 0.00187 0.00281 -0.00001 0.00267 + 99 0.00111 -0.00001 0.00000 0.00000 0.00608 0.00001 + 100 -0.45913 0.00000 0.00249 0.00743 0.00000 -0.00355 + 101 -0.37750 -0.00000 0.00120 -0.00109 0.00000 -0.00149 + 102 0.00000 0.00196 -0.00000 -0.00000 0.00000 0.00000 + 103 -0.28567 0.00000 -0.00091 0.00041 0.00000 -0.00112 + 104 -0.00052 0.00037 -0.00000 -0.00000 -0.00151 -0.00000 + 105 -0.22120 -0.00000 -0.00117 0.00000 0.00000 -0.00087 + 106 -0.00030 -0.00064 -0.00000 0.00000 -0.00087 -0.00000 + 107 -0.16469 -0.00000 -0.00052 -0.00071 0.00000 -0.00065 + 108 -0.00053 0.00000 -0.00000 -0.00000 -0.00154 -0.00000 + 109 0.21858 -0.00000 -0.00069 -0.00188 -0.00000 0.00086 + + 73 74 75 76 77 78 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 2 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 3 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 4 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 7 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 8 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 9 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 10 0.00000 0.00000 -0.00000 0.00000 0.00000 0.02563 + 11 -0.00000 -0.00000 0.00000 -0.00000 0.00002 0.01481 + 12 -0.00000 0.00000 -0.00000 -0.00000 0.02960 -0.00001 + 13 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.03838 + 14 0.00000 0.00000 -0.00000 -0.00000 -0.00002 -0.02218 + 15 0.00000 -0.00000 0.00000 0.00000 -0.04433 0.00001 + 16 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.02691 + 17 0.00000 0.00000 -0.00000 0.00000 0.00002 0.01555 + 18 -0.00000 0.00000 -0.00000 -0.00000 0.03108 -0.00001 + 19 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.01158 + 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00001 -0.00669 + 21 0.00000 -0.00000 0.00000 0.00000 -0.01337 0.00000 + 22 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00656 + 23 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00379 + 24 -0.00000 0.00000 0.00000 -0.00000 -0.00758 0.00000 + 25 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00011 + 26 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00006 + 27 0.00000 -0.00000 -0.00000 0.00000 0.00012 -0.00000 + 28 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00027 + 29 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00016 + 30 -0.00000 0.00000 0.00000 -0.00000 -0.00032 0.00000 + 31 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00333 + 32 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00192 + 33 -0.00000 0.00000 -0.00000 -0.00000 0.00384 -0.00000 + 34 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 35 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 36 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 37 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 38 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 40 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 41 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 42 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 43 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 44 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 45 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 46 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 47 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 48 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 49 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 50 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 51 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 52 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 53 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 54 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 55 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 56 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 57 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 58 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 59 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 60 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 61 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 62 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 63 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 64 0.30848 0.00228 0.00064 0.00071 0.00037 1.19444 + 65 0.00451 -0.65462 -0.61626 -0.00030 0.84490 0.00015 + 66 -0.59769 -0.00397 0.00032 0.84462 0.00130 0.15429 + 67 -0.00721 0.97549 0.00000 -0.00102 0.75543 -0.00024 + 68 1.03448 0.00790 -0.00078 0.48799 0.00064 -0.26704 + 69 0.00335 -0.37739 1.06895 -0.00001 0.48710 -0.00087 + 70 0.00029 -0.00039 0.00009 -0.75559 0.00051 0.00113 + 71 -0.19440 -0.00144 -0.00041 -0.00045 -0.00023 -0.75147 + 72 -0.00285 0.41253 0.38799 0.00019 -0.53156 -0.00010 + 73 0.37666 0.00250 -0.00020 -0.53176 -0.00082 -0.09707 + 74 0.00454 -0.61474 -0.00000 0.00064 -0.47527 0.00015 + 75 -0.65191 -0.00498 0.00049 -0.30723 -0.00040 0.16800 + 76 -0.00211 0.23783 -0.67299 0.00001 -0.30645 0.00055 + 77 -0.00019 0.00025 -0.00005 0.47570 -0.00032 -0.00071 + 78 0.00017 0.00000 0.00000 0.00000 0.00000 0.00068 + 79 0.00000 -0.00035 -0.00034 -0.00000 0.00048 0.00000 + 80 -0.00032 -0.00000 0.00000 0.00047 0.00000 0.00009 + 81 -0.00000 0.00053 0.00000 -0.00000 0.00043 -0.00000 + 82 0.00056 0.00000 -0.00000 0.00027 0.00000 -0.00015 + 83 0.00000 -0.00020 0.00060 -0.00000 0.00028 -0.00000 + 84 0.00000 -0.00000 0.00000 -0.00042 0.00000 0.00000 + 85 0.07216 0.00053 0.00015 0.00017 0.00009 0.27803 + 86 0.00106 -0.15314 -0.14373 -0.00007 0.19667 0.00004 + 87 -0.13982 -0.00093 0.00007 0.19699 0.00030 0.03591 + 88 -0.00169 0.22821 0.00000 -0.00024 0.17584 -0.00005 + 89 0.24200 0.00185 -0.00018 0.11382 0.00015 -0.06216 + 90 0.00078 -0.08829 0.24931 -0.00000 0.11338 -0.00020 + 91 0.00007 -0.00009 0.00002 -0.17623 0.00012 0.00026 + 92 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 93 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 94 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 95 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 96 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 97 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 98 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 99 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 100 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 101 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 102 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 103 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 104 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 105 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 106 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 107 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 108 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 109 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + + 79 80 81 82 83 84 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 10.09208 -0.00000 -0.00000 -0.00000 0.00000 + 2 -0.00000 15.46534 -0.00000 0.00000 -0.00000 0.00000 + 3 0.00000 3.35148 0.00000 0.00000 -0.00000 -0.00000 + 4 -0.00000 -2.54555 -0.00000 -0.00000 0.00000 0.00000 + 5 0.00000 1.23157 0.00000 0.00000 -0.00000 -0.00000 + 6 -0.00000 4.12919 -0.00000 0.00000 -0.00000 -0.00000 + 7 0.00000 0.03176 0.00000 -0.00000 0.00000 0.00000 + 8 -0.00000 0.18693 -0.00000 0.00000 -0.00000 -0.00000 + 9 -0.00000 -0.35382 -0.00000 -0.00000 0.00000 0.00000 + 10 -0.01873 0.00000 -0.00114 -1.71383 0.99195 -0.00000 + 11 0.03241 -0.00000 -0.00163 -0.99020 -1.71685 0.00000 + 12 -0.00002 -0.00000 -1.97932 0.00181 0.00085 0.00000 + 13 0.02796 -0.00000 0.00065 0.97524 -0.56470 0.00000 + 14 -0.04840 0.00000 0.00093 0.56346 0.97738 -0.00000 + 15 0.00002 -0.00000 1.12631 -0.00103 -0.00048 -0.00000 + 16 -0.01951 0.00000 -0.00035 -0.51793 0.29961 -0.00000 + 17 0.03377 -0.00000 -0.00049 -0.29924 -0.51857 0.00000 + 18 -0.00002 0.00000 -0.59816 0.00055 0.00026 0.00000 + 19 0.00838 -0.00000 0.00015 0.22573 -0.13046 0.00000 + 20 -0.01450 0.00000 0.00022 0.13042 0.22579 -0.00000 + 21 0.00001 -0.00000 0.26070 -0.00024 -0.00011 -0.00000 + 22 0.00475 -0.00000 0.00114 1.71737 -0.99213 0.00000 + 23 -0.00822 0.00000 0.00164 0.99224 1.71717 -0.00000 + 24 0.00000 -0.00000 1.98341 -0.00181 -0.00085 -0.00000 + 25 -0.00007 -0.00000 -0.00007 -0.09904 0.05676 -0.00000 + 26 0.00013 -0.00000 -0.00009 -0.05722 -0.09823 0.00000 + 27 -0.00000 0.00000 -0.11438 0.00010 0.00005 0.00000 + 28 0.00020 -0.00000 0.00004 0.05972 -0.03446 0.00000 + 29 -0.00034 0.00000 0.00006 0.03450 0.05964 0.00000 + 30 0.00000 -0.00000 0.06897 -0.00006 -0.00003 -0.00000 + 31 -0.00241 0.00000 -0.00005 -0.06791 0.03923 -0.00000 + 32 0.00417 -0.00000 -0.00006 -0.03924 -0.06789 0.00000 + 33 -0.00000 0.00000 -0.07843 0.00007 0.00003 0.00000 + 34 0.00000 0.00402 -0.00000 -0.00000 0.00000 0.28604 + 35 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00065 + 36 0.00000 0.00268 -0.00000 0.00000 0.00000 -0.57187 + 37 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00169 + 38 0.00000 0.00232 0.00000 0.00000 0.00000 0.16490 + 39 -0.00000 -0.00660 -0.00000 0.00000 0.00000 -0.17478 + 40 -0.00000 -0.00001 0.00000 0.00000 -0.00000 -0.00040 + 41 -0.00000 -0.00440 -0.00000 -0.00000 -0.00000 0.34943 + 42 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00103 + 43 -0.00000 -0.00381 0.00000 -0.00000 -0.00000 -0.10076 + 44 0.00000 0.00458 0.00000 -0.00000 -0.00000 0.07983 + 45 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00018 + 46 0.00000 0.00305 0.00000 -0.00000 0.00000 -0.15960 + 47 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00047 + 48 0.00000 0.00264 0.00000 -0.00000 0.00000 0.04602 + 49 -0.00000 -0.00143 0.00000 -0.00000 -0.00000 -0.49968 + 50 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00114 + 51 -0.00000 -0.00095 0.00000 -0.00000 -0.00000 0.99899 + 52 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00296 + 53 -0.00000 -0.00082 -0.00000 0.00000 -0.00000 -0.28807 + 54 0.00000 0.00026 0.00000 -0.00000 -0.00000 0.03121 + 55 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00007 + 56 0.00000 0.00017 -0.00000 -0.00000 -0.00000 -0.06239 + 57 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00018 + 58 0.00000 0.00015 0.00000 0.00000 -0.00000 0.01799 + 59 -0.00000 -0.00165 -0.00000 0.00000 0.00000 -0.02596 + 60 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00006 + 61 -0.00000 -0.00110 0.00000 -0.00000 -0.00000 0.05189 + 62 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00015 + 63 -0.00000 -0.00095 -0.00000 0.00000 -0.00000 -0.01496 + 64 -0.00092 0.00000 0.00000 0.00054 -0.00000 0.00000 + 65 -0.00088 -0.00000 0.00038 -0.00000 -0.00000 0.00000 + 66 0.65403 0.00000 0.00000 0.00007 0.00037 0.00000 + 67 -0.00079 0.00000 0.00034 -0.00000 -0.00000 -0.00000 + 68 0.37788 -0.00000 0.00000 -0.00012 0.00021 -0.00000 + 69 -0.00051 -0.00000 0.00022 -0.00000 -0.00000 -0.00000 + 70 0.97515 0.00000 0.00000 0.00000 0.00055 0.00000 + 71 0.00058 -0.00000 -0.00000 -0.00072 0.00000 -0.00000 + 72 0.00055 0.00000 -0.00051 0.00000 0.00000 -0.00000 + 73 -0.41137 -0.00000 -0.00000 -0.00009 -0.00048 -0.00000 + 74 0.00050 -0.00000 -0.00046 0.00000 0.00000 0.00000 + 75 -0.23768 0.00000 -0.00000 0.00016 -0.00028 0.00000 + 76 0.00032 0.00000 -0.00029 0.00000 0.00000 0.00000 + 77 -0.61335 -0.00000 -0.00000 -0.00000 -0.00072 -0.00000 + 78 -0.00000 0.00000 0.00000 0.00022 -0.00000 0.00000 + 79 -0.00000 0.00000 0.00016 -0.00000 -0.00000 -0.00000 + 80 0.00037 0.00000 0.00000 0.00003 0.00015 -0.00000 + 81 -0.00000 -0.00000 0.00014 -0.00000 -0.00000 -0.00000 + 82 0.00022 0.00000 0.00000 -0.00005 0.00008 -0.00000 + 83 -0.00000 -0.00000 0.00009 -0.00000 -0.00000 -0.00000 + 84 0.00056 -0.00000 0.00000 0.00000 0.00022 0.00000 + 85 -0.00021 0.00000 0.00000 0.00039 -0.00000 0.00000 + 86 -0.00021 -0.00000 0.00027 -0.00000 -0.00000 0.00000 + 87 0.15213 0.00000 0.00000 0.00005 0.00026 -0.00000 + 88 -0.00018 0.00000 0.00024 -0.00000 -0.00000 -0.00000 + 89 0.08790 -0.00000 0.00000 -0.00009 0.00015 -0.00000 + 90 -0.00012 -0.00000 0.00016 -0.00000 -0.00000 -0.00000 + 91 0.22683 -0.00000 0.00000 0.00000 0.00038 0.00000 + 92 0.00000 0.00001 -0.00000 0.00000 -0.00000 -0.00011 + 93 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 94 -0.00000 0.00001 0.00000 0.00000 -0.00000 0.00008 + 95 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 96 -0.00000 0.00001 0.00000 0.00000 0.00000 0.00011 + 97 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 98 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00005 + 99 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 100 -0.00000 -0.00001 0.00000 0.00000 0.00000 0.00006 + 101 -0.00000 0.00001 0.00000 -0.00000 0.00000 0.00010 + 102 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 103 0.00000 0.00001 -0.00000 0.00000 -0.00000 -0.00007 + 104 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 105 0.00000 0.00001 -0.00000 -0.00000 -0.00000 -0.00010 + 106 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 107 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00004 + 108 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 109 0.00000 -0.00001 0.00000 -0.00000 -0.00000 -0.00006 + + 85 86 87 88 89 90 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 -0.00000 0.00000 0.02620 4.18015 0.00000 + 2 -0.00000 0.00000 0.00000 0.05218 10.10744 0.00000 + 3 0.00000 0.00000 0.00000 0.01234 1.69454 0.00000 + 4 -0.00000 -0.00000 -0.00000 -0.00964 -1.18381 -0.00000 + 5 0.00000 0.00000 0.00000 0.00480 0.57096 0.00000 + 6 0.00000 0.00000 0.00000 0.02529 6.79314 0.00000 + 7 -0.00000 -0.00000 -0.00000 -0.00537 -1.86092 -0.00000 + 8 0.00000 0.00000 0.00000 0.00208 0.51041 0.00000 + 9 -0.00000 -0.00000 -0.00000 -0.00139 -0.16605 -0.00000 + 10 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00502 + 11 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00341 + 12 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -1.03295 + 13 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00252 + 14 0.00000 0.00000 0.00000 0.00000 0.00000 0.00171 + 15 0.00000 0.00000 0.00000 0.00000 0.00000 0.51758 + 16 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00133 + 17 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00091 + 18 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.27452 + 19 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00059 + 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00040 + 21 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.12148 + 22 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00877 + 23 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00596 + 24 -0.00000 0.00000 0.00000 -0.00000 0.00000 1.80393 + 25 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00829 + 26 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00563 + 27 0.00000 0.00000 -0.00000 0.00000 0.00000 -1.70488 + 28 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00084 + 29 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00057 + 30 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.17272 + 31 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00018 + 32 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00012 + 33 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.03693 + 34 -0.00064 0.00018 0.33028 -0.49636 0.00197 -0.00000 + 35 0.33035 -0.57258 -0.00025 -0.00042 0.00000 0.00000 + 36 0.00155 0.00049 0.00000 -0.33079 0.00132 0.00000 + 37 -0.57176 -0.33082 0.00018 -0.00024 0.00000 -0.00000 + 38 -0.00069 0.00025 -0.57289 -0.28616 0.00114 -0.00000 + 39 0.00039 -0.00011 -0.20174 0.30314 -0.00157 0.00000 + 40 -0.20185 0.34973 0.00015 0.00026 -0.00000 -0.00000 + 41 -0.00095 -0.00030 -0.00000 0.20202 -0.00105 -0.00000 + 42 0.34936 0.20207 -0.00011 0.00015 -0.00000 0.00000 + 43 0.00042 -0.00015 0.34992 0.17476 -0.00091 0.00000 + 44 -0.00018 0.00005 0.09209 -0.13834 0.00083 0.00000 + 45 0.09219 -0.15964 -0.00007 -0.00012 0.00000 0.00000 + 46 0.00043 0.00014 0.00000 -0.09220 0.00056 0.00000 + 47 -0.15957 -0.09224 0.00005 -0.00007 0.00000 0.00000 + 48 -0.00019 0.00007 -0.15973 -0.07976 0.00048 -0.00000 + 49 0.00111 -0.00032 -0.57611 0.86540 -0.00230 -0.00000 + 50 -0.57708 0.99875 0.00043 0.00074 -0.00000 0.00000 + 51 -0.00271 -0.00085 -0.00000 0.57672 -0.00154 -0.00000 + 52 0.99880 0.57705 -0.00032 0.00043 -0.00000 0.00000 + 53 0.00121 -0.00043 0.99930 0.49891 -0.00133 -0.00000 + 54 -0.00007 0.00002 0.03591 -0.05391 0.00009 0.00000 + 55 0.03604 -0.06226 -0.00003 -0.00005 0.00000 0.00000 + 56 0.00017 0.00005 0.00000 -0.03593 0.00006 0.00000 + 57 -0.06238 -0.03597 0.00002 -0.00003 0.00000 -0.00000 + 58 -0.00008 0.00003 -0.06229 -0.03108 0.00005 0.00000 + 59 0.00006 -0.00002 -0.02993 0.04495 -0.00029 -0.00000 + 60 -0.02998 0.05188 0.00002 0.00004 -0.00000 0.00000 + 61 -0.00014 -0.00004 -0.00000 0.02996 -0.00019 -0.00000 + 62 0.05188 0.02998 -0.00002 0.00002 -0.00000 -0.00000 + 63 0.00006 -0.00002 0.05191 0.02592 -0.00017 0.00000 + 64 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 65 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00005 + 66 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 67 0.00000 0.00000 0.00000 0.00000 0.00000 0.00004 + 68 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 69 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00003 + 70 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 71 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 72 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00005 + 73 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 74 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00005 + 75 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 76 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00003 + 77 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 78 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 79 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 80 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 81 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 82 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 83 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 84 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 85 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 86 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00003 + 87 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 88 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00003 + 89 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 90 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00002 + 91 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 92 0.00000 -0.00000 0.00013 0.00019 -0.00000 -0.00000 + 93 -0.00018 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 94 -0.00000 -0.00000 -0.00005 0.00014 -0.00000 -0.00000 + 95 -0.00003 0.00018 0.00000 0.00000 -0.00000 0.00000 + 96 -0.00000 -0.00000 -0.00000 0.00011 -0.00000 0.00000 + 97 0.00006 0.00010 -0.00000 0.00000 -0.00000 -0.00000 + 98 0.00000 -0.00000 0.00008 0.00008 -0.00000 -0.00000 + 99 -0.00000 0.00018 0.00000 0.00000 -0.00000 0.00000 + 100 -0.00000 0.00000 0.00022 -0.00011 0.00000 0.00000 + 101 -0.00000 0.00000 -0.00011 -0.00017 0.00000 0.00000 + 102 0.00016 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 103 0.00000 0.00000 0.00004 -0.00013 0.00000 0.00000 + 104 0.00003 -0.00016 -0.00000 -0.00000 0.00000 -0.00000 + 105 0.00000 0.00000 0.00000 -0.00010 0.00000 0.00000 + 106 -0.00005 -0.00009 0.00000 -0.00000 0.00000 0.00000 + 107 -0.00000 0.00000 -0.00007 -0.00007 0.00000 0.00000 + 108 0.00000 -0.00016 -0.00000 -0.00000 0.00000 -0.00000 + 109 0.00000 -0.00000 -0.00019 0.00010 -0.00000 -0.00000 + + 91 92 93 94 95 96 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 2 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 3 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 4 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 5 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 6 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 7 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 8 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 9 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 10 -0.89440 0.51720 -0.00000 0.00000 0.00000 -0.00000 + 11 -0.51675 -0.89517 0.00000 -0.00000 -0.00000 0.00000 + 12 0.00605 0.00044 -0.00000 -0.00000 -0.00000 -0.00000 + 13 0.44816 -0.25913 0.00000 -0.00000 -0.00000 0.00000 + 14 0.25893 0.44850 -0.00000 0.00000 0.00000 -0.00000 + 15 -0.00303 -0.00022 0.00000 0.00000 0.00000 0.00000 + 16 -0.23770 0.13740 -0.00000 0.00000 0.00000 0.00000 + 17 -0.13734 -0.23781 0.00000 -0.00000 -0.00000 -0.00000 + 18 0.00161 0.00012 -0.00000 -0.00000 -0.00000 -0.00000 + 19 0.10519 -0.06079 0.00000 -0.00000 -0.00000 -0.00000 + 20 0.06077 0.10521 -0.00000 0.00000 0.00000 0.00000 + 21 -0.00071 -0.00005 0.00000 0.00000 0.00000 0.00000 + 22 1.56197 -0.90293 0.00000 -0.00000 -0.00000 -0.00000 + 23 0.90245 1.56278 -0.00000 0.00000 0.00000 -0.00000 + 24 -0.01057 -0.00077 0.00000 0.00000 0.00000 0.00000 + 25 -1.47620 0.85287 -0.00000 0.00000 0.00000 0.00000 + 26 -0.85290 -1.47614 0.00000 -0.00000 -0.00000 0.00000 + 27 0.00999 0.00073 0.00000 0.00000 -0.00000 -0.00000 + 28 0.14955 -0.08635 -0.00000 0.00000 0.00000 -0.00000 + 29 0.08641 0.14945 0.00000 -0.00000 -0.00000 0.00000 + 30 -0.00101 -0.00007 -0.00000 -0.00000 0.00000 0.00000 + 31 -0.03197 0.01847 -0.00000 0.00000 0.00000 -0.00000 + 32 -0.01847 -0.03198 0.00000 -0.00000 -0.00000 -0.00000 + 33 0.00022 0.00002 -0.00000 0.00000 -0.00000 0.00000 + 34 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 35 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 36 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 37 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 38 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 39 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 40 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 41 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 42 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 43 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 44 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 45 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 46 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 47 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 48 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 49 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 50 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 51 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 52 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 53 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 54 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 55 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 56 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 57 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 58 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 59 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 60 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 61 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 62 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 63 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 64 0.00006 -0.00000 0.00005 -0.01034 -0.00002 -0.00002 + 65 -0.00000 -0.00000 0.02195 0.00012 0.00000 0.02067 + 66 0.00001 0.00004 -0.00012 0.02004 -0.02833 -0.00002 + 67 -0.00000 -0.00000 -0.03270 -0.00017 0.00003 0.00000 + 68 -0.00001 0.00003 0.00017 -0.03468 -0.01637 0.00002 + 69 -0.00000 -0.00000 0.01265 0.00005 0.00001 -0.03586 + 70 0.00000 0.00006 0.00001 -0.00001 0.02535 0.00000 + 71 -0.00007 0.00000 -0.00003 0.00630 0.00001 0.00001 + 72 0.00000 0.00000 -0.01337 -0.00008 -0.00000 -0.01260 + 73 -0.00001 -0.00005 0.00007 -0.01221 0.01726 0.00001 + 74 0.00000 0.00000 0.01993 0.00010 -0.00002 -0.00000 + 75 0.00002 -0.00003 -0.00010 0.02114 0.00997 -0.00001 + 76 0.00000 0.00000 -0.00771 -0.00003 -0.00001 0.02185 + 77 -0.00000 -0.00007 -0.00001 0.00001 -0.01544 -0.00000 + 78 -0.00000 0.00000 -0.00130 0.25013 0.00058 0.00052 + 79 0.00000 0.00000 -0.53080 -0.00302 -0.00011 -0.49973 + 80 -0.00000 -0.00000 0.00287 -0.48464 0.68490 0.00045 + 81 0.00000 0.00000 0.79099 0.00411 -0.00083 -0.00000 + 82 0.00000 -0.00000 -0.00415 0.83882 0.39571 -0.00052 + 83 0.00000 0.00000 -0.30602 -0.00114 -0.00024 0.86681 + 84 -0.00000 -0.00000 -0.00032 0.00023 -0.61270 -0.00010 + 85 0.00004 -0.00000 0.00001 -0.00254 -0.00001 -0.00001 + 86 -0.00000 -0.00000 0.00539 0.00003 0.00000 0.00507 + 87 0.00001 0.00003 -0.00003 0.00492 -0.00695 -0.00000 + 88 -0.00000 -0.00000 -0.00803 -0.00004 0.00001 0.00000 + 89 -0.00001 0.00002 0.00004 -0.00851 -0.00402 0.00001 + 90 -0.00000 -0.00000 0.00311 0.00001 0.00000 -0.00880 + 91 0.00000 0.00004 0.00000 -0.00000 0.00622 0.00000 + 92 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 93 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 94 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 95 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 96 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 97 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 98 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 99 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 100 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 101 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 102 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 103 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 104 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 105 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 106 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 107 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 108 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 109 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + + 97 98 99 100 101 102 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 2 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 3 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 4 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 5 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 6 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 7 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 8 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 9 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 10 0.00000 0.00022 -0.00016 -0.00000 -0.00000 -0.00000 + 11 0.00000 0.00013 0.00027 0.00000 0.00000 0.00000 + 12 0.00026 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 13 -0.00000 -0.00007 0.00005 0.00000 -0.00000 -0.00000 + 14 -0.00000 -0.00004 -0.00009 -0.00000 -0.00000 -0.00000 + 15 -0.00009 0.00000 0.00000 0.00000 0.00000 0.00000 + 16 0.00000 0.00004 -0.00003 0.00000 0.00000 0.00000 + 17 0.00000 0.00002 0.00005 0.00000 0.00000 0.00000 + 18 0.00004 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 19 -0.00000 -0.00002 0.00001 -0.00000 0.00000 0.00000 + 20 -0.00000 -0.00001 -0.00002 -0.00000 -0.00000 -0.00000 + 21 -0.00002 0.00000 0.00000 0.00000 0.00000 0.00000 + 22 -0.00000 -0.00039 0.00027 0.00000 0.00000 0.00000 + 23 -0.00000 -0.00022 -0.00047 -0.00000 -0.00000 -0.00000 + 24 -0.00045 0.00000 0.00000 0.00000 0.00000 -0.00000 + 25 0.00000 0.00008 -0.00005 -0.00000 -0.00000 -0.00000 + 26 0.00000 0.00004 0.00009 0.00000 0.00000 0.00000 + 27 0.00009 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 28 -0.00000 -0.00007 0.00005 -0.00000 0.00000 0.00000 + 29 -0.00000 -0.00004 -0.00008 -0.00000 -0.00000 0.00000 + 30 -0.00008 0.00000 0.00000 -0.00000 0.00000 0.00000 + 31 0.00000 0.00001 -0.00000 0.00000 -0.00000 -0.00000 + 32 0.00000 0.00000 0.00001 0.00000 -0.00000 -0.00000 + 33 0.00001 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 34 -0.00000 0.00000 -0.00000 -0.09583 -0.00007 -0.11054 + 35 0.00000 -0.00000 -0.00000 0.00010 -0.11067 -0.00108 + 36 -0.00000 -0.00000 -0.00000 0.19159 0.00004 0.00000 + 37 0.00000 0.00000 0.00000 0.00001 0.19155 -0.00073 + 38 -0.00000 0.00000 -0.00000 -0.05525 0.00007 0.19174 + 39 0.00000 -0.00000 0.00000 0.05799 0.00004 0.06688 + 40 -0.00000 0.00000 0.00000 -0.00006 0.06697 0.00065 + 41 0.00000 0.00000 0.00000 -0.11593 -0.00002 -0.00000 + 42 -0.00000 -0.00000 0.00000 -0.00001 -0.11591 0.00044 + 43 -0.00000 -0.00000 0.00000 0.03343 -0.00004 -0.11601 + 44 0.00000 0.00000 -0.00000 -0.02702 -0.00002 -0.03116 + 45 -0.00000 0.00000 -0.00000 0.00003 -0.03121 -0.00031 + 46 -0.00000 -0.00000 -0.00000 0.05403 0.00001 0.00000 + 47 0.00000 0.00000 0.00000 0.00000 0.05402 -0.00021 + 48 0.00000 -0.00000 0.00000 -0.01558 0.00002 0.05406 + 49 0.00000 -0.00000 0.00000 0.24793 0.00017 0.28594 + 50 -0.00000 0.00000 0.00000 -0.00027 0.28634 0.00280 + 51 0.00000 -0.00000 0.00000 -0.49569 -0.00010 -0.00000 + 52 -0.00000 -0.00000 0.00000 -0.00003 -0.49560 0.00190 + 53 0.00000 0.00000 0.00000 0.14294 -0.00018 -0.49599 + 54 0.00000 -0.00000 -0.00000 -0.50029 -0.00034 -0.57684 + 55 0.00000 0.00000 -0.00000 0.00054 -0.57779 -0.00565 + 56 0.00000 -0.00000 -0.00000 1.00021 0.00019 0.00001 + 57 -0.00000 0.00000 -0.00000 0.00005 1.00003 -0.00383 + 58 0.00000 -0.00000 0.00000 -0.28842 0.00037 1.00057 + 59 0.00000 -0.00000 0.00000 0.00891 0.00001 0.01028 + 60 0.00000 0.00000 0.00000 -0.00001 0.01029 0.00010 + 61 -0.00000 0.00000 0.00000 -0.01782 -0.00000 -0.00000 + 62 -0.00000 -0.00000 -0.00000 -0.00000 -0.01782 0.00007 + 63 -0.00000 0.00000 0.00000 0.00514 -0.00001 -0.01783 + 64 -0.00009 -0.04009 0.00003 -0.00000 -0.00000 -0.00000 + 65 -0.02836 0.00005 0.00003 -0.00000 0.00000 0.00000 + 66 -0.00005 -0.00518 -0.02196 -0.00000 -0.00000 -0.00000 + 67 -0.02536 0.00006 0.00003 0.00000 0.00000 -0.00000 + 68 -0.00000 0.00896 -0.01269 0.00000 -0.00000 0.00000 + 69 -0.01635 0.00006 0.00002 0.00000 0.00000 -0.00000 + 70 -0.00002 -0.00004 -0.03274 -0.00000 -0.00000 -0.00000 + 71 0.00006 0.02443 -0.00002 0.00000 0.00000 0.00000 + 72 0.01728 -0.00003 -0.00002 -0.00000 -0.00000 -0.00000 + 73 0.00003 0.00315 0.01338 0.00000 0.00000 0.00000 + 74 0.01545 -0.00004 -0.00002 -0.00000 -0.00000 0.00000 + 75 0.00000 -0.00546 0.00773 -0.00000 0.00000 -0.00000 + 76 0.00996 -0.00004 -0.00001 -0.00000 -0.00000 0.00000 + 77 0.00001 0.00002 0.01994 0.00000 0.00000 0.00000 + 78 0.00230 0.96877 -0.00075 -0.00000 -0.00000 -0.00000 + 79 0.68527 -0.00129 -0.00072 -0.00000 0.00000 0.00000 + 80 0.00131 0.12513 0.53052 0.00000 0.00000 0.00000 + 81 0.61270 -0.00145 -0.00064 0.00000 -0.00000 -0.00000 + 82 0.00007 -0.21658 0.30652 -0.00000 0.00000 -0.00000 + 83 0.39506 -0.00152 -0.00041 -0.00000 0.00000 0.00000 + 84 0.00042 0.00091 0.79100 -0.00000 -0.00000 0.00000 + 85 -0.00002 -0.00984 0.00001 0.00000 -0.00000 -0.00000 + 86 -0.00696 0.00001 0.00001 0.00000 0.00000 0.00000 + 87 -0.00001 -0.00127 -0.00539 0.00000 -0.00000 -0.00000 + 88 -0.00622 0.00001 0.00001 -0.00000 -0.00000 -0.00000 + 89 -0.00000 0.00220 -0.00311 0.00000 0.00000 0.00000 + 90 -0.00401 0.00002 0.00000 0.00000 0.00000 -0.00000 + 91 -0.00000 -0.00001 -0.00803 0.00000 -0.00000 -0.00000 + 92 -0.00000 0.00000 -0.00000 0.00001 -0.00000 -0.00001 + 93 0.00000 -0.00000 -0.00000 -0.00000 0.00001 -0.00000 + 94 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 95 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 96 -0.00000 0.00000 0.00000 -0.00001 -0.00000 -0.00000 + 97 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 98 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 99 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 100 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00001 + 101 0.00000 -0.00000 0.00000 -0.00001 0.00000 0.00001 + 102 -0.00000 0.00000 0.00000 0.00000 -0.00001 0.00000 + 103 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 104 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 105 0.00000 -0.00000 -0.00000 0.00001 0.00000 0.00000 + 106 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 107 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 108 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 109 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00001 + + 103 104 105 106 107 108 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 -0.00768 2.65525 0.00000 0.00000 -0.00000 + 2 -0.00000 -0.01662 5.71558 0.00000 0.00000 -0.00000 + 3 -0.00000 -0.00275 0.84704 0.00000 0.00000 -0.00000 + 4 0.00000 0.00199 -0.59358 -0.00000 -0.00000 0.00000 + 5 -0.00000 -0.00098 0.28885 -0.00000 0.00000 0.00000 + 6 -0.00000 -0.01204 4.39256 0.00000 0.00000 -0.00000 + 7 0.00000 0.00954 -3.72298 -0.00000 -0.00000 0.00000 + 8 -0.00000 -0.00709 2.66421 -0.00000 0.00000 -0.00000 + 9 0.00000 0.00029 -0.08454 -0.00000 -0.00000 -0.00000 + 10 -0.00000 0.00000 -0.00000 0.00094 -0.42237 0.24410 + 11 0.00000 -0.00000 -0.00000 0.00030 -0.24403 -0.42249 + 12 -0.00000 0.00000 0.00000 -0.48779 -0.00096 0.00021 + 13 0.00000 -0.00000 0.00000 -0.00047 0.21266 -0.12290 + 14 -0.00000 0.00000 -0.00000 -0.00015 0.12287 0.21272 + 15 0.00000 -0.00000 -0.00000 0.24560 0.00048 -0.00010 + 16 0.00000 -0.00000 -0.00000 0.00025 -0.11427 0.06604 + 17 -0.00000 0.00000 -0.00000 0.00008 -0.06602 -0.11429 + 18 -0.00000 0.00000 0.00000 -0.13198 -0.00026 0.00006 + 19 -0.00000 -0.00000 0.00000 -0.00011 0.05098 -0.02946 + 20 0.00000 -0.00000 0.00000 -0.00004 0.02945 0.05098 + 21 0.00000 -0.00000 -0.00000 0.05887 0.00012 -0.00003 + 22 0.00000 0.00000 -0.00000 -0.00183 0.82297 -0.47560 + 23 -0.00000 0.00000 0.00000 -0.00059 0.47549 0.82316 + 24 0.00000 -0.00000 -0.00000 0.95046 0.00187 -0.00041 + 25 -0.00000 -0.00000 0.00000 0.00302 -1.35953 0.78559 + 26 0.00000 -0.00000 -0.00000 0.00097 -0.78550 -1.35969 + 27 -0.00000 0.00000 0.00000 -1.57014 -0.00310 0.00067 + 28 -0.00000 0.00000 -0.00000 -0.00305 1.37638 -0.79524 + 29 0.00000 -0.00000 0.00000 -0.00098 0.79524 1.37640 + 30 -0.00000 -0.00000 -0.00000 1.58960 0.00313 -0.00068 + 31 0.00000 0.00000 -0.00000 0.00003 -0.01556 0.00899 + 32 -0.00000 0.00000 -0.00000 0.00001 -0.00899 -0.01556 + 33 -0.00000 0.00000 0.00000 -0.01797 -0.00004 0.00001 + 34 -0.00073 0.16607 0.00056 0.00000 -0.00000 0.00000 + 35 0.19163 0.00014 0.00000 0.00000 -0.00000 -0.00000 + 36 -0.00016 0.11068 0.00037 0.00000 -0.00000 0.00000 + 37 0.11072 0.00008 0.00000 0.00000 0.00000 0.00000 + 38 0.00108 0.09574 0.00032 -0.00000 -0.00000 -0.00000 + 39 0.00044 -0.10048 -0.00038 -0.00000 -0.00000 0.00000 + 40 -0.11595 -0.00009 -0.00000 -0.00000 0.00000 0.00000 + 41 0.00010 -0.06696 -0.00025 0.00000 -0.00000 -0.00000 + 42 -0.06699 -0.00005 -0.00000 -0.00000 0.00000 -0.00000 + 43 -0.00066 -0.05793 -0.00022 0.00000 0.00000 -0.00000 + 44 -0.00021 0.04682 0.00019 0.00000 0.00000 -0.00000 + 45 0.05403 0.00004 0.00000 0.00000 0.00000 -0.00000 + 46 -0.00005 0.03120 0.00013 -0.00000 0.00000 0.00000 + 47 0.03121 0.00002 0.00000 0.00000 -0.00000 0.00000 + 48 0.00031 0.02699 0.00011 -0.00000 0.00000 0.00000 + 49 0.00190 -0.42958 -0.00125 -0.00000 0.00000 -0.00000 + 50 -0.49572 -0.00037 -0.00000 -0.00000 0.00000 0.00000 + 51 0.00042 -0.28628 -0.00083 -0.00000 0.00000 -0.00000 + 52 -0.28641 -0.00021 -0.00000 -0.00000 -0.00000 -0.00000 + 53 -0.00280 -0.24766 -0.00072 0.00000 0.00000 0.00000 + 54 -0.00383 0.86653 0.00228 0.00000 -0.00000 0.00000 + 55 1.00002 0.00074 0.00000 0.00000 0.00000 -0.00000 + 56 -0.00085 0.57748 0.00152 0.00000 0.00000 0.00000 + 57 0.57778 0.00043 0.00000 -0.00000 0.00000 0.00000 + 58 0.00565 0.49957 0.00132 -0.00000 -0.00000 0.00000 + 59 0.00007 -0.01544 -0.00007 -0.00000 -0.00000 -0.00000 + 60 -0.01782 -0.00001 -0.00000 -0.00000 -0.00000 0.00000 + 61 0.00002 -0.01029 -0.00004 -0.00000 -0.00000 -0.00000 + 62 -0.01030 -0.00001 -0.00000 -0.00000 0.00000 0.00000 + 63 -0.00010 -0.00890 -0.00004 -0.00000 -0.00000 -0.00000 + 64 -0.00000 -0.00000 0.00000 -0.00000 0.00001 -0.00000 + 65 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 66 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 67 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 68 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 69 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 70 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00001 + 71 0.00000 0.00000 -0.00000 0.00000 -0.00001 0.00000 + 72 -0.00000 -0.00000 -0.00000 -0.00001 -0.00000 0.00000 + 73 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00001 + 74 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 75 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 76 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 77 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00001 + 78 -0.00000 0.00000 -0.00000 -0.00000 0.00004 -0.00000 + 79 -0.00000 -0.00000 -0.00000 0.00003 0.00000 -0.00000 + 80 0.00000 0.00000 0.00000 0.00000 0.00000 0.00003 + 81 0.00000 0.00000 0.00000 0.00002 0.00000 -0.00000 + 82 -0.00000 -0.00000 -0.00000 0.00000 -0.00001 0.00001 + 83 -0.00000 -0.00000 -0.00000 0.00002 0.00000 -0.00000 + 84 0.00000 0.00000 0.00000 0.00000 0.00000 0.00004 + 85 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 86 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 87 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 88 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 89 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 90 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 91 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 92 -0.00000 -0.00001 -0.00000 0.00000 0.00000 -0.00000 + 93 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 94 0.00000 -0.00001 -0.00000 -0.00000 0.00000 -0.00000 + 95 -0.00001 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 96 0.00000 -0.00001 -0.00000 0.00000 0.00000 0.00000 + 97 -0.00001 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 98 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 99 -0.00001 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 100 -0.00000 0.00001 0.00000 -0.00000 0.00000 0.00000 + 101 0.00000 0.00001 0.00000 -0.00000 -0.00000 -0.00000 + 102 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 103 -0.00000 0.00001 0.00000 0.00000 -0.00000 0.00000 + 104 0.00001 0.00000 0.00000 -0.00000 0.00000 0.00000 + 105 -0.00000 0.00001 0.00000 -0.00000 -0.00000 -0.00000 + 106 0.00001 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 107 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 108 0.00001 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 109 0.00000 -0.00001 -0.00000 0.00000 -0.00000 -0.00000 + + 109 + ----------- + 1 68.41115 + 2 43.11205 + 3 -0.26095 + 4 0.20574 + 5 -0.10418 + 6 -13.88036 + 7 -7.95673 + 8 -7.23281 + 9 0.03094 + 10 -0.00000 + 11 -0.00000 + 12 -0.00000 + 13 0.00000 + 14 0.00000 + 15 0.00000 + 16 -0.00000 + 17 -0.00000 + 18 -0.00000 + 19 0.00000 + 20 0.00000 + 21 -0.00000 + 22 0.00000 + 23 0.00000 + 24 0.00000 + 25 0.00000 + 26 0.00000 + 27 -0.00000 + 28 -0.00000 + 29 -0.00000 + 30 0.00000 + 31 -0.00000 + 32 -0.00000 + 33 0.00000 + 34 -0.00001 + 35 -0.00000 + 36 -0.00001 + 37 -0.00000 + 38 -0.00001 + 39 0.00001 + 40 0.00000 + 41 0.00001 + 42 0.00000 + 43 0.00001 + 44 -0.00001 + 45 -0.00000 + 46 -0.00000 + 47 -0.00000 + 48 -0.00000 + 49 0.00001 + 50 0.00000 + 51 0.00001 + 52 0.00000 + 53 0.00001 + 54 -0.00001 + 55 -0.00000 + 56 -0.00001 + 57 -0.00000 + 58 -0.00001 + 59 0.00000 + 60 0.00000 + 61 0.00000 + 62 0.00000 + 63 0.00000 + 64 -0.00000 + 65 0.00000 + 66 -0.00000 + 67 0.00000 + 68 0.00000 + 69 0.00000 + 70 0.00000 + 71 0.00000 + 72 -0.00000 + 73 0.00000 + 74 -0.00000 + 75 -0.00000 + 76 -0.00000 + 77 -0.00000 + 78 0.00000 + 79 0.00000 + 80 0.00000 + 81 0.00000 + 82 -0.00000 + 83 0.00000 + 84 0.00000 + 85 -0.00000 + 86 0.00000 + 87 -0.00000 + 88 0.00000 + 89 0.00000 + 90 -0.00000 + 91 0.00000 + 92 0.00000 + 93 -0.00000 + 94 0.00000 + 95 0.00000 + 96 0.00000 + 97 0.00000 + 98 0.00000 + 99 0.00000 + 100 -0.00000 + 101 -0.00000 + 102 0.00000 + 103 -0.00000 + 104 -0.00000 + 105 -0.00000 + 106 -0.00000 + 107 -0.00000 + 108 -0.00000 + 109 0.00000 + +------------------------------------------------------------ +EAF file 0: "./carbon.aoints.0" size=22544384 bytes +------------------------------------------------------------ + write read awrite aread wait + ----- ---- ------ ----- ---- + calls: 43 8 0 336 336 + data(b): 2.25e+07 4.19e+06 0.00e+00 1.76e+08 + time(s): 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +rate(mb/s): 0.00e+00 0.00e+00 +------------------------------------------------------------ + + + center of mass + -------------- + x = 0.00000000 y = -0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 0.000000000000 0.000000000000 0.000000000000 + 0.000000000000 0.000000000000 0.000000000000 + 0.000000000000 0.000000000000 0.000000000000 + + Mulliken analysis of the total density + -------------------------------------- + + Atom Charge Shell Charges + ----------- ------ ------------------------------------------------------- + 1 C 6 6.00 1.99 -0.03 0.44 1.13 0.48 0.00 -0.00 0.00 0.00 0.18 0.55 0.83 0.43 0.00 -0.00 0.00 0.02 0.00 -0.00 0.00 0.00 -0.00 0.00 0.00 0.00 + 0.00 0.00 0.00 0.00 + + Multipole analysis of the density wrt the origin + ------------------------------------------------ + + L x y z total open nuclear + - - - - ----- ---- ------- + 0 0 0 0 -0.000000 0.000000 6.000000 + + 1 1 0 0 -0.000000 0.000000 0.000000 + 1 0 1 0 0.000000 0.000000 -0.000000 + 1 0 0 1 -0.000000 0.000000 0.000000 + + 2 2 0 0 -4.602341 0.000000 0.000000 + 2 1 1 0 1.438794 0.000000 -0.000000 + 2 1 0 1 -0.000709 0.000000 0.000000 + 2 0 2 0 -6.261303 0.000000 0.000000 + 2 0 1 1 0.001226 0.000000 0.000000 + 2 0 0 2 -3.771050 0.000000 0.000000 + + + Parallel integral file used 43 records with 0 large values + + + Task times cpu: 8.6s wall: 9.3s + Summary of allocated global arrays +----------------------------------- + No active global arrays + + + + GA Statistics for process 0 + ------------------------------ + + create destroy get put acc scatter gather read&inc +calls: 170 170 6855 4301 3241 0 0 0 +number of processes/call 1.00e+00 1.00e+00 1.00e+00 0.00e+00 0.00e+00 +bytes total: 2.27e+07 1.46e+07 2.74e+06 0.00e+00 0.00e+00 0.00e+00 +bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 1235624 bytes +MA_summarize_allocated_blocks: starting scan ... +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +MA usage statistics: + + allocation statistics: + heap stack + ---- ----- + current number of blocks 0 0 + maximum number of blocks 16 14 + current total bytes 0 0 + maximum total bytes 80096 39513968 + maximum total K-bytes 81 39514 + maximum total M-bytes 1 40 + + + NWChem Input Module + ------------------- + + + + + + CITATION + -------- + Please cite the following reference when publishing + results obtained with NWChem: + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + + AUTHORS & CONTRIBUTORS + ---------------------- + E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, T. P. Straatsma, + M. Valiev, H. J. J. van Dam, D. Wang, E. Apra, T. L. Windus, J. Hammond, + J. Autschbach, F. Aquino, J. Mullin, P. Nichols, S. Hirata, M. T. Hackler, + Y. Zhao, P.-D. Fan, R. J. Harrison, M. Dupuis, D. M. A. Smith, K. Glaesemann, + J. Nieplocha, V. Tipparaju, M. Krishnan, A. Vazquez-Mayagoitia, L. Jensen, + M. Swart, Q. Wu, T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, + E. Brown, G. Cisneros, G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, + R. Kendall, J. A. Nichols, K. Tsemekhman, K. Wolinski, J. Anchell, + D. Bernholdt, P. Borowski, T. Clark, D. Clerc, H. Dachsel, M. Deegan, + K. Dyall, D. Elwood, E. Glendening, M. Gutowski, A. Hess, J. Jaffe, + B. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, + X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, G. Sandrone, + M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. Wong, Z. Zhang. + + Total times cpu: 8.6s wall: 10.0s diff --git a/data/NWChem/basicNWChem7.0/Trp_polar.in b/data/NWChem/basicNWChem7.0/Trp_polar.in new file mode 100644 index 000000000..36114384c --- /dev/null +++ b/data/NWChem/basicNWChem7.0/Trp_polar.in @@ -0,0 +1,48 @@ +echo + +geometry units angstrom noautoz nocenter +symmetry c1 +N -0.0699826875 0.3321987191 0.2821283177 +C 1.3728035449 0.0970713322 -0.0129587739 +C 2.0969275417 -0.0523593054 1.3682652221 +O 3.1382490088 -0.6563684788 1.5380162924 +C 1.9529664597 1.3136139853 -0.7956021969 +H 1.8442727348 2.2050605044 -0.1801631789 +H 1.3455899915 1.4594935008 -1.6885689523 +C 3.4053646872 1.1270611844 -1.1918075237 +C 4.4845249667 1.6235038050 -0.5598918002 +N 5.6509089647 1.2379326369 -1.2284610654 +H 6.6009314349 1.4112351003 -0.9028629397 +C 5.2921619642 0.4356274269 -2.3131617003 +C 3.8942019475 0.3557998019 -2.3263315791 +C 3.2659168792 -0.3832607567 -3.3431309548 +H 2.1864306677 -0.4577058843 -3.3815918670 +C 4.0381762333 -1.0087512639 -4.2870993776 +H 3.5696890585 -1.5824763141 -5.0755609734 +C 5.4445159165 -0.9194874753 -4.2519002882 +H 6.0229926396 -1.4277973542 -5.0130007062 +C 6.0869576238 -0.2024044961 -3.2767702726 +H 7.1656650647 -0.1287762497 -3.2458650647 +H 4.5457621618 2.2425310766 0.3253979653 +H -0.5159777859 0.7478905868 -0.5487661007 +H 1.5420526570 -0.8143939718 -0.5935463196 +H -0.5302278747 -0.5823989653 0.4084507634 +O 1.4575846656 0.5996887308 2.4093500287 +H 0.5990015339 0.8842421241 2.0047830456 +end + +basis +* library sto-3g +end + +scf + thresh 1.0e-9 +end + +property + response 1 0.0 + convergence 1e-8 +end + +task scf property + diff --git a/data/NWChem/basicNWChem7.0/Trp_polar.out b/data/NWChem/basicNWChem7.0/Trp_polar.out new file mode 100644 index 000000000..2be316562 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/Trp_polar.out @@ -0,0 +1,1310 @@ + argument 1 = Trp_polar.in + + + +============================== echo of input deck ============================== +echo + +geometry units angstrom noautoz nocenter +symmetry c1 +N -0.0699826875 0.3321987191 0.2821283177 +C 1.3728035449 0.0970713322 -0.0129587739 +C 2.0969275417 -0.0523593054 1.3682652221 +O 3.1382490088 -0.6563684788 1.5380162924 +C 1.9529664597 1.3136139853 -0.7956021969 +H 1.8442727348 2.2050605044 -0.1801631789 +H 1.3455899915 1.4594935008 -1.6885689523 +C 3.4053646872 1.1270611844 -1.1918075237 +C 4.4845249667 1.6235038050 -0.5598918002 +N 5.6509089647 1.2379326369 -1.2284610654 +H 6.6009314349 1.4112351003 -0.9028629397 +C 5.2921619642 0.4356274269 -2.3131617003 +C 3.8942019475 0.3557998019 -2.3263315791 +C 3.2659168792 -0.3832607567 -3.3431309548 +H 2.1864306677 -0.4577058843 -3.3815918670 +C 4.0381762333 -1.0087512639 -4.2870993776 +H 3.5696890585 -1.5824763141 -5.0755609734 +C 5.4445159165 -0.9194874753 -4.2519002882 +H 6.0229926396 -1.4277973542 -5.0130007062 +C 6.0869576238 -0.2024044961 -3.2767702726 +H 7.1656650647 -0.1287762497 -3.2458650647 +H 4.5457621618 2.2425310766 0.3253979653 +H -0.5159777859 0.7478905868 -0.5487661007 +H 1.5420526570 -0.8143939718 -0.5935463196 +H -0.5302278747 -0.5823989653 0.4084507634 +O 1.4575846656 0.5996887308 2.4093500287 +H 0.5990015339 0.8842421241 2.0047830456 +end + +basis +* library sto-3g +end + +scf + thresh 1.0e-9 +end + +property + response 1 0.0 + convergence 1e-8 +end + +task scf property + +================================================================================ + + + + + + + Northwest Computational Chemistry Package (NWChem) 6.6 + ------------------------------------------------------ + + + Environmental Molecular Sciences Laboratory + Pacific Northwest National Laboratory + Richland, WA 99352 + + Copyright (c) 1994-2015 + Pacific Northwest National Laboratory + Battelle Memorial Institute + + NWChem is an open-source computational chemistry package + distributed under the terms of the + Educational Community License (ECL) 2.0 + A copy of the license is included with this distribution + in the LICENSE.TXT file + + ACKNOWLEDGMENT + -------------- + + This software and its documentation were developed at the + EMSL at Pacific Northwest National Laboratory, a multiprogram + national laboratory, operated for the U.S. Department of Energy + by Battelle under Contract Number DE-AC05-76RL01830. Support + for this work was provided by the Department of Energy Office + of Biological and Environmental Research, Office of Basic + Energy Sciences, and the Office of Advanced Scientific Computing. + + + Job information + --------------- + + hostname = copper + program = nwchem + date = Wed Jul 27 00:50:17 2016 + + compiled = Sun_Feb_14_13:23:17_2016 + source = /build/nwchem-XLLp2O/nwchem-6.6+r27746 + nwchem branch = 6.6 + nwchem revision = 27746 + ga revision = 10594 + input = Trp_polar.in + prefix = Trp_polar. + data base = ./Trp_polar.db + status = startup + nproc = 1 + time left = -1s + + + + Memory information + ------------------ + + heap = 13107198 doubles = 100.0 Mbytes + stack = 13107195 doubles = 100.0 Mbytes + global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) + total = 52428793 doubles = 400.0 Mbytes + verify = yes + hardfail = no + + + Directory information + --------------------- + + 0 permanent = . + 0 scratch = . + + + + + NWChem Input Module + ------------------- + + + + Scaling coordinates for geometry "geometry" by 1.889725989 + (inverse scale = 0.529177249) + + Turning off AUTOSYM since + SYMMETRY directive was detected! + + + + Geometry "geometry" -> "" + ------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 N 7.0000 -0.06998269 0.33219872 0.28212832 + 2 C 6.0000 1.37280354 0.09707133 -0.01295877 + 3 C 6.0000 2.09692754 -0.05235931 1.36826522 + 4 O 8.0000 3.13824901 -0.65636848 1.53801629 + 5 C 6.0000 1.95296646 1.31361399 -0.79560220 + 6 H 1.0000 1.84427273 2.20506050 -0.18016318 + 7 H 1.0000 1.34558999 1.45949350 -1.68856895 + 8 C 6.0000 3.40536469 1.12706118 -1.19180752 + 9 C 6.0000 4.48452497 1.62350381 -0.55989180 + 10 N 7.0000 5.65090896 1.23793264 -1.22846107 + 11 H 1.0000 6.60093143 1.41123510 -0.90286294 + 12 C 6.0000 5.29216196 0.43562743 -2.31316170 + 13 C 6.0000 3.89420195 0.35579980 -2.32633158 + 14 C 6.0000 3.26591688 -0.38326076 -3.34313095 + 15 H 1.0000 2.18643067 -0.45770588 -3.38159187 + 16 C 6.0000 4.03817623 -1.00875126 -4.28709938 + 17 H 1.0000 3.56968906 -1.58247631 -5.07556097 + 18 C 6.0000 5.44451592 -0.91948748 -4.25190029 + 19 H 1.0000 6.02299264 -1.42779735 -5.01300071 + 20 C 6.0000 6.08695762 -0.20240450 -3.27677027 + 21 H 1.0000 7.16566506 -0.12877625 -3.24586506 + 22 H 1.0000 4.54576216 2.24253108 0.32539797 + 23 H 1.0000 -0.51597779 0.74789059 -0.54876610 + 24 H 1.0000 1.54205266 -0.81439397 -0.59354632 + 25 H 1.0000 -0.53022787 -0.58239897 0.40845076 + 26 O 8.0000 1.45758467 0.59968873 2.40935003 + 27 H 1.0000 0.59900153 0.88424212 2.00478305 + + Atomic Mass + ----------- + + N 14.003070 + C 12.000000 + O 15.994910 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 957.1064036872 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 676.9309203764 54.4484313070 -224.6487895865 + + + XYZ format geometry + ------------------- + 27 + geometry + N -0.06998269 0.33219872 0.28212832 + C 1.37280354 0.09707133 -0.01295877 + C 2.09692754 -0.05235931 1.36826522 + O 3.13824901 -0.65636848 1.53801629 + C 1.95296646 1.31361399 -0.79560220 + H 1.84427273 2.20506050 -0.18016318 + H 1.34558999 1.45949350 -1.68856895 + C 3.40536469 1.12706118 -1.19180752 + C 4.48452497 1.62350381 -0.55989180 + N 5.65090896 1.23793264 -1.22846107 + H 6.60093143 1.41123510 -0.90286294 + C 5.29216196 0.43562743 -2.31316170 + C 3.89420195 0.35579980 -2.32633158 + C 3.26591688 -0.38326076 -3.34313095 + H 2.18643067 -0.45770588 -3.38159187 + C 4.03817623 -1.00875126 -4.28709938 + H 3.56968906 -1.58247631 -5.07556097 + C 5.44451592 -0.91948748 -4.25190029 + H 6.02299264 -1.42779735 -5.01300071 + C 6.08695762 -0.20240450 -3.27677027 + H 7.16566506 -0.12877625 -3.24586506 + H 4.54576216 2.24253108 0.32539797 + H -0.51597779 0.74789059 -0.54876610 + H 1.54205266 -0.81439397 -0.59354632 + H -0.53022787 -0.58239897 0.40845076 + O 1.45758467 0.59968873 2.40935003 + H 0.59900153 0.88424212 2.00478305 + + ============================================================================== + internuclear distances + ------------------------------------------------------------------------------ + center one | center two | atomic units | angstroms + ------------------------------------------------------------------------------ + 2 C | 1 N | 2.81816 | 1.49131 + 3 C | 2 C | 2.96058 | 1.56667 + 4 O | 3 C | 2.29739 | 1.21573 + 5 C | 2 C | 2.94524 | 1.55856 + 6 H | 5 C | 2.05733 | 1.08869 + 7 H | 5 C | 2.05935 | 1.08976 + 8 C | 5 C | 2.86668 | 1.51698 + 9 C | 8 C | 2.54262 | 1.34550 + 10 N | 9 C | 2.64298 | 1.39861 + 11 H | 10 N | 1.92584 | 1.01911 + 12 C | 10 N | 2.63816 | 1.39605 + 13 C | 8 C | 2.75210 | 1.45635 + 13 C | 12 C | 2.64618 | 1.40030 + 14 C | 13 C | 2.65561 | 1.40529 + 15 H | 14 C | 2.04607 | 1.08273 + 16 C | 14 C | 2.59017 | 1.37066 + 17 H | 16 C | 2.04432 | 1.08181 + 18 C | 16 C | 2.66378 | 1.40961 + 19 H | 18 C | 2.04605 | 1.08272 + 20 C | 12 C | 2.65056 | 1.40261 + 20 C | 18 C | 2.58956 | 1.37033 + 21 H | 20 C | 2.04404 | 1.08166 + 22 H | 9 C | 2.04465 | 1.08198 + 23 H | 1 N | 1.94752 | 1.03058 + 24 H | 2 C | 2.06707 | 1.09384 + 25 H | 1 N | 1.94951 | 1.03164 + 26 O | 3 C | 2.61697 | 1.38484 + 27 H | 26 O | 1.87246 | 0.99086 + ------------------------------------------------------------------------------ + number of included internuclear distances: 28 + ============================================================================== + + + + ============================================================================== + internuclear angles + ------------------------------------------------------------------------------ + center 1 | center 2 | center 3 | degrees + ------------------------------------------------------------------------------ + 2 C | 1 N | 23 H | 108.83 + 2 C | 1 N | 25 H | 108.43 + 23 H | 1 N | 25 H | 105.26 + 1 N | 2 C | 3 C | 106.72 + 1 N | 2 C | 5 C | 109.66 + 1 N | 2 C | 24 H | 112.71 + 3 C | 2 C | 5 C | 110.19 + 3 C | 2 C | 24 H | 108.48 + 5 C | 2 C | 24 H | 109.04 + 2 C | 3 C | 4 O | 124.50 + 2 C | 3 C | 26 O | 113.86 + 4 O | 3 C | 26 O | 121.63 + 2 C | 5 C | 6 H | 108.55 + 2 C | 5 C | 7 H | 107.97 + 2 C | 5 C | 8 C | 113.05 + 6 H | 5 C | 7 H | 107.34 + 6 H | 5 C | 8 C | 110.12 + 7 H | 5 C | 8 C | 109.64 + 5 C | 8 C | 9 C | 126.86 + 5 C | 8 C | 13 C | 126.15 + 9 C | 8 C | 13 C | 106.98 + 8 C | 9 C | 10 N | 110.04 + 8 C | 9 C | 22 H | 129.85 + 10 N | 9 C | 22 H | 120.11 + 9 C | 10 N | 11 H | 125.30 + 9 C | 10 N | 12 C | 108.39 + 11 H | 10 N | 12 C | 125.84 + 10 N | 12 C | 13 C | 107.25 + 10 N | 12 C | 20 C | 130.51 + 13 C | 12 C | 20 C | 122.23 + 8 C | 13 C | 12 C | 107.31 + 8 C | 13 C | 14 C | 133.80 + 12 C | 13 C | 14 C | 118.89 + 13 C | 14 C | 15 H | 120.50 + 13 C | 14 C | 16 C | 119.10 + 15 H | 14 C | 16 C | 120.39 + 14 C | 16 C | 17 H | 120.00 + 14 C | 16 C | 18 C | 121.07 + 17 H | 16 C | 18 C | 118.94 + 16 C | 18 C | 19 H | 119.06 + 16 C | 18 C | 20 C | 121.24 + 19 H | 18 C | 20 C | 119.70 + 12 C | 20 C | 18 C | 117.47 + 12 C | 20 C | 21 H | 120.96 + 18 C | 20 C | 21 H | 121.57 + 3 C | 26 O | 27 H | 103.20 + ------------------------------------------------------------------------------ + number of included internuclear angles: 46 + ============================================================================== + + + + + + Summary of "ao basis" -> "" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + * sto-3g on all atoms + + + NWChem Property Module + ---------------------- + + + Basis "ao basis" -> "ao basis" (cartesian) + ----- + N (Nitrogen) + ------------ + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 9.91061690E+01 0.154329 + 1 S 1.80523120E+01 0.535328 + 1 S 4.88566020E+00 0.444635 + + 2 S 3.78045590E+00 -0.099967 + 2 S 8.78496600E-01 0.399513 + 2 S 2.85714400E-01 0.700115 + + 3 P 3.78045590E+00 0.155916 + 3 P 8.78496600E-01 0.607684 + 3 P 2.85714400E-01 0.391957 + + C (Carbon) + ---------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 7.16168370E+01 0.154329 + 1 S 1.30450960E+01 0.535328 + 1 S 3.53051220E+00 0.444635 + + 2 S 2.94124940E+00 -0.099967 + 2 S 6.83483100E-01 0.399513 + 2 S 2.22289900E-01 0.700115 + + 3 P 2.94124940E+00 0.155916 + 3 P 6.83483100E-01 0.607684 + 3 P 2.22289900E-01 0.391957 + + O (Oxygen) + ---------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 1.30709320E+02 0.154329 + 1 S 2.38088610E+01 0.535328 + 1 S 6.44360830E+00 0.444635 + + 2 S 5.03315130E+00 -0.099967 + 2 S 1.16959610E+00 0.399513 + 2 S 3.80389000E-01 0.700115 + + 3 P 5.03315130E+00 0.155916 + 3 P 1.16959610E+00 0.607684 + 3 P 3.80389000E-01 0.391957 + + H (Hydrogen) + ------------ + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.42525091E+00 0.154329 + 1 S 6.23913730E-01 0.535328 + 1 S 1.68855400E-01 0.444635 + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + N sto-3g 3 5 2s1p + C sto-3g 3 5 2s1p + O sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + NWChem SCF Module + ----------------- + + + + ao basis = "ao basis" + functions = 87 + atoms = 27 + closed shells = 54 + open shells = 0 + charge = 0.00 + wavefunction = RHF + input vectors = atomic + output vectors = ./Trp_polar.movecs + use symmetry = F + symmetry adapt = F + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + N sto-3g 3 5 2s1p + C sto-3g 3 5 2s1p + O sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + + Forming initial guess at 0.5s + + + Superposition of Atomic Density Guess + ------------------------------------- + + Sum of atomic energies: -669.34767099 + + Non-variational initial energy + ------------------------------ + + Total energy = -674.004747 + 1-e energy = -2827.374978 + 2-e energy = 1196.263827 + HOMO = -0.025644 + LUMO = 0.219320 + + + Starting SCF solution at 1.9s + + + + ---------------------------------------------- + Quadratically convergent ROHF + + Convergence threshold : 1.000E-09 + Maximum no. of iterations : 30 + Final Fock-matrix accuracy: 1.000E-11 + ---------------------------------------------- + + + Integral file = ./Trp_polar.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 230 Max. records in file = 19288 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 8.876D+05 #integrals = 5.254D+06 #direct = 0.0% #cached =100.0% + + + iter energy gnorm gmax time + ----- ------------------- --------- --------- -------- + 1 -673.3333996738 1.65D+00 4.34D-01 7.5 + 2 -673.5579531921 5.23D-01 9.82D-02 7.7 + 3 -673.5901146605 4.41D-02 1.96D-02 7.9 + 4 -673.5905709881 9.27D-04 3.19D-04 8.3 + 5 -673.5905711126 4.29D-07 2.12D-07 9.0 + 6 -673.5905711126 8.42D-11 1.57D-11 9.7 + + + Final RHF results + ------------------ + + Total SCF energy = -673.590571112627 + One-electron energy = -2824.796309158325 + Two-electron energy = 1194.099334358451 + Nuclear repulsion energy = 957.106403687247 + + Time for solution = 8.2s + + + Final eigenvalues + ----------------- + + 1 + 1 -20.2690 + 2 -20.2423 + 3 -15.3897 + 4 -15.3454 + 5 -11.1482 + 6 -11.0985 + 7 -11.0681 + 8 -11.0652 + 9 -11.0634 + 10 -11.0254 + 11 -11.0253 + 12 -11.0239 + 13 -11.0160 + 14 -11.0149 + 15 -11.0115 + 16 -1.3477 + 17 -1.2578 + 18 -1.2200 + 19 -1.1538 + 20 -1.0745 + 21 -1.0255 + 22 -0.9593 + 23 -0.9368 + 24 -0.9133 + 25 -0.8376 + 26 -0.7831 + 27 -0.7494 + 28 -0.7106 + 29 -0.6926 + 30 -0.6692 + 31 -0.6484 + 32 -0.6169 + 33 -0.6023 + 34 -0.5984 + 35 -0.5808 + 36 -0.5565 + 37 -0.5428 + 38 -0.5369 + 39 -0.5241 + 40 -0.5177 + 41 -0.4979 + 42 -0.4872 + 43 -0.4788 + 44 -0.4597 + 45 -0.4446 + 46 -0.4385 + 47 -0.4167 + 48 -0.4139 + 49 -0.3697 + 50 -0.3285 + 51 -0.3256 + 52 -0.3067 + 53 -0.2426 + 54 -0.2257 + 55 0.2476 + 56 0.2952 + 57 0.3185 + 58 0.3694 + 59 0.5218 + 60 0.5336 + 61 0.5610 + 62 0.5686 + 63 0.5784 + 64 0.6126 + + ROHF Final Molecular Orbital Analysis + ------------------------------------- + + Vector 16 Occ=2.000000D+00 E=-1.347680D+00 + MO Center= 2.1D+00, 1.4D-02, 1.8D+00, r^2= 1.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 83 0.531215 26 O s 17 0.498667 4 O s + 12 0.316154 3 C s 82 -0.150376 26 O s + + Vector 17 Occ=2.000000D+00 E=-1.257839D+00 + MO Center= 2.1D+00, 3.0D-02, 1.8D+00, r^2= 1.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 83 -0.601122 26 O s 17 0.575285 4 O s + 13 0.170404 3 C px 82 0.165880 26 O s + 16 -0.163653 4 O s + + Vector 18 Occ=2.000000D+00 E=-1.219988D+00 + MO Center= 5.2D+00, 1.1D+00, -1.4D+00, r^2= 1.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.575738 10 N s 45 0.240490 12 C s + 34 0.224719 9 C s 38 -0.178031 10 N s + + Vector 19 Occ=2.000000D+00 E=-1.153790D+00 + MO Center= 3.5D-01, 2.5D-01, 1.2D-01, r^2= 1.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.642899 1 N s 7 0.295156 2 C s + 1 -0.192010 1 N s 83 -0.156776 26 O s + + Vector 20 Occ=2.000000D+00 E=-1.074547D+00 + MO Center= 4.7D+00, -2.5D-01, -3.2D+00, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 61 0.285819 16 C s 67 0.282627 18 C s + 55 0.274831 14 C s 73 0.245285 20 C s + 39 -0.239637 10 N s 50 0.218933 13 C s + 45 0.154581 12 C s + + Vector 21 Occ=2.000000D+00 E=-1.025525D+00 + MO Center= 3.3D+00, 8.9D-01, -1.2D+00, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 29 0.359819 8 C s 22 0.344314 5 C s + 39 -0.238179 10 N s 2 -0.214051 1 N s + 50 0.172242 13 C s 34 0.159961 9 C s + 73 -0.154572 20 C s + + Vector 22 Occ=2.000000D+00 E=-9.592735D-01 + MO Center= 3.5D+00, 1.5D-01, -2.1D+00, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 73 0.298207 20 C s 22 0.288463 5 C s + 55 -0.277279 14 C s 50 -0.233848 13 C s + 7 0.216453 2 C s 67 0.212467 18 C s + 2 -0.209225 1 N s + + Vector 23 Occ=2.000000D+00 E=-9.367758D-01 + MO Center= 4.5D+00, -1.6D-03, -2.8D+00, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 61 0.363784 16 C s 45 -0.316245 12 C s + 39 0.241637 10 N s 50 -0.229010 13 C s + 73 -0.194785 20 C s 55 0.186911 14 C s + + Vector 24 Occ=2.000000D+00 E=-9.133381D-01 + MO Center= 3.9D+00, 4.9D-01, -1.6D+00, r^2= 7.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 34 0.346897 9 C s 67 0.262647 18 C s + 7 -0.236270 2 C s 29 0.231264 8 C s + 55 -0.197754 14 C s 45 -0.173508 12 C s + 2 0.168680 1 N s 39 -0.159444 10 N s + + Vector 25 Occ=2.000000D+00 E=-8.376413D-01 + MO Center= 2.0D+00, 6.0D-01, -2.3D-01, r^2= 4.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 7 0.366757 2 C s 22 -0.353749 5 C s + 12 0.243104 3 C s 17 -0.179285 4 O s + 27 -0.153456 7 H s + + Vector 26 Occ=2.000000D+00 E=-7.830515D-01 + MO Center= 4.7D+00, 1.2D-01, -2.7D+00, r^2= 5.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 73 0.286415 20 C s 55 0.283644 14 C s + 34 0.245928 9 C s 61 -0.205605 16 C s + 67 -0.171985 18 C s 78 0.157696 22 H s + 42 0.152741 10 N pz + + Vector 27 Occ=2.000000D+00 E=-7.493745D-01 + MO Center= 4.6D+00, 5.8D-02, -2.8D+00, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 67 -0.275514 18 C s 45 0.265878 12 C s + 50 -0.260178 13 C s 61 0.240655 16 C s + 58 -0.177226 14 C pz 76 0.174157 20 C pz + 34 0.164559 9 C s 71 -0.161044 19 H s + 43 -0.156197 11 H s + + Vector 28 Occ=2.000000D+00 E=-7.105980D-01 + MO Center= 4.0D+00, 6.4D-01, -1.6D+00, r^2= 6.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 29 0.328894 8 C s 46 0.188073 12 C px + 34 -0.184522 9 C s 23 0.177277 5 C px + 40 0.171372 10 N px 35 -0.170195 9 C px + 78 -0.158062 22 H s + + Vector 29 Occ=2.000000D+00 E=-6.926341D-01 + MO Center= 1.9D+00, 2.2D-01, 9.7D-01, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.454821 3 C s 17 -0.324807 4 O s + 84 0.295884 26 O px 87 -0.239712 27 H s + 83 -0.204994 26 O s 10 0.194175 2 C pz + 80 -0.193384 24 H s 7 -0.182036 2 C s + 85 -0.182378 26 O py 86 -0.170177 26 O pz + + Vector 30 Occ=2.000000D+00 E=-6.691635D-01 + MO Center= 4.1D+00, 4.8D-01, -1.6D+00, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 40 0.337163 10 N px 43 0.244182 11 H s + 59 -0.176520 15 H s 68 -0.164864 18 C px + 29 0.160693 8 C s 23 0.159415 5 C px + 56 0.156672 14 C px 55 -0.152715 14 C s + + Vector 31 Occ=2.000000D+00 E=-6.483890D-01 + MO Center= 1.7D+00, 3.3D-01, 3.8D-01, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 10 0.279279 2 C pz 84 -0.276538 26 O px + 15 -0.256402 3 C pz 87 0.245388 27 H s + 80 -0.230715 24 H s 5 0.214878 1 N pz + 26 0.166665 6 H s 83 -0.157332 26 O s + 24 0.150933 5 C py + + Vector 32 Occ=2.000000D+00 E=-6.168923D-01 + MO Center= 1.3D+00, 3.2D-01, -3.9D-01, r^2= 7.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.392993 1 N py 81 -0.349041 25 H s + 79 0.235936 23 H s 9 0.227275 2 C py + 5 -0.187064 1 N pz 40 0.174520 10 N px + + Vector 33 Occ=2.000000D+00 E=-6.023242D-01 + MO Center= 4.7D+00, 2.2D-01, -2.5D+00, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 71 0.268459 19 H s 78 0.265734 22 H s + 70 -0.249517 18 C pz 37 0.242706 9 C pz + 45 0.215779 12 C s 42 -0.177068 10 N pz + 69 -0.174352 18 C py 56 -0.169329 14 C px + 36 0.150070 9 C py + + Vector 34 Occ=2.000000D+00 E=-5.983567D-01 + MO Center= 3.8D+00, 1.1D-01, -2.4D+00, r^2= 9.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 65 0.268042 17 H s 50 0.214861 13 C s + 64 -0.215759 16 C pz 77 0.204245 21 H s + 32 -0.191465 8 C pz 74 0.191526 20 C px + 35 0.178966 9 C px 27 0.150281 7 H s + + Vector 35 Occ=2.000000D+00 E=-5.807631D-01 + MO Center= 1.7D+00, 2.5D-01, 2.0D-01, r^2= 5.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.400451 1 N px 8 -0.338065 2 C px + 79 -0.251506 23 H s 20 0.243816 4 O pz + 15 0.230001 3 C pz 17 0.221736 4 O s + 35 -0.166804 9 C px 12 -0.152341 3 C s + + Vector 36 Occ=2.000000D+00 E=-5.564603D-01 + MO Center= 3.2D+00, 4.0D-01, -1.4D+00, r^2= 9.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 25 0.293745 5 C pz 74 0.242317 20 C px + 27 -0.224135 7 H s 77 0.204323 21 H s + 56 0.194241 14 C px 4 -0.176237 1 N py + 59 -0.168891 15 H s 26 0.167040 6 H s + 81 0.157362 25 H s + + Vector 37 Occ=2.000000D+00 E=-5.428143D-01 + MO Center= 3.9D+00, 1.3D-01, -2.0D+00, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 56 -0.273600 14 C px 74 -0.257860 20 C px + 42 0.253839 10 N pz 59 0.222839 15 H s + 47 -0.212804 12 C py 77 -0.212948 21 H s + 53 0.174499 13 C pz 14 0.156000 3 C py + 31 -0.155101 8 C py + + Vector 38 Occ=2.000000D+00 E=-5.368602D-01 + MO Center= 4.1D+00, 2.0D-01, -2.0D+00, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.242506 13 C px 62 -0.243344 16 C px + 68 0.241772 18 C px 46 -0.238330 12 C px + 40 0.232331 10 N px 43 0.202815 11 H s + 24 0.178602 5 C py 58 -0.161623 14 C pz + + Vector 39 Occ=2.000000D+00 E=-5.240885D-01 + MO Center= 4.0D+00, 6.4D-01, -1.3D+00, r^2= 6.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 41 0.395332 10 N py 48 -0.247501 12 C pz + 37 -0.199947 9 C pz 25 0.188806 5 C pz + 27 -0.178813 7 H s 14 0.165023 3 C py + 47 0.164298 12 C py 75 0.156897 20 C py + 85 0.151297 26 O py + + Vector 40 Occ=2.000000D+00 E=-5.177421D-01 + MO Center= 3.6D+00, 5.8D-01, -1.2D+00, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 26 0.234648 6 H s 24 0.220735 5 C py + 42 0.214794 10 N pz 78 -0.207080 22 H s + 36 -0.197463 9 C py 18 -0.193903 4 O px + 58 0.193257 14 C pz 14 -0.192070 3 C py + 76 0.192914 20 C pz 47 -0.183427 12 C py + + Vector 41 Occ=2.000000D+00 E=-4.979350D-01 + MO Center= 2.3D+00, 8.1D-02, 9.2D-01, r^2= 4.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.395558 3 C px 19 0.357805 4 O py + 17 -0.322219 4 O s 85 0.316946 26 O py + 18 -0.252297 4 O px 23 -0.188956 5 C px + 86 0.172514 26 O pz 79 -0.170958 23 H s + 20 -0.154188 4 O pz + + Vector 42 Occ=2.000000D+00 E=-4.871602D-01 + MO Center= 2.7D+00, 5.4D-01, -2.1D-01, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 18 0.287630 4 O px 86 -0.275536 26 O pz + 27 0.268758 7 H s 14 0.265311 3 C py + 30 0.250408 8 C px 23 -0.246383 5 C px + 17 0.182842 4 O s 85 0.177600 26 O py + 25 -0.174829 5 C pz 3 -0.163556 1 N px + + Vector 43 Occ=2.000000D+00 E=-4.787739D-01 + MO Center= 4.0D+00, 2.3D-01, -2.0D+00, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 71 0.295931 19 H s 70 -0.239669 18 C pz + 24 -0.230110 5 C py 26 -0.214842 6 H s + 48 -0.198400 12 C pz 78 -0.188058 22 H s + 68 0.168797 18 C px 37 -0.162765 9 C pz + 41 0.162051 10 N py 32 0.153723 8 C pz + + Vector 44 Occ=2.000000D+00 E=-4.597271D-01 + MO Center= 2.3D+00, 4.6D-01, -2.5D-01, r^2= 7.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 85 0.305448 26 O py 23 0.260020 5 C px + 9 -0.238458 2 C py 30 -0.227630 8 C px + 24 0.223691 5 C py 3 0.214039 1 N px + 8 -0.208680 2 C px 84 0.208861 26 O px + 25 -0.173655 5 C pz 81 -0.171811 25 H s + + Vector 45 Occ=2.000000D+00 E=-4.446253D-01 + MO Center= 3.0D+00, -8.3D-02, -6.4D-01, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 86 0.368069 26 O pz 83 0.286875 26 O s + 65 -0.237374 17 H s 20 -0.235346 4 O pz + 87 -0.225135 27 H s 19 -0.213269 4 O py + 58 -0.196845 14 C pz 53 0.188777 13 C pz + 84 0.184974 26 O px 64 0.181991 16 C pz + + Vector 46 Occ=2.000000D+00 E=-4.384767D-01 + MO Center= 3.0D+00, 4.3D-02, -8.4D-01, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 86 0.305882 26 O pz 20 -0.236591 4 O pz + 83 0.233090 26 O s 65 0.227003 17 H s + 19 -0.203332 4 O py 53 -0.193604 13 C pz + 87 -0.190988 27 H s 64 -0.174072 16 C pz + 80 -0.168383 24 H s 58 0.164333 14 C pz + + Vector 47 Occ=2.000000D+00 E=-4.166885D-01 + MO Center= 4.6D+00, -4.0D-02, -2.9D+00, r^2= 4.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 41 0.305747 10 N py 63 -0.287507 16 C py + 69 -0.283975 18 C py 57 -0.260469 14 C py + 42 -0.248905 10 N pz 64 0.234031 16 C pz + 36 0.204013 9 C py 75 -0.196376 20 C py + 70 0.189343 18 C pz 76 0.168679 20 C pz + + Vector 48 Occ=2.000000D+00 E=-4.139122D-01 + MO Center= 4.2D+00, 1.6D-01, -2.6D+00, r^2= 5.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 46 0.334368 12 C px 51 -0.319413 13 C px + 62 -0.233485 16 C px 59 -0.228997 15 H s + 77 -0.225661 21 H s 74 -0.216315 20 C px + 56 0.205514 14 C px 68 0.206529 18 C px + 32 -0.192868 8 C pz 31 -0.171550 8 C py + + Vector 49 Occ=2.000000D+00 E=-3.697146D-01 + MO Center= 4.1D-01, 3.3D-01, 5.5D-01, r^2= 2.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.623648 1 N pz 4 0.477512 1 N py + 2 0.347199 1 N s 86 0.225787 26 O pz + 80 0.210220 24 H s 20 0.199290 4 O pz + 84 0.184432 26 O px 8 0.178807 2 C px + + Vector 50 Occ=2.000000D+00 E=-3.285250D-01 + MO Center= 2.3D+00, 3.5D-02, 1.8D+00, r^2= 2.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 85 0.616644 26 O py 19 -0.493844 4 O py + 18 -0.330309 4 O px 84 0.314412 26 O px + 14 -0.237817 3 C py 86 -0.183903 26 O pz + + Vector 51 Occ=2.000000D+00 E=-3.256203D-01 + MO Center= 4.1D+00, 2.8D-01, -1.8D+00, r^2= 6.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.307356 8 C py 75 -0.292761 20 C py + 20 0.271661 4 O pz 52 0.262888 13 C py + 57 0.258203 14 C py 41 -0.239235 10 N py + 32 -0.214577 8 C pz 76 0.204092 20 C pz + 69 -0.190378 18 C py 53 -0.187738 13 C pz + + Vector 52 Occ=2.000000D+00 E=-3.067447D-01 + MO Center= 2.5D+00, -1.7D-01, 8.7D-01, r^2= 4.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 20 0.709893 4 O pz 86 0.326399 26 O pz + 10 0.322260 2 C pz 5 -0.207859 1 N pz + 19 0.166542 4 O py 15 -0.159921 3 C pz + + Vector 53 Occ=2.000000D+00 E=-2.425861D-01 + MO Center= 4.7D+00, 9.2D-02, -2.8D+00, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 63 -0.380438 16 C py 47 0.367351 12 C py + 52 0.348545 13 C py 41 -0.273956 10 N py + 64 0.266746 16 C pz 48 -0.259657 12 C pz + 53 -0.243942 13 C pz 36 -0.239938 9 C py + 69 -0.227043 18 C py 42 0.187382 10 N pz + + Vector 54 Occ=2.000000D+00 E=-2.256687D-01 + MO Center= 4.4D+00, 5.0D-01, -2.1D+00, r^2= 4.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.385187 8 C py 41 -0.331193 10 N py + 36 0.307846 9 C py 57 -0.305024 14 C py + 75 0.286252 20 C py 32 -0.269095 8 C pz + 69 0.259737 18 C py 42 0.224364 10 N pz + 58 0.214954 14 C pz 37 -0.213374 9 C pz + + Vector 55 Occ=0.000000D+00 E= 2.475766D-01 + MO Center= 4.6D+00, 1.2D-01, -2.7D+00, r^2= 4.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 57 0.445684 14 C py 75 0.431810 20 C py + 36 0.395806 9 C py 69 -0.375632 18 C py + 58 -0.309775 14 C pz 76 -0.303073 20 C pz + 37 -0.277856 9 C pz 52 -0.278937 13 C py + 70 0.265108 18 C pz 31 -0.222438 8 C py + + Vector 56 Occ=0.000000D+00 E= 2.951862D-01 + MO Center= 4.6D+00, -1.9D-01, -3.2D+00, r^2= 3.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.526398 12 C py 63 0.526698 16 C py + 48 -0.370569 12 C pz 64 -0.368975 16 C pz + 69 -0.317449 18 C py 52 -0.287299 13 C py + 57 -0.267859 14 C py 41 -0.266365 10 N py + 70 0.223096 18 C pz 53 0.198024 13 C pz + + Vector 57 Occ=0.000000D+00 E= 3.185100D-01 + MO Center= 2.4D+00, -1.8D-01, 1.3D+00, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 0.663460 3 C py 19 -0.576474 4 O py + 13 0.425053 3 C px 18 -0.354980 4 O px + 85 -0.267010 26 O py 22 -0.164990 5 C s + 24 0.156215 5 C py + + Vector 58 Occ=0.000000D+00 E= 3.694396D-01 + MO Center= 4.1D+00, 8.1D-01, -1.5D+00, r^2= 4.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.537572 8 C py 36 -0.503553 9 C py + 32 -0.367733 8 C pz 37 0.363613 9 C pz + 75 0.294818 20 C py 52 -0.293003 13 C py + 69 -0.279242 18 C py 41 0.244639 10 N py + 76 -0.212294 20 C pz 53 0.196315 13 C pz + + Vector 59 Occ=0.000000D+00 E= 5.218495D-01 + MO Center= 4.3D+00, -1.3D-01, -2.9D+00, r^2= 4.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 52 0.462473 13 C py 47 -0.407198 12 C py + 57 -0.400947 14 C py 63 0.391570 16 C py + 75 0.392818 20 C py 69 -0.378240 18 C py + 48 0.319386 12 C pz 58 0.298045 14 C pz + 53 -0.295246 13 C pz 64 -0.271675 16 C pz + + Vector 60 Occ=0.000000D+00 E= 5.335973D-01 + MO Center= 3.1D+00, 7.0D-01, -6.4D-01, r^2= 8.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.727110 10 N s 2 -0.611453 1 N s + 43 -0.535984 11 H s 8 -0.445448 2 C px + 29 0.352447 8 C s 23 -0.347754 5 C px + 81 0.342335 25 H s 30 -0.299770 8 C px + 22 -0.274527 5 C s 80 0.252485 24 H s + + Vector 61 Occ=0.000000D+00 E= 5.609849D-01 + MO Center= 1.8D+00, 4.5D-01, -2.5D-01, r^2= 6.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.608684 3 C s 10 -0.582689 2 C pz + 2 0.551343 1 N s 79 -0.547337 23 H s + 15 -0.386258 3 C pz 39 0.342852 10 N s + 26 0.324185 6 H s 27 -0.321314 7 H s + 25 -0.318304 5 C pz 7 -0.254967 2 C s + + Vector 62 Occ=0.000000D+00 E= 5.685727D-01 + MO Center= 3.4D+00, 5.4D-01, -4.4D-01, r^2= 9.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.803496 10 N s 43 -0.585178 11 H s + 12 -0.555325 3 C s 8 0.543259 2 C px + 2 0.418086 1 N s 86 -0.324258 26 O pz + 45 -0.317743 12 C s 83 0.277927 26 O s + 81 -0.248320 25 H s 48 -0.243210 12 C pz + + Vector 63 Occ=0.000000D+00 E= 5.783672D-01 + MO Center= 3.8D+00, 1.8D-01, -2.2D+00, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 65 0.451584 17 H s 71 0.430617 19 H s + 50 -0.407544 13 C s 78 0.405744 22 H s + 59 0.374774 15 H s 77 0.350689 21 H s + 2 -0.324310 1 N s 45 -0.324004 12 C s + 79 0.319563 23 H s 32 -0.310503 8 C pz + + Vector 64 Occ=0.000000D+00 E= 6.125769D-01 + MO Center= 1.5D+00, 3.4D-01, -1.1D-01, r^2= 6.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 87 -0.497922 27 H s 81 0.483299 25 H s + 24 0.464889 5 C py 9 0.453440 2 C py + 4 0.426605 1 N py 83 0.424471 26 O s + 79 -0.375980 23 H s 12 -0.353987 3 C s + 86 -0.308007 26 O pz 80 0.292355 24 H s + + + center of mass + -------------- + x = 6.31778948 y = 0.49726901 z = -2.03731804 + + moments of inertia (a.u.) + ------------------ + 3632.777476380601 79.377236132538 1748.558360337129 + 79.377236132538 5566.932155187992 -428.649650229871 + 1748.558360337129 -428.649650229871 2926.474631706828 + + Mulliken analysis of the total density + -------------------------------------- + + Atom Charge Shell Charges + ----------- ------ ------------------------------------------------------- + 1 N 7 7.41 2.00 1.59 3.82 + 2 C 6 5.98 1.99 1.18 2.81 + 3 C 6 5.70 1.99 1.10 2.60 + 4 O 8 8.26 2.00 1.87 4.40 + 5 C 6 6.11 1.99 1.18 2.93 + 6 H 1 0.93 0.93 + 7 H 1 0.94 0.94 + 8 C 6 6.04 1.99 1.11 2.93 + 9 C 6 5.96 1.99 1.11 2.85 + 10 N 7 7.32 1.99 1.44 3.89 + 11 H 1 0.78 0.78 + 12 C 6 5.89 1.99 1.09 2.81 + 13 C 6 6.02 1.99 1.11 2.92 + 14 C 6 6.06 1.99 1.13 2.94 + 15 H 1 0.94 0.94 + 16 C 6 6.08 1.99 1.13 2.96 + 17 H 1 0.94 0.94 + 18 C 6 6.06 1.99 1.13 2.94 + 19 H 1 0.94 0.94 + 20 C 6 6.08 1.99 1.12 2.97 + 21 H 1 0.94 0.94 + 22 H 1 0.92 0.92 + 23 H 1 0.84 0.84 + 24 H 1 0.93 0.93 + 25 H 1 0.84 0.84 + 26 O 8 8.31 2.00 1.83 4.49 + 27 H 1 0.77 0.77 + + Multipole analysis of the density wrt the origin + ------------------------------------------------ + + L x y z total open nuclear + - - - - ----- ---- ------- + 0 0 0 0 -0.000000 0.000000 108.000000 + + 1 1 0 0 -0.475078 0.000000 676.930920 + 1 0 1 0 0.375625 0.000000 54.448431 + 1 0 0 1 -0.877967 0.000000 -224.648790 + + 2 2 0 0 -52.883686 0.000000 5603.282547 + 2 1 1 0 6.068975 0.000000 296.023896 + 2 1 0 1 -3.010707 0.000000 -2339.437621 + 2 0 2 0 -59.169874 0.000000 310.736590 + 2 0 1 1 1.348243 0.000000 138.161061 + 2 0 0 2 -66.859565 0.000000 2136.322277 + + + Parallel integral file used 121 records with 0 large values + + *** CALLING NEW AORESP DRIVER FOR CLOSED AND OPEN SHELLS *** + Entering AOResponse driver routine + + +-------------------------------------------------------------------------------- + + **************** + *** RESPONSE *** + **************** + + Response module for NWChem and dynamic CPKS solver + developed by J. Autschbach and coworkers, SUNY Buffalo + The methodology used in this program is described in + ChemPhysChem 12 (2011), 3224-3235 (main reference) + J. Chem. Phys. 123 (2005), 114103 + J. Chem. Phys. 122 (2005), 224115 + J. Chem. Phys. 122 (2005), 074105 + Comp. Lett. 3 (2007), 131-150 (contact JA for a copy) + Please cite this work in publications based on results + obtained with this code. Thank you! + + For extension of response module to open shell + calculations please acknowledge: + F. Aquino, Northwestern University, Schatz Rsrch Group + The update to the methodology is described in + J. Phys. Chem. A 118 (2014) 517-525 + + + + ----------------------------------------------- + Solving response equations for perturbing field + ----------------------------------------------- + + number of frequencies: 1 + frequency in a.u.: 0.0000000E+00 + Perturbing field: electric + Using Dipole Length Gauge + + Setting up CPKS with frequency omega = 0.00000000 a.u. + + STATIC response + + NWChem CPHF Module + ------------------ + + + scftype = RHF + nclosed = 54 + nopen = 0 + variables = 1782 + # of vectors = 3 + tolerance = 0.10D-07 + level shift = 0.00D+00 + max iterations = 50 + max subspace = 30 + + + Integral file = ./Trp_polar.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 230 Max. records in file = 19288 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 8.876D+05 #integrals = 5.216D+06 #direct = 0.0% #cached =100.0% + + SCF residual: 2.1313889800972591E-009 + + +Iterative solution of linear equations + No. of variables 1782 + No. of equations 3 + Maximum subspace 30 + Iterations 50 + Convergence 1.0D-08 + Start time 14.9 + + + iter nsub residual time + ---- ------ -------- --------- + 1 3 1.75D+00 20.1 + 2 6 9.75D-01 25.3 + 3 9 1.24D-01 30.7 + 4 12 7.84D-02 35.8 + 5 15 2.15D-02 40.9 + 6 18 8.05D-03 46.2 + 7 21 2.62D-03 51.3 + 8 24 6.19D-04 56.4 + 9 27 1.73D-04 61.5 + 10 30 3.45D-05 66.6 + 11 30 1.27D-05 71.7 + 12 30 3.46D-06 76.8 + 13 30 8.13D-07 82.4 + 14 30 2.20D-07 87.7 + 15 30 9.27D-08 92.8 + 16 30 3.83D-08 98.1 + 17 30 9.56D-09 103.2 + + Parallel integral file used 120 records with 0 large values + + + Electric Dipole Response Matrix (nonzero elements): + + 1 2 3 + 1 95.1154 -2.2776 -3.7757 + 2 -2.2776 49.9964 30.4190 + 3 -3.7757 30.4190 77.2609 + + DFT Linear Response polarizability / au + Frequency = 0.0000000 / au + Wavelength = Infinity / nm + X Y Z + ----------------------------------------------- + X 95.1154128 -2.2775871 -3.7757114 + Y -2.2775871 49.9963568 30.4190330 + Z -3.7757114 30.4190330 77.2608531 + ----------------------------------------------- + Eigenvalues = 91.5362531 30.2942943 100.5420753 + Isotropic = 74.1242076 + Anisotropic = 54.0568623 + ----------------------------------------------- + + average: 74.124207568359509 + I 0.0000000000000000 + + Magnetic Dipole Response Matrix (nonzero elements): + Optical rotation tensor G' + + 1 2 3 + 1 2.6578 -41.3337 -14.1031 + 2 24.5834 -49.5181 54.5550 + 3 32.9671 -89.3949 46.9648 + average: 3.4811070632445741E-002 + I 0.0000000000000000 + + Principal components and PAS (Real part) + -86.3069 + 83.5151 + 2.8963 + --------------------- + average: 0.0348 + + 1 2 3 + 1 0.3566 -0.3712 0.8573 + 2 0.8772 0.4487 -0.1706 + 3 -0.3214 0.8130 0.4856 + Exiting AOResponse driver routine + + Task times cpu: 104.2s wall: 103.1s + + + NWChem Input Module + ------------------- + + + Summary of allocated global arrays +----------------------------------- + No active global arrays + + + + GA Statistics for process 0 + ------------------------------ + + create destroy get put acc scatter gather read&inc +calls: 1984 1984 6.16e+05 3.42e+04 5.39e+05 1129 0 464 +number of processes/call 1.00e+00 1.00e+00 1.00e+00 0.00e+00 0.00e+00 +bytes total: 6.33e+08 6.50e+07 5.33e+08 6.96e+02 0.00e+00 3.71e+03 +bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 2219688 bytes + +MA_summarize_allocated_blocks: starting scan ... +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +MA usage statistics: + + allocation statistics: + heap stack + ---- ----- + current number of blocks 0 0 + maximum number of blocks 25 35 + current total bytes 0 0 + maximum total bytes 120649536 22511736 + maximum total K-bytes 120650 22512 + maximum total M-bytes 121 23 + + + CITATION + -------- + Please cite the following reference when publishing + results obtained with NWChem: + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + + AUTHORS + ------- + E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, + J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, + S. A. Fischer, S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, + V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, + A. Marenich, A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, + J. Pittner, Y. Zhao, P.-D. Fan, A. Fonari, M. Williamson, R. J. Harrison, + J. R. Rehr, M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, + V. Tipparaju, M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, + L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, A. A. Auer, M. Nooijen, + L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, H. Fruchtl, J. Garza, + K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, K. Wolinski, + J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, H. Dachsel, + M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, A. C. Hess, + J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, + R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, + K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, + A. T. Wong, Z. Zhang. + + Total times cpu: 104.2s wall: 103.4s diff --git a/data/NWChem/basicNWChem7.0/dvb_bomd_ks.nw b/data/NWChem/basicNWChem7.0/dvb_bomd_ks.nw new file mode 100644 index 000000000..af4c94eb2 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_bomd_ks.nw @@ -0,0 +1,45 @@ +start dvb +title "Divinylbenzene in STO-3G basis set" +print low + +geometry units angstroms noautosym noautoz + C 0.27867948 -1.36683162 0.00000000 + C 1.32303041 -0.44173575 0.00000000 + C 1.04434506 0.92484978 0.00000000 + C -0.27867948 1.36683162 0.00000000 + C -1.32303041 0.44173575 0.00000000 + C -1.04434506 -0.92484978 0.00000000 + H 2.36595443 -0.79037726 0.00000000 + H 1.86746094 1.65407997 0.00000000 + H -2.36595443 0.79037726 0.00000000 + H -1.86746094 -1.65407997 0.00000000 + C -0.58659169 2.87589931 0.00000000 + C 0.36350188 3.80076420 0.00000000 + H -1.65647768 3.12394312 0.00000000 + H 0.14429560 4.87693235 0.00000000 + H 1.43338788 3.55272039 0.00000000 + C 0.58659169 -2.87589931 0.00000000 + C -0.36350188 -3.80076420 0.00000000 + H 1.65647768 -3.12394312 0.00000000 + H -0.14429560 -4.87693235 0.00000000 + H -1.43338788 -3.55272039 0.00000000 +end + +basis + * library sto-3g +end + +dft + xc b3lyp +end + +qmd + dt_nucl 25.0 + nstep_nucl 35 + targ_temp 298.0 + thermostat none + rand_seed 123 +end + +task dft qmd + diff --git a/data/NWChem/basicNWChem7.0/dvb_bomd_ks.out b/data/NWChem/basicNWChem7.0/dvb_bomd_ks.out new file mode 100644 index 000000000..ae21288a2 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_bomd_ks.out @@ -0,0 +1,2667 @@ + argument 1 = dvb_bomd_ks.nw + + + + + Northwest Computational Chemistry Package (NWChem) 6.6 + ------------------------------------------------------ + + + Environmental Molecular Sciences Laboratory + Pacific Northwest National Laboratory + Richland, WA 99352 + + Copyright (c) 1994-2015 + Pacific Northwest National Laboratory + Battelle Memorial Institute + + NWChem is an open-source computational chemistry package + distributed under the terms of the + Educational Community License (ECL) 2.0 + A copy of the license is included with this distribution + in the LICENSE.TXT file + + ACKNOWLEDGMENT + -------------- + + This software and its documentation were developed at the + EMSL at Pacific Northwest National Laboratory, a multiprogram + national laboratory, operated for the U.S. Department of Energy + by Battelle under Contract Number DE-AC05-76RL01830. Support + for this work was provided by the Department of Energy Office + of Biological and Environmental Research, Office of Basic + Energy Sciences, and the Office of Advanced Scientific Computing. + + + Job information + --------------- + + hostname = copper + program = nwchem + date = Sun Jul 31 13:09:24 2016 + + compiled = Sun_Feb_14_13:23:17_2016 + source = /build/nwchem-XLLp2O/nwchem-6.6+r27746 + nwchem branch = 6.6 + nwchem revision = 27746 + ga revision = 10594 + input = dvb_bomd_ks.nw + prefix = dvb. + data base = ./dvb.db + status = startup + nproc = 1 + time left = -1s + + + + Memory information + ------------------ + + heap = 13107196 doubles = 100.0 Mbytes + stack = 13107201 doubles = 100.0 Mbytes + global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) + total = 52428797 doubles = 400.0 Mbytes + verify = yes + hardfail = no + + + Directory information + --------------------- + + 0 permanent = . + 0 scratch = . + + + + + NWChem Input Module + ------------------- + + + Divinylbenzene in STO-3G basis set + ---------------------------------- + + Scaling coordinates for geometry "geometry" by 1.889725989 + (inverse scale = 0.529177249) + + + + Geometry "geometry" -> "" + ------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.27867948 -1.36683162 0.00000000 + 2 C 6.0000 1.32303041 -0.44173575 0.00000000 + 3 C 6.0000 1.04434506 0.92484978 0.00000000 + 4 C 6.0000 -0.27867948 1.36683162 0.00000000 + 5 C 6.0000 -1.32303041 0.44173575 0.00000000 + 6 C 6.0000 -1.04434506 -0.92484978 0.00000000 + 7 H 1.0000 2.36595443 -0.79037726 0.00000000 + 8 H 1.0000 1.86746094 1.65407997 0.00000000 + 9 H 1.0000 -2.36595443 0.79037726 0.00000000 + 10 H 1.0000 -1.86746094 -1.65407997 0.00000000 + 11 C 6.0000 -0.58659169 2.87589931 0.00000000 + 12 C 6.0000 0.36350188 3.80076420 0.00000000 + 13 H 1.0000 -1.65647768 3.12394312 0.00000000 + 14 H 1.0000 0.14429560 4.87693235 0.00000000 + 15 H 1.0000 1.43338788 3.55272039 0.00000000 + 16 C 6.0000 0.58659169 -2.87589931 0.00000000 + 17 C 6.0000 -0.36350188 -3.80076420 0.00000000 + 18 H 1.0000 1.65647768 -3.12394312 0.00000000 + 19 H 1.0000 -0.14429560 -4.87693235 0.00000000 + 20 H 1.0000 -1.43338788 -3.55272039 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 450.0061706802 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + -0.0000000000 0.0000000000 0.0000000000 + + + XYZ format geometry + ------------------- + 20 + geometry + C 0.27867948 -1.36683162 0.00000000 + C 1.32303041 -0.44173575 0.00000000 + C 1.04434506 0.92484978 0.00000000 + C -0.27867948 1.36683162 0.00000000 + C -1.32303041 0.44173575 0.00000000 + C -1.04434506 -0.92484978 0.00000000 + H 2.36595443 -0.79037726 0.00000000 + H 1.86746094 1.65407997 0.00000000 + H -2.36595443 0.79037726 0.00000000 + H -1.86746094 -1.65407997 0.00000000 + C -0.58659169 2.87589931 0.00000000 + C 0.36350188 3.80076420 0.00000000 + H -1.65647768 3.12394312 0.00000000 + H 0.14429560 4.87693235 0.00000000 + H 1.43338788 3.55272039 0.00000000 + C 0.58659169 -2.87589931 0.00000000 + C -0.36350188 -3.80076420 0.00000000 + H 1.65647768 -3.12394312 0.00000000 + H -0.14429560 -4.87693235 0.00000000 + H -1.43338788 -3.55272039 0.00000000 + + ============================================================================== + internuclear distances + ------------------------------------------------------------------------------ + center one | center two | atomic units | angstroms + ------------------------------------------------------------------------------ + 2 C | 1 C | 2.63647 | 1.39516 + 3 C | 2 C | 2.63562 | 1.39471 + 4 C | 3 C | 2.63598 | 1.39490 + 5 C | 4 C | 2.63647 | 1.39516 + 6 C | 1 C | 2.63598 | 1.39490 + 6 C | 5 C | 2.63562 | 1.39471 + 7 H | 2 C | 2.07805 | 1.09966 + 8 H | 3 C | 2.07809 | 1.09968 + 9 H | 5 C | 2.07805 | 1.09966 + 10 H | 6 C | 2.07809 | 1.09968 + 11 C | 4 C | 2.91048 | 1.54016 + 12 C | 11 C | 2.50562 | 1.32592 + 13 H | 11 C | 2.07542 | 1.09826 + 14 H | 12 C | 2.07542 | 1.09827 + 15 H | 12 C | 2.07542 | 1.09826 + 16 C | 1 C | 2.91048 | 1.54016 + 17 C | 16 C | 2.50562 | 1.32592 + 18 H | 16 C | 2.07542 | 1.09826 + 19 H | 17 C | 2.07542 | 1.09827 + 20 H | 17 C | 2.07542 | 1.09826 + ------------------------------------------------------------------------------ + number of included internuclear distances: 20 + ============================================================================== + + + + ============================================================================== + internuclear angles + ------------------------------------------------------------------------------ + center 1 | center 2 | center 3 | degrees + ------------------------------------------------------------------------------ + 2 C | 1 C | 6 C | 119.99 + 2 C | 1 C | 16 C | 120.00 + 6 C | 1 C | 16 C | 120.01 + 1 C | 2 C | 3 C | 120.01 + 1 C | 2 C | 7 H | 119.98 + 3 C | 2 C | 7 H | 120.01 + 2 C | 3 C | 4 C | 120.00 + 2 C | 3 C | 8 H | 120.01 + 4 C | 3 C | 8 H | 119.99 + 3 C | 4 C | 5 C | 119.99 + 3 C | 4 C | 11 C | 120.01 + 5 C | 4 C | 11 C | 120.00 + 4 C | 5 C | 6 C | 120.01 + 4 C | 5 C | 9 H | 119.98 + 6 C | 5 C | 9 H | 120.01 + 1 C | 6 C | 5 C | 120.00 + 1 C | 6 C | 10 H | 119.99 + 5 C | 6 C | 10 H | 120.01 + 4 C | 11 C | 12 C | 122.70 + 4 C | 11 C | 13 H | 114.59 + 12 C | 11 C | 13 H | 122.72 + 11 C | 12 C | 14 H | 122.72 + 11 C | 12 C | 15 H | 122.72 + 14 H | 12 C | 15 H | 114.57 + 1 C | 16 C | 17 C | 122.70 + 1 C | 16 C | 18 H | 114.59 + 17 C | 16 C | 18 H | 122.72 + 16 C | 17 C | 19 H | 122.72 + 16 C | 17 C | 20 H | 122.72 + 19 H | 17 C | 20 H | 114.57 + ------------------------------------------------------------------------------ + number of included internuclear angles: 30 + ============================================================================== + + + + + + Summary of "ao basis" -> "" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + * sto-3g on all atoms + + + calling qmd_driver + + + NWChem QMD Module + ----------------- + + + + + QMD Run Parameters + ------------------ + + + No. of nuclear steps: 35 + Nuclear time step: 25.00 + Target temp. (K): 298.00 + Thermostat: none + Random seed: -123 + Nuclear integrator: velocity-verlet + No restart file found + Beginning with random velocities + Current temp. (K): 378.11 + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + Basis "ao basis" -> "ao basis" (cartesian) + ----- + C (Carbon) + ---------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 7.16168370E+01 0.154329 + 1 S 1.30450960E+01 0.535328 + 1 S 3.53051220E+00 0.444635 + + 2 S 2.94124940E+00 -0.099967 + 2 S 6.83483100E-01 0.399513 + 2 S 2.22289900E-01 0.700115 + + 3 P 2.94124940E+00 0.155916 + 3 P 6.83483100E-01 0.607684 + 3 P 2.22289900E-01 0.391957 + + H (Hydrogen) + ------------ + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.42525091E+00 0.154329 + 1 S 6.23913730E-01 0.535328 + 1 S 1.68855400E-01 0.444635 + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + + Caching 1-el integrals + Time after variat. SCF: 0.6 + Time prior to 1st pass: 0.6 + Resetting Diis + + + Total DFT energy = -382.300234496971 + One electron energy = -1408.669142138536 + Coulomb energy = 634.252424248724 + Exchange-Corr. energy = -57.889687287395 + Nuclear repulsion energy = 450.006170680236 + + Numeric. integr. density = 70.000005883413 + + Total iterative time = 12.1s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.526628 -2.582937 0.000000 -0.008591 0.050680 0.000000 + 2 C 2.500165 -0.834760 0.000000 -0.019248 -0.006173 -0.000000 + 3 C 1.973526 1.747713 0.000000 -0.019904 0.001498 0.000000 + 4 C -0.526628 2.582937 0.000000 0.008591 -0.050680 -0.000000 + 5 C -2.500165 0.834760 0.000000 0.019248 0.006173 0.000000 + 6 C -1.973526 -1.747713 0.000000 0.019904 -0.001498 0.000000 + 7 H 4.471006 -1.493596 0.000000 0.001347 0.000197 0.000000 + 8 H 3.528989 3.125758 0.000000 0.001489 0.003437 0.000000 + 9 H -4.471006 1.493596 0.000000 -0.001347 -0.000197 0.000000 + 10 H -3.528989 -3.125758 0.000000 -0.001489 -0.003437 0.000000 + 11 C -1.108498 5.434662 0.000000 0.004656 0.039239 0.000000 + 12 C 0.686919 7.182403 0.000000 -0.013087 -0.023339 -0.000000 + 13 H -3.130289 5.903397 0.000000 0.000323 -0.002973 0.000000 + 14 H 0.272679 9.216066 0.000000 0.001999 0.001526 -0.000000 + 15 H 2.708710 6.713668 0.000000 0.002856 -0.000189 0.000000 + 16 C 1.108498 -5.434662 0.000000 -0.004656 -0.039239 0.000000 + 17 C -0.686919 -7.182403 0.000000 0.013088 0.023339 -0.000000 + 18 H 3.130289 -5.903397 0.000000 -0.000323 0.002973 -0.000000 + 19 H -0.272679 -9.216066 0.000000 -0.001999 -0.001526 -0.000000 + 20 H -2.708710 -6.713668 0.000000 -0.002856 0.000189 -0.000000 + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 18.4 + Time prior to 1st pass: 18.4 + + + Total DFT energy = -382.299603734814 + One electron energy = -1408.442516297194 + Coulomb energy = 634.139748322437 + Exchange-Corr. energy = -57.884578818919 + Nuclear repulsion energy = 449.887743058861 + + Numeric. integr. density = 70.000005695097 + + Total iterative time = 8.5s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.530426 -2.587089 0.004148 -0.006405 0.046915 0.000156 + 2 C 2.501603 -0.835636 0.010231 -0.017258 -0.009968 0.002023 + 3 C 1.970684 1.754350 -0.005098 -0.027287 0.005003 -0.002322 + 4 C -0.522419 2.584359 0.002514 0.013461 -0.050225 0.000698 + 5 C -2.501873 0.840316 -0.006637 0.013438 0.012676 -0.000695 + 6 C -1.973464 -1.749136 -0.006911 0.015421 -0.008648 -0.000271 + 7 H 4.474441 -1.480015 -0.011826 0.000503 0.001140 -0.000892 + 8 H 3.541732 3.128122 0.020130 0.004778 0.005323 0.000913 + 9 H -4.462797 1.498837 0.002404 0.002378 -0.001399 0.000375 + 10 H -3.517233 -3.121055 -0.013970 0.002759 -0.000024 0.000006 + 11 C -1.111440 5.425948 0.006438 0.020549 0.027012 -0.000371 + 12 C 0.692058 7.176984 -0.005230 0.008290 -0.038937 -0.000681 + 13 H -3.186048 5.910779 0.024552 -0.020658 0.002117 0.000344 + 14 H 0.289279 9.251196 0.006780 0.000600 0.016551 0.000281 + 15 H 2.680375 6.723674 -0.011660 -0.012603 0.004527 0.000332 + 16 C 1.107869 -5.429154 -0.003755 0.002805 -0.031584 0.001510 + 17 C -0.689878 -7.190350 0.006002 0.007023 0.008028 -0.000446 + 18 H 3.119386 -5.894885 -0.060279 -0.004567 0.004087 -0.000871 + 19 H -0.283105 -9.205068 -0.010714 -0.003693 0.006614 0.000239 + 20 H -2.698477 -6.699547 0.034316 0.000465 0.000793 -0.000329 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 0.604721 + Kin. energy (a.u.): 1 0.031752 + Pot. energy (a.u.): 1 -382.299604 + Tot. energy (a.u.): 1 -382.267852 + Target temp. (K) : 1 298.00 + Current temp. (K) : 1 371.35 + Dipole (a.u.) : 1 1.202618E-03 -2.264642E-04 -1.028963E-03 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 32.4 + Time prior to 1st pass: 32.4 + + + Total DFT energy = -382.296794147699 + One electron energy = -1408.168996718644 + Coulomb energy = 634.002659904567 + Exchange-Corr. energy = -57.879442129682 + Nuclear repulsion energy = 449.748984796061 + + Numeric. integr. density = 70.000007291492 + + Total iterative time = 8.6s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.534406 -2.592582 0.008291 -0.004108 0.041760 0.000299 + 2 C 2.503533 -0.836228 0.020404 -0.014758 -0.013071 0.004028 + 3 C 1.968621 1.760844 -0.010129 -0.033163 0.008716 -0.004668 + 4 C -0.518594 2.587215 0.005007 0.017959 -0.048413 0.001370 + 5 C -2.503965 0.845509 -0.013254 0.007469 0.018314 -0.001353 + 6 C -1.973842 -1.750312 -0.013814 0.010472 -0.015214 -0.000601 + 7 H 4.477704 -1.466821 -0.023348 -0.000439 0.002043 -0.001742 + 8 H 3.552850 3.128675 0.039948 0.007216 0.006455 0.001856 + 9 H -4.455397 1.504554 0.004680 0.005952 -0.002493 0.000716 + 10 H -3.506415 -3.116344 -0.027942 0.006978 0.003372 0.000050 + 11 C -1.114969 5.416463 0.012887 0.030644 0.014705 -0.000910 + 12 C 0.696960 7.172677 -0.010441 0.028678 -0.049841 -0.001605 + 13 H -3.234779 5.917442 0.048987 -0.036401 0.006160 0.000914 + 14 H 0.305675 9.280696 0.013464 -0.000049 0.027905 0.000662 + 15 H 2.656327 6.732141 -0.023433 -0.027209 0.008844 0.000748 + 16 C 1.107160 -5.422743 -0.007553 0.008941 -0.022649 0.002870 + 17 C -0.693038 -7.198527 0.012017 0.000811 -0.006983 -0.000901 + 18 H 3.110037 -5.887763 -0.120261 -0.007426 0.004779 -0.001593 + 19 H -0.292274 -9.196321 -0.021510 -0.005180 0.014145 0.000594 + 20 H -2.688401 -6.685695 0.068744 0.003614 0.001466 -0.000737 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 1.209442 + Kin. energy (a.u.): 2 0.029058 + Pot. energy (a.u.): 2 -382.296794 + Tot. energy (a.u.): 2 -382.267736 + Target temp. (K) : 2 298.00 + Current temp. (K) : 2 339.85 + Dipole (a.u.) : 2 2.891437E-03 -1.071497E-03 -2.201611E-03 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 46.6 + Time prior to 1st pass: 46.6 + + + Total DFT energy = -382.293569296949 + One electron energy = -1407.846127957403 + Coulomb energy = 633.841935466021 + Exchange-Corr. energy = -57.873778488055 + Nuclear repulsion energy = 449.584401682489 + + Numeric. integr. density = 70.000009836505 + + Total iterative time = 8.7s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.538504 -2.599268 0.012426 -0.001745 0.035304 0.000435 + 2 C 2.505886 -0.836446 0.030462 -0.012007 -0.015356 0.005990 + 3 C 1.967506 1.767089 -0.015027 -0.037024 0.012662 -0.006967 + 4 C -0.515282 2.591455 0.007462 0.021805 -0.045324 0.002021 + 5 C -2.506270 0.850180 -0.019832 0.002094 0.022691 -0.001985 + 6 C -1.974520 -1.751054 -0.020700 0.005842 -0.020413 -0.000983 + 7 H 4.481118 -1.454322 -0.034278 -0.001307 0.002847 -0.002541 + 8 H 3.561512 3.127033 0.059136 0.008530 0.006660 0.002769 + 9 H -4.450023 1.511118 0.006712 0.008723 -0.003245 0.001030 + 10 H -3.497971 -3.112781 -0.041931 0.010441 0.006107 0.000125 + 11 C -1.119374 5.406558 0.019361 0.034774 0.002746 -0.001462 + 12 C 0.701042 7.169794 -0.015605 0.044294 -0.054763 -0.002660 + 13 H -3.271126 5.922008 0.073110 -0.046527 0.009029 0.001564 + 14 H 0.322088 9.300703 0.019923 0.000071 0.034883 0.001066 + 15 H 2.641535 6.737598 -0.035460 -0.037396 0.011980 0.001208 + 16 C 1.106195 -5.415685 -0.011432 0.012856 -0.012743 0.004214 + 17 C -0.696222 -7.206504 0.018058 -0.005040 -0.019808 -0.001336 + 18 H 3.103214 -5.882268 -0.179702 -0.008357 0.004935 -0.002309 + 19 H -0.299682 -9.192385 -0.032508 -0.006166 0.019513 0.001005 + 20 H -2.679555 -6.672342 0.103423 0.006138 0.002295 -0.001185 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 1.814163 + Kin. energy (a.u.): 3 0.025947 + Pot. energy (a.u.): 3 -382.293569 + Tot. energy (a.u.): 3 -382.267622 + Target temp. (K) : 3 298.00 + Current temp. (K) : 3 303.46 + Dipole (a.u.) : 3 4.354933E-03 -1.226527E-03 -3.463850E-03 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 60.7 + Time prior to 1st pass: 60.7 + + + Total DFT energy = -382.291677449477 + One electron energy = -1407.469793314801 + Coulomb energy = 633.656574033725 + Exchange-Corr. energy = -57.867067327632 + Nuclear repulsion energy = 449.388609159232 + + Numeric. integr. density = 70.000012528448 + + Total iterative time = 8.5s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.542652 -2.606962 0.016548 0.000633 0.027688 0.000571 + 2 C 2.508581 -0.836225 0.040348 -0.009260 -0.016746 0.007892 + 3 C 1.967449 1.772972 -0.019726 -0.038574 0.016793 -0.009148 + 4 C -0.512594 2.596989 0.009858 0.024746 -0.041058 0.002658 + 5 C -2.508635 0.854202 -0.026354 -0.002029 0.025512 -0.002607 + 6 C -1.975365 -1.751212 -0.027558 0.002261 -0.023555 -0.001397 + 7 H 4.484975 -1.442791 -0.044343 -0.001929 0.003497 -0.003291 + 8 H 3.567273 3.123124 0.077381 0.008590 0.005890 0.003595 + 9 H -4.447615 1.518787 0.008394 0.010151 -0.003463 0.001333 + 10 H -3.493079 -3.111295 -0.055963 0.012489 0.007590 0.000207 + 11 C -1.124772 5.396574 0.025877 0.033492 -0.008534 -0.001908 + 12 C 0.703859 7.168476 -0.020694 0.051873 -0.053131 -0.003687 + 13 H -3.291645 5.923504 0.096702 -0.051296 0.010724 0.002172 + 14 H 0.338477 9.308842 0.026019 0.000907 0.037306 0.001423 + 15 H 2.639466 6.738980 -0.047898 -0.040110 0.013288 0.001622 + 16 C 1.104863 -5.408264 -0.015433 0.014168 -0.002209 0.005690 + 17 C -0.699261 -7.213916 0.024137 -0.010153 -0.028903 -0.001703 + 18 H 3.099235 -5.878451 -0.238357 -0.007215 0.004532 -0.003173 + 19 H -0.304991 -9.195088 -0.043848 -0.006416 0.021429 0.001366 + 20 H -2.672798 -6.659770 0.138504 0.007671 0.003350 -0.001616 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 2.418884 + Kin. energy (a.u.): 4 0.024106 + Pot. energy (a.u.): 4 -382.291677 + Tot. energy (a.u.): 4 -382.267572 + Target temp. (K) : 4 298.00 + Current temp. (K) : 4 281.92 + Dipole (a.u.) : 4 5.382358E-03 7.050637E-05 -4.746338E-03 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 74.8 + Time prior to 1st pass: 74.8 + + + Total DFT energy = -382.291904099003 + One electron energy = -1407.049624754477 + Coulomb energy = 633.453494981868 + Exchange-Corr. energy = -57.859241304214 + Nuclear repulsion energy = 449.163466977821 + + Numeric. integr. density = 70.000014765856 + + Total iterative time = 8.6s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.546782 -2.615448 0.020654 0.002985 0.019118 0.000710 + 2 C 2.511542 -0.835526 0.050010 -0.006736 -0.017213 0.009721 + 3 C 1.968494 1.778376 -0.024163 -0.037717 0.020973 -0.011149 + 4 C -0.510613 2.603697 0.012179 0.026617 -0.035743 0.003288 + 5 C -2.510942 0.857495 -0.032801 -0.004503 0.026609 -0.003242 + 6 C -1.976274 -1.750698 -0.034376 0.000215 -0.024239 -0.001810 + 7 H 4.489489 -1.432451 -0.053289 -0.002177 0.003955 -0.003997 + 8 H 3.570111 3.117212 0.094403 0.007405 0.004206 0.004279 + 9 H -4.448661 1.527634 0.009623 0.009930 -0.003029 0.001645 + 10 H -3.492436 -3.112390 -0.070065 0.012709 0.007455 0.000271 + 11 C -1.131128 5.386834 0.032448 0.027360 -0.018789 -0.002153 + 12 C 0.705194 7.168676 -0.025677 0.050293 -0.044954 -0.004511 + 13 H -3.294712 5.921350 0.119555 -0.050999 0.011244 0.002641 + 14 H 0.354557 9.304290 0.031631 0.002374 0.035165 0.001666 + 15 H 2.651042 6.735842 -0.060888 -0.034401 0.012555 0.001888 + 16 C 1.103127 -5.400779 -0.019596 0.013052 0.008553 0.007400 + 17 C -0.702010 -7.220501 0.030264 -0.014275 -0.033524 -0.001950 + 18 H 3.097710 -5.876176 -0.295933 -0.004300 0.003647 -0.004292 + 19 H -0.308119 -9.205082 -0.055652 -0.005847 0.019350 0.001559 + 20 H -2.668650 -6.648337 0.174136 0.008016 0.004662 -0.001964 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 3.023605 + Kin. energy (a.u.): 5 0.024296 + Pot. energy (a.u.): 5 -382.291904 + Tot. energy (a.u.): 5 -382.267608 + Target temp. (K) : 5 298.00 + Current temp. (K) : 5 284.15 + Dipole (a.u.) : 5 5.491734E-03 3.156685E-03 -5.966128E-03 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 89.2 + Time prior to 1st pass: 89.2 + + + Total DFT energy = -382.293705888167 + One electron energy = -1406.603623132701 + Coulomb energy = 633.239808390541 + Exchange-Corr. energy = -57.850826120390 + Nuclear repulsion energy = 448.920934974382 + + Numeric. integr. density = 70.000016527211 + + Total iterative time = 8.7s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.550826 -2.624480 0.024740 0.005291 0.009838 0.000857 + 2 C 2.514694 -0.834335 0.059393 -0.004582 -0.016767 0.011459 + 3 C 1.970616 1.783180 -0.028282 -0.034599 0.024982 -0.012923 + 4 C -0.509392 2.611426 0.014406 0.027336 -0.029509 0.003916 + 5 C -2.513121 0.860028 -0.039156 -0.005282 0.025998 -0.003902 + 6 C -1.977189 -1.749490 -0.041142 -0.000205 -0.022441 -0.002192 + 7 H 4.494744 -1.423455 -0.060875 -0.001995 0.004207 -0.004664 + 8 H 3.570430 3.109869 0.109970 0.005132 0.001777 0.004787 + 9 H -4.453086 1.537511 0.010292 0.008093 -0.001953 0.001978 + 10 H -3.496116 -3.116023 -0.084259 0.011069 0.005679 0.000287 + 11 C -1.138265 5.377631 0.039081 0.016619 -0.027665 -0.002107 + 12 C 0.705092 7.170160 -0.030532 0.041144 -0.030827 -0.004994 + 13 H -3.280430 5.915372 0.141509 -0.045649 0.010517 0.002870 + 14 H 0.369829 9.287775 0.036677 0.004375 0.028538 0.001735 + 15 H 2.674321 6.728432 -0.074520 -0.021973 0.010104 0.001940 + 16 C 1.101017 -5.393538 -0.023970 0.010148 0.019123 0.009350 + 17 C -0.704351 -7.226129 0.036448 -0.017232 -0.033932 -0.002049 + 18 H 3.097647 -5.875142 -0.352049 -0.000271 0.002446 -0.005674 + 19 H -0.309257 -9.221658 -0.067987 -0.004568 0.013687 0.001496 + 20 H -2.667228 -6.638490 0.210436 0.007149 0.006199 -0.002171 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 3.628326 + Kin. energy (a.u.): 6 0.026002 + Pot. energy (a.u.): 6 -382.293706 + Tot. energy (a.u.): 6 -382.267704 + Target temp. (K) : 6 298.00 + Current temp. (K) : 6 304.11 + Dipole (a.u.) : 6 4.419669E-03 7.395040E-03 -7.052031E-03 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 103.5 + Time prior to 1st pass: 103.5 + + + Total DFT energy = -382.295616066320 + One electron energy = -1406.161610716478 + Coulomb energy = 633.028659038472 + Exchange-Corr. energy = -57.842796940399 + Nuclear repulsion energy = 448.680132552085 + + Numeric. integr. density = 70.000017279724 + + Total iterative time = 10.0s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.554720 -2.633793 0.028801 0.007550 0.000146 0.001015 + 2 C 2.517978 -0.832666 0.068449 -0.002867 -0.015455 0.013085 + 3 C 1.973727 1.787270 -0.032032 -0.029597 0.028514 -0.014443 + 4 C -0.508952 2.619998 0.016521 0.026927 -0.022520 0.004544 + 5 C -2.515149 0.861819 -0.045399 -0.004654 0.023865 -0.004591 + 6 C -1.978099 -1.747642 -0.047846 0.000700 -0.018546 -0.002524 + 7 H 4.500677 -1.415891 -0.066875 -0.001407 0.004261 -0.005291 + 8 H 3.569004 3.101921 0.123908 0.002081 -0.001123 0.005110 + 9 H -4.460263 1.548052 0.010288 0.004988 -0.000356 0.002334 + 10 H -3.503563 -3.121587 -0.098551 0.007916 0.002592 0.000242 + 11 C -1.145877 5.369218 0.045773 0.001225 -0.034780 -0.001667 + 12 C 0.703814 7.172525 -0.035243 0.027775 -0.011837 -0.005075 + 13 H -3.250619 5.905816 0.162487 -0.035043 0.008414 0.002746 + 14 H 0.383613 9.261550 0.041132 0.006779 0.017688 0.001580 + 15 H 2.705075 6.717585 -0.088813 -0.006202 0.006611 0.001779 + 16 C 1.098618 -5.386844 -0.028611 0.006309 0.029061 0.011444 + 17 C -0.706200 -7.230787 0.042689 -0.018945 -0.031191 -0.002020 + 18 H 3.097677 -5.874940 -0.406235 0.004065 0.001142 -0.007228 + 19 H -0.308841 -9.242891 -0.080831 -0.002847 0.005652 0.001160 + 20 H -2.668239 -6.630752 0.247474 0.005247 0.007862 -0.002198 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 4.233048 + Kin. energy (a.u.): 7 0.027811 + Pot. energy (a.u.): 7 -382.295616 + Tot. energy (a.u.): 7 -382.267805 + Target temp. (K) : 7 298.00 + Current temp. (K) : 7 325.26 + Dipole (a.u.) : 7 1.867635E-03 1.177133E-02 -7.962347E-03 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 118.8 + Time prior to 1st pass: 118.8 + + + Total DFT energy = -382.296073200097 + One electron energy = -1405.753720904803 + Coulomb energy = 632.833355891545 + Exchange-Corr. energy = -57.836212134068 + Nuclear repulsion energy = 448.460503947229 + + Numeric. integr. density = 70.000017340127 + + Total iterative time = 10.3s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.558397 -2.643110 0.032833 0.009719 -0.009628 0.001186 + 2 C 2.521343 -0.830554 0.077132 -0.001566 -0.013403 0.014581 + 3 C 1.977684 1.790546 -0.035369 -0.023306 0.031248 -0.015727 + 4 C -0.509281 2.629214 0.018506 0.025465 -0.014916 0.005170 + 5 C -2.517043 0.862927 -0.051511 -0.003160 0.020500 -0.005294 + 6 C -1.979028 -1.745264 -0.054477 0.002345 -0.013219 -0.002802 + 7 H 4.507089 -1.409776 -0.071074 -0.000481 0.004143 -0.005877 + 8 H 3.566869 3.094355 0.136108 -0.001283 -0.004111 0.005273 + 9 H -4.469138 1.558715 0.009490 0.001198 0.001546 0.002701 + 10 H -3.513702 -3.128033 -0.112925 0.003881 -0.001215 0.000137 + 11 C -1.153523 5.361799 0.052513 -0.018794 -0.039758 -0.000724 + 12 C 0.701743 7.175229 -0.039810 0.013616 0.010333 -0.004770 + 13 H -3.208885 5.893397 0.182531 -0.019033 0.004813 0.002143 + 14 H 0.395091 9.229309 0.045050 0.009399 0.003392 0.001175 + 15 H 2.737939 6.704489 -0.103711 0.009506 0.002806 0.001464 + 16 C 1.096038 -5.380980 -0.033580 0.002408 0.037970 0.013520 + 17 C -0.707508 -7.234554 0.048989 -0.019490 -0.026738 -0.001918 + 18 H 3.096324 -5.875126 -0.457961 0.007955 -0.000058 -0.008802 + 19 H -0.307456 -9.266046 -0.094069 -0.001014 -0.003207 0.000599 + 20 H -2.671035 -6.625689 0.285260 0.002637 0.009502 -0.002036 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 4.837769 + Kin. energy (a.u.): 8 0.028210 + Pot. energy (a.u.): 8 -382.296073 + Tot. energy (a.u.): 8 -382.267863 + Target temp. (K) : 8 298.00 + Current temp. (K) : 8 329.93 + Dipole (a.u.) : 8 -7.292608E-04 1.537565E-02 -8.669568E-03 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 134.9 + Time prior to 1st pass: 134.9 + + + Total DFT energy = -382.294203692049 + One electron energy = -1405.398994619370 + Coulomb energy = 632.661800011155 + Exchange-Corr. energy = -57.831674016082 + Nuclear repulsion energy = 448.274664932248 + + Numeric. integr. density = 70.000016782594 + + Total iterative time = 9.7s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.561797 -2.652152 0.036831 0.011798 -0.019140 0.001374 + 2 C 2.524753 -0.828060 0.085397 -0.000594 -0.010718 0.015916 + 3 C 1.982307 1.792929 -0.038256 -0.016465 0.032782 -0.016811 + 4 C -0.510338 2.638855 0.020343 0.023115 -0.006849 0.005788 + 5 C -2.518847 0.863450 -0.057471 -0.001426 0.016294 -0.005988 + 6 C -1.980025 -1.742508 -0.061029 0.004069 -0.007246 -0.003039 + 7 H 4.513665 -1.405071 -0.073274 0.000632 0.003897 -0.006406 + 8 H 3.565171 3.088188 0.146514 -0.004413 -0.006744 0.005333 + 9 H -4.478420 1.568851 0.007773 -0.002644 0.003505 0.003055 + 10 H -3.525162 -3.134065 -0.127346 -0.000339 -0.005084 -0.000013 + 11 C -1.160633 5.355516 0.059274 -0.042668 -0.042414 0.000792 + 12 C 0.699283 7.177637 -0.044241 0.001178 0.033169 -0.004173 + 13 H -3.160676 5.879341 0.201845 0.001794 -0.000210 0.000974 + 14 H 0.403372 9.195913 0.048568 0.011956 -0.012620 0.000554 + 15 H 2.767570 6.690439 -0.119106 0.022745 -0.000736 0.001078 + 16 C 1.093390 -5.376201 -0.038935 -0.000843 0.045479 0.015381 + 17 C -0.708259 -7.237557 0.055343 -0.019028 -0.021873 -0.001816 + 18 H 3.092265 -5.875293 -0.506693 0.010789 -0.000975 -0.010204 + 19 H -0.305727 -9.288111 -0.107511 0.000635 -0.011462 -0.000086 + 20 H -2.674728 -6.623858 0.323739 -0.000291 0.010944 -0.001708 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 5.442490 + Kin. energy (a.u.): 9 0.026357 + Pot. energy (a.u.): 9 -382.294204 + Tot. energy (a.u.): 9 -382.267847 + Target temp. (K) : 9 298.00 + Current temp. (K) : 9 308.25 + Dipole (a.u.) : 9 -2.943665E-03 1.741901E-02 -9.227580E-03 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 150.2 + Time prior to 1st pass: 150.2 + + + Total DFT energy = -382.290337583929 + One electron energy = -1405.100524617033 + Coulomb energy = 632.515334761773 + Exchange-Corr. energy = -57.829137907618 + Nuclear repulsion energy = 448.123990178949 + + Numeric. integr. density = 70.000015027577 + + Total iterative time = 9.8s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.564860 -2.660647 0.040790 0.013763 -0.028031 0.001581 + 2 C 2.528180 -0.825259 0.093208 0.000180 -0.007541 0.017056 + 3 C 1.987400 1.794375 -0.040663 -0.009851 0.032766 -0.017755 + 4 C -0.512056 2.648693 0.022015 0.020058 0.001546 0.006391 + 5 C -2.520611 0.863507 -0.063261 -0.000037 0.011648 -0.006644 + 6 C -1.981138 -1.739545 -0.067493 0.005278 -0.001368 -0.003257 + 7 H 4.520025 -1.401692 -0.073295 0.001761 0.003575 -0.006857 + 8 H 3.564975 3.084315 0.155106 -0.006747 -0.008574 0.005364 + 9 H -4.486802 1.577796 0.005017 -0.005953 0.005278 0.003370 + 10 H -3.536506 -3.138368 -0.141763 -0.004114 -0.008418 -0.000184 + 11 C -1.166524 5.350445 0.066012 -0.067921 -0.043036 0.002805 + 12 C 0.696789 7.179097 -0.048552 -0.008069 0.053131 -0.003465 + 13 H -3.113078 5.865357 0.220828 0.025186 -0.006116 -0.000714 + 14 H 0.407585 9.166811 0.051898 0.014051 -0.027427 -0.000159 + 15 H 2.789462 6.676639 -0.134869 0.032239 -0.003639 0.000703 + 16 C 1.090765 -5.372722 -0.044729 -0.002929 0.051271 0.016837 + 17 C -0.708466 -7.239935 0.061750 -0.017812 -0.017552 -0.001777 + 18 H 3.084535 -5.875128 -0.551954 0.012168 -0.001484 -0.011254 + 19 H -0.304214 -9.306276 -0.120924 0.001883 -0.018051 -0.000779 + 20 H -2.678322 -6.625751 0.362799 -0.003133 0.012023 -0.001261 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 6.047211 + Kin. energy (a.u.): 10 0.022590 + Pot. energy (a.u.): 10 -382.290338 + Tot. energy (a.u.): 10 -382.267748 + Target temp. (K) : 10 298.00 + Current temp. (K) : 10 264.20 + Dipole (a.u.) : 10 -4.095519E-03 1.798909E-02 -9.717987E-03 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 165.7 + Time prior to 1st pass: 165.7 + + + Total DFT energy = -382.286088218183 + One electron energy = -1404.846084586391 + Coulomb energy = 632.388822123609 + Exchange-Corr. energy = -57.827958384741 + Nuclear repulsion energy = 447.999132629342 + + Numeric. integr. density = 70.000011836727 + + Total iterative time = 8.6s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.567529 -2.668341 0.044704 0.015559 -0.035974 0.001813 + 2 C 2.531602 -0.822243 0.100532 0.000901 -0.004037 0.017974 + 3 C 1.992775 1.794885 -0.042563 -0.004124 0.030992 -0.018625 + 4 C -0.514346 2.658486 0.023505 0.016448 0.010148 0.006969 + 5 C -2.522374 0.863231 -0.068860 0.000546 0.006926 -0.007230 + 6 C -1.982401 -1.736543 -0.073865 0.005531 0.003822 -0.003483 + 7 H 4.525787 -1.399529 -0.070983 0.002751 0.003228 -0.007213 + 8 H 3.567073 3.083359 0.161873 -0.007828 -0.009247 0.005443 + 9 H -4.493160 1.584944 0.001115 -0.008266 0.006662 0.003621 + 10 H -3.546451 -3.139808 -0.156117 -0.006957 -0.010761 -0.000346 + 11 C -1.170474 5.346604 0.072671 -0.089675 -0.042631 0.004961 + 12 C 0.694525 7.179039 -0.052764 -0.013373 0.066106 -0.002902 + 13 H -3.074049 5.853453 0.240054 0.046504 -0.011686 -0.002601 + 14 H 0.407018 9.147039 0.055282 0.015218 -0.037388 -0.000746 + 15 H 2.800386 6.664077 -0.150870 0.037483 -0.005680 0.000412 + 16 C 1.088225 -5.370707 -0.051004 -0.003557 0.055093 0.017731 + 17 C -0.708164 -7.241812 0.068207 -0.016130 -0.014358 -0.001840 + 18 H 3.072666 -5.874458 -0.593386 0.011894 -0.001511 -0.011805 + 19 H -0.303341 -9.318300 -0.134072 0.002603 -0.022309 -0.001369 + 20 H -2.680850 -6.631733 0.402287 -0.005531 0.012605 -0.000762 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 6.651932 + Kin. energy (a.u.): 11 0.018482 + Pot. energy (a.u.): 11 -382.286088 + Tot. energy (a.u.): 11 -382.267606 + Target temp. (K) : 11 298.00 + Current temp. (K) : 11 216.16 + Dipole (a.u.) : 11 -3.416278E-03 1.825022E-02 -1.019813E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 179.9 + Time prior to 1st pass: 179.9 + + + Total DFT energy = -382.283659499678 + One electron energy = -1404.617874417225 + Coulomb energy = 632.275142321931 + Exchange-Corr. energy = -57.827282998544 + Nuclear repulsion energy = 447.886355594160 + + Numeric. integr. density = 70.000007921126 + + Total iterative time = 8.6s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.569754 -2.675008 0.048566 0.017187 -0.042671 0.002075 + 2 C 2.534999 -0.819111 0.107342 0.001692 -0.000325 0.018632 + 3 C 1.998267 1.794510 -0.043931 0.000309 0.027426 -0.019441 + 4 C -0.517107 2.667989 0.024795 0.012511 0.018815 0.007511 + 5 C -2.524152 0.862757 -0.074254 0.000031 0.002482 -0.007724 + 6 C -1.983823 -1.733650 -0.080137 0.004589 0.007858 -0.003741 + 7 H 4.530613 -1.398465 -0.066217 0.003434 0.002907 -0.007447 + 8 H 3.571835 3.085549 0.166789 -0.007476 -0.008629 0.005611 + 9 H -4.496705 1.589826 -0.004020 -0.009326 0.007527 0.003791 + 10 H -3.554029 -3.137586 -0.170353 -0.008585 -0.011847 -0.000471 + 11 C -1.171862 5.343980 0.079187 -0.101518 -0.042746 0.006592 + 12 C 0.692644 7.177093 -0.056894 -0.014360 0.068825 -0.002759 + 13 H -3.050840 5.845524 0.260165 0.059531 -0.015218 -0.004056 + 14 H 0.401273 9.139987 0.058920 0.015066 -0.039549 -0.000966 + 15 H 2.798559 6.653447 -0.167012 0.038312 -0.006727 0.000271 + 16 C 1.085786 -5.370267 -0.057786 -0.002620 0.056784 0.017943 + 17 C -0.707401 -7.243278 0.074716 -0.014217 -0.012570 -0.002032 + 18 H 3.056750 -5.873274 -0.630802 0.009933 -0.001035 -0.011746 + 19 H -0.303354 -9.322735 -0.146754 0.002739 -0.023917 -0.001759 + 20 H -2.681497 -6.642004 0.442035 -0.007233 0.012609 -0.000283 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 7.256653 + Kin. energy (a.u.): 12 0.016142 + Pot. energy (a.u.): 12 -382.283659 + Tot. energy (a.u.): 12 -382.267517 + Target temp. (K) : 12 298.00 + Current temp. (K) : 12 188.79 + Dipole (a.u.) : 12 -3.403388E-03 1.843854E-02 -1.068928E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 194.5 + Time prior to 1st pass: 194.5 + + + Total DFT energy = -382.284393093428 + One electron energy = -1404.404504686431 + Coulomb energy = 632.169434153870 + Exchange-Corr. energy = -57.826598554103 + Nuclear repulsion energy = 447.777275993237 + + Numeric. integr. density = 70.000003867365 + + Total iterative time = 9.0s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.571488 -2.680455 0.052369 0.018586 -0.047885 0.002379 + 2 C 2.538347 -0.815971 0.113620 0.002655 0.003425 0.019015 + 3 C 2.003751 1.793351 -0.044744 0.003371 0.022312 -0.020204 + 4 C -0.520225 2.676955 0.025871 0.008373 0.027371 0.008005 + 5 C -2.525931 0.862213 -0.079426 -0.001712 -0.001446 -0.008109 + 6 C -1.985376 -1.730981 -0.086302 0.002349 0.010481 -0.004052 + 7 H 4.534270 -1.398389 -0.058917 0.003722 0.002648 -0.007547 + 8 H 3.579140 3.090674 0.169796 -0.005767 -0.006800 0.005870 + 9 H -4.497078 1.592148 -0.010444 -0.009000 0.007792 0.003871 + 10 H -3.558686 -3.131334 -0.184429 -0.008845 -0.011545 -0.000536 + 11 C -1.170350 5.342578 0.085515 -0.098684 -0.044562 0.006986 + 12 C 0.691173 7.173180 -0.060944 -0.010985 0.060433 -0.003212 + 13 H -3.047883 5.842773 0.281655 0.059592 -0.015415 -0.004396 + 14 H 0.390403 9.146389 0.062886 0.013469 -0.033218 -0.000675 + 15 H 2.783698 6.645106 -0.183246 0.034702 -0.006709 0.000345 + 16 C 1.083421 -5.371449 -0.065081 -0.000226 0.056254 0.017419 + 17 C -0.706232 -7.244385 0.081284 -0.012267 -0.012280 -0.002359 + 18 H 3.037455 -5.871738 -0.664221 0.006441 -0.000091 -0.011038 + 19 H -0.304298 -9.319033 -0.158838 0.002285 -0.022768 -0.001868 + 20 H -2.679682 -6.656565 0.481879 -0.008058 0.012003 0.000106 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 7.861374 + Kin. energy (a.u.): 13 0.016833 + Pot. energy (a.u.): 13 -382.284393 + Tot. energy (a.u.): 13 -382.267560 + Target temp. (K) : 13 298.00 + Current temp. (K) : 13 196.87 + Dipole (a.u.) : 13 -4.248842E-03 1.925115E-02 -1.119203E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 209.3 + Time prior to 1st pass: 209.3 + + + Total DFT energy = -382.287631452883 + One electron energy = -1404.211372795903 + Coulomb energy = 632.074411549527 + Exchange-Corr. energy = -57.826050280707 + Nuclear repulsion energy = 447.675380074200 + + Numeric. integr. density = 70.000000130737 + + Total iterative time = 8.4s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.572691 -2.684534 0.056104 0.019685 -0.051448 0.002733 + 2 C 2.541619 -0.812928 0.119354 0.003830 0.007042 0.019124 + 3 C 2.009138 1.791555 -0.044979 0.005280 0.016112 -0.020876 + 4 C -0.523582 2.685139 0.026718 0.004169 0.035509 0.008435 + 5 C -2.527661 0.861710 -0.084367 -0.004633 -0.004711 -0.008376 + 6 C -1.986995 -1.728613 -0.092351 -0.001131 0.011593 -0.004426 + 7 H 4.536661 -1.399215 -0.049051 0.003588 0.002475 -0.007509 + 8 H 3.588407 3.098113 0.170805 -0.003039 -0.004064 0.006179 + 9 H -4.494389 1.591818 -0.018185 -0.007317 0.007443 0.003861 + 10 H -3.560335 -3.121154 -0.198323 -0.007725 -0.009862 -0.000521 + 11 C -1.166018 5.342449 0.091643 -0.081310 -0.047969 0.005827 + 12 C 0.690016 7.167541 -0.064903 -0.003478 0.042961 -0.004275 + 13 H -3.065199 5.845266 0.304642 0.046725 -0.012285 -0.003319 + 14 H 0.374951 9.164093 0.067082 0.010645 -0.020391 0.000089 + 15 H 2.757031 6.639047 -0.199598 0.026697 -0.005601 0.000703 + 16 C 1.081063 -5.374238 -0.072873 0.003295 0.053534 0.016187 + 17 C -0.704713 -7.245142 0.087919 -0.010391 -0.013418 -0.002823 + 18 H 3.015969 -5.870171 -0.693886 0.001765 0.001224 -0.009721 + 19 H -0.306021 -9.307586 -0.170286 0.001271 -0.018945 -0.001637 + 20 H -2.675127 -6.675209 0.521688 -0.007924 0.010801 0.000345 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 8.466095 + Kin. energy (a.u.): 14 0.019926 + Pot. energy (a.u.): 14 -382.287631 + Tot. energy (a.u.): 14 -382.267706 + Target temp. (K) : 14 298.00 + Current temp. (K) : 14 233.04 + Dipole (a.u.) : 14 -5.866789E-03 2.034241E-02 -1.171346E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 223.4 + Time prior to 1st pass: 223.4 + + + Total DFT energy = -382.291163628204 + One electron energy = -1404.052856614500 + Coulomb energy = 631.994545586448 + Exchange-Corr. energy = -57.826299728642 + Nuclear repulsion energy = 447.593447128490 + + Numeric. integr. density = 69.999997249956 + + Total iterative time = 9.7s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.573332 -2.687143 0.059761 0.020432 -0.053284 0.003143 + 2 C 2.544781 -0.810086 0.124542 0.005207 0.010388 0.018967 + 3 C 2.014374 1.789298 -0.044617 0.006432 0.009426 -0.021385 + 4 C -0.527058 2.692308 0.027324 0.000048 0.042857 0.008781 + 5 C -2.529259 0.861341 -0.089068 -0.008512 -0.007232 -0.008524 + 6 C -1.988583 -1.726575 -0.098274 -0.005653 0.011261 -0.004863 + 7 H 4.537832 -1.400882 -0.036629 0.003063 0.002391 -0.007336 + 8 H 3.598708 3.106934 0.169713 0.000197 -0.000871 0.006460 + 9 H -4.489210 1.588956 -0.027239 -0.004462 0.006527 0.003770 + 10 H -3.559355 -3.107619 -0.212039 -0.005368 -0.006958 -0.000416 + 11 C -1.159362 5.343691 0.097605 -0.054390 -0.051560 0.003408 + 12 C 0.688958 7.160673 -0.068739 0.007503 0.020134 -0.005814 + 13 H -3.098412 5.851938 0.328757 0.025693 -0.007134 -0.001124 + 14 H 0.355878 9.188733 0.071247 0.007069 -0.004594 0.001137 + 15 H 2.721282 6.634894 -0.216188 0.014609 -0.003460 0.001413 + 16 C 1.078611 -5.378557 -0.081128 0.007392 0.048782 0.014377 + 17 C -0.702897 -7.245514 0.094634 -0.008626 -0.015738 -0.003423 + 18 H 2.993883 -5.869020 -0.720243 -0.003543 0.002753 -0.007928 + 19 H -0.308175 -9.289693 -0.181178 -0.000225 -0.012762 -0.001037 + 20 H -2.667876 -6.697527 0.561378 -0.006867 0.009074 0.000394 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 9.070816 + Kin. energy (a.u.): 15 0.023323 + Pot. energy (a.u.): 15 -382.291164 + Tot. energy (a.u.): 15 -382.267840 + Target temp. (K) : 15 298.00 + Current temp. (K) : 15 272.77 + Dipole (a.u.) : 15 -7.272343E-03 2.049716E-02 -1.232907E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 238.9 + Time prior to 1st pass: 238.9 + + + Total DFT energy = -382.292888890640 + One electron energy = -1403.947116809886 + Coulomb energy = 631.938410403886 + Exchange-Corr. energy = -57.828009623903 + Nuclear repulsion energy = 447.543827139263 + + Numeric. integr. density = 69.999995458588 + + Total iterative time = 10.3s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.573389 -2.688230 0.063328 0.020811 -0.053419 0.003620 + 2 C 2.547795 -0.807541 0.129188 0.006729 0.013374 0.018555 + 3 C 2.019427 1.786772 -0.043645 0.007304 0.002852 -0.021651 + 4 C -0.530536 2.698252 0.027679 -0.003821 0.048969 0.009023 + 5 C -2.530613 0.861179 -0.093526 -0.012966 -0.009009 -0.008570 + 6 C -1.990009 -1.724859 -0.104058 -0.010847 0.009696 -0.005351 + 7 H 4.537961 -1.403363 -0.021712 0.002214 0.002386 -0.007036 + 8 H 3.608942 3.116051 0.166423 0.003391 0.002292 0.006627 + 9 H -4.482514 1.583874 -0.037576 -0.000817 0.005177 0.003619 + 10 H -3.556549 -3.091717 -0.225614 -0.002086 -0.003149 -0.000226 + 11 C -1.151153 5.346406 0.103470 -0.024458 -0.053560 0.000384 + 12 C 0.687686 7.153231 -0.072410 0.020754 -0.004160 -0.007624 + 13 H -3.140365 5.861037 0.353255 0.002676 -0.001629 0.001551 + 14 H 0.334400 9.214936 0.075026 0.003273 0.010732 0.002238 + 15 H 2.680564 6.631918 -0.233260 -0.000665 -0.000502 0.002501 + 16 C 1.075948 -5.384269 -0.089793 0.011272 0.042239 0.012215 + 17 C -0.700834 -7.245438 0.101448 -0.006912 -0.018693 -0.004135 + 18 H 2.973002 -5.868807 -0.743904 -0.008759 0.004289 -0.005889 + 19 H -0.310253 -9.267459 -0.191717 -0.002068 -0.004821 -0.000094 + 20 H -2.658288 -6.722932 0.600935 -0.005026 0.006936 0.000243 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 9.675537 + Kin. energy (a.u.): 16 0.025010 + Pot. energy (a.u.): 16 -382.292889 + Tot. energy (a.u.): 16 -382.267879 + Target temp. (K) : 16 298.00 + Current temp. (K) : 16 292.50 + Dipole (a.u.) : 16 -9.086939E-03 1.859295E-02 -1.311502E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 254.9 + Time prior to 1st pass: 254.9 + + + Total DFT energy = -382.292130556561 + One electron energy = -1403.898196012957 + Coulomb energy = 631.907870364942 + Exchange-Corr. energy = -57.831340085306 + Nuclear repulsion energy = 447.529535176760 + + Numeric. integr. density = 69.999994687325 + + Total iterative time = 10.2s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.572851 -2.687790 0.066791 0.020775 -0.051926 0.004168 + 2 C 2.550617 -0.805378 0.133304 0.008285 0.015887 0.017915 + 3 C 2.024271 1.784164 -0.042054 0.008307 -0.003042 -0.021621 + 4 C -0.533904 2.702798 0.027776 -0.007364 0.053450 0.009142 + 5 C -2.531597 0.861275 -0.097739 -0.017445 -0.010159 -0.008528 + 6 C -1.991125 -1.723420 -0.109689 -0.016174 0.007328 -0.005853 + 7 H 4.537336 -1.406655 -0.004401 0.001177 0.002436 -0.006628 + 8 H 3.618023 3.124389 0.160878 0.006084 0.005006 0.006616 + 9 H -4.475540 1.577030 -0.049144 0.003113 0.003579 0.003429 + 10 H -3.553034 -3.074743 -0.239112 0.001649 0.001104 0.000025 + 11 C -1.142245 5.350651 0.109323 0.003536 -0.052735 -0.002626 + 12 C 0.685821 7.145908 -0.075863 0.034079 -0.026852 -0.009444 + 13 H -3.183228 5.870691 0.377225 -0.017708 0.003035 0.004101 + 14 H 0.311808 9.237489 0.078044 -0.000294 0.023242 0.003203 + 15 H 2.640071 6.629113 -0.251182 -0.017142 0.002782 0.003893 + 16 C 1.072963 -5.391189 -0.098808 0.014024 0.034263 0.010023 + 17 C -0.698574 -7.244827 0.108380 -0.005179 -0.021423 -0.004902 + 18 H 2.955100 -5.870052 -0.765560 -0.013033 0.005590 -0.003919 + 19 H -0.311627 -9.243585 -0.202224 -0.004047 0.003895 0.001089 + 20 H -2.646991 -6.750698 0.640409 -0.002643 0.004541 -0.000083 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 10.280258 + Kin. energy (a.u.): 17 0.024314 + Pot. energy (a.u.): 17 -382.292131 + Tot. energy (a.u.): 17 -382.267816 + Target temp. (K) : 17 298.00 + Current temp. (K) : 17 284.37 + Dipole (a.u.) : 17 -1.042336E-02 1.501242E-02 -1.412410E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 270.6 + Time prior to 1st pass: 270.6 + + + Total DFT energy = -382.289799972023 + One electron energy = -1403.894729105861 + Coulomb energy = 631.898785748413 + Exchange-Corr. energy = -57.835793287329 + Nuclear repulsion energy = 447.541936672753 + + Numeric. integr. density = 69.999994390453 + + Total iterative time = 9.9s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.571719 -2.685867 0.070136 0.020290 -0.048947 0.004785 + 2 C 2.553202 -0.803669 0.136908 0.009733 0.017856 0.017076 + 3 C 2.028877 1.781643 -0.039845 0.009742 -0.007797 -0.021264 + 4 C -0.537063 2.705816 0.027612 -0.010546 0.056005 0.009123 + 5 C -2.532083 0.861660 -0.101708 -0.021292 -0.010850 -0.008416 + 6 C -1.991779 -1.722191 -0.115153 -0.020944 0.004724 -0.006315 + 7 H 4.536311 -1.410777 0.015164 0.000115 0.002500 -0.006128 + 8 H 3.625033 3.131025 0.153083 0.007931 0.006956 0.006382 + 9 H -4.469624 1.568969 -0.061879 0.006709 0.001970 0.003221 + 10 H -3.550080 -3.058145 -0.252619 0.005210 0.005210 0.000295 + 11 C -1.133438 5.356403 0.115252 0.027077 -0.048612 -0.005234 + 12 C 0.682982 7.139351 -0.079045 0.044224 -0.045694 -0.010914 + 13 H -3.220067 5.879311 0.399800 -0.033239 0.006339 0.006154 + 14 H 0.289316 9.252134 0.079972 -0.003313 0.031708 0.003912 + 15 H 2.605410 6.625362 -0.270428 -0.031647 0.005590 0.005343 + 16 C 1.069577 -5.399087 -0.108108 0.014786 0.025238 0.008146 + 17 C -0.696166 -7.243604 0.115451 -0.003336 -0.022743 -0.005613 + 18 H 2.941633 -5.873199 -0.785884 -0.015574 0.006432 -0.002345 + 19 H -0.311625 -9.221035 -0.213102 -0.005872 0.012046 0.002309 + 20 H -2.634795 -6.780008 0.679911 -0.000055 0.002069 -0.000516 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 10.884979 + Kin. energy (a.u.): 18 0.022101 + Pot. energy (a.u.): 18 -382.289800 + Tot. energy (a.u.): 18 -382.267699 + Target temp. (K) : 18 298.00 + Current temp. (K) : 18 258.48 + Dipole (a.u.) : 18 -1.111073E-02 1.083369E-02 -1.536007E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 286.0 + Time prior to 1st pass: 286.0 + + + Total DFT energy = -382.287668642998 + One electron energy = -1403.914756403520 + Coulomb energy = 631.902283652002 + Exchange-Corr. energy = -57.840448507259 + Nuclear repulsion energy = 447.565252615779 + + Numeric. integr. density = 69.999994118284 + + Total iterative time = 8.5s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.570008 -2.682545 0.073343 0.019339 -0.044665 0.005467 + 2 C 2.555509 -0.802470 0.140024 0.010916 0.019256 0.016065 + 3 C 2.033205 1.779345 -0.037029 0.011775 -0.011088 -0.020578 + 4 C -0.539919 2.707234 0.027187 -0.013356 0.056468 0.008956 + 5 C -2.531960 0.862356 -0.105437 -0.023830 -0.011253 -0.008241 + 6 C -1.991835 -1.721096 -0.120436 -0.024402 0.002511 -0.006664 + 7 H 4.535247 -1.415748 0.036815 -0.000796 0.002531 -0.005554 + 8 H 3.629346 3.135293 0.143117 0.008719 0.007939 0.005914 + 9 H -4.465992 1.560237 -0.075710 0.009332 0.000589 0.003007 + 10 H -3.548898 -3.043319 -0.266226 0.007894 0.008530 0.000517 + 11 C -1.125404 5.363544 0.121330 0.045320 -0.041301 -0.007256 + 12 C 0.678880 7.134101 -0.081916 0.047558 -0.059021 -0.011556 + 13 H -3.245599 5.885775 0.420281 -0.043348 0.008213 0.007548 + 14 H 0.267951 9.255992 0.080569 -0.005573 0.035638 0.004301 + 15 H 2.581516 6.619708 -0.291493 -0.040499 0.006972 0.006421 + 16 C 1.065769 -5.407706 -0.117642 0.012972 0.015523 0.006857 + 17 C -0.693662 -7.241731 0.122683 -0.001288 -0.021349 -0.006117 + 18 H 2.933464 -5.878535 -0.805410 -0.015857 0.006664 -0.001419 + 19 H -0.309625 -9.202584 -0.224765 -0.007222 0.018141 0.003276 + 20 H -2.622580 -6.810022 0.719589 0.002347 -0.000299 -0.000946 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 11.489701 + Kin. energy (a.u.): 19 0.020070 + Pot. energy (a.u.): 19 -382.287669 + Tot. energy (a.u.): 19 -382.267599 + Target temp. (K) : 19 298.00 + Current temp. (K) : 19 234.72 + Dipole (a.u.) : 19 -1.130397E-02 7.269512E-03 -1.680409E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 300.1 + Time prior to 1st pass: 300.1 + + + Total DFT energy = -382.287270380763 + One electron energy = -1403.937444300894 + Coulomb energy = 631.910091779012 + Exchange-Corr. energy = -57.844492184593 + Nuclear repulsion energy = 447.584574325713 + + Numeric. integr. density = 69.999994061498 + + Total iterative time = 8.6s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.567744 -2.677947 0.076395 0.017891 -0.039266 0.006204 + 2 C 2.557504 -0.801822 0.142681 0.011689 0.020025 0.014911 + 3 C 2.037197 1.777364 -0.033625 0.014456 -0.012726 -0.019597 + 4 C -0.542394 2.707039 0.026507 -0.015837 0.054839 0.008636 + 5 C -2.531156 0.863373 -0.108931 -0.024522 -0.011543 -0.008001 + 6 C -1.991193 -1.720073 -0.125529 -0.025885 0.001233 -0.006822 + 7 H 4.534453 -1.421581 0.060355 -0.001394 0.002484 -0.004918 + 8 H 3.630692 3.136861 0.131138 0.008383 0.007883 0.005230 + 9 H -4.465534 1.551305 -0.090564 0.010471 -0.000374 0.002784 + 10 H -3.550401 -3.031395 -0.280008 0.009100 0.010537 0.000623 + 11 C -1.118665 5.371865 0.127616 0.058098 -0.031235 -0.008604 + 12 C 0.673419 7.130536 -0.084457 0.041641 -0.065710 -0.010891 + 13 H -3.256383 5.889445 0.438194 -0.048160 0.008766 0.008228 + 14 H 0.248482 9.247726 0.079702 -0.006934 0.034866 0.004337 + 15 H 2.571399 6.611683 -0.314741 -0.041097 0.006234 0.006659 + 16 C 1.061590 -5.416769 -0.127372 0.008515 0.005472 0.006277 + 17 C -0.691122 -7.239249 0.130090 0.001030 -0.016267 -0.006269 + 18 H 2.930689 -5.886137 -0.824453 -0.013799 0.006247 -0.001238 + 19 H -0.305168 -9.190305 -0.237542 -0.007812 0.020940 0.003685 + 20 H -2.611163 -6.839934 0.759589 0.004166 -0.002407 -0.001234 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 12.094422 + Kin. energy (a.u.): 20 0.019697 + Pot. energy (a.u.): 20 -382.287270 + Tot. energy (a.u.): 20 -382.267573 + Target temp. (K) : 20 298.00 + Current temp. (K) : 20 230.36 + Dipole (a.u.) : 20 -1.080031E-02 5.091995E-03 -1.840022E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 314.3 + Time prior to 1st pass: 314.3 + + + Total DFT energy = -382.289006068233 + One electron energy = -1403.951077476061 + Coulomb energy = 631.916834020619 + Exchange-Corr. energy = -57.847540400999 + Nuclear repulsion energy = 447.592777788208 + + Numeric. integr. density = 69.999994443464 + + Total iterative time = 8.5s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.564969 -2.672227 0.079269 0.015960 -0.032971 0.006986 + 2 C 2.559164 -0.801746 0.144913 0.011952 0.020188 0.013627 + 3 C 2.040776 1.775747 -0.029661 0.017689 -0.012686 -0.018366 + 4 C -0.544417 2.705277 0.025580 -0.017985 0.051227 0.008158 + 5 C -2.529652 0.864720 -0.112196 -0.023086 -0.011739 -0.007677 + 6 C -1.989812 -1.719086 -0.130427 -0.025009 0.001171 -0.006730 + 7 H 4.534134 -1.428259 0.085568 -0.001571 0.002323 -0.004222 + 8 H 3.629187 3.135747 0.117381 0.006967 0.006807 0.004369 + 9 H -4.468638 1.542500 -0.106365 0.009857 -0.000830 0.002534 + 10 H -3.555000 -3.023056 -0.294003 0.008476 0.010938 0.000554 + 11 C -1.113587 5.381078 0.134147 0.065229 -0.019056 -0.009198 + 12 C 0.666768 7.128849 -0.086687 0.026709 -0.065316 -0.008682 + 13 H -3.250783 5.890133 0.453308 -0.047868 0.008124 0.008165 + 14 H 0.231371 9.227598 0.077361 -0.007298 0.029345 0.004002 + 15 H 2.575264 6.601538 -0.340255 -0.033379 0.003338 0.005787 + 16 C 1.057168 -5.425989 -0.137280 0.001869 -0.004643 0.006334 + 17 C -0.688611 -7.236301 0.137676 0.003687 -0.007254 -0.006005 + 18 H 2.932608 -5.895865 -0.843075 -0.009793 0.005267 -0.001713 + 19 H -0.298053 -9.185149 -0.251574 -0.007496 0.019920 0.003316 + 20 H -2.601164 -6.869028 0.800008 0.005090 -0.004153 -0.001240 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 12.699143 + Kin. energy (a.u.): 21 0.021373 + Pot. energy (a.u.): 21 -382.289006 + Tot. energy (a.u.): 21 -382.267633 + Target temp. (K) : 21 298.00 + Current temp. (K) : 21 249.97 + Dipole (a.u.) : 21 -1.031187E-02 4.268400E-03 -2.006234E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 328.4 + Time prior to 1st pass: 328.4 + + + Total DFT energy = -382.291974492159 + One electron energy = -1403.957070355794 + Coulomb energy = 631.922470191981 + Exchange-Corr. energy = -57.849824415583 + Nuclear repulsion energy = 447.592450087237 + + Numeric. integr. density = 69.999995174539 + + Total iterative time = 8.4s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.561738 -2.665566 0.081944 0.013572 -0.025985 0.007800 + 2 C 2.560484 -0.802246 0.146754 0.011669 0.019768 0.012223 + 3 C 2.043849 1.774492 -0.025172 0.021264 -0.011115 -0.016949 + 4 C -0.545926 2.702051 0.024419 -0.019788 0.045858 0.007523 + 5 C -2.527488 0.866403 -0.115241 -0.019603 -0.011763 -0.007245 + 6 C -1.987716 -1.718132 -0.135133 -0.021794 0.002274 -0.006364 + 7 H 4.534349 -1.435727 0.112217 -0.001285 0.002026 -0.003465 + 8 H 3.625311 3.132317 0.102137 0.004648 0.004849 0.003390 + 9 H -4.475096 1.533978 -0.123028 0.007564 -0.000816 0.002231 + 10 H -3.562483 -3.018438 -0.308186 0.006063 0.009775 0.000286 + 11 C -1.110372 5.390836 0.140941 0.066243 -0.005472 -0.008914 + 12 C 0.659354 7.129029 -0.088668 0.005664 -0.058131 -0.005081 + 13 H -3.228899 5.888057 0.465645 -0.042427 0.006350 0.007302 + 14 H 0.216744 9.197487 0.073657 -0.006611 0.019151 0.003299 + 15 H 2.590484 6.590256 -0.367738 -0.019864 -0.001060 0.003892 + 16 C 1.052692 -5.435075 -0.147370 -0.006053 -0.014545 0.006796 + 17 C -0.686205 -7.233146 0.145434 0.006688 0.004957 -0.005381 + 18 H 2.937860 -5.907384 -0.861115 -0.004586 0.003892 -0.002610 + 19 H -0.288388 -9.186770 -0.266733 -0.006316 0.015482 0.002124 + 20 H -2.592896 -6.896709 0.840850 0.004956 -0.005495 -0.000856 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 13.303864 + Kin. energy (a.u.): 22 0.024237 + Pot. energy (a.u.): 22 -382.291974 + Tot. energy (a.u.): 22 -382.267738 + Target temp. (K) : 22 298.00 + Current temp. (K) : 22 283.46 + Dipole (a.u.) : 22 -1.026917E-02 4.187358E-03 -2.167392E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 342.2 + Time prior to 1st pass: 342.2 + + + Total DFT energy = -382.294558725944 + One electron energy = -1403.964468514008 + Coulomb energy = 631.929747688656 + Exchange-Corr. energy = -57.851951020011 + Nuclear repulsion energy = 447.592113119419 + + Numeric. integr. density = 69.999996077885 + + Total iterative time = 8.4s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.558120 -2.658161 0.084395 0.010776 -0.018510 0.008637 + 2 C 2.561470 -0.803311 0.148247 0.010879 0.018814 0.010706 + 3 C 2.046315 1.773554 -0.020198 0.024835 -0.008318 -0.015416 + 4 C -0.546869 2.697515 0.023044 -0.021203 0.039040 0.006733 + 5 C -2.524764 0.868421 -0.118079 -0.014493 -0.011429 -0.006684 + 6 C -1.984998 -1.717243 -0.139657 -0.016663 0.004171 -0.005753 + 7 H 4.535002 -1.443885 0.140045 -0.000573 0.001599 -0.002642 + 8 H 3.619855 3.127238 0.085740 0.001727 0.002261 0.002359 + 9 H -4.484126 1.525732 -0.140451 0.003981 -0.000476 0.001851 + 10 H -3.572028 -3.017146 -0.322466 0.002274 0.007405 -0.000160 + 11 C -1.109050 5.400750 0.147990 0.060447 0.008799 -0.007590 + 12 C 0.651778 7.130869 -0.090505 -0.017379 -0.045165 -0.000580 + 13 H -3.192581 5.883820 0.475497 -0.031555 0.003451 0.005545 + 14 H 0.204366 9.160861 0.068832 -0.004900 0.004756 0.002263 + 15 H 2.612462 6.579335 -0.396545 -0.004218 -0.005964 0.001356 + 16 C 1.048389 -5.443747 -0.157654 -0.014106 -0.023924 0.007345 + 17 C -0.683991 -7.230133 0.153345 0.009908 0.018838 -0.004557 + 18 H 2.944671 -5.920228 -0.878266 0.000938 0.002327 -0.003629 + 19 H -0.276575 -9.193658 -0.282615 -0.004477 0.008777 0.000261 + 20 H -2.586315 -6.922520 0.881982 0.003802 -0.006451 -0.000044 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 13.908585 + Kin. energy (a.u.): 23 0.026725 + Pot. energy (a.u.): 23 -382.294559 + Tot. energy (a.u.): 23 -382.267833 + Target temp. (K) : 23 298.00 + Current temp. (K) : 23 312.56 + Dipole (a.u.) : 23 -1.077767E-02 4.013102E-03 -2.315883E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 356.2 + Time prior to 1st pass: 356.2 + + + Total DFT energy = -382.295295368509 + One electron energy = -1403.981266269612 + Coulomb energy = 631.941093546115 + Exchange-Corr. energy = -57.854474005864 + Nuclear repulsion energy = 447.599351360852 + + Numeric. integr. density = 69.999997287191 + + Total iterative time = 8.5s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.554193 -2.650228 0.086600 0.007637 -0.010752 0.009482 + 2 C 2.562145 -0.804914 0.149434 0.009696 0.017375 0.009083 + 3 C 2.048071 1.772854 -0.014785 0.027939 -0.004746 -0.013834 + 4 C -0.547207 2.691864 0.021476 -0.022162 0.031139 0.005797 + 5 C -2.521626 0.870766 -0.120727 -0.008411 -0.010517 -0.005987 + 6 C -1.981803 -1.716473 -0.144016 -0.010305 0.006302 -0.004963 + 7 H 4.535849 -1.452586 0.168772 0.000458 0.001066 -0.001752 + 8 H 3.613811 3.121390 0.068541 -0.001373 -0.000585 0.001342 + 9 H -4.494512 1.517649 -0.158502 -0.000290 -0.000015 0.001383 + 10 H -3.582347 -3.018372 -0.336692 -0.002226 0.004373 -0.000725 + 11 C -1.109454 5.410413 0.155256 0.047351 0.023089 -0.005080 + 12 C 0.644698 7.133999 -0.092324 -0.038679 -0.028273 0.004172 + 13 H -3.145528 5.878410 0.483462 -0.015069 -0.000553 0.002809 + 14 H 0.193654 9.122617 0.063236 -0.002369 -0.012504 0.000999 + 15 H 2.635875 6.570443 -0.425813 0.010340 -0.010470 -0.001339 + 16 C 1.044489 -5.451734 -0.168148 -0.021127 -0.032415 0.007648 + 17 C -0.682060 -7.227658 0.161387 0.013059 0.032532 -0.003716 + 18 H 2.951163 -5.933863 -0.894182 0.005952 0.000762 -0.004479 + 19 H -0.263238 -9.203532 -0.298586 -0.002275 0.001268 -0.001995 + 20 H -2.581026 -6.946137 0.923130 0.001853 -0.007077 0.001154 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 14.513306 + Kin. energy (a.u.): 24 0.027420 + Pot. energy (a.u.): 24 -382.295295 + Tot. energy (a.u.): 24 -382.267875 + Target temp. (K) : 24 298.00 + Current temp. (K) : 24 320.69 + Dipole (a.u.) : 24 -1.150403E-02 3.135111E-03 -2.452986E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 370.1 + Time prior to 1st pass: 370.1 + + + Total DFT energy = -382.293593352650 + One electron energy = -1404.005316912490 + Coulomb energy = 631.954713470404 + Exchange-Corr. energy = -57.857506475594 + Nuclear repulsion energy = 447.614516565029 + + Numeric. integr. density = 69.999998908030 + + Total iterative time = 8.2s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.550048 -2.641988 0.088534 0.004228 -0.002903 0.010328 + 2 C 2.562543 -0.807013 0.150361 0.008288 0.015515 0.007369 + 3 C 2.049029 1.772290 -0.008976 0.030049 -0.000950 -0.012256 + 4 C -0.546911 2.685323 0.019743 -0.022585 0.022544 0.004730 + 5 C -2.518248 0.873412 -0.123203 -0.002101 -0.008840 -0.005166 + 6 C -1.978314 -1.715883 -0.148234 -0.003512 0.008080 -0.004086 + 7 H 4.536541 -1.461650 0.198095 0.001649 0.000471 -0.000798 + 8 H 3.608234 3.115741 0.050884 -0.004149 -0.003234 0.000383 + 9 H -4.504798 1.509571 -0.177025 -0.004580 0.000361 0.000836 + 10 H -3.591909 -3.021086 -0.350671 -0.006702 0.001266 -0.001330 + 11 C -1.111212 5.419416 0.162666 0.027450 0.036752 -0.001385 + 12 C 0.638724 7.137938 -0.094263 -0.055554 -0.010506 0.008513 + 13 H -3.093349 5.873187 0.490472 0.006419 -0.005490 -0.000870 + 14 H 0.183749 9.088627 0.057301 0.000479 -0.029968 -0.000288 + 15 H 2.655770 6.565113 -0.454625 0.021763 -0.013979 -0.003780 + 16 C 1.041193 -5.458795 -0.178861 -0.026125 -0.039646 0.007418 + 17 C -0.680501 -7.226113 0.169534 0.015694 0.044312 -0.002977 + 18 H 2.955630 -5.947758 -0.908575 0.009814 -0.000648 -0.004938 + 19 H -0.249128 -9.213837 -0.313878 -0.000008 -0.005691 -0.004320 + 20 H -2.576368 -6.967346 0.963884 -0.000519 -0.007446 0.002617 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 15.118027 + Kin. energy (a.u.): 25 0.025755 + Pot. energy (a.u.): 25 -382.293593 + Tot. energy (a.u.): 25 -382.267838 + Target temp. (K) : 25 298.00 + Current temp. (K) : 25 301.22 + Dipole (a.u.) : 25 -1.166804E-02 1.656184E-03 -2.589634E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 383.9 + Time prior to 1st pass: 383.9 + + + Total DFT energy = -382.290124877890 + One electron energy = -1404.020342711016 + Coulomb energy = 631.962836890999 + Exchange-Corr. energy = -57.860561494814 + Nuclear repulsion energy = 447.627942436941 + + Numeric. integr. density = 70.000000543847 + + Total iterative time = 8.2s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.545783 -2.633664 0.090173 0.000635 0.004848 0.011164 + 2 C 2.562705 -0.809556 0.151077 0.006855 0.013312 0.005590 + 3 C 2.049129 1.771753 -0.002817 0.030651 0.002511 -0.010707 + 4 C -0.545971 2.678137 0.017875 -0.022400 0.013659 0.003557 + 5 C -2.514809 0.876310 -0.125532 0.003732 -0.006289 -0.004251 + 6 C -1.974725 -1.715524 -0.152335 0.002986 0.009025 -0.003223 + 7 H 4.536671 -1.470874 0.227689 0.002814 -0.000132 0.000204 + 8 H 3.604068 3.111192 0.033098 -0.006099 -0.005226 -0.000499 + 9 H -4.513527 1.501369 -0.195832 -0.008276 0.000482 0.000236 + 10 H -3.599191 -3.024231 -0.364198 -0.010505 -0.001407 -0.001888 + 11 C -1.113754 5.427369 0.170117 0.003301 0.048970 0.003146 + 12 C 0.634337 7.142177 -0.096446 -0.066256 0.003918 0.011843 + 13 H -3.043353 5.869832 0.497779 0.030453 -0.010813 -0.005147 + 14 H 0.173680 9.064831 0.051464 0.002807 -0.043733 -0.001306 + 15 H 2.668262 6.564538 -0.482152 0.029070 -0.016178 -0.005671 + 16 C 1.038644 -5.464724 -0.189785 -0.028371 -0.045292 0.006438 + 17 C -0.679392 -7.225833 0.177767 0.017307 0.052863 -0.002365 + 18 H 2.956759 -5.961432 -0.921288 0.012108 -0.001792 -0.004863 + 19 H -0.235014 -9.222207 -0.327701 0.002075 -0.011099 -0.006426 + 20 H -2.571534 -6.986022 1.003749 -0.002890 -0.007627 0.004169 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 15.722748 + Kin. energy (a.u.): 26 0.022398 + Pot. energy (a.u.): 26 -382.290125 + Tot. energy (a.u.): 26 -382.267727 + Target temp. (K) : 26 298.00 + Current temp. (K) : 26 261.96 + Dipole (a.u.) : 26 -1.067251E-02 2.673692E-04 -2.739283E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 397.5 + Time prior to 1st pass: 397.5 + + + Total DFT energy = -382.286692924823 + One electron energy = -1404.000240874926 + Coulomb energy = 631.953762418785 + Exchange-Corr. energy = -57.862726854160 + Nuclear repulsion energy = 447.622512385479 + + Numeric. integr. density = 70.000001850936 + + Total iterative time = 8.3s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.541499 -2.625480 0.091493 -0.003043 0.012323 0.011983 + 2 C 2.562670 -0.812479 0.151634 0.005591 0.010845 0.003778 + 3 C 2.048352 1.771144 0.003648 0.029369 0.005178 -0.009182 + 4 C -0.544390 2.670562 0.015905 -0.021563 0.004876 0.002310 + 5 C -2.511477 0.879388 -0.127740 0.008510 -0.002858 -0.003287 + 6 C -1.971221 -1.715423 -0.156344 0.008602 0.008822 -0.002460 + 7 H 4.535844 -1.480053 0.257214 0.003772 -0.000685 0.001229 + 8 H 3.601977 3.108421 0.015481 -0.006837 -0.006197 -0.001321 + 9 H -4.519440 1.493004 -0.214719 -0.010900 0.000244 -0.000378 + 10 H -3.602899 -3.026897 -0.377082 -0.013147 -0.003278 -0.002326 + 11 C -1.116391 5.433923 0.177477 -0.019755 0.058572 0.007644 + 12 C 0.631843 7.146303 -0.098966 -0.069720 0.010776 0.013697 + 13 H -3.003718 5.870156 0.506836 0.051971 -0.015429 -0.009186 + 14 H 0.162657 9.055914 0.046071 0.003677 -0.049868 -0.001777 + 15 H 2.670864 6.569468 -0.507750 0.031907 -0.016950 -0.006811 + 16 C 1.036905 -5.469359 -0.200893 -0.027451 -0.049120 0.004575 + 17 C -0.678776 -7.227065 0.186067 0.017463 0.057367 -0.001831 + 18 H 2.953768 -5.974496 -0.932347 0.012626 -0.002601 -0.004186 + 19 H -0.221607 -9.226800 -0.339337 0.003791 -0.014350 -0.008092 + 20 H -2.565717 -7.002103 1.042195 -0.004864 -0.007669 0.005621 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 16.327469 + Kin. energy (a.u.): 27 0.019096 + Pot. energy (a.u.): 27 -382.286693 + Tot. energy (a.u.): 27 -382.267596 + Target temp. (K) : 27 298.00 + Current temp. (K) : 27 223.34 + Dipole (a.u.) : 27 -8.739261E-03 -1.599924E-04 -2.905767E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 411.3 + Time prior to 1st pass: 411.3 + + + Total DFT energy = -382.285318449067 + One electron energy = -1403.920442943437 + Coulomb energy = 631.916670300049 + Exchange-Corr. energy = -57.863130774663 + Nuclear repulsion energy = 447.581584968984 + + Numeric. integr. density = 70.000003090688 + + Total iterative time = 8.2s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.537302 -2.617647 0.092471 -0.006702 0.019355 0.012779 + 2 C 2.562476 -0.815711 0.152083 0.004656 0.008198 0.001976 + 3 C 2.046737 1.770387 0.010375 0.026084 0.006799 -0.007655 + 4 C -0.542193 2.662847 0.013868 -0.020075 -0.003455 0.001025 + 5 C -2.508389 0.882547 -0.129853 0.011823 0.001351 -0.002329 + 6 C -1.967963 -1.715574 -0.160283 0.012918 0.007331 -0.001868 + 7 H 4.533735 -1.489000 0.286321 0.004366 -0.001137 0.002246 + 8 H 3.602212 3.107759 -0.001686 -0.006200 -0.005984 -0.002121 + 9 H -4.521645 1.484556 -0.233477 -0.012136 -0.000395 -0.000959 + 10 H -3.602135 -3.028448 -0.389175 -0.014324 -0.004119 -0.002586 + 11 C -1.118462 5.438803 0.184619 -0.034759 0.064114 0.010855 + 12 C 0.631341 7.150122 -0.101878 -0.065571 0.007864 0.013828 + 13 H -2.981763 5.875729 0.519018 0.064346 -0.017871 -0.011776 + 14 H 0.150382 9.063962 0.041282 0.002525 -0.046404 -0.001584 + 15 H 2.662611 6.580163 -0.531030 0.030204 -0.016283 -0.007051 + 16 C 1.035950 -5.472590 -0.212132 -0.023298 -0.051030 0.001789 + 17 C -0.678660 -7.229935 0.194420 0.015904 0.057469 -0.001292 + 18 H 2.946482 -5.986676 -0.941981 0.011360 -0.003040 -0.002912 + 19 H -0.209489 -9.226511 -0.348220 0.005014 -0.015159 -0.009163 + 20 H -2.558245 -7.015575 1.078729 -0.006135 -0.007606 0.006799 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 16.932190 + Kin. energy (a.u.): 28 0.017776 + Pot. energy (a.u.): 28 -382.285318 + Tot. energy (a.u.): 28 -382.267543 + Target temp. (K) : 28 298.00 + Current temp. (K) : 28 207.89 + Dipole (a.u.) : 28 -6.844032E-03 7.517071E-04 -3.079770E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 424.9 + Time prior to 1st pass: 424.9 + + + Total DFT energy = -382.286803767160 + One electron energy = -1403.770660900103 + Coulomb energy = 631.846706604468 + Exchange-Corr. energy = -57.861439928256 + Nuclear repulsion energy = 447.498590456730 + + Numeric. integr. density = 70.000003769315 + + Total iterative time = 8.2s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.533297 -2.610367 0.093083 -0.010236 0.025784 0.013543 + 2 C 2.562149 -0.819178 0.152476 0.004164 0.005455 0.000229 + 3 C 2.044376 1.769436 0.017322 0.020992 0.007371 -0.006097 + 4 C -0.539422 2.655231 0.011803 -0.017983 -0.011057 -0.000259 + 5 C -2.505638 0.885668 -0.131900 0.013440 0.006141 -0.001430 + 6 C -1.965074 -1.715934 -0.164168 0.015675 0.004578 -0.001497 + 7 H 4.530139 -1.497559 0.314664 0.004495 -0.001451 0.003217 + 8 H 3.604557 3.109132 -0.018132 -0.004299 -0.004665 -0.002945 + 9 H -4.519721 1.476242 -0.251909 -0.011835 -0.001424 -0.001461 + 10 H -3.596497 -3.028598 -0.400388 -0.013897 -0.003834 -0.002628 + 11 C -1.119541 5.441851 0.191451 -0.036774 0.064513 0.011755 + 12 C 0.632713 7.153716 -0.105185 -0.054218 -0.003711 0.012244 + 13 H -2.981699 5.887381 0.535207 0.062879 -0.017013 -0.011923 + 14 H 0.137248 9.087796 0.037033 -0.000476 -0.034542 -0.000846 + 15 H 2.644083 6.596399 -0.551911 0.024021 -0.014240 -0.006271 + 16 C 1.035661 -5.474363 -0.223422 -0.016205 -0.051066 -0.001851 + 17 C -0.678998 -7.234447 0.202809 0.012615 0.053212 -0.000686 + 18 H 2.935331 -5.997821 -0.950625 0.008489 -0.003116 -0.001113 + 19 H -0.199077 -9.221066 -0.353986 0.005666 -0.013477 -0.009548 + 20 H -2.548685 -7.026460 1.112951 -0.006513 -0.007458 0.007567 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 17.536911 + Kin. energy (a.u.): 29 0.019182 + Pot. energy (a.u.): 29 -382.286804 + Tot. energy (a.u.): 29 -382.267621 + Target temp. (K) : 29 298.00 + Current temp. (K) : 29 224.34 + Dipole (a.u.) : 29 -5.869104E-03 2.491629E-03 -3.247284E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 438.5 + Time prior to 1st pass: 438.5 + + + Total DFT energy = -382.289951003063 + One electron energy = -1403.560530540379 + Coulomb energy = 631.747318937318 + Exchange-Corr. energy = -57.858096836411 + Nuclear repulsion energy = 447.381357436409 + + Numeric. integr. density = 70.000002966128 + + Total iterative time = 8.3s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.529584 -2.603824 0.093309 -0.013527 0.031464 0.014271 + 2 C 2.561703 -0.822801 0.152862 0.004160 0.002711 -0.001418 + 3 C 2.041415 1.768275 0.024442 0.014553 0.007106 -0.004495 + 4 C -0.536138 2.647931 0.009745 -0.015339 -0.017742 -0.001510 + 5 C -2.503271 0.888614 -0.133906 0.013336 0.011260 -0.000638 + 6 C -1.962632 -1.716425 -0.168011 0.016778 0.000727 -0.001372 + 7 H 4.525014 -1.505625 0.341913 0.004113 -0.001610 0.004109 + 8 H 3.608364 3.112092 -0.033576 -0.001496 -0.002539 -0.003818 + 9 H -4.513771 1.468412 -0.269844 -0.010027 -0.002783 -0.001848 + 10 H -3.586132 -3.027444 -0.410707 -0.011899 -0.002455 -0.002438 + 11 C -1.119569 5.443057 0.197947 -0.026311 0.059792 0.010242 + 12 C 0.635634 7.157416 -0.108842 -0.036794 -0.020242 0.009141 + 13 H -3.003026 5.904821 0.555452 0.048159 -0.012855 -0.009525 + 14 H 0.124277 9.123381 0.033071 -0.004509 -0.017894 0.000152 + 15 H 2.617383 6.617478 -0.570659 0.013645 -0.010967 -0.004399 + 16 C 1.035835 -5.474677 -0.234660 -0.006820 -0.049365 -0.006160 + 17 C -0.679696 -7.240479 0.211219 0.007815 0.044977 0.000010 + 18 H 2.921292 -6.007906 -0.958890 0.004400 -0.002889 0.001063 + 19 H -0.190593 -9.211035 -0.356504 0.005711 -0.009464 -0.009215 + 20 H -2.536911 -7.034807 1.144597 -0.005947 -0.007233 0.007850 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 18.141632 + Kin. energy (a.u.): 30 0.022176 + Pot. energy (a.u.): 30 -382.289951 + Tot. energy (a.u.): 30 -382.267775 + Target temp. (K) : 30 298.00 + Current temp. (K) : 30 259.36 + Dipole (a.u.) : 30 -6.321311E-03 3.476269E-03 -3.403590E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 452.1 + Time prior to 1st pass: 452.1 + + + Total DFT energy = -382.292422958450 + One electron energy = -1403.313868396418 + Coulomb energy = 631.628581835999 + Exchange-Corr. energy = -57.853994245950 + Nuclear repulsion energy = 447.246857847920 + + Numeric. integr. density = 70.000000190882 + + Total iterative time = 8.2s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.526258 -2.598180 0.093127 -0.016473 0.036267 0.014950 + 2 C 2.561138 -0.826501 0.153288 0.004624 0.000053 -0.002930 + 3 C 2.038039 1.766910 0.031691 0.007411 0.006349 -0.002867 + 4 C -0.532415 2.641137 0.007730 -0.012235 -0.023414 -0.002708 + 5 C -2.501285 0.891237 -0.135894 0.011680 0.016386 0.000012 + 6 C -1.960670 -1.716937 -0.171814 0.016302 -0.003914 -0.001489 + 7 H 4.518490 -1.513143 0.367763 0.003248 -0.001620 0.004895 + 8 H 3.612680 3.115916 -0.047720 0.001706 -0.000025 -0.004741 + 9 H -4.504410 1.461529 -0.287151 -0.006907 -0.004372 -0.002095 + 10 H -3.571718 -3.025454 -0.420197 -0.008517 -0.000129 -0.002024 + 11 C -1.118846 5.442553 0.204151 -0.008862 0.051142 0.007197 + 12 C 0.639606 7.161695 -0.112760 -0.015050 -0.037344 0.004844 + 13 H -3.040737 5.926635 0.578937 0.025616 -0.006539 -0.005437 + 14 H 0.112839 9.165055 0.029057 -0.008575 -0.000523 0.001115 + 15 H 2.586041 6.642289 -0.587911 -0.000104 -0.006763 -0.001498 + 16 C 1.036204 -5.473581 -0.245721 0.003872 -0.046129 -0.010825 + 17 C -0.680618 -7.247797 0.219627 0.001908 0.033480 0.000789 + 18 H 2.905757 -6.017009 -0.967516 -0.000311 -0.002477 0.003388 + 19 H -0.184051 -9.197785 -0.355887 0.005168 -0.003490 -0.008204 + 20 H -2.523113 -7.040694 1.173574 -0.004501 -0.006939 0.007627 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 18.746354 + Kin. energy (a.u.): 31 0.024540 + Pot. energy (a.u.): 31 -382.292423 + Tot. energy (a.u.): 31 -382.267883 + Target temp. (K) : 31 298.00 + Current temp. (K) : 31 287.00 + Dipole (a.u.) : 31 -7.235171E-03 2.932913E-03 -3.558706E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 465.7 + Time prior to 1st pass: 465.7 + + + Total DFT energy = -382.292511876361 + One electron energy = -1403.053622732091 + Coulomb energy = 631.500648463133 + Exchange-Corr. energy = -57.849925734723 + Nuclear repulsion energy = 447.110388127320 + + Numeric. integr. density = 69.999996013655 + + Total iterative time = 8.2s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.523402 -2.593572 0.092517 -0.018969 0.040084 0.015567 + 2 C 2.560440 -0.830203 0.153798 0.005462 -0.002415 -0.004279 + 3 C 2.034451 1.765364 0.039021 0.000264 0.005462 -0.001253 + 4 C -0.528343 2.635013 0.005793 -0.008766 -0.028044 -0.003839 + 5 C -2.499633 0.893393 -0.137882 0.008850 0.021173 0.000509 + 6 C -1.959174 -1.717337 -0.175575 0.014527 -0.008904 -0.001810 + 7 H 4.510861 -1.520110 0.391948 0.001984 -0.001504 0.005561 + 8 H 3.616416 3.119749 -0.060252 0.004768 0.002428 -0.005681 + 9 H -4.492699 1.456133 -0.303744 -0.002871 -0.006047 -0.002203 + 10 H -3.554407 -3.023421 -0.428999 -0.004133 0.002851 -0.001430 + 11 C -1.117869 5.440589 0.210149 0.008989 0.040234 0.003839 + 12 C 0.644008 7.167040 -0.116817 0.008517 -0.051497 -0.000149 + 13 H -3.087162 5.950673 0.604272 0.001787 0.000398 -0.000851 + 14 H 0.104319 9.206906 0.024664 -0.011895 0.014566 0.001842 + 15 H 2.554734 6.669400 -0.604653 -0.015463 -0.002156 0.002109 + 16 C 1.036462 -5.471166 -0.256473 0.014651 -0.041551 -0.015435 + 17 C -0.681594 -7.256071 0.228014 -0.004611 0.019775 0.001638 + 18 H 2.890327 -6.025269 -0.977296 -0.004875 -0.002063 0.005570 + 19 H -0.179268 -9.183347 -0.352479 0.004139 0.003791 -0.006653 + 20 H -2.507784 -7.044220 1.199955 -0.002356 -0.006581 0.006947 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 19.351075 + Kin. energy (a.u.): 32 0.024633 + Pot. energy (a.u.): 32 -382.292512 + Tot. energy (a.u.): 32 -382.267879 + Target temp. (K) : 32 298.00 + Current temp. (K) : 32 288.10 + Dipole (a.u.) : 32 -7.895457E-03 8.955912E-04 -3.726779E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 479.3 + Time prior to 1st pass: 479.3 + + + Total DFT energy = -382.290206571953 + One electron energy = -1402.791120769451 + Coulomb energy = 631.369326432498 + Exchange-Corr. energy = -57.846152130322 + Nuclear repulsion energy = 446.977739895322 + + Numeric. integr. density = 69.999992122105 + + Total iterative time = 8.2s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.521089 -2.590110 0.091463 -0.020922 0.042833 0.016105 + 2 C 2.559587 -0.833836 0.154431 0.006519 -0.004587 -0.005452 + 3 C 2.030855 1.763662 0.046388 -0.006250 0.004765 0.000286 + 4 C -0.524020 2.629690 0.003965 -0.005060 -0.031652 -0.004896 + 5 C -2.498234 0.894943 -0.139885 0.005421 0.025259 0.000872 + 6 C -1.958093 -1.717483 -0.179284 0.011946 -0.013660 -0.002252 + 7 H 4.502557 -1.526566 0.414241 0.000461 -0.001305 0.006103 + 8 H 3.618529 3.122755 -0.070852 0.007220 0.004437 -0.006592 + 9 H -4.480011 1.452795 -0.319589 0.001512 -0.007625 -0.002199 + 10 H -3.535691 -3.022357 -0.437314 0.000684 0.006045 -0.000736 + 11 C -1.117149 5.437475 0.216037 0.022790 0.028500 0.001089 + 12 C 0.648166 7.173857 -0.120869 0.030464 -0.060439 -0.005040 + 13 H -3.134195 5.974576 0.629897 -0.018790 0.006771 0.003315 + 14 H 0.099845 9.243802 0.019645 -0.014025 0.025757 0.002236 + 15 H 2.528688 6.697244 -0.622112 -0.029525 0.002079 0.005718 + 16 C 1.036302 -5.467565 -0.266784 0.024232 -0.035792 -0.019530 + 17 C -0.682439 -7.264910 0.236353 -0.011256 0.005243 0.002587 + 18 H 2.876555 -6.032827 -0.988970 -0.008456 -0.001873 0.007282 + 19 H -0.175893 -9.170198 -0.346807 0.002830 0.011404 -0.004824 + 20 H -2.491653 -7.045508 1.223973 0.000205 -0.006159 0.005928 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 19.955796 + Kin. energy (a.u.): 33 0.022426 + Pot. energy (a.u.): 33 -382.290207 + Tot. energy (a.u.): 33 -382.267780 + Target temp. (K) : 33 298.00 + Current temp. (K) : 33 262.28 + Dipole (a.u.) : 33 -7.681169E-03 -1.603397E-03 -3.917829E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 492.8 + Time prior to 1st pass: 492.8 + + + Total DFT energy = -382.286953478639 + One electron energy = -1402.524948800881 + Coulomb energy = 631.235296953899 + Exchange-Corr. energy = -57.842378706913 + Nuclear repulsion energy = 446.845077075256 + + Numeric. integr. density = 69.999989569352 + + Total iterative time = 8.2s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.519373 -2.587871 0.089949 -0.022262 0.044462 0.016543 + 2 C 2.558548 -0.837338 0.155219 0.007597 -0.006359 -0.006452 + 3 C 2.027438 1.761824 0.053746 -0.011614 0.004486 0.001690 + 4 C -0.519553 2.625271 0.002277 -0.001274 -0.034284 -0.005877 + 5 C -2.496989 0.895772 -0.141913 0.002108 0.028290 0.001150 + 6 C -1.957354 -1.717238 -0.182928 0.009221 -0.017489 -0.002701 + 7 H 4.494096 -1.532577 0.434459 -0.001139 -0.001080 0.006534 + 8 H 3.618186 3.124252 -0.079208 0.008711 0.005718 -0.007417 + 9 H -4.467838 1.452050 -0.334685 0.005547 -0.008902 -0.002141 + 10 H -3.517206 -3.023350 -0.445378 0.005219 0.008887 -0.000057 + 11 C -1.117080 5.433547 0.221894 0.030804 0.016901 -0.000616 + 12 C 0.651454 7.182401 -0.124777 0.046819 -0.062929 -0.008756 + 13 H -3.174836 5.996175 0.654393 -0.034146 0.011961 0.006598 + 14 H 0.100143 9.271935 0.013865 -0.014783 0.032431 0.002270 + 15 H 2.512686 6.724382 -0.641517 -0.038727 0.005090 0.008312 + 16 C 1.035449 -5.462940 -0.276537 0.031503 -0.028995 -0.022689 + 17 C -0.682962 -7.273899 0.244619 -0.017621 -0.008507 0.003717 + 18 H 2.865661 -6.039748 -1.003121 -0.010340 -0.002119 0.008235 + 19 H -0.173480 -9.160930 -0.339494 0.001546 0.018106 -0.003087 + 20 H -2.475592 -7.044700 1.245974 0.002830 -0.005666 0.004744 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 20.560517 + Kin. energy (a.u.): 34 0.019294 + Pot. energy (a.u.): 34 -382.286953 + Tot. energy (a.u.): 34 -382.267659 + Target temp. (K) : 34 298.00 + Current temp. (K) : 34 225.65 + Dipole (a.u.) : 34 -6.375529E-03 -3.179826E-03 -4.133972E-02 + + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + Caching 1-el integrals + Time after variat. SCF: 506.4 + Time prior to 1st pass: 506.4 + + + Total DFT energy = -382.284591471467 + One electron energy = -1402.248530109359 + Coulomb energy = 631.096971374183 + Exchange-Corr. energy = -57.838099939662 + Nuclear repulsion energy = 446.705067203371 + + Numeric. integr. density = 69.999988244941 + + Total iterative time = 8.2s + + + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.518293 -2.586903 0.087962 -0.022936 0.044950 0.016863 + 2 C 2.557291 -0.840658 0.156192 0.008479 -0.007631 -0.007291 + 3 C 2.024353 1.759857 0.061056 -0.015464 0.004745 0.002906 + 4 C -0.515050 2.621832 0.000757 0.002429 -0.035999 -0.006781 + 5 C -2.495805 0.895793 -0.143973 -0.000353 0.029945 0.001411 + 6 C -1.956877 -1.716494 -0.186496 0.007060 -0.019677 -0.003019 + 7 H 4.486022 -1.538222 0.452453 -0.002618 -0.000894 0.006878 + 8 H 3.614880 3.123804 -0.085042 0.009030 0.006104 -0.008107 + 9 H -4.457552 1.454334 -0.349052 0.008531 -0.009670 -0.002108 + 10 H -3.500498 -3.027366 -0.453423 0.008728 0.010768 0.000474 + 11 C -1.117891 5.429136 0.227769 0.033018 0.006015 -0.001180 + 12 C 0.653405 7.192742 -0.128435 0.054429 -0.058527 -0.010291 + 13 H -3.203861 6.013705 0.676646 -0.043951 0.015755 0.008850 + 14 H 0.105470 9.289035 0.007312 -0.014136 0.034457 0.001951 + 15 H 2.509859 6.749788 -0.663749 -0.040254 0.006298 0.008929 + 16 C 1.033696 -5.457488 -0.285642 0.035764 -0.021332 -0.024624 + 17 C -0.682981 -7.282645 0.252778 -0.023399 -0.019885 0.005127 + 18 H 2.858283 -6.045948 -1.020075 -0.010133 -0.002931 0.008254 + 19 H -0.171594 -9.157821 -0.331132 0.000638 0.022597 -0.001850 + 20 H -2.460494 -7.041964 1.266362 0.005136 -0.005088 0.003608 + + + + QMD Run Information + ------------------- + Time elapsed (fs) : 21.165238 + Kin. energy (a.u.): 35 0.017004 + Pot. energy (a.u.): 35 -382.284591 + Tot. energy (a.u.): 35 -382.267587 + Target temp. (K) : 35 298.00 + Current temp. (K) : 35 198.87 + Dipole (a.u.) : 35 -4.183161E-03 -2.816700E-03 -4.367229E-02 + + + + + NWChem Input Module + ------------------- + + + + + CITATION + -------- + Please cite the following reference when publishing + results obtained with NWChem: + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + + AUTHORS + ------- + E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, + J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, + S. A. Fischer, S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, + V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, + A. Marenich, A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, + J. Pittner, Y. Zhao, P.-D. Fan, A. Fonari, M. Williamson, R. J. Harrison, + J. R. Rehr, M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, + V. Tipparaju, M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, + L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, A. A. Auer, M. Nooijen, + L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, H. Fruchtl, J. Garza, + K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, K. Wolinski, + J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, H. Dachsel, + M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, A. C. Hess, + J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, + R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, + K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, + A. T. Wong, Z. Zhang. + + Total times cpu: 519.7s wall: 521.3s diff --git a/data/NWChem/basicNWChem7.0/dvb_dispersion_bp86_d3zero.in b/data/NWChem/basicNWChem7.0/dvb_dispersion_bp86_d3zero.in new file mode 100644 index 000000000..45deb44f8 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_dispersion_bp86_d3zero.in @@ -0,0 +1,42 @@ +geometry units angstrom +C 0.27867948 -1.36683162 0.00000000 +C 1.32303041 -0.44173575 0.00000000 +C 1.04434506 0.92484978 0.00000000 +C -0.27867948 1.36683162 0.00000000 +C -1.32303041 0.44173575 0.00000000 +C -1.04434506 -0.92484978 0.00000000 +H 2.36595443 -0.79037726 0.00000000 +H 1.86746094 1.65407997 0.00000000 +H -2.36595443 0.79037726 0.00000000 +H -1.86746094 -1.65407997 0.00000000 +C -0.58659169 2.87589931 0.00000000 +C 0.36350188 3.80076420 0.00000000 +H -1.65647768 3.12394312 0.00000000 +H 0.14429560 4.87693235 0.00000000 +H 1.43338788 3.55272039 0.00000000 +C 0.58659169 -2.87589931 0.00000000 +C -0.36350188 -3.80076420 0.00000000 +H 1.65647768 -3.12394312 0.00000000 +H -0.14429560 -4.87693235 0.00000000 +H -1.43338788 -3.55272039 0.00000000 +end + +basis + * library sto-3g +end + +dft + xc becke88 perdew86 + direct + print "final vectors" "final vectors analysis" "ao overlap" + disp vdw 3 +end + +property + mulliken + dipole + quadrupole + octupole +end + +task dft property diff --git a/data/NWChem/basicNWChem7.0/dvb_dispersion_bp86_d3zero.out b/data/NWChem/basicNWChem7.0/dvb_dispersion_bp86_d3zero.out new file mode 100644 index 000000000..7f99a3b17 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_dispersion_bp86_d3zero.out @@ -0,0 +1,3503 @@ + argument 1 = dvb_dispersion_bp86_3.in + + + + + Northwest Computational Chemistry Package (NWChem) 6.8 + ------------------------------------------------------ + + + Environmental Molecular Sciences Laboratory + Pacific Northwest National Laboratory + Richland, WA 99352 + + Copyright (c) 1994-2017 + Pacific Northwest National Laboratory + Battelle Memorial Institute + + NWChem is an open-source computational chemistry package + distributed under the terms of the + Educational Community License (ECL) 2.0 + A copy of the license is included with this distribution + in the LICENSE.TXT file + + ACKNOWLEDGMENT + -------------- + + This software and its documentation were developed at the + EMSL at Pacific Northwest National Laboratory, a multiprogram + national laboratory, operated for the U.S. Department of Energy + by Battelle under Contract Number DE-AC05-76RL01830. Support + for this work was provided by the Department of Energy Office + of Biological and Environmental Research, Office of Basic + Energy Sciences, and the Office of Advanced Scientific Computing. + + + Job information + --------------- + + hostname = osmium + program = nwchem + date = Sun Dec 9 22:20:39 2018 + + compiled = Mon_Aug_27_23:56:01_2018 + source = /build/nwchem-0CLMct/nwchem-6.8+47+gitdf6c956 + nwchem branch = 6.8 + nwchem revision = v6.8-47-gdf6c956 + ga revision = ga-5.6.3 + use scalapack = T + input = dvb_dispersion_bp86_3.in + prefix = dvb_dispersion_bp86_3. + data base = ./dvb_dispersion_bp86_3.db + status = restart + nproc = 1 + time left = -1s + + + + Memory information + ------------------ + + heap = 13107200 doubles = 100.0 Mbytes + stack = 13107197 doubles = 100.0 Mbytes + global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) + total = 52428797 doubles = 400.0 Mbytes + verify = yes + hardfail = no + + + Directory information + --------------------- + + 0 permanent = . + 0 scratch = . + + + + Geometries in the database + -------------------------- + + Name Natoms Last Modified + -------------------------------- ------ ------------------------ + 1 geometry 20 Sun Dec 9 22:16:53 2018 + + The geometry named "geometry" is the default for restart + + + + Basis sets in the database + -------------------------- + + Name Natoms Last Modified + -------------------------------- ------ ------------------------ + 1 ao basis 0 Sun Dec 9 22:16:53 2018 + + The basis set named "ao basis" is the default AO basis for restart + + + + + NWChem Input Module + ------------------- + + + + Scaling coordinates for geometry "geometry" by 1.889725989 + (inverse scale = 0.529177249) + + C2H symmetry detected + + ------ + auto-z + ------ + + + Geometry "geometry" -> "" + ------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.27053273 -1.36846738 0.00000000 + 2 C 6.0000 1.32037565 -0.44960880 0.00000000 + 3 C 6.0000 1.04983558 0.91861252 0.00000000 + 4 C 6.0000 -0.27053273 1.36846738 0.00000000 + 5 C 6.0000 -1.32037565 0.44960880 0.00000000 + 6 C 6.0000 -1.04983558 -0.91861252 0.00000000 + 7 H 1.0000 2.36120442 -0.80445651 0.00000000 + 8 H 1.0000 1.87728066 1.64292672 0.00000000 + 9 H 1.0000 -2.36120442 0.80445651 0.00000000 + 10 H 1.0000 -1.87728066 -1.64292672 0.00000000 + 11 C 6.0000 -0.56945042 2.87934244 0.00000000 + 12 C 6.0000 0.38613543 3.79853150 0.00000000 + 13 H 1.0000 -1.63783991 3.13375483 0.00000000 + 14 H 1.0000 0.17334345 4.87598630 0.00000000 + 15 H 1.0000 1.45452493 3.54411910 0.00000000 + 16 C 6.0000 0.56945042 -2.87934244 0.00000000 + 17 C 6.0000 -0.38613543 -3.79853150 0.00000000 + 18 H 1.0000 1.63783991 -3.13375483 0.00000000 + 19 H 1.0000 -0.17334345 -4.87598630 0.00000000 + 20 H 1.0000 -1.45452493 -3.54411910 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 450.0061706802 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 -0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 2 3 7 8 11 12 13 14 15 + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value + ----------- -------- ----- ----- ----- ----- ----- ---------- + 1 Stretch 1 2 1.39516 + 2 Stretch 1 6 1.39490 + 3 Stretch 1 16 1.54016 + 4 Stretch 2 3 1.39471 + 5 Stretch 2 7 1.09966 + 6 Stretch 3 4 1.39490 + 7 Stretch 3 8 1.09968 + 8 Stretch 4 5 1.39516 + 9 Stretch 4 11 1.54016 + 10 Stretch 5 6 1.39471 + 11 Stretch 5 9 1.09966 + 12 Stretch 6 10 1.09968 + 13 Stretch 11 12 1.32592 + 14 Stretch 11 13 1.09826 + 15 Stretch 12 14 1.09827 + 16 Stretch 12 15 1.09826 + 17 Stretch 16 17 1.32592 + 18 Stretch 16 18 1.09826 + 19 Stretch 17 19 1.09827 + 20 Stretch 17 20 1.09826 + 21 Bend 1 2 3 120.00864 + 22 Bend 1 2 7 119.98079 + 23 Bend 1 6 5 119.99907 + 24 Bend 1 6 10 119.98814 + 25 Bend 1 16 17 122.69669 + 26 Bend 1 16 18 114.58533 + 27 Bend 2 1 6 119.99229 + 28 Bend 2 1 16 120.00242 + 29 Bend 2 3 4 119.99907 + 30 Bend 2 3 8 120.01279 + 31 Bend 3 2 7 120.01057 + 32 Bend 3 4 5 119.99229 + 33 Bend 3 4 11 120.00529 + 34 Bend 4 3 8 119.98814 + 35 Bend 4 5 6 120.00864 + 36 Bend 4 5 9 119.98079 + 37 Bend 4 11 12 122.69669 + 38 Bend 4 11 13 114.58533 + 39 Bend 5 4 11 120.00242 + 40 Bend 5 6 10 120.01279 + 41 Bend 6 1 16 120.00529 + 42 Bend 6 5 9 120.01057 + 43 Bend 11 12 14 122.71594 + 44 Bend 11 12 15 122.71798 + 45 Bend 12 11 13 122.71798 + 46 Bend 14 12 15 114.56608 + 47 Bend 16 17 19 122.71594 + 48 Bend 16 17 20 122.71798 + 49 Bend 17 16 18 122.71798 + 50 Bend 19 17 20 114.56608 + 51 Torsion 1 2 3 4 0.00000 + 52 Torsion 1 2 3 8 180.00000 + 53 Torsion 1 6 5 4 0.00000 + 54 Torsion 1 6 5 9 180.00000 + 55 Torsion 1 16 17 19 180.00000 + 56 Torsion 1 16 17 20 0.00000 + 57 Torsion 2 1 6 5 -0.00000 + 58 Torsion 2 1 6 10 180.00000 + 59 Torsion 2 1 16 17 180.00000 + 60 Torsion 2 1 16 18 0.00000 + 61 Torsion 2 3 4 5 0.00000 + 62 Torsion 2 3 4 11 180.00000 + 63 Torsion 3 2 1 6 0.00000 + 64 Torsion 3 2 1 16 180.00000 + 65 Torsion 3 4 5 6 0.00000 + 66 Torsion 3 4 5 9 180.00000 + 67 Torsion 3 4 11 12 0.00000 + 68 Torsion 3 4 11 13 180.00000 + 69 Torsion 4 3 2 7 180.00000 + 70 Torsion 4 5 6 10 180.00000 + 71 Torsion 4 11 12 14 180.00000 + 72 Torsion 4 11 12 15 0.00000 + 73 Torsion 5 4 3 8 180.00000 + 74 Torsion 5 4 11 12 180.00000 + 75 Torsion 5 4 11 13 0.00000 + 76 Torsion 5 6 1 16 180.00000 + 77 Torsion 6 1 2 7 180.00000 + 78 Torsion 6 1 16 17 -0.00000 + 79 Torsion 6 1 16 18 180.00000 + 80 Torsion 6 5 4 11 180.00000 + 81 Torsion 7 2 1 16 0.00000 + 82 Torsion 7 2 3 8 0.00000 + 83 Torsion 8 3 4 11 -0.00000 + 84 Torsion 9 5 4 11 0.00000 + 85 Torsion 9 5 6 10 -0.00000 + 86 Torsion 10 6 1 16 0.00000 + 87 Torsion 13 11 12 14 0.00000 + 88 Torsion 13 11 12 15 180.00000 + 89 Torsion 18 16 17 19 0.00000 + 90 Torsion 18 16 17 20 180.00000 + + + XYZ format geometry + ------------------- + 20 + geometry + C 0.27053273 -1.36846738 0.00000000 + C 1.32037565 -0.44960880 0.00000000 + C 1.04983558 0.91861252 0.00000000 + C -0.27053273 1.36846738 0.00000000 + C -1.32037565 0.44960880 0.00000000 + C -1.04983558 -0.91861252 0.00000000 + H 2.36120442 -0.80445651 0.00000000 + H 1.87728066 1.64292672 0.00000000 + H -2.36120442 0.80445651 0.00000000 + H -1.87728066 -1.64292672 0.00000000 + C -0.56945042 2.87934244 0.00000000 + C 0.38613543 3.79853150 0.00000000 + H -1.63783991 3.13375483 0.00000000 + H 0.17334345 4.87598630 0.00000000 + H 1.45452493 3.54411910 0.00000000 + C 0.56945042 -2.87934244 0.00000000 + C -0.38613543 -3.79853150 0.00000000 + H 1.63783991 -3.13375483 0.00000000 + H -0.17334345 -4.87598630 0.00000000 + H -1.45452493 -3.54411910 0.00000000 + + ============================================================================== + internuclear distances + ------------------------------------------------------------------------------ + center one | center two | atomic units | angstroms + ------------------------------------------------------------------------------ + 2 C | 1 C | 2.63647 | 1.39516 + 3 C | 2 C | 2.63562 | 1.39471 + 4 C | 3 C | 2.63598 | 1.39490 + 5 C | 4 C | 2.63647 | 1.39516 + 6 C | 1 C | 2.63598 | 1.39490 + 6 C | 5 C | 2.63562 | 1.39471 + 7 H | 2 C | 2.07805 | 1.09966 + 8 H | 3 C | 2.07809 | 1.09968 + 9 H | 5 C | 2.07805 | 1.09966 + 10 H | 6 C | 2.07809 | 1.09968 + 11 C | 4 C | 2.91048 | 1.54016 + 12 C | 11 C | 2.50562 | 1.32592 + 13 H | 11 C | 2.07542 | 1.09826 + 14 H | 12 C | 2.07542 | 1.09827 + 15 H | 12 C | 2.07542 | 1.09826 + 16 C | 1 C | 2.91048 | 1.54016 + 17 C | 16 C | 2.50562 | 1.32592 + 18 H | 16 C | 2.07542 | 1.09826 + 19 H | 17 C | 2.07542 | 1.09827 + 20 H | 17 C | 2.07542 | 1.09826 + ------------------------------------------------------------------------------ + number of included internuclear distances: 20 + ============================================================================== + + + + ============================================================================== + internuclear angles + ------------------------------------------------------------------------------ + center 1 | center 2 | center 3 | degrees + ------------------------------------------------------------------------------ + 2 C | 1 C | 6 C | 119.99 + 2 C | 1 C | 16 C | 120.00 + 6 C | 1 C | 16 C | 120.01 + 1 C | 2 C | 3 C | 120.01 + 1 C | 2 C | 7 H | 119.98 + 3 C | 2 C | 7 H | 120.01 + 2 C | 3 C | 4 C | 120.00 + 2 C | 3 C | 8 H | 120.01 + 4 C | 3 C | 8 H | 119.99 + 3 C | 4 C | 5 C | 119.99 + 3 C | 4 C | 11 C | 120.01 + 5 C | 4 C | 11 C | 120.00 + 4 C | 5 C | 6 C | 120.01 + 4 C | 5 C | 9 H | 119.98 + 6 C | 5 C | 9 H | 120.01 + 1 C | 6 C | 5 C | 120.00 + 1 C | 6 C | 10 H | 119.99 + 5 C | 6 C | 10 H | 120.01 + 4 C | 11 C | 12 C | 122.70 + 4 C | 11 C | 13 H | 114.59 + 12 C | 11 C | 13 H | 122.72 + 11 C | 12 C | 14 H | 122.72 + 11 C | 12 C | 15 H | 122.72 + 14 H | 12 C | 15 H | 114.57 + 1 C | 16 C | 17 C | 122.70 + 1 C | 16 C | 18 H | 114.59 + 17 C | 16 C | 18 H | 122.72 + 16 C | 17 C | 19 H | 122.72 + 16 C | 17 C | 20 H | 122.72 + 19 H | 17 C | 20 H | 114.57 + ------------------------------------------------------------------------------ + number of included internuclear angles: 30 + ============================================================================== + + + + + + Summary of "ao basis" -> "" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + * sto-3g on all atoms + + + perdew86 is a nonlocal functional; adding perdew81 local functional. + Restarting calculation + NWChem Property Module + ---------------------- + + + itol2e modified to match energy + convergence criterion. + + NWChem DFT Module + ----------------- + + + Basis "ao basis" -> "ao basis" (cartesian) + ----- + C (Carbon) + ---------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 7.16168370E+01 0.154329 + 1 S 1.30450960E+01 0.535328 + 1 S 3.53051220E+00 0.444635 + + 2 S 2.94124940E+00 -0.099967 + 2 S 6.83483100E-01 0.399513 + 2 S 2.22289900E-01 0.700115 + + 3 P 2.94124940E+00 0.155916 + 3 P 6.83483100E-01 0.607684 + 3 P 2.22289900E-01 0.391957 + + H (Hydrogen) + ------------ + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.42525091E+00 0.154329 + 1 S 6.23913730E-01 0.535328 + 1 S 1.68855400E-01 0.444635 + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + Caching 1-el integrals + itol2e modified to match energy + convergence criterion. + + General Information + ------------------- + SCF calculation type: DFT + Wavefunction type: closed shell. + No. of atoms : 20 + No. of electrons : 70 + Alpha electrons : 35 + Beta electrons : 35 + Charge : 0 + Spin multiplicity: 1 + Use of symmetry is: on ; symmetry adaption is: on + Maximum number of iterations: 30 + This is a Direct SCF calculation. + AO basis - number of functions: 60 + number of shells: 40 + Convergence on energy requested: 1.00D-07 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 + + XC Information + -------------- + Becke 1988 Exchange Functional 1.000 + Perdew 1981 Correlation Functional 1.000 local + Perdew 1986 Correlation Functional 1.000 non-local + + Grid Information + ---------------- + Grid used for XC integration: fine + Radial quadrature: Mura-Knowles + Angular quadrature: Lebedev. + Tag B.-S. Rad. Rad. Pts. Rad. Cut. Ang. Pts. + --- ---------- --------- --------- --------- + C 0.70 70 13.0 590 + H 0.35 60 13.0 590 + Grid pruning is: on + Number of quadrature shells: 650 + Spatial weights used: Erf1 + + Convergence Information + ----------------------- + Convergence aids based upon iterative change in + total energy or number of iterations. + Levelshifting, if invoked, occurs when the + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + DIIS, if invoked, will attempt to extrapolate + using up to (NFOCK): 10 stored Fock matrices. + + Damping( 0%) Levelshifting(0.5) DIIS + --------------- ------------------- --------------- + dE on: start ASAP start + dE off: 2 iters 30 iters 30 iters + + + Screening Tolerance Information + ------------------------------- + Density screening/tol_rho: 1.00D-11 + AO Gaussian exp screening on grid/accAOfunc: 16 + CD Gaussian exp screening on grid/accCDfunc: 20 + XC Gaussian exp screening on grid/accXCfunc: 20 + Schwarz screening/accCoul: 1.00D-08 + + Dispersion Parameters + --------------------- + + DFT-D3 Model + s8 scale factor : 1.000000000000 + sr6 scale factor : 1.683000000000 + sr8 scale factor : 1.139000000000 + vdW contrib : 1.000000000000 + + + DFT-D3 Model + s8 scale factor : -0.014719930985 + sr6 scale factor : + + global array: Temp Over[1:60,1:60], handle: -989 + + 1 2 3 4 5 6 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 1.00000 0.24836 0.00000 0.00000 0.00000 0.00000 + 2 0.24836 1.00000 -0.00000 -0.00000 0.00000 0.03795 + 3 0.00000 -0.00000 1.00000 -0.00000 0.00000 0.04734 + 4 0.00000 -0.00000 -0.00000 1.00000 0.00000 0.04144 + 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 6 0.00000 0.03795 0.04734 0.04144 0.00000 1.00000 + 7 0.03795 0.36707 0.29320 0.25662 0.00000 0.24836 + 8 -0.04734 -0.29320 -0.09256 -0.26910 0.00000 0.00000 + 9 -0.04144 -0.25662 -0.26910 -0.02063 0.00000 0.00000 + 10 0.00000 0.00000 0.00000 0.00000 0.21490 0.00000 + 11 0.00000 0.00184 0.00137 0.00402 0.00000 0.00000 + 12 0.00184 0.06128 0.02907 0.08533 0.00000 0.03799 + 13 -0.00137 -0.02907 0.01043 -0.04470 0.00000 0.01222 + 14 -0.00402 -0.08533 -0.04470 -0.10553 0.00000 -0.06179 + 15 0.00000 0.00000 0.00000 0.00000 0.02566 0.00000 + 16 0.00000 0.00042 -0.00022 0.00110 0.00000 0.00000 + 17 0.00042 0.02638 -0.00822 0.04158 0.00000 0.00184 + 18 0.00022 0.00822 0.00743 0.01397 0.00000 0.00280 + 19 -0.00110 -0.04158 0.01397 -0.06047 0.00000 -0.00320 + 20 0.00000 0.00000 0.00000 0.00000 0.01019 0.00000 + 21 0.00000 0.00184 -0.00280 0.00320 0.00000 0.00000 + 22 0.00184 0.06132 -0.05940 0.06788 0.00000 0.00042 + 23 0.00280 0.05940 -0.03785 0.07261 0.00000 0.00106 + 24 -0.00320 -0.06788 0.07261 -0.05729 0.00000 -0.00036 + 25 0.00000 0.00000 0.00000 0.00000 0.02568 0.00000 + 26 0.00000 0.03797 -0.05959 0.02030 0.00000 0.00000 + 27 0.03797 0.36720 -0.36891 0.12569 0.00000 0.00184 + 28 0.05959 0.36891 -0.27161 0.16579 0.00000 0.00416 + 29 -0.02030 -0.12569 0.16579 0.15852 0.00000 0.00082 + 30 0.00000 0.00000 0.00000 0.00000 0.21500 0.00000 + 31 0.00529 0.09559 0.11933 0.03219 0.00000 0.06089 + 32 0.00009 0.00644 0.00503 0.00943 0.00000 0.00529 + 33 0.00009 0.00645 -0.00825 0.00681 0.00000 0.00001 + 34 0.00529 0.09561 -0.12263 -0.01567 0.00000 0.00009 + 35 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 36 0.00000 0.00029 -0.00013 0.00063 0.00000 0.00000 + 37 0.00000 0.00013 0.00004 0.00027 0.00000 0.00000 + 38 -0.00000 -0.00063 0.00027 -0.00129 0.00000 -0.00001 + 39 0.00000 0.00000 0.00000 0.00000 0.00009 0.00000 + 40 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 41 0.00000 0.00001 0.00000 0.00003 0.00000 0.00000 + 42 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 43 -0.00000 -0.00003 -0.00000 -0.00008 0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 0.00000 0.00009 -0.00007 0.00017 0.00000 0.00000 + 46 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 47 0.00000 0.00005 0.00003 0.00011 0.00000 0.00001 + 48 0.00000 0.02659 0.00865 -0.04374 0.00000 0.00000 + 49 0.02659 0.29849 0.06528 -0.32997 0.00000 0.00114 + 50 -0.00865 -0.06528 0.14628 0.09109 0.00000 0.00082 + 51 0.04374 0.32997 0.09109 -0.29609 0.00000 0.00265 + 52 0.00000 0.00000 0.00000 0.00000 0.16431 0.00000 + 53 0.00000 0.00126 -0.00079 -0.00292 0.00000 0.00000 + 54 0.00126 0.04927 -0.01938 -0.07173 0.00000 0.00000 + 55 0.00079 0.01938 0.01180 -0.03093 0.00000 0.00001 + 56 0.00292 0.07173 -0.03093 -0.09432 0.00000 0.00001 + 57 0.00000 0.00000 0.00000 0.00000 0.02015 0.00000 + 58 0.00444 0.08438 0.06788 -0.08763 0.00000 0.00115 + 59 0.00006 0.00473 -0.00101 -0.00795 0.00000 0.00000 + 60 0.00091 0.02827 -0.02594 -0.03271 0.00000 0.00000 + + 7 8 9 10 11 12 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.03795 -0.04734 -0.04144 0.00000 0.00000 0.00184 + 2 0.36707 -0.29320 -0.25662 0.00000 0.00184 0.06128 + 3 0.29320 -0.09256 -0.26910 0.00000 0.00137 0.02907 + 4 0.25662 -0.26910 -0.02063 0.00000 0.00402 0.08533 + 5 0.00000 0.00000 0.00000 0.21490 0.00000 0.00000 + 6 0.24836 0.00000 0.00000 0.00000 0.00000 0.03799 + 7 1.00000 -0.00000 -0.00000 0.00000 0.03799 0.36730 + 8 -0.00000 1.00000 -0.00000 0.00000 -0.01222 -0.07561 + 9 -0.00000 -0.00000 1.00000 0.00000 0.06179 0.38240 + 10 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 + 11 0.03799 -0.01222 0.06179 0.00000 1.00000 0.24836 + 12 0.36730 -0.07561 0.38240 0.00000 0.24836 1.00000 + 13 0.07561 0.19464 0.10336 0.00000 -0.00000 0.00000 + 14 -0.38240 0.10336 -0.30767 0.00000 -0.00000 -0.00000 + 15 0.00000 0.00000 0.00000 0.21508 0.00000 0.00000 + 16 0.00184 -0.00280 0.00320 0.00000 0.00000 0.03797 + 17 0.06132 -0.05940 0.06788 0.00000 0.03797 0.36720 + 18 0.05940 -0.03785 0.07261 0.00000 0.05959 0.36891 + 19 -0.06788 0.07261 -0.05729 0.00000 -0.02030 -0.12569 + 20 0.00000 0.00000 0.00000 0.02568 0.00000 0.00000 + 21 0.00042 -0.00106 0.00036 0.00000 0.00000 0.00184 + 22 0.02640 -0.04014 0.01367 0.00000 0.00184 0.06128 + 23 0.04014 -0.05563 0.02241 0.00000 0.00416 0.08844 + 24 -0.01367 0.02241 0.00256 0.00000 0.00082 0.01750 + 25 0.00000 0.00000 0.00000 0.01019 0.00000 0.00000 + 26 0.00184 -0.00416 -0.00082 0.00000 0.00000 0.00042 + 27 0.06128 -0.08844 -0.01750 0.00000 0.00042 0.02638 + 28 0.08844 -0.11525 -0.02788 0.00000 0.00084 0.03189 + 29 0.01750 -0.02788 0.02015 0.00000 0.00074 0.02790 + 30 0.00000 0.00000 0.00000 0.02566 0.00000 0.00000 + 31 0.48521 0.43912 -0.14971 0.00000 0.00529 0.09560 + 32 0.09560 0.03179 0.11945 0.00000 0.06088 0.48520 + 33 0.00185 -0.00315 0.00107 0.00000 0.00009 0.00645 + 34 0.00645 -0.01001 -0.00374 0.00000 0.00001 0.00185 + 35 0.00000 -0.00000 0.00001 0.00000 0.00000 0.00114 + 36 0.00153 -0.00150 0.00264 0.00000 0.00114 0.04655 + 37 0.00150 -0.00101 0.00267 0.00000 0.00176 0.04498 + 38 -0.00264 0.00267 -0.00420 0.00000 -0.00214 -0.05447 + 39 0.00000 0.00000 0.00000 0.00051 0.00000 0.00000 + 40 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00021 + 41 0.00027 -0.00013 0.00059 0.00000 0.00021 0.01761 + 42 0.00013 0.00003 0.00028 0.00000 0.00013 0.00659 + 43 -0.00059 0.00028 -0.00120 0.00000 -0.00056 -0.02858 + 44 0.00000 0.00000 0.00000 0.00009 0.00000 0.00000 + 45 0.00019 -0.00025 0.00031 0.00000 0.00007 0.00541 + 46 0.00001 -0.00001 0.00003 0.00000 0.00001 0.00117 + 47 0.00137 0.00008 0.00251 0.00000 0.00133 0.03648 + 48 0.00114 -0.00082 -0.00265 0.00000 0.00000 0.00000 + 49 0.04653 -0.02085 -0.06747 0.00000 0.00000 0.00153 + 50 0.02085 0.00870 -0.03308 0.00000 0.00000 0.00038 + 51 0.06747 -0.03308 -0.08812 0.00000 0.00001 0.00301 + 52 0.00000 0.00000 0.00000 0.01893 0.00000 0.00000 + 53 0.00000 -0.00001 -0.00001 0.00000 0.00000 0.00000 + 54 0.00189 -0.00169 -0.00331 0.00000 0.00000 0.00003 + 55 0.00169 -0.00091 -0.00304 0.00000 0.00000 0.00002 + 56 0.00331 -0.00304 -0.00533 0.00000 0.00000 0.00008 + 57 0.00000 0.00000 0.00000 0.00063 0.00000 0.00000 + 58 0.03309 0.00566 -0.04782 0.00000 0.00000 0.00104 + 59 0.00018 -0.00012 -0.00035 0.00000 0.00000 0.00000 + 60 0.00087 -0.00109 -0.00121 0.00000 0.00000 0.00004 + + 13 14 15 16 17 18 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00137 -0.00402 0.00000 0.00000 0.00042 0.00022 + 2 -0.02907 -0.08533 0.00000 0.00042 0.02638 0.00822 + 3 0.01043 -0.04470 0.00000 -0.00022 -0.00822 0.00743 + 4 -0.04470 -0.10553 0.00000 0.00110 0.04158 0.01397 + 5 0.00000 0.00000 0.02566 0.00000 0.00000 0.00000 + 6 0.01222 -0.06179 0.00000 0.00000 0.00184 0.00280 + 7 0.07561 -0.38240 0.00000 0.00184 0.06132 0.05940 + 8 0.19464 0.10336 0.00000 -0.00280 -0.05940 -0.03785 + 9 0.10336 -0.30767 0.00000 0.00320 0.06788 0.07261 + 10 0.00000 0.00000 0.21508 0.00000 0.00000 0.00000 + 11 -0.00000 -0.00000 0.00000 0.00000 0.03797 0.05959 + 12 0.00000 -0.00000 0.00000 0.03797 0.36720 0.36891 + 13 1.00000 0.00000 0.00000 -0.05959 -0.36891 -0.27161 + 14 0.00000 1.00000 0.00000 0.02030 0.12569 0.16579 + 15 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 16 -0.05959 0.02030 0.00000 1.00000 0.24836 0.00000 + 17 -0.36891 0.12569 0.00000 0.24836 1.00000 0.00000 + 18 -0.27161 0.16579 0.00000 0.00000 0.00000 1.00000 + 19 0.16579 0.15852 0.00000 -0.00000 0.00000 -0.00000 + 20 0.00000 0.00000 0.21500 0.00000 0.00000 0.00000 + 21 -0.00416 -0.00082 0.00000 0.00000 0.03795 -0.04734 + 22 -0.08844 -0.01750 0.00000 0.03795 0.36707 -0.29320 + 23 -0.11525 -0.02788 0.00000 0.04734 0.29320 -0.09256 + 24 -0.02788 0.02015 0.00000 0.04144 0.25662 -0.26910 + 25 0.00000 0.00000 0.02566 0.00000 0.00000 0.00000 + 26 -0.00084 -0.00074 0.00000 0.00000 0.00184 -0.00137 + 27 -0.03189 -0.02790 0.00000 0.00184 0.06128 -0.02907 + 28 -0.03139 -0.03638 0.00000 0.00137 0.02907 0.01043 + 29 -0.03638 -0.02164 0.00000 0.00402 0.08533 -0.04470 + 30 0.00000 0.00000 0.01019 0.00000 0.00000 0.00000 + 31 0.07487 -0.09837 0.00000 0.00009 0.00645 0.00825 + 32 0.34908 0.30557 0.00000 0.00529 0.09561 0.12263 + 33 -0.01069 -0.00036 0.00000 0.00529 0.09559 -0.11933 + 34 -0.00250 -0.00219 0.00000 0.00009 0.00644 -0.00503 + 35 -0.00176 0.00214 0.00000 0.00000 0.02659 -0.00865 + 36 -0.04498 0.05447 0.00000 0.02659 0.29849 -0.06528 + 37 -0.02863 0.05760 0.00000 0.00865 0.06528 0.14628 + 38 0.05760 -0.05081 0.00000 -0.04374 -0.32997 0.09109 + 39 0.00000 0.00000 0.01893 0.00000 0.00000 0.00000 + 40 -0.00013 0.00056 0.00000 0.00000 0.00126 0.00079 + 41 -0.00659 0.02858 0.00000 0.00126 0.04927 0.01938 + 42 0.00396 0.01143 0.00000 -0.00079 -0.01938 0.01180 + 43 0.01143 -0.04299 0.00000 -0.00292 -0.07173 -0.03093 + 44 0.00000 0.00000 0.00659 0.00000 0.00000 0.00000 + 45 -0.00701 0.00577 0.00000 0.00444 0.08438 -0.06788 + 46 -0.00047 0.00211 0.00000 0.00006 0.00473 0.00101 + 47 0.00801 0.05197 0.00000 0.00091 0.02827 0.02594 + 48 -0.00000 -0.00001 0.00000 0.00000 0.00000 0.00000 + 49 -0.00038 -0.00301 0.00000 0.00000 0.00029 0.00013 + 50 0.00041 -0.00077 0.00000 -0.00000 -0.00013 0.00004 + 51 -0.00077 -0.00561 0.00000 0.00000 0.00063 0.00027 + 52 0.00000 0.00000 0.00051 0.00000 0.00000 0.00000 + 53 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 54 -0.00002 -0.00008 0.00000 0.00000 0.00001 -0.00000 + 55 -0.00001 -0.00005 0.00000 0.00000 0.00000 0.00000 + 56 -0.00005 -0.00017 0.00000 0.00000 0.00003 -0.00000 + 57 0.00000 0.00000 0.00001 0.00000 0.00000 0.00000 + 58 0.00028 -0.00191 0.00000 0.00000 0.00009 0.00007 + 59 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 60 -0.00004 -0.00008 0.00000 0.00000 0.00005 -0.00003 + + 19 20 21 22 23 24 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00110 0.00000 0.00000 0.00184 0.00280 -0.00320 + 2 -0.04158 0.00000 0.00184 0.06132 0.05940 -0.06788 + 3 0.01397 0.00000 -0.00280 -0.05940 -0.03785 0.07261 + 4 -0.06047 0.00000 0.00320 0.06788 0.07261 -0.05729 + 5 0.00000 0.01019 0.00000 0.00000 0.00000 0.00000 + 6 -0.00320 0.00000 0.00000 0.00042 0.00106 -0.00036 + 7 -0.06788 0.00000 0.00042 0.02640 0.04014 -0.01367 + 8 0.07261 0.00000 -0.00106 -0.04014 -0.05563 0.02241 + 9 -0.05729 0.00000 0.00036 0.01367 0.02241 0.00256 + 10 0.00000 0.02568 0.00000 0.00000 0.00000 0.00000 + 11 -0.02030 0.00000 0.00000 0.00184 0.00416 0.00082 + 12 -0.12569 0.00000 0.00184 0.06128 0.08844 0.01750 + 13 0.16579 0.00000 -0.00416 -0.08844 -0.11525 -0.02788 + 14 0.15852 0.00000 -0.00082 -0.01750 -0.02788 0.02015 + 15 0.00000 0.21500 0.00000 0.00000 0.00000 0.00000 + 16 -0.00000 0.00000 0.00000 0.03795 0.04734 0.04144 + 17 0.00000 0.00000 0.03795 0.36707 0.29320 0.25662 + 18 -0.00000 0.00000 -0.04734 -0.29320 -0.09256 -0.26910 + 19 1.00000 0.00000 -0.04144 -0.25662 -0.26910 -0.02063 + 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 21 -0.04144 0.00000 1.00000 0.24836 -0.00000 -0.00000 + 22 -0.25662 0.00000 0.24836 1.00000 0.00000 0.00000 + 23 -0.26910 0.00000 -0.00000 0.00000 1.00000 -0.00000 + 24 -0.02063 0.00000 -0.00000 0.00000 -0.00000 1.00000 + 25 0.00000 0.21490 0.00000 0.00000 0.00000 0.00000 + 26 -0.00402 0.00000 0.00000 0.03799 0.01222 -0.06179 + 27 -0.08533 0.00000 0.03799 0.36730 0.07561 -0.38240 + 28 -0.04470 0.00000 -0.01222 -0.07561 0.19464 0.10336 + 29 -0.10553 0.00000 0.06179 0.38240 0.10336 -0.30767 + 30 0.00000 0.02566 0.00000 0.00000 0.00000 0.00000 + 31 -0.00681 0.00000 0.00001 0.00185 0.00315 -0.00107 + 32 0.01567 0.00000 0.00009 0.00645 0.01001 0.00374 + 33 -0.03219 0.00000 0.06089 0.48521 -0.43912 0.14971 + 34 -0.00943 0.00000 0.00529 0.09560 -0.03179 -0.11945 + 35 0.04374 0.00000 0.00000 0.00114 0.00082 0.00265 + 36 0.32997 0.00000 0.00114 0.04653 0.02085 0.06747 + 37 0.09109 0.00000 -0.00082 -0.02085 0.00870 -0.03308 + 38 -0.29609 0.00000 -0.00265 -0.06747 -0.03308 -0.08812 + 39 0.00000 0.16431 0.00000 0.00000 0.00000 0.00000 + 40 0.00292 0.00000 0.00000 0.00000 0.00001 0.00001 + 41 0.07173 0.00000 0.00000 0.00189 0.00169 0.00331 + 42 -0.03093 0.00000 -0.00001 -0.00169 -0.00091 -0.00304 + 43 -0.09432 0.00000 -0.00001 -0.00331 -0.00304 -0.00533 + 44 0.00000 0.02015 0.00000 0.00000 0.00000 0.00000 + 45 0.08763 0.00000 0.00115 0.03309 -0.00566 0.04782 + 46 0.00795 0.00000 0.00000 0.00018 0.00012 0.00035 + 47 0.03271 0.00000 0.00000 0.00087 0.00109 0.00121 + 48 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00001 + 49 -0.00063 0.00000 0.00000 0.00153 0.00150 -0.00264 + 50 0.00027 0.00000 -0.00000 -0.00150 -0.00101 0.00267 + 51 -0.00129 0.00000 0.00001 0.00264 0.00267 -0.00420 + 52 0.00000 0.00009 0.00000 0.00000 0.00000 0.00000 + 53 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 54 -0.00003 0.00000 0.00000 0.00027 0.00013 -0.00059 + 55 -0.00000 0.00000 -0.00000 -0.00013 0.00003 0.00028 + 56 -0.00008 0.00000 0.00000 0.00059 0.00028 -0.00120 + 57 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 58 -0.00017 0.00000 0.00000 0.00019 0.00025 -0.00031 + 59 -0.00000 0.00000 0.00000 0.00001 0.00001 -0.00003 + 60 -0.00011 0.00000 0.00001 0.00137 -0.00008 -0.00251 + + 25 26 27 28 29 30 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 0.00000 0.03797 0.05959 -0.02030 0.00000 + 2 0.00000 0.03797 0.36720 0.36891 -0.12569 0.00000 + 3 0.00000 -0.05959 -0.36891 -0.27161 0.16579 0.00000 + 4 0.00000 0.02030 0.12569 0.16579 0.15852 0.00000 + 5 0.02568 0.00000 0.00000 0.00000 0.00000 0.21500 + 6 0.00000 0.00000 0.00184 0.00416 0.00082 0.00000 + 7 0.00000 0.00184 0.06128 0.08844 0.01750 0.00000 + 8 0.00000 -0.00416 -0.08844 -0.11525 -0.02788 0.00000 + 9 0.00000 -0.00082 -0.01750 -0.02788 0.02015 0.00000 + 10 0.01019 0.00000 0.00000 0.00000 0.00000 0.02566 + 11 0.00000 0.00000 0.00042 0.00084 0.00074 0.00000 + 12 0.00000 0.00042 0.02638 0.03189 0.02790 0.00000 + 13 0.00000 -0.00084 -0.03189 -0.03139 -0.03638 0.00000 + 14 0.00000 -0.00074 -0.02790 -0.03638 -0.02164 0.00000 + 15 0.02566 0.00000 0.00000 0.00000 0.00000 0.01019 + 16 0.00000 0.00000 0.00184 0.00137 0.00402 0.00000 + 17 0.00000 0.00184 0.06128 0.02907 0.08533 0.00000 + 18 0.00000 -0.00137 -0.02907 0.01043 -0.04470 0.00000 + 19 0.00000 -0.00402 -0.08533 -0.04470 -0.10553 0.00000 + 20 0.21490 0.00000 0.00000 0.00000 0.00000 0.02566 + 21 0.00000 0.00000 0.03799 -0.01222 0.06179 0.00000 + 22 0.00000 0.03799 0.36730 -0.07561 0.38240 0.00000 + 23 0.00000 0.01222 0.07561 0.19464 0.10336 0.00000 + 24 0.00000 -0.06179 -0.38240 0.10336 -0.30767 0.00000 + 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.21508 + 26 0.00000 1.00000 0.24836 0.00000 0.00000 0.00000 + 27 0.00000 0.24836 1.00000 -0.00000 0.00000 0.00000 + 28 0.00000 0.00000 -0.00000 1.00000 0.00000 0.00000 + 29 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 30 0.21508 0.00000 0.00000 0.00000 0.00000 1.00000 + 31 0.00000 0.00009 0.00645 0.01069 0.00036 0.00000 + 32 0.00000 0.00001 0.00185 0.00250 0.00219 0.00000 + 33 0.00000 0.00529 0.09560 -0.07487 0.09837 0.00000 + 34 0.00000 0.06088 0.48520 -0.34908 -0.30557 0.00000 + 35 0.00000 0.00000 0.00000 0.00000 0.00001 0.00000 + 36 0.00000 0.00000 0.00153 0.00038 0.00301 0.00000 + 37 0.00000 -0.00000 -0.00038 0.00041 -0.00077 0.00000 + 38 0.00000 -0.00001 -0.00301 -0.00077 -0.00561 0.00000 + 39 0.01893 0.00000 0.00000 0.00000 0.00000 0.00051 + 40 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 41 0.00000 0.00000 0.00003 0.00002 0.00008 0.00000 + 42 0.00000 -0.00000 -0.00002 -0.00001 -0.00005 0.00000 + 43 0.00000 -0.00000 -0.00008 -0.00005 -0.00017 0.00000 + 44 0.00063 0.00000 0.00000 0.00000 0.00000 0.00001 + 45 0.00000 0.00000 0.00104 -0.00028 0.00191 0.00000 + 46 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 47 0.00000 0.00000 0.00004 0.00004 0.00008 0.00000 + 48 0.00000 0.00000 0.00114 0.00176 -0.00214 0.00000 + 49 0.00000 0.00114 0.04655 0.04498 -0.05447 0.00000 + 50 0.00000 -0.00176 -0.04498 -0.02863 0.05760 0.00000 + 51 0.00000 0.00214 0.05447 0.05760 -0.05081 0.00000 + 52 0.00051 0.00000 0.00000 0.00000 0.00000 0.01893 + 53 0.00000 0.00000 0.00021 0.00013 -0.00056 0.00000 + 54 0.00000 0.00021 0.01761 0.00659 -0.02858 0.00000 + 55 0.00000 -0.00013 -0.00659 0.00396 0.01143 0.00000 + 56 0.00000 0.00056 0.02858 0.01143 -0.04299 0.00000 + 57 0.00009 0.00000 0.00000 0.00000 0.00000 0.00659 + 58 0.00000 0.00007 0.00541 0.00701 -0.00577 0.00000 + 59 0.00000 0.00001 0.00117 0.00047 -0.00211 0.00000 + 60 0.00000 0.00133 0.03648 -0.00801 -0.05197 0.00000 + + 31 32 33 34 35 36 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00529 0.00009 0.00009 0.00529 0.00000 0.00000 + 2 0.09559 0.00644 0.00645 0.09561 0.00000 0.00029 + 3 0.11933 0.00503 -0.00825 -0.12263 -0.00000 -0.00013 + 4 0.03219 0.00943 0.00681 -0.01567 0.00000 0.00063 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 0.06089 0.00529 0.00001 0.00009 0.00000 0.00000 + 7 0.48521 0.09560 0.00185 0.00645 0.00000 0.00153 + 8 0.43912 0.03179 -0.00315 -0.01001 -0.00000 -0.00150 + 9 -0.14971 0.11945 0.00107 -0.00374 0.00001 0.00264 + 10 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 11 0.00529 0.06088 0.00009 0.00001 0.00000 0.00114 + 12 0.09560 0.48520 0.00645 0.00185 0.00114 0.04655 + 13 0.07487 0.34908 -0.01069 -0.00250 -0.00176 -0.04498 + 14 -0.09837 0.30557 -0.00036 -0.00219 0.00214 0.05447 + 15 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 16 0.00009 0.00529 0.00529 0.00009 0.00000 0.02659 + 17 0.00645 0.09561 0.09559 0.00644 0.02659 0.29849 + 18 0.00825 0.12263 -0.11933 -0.00503 -0.00865 -0.06528 + 19 -0.00681 0.01567 -0.03219 -0.00943 0.04374 0.32997 + 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 21 0.00001 0.00009 0.06089 0.00529 0.00000 0.00114 + 22 0.00185 0.00645 0.48521 0.09560 0.00114 0.04653 + 23 0.00315 0.01001 -0.43912 -0.03179 0.00082 0.02085 + 24 -0.00107 0.00374 0.14971 -0.11945 0.00265 0.06747 + 25 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 26 0.00009 0.00001 0.00529 0.06088 0.00000 0.00000 + 27 0.00645 0.00185 0.09560 0.48520 0.00000 0.00153 + 28 0.01069 0.00250 -0.07487 -0.34908 0.00000 0.00038 + 29 0.00036 0.00219 0.09837 -0.30557 0.00001 0.00301 + 30 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 31 1.00000 0.05001 0.00011 0.00076 0.00000 0.00016 + 32 0.05001 1.00000 0.00076 0.00011 0.00102 0.03049 + 33 0.00011 0.00076 1.00000 0.05001 0.00102 0.03049 + 34 0.00076 0.00011 0.05001 1.00000 0.00000 0.00016 + 35 0.00000 0.00102 0.00102 0.00000 1.00000 0.24836 + 36 0.00016 0.03049 0.03049 0.00016 0.24836 1.00000 + 37 0.00020 0.03990 -0.02922 -0.00009 0.00000 0.00000 + 38 -0.00026 -0.02016 -0.03383 -0.00032 -0.00000 0.00000 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 0.00000 0.00148 0.00001 0.00000 0.00000 0.04472 + 41 0.00006 0.03927 0.00113 0.00000 0.04472 0.40277 + 42 0.00005 0.03197 -0.00142 -0.00000 -0.05348 -0.29853 + 43 -0.00012 -0.04622 -0.00155 -0.00000 -0.05144 -0.28716 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 0.00001 0.00280 0.05547 0.00021 0.06109 0.48601 + 46 0.00000 0.00417 0.00020 0.00000 0.00578 0.10189 + 47 0.00055 0.12984 0.00027 0.00000 0.00578 0.10189 + 48 0.00102 0.00000 0.00000 0.00102 0.00000 0.00000 + 49 0.03049 0.00016 0.00016 0.03049 0.00000 0.00000 + 50 0.02922 0.00009 -0.00020 -0.03990 -0.00000 -0.00000 + 51 0.03383 0.00032 0.00026 0.02016 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 53 0.00001 0.00000 0.00000 0.00148 0.00000 0.00000 + 54 0.00113 0.00000 0.00006 0.03927 0.00000 0.00000 + 55 0.00142 0.00000 -0.00005 -0.03197 -0.00000 -0.00000 + 56 0.00155 0.00000 0.00012 0.04622 0.00000 0.00000 + 57 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 58 0.05547 0.00021 0.00001 0.00280 0.00000 0.00000 + 59 0.00020 0.00000 0.00000 0.00417 0.00000 0.00000 + 60 0.00027 0.00000 0.00055 0.12984 0.00000 0.00000 + + 37 38 39 40 41 42 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 2 0.00013 -0.00063 0.00000 0.00000 0.00001 -0.00000 + 3 0.00004 0.00027 0.00000 0.00000 0.00000 0.00000 + 4 0.00027 -0.00129 0.00000 0.00000 0.00003 -0.00000 + 5 0.00000 0.00000 0.00009 0.00000 0.00000 0.00000 + 6 0.00000 -0.00001 0.00000 0.00000 0.00000 0.00000 + 7 0.00150 -0.00264 0.00000 0.00000 0.00027 0.00013 + 8 -0.00101 0.00267 0.00000 -0.00000 -0.00013 0.00003 + 9 0.00267 -0.00420 0.00000 0.00000 0.00059 0.00028 + 10 0.00000 0.00000 0.00051 0.00000 0.00000 0.00000 + 11 0.00176 -0.00214 0.00000 0.00000 0.00021 0.00013 + 12 0.04498 -0.05447 0.00000 0.00021 0.01761 0.00659 + 13 -0.02863 0.05760 0.00000 -0.00013 -0.00659 0.00396 + 14 0.05760 -0.05081 0.00000 0.00056 0.02858 0.01143 + 15 0.00000 0.00000 0.01893 0.00000 0.00000 0.00000 + 16 0.00865 -0.04374 0.00000 0.00000 0.00126 -0.00079 + 17 0.06528 -0.32997 0.00000 0.00126 0.04927 -0.01938 + 18 0.14628 0.09109 0.00000 0.00079 0.01938 0.01180 + 19 0.09109 -0.29609 0.00000 0.00292 0.07173 -0.03093 + 20 0.00000 0.00000 0.16431 0.00000 0.00000 0.00000 + 21 -0.00082 -0.00265 0.00000 0.00000 0.00000 -0.00001 + 22 -0.02085 -0.06747 0.00000 0.00000 0.00189 -0.00169 + 23 0.00870 -0.03308 0.00000 0.00001 0.00169 -0.00091 + 24 -0.03308 -0.08812 0.00000 0.00001 0.00331 -0.00304 + 25 0.00000 0.00000 0.01893 0.00000 0.00000 0.00000 + 26 -0.00000 -0.00001 0.00000 0.00000 0.00000 -0.00000 + 27 -0.00038 -0.00301 0.00000 0.00000 0.00003 -0.00002 + 28 0.00041 -0.00077 0.00000 0.00000 0.00002 -0.00001 + 29 -0.00077 -0.00561 0.00000 0.00000 0.00008 -0.00005 + 30 0.00000 0.00000 0.00051 0.00000 0.00000 0.00000 + 31 0.00020 -0.00026 0.00000 0.00000 0.00006 0.00005 + 32 0.03990 -0.02016 0.00000 0.00148 0.03927 0.03197 + 33 -0.02922 -0.03383 0.00000 0.00001 0.00113 -0.00142 + 34 -0.00009 -0.00032 0.00000 0.00000 0.00000 -0.00000 + 35 0.00000 -0.00000 0.00000 0.00000 0.04472 -0.05348 + 36 0.00000 0.00000 0.00000 0.04472 0.40277 -0.29853 + 37 1.00000 -0.00000 0.00000 0.05348 0.29853 -0.05323 + 38 -0.00000 1.00000 0.00000 0.05144 0.28716 -0.28521 + 39 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 40 0.05348 0.05144 0.00000 1.00000 0.24836 0.00000 + 41 0.29853 0.28716 0.00000 0.24836 1.00000 0.00000 + 42 -0.05323 -0.28521 0.00000 0.00000 0.00000 1.00000 + 43 -0.28521 -0.03108 0.00000 -0.00000 0.00000 0.00000 + 44 0.00000 0.00000 0.24327 0.00000 0.00000 0.00000 + 45 -0.45179 0.10758 0.00000 0.00578 0.10189 -0.12414 + 46 0.04556 0.12246 0.00000 0.06109 0.48601 -0.08998 + 47 0.12414 0.04077 0.00000 0.06109 0.48601 0.45179 + 48 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 49 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 50 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 51 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 53 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 54 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 55 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 56 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 57 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 58 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 59 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 60 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + + 43 44 45 46 47 48 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 2 -0.00003 0.00000 0.00009 0.00000 0.00005 0.02659 + 3 -0.00000 0.00000 -0.00007 -0.00000 0.00003 0.00865 + 4 -0.00008 0.00000 0.00017 0.00000 0.00011 -0.04374 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 -0.00000 0.00000 0.00000 0.00000 0.00001 0.00000 + 7 -0.00059 0.00000 0.00019 0.00001 0.00137 0.00114 + 8 0.00028 0.00000 -0.00025 -0.00001 0.00008 -0.00082 + 9 -0.00120 0.00000 0.00031 0.00003 0.00251 -0.00265 + 10 0.00000 0.00009 0.00000 0.00000 0.00000 0.00000 + 11 -0.00056 0.00000 0.00007 0.00001 0.00133 0.00000 + 12 -0.02858 0.00000 0.00541 0.00117 0.03648 0.00000 + 13 0.01143 0.00000 -0.00701 -0.00047 0.00801 -0.00000 + 14 -0.04299 0.00000 0.00577 0.00211 0.05197 -0.00001 + 15 0.00000 0.00659 0.00000 0.00000 0.00000 0.00000 + 16 -0.00292 0.00000 0.00444 0.00006 0.00091 0.00000 + 17 -0.07173 0.00000 0.08438 0.00473 0.02827 0.00000 + 18 -0.03093 0.00000 -0.06788 0.00101 0.02594 0.00000 + 19 -0.09432 0.00000 0.08763 0.00795 0.03271 -0.00000 + 20 0.00000 0.02015 0.00000 0.00000 0.00000 0.00000 + 21 -0.00001 0.00000 0.00115 0.00000 0.00000 0.00000 + 22 -0.00331 0.00000 0.03309 0.00018 0.00087 0.00000 + 23 -0.00304 0.00000 -0.00566 0.00012 0.00109 0.00000 + 24 -0.00533 0.00000 0.04782 0.00035 0.00121 -0.00001 + 25 0.00000 0.00063 0.00000 0.00000 0.00000 0.00000 + 26 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 27 -0.00008 0.00000 0.00104 0.00000 0.00004 0.00114 + 28 -0.00005 0.00000 -0.00028 0.00000 0.00004 0.00176 + 29 -0.00017 0.00000 0.00191 0.00000 0.00008 -0.00214 + 30 0.00000 0.00001 0.00000 0.00000 0.00000 0.00000 + 31 -0.00012 0.00000 0.00001 0.00000 0.00055 0.00102 + 32 -0.04622 0.00000 0.00280 0.00417 0.12984 0.00000 + 33 -0.00155 0.00000 0.05547 0.00020 0.00027 0.00000 + 34 -0.00000 0.00000 0.00021 0.00000 0.00000 0.00102 + 35 -0.05144 0.00000 0.06109 0.00578 0.00578 0.00000 + 36 -0.28716 0.00000 0.48601 0.10189 0.10189 0.00000 + 37 -0.28521 0.00000 -0.45179 0.04556 0.12414 0.00000 + 38 -0.03108 0.00000 0.10758 0.12246 0.04077 -0.00000 + 39 0.00000 0.24327 0.00000 0.00000 0.00000 0.00000 + 40 -0.00000 0.00000 0.00578 0.06109 0.06109 0.00000 + 41 0.00000 0.00000 0.10189 0.48601 0.48601 0.00000 + 42 0.00000 0.00000 -0.12414 -0.08998 0.45179 0.00000 + 43 1.00000 0.00000 -0.04077 0.45562 -0.10758 -0.00000 + 44 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.04077 0.00000 1.00000 0.04831 0.01414 0.00000 + 46 0.45562 0.00000 0.04831 1.00000 0.15221 0.00000 + 47 -0.10758 0.00000 0.01414 0.15221 1.00000 0.00000 + 48 -0.00000 0.00000 0.00000 0.00000 0.00000 1.00000 + 49 -0.00000 0.00000 0.00000 0.00000 0.00000 0.24836 + 50 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 51 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 53 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 54 -0.00000 0.00000 0.00000 0.00000 0.00000 0.04472 + 55 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.05348 + 56 -0.00000 0.00000 0.00000 0.00000 0.00000 0.05144 + 57 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 58 -0.00000 0.00000 0.00000 0.00000 0.00000 0.06109 + 59 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00578 + 60 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00578 + + 49 50 51 52 53 54 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.02659 -0.00865 0.04374 0.00000 0.00000 0.00126 + 2 0.29849 -0.06528 0.32997 0.00000 0.00126 0.04927 + 3 0.06528 0.14628 0.09109 0.00000 -0.00079 -0.01938 + 4 -0.32997 0.09109 -0.29609 0.00000 -0.00292 -0.07173 + 5 0.00000 0.00000 0.00000 0.16431 0.00000 0.00000 + 6 0.00114 0.00082 0.00265 0.00000 0.00000 0.00000 + 7 0.04653 0.02085 0.06747 0.00000 0.00000 0.00189 + 8 -0.02085 0.00870 -0.03308 0.00000 -0.00001 -0.00169 + 9 -0.06747 -0.03308 -0.08812 0.00000 -0.00001 -0.00331 + 10 0.00000 0.00000 0.00000 0.01893 0.00000 0.00000 + 11 0.00000 0.00000 0.00001 0.00000 0.00000 0.00000 + 12 0.00153 0.00038 0.00301 0.00000 0.00000 0.00003 + 13 -0.00038 0.00041 -0.00077 0.00000 -0.00000 -0.00002 + 14 -0.00301 -0.00077 -0.00561 0.00000 -0.00000 -0.00008 + 15 0.00000 0.00000 0.00000 0.00051 0.00000 0.00000 + 16 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 17 0.00029 -0.00013 0.00063 0.00000 0.00000 0.00001 + 18 0.00013 0.00004 0.00027 0.00000 -0.00000 -0.00000 + 19 -0.00063 0.00027 -0.00129 0.00000 -0.00000 -0.00003 + 20 0.00000 0.00000 0.00000 0.00009 0.00000 0.00000 + 21 0.00000 -0.00000 0.00001 0.00000 0.00000 0.00000 + 22 0.00153 -0.00150 0.00264 0.00000 0.00000 0.00027 + 23 0.00150 -0.00101 0.00267 0.00000 0.00000 0.00013 + 24 -0.00264 0.00267 -0.00420 0.00000 -0.00000 -0.00059 + 25 0.00000 0.00000 0.00000 0.00051 0.00000 0.00000 + 26 0.00114 -0.00176 0.00214 0.00000 0.00000 0.00021 + 27 0.04655 -0.04498 0.05447 0.00000 0.00021 0.01761 + 28 0.04498 -0.02863 0.05760 0.00000 0.00013 0.00659 + 29 -0.05447 0.05760 -0.05081 0.00000 -0.00056 -0.02858 + 30 0.00000 0.00000 0.00000 0.01893 0.00000 0.00000 + 31 0.03049 0.02922 0.03383 0.00000 0.00001 0.00113 + 32 0.00016 0.00009 0.00032 0.00000 0.00000 0.00000 + 33 0.00016 -0.00020 0.00026 0.00000 0.00000 0.00006 + 34 0.03049 -0.03990 0.02016 0.00000 0.00148 0.03927 + 35 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 36 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 37 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 38 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 41 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 42 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 43 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 46 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 47 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 48 0.24836 -0.00000 0.00000 0.00000 0.00000 0.04472 + 49 1.00000 -0.00000 -0.00000 0.00000 0.04472 0.40277 + 50 -0.00000 1.00000 -0.00000 0.00000 -0.05348 -0.29853 + 51 -0.00000 -0.00000 1.00000 0.00000 -0.05144 -0.28716 + 52 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 + 53 0.04472 -0.05348 -0.05144 0.00000 1.00000 0.24836 + 54 0.40277 -0.29853 -0.28716 0.00000 0.24836 1.00000 + 55 0.29853 -0.05323 -0.28521 0.00000 -0.00000 -0.00000 + 56 0.28716 -0.28521 -0.03108 0.00000 0.00000 -0.00000 + 57 0.00000 0.00000 0.00000 0.24327 0.00000 0.00000 + 58 0.48601 0.45179 -0.10758 0.00000 0.00578 0.10189 + 59 0.10189 -0.04556 -0.12246 0.00000 0.06109 0.48601 + 60 0.10189 -0.12414 -0.04077 0.00000 0.06109 0.48601 + + 55 56 57 58 59 60 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00079 0.00292 0.00000 0.00444 0.00006 0.00091 + 2 0.01938 0.07173 0.00000 0.08438 0.00473 0.02827 + 3 0.01180 -0.03093 0.00000 0.06788 -0.00101 -0.02594 + 4 -0.03093 -0.09432 0.00000 -0.08763 -0.00795 -0.03271 + 5 0.00000 0.00000 0.02015 0.00000 0.00000 0.00000 + 6 0.00001 0.00001 0.00000 0.00115 0.00000 0.00000 + 7 0.00169 0.00331 0.00000 0.03309 0.00018 0.00087 + 8 -0.00091 -0.00304 0.00000 0.00566 -0.00012 -0.00109 + 9 -0.00304 -0.00533 0.00000 -0.04782 -0.00035 -0.00121 + 10 0.00000 0.00000 0.00063 0.00000 0.00000 0.00000 + 11 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 12 0.00002 0.00008 0.00000 0.00104 0.00000 0.00004 + 13 -0.00001 -0.00005 0.00000 0.00028 -0.00000 -0.00004 + 14 -0.00005 -0.00017 0.00000 -0.00191 -0.00000 -0.00008 + 15 0.00000 0.00000 0.00001 0.00000 0.00000 0.00000 + 16 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 17 0.00000 0.00003 0.00000 0.00009 0.00000 0.00005 + 18 0.00000 -0.00000 0.00000 0.00007 0.00000 -0.00003 + 19 -0.00000 -0.00008 0.00000 -0.00017 -0.00000 -0.00011 + 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 21 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00001 + 22 -0.00013 0.00059 0.00000 0.00019 0.00001 0.00137 + 23 0.00003 0.00028 0.00000 0.00025 0.00001 -0.00008 + 24 0.00028 -0.00120 0.00000 -0.00031 -0.00003 -0.00251 + 25 0.00000 0.00000 0.00009 0.00000 0.00000 0.00000 + 26 -0.00013 0.00056 0.00000 0.00007 0.00001 0.00133 + 27 -0.00659 0.02858 0.00000 0.00541 0.00117 0.03648 + 28 0.00396 0.01143 0.00000 0.00701 0.00047 -0.00801 + 29 0.01143 -0.04299 0.00000 -0.00577 -0.00211 -0.05197 + 30 0.00000 0.00000 0.00659 0.00000 0.00000 0.00000 + 31 0.00142 0.00155 0.00000 0.05547 0.00020 0.00027 + 32 0.00000 0.00000 0.00000 0.00021 0.00000 0.00000 + 33 -0.00005 0.00012 0.00000 0.00001 0.00000 0.00055 + 34 -0.03197 0.04622 0.00000 0.00280 0.00417 0.12984 + 35 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 36 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 37 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 38 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 41 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 42 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 43 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 46 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 47 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 48 0.05348 0.05144 0.00000 0.06109 0.00578 0.00578 + 49 0.29853 0.28716 0.00000 0.48601 0.10189 0.10189 + 50 -0.05323 -0.28521 0.00000 0.45179 -0.04556 -0.12414 + 51 -0.28521 -0.03108 0.00000 -0.10758 -0.12246 -0.04077 + 52 0.00000 0.00000 0.24327 0.00000 0.00000 0.00000 + 53 -0.00000 0.00000 0.00000 0.00578 0.06109 0.06109 + 54 -0.00000 -0.00000 0.00000 0.10189 0.48601 0.48601 + 55 1.00000 0.00000 0.00000 0.12414 0.08998 -0.45179 + 56 0.00000 1.00000 0.00000 0.04077 -0.45562 0.10758 + 57 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 58 0.12414 0.04077 0.00000 1.00000 0.04831 0.01414 + 59 0.08998 -0.45562 0.00000 0.04831 1.00000 0.15221 + 60 -0.45179 0.10758 0.00000 0.01414 0.15221 1.00000 + + Superposition of Atomic Density Guess + ------------------------------------- + + Sum of atomic energies: -376.44825176 + + global array: Temp HCore[1:60,1:60], handle: -988 + + 1 2 3 4 5 6 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 1.00000 0.24836 0.00000 0.00000 0.00000 0.00000 + 2 0.24836 1.00000 -0.00000 -0.00000 0.00000 0.03795 + 3 0.00000 -0.00000 1.00000 -0.00000 0.00000 0.04734 + 4 0.00000 -0.00000 -0.00000 1.00000 0.00000 0.04144 + 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 6 0.00000 0.03795 0.04734 0.04144 0.00000 1.00000 + 7 0.03795 0.36707 0.29320 0.25662 0.00000 0.24836 + 8 -0.04734 -0.29320 -0.09256 -0.26910 0.00000 0.00000 + 9 -0.04144 -0.25662 -0.26910 -0.02063 0.00000 0.00000 + 10 0.00000 0.00000 0.00000 0.00000 0.21490 0.00000 + 11 0.00000 0.00184 0.00137 0.00402 0.00000 0.00000 + 12 0.00184 0.06128 0.02907 0.08533 0.00000 0.03799 + 13 -0.00137 -0.02907 0.01043 -0.04470 0.00000 0.01222 + 14 -0.00402 -0.08533 -0.04470 -0.10553 0.00000 -0.06179 + 15 0.00000 0.00000 0.00000 0.00000 0.02566 0.00000 + 16 0.00000 0.00042 -0.00022 0.00110 0.00000 0.00000 + 17 0.00042 0.02638 -0.00822 0.04158 0.00000 0.00184 + 18 0.00022 0.00822 0.00743 0.01397 0.00000 0.00280 + 19 -0.00110 -0.04158 0.01397 -0.06047 0.00000 -0.00320 + 20 0.00000 0.00000 0.00000 0.00000 0.01019 0.00000 + 21 0.00000 0.00184 -0.00280 0.00320 0.00000 0.00000 + 22 0.00184 0.06132 -0.05940 0.06788 0.00000 0.00042 + 23 0.00280 0.05940 -0.03785 0.07261 0.00000 0.00106 + 24 -0.00320 -0.06788 0.07261 -0.05729 0.00000 -0.00036 + 25 0.00000 0.00000 0.00000 0.00000 0.02568 0.00000 + 26 0.00000 0.03797 -0.05959 0.02030 0.00000 0.00000 + 27 0.03797 0.36720 -0.36891 0.12569 0.00000 0.00184 + 28 0.05959 0.36891 -0.27161 0.16579 0.00000 0.00416 + 29 -0.02030 -0.12569 0.16579 0.15852 0.00000 0.00082 + 30 0.00000 0.00000 0.00000 0.00000 0.21500 0.00000 + 31 0.00529 0.09559 0.11933 0.03219 0.00000 0.06089 + 32 0.00009 0.00644 0.00503 0.00943 0.00000 0.00529 + 33 0.00009 0.00645 -0.00825 0.00681 0.00000 0.00001 + 34 0.00529 0.09561 -0.12263 -0.01567 0.00000 0.00009 + 35 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 36 0.00000 0.00029 -0.00013 0.00063 0.00000 0.00000 + 37 0.00000 0.00013 0.00004 0.00027 0.00000 0.00000 + 38 -0.00000 -0.00063 0.00027 -0.00129 0.00000 -0.00001 + 39 0.00000 0.00000 0.00000 0.00000 0.00009 0.00000 + 40 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 41 0.00000 0.00001 0.00000 0.00003 0.00000 0.00000 + 42 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 43 -0.00000 -0.00003 -0.00000 -0.00008 0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 0.00000 0.00009 -0.00007 0.00017 0.00000 0.00000 + 46 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 47 0.00000 0.00005 0.00003 0.00011 0.00000 0.00001 + 48 0.00000 0.02659 0.00865 -0.04374 0.00000 0.00000 + 49 0.02659 0.29849 0.06528 -0.32997 0.00000 0.00114 + 50 -0.00865 -0.06528 0.14628 0.09109 0.00000 0.00082 + 51 0.04374 0.32997 0.09109 -0.29609 0.00000 0.00265 + 52 0.00000 0.00000 0.00000 0.00000 0.16431 0.00000 + 53 0.00000 0.00126 -0.00079 -0.00292 0.00000 0.00000 + 54 0.00126 0.04927 -0.01938 -0.07173 0.00000 0.00000 + 55 0.00079 0.01938 0.01180 -0.03093 0.00000 0.00001 + 56 0.00292 0.07173 -0.03093 -0.09432 0.00000 0.00001 + 57 0.00000 0.00000 0.00000 0.00000 0.02015 0.00000 + 58 0.00444 0.08438 0.06788 -0.08763 0.00000 0.00115 + 59 0.00006 0.00473 -0.00101 -0.00795 0.00000 0.00000 + 60 0.00091 0.02827 -0.02594 -0.03271 0.00000 0.00000 + + 7 8 9 10 11 12 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.03795 -0.04734 -0.04144 0.00000 0.00000 0.00184 + 2 0.36707 -0.29320 -0.25662 0.00000 0.00184 0.06128 + 3 0.29320 -0.09256 -0.26910 0.00000 0.00137 0.02907 + 4 0.25662 -0.26910 -0.02063 0.00000 0.00402 0.08533 + 5 0.00000 0.00000 0.00000 0.21490 0.00000 0.00000 + 6 0.24836 0.00000 0.00000 0.00000 0.00000 0.03799 + 7 1.00000 -0.00000 -0.00000 0.00000 0.03799 0.36730 + 8 -0.00000 1.00000 -0.00000 0.00000 -0.01222 -0.07561 + 9 -0.00000 -0.00000 1.00000 0.00000 0.06179 0.38240 + 10 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 + 11 0.03799 -0.01222 0.06179 0.00000 1.00000 0.24836 + 12 0.36730 -0.07561 0.38240 0.00000 0.24836 1.00000 + 13 0.07561 0.19464 0.10336 0.00000 -0.00000 0.00000 + 14 -0.38240 0.10336 -0.30767 0.00000 -0.00000 -0.00000 + 15 0.00000 0.00000 0.00000 0.21508 0.00000 0.00000 + 16 0.00184 -0.00280 0.00320 0.00000 0.00000 0.03797 + 17 0.06132 -0.05940 0.06788 0.00000 0.03797 0.36720 + 18 0.05940 -0.03785 0.07261 0.00000 0.05959 0.36891 + 19 -0.06788 0.07261 -0.05729 0.00000 -0.02030 -0.12569 + 20 0.00000 0.00000 0.00000 0.02568 0.00000 0.00000 + 21 0.00042 -0.00106 0.00036 0.00000 0.00000 0.00184 + 22 0.02640 -0.04014 0.01367 0.00000 0.00184 0.06128 + 23 0.04014 -0.05563 0.02241 0.00000 0.00416 0.08844 + 24 -0.01367 0.02241 0.00256 0.00000 0.00082 0.01750 + 25 0.00000 0.00000 0.00000 0.01019 0.00000 0.00000 + 26 0.00184 -0.00416 -0.00082 0.00000 0.00000 0.00042 + 27 0.06128 -0.08844 -0.01750 0.00000 0.00042 0.02638 + 28 0.08844 -0.11525 -0.02788 0.00000 0.00084 0.03189 + 29 0.01750 -0.02788 0.02015 0.00000 0.00074 0.02790 + 30 0.00000 0.00000 0.00000 0.02566 0.00000 0.00000 + 31 0.48521 0.43912 -0.14971 0.00000 0.00529 0.09560 + 32 0.09560 0.03179 0.11945 0.00000 0.06088 0.48520 + 33 0.00185 -0.00315 0.00107 0.00000 0.00009 0.00645 + 34 0.00645 -0.01001 -0.00374 0.00000 0.00001 0.00185 + 35 0.00000 -0.00000 0.00001 0.00000 0.00000 0.00114 + 36 0.00153 -0.00150 0.00264 0.00000 0.00114 0.04655 + 37 0.00150 -0.00101 0.00267 0.00000 0.00176 0.04498 + 38 -0.00264 0.00267 -0.00420 0.00000 -0.00214 -0.05447 + 39 0.00000 0.00000 0.00000 0.00051 0.00000 0.00000 + 40 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00021 + 41 0.00027 -0.00013 0.00059 0.00000 0.00021 0.01761 + 42 0.00013 0.00003 0.00028 0.00000 0.00013 0.00659 + 43 -0.00059 0.00028 -0.00120 0.00000 -0.00056 -0.02858 + 44 0.00000 0.00000 0.00000 0.00009 0.00000 0.00000 + 45 0.00019 -0.00025 0.00031 0.00000 0.00007 0.00541 + 46 0.00001 -0.00001 0.00003 0.00000 0.00001 0.00117 + 47 0.00137 0.00008 0.00251 0.00000 0.00133 0.03648 + 48 0.00114 -0.00082 -0.00265 0.00000 0.00000 0.00000 + 49 0.04653 -0.02085 -0.06747 0.00000 0.00000 0.00153 + 50 0.02085 0.00870 -0.03308 0.00000 0.00000 0.00038 + 51 0.06747 -0.03308 -0.08812 0.00000 0.00001 0.00301 + 52 0.00000 0.00000 0.00000 0.01893 0.00000 0.00000 + 53 0.00000 -0.00001 -0.00001 0.00000 0.00000 0.00000 + 54 0.00189 -0.00169 -0.00331 0.00000 0.00000 0.00003 + 55 0.00169 -0.00091 -0.00304 0.00000 0.00000 0.00002 + 56 0.00331 -0.00304 -0.00533 0.00000 0.00000 0.00008 + 57 0.00000 0.00000 0.00000 0.00063 0.00000 0.00000 + 58 0.03309 0.00566 -0.04782 0.00000 0.00000 0.00104 + 59 0.00018 -0.00012 -0.00035 0.00000 0.00000 0.00000 + 60 0.00087 -0.00109 -0.00121 0.00000 0.00000 0.00004 + + 13 14 15 16 17 18 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00137 -0.00402 0.00000 0.00000 0.00042 0.00022 + 2 -0.02907 -0.08533 0.00000 0.00042 0.02638 0.00822 + 3 0.01043 -0.04470 0.00000 -0.00022 -0.00822 0.00743 + 4 -0.04470 -0.10553 0.00000 0.00110 0.04158 0.01397 + 5 0.00000 0.00000 0.02566 0.00000 0.00000 0.00000 + 6 0.01222 -0.06179 0.00000 0.00000 0.00184 0.00280 + 7 0.07561 -0.38240 0.00000 0.00184 0.06132 0.05940 + 8 0.19464 0.10336 0.00000 -0.00280 -0.05940 -0.03785 + 9 0.10336 -0.30767 0.00000 0.00320 0.06788 0.07261 + 10 0.00000 0.00000 0.21508 0.00000 0.00000 0.00000 + 11 -0.00000 -0.00000 0.00000 0.00000 0.03797 0.05959 + 12 0.00000 -0.00000 0.00000 0.03797 0.36720 0.36891 + 13 1.00000 0.00000 0.00000 -0.05959 -0.36891 -0.27161 + 14 0.00000 1.00000 0.00000 0.02030 0.12569 0.16579 + 15 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 16 -0.05959 0.02030 0.00000 1.00000 0.24836 0.00000 + 17 -0.36891 0.12569 0.00000 0.24836 1.00000 0.00000 + 18 -0.27161 0.16579 0.00000 0.00000 0.00000 1.00000 + 19 0.16579 0.15852 0.00000 -0.00000 0.00000 -0.00000 + 20 0.00000 0.00000 0.21500 0.00000 0.00000 0.00000 + 21 -0.00416 -0.00082 0.00000 0.00000 0.03795 -0.04734 + 22 -0.08844 -0.01750 0.00000 0.03795 0.36707 -0.29320 + 23 -0.11525 -0.02788 0.00000 0.04734 0.29320 -0.09256 + 24 -0.02788 0.02015 0.00000 0.04144 0.25662 -0.26910 + 25 0.00000 0.00000 0.02566 0.00000 0.00000 0.00000 + 26 -0.00084 -0.00074 0.00000 0.00000 0.00184 -0.00137 + 27 -0.03189 -0.02790 0.00000 0.00184 0.06128 -0.02907 + 28 -0.03139 -0.03638 0.00000 0.00137 0.02907 0.01043 + 29 -0.03638 -0.02164 0.00000 0.00402 0.08533 -0.04470 + 30 0.00000 0.00000 0.01019 0.00000 0.00000 0.00000 + 31 0.07487 -0.09837 0.00000 0.00009 0.00645 0.00825 + 32 0.34908 0.30557 0.00000 0.00529 0.09561 0.12263 + 33 -0.01069 -0.00036 0.00000 0.00529 0.09559 -0.11933 + 34 -0.00250 -0.00219 0.00000 0.00009 0.00644 -0.00503 + 35 -0.00176 0.00214 0.00000 0.00000 0.02659 -0.00865 + 36 -0.04498 0.05447 0.00000 0.02659 0.29849 -0.06528 + 37 -0.02863 0.05760 0.00000 0.00865 0.06528 0.14628 + 38 0.05760 -0.05081 0.00000 -0.04374 -0.32997 0.09109 + 39 0.00000 0.00000 0.01893 0.00000 0.00000 0.00000 + 40 -0.00013 0.00056 0.00000 0.00000 0.00126 0.00079 + 41 -0.00659 0.02858 0.00000 0.00126 0.04927 0.01938 + 42 0.00396 0.01143 0.00000 -0.00079 -0.01938 0.01180 + 43 0.01143 -0.04299 0.00000 -0.00292 -0.07173 -0.03093 + 44 0.00000 0.00000 0.00659 0.00000 0.00000 0.00000 + 45 -0.00701 0.00577 0.00000 0.00444 0.08438 -0.06788 + 46 -0.00047 0.00211 0.00000 0.00006 0.00473 0.00101 + 47 0.00801 0.05197 0.00000 0.00091 0.02827 0.02594 + 48 -0.00000 -0.00001 0.00000 0.00000 0.00000 0.00000 + 49 -0.00038 -0.00301 0.00000 0.00000 0.00029 0.00013 + 50 0.00041 -0.00077 0.00000 -0.00000 -0.00013 0.00004 + 51 -0.00077 -0.00561 0.00000 0.00000 0.00063 0.00027 + 52 0.00000 0.00000 0.00051 0.00000 0.00000 0.00000 + 53 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 54 -0.00002 -0.00008 0.00000 0.00000 0.00001 -0.00000 + 55 -0.00001 -0.00005 0.00000 0.00000 0.00000 0.00000 + 56 -0.00005 -0.00017 0.00000 0.00000 0.00003 -0.00000 + 57 0.00000 0.00000 0.00001 0.00000 0.00000 0.00000 + 58 0.00028 -0.00191 0.00000 0.00000 0.00009 0.00007 + 59 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 60 -0.00004 -0.00008 0.00000 0.00000 0.00005 -0.00003 + + 19 20 21 22 23 24 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00110 0.00000 0.00000 0.00184 0.00280 -0.00320 + 2 -0.04158 0.00000 0.00184 0.06132 0.05940 -0.06788 + 3 0.01397 0.00000 -0.00280 -0.05940 -0.03785 0.07261 + 4 -0.06047 0.00000 0.00320 0.06788 0.07261 -0.05729 + 5 0.00000 0.01019 0.00000 0.00000 0.00000 0.00000 + 6 -0.00320 0.00000 0.00000 0.00042 0.00106 -0.00036 + 7 -0.06788 0.00000 0.00042 0.02640 0.04014 -0.01367 + 8 0.07261 0.00000 -0.00106 -0.04014 -0.05563 0.02241 + 9 -0.05729 0.00000 0.00036 0.01367 0.02241 0.00256 + 10 0.00000 0.02568 0.00000 0.00000 0.00000 0.00000 + 11 -0.02030 0.00000 0.00000 0.00184 0.00416 0.00082 + 12 -0.12569 0.00000 0.00184 0.06128 0.08844 0.01750 + 13 0.16579 0.00000 -0.00416 -0.08844 -0.11525 -0.02788 + 14 0.15852 0.00000 -0.00082 -0.01750 -0.02788 0.02015 + 15 0.00000 0.21500 0.00000 0.00000 0.00000 0.00000 + 16 -0.00000 0.00000 0.00000 0.03795 0.04734 0.04144 + 17 0.00000 0.00000 0.03795 0.36707 0.29320 0.25662 + 18 -0.00000 0.00000 -0.04734 -0.29320 -0.09256 -0.26910 + 19 1.00000 0.00000 -0.04144 -0.25662 -0.26910 -0.02063 + 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 21 -0.04144 0.00000 1.00000 0.24836 -0.00000 -0.00000 + 22 -0.25662 0.00000 0.24836 1.00000 0.00000 0.00000 + 23 -0.26910 0.00000 -0.00000 0.00000 1.00000 -0.00000 + 24 -0.02063 0.00000 -0.00000 0.00000 -0.00000 1.00000 + 25 0.00000 0.21490 0.00000 0.00000 0.00000 0.00000 + 26 -0.00402 0.00000 0.00000 0.03799 0.01222 -0.06179 + 27 -0.08533 0.00000 0.03799 0.36730 0.07561 -0.38240 + 28 -0.04470 0.00000 -0.01222 -0.07561 0.19464 0.10336 + 29 -0.10553 0.00000 0.06179 0.38240 0.10336 -0.30767 + 30 0.00000 0.02566 0.00000 0.00000 0.00000 0.00000 + 31 -0.00681 0.00000 0.00001 0.00185 0.00315 -0.00107 + 32 0.01567 0.00000 0.00009 0.00645 0.01001 0.00374 + 33 -0.03219 0.00000 0.06089 0.48521 -0.43912 0.14971 + 34 -0.00943 0.00000 0.00529 0.09560 -0.03179 -0.11945 + 35 0.04374 0.00000 0.00000 0.00114 0.00082 0.00265 + 36 0.32997 0.00000 0.00114 0.04653 0.02085 0.06747 + 37 0.09109 0.00000 -0.00082 -0.02085 0.00870 -0.03308 + 38 -0.29609 0.00000 -0.00265 -0.06747 -0.03308 -0.08812 + 39 0.00000 0.16431 0.00000 0.00000 0.00000 0.00000 + 40 0.00292 0.00000 0.00000 0.00000 0.00001 0.00001 + 41 0.07173 0.00000 0.00000 0.00189 0.00169 0.00331 + 42 -0.03093 0.00000 -0.00001 -0.00169 -0.00091 -0.00304 + 43 -0.09432 0.00000 -0.00001 -0.00331 -0.00304 -0.00533 + 44 0.00000 0.02015 0.00000 0.00000 0.00000 0.00000 + 45 0.08763 0.00000 0.00115 0.03309 -0.00566 0.04782 + 46 0.00795 0.00000 0.00000 0.00018 0.00012 0.00035 + 47 0.03271 0.00000 0.00000 0.00087 0.00109 0.00121 + 48 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00001 + 49 -0.00063 0.00000 0.00000 0.00153 0.00150 -0.00264 + 50 0.00027 0.00000 -0.00000 -0.00150 -0.00101 0.00267 + 51 -0.00129 0.00000 0.00001 0.00264 0.00267 -0.00420 + 52 0.00000 0.00009 0.00000 0.00000 0.00000 0.00000 + 53 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 54 -0.00003 0.00000 0.00000 0.00027 0.00013 -0.00059 + 55 -0.00000 0.00000 -0.00000 -0.00013 0.00003 0.00028 + 56 -0.00008 0.00000 0.00000 0.00059 0.00028 -0.00120 + 57 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 58 -0.00017 0.00000 0.00000 0.00019 0.00025 -0.00031 + 59 -0.00000 0.00000 0.00000 0.00001 0.00001 -0.00003 + 60 -0.00011 0.00000 0.00001 0.00137 -0.00008 -0.00251 + + 25 26 27 28 29 30 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 0.00000 0.03797 0.05959 -0.02030 0.00000 + 2 0.00000 0.03797 0.36720 0.36891 -0.12569 0.00000 + 3 0.00000 -0.05959 -0.36891 -0.27161 0.16579 0.00000 + 4 0.00000 0.02030 0.12569 0.16579 0.15852 0.00000 + 5 0.02568 0.00000 0.00000 0.00000 0.00000 0.21500 + 6 0.00000 0.00000 0.00184 0.00416 0.00082 0.00000 + 7 0.00000 0.00184 0.06128 0.08844 0.01750 0.00000 + 8 0.00000 -0.00416 -0.08844 -0.11525 -0.02788 0.00000 + 9 0.00000 -0.00082 -0.01750 -0.02788 0.02015 0.00000 + 10 0.01019 0.00000 0.00000 0.00000 0.00000 0.02566 + 11 0.00000 0.00000 0.00042 0.00084 0.00074 0.00000 + 12 0.00000 0.00042 0.02638 0.03189 0.02790 0.00000 + 13 0.00000 -0.00084 -0.03189 -0.03139 -0.03638 0.00000 + 14 0.00000 -0.00074 -0.02790 -0.03638 -0.02164 0.00000 + 15 0.02566 0.00000 0.00000 0.00000 0.00000 0.01019 + 16 0.00000 0.00000 0.00184 0.00137 0.00402 0.00000 + 17 0.00000 0.00184 0.06128 0.02907 0.08533 0.00000 + 18 0.00000 -0.00137 -0.02907 0.01043 -0.04470 0.00000 + 19 0.00000 -0.00402 -0.08533 -0.04470 -0.10553 0.00000 + 20 0.21490 0.00000 0.00000 0.00000 0.00000 0.02566 + 21 0.00000 0.00000 0.03799 -0.01222 0.06179 0.00000 + 22 0.00000 0.03799 0.36730 -0.07561 0.38240 0.00000 + 23 0.00000 0.01222 0.07561 0.19464 0.10336 0.00000 + 24 0.00000 -0.06179 -0.38240 0.10336 -0.30767 0.00000 + 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.21508 + 26 0.00000 1.00000 0.24836 0.00000 0.00000 0.00000 + 27 0.00000 0.24836 1.00000 -0.00000 0.00000 0.00000 + 28 0.00000 0.00000 -0.00000 1.00000 0.00000 0.00000 + 29 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 30 0.21508 0.00000 0.00000 0.00000 0.00000 1.00000 + 31 0.00000 0.00009 0.00645 0.01069 0.00036 0.00000 + 32 0.00000 0.00001 0.00185 0.00250 0.00219 0.00000 + 33 0.00000 0.00529 0.09560 -0.07487 0.09837 0.00000 + 34 0.00000 0.06088 0.48520 -0.34908 -0.30557 0.00000 + 35 0.00000 0.00000 0.00000 0.00000 0.00001 0.00000 + 36 0.00000 0.00000 0.00153 0.00038 0.00301 0.00000 + 37 0.00000 -0.00000 -0.00038 0.00041 -0.00077 0.00000 + 38 0.00000 -0.00001 -0.00301 -0.00077 -0.00561 0.00000 + 39 0.01893 0.00000 0.00000 0.00000 0.00000 0.00051 + 40 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 41 0.00000 0.00000 0.00003 0.00002 0.00008 0.00000 + 42 0.00000 -0.00000 -0.00002 -0.00001 -0.00005 0.00000 + 43 0.00000 -0.00000 -0.00008 -0.00005 -0.00017 0.00000 + 44 0.00063 0.00000 0.00000 0.00000 0.00000 0.00001 + 45 0.00000 0.00000 0.00104 -0.00028 0.00191 0.00000 + 46 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 47 0.00000 0.00000 0.00004 0.00004 0.00008 0.00000 + 48 0.00000 0.00000 0.00114 0.00176 -0.00214 0.00000 + 49 0.00000 0.00114 0.04655 0.04498 -0.05447 0.00000 + 50 0.00000 -0.00176 -0.04498 -0.02863 0.05760 0.00000 + 51 0.00000 0.00214 0.05447 0.05760 -0.05081 0.00000 + 52 0.00051 0.00000 0.00000 0.00000 0.00000 0.01893 + 53 0.00000 0.00000 0.00021 0.00013 -0.00056 0.00000 + 54 0.00000 0.00021 0.01761 0.00659 -0.02858 0.00000 + 55 0.00000 -0.00013 -0.00659 0.00396 0.01143 0.00000 + 56 0.00000 0.00056 0.02858 0.01143 -0.04299 0.00000 + 57 0.00009 0.00000 0.00000 0.00000 0.00000 0.00659 + 58 0.00000 0.00007 0.00541 0.00701 -0.00577 0.00000 + 59 0.00000 0.00001 0.00117 0.00047 -0.00211 0.00000 + 60 0.00000 0.00133 0.03648 -0.00801 -0.05197 0.00000 + + 31 32 33 34 35 36 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00529 0.00009 0.00009 0.00529 0.00000 0.00000 + 2 0.09559 0.00644 0.00645 0.09561 0.00000 0.00029 + 3 0.11933 0.00503 -0.00825 -0.12263 -0.00000 -0.00013 + 4 0.03219 0.00943 0.00681 -0.01567 0.00000 0.00063 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 0.06089 0.00529 0.00001 0.00009 0.00000 0.00000 + 7 0.48521 0.09560 0.00185 0.00645 0.00000 0.00153 + 8 0.43912 0.03179 -0.00315 -0.01001 -0.00000 -0.00150 + 9 -0.14971 0.11945 0.00107 -0.00374 0.00001 0.00264 + 10 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 11 0.00529 0.06088 0.00009 0.00001 0.00000 0.00114 + 12 0.09560 0.48520 0.00645 0.00185 0.00114 0.04655 + 13 0.07487 0.34908 -0.01069 -0.00250 -0.00176 -0.04498 + 14 -0.09837 0.30557 -0.00036 -0.00219 0.00214 0.05447 + 15 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 16 0.00009 0.00529 0.00529 0.00009 0.00000 0.02659 + 17 0.00645 0.09561 0.09559 0.00644 0.02659 0.29849 + 18 0.00825 0.12263 -0.11933 -0.00503 -0.00865 -0.06528 + 19 -0.00681 0.01567 -0.03219 -0.00943 0.04374 0.32997 + 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 21 0.00001 0.00009 0.06089 0.00529 0.00000 0.00114 + 22 0.00185 0.00645 0.48521 0.09560 0.00114 0.04653 + 23 0.00315 0.01001 -0.43912 -0.03179 0.00082 0.02085 + 24 -0.00107 0.00374 0.14971 -0.11945 0.00265 0.06747 + 25 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 26 0.00009 0.00001 0.00529 0.06088 0.00000 0.00000 + 27 0.00645 0.00185 0.09560 0.48520 0.00000 0.00153 + 28 0.01069 0.00250 -0.07487 -0.34908 0.00000 0.00038 + 29 0.00036 0.00219 0.09837 -0.30557 0.00001 0.00301 + 30 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 31 1.00000 0.05001 0.00011 0.00076 0.00000 0.00016 + 32 0.05001 1.00000 0.00076 0.00011 0.00102 0.03049 + 33 0.00011 0.00076 1.00000 0.05001 0.00102 0.03049 + 34 0.00076 0.00011 0.05001 1.00000 0.00000 0.00016 + 35 0.00000 0.00102 0.00102 0.00000 1.00000 0.24836 + 36 0.00016 0.03049 0.03049 0.00016 0.24836 1.00000 + 37 0.00020 0.03990 -0.02922 -0.00009 0.00000 0.00000 + 38 -0.00026 -0.02016 -0.03383 -0.00032 -0.00000 0.00000 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 0.00000 0.00148 0.00001 0.00000 0.00000 0.04472 + 41 0.00006 0.03927 0.00113 0.00000 0.04472 0.40277 + 42 0.00005 0.03197 -0.00142 -0.00000 -0.05348 -0.29853 + 43 -0.00012 -0.04622 -0.00155 -0.00000 -0.05144 -0.28716 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 0.00001 0.00280 0.05547 0.00021 0.06109 0.48601 + 46 0.00000 0.00417 0.00020 0.00000 0.00578 0.10189 + 47 0.00055 0.12984 0.00027 0.00000 0.00578 0.10189 + 48 0.00102 0.00000 0.00000 0.00102 0.00000 0.00000 + 49 0.03049 0.00016 0.00016 0.03049 0.00000 0.00000 + 50 0.02922 0.00009 -0.00020 -0.03990 -0.00000 -0.00000 + 51 0.03383 0.00032 0.00026 0.02016 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 53 0.00001 0.00000 0.00000 0.00148 0.00000 0.00000 + 54 0.00113 0.00000 0.00006 0.03927 0.00000 0.00000 + 55 0.00142 0.00000 -0.00005 -0.03197 -0.00000 -0.00000 + 56 0.00155 0.00000 0.00012 0.04622 0.00000 0.00000 + 57 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 58 0.05547 0.00021 0.00001 0.00280 0.00000 0.00000 + 59 0.00020 0.00000 0.00000 0.00417 0.00000 0.00000 + 60 0.00027 0.00000 0.00055 0.12984 0.00000 0.00000 + + 37 38 39 40 41 42 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 2 0.00013 -0.00063 0.00000 0.00000 0.00001 -0.00000 + 3 0.00004 0.00027 0.00000 0.00000 0.00000 0.00000 + 4 0.00027 -0.00129 0.00000 0.00000 0.00003 -0.00000 + 5 0.00000 0.00000 0.00009 0.00000 0.00000 0.00000 + 6 0.00000 -0.00001 0.00000 0.00000 0.00000 0.00000 + 7 0.00150 -0.00264 0.00000 0.00000 0.00027 0.00013 + 8 -0.00101 0.00267 0.00000 -0.00000 -0.00013 0.00003 + 9 0.00267 -0.00420 0.00000 0.00000 0.00059 0.00028 + 10 0.00000 0.00000 0.00051 0.00000 0.00000 0.00000 + 11 0.00176 -0.00214 0.00000 0.00000 0.00021 0.00013 + 12 0.04498 -0.05447 0.00000 0.00021 0.01761 0.00659 + 13 -0.02863 0.05760 0.00000 -0.00013 -0.00659 0.00396 + 14 0.05760 -0.05081 0.00000 0.00056 0.02858 0.01143 + 15 0.00000 0.00000 0.01893 0.00000 0.00000 0.00000 + 16 0.00865 -0.04374 0.00000 0.00000 0.00126 -0.00079 + 17 0.06528 -0.32997 0.00000 0.00126 0.04927 -0.01938 + 18 0.14628 0.09109 0.00000 0.00079 0.01938 0.01180 + 19 0.09109 -0.29609 0.00000 0.00292 0.07173 -0.03093 + 20 0.00000 0.00000 0.16431 0.00000 0.00000 0.00000 + 21 -0.00082 -0.00265 0.00000 0.00000 0.00000 -0.00001 + 22 -0.02085 -0.06747 0.00000 0.00000 0.00189 -0.00169 + 23 0.00870 -0.03308 0.00000 0.00001 0.00169 -0.00091 + 24 -0.03308 -0.08812 0.00000 0.00001 0.00331 -0.00304 + 25 0.00000 0.00000 0.01893 0.00000 0.00000 0.00000 + 26 -0.00000 -0.00001 0.00000 0.00000 0.00000 -0.00000 + 27 -0.00038 -0.00301 0.00000 0.00000 0.00003 -0.00002 + 28 0.00041 -0.00077 0.00000 0.00000 0.00002 -0.00001 + 29 -0.00077 -0.00561 0.00000 0.00000 0.00008 -0.00005 + 30 0.00000 0.00000 0.00051 0.00000 0.00000 0.00000 + 31 0.00020 -0.00026 0.00000 0.00000 0.00006 0.00005 + 32 0.03990 -0.02016 0.00000 0.00148 0.03927 0.03197 + 33 -0.02922 -0.03383 0.00000 0.00001 0.00113 -0.00142 + 34 -0.00009 -0.00032 0.00000 0.00000 0.00000 -0.00000 + 35 0.00000 -0.00000 0.00000 0.00000 0.04472 -0.05348 + 36 0.00000 0.00000 0.00000 0.04472 0.40277 -0.29853 + 37 1.00000 -0.00000 0.00000 0.05348 0.29853 -0.05323 + 38 -0.00000 1.00000 0.00000 0.05144 0.28716 -0.28521 + 39 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 40 0.05348 0.05144 0.00000 1.00000 0.24836 0.00000 + 41 0.29853 0.28716 0.00000 0.24836 1.00000 0.00000 + 42 -0.05323 -0.28521 0.00000 0.00000 0.00000 1.00000 + 43 -0.28521 -0.03108 0.00000 -0.00000 0.00000 0.00000 + 44 0.00000 0.00000 0.24327 0.00000 0.00000 0.00000 + 45 -0.45179 0.10758 0.00000 0.00578 0.10189 -0.12414 + 46 0.04556 0.12246 0.00000 0.06109 0.48601 -0.08998 + 47 0.12414 0.04077 0.00000 0.06109 0.48601 0.45179 + 48 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 49 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 50 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 51 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 53 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 54 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 55 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 56 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 57 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 58 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 59 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 60 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + + 43 44 45 46 47 48 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 2 -0.00003 0.00000 0.00009 0.00000 0.00005 0.02659 + 3 -0.00000 0.00000 -0.00007 -0.00000 0.00003 0.00865 + 4 -0.00008 0.00000 0.00017 0.00000 0.00011 -0.04374 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 -0.00000 0.00000 0.00000 0.00000 0.00001 0.00000 + 7 -0.00059 0.00000 0.00019 0.00001 0.00137 0.00114 + 8 0.00028 0.00000 -0.00025 -0.00001 0.00008 -0.00082 + 9 -0.00120 0.00000 0.00031 0.00003 0.00251 -0.00265 + 10 0.00000 0.00009 0.00000 0.00000 0.00000 0.00000 + 11 -0.00056 0.00000 0.00007 0.00001 0.00133 0.00000 + 12 -0.02858 0.00000 0.00541 0.00117 0.03648 0.00000 + 13 0.01143 0.00000 -0.00701 -0.00047 0.00801 -0.00000 + 14 -0.04299 0.00000 0.00577 0.00211 0.05197 -0.00001 + 15 0.00000 0.00659 0.00000 0.00000 0.00000 0.00000 + 16 -0.00292 0.00000 0.00444 0.00006 0.00091 0.00000 + 17 -0.07173 0.00000 0.08438 0.00473 0.02827 0.00000 + 18 -0.03093 0.00000 -0.06788 0.00101 0.02594 0.00000 + 19 -0.09432 0.00000 0.08763 0.00795 0.03271 -0.00000 + 20 0.00000 0.02015 0.00000 0.00000 0.00000 0.00000 + 21 -0.00001 0.00000 0.00115 0.00000 0.00000 0.00000 + 22 -0.00331 0.00000 0.03309 0.00018 0.00087 0.00000 + 23 -0.00304 0.00000 -0.00566 0.00012 0.00109 0.00000 + 24 -0.00533 0.00000 0.04782 0.00035 0.00121 -0.00001 + 25 0.00000 0.00063 0.00000 0.00000 0.00000 0.00000 + 26 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 27 -0.00008 0.00000 0.00104 0.00000 0.00004 0.00114 + 28 -0.00005 0.00000 -0.00028 0.00000 0.00004 0.00176 + 29 -0.00017 0.00000 0.00191 0.00000 0.00008 -0.00214 + 30 0.00000 0.00001 0.00000 0.00000 0.00000 0.00000 + 31 -0.00012 0.00000 0.00001 0.00000 0.00055 0.00102 + 32 -0.04622 0.00000 0.00280 0.00417 0.12984 0.00000 + 33 -0.00155 0.00000 0.05547 0.00020 0.00027 0.00000 + 34 -0.00000 0.00000 0.00021 0.00000 0.00000 0.00102 + 35 -0.05144 0.00000 0.06109 0.00578 0.00578 0.00000 + 36 -0.28716 0.00000 0.48601 0.10189 0.10189 0.00000 + 37 -0.28521 0.00000 -0.45179 0.04556 0.12414 0.00000 + 38 -0.03108 0.00000 0.10758 0.12246 0.04077 -0.00000 + 39 0.00000 0.24327 0.00000 0.00000 0.00000 0.00000 + 40 -0.00000 0.00000 0.00578 0.06109 0.06109 0.00000 + 41 0.00000 0.00000 0.10189 0.48601 0.48601 0.00000 + 42 0.00000 0.00000 -0.12414 -0.08998 0.45179 0.00000 + 43 1.00000 0.00000 -0.04077 0.45562 -0.10758 -0.00000 + 44 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.04077 0.00000 1.00000 0.04831 0.01414 0.00000 + 46 0.45562 0.00000 0.04831 1.00000 0.15221 0.00000 + 47 -0.10758 0.00000 0.01414 0.15221 1.00000 0.00000 + 48 -0.00000 0.00000 0.00000 0.00000 0.00000 1.00000 + 49 -0.00000 0.00000 0.00000 0.00000 0.00000 0.24836 + 50 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 51 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 53 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 54 -0.00000 0.00000 0.00000 0.00000 0.00000 0.04472 + 55 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.05348 + 56 -0.00000 0.00000 0.00000 0.00000 0.00000 0.05144 + 57 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 58 -0.00000 0.00000 0.00000 0.00000 0.00000 0.06109 + 59 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00578 + 60 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00578 + + 49 50 51 52 53 54 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.02659 -0.00865 0.04374 0.00000 0.00000 0.00126 + 2 0.29849 -0.06528 0.32997 0.00000 0.00126 0.04927 + 3 0.06528 0.14628 0.09109 0.00000 -0.00079 -0.01938 + 4 -0.32997 0.09109 -0.29609 0.00000 -0.00292 -0.07173 + 5 0.00000 0.00000 0.00000 0.16431 0.00000 0.00000 + 6 0.00114 0.00082 0.00265 0.00000 0.00000 0.00000 + 7 0.04653 0.02085 0.06747 0.00000 0.00000 0.00189 + 8 -0.02085 0.00870 -0.03308 0.00000 -0.00001 -0.00169 + 9 -0.06747 -0.03308 -0.08812 0.00000 -0.00001 -0.00331 + 10 0.00000 0.00000 0.00000 0.01893 0.00000 0.00000 + 11 0.00000 0.00000 0.00001 0.00000 0.00000 0.00000 + 12 0.00153 0.00038 0.00301 0.00000 0.00000 0.00003 + 13 -0.00038 0.00041 -0.00077 0.00000 -0.00000 -0.00002 + 14 -0.00301 -0.00077 -0.00561 0.00000 -0.00000 -0.00008 + 15 0.00000 0.00000 0.00000 0.00051 0.00000 0.00000 + 16 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 17 0.00029 -0.00013 0.00063 0.00000 0.00000 0.00001 + 18 0.00013 0.00004 0.00027 0.00000 -0.00000 -0.00000 + 19 -0.00063 0.00027 -0.00129 0.00000 -0.00000 -0.00003 + 20 0.00000 0.00000 0.00000 0.00009 0.00000 0.00000 + 21 0.00000 -0.00000 0.00001 0.00000 0.00000 0.00000 + 22 0.00153 -0.00150 0.00264 0.00000 0.00000 0.00027 + 23 0.00150 -0.00101 0.00267 0.00000 0.00000 0.00013 + 24 -0.00264 0.00267 -0.00420 0.00000 -0.00000 -0.00059 + 25 0.00000 0.00000 0.00000 0.00051 0.00000 0.00000 + 26 0.00114 -0.00176 0.00214 0.00000 0.00000 0.00021 + 27 0.04655 -0.04498 0.05447 0.00000 0.00021 0.01761 + 28 0.04498 -0.02863 0.05760 0.00000 0.00013 0.00659 + 29 -0.05447 0.05760 -0.05081 0.00000 -0.00056 -0.02858 + 30 0.00000 0.00000 0.00000 0.01893 0.00000 0.00000 + 31 0.03049 0.02922 0.03383 0.00000 0.00001 0.00113 + 32 0.00016 0.00009 0.00032 0.00000 0.00000 0.00000 + 33 0.00016 -0.00020 0.00026 0.00000 0.00000 0.00006 + 34 0.03049 -0.03990 0.02016 0.00000 0.00148 0.03927 + 35 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 36 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 37 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 38 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 41 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 42 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 43 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 46 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 47 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 48 0.24836 -0.00000 0.00000 0.00000 0.00000 0.04472 + 49 1.00000 -0.00000 -0.00000 0.00000 0.04472 0.40277 + 50 -0.00000 1.00000 -0.00000 0.00000 -0.05348 -0.29853 + 51 -0.00000 -0.00000 1.00000 0.00000 -0.05144 -0.28716 + 52 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 + 53 0.04472 -0.05348 -0.05144 0.00000 1.00000 0.24836 + 54 0.40277 -0.29853 -0.28716 0.00000 0.24836 1.00000 + 55 0.29853 -0.05323 -0.28521 0.00000 -0.00000 -0.00000 + 56 0.28716 -0.28521 -0.03108 0.00000 0.00000 -0.00000 + 57 0.00000 0.00000 0.00000 0.24327 0.00000 0.00000 + 58 0.48601 0.45179 -0.10758 0.00000 0.00578 0.10189 + 59 0.10189 -0.04556 -0.12246 0.00000 0.06109 0.48601 + 60 0.10189 -0.12414 -0.04077 0.00000 0.06109 0.48601 + + 55 56 57 58 59 60 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00079 0.00292 0.00000 0.00444 0.00006 0.00091 + 2 0.01938 0.07173 0.00000 0.08438 0.00473 0.02827 + 3 0.01180 -0.03093 0.00000 0.06788 -0.00101 -0.02594 + 4 -0.03093 -0.09432 0.00000 -0.08763 -0.00795 -0.03271 + 5 0.00000 0.00000 0.02015 0.00000 0.00000 0.00000 + 6 0.00001 0.00001 0.00000 0.00115 0.00000 0.00000 + 7 0.00169 0.00331 0.00000 0.03309 0.00018 0.00087 + 8 -0.00091 -0.00304 0.00000 0.00566 -0.00012 -0.00109 + 9 -0.00304 -0.00533 0.00000 -0.04782 -0.00035 -0.00121 + 10 0.00000 0.00000 0.00063 0.00000 0.00000 0.00000 + 11 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 12 0.00002 0.00008 0.00000 0.00104 0.00000 0.00004 + 13 -0.00001 -0.00005 0.00000 0.00028 -0.00000 -0.00004 + 14 -0.00005 -0.00017 0.00000 -0.00191 -0.00000 -0.00008 + 15 0.00000 0.00000 0.00001 0.00000 0.00000 0.00000 + 16 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 17 0.00000 0.00003 0.00000 0.00009 0.00000 0.00005 + 18 0.00000 -0.00000 0.00000 0.00007 0.00000 -0.00003 + 19 -0.00000 -0.00008 0.00000 -0.00017 -0.00000 -0.00011 + 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 21 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00001 + 22 -0.00013 0.00059 0.00000 0.00019 0.00001 0.00137 + 23 0.00003 0.00028 0.00000 0.00025 0.00001 -0.00008 + 24 0.00028 -0.00120 0.00000 -0.00031 -0.00003 -0.00251 + 25 0.00000 0.00000 0.00009 0.00000 0.00000 0.00000 + 26 -0.00013 0.00056 0.00000 0.00007 0.00001 0.00133 + 27 -0.00659 0.02858 0.00000 0.00541 0.00117 0.03648 + 28 0.00396 0.01143 0.00000 0.00701 0.00047 -0.00801 + 29 0.01143 -0.04299 0.00000 -0.00577 -0.00211 -0.05197 + 30 0.00000 0.00000 0.00659 0.00000 0.00000 0.00000 + 31 0.00142 0.00155 0.00000 0.05547 0.00020 0.00027 + 32 0.00000 0.00000 0.00000 0.00021 0.00000 0.00000 + 33 -0.00005 0.00012 0.00000 0.00001 0.00000 0.00055 + 34 -0.03197 0.04622 0.00000 0.00280 0.00417 0.12984 + 35 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 36 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 37 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 38 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 41 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 42 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 43 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 46 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 47 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 48 0.05348 0.05144 0.00000 0.06109 0.00578 0.00578 + 49 0.29853 0.28716 0.00000 0.48601 0.10189 0.10189 + 50 -0.05323 -0.28521 0.00000 0.45179 -0.04556 -0.12414 + 51 -0.28521 -0.03108 0.00000 -0.10758 -0.12246 -0.04077 + 52 0.00000 0.00000 0.24327 0.00000 0.00000 0.00000 + 53 -0.00000 0.00000 0.00000 0.00578 0.06109 0.06109 + 54 -0.00000 -0.00000 0.00000 0.10189 0.48601 0.48601 + 55 1.00000 0.00000 0.00000 0.12414 0.08998 -0.45179 + 56 0.00000 1.00000 0.00000 0.04077 -0.45562 0.10758 + 57 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 58 0.12414 0.04077 0.00000 1.00000 0.04831 0.01414 + 59 0.08998 -0.45562 0.00000 0.04831 1.00000 0.15221 + 60 -0.45179 0.10758 0.00000 0.01414 0.15221 1.00000 + + Non-variational initial energy + ------------------------------ + + Total energy = -379.613357 + 1-e energy = -1409.505677 + 2-e energy = 579.886150 + HOMO = -0.047400 + LUMO = 0.177192 + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 ag 2 bu 3 ag 4 bu 5 bu + 6 ag 7 ag 8 bu 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 ag 24 bu 25 bu + 26 ag 27 bu 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 bu + + Time after variat. SCF: 0.2 + Time prior to 1st pass: 0.2 + + Grid_pts file = ./dvb_dispersion_bp86_3.gridpts.0 + Record size in doubles = 12289 No. of grid_pts per rec = 3070 + Max. records in memory = 139 Max. recs in file = 7400349 + + + Memory utilization after 1st SCF pass: + Heap Space remaining (MW): 11.40 11395536 + Stack Space remaining (MW): 13.11 13106284 + + convergence iter energy DeltaE RMS-Dens Diis-err time + ---------------- ----- ----------------- --------- --------- --------- ------ + d= 0,ls=0.0,diis 1 -382.2780414846 -8.32D+02 1.48D-02 4.06D-01 1.3 + d= 0,ls=0.0,diis 2 -382.3165297365 -3.85D-02 1.03D-02 6.25D-02 1.9 + d= 0,ls=0.0,diis 3 -382.2953662488 2.12D-02 6.78D-03 1.92D-01 2.7 + d= 0,ls=0.0,diis 4 -382.3269700412 -3.16D-02 9.67D-04 3.29D-03 3.4 + d= 0,ls=0.0,diis 5 -382.3274952755 -5.25D-04 1.64D-04 1.18D-04 4.2 + Resetting Diis + d= 0,ls=0.0,diis 6 -382.3275130097 -1.77D-05 2.93D-05 1.22D-06 4.9 + d= 0,ls=0.0,diis 7 -382.3275129678 4.19D-08 2.56D-05 3.80D-07 5.7 + d= 0,ls=0.0,diis 8 -382.3275129944 -2.66D-08 1.51D-05 6.70D-07 6.5 + d= 0,ls=0.0,diis 9 -382.3275131040 -1.10D-07 1.88D-06 1.47D-08 7.2 + d= 0,ls=0.0,diis 10 -382.3275131067 -2.76D-09 4.07D-07 6.59D-10 8.0 + + + Total DFT energy = -382.327513106739 + One electron energy = -1408.765089990302 + Coulomb energy = 634.345142854073 + Exchange-Corr. energy = -57.899016719761 + Nuclear repulsion energy = 450.006170680236 + + Dispersion correction = -0.014719930985 + + Numeric. integr. density = 70.000000928522 + + Total iterative time = 7.8s + + + + Occupations of the irreducible representations + ---------------------------------------------- + + irrep alpha beta + -------- -------- -------- + ag 15.0 15.0 + au 2.0 2.0 + bg 3.0 3.0 + bu 15.0 15.0 + + + DFT Final Molecular Orbital Analysis + ------------------------------------ + + Vector 1 Occ=2.000000D+00 E=-9.743480D+00 Symmetry=bu + MO Center= -1.7D-11, 8.7D-11, -1.5D-33, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.698405 1 C s 16 -0.698405 4 C s + 35 0.034997 11 C s 48 -0.034997 16 C s + 2 0.032950 1 C s 17 -0.032950 4 C s + + Vector 2 Occ=2.000000D+00 E=-9.743419D+00 Symmetry=ag + MO Center= 1.7D-11, -8.7D-11, -2.6D-41, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.698404 1 C s 16 0.698404 4 C s + 35 -0.035601 11 C s 48 -0.035601 16 C s + 2 0.032691 1 C s 17 0.032691 4 C s + 6 -0.025098 2 C s 21 -0.025098 5 C s + + Vector 3 Occ=2.000000D+00 E=-9.732220D+00 Symmetry=bu + MO Center= 2.2D-09, -1.1D-08, 4.8D-29, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.698552 11 C s 48 -0.698552 16 C s + 1 -0.034371 1 C s 16 0.034371 4 C s + 36 0.031540 11 C s 49 -0.031540 16 C s + 6 0.030876 2 C s 21 -0.030876 5 C s + + Vector 4 Occ=2.000000D+00 E=-9.732219D+00 Symmetry=ag + MO Center= -2.2D-09, 1.1D-08, -1.5D-34, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.698559 11 C s 48 0.698559 16 C s + 1 0.035210 1 C s 16 0.035210 4 C s + 6 -0.033740 2 C s 21 -0.033740 5 C s + 36 0.031524 11 C s 49 0.031524 16 C s + + Vector 5 Occ=2.000000D+00 E=-9.731733D+00 Symmetry=bu + MO Center= 5.5D-10, -1.1D-10, -7.2D-29, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 6 0.652368 2 C s 21 -0.652368 5 C s + 11 -0.249060 3 C s 26 0.249060 6 C s + 1 0.034508 1 C s 16 -0.034508 4 C s + 35 -0.033540 11 C s 48 0.033540 16 C s + 7 0.032590 2 C s 22 -0.032590 5 C s + + Vector 6 Occ=2.000000D+00 E=-9.731714D+00 Symmetry=ag + MO Center= -5.5D-10, 1.1D-10, -7.2D-19, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 6 0.642220 2 C s 21 0.642220 5 C s + 11 -0.276430 3 C s 26 -0.276430 6 C s + 7 0.032188 2 C s 22 0.032188 5 C s + 35 0.027222 11 C s 48 0.027222 16 C s + + Vector 7 Occ=2.000000D+00 E=-9.730548D+00 Symmetry=bu + MO Center= -2.8D-11, -1.7D-11, 3.4D-29, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.653793 3 C s 26 -0.653793 6 C s + 6 0.251333 2 C s 21 -0.251333 5 C s + 12 0.027633 3 C s 27 -0.027633 6 C s + + Vector 8 Occ=2.000000D+00 E=-9.730434D+00 Symmetry=ag + MO Center= 2.8D-11, 1.9D-11, 3.0D-20, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.642938 3 C s 26 0.642938 6 C s + 6 0.275992 2 C s 21 0.275992 5 C s + 1 0.033676 1 C s 16 0.033676 4 C s + 12 0.026709 3 C s 27 0.026709 6 C s + + Vector 9 Occ=2.000000D+00 E=-9.716193D+00 Symmetry=bu + MO Center= -2.3D-16, -1.5D-15, -1.6D-32, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 40 0.700250 12 C s 53 -0.700250 17 C s + 41 0.031974 12 C s 54 -0.031974 17 C s + + Vector 10 Occ=2.000000D+00 E=-9.716193D+00 Symmetry=ag + MO Center= -5.9D-16, 1.9D-16, -2.3D-33, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 40 0.700250 12 C s 53 0.700250 17 C s + 41 0.031974 12 C s 54 0.031974 17 C s + + Vector 11 Occ=2.000000D+00 E=-7.436950D-01 Symmetry=ag + MO Center= -1.1D-15, 4.9D-16, -3.5D-16, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.270915 1 C s 17 0.270915 4 C s + 7 0.246863 2 C s 12 0.247959 3 C s + 22 0.246863 5 C s 27 0.247959 6 C s + 36 0.110745 11 C s 49 0.110745 16 C s + 1 -0.108336 1 C s 16 -0.108336 4 C s + + Vector 12 Occ=2.000000D+00 E=-6.838015D-01 Symmetry=bu + MO Center= 9.2D-17, 2.4D-15, -1.0D-27, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 -0.289242 11 C s 49 0.289242 16 C s + 2 0.269065 1 C s 17 -0.269065 4 C s + 41 -0.214989 12 C s 54 0.214989 17 C s + 12 -0.128286 3 C s 27 0.128286 6 C s + 35 0.111107 11 C s 48 -0.111107 16 C s + + Vector 13 Occ=2.000000D+00 E=-6.513053D-01 Symmetry=ag + MO Center= -9.8D-15, 3.8D-15, 1.5D-15, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.317136 11 C s 41 0.316143 12 C s + 49 0.317136 16 C s 54 0.316143 17 C s + 35 -0.120749 11 C s 40 -0.120915 12 C s + 48 -0.120749 16 C s 53 -0.120915 17 C s + 7 -0.111211 2 C s 22 -0.111211 5 C s + + Vector 14 Occ=2.000000D+00 E=-6.362160D-01 Symmetry=bu + MO Center= 1.6D-14, -6.5D-15, -3.6D-25, r^2= 3.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 7 0.363750 2 C s 22 -0.363750 5 C s + 12 0.311733 3 C s 27 -0.311733 6 C s + 6 -0.136049 2 C s 21 0.136049 5 C s + 3 0.129648 1 C px 18 0.129648 4 C px + 11 -0.116758 3 C s 26 0.116758 6 C s + + Vector 15 Occ=2.000000D+00 E=-6.039853D-01 Symmetry=bu + MO Center= -3.1D-16, 3.5D-15, -1.9D-25, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 41 0.293927 12 C s 54 -0.293927 17 C s + 2 0.276734 1 C s 17 -0.276734 4 C s + 12 -0.213576 3 C s 27 0.213576 6 C s + 36 0.148203 11 C s 49 -0.148203 16 C s + 38 0.120006 11 C py 51 0.120006 16 C py + + Vector 16 Occ=2.000000D+00 E=-5.265732D-01 Symmetry=ag + MO Center= -5.0D-16, 1.1D-15, 4.6D-17, r^2= 7.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.259816 3 C s 27 0.259816 6 C s + 41 0.202164 12 C s 54 0.202164 17 C s + 2 -0.179498 1 C s 17 -0.179498 4 C s + 9 0.169302 2 C py 24 -0.169302 5 C py + 36 -0.166587 11 C s 49 -0.166587 16 C s + + Vector 17 Occ=2.000000D+00 E=-5.032438D-01 Symmetry=ag + MO Center= -1.7D-15, 7.8D-16, 5.2D-32, r^2= 5.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 7 0.319039 2 C s 22 0.319039 5 C s + 2 -0.193476 1 C s 17 -0.193476 4 C s + 14 -0.167977 3 C py 29 0.167977 6 C py + 3 0.165201 1 C px 18 -0.165201 4 C px + 31 0.159615 7 H s 33 0.159615 9 H s + + Vector 18 Occ=2.000000D+00 E=-4.763648D-01 Symmetry=bu + MO Center= -3.4D-15, -5.5D-15, 1.6D-31, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.310100 11 C s 49 -0.310100 16 C s + 41 -0.249428 12 C s 54 0.249428 17 C s + 45 0.178112 13 H s 58 -0.178112 18 H s + 47 -0.164050 15 H s 60 0.164050 20 H s + 7 0.142136 2 C s 22 -0.142136 5 C s + + Vector 19 Occ=2.000000D+00 E=-4.588016D-01 Symmetry=ag + MO Center= 3.7D-15, -6.6D-16, 1.1D-16, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.198166 3 C px 28 -0.198166 6 C px + 8 0.188235 2 C px 23 -0.188235 5 C px + 36 0.177942 11 C s 49 0.177942 16 C s + 41 -0.174498 12 C s 54 -0.174498 17 C s + 12 0.171760 3 C s 27 0.171760 6 C s + + Vector 20 Occ=2.000000D+00 E=-4.119756D-01 Symmetry=ag + MO Center= 2.1D-16, 2.0D-16, 6.5D-32, r^2= 9.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 42 0.208213 12 C px 55 -0.208213 17 C px + 38 -0.183273 11 C py 51 0.183273 16 C py + 47 0.173988 15 H s 60 0.173988 20 H s + 9 -0.157957 2 C py 24 0.157957 5 C py + 45 -0.150136 13 H s 58 -0.150136 18 H s + + Vector 21 Occ=2.000000D+00 E=-3.896280D-01 Symmetry=bu + MO Center= 2.5D-15, -1.8D-14, -2.1D-20, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 43 0.237833 12 C py 56 0.237833 17 C py + 37 -0.217335 11 C px 50 -0.217335 16 C px + 9 0.200388 2 C py 24 0.200388 5 C py + 46 0.191458 14 H s 59 -0.191458 19 H s + 3 -0.146347 1 C px 18 -0.146347 4 C px + + Vector 22 Occ=2.000000D+00 E=-3.621640D-01 Symmetry=bu + MO Center= -8.7D-16, -8.5D-16, -8.9D-22, r^2= 6.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 32 0.265310 8 H s 34 -0.265310 10 H s + 2 0.257219 1 C s 17 -0.257219 4 C s + 31 -0.240364 7 H s 33 0.240364 9 H s + 8 -0.218973 2 C px 23 -0.218973 5 C px + 13 0.200025 3 C px 28 0.200025 6 C px + + Vector 23 Occ=2.000000D+00 E=-3.523547D-01 Symmetry=bu + MO Center= -1.4D-14, -6.6D-16, -8.1D-21, r^2= 8.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.246810 1 C px 18 0.246810 4 C px + 42 -0.238141 12 C px 55 -0.238141 17 C px + 13 -0.214397 3 C px 28 -0.214397 6 C px + 47 -0.200915 15 H s 60 0.200915 20 H s + 38 0.196970 11 C py 51 0.196970 16 C py + + Vector 24 Occ=2.000000D+00 E=-3.494113D-01 Symmetry=ag + MO Center= 1.5D-14, -2.9D-14, -2.9D-18, r^2= 1.4D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 43 0.328039 12 C py 56 -0.328039 17 C py + 37 -0.281652 11 C px 50 0.281652 16 C px + 46 0.243785 14 H s 59 0.243785 19 H s + 45 0.172846 13 H s 58 0.172846 18 H s + 14 0.122694 3 C py 29 -0.122694 6 C py + + Vector 25 Occ=2.000000D+00 E=-3.296561D-01 Symmetry=bu + MO Center= -7.6D-15, -2.6D-15, -2.5D-31, r^2= 5.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 8 0.287958 2 C px 23 0.287958 5 C px + 14 0.233994 3 C py 29 0.233994 6 C py + 31 0.219799 7 H s 33 -0.219799 9 H s + 32 0.210331 8 H s 34 -0.210331 10 H s + 13 0.152112 3 C px 28 0.152112 6 C px + + Vector 26 Occ=2.000000D+00 E=-3.118257D-01 Symmetry=bu + MO Center= 1.1D-15, 4.9D-14, 2.0D-31, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.240642 11 C px 50 0.240642 16 C px + 9 0.237490 2 C py 24 0.237490 5 C py + 43 -0.209431 12 C py 56 -0.209431 17 C py + 14 -0.202707 3 C py 29 -0.202707 6 C py + 45 -0.184373 13 H s 58 0.184373 18 H s + + Vector 27 Occ=2.000000D+00 E=-3.042013D-01 Symmetry=ag + MO Center= 3.6D-16, 2.6D-15, 2.8D-31, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 42 0.286640 12 C px 55 -0.286640 17 C px + 47 0.274894 15 H s 60 0.274894 20 H s + 45 0.183499 13 H s 58 0.183499 18 H s + 37 -0.176880 11 C px 50 0.176880 16 C px + 46 -0.172823 14 H s 59 -0.172823 19 H s + + Vector 28 Occ=2.000000D+00 E=-2.885243D-01 Symmetry=au + MO Center= 3.6D-16, 2.0D-16, 4.7D-16, r^2= 3.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.338341 1 C pz 20 0.338341 4 C pz + 10 0.300001 2 C pz 15 0.300199 3 C pz + 25 0.300001 5 C pz 30 0.300199 6 C pz + 39 0.158353 11 C pz 52 0.158353 16 C pz + 44 0.083552 12 C pz 57 0.083552 17 C pz + + Vector 29 Occ=2.000000D+00 E=-2.636079D-01 Symmetry=bu + MO Center= 1.3D-16, 5.4D-15, 7.4D-24, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.277460 1 C py 19 0.277460 4 C py + 46 0.233507 14 H s 59 -0.233507 19 H s + 45 -0.227214 13 H s 58 0.227214 18 H s + 47 -0.223984 15 H s 60 0.223984 20 H s + 38 -0.207604 11 C py 51 -0.207604 16 C py + + Vector 30 Occ=2.000000D+00 E=-2.536258D-01 Symmetry=ag + MO Center= 4.9D-16, -1.4D-17, -2.0D-16, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 32 0.286830 8 H s 34 0.286830 10 H s + 3 0.284957 1 C px 18 -0.284957 4 C px + 13 0.242185 3 C px 28 -0.242185 6 C px + 8 -0.240017 2 C px 23 0.240017 5 C px + 31 -0.189328 7 H s 33 -0.189328 9 H s + + Vector 31 Occ=2.000000D+00 E=-2.406812D-01 Symmetry=ag + MO Center= 2.3D-16, -4.8D-15, -5.9D-16, r^2= 7.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.268294 11 C py 51 -0.268294 16 C py + 4 0.252654 1 C py 19 -0.252654 4 C py + 9 -0.220646 2 C py 24 0.220646 5 C py + 14 0.217239 3 C py 29 -0.217239 6 C py + 31 0.187703 7 H s 33 0.187703 9 H s + + Vector 32 Occ=2.000000D+00 E=-2.275910D-01 Symmetry=bg + MO Center= 1.7D-17, 9.4D-17, 1.6D-22, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.368393 11 C pz 52 0.368393 16 C pz + 5 0.354617 1 C pz 20 -0.354617 4 C pz + 44 -0.266796 12 C pz 57 0.266796 17 C pz + 15 -0.147099 3 C pz 30 0.147099 6 C pz + 10 0.134741 2 C pz 25 -0.134741 5 C pz + + Vector 33 Occ=2.000000D+00 E=-1.825056D-01 Symmetry=au + MO Center= -2.4D-15, -5.2D-16, -9.5D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.418889 11 C pz 44 0.420542 12 C pz + 52 0.418889 16 C pz 57 0.420542 17 C pz + 10 -0.169414 2 C pz 25 -0.169414 5 C pz + 15 -0.160557 3 C pz 30 -0.160557 6 C pz + + Vector 34 Occ=2.000000D+00 E=-1.689855D-01 Symmetry=bg + MO Center= 1.9D-15, -1.7D-16, 6.5D-21, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 10 0.471249 2 C pz 25 -0.471249 5 C pz + 15 0.448460 3 C pz 30 -0.448460 6 C pz + + Vector 35 Occ=2.000000D+00 E=-1.342864D-01 Symmetry=bg + MO Center= -4.4D-16, -1.0D-15, 5.2D-21, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 44 0.396439 12 C pz 57 -0.396439 17 C pz + 5 0.377823 1 C pz 20 -0.377823 4 C pz + 15 -0.242287 3 C pz 30 0.242287 6 C pz + 39 0.233901 11 C pz 52 -0.233901 16 C pz + 10 0.198475 2 C pz 25 -0.198475 5 C pz + + Vector 36 Occ=0.000000D+00 E= 1.821041D-02 Symmetry=au + MO Center= 1.2D-16, 1.6D-15, 1.9D-17, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 44 -0.454815 12 C pz 57 -0.454815 17 C pz + 5 0.437285 1 C pz 20 0.437285 4 C pz + 15 -0.288660 3 C pz 30 -0.288660 6 C pz + 39 0.277646 11 C pz 52 0.277646 16 C pz + 10 -0.218463 2 C pz 25 -0.218463 5 C pz + + Vector 37 Occ=0.000000D+00 E= 5.623652D-02 Symmetry=au + MO Center= -2.1D-16, 1.7D-16, -5.2D-18, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 10 0.588717 2 C pz 25 0.588717 5 C pz + 15 -0.548639 3 C pz 30 -0.548639 6 C pz + 5 -0.041414 1 C pz 20 -0.041414 4 C pz + + Vector 38 Occ=0.000000D+00 E= 7.692729D-02 Symmetry=bg + MO Center= 3.5D-16, 3.2D-17, 3.8D-21, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.535677 11 C pz 52 -0.535677 16 C pz + 44 -0.531943 12 C pz 57 0.531943 17 C pz + 10 0.221756 2 C pz 25 -0.221756 5 C pz + 15 -0.212413 3 C pz 30 0.212413 6 C pz + + Vector 39 Occ=0.000000D+00 E= 1.389122D-01 Symmetry=au + MO Center= 4.5D-16, -2.0D-15, 5.4D-17, r^2= 7.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.518499 11 C pz 52 -0.518499 16 C pz + 5 0.502612 1 C pz 20 0.502612 4 C pz + 44 0.374740 12 C pz 57 0.374740 17 C pz + 15 -0.211870 3 C pz 30 -0.211870 6 C pz + 10 -0.179017 2 C pz 25 -0.179017 5 C pz + + Vector 40 Occ=0.000000D+00 E= 2.298124D-01 Symmetry=bg + MO Center= -3.1D-16, 2.0D-15, 1.4D-20, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.549198 1 C pz 20 -0.549198 4 C pz + 10 -0.476197 2 C pz 15 0.478570 3 C pz + 25 0.476197 5 C pz 30 -0.478570 6 C pz + 39 0.263151 11 C pz 52 -0.263151 16 C pz + 44 -0.141662 12 C pz 57 0.141662 17 C pz + + Vector 41 Occ=0.000000D+00 E= 2.727972D-01 Symmetry=ag + MO Center= 6.7D-17, -5.1D-18, -4.3D-17, r^2= 8.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.407803 7 H s 33 -0.407803 9 H s + 32 -0.405369 8 H s 34 -0.405369 10 H s + 2 0.403330 1 C s 17 0.403330 4 C s + 38 0.386679 11 C py 51 -0.386679 16 C py + 46 -0.339683 14 H s 59 -0.339683 19 H s + + Vector 42 Occ=0.000000D+00 E= 2.828099D-01 Symmetry=bu + MO Center= 3.5D-17, 8.7D-17, -4.2D-23, r^2= 9.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.381264 15 H s 60 -0.381264 20 H s + 38 0.352845 11 C py 51 0.352845 16 C py + 2 -0.322417 1 C s 17 0.322417 4 C s + 45 -0.313384 13 H s 58 0.313384 18 H s + 42 -0.311583 12 C px 55 -0.311583 17 C px + + Vector 43 Occ=0.000000D+00 E= 3.166177D-01 Symmetry=bu + MO Center= -9.2D-15, -3.6D-14, 2.6D-22, r^2= 7.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.577553 11 C s 49 -0.577553 16 C s + 32 0.462447 8 H s 34 -0.462447 10 H s + 4 -0.431894 1 C py 19 -0.431894 4 C py + 14 -0.339714 3 C py 29 -0.339714 6 C py + 41 -0.333655 12 C s 54 0.333655 17 C s + + Vector 44 Occ=0.000000D+00 E= 3.220579D-01 Symmetry=ag + MO Center= 1.0D-14, 2.9D-14, 1.4D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.518794 13 H s 58 0.518794 18 H s + 47 -0.505927 15 H s 60 -0.505927 20 H s + 36 -0.330284 11 C s 42 0.331803 12 C px + 49 -0.330284 16 C s 55 -0.331803 17 C px + 32 -0.323628 8 H s 34 -0.323628 10 H s + + Vector 45 Occ=0.000000D+00 E= 3.619586D-01 Symmetry=bu + MO Center= -3.5D-14, -1.9D-13, -4.1D-22, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.565871 3 C s 27 -0.565871 6 C s + 41 0.508335 12 C s 54 -0.508335 17 C s + 2 0.410320 1 C s 7 -0.408405 2 C s + 17 -0.410320 4 C s 22 0.408405 5 C s + 46 -0.405169 14 H s 59 0.405169 19 H s + + Vector 46 Occ=0.000000D+00 E= 3.649510D-01 Symmetry=ag + MO Center= 3.3D-14, 2.0D-13, -2.8D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 41 0.611135 12 C s 54 0.611135 17 C s + 12 0.534332 3 C s 27 0.534332 6 C s + 7 -0.459161 2 C s 22 -0.459161 5 C s + 46 -0.439018 14 H s 59 -0.439018 19 H s + 47 -0.385031 15 H s 60 -0.385031 20 H s + + Vector 47 Occ=0.000000D+00 E= 3.708950D-01 Symmetry=bu + MO Center= 4.3D-15, -5.6D-15, 2.6D-22, r^2= 8.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.658447 7 H s 33 -0.658447 9 H s + 7 -0.431947 2 C s 22 0.431947 5 C s + 45 0.383722 13 H s 58 -0.383722 18 H s + 8 -0.371093 2 C px 23 -0.371093 5 C px + 36 -0.343433 11 C s 49 0.343433 16 C s + + Vector 48 Occ=0.000000D+00 E= 3.927485D-01 Symmetry=ag + MO Center= -1.1D-15, 2.1D-14, -3.1D-17, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.707695 1 C s 17 0.707695 4 C s + 36 -0.594830 11 C s 49 -0.594830 16 C s + 7 -0.587501 2 C s 22 -0.587501 5 C s + 31 0.416859 7 H s 33 0.416859 9 H s + 45 0.396851 13 H s 58 0.396851 18 H s + + Vector 49 Occ=0.000000D+00 E= 4.158433D-01 Symmetry=bu + MO Center= 5.1D-15, -1.0D-14, -3.4D-23, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 41 0.726562 12 C s 54 -0.726562 17 C s + 32 0.503616 8 H s 34 -0.503616 10 H s + 47 -0.493507 15 H s 60 0.493507 20 H s + 46 -0.390506 14 H s 59 0.390506 19 H s + 36 -0.386000 11 C s 49 0.386000 16 C s + + Vector 50 Occ=0.000000D+00 E= 4.413291D-01 Symmetry=ag + MO Center= -2.4D-15, -9.7D-15, 3.8D-17, r^2= 9.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 -0.732063 3 C s 27 -0.732063 6 C s + 7 0.696752 2 C s 22 0.696752 5 C s + 46 -0.451818 14 H s 59 -0.451818 19 H s + 41 0.434368 12 C s 54 0.434368 17 C s + 32 0.369586 8 H s 34 0.369586 10 H s + + Vector 51 Occ=0.000000D+00 E= 4.827928D-01 Symmetry=ag + MO Center= -7.4D-16, 1.0D-15, -1.3D-17, r^2= 5.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.652861 1 C s 17 0.652861 4 C s + 4 0.568227 1 C py 19 -0.568227 4 C py + 8 0.434991 2 C px 23 -0.434991 5 C px + 13 0.414546 3 C px 28 -0.414546 6 C px + 36 0.377803 11 C s 49 0.377803 16 C s + + Vector 52 Occ=0.000000D+00 E= 5.140784D-01 Symmetry=bu + MO Center= 2.6D-16, -4.4D-15, -5.5D-23, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 7 0.685816 2 C s 22 -0.685816 5 C s + 3 -0.536658 1 C px 18 -0.536658 4 C px + 14 0.481069 3 C py 29 0.481069 6 C py + 43 -0.463521 12 C py 56 -0.463521 17 C py + 46 0.342149 14 H s 59 -0.342149 19 H s + + Vector 53 Occ=0.000000D+00 E= 5.298835D-01 Symmetry=ag + MO Center= -2.5D-15, -5.1D-16, 2.1D-18, r^2= 4.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 8 0.603569 2 C px 23 -0.603569 5 C px + 14 -0.492805 3 C py 29 0.492805 6 C py + 32 0.465873 8 H s 34 0.465873 10 H s + 31 -0.453718 7 H s 33 -0.453718 9 H s + 13 -0.430911 3 C px 28 0.430911 6 C px + + Vector 54 Occ=0.000000D+00 E= 5.518005D-01 Symmetry=bu + MO Center= 1.1D-15, 1.4D-17, 5.3D-24, r^2= 4.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 9 0.767672 2 C py 24 0.767672 5 C py + 12 -0.582608 3 C s 27 0.582608 6 C s + 2 0.529672 1 C s 17 -0.529672 4 C s + 13 -0.369915 3 C px 28 -0.369915 6 C px + 14 0.354480 3 C py 29 0.354480 6 C py + + Vector 55 Occ=0.000000D+00 E= 5.677046D-01 Symmetry=bu + MO Center= -6.8D-16, 6.2D-16, 2.8D-25, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 42 0.600393 12 C px 55 0.600393 17 C px + 38 0.513037 11 C py 51 0.513037 16 C py + 2 -0.485470 1 C s 17 0.485470 4 C s + 47 -0.415085 15 H s 60 0.415085 20 H s + 12 -0.409680 3 C s 27 0.409680 6 C s + + Vector 56 Occ=0.000000D+00 E= 5.859088D-01 Symmetry=ag + MO Center= -3.3D-16, 4.8D-15, -1.4D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.459086 11 C px 50 -0.459086 16 C px + 4 0.450867 1 C py 19 -0.450867 4 C py + 43 0.450802 12 C py 56 -0.450802 17 C py + 47 0.422001 15 H s 60 0.422001 20 H s + 38 -0.370936 11 C py 51 0.370936 16 C py + + Vector 57 Occ=0.000000D+00 E= 6.323420D-01 Symmetry=ag + MO Center= 3.7D-16, -5.9D-16, 1.8D-18, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 42 0.543753 12 C px 55 -0.543753 17 C px + 38 0.521840 11 C py 51 -0.521840 16 C py + 14 -0.482010 3 C py 29 0.482010 6 C py + 9 -0.478990 2 C py 24 0.478990 5 C py + 36 0.478883 11 C s 49 0.478883 16 C s + + Vector 58 Occ=0.000000D+00 E= 6.813202D-01 Symmetry=bu + MO Center= -3.8D-16, 6.3D-16, -7.4D-25, r^2= 9.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.666201 11 C px 50 0.666201 16 C px + 41 -0.558096 12 C s 54 0.558096 17 C s + 43 0.540206 12 C py 56 0.540206 17 C py + 36 0.506340 11 C s 49 -0.506340 16 C s + 3 -0.460450 1 C px 18 -0.460450 4 C px + + Vector 59 Occ=0.000000D+00 E= 7.418134D-01 Symmetry=ag + MO Center= 2.0D-15, 3.3D-15, -6.3D-18, r^2= 5.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.726299 1 C px 18 -0.726299 4 C px + 9 0.532223 2 C py 24 -0.532223 5 C py + 13 -0.468007 3 C px 28 0.468007 6 C px + 37 0.455262 11 C px 50 -0.455262 16 C px + 14 0.388560 3 C py 29 -0.388560 6 C py + + Vector 60 Occ=0.000000D+00 E= 7.504626D-01 Symmetry=bu + MO Center= -8.8D-16, -4.0D-15, -3.7D-27, r^2= 2.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.641013 1 C py 19 0.641013 4 C py + 8 0.618670 2 C px 23 0.618670 5 C px + 13 -0.511064 3 C px 28 -0.511064 6 C px + 2 0.471866 1 C s 17 -0.471866 4 C s + 7 -0.454052 2 C s 12 0.453268 3 C s + + Final MO vectors + ---------------- + + + global array: alpha evecs[1:60,1:60], handle: -995 + + 1 2 3 4 5 6 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.69841 0.69840 -0.03437 0.03521 0.03451 0.01587 + 2 0.03295 0.03269 0.00326 -0.00333 -0.00816 -0.00304 + 3 -0.00029 -0.00021 0.00064 -0.00055 -0.00166 -0.00507 + 4 0.00147 0.00111 -0.00438 0.00430 -0.00336 -0.00207 + 5 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 6 -0.02479 -0.02510 0.03088 -0.03374 0.65237 0.64222 + 7 -0.00880 -0.00775 0.00177 -0.00171 0.03259 0.03219 + 8 0.00379 0.00359 -0.00027 0.00032 -0.00148 -0.00121 + 9 0.00275 0.00324 0.00010 0.00003 0.00217 0.00218 + 10 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 11 0.02307 -0.02323 -0.01756 -0.00776 -0.24906 -0.27643 + 12 0.00874 -0.00765 -0.00124 -0.00017 -0.01808 -0.01914 + 13 -0.00455 0.00455 0.00017 0.00030 -0.00049 -0.00040 + 14 0.00109 -0.00164 0.00025 -0.00014 0.00473 0.00449 + 15 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 16 -0.69841 0.69840 0.03437 0.03521 -0.03451 0.01587 + 17 -0.03295 0.03269 -0.00326 -0.00333 0.00816 -0.00304 + 18 -0.00029 0.00021 0.00064 0.00055 -0.00166 0.00507 + 19 0.00147 -0.00111 -0.00438 -0.00430 -0.00336 0.00207 + 20 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 21 0.02479 -0.02510 -0.03088 -0.03374 -0.65237 0.64222 + 22 0.00880 -0.00775 -0.00177 -0.00171 -0.03259 0.03219 + 23 0.00379 -0.00359 -0.00027 -0.00032 -0.00148 0.00121 + 24 0.00275 -0.00324 0.00010 -0.00003 0.00217 -0.00218 + 25 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 26 -0.02307 -0.02323 0.01756 -0.00776 0.24906 -0.27643 + 27 -0.00874 -0.00765 0.00124 -0.00017 0.01808 -0.01914 + 28 -0.00455 -0.00455 0.00017 -0.00030 -0.00049 0.00040 + 29 0.00109 0.00164 0.00025 0.00014 0.00473 -0.00449 + 30 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 31 0.00042 0.00027 -0.00028 0.00028 -0.00620 -0.00615 + 32 -0.00042 0.00027 0.00005 -0.00008 0.00254 0.00271 + 33 -0.00042 0.00027 0.00028 0.00028 0.00620 -0.00615 + 34 0.00042 0.00027 -0.00005 -0.00008 -0.00254 0.00271 + 35 0.03500 -0.03560 0.69855 0.69856 -0.03354 0.02722 + 36 0.00691 -0.00700 0.03154 0.03152 -0.00163 0.00121 + 37 0.00091 -0.00092 0.00112 0.00112 -0.00007 -0.00004 + 38 -0.00398 0.00403 0.00144 0.00145 -0.00011 0.00012 + 39 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 40 -0.00020 0.00021 -0.01048 -0.01048 0.00116 -0.00048 + 41 -0.00061 0.00061 -0.00837 -0.00837 0.00053 -0.00033 + 42 0.00007 -0.00007 0.00356 0.00356 -0.00016 0.00017 + 43 0.00034 -0.00035 0.00338 0.00338 -0.00024 0.00016 + 44 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 45 -0.00041 0.00043 -0.00665 -0.00665 0.00038 -0.00028 + 46 0.00003 -0.00003 0.00027 0.00027 -0.00000 0.00001 + 47 0.00016 -0.00014 0.00023 0.00024 -0.00013 -0.00013 + 48 -0.03500 -0.03560 -0.69855 0.69856 0.03354 0.02722 + 49 -0.00691 -0.00700 -0.03154 0.03152 0.00163 0.00121 + 50 0.00091 0.00092 0.00112 -0.00112 -0.00007 0.00004 + 51 -0.00398 -0.00403 0.00144 -0.00145 -0.00011 -0.00012 + 52 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 53 0.00020 0.00021 0.01048 -0.01048 -0.00116 -0.00048 + 54 0.00061 0.00061 0.00837 -0.00837 -0.00053 -0.00033 + 55 0.00007 0.00007 0.00356 -0.00356 -0.00016 -0.00017 + 56 0.00034 0.00035 0.00338 -0.00338 -0.00024 -0.00016 + 57 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 58 0.00041 0.00043 0.00665 -0.00665 -0.00038 -0.00028 + 59 -0.00003 -0.00003 -0.00027 0.00027 0.00000 0.00001 + 60 -0.00016 -0.00014 -0.00023 0.00024 0.00013 -0.00013 + + 7 8 9 10 11 12 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.01354 0.03368 -0.00040 0.00042 -0.10834 -0.10264 + 2 0.00366 -0.00755 -0.00018 0.00018 0.27091 0.26907 + 3 -0.00531 0.00268 -0.00003 0.00003 -0.01069 -0.00434 + 4 0.00037 -0.00246 0.00003 -0.00003 0.05081 -0.02654 + 5 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 6 0.25133 0.27599 -0.00022 0.00065 -0.09926 -0.03647 + 7 0.00496 0.00619 0.00000 -0.00010 0.24686 0.09487 + 8 0.00050 0.00064 -0.00001 0.00004 -0.05994 -0.02736 + 9 -0.00417 -0.00398 -0.00011 0.00002 0.01434 -0.06270 + 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 11 0.65379 0.64294 0.00126 0.00134 -0.09979 0.04936 + 12 0.02763 0.02671 -0.00002 -0.00004 0.24796 -0.12829 + 13 -0.00117 -0.00088 0.00000 -0.00000 -0.05001 0.04790 + 14 0.00079 0.00114 -0.00017 -0.00015 -0.03509 -0.04699 + 15 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 16 0.01354 0.03368 0.00040 0.00042 -0.10834 0.10264 + 17 -0.00366 -0.00755 0.00018 0.00018 0.27091 -0.26907 + 18 -0.00531 -0.00268 -0.00003 -0.00003 0.01069 -0.00434 + 19 0.00037 0.00246 0.00003 0.00003 -0.05081 -0.02654 + 20 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 21 -0.25133 0.27599 0.00022 0.00065 -0.09926 0.03647 + 22 -0.00496 0.00619 -0.00000 -0.00010 0.24686 -0.09487 + 23 0.00050 -0.00064 -0.00001 -0.00004 0.05994 -0.02736 + 24 -0.00417 0.00398 -0.00011 -0.00002 -0.01434 -0.06270 + 25 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 26 -0.65379 0.64294 -0.00126 0.00134 -0.09979 -0.04936 + 27 -0.02763 0.02671 0.00002 -0.00004 0.24796 0.12829 + 28 -0.00117 0.00088 0.00000 0.00000 0.05001 0.04790 + 29 0.00079 -0.00114 -0.00017 0.00015 0.03509 -0.04699 + 30 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 31 -0.00217 -0.00257 0.00001 -0.00002 0.04311 0.02436 + 32 -0.00610 -0.00614 0.00018 0.00018 0.04431 -0.03579 + 33 0.00217 -0.00257 -0.00001 -0.00002 0.04311 -0.02436 + 34 0.00610 -0.00614 -0.00018 0.00018 0.04431 0.03579 + 35 0.00472 0.01885 0.01145 0.01146 -0.04313 0.11111 + 36 0.00028 0.00084 -0.00737 -0.00737 0.11074 -0.28924 + 37 -0.00000 0.00005 -0.00351 -0.00351 0.01335 -0.04059 + 38 0.00000 0.00021 -0.00335 -0.00335 -0.02500 0.00316 + 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 40 -0.00114 -0.00174 0.70025 0.70025 -0.02251 0.08379 + 41 -0.00018 -0.00043 0.03197 0.03197 0.05613 -0.21499 + 42 -0.00006 0.00004 -0.00105 -0.00105 -0.01123 0.03956 + 43 0.00011 0.00023 -0.00102 -0.00102 -0.01870 0.04992 + 44 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 45 -0.00007 -0.00028 0.00005 0.00005 0.02161 -0.06423 + 46 -0.00002 -0.00002 -0.00663 -0.00663 0.00908 -0.04390 + 47 0.00024 0.00024 -0.00665 -0.00665 0.01349 -0.05123 + 48 -0.00472 0.01885 -0.01145 0.01146 -0.04313 -0.11111 + 49 -0.00028 0.00084 0.00737 -0.00737 0.11074 0.28924 + 50 -0.00000 -0.00005 -0.00351 0.00351 -0.01335 -0.04059 + 51 0.00000 -0.00021 -0.00335 0.00335 0.02500 0.00316 + 52 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 53 0.00114 -0.00174 -0.70025 0.70025 -0.02251 -0.08379 + 54 0.00018 -0.00043 -0.03197 0.03197 0.05613 0.21499 + 55 -0.00006 -0.00004 -0.00105 0.00105 0.01123 0.03956 + 56 0.00011 -0.00023 -0.00102 0.00102 0.01870 0.04992 + 57 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 58 0.00007 -0.00028 -0.00005 0.00005 0.02161 0.06423 + 59 0.00002 -0.00002 0.00663 -0.00663 0.00908 0.04390 + 60 -0.00024 0.00024 0.00665 -0.00665 0.01349 0.05123 + + 13 14 15 16 17 18 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00441 -0.01951 -0.10159 0.06142 0.06571 -0.01074 + 2 0.01530 0.05236 0.27673 -0.17950 -0.19348 0.02747 + 3 0.00574 0.12965 -0.02394 -0.15377 0.16520 -0.05022 + 4 -0.09201 0.02938 0.05879 0.04799 0.07496 0.11742 + 5 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 6 0.04312 -0.13605 -0.03914 0.02351 -0.10883 -0.04678 + 7 -0.11121 0.36375 0.10735 -0.06818 0.31904 0.14214 + 8 0.01867 -0.00389 -0.03840 0.02012 0.08725 -0.00689 + 9 -0.03280 0.04904 -0.09559 0.16930 -0.00229 0.00431 + 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 11 0.03452 -0.11676 0.07802 -0.09115 0.04178 0.02460 + 12 -0.08892 0.31173 -0.21358 0.25982 -0.12271 -0.07434 + 13 0.00222 0.03718 0.05915 0.05554 0.11352 0.03224 + 14 0.05018 -0.06657 -0.04257 0.00893 -0.16798 -0.07488 + 15 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 16 -0.00441 0.01951 0.10159 0.06142 0.06571 0.01074 + 17 0.01530 -0.05236 -0.27673 -0.17950 -0.19348 -0.02747 + 18 -0.00574 0.12965 -0.02394 0.15377 -0.16520 -0.05022 + 19 0.09201 0.02938 0.05879 -0.04799 -0.07496 0.11742 + 20 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 21 0.04312 0.13605 0.03914 0.02351 -0.10883 0.04678 + 22 -0.11121 -0.36375 -0.10735 -0.06818 0.31904 -0.14214 + 23 -0.01867 -0.00389 -0.03840 -0.02012 -0.08725 -0.00689 + 24 0.03280 0.04904 -0.09559 -0.16930 0.00229 0.00431 + 25 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 26 0.03452 0.11676 -0.07802 -0.09115 0.04178 -0.02460 + 27 -0.08892 -0.31173 0.21358 0.25982 -0.12271 0.07434 + 28 -0.00222 0.03718 0.05915 -0.05554 -0.11352 0.03224 + 29 -0.05018 -0.06657 -0.04257 -0.00893 0.16798 -0.07488 + 30 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 31 -0.02077 0.09739 0.02945 -0.04348 0.15961 0.04239 + 32 -0.00848 0.08514 -0.05304 0.12294 -0.05506 -0.05565 + 33 -0.02077 -0.09739 -0.02945 -0.04348 0.15961 -0.04239 + 34 -0.00848 -0.08514 0.05304 0.12294 -0.05506 0.05565 + 35 -0.12075 0.00299 -0.05630 0.05483 0.01498 -0.10080 + 36 0.31714 -0.00963 0.14820 -0.16659 -0.04788 0.31010 + 37 0.05396 0.02306 0.04374 0.09158 -0.02470 -0.12415 + 38 0.05740 0.01831 0.12001 0.09686 0.09499 -0.02989 + 39 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 40 -0.12092 -0.01319 -0.10882 -0.07001 -0.05283 0.08064 + 41 0.31614 0.03407 0.29393 0.20216 0.15793 -0.24943 + 42 -0.05328 0.00328 -0.03859 0.04775 -0.00426 -0.13624 + 43 -0.05237 -0.00615 -0.01446 0.02890 0.06077 -0.08145 + 44 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 45 0.07528 -0.01161 0.03917 -0.09120 0.01299 0.17811 + 46 0.07420 0.00777 0.08599 0.07930 0.08609 -0.12306 + 47 0.07549 0.01551 0.07221 0.09879 0.03910 -0.16405 + 48 -0.12075 -0.00299 0.05630 0.05483 0.01498 0.10080 + 49 0.31714 0.00963 -0.14820 -0.16659 -0.04788 -0.31010 + 50 -0.05396 0.02306 0.04374 -0.09158 0.02470 -0.12415 + 51 -0.05740 0.01831 0.12001 -0.09686 -0.09499 -0.02989 + 52 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 53 -0.12092 0.01319 0.10882 -0.07001 -0.05283 -0.08064 + 54 0.31614 -0.03407 -0.29393 0.20216 0.15793 0.24943 + 55 0.05328 0.00328 -0.03859 -0.04775 0.00426 -0.13624 + 56 0.05237 -0.00615 -0.01446 -0.02890 -0.06077 -0.08145 + 57 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 58 0.07528 0.01161 -0.03917 -0.09120 0.01299 -0.17811 + 59 0.07420 -0.00777 -0.08599 0.07930 0.08609 0.12306 + 60 0.07549 -0.01551 -0.07221 0.09879 0.03910 0.16405 + + 19 20 21 22 23 24 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.05022 -0.03819 -0.01030 -0.07594 -0.00754 -0.01990 + 2 -0.14488 0.12574 0.03785 0.25722 0.02947 0.06600 + 3 -0.01733 0.06346 -0.14635 -0.00516 0.24681 0.01258 + 4 -0.14662 -0.12458 -0.13199 0.07181 -0.10350 -0.01300 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 6 -0.00974 -0.01418 0.01385 0.04439 0.01578 0.02610 + 7 0.03678 0.05556 -0.04595 -0.15603 -0.05608 -0.08787 + 8 0.18823 0.12657 0.01154 -0.21897 -0.15260 0.00103 + 9 0.08481 -0.15796 0.20039 0.00800 -0.09497 -0.06672 + 10 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 11 -0.05365 0.02393 -0.03603 -0.04092 -0.03694 -0.02069 + 12 0.17176 -0.06742 0.11792 0.14505 0.12166 0.07644 + 13 0.19817 0.06677 0.09580 0.20003 -0.21440 0.02843 + 14 0.05026 0.14757 -0.13165 0.13520 0.05824 0.12269 + 15 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 16 0.05022 -0.03819 0.01030 0.07594 0.00754 -0.01990 + 17 -0.14488 0.12574 -0.03785 -0.25722 -0.02947 0.06600 + 18 0.01733 -0.06346 -0.14635 -0.00516 0.24681 -0.01258 + 19 0.14662 0.12458 -0.13199 0.07181 -0.10350 0.01300 + 20 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 21 -0.00974 -0.01418 -0.01385 -0.04439 -0.01578 0.02610 + 22 0.03678 0.05556 0.04595 0.15603 0.05608 -0.08787 + 23 -0.18823 -0.12657 0.01154 -0.21897 -0.15260 -0.00103 + 24 -0.08481 0.15796 0.20039 0.00800 -0.09497 0.06672 + 25 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 26 -0.05365 0.02393 0.03603 0.04092 0.03694 -0.02069 + 27 0.17176 -0.06742 -0.11792 -0.14505 -0.12166 0.07644 + 28 -0.19817 -0.06677 0.09580 0.20003 -0.21440 -0.02843 + 29 -0.05026 -0.14757 -0.13165 0.13520 0.05824 -0.12269 + 30 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 31 0.10377 0.12797 -0.06544 -0.24036 -0.11925 -0.01667 + 32 0.16530 0.08555 0.02957 0.26531 -0.07000 0.10662 + 33 0.10377 0.12797 0.06544 0.24036 0.11925 -0.01667 + 34 0.16530 0.08555 -0.02957 -0.26531 0.07000 0.10662 + 35 -0.05809 0.04486 0.01990 -0.01111 0.00203 0.02440 + 36 0.17794 -0.14099 -0.05880 0.03193 -0.01707 -0.06506 + 37 -0.06506 0.10685 -0.21733 -0.01864 0.03512 -0.28165 + 38 -0.01174 -0.18327 0.07904 0.04254 0.19697 -0.07327 + 39 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 40 0.05529 -0.01563 -0.01285 0.01329 -0.00032 0.00767 + 41 -0.17450 0.05934 0.05112 -0.04799 -0.01112 -0.00684 + 42 -0.07345 0.20821 -0.04263 0.01441 -0.23814 0.06685 + 43 -0.08107 -0.02352 0.23783 -0.09769 0.04415 0.32804 + 44 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 45 0.10900 -0.15014 0.14112 0.05436 0.00402 0.17285 + 46 -0.10451 -0.01676 0.19146 -0.09792 0.06854 0.24379 + 47 -0.08444 0.17399 -0.04629 0.04255 -0.20092 0.00522 + 48 -0.05809 0.04486 -0.01990 0.01111 -0.00203 0.02440 + 49 0.17794 -0.14099 0.05880 -0.03193 0.01707 -0.06506 + 50 0.06506 -0.10685 -0.21733 -0.01864 0.03512 0.28165 + 51 0.01174 0.18327 0.07904 0.04254 0.19697 0.07327 + 52 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 53 0.05529 -0.01563 0.01285 -0.01329 0.00032 0.00767 + 54 -0.17450 0.05934 -0.05112 0.04799 0.01112 -0.00684 + 55 0.07345 -0.20821 -0.04263 0.01441 -0.23814 -0.06685 + 56 0.08107 0.02352 0.23783 -0.09769 0.04415 -0.32804 + 57 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 58 0.10900 -0.15014 -0.14112 -0.05436 -0.00402 0.17285 + 59 -0.10451 -0.01676 -0.19146 0.09792 -0.06854 0.24379 + 60 -0.08444 0.17399 0.04629 -0.04255 0.20092 0.00522 + + 25 26 27 28 29 30 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00190 -0.00490 0.02762 -0.00000 0.01201 -0.00335 + 2 0.00954 0.01897 -0.09841 0.00000 -0.05596 0.00786 + 3 -0.04015 -0.16392 0.09283 -0.00000 -0.07661 0.28496 + 4 -0.12565 -0.13005 0.02169 -0.00000 0.27746 0.13804 + 5 0.00000 0.00000 -0.00000 0.33834 -0.00000 0.00000 + 6 0.03487 0.01411 0.00115 0.00000 -0.01083 -0.00778 + 7 -0.11166 -0.05131 -0.01381 -0.00000 0.03603 0.01936 + 8 0.28796 0.04219 -0.13845 0.00000 -0.06725 -0.24002 + 9 -0.13927 0.23749 0.12219 0.00000 0.00219 -0.17751 + 10 0.00000 0.00000 -0.00000 0.30000 -0.00000 0.00000 + 11 0.00795 -0.00931 -0.00056 0.00000 0.01520 0.00908 + 12 -0.02075 0.02986 -0.00002 -0.00000 -0.05077 -0.02027 + 13 0.15211 0.08938 0.06386 -0.00000 0.13921 0.24218 + 14 0.23399 -0.20271 -0.14440 -0.00000 0.04229 0.12540 + 15 0.00000 0.00000 -0.00000 0.30020 -0.00000 0.00000 + 16 0.00190 0.00490 0.02762 -0.00000 -0.01201 -0.00335 + 17 -0.00954 -0.01897 -0.09841 0.00000 0.05596 0.00786 + 18 -0.04015 -0.16392 -0.09283 0.00000 -0.07661 -0.28496 + 19 -0.12565 -0.13005 -0.02169 0.00000 0.27746 -0.13804 + 20 0.00000 0.00000 -0.00000 0.33834 -0.00000 0.00000 + 21 -0.03487 -0.01411 0.00115 0.00000 0.01083 -0.00778 + 22 0.11166 0.05131 -0.01381 -0.00000 -0.03603 0.01936 + 23 0.28796 0.04219 0.13845 -0.00000 -0.06725 0.24002 + 24 -0.13927 0.23749 -0.12219 -0.00000 0.00219 0.17751 + 25 0.00000 0.00000 -0.00000 0.30000 -0.00000 0.00000 + 26 -0.00795 0.00931 -0.00056 -0.00000 -0.01520 0.00908 + 27 0.02075 -0.02986 -0.00002 0.00000 0.05077 -0.02027 + 28 0.15211 0.08938 -0.06386 0.00000 0.13921 -0.24218 + 29 0.23399 -0.20271 0.14440 0.00000 0.04229 -0.12540 + 30 0.00000 0.00000 -0.00000 0.30020 -0.00000 0.00000 + 31 0.21980 -0.04891 -0.15200 0.00000 -0.03012 -0.18933 + 32 0.21033 -0.04684 0.00799 -0.00000 0.06105 0.28683 + 33 -0.21980 0.04891 -0.15200 0.00000 0.03012 -0.18933 + 34 -0.21033 0.04684 0.00799 -0.00000 -0.06105 0.28683 + 35 -0.00214 -0.00134 -0.01905 0.00000 -0.00357 0.00761 + 36 0.00021 -0.01559 0.07819 0.00000 0.01638 -0.03880 + 37 0.00592 0.24064 -0.17688 -0.00000 0.16852 0.05750 + 38 0.13756 0.14857 -0.07041 -0.00000 -0.20760 0.11454 + 39 0.00000 0.00000 0.00000 0.15835 -0.00000 0.00000 + 40 0.00490 -0.02226 0.00850 0.00000 0.00263 -0.00660 + 41 -0.02555 0.05999 -0.02026 -0.00000 -0.00652 0.01620 + 42 -0.14739 -0.16203 0.28664 0.00000 -0.16186 -0.11973 + 43 -0.00417 -0.20943 -0.11367 0.00000 0.18394 -0.05834 + 44 0.00000 0.00000 0.00000 0.08355 -0.00000 0.00000 + 45 0.01060 -0.18437 0.18350 0.00000 -0.22721 -0.06880 + 46 0.00944 -0.12693 -0.17282 0.00000 0.23351 -0.02883 + 47 -0.10073 -0.08333 0.27489 0.00000 -0.22398 -0.04883 + 48 0.00214 0.00134 -0.01905 0.00000 0.00357 0.00761 + 49 -0.00021 0.01559 0.07819 -0.00000 -0.01638 -0.03880 + 50 0.00592 0.24064 0.17688 0.00000 0.16852 -0.05750 + 51 0.13756 0.14857 0.07041 0.00000 -0.20760 -0.11454 + 52 0.00000 0.00000 0.00000 0.15835 -0.00000 0.00000 + 53 -0.00490 0.02226 0.00850 0.00000 -0.00263 -0.00660 + 54 0.02555 -0.05999 -0.02026 0.00000 0.00652 0.01620 + 55 -0.14739 -0.16203 -0.28664 -0.00000 -0.16186 0.11973 + 56 -0.00417 -0.20943 0.11367 -0.00000 0.18394 0.05834 + 57 0.00000 0.00000 0.00000 0.08355 -0.00000 0.00000 + 58 -0.01060 0.18437 0.18350 0.00000 0.22721 -0.06880 + 59 -0.00944 0.12693 -0.17282 0.00000 -0.23351 -0.02883 + 60 0.10073 0.08333 0.27489 -0.00000 0.22398 -0.04883 + + 31 32 33 34 35 36 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00920 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 2 -0.05345 -0.00000 0.00000 0.00000 0.00000 0.00000 + 3 -0.13915 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 4 0.25265 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 5 -0.00000 0.35462 -0.01229 0.02167 0.37782 0.43728 + 6 0.00556 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 7 -0.01482 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 8 0.08045 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 9 -0.22065 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 10 -0.00000 0.13474 -0.16941 0.47125 0.19848 -0.21846 + 11 0.00199 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 12 -0.00810 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 13 -0.16881 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 14 0.21724 0.00000 -0.00000 0.00000 0.00000 0.00000 + 15 -0.00000 -0.14710 -0.16056 0.44846 -0.24229 -0.28866 + 16 0.00920 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 17 -0.05345 -0.00000 0.00000 0.00000 0.00000 0.00000 + 18 0.13915 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 19 -0.25265 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 20 0.00000 -0.35462 -0.01229 -0.02167 -0.37782 0.43728 + 21 0.00556 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 22 -0.01482 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 23 -0.08045 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 24 0.22065 0.00000 -0.00000 0.00000 0.00000 0.00000 + 25 -0.00000 -0.13474 -0.16941 -0.47125 -0.19848 -0.21846 + 26 0.00199 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 27 -0.00810 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 28 0.16881 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 29 -0.21724 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 30 -0.00000 0.14710 -0.16056 -0.44846 0.24229 -0.28866 + 31 0.18770 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 32 0.05092 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 33 0.18770 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 34 0.05092 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 35 0.02261 0.00000 0.00000 0.00000 0.00000 -0.00000 + 36 -0.09419 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 37 -0.11250 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 38 0.26829 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 39 0.00000 -0.36839 0.41889 0.00081 0.23390 0.27765 + 40 -0.00348 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 41 0.00584 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 42 0.03589 0.00000 0.00000 0.00000 0.00000 -0.00000 + 43 -0.12688 -0.00000 0.00000 0.00000 0.00000 0.00000 + 44 0.00000 -0.26680 0.42054 0.01811 0.39644 -0.45482 + 45 0.17064 0.00000 -0.00000 0.00000 0.00000 0.00000 + 46 -0.15662 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 47 0.11736 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 48 0.02261 0.00000 0.00000 0.00000 0.00000 -0.00000 + 49 -0.09419 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 50 0.11250 0.00000 0.00000 0.00000 0.00000 0.00000 + 51 -0.26829 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 52 0.00000 0.36839 0.41889 -0.00081 -0.23390 0.27765 + 53 -0.00348 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 54 0.00584 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 55 -0.03589 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 56 0.12688 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 57 0.00000 0.26680 0.42054 -0.01811 -0.39644 -0.45482 + 58 0.17064 0.00000 -0.00000 0.00000 0.00000 0.00000 + 59 -0.15662 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 60 0.11736 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + + 37 38 39 40 41 42 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 -0.00000 -0.00000 -0.00000 -0.07041 0.05690 + 2 0.00000 0.00000 0.00000 0.00000 0.40333 -0.32242 + 3 -0.00000 -0.00000 -0.00000 0.00000 0.08572 -0.21887 + 4 0.00000 0.00000 -0.00000 0.00000 -0.33354 0.28115 + 5 -0.04141 -0.01970 0.50261 0.54920 -0.00000 -0.00000 + 6 0.00000 -0.00000 0.00000 0.00000 -0.03261 -0.01535 + 7 -0.00000 0.00000 -0.00000 -0.00000 0.19838 0.08247 + 8 0.00000 0.00000 0.00000 0.00000 0.26936 -0.29120 + 9 -0.00000 0.00000 0.00000 0.00000 -0.03805 0.08227 + 10 0.58872 0.22176 -0.17902 -0.47620 -0.00000 -0.00000 + 11 0.00000 0.00000 0.00000 0.00000 -0.04253 0.03169 + 12 0.00000 -0.00000 -0.00000 -0.00000 0.25520 -0.18586 + 13 0.00000 -0.00000 -0.00000 -0.00000 0.18266 -0.21627 + 14 0.00000 0.00000 -0.00000 -0.00000 0.11811 0.03918 + 15 -0.54864 -0.21241 -0.21187 0.47857 0.00000 -0.00000 + 16 -0.00000 -0.00000 -0.00000 -0.00000 -0.07041 -0.05690 + 17 0.00000 0.00000 0.00000 0.00000 0.40333 0.32242 + 18 0.00000 0.00000 0.00000 -0.00000 -0.08572 -0.21887 + 19 -0.00000 -0.00000 0.00000 -0.00000 0.33354 0.28115 + 20 -0.04141 0.01970 0.50261 -0.54920 -0.00000 -0.00000 + 21 0.00000 -0.00000 0.00000 0.00000 -0.03261 0.01535 + 22 -0.00000 0.00000 -0.00000 -0.00000 0.19838 -0.08247 + 23 -0.00000 -0.00000 -0.00000 -0.00000 -0.26936 -0.29120 + 24 0.00000 -0.00000 -0.00000 -0.00000 0.03805 0.08227 + 25 0.58872 -0.22176 -0.17902 0.47620 0.00000 -0.00000 + 26 0.00000 0.00000 0.00000 0.00000 -0.04253 -0.03169 + 27 0.00000 -0.00000 -0.00000 -0.00000 0.25520 0.18586 + 28 -0.00000 0.00000 0.00000 0.00000 -0.18266 -0.21627 + 29 -0.00000 -0.00000 0.00000 0.00000 -0.11811 0.03918 + 30 -0.54864 0.21241 -0.21187 -0.47857 -0.00000 -0.00000 + 31 0.00000 -0.00000 0.00000 0.00000 -0.40780 0.26582 + 32 -0.00000 -0.00000 -0.00000 0.00000 -0.40537 0.20812 + 33 0.00000 -0.00000 0.00000 0.00000 -0.40780 -0.26582 + 34 -0.00000 -0.00000 -0.00000 0.00000 -0.40537 -0.20812 + 35 0.00000 0.00000 0.00000 -0.00000 0.06088 0.02158 + 36 -0.00000 0.00000 -0.00000 0.00000 -0.33513 -0.11485 + 37 0.00000 -0.00000 -0.00000 -0.00000 -0.18782 -0.27622 + 38 0.00000 0.00000 0.00000 -0.00000 0.38668 0.35284 + 39 0.00025 0.53568 -0.51850 0.26315 -0.00000 -0.00000 + 40 -0.00000 -0.00000 -0.00000 0.00000 -0.03885 0.00541 + 41 0.00000 0.00000 0.00000 0.00000 0.22110 -0.03279 + 42 0.00000 0.00000 0.00000 -0.00000 -0.08935 -0.31158 + 43 -0.00000 0.00000 -0.00000 0.00000 0.14373 0.20804 + 44 0.02411 -0.53194 0.37474 -0.14166 0.00000 -0.00000 + 45 0.00000 -0.00000 -0.00000 -0.00000 -0.06599 -0.31338 + 46 0.00000 -0.00000 -0.00000 -0.00000 -0.33968 -0.29338 + 47 -0.00000 -0.00000 -0.00000 0.00000 0.09854 0.38126 + 48 0.00000 0.00000 0.00000 -0.00000 0.06088 -0.02158 + 49 -0.00000 0.00000 -0.00000 0.00000 -0.33513 0.11485 + 50 -0.00000 0.00000 0.00000 0.00000 0.18782 -0.27622 + 51 -0.00000 -0.00000 -0.00000 0.00000 -0.38668 0.35284 + 52 0.00025 -0.53568 -0.51850 -0.26315 0.00000 -0.00000 + 53 -0.00000 -0.00000 -0.00000 0.00000 -0.03885 -0.00541 + 54 0.00000 0.00000 0.00000 0.00000 0.22110 0.03279 + 55 -0.00000 -0.00000 -0.00000 0.00000 0.08935 -0.31158 + 56 0.00000 -0.00000 0.00000 -0.00000 -0.14373 0.20804 + 57 0.02411 0.53194 0.37474 0.14166 -0.00000 -0.00000 + 58 0.00000 -0.00000 -0.00000 -0.00000 -0.06599 0.31338 + 59 0.00000 -0.00000 -0.00000 -0.00000 -0.33968 0.29338 + 60 -0.00000 -0.00000 -0.00000 0.00000 0.09854 -0.38126 + + 43 44 45 46 47 48 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.04084 0.03569 -0.07061 0.04127 -0.03711 -0.11606 + 2 0.22643 -0.21454 0.41032 -0.24484 0.22936 0.70769 + 3 -0.08511 -0.02575 -0.10837 0.21205 -0.15462 0.04434 + 4 -0.43189 0.01144 -0.05051 0.19347 0.14625 -0.03701 + 5 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 6 0.01603 -0.03741 0.06857 0.07443 0.07005 0.09358 + 7 -0.09673 0.22973 -0.40840 -0.45916 -0.43195 -0.58750 + 8 -0.15417 -0.01264 -0.12648 -0.04661 -0.37109 -0.09643 + 9 -0.21421 -0.14753 -0.05279 -0.13347 0.24139 0.25532 + 10 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 11 0.01040 -0.04425 -0.09323 -0.08702 -0.01968 0.04881 + 12 -0.06891 0.27323 0.56587 0.53433 0.11141 -0.30797 + 13 -0.26843 0.15318 0.01248 -0.00412 -0.24609 0.19395 + 14 -0.33971 0.20309 0.10507 -0.01901 0.05533 -0.26064 + 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 16 0.04084 0.03569 0.07061 0.04127 0.03711 -0.11606 + 17 -0.22643 -0.21454 -0.41032 -0.24484 -0.22936 0.70769 + 18 -0.08511 0.02575 -0.10837 -0.21205 -0.15462 -0.04434 + 19 -0.43189 -0.01144 -0.05051 -0.19347 0.14625 0.03701 + 20 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 21 -0.01603 -0.03741 -0.06857 0.07443 -0.07005 0.09358 + 22 0.09673 0.22973 0.40840 -0.45916 0.43195 -0.58750 + 23 -0.15417 0.01264 -0.12648 0.04661 -0.37109 0.09643 + 24 -0.21421 0.14753 -0.05279 0.13347 0.24139 -0.25532 + 25 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 26 -0.01040 -0.04425 0.09323 -0.08702 0.01968 0.04881 + 27 0.06891 0.27323 -0.56587 0.53433 -0.11141 -0.30797 + 28 -0.26843 -0.15318 0.01248 0.00412 -0.24609 -0.19395 + 29 -0.33971 -0.20309 0.10507 0.01901 0.05533 0.26064 + 30 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 31 0.11196 -0.19141 0.31048 0.25356 0.65845 0.41686 + 32 0.46245 -0.32363 -0.30475 -0.18333 0.07828 0.19388 + 33 -0.11196 -0.19141 -0.31048 0.25356 -0.65845 0.41686 + 34 -0.46245 -0.32363 0.30475 -0.18333 -0.07828 0.19388 + 35 -0.10024 0.05467 -0.05779 -0.04711 0.05418 0.09793 + 36 0.57755 -0.33028 0.36315 0.29663 -0.34343 -0.59483 + 37 -0.04905 0.28122 -0.25626 -0.24473 0.19555 0.14050 + 38 -0.27215 -0.15359 -0.13200 -0.18581 -0.02685 0.07757 + 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 40 0.05744 -0.04442 -0.08017 -0.09675 0.00696 -0.06251 + 41 -0.33365 0.26069 0.50834 0.61113 -0.05035 0.37785 + 42 -0.05264 0.33180 0.19809 0.17484 0.08354 -0.03479 + 43 -0.04123 -0.26942 0.20802 0.18807 -0.29727 0.03472 + 44 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 45 -0.31116 0.51879 -0.36878 -0.34870 0.38372 0.39685 + 46 0.23820 0.19861 -0.40517 -0.43902 0.31458 -0.23259 + 47 0.15343 -0.50593 -0.33516 -0.38503 -0.15183 -0.17176 + 48 0.10024 0.05467 0.05779 -0.04711 -0.05418 0.09793 + 49 -0.57755 -0.33028 -0.36315 0.29663 0.34343 -0.59483 + 50 -0.04905 -0.28122 -0.25626 0.24473 0.19555 -0.14050 + 51 -0.27215 0.15359 -0.13200 0.18581 -0.02685 -0.07757 + 52 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 53 -0.05744 -0.04442 0.08017 -0.09675 -0.00696 -0.06251 + 54 0.33365 0.26069 -0.50834 0.61113 0.05035 0.37785 + 55 -0.05264 -0.33180 0.19809 -0.17484 0.08354 0.03479 + 56 -0.04123 0.26942 0.20802 -0.18807 -0.29727 -0.03472 + 57 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 58 0.31116 0.51879 0.36878 -0.34870 -0.38372 0.39685 + 59 -0.23820 0.19861 0.40517 -0.43902 -0.31458 -0.23259 + 60 -0.15343 -0.50593 0.33516 -0.38503 0.15183 -0.17176 + + 49 50 51 52 53 54 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.05673 0.01519 -0.09680 0.00226 -0.00245 -0.07561 + 2 -0.34579 -0.09429 0.65286 -0.00023 0.01557 0.52967 + 3 -0.13858 -0.36126 -0.13074 -0.53666 0.20068 0.30558 + 4 -0.13852 0.01322 0.56823 -0.08461 0.06686 -0.00243 + 5 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 6 -0.05227 -0.10873 0.02938 -0.10065 0.02312 -0.02167 + 7 0.32087 0.69675 -0.19574 0.68582 -0.16430 0.14703 + 8 -0.14208 -0.01813 0.43499 0.00008 0.60357 0.24224 + 9 -0.18142 0.17653 0.20684 -0.01495 -0.27127 0.76767 + 10 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 11 0.06099 0.11392 0.05302 -0.01449 -0.01760 0.08335 + 12 -0.37547 -0.73206 -0.34940 0.11431 0.12892 -0.58261 + 13 -0.16273 -0.10010 0.41455 -0.28975 -0.43091 -0.36991 + 14 -0.19668 0.17181 0.02293 0.48107 -0.49280 0.35448 + 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 16 -0.05673 0.01519 -0.09680 -0.00226 -0.00245 0.07561 + 17 0.34579 -0.09429 0.65286 0.00023 0.01557 -0.52967 + 18 -0.13858 0.36126 0.13074 -0.53666 -0.20068 0.30558 + 19 -0.13852 -0.01322 -0.56823 -0.08461 -0.06686 -0.00243 + 20 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 21 0.05227 -0.10873 0.02938 0.10065 0.02312 0.02167 + 22 -0.32087 0.69675 -0.19574 -0.68582 -0.16430 -0.14703 + 23 -0.14208 0.01813 -0.43499 0.00008 -0.60357 0.24224 + 24 -0.18142 -0.17653 -0.20684 -0.01495 0.27127 0.76767 + 25 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 26 -0.06099 0.11392 0.05302 0.01449 -0.01760 -0.08335 + 27 0.37547 -0.73206 -0.34940 -0.11431 0.12892 0.58261 + 28 -0.16273 0.10010 -0.41455 -0.28975 0.43091 -0.36991 + 29 -0.19668 -0.17181 -0.02293 0.48107 0.49280 0.35448 + 30 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 31 -0.07964 -0.26062 -0.18058 -0.27822 -0.45372 -0.05023 + 32 0.50362 0.36959 -0.09021 -0.08820 0.46587 0.27185 + 33 0.07964 -0.26062 -0.18058 0.27822 -0.45372 0.05023 + 34 -0.50362 0.36959 -0.09021 0.08820 0.46587 -0.27185 + 35 0.06316 -0.01532 -0.05744 0.00820 0.03920 -0.04598 + 36 -0.38600 0.11700 0.37780 -0.06831 -0.27607 0.31498 + 37 0.04779 0.00304 -0.14384 -0.33190 -0.07918 0.04357 + 38 -0.15725 -0.11044 0.08384 0.03920 -0.18388 -0.07935 + 39 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 40 -0.11510 -0.06729 0.02175 -0.01235 -0.04088 -0.00289 + 41 0.72656 0.43437 -0.14047 0.09672 0.27992 0.02259 + 42 0.09899 0.13382 0.29752 0.10960 -0.10677 0.10776 + 43 0.08068 0.33684 -0.16355 -0.46352 -0.19145 0.20218 + 44 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 45 0.27068 0.00951 -0.26860 -0.25681 0.09609 -0.09194 + 46 -0.39051 -0.45182 0.24716 0.34215 0.01983 -0.13695 + 47 -0.49351 -0.30831 -0.18311 -0.20943 -0.12726 -0.10602 + 48 -0.06316 -0.01532 -0.05744 -0.00820 0.03920 0.04598 + 49 0.38600 0.11700 0.37780 0.06831 -0.27607 -0.31498 + 50 0.04779 -0.00304 0.14384 -0.33190 0.07918 0.04357 + 51 -0.15725 0.11044 -0.08384 0.03920 0.18388 -0.07935 + 52 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 53 0.11510 -0.06729 0.02175 0.01235 -0.04088 0.00289 + 54 -0.72656 0.43437 -0.14047 -0.09672 0.27992 -0.02259 + 55 0.09899 -0.13382 -0.29752 0.10960 0.10677 0.10776 + 56 0.08068 -0.33684 0.16355 -0.46352 0.19145 0.20218 + 57 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 58 -0.27068 0.00951 -0.26860 0.25681 0.09609 0.09194 + 59 0.39051 -0.45182 0.24716 -0.34215 0.01983 0.13695 + 60 0.49351 -0.30831 -0.18311 0.20943 -0.12726 0.10602 + + 55 56 57 58 59 60 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.07182 0.00891 -0.00298 0.00505 0.00011 -0.06162 + 2 -0.48547 -0.03796 0.01286 -0.03527 -0.00246 0.47187 + 3 0.32677 -0.12934 -0.21019 -0.46045 0.72630 -0.13984 + 4 0.08077 0.45087 -0.20822 -0.12405 0.12213 0.64101 + 5 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 6 0.01100 0.01883 0.01879 -0.04083 0.01217 0.06116 + 7 -0.09156 -0.13266 -0.13657 0.30620 -0.09323 -0.45405 + 8 -0.15834 0.20921 -0.05101 -0.12721 0.26305 0.61867 + 9 0.05864 -0.19471 -0.47899 -0.13228 0.53222 -0.20985 + 10 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 11 0.05989 -0.02289 -0.01875 -0.02532 -0.01291 -0.06090 + 12 -0.40968 0.15365 0.13565 0.19230 0.09742 0.45327 + 13 0.27535 0.29584 0.08088 -0.13348 -0.46801 -0.51106 + 14 -0.19090 -0.06161 -0.48201 0.18568 0.38856 -0.43290 + 15 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 16 -0.07182 0.00891 -0.00298 -0.00505 0.00011 0.06162 + 17 0.48547 -0.03796 0.01286 0.03527 -0.00246 -0.47187 + 18 0.32677 0.12934 0.21019 -0.46045 -0.72630 -0.13984 + 19 0.08077 -0.45087 0.20822 -0.12405 -0.12213 0.64101 + 20 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 21 -0.01100 0.01883 0.01879 0.04083 0.01217 -0.06116 + 22 0.09156 -0.13266 -0.13657 -0.30620 -0.09323 0.45405 + 23 -0.15834 -0.20921 0.05101 -0.12721 -0.26305 0.61867 + 24 0.05864 0.19471 0.47899 -0.13228 -0.53222 -0.20985 + 25 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 26 -0.05989 -0.02289 -0.01875 0.02532 -0.01291 0.06090 + 27 0.40968 0.15365 0.13565 -0.19230 0.09742 -0.45327 + 28 0.27535 -0.29584 -0.08088 -0.13348 0.46801 -0.51106 + 29 -0.19090 0.06161 0.48201 0.18568 -0.38856 -0.43290 + 30 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 31 0.12110 -0.15032 -0.01740 -0.04860 -0.01815 -0.26079 + 32 0.15460 -0.23867 0.16186 -0.05876 0.03867 0.28541 + 33 -0.12110 -0.15032 -0.01740 0.04860 -0.01815 0.26079 + 34 -0.15460 -0.23867 0.16186 0.05876 0.03867 -0.28541 + 35 -0.04252 -0.01938 -0.06169 -0.06508 -0.03201 0.01257 + 36 0.32311 0.11924 0.47888 0.50634 0.25848 -0.07609 + 37 -0.19970 0.45909 0.37852 0.66620 0.45526 -0.03151 + 38 0.51304 -0.37094 0.52184 0.41201 0.25198 0.25260 + 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 40 0.02201 0.01960 0.05897 0.07154 0.04037 0.00168 + 41 -0.16155 -0.14136 -0.45209 -0.55810 -0.32657 -0.02190 + 42 0.60039 -0.35082 0.54375 0.44041 0.26732 0.16025 + 43 -0.14416 0.45080 0.38045 0.54021 0.31305 -0.02938 + 44 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 45 -0.33801 0.34378 0.00058 0.19358 0.16329 -0.03977 + 46 0.25983 -0.32499 -0.02630 -0.11131 -0.06001 0.04470 + 47 -0.41509 0.42200 -0.16072 -0.01022 -0.02907 -0.13179 + 48 0.04252 -0.01938 -0.06169 0.06508 -0.03201 -0.01257 + 49 -0.32311 0.11924 0.47888 -0.50634 0.25848 0.07609 + 50 -0.19970 -0.45909 -0.37852 0.66620 -0.45526 -0.03151 + 51 0.51304 0.37094 -0.52184 0.41201 -0.25198 0.25260 + 52 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 53 -0.02201 0.01960 0.05897 -0.07154 0.04037 -0.00168 + 54 0.16155 -0.14136 -0.45209 0.55810 -0.32657 0.02190 + 55 0.60039 0.35082 -0.54375 0.44041 -0.26732 0.16025 + 56 -0.14416 -0.45080 -0.38045 0.54021 -0.31305 -0.02938 + 57 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 58 0.33801 0.34378 0.00058 -0.19358 0.16329 0.03977 + 59 -0.25983 -0.32499 -0.02630 0.11131 -0.06001 -0.04470 + 60 0.41509 0.42200 -0.16072 0.01022 -0.02907 0.13179 + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2553.653898937773 0.000000000000 0.000000000000 + 0.000000000000 390.974194247583 0.000000000000 + 0.000000000000 0.000000000000 2944.628093185356 + + Multipole analysis of the density + --------------------------------- + + L x y z total alpha beta nuclear + - - - - ----- ----- ---- ------- + 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 0.000000 + 1 0 1 0 0.000000 0.000000 0.000000 -0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 0.000000 + + 2 2 0 0 -37.042971 -140.938758 -140.938758 244.834546 + 2 1 1 0 0.093275 -3.589294 -3.589294 7.271864 + 2 1 0 1 0.000000 0.000000 0.000000 0.000000 + 2 0 2 0 -37.549739 -744.885544 -744.885544 1452.221348 + 2 0 1 1 0.000000 0.000000 0.000000 0.000000 + 2 0 0 2 -43.566384 -21.783192 -21.783192 0.000000 + + + ------------- + Dipole Moment + ------------- + + Center of charge (in au) is the expansion point + X = 0.0000000 Y = -0.0000000 Z = 0.0000000 + + Dipole moment 0.0000000000 A.U. + DMX 0.0000000000 DMXEFC 0.0000000000 + DMY 0.0000000000 DMYEFC 0.0000000000 + DMZ -0.0000000000 DMZEFC 0.0000000000 + -EFC- dipole 0.0000000000 A.U. + Total dipole 0.0000000000 A.U. + + Dipole moment 0.0000000000 Debye(s) + DMX 0.0000000000 DMXEFC 0.0000000000 + DMY 0.0000000000 DMYEFC 0.0000000000 + DMZ -0.0000000000 DMZEFC 0.0000000000 + -EFC- dipole 0.0000000000 DEBYE(S) + Total dipole 0.0000000000 DEBYE(S) + + 1 a.u. = 2.541766 Debyes + + ----------------- + Quadrupole Moment + ----------------- + + Center of charge (in au) is the expansion point + X = 0.0000000 Y = -0.0000000 Z = 0.0000000 + + < R**2 > = ********** a.u. ( 1 a.u. = 0.280023 10**(-16) cm**2 ) + ( also called diamagnetic susceptibility ) + + Second moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX -37.0429705161 0.0000000000 -37.0429705161 + YY -37.5497393670 0.0000000000 -37.5497393670 + ZZ -43.5663842684 0.0000000000 -43.5663842684 + XY 0.0932750344 0.0000000000 0.0932750344 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ -0.0000000000 0.0000000000 -0.0000000000 + + Second moments in buckingham(s) + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX -49.8194985197 0.0000000000 -49.8194985197 + YY -50.5010575218 0.0000000000 -50.5010575218 + ZZ -58.5929094328 0.0000000000 -58.5929094328 + XY 0.1254466199 0.0000000000 0.1254466199 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ -0.0000000000 0.0000000000 -0.0000000000 + + Quadrupole moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX 3.5150913016 0.0000000000 3.5150913016 + YY 2.7549380252 0.0000000000 2.7549380252 + ZZ -6.2700293269 0.0000000000 -6.2700293269 + XY 0.1399125517 0.0000000000 0.1399125517 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ -0.0000000000 0.0000000000 -0.0000000000 + + Quadrupole moments in buckingham(s) + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX 4.7274849576 0.0000000000 4.7274849576 + YY 3.7051464544 0.0000000000 3.7051464544 + ZZ -8.4326314120 0.0000000000 -8.4326314120 + XY 0.1881699298 0.0000000000 0.1881699298 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ -0.0000000000 0.0000000000 -0.0000000000 + + 1 a.u. = 1.344911 Buckinghams = 1.344911 10**(-26) esu*cm**2 + + --------------- + Octupole Moment + --------------- + + Center of charge (in au) is the expansion point + X = 0.0000000 Y = -0.0000000 Z = 0.0000000 + + Third moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX -0.0000000000 0.0000000000 -0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 + + Third moments in 10**(-34) esu*cm**3 + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX -0.0000000000 0.0000000000 -0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 + + Octupole moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX 0.0000000000 0.0000000000 0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 + + Octupole moments in 10**(-34) esu*cm**3 + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX 0.0000000000 0.0000000000 0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 + + 1 a.u. = 0.711688 10**(-34) esu*cm**3 + + + ---------------------------- + Mulliken population analysis + ---------------------------- + + Total S,P,D,... shell population + -------------------------------- + Atom S P + -------------------------------------------------------------------------------------- + 1 C 3.13631 2.86929 + 2 C 3.14707 2.93651 + 3 C 3.14555 2.93581 + 4 C 3.13631 2.86929 + 5 C 3.14707 2.93651 + 6 C 3.14555 2.93581 + 7 H 0.91641 0.00000 + 8 H 0.91574 0.00000 + 9 H 0.91641 0.00000 + 10 H 0.91574 0.00000 + 11 C 3.16511 2.91546 + 12 C 3.17022 2.99376 + 13 H 0.91654 0.00000 + 14 H 0.91701 0.00000 + 15 H 0.91921 0.00000 + 16 C 3.16511 2.91546 + 17 C 3.17022 2.99376 + 18 H 0.91654 0.00000 + 19 H 0.91701 0.00000 + 20 H 0.91921 0.00000 + + ----- Total gross population on atoms ---- + + 1 C 6.0 6.00560 + 2 C 6.0 6.08357 + 3 C 6.0 6.08136 + 4 C 6.0 6.00560 + 5 C 6.0 6.08357 + 6 C 6.0 6.08136 + 7 H 1.0 0.91641 + 8 H 1.0 0.91574 + 9 H 1.0 0.91641 + 10 H 1.0 0.91574 + 11 C 6.0 6.08057 + 12 C 6.0 6.16398 + 13 H 1.0 0.91654 + 14 H 1.0 0.91701 + 15 H 1.0 0.91921 + 16 C 6.0 6.08057 + 17 C 6.0 6.16398 + 18 H 1.0 0.91654 + 19 H 1.0 0.91701 + 20 H 1.0 0.91921 + + ----- Bond indices ----- + 1- 1 0.00000 1- 2 1.37816 1- 3 0.00284 1- 4 0.09399 1- 5 0.00290 1- 6 1.38178 1- 7 0.00412 1- 8 0.00767 + 2- 1 1.37816 2- 2 0.00000 2- 3 1.45193 2- 4 0.00290 2- 5 0.10317 2- 6 0.00334 2- 7 0.95721 2- 8 0.00351 + 3- 1 0.00284 3- 2 1.45193 3- 3 0.00000 3- 4 1.38178 3- 5 0.00334 3- 6 0.10916 3- 7 0.00364 3- 8 0.95108 + 4- 1 0.09399 4- 2 0.00290 4- 3 1.38178 4- 4 0.00000 4- 5 1.37816 4- 6 0.00284 4- 7 0.00780 4- 8 0.00401 + 5- 1 0.00290 5- 2 0.10317 5- 3 0.00334 5- 4 1.37816 5- 5 0.00000 5- 6 1.45193 5- 7 0.00026 5- 8 0.00796 + 6- 1 1.38178 6- 2 0.00334 6- 3 0.10916 6- 4 0.00284 6- 5 1.45193 6- 6 0.00000 6- 7 0.00810 6- 8 0.00026 + 7- 1 0.00412 7- 2 0.95721 7- 3 0.00364 7- 4 0.00780 7- 5 0.00026 7- 6 0.00810 7- 7 0.00000 7- 8 0.00332 + 8- 1 0.00767 8- 2 0.00351 8- 3 0.95108 8- 4 0.00401 8- 5 0.00796 8- 6 0.00026 8- 7 0.00332 8- 8 0.00000 + 9- 1 0.00780 9- 2 0.00026 9- 3 0.00810 9- 4 0.00412 9- 5 0.95721 9- 6 0.00364 9- 7 0.00011 9- 8 0.00132 + 10- 1 0.00401 10- 2 0.00796 10- 3 0.00026 10- 4 0.00767 10- 5 0.00351 10- 6 0.95108 10- 7 0.00132 10- 8 0.00010 + 11- 1 0.00032 11- 2 0.01105 11- 3 0.00474 11- 4 1.03609 11- 5 0.00560 11- 6 0.00928 11- 7 0.00125 11- 8 0.00448 + 12- 1 0.02317 12- 2 0.00064 12- 3 0.03685 12- 4 0.00374 12- 5 0.04081 12- 6 0.00075 12- 7 0.00004 12- 8 0.00066 + 13- 1 0.00004 13- 2 0.00078 13- 3 0.00523 13- 4 0.00645 13- 5 0.00150 13- 6 0.00004 13- 7 0.00033 13- 8 0.00025 + 14- 1 0.00005 14- 2 0.00000 14- 3 0.00083 14- 4 0.01359 14- 5 0.00091 14- 6 0.00035 14- 7 0.00004 14- 8 0.00020 + 15- 1 0.00001 15- 2 0.00019 15- 3 0.00048 15- 4 0.00645 15- 5 0.00029 15- 6 0.00006 15- 7 0.00002 15- 8 0.00648 + 16- 1 1.03609 16- 2 0.00560 16- 3 0.00928 16- 4 0.00032 16- 5 0.01105 16- 6 0.00474 16- 7 0.00376 16- 8 0.00128 + 17- 1 0.00374 17- 2 0.04081 17- 3 0.00075 17- 4 0.02317 17- 5 0.00064 17- 6 0.03685 17- 7 0.00014 17- 8 0.00016 + 18- 1 0.00645 18- 2 0.00150 18- 3 0.00004 18- 4 0.00004 18- 5 0.00078 18- 6 0.00523 18- 7 0.00141 18- 8 0.00002 + 19- 1 0.01359 19- 2 0.00091 19- 3 0.00035 19- 4 0.00005 19- 5 0.00000 19- 6 0.00083 19- 7 0.00012 19- 8 0.00010 + 20- 1 0.00645 20- 2 0.00029 20- 3 0.00006 20- 4 0.00001 20- 5 0.00019 20- 6 0.00048 20- 7 0.00003 20- 8 0.00004 + 1- 9 0.00780 1-10 0.00401 1-11 0.00032 1-12 0.02317 1-13 0.00004 1-14 0.00005 1-15 0.00001 1-16 1.03609 + 2- 9 0.00026 2-10 0.00796 2-11 0.01105 2-12 0.00064 2-13 0.00078 2-14 0.00000 2-15 0.00019 2-16 0.00560 + 3- 9 0.00810 3-10 0.00026 3-11 0.00474 3-12 0.03685 3-13 0.00523 3-14 0.00083 3-15 0.00048 3-16 0.00928 + 4- 9 0.00412 4-10 0.00767 4-11 1.03609 4-12 0.00374 4-13 0.00645 4-14 0.01359 4-15 0.00645 4-16 0.00032 + 5- 9 0.95721 5-10 0.00351 5-11 0.00560 5-12 0.04081 5-13 0.00150 5-14 0.00091 5-15 0.00029 5-16 0.01105 + 6- 9 0.00364 6-10 0.95108 6-11 0.00928 6-12 0.00075 6-13 0.00004 6-14 0.00035 6-15 0.00006 6-16 0.00474 + 7- 9 0.00011 7-10 0.00132 7-11 0.00125 7-12 0.00004 7-13 0.00033 7-14 0.00004 7-15 0.00002 7-16 0.00376 + 8- 9 0.00132 8-10 0.00010 8-11 0.00448 8-12 0.00066 8-13 0.00025 8-14 0.00020 8-15 0.00648 8-16 0.00128 + 9- 9 0.00000 9-10 0.00332 9-11 0.00376 9-12 0.00014 9-13 0.00141 9-14 0.00012 9-15 0.00003 9-16 0.00125 + 10- 9 0.00332 10-10 0.00000 10-11 0.00128 10-12 0.00016 10-13 0.00002 10-14 0.00010 10-15 0.00004 10-16 0.00448 + 11- 9 0.00376 11-10 0.00128 11-11 0.00000 11-12 1.92340 11-13 0.95571 11-14 0.00271 11-15 0.00301 11-16 0.00052 + 12- 9 0.00014 12-10 0.00016 12-11 1.92340 12-12 0.00000 12-13 0.00319 12-14 0.96462 12-15 0.95793 12-16 0.00006 + 13- 9 0.00141 13-10 0.00002 13-11 0.95571 13-12 0.00319 13-13 0.00000 13-14 0.00459 13-15 0.01349 13-16 0.00000 + 14- 9 0.00012 14-10 0.00010 14-11 0.00271 14-12 0.96462 14-13 0.00459 14-14 0.00000 14-15 0.00500 14-16 0.00000 + 15- 9 0.00003 15-10 0.00004 15-11 0.00301 15-12 0.95793 15-13 0.01349 15-14 0.00500 15-15 0.00000 15-16 0.00000 + 16- 9 0.00125 16-10 0.00448 16-11 0.00052 16-12 0.00006 16-13 0.00000 16-14 0.00000 16-15 0.00000 16-16 0.00000 + 17- 9 0.00004 17-10 0.00066 17-11 0.00006 17-12 0.00762 17-13 0.00000 17-14 0.00000 17-15 0.00000 17-16 1.92340 + 18- 9 0.00033 18-10 0.00025 18-11 0.00000 18-12 0.00000 18-13 0.00000 18-14 0.00000 18-15 0.00000 18-16 0.95571 + 19- 9 0.00004 19-10 0.00020 19-11 0.00000 19-12 0.00000 19-13 0.00000 19-14 0.00000 19-15 0.00000 19-16 0.00271 + 20- 9 0.00002 20-10 0.00648 20-11 0.00000 20-12 0.00000 20-13 0.00000 20-14 0.00000 20-15 0.00000 20-16 0.00301 + 1-17 0.00374 1-18 0.00645 1-19 0.01359 1-20 0.00645 + 2-17 0.04081 2-18 0.00150 2-19 0.00091 2-20 0.00029 + 3-17 0.00075 3-18 0.00004 3-19 0.00035 3-20 0.00006 + 4-17 0.02317 4-18 0.00004 4-19 0.00005 4-20 0.00001 + 5-17 0.00064 5-18 0.00078 5-19 0.00000 5-20 0.00019 + 6-17 0.03685 6-18 0.00523 6-19 0.00083 6-20 0.00048 + 7-17 0.00014 7-18 0.00141 7-19 0.00012 7-20 0.00003 + 8-17 0.00016 8-18 0.00002 8-19 0.00010 8-20 0.00004 + 9-17 0.00004 9-18 0.00033 9-19 0.00004 9-20 0.00002 + 10-17 0.00066 10-18 0.00025 10-19 0.00020 10-20 0.00648 + 11-17 0.00006 11-18 0.00000 11-19 0.00000 11-20 0.00000 + 12-17 0.00762 12-18 0.00000 12-19 0.00000 12-20 0.00000 + 13-17 0.00000 13-18 0.00000 13-19 0.00000 13-20 0.00000 + 14-17 0.00000 14-18 0.00000 14-19 0.00000 14-20 0.00000 + 15-17 0.00000 15-18 0.00000 15-19 0.00000 15-20 0.00000 + 16-17 1.92340 16-18 0.95571 16-19 0.00271 16-20 0.00301 + 17-17 0.00000 17-18 0.00319 17-19 0.96462 17-20 0.95793 + 18-17 0.00319 18-18 0.00000 18-19 0.00459 18-20 0.01349 + 19-17 0.96462 19-18 0.00459 19-19 0.00000 19-20 0.00500 + 20-17 0.95793 20-18 0.01349 20-19 0.00500 20-20 0.00000 + + Large bond indices + ------------------ + 1 C - 2 C 1.37816 + 1 C - 6 C 1.38178 + 1 C - 16 C 1.03609 + 2 C - 3 C 1.45193 + 2 C - 5 C 0.10317 + 2 C - 7 H 0.95721 + 3 C - 4 C 1.38178 + 3 C - 6 C 0.10916 + 3 C - 8 H 0.95108 + 4 C - 5 C 1.37816 + 4 C - 11 C 1.03609 + 5 C - 6 C 1.45193 + 5 C - 9 H 0.95721 + 6 C - 10 H 0.95108 + 11 C - 12 C 1.92340 + 11 C - 13 H 0.95571 + 12 C - 14 H 0.96462 + 12 C - 15 H 0.95793 + 16 C - 17 C 1.92340 + 16 C - 18 H 0.95571 + 17 C - 19 H 0.96462 + 17 C - 20 H 0.95793 + + Free electrons Valency + Number of Sum of + Bond indices - Bond indices + Valency Free electrons Bond indices =Mulliken charge = Net spin population + 1 C 3.97321 2.03239 3.97321 6.00560 -0.00000 + 2 C 3.97023 2.11335 3.97023 6.08357 -0.00000 + 3 C 3.97074 2.11062 3.97074 6.08136 0.00000 + 4 C 3.97321 2.03239 3.97321 6.00560 -0.00000 + 5 C 3.97023 2.11335 3.97023 6.08357 -0.00000 + 6 C 3.97074 2.11062 3.97074 6.08136 -0.00000 + 7 H 0.99301 -0.07660 0.99301 0.91641 -0.00000 + 8 H 0.99290 -0.07716 0.99290 0.91574 0.00000 + 9 H 0.99301 -0.07660 0.99301 0.91641 -0.00000 + 10 H 0.99290 -0.07716 0.99290 0.91574 -0.00000 + 11 C 3.96327 2.11730 3.96327 6.08057 -0.00000 + 12 C 3.96379 2.20019 3.96379 6.16398 -0.00000 + 13 H 0.99303 -0.07649 0.99303 0.91654 -0.00000 + 14 H 0.99311 -0.07610 0.99311 0.91701 -0.00000 + 15 H 0.99347 -0.07426 0.99347 0.91921 -0.00000 + 16 C 3.96327 2.11730 3.96327 6.08057 -0.00000 + 17 C 3.96379 2.20019 3.96379 6.16398 -0.00000 + 18 H 0.99303 -0.07649 0.99303 0.91654 -0.00000 + 19 H 0.99311 -0.07610 0.99311 0.91701 -0.00000 + 20 H 0.99347 -0.07426 0.99347 0.91921 -0.00000 + + Task times cpu: 8.4s wall: 8.0s + + + NWChem Input Module + ------------------- + + + Summary of allocated global arrays +----------------------------------- + No active global arrays + + + + GA Statistics for process 0 + ------------------------------ + + create destroy get put acc scatter gather read&inc +calls: 731 731 2.11e+05 5502 1.72e+05 420 0 1.31e+04 +number of processes/call 1.00e+00 1.00e+00 1.00e+00 0.00e+00 0.00e+00 +bytes total: 3.24e+07 8.49e+06 1.79e+07 8.00e+00 0.00e+00 1.04e+05 +bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 1123200 bytes + +MA_summarize_allocated_blocks: starting scan ... +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +MA usage statistics: + + allocation statistics: + heap stack + ---- ----- + current number of blocks 0 0 + maximum number of blocks 21 55 + current total bytes 0 0 + maximum total bytes 13693312 22516360 + maximum total K-bytes 13694 22517 + maximum total M-bytes 14 23 + + + CITATION + -------- + Please cite the following reference when publishing + results obtained with NWChem: + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + + AUTHORS + ------- + E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, + J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, + S. A. Fischer, S. Krishnamoorthy, M. Jacquelin, W. Ma, M. Klemm, O. Villa, + Y. Chen, V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, V. Konjkov, + D. Mejia-Rodriguez, T. Risthaus, M. Malagoli, A. Marenich, + A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, + P.-D. Fan, A. Fonari, M. J. Williamson, R. J. Harrison, J. R. Rehr, + M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, V. Tipparaju, + M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, L. Jensen, M. Swart, + Q. Wu, T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, + G. Cisneros, G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, + J. A. Nichols, K. Tsemekhman, K. Wolinski, J. Anchell, D. E. Bernholdt, + P. Borowski, T. Clark, D. Clerc, H. Dachsel, M. J. O. Deegan, K. Dyall, + D. Elwood, E. Glendening, M. Gutowski, A. C. Hess, J. Jaffe, B. G. Johnson, + J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, X. Long, B. Meng, + T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, + M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. + + Total times cpu: 8.5s wall: 8.0s diff --git a/data/NWChem/basicNWChem7.0/dvb_gopt_hf.nw b/data/NWChem/basicNWChem7.0/dvb_gopt_hf.nw new file mode 100644 index 000000000..40c988abd --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_gopt_hf.nw @@ -0,0 +1,30 @@ + start dvb + title "Divinylbenzene in STO-3G basis set" + + geometry units angstroms + C -1.4152533224 0.2302217854 0.0000000000 + C 1.4152533224 -0.2302217854 0.0000000000 + C -0.4951331558 1.3144608674 0.0000000000 + C 0.4951331558 -1.3144608674 0.0000000000 + C 0.8894090436 1.0909493743 0.0000000000 + C -0.8894090436 -1.0909493743 0.0000000000 + H -0.8795511985 2.3437343748 0.0000000000 + H 0.8795511985 -2.3437343748 0.0000000000 + H 1.5779041557 1.9450061275 0.0000000000 + H -1.5779041557 -1.9450061275 0.0000000000 + C 2.8845844962 -0.5210893778 0.0000000000 + C -2.8845844962 0.5210893778 0.0000000000 + H 3.1403356810 -1.5919605685 0.0000000000 + H -3.1403356810 1.5919605685 0.0000000000 + C 3.8800428103 0.3822535424 0.0000000000 + C -3.8800428103 -0.3822535424 0.0000000000 + H 3.6946765858 1.4624389570 0.0000000000 + H -3.6946765858 -1.4624389570 0.0000000000 + H 4.9316453546 0.0711049543 0.0000000000 + H -4.9316453546 -0.0711049543 0.0000000000 + end + basis + * library sto-3g + end + task scf optimize + diff --git a/data/NWChem/basicNWChem7.0/dvb_gopt_hf.out b/data/NWChem/basicNWChem7.0/dvb_gopt_hf.out new file mode 100644 index 000000000..da269dd38 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_gopt_hf.out @@ -0,0 +1,5957 @@ + argument 1 = dvb_gopt_hf.nw + + + + + Northwest Computational Chemistry Package (NWChem) 6.5 + ------------------------------------------------------ + + + Environmental Molecular Sciences Laboratory + Pacific Northwest National Laboratory + Richland, WA 99352 + + Copyright (c) 1994-2014 + Pacific Northwest National Laboratory + Battelle Memorial Institute + + NWChem is an open-source computational chemistry package + distributed under the terms of the + Educational Community License (ECL) 2.0 + A copy of the license is included with this distribution + in the LICENSE.TXT file + + ACKNOWLEDGMENT + -------------- + + This software and its documentation were developed at the + EMSL at Pacific Northwest National Laboratory, a multiprogram + national laboratory, operated for the U.S. Department of Energy + by Battelle under Contract Number DE-AC05-76RL01830. Support + for this work was provided by the Department of Energy Office + of Biological and Environmental Research, Office of Basic + Energy Sciences, and the Office of Advanced Scientific Computing. + + + Job information + --------------- + + hostname = boman + program = /usr/lib64/mpich/bin/nwchem_mpich + date = Sat Jan 17 16:28:30 2015 + + compiled = Sat_Dec_06_13:02:58_2014 + source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 + nwchem branch = 6.5 + nwchem revision = 26243 + ga revision = 10506 + input = dvb_gopt_hf.nw + prefix = dvb. + data base = ./dvb.db + status = startup + nproc = 1 + time left = -1s + + + + Memory information + ------------------ + + heap = 13107194 doubles = 100.0 Mbytes + stack = 13107199 doubles = 100.0 Mbytes + global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) + total = 52428793 doubles = 400.0 Mbytes + verify = yes + hardfail = no + + + Directory information + --------------------- + + 0 permanent = . + 0 scratch = . + + + + + NWChem Input Module + ------------------- + + + Divinylbenzene in STO-3G basis set + ---------------------------------- + + Scaling coordinates for geometry "geometry" by 1.889725989 + (inverse scale = 0.529177249) + + C2H symmetry detected + + ------ + auto-z + ------ + + + Geometry "geometry" -> "" + ------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.23680554 1.41416660 0.00000000 + 2 C 6.0000 -0.23680554 -1.41416660 0.00000000 + 3 C 6.0000 1.31675086 0.48901061 0.00000000 + 4 C 6.0000 -1.31675086 -0.48901061 0.00000000 + 5 C 6.0000 1.08679847 -0.89447642 0.00000000 + 6 C 6.0000 -1.08679847 0.89447642 0.00000000 + 7 H 1.0000 2.34780221 0.86863451 0.00000000 + 8 H 1.0000 -2.34780221 -0.86863451 0.00000000 + 9 H 1.0000 1.93764188 -1.58693865 0.00000000 + 10 H 1.0000 -1.93764188 1.58693865 0.00000000 + 11 C 6.0000 -0.53450789 -2.88212824 0.00000000 + 12 C 6.0000 0.53450789 2.88212824 0.00000000 + 13 H 1.0000 -1.60655769 -3.13289308 0.00000000 + 14 H 1.0000 1.60655769 3.13289308 0.00000000 + 15 C 6.0000 0.36419263 -3.88177971 0.00000000 + 16 C 6.0000 -0.36419263 3.88177971 0.00000000 + 17 H 1.0000 1.44522900 -3.70144241 0.00000000 + 18 H 1.0000 -1.44522900 3.70144241 0.00000000 + 19 H 1.0000 0.04815351 -4.93192286 0.00000000 + 20 H 1.0000 -0.04815351 4.93192286 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 445.9370121674 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value + ----------- -------- ----- ----- ----- ----- ----- ---------- + 1 Stretch 1 3 1.42204 + 2 Stretch 1 6 1.42197 + 3 Stretch 1 12 1.49784 + 4 Stretch 2 4 1.42204 + 5 Stretch 2 5 1.42197 + 6 Stretch 2 11 1.49784 + 7 Stretch 3 5 1.40247 + 8 Stretch 3 7 1.09872 + 9 Stretch 4 6 1.40247 + 10 Stretch 4 8 1.09872 + 11 Stretch 5 9 1.09701 + 12 Stretch 6 10 1.09701 + 13 Stretch 11 13 1.10099 + 14 Stretch 11 15 1.34423 + 15 Stretch 12 14 1.10099 + 16 Stretch 12 16 1.34423 + 17 Stretch 15 17 1.09597 + 18 Stretch 15 19 1.09667 + 19 Stretch 16 18 1.09597 + 20 Stretch 16 20 1.09667 + 21 Bend 1 3 5 121.14867 + 22 Bend 1 3 7 119.20109 + 23 Bend 1 6 4 120.87358 + 24 Bend 1 6 10 119.42285 + 25 Bend 1 12 14 114.62953 + 26 Bend 1 12 16 126.57992 + 27 Bend 2 4 6 121.14867 + 28 Bend 2 4 8 119.20109 + 29 Bend 2 5 3 120.87358 + 30 Bend 2 5 9 119.42285 + 31 Bend 2 11 13 114.62953 + 32 Bend 2 11 15 126.57992 + 33 Bend 3 1 6 117.97776 + 34 Bend 3 1 12 119.12155 + 35 Bend 3 5 9 119.70357 + 36 Bend 4 2 5 117.97776 + 37 Bend 4 2 11 119.12155 + 38 Bend 4 6 10 119.70357 + 39 Bend 5 2 11 122.90069 + 40 Bend 5 3 7 119.65024 + 41 Bend 6 1 12 122.90069 + 42 Bend 6 4 8 119.65024 + 43 Bend 11 15 17 122.48517 + 44 Bend 11 15 19 121.29492 + 45 Bend 12 16 18 122.48517 + 46 Bend 12 16 20 121.29492 + 47 Bend 13 11 15 118.79054 + 48 Bend 14 12 16 118.79054 + 49 Bend 17 15 19 116.21990 + 50 Bend 18 16 20 116.21990 + 51 Torsion 1 3 5 2 0.00000 + 52 Torsion 1 3 5 9 180.00000 + 53 Torsion 1 6 4 2 0.00000 + 54 Torsion 1 6 4 8 180.00000 + 55 Torsion 1 12 16 18 0.00000 + 56 Torsion 1 12 16 20 180.00000 + 57 Torsion 2 4 6 10 180.00000 + 58 Torsion 2 5 3 7 180.00000 + 59 Torsion 2 11 15 17 0.00000 + 60 Torsion 2 11 15 19 180.00000 + 61 Torsion 3 1 6 4 0.00000 + 62 Torsion 3 1 6 10 180.00000 + 63 Torsion 3 1 12 14 0.00000 + 64 Torsion 3 1 12 16 180.00000 + 65 Torsion 3 5 2 4 0.00000 + 66 Torsion 3 5 2 11 180.00000 + 67 Torsion 4 2 5 9 180.00000 + 68 Torsion 4 2 11 13 0.00000 + 69 Torsion 4 2 11 15 180.00000 + 70 Torsion 4 6 1 12 180.00000 + 71 Torsion 5 2 4 6 -0.00000 + 72 Torsion 5 2 4 8 180.00000 + 73 Torsion 5 2 11 13 180.00000 + 74 Torsion 5 2 11 15 0.00000 + 75 Torsion 5 3 1 6 0.00000 + 76 Torsion 5 3 1 12 180.00000 + 77 Torsion 6 1 3 7 180.00000 + 78 Torsion 6 1 12 14 180.00000 + 79 Torsion 6 1 12 16 0.00000 + 80 Torsion 6 4 2 11 180.00000 + 81 Torsion 7 3 1 12 -0.00000 + 82 Torsion 7 3 5 9 0.00000 + 83 Torsion 8 4 2 11 -0.00000 + 84 Torsion 8 4 6 10 0.00000 + 85 Torsion 9 5 2 11 0.00000 + 86 Torsion 10 6 1 12 0.00000 + 87 Torsion 13 11 15 17 180.00000 + 88 Torsion 13 11 15 19 -0.00000 + 89 Torsion 14 12 16 18 180.00000 + 90 Torsion 14 12 16 20 -0.00000 + + + XYZ format geometry + ------------------- + 20 + geometry + C 0.23680554 1.41416660 0.00000000 + C -0.23680554 -1.41416660 0.00000000 + C 1.31675086 0.48901061 0.00000000 + C -1.31675086 -0.48901061 0.00000000 + C 1.08679847 -0.89447642 0.00000000 + C -1.08679847 0.89447642 0.00000000 + H 2.34780221 0.86863451 0.00000000 + H -2.34780221 -0.86863451 0.00000000 + H 1.93764188 -1.58693865 0.00000000 + H -1.93764188 1.58693865 0.00000000 + C -0.53450789 -2.88212824 0.00000000 + C 0.53450789 2.88212824 0.00000000 + H -1.60655769 -3.13289308 0.00000000 + H 1.60655769 3.13289308 0.00000000 + C 0.36419263 -3.88177971 0.00000000 + C -0.36419263 3.88177971 0.00000000 + H 1.44522900 -3.70144241 0.00000000 + H -1.44522900 3.70144241 0.00000000 + H 0.04815351 -4.93192286 0.00000000 + H -0.04815351 4.93192286 0.00000000 + + ============================================================================== + internuclear distances + ------------------------------------------------------------------------------ + center one | center two | atomic units | angstroms + ------------------------------------------------------------------------------ + 3 C | 1 C | 2.68726 | 1.42204 + 4 C | 2 C | 2.68726 | 1.42204 + 5 C | 2 C | 2.68714 | 1.42197 + 5 C | 3 C | 2.65028 | 1.40247 + 6 C | 1 C | 2.68714 | 1.42197 + 6 C | 4 C | 2.65028 | 1.40247 + 7 H | 3 C | 2.07628 | 1.09872 + 8 H | 4 C | 2.07628 | 1.09872 + 9 H | 5 C | 2.07305 | 1.09701 + 10 H | 6 C | 2.07305 | 1.09701 + 11 C | 2 C | 2.83052 | 1.49784 + 12 C | 1 C | 2.83052 | 1.49784 + 13 H | 11 C | 2.08056 | 1.10099 + 14 H | 12 C | 2.08056 | 1.10099 + 15 C | 11 C | 2.54023 | 1.34423 + 16 C | 12 C | 2.54023 | 1.34423 + 17 H | 15 C | 2.07109 | 1.09597 + 18 H | 16 C | 2.07109 | 1.09597 + 19 H | 15 C | 2.07240 | 1.09667 + 20 H | 16 C | 2.07240 | 1.09667 + ------------------------------------------------------------------------------ + number of included internuclear distances: 20 + ============================================================================== + + + + ============================================================================== + internuclear angles + ------------------------------------------------------------------------------ + center 1 | center 2 | center 3 | degrees + ------------------------------------------------------------------------------ + 3 C | 1 C | 6 C | 117.98 + 3 C | 1 C | 12 C | 119.12 + 6 C | 1 C | 12 C | 122.90 + 4 C | 2 C | 5 C | 117.98 + 4 C | 2 C | 11 C | 119.12 + 5 C | 2 C | 11 C | 122.90 + 1 C | 3 C | 5 C | 121.15 + 1 C | 3 C | 7 H | 119.20 + 5 C | 3 C | 7 H | 119.65 + 2 C | 4 C | 6 C | 121.15 + 2 C | 4 C | 8 H | 119.20 + 6 C | 4 C | 8 H | 119.65 + 2 C | 5 C | 3 C | 120.87 + 2 C | 5 C | 9 H | 119.42 + 3 C | 5 C | 9 H | 119.70 + 1 C | 6 C | 4 C | 120.87 + 1 C | 6 C | 10 H | 119.42 + 4 C | 6 C | 10 H | 119.70 + 2 C | 11 C | 13 H | 114.63 + 2 C | 11 C | 15 C | 126.58 + 13 H | 11 C | 15 C | 118.79 + 1 C | 12 C | 14 H | 114.63 + 1 C | 12 C | 16 C | 126.58 + 14 H | 12 C | 16 C | 118.79 + 11 C | 15 C | 17 H | 122.49 + 11 C | 15 C | 19 H | 121.29 + 17 H | 15 C | 19 H | 116.22 + 12 C | 16 C | 18 H | 122.49 + 12 C | 16 C | 20 H | 121.29 + 18 H | 16 C | 20 H | 116.22 + ------------------------------------------------------------------------------ + number of included internuclear angles: 30 + ============================================================================== + + + + library name resolved from: .nwchemrc + library file name is: + + + + Summary of "ao basis" -> "" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + * sto-3g on all atoms + + + + + NWChem Geometry Optimization + ---------------------------- + + + + + Divinylbenzene in STO-3G basis set + + + maximum gradient threshold (gmax) = 0.000450 + rms gradient threshold (grms) = 0.000300 + maximum cartesian step threshold (xmax) = 0.001800 + rms cartesian step threshold (xrms) = 0.001200 + fixed trust radius (trust) = 0.300000 + maximum step size to saddle (sadstp) = 0.100000 + energy precision (eprec) = 1.0D-07 + maximum number of steps (nptopt) = 20 + initial hessian option (inhess) = 0 + line search option (linopt) = 1 + hessian update option (modupd) = 1 + saddle point option (modsad) = 0 + initial eigen-mode to follow (moddir) = 0 + initial variable to follow (vardir) = 0 + follow first negative mode (firstneg) = T + apply conjugacy (opcg) = F + source of zmatrix = autoz + + + ------------------- + Energy Minimization + ------------------- + + + Names of Z-matrix variables + 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 + + Variables with the same non-blank name are constrained to be equal + + + Using diagonal initial Hessian + Scaling for Hessian diagonals: bonds = 1.00 angles = 0.25 torsions = 0.10 + + -------- + Step 0 + -------- + + + Geometry "geometry" -> "geometry" + --------------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.23680554 1.41416660 0.00000000 + 2 C 6.0000 -0.23680554 -1.41416660 0.00000000 + 3 C 6.0000 1.31675086 0.48901061 0.00000000 + 4 C 6.0000 -1.31675086 -0.48901061 0.00000000 + 5 C 6.0000 1.08679847 -0.89447642 0.00000000 + 6 C 6.0000 -1.08679847 0.89447642 0.00000000 + 7 H 1.0000 2.34780221 0.86863451 0.00000000 + 8 H 1.0000 -2.34780221 -0.86863451 0.00000000 + 9 H 1.0000 1.93764188 -1.58693865 0.00000000 + 10 H 1.0000 -1.93764188 1.58693865 0.00000000 + 11 C 6.0000 -0.53450789 -2.88212824 0.00000000 + 12 C 6.0000 0.53450789 2.88212824 0.00000000 + 13 H 1.0000 -1.60655769 -3.13289308 0.00000000 + 14 H 1.0000 1.60655769 3.13289308 0.00000000 + 15 C 6.0000 0.36419263 -3.88177971 0.00000000 + 16 C 6.0000 -0.36419263 3.88177971 0.00000000 + 17 H 1.0000 1.44522900 -3.70144241 0.00000000 + 18 H 1.0000 -1.44522900 3.70144241 0.00000000 + 19 H 1.0000 0.04815351 -4.93192286 0.00000000 + 20 H 1.0000 -0.04815351 4.93192286 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 445.9370121674 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + Basis "ao basis" -> "ao basis" (cartesian) + ----- + C (Carbon) + ---------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 7.16168370E+01 0.154329 + 1 S 1.30450960E+01 0.535328 + 1 S 3.53051220E+00 0.444635 + + 2 S 2.94124940E+00 -0.099967 + 2 S 6.83483100E-01 0.399513 + 2 S 2.22289900E-01 0.700115 + + 3 P 2.94124940E+00 0.155916 + 3 P 6.83483100E-01 0.607684 + 3 P 2.22289900E-01 0.391957 + + H (Hydrogen) + ------------ + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.42525091E+00 0.154329 + 1 S 6.23913730E-01 0.535328 + 1 S 1.68855400E-01 0.444635 + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + NWChem SCF Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + ao basis = "ao basis" + functions = 60 + atoms = 20 + closed shells = 35 + open shells = 0 + charge = 0.00 + wavefunction = RHF + input vectors = atomic + output vectors = ./dvb.movecs + use symmetry = T + symmetry adapt = T + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + + Forming initial guess at 0.8s + + + Superposition of Atomic Density Guess + ------------------------------------- + + Sum of atomic energies: -376.44825176 + + Non-variational initial energy + ------------------------------ + + Total energy = -379.429467 + 1-e energy = -1401.451096 + 2-e energy = 576.084617 + HOMO = -0.037645 + LUMO = 0.163723 + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 ag 2 bu 3 ag 4 bu 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 ag 24 bu 25 bu + 26 ag 27 bu 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 bu + + + Starting SCF solution at 1.4s + + + + ---------------------------------------------- + Quadratically convergent ROHF + + Convergence threshold : 1.000E-04 + Maximum no. of iterations : 30 + Final Fock-matrix accuracy: 1.000E-07 + ---------------------------------------------- + + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% + + + iter energy gnorm gmax time + ----- ------------------- --------- --------- -------- + 1 -379.7024515658 7.56D-01 1.81D-01 2.4 + 2 -379.7670218883 1.53D-01 4.40D-02 2.4 + 3 -379.7689554257 6.43D-03 2.31D-03 2.5 + 4 -379.7689624910 3.37D-05 9.25D-06 2.6 + + + Final RHF results + ------------------ + + Total SCF energy = -379.768962491035 + One-electron energy = -1400.222183962455 + Two-electron energy = 574.516209303975 + Nuclear repulsion energy = 445.937012167446 + + Time for solution = 1.9s + + + + Symmetry analysis of molecular orbitals - final + ----------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 ag 44 bu 45 ag + + Final eigenvalues + ----------------- + + 1 + 1 -11.0406 + 2 -11.0405 + 3 -11.0316 + 4 -11.0316 + 5 -11.0290 + 6 -11.0288 + 7 -11.0286 + 8 -11.0286 + 9 -11.0175 + 10 -11.0175 + 11 -1.0903 + 12 -1.0203 + 13 -0.9749 + 14 -0.9503 + 15 -0.9096 + 16 -0.7999 + 17 -0.7628 + 18 -0.7276 + 19 -0.6968 + 20 -0.6281 + 21 -0.6057 + 22 -0.5729 + 23 -0.5536 + 24 -0.5532 + 25 -0.5254 + 26 -0.4967 + 27 -0.4925 + 28 -0.4637 + 29 -0.4464 + 30 -0.4217 + 31 -0.4156 + 32 -0.3770 + 33 -0.3151 + 34 -0.2784 + 35 -0.2222 + 36 0.1990 + 37 0.2685 + 38 0.3088 + 39 0.3971 + 40 0.5218 + 41 0.5650 + 42 0.5756 + 43 0.6216 + 44 0.6258 + 45 0.6582 + + ROHF Final Molecular Orbital Analysis + ------------------------------------- + + Vector 11 Occ=2.000000D+00 E=-1.090299D+00 Symmetry=ag + MO Center= 3.8D-16, -5.7D-16, -3.2D-30, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.275368 1 C s 7 0.275368 2 C s + 12 0.247273 3 C s 17 0.247273 4 C s + 22 0.247126 5 C s 27 0.247126 6 C s + + Vector 12 Occ=2.000000D+00 E=-1.020254D+00 Symmetry=bu + MO Center= -6.8D-16, -1.8D-14, 5.5D-17, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.298699 11 C s 41 -0.298699 12 C s + 2 -0.270806 1 C s 7 0.270806 2 C s + 48 0.213652 15 C s 53 -0.213652 16 C s + + Vector 13 Occ=2.000000D+00 E=-9.749254D-01 Symmetry=ag + MO Center= 3.5D-15, 3.7D-15, -5.6D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.314473 11 C s 41 0.314473 12 C s + 48 0.310076 15 C s 53 0.310076 16 C s + + Vector 14 Occ=2.000000D+00 E=-9.503033D-01 Symmetry=bu + MO Center= 1.3D-15, -5.7D-15, -1.2D-16, r^2= 3.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.357133 3 C s 17 -0.357133 4 C s + 22 0.325008 5 C s 27 -0.325008 6 C s + + Vector 15 Occ=2.000000D+00 E=-9.096345D-01 Symmetry=bu + MO Center= 3.5D-16, 7.5D-15, 2.3D-32, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.292220 15 C s 53 -0.292220 16 C s + 2 0.279079 1 C s 7 -0.279079 2 C s + 22 -0.200698 5 C s 27 0.200698 6 C s + + Vector 16 Occ=2.000000D+00 E=-7.998830D-01 Symmetry=ag + MO Center= -2.9D-15, 1.9D-15, 2.4D-17, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.239926 15 C s 53 0.239926 16 C s + 22 0.229429 5 C s 27 0.229429 6 C s + 2 -0.212930 1 C s 7 -0.212930 2 C s + 14 -0.159170 3 C py 19 0.159170 4 C py + 36 -0.159504 11 C s 41 -0.159504 12 C s + + Vector 17 Occ=2.000000D+00 E=-7.628268D-01 Symmetry=ag + MO Center= 3.7D-15, 2.4D-15, -2.0D-18, r^2= 5.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.324855 3 C s 17 0.324855 4 C s + 3 0.189935 1 C px 8 -0.189935 2 C px + 22 -0.180804 5 C s 27 -0.180804 6 C s + 31 0.173636 7 H s 32 0.173636 8 H s + 24 0.169743 5 C py 29 -0.169743 6 C py + + Vector 18 Occ=2.000000D+00 E=-7.276317D-01 Symmetry=bu + MO Center= -8.5D-17, 2.4D-15, -9.9D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.297522 11 C s 41 -0.297522 12 C s + 48 -0.248206 15 C s 53 0.248206 16 C s + 45 0.174840 13 H s 46 -0.174840 14 H s + 57 -0.163892 17 H s 58 0.163892 18 H s + + Vector 19 Occ=2.000000D+00 E=-6.967772D-01 Symmetry=ag + MO Center= -9.3D-16, 0.0D+00, -1.1D-17, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.194626 5 C px 28 -0.194626 6 C px + 36 0.187351 11 C s 41 0.187351 12 C s + 13 0.174310 3 C px 18 -0.174310 4 C px + 2 -0.170808 1 C s 7 -0.170808 2 C s + 33 0.168856 9 H s 34 0.168856 10 H s + + Vector 20 Occ=2.000000D+00 E=-6.280522D-01 Symmetry=ag + MO Center= 5.1D-15, -3.5D-14, 7.8D-17, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.204700 15 C px 54 -0.204700 16 C px + 38 0.183205 11 C py 43 -0.183205 12 C py + 57 0.178852 17 H s 58 0.178852 18 H s + 45 -0.152733 13 H s 46 -0.152733 14 H s + + Vector 21 Occ=2.000000D+00 E=-6.056780D-01 Symmetry=bu + MO Center= -1.9D-15, 5.6D-14, -3.4D-18, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.215048 11 C px 42 0.215048 12 C px + 50 0.201798 15 C py 55 0.201798 16 C py + 14 0.181913 3 C py 19 0.181913 4 C py + 59 -0.179094 19 H s 60 0.179094 20 H s + 45 -0.165299 13 H s 46 0.165299 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.729426D-01 Symmetry=bu + MO Center= -1.0D-15, 2.1D-15, 1.3D-32, r^2= 7.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.234899 9 H s 34 -0.234899 10 H s + 31 -0.225759 7 H s 32 0.225759 8 H s + 2 0.223491 1 C s 7 -0.223491 2 C s + 13 -0.220802 3 C px 18 -0.220802 4 C px + 24 -0.179464 5 C py 29 -0.179464 6 C py + + Vector 23 Occ=2.000000D+00 E=-5.536035D-01 Symmetry=bu + MO Center= -2.3D-17, 1.9D-15, -4.2D-33, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.252837 15 C px 54 0.252837 16 C px + 23 0.248952 5 C px 28 0.248952 6 C px + 3 -0.221990 1 C px 8 -0.221990 2 C px + 57 0.222772 17 H s 58 -0.222772 18 H s + 38 0.178895 11 C py 43 0.178895 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.531658D-01 Symmetry=ag + MO Center= -5.5D-16, -2.7D-14, -1.5D-18, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.336239 15 C py 55 -0.336239 16 C py + 59 -0.268357 19 H s 60 -0.268357 20 H s + 37 0.248998 11 C px 42 -0.248998 12 C px + 45 -0.151363 13 H s 46 -0.151363 14 H s + + Vector 25 Occ=2.000000D+00 E=-5.253606D-01 Symmetry=bu + MO Center= -5.8D-16, -9.2D-16, 8.6D-34, r^2= 4.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.299404 3 C px 18 0.299404 4 C px + 31 0.258504 7 H s 32 -0.258504 8 H s + 24 -0.232845 5 C py 29 -0.232845 6 C py + 33 0.223596 9 H s 34 -0.223596 10 H s + 23 0.179046 5 C px 28 0.179046 6 C px + + Vector 26 Occ=2.000000D+00 E=-4.966990D-01 Symmetry=bu + MO Center= 3.3D-15, 1.0D-14, 2.3D-17, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.238942 15 C py 55 -0.238942 16 C py + 14 0.222972 3 C py 19 0.222972 4 C py + 37 -0.201999 11 C px 42 -0.201999 12 C px + 38 0.188759 11 C py 43 0.188759 12 C py + 24 -0.184876 5 C py 29 -0.184876 6 C py + + Vector 27 Occ=2.000000D+00 E=-4.925280D-01 Symmetry=ag + MO Center= -5.2D-15, -1.4D-14, -4.3D-30, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.296131 15 C px 54 -0.296131 16 C px + 57 0.273185 17 H s 58 0.273185 18 H s + 37 -0.209362 11 C px 42 0.209362 12 C px + 45 0.202959 13 H s 46 0.202959 14 H s + 31 -0.156851 7 H s 32 -0.156851 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.637308D-01 Symmetry=au + MO Center= 5.8D-16, 8.3D-17, -7.4D-17, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.331504 1 C pz 10 0.331504 2 C pz + 15 0.302831 3 C pz 20 0.302831 4 C pz + 25 0.301868 5 C pz 30 0.301868 6 C pz + 39 0.165577 11 C pz 44 0.165577 12 C pz + + Vector 29 Occ=2.000000D+00 E=-4.464302D-01 Symmetry=bu + MO Center= -6.8D-16, -7.8D-16, -4.5D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.257252 13 H s 46 -0.257252 14 H s + 4 0.243719 1 C py 9 0.243719 2 C py + 57 0.226298 17 H s 58 -0.226298 18 H s + 37 -0.214534 11 C px 42 -0.214534 12 C px + 59 -0.211967 19 H s 60 0.211967 20 H s + + Vector 30 Occ=2.000000D+00 E=-4.216550D-01 Symmetry=ag + MO Center= 3.3D-15, 8.0D-15, 4.6D-19, r^2= 5.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 -0.268212 3 C py 19 0.268212 4 C py + 4 0.260257 1 C py 9 -0.260257 2 C py + 33 -0.253899 9 H s 34 -0.253899 10 H s + 38 0.232935 11 C py 43 -0.232935 12 C py + 24 0.223473 5 C py 29 -0.223473 6 C py + + Vector 31 Occ=2.000000D+00 E=-4.156220D-01 Symmetry=ag + MO Center= 5.1D-16, -1.8D-15, 3.4D-18, r^2= 6.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.278853 1 C px 8 -0.278853 2 C px + 23 0.269038 5 C px 28 -0.269038 6 C px + 31 -0.251625 7 H s 32 -0.251625 8 H s + 13 -0.210356 3 C px 18 0.210356 4 C px + 45 -0.183775 13 H s 46 -0.183775 14 H s + + Vector 32 Occ=2.000000D+00 E=-3.769631D-01 Symmetry=bg + MO Center= -1.1D-16, 1.8D-14, 3.1D-17, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.383213 11 C pz 44 -0.383213 12 C pz + 5 -0.318675 1 C pz 10 0.318675 2 C pz + 51 0.306666 15 C pz 56 -0.306666 16 C pz + + Vector 33 Occ=2.000000D+00 E=-3.151268D-01 Symmetry=au + MO Center= 2.5D-14, -1.7D-14, -1.9D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.426295 15 C pz 56 0.426295 16 C pz + 39 0.415175 11 C pz 44 0.415175 12 C pz + 15 -0.164508 3 C pz 20 -0.164508 4 C pz + 25 -0.164934 5 C pz 30 -0.164934 6 C pz + + Vector 34 Occ=2.000000D+00 E=-2.783651D-01 Symmetry=bg + MO Center= -2.6D-14, 3.6D-15, 4.0D-17, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.459816 3 C pz 20 -0.459816 4 C pz + 25 0.461493 5 C pz 30 -0.461493 6 C pz + + Vector 35 Occ=2.000000D+00 E=-2.221904D-01 Symmetry=bg + MO Center= -3.5D-17, -3.9D-15, 1.2D-17, r^2= 7.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.417993 1 C pz 10 -0.417993 2 C pz + 51 0.358184 15 C pz 56 -0.358184 16 C pz + 15 0.231889 3 C pz 20 -0.231889 4 C pz + 25 -0.232000 5 C pz 30 0.232000 6 C pz + 39 0.218349 11 C pz 44 -0.218349 12 C pz + + Vector 36 Occ=0.000000D+00 E= 1.989924D-01 Symmetry=au + MO Center= -1.1D-16, -5.3D-14, 1.3D-16, r^2= 7.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.471534 1 C pz 10 0.471534 2 C pz + 51 -0.414928 15 C pz 56 -0.414928 16 C pz + 25 -0.278569 5 C pz 30 -0.278569 6 C pz + 15 -0.249973 3 C pz 20 -0.249973 4 C pz + 39 0.246934 11 C pz 44 0.246934 12 C pz + + Vector 37 Occ=0.000000D+00 E= 2.685138D-01 Symmetry=au + MO Center= 2.3D-16, -2.0D-16, 2.1D-19, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.578558 3 C pz 20 0.578558 4 C pz + 25 -0.558106 5 C pz 30 -0.558106 6 C pz + + Vector 38 Occ=0.000000D+00 E= 3.088252D-01 Symmetry=bg + MO Center= 1.7D-16, 5.5D-14, 1.9D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.531237 15 C pz 56 0.531237 16 C pz + 39 0.524391 11 C pz 44 -0.524391 12 C pz + 15 0.225543 3 C pz 20 -0.225543 4 C pz + 25 -0.220434 5 C pz 30 0.220434 6 C pz + + Vector 39 Occ=0.000000D+00 E= 3.970770D-01 Symmetry=au + MO Center= 4.2D-17, -2.7D-15, 5.5D-18, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.535070 11 C pz 44 0.535070 12 C pz + 5 -0.473494 1 C pz 10 -0.473494 2 C pz + 51 -0.407351 15 C pz 56 -0.407351 16 C pz + 25 0.186775 5 C pz 30 0.186775 6 C pz + 15 0.161862 3 C pz 20 0.161862 4 C pz + + Vector 40 Occ=0.000000D+00 E= 5.217566D-01 Symmetry=bg + MO Center= 9.7D-17, 1.8D-16, 2.6D-17, r^2= 3.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.538711 1 C pz 10 -0.538711 2 C pz + 15 -0.469482 3 C pz 20 0.469482 4 C pz + 25 0.471487 5 C pz 30 -0.471487 6 C pz + 39 0.278750 11 C pz 44 -0.278750 12 C pz + 51 -0.158475 15 C pz 56 0.158475 16 C pz + + Vector 41 Occ=0.000000D+00 E= 5.650160D-01 Symmetry=ag + MO Center= 3.8D-15, -4.1D-14, 1.8D-17, r^2= 8.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.434798 9 H s 34 0.434798 10 H s + 31 0.420942 7 H s 32 0.420942 8 H s + 2 -0.380055 1 C s 7 -0.380055 2 C s + 59 0.353828 19 H s 60 0.353828 20 H s + 38 0.323940 11 C py 43 -0.323940 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.755620D-01 Symmetry=bu + MO Center= 3.3D-15, 5.1D-15, -3.4D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.448702 13 H s 46 -0.448702 14 H s + 13 0.355546 3 C px 18 0.355546 4 C px + 37 0.350909 11 C px 42 0.350909 12 C px + 57 -0.321562 17 H s 58 0.321562 18 H s + 31 -0.318904 7 H s 32 0.318904 8 H s + + Vector 43 Occ=0.000000D+00 E= 6.215596D-01 Symmetry=ag + MO Center= 5.3D-15, -1.2D-15, -4.4D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.589566 13 H s 46 0.589566 14 H s + 12 0.397886 3 C s 17 0.397886 4 C s + 36 -0.394579 11 C s 41 -0.394579 12 C s + 57 -0.381363 17 H s 58 -0.381363 18 H s + 37 0.350692 11 C px 42 -0.350692 12 C px + + Vector 44 Occ=0.000000D+00 E= 6.258003D-01 Symmetry=bu + MO Center= -8.2D-15, 2.4D-14, 7.5D-17, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.529760 11 C s 41 -0.529760 12 C s + 4 0.453566 1 C py 9 0.453566 2 C py + 33 0.408895 9 H s 34 -0.408895 10 H s + 59 0.389457 19 H s 60 -0.389457 20 H s + 48 -0.337620 15 C s 53 0.337620 16 C s + + Vector 45 Occ=0.000000D+00 E= 6.582325D-01 Symmetry=ag + MO Center= -8.6D-16, 6.2D-15, -8.0D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.683576 15 C s 53 0.683576 16 C s + 22 0.582877 5 C s 27 0.582877 6 C s + 57 -0.541814 17 H s 58 -0.541814 18 H s + 12 -0.457382 3 C s 17 -0.457382 4 C s + 59 -0.330810 19 H s 60 -0.330810 20 H s + + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2631.731379210404 0.000000000000 0.000000000000 + 0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678692 + + Mulliken analysis of the total density + -------------------------------------- + + Atom Charge Shell Charges + ----------- ------ ------------------------------------------------------- + 1 C 6 6.00 1.99 1.14 2.87 + 2 C 6 6.00 1.99 1.14 2.87 + 3 C 6 6.06 1.99 1.15 2.92 + 4 C 6 6.06 1.99 1.15 2.92 + 5 C 6 6.06 1.99 1.15 2.92 + 6 C 6 6.06 1.99 1.15 2.92 + 7 H 1 0.94 0.94 + 8 H 1 0.94 0.94 + 9 H 1 0.94 0.94 + 10 H 1 0.94 0.94 + 11 C 6 6.06 1.99 1.15 2.91 + 12 C 6 6.06 1.99 1.15 2.91 + 13 H 1 0.94 0.94 + 14 H 1 0.94 0.94 + 15 C 6 6.12 1.99 1.16 2.97 + 16 C 6 6.12 1.99 1.16 2.97 + 17 H 1 0.94 0.94 + 18 H 1 0.94 0.94 + 19 H 1 0.94 0.94 + 20 H 1 0.94 0.94 + + Multipole analysis of the density wrt the origin + ------------------------------------------------ + + L x y z total open nuclear + - - - - ----- ---- ------- + 0 0 0 0 -0.000000 0.000000 70.000000 + + 1 1 0 0 -0.000000 0.000000 0.000000 + 1 0 1 0 -0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 + + 2 2 0 0 -38.360869 0.000000 244.795872 + 2 1 1 0 0.065434 0.000000 -5.631027 + 2 1 0 1 0.000000 0.000000 0.000000 + 2 0 2 0 -39.006221 0.000000 1496.963300 + 2 0 1 1 0.000000 0.000000 0.000000 + 2 0 0 2 -43.564269 0.000000 0.000000 + + + Parallel integral file used 8 records with 0 large values + + NWChem Gradients Module + ----------------------- + + + Divinylbenzene in STO-3G basis set + + + wavefunction = RHF + + Using symmetry + + + RHF ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.447498 2.672387 0.000000 0.004027 0.024725 0.000000 + 2 C -0.447498 -2.672387 0.000000 -0.004027 -0.024725 0.000000 + 3 C 2.488298 0.924096 0.000000 0.014289 0.002868 0.000000 + 4 C -2.488298 -0.924096 0.000000 -0.014289 -0.002868 0.000000 + 5 C 2.053751 -1.690315 0.000000 0.013557 -0.005635 0.000000 + 6 C -2.053751 1.690315 0.000000 -0.013557 0.005635 0.000000 + 7 H 4.436703 1.641481 0.000000 0.013098 0.004960 0.000000 + 8 H -4.436703 -1.641481 0.000000 -0.013098 -0.004960 0.000000 + 9 H 3.661612 -2.998879 0.000000 0.009782 -0.009902 0.000000 + 10 H -3.661612 2.998879 0.000000 -0.009782 0.009902 0.000000 + 11 C -1.010073 -5.446433 0.000000 -0.017299 0.032961 0.000000 + 12 C 1.010073 5.446433 0.000000 0.017299 -0.032961 0.000000 + 13 H -3.035954 -5.920309 0.000000 -0.014124 -0.003179 0.000000 + 14 H 3.035954 5.920309 0.000000 0.014124 0.003179 0.000000 + 15 C 0.688224 -7.335500 0.000000 0.020904 -0.024090 0.000000 + 16 C -0.688224 7.335500 0.000000 -0.020904 0.024090 0.000000 + 17 H 2.731087 -6.994712 0.000000 0.013533 0.003314 0.000000 + 18 H -2.731087 6.994712 0.000000 -0.013533 -0.003314 0.000000 + 19 H 0.090997 -9.319983 0.000000 -0.003965 -0.013248 0.000000 + 20 H -0.090997 9.319983 0.000000 0.003965 0.013248 0.000000 + + ---------------------------------------- + | Time | 1-e(secs) | 2-e(secs) | + ---------------------------------------- + | CPU | 0.02 | 2.59 | + ---------------------------------------- + | WALL | 0.02 | 2.59 | + ---------------------------------------- + +@ Step Energy Delta E Gmax Grms Xrms Xmax Walltime +@ ---- ---------------- -------- -------- -------- -------- -------- -------- +@ 0 -379.76896249 0.0D+00 0.04567 0.01110 0.00000 0.00000 6.1 + + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value Gradient + ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- + 1 Stretch 1 3 1.42204 0.02930 + 2 Stretch 1 6 1.42197 0.02981 + 3 Stretch 1 12 1.49784 0.00435 + 4 Stretch 2 4 1.42204 0.02930 + 5 Stretch 2 5 1.42197 0.02981 + 6 Stretch 2 11 1.49784 0.00435 + 7 Stretch 3 5 1.40247 0.02655 + 8 Stretch 3 7 1.09872 0.01401 + 9 Stretch 4 6 1.40247 0.02655 + 10 Stretch 4 8 1.09872 0.01401 + 11 Stretch 5 9 1.09701 0.01384 + 12 Stretch 6 10 1.09701 0.01384 + 13 Stretch 11 13 1.10099 0.01448 + 14 Stretch 11 15 1.34423 0.04567 + 15 Stretch 12 14 1.10099 0.01448 + 16 Stretch 12 16 1.34423 0.04567 + 17 Stretch 15 17 1.09597 0.01389 + 18 Stretch 15 19 1.09667 0.01383 + 19 Stretch 16 18 1.09597 0.01389 + 20 Stretch 16 20 1.09667 0.01383 + 21 Bend 1 3 5 121.14867 -0.00062 + 22 Bend 1 3 7 119.20109 0.00024 + 23 Bend 1 6 4 120.87358 0.00003 + 24 Bend 1 6 10 119.42285 -0.00084 + 25 Bend 1 12 14 114.62953 0.00026 + 26 Bend 1 12 16 126.57992 -0.00066 + 27 Bend 2 4 6 121.14867 -0.00062 + 28 Bend 2 4 8 119.20109 0.00024 + 29 Bend 2 5 3 120.87358 0.00003 + 30 Bend 2 5 9 119.42285 -0.00084 + 31 Bend 2 11 13 114.62953 0.00026 + 32 Bend 2 11 15 126.57992 -0.00066 + 33 Bend 3 1 6 117.97776 0.00059 + 34 Bend 3 1 12 119.12155 0.00010 + 35 Bend 3 5 9 119.70357 0.00081 + 36 Bend 4 2 5 117.97776 0.00059 + 37 Bend 4 2 11 119.12155 0.00010 + 38 Bend 4 6 10 119.70357 0.00081 + 39 Bend 5 2 11 122.90069 -0.00069 + 40 Bend 5 3 7 119.65024 0.00038 + 41 Bend 6 1 12 122.90069 -0.00069 + 42 Bend 6 4 8 119.65024 0.00038 + 43 Bend 11 15 17 122.48517 -0.00077 + 44 Bend 11 15 19 121.29492 0.00040 + 45 Bend 12 16 18 122.48517 -0.00077 + 46 Bend 12 16 20 121.29492 0.00040 + 47 Bend 13 11 15 118.79054 0.00039 + 48 Bend 14 12 16 118.79054 0.00039 + 49 Bend 17 15 19 116.21990 0.00037 + 50 Bend 18 16 20 116.21990 0.00037 + 51 Torsion 1 3 5 2 0.00000 -0.00000 + 52 Torsion 1 3 5 9 180.00000 0.00000 + 53 Torsion 1 6 4 2 0.00000 -0.00000 + 54 Torsion 1 6 4 8 180.00000 -0.00000 + 55 Torsion 1 12 16 18 0.00000 0.00000 + 56 Torsion 1 12 16 20 180.00000 0.00000 + 57 Torsion 2 4 6 10 180.00000 0.00000 + 58 Torsion 2 5 3 7 180.00000 -0.00000 + 59 Torsion 2 11 15 17 0.00000 -0.00000 + 60 Torsion 2 11 15 19 180.00000 -0.00000 + 61 Torsion 3 1 6 4 0.00000 0.00000 + 62 Torsion 3 1 6 10 180.00000 0.00000 + 63 Torsion 3 1 12 14 0.00000 -0.00000 + 64 Torsion 3 1 12 16 180.00000 -0.00000 + 65 Torsion 3 5 2 4 0.00000 0.00000 + 66 Torsion 3 5 2 11 180.00000 0.00000 + 67 Torsion 4 2 5 9 180.00000 0.00000 + 68 Torsion 4 2 11 13 0.00000 -0.00000 + 69 Torsion 4 2 11 15 180.00000 0.00000 + 70 Torsion 4 6 1 12 180.00000 0.00000 + 71 Torsion 5 2 4 6 -0.00000 -0.00000 + 72 Torsion 5 2 4 8 180.00000 -0.00000 + 73 Torsion 5 2 11 13 180.00000 -0.00000 + 74 Torsion 5 2 11 15 0.00000 0.00000 + 75 Torsion 5 3 1 6 0.00000 -0.00000 + 76 Torsion 5 3 1 12 180.00000 -0.00000 + 77 Torsion 6 1 3 7 180.00000 -0.00000 + 78 Torsion 6 1 12 14 180.00000 0.00000 + 79 Torsion 6 1 12 16 0.00000 -0.00000 + 80 Torsion 6 4 2 11 180.00000 -0.00000 + 81 Torsion 7 3 1 12 -0.00000 -0.00000 + 82 Torsion 7 3 5 9 0.00000 0.00000 + 83 Torsion 8 4 2 11 -0.00000 -0.00000 + 84 Torsion 8 4 6 10 0.00000 -0.00000 + 85 Torsion 9 5 2 11 0.00000 0.00000 + 86 Torsion 10 6 1 12 0.00000 0.00000 + 87 Torsion 13 11 15 17 180.00000 0.00000 + 88 Torsion 13 11 15 19 -0.00000 -0.00000 + 89 Torsion 14 12 16 18 180.00000 -0.00000 + 90 Torsion 14 12 16 20 -0.00000 -0.00000 + + NWChem SCF Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + ao basis = "ao basis" + functions = 60 + atoms = 20 + closed shells = 35 + open shells = 0 + charge = 0.00 + wavefunction = RHF + input vectors = ./dvb.movecs + output vectors = ./dvb.movecs + use symmetry = T + symmetry adapt = T + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + + Forming initial guess at 6.4s + + + Loading old vectors from job with title : + +Divinylbenzene in STO-3G basis set + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 ag 44 bu 45 ag + + + Starting SCF solution at 6.4s + + + + ---------------------------------------------- + Quadratically convergent ROHF + + Convergence threshold : 1.000E-04 + Maximum no. of iterations : 30 + Final Fock-matrix accuracy: 1.000E-07 + ---------------------------------------------- + + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.181D+05 #integrals = 3.546D+05 #direct = 0.0% #cached =100.0% + + + iter energy gnorm gmax time + ----- ------------------- --------- --------- -------- + 1 -379.7748618921 1.31D-01 2.55D-02 7.2 + 2 -379.7762734271 4.43D-03 1.54D-03 7.2 + 3 -379.7762753195 1.05D-05 2.95D-06 7.3 + + + Final RHF results + ------------------ + + Total SCF energy = -379.776275319550 + One-electron energy = -1417.333828549438 + Two-electron energy = 582.747774644508 + Nuclear repulsion energy = 454.809778585381 + + Time for solution = 1.9s + + + + Symmetry analysis of molecular orbitals - final + ----------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + Final eigenvalues + ----------------- + + 1 + 1 -11.0410 + 2 -11.0410 + 3 -11.0326 + 4 -11.0326 + 5 -11.0290 + 6 -11.0289 + 7 -11.0283 + 8 -11.0283 + 9 -11.0181 + 10 -11.0181 + 11 -1.1129 + 12 -1.0374 + 13 -0.9952 + 14 -0.9651 + 15 -0.9279 + 16 -0.8091 + 17 -0.7744 + 18 -0.7344 + 19 -0.7104 + 20 -0.6443 + 21 -0.6199 + 22 -0.5793 + 23 -0.5678 + 24 -0.5672 + 25 -0.5354 + 26 -0.5110 + 27 -0.4999 + 28 -0.4825 + 29 -0.4498 + 30 -0.4272 + 31 -0.4197 + 32 -0.3918 + 33 -0.3326 + 34 -0.2889 + 35 -0.2369 + 36 0.2094 + 37 0.2756 + 38 0.3236 + 39 0.4108 + 40 0.5437 + 41 0.5713 + 42 0.5855 + 43 0.6360 + 44 0.6402 + 45 0.6893 + + ROHF Final Molecular Orbital Analysis + ------------------------------------- + + Vector 11 Occ=2.000000D+00 E=-1.112882D+00 Symmetry=ag + MO Center= -1.4D-16, -6.9D-16, -1.9D-17, r^2= 2.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.269208 1 C s 7 0.269208 2 C s + 12 0.244670 3 C s 17 0.244670 4 C s + 22 0.244603 5 C s 27 0.244603 6 C s + + Vector 12 Occ=2.000000D+00 E=-1.037372D+00 Symmetry=bu + MO Center= 1.9D-16, 4.4D-16, 4.0D-34, r^2= 8.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.295138 11 C s 41 -0.295138 12 C s + 2 -0.259768 1 C s 7 0.259768 2 C s + 48 0.218845 15 C s 53 -0.218845 16 C s + + Vector 13 Occ=2.000000D+00 E=-9.952245D-01 Symmetry=ag + MO Center= -5.2D-16, -1.2D-14, -9.4D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.311306 11 C s 41 0.311306 12 C s + 48 0.307950 15 C s 53 0.307950 16 C s + + Vector 14 Occ=2.000000D+00 E=-9.651398D-01 Symmetry=bu + MO Center= 1.6D-15, 6.3D-16, 8.5D-20, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.353451 3 C s 17 -0.353451 4 C s + 22 0.318884 5 C s 27 -0.318884 6 C s + + Vector 15 Occ=2.000000D+00 E=-9.279313D-01 Symmetry=bu + MO Center= -4.3D-17, 1.2D-14, -2.7D-19, r^2= 8.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.282481 1 C s 7 -0.282481 2 C s + 48 0.276987 15 C s 53 -0.276987 16 C s + 22 -0.202273 5 C s 27 0.202273 6 C s + + Vector 16 Occ=2.000000D+00 E=-8.091041D-01 Symmetry=ag + MO Center= -2.9D-16, -2.2D-15, 3.2D-17, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.234910 5 C s 27 0.234910 6 C s + 48 0.220781 15 C s 53 0.220781 16 C s + 2 -0.206261 1 C s 7 -0.206261 2 C s + 14 -0.170154 3 C py 19 0.170154 4 C py + 36 -0.154355 11 C s 41 -0.154355 12 C s + + Vector 17 Occ=2.000000D+00 E=-7.743983D-01 Symmetry=ag + MO Center= 4.5D-17, -3.0D-16, 4.6D-20, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.317021 3 C s 17 0.317021 4 C s + 3 0.188321 1 C px 8 -0.188321 2 C px + 24 0.176341 5 C py 29 -0.176341 6 C py + 31 0.171236 7 H s 32 0.171236 8 H s + 2 -0.164741 1 C s 7 -0.164741 2 C s + + Vector 18 Occ=2.000000D+00 E=-7.344205D-01 Symmetry=bu + MO Center= -1.1D-15, 4.5D-15, -8.9D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.290969 11 C s 41 -0.290969 12 C s + 48 -0.246144 15 C s 53 0.246144 16 C s + 45 0.178361 13 H s 46 -0.178361 14 H s + 57 -0.167691 17 H s 58 0.167691 18 H s + + Vector 19 Occ=2.000000D+00 E=-7.104278D-01 Symmetry=ag + MO Center= 4.9D-17, 6.8D-16, -7.0D-18, r^2= 7.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.196161 5 C px 28 -0.196161 6 C px + 13 0.179653 3 C px 18 -0.179653 4 C px + 36 0.177733 11 C s 41 0.177733 12 C s + 33 0.172262 9 H s 34 0.172262 10 H s + 48 -0.164476 15 C s 53 -0.164476 16 C s + + Vector 20 Occ=2.000000D+00 E=-6.443392D-01 Symmetry=ag + MO Center= 1.7D-18, -2.8D-15, 3.2D-32, r^2= 9.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.213190 15 C px 54 -0.213190 16 C px + 57 0.184226 17 H s 58 0.184226 18 H s + 38 0.181662 11 C py 43 -0.181662 12 C py + 45 -0.154937 13 H s 46 -0.154937 14 H s + + Vector 21 Occ=2.000000D+00 E=-6.199387D-01 Symmetry=bu + MO Center= 1.2D-16, -7.8D-16, 1.2D-19, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.220074 15 C py 55 0.220074 16 C py + 37 0.215033 11 C px 42 0.215033 12 C px + 59 -0.191409 19 H s 60 0.191409 20 H s + 14 0.187232 3 C py 19 0.187232 4 C py + 45 -0.152494 13 H s 46 0.152494 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.793122D-01 Symmetry=bu + MO Center= -1.5D-16, 5.5D-16, -1.7D-33, r^2= 6.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.231891 7 H s 32 0.231891 8 H s + 33 0.229552 9 H s 34 -0.229552 10 H s + 13 -0.225887 3 C px 18 -0.225887 4 C px + 2 0.216463 1 C s 7 -0.216463 2 C s + 24 -0.182315 5 C py 29 -0.182315 6 C py + + Vector 23 Occ=2.000000D+00 E=-5.678303D-01 Symmetry=bu + MO Center= 4.4D-16, -3.5D-17, -2.7D-34, r^2= 8.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.263822 5 C px 28 0.263822 6 C px + 49 0.239263 15 C px 54 0.239263 16 C px + 3 -0.212620 1 C px 8 -0.212620 2 C px + 57 0.208200 17 H s 58 -0.208200 18 H s + 38 0.165458 11 C py 43 0.165458 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.671700D-01 Symmetry=ag + MO Center= 2.4D-16, 3.3D-16, 1.7D-19, r^2= 1.4D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.338831 15 C py 55 -0.338831 16 C py + 59 -0.264253 19 H s 60 -0.264253 20 H s + 37 0.251898 11 C px 42 -0.251898 12 C px + 45 -0.150250 13 H s 46 -0.150250 14 H s + + Vector 25 Occ=2.000000D+00 E=-5.353823D-01 Symmetry=bu + MO Center= 4.2D-16, -1.5D-16, -3.7D-34, r^2= 4.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.305394 3 C px 18 0.305394 4 C px + 31 0.255751 7 H s 32 -0.255751 8 H s + 24 -0.226924 5 C py 29 -0.226924 6 C py + 33 0.221333 9 H s 34 -0.221333 10 H s + 23 0.190033 5 C px 28 0.190033 6 C px + + Vector 26 Occ=2.000000D+00 E=-5.109593D-01 Symmetry=bu + MO Center= 2.8D-16, -4.2D-16, 1.7D-18, r^2= 8.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.238524 15 C py 55 -0.238524 16 C py + 14 0.224090 3 C py 19 0.224090 4 C py + 37 -0.211446 11 C px 42 -0.211446 12 C px + 38 0.189318 11 C py 43 0.189318 12 C py + 24 -0.187936 5 C py 29 -0.187936 6 C py + + Vector 27 Occ=2.000000D+00 E=-4.999291D-01 Symmetry=ag + MO Center= 1.4D-16, 2.2D-16, 1.7D-32, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.295481 15 C px 54 -0.295481 16 C px + 57 0.266195 17 H s 58 0.266195 18 H s + 37 -0.207571 11 C px 42 0.207571 12 C px + 45 0.202723 13 H s 46 0.202723 14 H s + 31 -0.157618 7 H s 32 -0.157618 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.825205D-01 Symmetry=au + MO Center= 8.1D-16, 2.3D-16, 2.6D-17, r^2= 3.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.327346 1 C pz 10 0.327346 2 C pz + 15 0.301133 3 C pz 20 0.301133 4 C pz + 25 0.300387 5 C pz 30 0.300387 6 C pz + 39 0.158733 11 C pz 44 0.158733 12 C pz + + Vector 29 Occ=2.000000D+00 E=-4.498212D-01 Symmetry=bu + MO Center= -4.4D-16, -1.4D-15, -5.4D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.255796 13 H s 46 -0.255796 14 H s + 4 0.249021 1 C py 9 0.249021 2 C py + 57 0.228910 17 H s 58 -0.228910 18 H s + 59 -0.219992 19 H s 60 0.219992 20 H s + 37 -0.213163 11 C px 42 -0.213163 12 C px + + Vector 30 Occ=2.000000D+00 E=-4.271955D-01 Symmetry=ag + MO Center= 1.8D-16, 9.0D-16, -4.4D-20, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.283130 9 H s 34 0.283130 10 H s + 3 0.246825 1 C px 8 -0.246825 2 C px + 13 -0.223077 3 C px 14 0.223833 3 C py + 18 0.223077 4 C px 19 -0.223833 4 C py + 4 -0.206631 1 C py 9 0.206631 2 C py + + Vector 31 Occ=2.000000D+00 E=-4.196949D-01 Symmetry=ag + MO Center= 1.4D-17, -2.2D-16, -8.7D-20, r^2= 7.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.221798 7 H s 32 -0.221798 8 H s + 23 0.214883 5 C px 28 -0.214883 6 C px + 3 0.211634 1 C px 8 -0.211634 2 C px + 38 0.211266 11 C py 43 -0.211266 12 C py + 4 0.207382 1 C py 9 -0.207382 2 C py + + Vector 32 Occ=2.000000D+00 E=-3.918082D-01 Symmetry=bg + MO Center= -1.4D-16, 1.8D-14, 5.1D-17, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.382322 11 C pz 44 -0.382322 12 C pz + 51 0.312795 15 C pz 56 -0.312795 16 C pz + 5 -0.307787 1 C pz 10 0.307787 2 C pz + + Vector 33 Occ=2.000000D+00 E=-3.326113D-01 Symmetry=au + MO Center= -5.3D-16, -1.7D-14, 3.3D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.425147 15 C pz 56 0.425147 16 C pz + 39 0.413865 11 C pz 44 0.413865 12 C pz + 15 -0.158101 3 C pz 20 -0.158101 4 C pz + 25 -0.158298 5 C pz 30 -0.158298 6 C pz + + Vector 34 Occ=2.000000D+00 E=-2.888756D-01 Symmetry=bg + MO Center= -6.7D-16, 1.1D-16, -2.2D-18, r^2= 2.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.458389 3 C pz 20 -0.458389 4 C pz + 25 0.460584 5 C pz 30 -0.460584 6 C pz + + Vector 35 Occ=2.000000D+00 E=-2.369262D-01 Symmetry=bg + MO Center= -3.5D-17, -1.1D-16, -1.2D-18, r^2= 6.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.423794 1 C pz 10 -0.423794 2 C pz + 51 0.346423 15 C pz 56 -0.346423 16 C pz + 15 0.234718 3 C pz 20 -0.234718 4 C pz + 25 -0.232696 5 C pz 30 0.232696 6 C pz + 39 0.213480 11 C pz 44 -0.213480 12 C pz + + Vector 36 Occ=0.000000D+00 E= 2.093710D-01 Symmetry=au + MO Center= 5.6D-17, 3.3D-16, -2.5D-17, r^2= 6.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.484082 1 C pz 10 0.484082 2 C pz + 51 -0.408610 15 C pz 56 -0.408610 16 C pz + 25 -0.287531 5 C pz 30 -0.287531 6 C pz + 15 -0.250347 3 C pz 20 -0.250347 4 C pz + 39 0.247928 11 C pz 44 0.247928 12 C pz + + Vector 37 Occ=0.000000D+00 E= 2.756091D-01 Symmetry=au + MO Center= 1.8D-16, 1.9D-16, -1.0D-18, r^2= 2.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.586151 3 C pz 20 0.586151 4 C pz + 25 -0.560437 5 C pz 30 -0.560437 6 C pz + + Vector 38 Occ=0.000000D+00 E= 3.235711D-01 Symmetry=bg + MO Center= 9.7D-17, 1.5D-33, 2.4D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.540074 15 C pz 56 0.540074 16 C pz + 39 0.534050 11 C pz 44 -0.534050 12 C pz + 15 0.222855 3 C pz 20 -0.222855 4 C pz + 25 -0.216781 5 C pz 30 0.216781 6 C pz + + Vector 39 Occ=0.000000D+00 E= 4.108093D-01 Symmetry=au + MO Center= 9.7D-17, 1.1D-16, 2.7D-18, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.543406 11 C pz 44 0.543406 12 C pz + 5 -0.470017 1 C pz 10 -0.470017 2 C pz + 51 -0.421994 15 C pz 56 -0.421994 16 C pz + 25 0.189103 5 C pz 30 0.189103 6 C pz + 15 0.160155 3 C pz 20 0.160155 4 C pz + + Vector 40 Occ=0.000000D+00 E= 5.436774D-01 Symmetry=bg + MO Center= 2.8D-16, 1.4D-17, 2.3D-17, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.547533 1 C pz 10 -0.547533 2 C pz + 25 0.481659 5 C pz 30 -0.481659 6 C pz + 15 -0.479259 3 C pz 20 0.479259 4 C pz + 39 0.276511 11 C pz 44 -0.276511 12 C pz + 51 -0.160420 15 C pz 56 0.160420 16 C pz + + Vector 41 Occ=0.000000D+00 E= 5.712954D-01 Symmetry=ag + MO Center= -6.3D-17, 5.6D-17, 2.4D-19, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.419261 7 H s 32 -0.419261 8 H s + 33 -0.414182 9 H s 34 -0.414182 10 H s + 2 0.403086 1 C s 7 0.403086 2 C s + 38 -0.355076 11 C py 43 0.355076 12 C py + 59 -0.353224 19 H s 60 -0.353224 20 H s + + Vector 42 Occ=0.000000D+00 E= 5.854633D-01 Symmetry=bu + MO Center= -1.3D-17, -7.8D-16, -2.5D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.434963 13 H s 46 -0.434963 14 H s + 37 0.355509 11 C px 42 0.355509 12 C px + 13 0.340128 3 C px 18 0.340128 4 C px + 57 -0.339277 17 H s 58 0.339277 18 H s + 59 0.324263 19 H s 60 -0.324263 20 H s + + Vector 43 Occ=0.000000D+00 E= 6.360470D-01 Symmetry=bu + MO Center= 1.4D-15, -4.9D-15, -2.4D-18, r^2= 6.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.523629 11 C s 41 -0.523629 12 C s + 33 0.469341 9 H s 34 -0.469341 10 H s + 4 0.459158 1 C py 9 0.459158 2 C py + 24 0.330909 5 C py 29 0.330909 6 C py + 38 0.329900 11 C py 43 0.329900 12 C py + + Vector 44 Occ=0.000000D+00 E= 6.401696D-01 Symmetry=ag + MO Center= 2.6D-16, 1.5D-15, 5.2D-20, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.590073 13 H s 46 0.590073 14 H s + 36 -0.414477 11 C s 41 -0.414477 12 C s + 12 0.387070 3 C s 17 0.387070 4 C s + 57 -0.382092 17 H s 58 -0.382092 18 H s + 37 0.341848 11 C px 42 -0.341848 12 C px + + Vector 45 Occ=0.000000D+00 E= 6.892918D-01 Symmetry=ag + MO Center= -2.3D-15, 3.0D-15, 9.8D-19, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.725345 15 C s 53 0.725345 16 C s + 22 0.571387 5 C s 27 0.571387 6 C s + 57 -0.568657 17 H s 58 -0.568657 18 H s + 12 -0.386330 3 C s 17 -0.386330 4 C s + 59 -0.382906 19 H s 60 -0.382906 20 H s + + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2550.714209090369 -3.559875766040 0.000000000000 + -3.559875766040 370.755023624029 0.000000000000 + 0.000000000000 0.000000000000 2921.469232714398 + + Mulliken analysis of the total density + -------------------------------------- + + Atom Charge Shell Charges + ----------- ------ ------------------------------------------------------- + 1 C 6 6.00 1.99 1.12 2.89 + 2 C 6 6.00 1.99 1.12 2.89 + 3 C 6 6.06 1.99 1.13 2.94 + 4 C 6 6.06 1.99 1.13 2.94 + 5 C 6 6.07 1.99 1.13 2.95 + 6 C 6 6.07 1.99 1.13 2.95 + 7 H 1 0.94 0.94 + 8 H 1 0.94 0.94 + 9 H 1 0.94 0.94 + 10 H 1 0.94 0.94 + 11 C 6 6.06 1.99 1.13 2.93 + 12 C 6 6.06 1.99 1.13 2.93 + 13 H 1 0.94 0.94 + 14 H 1 0.94 0.94 + 15 C 6 6.13 1.99 1.14 3.00 + 16 C 6 6.13 1.99 1.14 3.00 + 17 H 1 0.94 0.94 + 18 H 1 0.94 0.94 + 19 H 1 0.93 0.93 + 20 H 1 0.93 0.93 + + Multipole analysis of the density wrt the origin + ------------------------------------------------ + + L x y z total open nuclear + - - - - ----- ---- ------- + 0 0 0 0 -0.000000 0.000000 70.000000 + + 1 1 0 0 -0.000000 0.000000 0.000000 + 1 0 1 0 0.000000 0.000000 0.000000 + 1 0 0 1 -0.000000 0.000000 0.000000 + + 2 2 0 0 -38.561828 0.000000 232.574759 + 2 1 1 0 0.160630 0.000000 -3.149223 + 2 1 0 1 0.000000 0.000000 0.000000 + 2 0 2 0 -39.205441 0.000000 1450.712898 + 2 0 1 1 0.000000 0.000000 0.000000 + 2 0 0 2 -43.390250 0.000000 0.000000 + + + Parallel integral file used 9 records with 0 large values + + Line search: + step= 1.00 grad=-2.5D-02 hess= 1.7D-02 energy= -379.776275 mode=downhill + new step= 0.71 predicted energy= -379.777719 + + -------- + Step 1 + -------- + + + Geometry "geometry" -> "geometry" + --------------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.22724160 1.39423547 0.00000000 + 2 C 6.0000 -0.22724160 -1.39423547 0.00000000 + 3 C 6.0000 1.29011222 0.48657547 0.00000000 + 4 C 6.0000 -1.29011222 -0.48657547 0.00000000 + 5 C 6.0000 1.07074764 -0.87712132 0.00000000 + 6 C 6.0000 -1.07074764 0.87712132 0.00000000 + 7 H 1.0000 2.30553944 0.86382557 0.00000000 + 8 H 1.0000 -2.30553944 -0.86382557 0.00000000 + 9 H 1.0000 1.91688216 -1.55112898 0.00000000 + 10 H 1.0000 -1.91688216 1.55112898 0.00000000 + 11 C 6.0000 -0.52266455 -2.85838895 0.00000000 + 12 C 6.0000 0.52266455 2.85838895 0.00000000 + 13 H 1.0000 -1.57920566 -3.10490067 0.00000000 + 14 H 1.0000 1.57920566 3.10490067 0.00000000 + 15 C 6.0000 0.35138416 -3.83632320 0.00000000 + 16 C 6.0000 -0.35138416 3.83632320 0.00000000 + 17 H 1.0000 1.41873631 -3.66698090 0.00000000 + 18 H 1.0000 -1.41873631 3.66698090 0.00000000 + 19 H 1.0000 0.03422255 -4.87021677 0.00000000 + 20 H 1.0000 -0.03422255 4.87021677 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 452.2054316873 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + NWChem SCF Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + ao basis = "ao basis" + functions = 60 + atoms = 20 + closed shells = 35 + open shells = 0 + charge = 0.00 + wavefunction = RHF + input vectors = ./dvb.movecs + output vectors = ./dvb.movecs + use symmetry = T + symmetry adapt = T + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + + Forming initial guess at 8.7s + + + Loading old vectors from job with title : + +Divinylbenzene in STO-3G basis set + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + + Starting SCF solution at 8.8s + + + + ---------------------------------------------- + Quadratically convergent ROHF + + Convergence threshold : 1.000E-04 + Maximum no. of iterations : 30 + Final Fock-matrix accuracy: 1.000E-07 + ---------------------------------------------- + + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.173D+05 #integrals = 3.524D+05 #direct = 0.0% #cached =100.0% + + + iter energy gnorm gmax time + ----- ------------------- --------- --------- -------- + 1 -379.7777487685 3.88D-02 7.83D-03 9.2 + 2 -379.7778715357 1.39D-03 4.68D-04 9.3 + 3 -379.7778717199 3.65D-06 1.11D-06 9.4 + + + Final RHF results + ------------------ + + Total SCF energy = -379.777871719881 + One-electron energy = -1412.318633962046 + Two-electron energy = 580.335330554840 + Nuclear repulsion energy = 452.205431687324 + + Time for solution = 1.9s + + + + Symmetry analysis of molecular orbitals - final + ----------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + Final eigenvalues + ----------------- + + 1 + 1 -11.0409 + 2 -11.0408 + 3 -11.0322 + 4 -11.0322 + 5 -11.0290 + 6 -11.0288 + 7 -11.0284 + 8 -11.0284 + 9 -11.0179 + 10 -11.0179 + 11 -1.1062 + 12 -1.0323 + 13 -0.9893 + 14 -0.9608 + 15 -0.9226 + 16 -0.8064 + 17 -0.7710 + 18 -0.7324 + 19 -0.7064 + 20 -0.6396 + 21 -0.6157 + 22 -0.5775 + 23 -0.5637 + 24 -0.5631 + 25 -0.5325 + 26 -0.5068 + 27 -0.4978 + 28 -0.4770 + 29 -0.4489 + 30 -0.4255 + 31 -0.4187 + 32 -0.3874 + 33 -0.3274 + 34 -0.2858 + 35 -0.2326 + 36 0.2063 + 37 0.2735 + 38 0.3192 + 39 0.4067 + 40 0.5372 + 41 0.5696 + 42 0.5828 + 43 0.6331 + 44 0.6348 + 45 0.6804 + + ROHF Final Molecular Orbital Analysis + ------------------------------------- + + Vector 11 Occ=2.000000D+00 E=-1.106226D+00 Symmetry=ag + MO Center= 1.3D-17, 3.0D-18, -5.9D-34, r^2= 2.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.270995 1 C s 7 0.270995 2 C s + 12 0.245481 3 C s 17 0.245481 4 C s + 22 0.245388 5 C s 27 0.245388 6 C s + + Vector 12 Occ=2.000000D+00 E=-1.032338D+00 Symmetry=bu + MO Center= 3.5D-17, -9.1D-16, -1.4D-18, r^2= 8.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.296164 11 C s 41 -0.296164 12 C s + 2 -0.263009 1 C s 7 0.263009 2 C s + 48 0.217380 15 C s 53 -0.217380 16 C s + + Vector 13 Occ=2.000000D+00 E=-9.892685D-01 Symmetry=ag + MO Center= 1.4D-17, 2.9D-16, 6.3D-34, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.312254 11 C s 41 0.312254 12 C s + 48 0.308631 15 C s 53 0.308631 16 C s + + Vector 14 Occ=2.000000D+00 E=-9.608178D-01 Symmetry=bu + MO Center= -1.9D-16, 1.4D-16, 7.0D-20, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.354518 3 C s 17 -0.354518 4 C s + 22 0.320668 5 C s 27 -0.320668 6 C s + + Vector 15 Occ=2.000000D+00 E=-9.225777D-01 Symmetry=bu + MO Center= 1.4D-16, 1.1D-15, 6.2D-20, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.281535 1 C s 7 -0.281535 2 C s + 48 0.281414 15 C s 53 -0.281414 16 C s + 22 -0.201829 5 C s 27 0.201829 6 C s + + Vector 16 Occ=2.000000D+00 E=-8.063744D-01 Symmetry=ag + MO Center= -5.9D-17, -9.4D-16, -9.3D-33, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.233388 5 C s 27 0.233388 6 C s + 48 0.226406 15 C s 53 0.226406 16 C s + 2 -0.208443 1 C s 7 -0.208443 2 C s + 14 -0.166984 3 C py 19 0.166984 4 C py + 36 -0.155999 11 C s 41 -0.155999 12 C s + + Vector 17 Occ=2.000000D+00 E=-7.710203D-01 Symmetry=ag + MO Center= 2.1D-16, -5.4D-16, -6.5D-20, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.319443 3 C s 17 0.319443 4 C s + 3 0.188978 1 C px 8 -0.188978 2 C px + 24 0.174403 5 C py 29 -0.174403 6 C py + 31 0.171988 7 H s 32 0.171988 8 H s + 22 -0.165447 5 C s 27 -0.165447 6 C s + + Vector 18 Occ=2.000000D+00 E=-7.324310D-01 Symmetry=bu + MO Center= -5.8D-16, 9.7D-16, -1.2D-33, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.292981 11 C s 41 -0.292981 12 C s + 48 -0.246846 15 C s 53 0.246846 16 C s + 45 0.177338 13 H s 46 -0.177338 14 H s + 57 -0.166598 17 H s 58 0.166598 18 H s + + Vector 19 Occ=2.000000D+00 E=-7.064182D-01 Symmetry=ag + MO Center= 1.1D-16, -6.4D-16, -6.8D-18, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.195763 5 C px 28 -0.195763 6 C px + 36 0.180607 11 C s 41 0.180607 12 C s + 13 0.178097 3 C px 18 -0.178097 4 C px + 33 0.171303 9 H s 34 0.171303 10 H s + 48 -0.163749 15 C s 53 -0.163749 16 C s + + Vector 20 Occ=2.000000D+00 E=-6.395852D-01 Symmetry=ag + MO Center= -1.7D-16, -1.4D-16, 6.7D-20, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.210674 15 C px 54 -0.210674 16 C px + 38 0.182256 11 C py 43 -0.182256 12 C py + 57 0.182599 17 H s 58 0.182599 18 H s + 45 -0.154203 13 H s 46 -0.154203 14 H s + + Vector 21 Occ=2.000000D+00 E=-6.156857D-01 Symmetry=bu + MO Center= 3.1D-17, -5.6D-17, 2.2D-20, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.215420 11 C px 42 0.215420 12 C px + 50 0.215554 15 C py 55 0.215554 16 C py + 59 -0.188564 19 H s 60 0.188564 20 H s + 14 0.186158 3 C py 19 0.186158 4 C py + 45 -0.156252 13 H s 46 0.156252 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.775006D-01 Symmetry=bu + MO Center= -2.0D-17, 2.1D-16, -1.2D-18, r^2= 6.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.233617 9 H s 34 -0.233617 10 H s + 31 -0.232005 7 H s 32 0.232005 8 H s + 13 -0.225373 3 C px 18 -0.225373 4 C px + 2 0.220521 1 C s 7 -0.220521 2 C s + 24 -0.180347 5 C py 29 -0.180347 6 C py + + Vector 23 Occ=2.000000D+00 E=-5.636932D-01 Symmetry=bu + MO Center= 4.1D-16, 2.8D-16, -8.3D-20, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.258028 5 C px 28 0.258028 6 C px + 49 0.244952 15 C px 54 0.244952 16 C px + 3 -0.216816 1 C px 8 -0.216816 2 C px + 57 0.213755 17 H s 58 -0.213755 18 H s + 38 0.171613 11 C py 43 0.171613 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.630739D-01 Symmetry=ag + MO Center= 4.0D-17, 3.3D-16, 2.2D-19, r^2= 1.4D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.338025 15 C py 55 -0.338025 16 C py + 59 -0.265422 19 H s 60 -0.265422 20 H s + 37 0.251183 11 C px 42 -0.251183 12 C px + 45 -0.150767 13 H s 46 -0.150767 14 H s + + Vector 25 Occ=2.000000D+00 E=-5.324677D-01 Symmetry=bu + MO Center= 1.6D-16, -5.1D-17, -4.5D-20, r^2= 4.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.303547 3 C px 18 0.303547 4 C px + 31 0.256564 7 H s 32 -0.256564 8 H s + 24 -0.228788 5 C py 29 -0.228788 6 C py + 33 0.222170 9 H s 34 -0.222170 10 H s + 23 0.186973 5 C px 28 0.186973 6 C px + + Vector 26 Occ=2.000000D+00 E=-5.068215D-01 Symmetry=bu + MO Center= 4.3D-16, -9.2D-16, -5.9D-35, r^2= 8.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.238517 15 C py 55 -0.238517 16 C py + 14 0.223706 3 C py 19 0.223706 4 C py + 37 -0.208903 11 C px 42 -0.208903 12 C px + 38 0.188878 11 C py 43 0.188878 12 C py + 24 -0.186989 5 C py 29 -0.186989 6 C py + + Vector 27 Occ=2.000000D+00 E=-4.977764D-01 Symmetry=ag + MO Center= 1.1D-16, -1.4D-16, -7.6D-21, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.295694 15 C px 54 -0.295694 16 C px + 57 0.268293 17 H s 58 0.268293 18 H s + 37 -0.207951 11 C px 42 0.207951 12 C px + 45 0.202679 13 H s 46 0.202679 14 H s + 31 -0.157464 7 H s 32 -0.157464 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.769904D-01 Symmetry=au + MO Center= 1.3D-18, 3.5D-17, 6.5D-18, r^2= 3.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.328557 1 C pz 10 0.328557 2 C pz + 15 0.301650 3 C pz 20 0.301650 4 C pz + 25 0.300846 5 C pz 30 0.300846 6 C pz + 39 0.160686 11 C pz 44 0.160686 12 C pz + + Vector 29 Occ=2.000000D+00 E=-4.488973D-01 Symmetry=bu + MO Center= 1.5D-16, -1.7D-16, 5.7D-34, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.256101 13 H s 46 -0.256101 14 H s + 4 0.247607 1 C py 9 0.247607 2 C py + 57 0.228180 17 H s 58 -0.228180 18 H s + 59 -0.217854 19 H s 60 0.217854 20 H s + 37 -0.213413 11 C px 42 -0.213413 12 C px + + Vector 30 Occ=2.000000D+00 E=-4.255105D-01 Symmetry=ag + MO Center= 6.3D-17, -1.0D-16, 1.2D-20, r^2= 5.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.278311 9 H s 34 0.278311 10 H s + 14 0.237233 3 C py 19 -0.237233 4 C py + 3 0.228157 1 C px 8 -0.228157 2 C px + 4 -0.222272 1 C py 9 0.222272 2 C py + 13 -0.208741 3 C px 18 0.208741 4 C px + + Vector 31 Occ=2.000000D+00 E=-4.187042D-01 Symmetry=ag + MO Center= -4.9D-17, 2.8D-17, -9.3D-21, r^2= 6.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.230874 1 C px 8 -0.230874 2 C px + 23 0.231133 5 C px 28 -0.231133 6 C px + 31 -0.231743 7 H s 32 -0.231743 8 H s + 38 0.196126 11 C py 43 -0.196126 12 C py + 4 0.189664 1 C py 9 -0.189664 2 C py + + Vector 32 Occ=2.000000D+00 E=-3.874132D-01 Symmetry=bg + MO Center= 2.8D-17, 1.1D-16, 1.9D-18, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.382566 11 C pz 44 -0.382566 12 C pz + 5 -0.310990 1 C pz 10 0.310990 2 C pz + 51 0.311041 15 C pz 56 -0.311041 16 C pz + + Vector 33 Occ=2.000000D+00 E=-3.274489D-01 Symmetry=au + MO Center= -9.0D-17, 9.0D-35, -4.7D-19, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.425514 15 C pz 56 0.425514 16 C pz + 39 0.414279 11 C pz 44 0.414279 12 C pz + 15 -0.159924 3 C pz 20 -0.159924 4 C pz + 25 -0.160186 5 C pz 30 -0.160186 6 C pz + + Vector 34 Occ=2.000000D+00 E=-2.857900D-01 Symmetry=bg + MO Center= 1.7D-20, -1.4D-20, -1.4D-19, r^2= 2.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.458819 3 C pz 20 -0.458819 4 C pz + 25 0.460817 5 C pz 30 -0.460817 6 C pz + + Vector 35 Occ=2.000000D+00 E=-2.326017D-01 Symmetry=bg + MO Center= -8.3D-17, -4.4D-16, -6.6D-19, r^2= 6.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.422125 1 C pz 10 -0.422125 2 C pz + 51 0.349841 15 C pz 56 -0.349841 16 C pz + 15 0.233847 3 C pz 20 -0.233847 4 C pz + 25 -0.232533 5 C pz 30 0.232533 6 C pz + 39 0.214967 11 C pz 44 -0.214967 12 C pz + + Vector 36 Occ=0.000000D+00 E= 2.063358D-01 Symmetry=au + MO Center= -1.4D-17, 2.2D-16, 1.5D-19, r^2= 7.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.480411 1 C pz 10 0.480411 2 C pz + 51 -0.410410 15 C pz 56 -0.410410 16 C pz + 25 -0.284854 5 C pz 30 -0.284854 6 C pz + 15 -0.250277 3 C pz 20 -0.250277 4 C pz + 39 0.247674 11 C pz 44 0.247674 12 C pz + + Vector 37 Occ=0.000000D+00 E= 2.735382D-01 Symmetry=au + MO Center= -2.7D-16, -6.0D-17, -1.5D-18, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.583890 3 C pz 20 0.583890 4 C pz + 25 -0.559760 5 C pz 30 -0.559760 6 C pz + + Vector 38 Occ=0.000000D+00 E= 3.192198D-01 Symmetry=bg + MO Center= 2.6D-16, -1.2D-35, -3.2D-19, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.537463 15 C pz 56 0.537463 16 C pz + 39 0.531193 11 C pz 44 -0.531193 12 C pz + 15 0.223589 3 C pz 20 -0.223589 4 C pz + 25 -0.217792 5 C pz 30 0.217792 6 C pz + + Vector 39 Occ=0.000000D+00 E= 4.067480D-01 Symmetry=au + MO Center= 4.2D-17, 5.0D-16, 3.7D-18, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.540891 11 C pz 44 0.540891 12 C pz + 5 -0.471023 1 C pz 10 -0.471023 2 C pz + 51 -0.417701 15 C pz 56 -0.417701 16 C pz + 25 0.188443 5 C pz 30 0.188443 6 C pz + 15 0.160675 3 C pz 20 0.160675 4 C pz + + Vector 40 Occ=0.000000D+00 E= 5.372072D-01 Symmetry=bg + MO Center= -1.2D-16, -2.2D-16, 7.7D-19, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.544893 1 C pz 10 -0.544893 2 C pz + 15 -0.476381 3 C pz 20 0.476381 4 C pz + 25 0.478665 5 C pz 30 -0.478665 6 C pz + 39 0.277106 11 C pz 44 -0.277106 12 C pz + 51 -0.159840 15 C pz 56 0.159840 16 C pz + + Vector 41 Occ=0.000000D+00 E= 5.696467D-01 Symmetry=ag + MO Center= 1.6D-16, 1.1D-16, -1.4D-18, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.420271 7 H s 32 -0.420271 8 H s + 33 -0.419619 9 H s 34 -0.419619 10 H s + 2 0.397277 1 C s 7 0.397277 2 C s + 59 -0.353041 19 H s 60 -0.353041 20 H s + 38 -0.347221 11 C py 43 0.347221 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.827939D-01 Symmetry=bu + MO Center= 1.6D-16, -6.7D-16, -4.1D-19, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.439833 13 H s 46 -0.439833 14 H s + 37 0.354949 11 C px 42 0.354949 12 C px + 13 0.345833 3 C px 18 0.345833 4 C px + 57 -0.334015 17 H s 58 0.334015 18 H s + 31 -0.319954 7 H s 32 0.319954 8 H s + + Vector 43 Occ=0.000000D+00 E= 6.331002D-01 Symmetry=bu + MO Center= 1.3D-16, 5.6D-17, 2.7D-19, r^2= 7.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.525506 11 C s 41 -0.525506 12 C s + 4 0.460299 1 C py 9 0.460299 2 C py + 33 0.453252 9 H s 34 -0.453252 10 H s + 24 0.331150 5 C py 29 0.331150 6 C py + 38 0.329898 11 C py 43 0.329898 12 C py + + Vector 44 Occ=0.000000D+00 E= 6.347674D-01 Symmetry=ag + MO Center= -1.7D-17, 1.3D-15, 5.1D-19, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.589715 13 H s 46 0.589715 14 H s + 36 -0.409313 11 C s 41 -0.409313 12 C s + 12 0.388876 3 C s 17 0.388876 4 C s + 57 -0.383161 17 H s 58 -0.383161 18 H s + 37 0.343923 11 C px 42 -0.343923 12 C px + + Vector 45 Occ=0.000000D+00 E= 6.803596D-01 Symmetry=ag + MO Center= 5.3D-16, -1.1D-15, 2.7D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.714454 15 C s 53 0.714454 16 C s + 22 0.576445 5 C s 27 0.576445 6 C s + 57 -0.560548 17 H s 58 -0.560548 18 H s + 12 -0.407769 3 C s 17 -0.407769 4 C s + 59 -0.369736 19 H s 60 -0.369736 20 H s + + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2574.039765462049 -2.551110151665 0.000000000000 + -2.551110151665 376.487158877255 0.000000000000 + 0.000000000000 0.000000000000 2950.526924339304 + + Mulliken analysis of the total density + -------------------------------------- + + Atom Charge Shell Charges + ----------- ------ ------------------------------------------------------- + 1 C 6 6.00 1.99 1.12 2.88 + 2 C 6 6.00 1.99 1.12 2.88 + 3 C 6 6.06 1.99 1.13 2.94 + 4 C 6 6.06 1.99 1.13 2.94 + 5 C 6 6.06 1.99 1.13 2.94 + 6 C 6 6.06 1.99 1.13 2.94 + 7 H 1 0.94 0.94 + 8 H 1 0.94 0.94 + 9 H 1 0.94 0.94 + 10 H 1 0.94 0.94 + 11 C 6 6.06 1.99 1.14 2.93 + 12 C 6 6.06 1.99 1.14 2.93 + 13 H 1 0.94 0.94 + 14 H 1 0.94 0.94 + 15 C 6 6.13 1.99 1.15 2.99 + 16 C 6 6.13 1.99 1.15 2.99 + 17 H 1 0.94 0.94 + 18 H 1 0.94 0.94 + 19 H 1 0.94 0.94 + 20 H 1 0.94 0.94 + + Multipole analysis of the density wrt the origin + ------------------------------------------------ + + L x y z total open nuclear + - - - - ----- ---- ------- + 0 0 0 0 -0.000000 0.000000 70.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 + 1 0 1 0 -0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 + + 2 2 0 0 -38.506037 0.000000 236.067998 + 2 1 1 0 0.132847 0.000000 -3.853541 + 2 1 0 1 -0.000000 0.000000 0.000000 + 2 0 2 0 -39.151513 0.000000 1464.028399 + 2 0 1 1 0.000000 0.000000 0.000000 + 2 0 0 2 -43.441718 0.000000 0.000000 + + + Parallel integral file used 9 records with 0 large values + + NWChem Gradients Module + ----------------------- + + + Divinylbenzene in STO-3G basis set + + + wavefunction = RHF + + Using symmetry + + + RHF ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.429424 2.634723 0.000000 -0.000155 0.004270 0.000000 + 2 C -0.429424 -2.634723 0.000000 0.000155 -0.004270 0.000000 + 3 C 2.437959 0.919494 0.000000 0.000683 -0.001774 0.000000 + 4 C -2.437959 -0.919494 0.000000 -0.000683 0.001774 0.000000 + 5 C 2.023420 -1.657519 0.000000 0.001977 0.002639 0.000000 + 6 C -2.023420 1.657519 0.000000 -0.001977 -0.002639 -0.000000 + 7 H 4.356838 1.632394 0.000000 0.000464 0.000438 0.000000 + 8 H -4.356838 -1.632394 0.000000 -0.000464 -0.000438 0.000000 + 9 H 3.622382 -2.931209 0.000000 -0.000186 -0.000883 0.000000 + 10 H -3.622382 2.931209 0.000000 0.000186 0.000883 0.000000 + 11 C -0.987693 -5.401572 0.000000 0.002725 0.000196 0.000000 + 12 C 0.987693 5.401572 0.000000 -0.002725 -0.000196 0.000000 + 13 H -2.984266 -5.867411 0.000000 -0.000241 -0.001173 0.000000 + 14 H 2.984266 5.867411 0.000000 0.000241 0.001173 0.000000 + 15 C 0.664020 -7.249600 0.000000 -0.002363 0.001763 0.000000 + 16 C -0.664020 7.249600 0.000000 0.002363 -0.001763 0.000000 + 17 H 2.681023 -6.929589 0.000000 0.000157 0.001240 0.000000 + 18 H -2.681023 6.929589 0.000000 -0.000157 -0.001240 0.000000 + 19 H 0.064671 -9.203375 0.000000 -0.000909 -0.000158 0.000000 + 20 H -0.064671 9.203375 0.000000 0.000909 0.000158 0.000000 + + ---------------------------------------- + | Time | 1-e(secs) | 2-e(secs) | + ---------------------------------------- + | CPU | 0.02 | 2.64 | + ---------------------------------------- + | WALL | 0.02 | 2.64 | + ---------------------------------------- + + Step Energy Delta E Gmax Grms Xrms Xmax Walltime + ---- ---------------- -------- -------- -------- -------- -------- -------- +@ 1 -379.77787172 -8.9D-03 0.00420 0.00083 0.04325 0.11704 13.4 + + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value Gradient + ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- + 1 Stretch 1 3 1.39769 0.00158 + 2 Stretch 1 6 1.39721 0.00211 + 3 Stretch 1 12 1.49366 -0.00171 + 4 Stretch 2 4 1.39769 0.00158 + 5 Stretch 2 5 1.39721 0.00211 + 6 Stretch 2 11 1.49366 -0.00171 + 7 Stretch 3 5 1.38123 -0.00035 + 8 Stretch 3 7 1.08324 0.00059 + 9 Stretch 4 6 1.38123 -0.00035 + 10 Stretch 4 8 1.08324 0.00059 + 11 Stretch 5 9 1.08177 0.00041 + 12 Stretch 6 10 1.08177 0.00041 + 13 Stretch 11 13 1.08492 0.00050 + 14 Stretch 11 15 1.31161 -0.00420 + 15 Stretch 12 14 1.08492 0.00050 + 16 Stretch 12 16 1.31161 -0.00420 + 17 Stretch 15 17 1.08070 0.00035 + 18 Stretch 15 19 1.08145 0.00042 + 19 Stretch 16 18 1.08070 0.00035 + 20 Stretch 16 20 1.08145 0.00042 + 21 Bend 1 3 5 121.35802 -0.00005 + 22 Bend 1 3 7 119.12269 -0.00011 + 23 Bend 1 6 4 120.86048 0.00012 + 24 Bend 1 6 10 119.73797 -0.00050 + 25 Bend 1 12 14 114.54071 0.00074 + 26 Bend 1 12 16 126.80316 -0.00029 + 27 Bend 2 4 6 121.35802 -0.00005 + 28 Bend 2 4 8 119.12269 -0.00011 + 29 Bend 2 5 3 120.86048 0.00012 + 30 Bend 2 5 9 119.73797 -0.00050 + 31 Bend 2 11 13 114.54071 0.00074 + 32 Bend 2 11 15 126.80316 -0.00029 + 33 Bend 3 1 6 117.78150 -0.00007 + 34 Bend 3 1 12 119.08891 -0.00019 + 35 Bend 3 5 9 119.40154 0.00038 + 36 Bend 4 2 5 117.78150 -0.00007 + 37 Bend 4 2 11 119.08891 -0.00019 + 38 Bend 4 6 10 119.40154 0.00038 + 39 Bend 5 2 11 123.12959 0.00026 + 40 Bend 5 3 7 119.51930 0.00016 + 41 Bend 6 1 12 123.12959 0.00026 + 42 Bend 6 4 8 119.51930 0.00016 + 43 Bend 11 15 17 122.77420 -0.00057 + 44 Bend 11 15 19 121.15645 -0.00016 + 45 Bend 12 16 18 122.77420 -0.00057 + 46 Bend 12 16 20 121.15645 -0.00016 + 47 Bend 13 11 15 118.65613 -0.00044 + 48 Bend 14 12 16 118.65613 -0.00044 + 49 Bend 17 15 19 116.06935 0.00073 + 50 Bend 18 16 20 116.06935 0.00073 + 51 Torsion 1 3 5 2 0.00000 -0.00000 + 52 Torsion 1 3 5 9 180.00000 0.00000 + 53 Torsion 1 6 4 2 0.00000 -0.00000 + 54 Torsion 1 6 4 8 180.00000 -0.00000 + 55 Torsion 1 12 16 18 0.00000 0.00000 + 56 Torsion 1 12 16 20 180.00000 -0.00000 + 57 Torsion 2 4 6 10 180.00000 0.00000 + 58 Torsion 2 5 3 7 180.00000 -0.00000 + 59 Torsion 2 11 15 17 0.00000 -0.00000 + 60 Torsion 2 11 15 19 180.00000 -0.00000 + 61 Torsion 3 1 6 4 0.00000 0.00000 + 62 Torsion 3 1 6 10 180.00000 -0.00000 + 63 Torsion 3 1 12 14 0.00000 0.00000 + 64 Torsion 3 1 12 16 180.00000 0.00000 + 65 Torsion 3 5 2 4 0.00000 0.00000 + 66 Torsion 3 5 2 11 180.00000 0.00000 + 67 Torsion 4 2 5 9 180.00000 0.00000 + 68 Torsion 4 2 11 13 0.00000 -0.00000 + 69 Torsion 4 2 11 15 180.00000 0.00000 + 70 Torsion 4 6 1 12 180.00000 0.00000 + 71 Torsion 5 2 4 6 -0.00000 -0.00000 + 72 Torsion 5 2 4 8 180.00000 0.00000 + 73 Torsion 5 2 11 13 180.00000 -0.00000 + 74 Torsion 5 2 11 15 0.00000 -0.00000 + 75 Torsion 5 3 1 6 0.00000 -0.00000 + 76 Torsion 5 3 1 12 180.00000 -0.00000 + 77 Torsion 6 1 3 7 180.00000 -0.00000 + 78 Torsion 6 1 12 14 180.00000 0.00000 + 79 Torsion 6 1 12 16 0.00000 0.00000 + 80 Torsion 6 4 2 11 180.00000 -0.00000 + 81 Torsion 7 3 1 12 -0.00000 -0.00000 + 82 Torsion 7 3 5 9 0.00000 -0.00000 + 83 Torsion 8 4 2 11 -0.00000 -0.00000 + 84 Torsion 8 4 6 10 0.00000 0.00000 + 85 Torsion 9 5 2 11 0.00000 0.00000 + 86 Torsion 10 6 1 12 0.00000 0.00000 + 87 Torsion 13 11 15 17 180.00000 0.00000 + 88 Torsion 13 11 15 19 -0.00000 0.00000 + 89 Torsion 14 12 16 18 180.00000 0.00000 + 90 Torsion 14 12 16 20 -0.00000 0.00000 + + NWChem SCF Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + ao basis = "ao basis" + functions = 60 + atoms = 20 + closed shells = 35 + open shells = 0 + charge = 0.00 + wavefunction = RHF + input vectors = ./dvb.movecs + output vectors = ./dvb.movecs + use symmetry = T + symmetry adapt = T + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + + Forming initial guess at 13.8s + + + Loading old vectors from job with title : + +Divinylbenzene in STO-3G basis set + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + + Starting SCF solution at 13.8s + + + + ---------------------------------------------- + Quadratically convergent ROHF + + Convergence threshold : 1.000E-04 + Maximum no. of iterations : 30 + Final Fock-matrix accuracy: 1.000E-07 + ---------------------------------------------- + + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.173D+05 #integrals = 3.522D+05 #direct = 0.0% #cached =100.0% + + + iter energy gnorm gmax time + ----- ------------------- --------- --------- -------- + 1 -379.7779267499 1.14D-02 2.55D-03 14.0 + 2 -379.7779382028 1.24D-04 3.33D-05 14.0 + 3 -379.7779382049 2.94D-06 9.82D-07 14.1 + + + Final RHF results + ------------------ + + Total SCF energy = -379.777938204874 + One-electron energy = -1412.191347821370 + Two-electron energy = 580.268934995161 + Nuclear repulsion energy = 452.144474621336 + + Time for solution = 1.8s + + + + Symmetry analysis of molecular orbitals - final + ----------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + Final eigenvalues + ----------------- + + 1 + 1 -11.0410 + 2 -11.0409 + 3 -11.0323 + 4 -11.0323 + 5 -11.0290 + 6 -11.0289 + 7 -11.0284 + 8 -11.0283 + 9 -11.0179 + 10 -11.0179 + 11 -1.1071 + 12 -1.0316 + 13 -0.9881 + 14 -0.9612 + 15 -0.9228 + 16 -0.8066 + 17 -0.7716 + 18 -0.7332 + 19 -0.7075 + 20 -0.6392 + 21 -0.6151 + 22 -0.5777 + 23 -0.5639 + 24 -0.5628 + 25 -0.5326 + 26 -0.5074 + 27 -0.4983 + 28 -0.4776 + 29 -0.4490 + 30 -0.4260 + 31 -0.4184 + 32 -0.3866 + 33 -0.3264 + 34 -0.2858 + 35 -0.2332 + 36 0.2067 + 37 0.2733 + 38 0.3180 + 39 0.4057 + 40 0.5378 + 41 0.5686 + 42 0.5833 + 43 0.6325 + 44 0.6358 + 45 0.6829 + + ROHF Final Molecular Orbital Analysis + ------------------------------------- + + Vector 11 Occ=2.000000D+00 E=-1.107062D+00 Symmetry=ag + MO Center= -1.8D-17, -4.1D-17, -4.4D-35, r^2= 2.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.270971 1 C s 7 0.270971 2 C s + 12 0.245871 3 C s 17 0.245871 4 C s + 22 0.245769 5 C s 27 0.245769 6 C s + + Vector 12 Occ=2.000000D+00 E=-1.031568D+00 Symmetry=bu + MO Center= -2.1D-17, -1.3D-16, 1.2D-36, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.294852 11 C s 41 -0.294852 12 C s + 2 -0.265712 1 C s 7 0.265712 2 C s + 48 0.215088 15 C s 53 -0.215088 16 C s + + Vector 13 Occ=2.000000D+00 E=-9.880593D-01 Symmetry=ag + MO Center= -2.2D-19, -2.5D-16, 5.3D-21, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.313472 11 C s 41 0.313472 12 C s + 48 0.309409 15 C s 53 0.309409 16 C s + + Vector 14 Occ=2.000000D+00 E=-9.611655D-01 Symmetry=bu + MO Center= -2.2D-16, 5.2D-17, 7.3D-20, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.353934 3 C s 17 -0.353934 4 C s + 22 0.321162 5 C s 27 -0.321162 6 C s + + Vector 15 Occ=2.000000D+00 E=-9.227631D-01 Symmetry=bu + MO Center= -8.9D-17, 1.1D-15, 1.0D-20, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.283932 15 C s 53 -0.283932 16 C s + 2 0.278771 1 C s 7 -0.278771 2 C s + 22 -0.199631 5 C s 27 0.199631 6 C s + + Vector 16 Occ=2.000000D+00 E=-8.066404D-01 Symmetry=ag + MO Center= -2.6D-17, -6.0D-16, -8.5D-21, r^2= 8.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.233182 5 C s 27 0.233182 6 C s + 48 0.226857 15 C s 53 0.226857 16 C s + 2 -0.207083 1 C s 7 -0.207083 2 C s + 14 -0.166939 3 C py 19 0.166939 4 C py + 36 -0.156334 11 C s 41 -0.156334 12 C s + + Vector 17 Occ=2.000000D+00 E=-7.715672D-01 Symmetry=ag + MO Center= 2.7D-16, -4.0D-16, -6.6D-20, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.319435 3 C s 17 0.319435 4 C s + 3 0.189566 1 C px 8 -0.189566 2 C px + 24 0.174047 5 C py 29 -0.174047 6 C py + 31 0.172059 7 H s 32 0.172059 8 H s + 22 -0.165451 5 C s 27 -0.165451 6 C s + + Vector 18 Occ=2.000000D+00 E=-7.332406D-01 Symmetry=bu + MO Center= 9.4D-17, -2.8D-17, 1.2D-20, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.293535 11 C s 41 -0.293535 12 C s + 48 -0.246654 15 C s 53 0.246654 16 C s + 45 0.177487 13 H s 46 -0.177487 14 H s + 57 -0.166188 17 H s 58 0.166188 18 H s + + Vector 19 Occ=2.000000D+00 E=-7.075234D-01 Symmetry=ag + MO Center= 1.3D-16, -2.8D-17, 2.9D-33, r^2= 7.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.196292 5 C px 28 -0.196292 6 C px + 36 0.180122 11 C s 41 0.180122 12 C s + 13 0.178459 3 C px 18 -0.178459 4 C px + 33 0.171363 9 H s 34 0.171363 10 H s + 48 -0.162461 15 C s 53 -0.162461 16 C s + + Vector 20 Occ=2.000000D+00 E=-6.392184D-01 Symmetry=ag + MO Center= -1.4D-16, -3.1D-16, 7.5D-20, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.210270 15 C px 54 -0.210270 16 C px + 38 0.182693 11 C py 43 -0.182693 12 C py + 57 0.181815 17 H s 58 0.181815 18 H s + 45 -0.153821 13 H s 46 -0.153821 14 H s + + Vector 21 Occ=2.000000D+00 E=-6.150922D-01 Symmetry=bu + MO Center= 3.1D-17, 5.6D-17, 2.3D-36, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.215839 11 C px 42 0.215839 12 C px + 50 0.214806 15 C py 55 0.214806 16 C py + 14 0.188923 3 C py 19 0.188923 4 C py + 59 -0.187371 19 H s 60 0.187371 20 H s + 45 -0.156186 13 H s 46 0.156186 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.777267D-01 Symmetry=bu + MO Center= -7.3D-17, -1.3D-16, 6.6D-33, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.234333 7 H s 32 0.234333 8 H s + 33 0.235454 9 H s 34 -0.235454 10 H s + 13 -0.226999 3 C px 18 -0.226999 4 C px + 2 0.221483 1 C s 7 -0.221483 2 C s + 24 -0.178746 5 C py 29 -0.178746 6 C py + + Vector 23 Occ=2.000000D+00 E=-5.639085D-01 Symmetry=bu + MO Center= 6.9D-17, -1.2D-16, -4.4D-34, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.256932 5 C px 28 0.256932 6 C px + 49 0.246909 15 C px 54 0.246909 16 C px + 3 -0.217081 1 C px 8 -0.217081 2 C px + 57 0.215219 17 H s 58 -0.215219 18 H s + 38 0.173782 11 C py 43 0.173782 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.627895D-01 Symmetry=ag + MO Center= 5.2D-17, 2.2D-16, -1.3D-35, r^2= 1.4D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.338195 15 C py 55 -0.338195 16 C py + 59 -0.265241 19 H s 60 -0.265241 20 H s + 37 0.252585 11 C px 42 -0.252585 12 C px + 45 -0.152541 13 H s 46 -0.152541 14 H s + + Vector 25 Occ=2.000000D+00 E=-5.326288D-01 Symmetry=bu + MO Center= 1.0D-16, 5.9D-17, 1.4D-22, r^2= 4.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.304516 3 C px 18 0.304516 4 C px + 31 0.255916 7 H s 32 -0.255916 8 H s + 24 -0.227097 5 C py 29 -0.227097 6 C py + 33 0.220966 9 H s 34 -0.220966 10 H s + 23 0.186385 5 C px 28 0.186385 6 C px + + Vector 26 Occ=2.000000D+00 E=-5.074374D-01 Symmetry=bu + MO Center= 8.2D-17, -1.7D-16, 3.5D-21, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.239198 15 C py 55 -0.239198 16 C py + 14 0.225100 3 C py 19 0.225100 4 C py + 37 -0.209824 11 C px 42 -0.209824 12 C px + 24 -0.190022 5 C py 29 -0.190022 6 C py + 38 0.188078 11 C py 43 0.188078 12 C py + + Vector 27 Occ=2.000000D+00 E=-4.982615D-01 Symmetry=ag + MO Center= -3.0D-17, -2.5D-16, 2.5D-21, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.296401 15 C px 54 -0.296401 16 C px + 57 0.268913 17 H s 58 0.268913 18 H s + 37 -0.206581 11 C px 42 0.206581 12 C px + 45 0.201803 13 H s 46 0.201803 14 H s + 31 -0.156603 7 H s 32 -0.156603 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.775776D-01 Symmetry=au + MO Center= -2.6D-17, -6.9D-18, -1.8D-19, r^2= 3.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.328944 1 C pz 10 0.328944 2 C pz + 15 0.302186 3 C pz 20 0.302186 4 C pz + 25 0.301427 5 C pz 30 0.301427 6 C pz + 39 0.158392 11 C pz 44 0.158392 12 C pz + + Vector 29 Occ=2.000000D+00 E=-4.490450D-01 Symmetry=bu + MO Center= -8.7D-19, 1.1D-16, -1.6D-21, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.255781 13 H s 46 -0.255781 14 H s + 4 0.248652 1 C py 9 0.248652 2 C py + 57 0.227236 17 H s 58 -0.227236 18 H s + 59 -0.218156 19 H s 60 0.218156 20 H s + 37 -0.213164 11 C px 42 -0.213164 12 C px + + Vector 30 Occ=2.000000D+00 E=-4.260163D-01 Symmetry=ag + MO Center= 2.1D-17, 1.9D-16, 3.0D-21, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.283413 9 H s 34 0.283413 10 H s + 3 0.251202 1 C px 8 -0.251202 2 C px + 13 -0.225453 3 C px 18 0.225453 4 C px + 14 0.220393 3 C py 19 -0.220393 4 C py + 23 0.207454 5 C px 28 -0.207454 6 C px + + Vector 31 Occ=2.000000D+00 E=-4.184250D-01 Symmetry=ag + MO Center= 1.4D-16, 2.1D-16, -6.8D-21, r^2= 7.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.218310 7 H s 32 -0.218310 8 H s + 38 0.216057 11 C py 43 -0.216057 12 C py + 4 0.212764 1 C py 9 -0.212764 2 C py + 23 0.210046 5 C px 28 -0.210046 6 C px + 3 0.205337 1 C px 8 -0.205337 2 C px + + Vector 32 Occ=2.000000D+00 E=-3.865863D-01 Symmetry=bg + MO Center= 1.4D-17, 2.2D-16, 1.1D-19, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.381256 11 C pz 44 -0.381256 12 C pz + 5 -0.313488 1 C pz 10 0.313488 2 C pz + 51 0.309399 15 C pz 56 -0.309399 16 C pz + + Vector 33 Occ=2.000000D+00 E=-3.264344D-01 Symmetry=au + MO Center= 6.9D-18, 3.3D-16, -3.7D-20, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.426472 15 C pz 56 0.426472 16 C pz + 39 0.415410 11 C pz 44 0.415410 12 C pz + 15 -0.158023 3 C pz 20 -0.158023 4 C pz + 25 -0.158205 5 C pz 30 -0.158205 6 C pz + + Vector 34 Occ=2.000000D+00 E=-2.858064D-01 Symmetry=bg + MO Center= 1.7D-16, -5.5D-17, -2.1D-19, r^2= 2.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.458778 3 C pz 20 -0.458778 4 C pz + 25 0.461008 5 C pz 30 -0.461008 6 C pz + + Vector 35 Occ=2.000000D+00 E=-2.331874D-01 Symmetry=bg + MO Center= -6.9D-18, 2.2D-16, 7.7D-20, r^2= 6.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.419757 1 C pz 10 -0.419757 2 C pz + 51 0.351594 15 C pz 56 -0.351594 16 C pz + 15 0.233808 3 C pz 20 -0.233808 4 C pz + 25 -0.231138 5 C pz 30 0.231138 6 C pz + 39 0.217723 11 C pz 44 -0.217723 12 C pz + + Vector 36 Occ=0.000000D+00 E= 2.067082D-01 Symmetry=au + MO Center= -2.4D-38, 2.2D-16, 1.9D-19, r^2= 7.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.478242 1 C pz 10 0.478242 2 C pz + 51 -0.411954 15 C pz 56 -0.411954 16 C pz + 25 -0.283601 5 C pz 30 -0.283601 6 C pz + 15 -0.250659 3 C pz 20 -0.250659 4 C pz + 39 0.250595 11 C pz 44 0.250595 12 C pz + + Vector 37 Occ=0.000000D+00 E= 2.733059D-01 Symmetry=au + MO Center= -2.2D-16, -3.4D-18, -1.5D-18, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.583538 3 C pz 20 0.583538 4 C pz + 25 -0.560242 5 C pz 30 -0.560242 6 C pz + + Vector 38 Occ=0.000000D+00 E= 3.180212D-01 Symmetry=bg + MO Center= 1.8D-16, -7.8D-16, -5.0D-19, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.537587 15 C pz 56 0.537587 16 C pz + 39 0.531906 11 C pz 44 -0.531906 12 C pz + 15 0.221212 3 C pz 20 -0.221212 4 C pz + 25 -0.215609 5 C pz 30 0.215609 6 C pz + + Vector 39 Occ=0.000000D+00 E= 4.057343D-01 Symmetry=au + MO Center= 2.8D-17, 1.7D-37, 1.8D-22, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.538763 11 C pz 44 0.538763 12 C pz + 5 -0.473439 1 C pz 10 -0.473439 2 C pz + 51 -0.415108 15 C pz 56 -0.415108 16 C pz + 25 0.190222 5 C pz 30 0.190222 6 C pz + 15 0.162685 3 C pz 20 0.162685 4 C pz + + Vector 40 Occ=0.000000D+00 E= 5.378140D-01 Symmetry=bg + MO Center= 1.9D-16, -2.2D-16, 4.1D-20, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.545737 1 C pz 10 -0.545737 2 C pz + 25 0.479938 5 C pz 30 -0.479938 6 C pz + 15 -0.477486 3 C pz 20 0.477486 4 C pz + 39 0.274226 11 C pz 44 -0.274226 12 C pz + 51 -0.157267 15 C pz 56 0.157267 16 C pz + + Vector 41 Occ=0.000000D+00 E= 5.686409D-01 Symmetry=ag + MO Center= -1.3D-17, -5.6D-17, -1.0D-19, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.417124 7 H s 32 -0.417124 8 H s + 33 -0.416570 9 H s 34 -0.416570 10 H s + 2 0.397825 1 C s 7 0.397825 2 C s + 59 -0.351163 19 H s 60 -0.351163 20 H s + 38 -0.349122 11 C py 43 0.349122 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.833170D-01 Symmetry=bu + MO Center= -1.1D-16, -3.1D-16, -2.9D-20, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.432652 13 H s 46 -0.432652 14 H s + 37 0.356085 11 C px 42 0.356085 12 C px + 13 0.340298 3 C px 18 0.340298 4 C px + 57 -0.336113 17 H s 58 0.336113 18 H s + 59 0.321568 19 H s 60 -0.321568 20 H s + + Vector 43 Occ=0.000000D+00 E= 6.324720D-01 Symmetry=bu + MO Center= 9.7D-17, 3.9D-16, 1.1D-19, r^2= 6.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.534931 11 C s 41 -0.534931 12 C s + 33 0.462578 9 H s 34 -0.462578 10 H s + 4 0.456371 1 C py 9 0.456371 2 C py + 24 0.334101 5 C py 29 0.334101 6 C py + 38 0.320710 11 C py 43 0.320710 12 C py + + Vector 44 Occ=0.000000D+00 E= 6.357706D-01 Symmetry=ag + MO Center= -2.1D-16, 1.2D-15, -1.6D-19, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.585193 13 H s 46 0.585193 14 H s + 36 -0.410415 11 C s 41 -0.410415 12 C s + 57 -0.389845 17 H s 58 -0.389845 18 H s + 12 0.386133 3 C s 17 0.386133 4 C s + 37 0.338138 11 C px 42 -0.338138 12 C px + + Vector 45 Occ=0.000000D+00 E= 6.829151D-01 Symmetry=ag + MO Center= 1.8D-16, -2.2D-16, 2.5D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.725178 15 C s 53 0.725178 16 C s + 22 0.569738 5 C s 27 0.569738 6 C s + 57 -0.557573 17 H s 58 -0.557573 18 H s + 12 -0.421039 3 C s 17 -0.421039 4 C s + 59 -0.380829 19 H s 60 -0.380829 20 H s + + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2578.219241432481 -1.132543407615 0.000000000000 + -1.132543407615 375.632883608279 0.000000000000 + 0.000000000000 0.000000000000 2953.852125040761 + + Mulliken analysis of the total density + -------------------------------------- + + Atom Charge Shell Charges + ----------- ------ ------------------------------------------------------- + 1 C 6 6.00 1.99 1.12 2.88 + 2 C 6 6.00 1.99 1.12 2.88 + 3 C 6 6.06 1.99 1.13 2.94 + 4 C 6 6.06 1.99 1.13 2.94 + 5 C 6 6.06 1.99 1.13 2.94 + 6 C 6 6.06 1.99 1.13 2.94 + 7 H 1 0.94 0.94 + 8 H 1 0.94 0.94 + 9 H 1 0.94 0.94 + 10 H 1 0.94 0.94 + 11 C 6 6.06 1.99 1.14 2.92 + 12 C 6 6.06 1.99 1.14 2.92 + 13 H 1 0.94 0.94 + 14 H 1 0.94 0.94 + 15 C 6 6.13 1.99 1.15 2.99 + 16 C 6 6.13 1.99 1.15 2.99 + 17 H 1 0.94 0.94 + 18 H 1 0.94 0.94 + 19 H 1 0.94 0.94 + 20 H 1 0.94 0.94 + + Multipole analysis of the density wrt the origin + ------------------------------------------------ + + L x y z total open nuclear + - - - - ----- ---- ------- + 0 0 0 0 -0.000000 0.000000 70.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 + 1 0 1 0 -0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 + + 2 2 0 0 -38.501692 0.000000 235.613502 + 2 1 1 0 0.091095 0.000000 -4.742366 + 2 1 0 1 -0.000000 0.000000 0.000000 + 2 0 2 0 -39.161862 0.000000 1466.439539 + 2 0 1 1 0.000000 0.000000 0.000000 + 2 0 0 2 -43.440551 0.000000 0.000000 + + + Parallel integral file used 9 records with 0 large values + + Line search: + step= 1.00 grad=-2.0D-04 hess= 1.3D-04 energy= -379.777938 mode=downhill + new step= 0.75 predicted energy= -379.777946 + + -------- + Step 2 + -------- + + + Geometry "geometry" -> "geometry" + --------------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.22732703 1.39305994 0.00000000 + 2 C 6.0000 -0.22732703 -1.39305994 0.00000000 + 3 C 6.0000 1.28858813 0.48600962 0.00000000 + 4 C 6.0000 -1.28858813 -0.48600962 0.00000000 + 5 C 6.0000 1.06914242 -0.87777125 0.00000000 + 6 C 6.0000 -1.06914242 0.87777125 0.00000000 + 7 H 1.0000 2.30367288 0.86178527 0.00000000 + 8 H 1.0000 -2.30367288 -0.86178527 0.00000000 + 9 H 1.0000 1.91656174 -1.54916938 0.00000000 + 10 H 1.0000 -1.91656174 1.54916938 0.00000000 + 11 C 6.0000 -0.52199385 -2.85909544 0.00000000 + 12 C 6.0000 0.52199385 2.85909544 0.00000000 + 13 H 1.0000 -1.57886435 -3.10088833 0.00000000 + 14 H 1.0000 1.57886435 3.10088833 0.00000000 + 15 C 6.0000 0.35280473 -3.84018666 0.00000000 + 16 C 6.0000 -0.35280473 3.84018666 0.00000000 + 17 H 1.0000 1.42049646 -3.67660073 0.00000000 + 18 H 1.0000 -1.42049646 3.67660073 0.00000000 + 19 H 1.0000 0.03597108 -4.87352048 0.00000000 + 20 H 1.0000 -0.03597108 4.87352048 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 452.1592761881 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + NWChem SCF Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + ao basis = "ao basis" + functions = 60 + atoms = 20 + closed shells = 35 + open shells = 0 + charge = 0.00 + wavefunction = RHF + input vectors = ./dvb.movecs + output vectors = ./dvb.movecs + use symmetry = T + symmetry adapt = T + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + + Forming initial guess at 16.1s + + + Loading old vectors from job with title : + +Divinylbenzene in STO-3G basis set + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + + Starting SCF solution at 16.1s + + + + ---------------------------------------------- + Quadratically convergent ROHF + + Convergence threshold : 1.000E-04 + Maximum no. of iterations : 30 + Final Fock-matrix accuracy: 1.000E-07 + ---------------------------------------------- + + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.173D+05 #integrals = 3.523D+05 #direct = 0.0% #cached =100.0% + + + iter energy gnorm gmax time + ----- ------------------- --------- --------- -------- + 1 -379.7779457971 2.79D-03 6.27D-04 16.0 + 2 -379.7779460159 2.12D-05 5.22D-06 16.1 + + + Final RHF results + ------------------ + + Total SCF energy = -379.777946015853 + One-electron energy = -1412.222317358614 + Two-electron energy = 580.285095154646 + Nuclear repulsion energy = 452.159276188116 + + Time for solution = 1.8s + + + + Symmetry analysis of molecular orbitals - final + ----------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + Final eigenvalues + ----------------- + + 1 + 1 -11.0410 + 2 -11.0409 + 3 -11.0323 + 4 -11.0323 + 5 -11.0290 + 6 -11.0289 + 7 -11.0284 + 8 -11.0283 + 9 -11.0179 + 10 -11.0179 + 11 -1.1069 + 12 -1.0318 + 13 -0.9884 + 14 -0.9611 + 15 -0.9227 + 16 -0.8066 + 17 -0.7714 + 18 -0.7330 + 19 -0.7073 + 20 -0.6393 + 21 -0.6152 + 22 -0.5777 + 23 -0.5639 + 24 -0.5629 + 25 -0.5326 + 26 -0.5073 + 27 -0.4981 + 28 -0.4774 + 29 -0.4490 + 30 -0.4259 + 31 -0.4185 + 32 -0.3868 + 33 -0.3267 + 34 -0.2858 + 35 -0.2330 + 36 0.2066 + 37 0.2734 + 38 0.3183 + 39 0.4060 + 40 0.5377 + 41 0.5689 + 42 0.5832 + 43 0.6326 + 44 0.6355 + 45 0.6823 + + ROHF Final Molecular Orbital Analysis + ------------------------------------- + + Vector 11 Occ=2.000000D+00 E=-1.106855D+00 Symmetry=ag + MO Center= 2.5D-17, -4.8D-17, 1.4D-21, r^2= 2.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.270978 1 C s 7 0.270978 2 C s + 12 0.245779 3 C s 17 0.245779 4 C s + 22 0.245679 5 C s 27 0.245679 6 C s + + Vector 12 Occ=2.000000D+00 E=-1.031755D+00 Symmetry=bu + MO Center= 2.1D-17, 2.3D-16, -1.9D-22, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.295181 11 C s 41 -0.295181 12 C s + 2 -0.265047 1 C s 7 0.265047 2 C s + 48 0.215657 15 C s 53 -0.215657 16 C s + + Vector 13 Occ=2.000000D+00 E=-9.883568D-01 Symmetry=ag + MO Center= -3.8D-17, -3.1D-16, 4.9D-21, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.313178 11 C s 41 0.313178 12 C s + 48 0.309220 15 C s 53 0.309220 16 C s + + Vector 14 Occ=2.000000D+00 E=-9.610798D-01 Symmetry=bu + MO Center= 5.5D-17, -3.1D-17, 1.4D-25, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.354078 3 C s 17 -0.354078 4 C s + 22 0.321041 5 C s 27 -0.321041 6 C s + + Vector 15 Occ=2.000000D+00 E=-9.227190D-01 Symmetry=bu + MO Center= -1.3D-17, -2.9D-16, -2.7D-24, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.283311 15 C s 53 -0.283311 16 C s + 2 0.279457 1 C s 7 -0.279457 2 C s + 22 -0.200177 5 C s 27 0.200177 6 C s + + Vector 16 Occ=2.000000D+00 E=-8.065744D-01 Symmetry=ag + MO Center= -1.1D-16, 1.9D-16, -3.0D-36, r^2= 8.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.233234 5 C s 27 0.233234 6 C s + 48 0.226747 15 C s 53 0.226747 16 C s + 2 -0.207417 1 C s 7 -0.207417 2 C s + 14 -0.166951 3 C py 19 0.166951 4 C py + 36 -0.156251 11 C s 41 -0.156251 12 C s + + Vector 17 Occ=2.000000D+00 E=-7.714319D-01 Symmetry=ag + MO Center= 3.2D-17, 6.2D-17, -6.6D-20, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.319439 3 C s 17 0.319439 4 C s + 3 0.189421 1 C px 8 -0.189421 2 C px + 24 0.174135 5 C py 29 -0.174135 6 C py + 31 0.172043 7 H s 32 0.172043 8 H s + 22 -0.165451 5 C s 27 -0.165451 6 C s + + Vector 18 Occ=2.000000D+00 E=-7.330410D-01 Symmetry=bu + MO Center= 5.6D-17, -2.2D-16, 1.2D-20, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.293398 11 C s 41 -0.293398 12 C s + 48 -0.246703 15 C s 53 0.246703 16 C s + 45 0.177451 13 H s 46 -0.177451 14 H s + 57 -0.166288 17 H s 58 0.166288 18 H s + + Vector 19 Occ=2.000000D+00 E=-7.072519D-01 Symmetry=ag + MO Center= 1.1D-16, 6.9D-17, -7.5D-22, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.196161 5 C px 28 -0.196161 6 C px + 36 0.180242 11 C s 41 0.180242 12 C s + 13 0.178370 3 C px 18 -0.178370 4 C px + 33 0.171347 9 H s 34 0.171347 10 H s + 48 -0.162778 15 C s 53 -0.162778 16 C s + + Vector 20 Occ=2.000000D+00 E=-6.393082D-01 Symmetry=ag + MO Center= -2.8D-17, -8.7D-19, -1.2D-33, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.210371 15 C px 54 -0.210371 16 C px + 38 0.182588 11 C py 43 -0.182588 12 C py + 57 0.182010 17 H s 58 0.182010 18 H s + 45 -0.153917 13 H s 46 -0.153917 14 H s + + Vector 21 Occ=2.000000D+00 E=-6.152351D-01 Symmetry=bu + MO Center= -3.4D-17, -5.6D-17, 1.2D-24, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.215743 11 C px 42 0.215743 12 C px + 50 0.214998 15 C py 55 0.214998 16 C py + 14 0.188242 3 C py 19 0.188242 4 C py + 59 -0.187677 19 H s 60 0.187677 20 H s + 45 -0.156209 13 H s 46 0.156209 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.776710D-01 Symmetry=bu + MO Center= 1.1D-16, -2.3D-16, 5.3D-24, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.234997 9 H s 34 -0.234997 10 H s + 31 -0.233769 7 H s 32 0.233769 8 H s + 13 -0.226608 3 C px 18 -0.226608 4 C px + 2 0.221251 1 C s 7 -0.221251 2 C s + 24 -0.179142 5 C py 29 -0.179142 6 C py + + Vector 23 Occ=2.000000D+00 E=-5.638582D-01 Symmetry=bu + MO Center= 1.2D-17, -1.1D-16, -3.0D-37, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.257224 5 C px 28 0.257224 6 C px + 49 0.246430 15 C px 54 0.246430 16 C px + 3 -0.217026 1 C px 8 -0.217026 2 C px + 57 0.214861 17 H s 58 -0.214861 18 H s + 38 0.173250 11 C py 43 0.173250 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.628598D-01 Symmetry=ag + MO Center= 3.5D-18, 5.6D-16, 5.7D-23, r^2= 1.4D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.338156 15 C py 55 -0.338156 16 C py + 59 -0.265289 19 H s 60 -0.265289 20 H s + 37 0.252238 11 C px 42 -0.252238 12 C px + 45 -0.152103 13 H s 46 -0.152103 14 H s + + Vector 25 Occ=2.000000D+00 E=-5.325889D-01 Symmetry=bu + MO Center= 1.4D-16, 8.5D-17, 1.3D-22, r^2= 4.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.304286 3 C px 18 0.304286 4 C px + 31 0.256086 7 H s 32 -0.256086 8 H s + 24 -0.227528 5 C py 29 -0.227528 6 C py + 33 0.221271 9 H s 34 -0.221271 10 H s + 23 0.186535 5 C px 28 0.186535 6 C px + + Vector 26 Occ=2.000000D+00 E=-5.072873D-01 Symmetry=bu + MO Center= 6.4D-17, -1.4D-16, -4.8D-37, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.239032 15 C py 55 -0.239032 16 C py + 14 0.224753 3 C py 19 0.224753 4 C py + 37 -0.209605 11 C px 42 -0.209605 12 C px + 24 -0.189267 5 C py 29 -0.189267 6 C py + 38 0.188283 11 C py 43 0.188283 12 C py + + Vector 27 Occ=2.000000D+00 E=-4.981434D-01 Symmetry=ag + MO Center= -2.6D-18, -2.8D-16, -1.1D-22, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.296227 15 C px 54 -0.296227 16 C px + 57 0.268760 17 H s 58 0.268760 18 H s + 37 -0.206923 11 C px 42 0.206923 12 C px + 45 0.202023 13 H s 46 0.202023 14 H s + 31 -0.156815 7 H s 32 -0.156815 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.774320D-01 Symmetry=au + MO Center= 8.4D-17, -1.4D-17, -1.0D-19, r^2= 3.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.328851 1 C pz 10 0.328851 2 C pz + 15 0.302058 3 C pz 20 0.302058 4 C pz + 25 0.301287 5 C pz 30 0.301287 6 C pz + 39 0.158952 11 C pz 44 0.158952 12 C pz + + Vector 29 Occ=2.000000D+00 E=-4.490109D-01 Symmetry=bu + MO Center= -6.2D-17, 1.7D-16, 4.5D-24, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.255859 13 H s 46 -0.255859 14 H s + 4 0.248395 1 C py 9 0.248395 2 C py + 57 0.227470 17 H s 58 -0.227470 18 H s + 59 -0.218084 19 H s 60 0.218084 20 H s + 37 -0.213223 11 C px 42 -0.213223 12 C px + + Vector 30 Occ=2.000000D+00 E=-4.258775D-01 Symmetry=ag + MO Center= -5.7D-17, 2.8D-17, 3.1D-21, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.282547 9 H s 34 0.282547 10 H s + 3 0.246244 1 C px 8 -0.246244 2 C px + 14 0.224430 3 C py 19 -0.224430 4 C py + 13 -0.221888 3 C px 18 0.221888 4 C px + 4 -0.205734 1 C py 9 0.205734 2 C py + + Vector 31 Occ=2.000000D+00 E=-4.185098D-01 Symmetry=ag + MO Center= 2.5D-16, -1.4D-17, -8.0D-22, r^2= 7.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.221574 7 H s 32 -0.221574 8 H s + 23 0.215038 5 C px 28 -0.215038 6 C px + 3 0.211312 1 C px 8 -0.211312 2 C px + 38 0.211755 11 C py 43 -0.211755 12 C py + 4 0.207743 1 C py 9 -0.207743 2 C py + + Vector 32 Occ=2.000000D+00 E=-3.867880D-01 Symmetry=bg + MO Center= 1.4D-17, 3.6D-38, -1.6D-19, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.381582 11 C pz 44 -0.381582 12 C pz + 5 -0.312871 1 C pz 10 0.312871 2 C pz + 51 0.309808 15 C pz 56 -0.309808 16 C pz + + Vector 33 Occ=2.000000D+00 E=-3.266843D-01 Symmetry=au + MO Center= -1.4D-17, 1.1D-16, -4.1D-20, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.426239 15 C pz 56 0.426239 16 C pz + 39 0.415134 11 C pz 44 0.415134 12 C pz + 15 -0.158487 3 C pz 20 -0.158487 4 C pz + 25 -0.158689 5 C pz 30 -0.158689 6 C pz + + Vector 34 Occ=2.000000D+00 E=-2.858023D-01 Symmetry=bg + MO Center= 5.6D-17, -8.3D-17, -3.2D-22, r^2= 2.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.458789 3 C pz 20 -0.458789 4 C pz + 25 0.460961 5 C pz 30 -0.460961 6 C pz + + Vector 35 Occ=2.000000D+00 E=-2.330446D-01 Symmetry=bg + MO Center= 1.2D-41, -1.1D-16, -1.0D-21, r^2= 6.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.420344 1 C pz 10 -0.420344 2 C pz + 51 0.351161 15 C pz 56 -0.351161 16 C pz + 15 0.233818 3 C pz 20 -0.233818 4 C pz + 25 -0.231485 5 C pz 30 0.231485 6 C pz + 39 0.217042 11 C pz 44 -0.217042 12 C pz + + Vector 36 Occ=0.000000D+00 E= 2.066170D-01 Symmetry=au + MO Center= 6.2D-17, 2.2D-16, 1.7D-19, r^2= 7.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.478780 1 C pz 10 0.478780 2 C pz + 51 -0.411571 15 C pz 56 -0.411571 16 C pz + 25 -0.283914 5 C pz 30 -0.283914 6 C pz + 15 -0.250566 3 C pz 20 -0.250566 4 C pz + 39 0.249875 11 C pz 44 0.249875 12 C pz + + Vector 37 Occ=0.000000D+00 E= 2.733630D-01 Symmetry=au + MO Center= 7.2D-21, -2.7D-20, 1.6D-20, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.583625 3 C pz 20 0.583625 4 C pz + 25 -0.560123 5 C pz 30 -0.560123 6 C pz + + Vector 38 Occ=0.000000D+00 E= 3.183163D-01 Symmetry=bg + MO Center= 5.6D-17, 4.4D-16, -1.2D-20, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.537558 15 C pz 56 0.537558 16 C pz + 39 0.531734 11 C pz 44 -0.531734 12 C pz + 15 0.221794 3 C pz 20 -0.221794 4 C pz + 25 -0.216143 5 C pz 30 0.216143 6 C pz + + Vector 39 Occ=0.000000D+00 E= 4.059818D-01 Symmetry=au + MO Center= -8.3D-17, -7.2D-16, -1.1D-20, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.539290 11 C pz 44 0.539290 12 C pz + 5 -0.472841 1 C pz 10 -0.472841 2 C pz + 51 -0.415749 15 C pz 56 -0.415749 16 C pz + 25 0.189782 5 C pz 30 0.189782 6 C pz + 15 0.162189 3 C pz 20 0.162189 4 C pz + + Vector 40 Occ=0.000000D+00 E= 5.376631D-01 Symmetry=bg + MO Center= 1.2D-16, 6.9D-17, 2.5D-21, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.545529 1 C pz 10 -0.545529 2 C pz + 25 0.479627 5 C pz 30 -0.479627 6 C pz + 15 -0.477217 3 C pz 20 0.477217 4 C pz + 39 0.274931 11 C pz 44 -0.274931 12 C pz + 51 -0.157896 15 C pz 56 0.157896 16 C pz + + Vector 41 Occ=0.000000D+00 E= 5.688910D-01 Symmetry=ag + MO Center= 9.2D-18, 5.6D-17, -1.4D-20, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.417897 7 H s 32 -0.417897 8 H s + 33 -0.417311 9 H s 34 -0.417311 10 H s + 2 0.397697 1 C s 7 0.397697 2 C s + 59 -0.351622 19 H s 60 -0.351622 20 H s + 38 -0.348667 11 C py 43 0.348667 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.832026D-01 Symmetry=bu + MO Center= -1.2D-16, -1.3D-15, -2.7D-20, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.434524 13 H s 46 -0.434524 14 H s + 37 0.355849 11 C px 42 0.355849 12 C px + 13 0.341731 3 C px 18 0.341731 4 C px + 57 -0.335652 17 H s 58 0.335652 18 H s + 59 0.319213 19 H s 60 -0.319213 20 H s + + Vector 43 Occ=0.000000D+00 E= 6.326170D-01 Symmetry=bu + MO Center= 9.6D-17, -5.0D-16, -1.9D-20, r^2= 6.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.532708 11 C s 41 -0.532708 12 C s + 33 0.460301 9 H s 34 -0.460301 10 H s + 4 0.457464 1 C py 9 0.457464 2 C py + 24 0.333418 5 C py 29 0.333418 6 C py + 38 0.323095 11 C py 43 0.323095 12 C py + + Vector 44 Occ=0.000000D+00 E= 6.355275D-01 Symmetry=ag + MO Center= -1.1D-16, 8.9D-16, 2.4D-20, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.586287 13 H s 46 0.586287 14 H s + 36 -0.410106 11 C s 41 -0.410106 12 C s + 12 0.386825 3 C s 17 0.386825 4 C s + 57 -0.388242 17 H s 58 -0.388242 18 H s + 37 0.339558 11 C px 42 -0.339558 12 C px + + Vector 45 Occ=0.000000D+00 E= 6.822890D-01 Symmetry=ag + MO Center= 1.7D-16, 3.9D-16, 4.5D-20, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.722469 15 C s 53 0.722469 16 C s + 22 0.571519 5 C s 27 0.571519 6 C s + 57 -0.558260 17 H s 58 -0.558260 18 H s + 12 -0.417703 3 C s 17 -0.417703 4 C s + 59 -0.378101 19 H s 60 -0.378101 20 H s + + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2577.189475393569 -1.481861862473 0.000000000000 + -1.481861862473 375.843264491353 0.000000000000 + 0.000000000000 0.000000000000 2953.032739884923 + + Mulliken analysis of the total density + -------------------------------------- + + Atom Charge Shell Charges + ----------- ------ ------------------------------------------------------- + 1 C 6 6.00 1.99 1.12 2.88 + 2 C 6 6.00 1.99 1.12 2.88 + 3 C 6 6.06 1.99 1.13 2.94 + 4 C 6 6.06 1.99 1.13 2.94 + 5 C 6 6.06 1.99 1.13 2.94 + 6 C 6 6.06 1.99 1.13 2.94 + 7 H 1 0.94 0.94 + 8 H 1 0.94 0.94 + 9 H 1 0.94 0.94 + 10 H 1 0.94 0.94 + 11 C 6 6.06 1.99 1.14 2.93 + 12 C 6 6.06 1.99 1.14 2.93 + 13 H 1 0.94 0.94 + 14 H 1 0.94 0.94 + 15 C 6 6.13 1.99 1.15 2.99 + 16 C 6 6.13 1.99 1.15 2.99 + 17 H 1 0.94 0.94 + 18 H 1 0.94 0.94 + 19 H 1 0.94 0.94 + 20 H 1 0.94 0.94 + + Multipole analysis of the density wrt the origin + ------------------------------------------------ + + L x y z total open nuclear + - - - - ----- ---- ------- + 0 0 0 0 -0.000000 0.000000 70.000000 + + 1 1 0 0 -0.000000 0.000000 0.000000 + 1 0 1 0 -0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 + + 2 2 0 0 -38.502741 0.000000 235.725539 + 2 1 1 0 0.101398 0.000000 -4.523542 + 2 1 0 1 0.000000 0.000000 0.000000 + 2 0 2 0 -39.159478 0.000000 1465.845386 + 2 0 1 1 0.000000 0.000000 0.000000 + 2 0 0 2 -43.440847 0.000000 0.000000 + + + Parallel integral file used 9 records with 0 large values + + NWChem Gradients Module + ----------------------- + + + Divinylbenzene in STO-3G basis set + + + wavefunction = RHF + + Using symmetry + + + RHF ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.429586 2.632502 0.000000 -0.000188 0.000671 0.000000 + 2 C -0.429586 -2.632502 0.000000 0.000188 -0.000671 0.000000 + 3 C 2.435078 0.918425 0.000000 -0.000241 -0.000683 0.000000 + 4 C -2.435078 -0.918425 0.000000 0.000241 0.000683 0.000000 + 5 C 2.020386 -1.658747 0.000000 0.000156 0.000899 0.000000 + 6 C -2.020386 1.658747 0.000000 -0.000156 -0.000899 0.000000 + 7 H 4.353311 1.628538 0.000000 -0.000218 0.000076 0.000000 + 8 H -4.353311 -1.628538 0.000000 0.000218 -0.000076 0.000000 + 9 H 3.621777 -2.927506 0.000000 -0.000354 -0.000177 0.000000 + 10 H -3.621777 2.927506 0.000000 0.000354 0.000177 0.000000 + 11 C -0.986425 -5.402907 0.000000 -0.000820 0.001736 0.000000 + 12 C 0.986425 5.402907 0.000000 0.000820 -0.001736 0.000000 + 13 H -2.983621 -5.859829 0.000000 0.000275 -0.000224 0.000000 + 14 H 2.983621 5.859829 0.000000 -0.000275 0.000224 0.000000 + 15 C 0.666704 -7.256901 0.000000 0.000945 -0.001691 0.000000 + 16 C -0.666704 7.256901 0.000000 -0.000945 0.001691 0.000000 + 17 H 2.684349 -6.947768 0.000000 -0.000288 0.000292 0.000000 + 18 H -2.684349 6.947768 0.000000 0.000288 -0.000292 0.000000 + 19 H 0.067975 -9.209618 0.000000 -0.000118 0.000298 0.000000 + 20 H -0.067975 9.209618 0.000000 0.000118 -0.000298 0.000000 + + ---------------------------------------- + | Time | 1-e(secs) | 2-e(secs) | + ---------------------------------------- + | CPU | 0.02 | 2.67 | + ---------------------------------------- + | WALL | 0.02 | 2.68 | + ---------------------------------------- + + Step Energy Delta E Gmax Grms Xrms Xmax Walltime + ---- ---------------- -------- -------- -------- -------- -------- -------- +@ 2 -379.77794602 -7.4D-05 0.00118 0.00023 0.00440 0.01818 20.7 + ok + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value Gradient + ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- + 1 Stretch 1 3 1.39607 -0.00013 + 2 Stretch 1 6 1.39512 -0.00032 + 3 Stretch 1 12 1.49536 -0.00040 + 4 Stretch 2 4 1.39607 -0.00013 + 5 Stretch 2 5 1.39512 -0.00032 + 6 Stretch 2 11 1.49536 -0.00040 + 7 Stretch 3 5 1.38132 -0.00056 + 8 Stretch 3 7 1.08241 -0.00018 + 9 Stretch 4 6 1.38132 -0.00056 + 10 Stretch 4 8 1.08241 -0.00018 + 11 Stretch 5 9 1.08115 -0.00017 + 12 Stretch 6 10 1.08115 -0.00017 + 13 Stretch 11 13 1.08418 -0.00022 + 14 Stretch 11 15 1.31446 0.00118 + 15 Stretch 12 14 1.08418 -0.00022 + 16 Stretch 12 16 1.31446 0.00118 + 17 Stretch 15 17 1.08015 -0.00024 + 18 Stretch 15 19 1.08082 -0.00025 + 19 Stretch 16 18 1.08015 -0.00024 + 20 Stretch 16 20 1.08082 -0.00025 + 21 Bend 1 3 5 121.37912 0.00008 + 22 Bend 1 3 7 119.16567 -0.00012 + 23 Bend 1 6 4 120.81671 0.00003 + 24 Bend 1 6 10 119.93511 -0.00021 + 25 Bend 1 12 14 114.25124 0.00010 + 26 Bend 1 12 16 126.91315 0.00009 + 27 Bend 2 4 6 121.37912 0.00008 + 28 Bend 2 4 8 119.16567 -0.00012 + 29 Bend 2 5 3 120.81671 0.00003 + 30 Bend 2 5 9 119.93511 -0.00021 + 31 Bend 2 11 13 114.25124 0.00010 + 32 Bend 2 11 15 126.91315 0.00009 + 33 Bend 3 1 6 117.80418 -0.00011 + 34 Bend 3 1 12 119.15544 -0.00001 + 35 Bend 3 5 9 119.24818 0.00018 + 36 Bend 4 2 5 117.80418 -0.00011 + 37 Bend 4 2 11 119.15544 -0.00001 + 38 Bend 4 6 10 119.24818 0.00018 + 39 Bend 5 2 11 123.04039 0.00011 + 40 Bend 5 3 7 119.45522 0.00004 + 41 Bend 6 1 12 123.04039 0.00011 + 42 Bend 6 4 8 119.45522 0.00004 + 43 Bend 11 15 17 123.01126 -0.00017 + 44 Bend 11 15 19 121.23170 -0.00002 + 45 Bend 12 16 18 123.01126 -0.00017 + 46 Bend 12 16 20 121.23170 -0.00002 + 47 Bend 13 11 15 118.83561 -0.00020 + 48 Bend 14 12 16 118.83561 -0.00020 + 49 Bend 17 15 19 115.75703 0.00019 + 50 Bend 18 16 20 115.75703 0.00019 + 51 Torsion 1 3 5 2 0.00000 0.00000 + 52 Torsion 1 3 5 9 180.00000 0.00000 + 53 Torsion 1 6 4 2 0.00000 0.00000 + 54 Torsion 1 6 4 8 180.00000 0.00000 + 55 Torsion 1 12 16 18 0.00000 0.00000 + 56 Torsion 1 12 16 20 180.00000 0.00000 + 57 Torsion 2 4 6 10 180.00000 0.00000 + 58 Torsion 2 5 3 7 180.00000 0.00000 + 59 Torsion 2 11 15 17 0.00000 0.00000 + 60 Torsion 2 11 15 19 180.00000 0.00000 + 61 Torsion 3 1 6 4 0.00000 0.00000 + 62 Torsion 3 1 6 10 180.00000 0.00000 + 63 Torsion 3 1 12 14 0.00000 0.00000 + 64 Torsion 3 1 12 16 180.00000 0.00000 + 65 Torsion 3 5 2 4 0.00000 0.00000 + 66 Torsion 3 5 2 11 180.00000 0.00000 + 67 Torsion 4 2 5 9 180.00000 0.00000 + 68 Torsion 4 2 11 13 0.00000 0.00000 + 69 Torsion 4 2 11 15 180.00000 0.00000 + 70 Torsion 4 6 1 12 180.00000 0.00000 + 71 Torsion 5 2 4 6 -0.00000 0.00000 + 72 Torsion 5 2 4 8 180.00000 0.00000 + 73 Torsion 5 2 11 13 180.00000 0.00000 + 74 Torsion 5 2 11 15 0.00000 0.00000 + 75 Torsion 5 3 1 6 0.00000 0.00000 + 76 Torsion 5 3 1 12 180.00000 0.00000 + 77 Torsion 6 1 3 7 180.00000 0.00000 + 78 Torsion 6 1 12 14 180.00000 0.00000 + 79 Torsion 6 1 12 16 0.00000 0.00000 + 80 Torsion 6 4 2 11 180.00000 0.00000 + 81 Torsion 7 3 1 12 -0.00000 0.00000 + 82 Torsion 7 3 5 9 0.00000 0.00000 + 83 Torsion 8 4 2 11 -0.00000 0.00000 + 84 Torsion 8 4 6 10 0.00000 0.00000 + 85 Torsion 9 5 2 11 0.00000 0.00000 + 86 Torsion 10 6 1 12 0.00000 0.00000 + 87 Torsion 13 11 15 17 180.00000 0.00000 + 88 Torsion 13 11 15 19 -0.00000 0.00000 + 89 Torsion 14 12 16 18 180.00000 0.00000 + 90 Torsion 14 12 16 20 -0.00000 0.00000 + + NWChem SCF Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + ao basis = "ao basis" + functions = 60 + atoms = 20 + closed shells = 35 + open shells = 0 + charge = 0.00 + wavefunction = RHF + input vectors = ./dvb.movecs + output vectors = ./dvb.movecs + use symmetry = T + symmetry adapt = T + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + + Forming initial guess at 21.1s + + + Loading old vectors from job with title : + +Divinylbenzene in STO-3G basis set + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + + Starting SCF solution at 21.1s + + + + ---------------------------------------------- + Quadratically convergent ROHF + + Convergence threshold : 1.000E-04 + Maximum no. of iterations : 30 + Final Fock-matrix accuracy: 1.000E-07 + ---------------------------------------------- + + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.173D+05 #integrals = 3.523D+05 #direct = 0.0% #cached =100.0% + + + iter energy gnorm gmax time + ----- ------------------- --------- --------- -------- + 1 -379.7779543112 3.20D-03 7.92D-04 20.7 + 2 -379.7779550126 2.03D-05 5.29D-06 20.8 + + + Final RHF results + ------------------ + + Total SCF energy = -379.777955012633 + One-electron energy = -1412.153753738604 + Two-electron energy = 580.252590970591 + Nuclear repulsion energy = 452.123207755380 + + Time for solution = 1.8s + + + + Symmetry analysis of molecular orbitals - final + ----------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + Final eigenvalues + ----------------- + + 1 + 1 -11.0409 + 2 -11.0409 + 3 -11.0324 + 4 -11.0324 + 5 -11.0289 + 6 -11.0288 + 7 -11.0284 + 8 -11.0283 + 9 -11.0180 + 10 -11.0180 + 11 -1.1067 + 12 -1.0317 + 13 -0.9884 + 14 -0.9609 + 15 -0.9227 + 16 -0.8064 + 17 -0.7713 + 18 -0.7330 + 19 -0.7072 + 20 -0.6391 + 21 -0.6151 + 22 -0.5776 + 23 -0.5638 + 24 -0.5629 + 25 -0.5325 + 26 -0.5074 + 27 -0.4981 + 28 -0.4773 + 29 -0.4486 + 30 -0.4260 + 31 -0.4182 + 32 -0.3868 + 33 -0.3269 + 34 -0.2856 + 35 -0.2332 + 36 0.2070 + 37 0.2732 + 38 0.3186 + 39 0.4061 + 40 0.5375 + 41 0.5684 + 42 0.5828 + 43 0.6323 + 44 0.6349 + 45 0.6824 + + ROHF Final Molecular Orbital Analysis + ------------------------------------- + + Vector 11 Occ=2.000000D+00 E=-1.106654D+00 Symmetry=ag + MO Center= -6.8D-18, -3.4D-17, 5.4D-37, r^2= 2.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.271040 1 C s 7 0.271040 2 C s + 12 0.245753 3 C s 17 0.245753 4 C s + 22 0.245633 5 C s 27 0.245633 6 C s + + Vector 12 Occ=2.000000D+00 E=-1.031718D+00 Symmetry=bu + MO Center= 2.1D-17, 1.6D-16, -6.5D-24, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.295359 11 C s 41 -0.295359 12 C s + 2 -0.264621 1 C s 7 0.264621 2 C s + 48 0.216121 15 C s 53 -0.216121 16 C s + + Vector 13 Occ=2.000000D+00 E=-9.884358D-01 Symmetry=ag + MO Center= -4.6D-17, -3.1D-16, 5.1D-21, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.313077 11 C s 41 0.313077 12 C s + 48 0.309299 15 C s 53 0.309299 16 C s + + Vector 14 Occ=2.000000D+00 E=-9.609325D-01 Symmetry=bu + MO Center= 1.7D-16, -1.6D-17, 5.5D-25, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.354271 3 C s 17 -0.354271 4 C s + 22 0.320741 5 C s 27 -0.320741 6 C s + + Vector 15 Occ=2.000000D+00 E=-9.226869D-01 Symmetry=bu + MO Center= -3.8D-17, -1.8D-16, 1.7D-24, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.282882 15 C s 53 -0.282882 16 C s + 2 0.279932 1 C s 7 -0.279932 2 C s + 22 -0.200868 5 C s 27 0.200868 6 C s + + Vector 16 Occ=2.000000D+00 E=-8.064084D-01 Symmetry=ag + MO Center= -6.9D-17, 2.2D-16, 1.4D-22, r^2= 8.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.233466 5 C s 27 0.233466 6 C s + 48 0.226409 15 C s 53 0.226409 16 C s + 2 -0.207372 1 C s 7 -0.207372 2 C s + 14 -0.166928 3 C py 19 0.166928 4 C py + 36 -0.156349 11 C s 41 -0.156349 12 C s + + Vector 17 Occ=2.000000D+00 E=-7.712747D-01 Symmetry=ag + MO Center= 7.8D-17, 1.5D-16, -2.6D-24, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.319588 3 C s 17 0.319588 4 C s + 3 0.189452 1 C px 8 -0.189452 2 C px + 24 0.173820 5 C py 29 -0.173820 6 C py + 31 0.172194 7 H s 32 0.172194 8 H s + 22 -0.165458 5 C s 27 -0.165458 6 C s + + Vector 18 Occ=2.000000D+00 E=-7.329502D-01 Symmetry=bu + MO Center= 4.0D-17, 5.6D-17, 1.2D-20, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.293349 11 C s 41 -0.293349 12 C s + 48 -0.246639 15 C s 53 0.246639 16 C s + 45 0.177493 13 H s 46 -0.177493 14 H s + 57 -0.166391 17 H s 58 0.166391 18 H s + + Vector 19 Occ=2.000000D+00 E=-7.072298D-01 Symmetry=ag + MO Center= 7.5D-17, 1.2D-16, -1.2D-21, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.196015 5 C px 28 -0.196015 6 C px + 36 0.180383 11 C s 41 0.180383 12 C s + 13 0.178167 3 C px 18 -0.178167 4 C px + 33 0.171317 9 H s 34 0.171317 10 H s + 48 -0.162895 15 C s 53 -0.162895 16 C s + + Vector 20 Occ=2.000000D+00 E=-6.391285D-01 Symmetry=ag + MO Center= 1.5D-17, -2.3D-17, -7.6D-22, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.210582 15 C px 54 -0.210582 16 C px + 38 0.182874 11 C py 43 -0.182874 12 C py + 57 0.182015 17 H s 58 0.182015 18 H s + 45 -0.153442 13 H s 46 -0.153442 14 H s + + Vector 21 Occ=2.000000D+00 E=-6.150846D-01 Symmetry=bu + MO Center= -9.8D-17, -5.6D-17, 3.8D-25, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.216132 11 C px 42 0.216132 12 C px + 50 0.215149 15 C py 55 0.215149 16 C py + 14 0.188168 3 C py 19 0.188168 4 C py + 59 -0.187496 19 H s 60 0.187496 20 H s + 45 -0.156488 13 H s 46 0.156488 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.776231D-01 Symmetry=bu + MO Center= -4.2D-17, 4.2D-17, 3.2D-36, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.234658 7 H s 32 0.234658 8 H s + 33 0.234696 9 H s 34 -0.234696 10 H s + 13 -0.227224 3 C px 18 -0.227224 4 C px + 2 0.221308 1 C s 7 -0.221308 2 C s + 24 -0.178021 5 C py 29 -0.178021 6 C py + + Vector 23 Occ=2.000000D+00 E=-5.638139D-01 Symmetry=bu + MO Center= 1.1D-17, -3.1D-16, -4.7D-25, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.257150 5 C px 28 0.257150 6 C px + 49 0.246928 15 C px 54 0.246928 16 C px + 3 -0.216750 1 C px 8 -0.216750 2 C px + 57 0.215142 17 H s 58 -0.215142 18 H s + 38 0.174090 11 C py 43 0.174090 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.628773D-01 Symmetry=ag + MO Center= -2.8D-17, 0.0D+00, -1.3D-22, r^2= 1.4D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.337894 15 C py 55 -0.337894 16 C py + 59 -0.264555 19 H s 60 -0.264555 20 H s + 37 0.253563 11 C px 42 -0.253563 12 C px + 45 -0.153451 13 H s 46 -0.153451 14 H s + + Vector 25 Occ=2.000000D+00 E=-5.325179D-01 Symmetry=bu + MO Center= -1.0D-16, 4.6D-17, 1.3D-22, r^2= 4.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.304546 3 C px 18 0.304546 4 C px + 31 0.255629 7 H s 32 -0.255629 8 H s + 24 -0.226735 5 C py 29 -0.226735 6 C py + 33 0.220959 9 H s 34 -0.220959 10 H s + 23 0.186204 5 C px 28 0.186204 6 C px + + Vector 26 Occ=2.000000D+00 E=-5.074061D-01 Symmetry=bu + MO Center= 6.1D-17, 5.6D-17, -3.0D-24, r^2= 8.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.237948 15 C py 55 -0.237948 16 C py + 14 0.226865 3 C py 19 0.226865 4 C py + 37 -0.210150 11 C px 42 -0.210150 12 C px + 24 -0.192005 5 C py 29 -0.192005 6 C py + 38 0.186299 11 C py 43 0.186299 12 C py + + Vector 27 Occ=2.000000D+00 E=-4.981034D-01 Symmetry=ag + MO Center= -8.2D-17, 1.1D-16, -1.2D-24, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.295899 15 C px 54 -0.295899 16 C px + 57 0.268745 17 H s 58 0.268745 18 H s + 37 -0.205395 11 C px 42 0.205395 12 C px + 45 0.201220 13 H s 46 0.201220 14 H s + 31 -0.156903 7 H s 32 -0.156903 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.772651D-01 Symmetry=au + MO Center= 4.3D-19, -7.6D-17, 2.2D-20, r^2= 3.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.328899 1 C pz 10 0.328899 2 C pz + 15 0.302001 3 C pz 20 0.302001 4 C pz + 25 0.301195 5 C pz 30 0.301195 6 C pz + 39 0.159135 11 C pz 44 0.159135 12 C pz + + Vector 29 Occ=2.000000D+00 E=-4.486298D-01 Symmetry=bu + MO Center= 1.7D-18, -3.3D-16, 4.9D-24, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.255263 13 H s 46 -0.255263 14 H s + 4 0.249193 1 C py 9 0.249193 2 C py + 57 0.227201 17 H s 58 -0.227201 18 H s + 59 -0.218870 19 H s 60 0.218870 20 H s + 37 -0.212205 11 C px 42 -0.212205 12 C px + + Vector 30 Occ=2.000000D+00 E=-4.259545D-01 Symmetry=ag + MO Center= 2.6D-18, -2.2D-16, 2.9D-21, r^2= 4.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.283961 9 H s 34 0.283961 10 H s + 3 0.255444 1 C px 8 -0.255444 2 C px + 13 -0.228382 3 C px 18 0.228382 4 C px + 14 0.216875 3 C py 19 -0.216875 4 C py + 23 0.211741 5 C px 28 -0.211741 6 C px + + Vector 31 Occ=2.000000D+00 E=-4.181829D-01 Symmetry=ag + MO Center= -7.1D-17, -1.5D-16, -4.8D-22, r^2= 7.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.219652 11 C py 43 -0.219652 12 C py + 4 0.216975 1 C py 9 -0.216975 2 C py + 31 -0.215098 7 H s 32 -0.215098 8 H s + 23 0.205614 5 C px 28 -0.205614 6 C px + 3 0.199802 1 C px 8 -0.199802 2 C px + + Vector 32 Occ=2.000000D+00 E=-3.868371D-01 Symmetry=bg + MO Center= 2.8D-17, 2.2D-16, -1.6D-19, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.381753 11 C pz 44 -0.381753 12 C pz + 5 -0.312311 1 C pz 10 0.312311 2 C pz + 51 0.310279 15 C pz 56 -0.310279 16 C pz + + Vector 33 Occ=2.000000D+00 E=-3.269036D-01 Symmetry=au + MO Center= 1.4D-17, -1.1D-16, -2.1D-21, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.426196 15 C pz 56 0.426196 16 C pz + 39 0.414993 11 C pz 44 0.414993 12 C pz + 15 -0.158557 3 C pz 20 -0.158557 4 C pz + 25 -0.158699 5 C pz 30 -0.158699 6 C pz + + Vector 34 Occ=2.000000D+00 E=-2.855845D-01 Symmetry=bg + MO Center= 5.6D-17, 2.8D-17, -3.0D-22, r^2= 2.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.458996 3 C pz 20 -0.458996 4 C pz + 25 0.460826 5 C pz 30 -0.460826 6 C pz + + Vector 35 Occ=2.000000D+00 E=-2.332358D-01 Symmetry=bg + MO Center= -2.5D-42, 3.3D-16, -1.1D-21, r^2= 6.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.420736 1 C pz 10 -0.420736 2 C pz + 51 0.350548 15 C pz 56 -0.350548 16 C pz + 15 0.233595 3 C pz 20 -0.233595 4 C pz + 25 -0.232032 5 C pz 30 0.232032 6 C pz + 39 0.216674 11 C pz 44 -0.216674 12 C pz + + Vector 36 Occ=0.000000D+00 E= 2.069561D-01 Symmetry=au + MO Center= -1.4D-17, 3.3D-16, -4.8D-20, r^2= 7.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.479160 1 C pz 10 0.479160 2 C pz + 51 -0.411118 15 C pz 56 -0.411118 16 C pz + 25 -0.284369 5 C pz 30 -0.284369 6 C pz + 15 -0.250578 3 C pz 20 -0.250578 4 C pz + 39 0.249778 11 C pz 44 0.249778 12 C pz + + Vector 37 Occ=0.000000D+00 E= 2.731505D-01 Symmetry=au + MO Center= -3.7D-42, 1.4D-20, 2.1D-23, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.583566 3 C pz 20 0.583566 4 C pz + 25 -0.559971 5 C pz 30 -0.559971 6 C pz + + Vector 38 Occ=0.000000D+00 E= 3.186101D-01 Symmetry=bg + MO Center= -2.8D-17, 6.5D-42, -1.2D-20, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.537697 15 C pz 56 0.537697 16 C pz + 39 0.531787 11 C pz 44 -0.531787 12 C pz + 15 0.221776 3 C pz 20 -0.221776 4 C pz + 25 -0.216153 5 C pz 30 0.216153 6 C pz + + Vector 39 Occ=0.000000D+00 E= 4.060614D-01 Symmetry=au + MO Center= 2.8D-17, 3.3D-16, -1.0D-22, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.539442 11 C pz 44 0.539442 12 C pz + 5 -0.472314 1 C pz 10 -0.472314 2 C pz + 51 -0.416297 15 C pz 56 -0.416297 16 C pz + 25 0.189498 5 C pz 30 0.189498 6 C pz + 15 0.162258 3 C pz 20 0.162258 4 C pz + + Vector 40 Occ=0.000000D+00 E= 5.374970D-01 Symmetry=bg + MO Center= -1.2D-16, 5.6D-17, 8.7D-22, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.545458 1 C pz 10 -0.545458 2 C pz + 15 -0.477098 3 C pz 20 0.477098 4 C pz + 25 0.479452 5 C pz 30 -0.479452 6 C pz + 39 0.274984 11 C pz 44 -0.274984 12 C pz + 51 -0.158188 15 C pz 56 0.158188 16 C pz + + Vector 41 Occ=0.000000D+00 E= 5.684402D-01 Symmetry=ag + MO Center= 1.9D-17, -1.7D-16, -1.4D-20, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.416641 7 H s 32 -0.416641 8 H s + 33 -0.415466 9 H s 34 -0.415466 10 H s + 2 0.396051 1 C s 7 0.396051 2 C s + 59 -0.352161 19 H s 60 -0.352161 20 H s + 38 -0.349638 11 C py 43 0.349638 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.827521D-01 Symmetry=bu + MO Center= 3.6D-17, -2.5D-16, -1.8D-20, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.433702 13 H s 46 -0.433702 14 H s + 37 0.355585 11 C px 42 0.355585 12 C px + 13 0.338735 3 C px 18 0.338735 4 C px + 57 -0.337814 17 H s 58 0.337814 18 H s + 59 0.322159 19 H s 60 -0.322159 20 H s + + Vector 43 Occ=0.000000D+00 E= 6.323190D-01 Symmetry=bu + MO Center= -7.3D-17, 8.3D-17, 3.2D-20, r^2= 6.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.533464 11 C s 41 -0.533464 12 C s + 33 0.462998 9 H s 34 -0.462998 10 H s + 4 0.456079 1 C py 9 0.456079 2 C py + 24 0.334681 5 C py 29 0.334681 6 C py + 38 0.320758 11 C py 43 0.320758 12 C py + + Vector 44 Occ=0.000000D+00 E= 6.348876D-01 Symmetry=ag + MO Center= 9.9D-17, 2.8D-17, 2.5D-20, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.583303 13 H s 46 0.583303 14 H s + 36 -0.409943 11 C s 41 -0.409943 12 C s + 57 -0.390206 17 H s 58 -0.390206 18 H s + 12 0.386370 3 C s 17 0.386370 4 C s + 37 0.336257 11 C px 42 -0.336257 12 C px + + Vector 45 Occ=0.000000D+00 E= 6.824439D-01 Symmetry=ag + MO Center= 1.6D-16, 0.0D+00, 4.4D-20, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.721856 15 C s 53 0.721856 16 C s + 22 0.572302 5 C s 27 0.572302 6 C s + 57 -0.554787 17 H s 58 -0.554787 18 H s + 12 -0.420239 3 C s 17 -0.420239 4 C s + 59 -0.380134 19 H s 60 -0.380134 20 H s + + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2576.837745220924 -1.554370059752 0.000000000000 + -1.554370059752 376.127728823556 0.000000000000 + 0.000000000000 0.000000000000 2952.965474044481 + + Mulliken analysis of the total density + -------------------------------------- + + Atom Charge Shell Charges + ----------- ------ ------------------------------------------------------- + 1 C 6 6.00 1.99 1.12 2.88 + 2 C 6 6.00 1.99 1.12 2.88 + 3 C 6 6.06 1.99 1.13 2.94 + 4 C 6 6.06 1.99 1.13 2.94 + 5 C 6 6.06 1.99 1.13 2.94 + 6 C 6 6.06 1.99 1.13 2.94 + 7 H 1 0.94 0.94 + 8 H 1 0.94 0.94 + 9 H 1 0.94 0.94 + 10 H 1 0.94 0.94 + 11 C 6 6.06 1.99 1.14 2.93 + 12 C 6 6.06 1.99 1.14 2.93 + 13 H 1 0.94 0.94 + 14 H 1 0.94 0.94 + 15 C 6 6.13 1.99 1.15 2.99 + 16 C 6 6.13 1.99 1.15 2.99 + 17 H 1 0.94 0.94 + 18 H 1 0.94 0.94 + 19 H 1 0.94 0.94 + 20 H 1 0.94 0.94 + + Multipole analysis of the density wrt the origin + ------------------------------------------------ + + L x y z total open nuclear + - - - - ----- ---- ------- + 0 0 0 0 -0.000000 0.000000 70.000000 + + 1 1 0 0 -0.000000 0.000000 0.000000 + 1 0 1 0 0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 + + 2 2 0 0 -38.488927 0.000000 235.917151 + 2 1 1 0 0.092490 0.000000 -4.521145 + 2 1 0 1 0.000000 0.000000 0.000000 + 2 0 2 0 -39.169836 0.000000 1465.644946 + 2 0 1 1 0.000000 0.000000 0.000000 + 2 0 0 2 -43.441840 0.000000 0.000000 + + + Parallel integral file used 9 records with 0 large values + + Line search: + step= 1.00 grad=-1.8D-05 hess= 8.9D-06 energy= -379.777955 mode=accept + new step= 1.00 predicted energy= -379.777955 + + -------- + Step 3 + -------- + + + Geometry "geometry" -> "geometry" + --------------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.22793038 1.39275351 0.00000000 + 2 C 6.0000 -0.22793038 -1.39275351 0.00000000 + 3 C 6.0000 1.28926244 0.48584793 0.00000000 + 4 C 6.0000 -1.28926244 -0.48584793 0.00000000 + 5 C 6.0000 1.06906799 -0.87846357 0.00000000 + 6 C 6.0000 -1.06906799 0.87846357 0.00000000 + 7 H 1.0000 2.30489717 0.86064400 0.00000000 + 8 H 1.0000 -2.30489717 -0.86064400 0.00000000 + 9 H 1.0000 1.91764263 -1.54869754 0.00000000 + 10 H 1.0000 -1.91764263 1.54869754 0.00000000 + 11 C 6.0000 -0.52228179 -2.85961381 0.00000000 + 12 C 6.0000 0.52228179 2.85961381 0.00000000 + 13 H 1.0000 -1.57970648 -3.10010258 0.00000000 + 14 H 1.0000 1.57970648 3.10010258 0.00000000 + 15 C 6.0000 0.35279638 -3.83931539 0.00000000 + 16 C 6.0000 -0.35279638 3.83931539 0.00000000 + 17 H 1.0000 1.42098800 -3.67698978 0.00000000 + 18 H 1.0000 -1.42098800 3.67698978 0.00000000 + 19 H 1.0000 0.03724867 -4.87336689 0.00000000 + 20 H 1.0000 -0.03724867 4.87336689 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 452.1232077554 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + NWChem SCF Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + ao basis = "ao basis" + functions = 60 + atoms = 20 + closed shells = 35 + open shells = 0 + charge = 0.00 + wavefunction = RHF + input vectors = ./dvb.movecs + output vectors = ./dvb.movecs + use symmetry = T + symmetry adapt = T + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + + The SCF is already converged + + Total SCF energy = -379.777955012633 + + NWChem Gradients Module + ----------------------- + + + Divinylbenzene in STO-3G basis set + + + wavefunction = RHF + + Using symmetry + + + RHF ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.430726 2.631923 0.000000 0.000062 -0.000072 0.000000 + 2 C -0.430726 -2.631923 0.000000 -0.000062 0.000072 0.000000 + 3 C 2.436353 0.918119 0.000000 0.000013 0.000061 0.000000 + 4 C -2.436353 -0.918119 0.000000 -0.000013 -0.000061 0.000000 + 5 C 2.020246 -1.660055 0.000000 -0.000000 -0.000085 0.000000 + 6 C -2.020246 1.660055 0.000000 0.000000 0.000085 0.000000 + 7 H 4.355624 1.626381 0.000000 -0.000010 0.000013 0.000000 + 8 H -4.355624 -1.626381 0.000000 0.000010 -0.000013 0.000000 + 9 H 3.623819 -2.926614 0.000000 -0.000001 -0.000020 0.000000 + 10 H -3.623819 2.926614 0.000000 0.000001 0.000020 0.000000 + 11 C -0.986969 -5.403887 0.000000 0.000096 -0.000001 0.000000 + 12 C 0.986969 5.403887 0.000000 -0.000096 0.000001 0.000000 + 13 H -2.985212 -5.858344 0.000000 -0.000022 0.000007 0.000000 + 14 H 2.985212 5.858344 0.000000 0.000022 -0.000007 0.000000 + 15 C 0.666688 -7.255254 0.000000 -0.000026 -0.000012 0.000000 + 16 C -0.666688 7.255254 0.000000 0.000026 0.000012 0.000000 + 17 H 2.685278 -6.948503 0.000000 0.000041 0.000008 0.000000 + 18 H -2.685278 6.948503 0.000000 -0.000041 -0.000008 0.000000 + 19 H 0.070390 -9.209328 0.000000 -0.000027 0.000019 0.000000 + 20 H -0.070390 9.209328 0.000000 0.000027 -0.000019 0.000000 + + ---------------------------------------- + | Time | 1-e(secs) | 2-e(secs) | + ---------------------------------------- + | CPU | 0.02 | 2.66 | + ---------------------------------------- + | WALL | 0.02 | 2.66 | + ---------------------------------------- + + Step Energy Delta E Gmax Grms Xrms Xmax Walltime + ---- ---------------- -------- -------- -------- -------- -------- -------- +@ 3 -379.77795501 -9.0D-06 0.00004 0.00002 0.00110 0.00242 26.1 + ok ok ok + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value Gradient + ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- + 1 Stretch 1 3 1.39603 -0.00002 + 2 Stretch 1 6 1.39524 -0.00002 + 3 Stretch 1 12 1.49610 -0.00003 + 4 Stretch 2 4 1.39603 -0.00002 + 5 Stretch 2 5 1.39524 -0.00002 + 6 Stretch 2 11 1.49610 -0.00003 + 7 Stretch 3 5 1.38197 0.00004 + 8 Stretch 3 7 1.08258 -0.00000 + 9 Stretch 4 6 1.38197 0.00004 + 10 Stretch 4 8 1.08258 -0.00000 + 11 Stretch 5 9 1.08134 0.00001 + 12 Stretch 6 10 1.08134 0.00001 + 13 Stretch 11 13 1.08443 0.00002 + 14 Stretch 11 15 1.31361 -0.00002 + 15 Stretch 12 14 1.08443 0.00002 + 16 Stretch 12 16 1.31361 -0.00002 + 17 Stretch 15 17 1.08045 0.00004 + 18 Stretch 15 19 1.08113 -0.00001 + 19 Stretch 16 18 1.08045 0.00004 + 20 Stretch 16 20 1.08113 -0.00001 + 21 Bend 1 3 5 121.34556 -0.00001 + 22 Bend 1 3 7 119.23080 -0.00000 + 23 Bend 1 6 4 120.79772 -0.00002 + 24 Bend 1 6 10 120.06761 -0.00000 + 25 Bend 1 12 14 114.15948 -0.00002 + 26 Bend 1 12 16 126.88178 0.00002 + 27 Bend 2 4 6 121.34556 -0.00001 + 28 Bend 2 4 8 119.23080 -0.00000 + 29 Bend 2 5 3 120.79772 -0.00002 + 30 Bend 2 5 9 120.06761 -0.00000 + 31 Bend 2 11 13 114.15948 -0.00002 + 32 Bend 2 11 15 126.88178 0.00002 + 33 Bend 3 1 6 117.85672 0.00003 + 34 Bend 3 1 12 119.16710 0.00001 + 35 Bend 3 5 9 119.13467 0.00002 + 36 Bend 4 2 5 117.85672 0.00003 + 37 Bend 4 2 11 119.16710 0.00001 + 38 Bend 4 6 10 119.13467 0.00002 + 39 Bend 5 2 11 122.97618 -0.00004 + 40 Bend 5 3 7 119.42364 0.00001 + 41 Bend 6 1 12 122.97618 -0.00004 + 42 Bend 6 4 8 119.42364 0.00001 + 43 Bend 11 15 17 123.13078 0.00001 + 44 Bend 11 15 19 121.25857 -0.00002 + 45 Bend 12 16 18 123.13078 0.00001 + 46 Bend 12 16 20 121.25857 -0.00002 + 47 Bend 13 11 15 118.95875 -0.00001 + 48 Bend 14 12 16 118.95875 -0.00001 + 49 Bend 17 15 19 115.61065 0.00001 + 50 Bend 18 16 20 115.61065 0.00001 + 51 Torsion 1 3 5 2 0.00000 0.00000 + 52 Torsion 1 3 5 9 180.00000 0.00000 + 53 Torsion 1 6 4 2 0.00000 0.00000 + 54 Torsion 1 6 4 8 180.00000 0.00000 + 55 Torsion 1 12 16 18 0.00000 0.00000 + 56 Torsion 1 12 16 20 180.00000 0.00000 + 57 Torsion 2 4 6 10 180.00000 0.00000 + 58 Torsion 2 5 3 7 180.00000 0.00000 + 59 Torsion 2 11 15 17 0.00000 0.00000 + 60 Torsion 2 11 15 19 180.00000 0.00000 + 61 Torsion 3 1 6 4 0.00000 0.00000 + 62 Torsion 3 1 6 10 180.00000 0.00000 + 63 Torsion 3 1 12 14 0.00000 0.00000 + 64 Torsion 3 1 12 16 180.00000 0.00000 + 65 Torsion 3 5 2 4 0.00000 0.00000 + 66 Torsion 3 5 2 11 180.00000 0.00000 + 67 Torsion 4 2 5 9 180.00000 0.00000 + 68 Torsion 4 2 11 13 0.00000 0.00000 + 69 Torsion 4 2 11 15 180.00000 0.00000 + 70 Torsion 4 6 1 12 180.00000 0.00000 + 71 Torsion 5 2 4 6 -0.00000 0.00000 + 72 Torsion 5 2 4 8 180.00000 0.00000 + 73 Torsion 5 2 11 13 180.00000 0.00000 + 74 Torsion 5 2 11 15 0.00000 0.00000 + 75 Torsion 5 3 1 6 0.00000 0.00000 + 76 Torsion 5 3 1 12 180.00000 0.00000 + 77 Torsion 6 1 3 7 180.00000 0.00000 + 78 Torsion 6 1 12 14 180.00000 0.00000 + 79 Torsion 6 1 12 16 0.00000 0.00000 + 80 Torsion 6 4 2 11 180.00000 0.00000 + 81 Torsion 7 3 1 12 -0.00000 0.00000 + 82 Torsion 7 3 5 9 0.00000 0.00000 + 83 Torsion 8 4 2 11 -0.00000 0.00000 + 84 Torsion 8 4 6 10 0.00000 0.00000 + 85 Torsion 9 5 2 11 0.00000 0.00000 + 86 Torsion 10 6 1 12 0.00000 0.00000 + 87 Torsion 13 11 15 17 180.00000 0.00000 + 88 Torsion 13 11 15 19 -0.00000 0.00000 + 89 Torsion 14 12 16 18 180.00000 0.00000 + 90 Torsion 14 12 16 20 -0.00000 0.00000 + + NWChem SCF Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + ao basis = "ao basis" + functions = 60 + atoms = 20 + closed shells = 35 + open shells = 0 + charge = 0.00 + wavefunction = RHF + input vectors = ./dvb.movecs + output vectors = ./dvb.movecs + use symmetry = T + symmetry adapt = T + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + + Forming initial guess at 26.3s + + + Loading old vectors from job with title : + +Divinylbenzene in STO-3G basis set + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + + Starting SCF solution at 26.4s + + + + ---------------------------------------------- + Quadratically convergent ROHF + + Convergence threshold : 1.000E-04 + Maximum no. of iterations : 30 + Final Fock-matrix accuracy: 1.000E-07 + ---------------------------------------------- + + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.173D+05 #integrals = 3.523D+05 #direct = 0.0% #cached =100.0% + + + iter energy gnorm gmax time + ----- ------------------- --------- --------- -------- + 1 -379.7779555173 5.35D-04 1.16D-04 25.5 + 2 -379.7779551102 2.00D-05 5.28D-06 25.6 + + + Final RHF results + ------------------ + + Total SCF energy = -379.777955110167 + One-electron energy = -1412.141540797265 + Two-electron energy = 580.246505274266 + Nuclear repulsion energy = 452.117080412832 + + Time for solution = 1.8s + + + + Symmetry analysis of molecular orbitals - final + ----------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + Final eigenvalues + ----------------- + + 1 + 1 -11.0409 + 2 -11.0409 + 3 -11.0324 + 4 -11.0324 + 5 -11.0289 + 6 -11.0288 + 7 -11.0283 + 8 -11.0283 + 9 -11.0180 + 10 -11.0180 + 11 -1.1066 + 12 -1.0317 + 13 -0.9884 + 14 -0.9609 + 15 -0.9227 + 16 -0.8064 + 17 -0.7712 + 18 -0.7330 + 19 -0.7072 + 20 -0.6391 + 21 -0.6151 + 22 -0.5776 + 23 -0.5638 + 24 -0.5629 + 25 -0.5325 + 26 -0.5074 + 27 -0.4981 + 28 -0.4773 + 29 -0.4487 + 30 -0.4259 + 31 -0.4182 + 32 -0.3868 + 33 -0.3269 + 34 -0.2856 + 35 -0.2332 + 36 0.2069 + 37 0.2732 + 38 0.3186 + 39 0.4060 + 40 0.5375 + 41 0.5684 + 42 0.5828 + 43 0.6323 + 44 0.6349 + 45 0.6825 + + ROHF Final Molecular Orbital Analysis + ------------------------------------- + + Vector 11 Occ=2.000000D+00 E=-1.106644D+00 Symmetry=ag + MO Center= 3.0D-17, 3.1D-17, -1.0D-23, r^2= 2.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.271028 1 C s 7 0.271028 2 C s + 12 0.245765 3 C s 17 0.245765 4 C s + 22 0.245643 5 C s 27 0.245643 6 C s + + Vector 12 Occ=2.000000D+00 E=-1.031709D+00 Symmetry=bu + MO Center= 2.8D-17, -2.8D-17, -1.1D-24, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.295371 11 C s 41 -0.295371 12 C s + 2 -0.264604 1 C s 7 0.264604 2 C s + 48 0.216147 15 C s 53 -0.216147 16 C s + + Vector 13 Occ=2.000000D+00 E=-9.884409D-01 Symmetry=ag + MO Center= -7.5D-18, 4.4D-16, 5.2D-21, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.313083 11 C s 41 0.313083 12 C s + 48 0.309297 15 C s 53 0.309297 16 C s + + Vector 14 Occ=2.000000D+00 E=-9.609290D-01 Symmetry=bu + MO Center= -2.0D-17, 7.9D-17, 5.4D-25, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.354259 3 C s 17 -0.354259 4 C s + 22 0.320758 5 C s 27 -0.320758 6 C s + + Vector 15 Occ=2.000000D+00 E=-9.226844D-01 Symmetry=bu + MO Center= -2.8D-18, -3.6D-16, -9.8D-26, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.282854 15 C s 53 -0.282854 16 C s + 2 0.279962 1 C s 7 -0.279962 2 C s + 22 -0.200871 5 C s 27 0.200871 6 C s + + Vector 16 Occ=2.000000D+00 E=-8.064080D-01 Symmetry=ag + MO Center= -7.5D-17, -1.9D-16, 1.4D-22, r^2= 8.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.233406 5 C s 27 0.233406 6 C s + 48 0.226453 15 C s 53 0.226453 16 C s + 2 -0.207423 1 C s 7 -0.207423 2 C s + 14 -0.166918 3 C py 19 0.166918 4 C py + 36 -0.156353 11 C s 41 -0.156353 12 C s + + Vector 17 Occ=2.000000D+00 E=-7.712472D-01 Symmetry=ag + MO Center= 1.2D-16, -1.4D-17, -2.1D-24, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.319593 3 C s 17 0.319593 4 C s + 3 0.189471 1 C px 8 -0.189471 2 C px + 24 0.173832 5 C py 29 -0.173832 6 C py + 31 0.172224 7 H s 32 0.172224 8 H s + 22 -0.165499 5 C s 27 -0.165499 6 C s + + Vector 18 Occ=2.000000D+00 E=-7.329704D-01 Symmetry=bu + MO Center= 4.2D-17, -3.9D-16, 1.2D-20, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.293348 11 C s 41 -0.293348 12 C s + 48 -0.246645 15 C s 53 0.246645 16 C s + 45 0.177498 13 H s 46 -0.177498 14 H s + 57 -0.166398 17 H s 58 0.166398 18 H s + + Vector 19 Occ=2.000000D+00 E=-7.072447D-01 Symmetry=ag + MO Center= 4.8D-17, -2.8D-17, -1.2D-21, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.195982 5 C px 28 -0.195982 6 C px + 36 0.180435 11 C s 41 0.180435 12 C s + 13 0.178105 3 C px 18 -0.178105 4 C px + 33 0.171312 9 H s 34 0.171312 10 H s + 48 -0.162921 15 C s 53 -0.162921 16 C s + + Vector 20 Occ=2.000000D+00 E=-6.391354D-01 Symmetry=ag + MO Center= -6.9D-17, -2.6D-17, -1.8D-24, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.210542 15 C px 54 -0.210542 16 C px + 38 0.182888 11 C py 43 -0.182888 12 C py + 57 0.181959 17 H s 58 0.181959 18 H s + 45 -0.153426 13 H s 46 -0.153426 14 H s + + Vector 21 Occ=2.000000D+00 E=-6.150835D-01 Symmetry=bu + MO Center= 3.6D-17, -1.1D-16, 6.3D-25, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.216160 11 C px 42 0.216160 12 C px + 50 0.215187 15 C py 55 0.215187 16 C py + 14 0.188104 3 C py 19 0.188104 4 C py + 59 -0.187518 19 H s 60 0.187518 20 H s + 45 -0.156516 13 H s 46 0.156516 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.776098D-01 Symmetry=bu + MO Center= -7.5D-17, 3.5D-17, 4.5D-25, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.234597 7 H s 32 0.234597 8 H s + 33 0.234610 9 H s 34 -0.234610 10 H s + 13 -0.227179 3 C px 18 -0.227179 4 C px + 2 0.221229 1 C s 7 -0.221229 2 C s + 24 -0.178094 5 C py 29 -0.178094 6 C py + + Vector 23 Occ=2.000000D+00 E=-5.638130D-01 Symmetry=bu + MO Center= 4.3D-17, -7.6D-17, 2.7D-38, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.257180 5 C px 28 0.257180 6 C px + 49 0.246867 15 C px 54 0.246867 16 C px + 3 -0.216648 1 C px 8 -0.216648 2 C px + 57 0.215087 17 H s 58 -0.215087 18 H s + 38 0.174035 11 C py 43 0.174035 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.628886D-01 Symmetry=ag + MO Center= -1.0D-17, 7.8D-16, -1.3D-22, r^2= 1.4D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.337869 15 C py 55 -0.337869 16 C py + 59 -0.264527 19 H s 60 -0.264527 20 H s + 37 0.253584 11 C px 42 -0.253584 12 C px + 45 -0.153484 13 H s 46 -0.153484 14 H s + + Vector 25 Occ=2.000000D+00 E=-5.324986D-01 Symmetry=bu + MO Center= -5.8D-17, 3.5D-17, 1.3D-26, r^2= 4.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.304551 3 C px 18 0.304551 4 C px + 31 0.255648 7 H s 32 -0.255648 8 H s + 24 -0.226739 5 C py 29 -0.226739 6 C py + 33 0.220992 9 H s 34 -0.220992 10 H s + 23 0.186285 5 C px 28 0.186285 6 C px + + Vector 26 Occ=2.000000D+00 E=-5.074034D-01 Symmetry=bu + MO Center= 6.6D-17, -3.3D-16, -3.0D-24, r^2= 8.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.237851 15 C py 55 -0.237851 16 C py + 14 0.226865 3 C py 19 0.226865 4 C py + 37 -0.210175 11 C px 42 -0.210175 12 C px + 24 -0.191971 5 C py 29 -0.191971 6 C py + 38 0.186276 11 C py 43 0.186276 12 C py + + Vector 27 Occ=2.000000D+00 E=-4.981101D-01 Symmetry=ag + MO Center= -8.2D-17, 3.3D-16, -2.0D-24, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.295931 15 C px 54 -0.295931 16 C px + 57 0.268763 17 H s 58 0.268763 18 H s + 37 -0.205387 11 C px 42 0.205387 12 C px + 45 0.201213 13 H s 46 0.201213 14 H s + 31 -0.156858 7 H s 32 -0.156858 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.772560D-01 Symmetry=au + MO Center= 1.3D-18, -6.9D-18, 2.8D-20, r^2= 3.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.328887 1 C pz 10 0.328887 2 C pz + 15 0.302011 3 C pz 20 0.302011 4 C pz + 25 0.301207 5 C pz 30 0.301207 6 C pz + 39 0.159126 11 C pz 44 0.159126 12 C pz + + Vector 29 Occ=2.000000D+00 E=-4.486543D-01 Symmetry=bu + MO Center= -4.3D-17, -3.3D-16, 5.0D-24, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.255187 13 H s 46 -0.255187 14 H s + 4 0.249211 1 C py 9 0.249211 2 C py + 57 0.227221 17 H s 58 -0.227221 18 H s + 59 -0.218924 19 H s 60 0.218924 20 H s + 37 -0.212139 11 C px 42 -0.212139 12 C px + + Vector 30 Occ=2.000000D+00 E=-4.259206D-01 Symmetry=ag + MO Center= -4.9D-17, -6.9D-18, 2.9D-21, r^2= 4.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.283935 9 H s 34 0.283935 10 H s + 3 0.255245 1 C px 8 -0.255245 2 C px + 13 -0.228238 3 C px 18 0.228238 4 C px + 14 0.217065 3 C py 19 -0.217065 4 C py + 23 0.211551 5 C px 28 -0.211551 6 C px + + Vector 31 Occ=2.000000D+00 E=-4.182029D-01 Symmetry=ag + MO Center= -5.4D-18, -1.4D-17, -4.9D-22, r^2= 7.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.219474 11 C py 43 -0.219474 12 C py + 4 0.216754 1 C py 9 -0.216754 2 C py + 31 -0.215280 7 H s 32 -0.215280 8 H s + 23 0.205813 5 C px 28 -0.205813 6 C px + 3 0.200084 1 C px 8 -0.200084 2 C px + + Vector 32 Occ=2.000000D+00 E=-3.868289D-01 Symmetry=bg + MO Center= 2.8D-17, 1.1D-16, -1.6D-19, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.381768 11 C pz 44 -0.381768 12 C pz + 5 -0.312290 1 C pz 10 0.312290 2 C pz + 51 0.310302 15 C pz 56 -0.310302 16 C pz + + Vector 33 Occ=2.000000D+00 E=-3.269088D-01 Symmetry=au + MO Center= -1.7D-41, -1.1D-16, -2.3D-21, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.426190 15 C pz 56 0.426190 16 C pz + 39 0.415001 11 C pz 44 0.415001 12 C pz + 15 -0.158548 3 C pz 20 -0.158548 4 C pz + 25 -0.158700 5 C pz 30 -0.158700 6 C pz + + Vector 34 Occ=2.000000D+00 E=-2.855873D-01 Symmetry=bg + MO Center= 5.6D-17, -2.0D-19, -2.4D-22, r^2= 2.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.458980 3 C pz 20 -0.458980 4 C pz + 25 0.460839 5 C pz 30 -0.460839 6 C pz + + Vector 35 Occ=2.000000D+00 E=-2.332302D-01 Symmetry=bg + MO Center= -6.9D-18, 1.1D-16, -9.6D-22, r^2= 6.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.420759 1 C pz 10 -0.420759 2 C pz + 51 0.350519 15 C pz 56 -0.350519 16 C pz + 15 0.233620 3 C pz 20 -0.233620 4 C pz + 25 -0.232023 5 C pz 30 0.232023 6 C pz + 39 0.216659 11 C pz 44 -0.216659 12 C pz + + Vector 36 Occ=0.000000D+00 E= 2.069474D-01 Symmetry=au + MO Center= -8.4D-43, 4.0D-42, -1.5D-22, r^2= 7.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.479185 1 C pz 10 0.479185 2 C pz + 51 -0.411109 15 C pz 56 -0.411109 16 C pz + 25 -0.284375 5 C pz 30 -0.284375 6 C pz + 15 -0.250545 3 C pz 20 -0.250545 4 C pz + 39 0.249755 11 C pz 44 0.249755 12 C pz + + Vector 37 Occ=0.000000D+00 E= 2.731783D-01 Symmetry=au + MO Center= -5.5D-17, 5.6D-17, 5.2D-24, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.583592 3 C pz 20 0.583592 4 C pz + 25 -0.559958 5 C pz 30 -0.559958 6 C pz + + Vector 38 Occ=0.000000D+00 E= 3.186016D-01 Symmetry=bg + MO Center= -4.2D-17, 3.3D-16, -1.2D-20, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.537711 15 C pz 56 0.537711 16 C pz + 39 0.531794 11 C pz 44 -0.531794 12 C pz + 15 0.221752 3 C pz 20 -0.221752 4 C pz + 25 -0.216118 5 C pz 30 0.216118 6 C pz + + Vector 39 Occ=0.000000D+00 E= 4.060358D-01 Symmetry=au + MO Center= 4.2D-17, -5.6D-17, -4.7D-24, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.539444 11 C pz 44 0.539444 12 C pz + 5 -0.472288 1 C pz 10 -0.472288 2 C pz + 51 -0.416310 15 C pz 56 -0.416310 16 C pz + 25 0.189509 5 C pz 30 0.189509 6 C pz + 15 0.162211 3 C pz 20 0.162211 4 C pz + + Vector 40 Occ=0.000000D+00 E= 5.374914D-01 Symmetry=bg + MO Center= 1.1D-16, -2.8D-16, 8.9D-22, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.545444 1 C pz 10 -0.545444 2 C pz + 15 -0.477115 3 C pz 20 0.477115 4 C pz + 25 0.479468 5 C pz 30 -0.479468 6 C pz + 39 0.274952 11 C pz 44 -0.274952 12 C pz + 51 -0.158159 15 C pz 56 0.158159 16 C pz + + Vector 41 Occ=0.000000D+00 E= 5.684326D-01 Symmetry=ag + MO Center= -1.7D-16, 1.1D-16, -1.3D-20, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.416717 7 H s 32 -0.416717 8 H s + 33 -0.415437 9 H s 34 -0.415437 10 H s + 2 0.396267 1 C s 7 0.396267 2 C s + 59 -0.352099 19 H s 60 -0.352099 20 H s + 38 -0.349672 11 C py 43 0.349672 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.827712D-01 Symmetry=bu + MO Center= 5.6D-18, -2.2D-16, -1.8D-20, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.433624 13 H s 46 -0.433624 14 H s + 37 0.355585 11 C px 42 0.355585 12 C px + 13 0.338729 3 C px 18 0.338729 4 C px + 57 -0.337740 17 H s 58 0.337740 18 H s + 59 0.322375 19 H s 60 -0.322375 20 H s + + Vector 43 Occ=0.000000D+00 E= 6.322689D-01 Symmetry=bu + MO Center= 1.6D-16, -2.8D-16, 3.2D-20, r^2= 6.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.533810 11 C s 41 -0.533810 12 C s + 33 0.462623 9 H s 34 -0.462623 10 H s + 4 0.456063 1 C py 9 0.456063 2 C py + 24 0.334348 5 C py 29 0.334348 6 C py + 38 0.320880 11 C py 43 0.320880 12 C py + + Vector 44 Occ=0.000000D+00 E= 6.348990D-01 Symmetry=ag + MO Center= -2.3D-16, 1.4D-16, 1.7D-20, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.583492 13 H s 46 0.583492 14 H s + 36 -0.410017 11 C s 41 -0.410017 12 C s + 57 -0.389771 17 H s 58 -0.389771 18 H s + 12 0.386682 3 C s 17 0.386682 4 C s + 37 0.336442 11 C px 42 -0.336442 12 C px + + Vector 45 Occ=0.000000D+00 E= 6.824552D-01 Symmetry=ag + MO Center= -1.7D-16, 3.3D-16, 2.9D-20, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.721591 15 C s 53 0.721591 16 C s + 22 0.573176 5 C s 27 0.573176 6 C s + 57 -0.554837 17 H s 58 -0.554837 18 H s + 12 -0.419341 3 C s 17 -0.419341 4 C s + 59 -0.379637 19 H s 60 -0.379637 20 H s + + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2576.996202787686 -1.648166528577 0.000000000000 + -1.648166528577 376.118048110271 0.000000000000 + 0.000000000000 0.000000000000 2953.114250897957 + + Mulliken analysis of the total density + -------------------------------------- + + Atom Charge Shell Charges + ----------- ------ ------------------------------------------------------- + 1 C 6 6.00 1.99 1.12 2.88 + 2 C 6 6.00 1.99 1.12 2.88 + 3 C 6 6.06 1.99 1.13 2.94 + 4 C 6 6.06 1.99 1.13 2.94 + 5 C 6 6.06 1.99 1.13 2.94 + 6 C 6 6.06 1.99 1.13 2.94 + 7 H 1 0.94 0.94 + 8 H 1 0.94 0.94 + 9 H 1 0.94 0.94 + 10 H 1 0.94 0.94 + 11 C 6 6.06 1.99 1.14 2.93 + 12 C 6 6.06 1.99 1.14 2.93 + 13 H 1 0.94 0.94 + 14 H 1 0.94 0.94 + 15 C 6 6.13 1.99 1.15 2.99 + 16 C 6 6.13 1.99 1.15 2.99 + 17 H 1 0.94 0.94 + 18 H 1 0.94 0.94 + 19 H 1 0.94 0.94 + 20 H 1 0.94 0.94 + + Multipole analysis of the density wrt the origin + ------------------------------------------------ + + L x y z total open nuclear + - - - - ----- ---- ------- + 0 0 0 0 -0.000000 0.000000 70.000000 + + 1 1 0 0 -0.000000 0.000000 0.000000 + 1 0 1 0 -0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 + + 2 2 0 0 -38.489222 0.000000 235.913078 + 2 1 1 0 0.092965 0.000000 -4.471957 + 2 1 0 1 0.000000 0.000000 0.000000 + 2 0 2 0 -39.167740 0.000000 1465.729381 + 2 0 1 1 0.000000 0.000000 0.000000 + 2 0 0 2 -43.441868 0.000000 0.000000 + + + Parallel integral file used 9 records with 0 large values + + Line search: + step= 1.00 grad=-1.8D-07 hess= 8.5D-08 energy= -379.777955 mode=accept + new step= 1.00 predicted energy= -379.777955 + + -------- + Step 4 + -------- + + + Geometry "geometry" -> "geometry" + --------------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.22791249 1.39288748 0.00000000 + 2 C 6.0000 -0.22791249 -1.39288748 0.00000000 + 3 C 6.0000 1.28919537 0.48588632 0.00000000 + 4 C 6.0000 -1.28919537 -0.48588632 0.00000000 + 5 C 6.0000 1.06903481 -0.87838865 0.00000000 + 6 C 6.0000 -1.06903481 0.87838865 0.00000000 + 7 H 1.0000 2.30488244 0.86057095 0.00000000 + 8 H 1.0000 -2.30488244 -0.86057095 0.00000000 + 9 H 1.0000 1.91772166 -1.54845654 0.00000000 + 10 H 1.0000 -1.91772166 1.54845654 0.00000000 + 11 C 6.0000 -0.52245959 -2.85975846 0.00000000 + 12 C 6.0000 0.52245959 2.85975846 0.00000000 + 13 H 1.0000 -1.57985284 -3.10026315 0.00000000 + 14 H 1.0000 1.57985284 3.10026315 0.00000000 + 15 C 6.0000 0.35270448 -3.83939603 0.00000000 + 16 C 6.0000 -0.35270448 3.83939603 0.00000000 + 17 H 1.0000 1.42081357 -3.67692253 0.00000000 + 18 H 1.0000 -1.42081357 3.67692253 0.00000000 + 19 H 1.0000 0.03744355 -4.87355574 0.00000000 + 20 H 1.0000 -0.03744355 4.87355574 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 452.1170804128 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + NWChem SCF Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + ao basis = "ao basis" + functions = 60 + atoms = 20 + closed shells = 35 + open shells = 0 + charge = 0.00 + wavefunction = RHF + input vectors = ./dvb.movecs + output vectors = ./dvb.movecs + use symmetry = T + symmetry adapt = T + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + + The SCF is already converged + + Total SCF energy = -379.777955110167 + + NWChem Gradients Module + ----------------------- + + + Divinylbenzene in STO-3G basis set + + + wavefunction = RHF + + Using symmetry + + + RHF ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.430692 2.632176 0.000000 0.000018 -0.000015 0.000000 + 2 C -0.430692 -2.632176 0.000000 -0.000018 0.000015 0.000000 + 3 C 2.436226 0.918192 0.000000 0.000004 -0.000003 0.000000 + 4 C -2.436226 -0.918192 0.000000 -0.000004 0.000003 0.000000 + 5 C 2.020183 -1.659914 0.000000 0.000016 0.000010 0.000000 + 6 C -2.020183 1.659914 0.000000 -0.000016 -0.000010 0.000000 + 7 H 4.355596 1.626243 0.000000 0.000002 0.000008 0.000000 + 8 H -4.355596 -1.626243 0.000000 -0.000002 -0.000008 0.000000 + 9 H 3.623968 -2.926159 0.000000 -0.000007 0.000002 0.000000 + 10 H -3.623968 2.926159 0.000000 0.000007 -0.000002 0.000000 + 11 C -0.987305 -5.404160 0.000000 0.000001 -0.000019 0.000000 + 12 C 0.987305 5.404160 0.000000 -0.000001 0.000019 0.000000 + 13 H -2.985489 -5.858648 0.000000 0.000003 -0.000003 0.000000 + 14 H 2.985489 5.858648 0.000000 -0.000003 0.000003 0.000000 + 15 C 0.666515 -7.255406 0.000000 0.000021 0.000015 0.000000 + 16 C -0.666515 7.255406 0.000000 -0.000021 -0.000015 0.000000 + 17 H 2.684948 -6.948376 0.000000 -0.000016 -0.000008 0.000000 + 18 H -2.684948 6.948376 0.000000 0.000016 0.000008 0.000000 + 19 H 0.070758 -9.209685 0.000000 -0.000008 -0.000005 0.000000 + 20 H -0.070758 9.209685 0.000000 0.000008 0.000005 0.000000 + + ---------------------------------------- + | Time | 1-e(secs) | 2-e(secs) | + ---------------------------------------- + | CPU | 0.02 | 2.64 | + ---------------------------------------- + | WALL | 0.02 | 2.64 | + ---------------------------------------- + + Step Energy Delta E Gmax Grms Xrms Xmax Walltime + ---- ---------------- -------- -------- -------- -------- -------- -------- +@ 4 -379.77795511 -9.8D-08 0.00002 0.00001 0.00020 0.00046 31.3 + ok ok ok ok + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value Gradient + ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- + 1 Stretch 1 3 1.39606 -0.00000 + 2 Stretch 1 6 1.39527 0.00002 + 3 Stretch 1 12 1.49615 0.00002 + 4 Stretch 2 4 1.39606 -0.00000 + 5 Stretch 2 5 1.39527 0.00002 + 6 Stretch 2 11 1.49615 0.00002 + 7 Stretch 3 5 1.38193 0.00000 + 8 Stretch 3 7 1.08259 0.00000 + 9 Stretch 4 6 1.38193 0.00000 + 10 Stretch 4 8 1.08259 0.00000 + 11 Stretch 5 9 1.08132 -0.00001 + 12 Stretch 6 10 1.08132 -0.00001 + 13 Stretch 11 13 1.08440 -0.00000 + 14 Stretch 11 15 1.31362 -0.00000 + 15 Stretch 12 14 1.08440 -0.00000 + 16 Stretch 12 16 1.31362 -0.00000 + 17 Stretch 15 17 1.08040 -0.00002 + 18 Stretch 15 19 1.08115 0.00001 + 19 Stretch 16 18 1.08040 -0.00002 + 20 Stretch 16 20 1.08115 0.00001 + 21 Bend 1 3 5 121.35100 -0.00000 + 22 Bend 1 3 7 119.23300 -0.00000 + 23 Bend 1 6 4 120.80533 0.00000 + 24 Bend 1 6 10 120.06945 -0.00000 + 25 Bend 1 12 14 114.16793 -0.00000 + 26 Bend 1 12 16 126.86986 0.00001 + 27 Bend 2 4 6 121.35100 -0.00000 + 28 Bend 2 4 8 119.23300 -0.00000 + 29 Bend 2 5 3 120.80533 0.00000 + 30 Bend 2 5 9 120.06945 -0.00000 + 31 Bend 2 11 13 114.16793 -0.00000 + 32 Bend 2 11 15 126.86986 0.00001 + 33 Bend 3 1 6 117.84368 0.00000 + 34 Bend 3 1 12 119.16412 -0.00000 + 35 Bend 3 5 9 119.12522 0.00000 + 36 Bend 4 2 5 117.84368 0.00000 + 37 Bend 4 2 11 119.16412 -0.00000 + 38 Bend 4 6 10 119.12522 0.00000 + 39 Bend 5 2 11 122.99220 0.00000 + 40 Bend 5 3 7 119.41601 0.00001 + 41 Bend 6 1 12 122.99220 0.00000 + 42 Bend 6 4 8 119.41601 0.00001 + 43 Bend 11 15 17 123.12702 0.00001 + 44 Bend 11 15 19 121.27013 -0.00001 + 45 Bend 12 16 18 123.12702 0.00001 + 46 Bend 12 16 20 121.27013 -0.00001 + 47 Bend 13 11 15 118.96221 -0.00001 + 48 Bend 14 12 16 118.96221 -0.00001 + 49 Bend 17 15 19 115.60285 0.00000 + 50 Bend 18 16 20 115.60285 0.00000 + 51 Torsion 1 3 5 2 0.00000 -0.00000 + 52 Torsion 1 3 5 9 180.00000 -0.00000 + 53 Torsion 1 6 4 2 0.00000 -0.00000 + 54 Torsion 1 6 4 8 180.00000 0.00000 + 55 Torsion 1 12 16 18 0.00000 -0.00000 + 56 Torsion 1 12 16 20 180.00000 0.00000 + 57 Torsion 2 4 6 10 180.00000 -0.00000 + 58 Torsion 2 5 3 7 180.00000 0.00000 + 59 Torsion 2 11 15 17 0.00000 0.00000 + 60 Torsion 2 11 15 19 180.00000 0.00000 + 61 Torsion 3 1 6 4 0.00000 -0.00000 + 62 Torsion 3 1 6 10 180.00000 0.00000 + 63 Torsion 3 1 12 14 0.00000 -0.00000 + 64 Torsion 3 1 12 16 180.00000 -0.00000 + 65 Torsion 3 5 2 4 0.00000 -0.00000 + 66 Torsion 3 5 2 11 180.00000 -0.00000 + 67 Torsion 4 2 5 9 180.00000 -0.00000 + 68 Torsion 4 2 11 13 0.00000 -0.00000 + 69 Torsion 4 2 11 15 180.00000 -0.00000 + 70 Torsion 4 6 1 12 180.00000 -0.00000 + 71 Torsion 5 2 4 6 -0.00000 0.00000 + 72 Torsion 5 2 4 8 180.00000 -0.00000 + 73 Torsion 5 2 11 13 180.00000 0.00000 + 74 Torsion 5 2 11 15 0.00000 -0.00000 + 75 Torsion 5 3 1 6 0.00000 0.00000 + 76 Torsion 5 3 1 12 180.00000 0.00000 + 77 Torsion 6 1 3 7 180.00000 0.00000 + 78 Torsion 6 1 12 14 180.00000 -0.00000 + 79 Torsion 6 1 12 16 0.00000 -0.00000 + 80 Torsion 6 4 2 11 180.00000 0.00000 + 81 Torsion 7 3 1 12 -0.00000 0.00000 + 82 Torsion 7 3 5 9 0.00000 -0.00000 + 83 Torsion 8 4 2 11 -0.00000 0.00000 + 84 Torsion 8 4 6 10 0.00000 0.00000 + 85 Torsion 9 5 2 11 0.00000 -0.00000 + 86 Torsion 10 6 1 12 0.00000 -0.00000 + 87 Torsion 13 11 15 17 180.00000 -0.00000 + 88 Torsion 13 11 15 19 -0.00000 -0.00000 + 89 Torsion 14 12 16 18 180.00000 -0.00000 + 90 Torsion 14 12 16 20 -0.00000 -0.00000 + + + ---------------------- + Optimization converged + ---------------------- + + + Step Energy Delta E Gmax Grms Xrms Xmax Walltime + ---- ---------------- -------- -------- -------- -------- -------- -------- +@ 4 -379.77795511 -9.8D-08 0.00002 0.00001 0.00020 0.00046 31.3 + ok ok ok ok + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value Gradient + ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- + 1 Stretch 1 3 1.39606 -0.00000 + 2 Stretch 1 6 1.39527 0.00002 + 3 Stretch 1 12 1.49615 0.00002 + 4 Stretch 2 4 1.39606 -0.00000 + 5 Stretch 2 5 1.39527 0.00002 + 6 Stretch 2 11 1.49615 0.00002 + 7 Stretch 3 5 1.38193 0.00000 + 8 Stretch 3 7 1.08259 0.00000 + 9 Stretch 4 6 1.38193 0.00000 + 10 Stretch 4 8 1.08259 0.00000 + 11 Stretch 5 9 1.08132 -0.00001 + 12 Stretch 6 10 1.08132 -0.00001 + 13 Stretch 11 13 1.08440 -0.00000 + 14 Stretch 11 15 1.31362 -0.00000 + 15 Stretch 12 14 1.08440 -0.00000 + 16 Stretch 12 16 1.31362 -0.00000 + 17 Stretch 15 17 1.08040 -0.00002 + 18 Stretch 15 19 1.08115 0.00001 + 19 Stretch 16 18 1.08040 -0.00002 + 20 Stretch 16 20 1.08115 0.00001 + 21 Bend 1 3 5 121.35100 -0.00000 + 22 Bend 1 3 7 119.23300 -0.00000 + 23 Bend 1 6 4 120.80533 0.00000 + 24 Bend 1 6 10 120.06945 -0.00000 + 25 Bend 1 12 14 114.16793 -0.00000 + 26 Bend 1 12 16 126.86986 0.00001 + 27 Bend 2 4 6 121.35100 -0.00000 + 28 Bend 2 4 8 119.23300 -0.00000 + 29 Bend 2 5 3 120.80533 0.00000 + 30 Bend 2 5 9 120.06945 -0.00000 + 31 Bend 2 11 13 114.16793 -0.00000 + 32 Bend 2 11 15 126.86986 0.00001 + 33 Bend 3 1 6 117.84368 0.00000 + 34 Bend 3 1 12 119.16412 -0.00000 + 35 Bend 3 5 9 119.12522 0.00000 + 36 Bend 4 2 5 117.84368 0.00000 + 37 Bend 4 2 11 119.16412 -0.00000 + 38 Bend 4 6 10 119.12522 0.00000 + 39 Bend 5 2 11 122.99220 0.00000 + 40 Bend 5 3 7 119.41601 0.00001 + 41 Bend 6 1 12 122.99220 0.00000 + 42 Bend 6 4 8 119.41601 0.00001 + 43 Bend 11 15 17 123.12702 0.00001 + 44 Bend 11 15 19 121.27013 -0.00001 + 45 Bend 12 16 18 123.12702 0.00001 + 46 Bend 12 16 20 121.27013 -0.00001 + 47 Bend 13 11 15 118.96221 -0.00001 + 48 Bend 14 12 16 118.96221 -0.00001 + 49 Bend 17 15 19 115.60285 0.00000 + 50 Bend 18 16 20 115.60285 0.00000 + 51 Torsion 1 3 5 2 0.00000 -0.00000 + 52 Torsion 1 3 5 9 180.00000 -0.00000 + 53 Torsion 1 6 4 2 0.00000 -0.00000 + 54 Torsion 1 6 4 8 180.00000 0.00000 + 55 Torsion 1 12 16 18 0.00000 -0.00000 + 56 Torsion 1 12 16 20 180.00000 0.00000 + 57 Torsion 2 4 6 10 180.00000 -0.00000 + 58 Torsion 2 5 3 7 180.00000 0.00000 + 59 Torsion 2 11 15 17 0.00000 0.00000 + 60 Torsion 2 11 15 19 180.00000 0.00000 + 61 Torsion 3 1 6 4 0.00000 -0.00000 + 62 Torsion 3 1 6 10 180.00000 0.00000 + 63 Torsion 3 1 12 14 0.00000 -0.00000 + 64 Torsion 3 1 12 16 180.00000 -0.00000 + 65 Torsion 3 5 2 4 0.00000 -0.00000 + 66 Torsion 3 5 2 11 180.00000 -0.00000 + 67 Torsion 4 2 5 9 180.00000 -0.00000 + 68 Torsion 4 2 11 13 0.00000 -0.00000 + 69 Torsion 4 2 11 15 180.00000 -0.00000 + 70 Torsion 4 6 1 12 180.00000 -0.00000 + 71 Torsion 5 2 4 6 -0.00000 0.00000 + 72 Torsion 5 2 4 8 180.00000 -0.00000 + 73 Torsion 5 2 11 13 180.00000 0.00000 + 74 Torsion 5 2 11 15 0.00000 -0.00000 + 75 Torsion 5 3 1 6 0.00000 0.00000 + 76 Torsion 5 3 1 12 180.00000 0.00000 + 77 Torsion 6 1 3 7 180.00000 0.00000 + 78 Torsion 6 1 12 14 180.00000 -0.00000 + 79 Torsion 6 1 12 16 0.00000 -0.00000 + 80 Torsion 6 4 2 11 180.00000 0.00000 + 81 Torsion 7 3 1 12 -0.00000 0.00000 + 82 Torsion 7 3 5 9 0.00000 -0.00000 + 83 Torsion 8 4 2 11 -0.00000 0.00000 + 84 Torsion 8 4 6 10 0.00000 0.00000 + 85 Torsion 9 5 2 11 0.00000 -0.00000 + 86 Torsion 10 6 1 12 0.00000 -0.00000 + 87 Torsion 13 11 15 17 180.00000 -0.00000 + 88 Torsion 13 11 15 19 -0.00000 -0.00000 + 89 Torsion 14 12 16 18 180.00000 -0.00000 + 90 Torsion 14 12 16 20 -0.00000 -0.00000 + + + + Geometry "geometry" -> "geometry" + --------------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.22791249 1.39288748 0.00000000 + 2 C 6.0000 -0.22791249 -1.39288748 0.00000000 + 3 C 6.0000 1.28919537 0.48588632 0.00000000 + 4 C 6.0000 -1.28919537 -0.48588632 0.00000000 + 5 C 6.0000 1.06903481 -0.87838865 0.00000000 + 6 C 6.0000 -1.06903481 0.87838865 0.00000000 + 7 H 1.0000 2.30488244 0.86057095 0.00000000 + 8 H 1.0000 -2.30488244 -0.86057095 0.00000000 + 9 H 1.0000 1.91772166 -1.54845654 0.00000000 + 10 H 1.0000 -1.91772166 1.54845654 0.00000000 + 11 C 6.0000 -0.52245959 -2.85975846 0.00000000 + 12 C 6.0000 0.52245959 2.85975846 0.00000000 + 13 H 1.0000 -1.57985284 -3.10026315 0.00000000 + 14 H 1.0000 1.57985284 3.10026315 0.00000000 + 15 C 6.0000 0.35270448 -3.83939603 0.00000000 + 16 C 6.0000 -0.35270448 3.83939603 0.00000000 + 17 H 1.0000 1.42081357 -3.67692253 0.00000000 + 18 H 1.0000 -1.42081357 3.67692253 0.00000000 + 19 H 1.0000 0.03744355 -4.87355574 0.00000000 + 20 H 1.0000 -0.03744355 4.87355574 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 452.1170804128 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + + Final and change from initial internal coordinates + -------------------------------------------------- + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value Change + ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- + 1 Stretch 1 3 1.39606 -0.02598 + 2 Stretch 1 6 1.39527 -0.02670 + 3 Stretch 1 12 1.49615 -0.00169 + 4 Stretch 2 4 1.39606 -0.02598 + 5 Stretch 2 5 1.39527 -0.02670 + 6 Stretch 2 11 1.49615 -0.00169 + 7 Stretch 3 5 1.38193 -0.02054 + 8 Stretch 3 7 1.08259 -0.01612 + 9 Stretch 4 6 1.38193 -0.02054 + 10 Stretch 4 8 1.08259 -0.01612 + 11 Stretch 5 9 1.08132 -0.01569 + 12 Stretch 6 10 1.08132 -0.01569 + 13 Stretch 11 13 1.08440 -0.01659 + 14 Stretch 11 15 1.31362 -0.03061 + 15 Stretch 12 14 1.08440 -0.01659 + 16 Stretch 12 16 1.31362 -0.03061 + 17 Stretch 15 17 1.08040 -0.01558 + 18 Stretch 15 19 1.08115 -0.01552 + 19 Stretch 16 18 1.08040 -0.01558 + 20 Stretch 16 20 1.08115 -0.01552 + 21 Bend 1 3 5 121.35100 0.20233 + 22 Bend 1 3 7 119.23300 0.03190 + 23 Bend 1 6 4 120.80533 -0.06825 + 24 Bend 1 6 10 120.06945 0.64660 + 25 Bend 1 12 14 114.16793 -0.46160 + 26 Bend 1 12 16 126.86986 0.28993 + 27 Bend 2 4 6 121.35100 0.20233 + 28 Bend 2 4 8 119.23300 0.03190 + 29 Bend 2 5 3 120.80533 -0.06825 + 30 Bend 2 5 9 120.06945 0.64660 + 31 Bend 2 11 13 114.16793 -0.46160 + 32 Bend 2 11 15 126.86986 0.28993 + 33 Bend 3 1 6 117.84368 -0.13408 + 34 Bend 3 1 12 119.16412 0.04257 + 35 Bend 3 5 9 119.12522 -0.57835 + 36 Bend 4 2 5 117.84368 -0.13408 + 37 Bend 4 2 11 119.16412 0.04257 + 38 Bend 4 6 10 119.12522 -0.57835 + 39 Bend 5 2 11 122.99220 0.09151 + 40 Bend 5 3 7 119.41601 -0.23423 + 41 Bend 6 1 12 122.99220 0.09151 + 42 Bend 6 4 8 119.41601 -0.23423 + 43 Bend 11 15 17 123.12702 0.64185 + 44 Bend 11 15 19 121.27013 -0.02480 + 45 Bend 12 16 18 123.12702 0.64185 + 46 Bend 12 16 20 121.27013 -0.02480 + 47 Bend 13 11 15 118.96221 0.17167 + 48 Bend 14 12 16 118.96221 0.17167 + 49 Bend 17 15 19 115.60285 -0.61705 + 50 Bend 18 16 20 115.60285 -0.61705 + 51 Torsion 1 3 5 2 0.00000 0.00000 + 52 Torsion 1 3 5 9 180.00000 0.00000 + 53 Torsion 1 6 4 2 0.00000 0.00000 + 54 Torsion 1 6 4 8 180.00000 0.00000 + 55 Torsion 1 12 16 18 0.00000 0.00000 + 56 Torsion 1 12 16 20 180.00000 0.00000 + 57 Torsion 2 4 6 10 180.00000 0.00000 + 58 Torsion 2 5 3 7 180.00000 0.00000 + 59 Torsion 2 11 15 17 0.00000 0.00000 + 60 Torsion 2 11 15 19 180.00000 0.00000 + 61 Torsion 3 1 6 4 0.00000 0.00000 + 62 Torsion 3 1 6 10 180.00000 0.00000 + 63 Torsion 3 1 12 14 0.00000 0.00000 + 64 Torsion 3 1 12 16 180.00000 0.00000 + 65 Torsion 3 5 2 4 0.00000 0.00000 + 66 Torsion 3 5 2 11 180.00000 0.00000 + 67 Torsion 4 2 5 9 180.00000 0.00000 + 68 Torsion 4 2 11 13 0.00000 0.00000 + 69 Torsion 4 2 11 15 180.00000 0.00000 + 70 Torsion 4 6 1 12 180.00000 0.00000 + 71 Torsion 5 2 4 6 -0.00000 0.00000 + 72 Torsion 5 2 4 8 180.00000 0.00000 + 73 Torsion 5 2 11 13 180.00000 0.00000 + 74 Torsion 5 2 11 15 0.00000 0.00000 + 75 Torsion 5 3 1 6 0.00000 0.00000 + 76 Torsion 5 3 1 12 180.00000 0.00000 + 77 Torsion 6 1 3 7 180.00000 0.00000 + 78 Torsion 6 1 12 14 180.00000 0.00000 + 79 Torsion 6 1 12 16 0.00000 0.00000 + 80 Torsion 6 4 2 11 180.00000 0.00000 + 81 Torsion 7 3 1 12 -0.00000 0.00000 + 82 Torsion 7 3 5 9 0.00000 0.00000 + 83 Torsion 8 4 2 11 -0.00000 0.00000 + 84 Torsion 8 4 6 10 0.00000 0.00000 + 85 Torsion 9 5 2 11 0.00000 0.00000 + 86 Torsion 10 6 1 12 0.00000 0.00000 + 87 Torsion 13 11 15 17 180.00000 0.00000 + 88 Torsion 13 11 15 19 -0.00000 0.00000 + 89 Torsion 14 12 16 18 180.00000 0.00000 + 90 Torsion 14 12 16 20 -0.00000 0.00000 + + ============================================================================== + internuclear distances + ------------------------------------------------------------------------------ + center one | center two | atomic units | angstroms + ------------------------------------------------------------------------------ + 3 C | 1 C | 2.63816 | 1.39606 + 4 C | 2 C | 2.63816 | 1.39606 + 5 C | 2 C | 2.63668 | 1.39527 + 5 C | 3 C | 2.61146 | 1.38193 + 6 C | 1 C | 2.63668 | 1.39527 + 6 C | 4 C | 2.61146 | 1.38193 + 7 H | 3 C | 2.04581 | 1.08259 + 8 H | 4 C | 2.04581 | 1.08259 + 9 H | 5 C | 2.04340 | 1.08132 + 10 H | 6 C | 2.04340 | 1.08132 + 11 C | 2 C | 2.82732 | 1.49615 + 12 C | 1 C | 2.82732 | 1.49615 + 13 H | 11 C | 2.04922 | 1.08440 + 14 H | 12 C | 2.04922 | 1.08440 + 15 C | 11 C | 2.48239 | 1.31362 + 16 C | 12 C | 2.48239 | 1.31362 + 17 H | 15 C | 2.04165 | 1.08040 + 18 H | 16 C | 2.04165 | 1.08040 + 19 H | 15 C | 2.04307 | 1.08115 + 20 H | 16 C | 2.04307 | 1.08115 + ------------------------------------------------------------------------------ + number of included internuclear distances: 20 + ============================================================================== + + + + ============================================================================== + internuclear angles + ------------------------------------------------------------------------------ + center 1 | center 2 | center 3 | degrees + ------------------------------------------------------------------------------ + 3 C | 1 C | 6 C | 117.84 + 3 C | 1 C | 12 C | 119.16 + 6 C | 1 C | 12 C | 122.99 + 4 C | 2 C | 5 C | 117.84 + 4 C | 2 C | 11 C | 119.16 + 5 C | 2 C | 11 C | 122.99 + 1 C | 3 C | 5 C | 121.35 + 1 C | 3 C | 7 H | 119.23 + 5 C | 3 C | 7 H | 119.42 + 2 C | 4 C | 6 C | 121.35 + 2 C | 4 C | 8 H | 119.23 + 6 C | 4 C | 8 H | 119.42 + 2 C | 5 C | 3 C | 120.81 + 2 C | 5 C | 9 H | 120.07 + 3 C | 5 C | 9 H | 119.13 + 1 C | 6 C | 4 C | 120.81 + 1 C | 6 C | 10 H | 120.07 + 4 C | 6 C | 10 H | 119.13 + 2 C | 11 C | 13 H | 114.17 + 2 C | 11 C | 15 C | 126.87 + 13 H | 11 C | 15 C | 118.96 + 1 C | 12 C | 14 H | 114.17 + 1 C | 12 C | 16 C | 126.87 + 14 H | 12 C | 16 C | 118.96 + 11 C | 15 C | 17 H | 123.13 + 11 C | 15 C | 19 H | 121.27 + 17 H | 15 C | 19 H | 115.60 + 12 C | 16 C | 18 H | 123.13 + 12 C | 16 C | 20 H | 121.27 + 18 H | 16 C | 20 H | 115.60 + ------------------------------------------------------------------------------ + number of included internuclear angles: 30 + ============================================================================== + + + + + Task times cpu: 28.3s wall: 30.9s + Summary of allocated global arrays +----------------------------------- + No active global arrays + + + + GA Statistics for process 0 + ------------------------------ + + create destroy get put acc scatter gather read&inc +calls: 1558 1558 1.30e+05 3.21e+04 1.43e+05 0 0 3.80e+04 +number of processes/call 1.00e+00 1.00e+00 1.00e+00 0.00e+00 0.00e+00 +bytes total: 5.87e+07 3.17e+07 1.91e+07 0.00e+00 0.00e+00 3.04e+05 +bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 427200 bytes +MA_summarize_allocated_blocks: starting scan ... +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +MA usage statistics: + + allocation statistics: + heap stack + ---- ----- + current number of blocks 0 0 + maximum number of blocks 20 29 + current total bytes 0 0 + maximum total bytes 9987096 22510808 + maximum total K-bytes 9988 22511 + maximum total M-bytes 10 23 + + + NWChem Input Module + ------------------- + + + + + + CITATION + -------- + Please cite the following reference when publishing + results obtained with NWChem: + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + + AUTHORS + ------- + E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, + J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, + S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, + F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, + P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, + D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, + A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, + A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, + H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, + K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, + H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, + A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, + R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, + K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, + A. T. Wong, Z. Zhang. + + Total times cpu: 28.4s wall: 32.3s diff --git a/data/NWChem/basicNWChem7.0/dvb_gopt_ks.nw b/data/NWChem/basicNWChem7.0/dvb_gopt_ks.nw new file mode 100644 index 000000000..c6821ffb0 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_gopt_ks.nw @@ -0,0 +1,33 @@ + start dvb + title "Divinylbenzene in STO-3G basis set" + + geometry units angstroms + C -1.4152533224 0.2302217854 0.0000000000 + C 1.4152533224 -0.2302217854 0.0000000000 + C -0.4951331558 1.3144608674 0.0000000000 + C 0.4951331558 -1.3144608674 0.0000000000 + C 0.8894090436 1.0909493743 0.0000000000 + C -0.8894090436 -1.0909493743 0.0000000000 + H -0.8795511985 2.3437343748 0.0000000000 + H 0.8795511985 -2.3437343748 0.0000000000 + H 1.5779041557 1.9450061275 0.0000000000 + H -1.5779041557 -1.9450061275 0.0000000000 + C 2.8845844962 -0.5210893778 0.0000000000 + C -2.8845844962 0.5210893778 0.0000000000 + H 3.1403356810 -1.5919605685 0.0000000000 + H -3.1403356810 1.5919605685 0.0000000000 + C 3.8800428103 0.3822535424 0.0000000000 + C -3.8800428103 -0.3822535424 0.0000000000 + H 3.6946765858 1.4624389570 0.0000000000 + H -3.6946765858 -1.4624389570 0.0000000000 + H 4.9316453546 0.0711049543 0.0000000000 + H -4.9316453546 -0.0711049543 0.0000000000 + end + basis + * library sto-3g + end + dft + xc b3lyp + end + task dft optimize + diff --git a/data/NWChem/basicNWChem7.0/dvb_gopt_ks.out b/data/NWChem/basicNWChem7.0/dvb_gopt_ks.out new file mode 100644 index 000000000..137232af1 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_gopt_ks.out @@ -0,0 +1,4776 @@ + argument 1 = dvb_gopt_ks.nw + + + + + Northwest Computational Chemistry Package (NWChem) 6.5 + ------------------------------------------------------ + + + Environmental Molecular Sciences Laboratory + Pacific Northwest National Laboratory + Richland, WA 99352 + + Copyright (c) 1994-2014 + Pacific Northwest National Laboratory + Battelle Memorial Institute + + NWChem is an open-source computational chemistry package + distributed under the terms of the + Educational Community License (ECL) 2.0 + A copy of the license is included with this distribution + in the LICENSE.TXT file + + ACKNOWLEDGMENT + -------------- + + This software and its documentation were developed at the + EMSL at Pacific Northwest National Laboratory, a multiprogram + national laboratory, operated for the U.S. Department of Energy + by Battelle under Contract Number DE-AC05-76RL01830. Support + for this work was provided by the Department of Energy Office + of Biological and Environmental Research, Office of Basic + Energy Sciences, and the Office of Advanced Scientific Computing. + + + Job information + --------------- + + hostname = boman + program = /usr/lib64/mpich/bin/nwchem_mpich + date = Sat Jan 17 16:29:02 2015 + + compiled = Sat_Dec_06_13:02:58_2014 + source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 + nwchem branch = 6.5 + nwchem revision = 26243 + ga revision = 10506 + input = dvb_gopt_ks.nw + prefix = dvb. + data base = ./dvb.db + status = startup + nproc = 1 + time left = -1s + + + + Memory information + ------------------ + + heap = 13107194 doubles = 100.0 Mbytes + stack = 13107199 doubles = 100.0 Mbytes + global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) + total = 52428793 doubles = 400.0 Mbytes + verify = yes + hardfail = no + + + Directory information + --------------------- + + 0 permanent = . + 0 scratch = . + + + + + NWChem Input Module + ------------------- + + + Divinylbenzene in STO-3G basis set + ---------------------------------- + + Scaling coordinates for geometry "geometry" by 1.889725989 + (inverse scale = 0.529177249) + + C2H symmetry detected + + ------ + auto-z + ------ + + + Geometry "geometry" -> "" + ------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.23680554 1.41416660 0.00000000 + 2 C 6.0000 -0.23680554 -1.41416660 0.00000000 + 3 C 6.0000 1.31675086 0.48901061 0.00000000 + 4 C 6.0000 -1.31675086 -0.48901061 0.00000000 + 5 C 6.0000 1.08679847 -0.89447642 0.00000000 + 6 C 6.0000 -1.08679847 0.89447642 0.00000000 + 7 H 1.0000 2.34780221 0.86863451 0.00000000 + 8 H 1.0000 -2.34780221 -0.86863451 0.00000000 + 9 H 1.0000 1.93764188 -1.58693865 0.00000000 + 10 H 1.0000 -1.93764188 1.58693865 0.00000000 + 11 C 6.0000 -0.53450789 -2.88212824 0.00000000 + 12 C 6.0000 0.53450789 2.88212824 0.00000000 + 13 H 1.0000 -1.60655769 -3.13289308 0.00000000 + 14 H 1.0000 1.60655769 3.13289308 0.00000000 + 15 C 6.0000 0.36419263 -3.88177971 0.00000000 + 16 C 6.0000 -0.36419263 3.88177971 0.00000000 + 17 H 1.0000 1.44522900 -3.70144241 0.00000000 + 18 H 1.0000 -1.44522900 3.70144241 0.00000000 + 19 H 1.0000 0.04815351 -4.93192286 0.00000000 + 20 H 1.0000 -0.04815351 4.93192286 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 445.9370121674 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value + ----------- -------- ----- ----- ----- ----- ----- ---------- + 1 Stretch 1 3 1.42204 + 2 Stretch 1 6 1.42197 + 3 Stretch 1 12 1.49784 + 4 Stretch 2 4 1.42204 + 5 Stretch 2 5 1.42197 + 6 Stretch 2 11 1.49784 + 7 Stretch 3 5 1.40247 + 8 Stretch 3 7 1.09872 + 9 Stretch 4 6 1.40247 + 10 Stretch 4 8 1.09872 + 11 Stretch 5 9 1.09701 + 12 Stretch 6 10 1.09701 + 13 Stretch 11 13 1.10099 + 14 Stretch 11 15 1.34423 + 15 Stretch 12 14 1.10099 + 16 Stretch 12 16 1.34423 + 17 Stretch 15 17 1.09597 + 18 Stretch 15 19 1.09667 + 19 Stretch 16 18 1.09597 + 20 Stretch 16 20 1.09667 + 21 Bend 1 3 5 121.14867 + 22 Bend 1 3 7 119.20109 + 23 Bend 1 6 4 120.87358 + 24 Bend 1 6 10 119.42285 + 25 Bend 1 12 14 114.62953 + 26 Bend 1 12 16 126.57992 + 27 Bend 2 4 6 121.14867 + 28 Bend 2 4 8 119.20109 + 29 Bend 2 5 3 120.87358 + 30 Bend 2 5 9 119.42285 + 31 Bend 2 11 13 114.62953 + 32 Bend 2 11 15 126.57992 + 33 Bend 3 1 6 117.97776 + 34 Bend 3 1 12 119.12155 + 35 Bend 3 5 9 119.70357 + 36 Bend 4 2 5 117.97776 + 37 Bend 4 2 11 119.12155 + 38 Bend 4 6 10 119.70357 + 39 Bend 5 2 11 122.90069 + 40 Bend 5 3 7 119.65024 + 41 Bend 6 1 12 122.90069 + 42 Bend 6 4 8 119.65024 + 43 Bend 11 15 17 122.48517 + 44 Bend 11 15 19 121.29492 + 45 Bend 12 16 18 122.48517 + 46 Bend 12 16 20 121.29492 + 47 Bend 13 11 15 118.79054 + 48 Bend 14 12 16 118.79054 + 49 Bend 17 15 19 116.21990 + 50 Bend 18 16 20 116.21990 + 51 Torsion 1 3 5 2 0.00000 + 52 Torsion 1 3 5 9 180.00000 + 53 Torsion 1 6 4 2 0.00000 + 54 Torsion 1 6 4 8 180.00000 + 55 Torsion 1 12 16 18 0.00000 + 56 Torsion 1 12 16 20 180.00000 + 57 Torsion 2 4 6 10 180.00000 + 58 Torsion 2 5 3 7 180.00000 + 59 Torsion 2 11 15 17 0.00000 + 60 Torsion 2 11 15 19 180.00000 + 61 Torsion 3 1 6 4 0.00000 + 62 Torsion 3 1 6 10 180.00000 + 63 Torsion 3 1 12 14 0.00000 + 64 Torsion 3 1 12 16 180.00000 + 65 Torsion 3 5 2 4 0.00000 + 66 Torsion 3 5 2 11 180.00000 + 67 Torsion 4 2 5 9 180.00000 + 68 Torsion 4 2 11 13 0.00000 + 69 Torsion 4 2 11 15 180.00000 + 70 Torsion 4 6 1 12 180.00000 + 71 Torsion 5 2 4 6 -0.00000 + 72 Torsion 5 2 4 8 180.00000 + 73 Torsion 5 2 11 13 180.00000 + 74 Torsion 5 2 11 15 0.00000 + 75 Torsion 5 3 1 6 0.00000 + 76 Torsion 5 3 1 12 180.00000 + 77 Torsion 6 1 3 7 180.00000 + 78 Torsion 6 1 12 14 180.00000 + 79 Torsion 6 1 12 16 0.00000 + 80 Torsion 6 4 2 11 180.00000 + 81 Torsion 7 3 1 12 -0.00000 + 82 Torsion 7 3 5 9 0.00000 + 83 Torsion 8 4 2 11 -0.00000 + 84 Torsion 8 4 6 10 0.00000 + 85 Torsion 9 5 2 11 0.00000 + 86 Torsion 10 6 1 12 0.00000 + 87 Torsion 13 11 15 17 180.00000 + 88 Torsion 13 11 15 19 -0.00000 + 89 Torsion 14 12 16 18 180.00000 + 90 Torsion 14 12 16 20 -0.00000 + + + XYZ format geometry + ------------------- + 20 + geometry + C 0.23680554 1.41416660 0.00000000 + C -0.23680554 -1.41416660 0.00000000 + C 1.31675086 0.48901061 0.00000000 + C -1.31675086 -0.48901061 0.00000000 + C 1.08679847 -0.89447642 0.00000000 + C -1.08679847 0.89447642 0.00000000 + H 2.34780221 0.86863451 0.00000000 + H -2.34780221 -0.86863451 0.00000000 + H 1.93764188 -1.58693865 0.00000000 + H -1.93764188 1.58693865 0.00000000 + C -0.53450789 -2.88212824 0.00000000 + C 0.53450789 2.88212824 0.00000000 + H -1.60655769 -3.13289308 0.00000000 + H 1.60655769 3.13289308 0.00000000 + C 0.36419263 -3.88177971 0.00000000 + C -0.36419263 3.88177971 0.00000000 + H 1.44522900 -3.70144241 0.00000000 + H -1.44522900 3.70144241 0.00000000 + H 0.04815351 -4.93192286 0.00000000 + H -0.04815351 4.93192286 0.00000000 + + ============================================================================== + internuclear distances + ------------------------------------------------------------------------------ + center one | center two | atomic units | angstroms + ------------------------------------------------------------------------------ + 3 C | 1 C | 2.68726 | 1.42204 + 4 C | 2 C | 2.68726 | 1.42204 + 5 C | 2 C | 2.68714 | 1.42197 + 5 C | 3 C | 2.65028 | 1.40247 + 6 C | 1 C | 2.68714 | 1.42197 + 6 C | 4 C | 2.65028 | 1.40247 + 7 H | 3 C | 2.07628 | 1.09872 + 8 H | 4 C | 2.07628 | 1.09872 + 9 H | 5 C | 2.07305 | 1.09701 + 10 H | 6 C | 2.07305 | 1.09701 + 11 C | 2 C | 2.83052 | 1.49784 + 12 C | 1 C | 2.83052 | 1.49784 + 13 H | 11 C | 2.08056 | 1.10099 + 14 H | 12 C | 2.08056 | 1.10099 + 15 C | 11 C | 2.54023 | 1.34423 + 16 C | 12 C | 2.54023 | 1.34423 + 17 H | 15 C | 2.07109 | 1.09597 + 18 H | 16 C | 2.07109 | 1.09597 + 19 H | 15 C | 2.07240 | 1.09667 + 20 H | 16 C | 2.07240 | 1.09667 + ------------------------------------------------------------------------------ + number of included internuclear distances: 20 + ============================================================================== + + + + ============================================================================== + internuclear angles + ------------------------------------------------------------------------------ + center 1 | center 2 | center 3 | degrees + ------------------------------------------------------------------------------ + 3 C | 1 C | 6 C | 117.98 + 3 C | 1 C | 12 C | 119.12 + 6 C | 1 C | 12 C | 122.90 + 4 C | 2 C | 5 C | 117.98 + 4 C | 2 C | 11 C | 119.12 + 5 C | 2 C | 11 C | 122.90 + 1 C | 3 C | 5 C | 121.15 + 1 C | 3 C | 7 H | 119.20 + 5 C | 3 C | 7 H | 119.65 + 2 C | 4 C | 6 C | 121.15 + 2 C | 4 C | 8 H | 119.20 + 6 C | 4 C | 8 H | 119.65 + 2 C | 5 C | 3 C | 120.87 + 2 C | 5 C | 9 H | 119.42 + 3 C | 5 C | 9 H | 119.70 + 1 C | 6 C | 4 C | 120.87 + 1 C | 6 C | 10 H | 119.42 + 4 C | 6 C | 10 H | 119.70 + 2 C | 11 C | 13 H | 114.63 + 2 C | 11 C | 15 C | 126.58 + 13 H | 11 C | 15 C | 118.79 + 1 C | 12 C | 14 H | 114.63 + 1 C | 12 C | 16 C | 126.58 + 14 H | 12 C | 16 C | 118.79 + 11 C | 15 C | 17 H | 122.49 + 11 C | 15 C | 19 H | 121.29 + 17 H | 15 C | 19 H | 116.22 + 12 C | 16 C | 18 H | 122.49 + 12 C | 16 C | 20 H | 121.29 + 18 H | 16 C | 20 H | 116.22 + ------------------------------------------------------------------------------ + number of included internuclear angles: 30 + ============================================================================== + + + + library name resolved from: .nwchemrc + library file name is: + + + + Summary of "ao basis" -> "" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + * sto-3g on all atoms + + + + + NWChem Geometry Optimization + ---------------------------- + + + + + Divinylbenzene in STO-3G basis set + + + maximum gradient threshold (gmax) = 0.000450 + rms gradient threshold (grms) = 0.000300 + maximum cartesian step threshold (xmax) = 0.001800 + rms cartesian step threshold (xrms) = 0.001200 + fixed trust radius (trust) = 0.300000 + maximum step size to saddle (sadstp) = 0.100000 + energy precision (eprec) = 5.0D-06 + maximum number of steps (nptopt) = 20 + initial hessian option (inhess) = 0 + line search option (linopt) = 1 + hessian update option (modupd) = 1 + saddle point option (modsad) = 0 + initial eigen-mode to follow (moddir) = 0 + initial variable to follow (vardir) = 0 + follow first negative mode (firstneg) = T + apply conjugacy (opcg) = F + source of zmatrix = autoz + + + ------------------- + Energy Minimization + ------------------- + + + Names of Z-matrix variables + 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 + + Variables with the same non-blank name are constrained to be equal + + + Using old Hessian from previous optimization + + -------- + Step 0 + -------- + + + Geometry "geometry" -> "geometry" + --------------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.23680554 1.41416660 0.00000000 + 2 C 6.0000 -0.23680554 -1.41416660 0.00000000 + 3 C 6.0000 1.31675086 0.48901061 0.00000000 + 4 C 6.0000 -1.31675086 -0.48901061 0.00000000 + 5 C 6.0000 1.08679847 -0.89447642 0.00000000 + 6 C 6.0000 -1.08679847 0.89447642 0.00000000 + 7 H 1.0000 2.34780221 0.86863451 0.00000000 + 8 H 1.0000 -2.34780221 -0.86863451 0.00000000 + 9 H 1.0000 1.93764188 -1.58693865 0.00000000 + 10 H 1.0000 -1.93764188 1.58693865 0.00000000 + 11 C 6.0000 -0.53450789 -2.88212824 0.00000000 + 12 C 6.0000 0.53450789 2.88212824 0.00000000 + 13 H 1.0000 -1.60655769 -3.13289308 0.00000000 + 14 H 1.0000 1.60655769 3.13289308 0.00000000 + 15 C 6.0000 0.36419263 -3.88177971 0.00000000 + 16 C 6.0000 -0.36419263 3.88177971 0.00000000 + 17 H 1.0000 1.44522900 -3.70144241 0.00000000 + 18 H 1.0000 -1.44522900 3.70144241 0.00000000 + 19 H 1.0000 0.04815351 -4.93192286 0.00000000 + 20 H 1.0000 -0.04815351 4.93192286 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 445.9370121674 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + Basis "ao basis" -> "ao basis" (cartesian) + ----- + C (Carbon) + ---------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 7.16168370E+01 0.154329 + 1 S 1.30450960E+01 0.535328 + 1 S 3.53051220E+00 0.444635 + + 2 S 2.94124940E+00 -0.099967 + 2 S 6.83483100E-01 0.399513 + 2 S 2.22289900E-01 0.700115 + + 3 P 2.94124940E+00 0.155916 + 3 P 6.83483100E-01 0.607684 + 3 P 2.22289900E-01 0.391957 + + H (Hydrogen) + ------------ + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.42525091E+00 0.154329 + 1 S 6.23913730E-01 0.535328 + 1 S 1.68855400E-01 0.444635 + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + Caching 1-el integrals + + General Information + ------------------- + SCF calculation type: DFT + Wavefunction type: closed shell. + No. of atoms : 20 + No. of electrons : 70 + Alpha electrons : 35 + Beta electrons : 35 + Charge : 0 + Spin multiplicity: 1 + Use of symmetry is: on ; symmetry adaption is: on + Maximum number of iterations: 30 + AO basis - number of functions: 60 + number of shells: 40 + Convergence on energy requested: 1.00D-06 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 + + XC Information + -------------- + B3LYP Method XC Potential + Hartree-Fock (Exact) Exchange 0.200 + Slater Exchange Functional 0.800 local + Becke 1988 Exchange Functional 0.720 non-local + Lee-Yang-Parr Correlation Functional 0.810 + VWN I RPA Correlation Functional 0.190 local + + Grid Information + ---------------- + Grid used for XC integration: medium + Radial quadrature: Mura-Knowles + Angular quadrature: Lebedev. + Tag B.-S. Rad. Rad. Pts. Rad. Cut. Ang. Pts. + --- ---------- --------- --------- --------- + C 0.70 49 12.0 434 + H 0.35 45 12.0 434 + Grid pruning is: on + Number of quadrature shells: 470 + Spatial weights used: Erf1 + + Convergence Information + ----------------------- + Convergence aids based upon iterative change in + total energy or number of iterations. + Levelshifting, if invoked, occurs when the + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + DIIS, if invoked, will attempt to extrapolate + using up to (NFOCK): 10 stored Fock matrices. + + Damping( 0%) Levelshifting(0.5) DIIS + --------------- ------------------- --------------- + dE on: start ASAP start + dE off: 2 iters 30 iters 30 iters + + + Screening Tolerance Information + ------------------------------- + Density screening/tol_rho: 1.00D-10 + AO Gaussian exp screening on grid/accAOfunc: 14 + CD Gaussian exp screening on grid/accCDfunc: 20 + XC Gaussian exp screening on grid/accXCfunc: 20 + Schwarz screening/accCoul: 1.00D-08 + + + Superposition of Atomic Density Guess + ------------------------------------- + + Sum of atomic energies: -376.44825176 + + Non-variational initial energy + ------------------------------ + + Total energy = -379.429467 + 1-e energy = -1401.451096 + 2-e energy = 576.084617 + HOMO = -0.037645 + LUMO = 0.163723 + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 ag 2 bu 3 ag 4 bu 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 ag 24 bu 25 bu + 26 ag 27 bu 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 bu + + Time after variat. SCF: 0.8 + Time prior to 1st pass: 0.8 + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% + + + Grid_pts file = ./dvb.gridpts.0 + Record size in doubles = 12289 No. of grid_pts per rec = 3070 + Max. records in memory = 75 Max. recs in file = ********* + + + Memory utilization after 1st SCF pass: + Heap Space remaining (MW): 10.94 10936722 + Stack Space remaining (MW): 13.11 13106284 + + convergence iter energy DeltaE RMS-Dens Diis-err time + ---------------- ----- ----------------- --------- --------- --------- ------ + d= 0,ls=0.0,diis 1 -382.2544280479 -8.28D+02 1.42D-02 3.78D-01 4.0 + d= 0,ls=0.0,diis 2 -382.3017246235 -4.73D-02 6.99D-03 3.82D-02 4.8 + d= 0,ls=0.0,diis 3 -382.2954278893 6.30D-03 4.21D-03 7.95D-02 5.7 + d= 0,ls=0.0,diis 4 -382.3080934058 -1.27D-02 5.17D-04 8.80D-04 6.7 + d= 0,ls=0.0,diis 5 -382.3082297603 -1.36D-04 1.18D-04 4.46D-05 7.6 + Resetting Diis + d= 0,ls=0.0,diis 6 -382.3082358982 -6.14D-06 3.18D-05 3.09D-06 8.6 + d= 0,ls=0.0,diis 7 -382.3082363748 -4.77D-07 1.42D-05 1.61D-07 9.5 + d= 0,ls=0.0,diis 8 -382.3082363723 2.52D-09 7.54D-06 1.77D-07 10.5 + + + Total DFT energy = -382.308236372325 + One electron energy = -1400.645117860810 + Coulomb energy = 630.242757684166 + Exchange-Corr. energy = -57.842888363128 + Nuclear repulsion energy = 445.937012167446 + + Numeric. integr. density = 69.999956106136 + + Total iterative time = 9.7s + + + + Occupations of the irreducible representations + ---------------------------------------------- + + irrep alpha beta + -------- -------- -------- + ag 15.0 15.0 + au 2.0 2.0 + bg 3.0 3.0 + bu 15.0 15.0 + + + DFT Final Molecular Orbital Analysis + ------------------------------------ + + Vector 10 Occ=2.000000D+00 E=-9.992164D+00 Symmetry=ag + MO Center= 4.2D-09, -4.5D-08, 1.8D-18, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.700478 15 C s 52 0.700478 16 C s + + Vector 11 Occ=2.000000D+00 E=-8.094645D-01 Symmetry=ag + MO Center= 3.0D-17, 1.2D-17, -6.4D-33, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.274704 1 C s 7 0.274704 2 C s + 12 0.247016 3 C s 17 0.247016 4 C s + 22 0.246687 5 C s 27 0.246687 6 C s + + Vector 12 Occ=2.000000D+00 E=-7.539349D-01 Symmetry=bu + MO Center= -7.2D-16, -9.5D-15, 2.2D-21, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 -0.297168 11 C s 41 0.297168 12 C s + 2 0.273788 1 C s 7 -0.273788 2 C s + 48 -0.209312 15 C s 53 0.209312 16 C s + + Vector 13 Occ=2.000000D+00 E=-7.178611D-01 Symmetry=ag + MO Center= 3.8D-16, 4.6D-15, -2.1D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.314815 11 C s 41 0.314815 12 C s + 48 0.309767 15 C s 53 0.309767 16 C s + + Vector 14 Occ=2.000000D+00 E=-6.999224D-01 Symmetry=bu + MO Center= 7.9D-16, -1.8D-15, -1.0D-20, r^2= 3.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.357135 3 C s 17 -0.357135 4 C s + 22 0.323903 5 C s 27 -0.323903 6 C s + + Vector 15 Occ=2.000000D+00 E=-6.673152D-01 Symmetry=bu + MO Center= -5.9D-16, 5.7D-15, 1.2D-19, r^2= 9.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.299507 15 C s 53 -0.299507 16 C s + 2 0.274065 1 C s 7 -0.274065 2 C s + 22 -0.202283 5 C s 27 0.202283 6 C s + + Vector 16 Occ=2.000000D+00 E=-5.885091D-01 Symmetry=ag + MO Center= 5.5D-16, -1.5D-15, 3.7D-17, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.241406 15 C s 53 0.241406 16 C s + 22 0.233816 5 C s 27 0.233816 6 C s + 2 -0.206379 1 C s 7 -0.206379 2 C s + 14 -0.160006 3 C py 19 0.160006 4 C py + 36 -0.159613 11 C s 41 -0.159613 12 C s + + Vector 17 Occ=2.000000D+00 E=-5.591514D-01 Symmetry=ag + MO Center= 3.4D-16, -3.4D-16, -1.4D-16, r^2= 5.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.326032 3 C s 17 0.326032 4 C s + 3 0.184865 1 C px 8 -0.184865 2 C px + 22 -0.170746 5 C s 24 0.170445 5 C py + 27 -0.170746 6 C s 29 -0.170445 6 C py + 31 0.169234 7 H s 32 0.169234 8 H s + + Vector 18 Occ=2.000000D+00 E=-5.314210D-01 Symmetry=bu + MO Center= -4.7D-17, 6.9D-15, -1.5D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.302766 11 C s 41 -0.302766 12 C s + 48 -0.249166 15 C s 53 0.249166 16 C s + 45 0.170518 13 H s 46 -0.170518 14 H s + 57 -0.160626 17 H s 58 0.160626 18 H s + 12 0.154465 3 C s 17 -0.154465 4 C s + + Vector 19 Occ=2.000000D+00 E=-5.099367D-01 Symmetry=ag + MO Center= -7.8D-16, -3.0D-15, -8.7D-17, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.201893 5 C px 28 -0.201893 6 C px + 13 0.184490 3 C px 18 -0.184490 4 C px + 36 0.180763 11 C s 41 0.180763 12 C s + 33 0.169276 9 H s 34 0.169276 10 H s + 22 0.166022 5 C s 27 0.166022 6 C s + + Vector 20 Occ=2.000000D+00 E=-4.575989D-01 Symmetry=ag + MO Center= -2.6D-17, -4.0D-15, -1.4D-16, r^2= 9.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.212730 15 C px 54 -0.212730 16 C px + 38 0.184649 11 C py 43 -0.184649 12 C py + 57 0.179110 17 H s 58 0.179110 18 H s + 45 -0.153092 13 H s 46 -0.153092 14 H s + + Vector 21 Occ=2.000000D+00 E=-4.391970D-01 Symmetry=bu + MO Center= 3.3D-16, 6.8D-15, -7.3D-18, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.219233 11 C px 42 0.219233 12 C px + 50 0.210291 15 C py 55 0.210291 16 C py + 14 0.184960 3 C py 19 0.184960 4 C py + 59 -0.178127 19 H s 60 0.178127 20 H s + 45 -0.155495 13 H s 46 0.155495 14 H s + + Vector 22 Occ=2.000000D+00 E=-4.110181D-01 Symmetry=bu + MO Center= -9.8D-16, -2.7D-15, -2.3D-17, r^2= 6.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.235311 1 C s 7 -0.235311 2 C s + 33 0.230466 9 H s 34 -0.230466 10 H s + 31 -0.226661 7 H s 32 0.226661 8 H s + 13 -0.222264 3 C px 18 -0.222264 4 C px + 24 -0.177969 5 C py 29 -0.177969 6 C py + + Vector 23 Occ=2.000000D+00 E=-3.976936D-01 Symmetry=bu + MO Center= -1.3D-15, 2.9D-15, 3.1D-17, r^2= 8.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.251231 5 C px 28 0.251231 6 C px + 49 0.250513 15 C px 54 0.250513 16 C px + 3 -0.220827 1 C px 8 -0.220827 2 C px + 57 0.215416 17 H s 58 -0.215416 18 H s + 38 0.181490 11 C py 43 0.181490 12 C py + + Vector 24 Occ=2.000000D+00 E=-3.959381D-01 Symmetry=ag + MO Center= 6.4D-16, -5.4D-15, -1.9D-31, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.338998 15 C py 55 -0.338998 16 C py + 59 -0.262595 19 H s 60 -0.262595 20 H s + 37 0.251493 11 C px 42 -0.251493 12 C px + + Vector 25 Occ=2.000000D+00 E=-3.744296D-01 Symmetry=bu + MO Center= -3.3D-16, -1.7D-16, -6.0D-19, r^2= 4.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.307584 3 C px 18 0.307584 4 C px + 31 0.252266 7 H s 32 -0.252266 8 H s + 24 -0.226086 5 C py 29 -0.226086 6 C py + 33 0.218187 9 H s 34 -0.218187 10 H s + 23 0.188069 5 C px 28 0.188069 6 C px + + Vector 26 Occ=2.000000D+00 E=-3.509365D-01 Symmetry=bu + MO Center= -1.2D-15, -1.2D-15, 3.4D-18, r^2= 9.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.245677 15 C py 55 -0.245677 16 C py + 14 0.224345 3 C py 19 0.224345 4 C py + 37 -0.201678 11 C px 42 -0.201678 12 C px + 24 -0.193260 5 C py 29 -0.193260 6 C py + 38 0.187744 11 C py 43 0.187744 12 C py + + Vector 27 Occ=2.000000D+00 E=-3.470151D-01 Symmetry=ag + MO Center= 1.8D-15, -8.3D-17, -8.8D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.295188 15 C px 54 -0.295188 16 C px + 57 0.268012 17 H s 58 0.268012 18 H s + 37 -0.208877 11 C px 42 0.208877 12 C px + 45 0.200233 13 H s 46 0.200233 14 H s + 31 -0.156472 7 H s 32 -0.156472 8 H s + + Vector 28 Occ=2.000000D+00 E=-3.244697D-01 Symmetry=au + MO Center= 5.1D-16, 3.6D-15, 6.3D-17, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.337608 1 C pz 10 0.337608 2 C pz + 15 0.297979 3 C pz 20 0.297979 4 C pz + 25 0.297168 5 C pz 30 0.297168 6 C pz + 39 0.173947 11 C pz 44 0.173947 12 C pz + + Vector 29 Occ=2.000000D+00 E=-3.110651D-01 Symmetry=bu + MO Center= 9.4D-16, 2.1D-15, 2.8D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.259102 13 H s 46 -0.259102 14 H s + 4 0.241972 1 C py 9 0.241972 2 C py + 57 0.231030 17 H s 58 -0.231030 18 H s + 37 -0.217251 11 C px 42 -0.217251 12 C px + 59 -0.212335 19 H s 60 0.212335 20 H s + + Vector 30 Occ=2.000000D+00 E=-2.929831D-01 Symmetry=ag + MO Center= -1.2D-15, -5.2D-15, -5.9D-17, r^2= 6.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 -0.278189 3 C py 19 0.278189 4 C py + 4 0.268404 1 C py 9 -0.268404 2 C py + 38 0.248149 11 C py 43 -0.248149 12 C py + 33 -0.240401 9 H s 34 -0.240401 10 H s + 24 0.234458 5 C py 29 -0.234458 6 C py + + Vector 31 Occ=2.000000D+00 E=-2.874965D-01 Symmetry=ag + MO Center= 2.9D-16, 4.6D-15, 4.4D-17, r^2= 6.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.295864 1 C px 8 -0.295864 2 C px + 23 0.280605 5 C px 28 -0.280605 6 C px + 31 -0.258072 7 H s 32 -0.258072 8 H s + 13 -0.222125 3 C px 18 0.222125 4 C px + 45 -0.182735 13 H s 46 -0.182735 14 H s + + Vector 32 Occ=2.000000D+00 E=-2.634558D-01 Symmetry=bg + MO Center= -4.5D-16, -3.6D-15, 2.3D-21, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.376480 11 C pz 44 0.376480 12 C pz + 5 0.348964 1 C pz 10 -0.348964 2 C pz + 51 -0.271398 15 C pz 56 0.271398 16 C pz + + Vector 33 Occ=2.000000D+00 E=-2.123363D-01 Symmetry=au + MO Center= 2.5D-15, -3.5D-14, 1.5D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.417961 15 C pz 56 0.417961 16 C pz + 39 0.413781 11 C pz 44 0.413781 12 C pz + 15 -0.179205 3 C pz 20 -0.179205 4 C pz + 25 -0.176634 5 C pz 30 -0.176634 6 C pz + + Vector 34 Occ=2.000000D+00 E=-1.951683D-01 Symmetry=bg + MO Center= -4.1D-15, 6.0D-16, -5.8D-19, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.463626 3 C pz 20 -0.463626 4 C pz + 25 0.457536 5 C pz 30 -0.457536 6 C pz + + Vector 35 Occ=2.000000D+00 E=-1.529967D-01 Symmetry=bg + MO Center= -2.5D-16, 3.5D-14, -2.3D-17, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.397372 15 C pz 56 -0.397372 16 C pz + 5 0.387553 1 C pz 10 -0.387553 2 C pz + 25 -0.230746 5 C pz 30 0.230746 6 C pz + 39 0.223676 11 C pz 44 -0.223676 12 C pz + 15 0.215066 3 C pz 20 -0.215066 4 C pz + + Vector 36 Occ=0.000000D+00 E= 3.750925D-02 Symmetry=au + MO Center= 1.0D-15, -3.3D-16, -1.7D-16, r^2= 8.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.449614 15 C pz 56 -0.449614 16 C pz + 5 0.442669 1 C pz 10 0.442669 2 C pz + 25 -0.277554 5 C pz 30 -0.277554 6 C pz + 39 0.256133 11 C pz 44 0.256133 12 C pz + 15 -0.232265 3 C pz 20 -0.232265 4 C pz + + Vector 37 Occ=0.000000D+00 E= 9.011745D-02 Symmetry=au + MO Center= -4.5D-14, 4.0D-15, 6.2D-16, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.582691 3 C pz 20 0.582691 4 C pz + 25 -0.553237 5 C pz 30 -0.553237 6 C pz + + Vector 38 Occ=0.000000D+00 E= 1.107280D-01 Symmetry=bg + MO Center= 4.2D-14, 5.6D-15, 7.3D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.522167 11 C pz 44 -0.522167 12 C pz + 51 -0.523103 15 C pz 56 0.523103 16 C pz + 15 0.240693 3 C pz 20 -0.240693 4 C pz + 25 -0.232246 5 C pz 30 0.232246 6 C pz + + Vector 39 Occ=0.000000D+00 E= 1.822017D-01 Symmetry=au + MO Center= -1.7D-16, -6.6D-15, -4.4D-16, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.529133 11 C pz 44 -0.529133 12 C pz + 5 0.497218 1 C pz 10 0.497218 2 C pz + 51 0.379694 15 C pz 56 0.379694 16 C pz + 25 -0.199197 5 C pz 30 -0.199197 6 C pz + 15 -0.166740 3 C pz 20 -0.166740 4 C pz + + Vector 40 Occ=0.000000D+00 E= 2.723016D-01 Symmetry=bg + MO Center= 3.4D-15, -4.0D-15, -9.7D-17, r^2= 3.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.543477 1 C pz 10 -0.543477 2 C pz + 25 0.466878 5 C pz 30 -0.466878 6 C pz + 15 -0.464185 3 C pz 20 0.464185 4 C pz + 39 0.287732 11 C pz 44 -0.287732 12 C pz + 51 -0.156154 15 C pz 56 0.156154 16 C pz + + Vector 41 Occ=0.000000D+00 E= 3.324852D-01 Symmetry=ag + MO Center= 1.2D-14, -1.8D-15, 2.6D-16, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 -0.423787 9 H s 34 -0.423787 10 H s + 31 -0.413777 7 H s 32 -0.413777 8 H s + 2 0.401567 1 C s 7 0.401567 2 C s + 59 -0.358546 19 H s 60 -0.358546 20 H s + 38 -0.338104 11 C py 43 0.338104 12 C py + + Vector 42 Occ=0.000000D+00 E= 3.406446D-01 Symmetry=bu + MO Center= -1.1D-14, -1.7D-14, 1.3D-18, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.433824 13 H s 46 -0.433824 14 H s + 13 0.355436 3 C px 18 0.355436 4 C px + 37 0.344560 11 C px 42 0.344560 12 C px + 31 -0.321890 7 H s 32 0.321890 8 H s + 57 -0.323133 17 H s 58 0.323133 18 H s + + Vector 43 Occ=0.000000D+00 E= 3.795222D-01 Symmetry=bu + MO Center= -4.2D-15, 1.6D-14, -5.2D-17, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.546119 11 C s 41 -0.546119 12 C s + 4 0.461528 1 C py 9 0.461528 2 C py + 33 0.405575 9 H s 34 -0.405575 10 H s + 59 0.351693 19 H s 60 -0.351693 20 H s + 2 0.338373 1 C s 7 -0.338373 2 C s + + Vector 44 Occ=0.000000D+00 E= 3.812905D-01 Symmetry=ag + MO Center= 1.3D-14, 2.3D-14, -1.1D-16, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.579604 13 H s 46 0.579604 14 H s + 12 0.393522 3 C s 17 0.393522 4 C s + 57 -0.391444 17 H s 58 -0.391444 18 H s + 36 -0.382169 11 C s 41 -0.382169 12 C s + 37 0.338366 11 C px 42 -0.338366 12 C px + + Vector 45 Occ=0.000000D+00 E= 4.103423D-01 Symmetry=ag + MO Center= -3.7D-13, 1.1D-12, -2.1D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.647348 15 C s 53 0.647348 16 C s + 22 0.620073 5 C s 27 0.620073 6 C s + 57 -0.513313 17 H s 58 -0.513313 18 H s + 12 -0.443657 3 C s 17 -0.443657 4 C s + 59 -0.320795 19 H s 60 -0.320795 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.112340D-01 Symmetry=bu + MO Center= 3.6D-13, -1.1D-12, 1.1D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.613157 5 C s 27 -0.613157 6 C s + 48 0.539738 15 C s 53 -0.539738 16 C s + 2 0.476220 1 C s 7 -0.476220 2 C s + 57 -0.447818 17 H s 58 0.447818 18 H s + 12 -0.440665 3 C s 17 0.440665 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.258024D-01 Symmetry=bu + MO Center= -5.7D-15, -1.4D-14, -8.9D-18, r^2= 9.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.603107 7 H s 32 -0.603107 8 H s + 36 -0.446798 11 C s 41 0.446798 12 C s + 45 0.437141 13 H s 46 -0.437141 14 H s + 12 -0.368675 3 C s 17 0.368675 4 C s + 59 0.337705 19 H s 60 -0.337705 20 H s + + Vector 48 Occ=0.000000D+00 E= 4.393598D-01 Symmetry=ag + MO Center= 2.8D-15, 4.4D-16, 9.2D-17, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.782306 1 C s 7 0.782306 2 C s + 36 -0.556794 11 C s 41 -0.556794 12 C s + 12 -0.499660 3 C s 17 -0.499660 4 C s + 22 -0.411568 5 C s 27 -0.411568 6 C s + 48 0.409883 15 C s 53 0.409883 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.537217D-01 Symmetry=bu + MO Center= -8.8D-15, 6.5D-15, -1.2D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.706720 15 C s 53 -0.706720 16 C s + 57 -0.525554 17 H s 58 0.525554 18 H s + 33 0.477116 9 H s 34 -0.477116 10 H s + 36 -0.428999 11 C s 41 0.428999 12 C s + 22 -0.407169 5 C s 27 0.407169 6 C s + + Vector 50 Occ=0.000000D+00 E= 4.783356D-01 Symmetry=ag + MO Center= 1.1D-14, -6.4D-15, 2.0D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.706217 3 C s 17 0.706217 4 C s + 22 -0.619403 5 C s 27 -0.619403 6 C s + 59 -0.475188 19 H s 60 -0.475188 20 H s + 48 0.415040 15 C s 53 0.415040 16 C s + 50 -0.382623 15 C py 55 0.382623 16 C py + + Vector 51 Occ=0.000000D+00 E= 5.255622D-01 Symmetry=ag + MO Center= 6.7D-15, -6.7D-15, 8.3D-17, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.601871 1 C py 9 -0.601871 2 C py + 36 -0.491666 11 C s 41 -0.491666 12 C s + 13 -0.452505 3 C px 18 0.452505 4 C px + 2 -0.448706 1 C s 7 -0.448706 2 C s + 49 -0.342028 15 C px 54 0.342028 16 C px + + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2631.731379210404 0.000000000000 0.000000000000 + 0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678692 + + Multipole analysis of the density + --------------------------------- + + L x y z total alpha beta nuclear + - - - - ----- ----- ---- ------- + 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 0.000000 + 1 0 1 0 0.000000 0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 0.000000 + + 2 2 0 0 -37.347165 -141.071519 -141.071519 244.795872 + 2 1 1 0 0.066501 2.848764 2.848764 -5.631027 + 2 1 0 1 0.000000 0.000000 0.000000 0.000000 + 2 0 2 0 -37.714743 -767.339021 -767.339021 1496.963300 + 2 0 1 1 -0.000000 -0.000000 -0.000000 0.000000 + 2 0 0 2 -43.587345 -21.793672 -21.793672 0.000000 + + + Parallel integral file used 8 records with 0 large values + + + + NWChem DFT Gradient Module + -------------------------- + + + Divinylbenzene in STO-3G basis set + + + + charge = 0.00 + wavefunction = closed shell + + Using symmetry + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.447498 2.672387 0.000000 0.000233 -0.000680 0.000000 + 2 C -0.447498 -2.672387 0.000000 -0.000233 0.000680 -0.000000 + 3 C 2.488298 0.924096 0.000000 0.000303 0.001221 0.000000 + 4 C -2.488298 -0.924096 0.000000 -0.000303 -0.001221 0.000000 + 5 C 2.053751 -1.690315 0.000000 0.001344 0.000149 0.000000 + 6 C -2.053751 1.690315 0.000000 -0.001344 -0.000149 0.000000 + 7 H 4.436703 1.641481 0.000000 0.000159 -0.000140 0.000000 + 8 H -4.436703 -1.641481 0.000000 -0.000159 0.000140 0.000000 + 9 H 3.661612 -2.998879 0.000000 -0.000771 -0.000273 0.000000 + 10 H -3.661612 2.998879 0.000000 0.000771 0.000273 0.000000 + 11 C -1.010073 -5.446433 0.000000 0.000511 0.000583 0.000000 + 12 C 1.010073 5.446433 0.000000 -0.000511 -0.000583 0.000000 + 13 H -3.035954 -5.920309 0.000000 -0.000315 -0.000572 0.000000 + 14 H 3.035954 5.920309 0.000000 0.000315 0.000572 0.000000 + 15 C 0.688224 -7.335500 0.000000 -0.000195 -0.000023 0.000000 + 16 C -0.688224 7.335500 0.000000 0.000195 0.000023 0.000000 + 17 H 2.731087 -6.994712 0.000000 -0.000070 0.000373 0.000000 + 18 H -2.731087 6.994712 0.000000 0.000070 -0.000373 0.000000 + 19 H 0.090997 -9.319983 0.000000 -0.000133 -0.000397 0.000000 + 20 H -0.090997 9.319983 0.000000 0.000133 0.000397 0.000000 + + ---------------------------------------- + | Time | 1-e(secs) | 2-e(secs) | + ---------------------------------------- + | CPU | 0.02 | 2.84 | + ---------------------------------------- + | WALL | 0.02 | 2.85 | + ---------------------------------------- + +@ Step Energy Delta E Gmax Grms Xrms Xmax Walltime +@ ---- ---------------- -------- -------- -------- -------- -------- -------- +@ 0 -382.30823637 0.0D+00 0.00075 0.00023 0.00000 0.00000 16.9 + ok + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value Gradient + ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- + 1 Stretch 1 3 1.42204 -0.00030 + 2 Stretch 1 6 1.42197 0.00075 + 3 Stretch 1 12 1.49784 0.00008 + 4 Stretch 2 4 1.42204 -0.00030 + 5 Stretch 2 5 1.42197 0.00075 + 6 Stretch 2 11 1.49784 0.00008 + 7 Stretch 3 5 1.40247 0.00030 + 8 Stretch 3 7 1.09872 0.00010 + 9 Stretch 4 6 1.40247 0.00030 + 10 Stretch 4 8 1.09872 0.00010 + 11 Stretch 5 9 1.09701 -0.00043 + 12 Stretch 6 10 1.09701 -0.00043 + 13 Stretch 11 13 1.10099 0.00044 + 14 Stretch 11 15 1.34423 -0.00023 + 15 Stretch 12 14 1.10099 0.00044 + 16 Stretch 12 16 1.34423 -0.00023 + 17 Stretch 15 17 1.09597 -0.00001 + 18 Stretch 15 19 1.09667 0.00042 + 19 Stretch 16 18 1.09597 -0.00001 + 20 Stretch 16 20 1.09667 0.00042 + 21 Bend 1 3 5 121.14867 -0.00040 + 22 Bend 1 3 7 119.20109 0.00030 + 23 Bend 1 6 4 120.87358 0.00004 + 24 Bend 1 6 10 119.42285 -0.00040 + 25 Bend 1 12 14 114.62953 0.00034 + 26 Bend 1 12 16 126.57992 -0.00015 + 27 Bend 2 4 6 121.14867 -0.00040 + 28 Bend 2 4 8 119.20109 0.00030 + 29 Bend 2 5 3 120.87358 0.00004 + 30 Bend 2 5 9 119.42285 -0.00040 + 31 Bend 2 11 13 114.62953 0.00034 + 32 Bend 2 11 15 126.57992 -0.00015 + 33 Bend 3 1 6 117.97776 0.00035 + 34 Bend 3 1 12 119.12155 -0.00008 + 35 Bend 3 5 9 119.70357 0.00036 + 36 Bend 4 2 5 117.97776 0.00035 + 37 Bend 4 2 11 119.12155 -0.00008 + 38 Bend 4 6 10 119.70357 0.00036 + 39 Bend 5 2 11 122.90069 -0.00027 + 40 Bend 5 3 7 119.65024 0.00009 + 41 Bend 6 1 12 122.90069 -0.00027 + 42 Bend 6 4 8 119.65024 0.00009 + 43 Bend 11 15 17 122.48517 -0.00027 + 44 Bend 11 15 19 121.29492 0.00013 + 45 Bend 12 16 18 122.48517 -0.00027 + 46 Bend 12 16 20 121.29492 0.00013 + 47 Bend 13 11 15 118.79054 -0.00019 + 48 Bend 14 12 16 118.79054 -0.00019 + 49 Bend 17 15 19 116.21990 0.00014 + 50 Bend 18 16 20 116.21990 0.00014 + 51 Torsion 1 3 5 2 0.00000 0.00000 + 52 Torsion 1 3 5 9 180.00000 0.00000 + 53 Torsion 1 6 4 2 0.00000 0.00000 + 54 Torsion 1 6 4 8 180.00000 -0.00000 + 55 Torsion 1 12 16 18 0.00000 0.00000 + 56 Torsion 1 12 16 20 180.00000 -0.00000 + 57 Torsion 2 4 6 10 180.00000 0.00000 + 58 Torsion 2 5 3 7 180.00000 -0.00000 + 59 Torsion 2 11 15 17 0.00000 -0.00000 + 60 Torsion 2 11 15 19 180.00000 -0.00000 + 61 Torsion 3 1 6 4 0.00000 0.00000 + 62 Torsion 3 1 6 10 180.00000 -0.00000 + 63 Torsion 3 1 12 14 0.00000 0.00000 + 64 Torsion 3 1 12 16 180.00000 0.00000 + 65 Torsion 3 5 2 4 0.00000 0.00000 + 66 Torsion 3 5 2 11 180.00000 0.00000 + 67 Torsion 4 2 5 9 180.00000 -0.00000 + 68 Torsion 4 2 11 13 0.00000 0.00000 + 69 Torsion 4 2 11 15 180.00000 0.00000 + 70 Torsion 4 6 1 12 180.00000 0.00000 + 71 Torsion 5 2 4 6 -0.00000 -0.00000 + 72 Torsion 5 2 4 8 180.00000 0.00000 + 73 Torsion 5 2 11 13 180.00000 -0.00000 + 74 Torsion 5 2 11 15 0.00000 0.00000 + 75 Torsion 5 3 1 6 0.00000 -0.00000 + 76 Torsion 5 3 1 12 180.00000 -0.00000 + 77 Torsion 6 1 3 7 180.00000 0.00000 + 78 Torsion 6 1 12 14 180.00000 -0.00000 + 79 Torsion 6 1 12 16 0.00000 0.00000 + 80 Torsion 6 4 2 11 180.00000 -0.00000 + 81 Torsion 7 3 1 12 -0.00000 -0.00000 + 82 Torsion 7 3 5 9 0.00000 0.00000 + 83 Torsion 8 4 2 11 -0.00000 -0.00000 + 84 Torsion 8 4 6 10 0.00000 -0.00000 + 85 Torsion 9 5 2 11 0.00000 0.00000 + 86 Torsion 10 6 1 12 0.00000 -0.00000 + 87 Torsion 13 11 15 17 180.00000 0.00000 + 88 Torsion 13 11 15 19 -0.00000 0.00000 + 89 Torsion 14 12 16 18 180.00000 0.00000 + 90 Torsion 14 12 16 20 -0.00000 0.00000 + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + Caching 1-el integrals + + General Information + ------------------- + SCF calculation type: DFT + Wavefunction type: closed shell. + No. of atoms : 20 + No. of electrons : 70 + Alpha electrons : 35 + Beta electrons : 35 + Charge : 0 + Spin multiplicity: 1 + Use of symmetry is: on ; symmetry adaption is: on + Maximum number of iterations: 30 + AO basis - number of functions: 60 + number of shells: 40 + Convergence on energy requested: 1.00D-06 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 + + XC Information + -------------- + B3LYP Method XC Potential + Hartree-Fock (Exact) Exchange 0.200 + Slater Exchange Functional 0.800 local + Becke 1988 Exchange Functional 0.720 non-local + Lee-Yang-Parr Correlation Functional 0.810 + VWN I RPA Correlation Functional 0.190 local + + Grid Information + ---------------- + Grid used for XC integration: medium + Radial quadrature: Mura-Knowles + Angular quadrature: Lebedev. + Tag B.-S. Rad. Rad. Pts. Rad. Cut. Ang. Pts. + --- ---------- --------- --------- --------- + C 0.70 49 12.0 434 + H 0.35 45 12.0 434 + Grid pruning is: on + Number of quadrature shells: 470 + Spatial weights used: Erf1 + + Convergence Information + ----------------------- + Convergence aids based upon iterative change in + total energy or number of iterations. + Levelshifting, if invoked, occurs when the + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + DIIS, if invoked, will attempt to extrapolate + using up to (NFOCK): 10 stored Fock matrices. + + Damping( 0%) Levelshifting(0.5) DIIS + --------------- ------------------- --------------- + dE on: start ASAP start + dE off: 2 iters 30 iters 30 iters + + + Screening Tolerance Information + ------------------------------- + Density screening/tol_rho: 1.00D-10 + AO Gaussian exp screening on grid/accAOfunc: 14 + CD Gaussian exp screening on grid/accCDfunc: 20 + XC Gaussian exp screening on grid/accXCfunc: 20 + Schwarz screening/accCoul: 1.00D-08 + + + Loading old vectors from job with title : + +Divinylbenzene in STO-3G basis set + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 ag + 6 bu 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + Time after variat. SCF: 16.0 + Time prior to 1st pass: 16.0 + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.470D+05 #direct = 0.0% #cached =100.0% + + + Grid_pts file = ./dvb.gridpts.0 + Record size in doubles = 12289 No. of grid_pts per rec = 3070 + Max. records in memory = 75 Max. recs in file = ********* + + + Memory utilization after 1st SCF pass: + Heap Space remaining (MW): 10.94 10936722 + Stack Space remaining (MW): 13.11 13106284 + + convergence iter energy DeltaE RMS-Dens Diis-err time + ---------------- ----- ----------------- --------- --------- --------- ------ + d= 0,ls=0.0,diis 1 -382.3082506816 -8.28D+02 1.57D-04 3.59D-05 19.4 + d= 0,ls=0.0,diis 2 -382.3082601417 -9.46D-06 2.28D-05 4.14D-07 20.3 + d= 0,ls=0.0,diis 3 -382.3082601239 1.77D-08 1.28D-05 7.04D-07 21.3 + d= 0,ls=0.0,diis 4 -382.3082602335 -1.10D-07 2.15D-06 1.06D-08 22.2 + + + Total DFT energy = -382.308260233548 + One electron energy = -1400.533952041628 + Coulomb energy = 630.186523745953 + Exchange-Corr. energy = -57.843401191851 + Nuclear repulsion energy = 445.882569253979 + + Numeric. integr. density = 69.999955506725 + + Total iterative time = 6.2s + + + + Occupations of the irreducible representations + ---------------------------------------------- + + irrep alpha beta + -------- -------- -------- + ag 15.0 15.0 + au 2.0 2.0 + bg 3.0 3.0 + bu 15.0 15.0 + + + DFT Final Molecular Orbital Analysis + ------------------------------------ + + Vector 10 Occ=2.000000D+00 E=-9.992326D+00 Symmetry=ag + MO Center= 5.2D-09, -5.6D-08, -7.2D-34, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.700478 15 C s 52 0.700478 16 C s + + Vector 11 Occ=2.000000D+00 E=-8.094864D-01 Symmetry=ag + MO Center= -5.2D-15, -2.3D-15, -1.0D-17, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.274642 1 C s 7 0.274642 2 C s + 12 0.247004 3 C s 17 0.247004 4 C s + 22 0.246775 5 C s 27 0.246775 6 C s + + Vector 12 Occ=2.000000D+00 E=-7.539678D-01 Symmetry=bu + MO Center= 5.7D-16, 1.3D-14, -7.6D-24, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 -0.297281 11 C s 41 0.297281 12 C s + 2 0.273800 1 C s 7 -0.273800 2 C s + 48 -0.209329 15 C s 53 0.209329 16 C s + + Vector 13 Occ=2.000000D+00 E=-7.179778D-01 Symmetry=ag + MO Center= -8.8D-16, -1.5D-16, 8.5D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.314944 11 C s 41 0.314944 12 C s + 48 0.309728 15 C s 53 0.309728 16 C s + + Vector 14 Occ=2.000000D+00 E=-6.997680D-01 Symmetry=bu + MO Center= 5.9D-15, 1.9D-15, -1.5D-21, r^2= 3.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.356723 3 C s 17 -0.356723 4 C s + 22 0.324703 5 C s 27 -0.324703 6 C s + + Vector 15 Occ=2.000000D+00 E=-6.675239D-01 Symmetry=bu + MO Center= 1.7D-16, -1.0D-14, -2.2D-32, r^2= 9.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.299626 15 C s 53 -0.299626 16 C s + 2 0.274165 1 C s 7 -0.274165 2 C s + 22 -0.200714 5 C s 27 0.200714 6 C s + + Vector 16 Occ=2.000000D+00 E=-5.886277D-01 Symmetry=ag + MO Center= 5.8D-16, 3.0D-15, 2.9D-16, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.242639 15 C s 53 0.242639 16 C s + 22 0.232264 5 C s 27 0.232264 6 C s + 2 -0.206945 1 C s 7 -0.206945 2 C s + 14 -0.159629 3 C py 19 0.159629 4 C py + 36 -0.159690 11 C s 41 -0.159690 12 C s + + Vector 17 Occ=2.000000D+00 E=-5.589834D-01 Symmetry=ag + MO Center= -8.9D-16, 3.4D-15, 3.4D-17, r^2= 5.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.326170 3 C s 17 0.326170 4 C s + 3 0.185821 1 C px 8 -0.185821 2 C px + 22 -0.172039 5 C s 27 -0.172039 6 C s + 24 0.170227 5 C py 29 -0.170227 6 C py + 31 0.169633 7 H s 32 0.169633 8 H s + + Vector 18 Occ=2.000000D+00 E=-5.316514D-01 Symmetry=bu + MO Center= -2.4D-16, -5.2D-15, 1.5D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.302601 11 C s 41 -0.302601 12 C s + 48 -0.249279 15 C s 53 0.249279 16 C s + 45 0.170560 13 H s 46 -0.170560 14 H s + 57 -0.160325 17 H s 58 0.160325 18 H s + 12 0.154479 3 C s 17 -0.154479 4 C s + + Vector 19 Occ=2.000000D+00 E=-5.101132D-01 Symmetry=ag + MO Center= 2.4D-15, 4.6D-16, 9.7D-17, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.202029 5 C px 28 -0.202029 6 C px + 13 0.183898 3 C px 18 -0.183898 4 C px + 36 0.180817 11 C s 41 0.180817 12 C s + 33 0.169580 9 H s 34 0.169580 10 H s + 22 0.166852 5 C s 27 0.166852 6 C s + + Vector 20 Occ=2.000000D+00 E=-4.574566D-01 Symmetry=ag + MO Center= -2.9D-15, 2.9D-15, 5.6D-17, r^2= 9.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.212832 15 C px 54 -0.212832 16 C px + 38 0.184712 11 C py 43 -0.184712 12 C py + 57 0.178979 17 H s 58 0.178979 18 H s + 45 -0.152703 13 H s 46 -0.152703 14 H s + + Vector 21 Occ=2.000000D+00 E=-4.393094D-01 Symmetry=bu + MO Center= -1.6D-15, -8.9D-15, -8.1D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.219832 11 C px 42 0.219832 12 C px + 50 0.210061 15 C py 55 0.210061 16 C py + 14 0.184810 3 C py 19 0.184810 4 C py + 59 -0.177838 19 H s 60 0.177838 20 H s + 45 -0.155809 13 H s 46 0.155809 14 H s + + Vector 22 Occ=2.000000D+00 E=-4.107045D-01 Symmetry=bu + MO Center= 9.7D-16, -2.5D-15, 2.7D-17, r^2= 6.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.234437 1 C s 7 -0.234437 2 C s + 33 0.230937 9 H s 34 -0.230937 10 H s + 31 -0.225474 7 H s 32 0.225474 8 H s + 13 -0.220391 3 C px 18 -0.220391 4 C px + 24 -0.178651 5 C py 29 -0.178651 6 C py + + Vector 23 Occ=2.000000D+00 E=-3.978699D-01 Symmetry=bu + MO Center= 4.1D-16, -1.4D-15, -2.7D-31, r^2= 8.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.251343 5 C px 28 0.251343 6 C px + 49 0.250986 15 C px 54 0.250986 16 C px + 3 -0.219178 1 C px 8 -0.219178 2 C px + 57 0.215607 17 H s 58 -0.215607 18 H s + 38 0.181775 11 C py 43 0.181775 12 C py + + Vector 24 Occ=2.000000D+00 E=-3.961228D-01 Symmetry=ag + MO Center= 3.7D-16, 5.2D-15, -1.8D-17, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.338905 15 C py 55 -0.338905 16 C py + 59 -0.262082 19 H s 60 -0.262082 20 H s + 37 0.252156 11 C px 42 -0.252156 12 C px + + Vector 25 Occ=2.000000D+00 E=-3.739950D-01 Symmetry=bu + MO Center= -5.3D-17, -1.1D-16, 9.2D-20, r^2= 4.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.308557 3 C px 18 0.308557 4 C px + 31 0.253500 7 H s 32 -0.253500 8 H s + 24 -0.225037 5 C py 29 -0.225037 6 C py + 33 0.217272 9 H s 34 -0.217272 10 H s + 23 0.188199 5 C px 28 0.188199 6 C px + + Vector 26 Occ=2.000000D+00 E=-3.511835D-01 Symmetry=bu + MO Center= -4.7D-15, 8.3D-17, 1.3D-17, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.245386 15 C py 55 -0.245386 16 C py + 14 0.224858 3 C py 19 0.224858 4 C py + 37 -0.201221 11 C px 42 -0.201221 12 C px + 24 -0.194246 5 C py 29 -0.194246 6 C py + 38 0.186647 11 C py 43 0.186647 12 C py + + Vector 27 Occ=2.000000D+00 E=-3.472252D-01 Symmetry=ag + MO Center= 1.8D-15, 5.9D-15, -2.0D-16, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.295576 15 C px 54 -0.295576 16 C px + 57 0.268134 17 H s 58 0.268134 18 H s + 37 -0.207992 11 C px 42 0.207992 12 C px + 45 0.199893 13 H s 46 0.199893 14 H s + 31 -0.155876 7 H s 32 -0.155876 8 H s + + Vector 28 Occ=2.000000D+00 E=-3.244880D-01 Symmetry=au + MO Center= 2.1D-17, -4.2D-17, 1.1D-16, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.337546 1 C pz 10 0.337546 2 C pz + 15 0.297876 3 C pz 20 0.297876 4 C pz + 25 0.297256 5 C pz 30 0.297256 6 C pz + 39 0.173994 11 C pz 44 0.173994 12 C pz + + Vector 29 Occ=2.000000D+00 E=-3.112002D-01 Symmetry=bu + MO Center= 2.4D-15, 1.1D-16, -1.6D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.258868 13 H s 46 -0.258868 14 H s + 4 0.242223 1 C py 9 0.242223 2 C py + 57 0.230826 17 H s 58 -0.230826 18 H s + 37 -0.217089 11 C px 42 -0.217089 12 C px + 59 -0.212824 19 H s 60 0.212824 20 H s + + Vector 30 Occ=2.000000D+00 E=-2.928468D-01 Symmetry=ag + MO Center= 9.9D-17, -3.0D-15, 1.3D-32, r^2= 6.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 -0.278500 3 C py 19 0.278500 4 C py + 4 0.269812 1 C py 9 -0.269812 2 C py + 38 0.249224 11 C py 43 -0.249224 12 C py + 33 -0.238310 9 H s 34 -0.238310 10 H s + 24 0.235403 5 C py 29 -0.235403 6 C py + + Vector 31 Occ=2.000000D+00 E=-2.874097D-01 Symmetry=ag + MO Center= 5.6D-16, -7.6D-16, 1.9D-18, r^2= 6.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.298162 1 C px 8 -0.298162 2 C px + 23 0.281411 5 C px 28 -0.281411 6 C px + 31 -0.258905 7 H s 32 -0.258905 8 H s + 13 -0.224683 3 C px 18 0.224683 4 C px + 45 -0.181103 13 H s 46 -0.181103 14 H s + + Vector 32 Occ=2.000000D+00 E=-2.635305D-01 Symmetry=bg + MO Center= -1.1D-15, -2.9D-14, -1.7D-18, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.376563 11 C pz 44 0.376563 12 C pz + 5 0.348845 1 C pz 10 -0.348845 2 C pz + 51 -0.271493 15 C pz 56 0.271493 16 C pz + + Vector 33 Occ=2.000000D+00 E=-2.124650D-01 Symmetry=au + MO Center= -2.5D-15, 3.2D-14, -8.9D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.417910 15 C pz 56 0.417910 16 C pz + 39 0.413785 11 C pz 44 0.413785 12 C pz + 15 -0.179148 3 C pz 20 -0.179148 4 C pz + 25 -0.176693 5 C pz 30 -0.176693 6 C pz + + Vector 34 Occ=2.000000D+00 E=-1.950570D-01 Symmetry=bg + MO Center= 3.4D-15, -2.4D-16, -3.3D-18, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.463098 3 C pz 20 -0.463098 4 C pz + 25 0.458162 5 C pz 30 -0.458162 6 C pz + + Vector 35 Occ=2.000000D+00 E=-1.531105D-01 Symmetry=bg + MO Center= 9.0D-17, -2.0D-15, 1.1D-18, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.397304 15 C pz 56 -0.397304 16 C pz + 5 0.387657 1 C pz 10 -0.387657 2 C pz + 25 -0.228774 5 C pz 30 0.228774 6 C pz + 39 0.223581 11 C pz 44 -0.223581 12 C pz + 15 0.217057 3 C pz 20 -0.217057 4 C pz + + Vector 36 Occ=0.000000D+00 E= 3.744591D-02 Symmetry=au + MO Center= 4.2D-16, -3.7D-31, -3.4D-16, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.449819 15 C pz 56 -0.449819 16 C pz + 5 0.442563 1 C pz 10 0.442563 2 C pz + 25 -0.276484 5 C pz 30 -0.276484 6 C pz + 39 0.256322 11 C pz 44 0.256322 12 C pz + 15 -0.233100 3 C pz 20 -0.233100 4 C pz + + Vector 37 Occ=0.000000D+00 E= 9.032264D-02 Symmetry=au + MO Center= -3.8D-14, 3.7D-15, 2.2D-16, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.582541 3 C pz 20 0.582541 4 C pz + 25 -0.553553 5 C pz 30 -0.553553 6 C pz + + Vector 38 Occ=0.000000D+00 E= 1.106422D-01 Symmetry=bg + MO Center= 4.1D-14, -1.3D-14, 2.1D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.522254 11 C pz 44 -0.522254 12 C pz + 51 -0.523209 15 C pz 56 0.523209 16 C pz + 15 0.240543 3 C pz 20 -0.240543 4 C pz + 25 -0.232014 5 C pz 30 0.232014 6 C pz + + Vector 39 Occ=0.000000D+00 E= 1.821888D-01 Symmetry=au + MO Center= 1.4D-15, 2.0D-14, 1.3D-16, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.529030 11 C pz 44 -0.529030 12 C pz + 5 0.497432 1 C pz 10 0.497432 2 C pz + 51 0.379541 15 C pz 56 0.379541 16 C pz + 25 -0.199861 5 C pz 30 -0.199861 6 C pz + 15 -0.166202 3 C pz 20 -0.166202 4 C pz + + Vector 40 Occ=0.000000D+00 E= 2.724733D-01 Symmetry=bg + MO Center= -4.1D-15, -9.4D-15, 9.0D-17, r^2= 3.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.543515 1 C pz 10 -0.543515 2 C pz + 25 0.467240 5 C pz 30 -0.467240 6 C pz + 15 -0.464141 3 C pz 20 0.464141 4 C pz + 39 0.287555 11 C pz 44 -0.287555 12 C pz + 51 -0.155949 15 C pz 56 0.155949 16 C pz + + Vector 41 Occ=0.000000D+00 E= 3.321416D-01 Symmetry=ag + MO Center= 5.4D-15, 1.8D-14, -2.8D-16, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 -0.423368 9 H s 34 -0.423368 10 H s + 31 -0.412811 7 H s 32 -0.412811 8 H s + 2 0.402435 1 C s 7 0.402435 2 C s + 59 -0.356499 19 H s 60 -0.356499 20 H s + 38 -0.338794 11 C py 43 0.338794 12 C py + + Vector 42 Occ=0.000000D+00 E= 3.406629D-01 Symmetry=bu + MO Center= -8.1D-15, -1.5D-14, 1.6D-18, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.433703 13 H s 46 -0.433703 14 H s + 13 0.355087 3 C px 18 0.355087 4 C px + 37 0.344884 11 C px 42 0.344884 12 C px + 57 -0.324471 17 H s 58 0.324471 18 H s + 31 -0.319196 7 H s 32 0.319196 8 H s + + Vector 43 Occ=0.000000D+00 E= 3.792966D-01 Symmetry=bu + MO Center= -1.2D-13, 3.3D-14, 4.5D-18, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.542699 11 C s 41 -0.542699 12 C s + 4 0.460617 1 C py 9 0.460617 2 C py + 33 0.411845 9 H s 34 -0.411845 10 H s + 59 0.346503 19 H s 60 -0.346503 20 H s + 2 0.335151 1 C s 7 -0.335151 2 C s + + Vector 44 Occ=0.000000D+00 E= 3.814198D-01 Symmetry=ag + MO Center= 1.2D-13, -4.6D-15, -4.1D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.575440 13 H s 46 0.575440 14 H s + 57 -0.395682 17 H s 58 -0.395682 18 H s + 12 0.392592 3 C s 17 0.392592 4 C s + 36 -0.381119 11 C s 41 -0.381119 12 C s + 37 0.333941 11 C px 42 -0.333941 12 C px + + Vector 45 Occ=0.000000D+00 E= 4.108891D-01 Symmetry=ag + MO Center= 2.0D-15, -4.9D-15, 8.7D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.650147 15 C s 53 0.650147 16 C s + 22 0.617631 5 C s 27 0.617631 6 C s + 57 -0.510377 17 H s 58 -0.510377 18 H s + 12 -0.452237 3 C s 17 -0.452237 4 C s + 59 -0.325242 19 H s 60 -0.325242 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.118577D-01 Symmetry=bu + MO Center= 1.4D-14, -7.3D-15, -3.5D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.614459 5 C s 27 -0.614459 6 C s + 48 0.537728 15 C s 53 -0.537728 16 C s + 2 0.478074 1 C s 7 -0.478074 2 C s + 57 -0.446754 17 H s 58 0.446754 18 H s + 12 -0.443187 3 C s 17 0.443187 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.266367D-01 Symmetry=bu + MO Center= -1.5D-14, -3.7D-14, 3.9D-17, r^2= 9.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.599852 7 H s 32 -0.599852 8 H s + 36 -0.455330 11 C s 41 0.455330 12 C s + 45 0.441107 13 H s 46 -0.441107 14 H s + 12 -0.358256 3 C s 17 0.358256 4 C s + 59 0.337822 19 H s 60 -0.337822 20 H s + + Vector 48 Occ=0.000000D+00 E= 4.396171D-01 Symmetry=ag + MO Center= -3.5D-15, 7.0D-14, -1.7D-17, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.784414 1 C s 7 0.784414 2 C s + 36 -0.563593 11 C s 41 -0.563593 12 C s + 12 -0.492886 3 C s 17 -0.492886 4 C s + 22 -0.415694 5 C s 27 -0.415694 6 C s + 48 0.409543 15 C s 53 0.409543 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.528141D-01 Symmetry=bu + MO Center= -1.4D-14, -4.1D-14, 5.9D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.712558 15 C s 53 -0.712558 16 C s + 57 -0.526449 17 H s 58 0.526449 18 H s + 33 0.471697 9 H s 34 -0.471697 10 H s + 36 -0.429019 11 C s 41 0.429019 12 C s + 22 -0.407380 5 C s 27 0.407380 6 C s + + Vector 50 Occ=0.000000D+00 E= 4.781995D-01 Symmetry=ag + MO Center= 1.7D-14, -3.0D-14, -1.8D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.706978 3 C s 17 0.706978 4 C s + 22 -0.614992 5 C s 27 -0.614992 6 C s + 59 -0.477345 19 H s 60 -0.477345 20 H s + 48 0.416901 15 C s 53 0.416901 16 C s + 50 -0.383754 15 C py 55 0.383754 16 C py + + Vector 51 Occ=0.000000D+00 E= 5.262032D-01 Symmetry=ag + MO Center= 1.8D-15, 3.3D-15, -2.1D-17, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.601041 1 C py 9 -0.601041 2 C py + 36 -0.487768 11 C s 41 -0.487768 12 C s + 13 -0.460656 3 C px 18 0.460656 4 C px + 2 -0.449324 1 C s 7 -0.449324 2 C s + 49 -0.343007 15 C px 54 0.343007 16 C px + + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2635.125650778422 0.266339930480 0.000000000000 + 0.266339930480 390.116666898836 0.000000000000 + 0.000000000000 0.000000000000 3025.242317677258 + + Multipole analysis of the density + --------------------------------- + + L x y z total alpha beta nuclear + - - - - ----- ----- ---- ------- + 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 0.000000 + 1 0 1 0 -0.000000 -0.000000 -0.000000 0.000000 + 1 0 0 1 -0.000000 -0.000000 -0.000000 0.000000 + + 2 2 0 0 -37.343759 -140.900429 -140.900429 244.457098 + 2 1 1 0 0.052012 2.913285 2.913285 -5.774558 + 2 1 0 1 -0.000000 -0.000000 -0.000000 0.000000 + 2 0 2 0 -37.702416 -768.250551 -768.250551 1498.798686 + 2 0 1 1 -0.000000 -0.000000 -0.000000 0.000000 + 2 0 0 2 -43.586768 -21.793384 -21.793384 0.000000 + + + Parallel integral file used 8 records with 0 large values + + Line search: + step= 1.00 grad=-4.2D-05 hess= 1.8D-05 energy= -382.308260 mode=downhill + new step= 1.15 predicted energy= -382.308261 + + -------- + Step 1 + -------- + + + Geometry "geometry" -> "geometry" + --------------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.23489360 1.41633848 0.00000000 + 2 C 6.0000 -0.23489360 -1.41633848 0.00000000 + 3 C 6.0000 1.31378482 0.48913563 0.00000000 + 4 C 6.0000 -1.31378482 -0.48913563 0.00000000 + 5 C 6.0000 1.08693678 -0.89460429 0.00000000 + 6 C 6.0000 -1.08693678 0.89460429 0.00000000 + 7 H 1.0000 2.34436751 0.86975861 0.00000000 + 8 H 1.0000 -2.34436751 -0.86975861 0.00000000 + 9 H 1.0000 1.94305614 -1.58193333 0.00000000 + 10 H 1.0000 -1.94305614 1.58193333 0.00000000 + 11 C 6.0000 -0.53372272 -2.88402374 0.00000000 + 12 C 6.0000 0.53372272 2.88402374 0.00000000 + 13 H 1.0000 -1.60616081 -3.13004804 0.00000000 + 14 H 1.0000 1.60616081 3.13004804 0.00000000 + 15 C 6.0000 0.36346121 -3.88492101 0.00000000 + 16 C 6.0000 -0.36346121 3.88492101 0.00000000 + 17 H 1.0000 1.44545793 -3.70934848 0.00000000 + 18 H 1.0000 -1.44545793 3.70934848 0.00000000 + 19 H 1.0000 0.04530879 -4.93375331 0.00000000 + 20 H 1.0000 -0.04530879 4.93375331 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 445.8743961976 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + Caching 1-el integrals + + General Information + ------------------- + SCF calculation type: DFT + Wavefunction type: closed shell. + No. of atoms : 20 + No. of electrons : 70 + Alpha electrons : 35 + Beta electrons : 35 + Charge : 0 + Spin multiplicity: 1 + Use of symmetry is: on ; symmetry adaption is: on + Maximum number of iterations: 30 + AO basis - number of functions: 60 + number of shells: 40 + Convergence on energy requested: 1.00D-06 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 + + XC Information + -------------- + B3LYP Method XC Potential + Hartree-Fock (Exact) Exchange 0.200 + Slater Exchange Functional 0.800 local + Becke 1988 Exchange Functional 0.720 non-local + Lee-Yang-Parr Correlation Functional 0.810 + VWN I RPA Correlation Functional 0.190 local + + Grid Information + ---------------- + Grid used for XC integration: medium + Radial quadrature: Mura-Knowles + Angular quadrature: Lebedev. + Tag B.-S. Rad. Rad. Pts. Rad. Cut. Ang. Pts. + --- ---------- --------- --------- --------- + C 0.70 49 12.0 434 + H 0.35 45 12.0 434 + Grid pruning is: on + Number of quadrature shells: 470 + Spatial weights used: Erf1 + + Convergence Information + ----------------------- + Convergence aids based upon iterative change in + total energy or number of iterations. + Levelshifting, if invoked, occurs when the + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + DIIS, if invoked, will attempt to extrapolate + using up to (NFOCK): 10 stored Fock matrices. + + Damping( 0%) Levelshifting(0.5) DIIS + --------------- ------------------- --------------- + dE on: start ASAP start + dE off: 2 iters 30 iters 30 iters + + + Screening Tolerance Information + ------------------------------- + Density screening/tol_rho: 1.00D-10 + AO Gaussian exp screening on grid/accAOfunc: 14 + CD Gaussian exp screening on grid/accCDfunc: 20 + XC Gaussian exp screening on grid/accXCfunc: 20 + Schwarz screening/accCoul: 1.00D-08 + + + Loading old vectors from job with title : + +Divinylbenzene in STO-3G basis set + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + Time after variat. SCF: 22.4 + Time prior to 1st pass: 22.4 + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.470D+05 #direct = 0.0% #cached =100.0% + + + Grid_pts file = ./dvb.gridpts.0 + Record size in doubles = 12289 No. of grid_pts per rec = 3070 + Max. records in memory = 75 Max. recs in file = ********* + + + Memory utilization after 1st SCF pass: + Heap Space remaining (MW): 10.94 10936722 + Stack Space remaining (MW): 13.11 13106284 + + convergence iter energy DeltaE RMS-Dens Diis-err time + ---------------- ----- ----------------- --------- --------- --------- ------ + d= 0,ls=0.0,diis 1 -382.3082604208 -8.28D+02 2.39D-05 8.29D-07 25.8 + d= 0,ls=0.0,diis 2 -382.3082606378 -2.17D-07 4.90D-06 1.48D-08 26.8 + + + Total DFT energy = -382.308260637814 + One electron energy = -1400.517460653772 + Coulomb energy = 630.178289594640 + Exchange-Corr. energy = -57.843485776242 + Nuclear repulsion energy = 445.874396197560 + + Numeric. integr. density = 69.999955439870 + + Total iterative time = 4.3s + + + + Occupations of the irreducible representations + ---------------------------------------------- + + irrep alpha beta + -------- -------- -------- + ag 15.0 15.0 + au 2.0 2.0 + bg 3.0 3.0 + bu 15.0 15.0 + + + DFT Final Molecular Orbital Analysis + ------------------------------------ + + Vector 10 Occ=2.000000D+00 E=-9.992370D+00 Symmetry=ag + MO Center= -2.0D-17, 1.1D-16, -2.8D-33, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.700478 15 C s 52 0.700478 16 C s + + Vector 11 Occ=2.000000D+00 E=-8.094835D-01 Symmetry=ag + MO Center= -3.6D-15, -1.0D-16, -1.5D-18, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.274628 1 C s 7 0.274628 2 C s + 12 0.247004 3 C s 17 0.247004 4 C s + 22 0.246791 5 C s 27 0.246791 6 C s + + Vector 12 Occ=2.000000D+00 E=-7.539665D-01 Symmetry=bu + MO Center= -2.4D-16, 2.0D-15, 2.4D-21, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 -0.297294 11 C s 41 0.297294 12 C s + 2 0.273790 1 C s 7 -0.273790 2 C s + 48 -0.209354 15 C s 53 0.209354 16 C s + + Vector 13 Occ=2.000000D+00 E=-7.179934D-01 Symmetry=ag + MO Center= 2.9D-15, -7.8D-15, -7.3D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.314948 11 C s 41 0.314948 12 C s + 48 0.309742 15 C s 53 0.309742 16 C s + + Vector 14 Occ=2.000000D+00 E=-6.997408D-01 Symmetry=bu + MO Center= 1.1D-15, -6.6D-16, -4.4D-21, r^2= 3.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.356661 3 C s 17 -0.356661 4 C s + 22 0.324822 5 C s 27 -0.324822 6 C s + + Vector 15 Occ=2.000000D+00 E=-6.675537D-01 Symmetry=bu + MO Center= -9.1D-16, 2.5D-15, 5.0D-20, r^2= 9.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.299648 15 C s 53 -0.299648 16 C s + 2 0.274188 1 C s 7 -0.274188 2 C s + 22 -0.200478 5 C s 27 0.200478 6 C s + + Vector 16 Occ=2.000000D+00 E=-5.886425D-01 Symmetry=ag + MO Center= 1.2D-15, 4.1D-15, 1.1D-32, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.242818 15 C s 53 0.242818 16 C s + 22 0.232022 5 C s 27 0.232022 6 C s + 2 -0.207034 1 C s 7 -0.207034 2 C s + 14 -0.159569 3 C py 19 0.159569 4 C py + 36 -0.159724 11 C s 41 -0.159724 12 C s + + Vector 17 Occ=2.000000D+00 E=-5.589534D-01 Symmetry=ag + MO Center= 4.8D-16, 4.4D-15, 6.4D-17, r^2= 5.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.326189 3 C s 17 0.326189 4 C s + 3 0.185966 1 C px 8 -0.185966 2 C px + 22 -0.172243 5 C s 27 -0.172243 6 C s + 24 0.170193 5 C py 29 -0.170193 6 C py + 31 0.169694 7 H s 32 0.169694 8 H s + + Vector 18 Occ=2.000000D+00 E=-5.316846D-01 Symmetry=bu + MO Center= -6.9D-16, 4.1D-15, 1.8D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.302585 11 C s 41 -0.302585 12 C s + 48 -0.249282 15 C s 53 0.249282 16 C s + 45 0.170564 13 H s 46 -0.170564 14 H s + 57 -0.160283 17 H s 58 0.160283 18 H s + 12 0.154479 3 C s 17 -0.154479 4 C s + + Vector 19 Occ=2.000000D+00 E=-5.101375D-01 Symmetry=ag + MO Center= -1.9D-15, -4.0D-15, -7.0D-19, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.202051 5 C px 28 -0.202051 6 C px + 13 0.183809 3 C px 18 -0.183809 4 C px + 36 0.180828 11 C s 41 0.180828 12 C s + 33 0.169625 9 H s 34 0.169625 10 H s + 22 0.166973 5 C s 27 0.166973 6 C s + + Vector 20 Occ=2.000000D+00 E=-4.574324D-01 Symmetry=ag + MO Center= -3.9D-17, -9.3D-16, 1.1D-32, r^2= 9.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.212864 15 C px 54 -0.212864 16 C px + 38 0.184723 11 C py 43 -0.184723 12 C py + 57 0.178969 17 H s 58 0.178969 18 H s + 45 -0.152629 13 H s 46 -0.152629 14 H s + + Vector 21 Occ=2.000000D+00 E=-4.393235D-01 Symmetry=bu + MO Center= 1.2D-16, -5.4D-15, 3.3D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.219917 11 C px 42 0.219917 12 C px + 50 0.210050 15 C py 55 0.210050 16 C py + 14 0.184780 3 C py 19 0.184780 4 C py + 59 -0.177814 19 H s 60 0.177814 20 H s + 45 -0.155851 13 H s 46 0.155851 14 H s + + Vector 22 Occ=2.000000D+00 E=-4.106547D-01 Symmetry=bu + MO Center= 2.6D-15, -1.1D-16, -1.7D-17, r^2= 6.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.234310 1 C s 7 -0.234310 2 C s + 33 0.231015 9 H s 34 -0.231015 10 H s + 31 -0.225295 7 H s 32 0.225295 8 H s + 13 -0.220099 3 C px 18 -0.220099 4 C px + 24 -0.178744 5 C py 29 -0.178744 6 C py + + Vector 23 Occ=2.000000D+00 E=-3.978950D-01 Symmetry=bu + MO Center= 4.5D-16, 1.5D-16, 5.3D-32, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.251353 5 C px 28 0.251353 6 C px + 49 0.251065 15 C px 54 0.251065 16 C px + 3 -0.218929 1 C px 8 -0.218929 2 C px + 57 0.215641 17 H s 58 -0.215641 18 H s + 38 0.181801 11 C py 43 0.181801 12 C py + + Vector 24 Occ=2.000000D+00 E=-3.961519D-01 Symmetry=ag + MO Center= -3.0D-16, 2.9D-15, 4.2D-17, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.338901 15 C py 55 -0.338901 16 C py + 59 -0.262013 19 H s 60 -0.262013 20 H s + 37 0.252237 11 C px 42 -0.252237 12 C px + + Vector 25 Occ=2.000000D+00 E=-3.739255D-01 Symmetry=bu + MO Center= 1.0D-15, -1.3D-15, -1.6D-31, r^2= 4.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.308701 3 C px 18 0.308701 4 C px + 31 0.253687 7 H s 32 -0.253687 8 H s + 24 -0.224878 5 C py 29 -0.224878 6 C py + 33 0.217137 9 H s 34 -0.217137 10 H s + 23 0.188223 5 C px 28 0.188223 6 C px + + Vector 26 Occ=2.000000D+00 E=-3.512171D-01 Symmetry=bu + MO Center= -3.8D-16, 1.7D-15, -1.5D-18, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.245335 15 C py 55 -0.245335 16 C py + 14 0.224936 3 C py 19 0.224936 4 C py + 37 -0.201137 11 C px 42 -0.201137 12 C px + 24 -0.194395 5 C py 29 -0.194395 6 C py + 38 0.186485 11 C py 43 0.186485 12 C py + + Vector 27 Occ=2.000000D+00 E=-3.472574D-01 Symmetry=ag + MO Center= -2.2D-16, -3.3D-15, -1.3D-16, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.295628 15 C px 54 -0.295628 16 C px + 57 0.268143 17 H s 58 0.268143 18 H s + 37 -0.207885 11 C px 42 0.207885 12 C px + 45 0.199869 13 H s 46 0.199869 14 H s + 31 -0.155783 7 H s 32 -0.155783 8 H s + + Vector 28 Occ=2.000000D+00 E=-3.244846D-01 Symmetry=au + MO Center= -2.5D-16, 2.5D-15, 2.6D-17, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.337533 1 C pz 10 0.337533 2 C pz + 15 0.297863 3 C pz 20 0.297863 4 C pz + 25 0.297271 5 C pz 30 0.297271 6 C pz + 39 0.173997 11 C pz 44 0.173997 12 C pz + + Vector 29 Occ=2.000000D+00 E=-3.112174D-01 Symmetry=bu + MO Center= 1.1D-15, 8.4D-15, 5.6D-19, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.258846 13 H s 46 -0.258846 14 H s + 4 0.242273 1 C py 9 0.242273 2 C py + 57 0.230776 17 H s 58 -0.230776 18 H s + 37 -0.217077 11 C px 42 -0.217077 12 C px + 59 -0.212879 19 H s 60 0.212879 20 H s + + Vector 30 Occ=2.000000D+00 E=-2.928207D-01 Symmetry=ag + MO Center= -1.0D-15, -6.1D-15, -1.5D-17, r^2= 6.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 -0.278543 3 C py 19 0.278543 4 C py + 4 0.270017 1 C py 9 -0.270017 2 C py + 38 0.249377 11 C py 43 -0.249377 12 C py + 33 -0.237999 9 H s 34 -0.237999 10 H s + 24 0.235539 5 C py 29 -0.235539 6 C py + + Vector 31 Occ=2.000000D+00 E=-2.873910D-01 Symmetry=ag + MO Center= -1.1D-15, 0.0D+00, -8.7D-18, r^2= 6.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.298497 1 C px 8 -0.298497 2 C px + 23 0.281526 5 C px 28 -0.281526 6 C px + 31 -0.259029 7 H s 32 -0.259029 8 H s + 13 -0.225060 3 C px 18 0.225060 4 C px + 45 -0.180856 13 H s 46 -0.180856 14 H s + + Vector 32 Occ=2.000000D+00 E=-2.635357D-01 Symmetry=bg + MO Center= -1.3D-15, -2.0D-14, -2.1D-19, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.376572 11 C pz 44 0.376572 12 C pz + 5 0.348816 1 C pz 10 -0.348816 2 C pz + 51 -0.271529 15 C pz 56 0.271529 16 C pz + + Vector 33 Occ=2.000000D+00 E=-2.124827D-01 Symmetry=au + MO Center= -4.2D-14, -5.3D-14, 1.8D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.417921 15 C pz 56 0.417921 16 C pz + 39 0.413770 11 C pz 44 0.413770 12 C pz + 15 -0.179136 3 C pz 20 -0.179136 4 C pz + 25 -0.176698 5 C pz 30 -0.176698 6 C pz + + Vector 34 Occ=2.000000D+00 E=-1.950362D-01 Symmetry=bg + MO Center= 4.4D-14, -4.9D-15, -7.9D-17, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.463017 3 C pz 20 -0.463017 4 C pz + 25 0.458257 5 C pz 30 -0.458257 6 C pz + + Vector 35 Occ=2.000000D+00 E=-1.531254D-01 Symmetry=bg + MO Center= -7.7D-16, 7.7D-14, 5.2D-17, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.397299 15 C pz 56 -0.397299 16 C pz + 5 0.387679 1 C pz 10 -0.387679 2 C pz + 25 -0.228477 5 C pz 30 0.228477 6 C pz + 39 0.223539 11 C pz 44 -0.223539 12 C pz + 15 0.217362 3 C pz 20 -0.217362 4 C pz + + Vector 36 Occ=0.000000D+00 E= 3.743854D-02 Symmetry=au + MO Center= 2.9D-16, -2.7D-15, -4.4D-18, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.449848 15 C pz 56 -0.449848 16 C pz + 5 0.442538 1 C pz 10 0.442538 2 C pz + 25 -0.276317 5 C pz 30 -0.276317 6 C pz + 39 0.256375 11 C pz 44 0.256375 12 C pz + 15 -0.233225 3 C pz 20 -0.233225 4 C pz + + Vector 37 Occ=0.000000D+00 E= 9.035798D-02 Symmetry=au + MO Center= -1.5D-15, -1.9D-16, 9.1D-17, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.582517 3 C pz 20 0.582517 4 C pz + 25 -0.553601 5 C pz 30 -0.553601 6 C pz + + Vector 38 Occ=0.000000D+00 E= 1.106312D-01 Symmetry=bg + MO Center= 3.5D-16, -1.3D-14, -3.7D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.522279 11 C pz 44 -0.522279 12 C pz + 51 -0.523210 15 C pz 56 0.523210 16 C pz + 15 0.240523 3 C pz 20 -0.240523 4 C pz + 25 -0.231982 5 C pz 30 0.231982 6 C pz + + Vector 39 Occ=0.000000D+00 E= 1.821934D-01 Symmetry=au + MO Center= -1.8D-15, -1.0D-14, 1.2D-15, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.529016 11 C pz 44 -0.529016 12 C pz + 5 0.497475 1 C pz 10 0.497475 2 C pz + 51 0.379500 15 C pz 56 0.379500 16 C pz + 25 -0.199966 5 C pz 30 -0.199966 6 C pz + 15 -0.166124 3 C pz 20 -0.166124 4 C pz + + Vector 40 Occ=0.000000D+00 E= 2.725058D-01 Symmetry=bg + MO Center= 2.9D-15, 2.4D-14, -2.7D-16, r^2= 3.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.543524 1 C pz 10 -0.543524 2 C pz + 25 0.467292 5 C pz 30 -0.467292 6 C pz + 15 -0.464132 3 C pz 20 0.464132 4 C pz + 39 0.287531 11 C pz 44 -0.287531 12 C pz + 51 -0.155915 15 C pz 56 0.155915 16 C pz + + Vector 41 Occ=0.000000D+00 E= 3.320931D-01 Symmetry=ag + MO Center= -4.9D-15, -8.9D-16, -2.1D-16, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 -0.423309 9 H s 34 -0.423309 10 H s + 31 -0.412659 7 H s 32 -0.412659 8 H s + 2 0.402539 1 C s 7 0.402539 2 C s + 59 -0.356214 19 H s 60 -0.356214 20 H s + 38 -0.338877 11 C py 43 0.338877 12 C py + + Vector 42 Occ=0.000000D+00 E= 3.406682D-01 Symmetry=bu + MO Center= -1.8D-15, 4.6D-14, 4.1D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.433671 13 H s 46 -0.433671 14 H s + 13 0.355024 3 C px 18 0.355024 4 C px + 37 0.344919 11 C px 42 0.344919 12 C px + 57 -0.324700 17 H s 58 0.324700 18 H s + 31 -0.318780 7 H s 32 0.318780 8 H s + + Vector 43 Occ=0.000000D+00 E= 3.792676D-01 Symmetry=bu + MO Center= -1.2D-14, -8.7D-15, -5.0D-17, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.542103 11 C s 41 -0.542103 12 C s + 4 0.460447 1 C py 9 0.460447 2 C py + 33 0.412846 9 H s 34 -0.412846 10 H s + 59 0.345793 19 H s 60 -0.345793 20 H s + 2 0.334588 1 C s 7 -0.334588 2 C s + + Vector 44 Occ=0.000000D+00 E= 3.814410D-01 Symmetry=ag + MO Center= 2.1D-14, -5.3D-14, -2.9D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.574760 13 H s 46 0.574760 14 H s + 57 -0.396370 17 H s 58 -0.396370 18 H s + 12 0.392408 3 C s 17 0.392408 4 C s + 36 -0.380922 11 C s 41 -0.380922 12 C s + 37 0.333235 11 C px 42 -0.333235 12 C px + + Vector 45 Occ=0.000000D+00 E= 4.109711D-01 Symmetry=ag + MO Center= 3.5D-13, -1.0D-12, -1.2D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.650630 15 C s 53 0.650630 16 C s + 22 0.617118 5 C s 27 0.617118 6 C s + 57 -0.509954 17 H s 58 -0.509954 18 H s + 12 -0.453631 3 C s 17 -0.453631 4 C s + 59 -0.325984 19 H s 60 -0.325984 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.119513D-01 Symmetry=bu + MO Center= -3.7D-13, 1.0D-12, 2.4D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.614592 5 C s 27 -0.614592 6 C s + 48 0.537470 15 C s 53 -0.537470 16 C s + 2 0.478326 1 C s 7 -0.478326 2 C s + 57 -0.446650 17 H s 58 0.446650 18 H s + 12 -0.443517 3 C s 17 0.443517 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.267666D-01 Symmetry=bu + MO Center= 8.9D-15, 2.2D-14, -1.0D-17, r^2= 9.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.599346 7 H s 32 -0.599346 8 H s + 36 -0.456674 11 C s 41 0.456674 12 C s + 45 0.441702 13 H s 46 -0.441702 14 H s + 12 -0.356655 3 C s 17 0.356655 4 C s + 59 0.337782 19 H s 60 -0.337782 20 H s + + Vector 48 Occ=0.000000D+00 E= 4.396606D-01 Symmetry=ag + MO Center= -6.3D-15, 7.0D-14, -8.4D-16, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.784763 1 C s 7 0.784763 2 C s + 36 -0.564635 11 C s 41 -0.564635 12 C s + 12 -0.491689 3 C s 17 -0.491689 4 C s + 22 -0.416484 5 C s 27 -0.416484 6 C s + 48 0.409412 15 C s 53 0.409412 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.526778D-01 Symmetry=bu + MO Center= -6.3D-16, -7.9D-14, 7.2D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.713372 15 C s 53 -0.713372 16 C s + 57 -0.526528 17 H s 58 0.526528 18 H s + 33 0.470914 9 H s 34 -0.470914 10 H s + 36 -0.429011 11 C s 41 0.429011 12 C s + 22 -0.407486 5 C s 27 0.407486 6 C s + + Vector 50 Occ=0.000000D+00 E= 4.781784D-01 Symmetry=ag + MO Center= -1.4D-15, -4.8D-15, -1.1D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.707155 3 C s 17 0.707155 4 C s + 22 -0.614309 5 C s 27 -0.614309 6 C s + 59 -0.477628 19 H s 60 -0.477628 20 H s + 48 0.417099 15 C s 53 0.417099 16 C s + 50 -0.383922 15 C py 55 0.383922 16 C py + + Vector 51 Occ=0.000000D+00 E= 5.263025D-01 Symmetry=ag + MO Center= -4.1D-16, -4.2D-17, 3.4D-17, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.600868 1 C py 9 -0.600868 2 C py + 36 -0.487164 11 C s 41 -0.487164 12 C s + 13 -0.461924 3 C px 18 0.461924 4 C px + 2 -0.449382 1 C s 7 -0.449382 2 C s + 49 -0.343149 15 C px 54 0.343149 16 C px + + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2635.639444894080 0.306669035348 0.000000000000 + 0.306669035348 390.010183636321 0.000000000000 + 0.000000000000 0.000000000000 3025.649628530401 + + Multipole analysis of the density + --------------------------------- + + L x y z total alpha beta nuclear + - - - - ----- ----- ---- ------- + 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 + + 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 + 1 0 1 0 -0.000000 -0.000000 -0.000000 0.000000 + 1 0 0 1 -0.000000 -0.000000 -0.000000 0.000000 + + 2 2 0 0 -37.343460 -140.874576 -140.874576 244.405691 + 2 1 1 0 0.051245 2.923748 2.923748 -5.796252 + 2 1 0 1 0.000000 0.000000 0.000000 0.000000 + 2 0 2 0 -37.704356 -768.390429 -768.390429 1499.076502 + 2 0 1 1 0.000000 0.000000 0.000000 0.000000 + 2 0 0 2 -43.586682 -21.793341 -21.793341 0.000000 + + + Parallel integral file used 8 records with 0 large values + + + + NWChem DFT Gradient Module + -------------------------- + + + Divinylbenzene in STO-3G basis set + + + + charge = 0.00 + wavefunction = closed shell + + Using symmetry + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.443885 2.676492 0.000000 -0.000243 -0.000044 0.000000 + 2 C -0.443885 -2.676492 0.000000 0.000243 0.000044 0.000000 + 3 C 2.482693 0.924332 0.000000 -0.000056 0.000044 0.000000 + 4 C -2.482693 -0.924332 0.000000 0.000056 -0.000044 -0.000000 + 5 C 2.054013 -1.690557 0.000000 -0.000094 0.000186 0.000000 + 6 C -2.054013 1.690557 0.000000 0.000094 -0.000186 0.000000 + 7 H 4.430212 1.643605 0.000000 0.000011 -0.000087 0.000000 + 8 H -4.430212 -1.643605 0.000000 -0.000011 0.000087 0.000000 + 9 H 3.671844 -2.989421 0.000000 0.000084 -0.000264 0.000000 + 10 H -3.671844 2.989421 0.000000 -0.000084 0.000264 0.000000 + 11 C -1.008590 -5.450015 0.000000 0.000041 -0.000237 0.000000 + 12 C 1.008590 5.450015 0.000000 -0.000041 0.000237 0.000000 + 13 H -3.035204 -5.914933 0.000000 0.000101 0.000001 0.000000 + 14 H 3.035204 5.914933 0.000000 -0.000101 -0.000001 0.000000 + 15 C 0.686842 -7.341436 0.000000 -0.000366 -0.000079 0.000000 + 16 C -0.686842 7.341436 0.000000 0.000366 0.000079 0.000000 + 17 H 2.731519 -7.009652 0.000000 0.000117 -0.000008 0.000000 + 18 H -2.731519 7.009652 0.000000 -0.000117 0.000008 0.000000 + 19 H 0.085621 -9.323442 0.000000 0.000115 0.000135 0.000000 + 20 H -0.085621 9.323442 0.000000 -0.000115 -0.000135 0.000000 + + ---------------------------------------- + | Time | 1-e(secs) | 2-e(secs) | + ---------------------------------------- + | CPU | 0.02 | 2.82 | + ---------------------------------------- + | WALL | 0.02 | 2.82 | + ---------------------------------------- + + Step Energy Delta E Gmax Grms Xrms Xmax Walltime + ---- ---------------- -------- -------- -------- -------- -------- -------- +@ 1 -382.30826064 -2.4D-05 0.00023 0.00007 0.00465 0.01494 33.9 + ok ok + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value Gradient + ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- + 1 Stretch 1 3 1.42257 0.00016 + 2 Stretch 1 6 1.42107 -0.00013 + 3 Stretch 1 12 1.49780 0.00018 + 4 Stretch 2 4 1.42257 0.00016 + 5 Stretch 2 5 1.42107 -0.00013 + 6 Stretch 2 11 1.49780 0.00018 + 7 Stretch 3 5 1.40221 0.00007 + 8 Stretch 3 7 1.09862 -0.00002 + 9 Stretch 4 6 1.40221 0.00007 + 10 Stretch 4 8 1.09862 -0.00002 + 11 Stretch 5 9 1.09789 0.00023 + 12 Stretch 6 10 1.09789 0.00023 + 13 Stretch 11 13 1.10030 -0.00010 + 14 Stretch 11 15 1.34415 -0.00013 + 15 Stretch 12 14 1.10030 -0.00010 + 16 Stretch 12 16 1.34415 -0.00013 + 17 Stretch 15 17 1.09615 0.00011 + 18 Stretch 15 19 1.09602 -0.00016 + 19 Stretch 16 18 1.09615 0.00011 + 20 Stretch 16 20 1.09602 -0.00016 + 21 Bend 1 3 5 121.36572 0.00004 + 22 Bend 1 3 7 119.05353 0.00003 + 23 Bend 1 6 4 120.84960 -0.00001 + 24 Bend 1 6 10 119.70158 -0.00008 + 25 Bend 1 12 14 114.42891 -0.00000 + 26 Bend 1 12 16 126.61916 0.00003 + 27 Bend 2 4 6 121.36572 0.00004 + 28 Bend 2 4 8 119.05353 0.00003 + 29 Bend 2 5 3 120.84960 -0.00001 + 30 Bend 2 5 9 119.70158 -0.00008 + 31 Bend 2 11 13 114.42891 -0.00000 + 32 Bend 2 11 15 126.61916 0.00003 + 33 Bend 3 1 6 117.78468 -0.00002 + 34 Bend 3 1 12 119.16744 0.00002 + 35 Bend 3 5 9 119.44882 0.00009 + 36 Bend 4 2 5 117.78468 -0.00002 + 37 Bend 4 2 11 119.16744 0.00002 + 38 Bend 4 6 10 119.44882 0.00009 + 39 Bend 5 2 11 123.04788 0.00000 + 40 Bend 5 3 7 119.58076 -0.00007 + 41 Bend 6 1 12 123.04788 0.00000 + 42 Bend 6 4 8 119.58076 -0.00007 + 43 Bend 11 15 17 122.65552 -0.00001 + 44 Bend 11 15 19 121.25297 0.00004 + 45 Bend 12 16 18 122.65552 -0.00001 + 46 Bend 12 16 20 121.25297 0.00004 + 47 Bend 13 11 15 118.95194 -0.00002 + 48 Bend 14 12 16 118.95194 -0.00002 + 49 Bend 17 15 19 116.09152 -0.00003 + 50 Bend 18 16 20 116.09152 -0.00003 + 51 Torsion 1 3 5 2 0.00000 0.00000 + 52 Torsion 1 3 5 9 180.00000 0.00000 + 53 Torsion 1 6 4 2 0.00000 0.00000 + 54 Torsion 1 6 4 8 180.00000 -0.00000 + 55 Torsion 1 12 16 18 0.00000 0.00000 + 56 Torsion 1 12 16 20 180.00000 -0.00000 + 57 Torsion 2 4 6 10 180.00000 0.00000 + 58 Torsion 2 5 3 7 180.00000 -0.00000 + 59 Torsion 2 11 15 17 0.00000 -0.00000 + 60 Torsion 2 11 15 19 180.00000 -0.00000 + 61 Torsion 3 1 6 4 0.00000 0.00000 + 62 Torsion 3 1 6 10 180.00000 -0.00000 + 63 Torsion 3 1 12 14 0.00000 0.00000 + 64 Torsion 3 1 12 16 180.00000 0.00000 + 65 Torsion 3 5 2 4 0.00000 0.00000 + 66 Torsion 3 5 2 11 180.00000 0.00000 + 67 Torsion 4 2 5 9 180.00000 0.00000 + 68 Torsion 4 2 11 13 0.00000 0.00000 + 69 Torsion 4 2 11 15 180.00000 0.00000 + 70 Torsion 4 6 1 12 180.00000 0.00000 + 71 Torsion 5 2 4 6 -0.00000 -0.00000 + 72 Torsion 5 2 4 8 180.00000 0.00000 + 73 Torsion 5 2 11 13 180.00000 -0.00000 + 74 Torsion 5 2 11 15 0.00000 0.00000 + 75 Torsion 5 3 1 6 0.00000 -0.00000 + 76 Torsion 5 3 1 12 180.00000 -0.00000 + 77 Torsion 6 1 3 7 180.00000 -0.00000 + 78 Torsion 6 1 12 14 180.00000 0.00000 + 79 Torsion 6 1 12 16 0.00000 0.00000 + 80 Torsion 6 4 2 11 180.00000 -0.00000 + 81 Torsion 7 3 1 12 -0.00000 -0.00000 + 82 Torsion 7 3 5 9 0.00000 0.00000 + 83 Torsion 8 4 2 11 -0.00000 -0.00000 + 84 Torsion 8 4 6 10 0.00000 -0.00000 + 85 Torsion 9 5 2 11 0.00000 0.00000 + 86 Torsion 10 6 1 12 0.00000 0.00000 + 87 Torsion 13 11 15 17 180.00000 0.00000 + 88 Torsion 13 11 15 19 -0.00000 0.00000 + 89 Torsion 14 12 16 18 180.00000 0.00000 + 90 Torsion 14 12 16 20 -0.00000 0.00000 + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + Caching 1-el integrals + + General Information + ------------------- + SCF calculation type: DFT + Wavefunction type: closed shell. + No. of atoms : 20 + No. of electrons : 70 + Alpha electrons : 35 + Beta electrons : 35 + Charge : 0 + Spin multiplicity: 1 + Use of symmetry is: on ; symmetry adaption is: on + Maximum number of iterations: 30 + AO basis - number of functions: 60 + number of shells: 40 + Convergence on energy requested: 1.00D-06 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 + + XC Information + -------------- + B3LYP Method XC Potential + Hartree-Fock (Exact) Exchange 0.200 + Slater Exchange Functional 0.800 local + Becke 1988 Exchange Functional 0.720 non-local + Lee-Yang-Parr Correlation Functional 0.810 + VWN I RPA Correlation Functional 0.190 local + + Grid Information + ---------------- + Grid used for XC integration: medium + Radial quadrature: Mura-Knowles + Angular quadrature: Lebedev. + Tag B.-S. Rad. Rad. Pts. Rad. Cut. Ang. Pts. + --- ---------- --------- --------- --------- + C 0.70 49 12.0 434 + H 0.35 45 12.0 434 + Grid pruning is: on + Number of quadrature shells: 470 + Spatial weights used: Erf1 + + Convergence Information + ----------------------- + Convergence aids based upon iterative change in + total energy or number of iterations. + Levelshifting, if invoked, occurs when the + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + DIIS, if invoked, will attempt to extrapolate + using up to (NFOCK): 10 stored Fock matrices. + + Damping( 0%) Levelshifting(0.5) DIIS + --------------- ------------------- --------------- + dE on: start ASAP start + dE off: 2 iters 30 iters 30 iters + + + Screening Tolerance Information + ------------------------------- + Density screening/tol_rho: 1.00D-10 + AO Gaussian exp screening on grid/accAOfunc: 14 + CD Gaussian exp screening on grid/accCDfunc: 20 + XC Gaussian exp screening on grid/accXCfunc: 20 + Schwarz screening/accCoul: 1.00D-08 + + + Loading old vectors from job with title : + +Divinylbenzene in STO-3G basis set + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + Time after variat. SCF: 32.2 + Time prior to 1st pass: 32.2 + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.470D+05 #direct = 0.0% #cached =100.0% + + + Grid_pts file = ./dvb.gridpts.0 + Record size in doubles = 12289 No. of grid_pts per rec = 3070 + Max. records in memory = 75 Max. recs in file = ********* + + + Memory utilization after 1st SCF pass: + Heap Space remaining (MW): 10.94 10936722 + Stack Space remaining (MW): 13.11 13106284 + + convergence iter energy DeltaE RMS-Dens Diis-err time + ---------------- ----- ----------------- --------- --------- --------- ------ + d= 0,ls=0.0,diis 1 -382.3082614827 -8.28D+02 2.00D-05 5.16D-07 35.6 + d= 0,ls=0.0,diis 2 -382.3082615470 -6.43D-08 1.36D-05 2.58D-07 36.6 + d= 0,ls=0.0,diis 3 -382.3082615616 -1.46D-08 5.97D-06 1.80D-07 37.5 + + + Total DFT energy = -382.308261561555 + One electron energy = -1400.565874850220 + Coulomb energy = 630.202164051566 + Exchange-Corr. energy = -57.843734202512 + Nuclear repulsion energy = 445.899183439611 + + Numeric. integr. density = 69.999955369708 + + Total iterative time = 5.3s + + + + Occupations of the irreducible representations + ---------------------------------------------- + + irrep alpha beta + -------- -------- -------- + ag 15.0 15.0 + au 2.0 2.0 + bg 3.0 3.0 + bu 15.0 15.0 + + + DFT Final Molecular Orbital Analysis + ------------------------------------ + + Vector 10 Occ=2.000000D+00 E=-9.992336D+00 Symmetry=ag + MO Center= 6.2D-10, -6.6D-09, 2.6D-18, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.700478 15 C s 52 0.700478 16 C s + + Vector 11 Occ=2.000000D+00 E=-8.095194D-01 Symmetry=ag + MO Center= 1.7D-14, -4.3D-15, -3.3D-18, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.274630 1 C s 7 0.274630 2 C s + 12 0.247014 3 C s 17 0.247014 4 C s + 22 0.246745 5 C s 27 0.246745 6 C s + + Vector 12 Occ=2.000000D+00 E=-7.539886D-01 Symmetry=bu + MO Center= -2.6D-17, -3.5D-17, -3.8D-32, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 -0.297267 11 C s 41 0.297267 12 C s + 2 0.273912 1 C s 7 -0.273912 2 C s + 48 -0.209192 15 C s 53 0.209192 16 C s + + Vector 13 Occ=2.000000D+00 E=-7.179666D-01 Symmetry=ag + MO Center= 1.1D-15, -6.5D-15, 7.2D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.314981 11 C s 41 0.314981 12 C s + 48 0.309679 15 C s 53 0.309679 16 C s + + Vector 14 Occ=2.000000D+00 E=-6.997958D-01 Symmetry=bu + MO Center= -1.8D-14, 1.9D-15, -2.4D-19, r^2= 3.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.356604 3 C s 17 -0.356604 4 C s + 22 0.324764 5 C s 27 -0.324764 6 C s + + Vector 15 Occ=2.000000D+00 E=-6.675124D-01 Symmetry=bu + MO Center= -7.5D-16, 6.0D-15, -2.5D-20, r^2= 9.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.299748 15 C s 53 -0.299748 16 C s + 2 0.274029 1 C s 7 -0.274029 2 C s + 22 -0.200677 5 C s 27 0.200677 6 C s + + Vector 16 Occ=2.000000D+00 E=-5.887149D-01 Symmetry=ag + MO Center= 1.8D-15, 1.9D-15, -1.2D-16, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.242755 15 C s 53 0.242755 16 C s + 22 0.232204 5 C s 27 0.232204 6 C s + 2 -0.206920 1 C s 7 -0.206920 2 C s + 14 -0.159641 3 C py 19 0.159641 4 C py + 36 -0.159460 11 C s 41 -0.159460 12 C s + + Vector 17 Occ=2.000000D+00 E=-5.589267D-01 Symmetry=ag + MO Center= -3.2D-16, 6.2D-17, 4.6D-33, r^2= 5.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.326154 3 C s 17 0.326154 4 C s + 3 0.185898 1 C px 8 -0.185898 2 C px + 22 -0.172082 5 C s 27 -0.172082 6 C s + 24 0.170130 5 C py 29 -0.170130 6 C py + 31 0.169719 7 H s 32 0.169719 8 H s + + Vector 18 Occ=2.000000D+00 E=-5.316676D-01 Symmetry=bu + MO Center= 4.1D-16, 1.2D-15, -8.4D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.302586 11 C s 41 -0.302586 12 C s + 48 -0.249262 15 C s 53 0.249262 16 C s + 45 0.170553 13 H s 46 -0.170553 14 H s + 57 -0.160341 17 H s 58 0.160341 18 H s + 12 0.154559 3 C s 17 -0.154559 4 C s + + Vector 19 Occ=2.000000D+00 E=-5.101867D-01 Symmetry=ag + MO Center= -1.4D-16, 1.7D-16, 8.7D-32, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.202139 5 C px 28 -0.202139 6 C px + 13 0.183789 3 C px 18 -0.183789 4 C px + 36 0.180857 11 C s 41 0.180857 12 C s + 33 0.169713 9 H s 34 0.169713 10 H s + 22 0.166820 5 C s 27 0.166820 6 C s + + Vector 20 Occ=2.000000D+00 E=-4.574291D-01 Symmetry=ag + MO Center= 8.6D-16, 4.2D-15, -3.5D-17, r^2= 9.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.212970 15 C px 54 -0.212970 16 C px + 38 0.184737 11 C py 43 -0.184737 12 C py + 57 0.179066 17 H s 58 0.179066 18 H s + 45 -0.152664 13 H s 46 -0.152664 14 H s + + Vector 21 Occ=2.000000D+00 E=-4.393488D-01 Symmetry=bu + MO Center= -4.0D-16, -2.7D-15, -1.2D-31, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.219772 11 C px 42 0.219772 12 C px + 50 0.209578 15 C py 55 0.209578 16 C py + 14 0.184836 3 C py 19 0.184836 4 C py + 59 -0.177451 19 H s 60 0.177451 20 H s + 45 -0.155847 13 H s 46 0.155847 14 H s + + Vector 22 Occ=2.000000D+00 E=-4.106308D-01 Symmetry=bu + MO Center= -7.5D-16, -2.9D-15, 5.9D-17, r^2= 6.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.234218 1 C s 7 -0.234218 2 C s + 33 0.231051 9 H s 34 -0.231051 10 H s + 31 -0.225180 7 H s 32 0.225180 8 H s + 13 -0.220072 3 C px 18 -0.220072 4 C px + 24 -0.178850 5 C py 29 -0.178850 6 C py + + Vector 23 Occ=2.000000D+00 E=-3.979485D-01 Symmetry=bu + MO Center= -3.2D-17, -5.8D-15, -5.0D-18, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.251042 5 C px 28 0.251042 6 C px + 49 0.251297 15 C px 54 0.251297 16 C px + 3 -0.218954 1 C px 8 -0.218954 2 C px + 57 0.215793 17 H s 58 -0.215793 18 H s + 38 0.182113 11 C py 43 0.182113 12 C py + + Vector 24 Occ=2.000000D+00 E=-3.960808D-01 Symmetry=ag + MO Center= 1.2D-16, 4.1D-15, -6.0D-17, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.338860 15 C py 55 -0.338860 16 C py + 59 -0.261998 19 H s 60 -0.261998 20 H s + 37 0.252281 11 C px 42 -0.252281 12 C px + + Vector 25 Occ=2.000000D+00 E=-3.739841D-01 Symmetry=bu + MO Center= 4.9D-16, -1.3D-15, 2.3D-18, r^2= 4.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.308788 3 C px 18 0.308788 4 C px + 31 0.253668 7 H s 32 -0.253668 8 H s + 24 -0.224637 5 C py 29 -0.224637 6 C py + 33 0.217053 9 H s 34 -0.217053 10 H s + 23 0.188307 5 C px 28 0.188307 6 C px + + Vector 26 Occ=2.000000D+00 E=-3.511583D-01 Symmetry=bu + MO Center= 8.4D-15, 1.8D-14, 2.2D-17, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.245290 15 C py 55 -0.245290 16 C py + 14 0.225091 3 C py 19 0.225091 4 C py + 37 -0.201410 11 C px 42 -0.201410 12 C px + 24 -0.194730 5 C py 29 -0.194730 6 C py + 38 0.186225 11 C py 43 0.186225 12 C py + + Vector 27 Occ=2.000000D+00 E=-3.472814D-01 Symmetry=ag + MO Center= -9.9D-15, -9.4D-15, 4.1D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.295548 15 C px 54 -0.295548 16 C px + 57 0.268071 17 H s 58 0.268071 18 H s + 37 -0.207830 11 C px 42 0.207830 12 C px + 45 0.199863 13 H s 46 0.199863 14 H s + 31 -0.155819 7 H s 32 -0.155819 8 H s + + Vector 28 Occ=2.000000D+00 E=-3.245156D-01 Symmetry=au + MO Center= 6.1D-16, -5.6D-17, 8.4D-17, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.337538 1 C pz 10 0.337538 2 C pz + 15 0.297871 3 C pz 20 0.297871 4 C pz + 25 0.297226 5 C pz 30 0.297226 6 C pz + 39 0.174020 11 C pz 44 0.174020 12 C pz + + Vector 29 Occ=2.000000D+00 E=-3.112351D-01 Symmetry=bu + MO Center= -8.1D-16, -4.2D-15, 1.5D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.258785 13 H s 46 -0.258785 14 H s + 4 0.242405 1 C py 9 0.242405 2 C py + 57 0.230617 17 H s 58 -0.230617 18 H s + 37 -0.216923 11 C px 42 -0.216923 12 C px + 59 -0.213078 19 H s 60 0.213078 20 H s + + Vector 30 Occ=2.000000D+00 E=-2.927966D-01 Symmetry=ag + MO Center= -3.5D-16, 2.1D-15, -1.6D-16, r^2= 6.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 -0.278538 3 C py 19 0.278538 4 C py + 4 0.269955 1 C py 9 -0.269955 2 C py + 38 0.249300 11 C py 43 -0.249300 12 C py + 33 -0.238065 9 H s 34 -0.238065 10 H s + 24 0.235483 5 C py 29 -0.235483 6 C py + + Vector 31 Occ=2.000000D+00 E=-2.874573D-01 Symmetry=ag + MO Center= 7.3D-16, -1.3D-15, -1.5D-17, r^2= 6.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.298380 1 C px 8 -0.298380 2 C px + 23 0.281375 5 C px 28 -0.281375 6 C px + 31 -0.259036 7 H s 32 -0.259036 8 H s + 13 -0.224951 3 C px 18 0.224951 4 C px + 45 -0.180984 13 H s 46 -0.180984 14 H s + + Vector 32 Occ=2.000000D+00 E=-2.635547D-01 Symmetry=bg + MO Center= 1.1D-16, 7.8D-15, 2.6D-20, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.376546 11 C pz 44 0.376546 12 C pz + 5 0.348917 1 C pz 10 -0.348917 2 C pz + 51 -0.271389 15 C pz 56 0.271389 16 C pz + + Vector 33 Occ=2.000000D+00 E=-2.124520D-01 Symmetry=au + MO Center= 1.1D-14, -1.8D-14, -4.4D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.417878 15 C pz 56 0.417878 16 C pz + 39 0.413793 11 C pz 44 0.413793 12 C pz + 15 -0.179184 3 C pz 20 -0.179184 4 C pz + 25 -0.176752 5 C pz 30 -0.176752 6 C pz + + Vector 34 Occ=2.000000D+00 E=-1.950605D-01 Symmetry=bg + MO Center= -1.1D-14, 1.3D-15, 2.5D-18, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.463068 3 C pz 20 -0.463068 4 C pz + 25 0.458187 5 C pz 30 -0.458187 6 C pz + + Vector 35 Occ=2.000000D+00 E=-1.530836D-01 Symmetry=bg + MO Center= -4.2D-17, 9.0D-15, 1.1D-17, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.397413 15 C pz 56 -0.397413 16 C pz + 5 0.387579 1 C pz 10 -0.387579 2 C pz + 25 -0.228763 5 C pz 30 0.228763 6 C pz + 39 0.223616 11 C pz 44 -0.223616 12 C pz + 15 0.217019 3 C pz 20 -0.217019 4 C pz + + Vector 36 Occ=0.000000D+00 E= 3.741067D-02 Symmetry=au + MO Center= -5.6D-17, 1.0D-14, 8.8D-17, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.449948 15 C pz 56 -0.449948 16 C pz + 5 0.442438 1 C pz 10 0.442438 2 C pz + 25 -0.276585 5 C pz 30 -0.276585 6 C pz + 39 0.256340 11 C pz 44 0.256340 12 C pz + 15 -0.232883 3 C pz 20 -0.232883 4 C pz + + Vector 37 Occ=0.000000D+00 E= 9.037226D-02 Symmetry=au + MO Center= -5.5D-17, -5.0D-17, 1.6D-16, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.582605 3 C pz 20 0.582605 4 C pz + 25 -0.553519 5 C pz 30 -0.553519 6 C pz + + Vector 38 Occ=0.000000D+00 E= 1.106158D-01 Symmetry=bg + MO Center= -6.0D-16, -1.1D-14, -4.2D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.522244 11 C pz 44 -0.522244 12 C pz + 51 -0.523184 15 C pz 56 0.523184 16 C pz + 15 0.240578 3 C pz 20 -0.240578 4 C pz + 25 -0.232018 5 C pz 30 0.232018 6 C pz + + Vector 39 Occ=0.000000D+00 E= 1.822159D-01 Symmetry=au + MO Center= 2.2D-16, 1.3D-15, 4.9D-17, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.529015 11 C pz 44 -0.529015 12 C pz + 5 0.497573 1 C pz 10 0.497573 2 C pz + 51 0.379409 15 C pz 56 0.379409 16 C pz + 25 -0.199831 5 C pz 30 -0.199831 6 C pz + 15 -0.166299 3 C pz 20 -0.166299 4 C pz + + Vector 40 Occ=0.000000D+00 E= 2.725378D-01 Symmetry=bg + MO Center= -3.5D-17, -6.9D-17, -6.7D-17, r^2= 3.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.543554 1 C pz 10 -0.543554 2 C pz + 25 0.467245 5 C pz 30 -0.467245 6 C pz + 15 -0.464177 3 C pz 20 0.464177 4 C pz + 39 0.287580 11 C pz 44 -0.287580 12 C pz + 51 -0.155897 15 C pz 56 0.155897 16 C pz + + Vector 41 Occ=0.000000D+00 E= 3.322217D-01 Symmetry=ag + MO Center= 7.6D-15, -6.7D-16, 1.2D-17, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 -0.422733 9 H s 34 -0.422733 10 H s + 31 -0.413118 7 H s 32 -0.413118 8 H s + 2 0.401830 1 C s 7 0.401830 2 C s + 59 -0.356678 19 H s 60 -0.356678 20 H s + 38 -0.338873 11 C py 43 0.338873 12 C py + + Vector 42 Occ=0.000000D+00 E= 3.407201D-01 Symmetry=bu + MO Center= -5.9D-15, -2.8D-14, -7.4D-21, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.434954 13 H s 46 -0.434954 14 H s + 13 0.355270 3 C px 18 0.355270 4 C px + 37 0.345502 11 C px 42 0.345502 12 C px + 57 -0.323890 17 H s 58 0.323890 18 H s + 31 -0.319692 7 H s 32 0.319692 8 H s + + Vector 43 Occ=0.000000D+00 E= 3.794023D-01 Symmetry=bu + MO Center= 3.9D-14, -1.8D-14, -8.5D-19, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.541960 11 C s 41 -0.541960 12 C s + 4 0.460267 1 C py 9 0.460267 2 C py + 33 0.412078 9 H s 34 -0.412078 10 H s + 59 0.346640 19 H s 60 -0.346640 20 H s + 2 0.334861 1 C s 7 -0.334861 2 C s + + Vector 44 Occ=0.000000D+00 E= 3.814646D-01 Symmetry=ag + MO Center= -4.5D-14, 3.8D-14, 1.5D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.575577 13 H s 46 0.575577 14 H s + 12 0.393727 3 C s 17 0.393727 4 C s + 57 -0.394540 17 H s 58 -0.394540 18 H s + 36 -0.382601 11 C s 41 -0.382601 12 C s + 37 0.333449 11 C px 42 -0.333449 12 C px + + Vector 45 Occ=0.000000D+00 E= 4.110215D-01 Symmetry=ag + MO Center= -8.0D-14, 2.5D-13, -2.0D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.651976 15 C s 53 0.651976 16 C s + 22 0.617378 5 C s 27 0.617378 6 C s + 57 -0.511453 17 H s 58 -0.511453 18 H s + 12 -0.451157 3 C s 17 -0.451157 4 C s + 59 -0.326185 19 H s 60 -0.326185 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.120118D-01 Symmetry=bu + MO Center= 8.5D-14, -2.4D-13, -8.5D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.614362 5 C s 27 -0.614362 6 C s + 48 0.538510 15 C s 53 -0.538510 16 C s + 2 0.478809 1 C s 7 -0.478809 2 C s + 57 -0.448832 17 H s 58 0.448832 18 H s + 12 -0.443511 3 C s 17 0.443511 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.267529D-01 Symmetry=bu + MO Center= -4.9D-15, -1.2D-14, -1.4D-17, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.598752 7 H s 32 -0.598752 8 H s + 36 -0.457165 11 C s 41 0.457165 12 C s + 45 0.441390 13 H s 46 -0.441390 14 H s + 12 -0.356090 3 C s 17 0.356090 4 C s + 59 0.338978 19 H s 60 -0.338978 20 H s + + Vector 48 Occ=0.000000D+00 E= 4.396376D-01 Symmetry=ag + MO Center= 5.4D-15, 9.3D-15, -1.8D-18, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.784584 1 C s 7 0.784584 2 C s + 36 -0.564008 11 C s 41 -0.564008 12 C s + 12 -0.489821 3 C s 17 -0.489821 4 C s + 22 -0.417933 5 C s 27 -0.417933 6 C s + 48 0.410834 15 C s 53 0.410834 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.527257D-01 Symmetry=bu + MO Center= -1.3D-15, 1.3D-14, -2.7D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.711943 15 C s 53 -0.711943 16 C s + 57 -0.525054 17 H s 58 0.525054 18 H s + 33 0.472530 9 H s 34 -0.472530 10 H s + 36 -0.430322 11 C s 41 0.430322 12 C s + 22 -0.408783 5 C s 27 0.408783 6 C s + + Vector 50 Occ=0.000000D+00 E= 4.782775D-01 Symmetry=ag + MO Center= 2.1D-15, -1.3D-14, 6.9D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.708915 3 C s 17 0.708915 4 C s + 22 -0.614912 5 C s 27 -0.614912 6 C s + 59 -0.475500 19 H s 60 -0.475500 20 H s + 48 0.413876 15 C s 53 0.413876 16 C s + 50 -0.383755 15 C py 55 0.383755 16 C py + + Vector 51 Occ=0.000000D+00 E= 5.262660D-01 Symmetry=ag + MO Center= 4.5D-15, 1.1D-15, 1.4D-17, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.600855 1 C py 9 -0.600855 2 C py + 36 -0.486199 11 C s 41 -0.486199 12 C s + 13 -0.462503 3 C px 18 0.462503 4 C px + 2 -0.449270 1 C s 7 -0.449270 2 C s + 49 -0.343566 15 C px 54 0.343566 16 C px + + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2635.004514089439 0.199379308416 0.000000000000 + 0.199379308416 390.064016353892 0.000000000000 + 0.000000000000 0.000000000000 3025.068530443331 + + Multipole analysis of the density + --------------------------------- + + L x y z total alpha beta nuclear + - - - - ----- ----- ---- ------- + 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 0.000000 + 1 0 1 0 0.000000 0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 0.000000 + + 2 2 0 0 -37.340441 -140.889763 -140.889763 244.439085 + 2 1 1 0 0.051836 2.886961 2.886961 -5.722086 + 2 1 0 1 0.000000 0.000000 0.000000 0.000000 + 2 0 2 0 -37.705319 -768.210515 -768.210515 1498.715712 + 2 0 1 1 0.000000 0.000000 0.000000 0.000000 + 2 0 0 2 -43.586422 -21.793211 -21.793211 0.000000 + + + Parallel integral file used 8 records with 0 large values + + Line search: + step= 1.00 grad=-1.9D-06 hess= 1.0D-06 energy= -382.308262 mode=accept + new step= 1.00 predicted energy= -382.308262 + + -------- + Step 2 + -------- + + + Geometry "geometry" -> "geometry" + --------------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.23502264 1.41619612 0.00000000 + 2 C 6.0000 -0.23502264 -1.41619612 0.00000000 + 3 C 6.0000 1.31387896 0.48920741 0.00000000 + 4 C 6.0000 -1.31387896 -0.48920741 0.00000000 + 5 C 6.0000 1.08692421 -0.89443863 0.00000000 + 6 C 6.0000 -1.08692421 0.89443863 0.00000000 + 7 H 1.0000 2.34430474 0.87032956 0.00000000 + 8 H 1.0000 -2.34430474 -0.87032956 0.00000000 + 9 H 1.0000 1.94341431 -1.58079754 0.00000000 + 10 H 1.0000 -1.94341431 1.58079754 0.00000000 + 11 C 6.0000 -0.53388380 -2.88361062 0.00000000 + 12 C 6.0000 0.53388380 2.88361062 0.00000000 + 13 H 1.0000 -1.60649934 -3.12944182 0.00000000 + 14 H 1.0000 1.60649934 3.12944182 0.00000000 + 15 C 6.0000 0.36349137 -3.88448736 0.00000000 + 16 C 6.0000 -0.36349137 3.88448736 0.00000000 + 17 H 1.0000 1.44534605 -3.70899270 0.00000000 + 18 H 1.0000 -1.44534605 3.70899270 0.00000000 + 19 H 1.0000 0.04493628 -4.93342948 0.00000000 + 20 H 1.0000 -0.04493628 4.93342948 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 445.8991834396 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + + The DFT is already converged + + Total DFT energy = -382.308261561555 + + + + NWChem DFT Gradient Module + -------------------------- + + + Divinylbenzene in STO-3G basis set + + + + charge = 0.00 + wavefunction = closed shell + + Using symmetry + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.444128 2.676223 0.000000 0.000011 -0.000015 0.000000 + 2 C -0.444128 -2.676223 0.000000 -0.000011 0.000015 0.000000 + 3 C 2.482871 0.924468 0.000000 -0.000040 0.000035 0.000000 + 4 C -2.482871 -0.924468 0.000000 0.000040 -0.000035 -0.000000 + 5 C 2.053989 -1.690244 0.000000 0.000036 0.000043 0.000000 + 6 C -2.053989 1.690244 0.000000 -0.000036 -0.000043 0.000000 + 7 H 4.430094 1.644684 0.000000 0.000012 -0.000017 0.000000 + 8 H -4.430094 -1.644684 0.000000 -0.000012 0.000017 0.000000 + 9 H 3.672521 -2.987274 0.000000 -0.000029 0.000004 0.000000 + 10 H -3.672521 2.987274 0.000000 0.000029 -0.000004 0.000000 + 11 C -1.008894 -5.449234 0.000000 0.000005 -0.000019 0.000000 + 12 C 1.008894 5.449234 0.000000 -0.000005 0.000019 0.000000 + 13 H -3.035844 -5.913788 0.000000 -0.000009 0.000022 0.000000 + 14 H 3.035844 5.913788 0.000000 0.000009 -0.000022 0.000000 + 15 C 0.686899 -7.340617 0.000000 -0.000019 0.000067 0.000000 + 16 C -0.686899 7.340617 0.000000 0.000019 -0.000067 0.000000 + 17 H 2.731308 -7.008980 0.000000 0.000010 -0.000028 0.000000 + 18 H -2.731308 7.008980 0.000000 -0.000010 0.000028 0.000000 + 19 H 0.084917 -9.322830 0.000000 0.000020 -0.000027 0.000000 + 20 H -0.084917 9.322830 0.000000 -0.000020 0.000027 0.000000 + + ---------------------------------------- + | Time | 1-e(secs) | 2-e(secs) | + ---------------------------------------- + | CPU | 0.02 | 2.82 | + ---------------------------------------- + | WALL | 0.02 | 2.82 | + ---------------------------------------- + + Step Energy Delta E Gmax Grms Xrms Xmax Walltime + ---- ---------------- -------- -------- -------- -------- -------- -------- +@ 2 -382.30826156 -9.2D-07 0.00004 0.00001 0.00061 0.00215 45.3 + ok ok ok + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value Gradient + ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- + 1 Stretch 1 3 1.42241 -0.00004 + 2 Stretch 1 6 1.42119 0.00000 + 3 Stretch 1 12 1.49754 -0.00001 + 4 Stretch 2 4 1.42241 -0.00004 + 5 Stretch 2 5 1.42119 0.00000 + 6 Stretch 2 11 1.49754 -0.00001 + 7 Stretch 3 5 1.40214 -0.00003 + 8 Stretch 3 7 1.09865 0.00001 + 9 Stretch 4 6 1.40214 -0.00003 + 10 Stretch 4 8 1.09865 0.00001 + 11 Stretch 5 9 1.09757 -0.00003 + 12 Stretch 6 10 1.09757 -0.00003 + 13 Stretch 11 13 1.10043 0.00001 + 14 Stretch 11 15 1.34426 -0.00000 + 15 Stretch 12 14 1.10043 0.00001 + 16 Stretch 12 16 1.34426 -0.00000 + 17 Stretch 15 17 1.09600 0.00000 + 18 Stretch 15 19 1.09625 0.00002 + 19 Stretch 16 18 1.09600 0.00000 + 20 Stretch 16 20 1.09625 0.00002 + 21 Bend 1 3 5 121.35517 -0.00000 + 22 Bend 1 3 7 119.03190 0.00001 + 23 Bend 1 6 4 120.85367 0.00000 + 24 Bend 1 6 10 119.75404 -0.00001 + 25 Bend 1 12 14 114.42031 -0.00002 + 26 Bend 1 12 16 126.60923 0.00000 + 27 Bend 2 4 6 121.35517 -0.00000 + 28 Bend 2 4 8 119.03190 0.00001 + 29 Bend 2 5 3 120.85367 0.00000 + 30 Bend 2 5 9 119.75404 -0.00001 + 31 Bend 2 11 13 114.42031 -0.00002 + 32 Bend 2 11 15 126.60923 0.00000 + 33 Bend 3 1 6 117.79116 0.00000 + 34 Bend 3 1 12 119.15854 -0.00001 + 35 Bend 3 5 9 119.39229 0.00001 + 36 Bend 4 2 5 117.79116 0.00000 + 37 Bend 4 2 11 119.15854 -0.00001 + 38 Bend 4 6 10 119.39229 0.00001 + 39 Bend 5 2 11 123.05030 0.00001 + 40 Bend 5 3 7 119.61293 -0.00001 + 41 Bend 6 1 12 123.05030 0.00001 + 42 Bend 6 4 8 119.61293 -0.00001 + 43 Bend 11 15 17 122.66500 0.00001 + 44 Bend 11 15 19 121.22784 0.00001 + 45 Bend 12 16 18 122.66500 0.00001 + 46 Bend 12 16 20 121.22784 0.00001 + 47 Bend 13 11 15 118.97046 0.00001 + 48 Bend 14 12 16 118.97046 0.00001 + 49 Bend 17 15 19 116.10716 -0.00002 + 50 Bend 18 16 20 116.10716 -0.00002 + 51 Torsion 1 3 5 2 0.00000 0.00000 + 52 Torsion 1 3 5 9 180.00000 0.00000 + 53 Torsion 1 6 4 2 0.00000 0.00000 + 54 Torsion 1 6 4 8 180.00000 -0.00000 + 55 Torsion 1 12 16 18 0.00000 0.00000 + 56 Torsion 1 12 16 20 180.00000 -0.00000 + 57 Torsion 2 4 6 10 180.00000 0.00000 + 58 Torsion 2 5 3 7 180.00000 -0.00000 + 59 Torsion 2 11 15 17 0.00000 -0.00000 + 60 Torsion 2 11 15 19 180.00000 -0.00000 + 61 Torsion 3 1 6 4 0.00000 0.00000 + 62 Torsion 3 1 6 10 180.00000 -0.00000 + 63 Torsion 3 1 12 14 0.00000 0.00000 + 64 Torsion 3 1 12 16 180.00000 0.00000 + 65 Torsion 3 5 2 4 0.00000 0.00000 + 66 Torsion 3 5 2 11 180.00000 0.00000 + 67 Torsion 4 2 5 9 180.00000 0.00000 + 68 Torsion 4 2 11 13 0.00000 0.00000 + 69 Torsion 4 2 11 15 180.00000 0.00000 + 70 Torsion 4 6 1 12 180.00000 0.00000 + 71 Torsion 5 2 4 6 -0.00000 -0.00000 + 72 Torsion 5 2 4 8 180.00000 0.00000 + 73 Torsion 5 2 11 13 180.00000 -0.00000 + 74 Torsion 5 2 11 15 0.00000 0.00000 + 75 Torsion 5 3 1 6 0.00000 -0.00000 + 76 Torsion 5 3 1 12 180.00000 -0.00000 + 77 Torsion 6 1 3 7 180.00000 -0.00000 + 78 Torsion 6 1 12 14 180.00000 0.00000 + 79 Torsion 6 1 12 16 0.00000 0.00000 + 80 Torsion 6 4 2 11 180.00000 -0.00000 + 81 Torsion 7 3 1 12 -0.00000 -0.00000 + 82 Torsion 7 3 5 9 0.00000 0.00000 + 83 Torsion 8 4 2 11 -0.00000 -0.00000 + 84 Torsion 8 4 6 10 0.00000 -0.00000 + 85 Torsion 9 5 2 11 0.00000 0.00000 + 86 Torsion 10 6 1 12 0.00000 0.00000 + 87 Torsion 13 11 15 17 180.00000 0.00000 + 88 Torsion 13 11 15 19 -0.00000 0.00000 + 89 Torsion 14 12 16 18 180.00000 0.00000 + 90 Torsion 14 12 16 20 -0.00000 0.00000 + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + Caching 1-el integrals + + General Information + ------------------- + SCF calculation type: DFT + Wavefunction type: closed shell. + No. of atoms : 20 + No. of electrons : 70 + Alpha electrons : 35 + Beta electrons : 35 + Charge : 0 + Spin multiplicity: 1 + Use of symmetry is: on ; symmetry adaption is: on + Maximum number of iterations: 30 + AO basis - number of functions: 60 + number of shells: 40 + Convergence on energy requested: 1.00D-06 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 + + XC Information + -------------- + B3LYP Method XC Potential + Hartree-Fock (Exact) Exchange 0.200 + Slater Exchange Functional 0.800 local + Becke 1988 Exchange Functional 0.720 non-local + Lee-Yang-Parr Correlation Functional 0.810 + VWN I RPA Correlation Functional 0.190 local + + Grid Information + ---------------- + Grid used for XC integration: medium + Radial quadrature: Mura-Knowles + Angular quadrature: Lebedev. + Tag B.-S. Rad. Rad. Pts. Rad. Cut. Ang. Pts. + --- ---------- --------- --------- --------- + C 0.70 49 12.0 434 + H 0.35 45 12.0 434 + Grid pruning is: on + Number of quadrature shells: 470 + Spatial weights used: Erf1 + + Convergence Information + ----------------------- + Convergence aids based upon iterative change in + total energy or number of iterations. + Levelshifting, if invoked, occurs when the + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + DIIS, if invoked, will attempt to extrapolate + using up to (NFOCK): 10 stored Fock matrices. + + Damping( 0%) Levelshifting(0.5) DIIS + --------------- ------------------- --------------- + dE on: start ASAP start + dE off: 2 iters 30 iters 30 iters + + + Screening Tolerance Information + ------------------------------- + Density screening/tol_rho: 1.00D-10 + AO Gaussian exp screening on grid/accAOfunc: 14 + CD Gaussian exp screening on grid/accCDfunc: 20 + XC Gaussian exp screening on grid/accXCfunc: 20 + Schwarz screening/accCoul: 1.00D-08 + + + Loading old vectors from job with title : + +Divinylbenzene in STO-3G basis set + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + Time after variat. SCF: 43.0 + Time prior to 1st pass: 43.0 + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.470D+05 #direct = 0.0% #cached =100.0% + + + Grid_pts file = ./dvb.gridpts.0 + Record size in doubles = 12289 No. of grid_pts per rec = 3070 + Max. records in memory = 75 Max. recs in file = ********* + + + Memory utilization after 1st SCF pass: + Heap Space remaining (MW): 10.94 10936722 + Stack Space remaining (MW): 13.11 13106284 + + convergence iter energy DeltaE RMS-Dens Diis-err time + ---------------- ----- ----------------- --------- --------- --------- ------ + d= 0,ls=0.0,diis 1 -382.3082616325 -8.28D+02 4.72D-06 3.31D-08 46.4 + d= 0,ls=0.0,diis 2 -382.3082616405 -8.02D-09 7.55D-07 5.47D-10 47.4 + + + Total DFT energy = -382.308261640529 + One electron energy = -1400.560791034297 + Coulomb energy = 630.200049655279 + Exchange-Corr. energy = -57.843683947487 + Nuclear repulsion energy = 445.896163685976 + + Numeric. integr. density = 69.999955313940 + + Total iterative time = 4.3s + + + + Occupations of the irreducible representations + ---------------------------------------------- + + irrep alpha beta + -------- -------- -------- + ag 15.0 15.0 + au 2.0 2.0 + bg 3.0 3.0 + bu 15.0 15.0 + + + DFT Final Molecular Orbital Analysis + ------------------------------------ + + Vector 10 Occ=2.000000D+00 E=-9.992327D+00 Symmetry=ag + MO Center= -2.4D-09, 2.5D-08, -3.4D-18, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.700478 15 C s 52 0.700478 16 C s + + Vector 11 Occ=2.000000D+00 E=-8.095106D-01 Symmetry=ag + MO Center= 5.7D-16, 7.0D-17, 1.3D-17, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.274634 1 C s 7 0.274634 2 C s + 12 0.247009 3 C s 17 0.247009 4 C s + 22 0.246750 5 C s 27 0.246750 6 C s + + Vector 12 Occ=2.000000D+00 E=-7.539866D-01 Symmetry=bu + MO Center= -2.6D-16, -1.1D-14, 7.9D-21, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 -0.297267 11 C s 41 0.297267 12 C s + 2 0.273904 1 C s 7 -0.273904 2 C s + 48 -0.209203 15 C s 53 0.209203 16 C s + + Vector 13 Occ=2.000000D+00 E=-7.179660D-01 Symmetry=ag + MO Center= -4.7D-16, 6.3D-15, 2.9D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.314970 11 C s 41 0.314970 12 C s + 48 0.309678 15 C s 53 0.309678 16 C s + + Vector 14 Occ=2.000000D+00 E=-6.997886D-01 Symmetry=bu + MO Center= 6.6D-16, 4.9D-16, -4.9D-20, r^2= 3.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.356613 3 C s 17 -0.356613 4 C s + 22 0.324765 5 C s 27 -0.324765 6 C s + + Vector 15 Occ=2.000000D+00 E=-6.675116D-01 Symmetry=bu + MO Center= 8.8D-16, 3.9D-15, 2.6D-19, r^2= 9.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.299738 15 C s 53 -0.299738 16 C s + 2 0.274043 1 C s 7 -0.274043 2 C s + 22 -0.200662 5 C s 27 0.200662 6 C s + + Vector 16 Occ=2.000000D+00 E=-5.887077D-01 Symmetry=ag + MO Center= -1.5D-15, -4.4D-15, -1.2D-16, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.242746 15 C s 53 0.242746 16 C s + 22 0.232205 5 C s 27 0.232205 6 C s + 2 -0.206944 1 C s 7 -0.206944 2 C s + 14 -0.159641 3 C py 19 0.159641 4 C py + 36 -0.159475 11 C s 41 -0.159475 12 C s + + Vector 17 Occ=2.000000D+00 E=-5.589269D-01 Symmetry=ag + MO Center= -1.1D-15, 1.9D-15, 2.4D-17, r^2= 5.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.326160 3 C s 17 0.326160 4 C s + 3 0.185901 1 C px 8 -0.185901 2 C px + 22 -0.172095 5 C s 27 -0.172095 6 C s + 24 0.170108 5 C py 29 -0.170108 6 C py + 31 0.169724 7 H s 32 0.169724 8 H s + + Vector 18 Occ=2.000000D+00 E=-5.316631D-01 Symmetry=bu + MO Center= -1.0D-15, -3.3D-16, -1.5D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.302595 11 C s 41 -0.302595 12 C s + 48 -0.249271 15 C s 53 0.249271 16 C s + 45 0.170560 13 H s 46 -0.170560 14 H s + 57 -0.160345 17 H s 58 0.160345 18 H s + 12 0.154558 3 C s 17 -0.154558 4 C s + + Vector 19 Occ=2.000000D+00 E=-5.101787D-01 Symmetry=ag + MO Center= -1.8D-15, 2.7D-15, 4.0D-18, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.202144 5 C px 28 -0.202144 6 C px + 13 0.183769 3 C px 18 -0.183769 4 C px + 36 0.180872 11 C s 41 0.180872 12 C s + 33 0.169716 9 H s 34 0.169716 10 H s + 22 0.166819 5 C s 27 0.166819 6 C s + + Vector 20 Occ=2.000000D+00 E=-4.574373D-01 Symmetry=ag + MO Center= -4.3D-15, -4.7D-16, -3.8D-17, r^2= 9.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.212954 15 C px 54 -0.212954 16 C px + 38 0.184716 11 C py 43 -0.184716 12 C py + 57 0.179068 17 H s 58 0.179068 18 H s + 45 -0.152693 13 H s 46 -0.152693 14 H s + + Vector 21 Occ=2.000000D+00 E=-4.393594D-01 Symmetry=bu + MO Center= -5.2D-16, -6.1D-16, -4.7D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.219723 11 C px 42 0.219723 12 C px + 50 0.209550 15 C py 55 0.209550 16 C py + 14 0.184813 3 C py 19 0.184813 4 C py + 59 -0.177445 19 H s 60 0.177445 20 H s + 45 -0.155828 13 H s 46 0.155828 14 H s + + Vector 22 Occ=2.000000D+00 E=-4.106203D-01 Symmetry=bu + MO Center= 1.1D-15, 2.3D-15, -2.8D-17, r^2= 6.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.234296 1 C s 7 -0.234296 2 C s + 33 0.231175 9 H s 34 -0.231175 10 H s + 31 -0.225187 7 H s 32 0.225187 8 H s + 13 -0.220047 3 C px 18 -0.220047 4 C px + 24 -0.178806 5 C py 29 -0.178806 6 C py + + Vector 23 Occ=2.000000D+00 E=-3.979534D-01 Symmetry=bu + MO Center= 1.0D-15, 9.8D-16, -1.3D-17, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.250973 5 C px 28 0.250973 6 C px + 49 0.251325 15 C px 54 0.251325 16 C px + 3 -0.219134 1 C px 8 -0.219134 2 C px + 57 0.215807 17 H s 58 -0.215807 18 H s + 38 0.182180 11 C py 43 0.182180 12 C py + + Vector 24 Occ=2.000000D+00 E=-3.960737D-01 Symmetry=ag + MO Center= -9.2D-16, 2.0D-15, -3.9D-17, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.338878 15 C py 55 -0.338878 16 C py + 59 -0.262036 19 H s 60 -0.262036 20 H s + 37 0.252199 11 C px 42 -0.252199 12 C px + + Vector 25 Occ=2.000000D+00 E=-3.739779D-01 Symmetry=bu + MO Center= 1.5D-15, -2.7D-16, -3.0D-17, r^2= 4.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.308778 3 C px 18 0.308778 4 C px + 31 0.253683 7 H s 32 -0.253683 8 H s + 24 -0.224700 5 C py 29 -0.224700 6 C py + 33 0.217050 9 H s 34 -0.217050 10 H s + 23 0.188239 5 C px 28 0.188239 6 C px + + Vector 26 Occ=2.000000D+00 E=-3.511500D-01 Symmetry=bu + MO Center= 9.0D-16, 2.8D-16, 4.2D-18, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.245306 15 C py 55 -0.245306 16 C py + 14 0.225016 3 C py 19 0.225016 4 C py + 37 -0.201407 11 C px 42 -0.201407 12 C px + 24 -0.194666 5 C py 29 -0.194666 6 C py + 38 0.186270 11 C py 43 0.186270 12 C py + + Vector 27 Occ=2.000000D+00 E=-3.472862D-01 Symmetry=ag + MO Center= 3.1D-17, 2.5D-16, -1.2D-16, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.295553 15 C px 54 -0.295553 16 C px + 57 0.268071 17 H s 58 0.268071 18 H s + 37 -0.207910 11 C px 42 0.207910 12 C px + 45 0.199900 13 H s 46 0.199900 14 H s + 31 -0.155818 7 H s 32 -0.155818 8 H s + + Vector 28 Occ=2.000000D+00 E=-3.245088D-01 Symmetry=au + MO Center= 4.9D-16, -2.6D-15, 8.0D-17, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.337541 1 C pz 10 0.337541 2 C pz + 15 0.297866 3 C pz 20 0.297866 4 C pz + 25 0.297231 5 C pz 30 0.297231 6 C pz + 39 0.174025 11 C pz 44 0.174025 12 C pz + + Vector 29 Occ=2.000000D+00 E=-3.112466D-01 Symmetry=bu + MO Center= 5.3D-15, -1.2D-15, -1.1D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.258810 13 H s 46 -0.258810 14 H s + 4 0.242385 1 C py 9 0.242385 2 C py + 57 0.230613 17 H s 58 -0.230613 18 H s + 37 -0.216952 11 C px 42 -0.216952 12 C px + 59 -0.213033 19 H s 60 0.213033 20 H s + + Vector 30 Occ=2.000000D+00 E=-2.927991D-01 Symmetry=ag + MO Center= -2.3D-16, -7.6D-16, -1.6D-17, r^2= 6.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 -0.278610 3 C py 19 0.278610 4 C py + 4 0.270063 1 C py 9 -0.270063 2 C py + 38 0.249434 11 C py 43 -0.249434 12 C py + 33 -0.237888 9 H s 34 -0.237888 10 H s + 24 0.235614 5 C py 29 -0.235614 6 C py + + Vector 31 Occ=2.000000D+00 E=-2.874575D-01 Symmetry=ag + MO Center= 5.4D-16, -2.3D-15, -9.2D-18, r^2= 6.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.298526 1 C px 8 -0.298526 2 C px + 23 0.281456 5 C px 28 -0.281456 6 C px + 31 -0.259051 7 H s 32 -0.259051 8 H s + 13 -0.225103 3 C px 18 0.225103 4 C px + 45 -0.180917 13 H s 46 -0.180917 14 H s + + Vector 32 Occ=2.000000D+00 E=-2.635512D-01 Symmetry=bg + MO Center= -9.0D-17, 1.2D-14, 6.3D-21, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.376543 11 C pz 44 0.376543 12 C pz + 5 0.348923 1 C pz 10 -0.348923 2 C pz + 51 -0.271385 15 C pz 56 0.271385 16 C pz + + Vector 33 Occ=2.000000D+00 E=-2.124471D-01 Symmetry=au + MO Center= -6.5D-16, -9.4D-15, -2.6D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.417877 15 C pz 56 0.417877 16 C pz + 39 0.413792 11 C pz 44 0.413792 12 C pz + 15 -0.179193 3 C pz 20 -0.179193 4 C pz + 25 -0.176755 5 C pz 30 -0.176755 6 C pz + + Vector 34 Occ=2.000000D+00 E=-1.950566D-01 Symmetry=bg + MO Center= -2.1D-15, -7.7D-16, 5.9D-17, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.463064 3 C pz 20 -0.463064 4 C pz + 25 0.458194 5 C pz 30 -0.458194 6 C pz + + Vector 35 Occ=2.000000D+00 E=-1.530803D-01 Symmetry=bg + MO Center= -4.1D-33, 7.8D-16, 3.0D-18, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.397417 15 C pz 56 -0.397417 16 C pz + 5 0.387575 1 C pz 10 -0.387575 2 C pz + 25 -0.228724 5 C pz 30 0.228724 6 C pz + 39 0.223621 11 C pz 44 -0.223621 12 C pz + 15 0.217057 3 C pz 20 -0.217057 4 C pz + + Vector 36 Occ=0.000000D+00 E= 3.740717D-02 Symmetry=au + MO Center= 8.0D-16, -2.8D-14, 4.1D-16, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.449945 15 C pz 56 -0.449945 16 C pz + 5 0.442445 1 C pz 10 0.442445 2 C pz + 25 -0.276549 5 C pz 30 -0.276549 6 C pz + 39 0.256327 11 C pz 44 0.256327 12 C pz + 15 -0.232922 3 C pz 20 -0.232922 4 C pz + + Vector 37 Occ=0.000000D+00 E= 9.036486D-02 Symmetry=au + MO Center= -8.7D-15, 2.0D-15, 5.6D-16, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.582587 3 C pz 20 0.582587 4 C pz + 25 -0.553532 5 C pz 30 -0.553532 6 C pz + + Vector 38 Occ=0.000000D+00 E= 1.106123D-01 Symmetry=bg + MO Center= 7.6D-15, 1.8D-14, 8.7D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.522233 11 C pz 44 -0.522233 12 C pz + 51 -0.523179 15 C pz 56 0.523179 16 C pz + 15 0.240586 3 C pz 20 -0.240586 4 C pz + 25 -0.232030 5 C pz 30 0.232030 6 C pz + + Vector 39 Occ=0.000000D+00 E= 1.822119D-01 Symmetry=au + MO Center= -1.9D-16, 1.1D-15, -1.6D-16, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.529018 11 C pz 44 -0.529018 12 C pz + 5 0.497563 1 C pz 10 0.497563 2 C pz + 51 0.379413 15 C pz 56 0.379413 16 C pz + 25 -0.199830 5 C pz 30 -0.199830 6 C pz + 15 -0.166289 3 C pz 20 -0.166289 4 C pz + + Vector 40 Occ=0.000000D+00 E= 2.725252D-01 Symmetry=bg + MO Center= 2.8D-15, 6.4D-15, 2.0D-16, r^2= 3.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.543548 1 C pz 10 -0.543548 2 C pz + 25 0.467238 5 C pz 30 -0.467238 6 C pz + 15 -0.464161 3 C pz 20 0.464161 4 C pz + 39 0.287595 11 C pz 44 -0.287595 12 C pz + 51 -0.155910 15 C pz 56 0.155910 16 C pz + + Vector 41 Occ=0.000000D+00 E= 3.322354D-01 Symmetry=ag + MO Center= 1.5D-14, 2.1D-14, 2.9D-16, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 -0.422893 9 H s 34 -0.422893 10 H s + 31 -0.413191 7 H s 32 -0.413191 8 H s + 2 0.401841 1 C s 7 0.401841 2 C s + 59 -0.356586 19 H s 60 -0.356586 20 H s + 38 -0.338856 11 C py 43 0.338856 12 C py + + Vector 42 Occ=0.000000D+00 E= 3.407361D-01 Symmetry=bu + MO Center= -1.8D-14, 2.8D-14, -1.3D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.434922 13 H s 46 -0.434922 14 H s + 13 0.355399 3 C px 18 0.355399 4 C px + 37 0.345453 11 C px 42 0.345453 12 C px + 57 -0.323820 17 H s 58 0.323820 18 H s + 31 -0.319733 7 H s 32 0.319733 8 H s + + Vector 43 Occ=0.000000D+00 E= 3.793988D-01 Symmetry=bu + MO Center= -1.0D-13, 2.4D-14, 6.5D-17, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.541980 11 C s 41 -0.541980 12 C s + 4 0.460371 1 C py 9 0.460371 2 C py + 33 0.412018 9 H s 34 -0.412018 10 H s + 59 0.346715 19 H s 60 -0.346715 20 H s + 2 0.334836 1 C s 7 -0.334836 2 C s + + Vector 44 Occ=0.000000D+00 E= 3.814761D-01 Symmetry=ag + MO Center= 9.3D-14, -1.0D-13, 1.0D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.575702 13 H s 46 0.575702 14 H s + 12 0.393935 3 C s 17 0.393935 4 C s + 57 -0.394339 17 H s 58 -0.394339 18 H s + 36 -0.382428 11 C s 41 -0.382428 12 C s + 37 0.333670 11 C px 42 -0.333670 12 C px + + Vector 45 Occ=0.000000D+00 E= 4.110019D-01 Symmetry=ag + MO Center= 3.1D-13, -9.0D-13, -8.7D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.651794 15 C s 53 0.651794 16 C s + 22 0.617545 5 C s 27 0.617545 6 C s + 57 -0.511556 17 H s 58 -0.511556 18 H s + 12 -0.450921 3 C s 17 -0.450921 4 C s + 59 -0.325932 19 H s 60 -0.325932 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.119879D-01 Symmetry=bu + MO Center= -3.3D-13, 9.1D-13, -2.9D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.614470 5 C s 27 -0.614470 6 C s + 48 0.538364 15 C s 53 -0.538364 16 C s + 2 0.478798 1 C s 7 -0.478798 2 C s + 57 -0.448570 17 H s 58 0.448570 18 H s + 12 -0.443261 3 C s 17 0.443261 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.267671D-01 Symmetry=bu + MO Center= 9.0D-15, 2.0D-14, -3.1D-17, r^2= 9.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.599150 7 H s 32 -0.599150 8 H s + 36 -0.456657 11 C s 41 0.456657 12 C s + 45 0.441108 13 H s 46 -0.441108 14 H s + 12 -0.356766 3 C s 17 0.356766 4 C s + 59 0.338857 19 H s 60 -0.338857 20 H s + + Vector 48 Occ=0.000000D+00 E= 4.396342D-01 Symmetry=ag + MO Center= 5.2D-15, 6.2D-14, -1.4D-16, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.784543 1 C s 7 0.784543 2 C s + 36 -0.563960 11 C s 41 -0.563960 12 C s + 12 -0.490120 3 C s 17 -0.490120 4 C s + 22 -0.417636 5 C s 27 -0.417636 6 C s + 48 0.410895 15 C s 53 0.410895 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.527325D-01 Symmetry=bu + MO Center= 3.8D-15, -7.1D-14, 5.8D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.712002 15 C s 53 -0.712002 16 C s + 57 -0.525304 17 H s 58 0.525304 18 H s + 33 0.472391 9 H s 34 -0.472391 10 H s + 36 -0.430350 11 C s 41 0.430350 12 C s + 22 -0.408564 5 C s 27 0.408564 6 C s + + Vector 50 Occ=0.000000D+00 E= 4.782522D-01 Symmetry=ag + MO Center= 1.1D-15, 4.2D-15, -3.3D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.708705 3 C s 17 0.708705 4 C s + 22 -0.614998 5 C s 27 -0.614998 6 C s + 59 -0.475604 19 H s 60 -0.475604 20 H s + 48 0.413932 15 C s 53 0.413932 16 C s + 50 -0.383834 15 C py 55 0.383834 16 C py + + Vector 51 Occ=0.000000D+00 E= 5.262553D-01 Symmetry=ag + MO Center= 5.2D-15, -2.8D-14, -3.3D-16, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.600949 1 C py 9 -0.600949 2 C py + 36 -0.486145 11 C s 41 -0.486145 12 C s + 13 -0.462715 3 C px 18 0.462715 4 C px + 2 -0.449116 1 C s 7 -0.449116 2 C s + 49 -0.343463 15 C px 54 0.343463 16 C px + + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2635.030010129342 0.201628199728 0.000000000000 + 0.201628199728 390.070686128563 0.000000000000 + 0.000000000000 0.000000000000 3025.100696257906 + + Multipole analysis of the density + --------------------------------- + + L x y z total alpha beta nuclear + - - - - ----- ----- ---- ------- + 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 0.000000 + 1 0 1 0 -0.000000 -0.000000 -0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 0.000000 + + 2 2 0 0 -37.340646 -140.891384 -140.891384 244.442121 + 2 1 1 0 0.052347 2.886738 2.886738 -5.721128 + 2 1 0 1 0.000000 0.000000 0.000000 0.000000 + 2 0 2 0 -37.704664 -768.216034 -768.216034 1498.727404 + 2 0 1 1 -0.000000 -0.000000 -0.000000 0.000000 + 2 0 0 2 -43.586471 -21.793236 -21.793236 0.000000 + + + Parallel integral file used 8 records with 0 large values + + Line search: + step= 1.00 grad=-8.3D-08 hess= 3.8D-09 energy= -382.308262 mode=accept + new step= 1.00 predicted energy= -382.308262 + + -------- + Step 3 + -------- + + + Geometry "geometry" -> "geometry" + --------------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.23508647 1.41621544 0.00000000 + 2 C 6.0000 -0.23508647 -1.41621544 0.00000000 + 3 C 6.0000 1.31390635 0.48912330 0.00000000 + 4 C 6.0000 -1.31390635 -0.48912330 0.00000000 + 5 C 6.0000 1.08689379 -0.89453821 0.00000000 + 6 C 6.0000 -1.08689379 0.89453821 0.00000000 + 7 H 1.0000 2.34429319 0.87032423 0.00000000 + 8 H 1.0000 -2.34429319 -0.87032423 0.00000000 + 9 H 1.0000 1.94343860 -1.58086371 0.00000000 + 10 H 1.0000 -1.94343860 1.58086371 0.00000000 + 11 C 6.0000 -0.53391326 -2.88364140 0.00000000 + 12 C 6.0000 0.53391326 2.88364140 0.00000000 + 13 H 1.0000 -1.60648263 -3.12964688 0.00000000 + 14 H 1.0000 1.60648263 3.12964688 0.00000000 + 15 C 6.0000 0.36351559 -3.88448664 0.00000000 + 16 C 6.0000 -0.36351559 3.88448664 0.00000000 + 17 H 1.0000 1.44532237 -3.70881063 0.00000000 + 18 H 1.0000 -1.44532237 3.70881063 0.00000000 + 19 H 1.0000 0.04490649 -4.93338582 0.00000000 + 20 H 1.0000 -0.04490649 4.93338582 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 445.8961636860 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + + The DFT is already converged + + Total DFT energy = -382.308261640529 + + + + NWChem DFT Gradient Module + -------------------------- + + + Divinylbenzene in STO-3G basis set + + + + charge = 0.00 + wavefunction = closed shell + + Using symmetry + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.444249 2.676259 0.000000 0.000005 0.000003 0.000000 + 2 C -0.444249 -2.676259 0.000000 -0.000005 -0.000003 -0.000000 + 3 C 2.482923 0.924309 0.000000 -0.000003 0.000008 0.000000 + 4 C -2.482923 -0.924309 0.000000 0.000003 -0.000008 0.000000 + 5 C 2.053931 -1.690432 0.000000 0.000011 0.000007 0.000000 + 6 C -2.053931 1.690432 0.000000 -0.000011 -0.000007 0.000000 + 7 H 4.430072 1.644674 0.000000 -0.000002 -0.000003 0.000000 + 8 H -4.430072 -1.644674 0.000000 0.000002 0.000003 0.000000 + 9 H 3.672566 -2.987399 0.000000 -0.000008 0.000002 0.000000 + 10 H -3.672566 2.987399 0.000000 0.000008 -0.000002 0.000000 + 11 C -1.008950 -5.449292 0.000000 0.000001 -0.000003 0.000000 + 12 C 1.008950 5.449292 0.000000 -0.000001 0.000003 0.000000 + 13 H -3.035812 -5.914175 0.000000 0.000001 0.000006 0.000000 + 14 H 3.035812 5.914175 0.000000 -0.000001 -0.000006 0.000000 + 15 C 0.686945 -7.340615 0.000000 0.000006 0.000015 0.000000 + 16 C -0.686945 7.340615 0.000000 -0.000006 -0.000015 0.000000 + 17 H 2.731263 -7.008636 0.000000 -0.000003 -0.000008 0.000000 + 18 H -2.731263 7.008636 0.000000 0.000003 0.000008 0.000000 + 19 H 0.084861 -9.322747 0.000000 0.000007 -0.000005 0.000000 + 20 H -0.084861 9.322747 0.000000 -0.000007 0.000005 0.000000 + + ---------------------------------------- + | Time | 1-e(secs) | 2-e(secs) | + ---------------------------------------- + | CPU | 0.02 | 2.84 | + ---------------------------------------- + | WALL | 0.02 | 2.84 | + ---------------------------------------- + + Step Energy Delta E Gmax Grms Xrms Xmax Walltime + ---- ---------------- -------- -------- -------- -------- -------- -------- +@ 3 -382.30826164 -7.9D-08 0.00001 0.00000 0.00011 0.00039 55.7 + ok ok ok ok + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value Gradient + ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- + 1 Stretch 1 3 1.42245 -0.00001 + 2 Stretch 1 6 1.42119 0.00000 + 3 Stretch 1 12 1.49754 -0.00001 + 4 Stretch 2 4 1.42245 -0.00001 + 5 Stretch 2 5 1.42119 0.00000 + 6 Stretch 2 11 1.49754 -0.00001 + 7 Stretch 3 5 1.40216 -0.00000 + 8 Stretch 3 7 1.09864 -0.00000 + 9 Stretch 4 6 1.40216 -0.00000 + 10 Stretch 4 8 1.09864 -0.00000 + 11 Stretch 5 9 1.09759 -0.00001 + 12 Stretch 6 10 1.09759 -0.00001 + 13 Stretch 11 13 1.10042 -0.00000 + 14 Stretch 11 15 1.34427 0.00000 + 15 Stretch 12 14 1.10042 -0.00000 + 16 Stretch 12 16 1.34427 0.00000 + 17 Stretch 15 17 1.09598 -0.00001 + 18 Stretch 15 19 1.09622 0.00000 + 19 Stretch 16 18 1.09598 -0.00001 + 20 Stretch 16 20 1.09622 0.00000 + 21 Bend 1 3 5 121.35706 -0.00000 + 22 Bend 1 3 7 119.02322 0.00000 + 23 Bend 1 6 4 120.85240 0.00000 + 24 Bend 1 6 10 119.76069 -0.00000 + 25 Bend 1 12 14 114.42831 -0.00000 + 26 Bend 1 12 16 126.60801 0.00000 + 27 Bend 2 4 6 121.35706 -0.00000 + 28 Bend 2 4 8 119.02322 0.00000 + 29 Bend 2 5 3 120.85240 0.00000 + 30 Bend 2 5 9 119.76069 -0.00000 + 31 Bend 2 11 13 114.42831 -0.00000 + 32 Bend 2 11 15 126.60801 0.00000 + 33 Bend 3 1 6 117.79055 -0.00000 + 34 Bend 3 1 12 119.16404 -0.00000 + 35 Bend 3 5 9 119.38691 0.00000 + 36 Bend 4 2 5 117.79055 -0.00000 + 37 Bend 4 2 11 119.16404 -0.00000 + 38 Bend 4 6 10 119.38691 0.00000 + 39 Bend 5 2 11 123.04542 0.00000 + 40 Bend 5 3 7 119.61972 -0.00000 + 41 Bend 6 1 12 123.04542 0.00000 + 42 Bend 6 4 8 119.61972 -0.00000 + 43 Bend 11 15 17 122.65784 0.00000 + 44 Bend 11 15 19 121.22189 0.00000 + 45 Bend 12 16 18 122.65784 0.00000 + 46 Bend 12 16 20 121.22189 0.00000 + 47 Bend 13 11 15 118.96367 0.00000 + 48 Bend 14 12 16 118.96367 0.00000 + 49 Bend 17 15 19 116.12028 -0.00000 + 50 Bend 18 16 20 116.12028 -0.00000 + 51 Torsion 1 3 5 2 0.00000 0.00000 + 52 Torsion 1 3 5 9 180.00000 0.00000 + 53 Torsion 1 6 4 2 0.00000 0.00000 + 54 Torsion 1 6 4 8 180.00000 -0.00000 + 55 Torsion 1 12 16 18 0.00000 0.00000 + 56 Torsion 1 12 16 20 180.00000 -0.00000 + 57 Torsion 2 4 6 10 180.00000 0.00000 + 58 Torsion 2 5 3 7 180.00000 -0.00000 + 59 Torsion 2 11 15 17 0.00000 -0.00000 + 60 Torsion 2 11 15 19 180.00000 -0.00000 + 61 Torsion 3 1 6 4 0.00000 0.00000 + 62 Torsion 3 1 6 10 180.00000 -0.00000 + 63 Torsion 3 1 12 14 0.00000 0.00000 + 64 Torsion 3 1 12 16 180.00000 0.00000 + 65 Torsion 3 5 2 4 0.00000 0.00000 + 66 Torsion 3 5 2 11 180.00000 0.00000 + 67 Torsion 4 2 5 9 180.00000 -0.00000 + 68 Torsion 4 2 11 13 0.00000 0.00000 + 69 Torsion 4 2 11 15 180.00000 0.00000 + 70 Torsion 4 6 1 12 180.00000 0.00000 + 71 Torsion 5 2 4 6 -0.00000 -0.00000 + 72 Torsion 5 2 4 8 180.00000 0.00000 + 73 Torsion 5 2 11 13 180.00000 -0.00000 + 74 Torsion 5 2 11 15 0.00000 0.00000 + 75 Torsion 5 3 1 6 0.00000 -0.00000 + 76 Torsion 5 3 1 12 180.00000 -0.00000 + 77 Torsion 6 1 3 7 180.00000 0.00000 + 78 Torsion 6 1 12 14 180.00000 -0.00000 + 79 Torsion 6 1 12 16 0.00000 0.00000 + 80 Torsion 6 4 2 11 180.00000 -0.00000 + 81 Torsion 7 3 1 12 -0.00000 -0.00000 + 82 Torsion 7 3 5 9 0.00000 0.00000 + 83 Torsion 8 4 2 11 -0.00000 -0.00000 + 84 Torsion 8 4 6 10 0.00000 -0.00000 + 85 Torsion 9 5 2 11 0.00000 0.00000 + 86 Torsion 10 6 1 12 0.00000 -0.00000 + 87 Torsion 13 11 15 17 180.00000 0.00000 + 88 Torsion 13 11 15 19 -0.00000 0.00000 + 89 Torsion 14 12 16 18 180.00000 0.00000 + 90 Torsion 14 12 16 20 -0.00000 0.00000 + + + ---------------------- + Optimization converged + ---------------------- + + + Step Energy Delta E Gmax Grms Xrms Xmax Walltime + ---- ---------------- -------- -------- -------- -------- -------- -------- +@ 3 -382.30826164 -7.9D-08 0.00001 0.00000 0.00011 0.00039 55.7 + ok ok ok ok + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value Gradient + ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- + 1 Stretch 1 3 1.42245 -0.00001 + 2 Stretch 1 6 1.42119 0.00000 + 3 Stretch 1 12 1.49754 -0.00001 + 4 Stretch 2 4 1.42245 -0.00001 + 5 Stretch 2 5 1.42119 0.00000 + 6 Stretch 2 11 1.49754 -0.00001 + 7 Stretch 3 5 1.40216 -0.00000 + 8 Stretch 3 7 1.09864 -0.00000 + 9 Stretch 4 6 1.40216 -0.00000 + 10 Stretch 4 8 1.09864 -0.00000 + 11 Stretch 5 9 1.09759 -0.00001 + 12 Stretch 6 10 1.09759 -0.00001 + 13 Stretch 11 13 1.10042 -0.00000 + 14 Stretch 11 15 1.34427 0.00000 + 15 Stretch 12 14 1.10042 -0.00000 + 16 Stretch 12 16 1.34427 0.00000 + 17 Stretch 15 17 1.09598 -0.00001 + 18 Stretch 15 19 1.09622 0.00000 + 19 Stretch 16 18 1.09598 -0.00001 + 20 Stretch 16 20 1.09622 0.00000 + 21 Bend 1 3 5 121.35706 -0.00000 + 22 Bend 1 3 7 119.02322 0.00000 + 23 Bend 1 6 4 120.85240 0.00000 + 24 Bend 1 6 10 119.76069 -0.00000 + 25 Bend 1 12 14 114.42831 -0.00000 + 26 Bend 1 12 16 126.60801 0.00000 + 27 Bend 2 4 6 121.35706 -0.00000 + 28 Bend 2 4 8 119.02322 0.00000 + 29 Bend 2 5 3 120.85240 0.00000 + 30 Bend 2 5 9 119.76069 -0.00000 + 31 Bend 2 11 13 114.42831 -0.00000 + 32 Bend 2 11 15 126.60801 0.00000 + 33 Bend 3 1 6 117.79055 -0.00000 + 34 Bend 3 1 12 119.16404 -0.00000 + 35 Bend 3 5 9 119.38691 0.00000 + 36 Bend 4 2 5 117.79055 -0.00000 + 37 Bend 4 2 11 119.16404 -0.00000 + 38 Bend 4 6 10 119.38691 0.00000 + 39 Bend 5 2 11 123.04542 0.00000 + 40 Bend 5 3 7 119.61972 -0.00000 + 41 Bend 6 1 12 123.04542 0.00000 + 42 Bend 6 4 8 119.61972 -0.00000 + 43 Bend 11 15 17 122.65784 0.00000 + 44 Bend 11 15 19 121.22189 0.00000 + 45 Bend 12 16 18 122.65784 0.00000 + 46 Bend 12 16 20 121.22189 0.00000 + 47 Bend 13 11 15 118.96367 0.00000 + 48 Bend 14 12 16 118.96367 0.00000 + 49 Bend 17 15 19 116.12028 -0.00000 + 50 Bend 18 16 20 116.12028 -0.00000 + 51 Torsion 1 3 5 2 0.00000 0.00000 + 52 Torsion 1 3 5 9 180.00000 0.00000 + 53 Torsion 1 6 4 2 0.00000 0.00000 + 54 Torsion 1 6 4 8 180.00000 -0.00000 + 55 Torsion 1 12 16 18 0.00000 0.00000 + 56 Torsion 1 12 16 20 180.00000 -0.00000 + 57 Torsion 2 4 6 10 180.00000 0.00000 + 58 Torsion 2 5 3 7 180.00000 -0.00000 + 59 Torsion 2 11 15 17 0.00000 -0.00000 + 60 Torsion 2 11 15 19 180.00000 -0.00000 + 61 Torsion 3 1 6 4 0.00000 0.00000 + 62 Torsion 3 1 6 10 180.00000 -0.00000 + 63 Torsion 3 1 12 14 0.00000 0.00000 + 64 Torsion 3 1 12 16 180.00000 0.00000 + 65 Torsion 3 5 2 4 0.00000 0.00000 + 66 Torsion 3 5 2 11 180.00000 0.00000 + 67 Torsion 4 2 5 9 180.00000 -0.00000 + 68 Torsion 4 2 11 13 0.00000 0.00000 + 69 Torsion 4 2 11 15 180.00000 0.00000 + 70 Torsion 4 6 1 12 180.00000 0.00000 + 71 Torsion 5 2 4 6 -0.00000 -0.00000 + 72 Torsion 5 2 4 8 180.00000 0.00000 + 73 Torsion 5 2 11 13 180.00000 -0.00000 + 74 Torsion 5 2 11 15 0.00000 0.00000 + 75 Torsion 5 3 1 6 0.00000 -0.00000 + 76 Torsion 5 3 1 12 180.00000 -0.00000 + 77 Torsion 6 1 3 7 180.00000 0.00000 + 78 Torsion 6 1 12 14 180.00000 -0.00000 + 79 Torsion 6 1 12 16 0.00000 0.00000 + 80 Torsion 6 4 2 11 180.00000 -0.00000 + 81 Torsion 7 3 1 12 -0.00000 -0.00000 + 82 Torsion 7 3 5 9 0.00000 0.00000 + 83 Torsion 8 4 2 11 -0.00000 -0.00000 + 84 Torsion 8 4 6 10 0.00000 -0.00000 + 85 Torsion 9 5 2 11 0.00000 0.00000 + 86 Torsion 10 6 1 12 0.00000 -0.00000 + 87 Torsion 13 11 15 17 180.00000 0.00000 + 88 Torsion 13 11 15 19 -0.00000 0.00000 + 89 Torsion 14 12 16 18 180.00000 0.00000 + 90 Torsion 14 12 16 20 -0.00000 0.00000 + + + + Geometry "geometry" -> "geometry" + --------------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.23508647 1.41621544 0.00000000 + 2 C 6.0000 -0.23508647 -1.41621544 0.00000000 + 3 C 6.0000 1.31390635 0.48912330 0.00000000 + 4 C 6.0000 -1.31390635 -0.48912330 0.00000000 + 5 C 6.0000 1.08689379 -0.89453821 0.00000000 + 6 C 6.0000 -1.08689379 0.89453821 0.00000000 + 7 H 1.0000 2.34429319 0.87032423 0.00000000 + 8 H 1.0000 -2.34429319 -0.87032423 0.00000000 + 9 H 1.0000 1.94343860 -1.58086371 0.00000000 + 10 H 1.0000 -1.94343860 1.58086371 0.00000000 + 11 C 6.0000 -0.53391326 -2.88364140 0.00000000 + 12 C 6.0000 0.53391326 2.88364140 0.00000000 + 13 H 1.0000 -1.60648263 -3.12964688 0.00000000 + 14 H 1.0000 1.60648263 3.12964688 0.00000000 + 15 C 6.0000 0.36351559 -3.88448664 0.00000000 + 16 C 6.0000 -0.36351559 3.88448664 0.00000000 + 17 H 1.0000 1.44532237 -3.70881063 0.00000000 + 18 H 1.0000 -1.44532237 3.70881063 0.00000000 + 19 H 1.0000 0.04490649 -4.93338582 0.00000000 + 20 H 1.0000 -0.04490649 4.93338582 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 445.8961636860 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + + Final and change from initial internal coordinates + -------------------------------------------------- + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value Change + ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- + 1 Stretch 1 3 1.42245 0.00041 + 2 Stretch 1 6 1.42119 -0.00078 + 3 Stretch 1 12 1.49754 -0.00030 + 4 Stretch 2 4 1.42245 0.00041 + 5 Stretch 2 5 1.42119 -0.00078 + 6 Stretch 2 11 1.49754 -0.00030 + 7 Stretch 3 5 1.40216 -0.00031 + 8 Stretch 3 7 1.09864 -0.00008 + 9 Stretch 4 6 1.40216 -0.00031 + 10 Stretch 4 8 1.09864 -0.00008 + 11 Stretch 5 9 1.09759 0.00058 + 12 Stretch 6 10 1.09759 0.00058 + 13 Stretch 11 13 1.10042 -0.00057 + 14 Stretch 11 15 1.34427 0.00004 + 15 Stretch 12 14 1.10042 -0.00057 + 16 Stretch 12 16 1.34427 0.00004 + 17 Stretch 15 17 1.09598 0.00000 + 18 Stretch 15 19 1.09622 -0.00045 + 19 Stretch 16 18 1.09598 0.00000 + 20 Stretch 16 20 1.09622 -0.00045 + 21 Bend 1 3 5 121.35706 0.20839 + 22 Bend 1 3 7 119.02322 -0.17787 + 23 Bend 1 6 4 120.85240 -0.02118 + 24 Bend 1 6 10 119.76069 0.33784 + 25 Bend 1 12 14 114.42831 -0.20122 + 26 Bend 1 12 16 126.60801 0.02809 + 27 Bend 2 4 6 121.35706 0.20839 + 28 Bend 2 4 8 119.02322 -0.17787 + 29 Bend 2 5 3 120.85240 -0.02118 + 30 Bend 2 5 9 119.76069 0.33784 + 31 Bend 2 11 13 114.42831 -0.20122 + 32 Bend 2 11 15 126.60801 0.02809 + 33 Bend 3 1 6 117.79055 -0.18721 + 34 Bend 3 1 12 119.16404 0.04248 + 35 Bend 3 5 9 119.38691 -0.31666 + 36 Bend 4 2 5 117.79055 -0.18721 + 37 Bend 4 2 11 119.16404 0.04248 + 38 Bend 4 6 10 119.38691 -0.31666 + 39 Bend 5 2 11 123.04542 0.14473 + 40 Bend 5 3 7 119.61972 -0.03052 + 41 Bend 6 1 12 123.04542 0.14473 + 42 Bend 6 4 8 119.61972 -0.03052 + 43 Bend 11 15 17 122.65784 0.17267 + 44 Bend 11 15 19 121.22189 -0.07304 + 45 Bend 12 16 18 122.65784 0.17267 + 46 Bend 12 16 20 121.22189 -0.07304 + 47 Bend 13 11 15 118.96367 0.17313 + 48 Bend 14 12 16 118.96367 0.17313 + 49 Bend 17 15 19 116.12028 -0.09963 + 50 Bend 18 16 20 116.12028 -0.09963 + 51 Torsion 1 3 5 2 0.00000 0.00000 + 52 Torsion 1 3 5 9 180.00000 0.00000 + 53 Torsion 1 6 4 2 0.00000 0.00000 + 54 Torsion 1 6 4 8 180.00000 0.00000 + 55 Torsion 1 12 16 18 0.00000 0.00000 + 56 Torsion 1 12 16 20 180.00000 0.00000 + 57 Torsion 2 4 6 10 180.00000 0.00000 + 58 Torsion 2 5 3 7 180.00000 0.00000 + 59 Torsion 2 11 15 17 0.00000 0.00000 + 60 Torsion 2 11 15 19 180.00000 0.00000 + 61 Torsion 3 1 6 4 0.00000 0.00000 + 62 Torsion 3 1 6 10 180.00000 0.00000 + 63 Torsion 3 1 12 14 0.00000 0.00000 + 64 Torsion 3 1 12 16 180.00000 0.00000 + 65 Torsion 3 5 2 4 0.00000 0.00000 + 66 Torsion 3 5 2 11 180.00000 0.00000 + 67 Torsion 4 2 5 9 180.00000 0.00000 + 68 Torsion 4 2 11 13 0.00000 0.00000 + 69 Torsion 4 2 11 15 180.00000 0.00000 + 70 Torsion 4 6 1 12 180.00000 0.00000 + 71 Torsion 5 2 4 6 -0.00000 0.00000 + 72 Torsion 5 2 4 8 180.00000 0.00000 + 73 Torsion 5 2 11 13 180.00000 0.00000 + 74 Torsion 5 2 11 15 0.00000 0.00000 + 75 Torsion 5 3 1 6 0.00000 0.00000 + 76 Torsion 5 3 1 12 180.00000 0.00000 + 77 Torsion 6 1 3 7 180.00000 0.00000 + 78 Torsion 6 1 12 14 180.00000 0.00000 + 79 Torsion 6 1 12 16 0.00000 0.00000 + 80 Torsion 6 4 2 11 180.00000 0.00000 + 81 Torsion 7 3 1 12 -0.00000 0.00000 + 82 Torsion 7 3 5 9 0.00000 0.00000 + 83 Torsion 8 4 2 11 -0.00000 0.00000 + 84 Torsion 8 4 6 10 0.00000 0.00000 + 85 Torsion 9 5 2 11 0.00000 0.00000 + 86 Torsion 10 6 1 12 0.00000 0.00000 + 87 Torsion 13 11 15 17 180.00000 0.00000 + 88 Torsion 13 11 15 19 -0.00000 0.00000 + 89 Torsion 14 12 16 18 180.00000 0.00000 + 90 Torsion 14 12 16 20 -0.00000 0.00000 + + ============================================================================== + internuclear distances + ------------------------------------------------------------------------------ + center one | center two | atomic units | angstroms + ------------------------------------------------------------------------------ + 3 C | 1 C | 2.68803 | 1.42245 + 4 C | 2 C | 2.68803 | 1.42245 + 5 C | 2 C | 2.68566 | 1.42119 + 5 C | 3 C | 2.64970 | 1.40216 + 6 C | 1 C | 2.68566 | 1.42119 + 6 C | 4 C | 2.64970 | 1.40216 + 7 H | 3 C | 2.07613 | 1.09864 + 8 H | 4 C | 2.07613 | 1.09864 + 9 H | 5 C | 2.07415 | 1.09759 + 10 H | 6 C | 2.07415 | 1.09759 + 11 C | 2 C | 2.82995 | 1.49754 + 12 C | 1 C | 2.82995 | 1.49754 + 13 H | 11 C | 2.07949 | 1.10042 + 14 H | 12 C | 2.07949 | 1.10042 + 15 C | 11 C | 2.54031 | 1.34427 + 16 C | 12 C | 2.54031 | 1.34427 + 17 H | 15 C | 2.07110 | 1.09598 + 18 H | 16 C | 2.07110 | 1.09598 + 19 H | 15 C | 2.07156 | 1.09622 + 20 H | 16 C | 2.07156 | 1.09622 + ------------------------------------------------------------------------------ + number of included internuclear distances: 20 + ============================================================================== + + + + ============================================================================== + internuclear angles + ------------------------------------------------------------------------------ + center 1 | center 2 | center 3 | degrees + ------------------------------------------------------------------------------ + 3 C | 1 C | 6 C | 117.79 + 3 C | 1 C | 12 C | 119.16 + 6 C | 1 C | 12 C | 123.05 + 4 C | 2 C | 5 C | 117.79 + 4 C | 2 C | 11 C | 119.16 + 5 C | 2 C | 11 C | 123.05 + 1 C | 3 C | 5 C | 121.36 + 1 C | 3 C | 7 H | 119.02 + 5 C | 3 C | 7 H | 119.62 + 2 C | 4 C | 6 C | 121.36 + 2 C | 4 C | 8 H | 119.02 + 6 C | 4 C | 8 H | 119.62 + 2 C | 5 C | 3 C | 120.85 + 2 C | 5 C | 9 H | 119.76 + 3 C | 5 C | 9 H | 119.39 + 1 C | 6 C | 4 C | 120.85 + 1 C | 6 C | 10 H | 119.76 + 4 C | 6 C | 10 H | 119.39 + 2 C | 11 C | 13 H | 114.43 + 2 C | 11 C | 15 C | 126.61 + 13 H | 11 C | 15 C | 118.96 + 1 C | 12 C | 14 H | 114.43 + 1 C | 12 C | 16 C | 126.61 + 14 H | 12 C | 16 C | 118.96 + 11 C | 15 C | 17 H | 122.66 + 11 C | 15 C | 19 H | 121.22 + 17 H | 15 C | 19 H | 116.12 + 12 C | 16 C | 18 H | 122.66 + 12 C | 16 C | 20 H | 121.22 + 18 H | 16 C | 20 H | 116.12 + ------------------------------------------------------------------------------ + number of included internuclear angles: 30 + ============================================================================== + + + + + Task times cpu: 52.7s wall: 55.3s + Summary of allocated global arrays +----------------------------------- + No active global arrays + + + + GA Statistics for process 0 + ------------------------------ + + create destroy get put acc scatter gather read&inc +calls: 753 753 4.38e+05 1.83e+04 2.70e+05 0 0 3.17e+04 +number of processes/call 1.00e+00 1.00e+00 1.00e+00 0.00e+00 0.00e+00 +bytes total: 8.69e+07 1.86e+07 3.17e+07 0.00e+00 0.00e+00 2.54e+05 +bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 1123200 bytes +MA_summarize_allocated_blocks: starting scan ... +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +MA usage statistics: + + allocation statistics: + heap stack + ---- ----- + current number of blocks 0 0 + maximum number of blocks 25 54 + current total bytes 0 0 + maximum total bytes 17363824 22516376 + maximum total K-bytes 17364 22517 + maximum total M-bytes 18 23 + + + NWChem Input Module + ------------------- + + + + + + CITATION + -------- + Please cite the following reference when publishing + results obtained with NWChem: + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + + AUTHORS + ------- + E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, + J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, + S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, + F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, + P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, + D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, + A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, + A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, + H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, + K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, + H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, + A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, + R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, + K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, + A. T. Wong, Z. Zhang. + + Total times cpu: 52.8s wall: 57.2s diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_hf.nw b/data/NWChem/basicNWChem7.0/dvb_sp_hf.nw new file mode 100644 index 000000000..7ccd194a4 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_sp_hf.nw @@ -0,0 +1,39 @@ + start dvb + title "Divinylbenzene in STO-3G basis set" + + geometry units angstroms + C -1.4152533224 0.2302217854 0.0000000000 + C 1.4152533224 -0.2302217854 0.0000000000 + C -0.4951331558 1.3144608674 0.0000000000 + C 0.4951331558 -1.3144608674 0.0000000000 + C 0.8894090436 1.0909493743 0.0000000000 + C -0.8894090436 -1.0909493743 0.0000000000 + H -0.8795511985 2.3437343748 0.0000000000 + H 0.8795511985 -2.3437343748 0.0000000000 + H 1.5779041557 1.9450061275 0.0000000000 + H -1.5779041557 -1.9450061275 0.0000000000 + C 2.8845844962 -0.5210893778 0.0000000000 + C -2.8845844962 0.5210893778 0.0000000000 + H 3.1403356810 -1.5919605685 0.0000000000 + H -3.1403356810 1.5919605685 0.0000000000 + C 3.8800428103 0.3822535424 0.0000000000 + C -3.8800428103 -0.3822535424 0.0000000000 + H 3.6946765858 1.4624389570 0.0000000000 + H -3.6946765858 -1.4624389570 0.0000000000 + H 4.9316453546 0.0711049543 0.0000000000 + H -4.9316453546 -0.0711049543 0.0000000000 + end + basis + * library sto-3g + end + scf + print "final vectors" "final vectors analysis" "ao overlap" + end + property + mulliken + dipole + quadrupole + octupole + end + task scf property + diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_hf.out b/data/NWChem/basicNWChem7.0/dvb_sp_hf.out new file mode 100644 index 000000000..e15d6ad45 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_sp_hf.out @@ -0,0 +1,3472 @@ + argument 1 = dvb_sp_hf.nw + + + + + Northwest Computational Chemistry Package (NWChem) 6.5 + ------------------------------------------------------ + + + Environmental Molecular Sciences Laboratory + Pacific Northwest National Laboratory + Richland, WA 99352 + + Copyright (c) 1994-2014 + Pacific Northwest National Laboratory + Battelle Memorial Institute + + NWChem is an open-source computational chemistry package + distributed under the terms of the + Educational Community License (ECL) 2.0 + A copy of the license is included with this distribution + in the LICENSE.TXT file + + ACKNOWLEDGMENT + -------------- + + This software and its documentation were developed at the + EMSL at Pacific Northwest National Laboratory, a multiprogram + national laboratory, operated for the U.S. Department of Energy + by Battelle under Contract Number DE-AC05-76RL01830. Support + for this work was provided by the Department of Energy Office + of Biological and Environmental Research, Office of Basic + Energy Sciences, and the Office of Advanced Scientific Computing. + + + Job information + --------------- + + hostname = boman + program = /usr/lib64/mpich/bin/nwchem_mpich + date = Wed Jan 21 23:10:22 2015 + + compiled = Sat_Dec_06_13:02:58_2014 + source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 + nwchem branch = 6.5 + nwchem revision = 26243 + ga revision = 10506 + input = dvb_sp_hf.nw + prefix = dvb. + data base = ./dvb.db + status = startup + nproc = 1 + time left = -1s + + + + Memory information + ------------------ + + heap = 13107194 doubles = 100.0 Mbytes + stack = 13107199 doubles = 100.0 Mbytes + global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) + total = 52428793 doubles = 400.0 Mbytes + verify = yes + hardfail = no + + + Directory information + --------------------- + + 0 permanent = . + 0 scratch = . + + + + + NWChem Input Module + ------------------- + + + Divinylbenzene in STO-3G basis set + ---------------------------------- + + Scaling coordinates for geometry "geometry" by 1.889725989 + (inverse scale = 0.529177249) + + C2H symmetry detected + + ------ + auto-z + ------ + + + Geometry "geometry" -> "" + ------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.23680554 1.41416660 0.00000000 + 2 C 6.0000 -0.23680554 -1.41416660 0.00000000 + 3 C 6.0000 1.31675086 0.48901061 0.00000000 + 4 C 6.0000 -1.31675086 -0.48901061 0.00000000 + 5 C 6.0000 1.08679847 -0.89447642 0.00000000 + 6 C 6.0000 -1.08679847 0.89447642 0.00000000 + 7 H 1.0000 2.34780221 0.86863451 0.00000000 + 8 H 1.0000 -2.34780221 -0.86863451 0.00000000 + 9 H 1.0000 1.93764188 -1.58693865 0.00000000 + 10 H 1.0000 -1.93764188 1.58693865 0.00000000 + 11 C 6.0000 -0.53450789 -2.88212824 0.00000000 + 12 C 6.0000 0.53450789 2.88212824 0.00000000 + 13 H 1.0000 -1.60655769 -3.13289308 0.00000000 + 14 H 1.0000 1.60655769 3.13289308 0.00000000 + 15 C 6.0000 0.36419263 -3.88177971 0.00000000 + 16 C 6.0000 -0.36419263 3.88177971 0.00000000 + 17 H 1.0000 1.44522900 -3.70144241 0.00000000 + 18 H 1.0000 -1.44522900 3.70144241 0.00000000 + 19 H 1.0000 0.04815351 -4.93192286 0.00000000 + 20 H 1.0000 -0.04815351 4.93192286 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 445.9370121674 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value + ----------- -------- ----- ----- ----- ----- ----- ---------- + 1 Stretch 1 3 1.42204 + 2 Stretch 1 6 1.42197 + 3 Stretch 1 12 1.49784 + 4 Stretch 2 4 1.42204 + 5 Stretch 2 5 1.42197 + 6 Stretch 2 11 1.49784 + 7 Stretch 3 5 1.40247 + 8 Stretch 3 7 1.09872 + 9 Stretch 4 6 1.40247 + 10 Stretch 4 8 1.09872 + 11 Stretch 5 9 1.09701 + 12 Stretch 6 10 1.09701 + 13 Stretch 11 13 1.10099 + 14 Stretch 11 15 1.34423 + 15 Stretch 12 14 1.10099 + 16 Stretch 12 16 1.34423 + 17 Stretch 15 17 1.09597 + 18 Stretch 15 19 1.09667 + 19 Stretch 16 18 1.09597 + 20 Stretch 16 20 1.09667 + 21 Bend 1 3 5 121.14867 + 22 Bend 1 3 7 119.20109 + 23 Bend 1 6 4 120.87358 + 24 Bend 1 6 10 119.42285 + 25 Bend 1 12 14 114.62953 + 26 Bend 1 12 16 126.57992 + 27 Bend 2 4 6 121.14867 + 28 Bend 2 4 8 119.20109 + 29 Bend 2 5 3 120.87358 + 30 Bend 2 5 9 119.42285 + 31 Bend 2 11 13 114.62953 + 32 Bend 2 11 15 126.57992 + 33 Bend 3 1 6 117.97776 + 34 Bend 3 1 12 119.12155 + 35 Bend 3 5 9 119.70357 + 36 Bend 4 2 5 117.97776 + 37 Bend 4 2 11 119.12155 + 38 Bend 4 6 10 119.70357 + 39 Bend 5 2 11 122.90069 + 40 Bend 5 3 7 119.65024 + 41 Bend 6 1 12 122.90069 + 42 Bend 6 4 8 119.65024 + 43 Bend 11 15 17 122.48517 + 44 Bend 11 15 19 121.29492 + 45 Bend 12 16 18 122.48517 + 46 Bend 12 16 20 121.29492 + 47 Bend 13 11 15 118.79054 + 48 Bend 14 12 16 118.79054 + 49 Bend 17 15 19 116.21990 + 50 Bend 18 16 20 116.21990 + 51 Torsion 1 3 5 2 0.00000 + 52 Torsion 1 3 5 9 180.00000 + 53 Torsion 1 6 4 2 0.00000 + 54 Torsion 1 6 4 8 180.00000 + 55 Torsion 1 12 16 18 0.00000 + 56 Torsion 1 12 16 20 180.00000 + 57 Torsion 2 4 6 10 180.00000 + 58 Torsion 2 5 3 7 180.00000 + 59 Torsion 2 11 15 17 0.00000 + 60 Torsion 2 11 15 19 180.00000 + 61 Torsion 3 1 6 4 0.00000 + 62 Torsion 3 1 6 10 180.00000 + 63 Torsion 3 1 12 14 0.00000 + 64 Torsion 3 1 12 16 180.00000 + 65 Torsion 3 5 2 4 0.00000 + 66 Torsion 3 5 2 11 180.00000 + 67 Torsion 4 2 5 9 180.00000 + 68 Torsion 4 2 11 13 0.00000 + 69 Torsion 4 2 11 15 180.00000 + 70 Torsion 4 6 1 12 180.00000 + 71 Torsion 5 2 4 6 -0.00000 + 72 Torsion 5 2 4 8 180.00000 + 73 Torsion 5 2 11 13 180.00000 + 74 Torsion 5 2 11 15 0.00000 + 75 Torsion 5 3 1 6 0.00000 + 76 Torsion 5 3 1 12 180.00000 + 77 Torsion 6 1 3 7 180.00000 + 78 Torsion 6 1 12 14 180.00000 + 79 Torsion 6 1 12 16 0.00000 + 80 Torsion 6 4 2 11 180.00000 + 81 Torsion 7 3 1 12 -0.00000 + 82 Torsion 7 3 5 9 0.00000 + 83 Torsion 8 4 2 11 -0.00000 + 84 Torsion 8 4 6 10 0.00000 + 85 Torsion 9 5 2 11 0.00000 + 86 Torsion 10 6 1 12 0.00000 + 87 Torsion 13 11 15 17 180.00000 + 88 Torsion 13 11 15 19 -0.00000 + 89 Torsion 14 12 16 18 180.00000 + 90 Torsion 14 12 16 20 -0.00000 + + + XYZ format geometry + ------------------- + 20 + geometry + C 0.23680554 1.41416660 0.00000000 + C -0.23680554 -1.41416660 0.00000000 + C 1.31675086 0.48901061 0.00000000 + C -1.31675086 -0.48901061 0.00000000 + C 1.08679847 -0.89447642 0.00000000 + C -1.08679847 0.89447642 0.00000000 + H 2.34780221 0.86863451 0.00000000 + H -2.34780221 -0.86863451 0.00000000 + H 1.93764188 -1.58693865 0.00000000 + H -1.93764188 1.58693865 0.00000000 + C -0.53450789 -2.88212824 0.00000000 + C 0.53450789 2.88212824 0.00000000 + H -1.60655769 -3.13289308 0.00000000 + H 1.60655769 3.13289308 0.00000000 + C 0.36419263 -3.88177971 0.00000000 + C -0.36419263 3.88177971 0.00000000 + H 1.44522900 -3.70144241 0.00000000 + H -1.44522900 3.70144241 0.00000000 + H 0.04815351 -4.93192286 0.00000000 + H -0.04815351 4.93192286 0.00000000 + + ============================================================================== + internuclear distances + ------------------------------------------------------------------------------ + center one | center two | atomic units | angstroms + ------------------------------------------------------------------------------ + 3 C | 1 C | 2.68726 | 1.42204 + 4 C | 2 C | 2.68726 | 1.42204 + 5 C | 2 C | 2.68714 | 1.42197 + 5 C | 3 C | 2.65028 | 1.40247 + 6 C | 1 C | 2.68714 | 1.42197 + 6 C | 4 C | 2.65028 | 1.40247 + 7 H | 3 C | 2.07628 | 1.09872 + 8 H | 4 C | 2.07628 | 1.09872 + 9 H | 5 C | 2.07305 | 1.09701 + 10 H | 6 C | 2.07305 | 1.09701 + 11 C | 2 C | 2.83052 | 1.49784 + 12 C | 1 C | 2.83052 | 1.49784 + 13 H | 11 C | 2.08056 | 1.10099 + 14 H | 12 C | 2.08056 | 1.10099 + 15 C | 11 C | 2.54023 | 1.34423 + 16 C | 12 C | 2.54023 | 1.34423 + 17 H | 15 C | 2.07109 | 1.09597 + 18 H | 16 C | 2.07109 | 1.09597 + 19 H | 15 C | 2.07240 | 1.09667 + 20 H | 16 C | 2.07240 | 1.09667 + ------------------------------------------------------------------------------ + number of included internuclear distances: 20 + ============================================================================== + + + + ============================================================================== + internuclear angles + ------------------------------------------------------------------------------ + center 1 | center 2 | center 3 | degrees + ------------------------------------------------------------------------------ + 3 C | 1 C | 6 C | 117.98 + 3 C | 1 C | 12 C | 119.12 + 6 C | 1 C | 12 C | 122.90 + 4 C | 2 C | 5 C | 117.98 + 4 C | 2 C | 11 C | 119.12 + 5 C | 2 C | 11 C | 122.90 + 1 C | 3 C | 5 C | 121.15 + 1 C | 3 C | 7 H | 119.20 + 5 C | 3 C | 7 H | 119.65 + 2 C | 4 C | 6 C | 121.15 + 2 C | 4 C | 8 H | 119.20 + 6 C | 4 C | 8 H | 119.65 + 2 C | 5 C | 3 C | 120.87 + 2 C | 5 C | 9 H | 119.42 + 3 C | 5 C | 9 H | 119.70 + 1 C | 6 C | 4 C | 120.87 + 1 C | 6 C | 10 H | 119.42 + 4 C | 6 C | 10 H | 119.70 + 2 C | 11 C | 13 H | 114.63 + 2 C | 11 C | 15 C | 126.58 + 13 H | 11 C | 15 C | 118.79 + 1 C | 12 C | 14 H | 114.63 + 1 C | 12 C | 16 C | 126.58 + 14 H | 12 C | 16 C | 118.79 + 11 C | 15 C | 17 H | 122.49 + 11 C | 15 C | 19 H | 121.29 + 17 H | 15 C | 19 H | 116.22 + 12 C | 16 C | 18 H | 122.49 + 12 C | 16 C | 20 H | 121.29 + 18 H | 16 C | 20 H | 116.22 + ------------------------------------------------------------------------------ + number of included internuclear angles: 30 + ============================================================================== + + + + library name resolved from: environment + library file name is: + + + + Summary of "ao basis" -> "" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + * sto-3g on all atoms + + + NWChem Property Module + ---------------------- + + + Divinylbenzene in STO-3G basis set + + Basis "ao basis" -> "ao basis" (cartesian) + ----- + C (Carbon) + ---------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 7.16168370E+01 0.154329 + 1 S 1.30450960E+01 0.535328 + 1 S 3.53051220E+00 0.444635 + + 2 S 2.94124940E+00 -0.099967 + 2 S 6.83483100E-01 0.399513 + 2 S 2.22289900E-01 0.700115 + + 3 P 2.94124940E+00 0.155916 + 3 P 6.83483100E-01 0.607684 + 3 P 2.22289900E-01 0.391957 + + H (Hydrogen) + ------------ + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.42525091E+00 0.154329 + 1 S 6.23913730E-01 0.535328 + 1 S 1.68855400E-01 0.444635 + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + NWChem SCF Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + ao basis = "ao basis" + functions = 60 + atoms = 20 + closed shells = 35 + open shells = 0 + charge = 0.00 + wavefunction = RHF + input vectors = atomic + output vectors = ./dvb.movecs + use symmetry = T + symmetry adapt = T + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + + global array: Temp Over[1:60,1:60], handle: -996 + + 1 2 3 4 5 6 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 1.00000 0.24836 -0.00000 -0.00000 0.00000 0.00000 + 2 0.24836 1.00000 0.00000 -0.00000 0.00000 0.00030 + 3 -0.00000 0.00000 1.00000 0.00000 0.00000 -0.00014 + 4 -0.00000 -0.00000 0.00000 1.00000 0.00000 -0.00081 + 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 6 0.00000 0.00030 -0.00014 -0.00081 0.00000 1.00000 + 7 0.00030 0.02187 -0.00590 -0.03524 0.00000 0.24836 + 8 0.00014 0.00590 0.00661 -0.01021 0.00000 0.00000 + 9 0.00081 0.03524 -0.01021 -0.05268 0.00000 0.00000 + 10 0.00000 0.00000 0.00000 0.00000 0.00832 0.00000 + 11 0.00000 0.03557 0.04482 -0.03839 0.00000 0.00000 + 12 0.03557 0.35371 0.28849 -0.24714 0.00000 0.00159 + 13 -0.04482 -0.28849 -0.10190 0.26261 0.00000 -0.00235 + 14 0.03839 0.24714 0.26261 -0.02032 0.00000 -0.00288 + 15 0.00000 0.00000 0.00000 0.00000 0.20465 0.00000 + 16 0.00000 0.00159 -0.00235 -0.00288 0.00000 0.00000 + 17 0.00159 0.05619 -0.05280 -0.06468 0.00000 0.03557 + 18 0.00235 0.05280 -0.03131 -0.06691 0.00000 0.04482 + 19 0.00288 0.06468 -0.06691 -0.05866 0.00000 -0.03839 + 20 0.00000 0.00000 0.00000 0.00000 0.02331 0.00000 + 21 0.00000 0.00157 0.00127 -0.00344 0.00000 0.00000 + 22 0.00157 0.05578 0.02866 -0.07785 0.00000 0.03558 + 23 -0.00127 -0.02866 0.00691 0.04403 0.00000 -0.05494 + 24 0.00344 0.07785 0.04403 -0.09646 0.00000 -0.02157 + 25 0.00000 0.00000 0.00000 0.00000 0.02312 0.00000 + 26 0.00000 0.03558 -0.05494 -0.02157 0.00000 0.00000 + 27 0.03558 0.35374 -0.35362 -0.13884 0.00000 0.00157 + 28 0.05494 0.35362 -0.25587 -0.18083 0.00000 0.00127 + 29 0.02157 0.13884 -0.18083 0.13368 0.00000 -0.00344 + 30 0.00000 0.00000 0.00000 0.00000 0.20467 0.00000 + 31 0.00509 0.09301 0.11685 -0.03020 0.00000 0.00008 + 32 0.00008 0.00590 -0.00738 -0.00652 0.00000 0.00509 + 33 0.00008 0.00588 0.00484 -0.00854 0.00000 0.00508 + 34 0.00508 0.09284 -0.12012 0.00954 0.00000 0.00008 + 35 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 36 0.00000 0.00026 -0.00010 -0.00057 0.00000 0.02955 + 37 0.00000 0.00010 0.00004 -0.00022 0.00000 0.00980 + 38 0.00000 0.00057 -0.00022 -0.00117 0.00000 0.04831 + 39 0.00000 0.00000 0.00000 0.00000 0.00008 0.00000 + 40 0.00000 0.02955 0.00980 0.04831 0.00000 0.00000 + 41 0.02955 0.31761 0.06996 0.34497 0.00000 0.00000 + 42 -0.00980 -0.06996 0.15824 -0.09697 0.00000 -0.00000 + 43 -0.04831 -0.34497 -0.09697 -0.30023 0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.17791 0.00000 + 45 0.00000 0.00008 -0.00007 -0.00016 0.00000 0.00487 + 46 0.00487 0.09007 0.07314 0.09177 0.00000 0.00000 + 47 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 48 0.00000 0.00001 0.00000 -0.00002 0.00000 0.00116 + 49 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00066 + 50 0.00000 0.00002 0.00000 -0.00005 0.00000 0.00272 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00116 -0.00066 0.00272 0.00000 0.00000 + 53 0.00116 0.04688 -0.01682 0.06907 0.00000 0.00000 + 54 0.00066 0.01682 0.01248 0.02713 0.00000 0.00000 + 55 -0.00272 -0.06907 0.02713 -0.09229 0.00000 -0.00000 + 56 0.00000 0.00000 0.00000 0.00000 0.01908 0.00000 + 57 0.00000 0.00002 0.00001 -0.00005 0.00000 0.00074 + 58 0.00074 0.02468 -0.02186 0.02972 0.00000 0.00000 + 59 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00006 + 60 0.00006 0.00481 -0.00066 0.00811 0.00000 0.00000 + + 7 8 9 10 11 12 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00030 0.00014 0.00081 0.00000 0.00000 0.03557 + 2 0.02187 0.00590 0.03524 0.00000 0.03557 0.35371 + 3 -0.00590 0.00661 -0.01021 0.00000 0.04482 0.28849 + 4 -0.03524 -0.01021 -0.05268 0.00000 -0.03839 -0.24714 + 5 0.00000 0.00000 0.00000 0.00832 0.00000 0.00000 + 6 0.24836 0.00000 0.00000 0.00000 0.00000 0.00159 + 7 1.00000 -0.00000 0.00000 0.00000 0.00159 0.05619 + 8 -0.00000 1.00000 0.00000 0.00000 0.00235 0.05280 + 9 0.00000 0.00000 1.00000 0.00000 0.00288 0.06468 + 10 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 + 11 0.00159 0.00235 0.00288 0.00000 1.00000 0.24836 + 12 0.05619 0.05280 0.06468 0.00000 0.24836 1.00000 + 13 -0.05280 -0.03131 -0.06691 0.00000 0.00000 0.00000 + 14 -0.06468 -0.06691 -0.05866 0.00000 -0.00000 -0.00000 + 15 0.00000 0.00000 0.00000 0.02331 0.00000 0.00000 + 16 0.03557 -0.04482 0.03839 0.00000 0.00000 0.00039 + 17 0.35371 -0.28849 0.24714 0.00000 0.00039 0.02519 + 18 0.28849 -0.10190 0.26261 0.00000 0.00097 0.03810 + 19 -0.24714 0.26261 -0.02032 0.00000 0.00036 0.01415 + 20 0.00000 0.00000 0.00000 0.20465 0.00000 0.00000 + 21 0.03558 0.05494 0.02157 0.00000 0.00000 0.03729 + 22 0.35374 0.35362 0.13884 0.00000 0.03729 0.36341 + 23 -0.35362 -0.25587 -0.18083 0.00000 0.01014 0.06345 + 24 -0.13884 -0.18083 0.13368 0.00000 0.06099 0.38176 + 25 0.00000 0.00000 0.00000 0.20467 0.00000 0.00000 + 26 0.00157 -0.00127 0.00344 0.00000 0.00000 0.00170 + 27 0.05578 -0.02866 0.07785 0.00000 0.00170 0.05856 + 28 0.02866 0.00691 0.04403 0.00000 0.00390 0.08539 + 29 -0.07785 0.04403 -0.09646 0.00000 -0.00066 -0.01441 + 30 0.00000 0.00000 0.00000 0.02312 0.00000 0.00000 + 31 0.00590 0.00738 0.00652 0.00000 0.06102 0.48575 + 32 0.09301 -0.11685 0.03020 0.00000 0.00001 0.00175 + 33 0.09284 0.12012 -0.00954 0.00000 0.00527 0.09535 + 34 0.00588 -0.00484 0.00854 0.00000 0.00008 0.00611 + 35 0.02955 -0.00980 -0.04831 0.00000 0.00000 0.00000 + 36 0.31761 -0.06996 -0.34497 0.00000 0.00000 0.00144 + 37 0.06996 0.15824 -0.09697 0.00000 0.00000 0.00139 + 38 0.34497 -0.09697 -0.30023 0.00000 0.00001 0.00253 + 39 0.00000 0.00000 0.00000 0.17791 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.00000 0.00000 0.00126 + 41 0.00026 0.00010 0.00057 0.00000 0.00126 0.04921 + 42 -0.00010 0.00004 -0.00022 0.00000 0.00094 0.02306 + 43 -0.00057 -0.00022 -0.00117 0.00000 -0.00287 -0.07056 + 44 0.00000 0.00000 0.00000 0.00008 0.00000 0.00000 + 45 0.09007 -0.07314 -0.09177 0.00000 0.00000 0.00019 + 46 0.00008 0.00007 0.00016 0.00000 0.00132 0.03624 + 47 0.00116 0.00066 -0.00272 0.00000 0.00000 0.00000 + 48 0.04688 0.01682 -0.06907 0.00000 0.00000 0.00018 + 49 -0.01682 0.01248 0.02713 0.00000 0.00000 0.00009 + 50 0.06907 0.02713 -0.09229 0.00000 0.00000 0.00039 + 51 0.00000 0.00000 0.00000 0.01908 0.00000 0.00000 + 52 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 53 0.00001 -0.00000 0.00002 0.00000 0.00000 0.00174 + 54 0.00000 0.00000 0.00000 0.00000 0.00000 0.00152 + 55 -0.00002 0.00000 -0.00005 0.00000 -0.00001 -0.00307 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.02468 0.02186 -0.02972 0.00000 0.00000 0.00078 + 58 0.00002 -0.00001 0.00005 0.00000 0.00000 0.00068 + 59 0.00481 0.00066 -0.00811 0.00000 0.00000 0.00001 + 60 0.00000 0.00000 0.00000 0.00000 0.00000 0.00019 + + 13 14 15 16 17 18 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.04482 0.03839 0.00000 0.00000 0.00159 0.00235 + 2 -0.28849 0.24714 0.00000 0.00159 0.05619 0.05280 + 3 -0.10190 0.26261 0.00000 -0.00235 -0.05280 -0.03131 + 4 0.26261 -0.02032 0.00000 -0.00288 -0.06468 -0.06691 + 5 0.00000 0.00000 0.20465 0.00000 0.00000 0.00000 + 6 -0.00235 -0.00288 0.00000 0.00000 0.03557 0.04482 + 7 -0.05280 -0.06468 0.00000 0.03557 0.35371 0.28849 + 8 -0.03131 -0.06691 0.00000 -0.04482 -0.28849 -0.10190 + 9 -0.06691 -0.05866 0.00000 0.03839 0.24714 0.26261 + 10 0.00000 0.00000 0.02331 0.00000 0.00000 0.00000 + 11 0.00000 -0.00000 0.00000 0.00000 0.00039 0.00097 + 12 0.00000 -0.00000 0.00000 0.00039 0.02519 0.03810 + 13 1.00000 0.00000 0.00000 -0.00097 -0.03810 -0.05238 + 14 0.00000 1.00000 0.00000 -0.00036 -0.01415 -0.02305 + 15 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 16 -0.00097 -0.00036 0.00000 1.00000 0.24836 -0.00000 + 17 -0.03810 -0.01415 0.00000 0.24836 1.00000 -0.00000 + 18 -0.05238 -0.02305 0.00000 -0.00000 -0.00000 1.00000 + 19 -0.02305 0.00113 0.00000 0.00000 0.00000 0.00000 + 20 0.00000 0.00000 0.00969 0.00000 0.00000 0.00000 + 21 -0.01014 -0.06099 0.00000 0.00000 0.00170 0.00390 + 22 -0.06345 -0.38176 0.00000 0.00170 0.05856 0.08539 + 23 0.19756 -0.08733 0.00000 -0.00390 -0.08539 -0.11288 + 24 -0.08733 -0.31332 0.00000 0.00066 0.01441 0.02316 + 25 0.00000 0.00000 0.21207 0.00000 0.00000 0.00000 + 26 -0.00390 0.00066 0.00000 0.00000 0.03729 0.01014 + 27 -0.08539 0.01441 0.00000 0.03729 0.36341 0.06345 + 28 -0.11288 0.02316 0.00000 -0.01014 -0.06345 0.19756 + 29 0.02316 0.02049 0.00000 -0.06099 -0.38176 -0.08733 + 30 0.00000 0.00000 0.02440 0.00000 0.00000 0.00000 + 31 0.43567 0.16041 0.00000 0.00001 0.00175 0.00297 + 32 -0.00297 -0.00110 0.00000 0.06102 0.48575 -0.43567 + 33 0.03534 -0.11815 0.00000 0.00008 0.00611 0.00963 + 34 -0.00963 0.00325 0.00000 0.00527 0.09535 -0.03534 + 35 -0.00000 -0.00001 0.00000 0.00000 0.00126 0.00094 + 36 -0.00139 -0.00253 0.00000 0.00126 0.04921 0.02306 + 37 -0.00089 -0.00250 0.00000 -0.00094 -0.02306 0.00828 + 38 -0.00250 -0.00407 0.00000 0.00287 0.07056 0.03624 + 39 0.00000 0.00000 0.00048 0.00000 0.00000 0.00000 + 40 -0.00094 0.00287 0.00000 0.00000 0.00000 0.00000 + 41 -0.02306 0.07056 0.00000 0.00000 0.00144 0.00139 + 42 0.00828 0.03624 0.00000 -0.00000 -0.00139 -0.00089 + 43 0.03624 -0.09075 0.00000 -0.00001 -0.00253 -0.00250 + 44 0.00000 0.00000 0.02013 0.00000 0.00000 0.00000 + 45 -0.00024 -0.00030 0.00000 0.00132 0.03624 -0.00570 + 46 0.00570 0.05196 0.00000 0.00000 0.00019 0.00024 + 47 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 48 -0.00009 -0.00039 0.00000 0.00000 0.00174 0.00152 + 49 0.00002 -0.00019 0.00000 -0.00000 -0.00152 -0.00079 + 50 -0.00019 -0.00082 0.00000 0.00001 0.00307 0.00277 + 51 0.00000 0.00000 0.00006 0.00000 0.00000 0.00000 + 52 -0.00000 0.00001 0.00000 0.00000 0.00000 0.00000 + 53 -0.00152 0.00307 0.00000 0.00000 0.00018 0.00009 + 54 -0.00079 0.00277 0.00000 -0.00000 -0.00009 0.00002 + 55 0.00277 -0.00501 0.00000 -0.00000 -0.00039 -0.00019 + 56 0.00000 0.00000 0.00058 0.00000 0.00000 0.00000 + 57 0.00005 -0.00148 0.00000 0.00000 0.00068 0.00085 + 58 -0.00085 0.00099 0.00000 0.00000 0.00078 -0.00005 + 59 -0.00000 -0.00002 0.00000 0.00000 0.00019 0.00012 + 60 -0.00012 0.00038 0.00000 0.00000 0.00001 0.00000 + + 19 20 21 22 23 24 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00288 0.00000 0.00000 0.00157 -0.00127 0.00344 + 2 0.06468 0.00000 0.00157 0.05578 -0.02866 0.07785 + 3 -0.06691 0.00000 0.00127 0.02866 0.00691 0.04403 + 4 -0.05866 0.00000 -0.00344 -0.07785 0.04403 -0.09646 + 5 0.00000 0.02331 0.00000 0.00000 0.00000 0.00000 + 6 -0.03839 0.00000 0.00000 0.03558 -0.05494 -0.02157 + 7 -0.24714 0.00000 0.03558 0.35374 -0.35362 -0.13884 + 8 0.26261 0.00000 0.05494 0.35362 -0.25587 -0.18083 + 9 -0.02032 0.00000 0.02157 0.13884 -0.18083 0.13368 + 10 0.00000 0.20465 0.00000 0.00000 0.00000 0.00000 + 11 0.00036 0.00000 0.00000 0.03729 0.01014 0.06099 + 12 0.01415 0.00000 0.03729 0.36341 0.06345 0.38176 + 13 -0.02305 0.00000 -0.01014 -0.06345 0.19756 -0.08733 + 14 0.00113 0.00000 -0.06099 -0.38176 -0.08733 -0.31332 + 15 0.00000 0.00969 0.00000 0.00000 0.00000 0.00000 + 16 0.00000 0.00000 0.00000 0.00170 -0.00390 0.00066 + 17 0.00000 0.00000 0.00170 0.05856 -0.08539 0.01441 + 18 0.00000 0.00000 0.00390 0.08539 -0.11288 0.02316 + 19 1.00000 0.00000 -0.00066 -0.01441 0.02316 0.02049 + 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 21 -0.00066 0.00000 1.00000 0.24836 -0.00000 -0.00000 + 22 -0.01441 0.00000 0.24836 1.00000 0.00000 -0.00000 + 23 0.02316 0.00000 -0.00000 0.00000 1.00000 0.00000 + 24 0.02049 0.00000 -0.00000 -0.00000 0.00000 1.00000 + 25 0.00000 0.02440 0.00000 0.00000 0.00000 0.00000 + 26 0.06099 0.00000 0.00000 0.00038 -0.00078 0.00065 + 27 0.38176 0.00000 0.00038 0.02484 -0.03098 0.02550 + 28 -0.08733 0.00000 0.00078 0.03098 -0.03207 0.03425 + 29 -0.31332 0.00000 -0.00065 -0.02550 0.03425 -0.01864 + 30 0.00000 0.21207 0.00000 0.00000 0.00000 0.00000 + 31 0.00110 0.00000 0.00526 0.09520 0.07165 0.10018 + 32 -0.16041 0.00000 0.00008 0.00611 -0.01016 0.00008 + 33 -0.00325 0.00000 0.06126 0.48673 0.36054 -0.29343 + 34 0.11815 0.00000 0.00001 0.00173 -0.00242 0.00199 + 35 -0.00287 0.00000 0.00000 0.00105 -0.00162 -0.00199 + 36 -0.07056 0.00000 0.00105 0.04432 -0.04274 -0.05240 + 37 0.03624 0.00000 0.00162 0.04274 -0.02709 -0.05521 + 38 -0.09075 0.00000 0.00199 0.05240 -0.05521 -0.04974 + 39 0.00000 0.02013 0.00000 0.00000 0.00000 0.00000 + 40 0.00001 0.00000 0.00000 0.00000 -0.00000 0.00001 + 41 0.00253 0.00000 0.00000 0.00158 -0.00045 0.00311 + 42 -0.00250 0.00000 0.00000 0.00045 0.00039 0.00092 + 43 -0.00407 0.00000 -0.00001 -0.00311 0.00092 -0.00575 + 44 0.00000 0.00048 0.00000 0.00000 0.00000 0.00000 + 45 -0.05196 0.00000 0.00006 0.00515 -0.00667 -0.00554 + 46 0.00030 0.00000 0.00001 0.00114 0.00027 0.00210 + 47 -0.00001 0.00000 0.00000 0.00012 -0.00008 -0.00034 + 48 -0.00307 0.00000 0.00012 0.01305 -0.00524 -0.02165 + 49 0.00277 0.00000 0.00008 0.00524 0.00255 -0.00924 + 50 -0.00501 0.00000 0.00034 0.02165 -0.00924 -0.03340 + 51 0.00000 0.00058 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 53 0.00039 0.00000 0.00000 0.00002 -0.00002 0.00006 + 54 -0.00019 0.00000 0.00000 0.00002 -0.00001 0.00004 + 55 -0.00082 0.00000 -0.00000 -0.00006 0.00004 -0.00014 + 56 0.00000 0.00006 0.00000 0.00000 0.00000 0.00000 + 57 -0.00099 0.00000 0.00076 0.02519 0.00476 -0.03729 + 58 0.00148 0.00000 0.00000 0.00002 -0.00003 0.00005 + 59 -0.00038 0.00000 0.00000 0.00083 -0.00039 -0.00153 + 60 0.00002 0.00000 0.00000 0.00000 -0.00000 0.00000 + + 25 26 27 28 29 30 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 0.00000 0.03558 0.05494 0.02157 0.00000 + 2 0.00000 0.03558 0.35374 0.35362 0.13884 0.00000 + 3 0.00000 -0.05494 -0.35362 -0.25587 -0.18083 0.00000 + 4 0.00000 -0.02157 -0.13884 -0.18083 0.13368 0.00000 + 5 0.02312 0.00000 0.00000 0.00000 0.00000 0.20467 + 6 0.00000 0.00000 0.00157 0.00127 -0.00344 0.00000 + 7 0.00000 0.00157 0.05578 0.02866 -0.07785 0.00000 + 8 0.00000 -0.00127 -0.02866 0.00691 0.04403 0.00000 + 9 0.00000 0.00344 0.07785 0.04403 -0.09646 0.00000 + 10 0.20467 0.00000 0.00000 0.00000 0.00000 0.02312 + 11 0.00000 0.00000 0.00170 0.00390 -0.00066 0.00000 + 12 0.00000 0.00170 0.05856 0.08539 -0.01441 0.00000 + 13 0.00000 -0.00390 -0.08539 -0.11288 0.02316 0.00000 + 14 0.00000 0.00066 0.01441 0.02316 0.02049 0.00000 + 15 0.21207 0.00000 0.00000 0.00000 0.00000 0.02440 + 16 0.00000 0.00000 0.03729 -0.01014 -0.06099 0.00000 + 17 0.00000 0.03729 0.36341 -0.06345 -0.38176 0.00000 + 18 0.00000 0.01014 0.06345 0.19756 -0.08733 0.00000 + 19 0.00000 0.06099 0.38176 -0.08733 -0.31332 0.00000 + 20 0.02440 0.00000 0.00000 0.00000 0.00000 0.21207 + 21 0.00000 0.00000 0.00038 0.00078 -0.00065 0.00000 + 22 0.00000 0.00038 0.02484 0.03098 -0.02550 0.00000 + 23 0.00000 -0.00078 -0.03098 -0.03207 0.03425 0.00000 + 24 0.00000 0.00065 0.02550 0.03425 -0.01864 0.00000 + 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.00954 + 26 0.00000 1.00000 0.24836 0.00000 0.00000 0.00000 + 27 0.00000 0.24836 1.00000 0.00000 0.00000 0.00000 + 28 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 + 29 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 30 0.00954 0.00000 0.00000 0.00000 0.00000 1.00000 + 31 0.00000 0.00008 0.00611 0.01016 -0.00008 0.00000 + 32 0.00000 0.00526 0.09520 -0.07165 -0.10018 0.00000 + 33 0.00000 0.00001 0.00173 0.00242 -0.00199 0.00000 + 34 0.00000 0.06126 0.48673 -0.36054 0.29343 0.00000 + 35 0.00000 0.00000 0.00000 0.00000 -0.00001 0.00000 + 36 0.00000 0.00000 0.00158 0.00045 -0.00311 0.00000 + 37 0.00000 -0.00000 -0.00045 0.00039 0.00092 0.00000 + 38 0.00000 0.00001 0.00311 0.00092 -0.00575 0.00000 + 39 0.01794 0.00000 0.00000 0.00000 0.00000 0.00053 + 40 0.00000 0.00000 0.00105 0.00162 0.00199 0.00000 + 41 0.00000 0.00105 0.04432 0.04274 0.05240 0.00000 + 42 0.00000 -0.00162 -0.04274 -0.02709 -0.05521 0.00000 + 43 0.00000 -0.00199 -0.05240 -0.05521 -0.04974 0.00000 + 44 0.00053 0.00000 0.00000 0.00000 0.00000 0.01794 + 45 0.00000 0.00001 0.00114 -0.00027 -0.00210 0.00000 + 46 0.00000 0.00006 0.00515 0.00667 0.00554 0.00000 + 47 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 48 0.00000 0.00000 0.00002 0.00002 -0.00006 0.00000 + 49 0.00000 -0.00000 -0.00002 -0.00001 0.00004 0.00000 + 50 0.00000 0.00000 0.00006 0.00004 -0.00014 0.00000 + 51 0.00478 0.00000 0.00000 0.00000 0.00000 0.00001 + 52 0.00000 0.00000 0.00012 0.00008 0.00034 0.00000 + 53 0.00000 0.00012 0.01305 0.00524 0.02165 0.00000 + 54 0.00000 -0.00008 -0.00524 0.00255 -0.00924 0.00000 + 55 0.00000 -0.00034 -0.02165 -0.00924 -0.03340 0.00000 + 56 0.00001 0.00000 0.00000 0.00000 0.00000 0.00478 + 57 0.00000 0.00000 0.00002 0.00003 -0.00005 0.00000 + 58 0.00000 0.00076 0.02519 -0.00476 0.03729 0.00000 + 59 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 60 0.00000 0.00000 0.00083 0.00039 0.00153 0.00000 + + 31 32 33 34 35 36 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00509 0.00008 0.00008 0.00508 0.00000 0.00000 + 2 0.09301 0.00590 0.00588 0.09284 0.00000 0.00026 + 3 0.11685 -0.00738 0.00484 -0.12012 -0.00000 -0.00010 + 4 -0.03020 -0.00652 -0.00854 0.00954 -0.00000 -0.00057 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 0.00008 0.00509 0.00508 0.00008 0.00000 0.02955 + 7 0.00590 0.09301 0.09284 0.00588 0.02955 0.31761 + 8 0.00738 -0.11685 0.12012 -0.00484 -0.00980 -0.06996 + 9 0.00652 0.03020 -0.00954 0.00854 -0.04831 -0.34497 + 10 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 11 0.06102 0.00001 0.00527 0.00008 0.00000 0.00000 + 12 0.48575 0.00175 0.09535 0.00611 0.00000 0.00144 + 13 0.43567 -0.00297 0.03534 -0.00963 -0.00000 -0.00139 + 14 0.16041 -0.00110 -0.11815 0.00325 -0.00001 -0.00253 + 15 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 16 0.00001 0.06102 0.00008 0.00527 0.00000 0.00126 + 17 0.00175 0.48575 0.00611 0.09535 0.00126 0.04921 + 18 0.00297 -0.43567 0.00963 -0.03534 0.00094 0.02306 + 19 0.00110 -0.16041 -0.00325 0.11815 -0.00287 -0.07056 + 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 21 0.00526 0.00008 0.06126 0.00001 0.00000 0.00105 + 22 0.09520 0.00611 0.48673 0.00173 0.00105 0.04432 + 23 0.07165 -0.01016 0.36054 -0.00242 -0.00162 -0.04274 + 24 0.10018 0.00008 -0.29343 0.00199 -0.00199 -0.05240 + 25 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 26 0.00008 0.00526 0.00001 0.06126 0.00000 0.00000 + 27 0.00611 0.09520 0.00173 0.48673 0.00000 0.00158 + 28 0.01016 -0.07165 0.00242 -0.36054 0.00000 0.00045 + 29 -0.00008 -0.10018 -0.00199 0.29343 -0.00001 -0.00311 + 30 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 31 1.00000 0.00011 0.05049 0.00071 0.00000 0.00015 + 32 0.00011 1.00000 0.00071 0.05049 0.00113 0.03262 + 33 0.05049 0.00071 1.00000 0.00010 0.00087 0.02741 + 34 0.00071 0.05049 0.00010 1.00000 0.00000 0.00017 + 35 0.00000 0.00113 0.00087 0.00000 1.00000 0.24836 + 36 0.00015 0.03262 0.02741 0.00017 0.24836 1.00000 + 37 0.00019 -0.03181 0.03596 -0.00011 -0.00000 -0.00000 + 38 0.00024 0.03532 0.01884 0.00034 -0.00000 -0.00000 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 0.00113 0.00000 0.00000 0.00087 0.00000 0.00000 + 41 0.03262 0.00015 0.00017 0.02741 0.00000 0.00000 + 42 0.03181 -0.00019 0.00011 -0.03596 -0.00000 -0.00000 + 43 -0.03532 -0.00024 -0.00034 -0.01884 -0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 0.00001 0.06153 0.00248 0.00024 0.06070 0.48445 + 46 0.06153 0.00001 0.00024 0.00248 0.00000 0.00000 + 47 0.00000 0.00001 0.00089 0.00000 0.00000 0.04284 + 48 0.00004 0.00116 0.02792 0.00000 0.04284 0.39315 + 49 0.00003 -0.00144 0.02334 -0.00000 -0.04749 -0.27266 + 50 0.00007 0.00160 0.03404 0.00000 0.05283 0.30328 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00001 0.00000 0.00000 0.00089 0.00000 0.00000 + 53 0.00116 0.00004 0.00000 0.02792 0.00000 0.00000 + 54 0.00144 -0.00003 0.00000 -0.02334 -0.00000 -0.00000 + 55 -0.00160 -0.00007 -0.00000 -0.03404 -0.00000 -0.00000 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.00030 0.00024 0.08944 0.00000 0.00561 0.09966 + 58 0.00024 0.00030 0.00000 0.08944 0.00000 0.00000 + 59 0.00000 0.00025 0.00264 0.00000 0.00577 0.10177 + 60 0.00025 0.00000 0.00000 0.00264 0.00000 0.00000 + + 37 38 39 40 41 42 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 0.00000 0.00000 0.00000 0.02955 -0.00980 + 2 0.00010 0.00057 0.00000 0.02955 0.31761 -0.06996 + 3 0.00004 -0.00022 0.00000 0.00980 0.06996 0.15824 + 4 -0.00022 -0.00117 0.00000 0.04831 0.34497 -0.09697 + 5 0.00000 0.00000 0.00008 0.00000 0.00000 0.00000 + 6 0.00980 0.04831 0.00000 0.00000 0.00000 -0.00000 + 7 0.06996 0.34497 0.00000 0.00000 0.00026 -0.00010 + 8 0.15824 -0.09697 0.00000 0.00000 0.00010 0.00004 + 9 -0.09697 -0.30023 0.00000 0.00000 0.00057 -0.00022 + 10 0.00000 0.00000 0.17791 0.00000 0.00000 0.00000 + 11 0.00000 0.00001 0.00000 0.00000 0.00126 0.00094 + 12 0.00139 0.00253 0.00000 0.00126 0.04921 0.02306 + 13 -0.00089 -0.00250 0.00000 -0.00094 -0.02306 0.00828 + 14 -0.00250 -0.00407 0.00000 0.00287 0.07056 0.03624 + 15 0.00000 0.00000 0.00048 0.00000 0.00000 0.00000 + 16 -0.00094 0.00287 0.00000 0.00000 0.00000 -0.00000 + 17 -0.02306 0.07056 0.00000 0.00000 0.00144 -0.00139 + 18 0.00828 0.03624 0.00000 0.00000 0.00139 -0.00089 + 19 0.03624 -0.09075 0.00000 0.00001 0.00253 -0.00250 + 20 0.00000 0.00000 0.02013 0.00000 0.00000 0.00000 + 21 0.00162 0.00199 0.00000 0.00000 0.00000 0.00000 + 22 0.04274 0.05240 0.00000 0.00000 0.00158 0.00045 + 23 -0.02709 -0.05521 0.00000 -0.00000 -0.00045 0.00039 + 24 -0.05521 -0.04974 0.00000 0.00001 0.00311 0.00092 + 25 0.00000 0.00000 0.01794 0.00000 0.00000 0.00000 + 26 -0.00000 0.00001 0.00000 0.00000 0.00105 -0.00162 + 27 -0.00045 0.00311 0.00000 0.00105 0.04432 -0.04274 + 28 0.00039 0.00092 0.00000 0.00162 0.04274 -0.02709 + 29 0.00092 -0.00575 0.00000 0.00199 0.05240 -0.05521 + 30 0.00000 0.00000 0.00053 0.00000 0.00000 0.00000 + 31 0.00019 0.00024 0.00000 0.00113 0.03262 0.03181 + 32 -0.03181 0.03532 0.00000 0.00000 0.00015 -0.00019 + 33 0.03596 0.01884 0.00000 0.00000 0.00017 0.00011 + 34 -0.00011 0.00034 0.00000 0.00087 0.02741 -0.03596 + 35 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 36 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 37 1.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 38 0.00000 1.00000 0.00000 0.00000 0.00000 -0.00000 + 39 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 41 0.00000 0.00000 0.00000 0.24836 1.00000 0.00000 + 42 0.00000 -0.00000 0.00000 0.00000 0.00000 1.00000 + 43 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.45129 -0.10556 0.00000 0.00000 0.00000 -0.00000 + 46 0.00000 0.00000 0.00000 0.06070 0.48445 0.45129 + 47 0.04749 -0.05283 0.00000 0.00000 0.00000 -0.00000 + 48 0.27266 -0.30328 0.00000 0.00000 0.00000 -0.00000 + 49 -0.01650 0.28029 0.00000 0.00000 0.00000 0.00000 + 50 0.28029 -0.07629 0.00000 0.00000 0.00000 -0.00000 + 51 0.00000 0.00000 0.23549 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 0.04284 -0.04749 + 53 0.00000 0.00000 0.00000 0.04284 0.39315 -0.27266 + 54 0.00000 -0.00000 0.00000 0.04749 0.27266 -0.01650 + 55 -0.00000 -0.00000 0.00000 -0.05283 -0.30328 0.28029 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.11842 -0.04901 0.00000 0.00000 0.00000 0.00000 + 58 -0.00000 0.00000 0.00000 0.00561 0.09966 -0.11842 + 59 0.03569 -0.12555 0.00000 0.00000 0.00000 -0.00000 + 60 0.00000 0.00000 0.00000 0.00577 0.10177 -0.03569 + + 43 44 45 46 47 48 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.04831 0.00000 0.00000 0.00487 0.00000 0.00000 + 2 -0.34497 0.00000 0.00008 0.09007 0.00000 0.00001 + 3 -0.09697 0.00000 -0.00007 0.07314 0.00000 0.00000 + 4 -0.30023 0.00000 -0.00016 0.09177 -0.00000 -0.00002 + 5 0.00000 0.17791 0.00000 0.00000 0.00000 0.00000 + 6 -0.00000 0.00000 0.00487 0.00000 0.00000 0.00116 + 7 -0.00057 0.00000 0.09007 0.00008 0.00116 0.04688 + 8 -0.00022 0.00000 -0.07314 0.00007 0.00066 0.01682 + 9 -0.00117 0.00000 -0.09177 0.00016 -0.00272 -0.06907 + 10 0.00000 0.00008 0.00000 0.00000 0.00000 0.00000 + 11 -0.00287 0.00000 0.00000 0.00132 0.00000 0.00000 + 12 -0.07056 0.00000 0.00019 0.03624 0.00000 0.00018 + 13 0.03624 0.00000 -0.00024 0.00570 -0.00000 -0.00009 + 14 -0.09075 0.00000 -0.00030 0.05196 -0.00000 -0.00039 + 15 0.00000 0.02013 0.00000 0.00000 0.00000 0.00000 + 16 -0.00001 0.00000 0.00132 0.00000 0.00000 0.00000 + 17 -0.00253 0.00000 0.03624 0.00019 0.00000 0.00174 + 18 -0.00250 0.00000 -0.00570 0.00024 0.00000 0.00152 + 19 -0.00407 0.00000 -0.05196 0.00030 -0.00001 -0.00307 + 20 0.00000 0.00048 0.00000 0.00000 0.00000 0.00000 + 21 -0.00001 0.00000 0.00006 0.00001 0.00000 0.00012 + 22 -0.00311 0.00000 0.00515 0.00114 0.00012 0.01305 + 23 0.00092 0.00000 -0.00667 0.00027 -0.00008 -0.00524 + 24 -0.00575 0.00000 -0.00554 0.00210 -0.00034 -0.02165 + 25 0.00000 0.00053 0.00000 0.00000 0.00000 0.00000 + 26 -0.00199 0.00000 0.00001 0.00006 0.00000 0.00000 + 27 -0.05240 0.00000 0.00114 0.00515 0.00000 0.00002 + 28 -0.05521 0.00000 -0.00027 0.00667 0.00000 0.00002 + 29 -0.04974 0.00000 -0.00210 0.00554 -0.00000 -0.00006 + 30 0.00000 0.01794 0.00000 0.00000 0.00000 0.00000 + 31 -0.03532 0.00000 0.00001 0.06153 0.00000 0.00004 + 32 -0.00024 0.00000 0.06153 0.00001 0.00001 0.00116 + 33 -0.00034 0.00000 0.00248 0.00024 0.00089 0.02792 + 34 -0.01884 0.00000 0.00024 0.00248 0.00000 0.00000 + 35 -0.00000 0.00000 0.06070 0.00000 0.00000 0.04284 + 36 -0.00000 0.00000 0.48445 0.00000 0.04284 0.39315 + 37 -0.00000 0.00000 -0.45129 0.00000 0.04749 0.27266 + 38 -0.00000 0.00000 -0.10556 0.00000 -0.05283 -0.30328 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 + 41 0.00000 0.00000 0.00000 0.48445 0.00000 0.00000 + 42 0.00000 0.00000 -0.00000 0.45129 -0.00000 -0.00000 + 43 1.00000 0.00000 -0.00000 0.10556 -0.00000 -0.00000 + 44 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.00000 0.00000 1.00000 0.00000 0.00611 0.10604 + 46 0.10556 0.00000 0.00000 1.00000 0.00000 0.00000 + 47 -0.00000 0.00000 0.00611 0.00000 1.00000 0.24836 + 48 -0.00000 0.00000 0.10604 0.00000 0.24836 1.00000 + 49 -0.00000 0.00000 -0.12645 0.00000 -0.00000 0.00000 + 50 -0.00000 0.00000 0.04805 0.00000 -0.00000 -0.00000 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.05283 0.00000 0.00000 0.00611 0.00000 0.00000 + 53 0.30328 0.00000 0.00000 0.10604 0.00000 0.00000 + 54 0.28029 0.00000 -0.00000 0.12645 0.00000 0.00000 + 55 -0.07629 0.00000 -0.00000 -0.04805 0.00000 -0.00000 + 56 0.00000 0.23549 0.00000 0.00000 0.00000 0.00000 + 57 -0.00000 0.00000 0.01462 0.00000 0.06141 0.48732 + 58 0.04901 0.00000 0.00000 0.01462 0.00000 0.00000 + 59 -0.00000 0.00000 0.05493 0.00000 0.06131 0.48692 + 60 0.12555 0.00000 0.00000 0.05493 0.00000 0.00000 + + 49 50 51 52 53 54 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 0.00000 0.00000 0.00000 0.00116 0.00066 + 2 -0.00000 0.00002 0.00000 0.00116 0.04688 0.01682 + 3 0.00000 0.00000 0.00000 -0.00066 -0.01682 0.01248 + 4 0.00000 -0.00005 0.00000 0.00272 0.06907 0.02713 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 -0.00066 0.00272 0.00000 0.00000 0.00000 0.00000 + 7 -0.01682 0.06907 0.00000 0.00000 0.00001 0.00000 + 8 0.01248 0.02713 0.00000 -0.00000 -0.00000 0.00000 + 9 0.02713 -0.09229 0.00000 0.00000 0.00002 0.00000 + 10 0.00000 0.00000 0.01908 0.00000 0.00000 0.00000 + 11 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 12 0.00009 0.00039 0.00000 0.00000 0.00174 0.00152 + 13 0.00002 -0.00019 0.00000 -0.00000 -0.00152 -0.00079 + 14 -0.00019 -0.00082 0.00000 0.00001 0.00307 0.00277 + 15 0.00000 0.00000 0.00006 0.00000 0.00000 0.00000 + 16 -0.00000 0.00001 0.00000 0.00000 0.00000 -0.00000 + 17 -0.00152 0.00307 0.00000 0.00000 0.00018 -0.00009 + 18 -0.00079 0.00277 0.00000 0.00000 0.00009 0.00002 + 19 0.00277 -0.00501 0.00000 0.00000 0.00039 -0.00019 + 20 0.00000 0.00000 0.00058 0.00000 0.00000 0.00000 + 21 0.00008 0.00034 0.00000 0.00000 0.00000 0.00000 + 22 0.00524 0.02165 0.00000 0.00000 0.00002 0.00002 + 23 0.00255 -0.00924 0.00000 -0.00000 -0.00002 -0.00001 + 24 -0.00924 -0.03340 0.00000 0.00000 0.00006 0.00004 + 25 0.00000 0.00000 0.00478 0.00000 0.00000 0.00000 + 26 -0.00000 0.00000 0.00000 0.00000 0.00012 -0.00008 + 27 -0.00002 0.00006 0.00000 0.00012 0.01305 -0.00524 + 28 -0.00001 0.00004 0.00000 0.00008 0.00524 0.00255 + 29 0.00004 -0.00014 0.00000 0.00034 0.02165 -0.00924 + 30 0.00000 0.00000 0.00001 0.00000 0.00000 0.00000 + 31 0.00003 0.00007 0.00000 0.00001 0.00116 0.00144 + 32 -0.00144 0.00160 0.00000 0.00000 0.00004 -0.00003 + 33 0.02334 0.03404 0.00000 0.00000 0.00000 0.00000 + 34 -0.00000 0.00000 0.00000 0.00089 0.02792 -0.02334 + 35 -0.04749 0.05283 0.00000 0.00000 0.00000 -0.00000 + 36 -0.27266 0.30328 0.00000 0.00000 0.00000 -0.00000 + 37 -0.01650 0.28029 0.00000 0.00000 0.00000 0.00000 + 38 0.28029 -0.07629 0.00000 0.00000 0.00000 -0.00000 + 39 0.00000 0.00000 0.23549 0.00000 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.00000 0.04284 0.04749 + 41 0.00000 0.00000 0.00000 0.04284 0.39315 0.27266 + 42 0.00000 -0.00000 0.00000 -0.04749 -0.27266 -0.01650 + 43 -0.00000 -0.00000 0.00000 0.05283 0.30328 0.28029 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.12645 0.04805 0.00000 0.00000 0.00000 -0.00000 + 46 0.00000 0.00000 0.00000 0.00611 0.10604 0.12645 + 47 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 48 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 49 1.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 50 -0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 51 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 53 -0.00000 0.00000 0.00000 0.24836 1.00000 -0.00000 + 54 0.00000 0.00000 0.00000 0.00000 -0.00000 1.00000 + 55 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.45887 0.07655 0.00000 0.00000 0.00000 0.00000 + 58 -0.00000 0.00000 0.00000 0.06141 0.48732 -0.45887 + 59 -0.13400 -0.44525 0.00000 0.00000 0.00000 0.00000 + 60 -0.00000 0.00000 0.00000 0.06131 0.48692 0.13400 + + 55 56 57 58 59 60 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00272 0.00000 0.00000 0.00074 0.00000 0.00006 + 2 -0.06907 0.00000 0.00002 0.02468 0.00000 0.00481 + 3 0.02713 0.00000 0.00001 -0.02186 -0.00000 -0.00066 + 4 -0.09229 0.00000 -0.00005 0.02972 -0.00000 0.00811 + 5 0.00000 0.01908 0.00000 0.00000 0.00000 0.00000 + 6 -0.00000 0.00000 0.00074 0.00000 0.00006 0.00000 + 7 -0.00002 0.00000 0.02468 0.00002 0.00481 0.00000 + 8 0.00000 0.00000 0.02186 -0.00001 0.00066 0.00000 + 9 -0.00005 0.00000 -0.02972 0.00005 -0.00811 0.00000 + 10 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 11 -0.00001 0.00000 0.00000 0.00000 0.00000 0.00000 + 12 -0.00307 0.00000 0.00078 0.00068 0.00001 0.00019 + 13 0.00277 0.00000 0.00005 -0.00085 -0.00000 -0.00012 + 14 -0.00501 0.00000 -0.00148 0.00099 -0.00002 0.00038 + 15 0.00000 0.00058 0.00000 0.00000 0.00000 0.00000 + 16 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 17 -0.00039 0.00000 0.00068 0.00078 0.00019 0.00001 + 18 -0.00019 0.00000 0.00085 -0.00005 0.00012 0.00000 + 19 -0.00082 0.00000 -0.00099 0.00148 -0.00038 0.00002 + 20 0.00000 0.00006 0.00000 0.00000 0.00000 0.00000 + 21 -0.00000 0.00000 0.00076 0.00000 0.00000 0.00000 + 22 -0.00006 0.00000 0.02519 0.00002 0.00083 0.00000 + 23 0.00004 0.00000 0.00476 -0.00003 -0.00039 -0.00000 + 24 -0.00014 0.00000 -0.03729 0.00005 -0.00153 0.00000 + 25 0.00000 0.00001 0.00000 0.00000 0.00000 0.00000 + 26 -0.00034 0.00000 0.00000 0.00076 0.00000 0.00000 + 27 -0.02165 0.00000 0.00002 0.02519 0.00000 0.00083 + 28 -0.00924 0.00000 0.00003 -0.00476 0.00000 0.00039 + 29 -0.03340 0.00000 -0.00005 0.03729 -0.00000 0.00153 + 30 0.00000 0.00478 0.00000 0.00000 0.00000 0.00000 + 31 -0.00160 0.00000 0.00030 0.00024 0.00000 0.00025 + 32 -0.00007 0.00000 0.00024 0.00030 0.00025 0.00000 + 33 -0.00000 0.00000 0.08944 0.00000 0.00264 0.00000 + 34 -0.03404 0.00000 0.00000 0.08944 0.00000 0.00264 + 35 -0.00000 0.00000 0.00561 0.00000 0.00577 0.00000 + 36 -0.00000 0.00000 0.09966 0.00000 0.10177 0.00000 + 37 -0.00000 0.00000 0.11842 -0.00000 0.03569 0.00000 + 38 -0.00000 0.00000 -0.04901 0.00000 -0.12555 0.00000 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 -0.05283 0.00000 0.00000 0.00561 0.00000 0.00577 + 41 -0.30328 0.00000 0.00000 0.09966 0.00000 0.10177 + 42 0.28029 0.00000 0.00000 -0.11842 -0.00000 -0.03569 + 43 -0.07629 0.00000 -0.00000 0.04901 -0.00000 0.12555 + 44 0.00000 0.23549 0.00000 0.00000 0.00000 0.00000 + 45 -0.00000 0.00000 0.01462 0.00000 0.05493 0.00000 + 46 -0.04805 0.00000 0.00000 0.01462 0.00000 0.05493 + 47 0.00000 0.00000 0.06141 0.00000 0.06131 0.00000 + 48 -0.00000 0.00000 0.48732 0.00000 0.48692 0.00000 + 49 0.00000 0.00000 0.45887 -0.00000 -0.13400 -0.00000 + 50 -0.00000 0.00000 0.07655 0.00000 -0.44525 0.00000 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 + 53 0.00000 0.00000 0.00000 0.48732 0.00000 0.48692 + 54 -0.00000 0.00000 0.00000 -0.45887 0.00000 0.13400 + 55 1.00000 0.00000 -0.00000 -0.07655 -0.00000 0.44525 + 56 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 57 -0.00000 0.00000 1.00000 0.00000 0.14897 0.00000 + 58 -0.07655 0.00000 0.00000 1.00000 0.00000 0.14897 + 59 -0.00000 0.00000 0.14897 0.00000 1.00000 0.00000 + 60 0.44525 0.00000 0.00000 0.14897 0.00000 1.00000 + + Forming initial guess at 1.5s + + + Superposition of Atomic Density Guess + ------------------------------------- + + Sum of atomic energies: -376.44825176 + + global array: Temp HCore[1:60,1:60], handle: -994 + + 1 2 3 4 5 6 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 1.00000 0.24836 -0.00000 -0.00000 0.00000 0.00000 + 2 0.24836 1.00000 0.00000 -0.00000 0.00000 0.00030 + 3 -0.00000 0.00000 1.00000 0.00000 0.00000 -0.00014 + 4 -0.00000 -0.00000 0.00000 1.00000 0.00000 -0.00081 + 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 6 0.00000 0.00030 -0.00014 -0.00081 0.00000 1.00000 + 7 0.00030 0.02187 -0.00590 -0.03524 0.00000 0.24836 + 8 0.00014 0.00590 0.00661 -0.01021 0.00000 0.00000 + 9 0.00081 0.03524 -0.01021 -0.05268 0.00000 0.00000 + 10 0.00000 0.00000 0.00000 0.00000 0.00832 0.00000 + 11 0.00000 0.03557 0.04482 -0.03839 0.00000 0.00000 + 12 0.03557 0.35371 0.28849 -0.24714 0.00000 0.00159 + 13 -0.04482 -0.28849 -0.10190 0.26261 0.00000 -0.00235 + 14 0.03839 0.24714 0.26261 -0.02032 0.00000 -0.00288 + 15 0.00000 0.00000 0.00000 0.00000 0.20465 0.00000 + 16 0.00000 0.00159 -0.00235 -0.00288 0.00000 0.00000 + 17 0.00159 0.05619 -0.05280 -0.06468 0.00000 0.03557 + 18 0.00235 0.05280 -0.03131 -0.06691 0.00000 0.04482 + 19 0.00288 0.06468 -0.06691 -0.05866 0.00000 -0.03839 + 20 0.00000 0.00000 0.00000 0.00000 0.02331 0.00000 + 21 0.00000 0.00157 0.00127 -0.00344 0.00000 0.00000 + 22 0.00157 0.05578 0.02866 -0.07785 0.00000 0.03558 + 23 -0.00127 -0.02866 0.00691 0.04403 0.00000 -0.05494 + 24 0.00344 0.07785 0.04403 -0.09646 0.00000 -0.02157 + 25 0.00000 0.00000 0.00000 0.00000 0.02312 0.00000 + 26 0.00000 0.03558 -0.05494 -0.02157 0.00000 0.00000 + 27 0.03558 0.35374 -0.35362 -0.13884 0.00000 0.00157 + 28 0.05494 0.35362 -0.25587 -0.18083 0.00000 0.00127 + 29 0.02157 0.13884 -0.18083 0.13368 0.00000 -0.00344 + 30 0.00000 0.00000 0.00000 0.00000 0.20467 0.00000 + 31 0.00509 0.09301 0.11685 -0.03020 0.00000 0.00008 + 32 0.00008 0.00590 -0.00738 -0.00652 0.00000 0.00509 + 33 0.00008 0.00588 0.00484 -0.00854 0.00000 0.00508 + 34 0.00508 0.09284 -0.12012 0.00954 0.00000 0.00008 + 35 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 36 0.00000 0.00026 -0.00010 -0.00057 0.00000 0.02955 + 37 0.00000 0.00010 0.00004 -0.00022 0.00000 0.00980 + 38 0.00000 0.00057 -0.00022 -0.00117 0.00000 0.04831 + 39 0.00000 0.00000 0.00000 0.00000 0.00008 0.00000 + 40 0.00000 0.02955 0.00980 0.04831 0.00000 0.00000 + 41 0.02955 0.31761 0.06996 0.34497 0.00000 0.00000 + 42 -0.00980 -0.06996 0.15824 -0.09697 0.00000 -0.00000 + 43 -0.04831 -0.34497 -0.09697 -0.30023 0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.17791 0.00000 + 45 0.00000 0.00008 -0.00007 -0.00016 0.00000 0.00487 + 46 0.00487 0.09007 0.07314 0.09177 0.00000 0.00000 + 47 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 48 0.00000 0.00001 0.00000 -0.00002 0.00000 0.00116 + 49 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00066 + 50 0.00000 0.00002 0.00000 -0.00005 0.00000 0.00272 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00116 -0.00066 0.00272 0.00000 0.00000 + 53 0.00116 0.04688 -0.01682 0.06907 0.00000 0.00000 + 54 0.00066 0.01682 0.01248 0.02713 0.00000 0.00000 + 55 -0.00272 -0.06907 0.02713 -0.09229 0.00000 -0.00000 + 56 0.00000 0.00000 0.00000 0.00000 0.01908 0.00000 + 57 0.00000 0.00002 0.00001 -0.00005 0.00000 0.00074 + 58 0.00074 0.02468 -0.02186 0.02972 0.00000 0.00000 + 59 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00006 + 60 0.00006 0.00481 -0.00066 0.00811 0.00000 0.00000 + + 7 8 9 10 11 12 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00030 0.00014 0.00081 0.00000 0.00000 0.03557 + 2 0.02187 0.00590 0.03524 0.00000 0.03557 0.35371 + 3 -0.00590 0.00661 -0.01021 0.00000 0.04482 0.28849 + 4 -0.03524 -0.01021 -0.05268 0.00000 -0.03839 -0.24714 + 5 0.00000 0.00000 0.00000 0.00832 0.00000 0.00000 + 6 0.24836 0.00000 0.00000 0.00000 0.00000 0.00159 + 7 1.00000 -0.00000 0.00000 0.00000 0.00159 0.05619 + 8 -0.00000 1.00000 0.00000 0.00000 0.00235 0.05280 + 9 0.00000 0.00000 1.00000 0.00000 0.00288 0.06468 + 10 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 + 11 0.00159 0.00235 0.00288 0.00000 1.00000 0.24836 + 12 0.05619 0.05280 0.06468 0.00000 0.24836 1.00000 + 13 -0.05280 -0.03131 -0.06691 0.00000 0.00000 0.00000 + 14 -0.06468 -0.06691 -0.05866 0.00000 -0.00000 -0.00000 + 15 0.00000 0.00000 0.00000 0.02331 0.00000 0.00000 + 16 0.03557 -0.04482 0.03839 0.00000 0.00000 0.00039 + 17 0.35371 -0.28849 0.24714 0.00000 0.00039 0.02519 + 18 0.28849 -0.10190 0.26261 0.00000 0.00097 0.03810 + 19 -0.24714 0.26261 -0.02032 0.00000 0.00036 0.01415 + 20 0.00000 0.00000 0.00000 0.20465 0.00000 0.00000 + 21 0.03558 0.05494 0.02157 0.00000 0.00000 0.03729 + 22 0.35374 0.35362 0.13884 0.00000 0.03729 0.36341 + 23 -0.35362 -0.25587 -0.18083 0.00000 0.01014 0.06345 + 24 -0.13884 -0.18083 0.13368 0.00000 0.06099 0.38176 + 25 0.00000 0.00000 0.00000 0.20467 0.00000 0.00000 + 26 0.00157 -0.00127 0.00344 0.00000 0.00000 0.00170 + 27 0.05578 -0.02866 0.07785 0.00000 0.00170 0.05856 + 28 0.02866 0.00691 0.04403 0.00000 0.00390 0.08539 + 29 -0.07785 0.04403 -0.09646 0.00000 -0.00066 -0.01441 + 30 0.00000 0.00000 0.00000 0.02312 0.00000 0.00000 + 31 0.00590 0.00738 0.00652 0.00000 0.06102 0.48575 + 32 0.09301 -0.11685 0.03020 0.00000 0.00001 0.00175 + 33 0.09284 0.12012 -0.00954 0.00000 0.00527 0.09535 + 34 0.00588 -0.00484 0.00854 0.00000 0.00008 0.00611 + 35 0.02955 -0.00980 -0.04831 0.00000 0.00000 0.00000 + 36 0.31761 -0.06996 -0.34497 0.00000 0.00000 0.00144 + 37 0.06996 0.15824 -0.09697 0.00000 0.00000 0.00139 + 38 0.34497 -0.09697 -0.30023 0.00000 0.00001 0.00253 + 39 0.00000 0.00000 0.00000 0.17791 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.00000 0.00000 0.00126 + 41 0.00026 0.00010 0.00057 0.00000 0.00126 0.04921 + 42 -0.00010 0.00004 -0.00022 0.00000 0.00094 0.02306 + 43 -0.00057 -0.00022 -0.00117 0.00000 -0.00287 -0.07056 + 44 0.00000 0.00000 0.00000 0.00008 0.00000 0.00000 + 45 0.09007 -0.07314 -0.09177 0.00000 0.00000 0.00019 + 46 0.00008 0.00007 0.00016 0.00000 0.00132 0.03624 + 47 0.00116 0.00066 -0.00272 0.00000 0.00000 0.00000 + 48 0.04688 0.01682 -0.06907 0.00000 0.00000 0.00018 + 49 -0.01682 0.01248 0.02713 0.00000 0.00000 0.00009 + 50 0.06907 0.02713 -0.09229 0.00000 0.00000 0.00039 + 51 0.00000 0.00000 0.00000 0.01908 0.00000 0.00000 + 52 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 53 0.00001 -0.00000 0.00002 0.00000 0.00000 0.00174 + 54 0.00000 0.00000 0.00000 0.00000 0.00000 0.00152 + 55 -0.00002 0.00000 -0.00005 0.00000 -0.00001 -0.00307 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.02468 0.02186 -0.02972 0.00000 0.00000 0.00078 + 58 0.00002 -0.00001 0.00005 0.00000 0.00000 0.00068 + 59 0.00481 0.00066 -0.00811 0.00000 0.00000 0.00001 + 60 0.00000 0.00000 0.00000 0.00000 0.00000 0.00019 + + 13 14 15 16 17 18 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.04482 0.03839 0.00000 0.00000 0.00159 0.00235 + 2 -0.28849 0.24714 0.00000 0.00159 0.05619 0.05280 + 3 -0.10190 0.26261 0.00000 -0.00235 -0.05280 -0.03131 + 4 0.26261 -0.02032 0.00000 -0.00288 -0.06468 -0.06691 + 5 0.00000 0.00000 0.20465 0.00000 0.00000 0.00000 + 6 -0.00235 -0.00288 0.00000 0.00000 0.03557 0.04482 + 7 -0.05280 -0.06468 0.00000 0.03557 0.35371 0.28849 + 8 -0.03131 -0.06691 0.00000 -0.04482 -0.28849 -0.10190 + 9 -0.06691 -0.05866 0.00000 0.03839 0.24714 0.26261 + 10 0.00000 0.00000 0.02331 0.00000 0.00000 0.00000 + 11 0.00000 -0.00000 0.00000 0.00000 0.00039 0.00097 + 12 0.00000 -0.00000 0.00000 0.00039 0.02519 0.03810 + 13 1.00000 0.00000 0.00000 -0.00097 -0.03810 -0.05238 + 14 0.00000 1.00000 0.00000 -0.00036 -0.01415 -0.02305 + 15 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 16 -0.00097 -0.00036 0.00000 1.00000 0.24836 -0.00000 + 17 -0.03810 -0.01415 0.00000 0.24836 1.00000 -0.00000 + 18 -0.05238 -0.02305 0.00000 -0.00000 -0.00000 1.00000 + 19 -0.02305 0.00113 0.00000 0.00000 0.00000 0.00000 + 20 0.00000 0.00000 0.00969 0.00000 0.00000 0.00000 + 21 -0.01014 -0.06099 0.00000 0.00000 0.00170 0.00390 + 22 -0.06345 -0.38176 0.00000 0.00170 0.05856 0.08539 + 23 0.19756 -0.08733 0.00000 -0.00390 -0.08539 -0.11288 + 24 -0.08733 -0.31332 0.00000 0.00066 0.01441 0.02316 + 25 0.00000 0.00000 0.21207 0.00000 0.00000 0.00000 + 26 -0.00390 0.00066 0.00000 0.00000 0.03729 0.01014 + 27 -0.08539 0.01441 0.00000 0.03729 0.36341 0.06345 + 28 -0.11288 0.02316 0.00000 -0.01014 -0.06345 0.19756 + 29 0.02316 0.02049 0.00000 -0.06099 -0.38176 -0.08733 + 30 0.00000 0.00000 0.02440 0.00000 0.00000 0.00000 + 31 0.43567 0.16041 0.00000 0.00001 0.00175 0.00297 + 32 -0.00297 -0.00110 0.00000 0.06102 0.48575 -0.43567 + 33 0.03534 -0.11815 0.00000 0.00008 0.00611 0.00963 + 34 -0.00963 0.00325 0.00000 0.00527 0.09535 -0.03534 + 35 -0.00000 -0.00001 0.00000 0.00000 0.00126 0.00094 + 36 -0.00139 -0.00253 0.00000 0.00126 0.04921 0.02306 + 37 -0.00089 -0.00250 0.00000 -0.00094 -0.02306 0.00828 + 38 -0.00250 -0.00407 0.00000 0.00287 0.07056 0.03624 + 39 0.00000 0.00000 0.00048 0.00000 0.00000 0.00000 + 40 -0.00094 0.00287 0.00000 0.00000 0.00000 0.00000 + 41 -0.02306 0.07056 0.00000 0.00000 0.00144 0.00139 + 42 0.00828 0.03624 0.00000 -0.00000 -0.00139 -0.00089 + 43 0.03624 -0.09075 0.00000 -0.00001 -0.00253 -0.00250 + 44 0.00000 0.00000 0.02013 0.00000 0.00000 0.00000 + 45 -0.00024 -0.00030 0.00000 0.00132 0.03624 -0.00570 + 46 0.00570 0.05196 0.00000 0.00000 0.00019 0.00024 + 47 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 48 -0.00009 -0.00039 0.00000 0.00000 0.00174 0.00152 + 49 0.00002 -0.00019 0.00000 -0.00000 -0.00152 -0.00079 + 50 -0.00019 -0.00082 0.00000 0.00001 0.00307 0.00277 + 51 0.00000 0.00000 0.00006 0.00000 0.00000 0.00000 + 52 -0.00000 0.00001 0.00000 0.00000 0.00000 0.00000 + 53 -0.00152 0.00307 0.00000 0.00000 0.00018 0.00009 + 54 -0.00079 0.00277 0.00000 -0.00000 -0.00009 0.00002 + 55 0.00277 -0.00501 0.00000 -0.00000 -0.00039 -0.00019 + 56 0.00000 0.00000 0.00058 0.00000 0.00000 0.00000 + 57 0.00005 -0.00148 0.00000 0.00000 0.00068 0.00085 + 58 -0.00085 0.00099 0.00000 0.00000 0.00078 -0.00005 + 59 -0.00000 -0.00002 0.00000 0.00000 0.00019 0.00012 + 60 -0.00012 0.00038 0.00000 0.00000 0.00001 0.00000 + + 19 20 21 22 23 24 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00288 0.00000 0.00000 0.00157 -0.00127 0.00344 + 2 0.06468 0.00000 0.00157 0.05578 -0.02866 0.07785 + 3 -0.06691 0.00000 0.00127 0.02866 0.00691 0.04403 + 4 -0.05866 0.00000 -0.00344 -0.07785 0.04403 -0.09646 + 5 0.00000 0.02331 0.00000 0.00000 0.00000 0.00000 + 6 -0.03839 0.00000 0.00000 0.03558 -0.05494 -0.02157 + 7 -0.24714 0.00000 0.03558 0.35374 -0.35362 -0.13884 + 8 0.26261 0.00000 0.05494 0.35362 -0.25587 -0.18083 + 9 -0.02032 0.00000 0.02157 0.13884 -0.18083 0.13368 + 10 0.00000 0.20465 0.00000 0.00000 0.00000 0.00000 + 11 0.00036 0.00000 0.00000 0.03729 0.01014 0.06099 + 12 0.01415 0.00000 0.03729 0.36341 0.06345 0.38176 + 13 -0.02305 0.00000 -0.01014 -0.06345 0.19756 -0.08733 + 14 0.00113 0.00000 -0.06099 -0.38176 -0.08733 -0.31332 + 15 0.00000 0.00969 0.00000 0.00000 0.00000 0.00000 + 16 0.00000 0.00000 0.00000 0.00170 -0.00390 0.00066 + 17 0.00000 0.00000 0.00170 0.05856 -0.08539 0.01441 + 18 0.00000 0.00000 0.00390 0.08539 -0.11288 0.02316 + 19 1.00000 0.00000 -0.00066 -0.01441 0.02316 0.02049 + 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 21 -0.00066 0.00000 1.00000 0.24836 -0.00000 -0.00000 + 22 -0.01441 0.00000 0.24836 1.00000 0.00000 -0.00000 + 23 0.02316 0.00000 -0.00000 0.00000 1.00000 0.00000 + 24 0.02049 0.00000 -0.00000 -0.00000 0.00000 1.00000 + 25 0.00000 0.02440 0.00000 0.00000 0.00000 0.00000 + 26 0.06099 0.00000 0.00000 0.00038 -0.00078 0.00065 + 27 0.38176 0.00000 0.00038 0.02484 -0.03098 0.02550 + 28 -0.08733 0.00000 0.00078 0.03098 -0.03207 0.03425 + 29 -0.31332 0.00000 -0.00065 -0.02550 0.03425 -0.01864 + 30 0.00000 0.21207 0.00000 0.00000 0.00000 0.00000 + 31 0.00110 0.00000 0.00526 0.09520 0.07165 0.10018 + 32 -0.16041 0.00000 0.00008 0.00611 -0.01016 0.00008 + 33 -0.00325 0.00000 0.06126 0.48673 0.36054 -0.29343 + 34 0.11815 0.00000 0.00001 0.00173 -0.00242 0.00199 + 35 -0.00287 0.00000 0.00000 0.00105 -0.00162 -0.00199 + 36 -0.07056 0.00000 0.00105 0.04432 -0.04274 -0.05240 + 37 0.03624 0.00000 0.00162 0.04274 -0.02709 -0.05521 + 38 -0.09075 0.00000 0.00199 0.05240 -0.05521 -0.04974 + 39 0.00000 0.02013 0.00000 0.00000 0.00000 0.00000 + 40 0.00001 0.00000 0.00000 0.00000 -0.00000 0.00001 + 41 0.00253 0.00000 0.00000 0.00158 -0.00045 0.00311 + 42 -0.00250 0.00000 0.00000 0.00045 0.00039 0.00092 + 43 -0.00407 0.00000 -0.00001 -0.00311 0.00092 -0.00575 + 44 0.00000 0.00048 0.00000 0.00000 0.00000 0.00000 + 45 -0.05196 0.00000 0.00006 0.00515 -0.00667 -0.00554 + 46 0.00030 0.00000 0.00001 0.00114 0.00027 0.00210 + 47 -0.00001 0.00000 0.00000 0.00012 -0.00008 -0.00034 + 48 -0.00307 0.00000 0.00012 0.01305 -0.00524 -0.02165 + 49 0.00277 0.00000 0.00008 0.00524 0.00255 -0.00924 + 50 -0.00501 0.00000 0.00034 0.02165 -0.00924 -0.03340 + 51 0.00000 0.00058 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 53 0.00039 0.00000 0.00000 0.00002 -0.00002 0.00006 + 54 -0.00019 0.00000 0.00000 0.00002 -0.00001 0.00004 + 55 -0.00082 0.00000 -0.00000 -0.00006 0.00004 -0.00014 + 56 0.00000 0.00006 0.00000 0.00000 0.00000 0.00000 + 57 -0.00099 0.00000 0.00076 0.02519 0.00476 -0.03729 + 58 0.00148 0.00000 0.00000 0.00002 -0.00003 0.00005 + 59 -0.00038 0.00000 0.00000 0.00083 -0.00039 -0.00153 + 60 0.00002 0.00000 0.00000 0.00000 -0.00000 0.00000 + + 25 26 27 28 29 30 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 0.00000 0.03558 0.05494 0.02157 0.00000 + 2 0.00000 0.03558 0.35374 0.35362 0.13884 0.00000 + 3 0.00000 -0.05494 -0.35362 -0.25587 -0.18083 0.00000 + 4 0.00000 -0.02157 -0.13884 -0.18083 0.13368 0.00000 + 5 0.02312 0.00000 0.00000 0.00000 0.00000 0.20467 + 6 0.00000 0.00000 0.00157 0.00127 -0.00344 0.00000 + 7 0.00000 0.00157 0.05578 0.02866 -0.07785 0.00000 + 8 0.00000 -0.00127 -0.02866 0.00691 0.04403 0.00000 + 9 0.00000 0.00344 0.07785 0.04403 -0.09646 0.00000 + 10 0.20467 0.00000 0.00000 0.00000 0.00000 0.02312 + 11 0.00000 0.00000 0.00170 0.00390 -0.00066 0.00000 + 12 0.00000 0.00170 0.05856 0.08539 -0.01441 0.00000 + 13 0.00000 -0.00390 -0.08539 -0.11288 0.02316 0.00000 + 14 0.00000 0.00066 0.01441 0.02316 0.02049 0.00000 + 15 0.21207 0.00000 0.00000 0.00000 0.00000 0.02440 + 16 0.00000 0.00000 0.03729 -0.01014 -0.06099 0.00000 + 17 0.00000 0.03729 0.36341 -0.06345 -0.38176 0.00000 + 18 0.00000 0.01014 0.06345 0.19756 -0.08733 0.00000 + 19 0.00000 0.06099 0.38176 -0.08733 -0.31332 0.00000 + 20 0.02440 0.00000 0.00000 0.00000 0.00000 0.21207 + 21 0.00000 0.00000 0.00038 0.00078 -0.00065 0.00000 + 22 0.00000 0.00038 0.02484 0.03098 -0.02550 0.00000 + 23 0.00000 -0.00078 -0.03098 -0.03207 0.03425 0.00000 + 24 0.00000 0.00065 0.02550 0.03425 -0.01864 0.00000 + 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.00954 + 26 0.00000 1.00000 0.24836 0.00000 0.00000 0.00000 + 27 0.00000 0.24836 1.00000 0.00000 0.00000 0.00000 + 28 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 + 29 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 30 0.00954 0.00000 0.00000 0.00000 0.00000 1.00000 + 31 0.00000 0.00008 0.00611 0.01016 -0.00008 0.00000 + 32 0.00000 0.00526 0.09520 -0.07165 -0.10018 0.00000 + 33 0.00000 0.00001 0.00173 0.00242 -0.00199 0.00000 + 34 0.00000 0.06126 0.48673 -0.36054 0.29343 0.00000 + 35 0.00000 0.00000 0.00000 0.00000 -0.00001 0.00000 + 36 0.00000 0.00000 0.00158 0.00045 -0.00311 0.00000 + 37 0.00000 -0.00000 -0.00045 0.00039 0.00092 0.00000 + 38 0.00000 0.00001 0.00311 0.00092 -0.00575 0.00000 + 39 0.01794 0.00000 0.00000 0.00000 0.00000 0.00053 + 40 0.00000 0.00000 0.00105 0.00162 0.00199 0.00000 + 41 0.00000 0.00105 0.04432 0.04274 0.05240 0.00000 + 42 0.00000 -0.00162 -0.04274 -0.02709 -0.05521 0.00000 + 43 0.00000 -0.00199 -0.05240 -0.05521 -0.04974 0.00000 + 44 0.00053 0.00000 0.00000 0.00000 0.00000 0.01794 + 45 0.00000 0.00001 0.00114 -0.00027 -0.00210 0.00000 + 46 0.00000 0.00006 0.00515 0.00667 0.00554 0.00000 + 47 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 48 0.00000 0.00000 0.00002 0.00002 -0.00006 0.00000 + 49 0.00000 -0.00000 -0.00002 -0.00001 0.00004 0.00000 + 50 0.00000 0.00000 0.00006 0.00004 -0.00014 0.00000 + 51 0.00478 0.00000 0.00000 0.00000 0.00000 0.00001 + 52 0.00000 0.00000 0.00012 0.00008 0.00034 0.00000 + 53 0.00000 0.00012 0.01305 0.00524 0.02165 0.00000 + 54 0.00000 -0.00008 -0.00524 0.00255 -0.00924 0.00000 + 55 0.00000 -0.00034 -0.02165 -0.00924 -0.03340 0.00000 + 56 0.00001 0.00000 0.00000 0.00000 0.00000 0.00478 + 57 0.00000 0.00000 0.00002 0.00003 -0.00005 0.00000 + 58 0.00000 0.00076 0.02519 -0.00476 0.03729 0.00000 + 59 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 60 0.00000 0.00000 0.00083 0.00039 0.00153 0.00000 + + 31 32 33 34 35 36 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00509 0.00008 0.00008 0.00508 0.00000 0.00000 + 2 0.09301 0.00590 0.00588 0.09284 0.00000 0.00026 + 3 0.11685 -0.00738 0.00484 -0.12012 -0.00000 -0.00010 + 4 -0.03020 -0.00652 -0.00854 0.00954 -0.00000 -0.00057 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 0.00008 0.00509 0.00508 0.00008 0.00000 0.02955 + 7 0.00590 0.09301 0.09284 0.00588 0.02955 0.31761 + 8 0.00738 -0.11685 0.12012 -0.00484 -0.00980 -0.06996 + 9 0.00652 0.03020 -0.00954 0.00854 -0.04831 -0.34497 + 10 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 11 0.06102 0.00001 0.00527 0.00008 0.00000 0.00000 + 12 0.48575 0.00175 0.09535 0.00611 0.00000 0.00144 + 13 0.43567 -0.00297 0.03534 -0.00963 -0.00000 -0.00139 + 14 0.16041 -0.00110 -0.11815 0.00325 -0.00001 -0.00253 + 15 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 16 0.00001 0.06102 0.00008 0.00527 0.00000 0.00126 + 17 0.00175 0.48575 0.00611 0.09535 0.00126 0.04921 + 18 0.00297 -0.43567 0.00963 -0.03534 0.00094 0.02306 + 19 0.00110 -0.16041 -0.00325 0.11815 -0.00287 -0.07056 + 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 21 0.00526 0.00008 0.06126 0.00001 0.00000 0.00105 + 22 0.09520 0.00611 0.48673 0.00173 0.00105 0.04432 + 23 0.07165 -0.01016 0.36054 -0.00242 -0.00162 -0.04274 + 24 0.10018 0.00008 -0.29343 0.00199 -0.00199 -0.05240 + 25 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 26 0.00008 0.00526 0.00001 0.06126 0.00000 0.00000 + 27 0.00611 0.09520 0.00173 0.48673 0.00000 0.00158 + 28 0.01016 -0.07165 0.00242 -0.36054 0.00000 0.00045 + 29 -0.00008 -0.10018 -0.00199 0.29343 -0.00001 -0.00311 + 30 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 31 1.00000 0.00011 0.05049 0.00071 0.00000 0.00015 + 32 0.00011 1.00000 0.00071 0.05049 0.00113 0.03262 + 33 0.05049 0.00071 1.00000 0.00010 0.00087 0.02741 + 34 0.00071 0.05049 0.00010 1.00000 0.00000 0.00017 + 35 0.00000 0.00113 0.00087 0.00000 1.00000 0.24836 + 36 0.00015 0.03262 0.02741 0.00017 0.24836 1.00000 + 37 0.00019 -0.03181 0.03596 -0.00011 -0.00000 -0.00000 + 38 0.00024 0.03532 0.01884 0.00034 -0.00000 -0.00000 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 0.00113 0.00000 0.00000 0.00087 0.00000 0.00000 + 41 0.03262 0.00015 0.00017 0.02741 0.00000 0.00000 + 42 0.03181 -0.00019 0.00011 -0.03596 -0.00000 -0.00000 + 43 -0.03532 -0.00024 -0.00034 -0.01884 -0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 0.00001 0.06153 0.00248 0.00024 0.06070 0.48445 + 46 0.06153 0.00001 0.00024 0.00248 0.00000 0.00000 + 47 0.00000 0.00001 0.00089 0.00000 0.00000 0.04284 + 48 0.00004 0.00116 0.02792 0.00000 0.04284 0.39315 + 49 0.00003 -0.00144 0.02334 -0.00000 -0.04749 -0.27266 + 50 0.00007 0.00160 0.03404 0.00000 0.05283 0.30328 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00001 0.00000 0.00000 0.00089 0.00000 0.00000 + 53 0.00116 0.00004 0.00000 0.02792 0.00000 0.00000 + 54 0.00144 -0.00003 0.00000 -0.02334 -0.00000 -0.00000 + 55 -0.00160 -0.00007 -0.00000 -0.03404 -0.00000 -0.00000 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.00030 0.00024 0.08944 0.00000 0.00561 0.09966 + 58 0.00024 0.00030 0.00000 0.08944 0.00000 0.00000 + 59 0.00000 0.00025 0.00264 0.00000 0.00577 0.10177 + 60 0.00025 0.00000 0.00000 0.00264 0.00000 0.00000 + + 37 38 39 40 41 42 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 0.00000 0.00000 0.00000 0.02955 -0.00980 + 2 0.00010 0.00057 0.00000 0.02955 0.31761 -0.06996 + 3 0.00004 -0.00022 0.00000 0.00980 0.06996 0.15824 + 4 -0.00022 -0.00117 0.00000 0.04831 0.34497 -0.09697 + 5 0.00000 0.00000 0.00008 0.00000 0.00000 0.00000 + 6 0.00980 0.04831 0.00000 0.00000 0.00000 -0.00000 + 7 0.06996 0.34497 0.00000 0.00000 0.00026 -0.00010 + 8 0.15824 -0.09697 0.00000 0.00000 0.00010 0.00004 + 9 -0.09697 -0.30023 0.00000 0.00000 0.00057 -0.00022 + 10 0.00000 0.00000 0.17791 0.00000 0.00000 0.00000 + 11 0.00000 0.00001 0.00000 0.00000 0.00126 0.00094 + 12 0.00139 0.00253 0.00000 0.00126 0.04921 0.02306 + 13 -0.00089 -0.00250 0.00000 -0.00094 -0.02306 0.00828 + 14 -0.00250 -0.00407 0.00000 0.00287 0.07056 0.03624 + 15 0.00000 0.00000 0.00048 0.00000 0.00000 0.00000 + 16 -0.00094 0.00287 0.00000 0.00000 0.00000 -0.00000 + 17 -0.02306 0.07056 0.00000 0.00000 0.00144 -0.00139 + 18 0.00828 0.03624 0.00000 0.00000 0.00139 -0.00089 + 19 0.03624 -0.09075 0.00000 0.00001 0.00253 -0.00250 + 20 0.00000 0.00000 0.02013 0.00000 0.00000 0.00000 + 21 0.00162 0.00199 0.00000 0.00000 0.00000 0.00000 + 22 0.04274 0.05240 0.00000 0.00000 0.00158 0.00045 + 23 -0.02709 -0.05521 0.00000 -0.00000 -0.00045 0.00039 + 24 -0.05521 -0.04974 0.00000 0.00001 0.00311 0.00092 + 25 0.00000 0.00000 0.01794 0.00000 0.00000 0.00000 + 26 -0.00000 0.00001 0.00000 0.00000 0.00105 -0.00162 + 27 -0.00045 0.00311 0.00000 0.00105 0.04432 -0.04274 + 28 0.00039 0.00092 0.00000 0.00162 0.04274 -0.02709 + 29 0.00092 -0.00575 0.00000 0.00199 0.05240 -0.05521 + 30 0.00000 0.00000 0.00053 0.00000 0.00000 0.00000 + 31 0.00019 0.00024 0.00000 0.00113 0.03262 0.03181 + 32 -0.03181 0.03532 0.00000 0.00000 0.00015 -0.00019 + 33 0.03596 0.01884 0.00000 0.00000 0.00017 0.00011 + 34 -0.00011 0.00034 0.00000 0.00087 0.02741 -0.03596 + 35 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 36 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 37 1.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 38 0.00000 1.00000 0.00000 0.00000 0.00000 -0.00000 + 39 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 41 0.00000 0.00000 0.00000 0.24836 1.00000 0.00000 + 42 0.00000 -0.00000 0.00000 0.00000 0.00000 1.00000 + 43 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.45129 -0.10556 0.00000 0.00000 0.00000 -0.00000 + 46 0.00000 0.00000 0.00000 0.06070 0.48445 0.45129 + 47 0.04749 -0.05283 0.00000 0.00000 0.00000 -0.00000 + 48 0.27266 -0.30328 0.00000 0.00000 0.00000 -0.00000 + 49 -0.01650 0.28029 0.00000 0.00000 0.00000 0.00000 + 50 0.28029 -0.07629 0.00000 0.00000 0.00000 -0.00000 + 51 0.00000 0.00000 0.23549 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 0.04284 -0.04749 + 53 0.00000 0.00000 0.00000 0.04284 0.39315 -0.27266 + 54 0.00000 -0.00000 0.00000 0.04749 0.27266 -0.01650 + 55 -0.00000 -0.00000 0.00000 -0.05283 -0.30328 0.28029 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.11842 -0.04901 0.00000 0.00000 0.00000 0.00000 + 58 -0.00000 0.00000 0.00000 0.00561 0.09966 -0.11842 + 59 0.03569 -0.12555 0.00000 0.00000 0.00000 -0.00000 + 60 0.00000 0.00000 0.00000 0.00577 0.10177 -0.03569 + + 43 44 45 46 47 48 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.04831 0.00000 0.00000 0.00487 0.00000 0.00000 + 2 -0.34497 0.00000 0.00008 0.09007 0.00000 0.00001 + 3 -0.09697 0.00000 -0.00007 0.07314 0.00000 0.00000 + 4 -0.30023 0.00000 -0.00016 0.09177 -0.00000 -0.00002 + 5 0.00000 0.17791 0.00000 0.00000 0.00000 0.00000 + 6 -0.00000 0.00000 0.00487 0.00000 0.00000 0.00116 + 7 -0.00057 0.00000 0.09007 0.00008 0.00116 0.04688 + 8 -0.00022 0.00000 -0.07314 0.00007 0.00066 0.01682 + 9 -0.00117 0.00000 -0.09177 0.00016 -0.00272 -0.06907 + 10 0.00000 0.00008 0.00000 0.00000 0.00000 0.00000 + 11 -0.00287 0.00000 0.00000 0.00132 0.00000 0.00000 + 12 -0.07056 0.00000 0.00019 0.03624 0.00000 0.00018 + 13 0.03624 0.00000 -0.00024 0.00570 -0.00000 -0.00009 + 14 -0.09075 0.00000 -0.00030 0.05196 -0.00000 -0.00039 + 15 0.00000 0.02013 0.00000 0.00000 0.00000 0.00000 + 16 -0.00001 0.00000 0.00132 0.00000 0.00000 0.00000 + 17 -0.00253 0.00000 0.03624 0.00019 0.00000 0.00174 + 18 -0.00250 0.00000 -0.00570 0.00024 0.00000 0.00152 + 19 -0.00407 0.00000 -0.05196 0.00030 -0.00001 -0.00307 + 20 0.00000 0.00048 0.00000 0.00000 0.00000 0.00000 + 21 -0.00001 0.00000 0.00006 0.00001 0.00000 0.00012 + 22 -0.00311 0.00000 0.00515 0.00114 0.00012 0.01305 + 23 0.00092 0.00000 -0.00667 0.00027 -0.00008 -0.00524 + 24 -0.00575 0.00000 -0.00554 0.00210 -0.00034 -0.02165 + 25 0.00000 0.00053 0.00000 0.00000 0.00000 0.00000 + 26 -0.00199 0.00000 0.00001 0.00006 0.00000 0.00000 + 27 -0.05240 0.00000 0.00114 0.00515 0.00000 0.00002 + 28 -0.05521 0.00000 -0.00027 0.00667 0.00000 0.00002 + 29 -0.04974 0.00000 -0.00210 0.00554 -0.00000 -0.00006 + 30 0.00000 0.01794 0.00000 0.00000 0.00000 0.00000 + 31 -0.03532 0.00000 0.00001 0.06153 0.00000 0.00004 + 32 -0.00024 0.00000 0.06153 0.00001 0.00001 0.00116 + 33 -0.00034 0.00000 0.00248 0.00024 0.00089 0.02792 + 34 -0.01884 0.00000 0.00024 0.00248 0.00000 0.00000 + 35 -0.00000 0.00000 0.06070 0.00000 0.00000 0.04284 + 36 -0.00000 0.00000 0.48445 0.00000 0.04284 0.39315 + 37 -0.00000 0.00000 -0.45129 0.00000 0.04749 0.27266 + 38 -0.00000 0.00000 -0.10556 0.00000 -0.05283 -0.30328 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 + 41 0.00000 0.00000 0.00000 0.48445 0.00000 0.00000 + 42 0.00000 0.00000 -0.00000 0.45129 -0.00000 -0.00000 + 43 1.00000 0.00000 -0.00000 0.10556 -0.00000 -0.00000 + 44 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.00000 0.00000 1.00000 0.00000 0.00611 0.10604 + 46 0.10556 0.00000 0.00000 1.00000 0.00000 0.00000 + 47 -0.00000 0.00000 0.00611 0.00000 1.00000 0.24836 + 48 -0.00000 0.00000 0.10604 0.00000 0.24836 1.00000 + 49 -0.00000 0.00000 -0.12645 0.00000 -0.00000 0.00000 + 50 -0.00000 0.00000 0.04805 0.00000 -0.00000 -0.00000 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.05283 0.00000 0.00000 0.00611 0.00000 0.00000 + 53 0.30328 0.00000 0.00000 0.10604 0.00000 0.00000 + 54 0.28029 0.00000 -0.00000 0.12645 0.00000 0.00000 + 55 -0.07629 0.00000 -0.00000 -0.04805 0.00000 -0.00000 + 56 0.00000 0.23549 0.00000 0.00000 0.00000 0.00000 + 57 -0.00000 0.00000 0.01462 0.00000 0.06141 0.48732 + 58 0.04901 0.00000 0.00000 0.01462 0.00000 0.00000 + 59 -0.00000 0.00000 0.05493 0.00000 0.06131 0.48692 + 60 0.12555 0.00000 0.00000 0.05493 0.00000 0.00000 + + 49 50 51 52 53 54 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 0.00000 0.00000 0.00000 0.00116 0.00066 + 2 -0.00000 0.00002 0.00000 0.00116 0.04688 0.01682 + 3 0.00000 0.00000 0.00000 -0.00066 -0.01682 0.01248 + 4 0.00000 -0.00005 0.00000 0.00272 0.06907 0.02713 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 -0.00066 0.00272 0.00000 0.00000 0.00000 0.00000 + 7 -0.01682 0.06907 0.00000 0.00000 0.00001 0.00000 + 8 0.01248 0.02713 0.00000 -0.00000 -0.00000 0.00000 + 9 0.02713 -0.09229 0.00000 0.00000 0.00002 0.00000 + 10 0.00000 0.00000 0.01908 0.00000 0.00000 0.00000 + 11 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 12 0.00009 0.00039 0.00000 0.00000 0.00174 0.00152 + 13 0.00002 -0.00019 0.00000 -0.00000 -0.00152 -0.00079 + 14 -0.00019 -0.00082 0.00000 0.00001 0.00307 0.00277 + 15 0.00000 0.00000 0.00006 0.00000 0.00000 0.00000 + 16 -0.00000 0.00001 0.00000 0.00000 0.00000 -0.00000 + 17 -0.00152 0.00307 0.00000 0.00000 0.00018 -0.00009 + 18 -0.00079 0.00277 0.00000 0.00000 0.00009 0.00002 + 19 0.00277 -0.00501 0.00000 0.00000 0.00039 -0.00019 + 20 0.00000 0.00000 0.00058 0.00000 0.00000 0.00000 + 21 0.00008 0.00034 0.00000 0.00000 0.00000 0.00000 + 22 0.00524 0.02165 0.00000 0.00000 0.00002 0.00002 + 23 0.00255 -0.00924 0.00000 -0.00000 -0.00002 -0.00001 + 24 -0.00924 -0.03340 0.00000 0.00000 0.00006 0.00004 + 25 0.00000 0.00000 0.00478 0.00000 0.00000 0.00000 + 26 -0.00000 0.00000 0.00000 0.00000 0.00012 -0.00008 + 27 -0.00002 0.00006 0.00000 0.00012 0.01305 -0.00524 + 28 -0.00001 0.00004 0.00000 0.00008 0.00524 0.00255 + 29 0.00004 -0.00014 0.00000 0.00034 0.02165 -0.00924 + 30 0.00000 0.00000 0.00001 0.00000 0.00000 0.00000 + 31 0.00003 0.00007 0.00000 0.00001 0.00116 0.00144 + 32 -0.00144 0.00160 0.00000 0.00000 0.00004 -0.00003 + 33 0.02334 0.03404 0.00000 0.00000 0.00000 0.00000 + 34 -0.00000 0.00000 0.00000 0.00089 0.02792 -0.02334 + 35 -0.04749 0.05283 0.00000 0.00000 0.00000 -0.00000 + 36 -0.27266 0.30328 0.00000 0.00000 0.00000 -0.00000 + 37 -0.01650 0.28029 0.00000 0.00000 0.00000 0.00000 + 38 0.28029 -0.07629 0.00000 0.00000 0.00000 -0.00000 + 39 0.00000 0.00000 0.23549 0.00000 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.00000 0.04284 0.04749 + 41 0.00000 0.00000 0.00000 0.04284 0.39315 0.27266 + 42 0.00000 -0.00000 0.00000 -0.04749 -0.27266 -0.01650 + 43 -0.00000 -0.00000 0.00000 0.05283 0.30328 0.28029 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.12645 0.04805 0.00000 0.00000 0.00000 -0.00000 + 46 0.00000 0.00000 0.00000 0.00611 0.10604 0.12645 + 47 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 48 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 49 1.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 50 -0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 51 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 53 -0.00000 0.00000 0.00000 0.24836 1.00000 -0.00000 + 54 0.00000 0.00000 0.00000 0.00000 -0.00000 1.00000 + 55 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.45887 0.07655 0.00000 0.00000 0.00000 0.00000 + 58 -0.00000 0.00000 0.00000 0.06141 0.48732 -0.45887 + 59 -0.13400 -0.44525 0.00000 0.00000 0.00000 0.00000 + 60 -0.00000 0.00000 0.00000 0.06131 0.48692 0.13400 + + 55 56 57 58 59 60 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00272 0.00000 0.00000 0.00074 0.00000 0.00006 + 2 -0.06907 0.00000 0.00002 0.02468 0.00000 0.00481 + 3 0.02713 0.00000 0.00001 -0.02186 -0.00000 -0.00066 + 4 -0.09229 0.00000 -0.00005 0.02972 -0.00000 0.00811 + 5 0.00000 0.01908 0.00000 0.00000 0.00000 0.00000 + 6 -0.00000 0.00000 0.00074 0.00000 0.00006 0.00000 + 7 -0.00002 0.00000 0.02468 0.00002 0.00481 0.00000 + 8 0.00000 0.00000 0.02186 -0.00001 0.00066 0.00000 + 9 -0.00005 0.00000 -0.02972 0.00005 -0.00811 0.00000 + 10 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 11 -0.00001 0.00000 0.00000 0.00000 0.00000 0.00000 + 12 -0.00307 0.00000 0.00078 0.00068 0.00001 0.00019 + 13 0.00277 0.00000 0.00005 -0.00085 -0.00000 -0.00012 + 14 -0.00501 0.00000 -0.00148 0.00099 -0.00002 0.00038 + 15 0.00000 0.00058 0.00000 0.00000 0.00000 0.00000 + 16 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 17 -0.00039 0.00000 0.00068 0.00078 0.00019 0.00001 + 18 -0.00019 0.00000 0.00085 -0.00005 0.00012 0.00000 + 19 -0.00082 0.00000 -0.00099 0.00148 -0.00038 0.00002 + 20 0.00000 0.00006 0.00000 0.00000 0.00000 0.00000 + 21 -0.00000 0.00000 0.00076 0.00000 0.00000 0.00000 + 22 -0.00006 0.00000 0.02519 0.00002 0.00083 0.00000 + 23 0.00004 0.00000 0.00476 -0.00003 -0.00039 -0.00000 + 24 -0.00014 0.00000 -0.03729 0.00005 -0.00153 0.00000 + 25 0.00000 0.00001 0.00000 0.00000 0.00000 0.00000 + 26 -0.00034 0.00000 0.00000 0.00076 0.00000 0.00000 + 27 -0.02165 0.00000 0.00002 0.02519 0.00000 0.00083 + 28 -0.00924 0.00000 0.00003 -0.00476 0.00000 0.00039 + 29 -0.03340 0.00000 -0.00005 0.03729 -0.00000 0.00153 + 30 0.00000 0.00478 0.00000 0.00000 0.00000 0.00000 + 31 -0.00160 0.00000 0.00030 0.00024 0.00000 0.00025 + 32 -0.00007 0.00000 0.00024 0.00030 0.00025 0.00000 + 33 -0.00000 0.00000 0.08944 0.00000 0.00264 0.00000 + 34 -0.03404 0.00000 0.00000 0.08944 0.00000 0.00264 + 35 -0.00000 0.00000 0.00561 0.00000 0.00577 0.00000 + 36 -0.00000 0.00000 0.09966 0.00000 0.10177 0.00000 + 37 -0.00000 0.00000 0.11842 -0.00000 0.03569 0.00000 + 38 -0.00000 0.00000 -0.04901 0.00000 -0.12555 0.00000 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 -0.05283 0.00000 0.00000 0.00561 0.00000 0.00577 + 41 -0.30328 0.00000 0.00000 0.09966 0.00000 0.10177 + 42 0.28029 0.00000 0.00000 -0.11842 -0.00000 -0.03569 + 43 -0.07629 0.00000 -0.00000 0.04901 -0.00000 0.12555 + 44 0.00000 0.23549 0.00000 0.00000 0.00000 0.00000 + 45 -0.00000 0.00000 0.01462 0.00000 0.05493 0.00000 + 46 -0.04805 0.00000 0.00000 0.01462 0.00000 0.05493 + 47 0.00000 0.00000 0.06141 0.00000 0.06131 0.00000 + 48 -0.00000 0.00000 0.48732 0.00000 0.48692 0.00000 + 49 0.00000 0.00000 0.45887 -0.00000 -0.13400 -0.00000 + 50 -0.00000 0.00000 0.07655 0.00000 -0.44525 0.00000 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 + 53 0.00000 0.00000 0.00000 0.48732 0.00000 0.48692 + 54 -0.00000 0.00000 0.00000 -0.45887 0.00000 0.13400 + 55 1.00000 0.00000 -0.00000 -0.07655 -0.00000 0.44525 + 56 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 57 -0.00000 0.00000 1.00000 0.00000 0.14897 0.00000 + 58 -0.07655 0.00000 0.00000 1.00000 0.00000 0.14897 + 59 -0.00000 0.00000 0.14897 0.00000 1.00000 0.00000 + 60 0.44525 0.00000 0.00000 0.14897 0.00000 1.00000 + + Non-variational initial energy + ------------------------------ + + Total energy = -379.429467 + 1-e energy = -1401.451096 + 2-e energy = 576.084617 + HOMO = -0.037645 + LUMO = 0.163723 + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 ag 2 bu 3 ag 4 bu 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 ag 24 bu 25 bu + 26 ag 27 bu 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 bu + + + Starting SCF solution at 2.3s + + + + ---------------------------------------------- + Quadratically convergent ROHF + + Convergence threshold : 1.000E-04 + Maximum no. of iterations : 30 + Final Fock-matrix accuracy: 1.000E-07 + ---------------------------------------------- + + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% + + + iter energy gnorm gmax time + ----- ------------------- --------- --------- -------- + 1 -379.7024515658 7.56D-01 1.81D-01 2.4 + 2 -379.7670218883 1.53D-01 4.40D-02 2.4 + 3 -379.7689554257 6.43D-03 2.31D-03 2.5 + 4 -379.7689624910 3.37D-05 9.25D-06 2.6 + + + Final RHF results + ------------------ + + Total SCF energy = -379.768962491035 + One-electron energy = -1400.222183962455 + Two-electron energy = 574.516209303975 + Nuclear repulsion energy = 445.937012167446 + + Time for solution = 1.9s + + + + Symmetry analysis of molecular orbitals - final + ----------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 ag 44 bu 45 ag + + Final eigenvalues + ----------------- + + 1 + 1 -11.0406 + 2 -11.0405 + 3 -11.0316 + 4 -11.0316 + 5 -11.0290 + 6 -11.0288 + 7 -11.0286 + 8 -11.0286 + 9 -11.0175 + 10 -11.0175 + 11 -1.0903 + 12 -1.0203 + 13 -0.9749 + 14 -0.9503 + 15 -0.9096 + 16 -0.7999 + 17 -0.7628 + 18 -0.7276 + 19 -0.6968 + 20 -0.6281 + 21 -0.6057 + 22 -0.5729 + 23 -0.5536 + 24 -0.5532 + 25 -0.5254 + 26 -0.4967 + 27 -0.4925 + 28 -0.4637 + 29 -0.4464 + 30 -0.4217 + 31 -0.4156 + 32 -0.3770 + 33 -0.3151 + 34 -0.2784 + 35 -0.2222 + 36 0.1990 + 37 0.2685 + 38 0.3088 + 39 0.3971 + 40 0.5218 + 41 0.5650 + 42 0.5756 + 43 0.6216 + 44 0.6258 + 45 0.6582 + + ROHF Final Molecular Orbital Analysis + ------------------------------------- + + Vector 1 Occ=2.000000D+00 E=-1.104059D+01 Symmetry=bu + MO Center= -2.9D-14, -2.5D-13, 7.4D-20, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.701483 1 C s 6 -0.701483 2 C s + + Vector 2 Occ=2.000000D+00 E=-1.104052D+01 Symmetry=ag + MO Center= 3.3D-14, 1.5D-13, 6.2D-19, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.701542 1 C s 6 0.701542 2 C s + + Vector 3 Occ=2.000000D+00 E=-1.103159D+01 Symmetry=bu + MO Center= 2.1D-14, 1.0D-13, -8.9D-33, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.701357 11 C s 40 -0.701357 12 C s + + Vector 4 Occ=2.000000D+00 E=-1.103159D+01 Symmetry=ag + MO Center= -1.5D-12, 1.7D-12, 4.7D-18, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.701320 11 C s 40 0.701320 12 C s + + Vector 5 Occ=2.000000D+00 E=-1.102896D+01 Symmetry=bu + MO Center= -8.9D-15, 7.6D-16, -3.8D-33, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.594681 5 C s 26 -0.594681 6 C s + 11 0.372717 3 C s 16 -0.372717 4 C s + + Vector 6 Occ=2.000000D+00 E=-1.102883D+01 Symmetry=ag + MO Center= -5.5D-15, 9.9D-17, -1.8D-32, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.636098 5 C s 26 0.636098 6 C s + 11 0.296533 3 C s 16 0.296533 4 C s + + Vector 7 Occ=2.000000D+00 E=-1.102861D+01 Symmetry=bu + MO Center= 5.9D-15, -2.6D-14, -4.4D-32, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.594365 3 C s 16 -0.594365 4 C s + 21 -0.372219 5 C s 26 0.372219 6 C s + + Vector 8 Occ=2.000000D+00 E=-1.102859D+01 Symmetry=ag + MO Center= -2.3D-15, 1.9D-15, -9.1D-19, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.635860 3 C s 16 0.635860 4 C s + 21 -0.296035 5 C s 26 -0.296035 6 C s + + Vector 9 Occ=2.000000D+00 E=-1.101748D+01 Symmetry=bu + MO Center= 6.1D-11, -6.4D-10, -4.1D-18, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.701435 15 C s 52 -0.701435 16 C s + + Vector 10 Occ=2.000000D+00 E=-1.101748D+01 Symmetry=ag + MO Center= -6.0D-11, 6.4D-10, 7.0D-30, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.701435 15 C s 52 0.701435 16 C s + + Vector 11 Occ=2.000000D+00 E=-1.090299D+00 Symmetry=ag + MO Center= 3.8D-16, -5.7D-16, -3.2D-30, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.275368 1 C s 7 0.275368 2 C s + 12 0.247273 3 C s 17 0.247273 4 C s + 22 0.247126 5 C s 27 0.247126 6 C s + + Vector 12 Occ=2.000000D+00 E=-1.020254D+00 Symmetry=bu + MO Center= -6.8D-16, -1.8D-14, 5.5D-17, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.298699 11 C s 41 -0.298699 12 C s + 2 -0.270806 1 C s 7 0.270806 2 C s + 48 0.213652 15 C s 53 -0.213652 16 C s + + Vector 13 Occ=2.000000D+00 E=-9.749254D-01 Symmetry=ag + MO Center= 3.5D-15, 3.7D-15, -5.6D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.314473 11 C s 41 0.314473 12 C s + 48 0.310076 15 C s 53 0.310076 16 C s + + Vector 14 Occ=2.000000D+00 E=-9.503033D-01 Symmetry=bu + MO Center= 1.3D-15, -5.7D-15, -1.2D-16, r^2= 3.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.357133 3 C s 17 -0.357133 4 C s + 22 0.325008 5 C s 27 -0.325008 6 C s + + Vector 15 Occ=2.000000D+00 E=-9.096345D-01 Symmetry=bu + MO Center= 3.5D-16, 7.5D-15, 2.3D-32, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.292220 15 C s 53 -0.292220 16 C s + 2 0.279079 1 C s 7 -0.279079 2 C s + 22 -0.200698 5 C s 27 0.200698 6 C s + + Vector 16 Occ=2.000000D+00 E=-7.998830D-01 Symmetry=ag + MO Center= -2.9D-15, 1.9D-15, 2.4D-17, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.239926 15 C s 53 0.239926 16 C s + 22 0.229429 5 C s 27 0.229429 6 C s + 2 -0.212930 1 C s 7 -0.212930 2 C s + 14 -0.159170 3 C py 19 0.159170 4 C py + 36 -0.159504 11 C s 41 -0.159504 12 C s + + Vector 17 Occ=2.000000D+00 E=-7.628268D-01 Symmetry=ag + MO Center= 3.7D-15, 2.4D-15, -2.0D-18, r^2= 5.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.324855 3 C s 17 0.324855 4 C s + 3 0.189935 1 C px 8 -0.189935 2 C px + 22 -0.180804 5 C s 27 -0.180804 6 C s + 31 0.173636 7 H s 32 0.173636 8 H s + 24 0.169743 5 C py 29 -0.169743 6 C py + + Vector 18 Occ=2.000000D+00 E=-7.276317D-01 Symmetry=bu + MO Center= -8.5D-17, 2.4D-15, -9.9D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.297522 11 C s 41 -0.297522 12 C s + 48 -0.248206 15 C s 53 0.248206 16 C s + 45 0.174840 13 H s 46 -0.174840 14 H s + 57 -0.163892 17 H s 58 0.163892 18 H s + + Vector 19 Occ=2.000000D+00 E=-6.967772D-01 Symmetry=ag + MO Center= -9.3D-16, 0.0D+00, -1.1D-17, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.194626 5 C px 28 -0.194626 6 C px + 36 0.187351 11 C s 41 0.187351 12 C s + 13 0.174310 3 C px 18 -0.174310 4 C px + 2 -0.170808 1 C s 7 -0.170808 2 C s + 33 0.168856 9 H s 34 0.168856 10 H s + + Vector 20 Occ=2.000000D+00 E=-6.280522D-01 Symmetry=ag + MO Center= 5.1D-15, -3.5D-14, 7.8D-17, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.204700 15 C px 54 -0.204700 16 C px + 38 0.183205 11 C py 43 -0.183205 12 C py + 57 0.178852 17 H s 58 0.178852 18 H s + 45 -0.152733 13 H s 46 -0.152733 14 H s + + Vector 21 Occ=2.000000D+00 E=-6.056780D-01 Symmetry=bu + MO Center= -1.9D-15, 5.6D-14, -3.4D-18, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.215048 11 C px 42 0.215048 12 C px + 50 0.201798 15 C py 55 0.201798 16 C py + 14 0.181913 3 C py 19 0.181913 4 C py + 59 -0.179094 19 H s 60 0.179094 20 H s + 45 -0.165299 13 H s 46 0.165299 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.729426D-01 Symmetry=bu + MO Center= -1.0D-15, 2.1D-15, 1.3D-32, r^2= 7.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.234899 9 H s 34 -0.234899 10 H s + 31 -0.225759 7 H s 32 0.225759 8 H s + 2 0.223491 1 C s 7 -0.223491 2 C s + 13 -0.220802 3 C px 18 -0.220802 4 C px + 24 -0.179464 5 C py 29 -0.179464 6 C py + + Vector 23 Occ=2.000000D+00 E=-5.536035D-01 Symmetry=bu + MO Center= -2.3D-17, 1.9D-15, -4.2D-33, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.252837 15 C px 54 0.252837 16 C px + 23 0.248952 5 C px 28 0.248952 6 C px + 3 -0.221990 1 C px 8 -0.221990 2 C px + 57 0.222772 17 H s 58 -0.222772 18 H s + 38 0.178895 11 C py 43 0.178895 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.531658D-01 Symmetry=ag + MO Center= -5.5D-16, -2.7D-14, -1.5D-18, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.336239 15 C py 55 -0.336239 16 C py + 59 -0.268357 19 H s 60 -0.268357 20 H s + 37 0.248998 11 C px 42 -0.248998 12 C px + 45 -0.151363 13 H s 46 -0.151363 14 H s + + Vector 25 Occ=2.000000D+00 E=-5.253606D-01 Symmetry=bu + MO Center= -5.8D-16, -9.2D-16, 8.6D-34, r^2= 4.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.299404 3 C px 18 0.299404 4 C px + 31 0.258504 7 H s 32 -0.258504 8 H s + 24 -0.232845 5 C py 29 -0.232845 6 C py + 33 0.223596 9 H s 34 -0.223596 10 H s + 23 0.179046 5 C px 28 0.179046 6 C px + + Vector 26 Occ=2.000000D+00 E=-4.966990D-01 Symmetry=bu + MO Center= 3.3D-15, 1.0D-14, 2.3D-17, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.238942 15 C py 55 -0.238942 16 C py + 14 0.222972 3 C py 19 0.222972 4 C py + 37 -0.201999 11 C px 42 -0.201999 12 C px + 38 0.188759 11 C py 43 0.188759 12 C py + 24 -0.184876 5 C py 29 -0.184876 6 C py + + Vector 27 Occ=2.000000D+00 E=-4.925280D-01 Symmetry=ag + MO Center= -5.2D-15, -1.4D-14, -4.3D-30, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.296131 15 C px 54 -0.296131 16 C px + 57 0.273185 17 H s 58 0.273185 18 H s + 37 -0.209362 11 C px 42 0.209362 12 C px + 45 0.202959 13 H s 46 0.202959 14 H s + 31 -0.156851 7 H s 32 -0.156851 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.637308D-01 Symmetry=au + MO Center= 5.8D-16, 8.3D-17, -7.4D-17, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.331504 1 C pz 10 0.331504 2 C pz + 15 0.302831 3 C pz 20 0.302831 4 C pz + 25 0.301868 5 C pz 30 0.301868 6 C pz + 39 0.165577 11 C pz 44 0.165577 12 C pz + + Vector 29 Occ=2.000000D+00 E=-4.464302D-01 Symmetry=bu + MO Center= -6.8D-16, -7.8D-16, -4.5D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.257252 13 H s 46 -0.257252 14 H s + 4 0.243719 1 C py 9 0.243719 2 C py + 57 0.226298 17 H s 58 -0.226298 18 H s + 37 -0.214534 11 C px 42 -0.214534 12 C px + 59 -0.211967 19 H s 60 0.211967 20 H s + + Vector 30 Occ=2.000000D+00 E=-4.216550D-01 Symmetry=ag + MO Center= 3.3D-15, 8.0D-15, 4.6D-19, r^2= 5.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 -0.268212 3 C py 19 0.268212 4 C py + 4 0.260257 1 C py 9 -0.260257 2 C py + 33 -0.253899 9 H s 34 -0.253899 10 H s + 38 0.232935 11 C py 43 -0.232935 12 C py + 24 0.223473 5 C py 29 -0.223473 6 C py + + Vector 31 Occ=2.000000D+00 E=-4.156220D-01 Symmetry=ag + MO Center= 5.1D-16, -1.8D-15, 3.4D-18, r^2= 6.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.278853 1 C px 8 -0.278853 2 C px + 23 0.269038 5 C px 28 -0.269038 6 C px + 31 -0.251625 7 H s 32 -0.251625 8 H s + 13 -0.210356 3 C px 18 0.210356 4 C px + 45 -0.183775 13 H s 46 -0.183775 14 H s + + Vector 32 Occ=2.000000D+00 E=-3.769631D-01 Symmetry=bg + MO Center= -1.1D-16, 1.8D-14, 3.1D-17, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.383213 11 C pz 44 -0.383213 12 C pz + 5 -0.318675 1 C pz 10 0.318675 2 C pz + 51 0.306666 15 C pz 56 -0.306666 16 C pz + + Vector 33 Occ=2.000000D+00 E=-3.151268D-01 Symmetry=au + MO Center= 2.5D-14, -1.7D-14, -1.9D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.426295 15 C pz 56 0.426295 16 C pz + 39 0.415175 11 C pz 44 0.415175 12 C pz + 15 -0.164508 3 C pz 20 -0.164508 4 C pz + 25 -0.164934 5 C pz 30 -0.164934 6 C pz + + Vector 34 Occ=2.000000D+00 E=-2.783651D-01 Symmetry=bg + MO Center= -2.6D-14, 3.6D-15, 4.0D-17, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.459816 3 C pz 20 -0.459816 4 C pz + 25 0.461493 5 C pz 30 -0.461493 6 C pz + + Vector 35 Occ=2.000000D+00 E=-2.221904D-01 Symmetry=bg + MO Center= -3.5D-17, -3.9D-15, 1.2D-17, r^2= 7.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.417993 1 C pz 10 -0.417993 2 C pz + 51 0.358184 15 C pz 56 -0.358184 16 C pz + 15 0.231889 3 C pz 20 -0.231889 4 C pz + 25 -0.232000 5 C pz 30 0.232000 6 C pz + 39 0.218349 11 C pz 44 -0.218349 12 C pz + + Vector 36 Occ=0.000000D+00 E= 1.989924D-01 Symmetry=au + MO Center= -1.1D-16, -5.3D-14, 1.3D-16, r^2= 7.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.471534 1 C pz 10 0.471534 2 C pz + 51 -0.414928 15 C pz 56 -0.414928 16 C pz + 25 -0.278569 5 C pz 30 -0.278569 6 C pz + 15 -0.249973 3 C pz 20 -0.249973 4 C pz + 39 0.246934 11 C pz 44 0.246934 12 C pz + + Vector 37 Occ=0.000000D+00 E= 2.685138D-01 Symmetry=au + MO Center= 2.3D-16, -2.0D-16, 2.1D-19, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.578558 3 C pz 20 0.578558 4 C pz + 25 -0.558106 5 C pz 30 -0.558106 6 C pz + + Vector 38 Occ=0.000000D+00 E= 3.088252D-01 Symmetry=bg + MO Center= 1.7D-16, 5.5D-14, 1.9D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.531237 15 C pz 56 0.531237 16 C pz + 39 0.524391 11 C pz 44 -0.524391 12 C pz + 15 0.225543 3 C pz 20 -0.225543 4 C pz + 25 -0.220434 5 C pz 30 0.220434 6 C pz + + Vector 39 Occ=0.000000D+00 E= 3.970770D-01 Symmetry=au + MO Center= 4.2D-17, -2.7D-15, 5.5D-18, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.535070 11 C pz 44 0.535070 12 C pz + 5 -0.473494 1 C pz 10 -0.473494 2 C pz + 51 -0.407351 15 C pz 56 -0.407351 16 C pz + 25 0.186775 5 C pz 30 0.186775 6 C pz + 15 0.161862 3 C pz 20 0.161862 4 C pz + + Vector 40 Occ=0.000000D+00 E= 5.217566D-01 Symmetry=bg + MO Center= 9.7D-17, 1.8D-16, 2.6D-17, r^2= 3.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.538711 1 C pz 10 -0.538711 2 C pz + 15 -0.469482 3 C pz 20 0.469482 4 C pz + 25 0.471487 5 C pz 30 -0.471487 6 C pz + 39 0.278750 11 C pz 44 -0.278750 12 C pz + 51 -0.158475 15 C pz 56 0.158475 16 C pz + + Vector 41 Occ=0.000000D+00 E= 5.650160D-01 Symmetry=ag + MO Center= 3.8D-15, -4.1D-14, 1.8D-17, r^2= 8.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.434798 9 H s 34 0.434798 10 H s + 31 0.420942 7 H s 32 0.420942 8 H s + 2 -0.380055 1 C s 7 -0.380055 2 C s + 59 0.353828 19 H s 60 0.353828 20 H s + 38 0.323940 11 C py 43 -0.323940 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.755620D-01 Symmetry=bu + MO Center= 3.3D-15, 5.1D-15, -3.4D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.448702 13 H s 46 -0.448702 14 H s + 13 0.355546 3 C px 18 0.355546 4 C px + 37 0.350909 11 C px 42 0.350909 12 C px + 57 -0.321562 17 H s 58 0.321562 18 H s + 31 -0.318904 7 H s 32 0.318904 8 H s + + Vector 43 Occ=0.000000D+00 E= 6.215596D-01 Symmetry=ag + MO Center= 5.3D-15, -1.2D-15, -4.4D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.589566 13 H s 46 0.589566 14 H s + 12 0.397886 3 C s 17 0.397886 4 C s + 36 -0.394579 11 C s 41 -0.394579 12 C s + 57 -0.381363 17 H s 58 -0.381363 18 H s + 37 0.350692 11 C px 42 -0.350692 12 C px + + Vector 44 Occ=0.000000D+00 E= 6.258003D-01 Symmetry=bu + MO Center= -8.2D-15, 2.4D-14, 7.5D-17, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.529760 11 C s 41 -0.529760 12 C s + 4 0.453566 1 C py 9 0.453566 2 C py + 33 0.408895 9 H s 34 -0.408895 10 H s + 59 0.389457 19 H s 60 -0.389457 20 H s + 48 -0.337620 15 C s 53 0.337620 16 C s + + Vector 45 Occ=0.000000D+00 E= 6.582325D-01 Symmetry=ag + MO Center= -8.6D-16, 6.2D-15, -8.0D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.683576 15 C s 53 0.683576 16 C s + 22 0.582877 5 C s 27 0.582877 6 C s + 57 -0.541814 17 H s 58 -0.541814 18 H s + 12 -0.457382 3 C s 17 -0.457382 4 C s + 59 -0.330810 19 H s 60 -0.330810 20 H s + + Vector 46 Occ=0.000000D+00 E= 6.593956D-01 Symmetry=bu + MO Center= -1.2D-14, 5.9D-15, 1.6D-18, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.611116 5 C s 27 -0.611116 6 C s + 48 0.533506 15 C s 53 -0.533506 16 C s + 2 0.492301 1 C s 7 -0.492301 2 C s + 12 -0.461393 3 C s 17 0.461393 4 C s + 57 -0.460445 17 H s 58 0.460445 18 H s + + Vector 47 Occ=0.000000D+00 E= 6.771779D-01 Symmetry=bu + MO Center= 1.4D-14, 3.7D-14, 2.4D-17, r^2= 9.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.598268 7 H s 32 -0.598268 8 H s + 36 -0.467282 11 C s 41 0.467282 12 C s + 45 0.438025 13 H s 46 -0.438025 14 H s + 12 -0.361066 3 C s 17 0.361066 4 C s + 59 0.328681 19 H s 60 -0.328681 20 H s + + Vector 48 Occ=0.000000D+00 E= 6.941860D-01 Symmetry=ag + MO Center= -2.4D-16, -3.9D-16, -1.5D-17, r^2= 7.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.796664 1 C s 7 0.796664 2 C s + 36 -0.570541 11 C s 41 -0.570541 12 C s + 22 -0.469182 5 C s 27 -0.469182 6 C s + 12 -0.444286 3 C s 17 -0.444286 4 C s + 48 0.390409 15 C s 53 0.390409 16 C s + + Vector 49 Occ=0.000000D+00 E= 7.067096D-01 Symmetry=bu + MO Center= -3.6D-15, -3.8D-14, -5.3D-19, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.702329 15 C s 53 -0.702329 16 C s + 57 -0.514860 17 H s 58 0.514860 18 H s + 33 0.488194 9 H s 34 -0.488194 10 H s + 36 -0.430466 11 C s 41 0.430466 12 C s + 22 -0.425207 5 C s 27 0.425207 6 C s + + Vector 50 Occ=0.000000D+00 E= 7.401371D-01 Symmetry=ag + MO Center= 1.3D-15, -2.1D-15, 1.8D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.727765 3 C s 17 0.727765 4 C s + 22 -0.614468 5 C s 27 -0.614468 6 C s + 59 -0.456852 19 H s 60 -0.456852 20 H s + 48 0.397621 15 C s 53 0.397621 16 C s + 50 -0.372517 15 C py 55 0.372517 16 C py + + Vector 51 Occ=0.000000D+00 E= 8.022252D-01 Symmetry=ag + MO Center= 4.7D-16, 8.6D-16, -1.7D-17, r^2= 6.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.586839 1 C py 9 -0.586839 2 C py + 36 -0.485996 11 C s 41 -0.485996 12 C s + 2 -0.462721 1 C s 7 -0.462721 2 C s + 13 -0.446670 3 C px 18 0.446670 4 C px + 49 -0.358149 15 C px 54 0.358149 16 C px + + Vector 52 Occ=0.000000D+00 E= 8.256549D-01 Symmetry=bu + MO Center= 3.1D-15, -5.8D-15, -1.6D-17, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.642782 3 C s 17 -0.642782 4 C s + 3 -0.555346 1 C px 8 -0.555346 2 C px + 50 0.490164 15 C py 55 0.490164 16 C py + 24 -0.479529 5 C py 29 -0.479529 6 C py + 59 0.356459 19 H s 60 -0.356459 20 H s + + Vector 53 Occ=0.000000D+00 E= 8.606143D-01 Symmetry=ag + MO Center= -5.7D-16, -2.7D-15, -3.3D-18, r^2= 5.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.531368 3 C px 18 -0.531368 4 C px + 23 -0.518376 5 C px 28 0.518376 6 C px + 33 0.509444 9 H s 34 0.509444 10 H s + 31 -0.441690 7 H s 32 -0.441690 8 H s + 24 0.395281 5 C py 29 -0.395281 6 C py + + Vector 54 Occ=0.000000D+00 E= 8.877568D-01 Symmetry=bu + MO Center= -1.2D-15, -5.2D-16, -2.0D-17, r^2= 5.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 0.716776 3 C py 19 0.716776 4 C py + 22 0.610590 5 C s 27 -0.610590 6 C s + 36 -0.434047 11 C s 41 0.434047 12 C s + 24 0.382161 5 C py 29 0.382161 6 C py + 2 -0.361718 1 C s 7 0.361718 2 C s + + Vector 55 Occ=0.000000D+00 E= 9.210085D-01 Symmetry=bu + MO Center= -1.3D-15, 1.4D-15, -1.7D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.648636 1 C s 7 -0.648636 2 C s + 49 -0.507370 15 C px 54 -0.507370 16 C px + 38 0.482570 11 C py 43 0.482570 12 C py + 23 -0.393564 5 C px 28 -0.393564 6 C px + 57 0.345389 17 H s 58 -0.345389 18 H s + + Vector 56 Occ=0.000000D+00 E= 9.399496D-01 Symmetry=ag + MO Center= 1.4D-17, 3.7D-15, -5.4D-18, r^2= 9.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.556681 11 C px 42 -0.556681 12 C px + 50 -0.539847 15 C py 55 0.539847 16 C py + 14 0.392199 3 C py 19 -0.392199 4 C py + 4 -0.359948 1 C py 9 0.359948 2 C py + 24 0.326779 5 C py 29 -0.326779 6 C py + + Vector 57 Occ=0.000000D+00 E= 9.902851D-01 Symmetry=ag + MO Center= -2.0D-15, -1.7D-14, -1.5D-19, r^2= 9.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.680160 11 C py 43 -0.680160 12 C py + 49 -0.583682 15 C px 54 0.583682 16 C px + 24 -0.429950 5 C py 29 0.429950 6 C py + 4 -0.411894 1 C py 9 0.411894 2 C py + 14 -0.365147 3 C py 19 0.365147 4 C py + + Vector 58 Occ=0.000000D+00 E= 1.027265D+00 Symmetry=bu + MO Center= 1.3D-15, 1.7D-14, -4.6D-17, r^2= 9.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.608350 11 C px 42 0.608350 12 C px + 50 -0.536814 15 C py 55 -0.536814 16 C py + 48 -0.526962 15 C s 53 0.526962 16 C s + 3 -0.468612 1 C px 8 -0.468612 2 C px + 38 -0.458225 11 C py 43 -0.458225 12 C py + + Vector 59 Occ=0.000000D+00 E= 1.107700D+00 Symmetry=ag + MO Center= -2.8D-16, 1.8D-15, -1.8D-18, r^2= 5.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.712025 1 C px 8 -0.712025 2 C px + 14 -0.548009 3 C py 19 0.548009 4 C py + 23 -0.444243 5 C px 28 0.444243 6 C px + 24 -0.423224 5 C py 29 0.423224 6 C py + 37 0.414788 11 C px 42 -0.414788 12 C px + + Vector 60 Occ=0.000000D+00 E= 1.124935D+00 Symmetry=bu + MO Center= -1.7D-16, 8.1D-16, 4.6D-18, r^2= 3.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.662430 1 C py 9 0.662430 2 C py + 13 -0.566300 3 C px 18 -0.566300 4 C px + 23 0.494107 5 C px 28 0.494107 6 C px + 22 -0.411545 5 C s 27 0.411545 6 C s + 24 -0.394345 5 C py 29 -0.394345 6 C py + + + Final MO vectors + ---------------- + + + global array: scf_init: MOs[1:60,1:60], handle: -1000 + + 1 2 3 4 5 6 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.70148 0.70154 -0.00965 0.00998 0.00164 -0.00338 + 2 0.02526 0.02518 0.00379 -0.00374 0.00165 -0.00632 + 3 -0.00000 0.00004 0.00047 -0.00047 -0.00361 0.00164 + 4 -0.00066 -0.00045 0.00294 -0.00293 0.00008 0.00193 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 -0.70148 0.70154 0.00965 0.00998 -0.00164 -0.00338 + 7 -0.02526 0.02518 -0.00379 -0.00374 -0.00165 -0.00632 + 8 -0.00000 -0.00004 0.00047 0.00047 -0.00361 -0.00164 + 9 -0.00066 0.00045 0.00294 0.00293 0.00008 -0.00193 + 10 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 11 0.00581 0.00321 0.00369 -0.00628 0.37272 0.29653 + 12 -0.00477 -0.00461 0.00007 -0.00019 0.00915 0.00633 + 13 0.00242 0.00243 -0.00000 0.00006 0.00007 0.00034 + 14 -0.00200 -0.00203 0.00003 -0.00001 0.00237 0.00275 + 15 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 16 -0.00581 0.00321 -0.00369 -0.00628 -0.37272 0.29653 + 17 0.00477 -0.00461 -0.00007 -0.00019 -0.00915 0.00633 + 18 0.00242 -0.00243 -0.00000 -0.00006 0.00007 -0.00034 + 19 -0.00200 0.00203 0.00003 0.00001 0.00237 -0.00275 + 20 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 21 -0.00580 0.00327 -0.00243 -0.00515 0.59468 0.63610 + 22 0.00473 -0.00456 0.00002 -0.00009 0.01884 0.02091 + 23 -0.00291 0.00292 0.00002 0.00007 -0.00077 -0.00054 + 24 -0.00110 0.00113 -0.00000 -0.00002 -0.00110 -0.00094 + 25 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 26 0.00580 0.00327 0.00243 -0.00515 -0.59468 0.63610 + 27 -0.00473 -0.00456 -0.00002 -0.00009 -0.01884 0.02091 + 28 -0.00291 -0.00292 0.00002 -0.00007 -0.00077 0.00054 + 29 -0.00110 -0.00113 -0.00000 0.00002 -0.00110 0.00094 + 30 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 31 0.00006 -0.00002 -0.00001 0.00001 -0.00239 -0.00203 + 32 -0.00006 -0.00002 0.00001 0.00001 0.00239 -0.00203 + 33 -0.00005 -0.00003 -0.00009 -0.00009 -0.00393 -0.00436 + 34 0.00005 -0.00003 0.00009 -0.00009 0.00393 -0.00436 + 35 0.00891 -0.00924 0.70136 0.70132 0.00014 0.00744 + 36 0.00449 -0.00455 0.02500 0.02499 0.00007 0.00041 + 37 0.00063 -0.00064 0.00051 0.00051 -0.00003 0.00004 + 38 0.00288 -0.00292 -0.00065 -0.00065 0.00005 -0.00002 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 -0.00891 -0.00924 -0.70136 0.70132 -0.00014 0.00744 + 41 -0.00449 -0.00455 -0.02500 0.02499 -0.00007 0.00041 + 42 0.00063 0.00064 0.00051 -0.00051 -0.00003 -0.00004 + 43 0.00288 0.00292 -0.00065 0.00065 0.00005 0.00002 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.00009 0.00009 -0.00478 -0.00478 -0.00000 -0.00013 + 46 0.00009 0.00009 0.00478 -0.00478 0.00000 -0.00013 + 47 0.00052 -0.00049 0.01784 0.01784 -0.00075 -0.00094 + 48 -0.00018 0.00019 -0.00474 -0.00474 -0.00004 -0.00017 + 49 -0.00004 0.00004 0.00211 0.00211 -0.00004 -0.00001 + 50 -0.00010 0.00010 -0.00239 -0.00239 -0.00003 -0.00011 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 -0.00052 -0.00049 -0.01784 0.01784 0.00075 -0.00094 + 53 0.00018 0.00019 0.00474 -0.00474 0.00004 -0.00017 + 54 -0.00004 -0.00004 0.00211 -0.00211 -0.00004 0.00001 + 55 -0.00010 -0.00010 -0.00239 0.00239 -0.00003 0.00011 + 56 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 57 0.00010 -0.00010 -0.00006 -0.00006 0.00009 0.00010 + 58 -0.00010 -0.00010 0.00006 -0.00006 -0.00009 0.00010 + 59 0.00002 -0.00002 -0.00004 -0.00004 -0.00001 -0.00001 + 60 -0.00002 -0.00002 0.00004 -0.00004 0.00001 -0.00001 + + 7 8 9 10 11 12 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00716 -0.00117 -0.00027 0.00024 -0.10669 0.10127 + 2 -0.00713 -0.00230 -0.00027 0.00027 0.27537 -0.27081 + 3 -0.00043 -0.00336 -0.00005 0.00005 -0.00529 -0.00407 + 4 0.00237 0.00137 -0.00012 0.00012 -0.03821 -0.03177 + 5 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 6 0.00716 -0.00117 0.00027 0.00024 -0.10669 -0.10127 + 7 0.00713 -0.00230 0.00027 0.00027 0.27537 0.27081 + 8 -0.00043 0.00336 -0.00005 -0.00005 0.00529 -0.00407 + 9 0.00237 -0.00137 -0.00012 -0.00012 0.03821 -0.03177 + 10 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 11 0.59436 0.63586 -0.00026 0.00041 -0.09665 0.03774 + 12 0.02429 0.02493 0.00001 -0.00007 0.24727 -0.10004 + 13 -0.00099 -0.00071 -0.00001 0.00002 -0.05226 0.02862 + 14 -0.00193 -0.00161 0.00006 -0.00002 -0.01452 -0.05673 + 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 16 -0.59436 0.63586 0.00026 0.00041 -0.09665 -0.03774 + 17 -0.02429 0.02493 -0.00001 -0.00007 0.24727 0.10004 + 18 -0.00099 0.00071 -0.00001 -0.00002 0.05226 0.02862 + 19 -0.00193 0.00161 0.00006 0.00002 0.01452 -0.05673 + 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 21 -0.37222 -0.29604 0.00107 0.00108 -0.09646 -0.04167 + 22 -0.01788 -0.01502 0.00000 -0.00001 0.24713 0.11107 + 23 -0.00002 -0.00025 0.00001 0.00000 -0.04467 -0.04526 + 24 -0.00292 -0.00308 0.00009 0.00008 0.03103 -0.04400 + 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 26 0.37222 -0.29604 -0.00107 0.00108 -0.09646 0.04167 + 27 0.01788 -0.01502 -0.00000 -0.00001 0.24713 -0.11107 + 28 -0.00002 0.00025 0.00001 -0.00000 0.04467 -0.04526 + 29 -0.00292 0.00308 0.00009 -0.00008 -0.03103 -0.04400 + 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 31 -0.00405 -0.00433 0.00000 -0.00000 0.04417 -0.02580 + 32 0.00405 -0.00433 -0.00000 -0.00000 0.04417 0.02580 + 33 0.00261 0.00202 0.00005 0.00006 0.04439 0.02948 + 34 -0.00261 0.00202 -0.00005 0.00006 0.04439 -0.02948 + 35 -0.00456 0.00356 -0.01740 -0.01739 -0.04969 -0.11307 + 36 -0.00046 0.00018 -0.00604 -0.00604 0.12875 0.29870 + 37 -0.00007 0.00001 -0.00218 -0.00218 0.01431 0.03768 + 38 -0.00009 -0.00002 0.00239 0.00239 0.02732 0.00637 + 39 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 40 0.00456 0.00356 0.01740 -0.01739 -0.04969 0.11307 + 41 0.00046 0.00018 0.00604 -0.00604 0.12875 -0.29870 + 42 -0.00007 -0.00001 -0.00218 0.00218 -0.01431 0.03768 + 43 -0.00009 0.00002 0.00239 -0.00239 -0.02732 0.00637 + 44 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 45 0.00010 -0.00006 0.00017 0.00017 0.02537 0.06663 + 46 -0.00010 -0.00006 -0.00017 0.00017 0.02537 -0.06663 + 47 0.00066 0.00018 0.70143 0.70143 -0.02518 -0.08141 + 48 0.00014 -0.00004 0.02536 0.02536 0.06484 0.21365 + 49 0.00000 0.00003 -0.00077 -0.00077 -0.01330 -0.03922 + 50 0.00008 -0.00003 0.00082 0.00082 0.02040 0.05117 + 51 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 52 -0.00066 0.00018 -0.70143 0.70143 -0.02518 0.08141 + 53 -0.00014 -0.00004 -0.02536 0.02536 0.06484 -0.21365 + 54 0.00000 -0.00003 -0.00077 0.00077 0.01330 -0.03922 + 55 0.00008 0.00003 0.00082 -0.00082 -0.02040 0.05117 + 56 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 57 -0.00007 -0.00006 -0.00473 -0.00473 0.01401 0.04892 + 58 0.00007 -0.00006 0.00473 -0.00473 0.01401 -0.04892 + 59 0.00001 -0.00000 -0.00475 -0.00475 0.01084 0.04446 + 60 -0.00001 -0.00000 0.00475 -0.00475 0.01084 -0.04446 + + 13 14 15 16 17 18 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00297 -0.01206 -0.10028 0.07233 0.05043 -0.01130 + 2 0.01021 0.03299 0.27908 -0.21293 -0.15131 0.03251 + 3 0.01072 0.12512 -0.01858 -0.11392 0.18994 -0.05062 + 4 0.09341 -0.02334 -0.05879 -0.07380 -0.06338 -0.13855 + 5 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 6 -0.00297 0.01206 0.10028 0.07233 0.05043 0.01130 + 7 0.01021 -0.03299 -0.27908 -0.21293 -0.15131 -0.03251 + 8 -0.01072 0.12512 -0.01858 0.11392 -0.18994 -0.05062 + 9 -0.09341 -0.02334 -0.05879 0.07380 0.06338 -0.13855 + 10 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 11 0.04598 -0.13091 -0.04228 -0.00068 -0.10905 -0.04827 + 12 -0.12241 0.35713 0.11798 0.00038 0.32485 0.14794 + 13 0.01557 -0.00206 -0.03981 0.03447 0.07474 -0.00499 + 14 0.03503 -0.05907 0.09190 -0.15917 0.04222 0.00882 + 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 16 0.04598 0.13091 0.04228 -0.00068 -0.10905 0.04827 + 17 -0.12241 -0.35713 -0.11798 0.00038 0.32485 -0.14794 + 18 -0.01557 -0.00206 -0.03981 -0.03447 -0.07474 -0.00499 + 19 -0.03503 -0.05907 0.09190 0.15917 -0.04222 0.00882 + 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 21 0.04178 -0.11920 0.07212 -0.07935 0.06026 0.03028 + 22 -0.11047 0.32501 -0.20070 0.22943 -0.18080 -0.09235 + 23 0.00187 0.03044 0.05768 0.06813 0.08309 0.03409 + 24 -0.04440 0.06952 0.04833 0.03027 0.16974 0.07638 + 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 26 0.04178 0.11920 -0.07212 -0.07935 0.06026 -0.03028 + 27 -0.11047 -0.32501 0.20070 0.22943 -0.18080 0.09235 + 28 -0.00187 0.03044 0.05768 -0.06813 -0.08309 0.03409 + 29 0.04440 0.06952 0.04833 -0.03027 -0.16974 0.07638 + 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 31 -0.02382 0.09808 0.03404 -0.01381 0.17364 0.05184 + 32 -0.02382 -0.09808 -0.03404 -0.01381 0.17364 -0.05184 + 33 -0.01812 0.08988 -0.05447 0.10625 -0.09277 -0.05588 + 34 -0.01812 -0.08988 0.05447 0.10625 -0.09277 0.05588 + 35 -0.11765 0.00033 -0.05074 0.05255 0.00696 -0.09654 + 36 0.31447 -0.00141 0.13620 -0.15950 -0.02294 0.29752 + 37 0.04856 0.01960 0.04017 0.07656 -0.04227 -0.11268 + 38 -0.05856 -0.01676 -0.12811 -0.13284 -0.07422 0.04537 + 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 40 -0.11765 -0.00033 0.05074 0.05255 0.00696 0.09654 + 41 0.31447 0.00141 -0.13620 -0.15950 -0.02294 -0.29752 + 42 -0.04856 0.01960 0.04017 -0.07656 0.04227 -0.11268 + 43 0.05856 -0.01676 -0.12811 0.13284 0.07422 0.04537 + 44 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 45 0.07614 -0.00904 0.03781 -0.08110 0.03153 0.17484 + 46 0.07614 0.00904 -0.03781 -0.08110 0.03153 -0.17484 + 47 -0.11635 -0.01271 -0.10674 -0.08250 -0.03462 0.08032 + 48 0.31008 0.03382 0.29222 0.23993 0.10374 -0.24821 + 49 -0.05070 0.00083 -0.03515 0.03354 -0.01185 -0.11853 + 50 0.05563 0.00584 0.02111 -0.03806 -0.04423 0.09244 + 51 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 52 -0.11635 0.01271 0.10674 -0.08250 -0.03462 -0.08032 + 53 0.31008 -0.03382 -0.29222 0.23993 0.10374 0.24821 + 54 0.05070 0.00083 -0.03515 -0.03354 0.01185 -0.11853 + 55 -0.05563 0.00584 0.02111 0.03806 0.04423 0.09244 + 56 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 57 0.07436 0.01269 0.07688 0.10484 0.02247 -0.16389 + 58 0.07436 -0.01269 -0.07688 0.10484 0.02247 0.16389 + 59 0.07480 0.00781 0.08811 0.10145 0.06533 -0.13085 + 60 0.07480 -0.00781 -0.08811 0.10145 0.06533 0.13085 + + 19 20 21 22 23 24 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.05635 -0.02870 0.02569 -0.06597 -0.01971 0.01990 + 2 -0.17081 0.09582 -0.08867 0.22349 0.06676 -0.06515 + 3 -0.01908 0.04971 0.11788 0.10050 -0.22199 -0.01364 + 4 0.13510 0.13632 -0.13269 -0.03061 -0.13927 -0.00811 + 5 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 6 0.05635 -0.02870 -0.02569 0.06597 0.01971 0.01990 + 7 -0.17081 0.09582 0.08867 -0.22349 -0.06676 -0.06515 + 8 0.01908 -0.04971 0.11788 0.10050 -0.22199 0.01364 + 9 -0.13510 -0.13632 -0.13269 -0.03061 -0.13927 0.00811 + 10 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 11 -0.00739 -0.01171 -0.02327 0.04508 -0.00178 -0.02313 + 12 0.02548 0.04483 0.07841 -0.15396 0.00340 0.07690 + 13 0.17431 0.14312 0.02854 -0.22080 0.00235 -0.00636 + 14 -0.09610 0.13702 0.18191 0.06810 -0.11758 -0.08071 + 15 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 16 -0.00739 -0.01171 0.02327 -0.04508 0.00178 -0.02313 + 17 0.02548 0.04483 -0.07841 0.15396 -0.00340 0.07690 + 18 -0.17431 -0.14312 0.02854 -0.22080 0.00235 0.00636 + 19 0.09610 -0.13702 0.18191 0.06810 -0.11758 0.08071 + 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 21 -0.04991 0.01688 0.04175 -0.04083 0.01136 0.01619 + 22 0.15823 -0.04801 -0.13643 0.14102 -0.03587 -0.05945 + 23 0.19463 0.09267 -0.10371 0.11539 0.24895 -0.03894 + 24 -0.02349 -0.13871 -0.09327 -0.17946 0.06138 0.13432 + 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 26 -0.04991 0.01688 -0.04175 0.04083 -0.01136 0.01619 + 27 0.15823 -0.04801 0.13643 -0.14102 0.03587 -0.05945 + 28 -0.19463 -0.09267 -0.10371 0.11539 0.24895 0.03894 + 29 0.02349 0.13871 -0.09327 -0.17946 0.06138 -0.13432 + 30 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 31 0.09884 0.14691 0.11132 -0.22576 -0.03144 0.00351 + 32 0.09884 0.14691 -0.11132 0.22576 0.03144 0.00351 + 33 0.16886 0.10361 -0.07136 0.23490 0.12912 -0.11659 + 34 0.16886 0.10361 0.07136 -0.23490 -0.12912 -0.11659 + 35 -0.06065 0.03501 -0.01410 -0.01560 -0.00245 -0.02553 + 36 0.18735 -0.11049 0.04410 0.04398 0.01483 0.07453 + 37 -0.07122 0.11003 0.21505 0.04703 -0.04675 0.24900 + 38 -0.01009 0.18321 0.10305 -0.11921 0.17890 -0.08633 + 39 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 40 -0.06065 0.03501 0.01410 0.01560 0.00245 -0.02553 + 41 0.18735 -0.11049 -0.04410 -0.04398 -0.01483 0.07453 + 42 0.07122 -0.11003 0.21505 0.04703 -0.04675 -0.24900 + 43 0.01009 -0.18321 0.10305 -0.11921 0.17890 0.08633 + 44 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 45 0.12516 -0.15273 -0.16530 0.01754 0.01423 -0.15136 + 46 0.12516 -0.15273 0.16530 -0.01754 -0.01423 -0.15136 + 47 0.05078 -0.01416 0.00664 0.01166 0.00119 -0.00364 + 48 -0.16147 0.05373 -0.02492 -0.04742 0.00610 -0.00095 + 49 -0.08644 0.20470 0.09073 -0.06668 0.25284 -0.01509 + 50 0.08198 0.01235 0.20180 0.14421 0.03561 0.33624 + 51 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 52 0.05078 -0.01416 -0.00664 -0.01166 -0.00119 -0.00364 + 53 -0.16147 0.05373 0.02492 0.04742 -0.00610 -0.00095 + 54 0.08644 -0.20470 0.09073 -0.06668 0.25284 0.01509 + 55 -0.08198 -0.01235 0.20180 0.14421 0.03561 -0.33624 + 56 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 57 -0.10616 0.17885 0.08017 -0.03906 0.22277 0.02576 + 58 -0.10616 0.17885 -0.08017 0.03906 -0.22277 0.02576 + 59 -0.10015 -0.02920 -0.17909 -0.11802 -0.09032 -0.26836 + 60 -0.10015 -0.02920 0.17909 0.11802 0.09032 -0.26836 + + 25 26 27 28 29 30 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00257 0.00260 0.02328 0.00000 -0.00983 -0.00210 + 2 -0.00864 -0.00952 -0.08354 -0.00000 0.04304 0.01635 + 3 -0.08356 0.17616 0.08391 -0.00000 0.09381 -0.16359 + 4 0.07383 -0.17697 0.00418 0.00000 0.24372 0.26026 + 5 -0.00000 0.00000 0.00000 0.33150 -0.00000 -0.00000 + 6 -0.00257 -0.00260 0.02328 0.00000 0.00983 -0.00210 + 7 0.00864 0.00952 -0.08354 -0.00000 -0.04304 0.01635 + 8 -0.08356 0.17616 -0.08391 -0.00000 0.09381 0.16359 + 9 0.07383 -0.17697 -0.00418 0.00000 0.24372 -0.26026 + 10 -0.00000 0.00000 0.00000 0.33150 0.00000 0.00000 + 11 0.02569 -0.01703 0.00423 0.00000 0.00744 0.00407 + 12 -0.08248 0.06113 -0.02149 -0.00000 -0.02348 -0.01323 + 13 0.29940 -0.11128 -0.12658 0.00000 0.06660 0.15890 + 14 0.15374 0.22297 -0.13207 -0.00000 0.03473 -0.26821 + 15 -0.00000 0.00000 0.00000 0.30283 -0.00000 -0.00000 + 16 -0.02569 0.01703 0.00423 -0.00000 -0.00744 0.00407 + 17 0.08248 -0.06113 -0.02149 0.00000 0.02348 -0.01323 + 18 0.29940 -0.11128 0.12658 0.00000 0.06660 -0.15890 + 19 0.15374 0.22297 0.13207 -0.00000 0.03473 0.26821 + 20 -0.00000 0.00000 0.00000 0.30283 -0.00000 0.00000 + 21 0.01847 0.00605 -0.00713 -0.00000 -0.01378 -0.00966 + 22 -0.05932 -0.01702 0.02414 0.00000 0.04753 0.02840 + 23 0.17905 -0.07790 0.06229 0.00000 -0.14407 -0.11753 + 24 -0.23285 -0.18488 0.13677 0.00000 -0.01059 0.22347 + 25 -0.00000 0.00000 0.00000 0.30187 0.00000 0.00000 + 26 -0.01847 -0.00605 -0.00713 0.00000 0.01378 -0.00966 + 27 0.05932 0.01702 0.02414 -0.00000 -0.04753 0.02840 + 28 0.17905 -0.07790 -0.06229 0.00000 -0.14407 0.11753 + 29 -0.23285 -0.18488 -0.13677 0.00000 -0.01059 -0.22347 + 30 -0.00000 0.00000 0.00000 0.30187 0.00000 -0.00000 + 31 0.25850 -0.00250 -0.15685 -0.00000 0.04885 0.05277 + 32 -0.25850 0.00250 -0.15685 -0.00000 -0.04885 0.05277 + 33 0.22360 0.03999 -0.00010 -0.00000 -0.05941 -0.25390 + 34 -0.22360 -0.03999 -0.00010 0.00000 0.05941 -0.25390 + 35 -0.00158 0.00086 -0.01510 -0.00000 0.00351 -0.01752 + 36 0.00361 0.01230 0.06315 0.00000 -0.01123 0.07388 + 37 -0.02371 -0.20200 -0.20936 0.00000 -0.21453 0.02592 + 38 -0.05915 0.18876 0.08025 -0.00000 -0.17918 0.23293 + 39 -0.00000 0.00000 0.00000 0.16558 0.00000 0.00000 + 40 0.00158 -0.00086 -0.01510 -0.00000 -0.00351 -0.01752 + 41 -0.00361 -0.01230 0.06315 0.00000 0.01123 0.07388 + 42 -0.02371 -0.20200 0.20936 0.00000 -0.21453 -0.02592 + 43 -0.05915 0.18876 -0.08025 -0.00000 -0.17918 -0.23293 + 44 -0.00000 -0.00000 -0.00000 0.16558 0.00000 -0.00000 + 45 0.02240 0.14844 0.20296 -0.00000 0.25725 -0.04644 + 46 -0.02240 -0.14844 0.20296 0.00000 -0.25725 -0.04644 + 47 0.00434 0.01891 0.00989 -0.00000 0.00268 0.00872 + 48 -0.01686 -0.05201 -0.02602 0.00000 -0.01229 -0.02347 + 49 -0.07124 0.12590 0.29613 -0.00000 0.19454 0.03662 + 50 -0.01404 -0.23894 0.05034 0.00000 0.14136 -0.13811 + 51 -0.00000 0.00000 0.00000 0.09914 0.00000 0.00000 + 52 -0.00434 -0.01891 0.00989 0.00000 -0.00268 0.00872 + 53 0.01686 0.05201 -0.02602 -0.00000 0.01229 -0.02347 + 54 -0.07124 0.12590 -0.29613 -0.00000 0.19454 -0.03662 + 55 -0.01404 -0.23894 -0.05034 0.00000 0.14136 0.13811 + 56 -0.00000 -0.00000 -0.00000 0.09914 0.00000 -0.00000 + 57 -0.05652 0.05847 0.27318 -0.00000 0.22630 -0.03215 + 58 0.05652 -0.05847 0.27318 0.00000 -0.22630 -0.03215 + 59 0.02227 0.15354 -0.14587 -0.00000 -0.21197 0.12146 + 60 -0.02227 -0.15354 -0.14587 0.00000 0.21197 0.12146 + + 31 32 33 34 35 36 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00629 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 2 0.03168 0.00000 0.00000 0.00000 -0.00000 0.00000 + 3 0.27885 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 4 0.12972 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 5 -0.00000 -0.31868 -0.03965 -0.00225 0.41799 0.47153 + 6 -0.00629 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 7 0.03168 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 8 -0.27885 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 9 -0.12972 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 10 0.00000 0.31868 -0.03965 0.00225 -0.41799 0.47153 + 11 -0.01149 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 12 0.03512 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 13 -0.21036 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 14 -0.08519 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 15 -0.00000 -0.12429 -0.16451 0.45982 0.23189 -0.24997 + 16 -0.01149 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 17 0.03512 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 18 0.21036 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 19 0.08519 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 20 0.00000 0.12429 -0.16451 -0.45982 -0.23189 -0.24997 + 21 0.00666 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 22 -0.02027 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 23 0.26904 -0.00000 0.00000 0.00000 0.00000 0.00000 + 24 0.12357 0.00000 -0.00000 0.00000 0.00000 0.00000 + 25 0.00000 0.11940 -0.16493 0.46149 -0.23200 -0.27857 + 26 0.00666 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 27 -0.02027 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 28 -0.26904 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 29 -0.12357 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 30 -0.00000 -0.11940 -0.16493 -0.46149 0.23200 -0.27857 + 31 -0.25163 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 32 -0.25163 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 33 0.12318 0.00000 0.00000 -0.00000 0.00000 0.00000 + 34 0.12318 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 35 -0.01308 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 36 0.04729 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 37 0.14120 0.00000 0.00000 0.00000 0.00000 0.00000 + 38 0.14327 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 39 0.00000 0.38321 0.41518 0.00019 0.21835 0.24693 + 40 -0.01308 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 41 0.04729 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 42 -0.14120 0.00000 -0.00000 0.00000 0.00000 0.00000 + 43 -0.14327 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 44 -0.00000 -0.38321 0.41518 -0.00019 -0.21835 0.24693 + 45 -0.18377 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 46 -0.18377 0.00000 0.00000 0.00000 0.00000 0.00000 + 47 -0.00303 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 48 0.01380 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 49 -0.10128 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 50 -0.05574 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 51 0.00000 0.30667 0.42629 0.00262 0.35818 -0.41493 + 52 -0.00303 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 53 0.01380 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 54 0.10128 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 55 0.05574 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 56 -0.00000 -0.30667 0.42629 -0.00262 -0.35818 -0.41493 + 57 -0.11731 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 58 -0.11731 0.00000 0.00000 0.00000 0.00000 0.00000 + 59 0.10240 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 60 0.10240 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + + 37 38 39 40 41 42 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 0.00000 0.00000 -0.00000 0.06347 -0.02959 + 2 0.00000 -0.00000 -0.00000 0.00000 -0.38006 0.17692 + 3 -0.00000 0.00000 -0.00000 -0.00000 -0.08842 0.28350 + 4 0.00000 -0.00000 -0.00000 0.00000 -0.26802 0.11184 + 5 -0.02229 -0.03791 -0.47349 0.53871 -0.00000 -0.00000 + 6 0.00000 -0.00000 -0.00000 0.00000 0.06347 0.02959 + 7 -0.00000 0.00000 0.00000 -0.00000 -0.38006 -0.17692 + 8 -0.00000 0.00000 -0.00000 -0.00000 0.08842 0.28350 + 9 0.00000 -0.00000 -0.00000 0.00000 0.26802 0.11184 + 10 -0.02229 0.03791 -0.47349 -0.53871 0.00000 0.00000 + 11 0.00000 0.00000 -0.00000 0.00000 0.02915 0.00433 + 12 -0.00000 -0.00000 0.00000 -0.00000 -0.18291 -0.02043 + 13 0.00000 -0.00000 -0.00000 0.00000 -0.30919 0.35555 + 14 -0.00000 -0.00000 -0.00000 -0.00000 -0.06525 0.00144 + 15 0.57856 0.22554 0.16186 -0.46948 -0.00000 0.00000 + 16 -0.00000 0.00000 0.00000 -0.00000 0.02915 -0.00433 + 17 0.00000 -0.00000 -0.00000 0.00000 -0.18291 0.02043 + 18 0.00000 -0.00000 -0.00000 0.00000 0.30919 0.35555 + 19 -0.00000 -0.00000 -0.00000 -0.00000 0.06525 0.00144 + 20 0.57856 -0.22554 0.16186 0.46948 0.00000 0.00000 + 21 -0.00000 0.00000 0.00000 -0.00000 0.04839 -0.01440 + 22 0.00000 0.00000 -0.00000 0.00000 -0.29828 0.08933 + 23 -0.00000 0.00000 0.00000 -0.00000 -0.20794 0.29130 + 24 0.00000 0.00000 0.00000 0.00000 0.13598 -0.00660 + 25 -0.55811 -0.22043 0.18678 0.47149 0.00000 0.00000 + 26 0.00000 -0.00000 -0.00000 0.00000 0.04839 0.01440 + 27 -0.00000 0.00000 0.00000 -0.00000 -0.29828 -0.08933 + 28 -0.00000 0.00000 0.00000 -0.00000 0.20794 0.29130 + 29 0.00000 -0.00000 0.00000 0.00000 -0.13598 -0.00660 + 30 -0.55811 0.22043 0.18678 -0.47149 -0.00000 0.00000 + 31 0.00000 0.00000 -0.00000 0.00000 0.42094 -0.31890 + 32 -0.00000 0.00000 0.00000 -0.00000 0.42094 0.31890 + 33 -0.00000 -0.00000 0.00000 -0.00000 0.43480 -0.27655 + 34 0.00000 0.00000 -0.00000 0.00000 0.43480 0.27655 + 35 0.00000 -0.00000 -0.00000 0.00000 -0.04826 0.01371 + 36 -0.00000 0.00000 0.00000 -0.00000 0.27669 -0.08345 + 37 -0.00000 0.00000 0.00000 0.00000 0.23991 0.35091 + 38 -0.00000 0.00000 0.00000 -0.00000 0.32394 0.19909 + 39 0.00330 0.52439 0.53507 0.27875 0.00000 0.00000 + 40 -0.00000 0.00000 0.00000 -0.00000 -0.04826 -0.01371 + 41 0.00000 -0.00000 -0.00000 0.00000 0.27669 0.08345 + 42 -0.00000 0.00000 0.00000 0.00000 -0.23991 0.35091 + 43 -0.00000 -0.00000 0.00000 -0.00000 -0.32394 0.19909 + 44 0.00330 -0.52439 0.53507 -0.27875 0.00000 -0.00000 + 45 0.00000 -0.00000 -0.00000 0.00000 0.14038 0.44870 + 46 -0.00000 0.00000 0.00000 -0.00000 0.14038 -0.44870 + 47 -0.00000 -0.00000 -0.00000 -0.00000 0.04112 0.00135 + 48 0.00000 0.00000 0.00000 0.00000 -0.24262 -0.01356 + 49 0.00000 0.00000 -0.00000 0.00000 0.13846 0.30201 + 50 0.00000 -0.00000 -0.00000 0.00000 0.15018 0.17216 + 51 0.00408 -0.53124 -0.40735 -0.15847 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 0.04112 -0.00135 + 53 -0.00000 0.00000 -0.00000 -0.00000 -0.24262 0.01356 + 54 0.00000 -0.00000 -0.00000 0.00000 -0.13846 0.30201 + 55 0.00000 -0.00000 -0.00000 0.00000 -0.15018 0.17216 + 56 0.00408 0.53124 -0.40735 0.15847 -0.00000 -0.00000 + 57 0.00000 -0.00000 -0.00000 0.00000 -0.09878 -0.32156 + 58 -0.00000 0.00000 0.00000 -0.00000 -0.09878 0.32156 + 59 -0.00000 -0.00000 0.00000 -0.00000 0.35383 0.27911 + 60 0.00000 0.00000 -0.00000 0.00000 0.35383 -0.27911 + + 43 44 45 46 47 48 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.02013 -0.05520 0.04545 -0.08266 -0.01775 -0.12947 + 2 -0.12342 0.32508 -0.27865 0.49230 0.11409 0.79666 + 3 -0.11292 -0.08096 0.24740 -0.11636 -0.10657 -0.04376 + 4 0.07806 0.45357 -0.15053 0.03228 -0.25761 -0.01346 + 5 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 6 0.02013 0.05520 0.04545 0.08266 0.01775 -0.12947 + 7 -0.12342 -0.32508 -0.27865 -0.49230 -0.11409 0.79666 + 8 0.11292 -0.08096 -0.24740 -0.11636 -0.10657 0.04376 + 9 -0.07806 0.45357 0.15053 0.03228 -0.25761 0.01346 + 10 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 11 -0.06409 0.02329 0.07352 0.07623 0.05737 0.07005 + 12 0.39789 -0.14490 -0.45738 -0.46139 -0.36107 -0.44429 + 13 0.00442 -0.11705 -0.06012 -0.11270 -0.32214 -0.01333 + 14 0.11326 0.22045 0.14682 0.02798 -0.31927 -0.29602 + 15 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 16 -0.06409 -0.02329 0.07352 -0.07623 -0.05737 0.07005 + 17 0.39789 0.14490 -0.45738 0.46139 0.36107 -0.44429 + 18 -0.00442 -0.11705 0.06012 -0.11270 -0.32214 0.01333 + 19 -0.11326 0.22045 -0.14682 0.02798 -0.31927 0.29602 + 20 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 21 -0.01478 -0.00096 -0.09399 -0.09960 -0.00456 0.07402 + 22 0.09710 -0.00079 0.58288 0.61112 0.01637 -0.46918 + 23 0.17068 -0.26071 -0.02469 -0.00945 -0.20446 0.22673 + 24 -0.20090 0.32797 0.02348 -0.11109 -0.10993 0.23946 + 25 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 26 -0.01478 0.00096 -0.09399 0.09960 0.00456 0.07402 + 27 0.09710 0.00079 0.58288 -0.61112 -0.01637 -0.46918 + 28 -0.17068 -0.26071 0.02469 -0.00945 -0.20446 -0.22673 + 29 0.20090 0.32797 -0.02348 -0.11109 -0.10993 -0.23946 + 30 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 31 -0.28653 0.10132 0.24361 0.33817 0.59827 0.29547 + 32 -0.28653 -0.10132 0.24361 -0.33817 -0.59827 0.29547 + 33 -0.27463 0.40890 -0.20615 -0.32759 0.04960 0.22015 + 34 -0.27463 -0.40890 -0.20615 0.32759 -0.04960 0.22015 + 35 0.06458 -0.08931 -0.01632 -0.04073 0.07342 0.09307 + 36 -0.39458 0.52976 0.10814 0.26016 -0.46728 -0.57054 + 37 0.35069 0.07786 -0.12426 -0.14864 0.22392 0.11487 + 38 0.07394 0.31854 0.23556 0.19090 -0.06187 -0.09824 + 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 40 0.06458 0.08931 -0.01632 0.04073 -0.07342 0.09307 + 41 -0.39458 -0.52976 0.10814 -0.26016 0.46728 -0.57054 + 42 -0.35069 0.07786 0.12426 -0.14864 0.22392 -0.11487 + 43 -0.07394 0.31854 -0.23556 0.19090 -0.06187 0.09824 + 44 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 45 0.58957 -0.13077 -0.12647 -0.19585 0.43802 0.36479 + 46 0.58957 0.13077 -0.12647 0.19585 -0.43802 0.36479 + 47 -0.01775 0.05639 -0.10758 -0.08349 0.02086 -0.06336 + 48 0.09880 -0.33762 0.68358 0.53351 -0.14155 0.39041 + 49 0.29962 0.11191 0.24914 0.26319 0.03161 -0.02922 + 50 0.24406 0.16612 -0.07396 -0.11940 0.29095 -0.06522 + 51 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 52 -0.01775 -0.05639 -0.10758 0.08349 -0.02086 -0.06336 + 53 0.09880 0.33762 0.68358 -0.53351 0.14155 0.39041 + 54 -0.29962 0.11191 -0.24914 0.26319 0.03161 0.02922 + 55 -0.24406 0.16612 0.07396 -0.11940 0.29095 0.06522 + 56 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 57 -0.38136 -0.00205 -0.54181 -0.46045 -0.02785 -0.17333 + 58 -0.38136 0.00205 -0.54181 0.46045 0.02785 -0.17333 + 59 0.26202 0.38946 -0.33081 -0.29263 0.32868 -0.26736 + 60 0.26202 -0.38946 -0.33081 0.29263 -0.32868 -0.26736 + + 49 50 51 52 53 54 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.06033 0.04020 0.06829 0.00273 -0.00046 0.05152 + 2 -0.36327 -0.25411 -0.46272 -0.00821 -0.00320 -0.36172 + 3 -0.13936 -0.34438 0.12169 -0.55535 0.21367 -0.26311 + 4 0.11475 0.04817 0.58684 0.05618 0.04558 0.00401 + 5 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 6 -0.06033 0.04020 0.06829 -0.00273 -0.00046 -0.05152 + 7 0.36327 -0.25411 -0.46272 0.00821 -0.00320 0.36172 + 8 -0.13936 0.34438 -0.12169 -0.55535 -0.21367 -0.26311 + 9 0.11475 -0.04817 -0.58684 0.05618 -0.04558 0.00401 + 10 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 11 -0.05816 -0.11353 -0.01377 -0.09440 0.00433 0.03473 + 12 0.35719 0.72776 0.09182 0.64278 -0.03563 -0.23914 + 13 -0.14747 -0.07672 -0.44667 0.01637 0.53137 -0.19353 + 14 0.12248 -0.10733 0.16074 0.09831 0.19721 0.71678 + 15 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 16 0.05816 -0.11353 -0.01377 0.09440 0.00433 -0.03473 + 17 -0.35719 0.72776 0.09182 -0.64278 -0.03563 0.23914 + 18 -0.14747 0.07672 0.44667 0.01637 -0.53137 -0.19353 + 19 0.12248 0.10733 -0.16074 0.09831 -0.19721 0.71678 + 20 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 21 0.06824 0.09547 -0.04797 -0.03443 -0.00315 -0.08760 + 22 -0.42521 -0.61447 0.31578 0.24290 0.02893 0.61059 + 23 -0.18151 -0.15947 -0.32475 -0.19597 -0.51838 0.30197 + 24 0.14947 -0.17955 0.01505 -0.47953 0.39528 0.38216 + 25 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 26 -0.06824 0.09547 -0.04797 0.03443 -0.00315 0.08760 + 27 0.42521 -0.61447 0.31578 -0.24290 0.02893 -0.61059 + 28 -0.18151 0.15947 0.32475 -0.19597 0.51838 0.30197 + 29 0.14947 0.17955 -0.01505 -0.47953 -0.39528 0.38216 + 30 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 31 -0.07756 -0.24355 0.24171 -0.29864 -0.44169 0.06170 + 32 0.07756 -0.24355 0.24171 0.29864 -0.44169 -0.06170 + 33 0.48819 0.33971 0.05277 -0.20881 0.50944 -0.25391 + 34 -0.48819 0.33971 0.05277 0.20881 0.50944 0.25391 + 35 0.07002 -0.03282 0.07315 0.02688 0.05204 0.06209 + 36 -0.43047 0.23057 -0.48600 -0.19861 -0.36324 -0.43405 + 37 0.05929 -0.03730 0.15697 -0.27581 -0.14090 0.07786 + 38 0.12366 0.07466 0.02314 0.04918 0.16297 0.10502 + 39 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 40 -0.07002 -0.03282 0.07315 -0.02688 0.05204 -0.06209 + 41 0.43047 0.23057 -0.48600 0.19861 -0.36324 0.43405 + 42 0.05929 0.03730 -0.15697 -0.27581 0.14090 0.07786 + 43 0.12366 -0.07466 -0.02314 0.04918 -0.16297 0.10502 + 44 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 45 0.29662 -0.08716 0.31097 -0.15158 0.08064 0.25884 + 46 -0.29662 -0.08716 0.31097 0.15158 0.08064 -0.25884 + 47 -0.11043 -0.06100 -0.01913 -0.00996 -0.04167 -0.00937 + 48 0.70233 0.39762 0.12122 0.07893 0.29027 0.06216 + 49 0.14091 0.13476 -0.35815 0.02242 -0.09607 -0.30666 + 50 -0.01939 -0.37252 -0.13206 0.49016 0.29204 0.09797 + 51 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 52 0.11043 -0.06100 -0.01913 0.00996 -0.04167 0.00937 + 53 -0.70233 0.39762 0.12122 -0.07893 0.29027 -0.06216 + 54 0.14091 -0.13476 0.35815 0.02242 0.09607 -0.30666 + 55 -0.01939 0.37252 0.13206 0.49016 -0.29204 0.09797 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 57 -0.51486 -0.28603 0.24499 -0.10535 -0.12843 0.22847 + 58 0.51486 -0.28603 0.24499 0.10535 -0.12843 -0.22847 + 59 -0.31645 -0.45685 -0.25488 0.35646 0.08062 -0.02831 + 60 0.31645 -0.45685 -0.25488 -0.35646 0.08062 0.02831 + + 55 56 57 58 59 60 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.09450 0.01420 0.01758 0.01953 -0.00474 0.04242 + 2 0.64864 -0.08483 -0.11210 -0.13942 0.03202 -0.32153 + 3 -0.18965 -0.10986 0.10062 -0.46861 0.71202 0.16190 + 4 0.05544 -0.35995 -0.41189 0.13349 -0.05426 0.66243 + 5 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 6 0.09450 0.01420 0.01758 -0.01953 -0.00474 -0.04242 + 7 -0.64864 -0.08483 -0.11210 0.13942 0.03202 0.32153 + 8 -0.18965 0.10986 -0.10062 -0.46861 -0.71202 0.16190 + 9 0.05544 0.35995 0.41189 0.13349 0.05426 0.66243 + 10 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 11 -0.00878 0.02820 -0.01808 -0.04629 0.00719 -0.05089 + 12 0.07504 -0.20151 0.13189 0.33903 -0.04976 0.37542 + 13 0.27126 0.26937 0.11482 -0.19548 0.24459 -0.56630 + 14 -0.13846 0.39220 -0.36515 0.13846 -0.54801 -0.23999 + 15 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 16 0.00878 0.02820 -0.01808 0.04629 0.00719 0.05089 + 17 -0.07504 -0.20151 0.13189 -0.33903 -0.04976 -0.37542 + 18 0.27126 -0.26937 -0.11482 -0.19548 -0.24459 -0.56630 + 19 -0.13846 -0.39220 0.36515 0.13846 0.54801 -0.23999 + 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 21 -0.02893 -0.03159 0.01601 -0.02227 -0.00734 0.05551 + 22 0.19142 0.22096 -0.11842 0.16775 0.04971 -0.41154 + 23 -0.39356 0.15680 0.05191 -0.05616 -0.44424 0.49411 + 24 -0.20793 0.32678 -0.42995 -0.21552 -0.42322 -0.39434 + 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 26 0.02893 -0.03159 0.01601 0.02227 -0.00734 -0.05551 + 27 -0.19142 0.22096 -0.11842 -0.16775 0.04971 0.41154 + 28 -0.39356 -0.15680 -0.05191 -0.05616 0.44424 0.49411 + 29 -0.20793 -0.32678 0.42995 -0.21552 0.42322 -0.39434 + 30 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 31 -0.14981 -0.21765 -0.04766 -0.02392 -0.00844 0.26961 + 32 0.14981 -0.21765 -0.04766 0.02392 -0.00844 -0.26961 + 33 0.02254 -0.03523 -0.20429 -0.10576 0.03848 -0.27726 + 34 -0.02254 -0.03523 -0.20429 0.10576 0.03848 0.27726 + 35 0.01769 -0.04334 0.03640 -0.05834 -0.02416 -0.01409 + 36 -0.14423 0.30721 -0.29712 0.45190 0.19749 0.08798 + 37 0.29735 0.55668 -0.09970 0.60835 0.41479 0.02777 + 38 0.48257 0.14504 0.68016 -0.45823 -0.30091 0.36504 + 39 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 40 -0.01769 -0.04334 0.03640 0.05834 -0.02416 0.01409 + 41 0.14423 0.30721 -0.29712 -0.45190 0.19749 -0.08798 + 42 0.29735 -0.55668 0.09970 0.60835 -0.41479 0.02777 + 43 0.48257 -0.14504 -0.68016 -0.45823 0.30091 0.36504 + 44 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 45 0.32793 0.30837 0.14608 0.17887 0.15782 0.04879 + 46 -0.32793 0.30837 0.14608 -0.17887 0.15782 -0.04879 + 47 -0.01772 0.03266 -0.04635 0.06846 0.03822 -0.00886 + 48 0.12954 -0.24177 0.35554 -0.52696 -0.30561 0.07838 + 49 -0.50737 -0.13252 -0.58368 0.38883 0.24000 -0.21693 + 50 -0.23524 -0.53985 0.18340 -0.53681 -0.30265 -0.00326 + 51 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 52 0.01772 0.03266 -0.04635 -0.06846 0.03822 0.00886 + 53 -0.12954 -0.24177 0.35554 0.52696 -0.30561 -0.07838 + 54 -0.50737 0.13252 0.58368 0.38883 -0.24000 -0.21693 + 55 -0.23524 0.53985 -0.18340 -0.53681 0.30265 -0.00326 + 56 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 57 0.34539 0.26547 0.27254 -0.01144 -0.03139 0.13677 + 58 -0.34539 0.26547 0.27254 0.01144 -0.03139 -0.13677 + 59 -0.33103 -0.32048 -0.12287 -0.09634 -0.04651 -0.06633 + 60 0.33103 -0.32048 -0.12287 0.09634 -0.04651 0.06633 + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2631.731379210404 0.000000000000 0.000000000000 + 0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678692 + + Mulliken analysis of the total density + -------------------------------------- + + Atom Charge Shell Charges + ----------- ------ ------------------------------------------------------- + 1 C 6 6.00 1.99 1.14 2.87 + 2 C 6 6.00 1.99 1.14 2.87 + 3 C 6 6.06 1.99 1.15 2.92 + 4 C 6 6.06 1.99 1.15 2.92 + 5 C 6 6.06 1.99 1.15 2.92 + 6 C 6 6.06 1.99 1.15 2.92 + 7 H 1 0.94 0.94 + 8 H 1 0.94 0.94 + 9 H 1 0.94 0.94 + 10 H 1 0.94 0.94 + 11 C 6 6.06 1.99 1.15 2.91 + 12 C 6 6.06 1.99 1.15 2.91 + 13 H 1 0.94 0.94 + 14 H 1 0.94 0.94 + 15 C 6 6.12 1.99 1.16 2.97 + 16 C 6 6.12 1.99 1.16 2.97 + 17 H 1 0.94 0.94 + 18 H 1 0.94 0.94 + 19 H 1 0.94 0.94 + 20 H 1 0.94 0.94 + + Multipole analysis of the density wrt the origin + ------------------------------------------------ + + L x y z total open nuclear + - - - - ----- ---- ------- + 0 0 0 0 -0.000000 0.000000 70.000000 + + 1 1 0 0 -0.000000 0.000000 0.000000 + 1 0 1 0 -0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 + + 2 2 0 0 -38.360869 0.000000 244.795872 + 2 1 1 0 0.065434 0.000000 -5.631027 + 2 1 0 1 0.000000 0.000000 0.000000 + 2 0 2 0 -39.006221 0.000000 1496.963300 + 2 0 1 1 0.000000 0.000000 0.000000 + 2 0 0 2 -43.564269 0.000000 0.000000 + + + Parallel integral file used 8 records with 0 large values + + + ------------- + Dipole Moment + ------------- + + Center of charge (in au) is the expansion point + X = 0.0000000 Y = 0.0000000 Z = 0.0000000 + + Dipole moment 0.0000000000 A.U. + DMX 0.0000000000 DMXEFC 0.0000000000 + DMY -0.0000000000 DMYEFC 0.0000000000 + DMZ 0.0000000000 DMZEFC 0.0000000000 + -EFC- dipole 0.0000000000 A.U. + Total dipole 0.0000000000 A.U. + + Dipole moment 0.0000000000 Debye(s) + DMX 0.0000000000 DMXEFC 0.0000000000 + DMY -0.0000000000 DMYEFC 0.0000000000 + DMZ 0.0000000000 DMZEFC 0.0000000000 + -EFC- dipole 0.0000000000 DEBYE(S) + Total dipole 0.0000000000 DEBYE(S) + + 1 a.u. = 2.541766 Debyes + + ----------------- + Quadrupole Moment + ----------------- + + Center of charge (in au) is the expansion point + X = 0.0000000 Y = 0.0000000 Z = 0.0000000 + + < R**2 > = ********** a.u. ( 1 a.u. = 0.280023 10**(-16) cm**2 ) + ( also called diamagnetic susceptibility ) + + Second moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX -38.3608685337 0.0000000000 -38.3608685337 + YY -39.0062210270 0.0000000000 -39.0062210270 + ZZ -43.5642691494 0.0000000000 -43.5642691494 + XY 0.0654337040 0.0000000000 0.0654337040 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 + + Second moments in buckingham(s) + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX -51.5919540605 0.0000000000 -51.5919540605 + YY -52.4598957277 0.0000000000 -52.4598957277 + ZZ -58.5900647861 0.0000000000 -58.5900647861 + XY 0.0880025082 0.0000000000 0.0880025082 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 + + Quadrupole moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX 2.9243765545 0.0000000000 2.9243765545 + YY 1.9563478145 0.0000000000 1.9563478145 + ZZ -4.8807243691 0.0000000000 -4.8807243691 + XY 0.0981505560 0.0000000000 0.0981505560 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 + + Quadrupole moments in buckingham(s) + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX 3.9330261963 0.0000000000 3.9330261963 + YY 2.6311136956 0.0000000000 2.6311136956 + ZZ -6.5641398919 0.0000000000 -6.5641398919 + XY 0.1320037624 0.0000000000 0.1320037624 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 + + 1 a.u. = 1.344911 Buckinghams = 1.344911 10**(-26) esu*cm**2 + + --------------- + Octupole Moment + --------------- + + Center of charge (in au) is the expansion point + X = 0.0000000 Y = 0.0000000 Z = 0.0000000 + + Third moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 + + Third moments in 10**(-34) esu*cm**3 + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 + + Octupole moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX -0.0000000000 0.0000000000 -0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 + + Octupole moments in 10**(-34) esu*cm**3 + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX -0.0000000000 0.0000000000 -0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 + + 1 a.u. = 0.711688 10**(-34) esu*cm**3 + + + ---------------------------- + Mulliken population analysis + ---------------------------- + + Total S,P,D,... shell population + -------------------------------- + Atom S P + -------------------------------------------------------------------------------------- + 1 C 3.13046 2.86772 + 2 C 3.13046 2.86772 + 3 C 3.14136 2.91829 + 4 C 3.14136 2.91829 + 5 C 3.13936 2.92108 + 6 C 3.13936 2.92108 + 7 H 0.94130 0.00000 + 8 H 0.94130 0.00000 + 9 H 0.93940 0.00000 + 10 H 0.93940 0.00000 + 11 C 3.14423 2.91102 + 12 C 3.14423 2.91102 + 13 H 0.94236 0.00000 + 14 H 0.94236 0.00000 + 15 C 3.15536 2.96852 + 16 C 3.15536 2.96852 + 17 H 0.94099 0.00000 + 18 H 0.94099 0.00000 + 19 H 0.93855 0.00000 + 20 H 0.93855 0.00000 + + ----- Total gross population on atoms ---- + + 1 C 6.0 5.99819 + 2 C 6.0 5.99819 + 3 C 6.0 6.05964 + 4 C 6.0 6.05964 + 5 C 6.0 6.06044 + 6 C 6.0 6.06044 + 7 H 1.0 0.94130 + 8 H 1.0 0.94130 + 9 H 1.0 0.93940 + 10 H 1.0 0.93940 + 11 C 6.0 6.05525 + 12 C 6.0 6.05525 + 13 H 1.0 0.94236 + 14 H 1.0 0.94236 + 15 C 6.0 6.12388 + 16 C 6.0 6.12388 + 17 H 1.0 0.94099 + 18 H 1.0 0.94099 + 19 H 1.0 0.93855 + 20 H 1.0 0.93855 + + ----- Bond indices ----- + 1- 1 0.00000 1- 2 0.10626 1- 3 1.38193 1- 4 0.00279 1- 5 0.00275 1- 6 1.38295 1- 7 0.00424 1- 8 0.00578 + 2- 1 0.10626 2- 2 0.00000 2- 3 0.00279 2- 4 1.38193 2- 5 1.38295 2- 6 0.00275 2- 7 0.00578 2- 8 0.00424 + 3- 1 1.38193 3- 2 0.00279 3- 3 0.00000 3- 4 0.10295 3- 5 1.45716 3- 6 0.00319 3- 7 0.96964 3- 8 0.00013 + 4- 1 0.00279 4- 2 1.38193 4- 3 0.10295 4- 4 0.00000 4- 5 0.00319 4- 6 1.45716 4- 7 0.00013 4- 8 0.96964 + 5- 1 0.00275 5- 2 1.38295 5- 3 1.45716 5- 4 0.00319 5- 5 0.00000 5- 6 0.10403 5- 7 0.00361 5- 8 0.00552 + 6- 1 1.38295 6- 2 0.00275 6- 3 0.00319 6- 4 1.45716 6- 5 0.10403 6- 6 0.00000 6- 7 0.00552 6- 8 0.00361 + 7- 1 0.00424 7- 2 0.00578 7- 3 0.96964 7- 4 0.00013 7- 5 0.00361 7- 6 0.00552 7- 7 0.00000 7- 8 0.00004 + 8- 1 0.00578 8- 2 0.00424 8- 3 0.00013 8- 4 0.96964 8- 5 0.00552 8- 6 0.00361 8- 7 0.00004 8- 8 0.00000 + 9- 1 0.00576 9- 2 0.00399 9- 3 0.00355 9- 4 0.00556 9- 5 0.96856 9- 6 0.00012 9- 7 0.00242 9- 8 0.00090 + 10- 1 0.00399 10- 2 0.00576 10- 3 0.00556 10- 4 0.00355 10- 5 0.00012 10- 6 0.96856 10- 7 0.00090 10- 8 0.00242 + 11- 1 0.00009 11- 2 1.04125 11- 3 0.00604 11- 4 0.00482 11- 5 0.00419 11- 6 0.00560 11- 7 0.00073 11- 8 0.00219 + 12- 1 1.04125 12- 2 0.00009 12- 3 0.00482 12- 4 0.00604 12- 5 0.00560 12- 6 0.00419 12- 7 0.00219 12- 8 0.00073 + 13- 1 0.00002 13- 2 0.00530 13- 3 0.00056 13- 4 0.00153 13- 5 0.00486 13- 6 0.00004 13- 7 0.00019 13- 8 0.00103 + 14- 1 0.00530 14- 2 0.00002 14- 3 0.00153 14- 4 0.00056 14- 5 0.00004 14- 6 0.00486 14- 7 0.00103 14- 8 0.00019 + 15- 1 0.01730 15- 2 0.00290 15- 3 0.00022 15- 4 0.03251 15- 5 0.03040 15- 6 0.00057 15- 7 0.00001 15- 8 0.00006 + 16- 1 0.00290 16- 2 0.01730 16- 3 0.03251 16- 4 0.00022 16- 5 0.00057 16- 6 0.03040 16- 7 0.00006 16- 8 0.00001 + 17- 1 0.00000 17- 2 0.00360 17- 3 0.00007 17- 4 0.00009 17- 5 0.00012 17- 6 0.00001 17- 7 0.00001 17- 8 0.00001 + 18- 1 0.00360 18- 2 0.00000 18- 3 0.00009 18- 4 0.00007 18- 5 0.00001 18- 6 0.00012 18- 7 0.00001 18- 8 0.00001 + 19- 1 0.00002 19- 2 0.00807 19- 3 0.00000 19- 4 0.00060 19- 5 0.00028 19- 6 0.00015 19- 7 0.00001 19- 8 0.00004 + 20- 1 0.00807 20- 2 0.00002 20- 3 0.00060 20- 4 0.00000 20- 5 0.00015 20- 6 0.00028 20- 7 0.00004 20- 8 0.00001 + 1- 9 0.00576 1-10 0.00399 1-11 0.00009 1-12 1.04125 1-13 0.00002 1-14 0.00530 1-15 0.01730 1-16 0.00290 + 2- 9 0.00399 2-10 0.00576 2-11 1.04125 2-12 0.00009 2-13 0.00530 2-14 0.00002 2-15 0.00290 2-16 0.01730 + 3- 9 0.00355 3-10 0.00556 3-11 0.00604 3-12 0.00482 3-13 0.00056 3-14 0.00153 3-15 0.00022 3-16 0.03251 + 4- 9 0.00556 4-10 0.00355 4-11 0.00482 4-12 0.00604 4-13 0.00153 4-14 0.00056 4-15 0.03251 4-16 0.00022 + 5- 9 0.96856 5-10 0.00012 5-11 0.00419 5-12 0.00560 5-13 0.00486 5-14 0.00004 5-15 0.03040 5-16 0.00057 + 6- 9 0.00012 6-10 0.96856 6-11 0.00560 6-12 0.00419 6-13 0.00004 6-14 0.00486 6-15 0.00057 6-16 0.03040 + 7- 9 0.00242 7-10 0.00090 7-11 0.00073 7-12 0.00219 7-13 0.00019 7-14 0.00103 7-15 0.00001 7-16 0.00006 + 8- 9 0.00090 8-10 0.00242 8-11 0.00219 8-12 0.00073 8-13 0.00103 8-14 0.00019 8-15 0.00006 8-16 0.00001 + 9- 9 0.00000 9-10 0.00005 9-11 0.00246 9-12 0.00071 9-13 0.00006 9-14 0.00002 9-15 0.00014 9-16 0.00011 + 10- 9 0.00005 10-10 0.00000 10-11 0.00071 10-12 0.00246 10-13 0.00002 10-14 0.00006 10-15 0.00011 10-16 0.00014 + 11- 9 0.00246 11-10 0.00071 11-11 0.00000 11-12 0.00016 11-13 0.96770 11-14 0.00000 11-15 1.93049 11-16 0.00000 + 12- 9 0.00071 12-10 0.00246 12-11 0.00016 12-12 0.00000 12-13 0.00000 12-14 0.96770 12-15 0.00000 12-16 1.93049 + 13- 9 0.00006 13-10 0.00002 13-11 0.96770 13-12 0.00000 13-13 0.00000 13-14 0.00000 13-15 0.00271 13-16 0.00000 + 14- 9 0.00002 14-10 0.00006 14-11 0.00000 14-12 0.96770 14-13 0.00000 14-14 0.00000 14-15 0.00000 14-16 0.00271 + 15- 9 0.00014 15-10 0.00011 15-11 1.93049 15-12 0.00000 15-13 0.00271 15-14 0.00000 15-15 0.00000 15-16 0.00361 + 16- 9 0.00011 16-10 0.00014 16-11 0.00000 16-12 1.93049 16-13 0.00000 16-14 0.00271 16-15 0.00361 16-16 0.00000 + 17- 9 0.00181 17-10 0.00001 17-11 0.00302 17-12 0.00000 17-13 0.00911 17-14 -0.00000 17-15 0.97382 17-16 0.00000 + 18- 9 0.00001 18-10 0.00181 18-11 0.00000 18-12 0.00302 18-13 -0.00000 18-14 0.00911 18-15 0.00000 18-16 0.97382 + 19- 9 0.00007 19-10 0.00004 19-11 0.00273 19-12 0.00000 19-13 0.00355 19-14 0.00000 19-15 0.97585 19-16 0.00000 + 20- 9 0.00004 20-10 0.00007 20-11 0.00000 20-12 0.00273 20-13 0.00000 20-14 0.00355 20-15 0.00000 20-16 0.97585 + 1-17 0.00000 1-18 0.00360 1-19 0.00002 1-20 0.00807 + 2-17 0.00360 2-18 0.00000 2-19 0.00807 2-20 0.00002 + 3-17 0.00007 3-18 0.00009 3-19 0.00000 3-20 0.00060 + 4-17 0.00009 4-18 0.00007 4-19 0.00060 4-20 0.00000 + 5-17 0.00012 5-18 0.00001 5-19 0.00028 5-20 0.00015 + 6-17 0.00001 6-18 0.00012 6-19 0.00015 6-20 0.00028 + 7-17 0.00001 7-18 0.00001 7-19 0.00001 7-20 0.00004 + 8-17 0.00001 8-18 0.00001 8-19 0.00004 8-20 0.00001 + 9-17 0.00181 9-18 0.00001 9-19 0.00007 9-20 0.00004 + 10-17 0.00001 10-18 0.00181 10-19 0.00004 10-20 0.00007 + 11-17 0.00302 11-18 0.00000 11-19 0.00273 11-20 0.00000 + 12-17 0.00000 12-18 0.00302 12-19 0.00000 12-20 0.00273 + 13-17 0.00911 13-18 -0.00000 13-19 0.00355 13-20 0.00000 + 14-17 -0.00000 14-18 0.00911 14-19 0.00000 14-20 0.00355 + 15-17 0.97382 15-18 0.00000 15-19 0.97585 15-20 0.00000 + 16-17 0.00000 16-18 0.97382 16-19 0.00000 16-20 0.97585 + 17-17 0.00000 17-18 0.00000 17-19 0.00483 17-20 -0.00000 + 18-17 0.00000 18-18 0.00000 18-19 -0.00000 18-20 0.00483 + 19-17 0.00483 19-18 -0.00000 19-19 0.00000 19-20 0.00000 + 20-17 -0.00000 20-18 0.00483 20-19 0.00000 20-20 0.00000 + + Large bond indices + ------------------ + 1 C - 2 C 0.10626 + 1 C - 3 C 1.38193 + 1 C - 6 C 1.38295 + 1 C - 12 C 1.04125 + 2 C - 4 C 1.38193 + 2 C - 5 C 1.38295 + 2 C - 11 C 1.04125 + 3 C - 4 C 0.10295 + 3 C - 5 C 1.45716 + 3 C - 7 H 0.96964 + 4 C - 6 C 1.45716 + 4 C - 8 H 0.96964 + 5 C - 6 C 0.10403 + 5 C - 9 H 0.96856 + 6 C - 10 H 0.96856 + 11 C - 13 H 0.96770 + 11 C - 15 C 1.93049 + 12 C - 14 H 0.96770 + 12 C - 16 C 1.93049 + 15 C - 17 H 0.97382 + 15 C - 19 H 0.97585 + 16 C - 18 H 0.97382 + 16 C - 20 H 0.97585 + + Free electrons Valency + Number of Sum of + Bond indices - Bond indices + Valency Free electrons Bond indices =Mulliken charge = Net spin population + 1 C 3.97499 2.02320 3.97499 5.99819 0.00000 + 2 C 3.97499 2.02320 3.97499 5.99819 -0.00000 + 3 C 3.97333 2.08632 3.97333 6.05964 -0.00000 + 4 C 3.97333 2.08632 3.97333 6.05964 0.00000 + 5 C 3.97410 2.08634 3.97410 6.06044 -0.00000 + 6 C 3.97410 2.08634 3.97410 6.06044 0.00000 + 7 H 0.99655 -0.05526 0.99655 0.94130 0.00000 + 8 H 0.99655 -0.05526 0.99655 0.94130 0.00000 + 9 H 0.99633 -0.05693 0.99633 0.93940 0.00000 + 10 H 0.99633 -0.05693 0.99633 0.93940 0.00000 + 11 C 3.97218 2.08307 3.97218 6.05525 -0.00000 + 12 C 3.97218 2.08307 3.97218 6.05525 0.00000 + 13 H 0.99668 -0.05431 0.99668 0.94236 -0.00000 + 14 H 0.99668 -0.05431 0.99668 0.94236 -0.00000 + 15 C 3.97069 2.15320 3.97069 6.12388 0.00000 + 16 C 3.97069 2.15320 3.97069 6.12388 0.00000 + 17 H 0.99652 -0.05553 0.99652 0.94099 -0.00000 + 18 H 0.99652 -0.05553 0.99652 0.94099 -0.00000 + 19 H 0.99622 -0.05768 0.99622 0.93855 -0.00000 + 20 H 0.99622 -0.05768 0.99622 0.93855 -0.00000 + + Task times cpu: 2.7s wall: 3.6s + Summary of allocated global arrays +----------------------------------- + No active global arrays + + + + GA Statistics for process 0 + ------------------------------ + + create destroy get put acc scatter gather read&inc +calls: 749 749 3.09e+04 6043 3.18e+04 420 0 8127 +number of processes/call 1.00e+00 1.00e+00 1.00e+00 1.00e+00 0.00e+00 +bytes total: 1.26e+07 7.29e+06 3.97e+06 3.09e+04 0.00e+00 6.50e+04 +bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 427200 bytes +MA_summarize_allocated_blocks: starting scan ... +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +MA usage statistics: + + allocation statistics: + heap stack + ---- ----- + current number of blocks 0 0 + maximum number of blocks 18 14 + current total bytes 0 0 + maximum total bytes 9986520 22510808 + maximum total K-bytes 9987 22511 + maximum total M-bytes 10 23 + + + NWChem Input Module + ------------------- + + + + + + CITATION + -------- + Please cite the following reference when publishing + results obtained with NWChem: + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + + AUTHORS + ------- + E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, + J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, + S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, + F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, + P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, + D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, + A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, + A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, + H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, + K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, + H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, + A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, + R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, + K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, + A. T. Wong, Z. Zhang. + + Total times cpu: 2.8s wall: 5.5s diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.nw b/data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.nw new file mode 100644 index 000000000..7ee93530b --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.nw @@ -0,0 +1,39 @@ + start dvb + title "Divinylbenzene in STO-3G basis set" + + geometry units angstroms + C -1.4152533224 0.2302217854 0.0000000000 + C 1.4152533224 -0.2302217854 0.0000000000 + C -0.4951331558 1.3144608674 0.0000000000 + C 0.4951331558 -1.3144608674 0.0000000000 + C 0.8894090436 1.0909493743 0.0000000000 + C -0.8894090436 -1.0909493743 0.0000000000 + H -0.8795511985 2.3437343748 0.0000000000 + H 0.8795511985 -2.3437343748 0.0000000000 + H 1.5779041557 1.9450061275 0.0000000000 + H -1.5779041557 -1.9450061275 0.0000000000 + C 2.8845844962 -0.5210893778 0.0000000000 + C -2.8845844962 0.5210893778 0.0000000000 + H 3.1403356810 -1.5919605685 0.0000000000 + H -3.1403356810 1.5919605685 0.0000000000 + C 3.8800428103 0.3822535424 0.0000000000 + C -3.8800428103 -0.3822535424 0.0000000000 + H 3.6946765858 1.4624389570 0.0000000000 + H -3.6946765858 -1.4624389570 0.0000000000 + H 4.9316453546 0.0711049543 0.0000000000 + H -4.9316453546 -0.0711049543 0.0000000000 + end + basis + * library sto-3g + end + scf + print "final vectors" "final vectors analysis" "overlap" + end + property + mulliken + dipole + quadrupole + octupole + end + task scf property + diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.out b/data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.out new file mode 100644 index 000000000..88d6c57ea --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.out @@ -0,0 +1,2805 @@ + argument 1 = dvb_sp_hf_overlaps.nw + + + + + Northwest Computational Chemistry Package (NWChem) 6.5 + ------------------------------------------------------ + + + Environmental Molecular Sciences Laboratory + Pacific Northwest National Laboratory + Richland, WA 99352 + + Copyright (c) 1994-2014 + Pacific Northwest National Laboratory + Battelle Memorial Institute + + NWChem is an open-source computational chemistry package + distributed under the terms of the + Educational Community License (ECL) 2.0 + A copy of the license is included with this distribution + in the LICENSE.TXT file + + ACKNOWLEDGMENT + -------------- + + This software and its documentation were developed at the + EMSL at Pacific Northwest National Laboratory, a multiprogram + national laboratory, operated for the U.S. Department of Energy + by Battelle under Contract Number DE-AC05-76RL01830. Support + for this work was provided by the Department of Energy Office + of Biological and Environmental Research, Office of Basic + Energy Sciences, and the Office of Advanced Scientific Computing. + + + Job information + --------------- + + hostname = boman + program = /usr/lib64/mpich/bin/nwchem_mpich + date = Wed Jan 21 23:10:44 2015 + + compiled = Sat_Dec_06_13:02:58_2014 + source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 + nwchem branch = 6.5 + nwchem revision = 26243 + ga revision = 10506 + input = dvb_sp_hf_overlaps.nw + prefix = dvb. + data base = ./dvb.db + status = startup + nproc = 1 + time left = -1s + + + + Memory information + ------------------ + + heap = 13107194 doubles = 100.0 Mbytes + stack = 13107199 doubles = 100.0 Mbytes + global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) + total = 52428793 doubles = 400.0 Mbytes + verify = yes + hardfail = no + + + Directory information + --------------------- + + 0 permanent = . + 0 scratch = . + + + + + NWChem Input Module + ------------------- + + + Divinylbenzene in STO-3G basis set + ---------------------------------- + + Scaling coordinates for geometry "geometry" by 1.889725989 + (inverse scale = 0.529177249) + + C2H symmetry detected + + ------ + auto-z + ------ + + + Geometry "geometry" -> "" + ------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.23680554 1.41416660 0.00000000 + 2 C 6.0000 -0.23680554 -1.41416660 0.00000000 + 3 C 6.0000 1.31675086 0.48901061 0.00000000 + 4 C 6.0000 -1.31675086 -0.48901061 0.00000000 + 5 C 6.0000 1.08679847 -0.89447642 0.00000000 + 6 C 6.0000 -1.08679847 0.89447642 0.00000000 + 7 H 1.0000 2.34780221 0.86863451 0.00000000 + 8 H 1.0000 -2.34780221 -0.86863451 0.00000000 + 9 H 1.0000 1.93764188 -1.58693865 0.00000000 + 10 H 1.0000 -1.93764188 1.58693865 0.00000000 + 11 C 6.0000 -0.53450789 -2.88212824 0.00000000 + 12 C 6.0000 0.53450789 2.88212824 0.00000000 + 13 H 1.0000 -1.60655769 -3.13289308 0.00000000 + 14 H 1.0000 1.60655769 3.13289308 0.00000000 + 15 C 6.0000 0.36419263 -3.88177971 0.00000000 + 16 C 6.0000 -0.36419263 3.88177971 0.00000000 + 17 H 1.0000 1.44522900 -3.70144241 0.00000000 + 18 H 1.0000 -1.44522900 3.70144241 0.00000000 + 19 H 1.0000 0.04815351 -4.93192286 0.00000000 + 20 H 1.0000 -0.04815351 4.93192286 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 445.9370121674 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value + ----------- -------- ----- ----- ----- ----- ----- ---------- + 1 Stretch 1 3 1.42204 + 2 Stretch 1 6 1.42197 + 3 Stretch 1 12 1.49784 + 4 Stretch 2 4 1.42204 + 5 Stretch 2 5 1.42197 + 6 Stretch 2 11 1.49784 + 7 Stretch 3 5 1.40247 + 8 Stretch 3 7 1.09872 + 9 Stretch 4 6 1.40247 + 10 Stretch 4 8 1.09872 + 11 Stretch 5 9 1.09701 + 12 Stretch 6 10 1.09701 + 13 Stretch 11 13 1.10099 + 14 Stretch 11 15 1.34423 + 15 Stretch 12 14 1.10099 + 16 Stretch 12 16 1.34423 + 17 Stretch 15 17 1.09597 + 18 Stretch 15 19 1.09667 + 19 Stretch 16 18 1.09597 + 20 Stretch 16 20 1.09667 + 21 Bend 1 3 5 121.14867 + 22 Bend 1 3 7 119.20109 + 23 Bend 1 6 4 120.87358 + 24 Bend 1 6 10 119.42285 + 25 Bend 1 12 14 114.62953 + 26 Bend 1 12 16 126.57992 + 27 Bend 2 4 6 121.14867 + 28 Bend 2 4 8 119.20109 + 29 Bend 2 5 3 120.87358 + 30 Bend 2 5 9 119.42285 + 31 Bend 2 11 13 114.62953 + 32 Bend 2 11 15 126.57992 + 33 Bend 3 1 6 117.97776 + 34 Bend 3 1 12 119.12155 + 35 Bend 3 5 9 119.70357 + 36 Bend 4 2 5 117.97776 + 37 Bend 4 2 11 119.12155 + 38 Bend 4 6 10 119.70357 + 39 Bend 5 2 11 122.90069 + 40 Bend 5 3 7 119.65024 + 41 Bend 6 1 12 122.90069 + 42 Bend 6 4 8 119.65024 + 43 Bend 11 15 17 122.48517 + 44 Bend 11 15 19 121.29492 + 45 Bend 12 16 18 122.48517 + 46 Bend 12 16 20 121.29492 + 47 Bend 13 11 15 118.79054 + 48 Bend 14 12 16 118.79054 + 49 Bend 17 15 19 116.21990 + 50 Bend 18 16 20 116.21990 + 51 Torsion 1 3 5 2 0.00000 + 52 Torsion 1 3 5 9 180.00000 + 53 Torsion 1 6 4 2 0.00000 + 54 Torsion 1 6 4 8 180.00000 + 55 Torsion 1 12 16 18 0.00000 + 56 Torsion 1 12 16 20 180.00000 + 57 Torsion 2 4 6 10 180.00000 + 58 Torsion 2 5 3 7 180.00000 + 59 Torsion 2 11 15 17 0.00000 + 60 Torsion 2 11 15 19 180.00000 + 61 Torsion 3 1 6 4 0.00000 + 62 Torsion 3 1 6 10 180.00000 + 63 Torsion 3 1 12 14 0.00000 + 64 Torsion 3 1 12 16 180.00000 + 65 Torsion 3 5 2 4 0.00000 + 66 Torsion 3 5 2 11 180.00000 + 67 Torsion 4 2 5 9 180.00000 + 68 Torsion 4 2 11 13 0.00000 + 69 Torsion 4 2 11 15 180.00000 + 70 Torsion 4 6 1 12 180.00000 + 71 Torsion 5 2 4 6 -0.00000 + 72 Torsion 5 2 4 8 180.00000 + 73 Torsion 5 2 11 13 180.00000 + 74 Torsion 5 2 11 15 0.00000 + 75 Torsion 5 3 1 6 0.00000 + 76 Torsion 5 3 1 12 180.00000 + 77 Torsion 6 1 3 7 180.00000 + 78 Torsion 6 1 12 14 180.00000 + 79 Torsion 6 1 12 16 0.00000 + 80 Torsion 6 4 2 11 180.00000 + 81 Torsion 7 3 1 12 -0.00000 + 82 Torsion 7 3 5 9 0.00000 + 83 Torsion 8 4 2 11 -0.00000 + 84 Torsion 8 4 6 10 0.00000 + 85 Torsion 9 5 2 11 0.00000 + 86 Torsion 10 6 1 12 0.00000 + 87 Torsion 13 11 15 17 180.00000 + 88 Torsion 13 11 15 19 -0.00000 + 89 Torsion 14 12 16 18 180.00000 + 90 Torsion 14 12 16 20 -0.00000 + + + XYZ format geometry + ------------------- + 20 + geometry + C 0.23680554 1.41416660 0.00000000 + C -0.23680554 -1.41416660 0.00000000 + C 1.31675086 0.48901061 0.00000000 + C -1.31675086 -0.48901061 0.00000000 + C 1.08679847 -0.89447642 0.00000000 + C -1.08679847 0.89447642 0.00000000 + H 2.34780221 0.86863451 0.00000000 + H -2.34780221 -0.86863451 0.00000000 + H 1.93764188 -1.58693865 0.00000000 + H -1.93764188 1.58693865 0.00000000 + C -0.53450789 -2.88212824 0.00000000 + C 0.53450789 2.88212824 0.00000000 + H -1.60655769 -3.13289308 0.00000000 + H 1.60655769 3.13289308 0.00000000 + C 0.36419263 -3.88177971 0.00000000 + C -0.36419263 3.88177971 0.00000000 + H 1.44522900 -3.70144241 0.00000000 + H -1.44522900 3.70144241 0.00000000 + H 0.04815351 -4.93192286 0.00000000 + H -0.04815351 4.93192286 0.00000000 + + ============================================================================== + internuclear distances + ------------------------------------------------------------------------------ + center one | center two | atomic units | angstroms + ------------------------------------------------------------------------------ + 3 C | 1 C | 2.68726 | 1.42204 + 4 C | 2 C | 2.68726 | 1.42204 + 5 C | 2 C | 2.68714 | 1.42197 + 5 C | 3 C | 2.65028 | 1.40247 + 6 C | 1 C | 2.68714 | 1.42197 + 6 C | 4 C | 2.65028 | 1.40247 + 7 H | 3 C | 2.07628 | 1.09872 + 8 H | 4 C | 2.07628 | 1.09872 + 9 H | 5 C | 2.07305 | 1.09701 + 10 H | 6 C | 2.07305 | 1.09701 + 11 C | 2 C | 2.83052 | 1.49784 + 12 C | 1 C | 2.83052 | 1.49784 + 13 H | 11 C | 2.08056 | 1.10099 + 14 H | 12 C | 2.08056 | 1.10099 + 15 C | 11 C | 2.54023 | 1.34423 + 16 C | 12 C | 2.54023 | 1.34423 + 17 H | 15 C | 2.07109 | 1.09597 + 18 H | 16 C | 2.07109 | 1.09597 + 19 H | 15 C | 2.07240 | 1.09667 + 20 H | 16 C | 2.07240 | 1.09667 + ------------------------------------------------------------------------------ + number of included internuclear distances: 20 + ============================================================================== + + + + ============================================================================== + internuclear angles + ------------------------------------------------------------------------------ + center 1 | center 2 | center 3 | degrees + ------------------------------------------------------------------------------ + 3 C | 1 C | 6 C | 117.98 + 3 C | 1 C | 12 C | 119.12 + 6 C | 1 C | 12 C | 122.90 + 4 C | 2 C | 5 C | 117.98 + 4 C | 2 C | 11 C | 119.12 + 5 C | 2 C | 11 C | 122.90 + 1 C | 3 C | 5 C | 121.15 + 1 C | 3 C | 7 H | 119.20 + 5 C | 3 C | 7 H | 119.65 + 2 C | 4 C | 6 C | 121.15 + 2 C | 4 C | 8 H | 119.20 + 6 C | 4 C | 8 H | 119.65 + 2 C | 5 C | 3 C | 120.87 + 2 C | 5 C | 9 H | 119.42 + 3 C | 5 C | 9 H | 119.70 + 1 C | 6 C | 4 C | 120.87 + 1 C | 6 C | 10 H | 119.42 + 4 C | 6 C | 10 H | 119.70 + 2 C | 11 C | 13 H | 114.63 + 2 C | 11 C | 15 C | 126.58 + 13 H | 11 C | 15 C | 118.79 + 1 C | 12 C | 14 H | 114.63 + 1 C | 12 C | 16 C | 126.58 + 14 H | 12 C | 16 C | 118.79 + 11 C | 15 C | 17 H | 122.49 + 11 C | 15 C | 19 H | 121.29 + 17 H | 15 C | 19 H | 116.22 + 12 C | 16 C | 18 H | 122.49 + 12 C | 16 C | 20 H | 121.29 + 18 H | 16 C | 20 H | 116.22 + ------------------------------------------------------------------------------ + number of included internuclear angles: 30 + ============================================================================== + + + + library name resolved from: environment + library file name is: + + + + Summary of "ao basis" -> "" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + * sto-3g on all atoms + + + NWChem Property Module + ---------------------- + + + Divinylbenzene in STO-3G basis set + + Basis "ao basis" -> "ao basis" (cartesian) + ----- + C (Carbon) + ---------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 7.16168370E+01 0.154329 + 1 S 1.30450960E+01 0.535328 + 1 S 3.53051220E+00 0.444635 + + 2 S 2.94124940E+00 -0.099967 + 2 S 6.83483100E-01 0.399513 + 2 S 2.22289900E-01 0.700115 + + 3 P 2.94124940E+00 0.155916 + 3 P 6.83483100E-01 0.607684 + 3 P 2.22289900E-01 0.391957 + + H (Hydrogen) + ------------ + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.42525091E+00 0.154329 + 1 S 6.23913730E-01 0.535328 + 1 S 1.68855400E-01 0.444635 + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + NWChem SCF Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + + ao basis = "ao basis" + functions = 60 + atoms = 20 + closed shells = 35 + open shells = 0 + charge = 0.00 + wavefunction = RHF + input vectors = atomic + output vectors = ./dvb.movecs + use symmetry = T + symmetry adapt = T + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + ==================================== + Begin overlap 1-e integrals + ==================================== +1eov 7 C s 1 C s 0.00030276 +1eov 8 C p 1 C s 0.00013634 +1eov 9 C p 1 C s 0.00081417 +1eov 17 C s 1 C s 0.00158642 +1eov 18 C p 1 C s 0.00234748 +1eov 19 C p 1 C s 0.00287577 +1eov 26 C s 1 C s 0.00000058 +1eov 27 C s 1 C s 0.03557692 +1eov 28 C p 1 C s 0.05494002 +1eov 29 C p 1 C s 0.02157125 +1eov 32 H s 1 C s 0.00007985 +1eov 34 H s 1 C s 0.00508021 +1eov 40 C s 1 C s 0.00000014 +1eov 41 C s 1 C s 0.02955008 +1eov 42 C p 1 C s -0.00979645 +1eov 43 C p 1 C s -0.04830601 +1eov 46 H s 1 C s 0.00486942 +1eov 53 C s 1 C s 0.00115883 +1eov 54 C p 1 C s 0.00066296 +1eov 55 C p 1 C s -0.00272201 +1eov 58 H s 1 C s 0.00074066 +1eov 60 H s 1 C s 0.00005752 +1eov 6 C s 2 C s 0.00030276 +1eov 7 C s 2 C s 0.02186954 +1eov 8 C p 2 C s 0.00590170 +1eov 9 C p 2 C s 0.03524407 +1eov 16 C s 2 C s 0.00158642 +1eov 17 C s 2 C s 0.05618847 +1eov 18 C p 2 C s 0.05279983 +1eov 19 C p 2 C s 0.06468219 +1eov 26 C s 2 C s 0.03557692 +1eov 27 C s 2 C s 0.35374328 +1eov 28 C p 2 C s 0.35361990 +1eov 29 C p 2 C s 0.13884273 +1eov 32 H s 2 C s 0.00590154 +1eov 34 H s 2 C s 0.09284483 +1eov 40 C s 2 C s 0.02955008 +1eov 41 C s 2 C s 0.31760627 +1eov 42 C p 2 C s -0.06995906 +1eov 43 C p 2 C s -0.34496609 +1eov 46 H s 2 C s 0.09006704 +1eov 52 C s 2 C s 0.00115883 +1eov 53 C s 2 C s 0.04688356 +1eov 54 C p 2 C s 0.01682232 +1eov 55 C p 2 C s -0.06907006 +1eov 58 H s 2 C s 0.02467969 +1eov 60 H s 2 C s 0.00480795 +1eov 6 C s 3 C p -0.00013634 +1eov 6 C s 4 C p -0.00081417 +1eov 7 C s 3 C p -0.00590170 +1eov 7 C s 4 C p -0.03524407 +1eov 8 C p 3 C p 0.00660737 +1eov 9 C p 3 C p -0.01021452 +1eov 8 C p 4 C p -0.01021452 +1eov 9 C p 4 C p -0.05268175 +1eov 10 C p 5 C p 0.00831781 +1eov 16 C s 3 C p -0.00234748 +1eov 16 C s 4 C p -0.00287577 +1eov 17 C s 3 C p -0.05279983 +1eov 17 C s 4 C p -0.06468219 +1eov 18 C p 3 C p -0.03131094 +1eov 19 C p 3 C p -0.06690995 +1eov 18 C p 4 C p -0.06690995 +1eov 19 C p 4 C p -0.05866033 +1eov 20 C p 5 C p 0.02330740 +1eov 26 C s 3 C p -0.05494002 +1eov 26 C s 4 C p -0.02157125 +1eov 27 C s 3 C p -0.35361990 +1eov 27 C s 4 C p -0.13884273 +1eov 28 C p 3 C p -0.25587393 +1eov 29 C p 3 C p -0.18082655 +1eov 28 C p 4 C p -0.18082655 +1eov 29 C p 4 C p 0.13367656 +1eov 30 C p 5 C p 0.20467497 +1eov 32 H s 3 C p -0.00737838 +1eov 32 H s 4 C p -0.00651680 +1eov 34 H s 3 C p -0.12012197 +1eov 34 H s 4 C p 0.00954436 +1eov 40 C s 3 C p 0.00979645 +1eov 40 C s 4 C p 0.04830601 +1eov 41 C s 3 C p 0.06995906 +1eov 41 C s 4 C p 0.34496609 +1eov 42 C p 3 C p 0.15824148 +1eov 43 C p 3 C p -0.09696631 +1eov 42 C p 4 C p -0.09696631 +1eov 43 C p 4 C p -0.30023182 +1eov 44 C p 5 C p 0.17790623 +1eov 46 H s 3 C p 0.07313632 +1eov 46 H s 4 C p 0.09176940 +1eov 52 C s 3 C p -0.00066296 +1eov 52 C s 4 C p 0.00272201 +1eov 53 C s 3 C p -0.01682232 +1eov 53 C s 4 C p 0.06907006 +1eov 54 C p 3 C p 0.01247550 +1eov 55 C p 3 C p 0.02712642 +1eov 54 C p 4 C p 0.02712642 +1eov 55 C p 4 C p -0.09229496 +1eov 56 C p 5 C p 0.01908226 +1eov 58 H s 3 C p -0.02185510 +1eov 58 H s 4 C p 0.02971915 +1eov 60 H s 3 C p -0.00065662 +1eov 60 H s 4 C p 0.00810581 +1eov 6 C s 6 C s 1.00000000 +1eov 7 C s 6 C s 0.24836239 +1eov 16 C s 6 C s 0.00000058 +1eov 17 C s 6 C s 0.03557117 +1eov 18 C p 6 C s 0.04481702 +1eov 19 C p 6 C s -0.03839337 +1eov 27 C s 6 C s 0.00156648 +1eov 28 C p 6 C s 0.00126819 +1eov 29 C p 6 C s -0.00344449 +1eov 32 H s 6 C s 0.00509264 +1eov 34 H s 6 C s 0.00007948 +1eov 41 C s 6 C s 0.00000008 +1eov 42 C p 6 C s -0.00000006 +1eov 43 C p 6 C s -0.00000035 +1eov 46 H s 6 C s 0.00000007 +1eov 7 C s 7 C s 1.00000000 +1eov 16 C s 7 C s 0.03557117 +1eov 17 C s 7 C s 0.35371041 +1eov 18 C p 7 C s 0.28849089 +1eov 19 C p 7 C s -0.24714128 +1eov 26 C s 7 C s 0.00156648 +1eov 27 C s 7 C s 0.05577904 +1eov 28 C p 7 C s 0.02866212 +1eov 29 C p 7 C s -0.07784841 +1eov 32 H s 7 C s 0.09300775 +1eov 34 H s 7 C s 0.00588416 +1eov 40 C s 7 C s 0.00000008 +1eov 41 C s 7 C s 0.00025963 +1eov 42 C p 7 C s -0.00010165 +1eov 43 C p 7 C s -0.00056623 +1eov 46 H s 7 C s 0.00008155 +1eov 53 C s 7 C s 0.00000715 +1eov 54 C p 7 C s 0.00000046 +1eov 55 C p 7 C s -0.00001894 +1eov 58 H s 7 C s 0.00002394 +1eov 60 H s 7 C s 0.00000031 +1eov 8 C p 8 C p 1.00000000 +1eov 9 C p 9 C p 1.00000000 +1eov 10 C p 10 C p 1.00000000 +1eov 16 C s 8 C p -0.04481702 +1eov 16 C s 9 C p 0.03839337 +1eov 17 C s 8 C p -0.28849089 +1eov 17 C s 9 C p 0.24714128 +1eov 18 C p 8 C p -0.10189816 +1eov 19 C p 8 C p 0.26261039 +1eov 18 C p 9 C p 0.26261039 +1eov 19 C p 9 C p -0.02032026 +1eov 20 C p 10 C p 0.20464999 +1eov 26 C s 8 C p -0.00126819 +1eov 26 C s 9 C p 0.00344449 +1eov 27 C s 8 C p -0.02866212 +1eov 27 C s 9 C p 0.07784841 +1eov 28 C p 8 C p 0.00691013 +1eov 29 C p 8 C p 0.04402519 +1eov 28 C p 9 C p 0.04402519 +1eov 29 C p 9 C p -0.09645639 +1eov 30 C p 10 C p 0.02311926 +1eov 32 H s 8 C p -0.11684634 +1eov 32 H s 9 C p 0.03019589 +1eov 34 H s 8 C p -0.00484048 +1eov 34 H s 9 C p 0.00854096 +1eov 40 C s 8 C p 0.00000006 +1eov 40 C s 9 C p 0.00000035 +1eov 41 C s 8 C p 0.00010165 +1eov 41 C s 9 C p 0.00056623 +1eov 42 C p 8 C p 0.00004318 +1eov 43 C p 8 C p -0.00022448 +1eov 42 C p 9 C p -0.00022448 +1eov 43 C p 9 C p -0.00116687 +1eov 44 C p 10 C p 0.00008348 +1eov 46 H s 8 C p 0.00006594 +1eov 46 H s 9 C p 0.00016267 +1eov 53 C s 8 C p -0.00000046 +1eov 53 C s 9 C p 0.00001894 +1eov 54 C p 8 C p 0.00000222 +1eov 55 C p 8 C p 0.00000121 +1eov 54 C p 9 C p 0.00000121 +1eov 55 C p 9 C p -0.00004804 +1eov 56 C p 10 C p 0.00000225 +1eov 58 H s 8 C p -0.00001260 +1eov 58 H s 9 C p 0.00005332 +1eov 60 H s 8 C p 0.00000003 +1eov 60 H s 9 C p 0.00000084 +1eov 17 C s 11 C s 0.00038919 +1eov 18 C p 11 C s 0.00097464 +1eov 19 C p 11 C s 0.00036196 +1eov 27 C s 11 C s 0.00170373 +1eov 28 C p 11 C s 0.00390110 +1eov 29 C p 11 C s -0.00065809 +1eov 32 H s 11 C s 0.00001119 +1eov 34 H s 11 C s 0.00008438 +1eov 41 C s 11 C s 0.00126083 +1eov 42 C p 11 C s 0.00093897 +1eov 43 C p 11 C s -0.00287258 +1eov 46 H s 11 C s 0.00131509 +1eov 53 C s 11 C s 0.00000298 +1eov 54 C p 11 C s 0.00000476 +1eov 55 C p 11 C s -0.00000960 +1eov 58 H s 11 C s 0.00000237 +1eov 60 H s 11 C s 0.00000028 +1eov 16 C s 12 C s 0.00038919 +1eov 17 C s 12 C s 0.02519187 +1eov 18 C p 12 C s 0.03809642 +1eov 19 C p 12 C s 0.01414813 +1eov 26 C s 12 C s 0.00170373 +1eov 27 C s 12 C s 0.05855627 +1eov 28 C p 12 C s 0.08539477 +1eov 29 C p 12 C s -0.01440564 +1eov 32 H s 12 C s 0.00175463 +1eov 34 H s 12 C s 0.00610906 +1eov 40 C s 12 C s 0.00126083 +1eov 41 C s 12 C s 0.04921444 +1eov 42 C p 12 C s 0.02306259 +1eov 43 C p 12 C s -0.07055543 +1eov 46 H s 12 C s 0.03623781 +1eov 52 C s 12 C s 0.00000298 +1eov 53 C s 12 C s 0.00173815 +1eov 54 C p 12 C s 0.00152273 +1eov 55 C p 12 C s -0.00307343 +1eov 58 H s 12 C s 0.00068401 +1eov 60 H s 12 C s 0.00019170 +1eov 16 C s 13 C p -0.00097464 +1eov 16 C s 14 C p -0.00036196 +1eov 17 C s 13 C p -0.03809642 +1eov 17 C s 14 C p -0.01414813 +1eov 18 C p 13 C p -0.05237600 +1eov 19 C p 13 C p -0.02304990 +1eov 18 C p 14 C p -0.02304990 +1eov 19 C p 14 C p 0.00112989 +1eov 20 C p 15 C p 0.00969008 +1eov 26 C s 13 C p -0.00390110 +1eov 26 C s 14 C p 0.00065809 +1eov 27 C s 13 C p -0.08539477 +1eov 27 C s 14 C p 0.01440564 +1eov 28 C p 13 C p -0.11288491 +1eov 29 C p 13 C p 0.02315912 +1eov 28 C p 14 C p 0.02315912 +1eov 29 C p 14 C p 0.02049256 +1eov 30 C p 15 C p 0.02439938 +1eov 32 H s 13 C p -0.00297023 +1eov 32 H s 14 C p -0.00110041 +1eov 34 H s 13 C p -0.00963282 +1eov 34 H s 14 C p 0.00324981 +1eov 40 C s 13 C p -0.00093897 +1eov 40 C s 14 C p 0.00287258 +1eov 41 C s 13 C p -0.02306259 +1eov 41 C s 14 C p 0.07055543 +1eov 42 C p 13 C p 0.00828382 +1eov 43 C p 13 C p 0.03624265 +1eov 42 C p 14 C p 0.03624265 +1eov 43 C p 14 C p -0.09074670 +1eov 44 C p 15 C p 0.02013053 +1eov 46 H s 13 C p 0.00569515 +1eov 46 H s 14 C p 0.05195639 +1eov 52 C s 13 C p -0.00000476 +1eov 52 C s 14 C p 0.00000960 +1eov 53 C s 13 C p -0.00152273 +1eov 53 C s 14 C p 0.00307343 +1eov 54 C p 13 C p -0.00079266 +1eov 55 C p 13 C p 0.00277198 +1eov 54 C p 14 C p 0.00277198 +1eov 55 C p 14 C p -0.00501418 +1eov 56 C p 15 C p 0.00058071 +1eov 58 H s 13 C p -0.00085251 +1eov 58 H s 14 C p 0.00099155 +1eov 60 H s 13 C p -0.00011575 +1eov 60 H s 14 C p 0.00037677 +1eov 16 C s 16 C s 1.00000000 +1eov 17 C s 16 C s 0.24836239 +1eov 26 C s 16 C s 0.00000082 +1eov 27 C s 16 C s 0.03728874 +1eov 28 C p 16 C s -0.01013759 +1eov 29 C p 16 C s -0.06099186 +1eov 32 H s 16 C s 0.06102076 +1eov 34 H s 16 C s 0.00527184 +1eov 41 C s 16 C s 0.00000212 +1eov 42 C p 16 C s -0.00000372 +1eov 43 C p 16 C s -0.00000677 +1eov 46 H s 16 C s 0.00000027 +1eov 53 C s 16 C s 0.00000004 +1eov 54 C p 16 C s -0.00000004 +1eov 55 C p 16 C s -0.00000017 +1eov 58 H s 16 C s 0.00000294 +1eov 17 C s 17 C s 1.00000000 +1eov 26 C s 17 C s 0.03728874 +1eov 27 C s 17 C s 0.36341085 +1eov 28 C p 17 C s -0.06345323 +1eov 29 C p 17 C s -0.38176044 +1eov 32 H s 17 C s 0.48574945 +1eov 34 H s 17 C s 0.09534612 +1eov 40 C s 17 C s 0.00000212 +1eov 41 C s 17 C s 0.00144485 +1eov 42 C p 17 C s -0.00138894 +1eov 43 C p 17 C s -0.00252926 +1eov 46 H s 17 C s 0.00018766 +1eov 52 C s 17 C s 0.00000004 +1eov 53 C s 17 C s 0.00017692 +1eov 54 C p 17 C s -0.00008529 +1eov 55 C p 17 C s -0.00039134 +1eov 58 H s 17 C s 0.00077915 +1eov 60 H s 17 C s 0.00000753 +1eov 18 C p 18 C p 1.00000000 +1eov 19 C p 19 C p 1.00000000 +1eov 20 C p 20 C p 1.00000000 +1eov 26 C s 18 C p 0.01013759 +1eov 26 C s 19 C p 0.06099186 +1eov 27 C s 18 C p 0.06345323 +1eov 27 C s 19 C p 0.38176044 +1eov 28 C p 18 C p 0.19755997 +1eov 29 C p 18 C p -0.08732635 +1eov 28 C p 19 C p -0.08732635 +1eov 29 C p 19 C p -0.31331614 +1eov 30 C p 20 C p 0.21207467 +1eov 32 H s 18 C p -0.43567252 +1eov 32 H s 19 C p -0.16041073 +1eov 34 H s 18 C p -0.03533851 +1eov 34 H s 19 C p 0.11815431 +1eov 40 C s 18 C p 0.00000372 +1eov 40 C s 19 C p 0.00000677 +1eov 41 C s 18 C p 0.00138894 +1eov 41 C s 19 C p 0.00252926 +1eov 42 C p 18 C p -0.00089148 +1eov 43 C p 18 C p -0.00249775 +1eov 42 C p 19 C p -0.00249775 +1eov 43 C p 19 C p -0.00406824 +1eov 44 C p 20 C p 0.00048016 +1eov 46 H s 18 C p 0.00024262 +1eov 46 H s 19 C p 0.00030060 +1eov 52 C s 18 C p 0.00000004 +1eov 52 C s 19 C p 0.00000017 +1eov 53 C s 18 C p 0.00008529 +1eov 53 C s 19 C p 0.00039134 +1eov 54 C p 18 C p 0.00001509 +1eov 55 C p 18 C p -0.00019062 +1eov 54 C p 19 C p -0.00019062 +1eov 55 C p 19 C p -0.00081804 +1eov 56 C p 20 C p 0.00005663 +1eov 58 H s 18 C p -0.00004529 +1eov 58 H s 19 C p 0.00147734 +1eov 60 H s 18 C p 0.00000414 +1eov 60 H s 19 C p 0.00001769 +1eov 27 C s 21 C s 0.00037959 +1eov 28 C p 21 C s 0.00078457 +1eov 29 C p 21 C s -0.00064573 +1eov 32 H s 21 C s 0.00008435 +1eov 34 H s 21 C s 0.00001099 +1eov 41 C s 21 C s 0.00000250 +1eov 42 C p 21 C s 0.00000131 +1eov 43 C p 21 C s -0.00000898 +1eov 46 H s 21 C s 0.00000552 +1eov 26 C s 22 C s 0.00037959 +1eov 27 C s 22 C s 0.02483931 +1eov 28 C p 22 C s 0.03097885 +1eov 29 C p 22 C s -0.02549677 +1eov 32 H s 22 C s 0.00610765 +1eov 34 H s 22 C s 0.00173453 +1eov 40 C s 22 C s 0.00000250 +1eov 41 C s 22 C s 0.00158230 +1eov 42 C p 22 C s 0.00045458 +1eov 43 C p 22 C s -0.00310848 +1eov 46 H s 22 C s 0.00114126 +1eov 53 C s 22 C s 0.00002499 +1eov 54 C p 22 C s 0.00001818 +1eov 55 C p 22 C s -0.00005985 +1eov 58 H s 22 C s 0.00002475 +1eov 60 H s 22 C s 0.00000176 +1eov 26 C s 23 C p -0.00078457 +1eov 26 C s 24 C p 0.00064573 +1eov 27 C s 23 C p -0.03097885 +1eov 27 C s 24 C p 0.02549677 +1eov 28 C p 23 C p -0.03206671 +1eov 29 C p 23 C p 0.03424679 +1eov 28 C p 24 C p 0.03424679 +1eov 29 C p 24 C p -0.01864290 +1eov 30 C p 25 C p 0.00954351 +1eov 32 H s 23 C p -0.01016378 +1eov 32 H s 24 C p 0.00007647 +1eov 34 H s 23 C p -0.00242249 +1eov 34 H s 24 C p 0.00198754 +1eov 40 C s 23 C p -0.00000131 +1eov 40 C s 24 C p 0.00000898 +1eov 41 C s 23 C p -0.00045458 +1eov 41 C s 24 C p 0.00310848 +1eov 42 C p 23 C p 0.00039288 +1eov 43 C p 23 C p 0.00091838 +1eov 42 C p 24 C p 0.00091838 +1eov 43 C p 24 C p -0.00575278 +1eov 44 C p 25 C p 0.00052719 +1eov 46 H s 23 C p 0.00027079 +1eov 46 H s 24 C p 0.00209825 +1eov 53 C s 23 C p -0.00001818 +1eov 53 C s 24 C p 0.00005985 +1eov 54 C p 23 C p -0.00000539 +1eov 55 C p 23 C p 0.00004373 +1eov 54 C p 24 C p 0.00004373 +1eov 55 C p 24 C p -0.00013604 +1eov 56 C p 25 C p 0.00000789 +1eov 58 H s 23 C p -0.00002728 +1eov 58 H s 24 C p 0.00004952 +1eov 60 H s 23 C p -0.00000086 +1eov 60 H s 24 C p 0.00000442 +1eov 26 C s 26 C s 1.00000000 +1eov 27 C s 26 C s 0.24836239 +1eov 32 H s 26 C s 0.00526064 +1eov 34 H s 26 C s 0.06126406 +1eov 41 C s 26 C s 0.00105093 +1eov 42 C p 26 C s -0.00162169 +1eov 43 C p 26 C s -0.00198813 +1eov 46 H s 26 C s 0.00006428 +1eov 53 C s 26 C s 0.00012010 +1eov 54 C p 26 C s -0.00008248 +1eov 55 C p 26 C s -0.00034098 +1eov 58 H s 26 C s 0.00076401 +1eov 60 H s 26 C s 0.00000329 +1eov 27 C s 27 C s 1.00000000 +1eov 32 H s 27 C s 0.09520044 +1eov 34 H s 27 C s 0.48672623 +1eov 40 C s 27 C s 0.00105093 +1eov 41 C s 27 C s 0.04432484 +1eov 42 C p 27 C s -0.04273885 +1eov 43 C p 27 C s -0.05239599 +1eov 46 H s 27 C s 0.00515280 +1eov 52 C s 27 C s 0.00012010 +1eov 53 C s 27 C s 0.01304826 +1eov 54 C p 27 C s -0.00523759 +1eov 55 C p 27 C s -0.02165256 +1eov 58 H s 27 C s 0.02519238 +1eov 60 H s 27 C s 0.00083477 +1eov 28 C p 28 C p 1.00000000 +1eov 29 C p 29 C p 1.00000000 +1eov 30 C p 30 C p 1.00000000 +1eov 32 H s 28 C p -0.07164787 +1eov 32 H s 29 C p -0.10017665 +1eov 34 H s 28 C p -0.36054241 +1eov 34 H s 29 C p 0.29342885 +1eov 40 C s 28 C p 0.00162169 +1eov 40 C s 29 C p 0.00198813 +1eov 41 C s 28 C p 0.04273885 +1eov 41 C s 29 C p 0.05239599 +1eov 42 C p 28 C p -0.02709252 +1eov 43 C p 28 C p -0.05520745 +1eov 42 C p 29 C p -0.05520745 +1eov 43 C p 29 C p -0.04974235 +1eov 44 C p 30 C p 0.01793961 +1eov 46 H s 28 C p 0.00667173 +1eov 46 H s 29 C p 0.00554480 +1eov 52 C s 28 C p 0.00008248 +1eov 52 C s 29 C p 0.00034098 +1eov 53 C s 28 C p 0.00523759 +1eov 53 C s 29 C p 0.02165256 +1eov 54 C p 28 C p 0.00254866 +1eov 55 C p 28 C p -0.00923685 +1eov 54 C p 29 C p -0.00923685 +1eov 55 C p 29 C p -0.03340281 +1eov 56 C p 30 C p 0.00478298 +1eov 58 H s 28 C p -0.00476106 +1eov 58 H s 29 C p 0.03728513 +1eov 60 H s 28 C p 0.00039290 +1eov 60 H s 29 C p 0.00152729 +1eov 32 H s 31 H s 0.00010566 +1eov 34 H s 31 H s 0.00071247 +1eov 40 C s 31 H s 0.00112513 +1eov 41 C s 31 H s 0.03261996 +1eov 42 C p 31 H s 0.03180630 +1eov 43 C p 31 H s -0.03531792 +1eov 46 H s 31 H s 0.06152635 +1eov 52 C s 31 H s 0.00000570 +1eov 53 C s 31 H s 0.00116395 +1eov 54 C p 31 H s 0.00144175 +1eov 55 C p 31 H s -0.00160185 +1eov 58 H s 31 H s 0.00023842 +1eov 60 H s 31 H s 0.00025053 +1eov 32 H s 32 H s 1.00000000 +1eov 34 H s 32 H s 0.05049356 +1eov 40 C s 32 H s 0.00000018 +1eov 41 C s 32 H s 0.00014665 +1eov 42 C p 32 H s -0.00018643 +1eov 43 C p 32 H s -0.00024260 +1eov 46 H s 32 H s 0.00001429 +1eov 52 C s 32 H s 0.00000002 +1eov 53 C s 32 H s 0.00003531 +1eov 54 C p 32 H s -0.00003055 +1eov 55 C p 32 H s -0.00007317 +1eov 58 H s 32 H s 0.00029688 +1eov 60 H s 32 H s 0.00000158 +1eov 34 H s 33 H s 0.00010487 +1eov 40 C s 33 H s 0.00000023 +1eov 41 C s 33 H s 0.00017046 +1eov 42 C p 33 H s 0.00010566 +1eov 43 C p 33 H s -0.00033655 +1eov 46 H s 33 H s 0.00024029 +1eov 53 C s 33 H s 0.00000177 +1eov 54 C p 33 H s 0.00000176 +1eov 55 C p 33 H s -0.00000419 +1eov 58 H s 33 H s 0.00000137 +1eov 60 H s 33 H s 0.00000016 +1eov 34 H s 34 H s 1.00000000 +1eov 40 C s 34 H s 0.00086755 +1eov 41 C s 34 H s 0.02741238 +1eov 42 C p 34 H s -0.03595560 +1eov 43 C p 34 H s -0.01883758 +1eov 46 H s 34 H s 0.00247869 +1eov 52 C s 34 H s 0.00089160 +1eov 53 C s 34 H s 0.02791634 +1eov 54 C p 34 H s -0.02333733 +1eov 55 C p 34 H s -0.03403698 +1eov 58 H s 34 H s 0.08943587 +1eov 60 H s 34 H s 0.00263748 +1eov 41 C s 36 C s 0.00000058 +1eov 42 C p 36 C s -0.00000031 +1eov 43 C p 36 C s -0.00000168 +1eov 46 H s 36 C s 0.00000026 +1eov 55 C p 36 C s -0.00000002 +1eov 58 H s 36 C s 0.00000008 +1eov 41 C s 37 C p 0.00000031 +1eov 41 C s 38 C p 0.00000168 +1eov 42 C p 37 C p 0.00000002 +1eov 43 C p 37 C p -0.00000090 +1eov 42 C p 38 C p -0.00000090 +1eov 43 C p 38 C p -0.00000465 +1eov 44 C p 39 C p 0.00000018 +1eov 46 H s 37 C p 0.00000024 +1eov 46 H s 38 C p 0.00000068 +1eov 53 C s 38 C p 0.00000002 +1eov 55 C p 38 C p -0.00000007 +1eov 58 H s 37 C p -0.00000003 +1eov 58 H s 38 C p 0.00000023 +1eov 40 C s 40 C s 1.00000000 +1eov 41 C s 40 C s 0.24836239 +1eov 46 H s 40 C s 0.06069832 +1eov 52 C s 40 C s 0.00000224 +1eov 53 C s 40 C s 0.04283572 +1eov 54 C p 40 C s 0.04749158 +1eov 55 C p 40 C s -0.05282630 +1eov 58 H s 40 C s 0.00560597 +1eov 60 H s 40 C s 0.00577180 +1eov 41 C s 41 C s 1.00000000 +1eov 46 H s 41 C s 0.48445018 +1eov 52 C s 41 C s 0.04283572 +1eov 53 C s 41 C s 0.39315379 +1eov 54 C p 41 C s 0.27265559 +1eov 55 C p 41 C s -0.30328297 +1eov 58 H s 41 C s 0.09965606 +1eov 60 H s 41 C s 0.10177202 +1eov 42 C p 42 C p 1.00000000 +1eov 43 C p 43 C p 1.00000000 +1eov 44 C p 44 C p 1.00000000 +1eov 46 H s 42 C p 0.45129445 +1eov 46 H s 43 C p 0.10556299 +1eov 52 C s 42 C p -0.04749158 +1eov 52 C s 43 C p 0.05282630 +1eov 53 C s 42 C p -0.27265559 +1eov 53 C s 43 C p 0.30328297 +1eov 54 C p 42 C p -0.01649701 +1eov 55 C p 42 C p 0.28028940 +1eov 54 C p 43 C p 0.28028940 +1eov 55 C p 43 C p -0.07628724 +1eov 56 C p 44 C p 0.23548705 +1eov 58 H s 42 C p -0.11842404 +1eov 58 H s 43 C p 0.04900979 +1eov 60 H s 42 C p -0.03568903 +1eov 60 H s 43 C p 0.12555351 +1eov 46 H s 45 H s 0.00000006 +1eov 55 C p 45 H s -0.00000003 +1eov 58 H s 45 H s 0.00000015 +1eov 46 H s 46 H s 1.00000000 +1eov 52 C s 46 H s 0.00610975 +1eov 53 C s 46 H s 0.10603987 +1eov 54 C p 46 H s 0.12644547 +1eov 55 C p 46 H s -0.04804938 +1eov 58 H s 46 H s 0.01461637 +1eov 60 H s 46 H s 0.05493265 +1eov 52 C s 52 C s 1.00000000 +1eov 53 C s 52 C s 0.24836239 +1eov 58 H s 52 C s 0.06141276 +1eov 60 H s 52 C s 0.06131344 +1eov 53 C s 53 C s 1.00000000 +1eov 58 H s 53 C s 0.48732173 +1eov 60 H s 53 C s 0.48692411 +1eov 54 C p 54 C p 1.00000000 +1eov 55 C p 55 C p 1.00000000 +1eov 56 C p 56 C p 1.00000000 +1eov 58 H s 54 C p -0.45887461 +1eov 58 H s 55 C p -0.07654896 +1eov 60 H s 54 C p 0.13399724 +1eov 60 H s 55 C p 0.44524958 +1eov 58 H s 58 H s 1.00000000 +1eov 60 H s 58 H s 0.14896581 +1eov 60 H s 60 H s 1.00000000 + ==================================== + End overlap 1-e integrals + ==================================== + + Forming initial guess at 0.6s + + + Superposition of Atomic Density Guess + ------------------------------------- + + Sum of atomic energies: -376.44825176 + + Non-variational initial energy + ------------------------------ + + Total energy = -379.429467 + 1-e energy = -1401.451096 + 2-e energy = 576.084617 + HOMO = -0.037645 + LUMO = 0.163723 + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 ag 2 bu 3 ag 4 bu 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 ag 24 bu 25 bu + 26 ag 27 bu 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 bu + + + Starting SCF solution at 1.2s + + + + ---------------------------------------------- + Quadratically convergent ROHF + + Convergence threshold : 1.000E-04 + Maximum no. of iterations : 30 + Final Fock-matrix accuracy: 1.000E-07 + ---------------------------------------------- + + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% + + + iter energy gnorm gmax time + ----- ------------------- --------- --------- -------- + 1 -379.7024515658 7.56D-01 1.81D-01 2.4 + 2 -379.7670218883 1.53D-01 4.40D-02 2.5 + 3 -379.7689554257 6.43D-03 2.31D-03 2.5 + 4 -379.7689624910 3.37D-05 9.25D-06 2.6 + + + Final RHF results + ------------------ + + Total SCF energy = -379.768962491035 + One-electron energy = -1400.222183962455 + Two-electron energy = 574.516209303975 + Nuclear repulsion energy = 445.937012167446 + + Time for solution = 1.9s + + + + Symmetry analysis of molecular orbitals - final + ----------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 bu 2 ag 3 bu 4 ag 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 ag 44 bu 45 ag + + Final eigenvalues + ----------------- + + 1 + 1 -11.0406 + 2 -11.0405 + 3 -11.0316 + 4 -11.0316 + 5 -11.0290 + 6 -11.0288 + 7 -11.0286 + 8 -11.0286 + 9 -11.0175 + 10 -11.0175 + 11 -1.0903 + 12 -1.0203 + 13 -0.9749 + 14 -0.9503 + 15 -0.9096 + 16 -0.7999 + 17 -0.7628 + 18 -0.7276 + 19 -0.6968 + 20 -0.6281 + 21 -0.6057 + 22 -0.5729 + 23 -0.5536 + 24 -0.5532 + 25 -0.5254 + 26 -0.4967 + 27 -0.4925 + 28 -0.4637 + 29 -0.4464 + 30 -0.4217 + 31 -0.4156 + 32 -0.3770 + 33 -0.3151 + 34 -0.2784 + 35 -0.2222 + 36 0.1990 + 37 0.2685 + 38 0.3088 + 39 0.3971 + 40 0.5218 + 41 0.5650 + 42 0.5756 + 43 0.6216 + 44 0.6258 + 45 0.6582 + + ROHF Final Molecular Orbital Analysis + ------------------------------------- + + Vector 1 Occ=2.000000D+00 E=-1.104059D+01 Symmetry=bu + MO Center= -2.9D-14, -2.5D-13, 7.4D-20, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.701483 1 C s 6 -0.701483 2 C s + + Vector 2 Occ=2.000000D+00 E=-1.104052D+01 Symmetry=ag + MO Center= 3.3D-14, 1.5D-13, 6.2D-19, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.701542 1 C s 6 0.701542 2 C s + + Vector 3 Occ=2.000000D+00 E=-1.103159D+01 Symmetry=bu + MO Center= 2.1D-14, 1.0D-13, -8.9D-33, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.701357 11 C s 40 -0.701357 12 C s + + Vector 4 Occ=2.000000D+00 E=-1.103159D+01 Symmetry=ag + MO Center= -1.5D-12, 1.7D-12, 4.7D-18, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.701320 11 C s 40 0.701320 12 C s + + Vector 5 Occ=2.000000D+00 E=-1.102896D+01 Symmetry=bu + MO Center= -8.9D-15, 7.6D-16, -3.8D-33, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.594681 5 C s 26 -0.594681 6 C s + 11 0.372717 3 C s 16 -0.372717 4 C s + + Vector 6 Occ=2.000000D+00 E=-1.102883D+01 Symmetry=ag + MO Center= -5.5D-15, 9.9D-17, -1.8D-32, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.636098 5 C s 26 0.636098 6 C s + 11 0.296533 3 C s 16 0.296533 4 C s + + Vector 7 Occ=2.000000D+00 E=-1.102861D+01 Symmetry=bu + MO Center= 5.9D-15, -2.6D-14, -4.4D-32, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.594365 3 C s 16 -0.594365 4 C s + 21 -0.372219 5 C s 26 0.372219 6 C s + + Vector 8 Occ=2.000000D+00 E=-1.102859D+01 Symmetry=ag + MO Center= -2.3D-15, 1.9D-15, -9.1D-19, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.635860 3 C s 16 0.635860 4 C s + 21 -0.296035 5 C s 26 -0.296035 6 C s + + Vector 9 Occ=2.000000D+00 E=-1.101748D+01 Symmetry=bu + MO Center= 6.1D-11, -6.4D-10, -4.1D-18, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.701435 15 C s 52 -0.701435 16 C s + + Vector 10 Occ=2.000000D+00 E=-1.101748D+01 Symmetry=ag + MO Center= -6.0D-11, 6.4D-10, 7.0D-30, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.701435 15 C s 52 0.701435 16 C s + + Vector 11 Occ=2.000000D+00 E=-1.090299D+00 Symmetry=ag + MO Center= 3.8D-16, -5.7D-16, -3.2D-30, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.275368 1 C s 7 0.275368 2 C s + 12 0.247273 3 C s 17 0.247273 4 C s + 22 0.247126 5 C s 27 0.247126 6 C s + + Vector 12 Occ=2.000000D+00 E=-1.020254D+00 Symmetry=bu + MO Center= -6.8D-16, -1.8D-14, 5.5D-17, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.298699 11 C s 41 -0.298699 12 C s + 2 -0.270806 1 C s 7 0.270806 2 C s + 48 0.213652 15 C s 53 -0.213652 16 C s + + Vector 13 Occ=2.000000D+00 E=-9.749254D-01 Symmetry=ag + MO Center= 3.5D-15, 3.7D-15, -5.6D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.314473 11 C s 41 0.314473 12 C s + 48 0.310076 15 C s 53 0.310076 16 C s + + Vector 14 Occ=2.000000D+00 E=-9.503033D-01 Symmetry=bu + MO Center= 1.3D-15, -5.7D-15, -1.2D-16, r^2= 3.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.357133 3 C s 17 -0.357133 4 C s + 22 0.325008 5 C s 27 -0.325008 6 C s + + Vector 15 Occ=2.000000D+00 E=-9.096345D-01 Symmetry=bu + MO Center= 3.5D-16, 7.5D-15, 2.3D-32, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.292220 15 C s 53 -0.292220 16 C s + 2 0.279079 1 C s 7 -0.279079 2 C s + 22 -0.200698 5 C s 27 0.200698 6 C s + + Vector 16 Occ=2.000000D+00 E=-7.998830D-01 Symmetry=ag + MO Center= -2.9D-15, 1.9D-15, 2.4D-17, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.239926 15 C s 53 0.239926 16 C s + 22 0.229429 5 C s 27 0.229429 6 C s + 2 -0.212930 1 C s 7 -0.212930 2 C s + 14 -0.159170 3 C py 19 0.159170 4 C py + 36 -0.159504 11 C s 41 -0.159504 12 C s + + Vector 17 Occ=2.000000D+00 E=-7.628268D-01 Symmetry=ag + MO Center= 3.7D-15, 2.4D-15, -2.0D-18, r^2= 5.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.324855 3 C s 17 0.324855 4 C s + 3 0.189935 1 C px 8 -0.189935 2 C px + 22 -0.180804 5 C s 27 -0.180804 6 C s + 31 0.173636 7 H s 32 0.173636 8 H s + 24 0.169743 5 C py 29 -0.169743 6 C py + + Vector 18 Occ=2.000000D+00 E=-7.276317D-01 Symmetry=bu + MO Center= -8.5D-17, 2.4D-15, -9.9D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.297522 11 C s 41 -0.297522 12 C s + 48 -0.248206 15 C s 53 0.248206 16 C s + 45 0.174840 13 H s 46 -0.174840 14 H s + 57 -0.163892 17 H s 58 0.163892 18 H s + + Vector 19 Occ=2.000000D+00 E=-6.967772D-01 Symmetry=ag + MO Center= -9.3D-16, 0.0D+00, -1.1D-17, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.194626 5 C px 28 -0.194626 6 C px + 36 0.187351 11 C s 41 0.187351 12 C s + 13 0.174310 3 C px 18 -0.174310 4 C px + 2 -0.170808 1 C s 7 -0.170808 2 C s + 33 0.168856 9 H s 34 0.168856 10 H s + + Vector 20 Occ=2.000000D+00 E=-6.280522D-01 Symmetry=ag + MO Center= 5.1D-15, -3.5D-14, 7.8D-17, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.204700 15 C px 54 -0.204700 16 C px + 38 0.183205 11 C py 43 -0.183205 12 C py + 57 0.178852 17 H s 58 0.178852 18 H s + 45 -0.152733 13 H s 46 -0.152733 14 H s + + Vector 21 Occ=2.000000D+00 E=-6.056780D-01 Symmetry=bu + MO Center= -1.9D-15, 5.6D-14, -3.4D-18, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.215048 11 C px 42 0.215048 12 C px + 50 0.201798 15 C py 55 0.201798 16 C py + 14 0.181913 3 C py 19 0.181913 4 C py + 59 -0.179094 19 H s 60 0.179094 20 H s + 45 -0.165299 13 H s 46 0.165299 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.729426D-01 Symmetry=bu + MO Center= -1.0D-15, 2.1D-15, 1.3D-32, r^2= 7.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.234899 9 H s 34 -0.234899 10 H s + 31 -0.225759 7 H s 32 0.225759 8 H s + 2 0.223491 1 C s 7 -0.223491 2 C s + 13 -0.220802 3 C px 18 -0.220802 4 C px + 24 -0.179464 5 C py 29 -0.179464 6 C py + + Vector 23 Occ=2.000000D+00 E=-5.536035D-01 Symmetry=bu + MO Center= -2.3D-17, 1.9D-15, -4.2D-33, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.252837 15 C px 54 0.252837 16 C px + 23 0.248952 5 C px 28 0.248952 6 C px + 3 -0.221990 1 C px 8 -0.221990 2 C px + 57 0.222772 17 H s 58 -0.222772 18 H s + 38 0.178895 11 C py 43 0.178895 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.531658D-01 Symmetry=ag + MO Center= -5.5D-16, -2.7D-14, -1.5D-18, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.336239 15 C py 55 -0.336239 16 C py + 59 -0.268357 19 H s 60 -0.268357 20 H s + 37 0.248998 11 C px 42 -0.248998 12 C px + 45 -0.151363 13 H s 46 -0.151363 14 H s + + Vector 25 Occ=2.000000D+00 E=-5.253606D-01 Symmetry=bu + MO Center= -5.8D-16, -9.2D-16, 8.6D-34, r^2= 4.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.299404 3 C px 18 0.299404 4 C px + 31 0.258504 7 H s 32 -0.258504 8 H s + 24 -0.232845 5 C py 29 -0.232845 6 C py + 33 0.223596 9 H s 34 -0.223596 10 H s + 23 0.179046 5 C px 28 0.179046 6 C px + + Vector 26 Occ=2.000000D+00 E=-4.966990D-01 Symmetry=bu + MO Center= 3.3D-15, 1.0D-14, 2.3D-17, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.238942 15 C py 55 -0.238942 16 C py + 14 0.222972 3 C py 19 0.222972 4 C py + 37 -0.201999 11 C px 42 -0.201999 12 C px + 38 0.188759 11 C py 43 0.188759 12 C py + 24 -0.184876 5 C py 29 -0.184876 6 C py + + Vector 27 Occ=2.000000D+00 E=-4.925280D-01 Symmetry=ag + MO Center= -5.2D-15, -1.4D-14, -4.3D-30, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.296131 15 C px 54 -0.296131 16 C px + 57 0.273185 17 H s 58 0.273185 18 H s + 37 -0.209362 11 C px 42 0.209362 12 C px + 45 0.202959 13 H s 46 0.202959 14 H s + 31 -0.156851 7 H s 32 -0.156851 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.637308D-01 Symmetry=au + MO Center= 5.8D-16, 8.3D-17, -7.4D-17, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.331504 1 C pz 10 0.331504 2 C pz + 15 0.302831 3 C pz 20 0.302831 4 C pz + 25 0.301868 5 C pz 30 0.301868 6 C pz + 39 0.165577 11 C pz 44 0.165577 12 C pz + + Vector 29 Occ=2.000000D+00 E=-4.464302D-01 Symmetry=bu + MO Center= -6.8D-16, -7.8D-16, -4.5D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.257252 13 H s 46 -0.257252 14 H s + 4 0.243719 1 C py 9 0.243719 2 C py + 57 0.226298 17 H s 58 -0.226298 18 H s + 37 -0.214534 11 C px 42 -0.214534 12 C px + 59 -0.211967 19 H s 60 0.211967 20 H s + + Vector 30 Occ=2.000000D+00 E=-4.216550D-01 Symmetry=ag + MO Center= 3.3D-15, 8.0D-15, 4.6D-19, r^2= 5.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 -0.268212 3 C py 19 0.268212 4 C py + 4 0.260257 1 C py 9 -0.260257 2 C py + 33 -0.253899 9 H s 34 -0.253899 10 H s + 38 0.232935 11 C py 43 -0.232935 12 C py + 24 0.223473 5 C py 29 -0.223473 6 C py + + Vector 31 Occ=2.000000D+00 E=-4.156220D-01 Symmetry=ag + MO Center= 5.1D-16, -1.8D-15, 3.4D-18, r^2= 6.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.278853 1 C px 8 -0.278853 2 C px + 23 0.269038 5 C px 28 -0.269038 6 C px + 31 -0.251625 7 H s 32 -0.251625 8 H s + 13 -0.210356 3 C px 18 0.210356 4 C px + 45 -0.183775 13 H s 46 -0.183775 14 H s + + Vector 32 Occ=2.000000D+00 E=-3.769631D-01 Symmetry=bg + MO Center= -1.1D-16, 1.8D-14, 3.1D-17, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.383213 11 C pz 44 -0.383213 12 C pz + 5 -0.318675 1 C pz 10 0.318675 2 C pz + 51 0.306666 15 C pz 56 -0.306666 16 C pz + + Vector 33 Occ=2.000000D+00 E=-3.151268D-01 Symmetry=au + MO Center= 2.5D-14, -1.7D-14, -1.9D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.426295 15 C pz 56 0.426295 16 C pz + 39 0.415175 11 C pz 44 0.415175 12 C pz + 15 -0.164508 3 C pz 20 -0.164508 4 C pz + 25 -0.164934 5 C pz 30 -0.164934 6 C pz + + Vector 34 Occ=2.000000D+00 E=-2.783651D-01 Symmetry=bg + MO Center= -2.6D-14, 3.6D-15, 4.0D-17, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.459816 3 C pz 20 -0.459816 4 C pz + 25 0.461493 5 C pz 30 -0.461493 6 C pz + + Vector 35 Occ=2.000000D+00 E=-2.221904D-01 Symmetry=bg + MO Center= -3.5D-17, -3.9D-15, 1.2D-17, r^2= 7.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.417993 1 C pz 10 -0.417993 2 C pz + 51 0.358184 15 C pz 56 -0.358184 16 C pz + 15 0.231889 3 C pz 20 -0.231889 4 C pz + 25 -0.232000 5 C pz 30 0.232000 6 C pz + 39 0.218349 11 C pz 44 -0.218349 12 C pz + + Vector 36 Occ=0.000000D+00 E= 1.989924D-01 Symmetry=au + MO Center= -1.1D-16, -5.3D-14, 1.3D-16, r^2= 7.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.471534 1 C pz 10 0.471534 2 C pz + 51 -0.414928 15 C pz 56 -0.414928 16 C pz + 25 -0.278569 5 C pz 30 -0.278569 6 C pz + 15 -0.249973 3 C pz 20 -0.249973 4 C pz + 39 0.246934 11 C pz 44 0.246934 12 C pz + + Vector 37 Occ=0.000000D+00 E= 2.685138D-01 Symmetry=au + MO Center= 2.3D-16, -2.0D-16, 2.1D-19, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.578558 3 C pz 20 0.578558 4 C pz + 25 -0.558106 5 C pz 30 -0.558106 6 C pz + + Vector 38 Occ=0.000000D+00 E= 3.088252D-01 Symmetry=bg + MO Center= 1.7D-16, 5.5D-14, 1.9D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.531237 15 C pz 56 0.531237 16 C pz + 39 0.524391 11 C pz 44 -0.524391 12 C pz + 15 0.225543 3 C pz 20 -0.225543 4 C pz + 25 -0.220434 5 C pz 30 0.220434 6 C pz + + Vector 39 Occ=0.000000D+00 E= 3.970770D-01 Symmetry=au + MO Center= 4.2D-17, -2.7D-15, 5.5D-18, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.535070 11 C pz 44 0.535070 12 C pz + 5 -0.473494 1 C pz 10 -0.473494 2 C pz + 51 -0.407351 15 C pz 56 -0.407351 16 C pz + 25 0.186775 5 C pz 30 0.186775 6 C pz + 15 0.161862 3 C pz 20 0.161862 4 C pz + + Vector 40 Occ=0.000000D+00 E= 5.217566D-01 Symmetry=bg + MO Center= 9.7D-17, 1.8D-16, 2.6D-17, r^2= 3.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.538711 1 C pz 10 -0.538711 2 C pz + 15 -0.469482 3 C pz 20 0.469482 4 C pz + 25 0.471487 5 C pz 30 -0.471487 6 C pz + 39 0.278750 11 C pz 44 -0.278750 12 C pz + 51 -0.158475 15 C pz 56 0.158475 16 C pz + + Vector 41 Occ=0.000000D+00 E= 5.650160D-01 Symmetry=ag + MO Center= 3.8D-15, -4.1D-14, 1.8D-17, r^2= 8.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.434798 9 H s 34 0.434798 10 H s + 31 0.420942 7 H s 32 0.420942 8 H s + 2 -0.380055 1 C s 7 -0.380055 2 C s + 59 0.353828 19 H s 60 0.353828 20 H s + 38 0.323940 11 C py 43 -0.323940 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.755620D-01 Symmetry=bu + MO Center= 3.3D-15, 5.1D-15, -3.4D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.448702 13 H s 46 -0.448702 14 H s + 13 0.355546 3 C px 18 0.355546 4 C px + 37 0.350909 11 C px 42 0.350909 12 C px + 57 -0.321562 17 H s 58 0.321562 18 H s + 31 -0.318904 7 H s 32 0.318904 8 H s + + Vector 43 Occ=0.000000D+00 E= 6.215596D-01 Symmetry=ag + MO Center= 5.3D-15, -1.2D-15, -4.4D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.589566 13 H s 46 0.589566 14 H s + 12 0.397886 3 C s 17 0.397886 4 C s + 36 -0.394579 11 C s 41 -0.394579 12 C s + 57 -0.381363 17 H s 58 -0.381363 18 H s + 37 0.350692 11 C px 42 -0.350692 12 C px + + Vector 44 Occ=0.000000D+00 E= 6.258003D-01 Symmetry=bu + MO Center= -8.2D-15, 2.4D-14, 7.5D-17, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.529760 11 C s 41 -0.529760 12 C s + 4 0.453566 1 C py 9 0.453566 2 C py + 33 0.408895 9 H s 34 -0.408895 10 H s + 59 0.389457 19 H s 60 -0.389457 20 H s + 48 -0.337620 15 C s 53 0.337620 16 C s + + Vector 45 Occ=0.000000D+00 E= 6.582325D-01 Symmetry=ag + MO Center= -8.6D-16, 6.2D-15, -8.0D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.683576 15 C s 53 0.683576 16 C s + 22 0.582877 5 C s 27 0.582877 6 C s + 57 -0.541814 17 H s 58 -0.541814 18 H s + 12 -0.457382 3 C s 17 -0.457382 4 C s + 59 -0.330810 19 H s 60 -0.330810 20 H s + + Vector 46 Occ=0.000000D+00 E= 6.593956D-01 Symmetry=bu + MO Center= -1.2D-14, 5.9D-15, 1.6D-18, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.611116 5 C s 27 -0.611116 6 C s + 48 0.533506 15 C s 53 -0.533506 16 C s + 2 0.492301 1 C s 7 -0.492301 2 C s + 12 -0.461393 3 C s 17 0.461393 4 C s + 57 -0.460445 17 H s 58 0.460445 18 H s + + Vector 47 Occ=0.000000D+00 E= 6.771779D-01 Symmetry=bu + MO Center= 1.4D-14, 3.7D-14, 2.4D-17, r^2= 9.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.598268 7 H s 32 -0.598268 8 H s + 36 -0.467282 11 C s 41 0.467282 12 C s + 45 0.438025 13 H s 46 -0.438025 14 H s + 12 -0.361066 3 C s 17 0.361066 4 C s + 59 0.328681 19 H s 60 -0.328681 20 H s + + Vector 48 Occ=0.000000D+00 E= 6.941860D-01 Symmetry=ag + MO Center= -2.4D-16, -3.9D-16, -1.5D-17, r^2= 7.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.796664 1 C s 7 0.796664 2 C s + 36 -0.570541 11 C s 41 -0.570541 12 C s + 22 -0.469182 5 C s 27 -0.469182 6 C s + 12 -0.444286 3 C s 17 -0.444286 4 C s + 48 0.390409 15 C s 53 0.390409 16 C s + + Vector 49 Occ=0.000000D+00 E= 7.067096D-01 Symmetry=bu + MO Center= -3.6D-15, -3.8D-14, -5.3D-19, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.702329 15 C s 53 -0.702329 16 C s + 57 -0.514860 17 H s 58 0.514860 18 H s + 33 0.488194 9 H s 34 -0.488194 10 H s + 36 -0.430466 11 C s 41 0.430466 12 C s + 22 -0.425207 5 C s 27 0.425207 6 C s + + Vector 50 Occ=0.000000D+00 E= 7.401371D-01 Symmetry=ag + MO Center= 1.3D-15, -2.1D-15, 1.8D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.727765 3 C s 17 0.727765 4 C s + 22 -0.614468 5 C s 27 -0.614468 6 C s + 59 -0.456852 19 H s 60 -0.456852 20 H s + 48 0.397621 15 C s 53 0.397621 16 C s + 50 -0.372517 15 C py 55 0.372517 16 C py + + Vector 51 Occ=0.000000D+00 E= 8.022252D-01 Symmetry=ag + MO Center= 4.7D-16, 8.6D-16, -1.7D-17, r^2= 6.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.586839 1 C py 9 -0.586839 2 C py + 36 -0.485996 11 C s 41 -0.485996 12 C s + 2 -0.462721 1 C s 7 -0.462721 2 C s + 13 -0.446670 3 C px 18 0.446670 4 C px + 49 -0.358149 15 C px 54 0.358149 16 C px + + Vector 52 Occ=0.000000D+00 E= 8.256549D-01 Symmetry=bu + MO Center= 3.1D-15, -5.8D-15, -1.6D-17, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.642782 3 C s 17 -0.642782 4 C s + 3 -0.555346 1 C px 8 -0.555346 2 C px + 50 0.490164 15 C py 55 0.490164 16 C py + 24 -0.479529 5 C py 29 -0.479529 6 C py + 59 0.356459 19 H s 60 -0.356459 20 H s + + Vector 53 Occ=0.000000D+00 E= 8.606143D-01 Symmetry=ag + MO Center= -5.7D-16, -2.7D-15, -3.3D-18, r^2= 5.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.531368 3 C px 18 -0.531368 4 C px + 23 -0.518376 5 C px 28 0.518376 6 C px + 33 0.509444 9 H s 34 0.509444 10 H s + 31 -0.441690 7 H s 32 -0.441690 8 H s + 24 0.395281 5 C py 29 -0.395281 6 C py + + Vector 54 Occ=0.000000D+00 E= 8.877568D-01 Symmetry=bu + MO Center= -1.2D-15, -5.2D-16, -2.0D-17, r^2= 5.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 0.716776 3 C py 19 0.716776 4 C py + 22 0.610590 5 C s 27 -0.610590 6 C s + 36 -0.434047 11 C s 41 0.434047 12 C s + 24 0.382161 5 C py 29 0.382161 6 C py + 2 -0.361718 1 C s 7 0.361718 2 C s + + Vector 55 Occ=0.000000D+00 E= 9.210085D-01 Symmetry=bu + MO Center= -1.3D-15, 1.4D-15, -1.7D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.648636 1 C s 7 -0.648636 2 C s + 49 -0.507370 15 C px 54 -0.507370 16 C px + 38 0.482570 11 C py 43 0.482570 12 C py + 23 -0.393564 5 C px 28 -0.393564 6 C px + 57 0.345389 17 H s 58 -0.345389 18 H s + + Vector 56 Occ=0.000000D+00 E= 9.399496D-01 Symmetry=ag + MO Center= 1.4D-17, 3.7D-15, -5.4D-18, r^2= 9.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.556681 11 C px 42 -0.556681 12 C px + 50 -0.539847 15 C py 55 0.539847 16 C py + 14 0.392199 3 C py 19 -0.392199 4 C py + 4 -0.359948 1 C py 9 0.359948 2 C py + 24 0.326779 5 C py 29 -0.326779 6 C py + + Vector 57 Occ=0.000000D+00 E= 9.902851D-01 Symmetry=ag + MO Center= -2.0D-15, -1.7D-14, -1.5D-19, r^2= 9.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.680160 11 C py 43 -0.680160 12 C py + 49 -0.583682 15 C px 54 0.583682 16 C px + 24 -0.429950 5 C py 29 0.429950 6 C py + 4 -0.411894 1 C py 9 0.411894 2 C py + 14 -0.365147 3 C py 19 0.365147 4 C py + + Vector 58 Occ=0.000000D+00 E= 1.027265D+00 Symmetry=bu + MO Center= 1.3D-15, 1.7D-14, -4.6D-17, r^2= 9.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.608350 11 C px 42 0.608350 12 C px + 50 -0.536814 15 C py 55 -0.536814 16 C py + 48 -0.526962 15 C s 53 0.526962 16 C s + 3 -0.468612 1 C px 8 -0.468612 2 C px + 38 -0.458225 11 C py 43 -0.458225 12 C py + + Vector 59 Occ=0.000000D+00 E= 1.107700D+00 Symmetry=ag + MO Center= -2.8D-16, 1.8D-15, -1.8D-18, r^2= 5.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.712025 1 C px 8 -0.712025 2 C px + 14 -0.548009 3 C py 19 0.548009 4 C py + 23 -0.444243 5 C px 28 0.444243 6 C px + 24 -0.423224 5 C py 29 0.423224 6 C py + 37 0.414788 11 C px 42 -0.414788 12 C px + + Vector 60 Occ=0.000000D+00 E= 1.124935D+00 Symmetry=bu + MO Center= -1.7D-16, 8.1D-16, 4.6D-18, r^2= 3.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.662430 1 C py 9 0.662430 2 C py + 13 -0.566300 3 C px 18 -0.566300 4 C px + 23 0.494107 5 C px 28 0.494107 6 C px + 22 -0.411545 5 C s 27 0.411545 6 C s + 24 -0.394345 5 C py 29 -0.394345 6 C py + + + Final MO vectors + ---------------- + + + global array: scf_init: MOs[1:60,1:60], handle: -1000 + + 1 2 3 4 5 6 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.70148 0.70154 -0.00965 0.00998 0.00164 -0.00338 + 2 0.02526 0.02518 0.00379 -0.00374 0.00165 -0.00632 + 3 -0.00000 0.00004 0.00047 -0.00047 -0.00361 0.00164 + 4 -0.00066 -0.00045 0.00294 -0.00293 0.00008 0.00193 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 -0.70148 0.70154 0.00965 0.00998 -0.00164 -0.00338 + 7 -0.02526 0.02518 -0.00379 -0.00374 -0.00165 -0.00632 + 8 -0.00000 -0.00004 0.00047 0.00047 -0.00361 -0.00164 + 9 -0.00066 0.00045 0.00294 0.00293 0.00008 -0.00193 + 10 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 11 0.00581 0.00321 0.00369 -0.00628 0.37272 0.29653 + 12 -0.00477 -0.00461 0.00007 -0.00019 0.00915 0.00633 + 13 0.00242 0.00243 -0.00000 0.00006 0.00007 0.00034 + 14 -0.00200 -0.00203 0.00003 -0.00001 0.00237 0.00275 + 15 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 16 -0.00581 0.00321 -0.00369 -0.00628 -0.37272 0.29653 + 17 0.00477 -0.00461 -0.00007 -0.00019 -0.00915 0.00633 + 18 0.00242 -0.00243 -0.00000 -0.00006 0.00007 -0.00034 + 19 -0.00200 0.00203 0.00003 0.00001 0.00237 -0.00275 + 20 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 21 -0.00580 0.00327 -0.00243 -0.00515 0.59468 0.63610 + 22 0.00473 -0.00456 0.00002 -0.00009 0.01884 0.02091 + 23 -0.00291 0.00292 0.00002 0.00007 -0.00077 -0.00054 + 24 -0.00110 0.00113 -0.00000 -0.00002 -0.00110 -0.00094 + 25 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 26 0.00580 0.00327 0.00243 -0.00515 -0.59468 0.63610 + 27 -0.00473 -0.00456 -0.00002 -0.00009 -0.01884 0.02091 + 28 -0.00291 -0.00292 0.00002 -0.00007 -0.00077 0.00054 + 29 -0.00110 -0.00113 -0.00000 0.00002 -0.00110 0.00094 + 30 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 31 0.00006 -0.00002 -0.00001 0.00001 -0.00239 -0.00203 + 32 -0.00006 -0.00002 0.00001 0.00001 0.00239 -0.00203 + 33 -0.00005 -0.00003 -0.00009 -0.00009 -0.00393 -0.00436 + 34 0.00005 -0.00003 0.00009 -0.00009 0.00393 -0.00436 + 35 0.00891 -0.00924 0.70136 0.70132 0.00014 0.00744 + 36 0.00449 -0.00455 0.02500 0.02499 0.00007 0.00041 + 37 0.00063 -0.00064 0.00051 0.00051 -0.00003 0.00004 + 38 0.00288 -0.00292 -0.00065 -0.00065 0.00005 -0.00002 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 -0.00891 -0.00924 -0.70136 0.70132 -0.00014 0.00744 + 41 -0.00449 -0.00455 -0.02500 0.02499 -0.00007 0.00041 + 42 0.00063 0.00064 0.00051 -0.00051 -0.00003 -0.00004 + 43 0.00288 0.00292 -0.00065 0.00065 0.00005 0.00002 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.00009 0.00009 -0.00478 -0.00478 -0.00000 -0.00013 + 46 0.00009 0.00009 0.00478 -0.00478 0.00000 -0.00013 + 47 0.00052 -0.00049 0.01784 0.01784 -0.00075 -0.00094 + 48 -0.00018 0.00019 -0.00474 -0.00474 -0.00004 -0.00017 + 49 -0.00004 0.00004 0.00211 0.00211 -0.00004 -0.00001 + 50 -0.00010 0.00010 -0.00239 -0.00239 -0.00003 -0.00011 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 -0.00052 -0.00049 -0.01784 0.01784 0.00075 -0.00094 + 53 0.00018 0.00019 0.00474 -0.00474 0.00004 -0.00017 + 54 -0.00004 -0.00004 0.00211 -0.00211 -0.00004 0.00001 + 55 -0.00010 -0.00010 -0.00239 0.00239 -0.00003 0.00011 + 56 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 57 0.00010 -0.00010 -0.00006 -0.00006 0.00009 0.00010 + 58 -0.00010 -0.00010 0.00006 -0.00006 -0.00009 0.00010 + 59 0.00002 -0.00002 -0.00004 -0.00004 -0.00001 -0.00001 + 60 -0.00002 -0.00002 0.00004 -0.00004 0.00001 -0.00001 + + 7 8 9 10 11 12 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00716 -0.00117 -0.00027 0.00024 -0.10669 0.10127 + 2 -0.00713 -0.00230 -0.00027 0.00027 0.27537 -0.27081 + 3 -0.00043 -0.00336 -0.00005 0.00005 -0.00529 -0.00407 + 4 0.00237 0.00137 -0.00012 0.00012 -0.03821 -0.03177 + 5 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 6 0.00716 -0.00117 0.00027 0.00024 -0.10669 -0.10127 + 7 0.00713 -0.00230 0.00027 0.00027 0.27537 0.27081 + 8 -0.00043 0.00336 -0.00005 -0.00005 0.00529 -0.00407 + 9 0.00237 -0.00137 -0.00012 -0.00012 0.03821 -0.03177 + 10 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 11 0.59436 0.63586 -0.00026 0.00041 -0.09665 0.03774 + 12 0.02429 0.02493 0.00001 -0.00007 0.24727 -0.10004 + 13 -0.00099 -0.00071 -0.00001 0.00002 -0.05226 0.02862 + 14 -0.00193 -0.00161 0.00006 -0.00002 -0.01452 -0.05673 + 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 16 -0.59436 0.63586 0.00026 0.00041 -0.09665 -0.03774 + 17 -0.02429 0.02493 -0.00001 -0.00007 0.24727 0.10004 + 18 -0.00099 0.00071 -0.00001 -0.00002 0.05226 0.02862 + 19 -0.00193 0.00161 0.00006 0.00002 0.01452 -0.05673 + 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 21 -0.37222 -0.29604 0.00107 0.00108 -0.09646 -0.04167 + 22 -0.01788 -0.01502 0.00000 -0.00001 0.24713 0.11107 + 23 -0.00002 -0.00025 0.00001 0.00000 -0.04467 -0.04526 + 24 -0.00292 -0.00308 0.00009 0.00008 0.03103 -0.04400 + 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 26 0.37222 -0.29604 -0.00107 0.00108 -0.09646 0.04167 + 27 0.01788 -0.01502 -0.00000 -0.00001 0.24713 -0.11107 + 28 -0.00002 0.00025 0.00001 -0.00000 0.04467 -0.04526 + 29 -0.00292 0.00308 0.00009 -0.00008 -0.03103 -0.04400 + 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 31 -0.00405 -0.00433 0.00000 -0.00000 0.04417 -0.02580 + 32 0.00405 -0.00433 -0.00000 -0.00000 0.04417 0.02580 + 33 0.00261 0.00202 0.00005 0.00006 0.04439 0.02948 + 34 -0.00261 0.00202 -0.00005 0.00006 0.04439 -0.02948 + 35 -0.00456 0.00356 -0.01740 -0.01739 -0.04969 -0.11307 + 36 -0.00046 0.00018 -0.00604 -0.00604 0.12875 0.29870 + 37 -0.00007 0.00001 -0.00218 -0.00218 0.01431 0.03768 + 38 -0.00009 -0.00002 0.00239 0.00239 0.02732 0.00637 + 39 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 40 0.00456 0.00356 0.01740 -0.01739 -0.04969 0.11307 + 41 0.00046 0.00018 0.00604 -0.00604 0.12875 -0.29870 + 42 -0.00007 -0.00001 -0.00218 0.00218 -0.01431 0.03768 + 43 -0.00009 0.00002 0.00239 -0.00239 -0.02732 0.00637 + 44 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 45 0.00010 -0.00006 0.00017 0.00017 0.02537 0.06663 + 46 -0.00010 -0.00006 -0.00017 0.00017 0.02537 -0.06663 + 47 0.00066 0.00018 0.70143 0.70143 -0.02518 -0.08141 + 48 0.00014 -0.00004 0.02536 0.02536 0.06484 0.21365 + 49 0.00000 0.00003 -0.00077 -0.00077 -0.01330 -0.03922 + 50 0.00008 -0.00003 0.00082 0.00082 0.02040 0.05117 + 51 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 52 -0.00066 0.00018 -0.70143 0.70143 -0.02518 0.08141 + 53 -0.00014 -0.00004 -0.02536 0.02536 0.06484 -0.21365 + 54 0.00000 -0.00003 -0.00077 0.00077 0.01330 -0.03922 + 55 0.00008 0.00003 0.00082 -0.00082 -0.02040 0.05117 + 56 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 57 -0.00007 -0.00006 -0.00473 -0.00473 0.01401 0.04892 + 58 0.00007 -0.00006 0.00473 -0.00473 0.01401 -0.04892 + 59 0.00001 -0.00000 -0.00475 -0.00475 0.01084 0.04446 + 60 -0.00001 -0.00000 0.00475 -0.00475 0.01084 -0.04446 + + 13 14 15 16 17 18 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00297 -0.01206 -0.10028 0.07233 0.05043 -0.01130 + 2 0.01021 0.03299 0.27908 -0.21293 -0.15131 0.03251 + 3 0.01072 0.12512 -0.01858 -0.11392 0.18994 -0.05062 + 4 0.09341 -0.02334 -0.05879 -0.07380 -0.06338 -0.13855 + 5 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 6 -0.00297 0.01206 0.10028 0.07233 0.05043 0.01130 + 7 0.01021 -0.03299 -0.27908 -0.21293 -0.15131 -0.03251 + 8 -0.01072 0.12512 -0.01858 0.11392 -0.18994 -0.05062 + 9 -0.09341 -0.02334 -0.05879 0.07380 0.06338 -0.13855 + 10 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 11 0.04598 -0.13091 -0.04228 -0.00068 -0.10905 -0.04827 + 12 -0.12241 0.35713 0.11798 0.00038 0.32485 0.14794 + 13 0.01557 -0.00206 -0.03981 0.03447 0.07474 -0.00499 + 14 0.03503 -0.05907 0.09190 -0.15917 0.04222 0.00882 + 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 16 0.04598 0.13091 0.04228 -0.00068 -0.10905 0.04827 + 17 -0.12241 -0.35713 -0.11798 0.00038 0.32485 -0.14794 + 18 -0.01557 -0.00206 -0.03981 -0.03447 -0.07474 -0.00499 + 19 -0.03503 -0.05907 0.09190 0.15917 -0.04222 0.00882 + 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 21 0.04178 -0.11920 0.07212 -0.07935 0.06026 0.03028 + 22 -0.11047 0.32501 -0.20070 0.22943 -0.18080 -0.09235 + 23 0.00187 0.03044 0.05768 0.06813 0.08309 0.03409 + 24 -0.04440 0.06952 0.04833 0.03027 0.16974 0.07638 + 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 26 0.04178 0.11920 -0.07212 -0.07935 0.06026 -0.03028 + 27 -0.11047 -0.32501 0.20070 0.22943 -0.18080 0.09235 + 28 -0.00187 0.03044 0.05768 -0.06813 -0.08309 0.03409 + 29 0.04440 0.06952 0.04833 -0.03027 -0.16974 0.07638 + 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 31 -0.02382 0.09808 0.03404 -0.01381 0.17364 0.05184 + 32 -0.02382 -0.09808 -0.03404 -0.01381 0.17364 -0.05184 + 33 -0.01812 0.08988 -0.05447 0.10625 -0.09277 -0.05588 + 34 -0.01812 -0.08988 0.05447 0.10625 -0.09277 0.05588 + 35 -0.11765 0.00033 -0.05074 0.05255 0.00696 -0.09654 + 36 0.31447 -0.00141 0.13620 -0.15950 -0.02294 0.29752 + 37 0.04856 0.01960 0.04017 0.07656 -0.04227 -0.11268 + 38 -0.05856 -0.01676 -0.12811 -0.13284 -0.07422 0.04537 + 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 40 -0.11765 -0.00033 0.05074 0.05255 0.00696 0.09654 + 41 0.31447 0.00141 -0.13620 -0.15950 -0.02294 -0.29752 + 42 -0.04856 0.01960 0.04017 -0.07656 0.04227 -0.11268 + 43 0.05856 -0.01676 -0.12811 0.13284 0.07422 0.04537 + 44 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 45 0.07614 -0.00904 0.03781 -0.08110 0.03153 0.17484 + 46 0.07614 0.00904 -0.03781 -0.08110 0.03153 -0.17484 + 47 -0.11635 -0.01271 -0.10674 -0.08250 -0.03462 0.08032 + 48 0.31008 0.03382 0.29222 0.23993 0.10374 -0.24821 + 49 -0.05070 0.00083 -0.03515 0.03354 -0.01185 -0.11853 + 50 0.05563 0.00584 0.02111 -0.03806 -0.04423 0.09244 + 51 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 52 -0.11635 0.01271 0.10674 -0.08250 -0.03462 -0.08032 + 53 0.31008 -0.03382 -0.29222 0.23993 0.10374 0.24821 + 54 0.05070 0.00083 -0.03515 -0.03354 0.01185 -0.11853 + 55 -0.05563 0.00584 0.02111 0.03806 0.04423 0.09244 + 56 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 57 0.07436 0.01269 0.07688 0.10484 0.02247 -0.16389 + 58 0.07436 -0.01269 -0.07688 0.10484 0.02247 0.16389 + 59 0.07480 0.00781 0.08811 0.10145 0.06533 -0.13085 + 60 0.07480 -0.00781 -0.08811 0.10145 0.06533 0.13085 + + 19 20 21 22 23 24 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.05635 -0.02870 0.02569 -0.06597 -0.01971 0.01990 + 2 -0.17081 0.09582 -0.08867 0.22349 0.06676 -0.06515 + 3 -0.01908 0.04971 0.11788 0.10050 -0.22199 -0.01364 + 4 0.13510 0.13632 -0.13269 -0.03061 -0.13927 -0.00811 + 5 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 6 0.05635 -0.02870 -0.02569 0.06597 0.01971 0.01990 + 7 -0.17081 0.09582 0.08867 -0.22349 -0.06676 -0.06515 + 8 0.01908 -0.04971 0.11788 0.10050 -0.22199 0.01364 + 9 -0.13510 -0.13632 -0.13269 -0.03061 -0.13927 0.00811 + 10 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 11 -0.00739 -0.01171 -0.02327 0.04508 -0.00178 -0.02313 + 12 0.02548 0.04483 0.07841 -0.15396 0.00340 0.07690 + 13 0.17431 0.14312 0.02854 -0.22080 0.00235 -0.00636 + 14 -0.09610 0.13702 0.18191 0.06810 -0.11758 -0.08071 + 15 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 16 -0.00739 -0.01171 0.02327 -0.04508 0.00178 -0.02313 + 17 0.02548 0.04483 -0.07841 0.15396 -0.00340 0.07690 + 18 -0.17431 -0.14312 0.02854 -0.22080 0.00235 0.00636 + 19 0.09610 -0.13702 0.18191 0.06810 -0.11758 0.08071 + 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 21 -0.04991 0.01688 0.04175 -0.04083 0.01136 0.01619 + 22 0.15823 -0.04801 -0.13643 0.14102 -0.03587 -0.05945 + 23 0.19463 0.09267 -0.10371 0.11539 0.24895 -0.03894 + 24 -0.02349 -0.13871 -0.09327 -0.17946 0.06138 0.13432 + 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 26 -0.04991 0.01688 -0.04175 0.04083 -0.01136 0.01619 + 27 0.15823 -0.04801 0.13643 -0.14102 0.03587 -0.05945 + 28 -0.19463 -0.09267 -0.10371 0.11539 0.24895 0.03894 + 29 0.02349 0.13871 -0.09327 -0.17946 0.06138 -0.13432 + 30 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 31 0.09884 0.14691 0.11132 -0.22576 -0.03144 0.00351 + 32 0.09884 0.14691 -0.11132 0.22576 0.03144 0.00351 + 33 0.16886 0.10361 -0.07136 0.23490 0.12912 -0.11659 + 34 0.16886 0.10361 0.07136 -0.23490 -0.12912 -0.11659 + 35 -0.06065 0.03501 -0.01410 -0.01560 -0.00245 -0.02553 + 36 0.18735 -0.11049 0.04410 0.04398 0.01483 0.07453 + 37 -0.07122 0.11003 0.21505 0.04703 -0.04675 0.24900 + 38 -0.01009 0.18321 0.10305 -0.11921 0.17890 -0.08633 + 39 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 40 -0.06065 0.03501 0.01410 0.01560 0.00245 -0.02553 + 41 0.18735 -0.11049 -0.04410 -0.04398 -0.01483 0.07453 + 42 0.07122 -0.11003 0.21505 0.04703 -0.04675 -0.24900 + 43 0.01009 -0.18321 0.10305 -0.11921 0.17890 0.08633 + 44 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 45 0.12516 -0.15273 -0.16530 0.01754 0.01423 -0.15136 + 46 0.12516 -0.15273 0.16530 -0.01754 -0.01423 -0.15136 + 47 0.05078 -0.01416 0.00664 0.01166 0.00119 -0.00364 + 48 -0.16147 0.05373 -0.02492 -0.04742 0.00610 -0.00095 + 49 -0.08644 0.20470 0.09073 -0.06668 0.25284 -0.01509 + 50 0.08198 0.01235 0.20180 0.14421 0.03561 0.33624 + 51 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 52 0.05078 -0.01416 -0.00664 -0.01166 -0.00119 -0.00364 + 53 -0.16147 0.05373 0.02492 0.04742 -0.00610 -0.00095 + 54 0.08644 -0.20470 0.09073 -0.06668 0.25284 0.01509 + 55 -0.08198 -0.01235 0.20180 0.14421 0.03561 -0.33624 + 56 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 57 -0.10616 0.17885 0.08017 -0.03906 0.22277 0.02576 + 58 -0.10616 0.17885 -0.08017 0.03906 -0.22277 0.02576 + 59 -0.10015 -0.02920 -0.17909 -0.11802 -0.09032 -0.26836 + 60 -0.10015 -0.02920 0.17909 0.11802 0.09032 -0.26836 + + 25 26 27 28 29 30 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00257 0.00260 0.02328 0.00000 -0.00983 -0.00210 + 2 -0.00864 -0.00952 -0.08354 -0.00000 0.04304 0.01635 + 3 -0.08356 0.17616 0.08391 -0.00000 0.09381 -0.16359 + 4 0.07383 -0.17697 0.00418 0.00000 0.24372 0.26026 + 5 -0.00000 0.00000 0.00000 0.33150 -0.00000 -0.00000 + 6 -0.00257 -0.00260 0.02328 0.00000 0.00983 -0.00210 + 7 0.00864 0.00952 -0.08354 -0.00000 -0.04304 0.01635 + 8 -0.08356 0.17616 -0.08391 -0.00000 0.09381 0.16359 + 9 0.07383 -0.17697 -0.00418 0.00000 0.24372 -0.26026 + 10 -0.00000 0.00000 0.00000 0.33150 0.00000 0.00000 + 11 0.02569 -0.01703 0.00423 0.00000 0.00744 0.00407 + 12 -0.08248 0.06113 -0.02149 -0.00000 -0.02348 -0.01323 + 13 0.29940 -0.11128 -0.12658 0.00000 0.06660 0.15890 + 14 0.15374 0.22297 -0.13207 -0.00000 0.03473 -0.26821 + 15 -0.00000 0.00000 0.00000 0.30283 -0.00000 -0.00000 + 16 -0.02569 0.01703 0.00423 -0.00000 -0.00744 0.00407 + 17 0.08248 -0.06113 -0.02149 0.00000 0.02348 -0.01323 + 18 0.29940 -0.11128 0.12658 0.00000 0.06660 -0.15890 + 19 0.15374 0.22297 0.13207 -0.00000 0.03473 0.26821 + 20 -0.00000 0.00000 0.00000 0.30283 -0.00000 0.00000 + 21 0.01847 0.00605 -0.00713 -0.00000 -0.01378 -0.00966 + 22 -0.05932 -0.01702 0.02414 0.00000 0.04753 0.02840 + 23 0.17905 -0.07790 0.06229 0.00000 -0.14407 -0.11753 + 24 -0.23285 -0.18488 0.13677 0.00000 -0.01059 0.22347 + 25 -0.00000 0.00000 0.00000 0.30187 0.00000 0.00000 + 26 -0.01847 -0.00605 -0.00713 0.00000 0.01378 -0.00966 + 27 0.05932 0.01702 0.02414 -0.00000 -0.04753 0.02840 + 28 0.17905 -0.07790 -0.06229 0.00000 -0.14407 0.11753 + 29 -0.23285 -0.18488 -0.13677 0.00000 -0.01059 -0.22347 + 30 -0.00000 0.00000 0.00000 0.30187 0.00000 -0.00000 + 31 0.25850 -0.00250 -0.15685 -0.00000 0.04885 0.05277 + 32 -0.25850 0.00250 -0.15685 -0.00000 -0.04885 0.05277 + 33 0.22360 0.03999 -0.00010 -0.00000 -0.05941 -0.25390 + 34 -0.22360 -0.03999 -0.00010 0.00000 0.05941 -0.25390 + 35 -0.00158 0.00086 -0.01510 -0.00000 0.00351 -0.01752 + 36 0.00361 0.01230 0.06315 0.00000 -0.01123 0.07388 + 37 -0.02371 -0.20200 -0.20936 0.00000 -0.21453 0.02592 + 38 -0.05915 0.18876 0.08025 -0.00000 -0.17918 0.23293 + 39 -0.00000 0.00000 0.00000 0.16558 0.00000 0.00000 + 40 0.00158 -0.00086 -0.01510 -0.00000 -0.00351 -0.01752 + 41 -0.00361 -0.01230 0.06315 0.00000 0.01123 0.07388 + 42 -0.02371 -0.20200 0.20936 0.00000 -0.21453 -0.02592 + 43 -0.05915 0.18876 -0.08025 -0.00000 -0.17918 -0.23293 + 44 -0.00000 -0.00000 -0.00000 0.16558 0.00000 -0.00000 + 45 0.02240 0.14844 0.20296 -0.00000 0.25725 -0.04644 + 46 -0.02240 -0.14844 0.20296 0.00000 -0.25725 -0.04644 + 47 0.00434 0.01891 0.00989 -0.00000 0.00268 0.00872 + 48 -0.01686 -0.05201 -0.02602 0.00000 -0.01229 -0.02347 + 49 -0.07124 0.12590 0.29613 -0.00000 0.19454 0.03662 + 50 -0.01404 -0.23894 0.05034 0.00000 0.14136 -0.13811 + 51 -0.00000 0.00000 0.00000 0.09914 0.00000 0.00000 + 52 -0.00434 -0.01891 0.00989 0.00000 -0.00268 0.00872 + 53 0.01686 0.05201 -0.02602 -0.00000 0.01229 -0.02347 + 54 -0.07124 0.12590 -0.29613 -0.00000 0.19454 -0.03662 + 55 -0.01404 -0.23894 -0.05034 0.00000 0.14136 0.13811 + 56 -0.00000 -0.00000 -0.00000 0.09914 0.00000 -0.00000 + 57 -0.05652 0.05847 0.27318 -0.00000 0.22630 -0.03215 + 58 0.05652 -0.05847 0.27318 0.00000 -0.22630 -0.03215 + 59 0.02227 0.15354 -0.14587 -0.00000 -0.21197 0.12146 + 60 -0.02227 -0.15354 -0.14587 0.00000 0.21197 0.12146 + + 31 32 33 34 35 36 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00629 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 2 0.03168 0.00000 0.00000 0.00000 -0.00000 0.00000 + 3 0.27885 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 4 0.12972 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 5 -0.00000 -0.31868 -0.03965 -0.00225 0.41799 0.47153 + 6 -0.00629 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 7 0.03168 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 8 -0.27885 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 9 -0.12972 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 10 0.00000 0.31868 -0.03965 0.00225 -0.41799 0.47153 + 11 -0.01149 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 12 0.03512 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 13 -0.21036 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 14 -0.08519 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 15 -0.00000 -0.12429 -0.16451 0.45982 0.23189 -0.24997 + 16 -0.01149 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 17 0.03512 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 18 0.21036 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 19 0.08519 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 20 0.00000 0.12429 -0.16451 -0.45982 -0.23189 -0.24997 + 21 0.00666 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 22 -0.02027 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 23 0.26904 -0.00000 0.00000 0.00000 0.00000 0.00000 + 24 0.12357 0.00000 -0.00000 0.00000 0.00000 0.00000 + 25 0.00000 0.11940 -0.16493 0.46149 -0.23200 -0.27857 + 26 0.00666 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 27 -0.02027 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 28 -0.26904 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 29 -0.12357 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 30 -0.00000 -0.11940 -0.16493 -0.46149 0.23200 -0.27857 + 31 -0.25163 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 32 -0.25163 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 33 0.12318 0.00000 0.00000 -0.00000 0.00000 0.00000 + 34 0.12318 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 35 -0.01308 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 36 0.04729 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 37 0.14120 0.00000 0.00000 0.00000 0.00000 0.00000 + 38 0.14327 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 39 0.00000 0.38321 0.41518 0.00019 0.21835 0.24693 + 40 -0.01308 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 41 0.04729 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 42 -0.14120 0.00000 -0.00000 0.00000 0.00000 0.00000 + 43 -0.14327 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 44 -0.00000 -0.38321 0.41518 -0.00019 -0.21835 0.24693 + 45 -0.18377 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 46 -0.18377 0.00000 0.00000 0.00000 0.00000 0.00000 + 47 -0.00303 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 48 0.01380 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 49 -0.10128 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 50 -0.05574 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 51 0.00000 0.30667 0.42629 0.00262 0.35818 -0.41493 + 52 -0.00303 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 53 0.01380 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 54 0.10128 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 55 0.05574 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 56 -0.00000 -0.30667 0.42629 -0.00262 -0.35818 -0.41493 + 57 -0.11731 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 58 -0.11731 0.00000 0.00000 0.00000 0.00000 0.00000 + 59 0.10240 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 60 0.10240 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + + 37 38 39 40 41 42 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 0.00000 0.00000 -0.00000 0.06347 -0.02959 + 2 0.00000 -0.00000 -0.00000 0.00000 -0.38006 0.17692 + 3 -0.00000 0.00000 -0.00000 -0.00000 -0.08842 0.28350 + 4 0.00000 -0.00000 -0.00000 0.00000 -0.26802 0.11184 + 5 -0.02229 -0.03791 -0.47349 0.53871 -0.00000 -0.00000 + 6 0.00000 -0.00000 -0.00000 0.00000 0.06347 0.02959 + 7 -0.00000 0.00000 0.00000 -0.00000 -0.38006 -0.17692 + 8 -0.00000 0.00000 -0.00000 -0.00000 0.08842 0.28350 + 9 0.00000 -0.00000 -0.00000 0.00000 0.26802 0.11184 + 10 -0.02229 0.03791 -0.47349 -0.53871 0.00000 0.00000 + 11 0.00000 0.00000 -0.00000 0.00000 0.02915 0.00433 + 12 -0.00000 -0.00000 0.00000 -0.00000 -0.18291 -0.02043 + 13 0.00000 -0.00000 -0.00000 0.00000 -0.30919 0.35555 + 14 -0.00000 -0.00000 -0.00000 -0.00000 -0.06525 0.00144 + 15 0.57856 0.22554 0.16186 -0.46948 -0.00000 0.00000 + 16 -0.00000 0.00000 0.00000 -0.00000 0.02915 -0.00433 + 17 0.00000 -0.00000 -0.00000 0.00000 -0.18291 0.02043 + 18 0.00000 -0.00000 -0.00000 0.00000 0.30919 0.35555 + 19 -0.00000 -0.00000 -0.00000 -0.00000 0.06525 0.00144 + 20 0.57856 -0.22554 0.16186 0.46948 0.00000 0.00000 + 21 -0.00000 0.00000 0.00000 -0.00000 0.04839 -0.01440 + 22 0.00000 0.00000 -0.00000 0.00000 -0.29828 0.08933 + 23 -0.00000 0.00000 0.00000 -0.00000 -0.20794 0.29130 + 24 0.00000 0.00000 0.00000 0.00000 0.13598 -0.00660 + 25 -0.55811 -0.22043 0.18678 0.47149 0.00000 0.00000 + 26 0.00000 -0.00000 -0.00000 0.00000 0.04839 0.01440 + 27 -0.00000 0.00000 0.00000 -0.00000 -0.29828 -0.08933 + 28 -0.00000 0.00000 0.00000 -0.00000 0.20794 0.29130 + 29 0.00000 -0.00000 0.00000 0.00000 -0.13598 -0.00660 + 30 -0.55811 0.22043 0.18678 -0.47149 -0.00000 0.00000 + 31 0.00000 0.00000 -0.00000 0.00000 0.42094 -0.31890 + 32 -0.00000 0.00000 0.00000 -0.00000 0.42094 0.31890 + 33 -0.00000 -0.00000 0.00000 -0.00000 0.43480 -0.27655 + 34 0.00000 0.00000 -0.00000 0.00000 0.43480 0.27655 + 35 0.00000 -0.00000 -0.00000 0.00000 -0.04826 0.01371 + 36 -0.00000 0.00000 0.00000 -0.00000 0.27669 -0.08345 + 37 -0.00000 0.00000 0.00000 0.00000 0.23991 0.35091 + 38 -0.00000 0.00000 0.00000 -0.00000 0.32394 0.19909 + 39 0.00330 0.52439 0.53507 0.27875 0.00000 0.00000 + 40 -0.00000 0.00000 0.00000 -0.00000 -0.04826 -0.01371 + 41 0.00000 -0.00000 -0.00000 0.00000 0.27669 0.08345 + 42 -0.00000 0.00000 0.00000 0.00000 -0.23991 0.35091 + 43 -0.00000 -0.00000 0.00000 -0.00000 -0.32394 0.19909 + 44 0.00330 -0.52439 0.53507 -0.27875 0.00000 -0.00000 + 45 0.00000 -0.00000 -0.00000 0.00000 0.14038 0.44870 + 46 -0.00000 0.00000 0.00000 -0.00000 0.14038 -0.44870 + 47 -0.00000 -0.00000 -0.00000 -0.00000 0.04112 0.00135 + 48 0.00000 0.00000 0.00000 0.00000 -0.24262 -0.01356 + 49 0.00000 0.00000 -0.00000 0.00000 0.13846 0.30201 + 50 0.00000 -0.00000 -0.00000 0.00000 0.15018 0.17216 + 51 0.00408 -0.53124 -0.40735 -0.15847 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 0.04112 -0.00135 + 53 -0.00000 0.00000 -0.00000 -0.00000 -0.24262 0.01356 + 54 0.00000 -0.00000 -0.00000 0.00000 -0.13846 0.30201 + 55 0.00000 -0.00000 -0.00000 0.00000 -0.15018 0.17216 + 56 0.00408 0.53124 -0.40735 0.15847 -0.00000 -0.00000 + 57 0.00000 -0.00000 -0.00000 0.00000 -0.09878 -0.32156 + 58 -0.00000 0.00000 0.00000 -0.00000 -0.09878 0.32156 + 59 -0.00000 -0.00000 0.00000 -0.00000 0.35383 0.27911 + 60 0.00000 0.00000 -0.00000 0.00000 0.35383 -0.27911 + + 43 44 45 46 47 48 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.02013 -0.05520 0.04545 -0.08266 -0.01775 -0.12947 + 2 -0.12342 0.32508 -0.27865 0.49230 0.11409 0.79666 + 3 -0.11292 -0.08096 0.24740 -0.11636 -0.10657 -0.04376 + 4 0.07806 0.45357 -0.15053 0.03228 -0.25761 -0.01346 + 5 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 6 0.02013 0.05520 0.04545 0.08266 0.01775 -0.12947 + 7 -0.12342 -0.32508 -0.27865 -0.49230 -0.11409 0.79666 + 8 0.11292 -0.08096 -0.24740 -0.11636 -0.10657 0.04376 + 9 -0.07806 0.45357 0.15053 0.03228 -0.25761 0.01346 + 10 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 11 -0.06409 0.02329 0.07352 0.07623 0.05737 0.07005 + 12 0.39789 -0.14490 -0.45738 -0.46139 -0.36107 -0.44429 + 13 0.00442 -0.11705 -0.06012 -0.11270 -0.32214 -0.01333 + 14 0.11326 0.22045 0.14682 0.02798 -0.31927 -0.29602 + 15 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 16 -0.06409 -0.02329 0.07352 -0.07623 -0.05737 0.07005 + 17 0.39789 0.14490 -0.45738 0.46139 0.36107 -0.44429 + 18 -0.00442 -0.11705 0.06012 -0.11270 -0.32214 0.01333 + 19 -0.11326 0.22045 -0.14682 0.02798 -0.31927 0.29602 + 20 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 21 -0.01478 -0.00096 -0.09399 -0.09960 -0.00456 0.07402 + 22 0.09710 -0.00079 0.58288 0.61112 0.01637 -0.46918 + 23 0.17068 -0.26071 -0.02469 -0.00945 -0.20446 0.22673 + 24 -0.20090 0.32797 0.02348 -0.11109 -0.10993 0.23946 + 25 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 26 -0.01478 0.00096 -0.09399 0.09960 0.00456 0.07402 + 27 0.09710 0.00079 0.58288 -0.61112 -0.01637 -0.46918 + 28 -0.17068 -0.26071 0.02469 -0.00945 -0.20446 -0.22673 + 29 0.20090 0.32797 -0.02348 -0.11109 -0.10993 -0.23946 + 30 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 31 -0.28653 0.10132 0.24361 0.33817 0.59827 0.29547 + 32 -0.28653 -0.10132 0.24361 -0.33817 -0.59827 0.29547 + 33 -0.27463 0.40890 -0.20615 -0.32759 0.04960 0.22015 + 34 -0.27463 -0.40890 -0.20615 0.32759 -0.04960 0.22015 + 35 0.06458 -0.08931 -0.01632 -0.04073 0.07342 0.09307 + 36 -0.39458 0.52976 0.10814 0.26016 -0.46728 -0.57054 + 37 0.35069 0.07786 -0.12426 -0.14864 0.22392 0.11487 + 38 0.07394 0.31854 0.23556 0.19090 -0.06187 -0.09824 + 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 40 0.06458 0.08931 -0.01632 0.04073 -0.07342 0.09307 + 41 -0.39458 -0.52976 0.10814 -0.26016 0.46728 -0.57054 + 42 -0.35069 0.07786 0.12426 -0.14864 0.22392 -0.11487 + 43 -0.07394 0.31854 -0.23556 0.19090 -0.06187 0.09824 + 44 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 45 0.58957 -0.13077 -0.12647 -0.19585 0.43802 0.36479 + 46 0.58957 0.13077 -0.12647 0.19585 -0.43802 0.36479 + 47 -0.01775 0.05639 -0.10758 -0.08349 0.02086 -0.06336 + 48 0.09880 -0.33762 0.68358 0.53351 -0.14155 0.39041 + 49 0.29962 0.11191 0.24914 0.26319 0.03161 -0.02922 + 50 0.24406 0.16612 -0.07396 -0.11940 0.29095 -0.06522 + 51 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 52 -0.01775 -0.05639 -0.10758 0.08349 -0.02086 -0.06336 + 53 0.09880 0.33762 0.68358 -0.53351 0.14155 0.39041 + 54 -0.29962 0.11191 -0.24914 0.26319 0.03161 0.02922 + 55 -0.24406 0.16612 0.07396 -0.11940 0.29095 0.06522 + 56 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 57 -0.38136 -0.00205 -0.54181 -0.46045 -0.02785 -0.17333 + 58 -0.38136 0.00205 -0.54181 0.46045 0.02785 -0.17333 + 59 0.26202 0.38946 -0.33081 -0.29263 0.32868 -0.26736 + 60 0.26202 -0.38946 -0.33081 0.29263 -0.32868 -0.26736 + + 49 50 51 52 53 54 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.06033 0.04020 0.06829 0.00273 -0.00046 0.05152 + 2 -0.36327 -0.25411 -0.46272 -0.00821 -0.00320 -0.36172 + 3 -0.13936 -0.34438 0.12169 -0.55535 0.21367 -0.26311 + 4 0.11475 0.04817 0.58684 0.05618 0.04558 0.00401 + 5 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 6 -0.06033 0.04020 0.06829 -0.00273 -0.00046 -0.05152 + 7 0.36327 -0.25411 -0.46272 0.00821 -0.00320 0.36172 + 8 -0.13936 0.34438 -0.12169 -0.55535 -0.21367 -0.26311 + 9 0.11475 -0.04817 -0.58684 0.05618 -0.04558 0.00401 + 10 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 11 -0.05816 -0.11353 -0.01377 -0.09440 0.00433 0.03473 + 12 0.35719 0.72776 0.09182 0.64278 -0.03563 -0.23914 + 13 -0.14747 -0.07672 -0.44667 0.01637 0.53137 -0.19353 + 14 0.12248 -0.10733 0.16074 0.09831 0.19721 0.71678 + 15 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 16 0.05816 -0.11353 -0.01377 0.09440 0.00433 -0.03473 + 17 -0.35719 0.72776 0.09182 -0.64278 -0.03563 0.23914 + 18 -0.14747 0.07672 0.44667 0.01637 -0.53137 -0.19353 + 19 0.12248 0.10733 -0.16074 0.09831 -0.19721 0.71678 + 20 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 21 0.06824 0.09547 -0.04797 -0.03443 -0.00315 -0.08760 + 22 -0.42521 -0.61447 0.31578 0.24290 0.02893 0.61059 + 23 -0.18151 -0.15947 -0.32475 -0.19597 -0.51838 0.30197 + 24 0.14947 -0.17955 0.01505 -0.47953 0.39528 0.38216 + 25 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 26 -0.06824 0.09547 -0.04797 0.03443 -0.00315 0.08760 + 27 0.42521 -0.61447 0.31578 -0.24290 0.02893 -0.61059 + 28 -0.18151 0.15947 0.32475 -0.19597 0.51838 0.30197 + 29 0.14947 0.17955 -0.01505 -0.47953 -0.39528 0.38216 + 30 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 31 -0.07756 -0.24355 0.24171 -0.29864 -0.44169 0.06170 + 32 0.07756 -0.24355 0.24171 0.29864 -0.44169 -0.06170 + 33 0.48819 0.33971 0.05277 -0.20881 0.50944 -0.25391 + 34 -0.48819 0.33971 0.05277 0.20881 0.50944 0.25391 + 35 0.07002 -0.03282 0.07315 0.02688 0.05204 0.06209 + 36 -0.43047 0.23057 -0.48600 -0.19861 -0.36324 -0.43405 + 37 0.05929 -0.03730 0.15697 -0.27581 -0.14090 0.07786 + 38 0.12366 0.07466 0.02314 0.04918 0.16297 0.10502 + 39 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 40 -0.07002 -0.03282 0.07315 -0.02688 0.05204 -0.06209 + 41 0.43047 0.23057 -0.48600 0.19861 -0.36324 0.43405 + 42 0.05929 0.03730 -0.15697 -0.27581 0.14090 0.07786 + 43 0.12366 -0.07466 -0.02314 0.04918 -0.16297 0.10502 + 44 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 45 0.29662 -0.08716 0.31097 -0.15158 0.08064 0.25884 + 46 -0.29662 -0.08716 0.31097 0.15158 0.08064 -0.25884 + 47 -0.11043 -0.06100 -0.01913 -0.00996 -0.04167 -0.00937 + 48 0.70233 0.39762 0.12122 0.07893 0.29027 0.06216 + 49 0.14091 0.13476 -0.35815 0.02242 -0.09607 -0.30666 + 50 -0.01939 -0.37252 -0.13206 0.49016 0.29204 0.09797 + 51 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 52 0.11043 -0.06100 -0.01913 0.00996 -0.04167 0.00937 + 53 -0.70233 0.39762 0.12122 -0.07893 0.29027 -0.06216 + 54 0.14091 -0.13476 0.35815 0.02242 0.09607 -0.30666 + 55 -0.01939 0.37252 0.13206 0.49016 -0.29204 0.09797 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 57 -0.51486 -0.28603 0.24499 -0.10535 -0.12843 0.22847 + 58 0.51486 -0.28603 0.24499 0.10535 -0.12843 -0.22847 + 59 -0.31645 -0.45685 -0.25488 0.35646 0.08062 -0.02831 + 60 0.31645 -0.45685 -0.25488 -0.35646 0.08062 0.02831 + + 55 56 57 58 59 60 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.09450 0.01420 0.01758 0.01953 -0.00474 0.04242 + 2 0.64864 -0.08483 -0.11210 -0.13942 0.03202 -0.32153 + 3 -0.18965 -0.10986 0.10062 -0.46861 0.71202 0.16190 + 4 0.05544 -0.35995 -0.41189 0.13349 -0.05426 0.66243 + 5 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 6 0.09450 0.01420 0.01758 -0.01953 -0.00474 -0.04242 + 7 -0.64864 -0.08483 -0.11210 0.13942 0.03202 0.32153 + 8 -0.18965 0.10986 -0.10062 -0.46861 -0.71202 0.16190 + 9 0.05544 0.35995 0.41189 0.13349 0.05426 0.66243 + 10 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 11 -0.00878 0.02820 -0.01808 -0.04629 0.00719 -0.05089 + 12 0.07504 -0.20151 0.13189 0.33903 -0.04976 0.37542 + 13 0.27126 0.26937 0.11482 -0.19548 0.24459 -0.56630 + 14 -0.13846 0.39220 -0.36515 0.13846 -0.54801 -0.23999 + 15 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 16 0.00878 0.02820 -0.01808 0.04629 0.00719 0.05089 + 17 -0.07504 -0.20151 0.13189 -0.33903 -0.04976 -0.37542 + 18 0.27126 -0.26937 -0.11482 -0.19548 -0.24459 -0.56630 + 19 -0.13846 -0.39220 0.36515 0.13846 0.54801 -0.23999 + 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 21 -0.02893 -0.03159 0.01601 -0.02227 -0.00734 0.05551 + 22 0.19142 0.22096 -0.11842 0.16775 0.04971 -0.41154 + 23 -0.39356 0.15680 0.05191 -0.05616 -0.44424 0.49411 + 24 -0.20793 0.32678 -0.42995 -0.21552 -0.42322 -0.39434 + 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 26 0.02893 -0.03159 0.01601 0.02227 -0.00734 -0.05551 + 27 -0.19142 0.22096 -0.11842 -0.16775 0.04971 0.41154 + 28 -0.39356 -0.15680 -0.05191 -0.05616 0.44424 0.49411 + 29 -0.20793 -0.32678 0.42995 -0.21552 0.42322 -0.39434 + 30 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 31 -0.14981 -0.21765 -0.04766 -0.02392 -0.00844 0.26961 + 32 0.14981 -0.21765 -0.04766 0.02392 -0.00844 -0.26961 + 33 0.02254 -0.03523 -0.20429 -0.10576 0.03848 -0.27726 + 34 -0.02254 -0.03523 -0.20429 0.10576 0.03848 0.27726 + 35 0.01769 -0.04334 0.03640 -0.05834 -0.02416 -0.01409 + 36 -0.14423 0.30721 -0.29712 0.45190 0.19749 0.08798 + 37 0.29735 0.55668 -0.09970 0.60835 0.41479 0.02777 + 38 0.48257 0.14504 0.68016 -0.45823 -0.30091 0.36504 + 39 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 40 -0.01769 -0.04334 0.03640 0.05834 -0.02416 0.01409 + 41 0.14423 0.30721 -0.29712 -0.45190 0.19749 -0.08798 + 42 0.29735 -0.55668 0.09970 0.60835 -0.41479 0.02777 + 43 0.48257 -0.14504 -0.68016 -0.45823 0.30091 0.36504 + 44 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 45 0.32793 0.30837 0.14608 0.17887 0.15782 0.04879 + 46 -0.32793 0.30837 0.14608 -0.17887 0.15782 -0.04879 + 47 -0.01772 0.03266 -0.04635 0.06846 0.03822 -0.00886 + 48 0.12954 -0.24177 0.35554 -0.52696 -0.30561 0.07838 + 49 -0.50737 -0.13252 -0.58368 0.38883 0.24000 -0.21693 + 50 -0.23524 -0.53985 0.18340 -0.53681 -0.30265 -0.00326 + 51 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 52 0.01772 0.03266 -0.04635 -0.06846 0.03822 0.00886 + 53 -0.12954 -0.24177 0.35554 0.52696 -0.30561 -0.07838 + 54 -0.50737 0.13252 0.58368 0.38883 -0.24000 -0.21693 + 55 -0.23524 0.53985 -0.18340 -0.53681 0.30265 -0.00326 + 56 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 57 0.34539 0.26547 0.27254 -0.01144 -0.03139 0.13677 + 58 -0.34539 0.26547 0.27254 0.01144 -0.03139 -0.13677 + 59 -0.33103 -0.32048 -0.12287 -0.09634 -0.04651 -0.06633 + 60 0.33103 -0.32048 -0.12287 0.09634 -0.04651 0.06633 + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2631.731379210404 0.000000000000 0.000000000000 + 0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678692 + + Mulliken analysis of the total density + -------------------------------------- + + Atom Charge Shell Charges + ----------- ------ ------------------------------------------------------- + 1 C 6 6.00 1.99 1.14 2.87 + 2 C 6 6.00 1.99 1.14 2.87 + 3 C 6 6.06 1.99 1.15 2.92 + 4 C 6 6.06 1.99 1.15 2.92 + 5 C 6 6.06 1.99 1.15 2.92 + 6 C 6 6.06 1.99 1.15 2.92 + 7 H 1 0.94 0.94 + 8 H 1 0.94 0.94 + 9 H 1 0.94 0.94 + 10 H 1 0.94 0.94 + 11 C 6 6.06 1.99 1.15 2.91 + 12 C 6 6.06 1.99 1.15 2.91 + 13 H 1 0.94 0.94 + 14 H 1 0.94 0.94 + 15 C 6 6.12 1.99 1.16 2.97 + 16 C 6 6.12 1.99 1.16 2.97 + 17 H 1 0.94 0.94 + 18 H 1 0.94 0.94 + 19 H 1 0.94 0.94 + 20 H 1 0.94 0.94 + + Multipole analysis of the density wrt the origin + ------------------------------------------------ + + L x y z total open nuclear + - - - - ----- ---- ------- + 0 0 0 0 -0.000000 0.000000 70.000000 + + 1 1 0 0 -0.000000 0.000000 0.000000 + 1 0 1 0 -0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 + + 2 2 0 0 -38.360869 0.000000 244.795872 + 2 1 1 0 0.065434 0.000000 -5.631027 + 2 1 0 1 0.000000 0.000000 0.000000 + 2 0 2 0 -39.006221 0.000000 1496.963300 + 2 0 1 1 0.000000 0.000000 0.000000 + 2 0 0 2 -43.564269 0.000000 0.000000 + + + Parallel integral file used 8 records with 0 large values + + + ------------- + Dipole Moment + ------------- + + Center of charge (in au) is the expansion point + X = 0.0000000 Y = 0.0000000 Z = 0.0000000 + + Dipole moment 0.0000000000 A.U. + DMX 0.0000000000 DMXEFC 0.0000000000 + DMY -0.0000000000 DMYEFC 0.0000000000 + DMZ 0.0000000000 DMZEFC 0.0000000000 + -EFC- dipole 0.0000000000 A.U. + Total dipole 0.0000000000 A.U. + + Dipole moment 0.0000000000 Debye(s) + DMX 0.0000000000 DMXEFC 0.0000000000 + DMY -0.0000000000 DMYEFC 0.0000000000 + DMZ 0.0000000000 DMZEFC 0.0000000000 + -EFC- dipole 0.0000000000 DEBYE(S) + Total dipole 0.0000000000 DEBYE(S) + + 1 a.u. = 2.541766 Debyes + + ----------------- + Quadrupole Moment + ----------------- + + Center of charge (in au) is the expansion point + X = 0.0000000 Y = 0.0000000 Z = 0.0000000 + + < R**2 > = ********** a.u. ( 1 a.u. = 0.280023 10**(-16) cm**2 ) + ( also called diamagnetic susceptibility ) + + Second moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX -38.3608685337 0.0000000000 -38.3608685337 + YY -39.0062210270 0.0000000000 -39.0062210270 + ZZ -43.5642691494 0.0000000000 -43.5642691494 + XY 0.0654337040 0.0000000000 0.0654337040 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 + + Second moments in buckingham(s) + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX -51.5919540605 0.0000000000 -51.5919540605 + YY -52.4598957277 0.0000000000 -52.4598957277 + ZZ -58.5900647861 0.0000000000 -58.5900647861 + XY 0.0880025082 0.0000000000 0.0880025082 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 + + Quadrupole moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX 2.9243765545 0.0000000000 2.9243765545 + YY 1.9563478145 0.0000000000 1.9563478145 + ZZ -4.8807243691 0.0000000000 -4.8807243691 + XY 0.0981505560 0.0000000000 0.0981505560 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 + + Quadrupole moments in buckingham(s) + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX 3.9330261963 0.0000000000 3.9330261963 + YY 2.6311136956 0.0000000000 2.6311136956 + ZZ -6.5641398919 0.0000000000 -6.5641398919 + XY 0.1320037624 0.0000000000 0.1320037624 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 + + 1 a.u. = 1.344911 Buckinghams = 1.344911 10**(-26) esu*cm**2 + + --------------- + Octupole Moment + --------------- + + Center of charge (in au) is the expansion point + X = 0.0000000 Y = 0.0000000 Z = 0.0000000 + + Third moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 + + Third moments in 10**(-34) esu*cm**3 + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 + + Octupole moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX -0.0000000000 0.0000000000 -0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 + + Octupole moments in 10**(-34) esu*cm**3 + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX -0.0000000000 0.0000000000 -0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 + + 1 a.u. = 0.711688 10**(-34) esu*cm**3 + + + ---------------------------- + Mulliken population analysis + ---------------------------- + + Total S,P,D,... shell population + -------------------------------- + Atom S P + -------------------------------------------------------------------------------------- + 1 C 3.13046 2.86772 + 2 C 3.13046 2.86772 + 3 C 3.14136 2.91829 + 4 C 3.14136 2.91829 + 5 C 3.13936 2.92108 + 6 C 3.13936 2.92108 + 7 H 0.94130 0.00000 + 8 H 0.94130 0.00000 + 9 H 0.93940 0.00000 + 10 H 0.93940 0.00000 + 11 C 3.14423 2.91102 + 12 C 3.14423 2.91102 + 13 H 0.94236 0.00000 + 14 H 0.94236 0.00000 + 15 C 3.15536 2.96852 + 16 C 3.15536 2.96852 + 17 H 0.94099 0.00000 + 18 H 0.94099 0.00000 + 19 H 0.93855 0.00000 + 20 H 0.93855 0.00000 + + ----- Total gross population on atoms ---- + + 1 C 6.0 5.99819 + 2 C 6.0 5.99819 + 3 C 6.0 6.05964 + 4 C 6.0 6.05964 + 5 C 6.0 6.06044 + 6 C 6.0 6.06044 + 7 H 1.0 0.94130 + 8 H 1.0 0.94130 + 9 H 1.0 0.93940 + 10 H 1.0 0.93940 + 11 C 6.0 6.05525 + 12 C 6.0 6.05525 + 13 H 1.0 0.94236 + 14 H 1.0 0.94236 + 15 C 6.0 6.12388 + 16 C 6.0 6.12388 + 17 H 1.0 0.94099 + 18 H 1.0 0.94099 + 19 H 1.0 0.93855 + 20 H 1.0 0.93855 + + ----- Bond indices ----- + 1- 1 0.00000 1- 2 0.10626 1- 3 1.38193 1- 4 0.00279 1- 5 0.00275 1- 6 1.38295 1- 7 0.00424 1- 8 0.00578 + 2- 1 0.10626 2- 2 0.00000 2- 3 0.00279 2- 4 1.38193 2- 5 1.38295 2- 6 0.00275 2- 7 0.00578 2- 8 0.00424 + 3- 1 1.38193 3- 2 0.00279 3- 3 0.00000 3- 4 0.10295 3- 5 1.45716 3- 6 0.00319 3- 7 0.96964 3- 8 0.00013 + 4- 1 0.00279 4- 2 1.38193 4- 3 0.10295 4- 4 0.00000 4- 5 0.00319 4- 6 1.45716 4- 7 0.00013 4- 8 0.96964 + 5- 1 0.00275 5- 2 1.38295 5- 3 1.45716 5- 4 0.00319 5- 5 0.00000 5- 6 0.10403 5- 7 0.00361 5- 8 0.00552 + 6- 1 1.38295 6- 2 0.00275 6- 3 0.00319 6- 4 1.45716 6- 5 0.10403 6- 6 0.00000 6- 7 0.00552 6- 8 0.00361 + 7- 1 0.00424 7- 2 0.00578 7- 3 0.96964 7- 4 0.00013 7- 5 0.00361 7- 6 0.00552 7- 7 0.00000 7- 8 0.00004 + 8- 1 0.00578 8- 2 0.00424 8- 3 0.00013 8- 4 0.96964 8- 5 0.00552 8- 6 0.00361 8- 7 0.00004 8- 8 0.00000 + 9- 1 0.00576 9- 2 0.00399 9- 3 0.00355 9- 4 0.00556 9- 5 0.96856 9- 6 0.00012 9- 7 0.00242 9- 8 0.00090 + 10- 1 0.00399 10- 2 0.00576 10- 3 0.00556 10- 4 0.00355 10- 5 0.00012 10- 6 0.96856 10- 7 0.00090 10- 8 0.00242 + 11- 1 0.00009 11- 2 1.04125 11- 3 0.00604 11- 4 0.00482 11- 5 0.00419 11- 6 0.00560 11- 7 0.00073 11- 8 0.00219 + 12- 1 1.04125 12- 2 0.00009 12- 3 0.00482 12- 4 0.00604 12- 5 0.00560 12- 6 0.00419 12- 7 0.00219 12- 8 0.00073 + 13- 1 0.00002 13- 2 0.00530 13- 3 0.00056 13- 4 0.00153 13- 5 0.00486 13- 6 0.00004 13- 7 0.00019 13- 8 0.00103 + 14- 1 0.00530 14- 2 0.00002 14- 3 0.00153 14- 4 0.00056 14- 5 0.00004 14- 6 0.00486 14- 7 0.00103 14- 8 0.00019 + 15- 1 0.01730 15- 2 0.00290 15- 3 0.00022 15- 4 0.03251 15- 5 0.03040 15- 6 0.00057 15- 7 0.00001 15- 8 0.00006 + 16- 1 0.00290 16- 2 0.01730 16- 3 0.03251 16- 4 0.00022 16- 5 0.00057 16- 6 0.03040 16- 7 0.00006 16- 8 0.00001 + 17- 1 0.00000 17- 2 0.00360 17- 3 0.00007 17- 4 0.00009 17- 5 0.00012 17- 6 0.00001 17- 7 0.00001 17- 8 0.00001 + 18- 1 0.00360 18- 2 0.00000 18- 3 0.00009 18- 4 0.00007 18- 5 0.00001 18- 6 0.00012 18- 7 0.00001 18- 8 0.00001 + 19- 1 0.00002 19- 2 0.00807 19- 3 0.00000 19- 4 0.00060 19- 5 0.00028 19- 6 0.00015 19- 7 0.00001 19- 8 0.00004 + 20- 1 0.00807 20- 2 0.00002 20- 3 0.00060 20- 4 0.00000 20- 5 0.00015 20- 6 0.00028 20- 7 0.00004 20- 8 0.00001 + 1- 9 0.00576 1-10 0.00399 1-11 0.00009 1-12 1.04125 1-13 0.00002 1-14 0.00530 1-15 0.01730 1-16 0.00290 + 2- 9 0.00399 2-10 0.00576 2-11 1.04125 2-12 0.00009 2-13 0.00530 2-14 0.00002 2-15 0.00290 2-16 0.01730 + 3- 9 0.00355 3-10 0.00556 3-11 0.00604 3-12 0.00482 3-13 0.00056 3-14 0.00153 3-15 0.00022 3-16 0.03251 + 4- 9 0.00556 4-10 0.00355 4-11 0.00482 4-12 0.00604 4-13 0.00153 4-14 0.00056 4-15 0.03251 4-16 0.00022 + 5- 9 0.96856 5-10 0.00012 5-11 0.00419 5-12 0.00560 5-13 0.00486 5-14 0.00004 5-15 0.03040 5-16 0.00057 + 6- 9 0.00012 6-10 0.96856 6-11 0.00560 6-12 0.00419 6-13 0.00004 6-14 0.00486 6-15 0.00057 6-16 0.03040 + 7- 9 0.00242 7-10 0.00090 7-11 0.00073 7-12 0.00219 7-13 0.00019 7-14 0.00103 7-15 0.00001 7-16 0.00006 + 8- 9 0.00090 8-10 0.00242 8-11 0.00219 8-12 0.00073 8-13 0.00103 8-14 0.00019 8-15 0.00006 8-16 0.00001 + 9- 9 0.00000 9-10 0.00005 9-11 0.00246 9-12 0.00071 9-13 0.00006 9-14 0.00002 9-15 0.00014 9-16 0.00011 + 10- 9 0.00005 10-10 0.00000 10-11 0.00071 10-12 0.00246 10-13 0.00002 10-14 0.00006 10-15 0.00011 10-16 0.00014 + 11- 9 0.00246 11-10 0.00071 11-11 0.00000 11-12 0.00016 11-13 0.96770 11-14 0.00000 11-15 1.93049 11-16 0.00000 + 12- 9 0.00071 12-10 0.00246 12-11 0.00016 12-12 0.00000 12-13 0.00000 12-14 0.96770 12-15 0.00000 12-16 1.93049 + 13- 9 0.00006 13-10 0.00002 13-11 0.96770 13-12 0.00000 13-13 0.00000 13-14 0.00000 13-15 0.00271 13-16 0.00000 + 14- 9 0.00002 14-10 0.00006 14-11 0.00000 14-12 0.96770 14-13 0.00000 14-14 0.00000 14-15 0.00000 14-16 0.00271 + 15- 9 0.00014 15-10 0.00011 15-11 1.93049 15-12 0.00000 15-13 0.00271 15-14 0.00000 15-15 0.00000 15-16 0.00361 + 16- 9 0.00011 16-10 0.00014 16-11 0.00000 16-12 1.93049 16-13 0.00000 16-14 0.00271 16-15 0.00361 16-16 0.00000 + 17- 9 0.00181 17-10 0.00001 17-11 0.00302 17-12 0.00000 17-13 0.00911 17-14 -0.00000 17-15 0.97382 17-16 0.00000 + 18- 9 0.00001 18-10 0.00181 18-11 0.00000 18-12 0.00302 18-13 -0.00000 18-14 0.00911 18-15 0.00000 18-16 0.97382 + 19- 9 0.00007 19-10 0.00004 19-11 0.00273 19-12 0.00000 19-13 0.00355 19-14 0.00000 19-15 0.97585 19-16 0.00000 + 20- 9 0.00004 20-10 0.00007 20-11 0.00000 20-12 0.00273 20-13 0.00000 20-14 0.00355 20-15 0.00000 20-16 0.97585 + 1-17 0.00000 1-18 0.00360 1-19 0.00002 1-20 0.00807 + 2-17 0.00360 2-18 0.00000 2-19 0.00807 2-20 0.00002 + 3-17 0.00007 3-18 0.00009 3-19 0.00000 3-20 0.00060 + 4-17 0.00009 4-18 0.00007 4-19 0.00060 4-20 0.00000 + 5-17 0.00012 5-18 0.00001 5-19 0.00028 5-20 0.00015 + 6-17 0.00001 6-18 0.00012 6-19 0.00015 6-20 0.00028 + 7-17 0.00001 7-18 0.00001 7-19 0.00001 7-20 0.00004 + 8-17 0.00001 8-18 0.00001 8-19 0.00004 8-20 0.00001 + 9-17 0.00181 9-18 0.00001 9-19 0.00007 9-20 0.00004 + 10-17 0.00001 10-18 0.00181 10-19 0.00004 10-20 0.00007 + 11-17 0.00302 11-18 0.00000 11-19 0.00273 11-20 0.00000 + 12-17 0.00000 12-18 0.00302 12-19 0.00000 12-20 0.00273 + 13-17 0.00911 13-18 -0.00000 13-19 0.00355 13-20 0.00000 + 14-17 -0.00000 14-18 0.00911 14-19 0.00000 14-20 0.00355 + 15-17 0.97382 15-18 0.00000 15-19 0.97585 15-20 0.00000 + 16-17 0.00000 16-18 0.97382 16-19 0.00000 16-20 0.97585 + 17-17 0.00000 17-18 0.00000 17-19 0.00483 17-20 -0.00000 + 18-17 0.00000 18-18 0.00000 18-19 -0.00000 18-20 0.00483 + 19-17 0.00483 19-18 -0.00000 19-19 0.00000 19-20 0.00000 + 20-17 -0.00000 20-18 0.00483 20-19 0.00000 20-20 0.00000 + + Large bond indices + ------------------ + 1 C - 2 C 0.10626 + 1 C - 3 C 1.38193 + 1 C - 6 C 1.38295 + 1 C - 12 C 1.04125 + 2 C - 4 C 1.38193 + 2 C - 5 C 1.38295 + 2 C - 11 C 1.04125 + 3 C - 4 C 0.10295 + 3 C - 5 C 1.45716 + 3 C - 7 H 0.96964 + 4 C - 6 C 1.45716 + 4 C - 8 H 0.96964 + 5 C - 6 C 0.10403 + 5 C - 9 H 0.96856 + 6 C - 10 H 0.96856 + 11 C - 13 H 0.96770 + 11 C - 15 C 1.93049 + 12 C - 14 H 0.96770 + 12 C - 16 C 1.93049 + 15 C - 17 H 0.97382 + 15 C - 19 H 0.97585 + 16 C - 18 H 0.97382 + 16 C - 20 H 0.97585 + + Free electrons Valency + Number of Sum of + Bond indices - Bond indices + Valency Free electrons Bond indices =Mulliken charge = Net spin population + 1 C 3.97499 2.02320 3.97499 5.99819 0.00000 + 2 C 3.97499 2.02320 3.97499 5.99819 -0.00000 + 3 C 3.97333 2.08632 3.97333 6.05964 -0.00000 + 4 C 3.97333 2.08632 3.97333 6.05964 0.00000 + 5 C 3.97410 2.08634 3.97410 6.06044 -0.00000 + 6 C 3.97410 2.08634 3.97410 6.06044 0.00000 + 7 H 0.99655 -0.05526 0.99655 0.94130 0.00000 + 8 H 0.99655 -0.05526 0.99655 0.94130 0.00000 + 9 H 0.99633 -0.05693 0.99633 0.93940 0.00000 + 10 H 0.99633 -0.05693 0.99633 0.93940 0.00000 + 11 C 3.97218 2.08307 3.97218 6.05525 -0.00000 + 12 C 3.97218 2.08307 3.97218 6.05525 0.00000 + 13 H 0.99668 -0.05431 0.99668 0.94236 -0.00000 + 14 H 0.99668 -0.05431 0.99668 0.94236 -0.00000 + 15 C 3.97069 2.15320 3.97069 6.12388 0.00000 + 16 C 3.97069 2.15320 3.97069 6.12388 0.00000 + 17 H 0.99652 -0.05553 0.99652 0.94099 -0.00000 + 18 H 0.99652 -0.05553 0.99652 0.94099 -0.00000 + 19 H 0.99622 -0.05768 0.99622 0.93855 -0.00000 + 20 H 0.99622 -0.05768 0.99622 0.93855 -0.00000 + + Task times cpu: 2.7s wall: 2.9s + Summary of allocated global arrays +----------------------------------- + No active global arrays + + + + GA Statistics for process 0 + ------------------------------ + + create destroy get put acc scatter gather read&inc +calls: 749 749 3.07e+04 6043 3.18e+04 420 0 8127 +number of processes/call 1.00e+00 1.00e+00 1.00e+00 1.00e+00 0.00e+00 +bytes total: 1.25e+07 7.29e+06 3.97e+06 3.09e+04 0.00e+00 6.50e+04 +bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 427200 bytes +MA_summarize_allocated_blocks: starting scan ... +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +MA usage statistics: + + allocation statistics: + heap stack + ---- ----- + current number of blocks 0 0 + maximum number of blocks 18 14 + current total bytes 0 0 + maximum total bytes 9986520 22510808 + maximum total K-bytes 9987 22511 + maximum total M-bytes 10 23 + + + NWChem Input Module + ------------------- + + + + + + CITATION + -------- + Please cite the following reference when publishing + results obtained with NWChem: + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + + AUTHORS + ------- + E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, + J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, + S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, + F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, + P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, + D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, + A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, + A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, + H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, + K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, + H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, + A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, + R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, + K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, + A. T. Wong, Z. Zhang. + + Total times cpu: 2.8s wall: 4.2s diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_ks.nw b/data/NWChem/basicNWChem7.0/dvb_sp_ks.nw new file mode 100644 index 000000000..932b3724f --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_sp_ks.nw @@ -0,0 +1,40 @@ + start dvb + title "Divinylbenzene in STO-3G basis set" + + geometry units angstroms + C -1.4152533224 0.2302217854 0.0000000000 + C 1.4152533224 -0.2302217854 0.0000000000 + C -0.4951331558 1.3144608674 0.0000000000 + C 0.4951331558 -1.3144608674 0.0000000000 + C 0.8894090436 1.0909493743 0.0000000000 + C -0.8894090436 -1.0909493743 0.0000000000 + H -0.8795511985 2.3437343748 0.0000000000 + H 0.8795511985 -2.3437343748 0.0000000000 + H 1.5779041557 1.9450061275 0.0000000000 + H -1.5779041557 -1.9450061275 0.0000000000 + C 2.8845844962 -0.5210893778 0.0000000000 + C -2.8845844962 0.5210893778 0.0000000000 + H 3.1403356810 -1.5919605685 0.0000000000 + H -3.1403356810 1.5919605685 0.0000000000 + C 3.8800428103 0.3822535424 0.0000000000 + C -3.8800428103 -0.3822535424 0.0000000000 + H 3.6946765858 1.4624389570 0.0000000000 + H -3.6946765858 -1.4624389570 0.0000000000 + H 4.9316453546 0.0711049543 0.0000000000 + H -4.9316453546 -0.0711049543 0.0000000000 + end + basis + * library sto-3g + end + dft + xc b3lyp + grid xfine + print "final vectors" "final vectors analysis" "ao overlap" + end + property + mulliken + dipole + quadrupole + octupole + end + task dft property diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_ks.out b/data/NWChem/basicNWChem7.0/dvb_sp_ks.out new file mode 100644 index 000000000..324cbead5 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_sp_ks.out @@ -0,0 +1,3443 @@ + argument 1 = dvb_sp_ks.nw + + + + + Northwest Computational Chemistry Package (NWChem) 6.5 + ------------------------------------------------------ + + + Environmental Molecular Sciences Laboratory + Pacific Northwest National Laboratory + Richland, WA 99352 + + Copyright (c) 1994-2014 + Pacific Northwest National Laboratory + Battelle Memorial Institute + + NWChem is an open-source computational chemistry package + distributed under the terms of the + Educational Community License (ECL) 2.0 + A copy of the license is included with this distribution + in the LICENSE.TXT file + + ACKNOWLEDGMENT + -------------- + + This software and its documentation were developed at the + EMSL at Pacific Northwest National Laboratory, a multiprogram + national laboratory, operated for the U.S. Department of Energy + by Battelle under Contract Number DE-AC05-76RL01830. Support + for this work was provided by the Department of Energy Office + of Biological and Environmental Research, Office of Basic + Energy Sciences, and the Office of Advanced Scientific Computing. + + + Job information + --------------- + + hostname = boman + program = /usr/lib64/mpich/bin/nwchem_mpich + date = Thu Jan 22 19:53:54 2015 + + compiled = Sat_Dec_06_13:02:58_2014 + source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 + nwchem branch = 6.5 + nwchem revision = 26243 + ga revision = 10506 + input = dvb_sp_ks.nw + prefix = dvb. + data base = ./dvb.db + status = startup + nproc = 1 + time left = -1s + + + + Memory information + ------------------ + + heap = 13107194 doubles = 100.0 Mbytes + stack = 13107199 doubles = 100.0 Mbytes + global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) + total = 52428793 doubles = 400.0 Mbytes + verify = yes + hardfail = no + + + Directory information + --------------------- + + 0 permanent = . + 0 scratch = . + + + + + NWChem Input Module + ------------------- + + + Divinylbenzene in STO-3G basis set + ---------------------------------- + + Scaling coordinates for geometry "geometry" by 1.889725989 + (inverse scale = 0.529177249) + + C2H symmetry detected + + ------ + auto-z + ------ + + + Geometry "geometry" -> "" + ------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.23680554 1.41416660 0.00000000 + 2 C 6.0000 -0.23680554 -1.41416660 0.00000000 + 3 C 6.0000 1.31675086 0.48901061 0.00000000 + 4 C 6.0000 -1.31675086 -0.48901061 0.00000000 + 5 C 6.0000 1.08679847 -0.89447642 0.00000000 + 6 C 6.0000 -1.08679847 0.89447642 0.00000000 + 7 H 1.0000 2.34780221 0.86863451 0.00000000 + 8 H 1.0000 -2.34780221 -0.86863451 0.00000000 + 9 H 1.0000 1.93764188 -1.58693865 0.00000000 + 10 H 1.0000 -1.93764188 1.58693865 0.00000000 + 11 C 6.0000 -0.53450789 -2.88212824 0.00000000 + 12 C 6.0000 0.53450789 2.88212824 0.00000000 + 13 H 1.0000 -1.60655769 -3.13289308 0.00000000 + 14 H 1.0000 1.60655769 3.13289308 0.00000000 + 15 C 6.0000 0.36419263 -3.88177971 0.00000000 + 16 C 6.0000 -0.36419263 3.88177971 0.00000000 + 17 H 1.0000 1.44522900 -3.70144241 0.00000000 + 18 H 1.0000 -1.44522900 3.70144241 0.00000000 + 19 H 1.0000 0.04815351 -4.93192286 0.00000000 + 20 H 1.0000 -0.04815351 4.93192286 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 445.9370121674 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value + ----------- -------- ----- ----- ----- ----- ----- ---------- + 1 Stretch 1 3 1.42204 + 2 Stretch 1 6 1.42197 + 3 Stretch 1 12 1.49784 + 4 Stretch 2 4 1.42204 + 5 Stretch 2 5 1.42197 + 6 Stretch 2 11 1.49784 + 7 Stretch 3 5 1.40247 + 8 Stretch 3 7 1.09872 + 9 Stretch 4 6 1.40247 + 10 Stretch 4 8 1.09872 + 11 Stretch 5 9 1.09701 + 12 Stretch 6 10 1.09701 + 13 Stretch 11 13 1.10099 + 14 Stretch 11 15 1.34423 + 15 Stretch 12 14 1.10099 + 16 Stretch 12 16 1.34423 + 17 Stretch 15 17 1.09597 + 18 Stretch 15 19 1.09667 + 19 Stretch 16 18 1.09597 + 20 Stretch 16 20 1.09667 + 21 Bend 1 3 5 121.14867 + 22 Bend 1 3 7 119.20109 + 23 Bend 1 6 4 120.87358 + 24 Bend 1 6 10 119.42285 + 25 Bend 1 12 14 114.62953 + 26 Bend 1 12 16 126.57992 + 27 Bend 2 4 6 121.14867 + 28 Bend 2 4 8 119.20109 + 29 Bend 2 5 3 120.87358 + 30 Bend 2 5 9 119.42285 + 31 Bend 2 11 13 114.62953 + 32 Bend 2 11 15 126.57992 + 33 Bend 3 1 6 117.97776 + 34 Bend 3 1 12 119.12155 + 35 Bend 3 5 9 119.70357 + 36 Bend 4 2 5 117.97776 + 37 Bend 4 2 11 119.12155 + 38 Bend 4 6 10 119.70357 + 39 Bend 5 2 11 122.90069 + 40 Bend 5 3 7 119.65024 + 41 Bend 6 1 12 122.90069 + 42 Bend 6 4 8 119.65024 + 43 Bend 11 15 17 122.48517 + 44 Bend 11 15 19 121.29492 + 45 Bend 12 16 18 122.48517 + 46 Bend 12 16 20 121.29492 + 47 Bend 13 11 15 118.79054 + 48 Bend 14 12 16 118.79054 + 49 Bend 17 15 19 116.21990 + 50 Bend 18 16 20 116.21990 + 51 Torsion 1 3 5 2 0.00000 + 52 Torsion 1 3 5 9 180.00000 + 53 Torsion 1 6 4 2 0.00000 + 54 Torsion 1 6 4 8 180.00000 + 55 Torsion 1 12 16 18 0.00000 + 56 Torsion 1 12 16 20 180.00000 + 57 Torsion 2 4 6 10 180.00000 + 58 Torsion 2 5 3 7 180.00000 + 59 Torsion 2 11 15 17 0.00000 + 60 Torsion 2 11 15 19 180.00000 + 61 Torsion 3 1 6 4 0.00000 + 62 Torsion 3 1 6 10 180.00000 + 63 Torsion 3 1 12 14 0.00000 + 64 Torsion 3 1 12 16 180.00000 + 65 Torsion 3 5 2 4 0.00000 + 66 Torsion 3 5 2 11 180.00000 + 67 Torsion 4 2 5 9 180.00000 + 68 Torsion 4 2 11 13 0.00000 + 69 Torsion 4 2 11 15 180.00000 + 70 Torsion 4 6 1 12 180.00000 + 71 Torsion 5 2 4 6 -0.00000 + 72 Torsion 5 2 4 8 180.00000 + 73 Torsion 5 2 11 13 180.00000 + 74 Torsion 5 2 11 15 0.00000 + 75 Torsion 5 3 1 6 0.00000 + 76 Torsion 5 3 1 12 180.00000 + 77 Torsion 6 1 3 7 180.00000 + 78 Torsion 6 1 12 14 180.00000 + 79 Torsion 6 1 12 16 0.00000 + 80 Torsion 6 4 2 11 180.00000 + 81 Torsion 7 3 1 12 -0.00000 + 82 Torsion 7 3 5 9 0.00000 + 83 Torsion 8 4 2 11 -0.00000 + 84 Torsion 8 4 6 10 0.00000 + 85 Torsion 9 5 2 11 0.00000 + 86 Torsion 10 6 1 12 0.00000 + 87 Torsion 13 11 15 17 180.00000 + 88 Torsion 13 11 15 19 -0.00000 + 89 Torsion 14 12 16 18 180.00000 + 90 Torsion 14 12 16 20 -0.00000 + + + XYZ format geometry + ------------------- + 20 + geometry + C 0.23680554 1.41416660 0.00000000 + C -0.23680554 -1.41416660 0.00000000 + C 1.31675086 0.48901061 0.00000000 + C -1.31675086 -0.48901061 0.00000000 + C 1.08679847 -0.89447642 0.00000000 + C -1.08679847 0.89447642 0.00000000 + H 2.34780221 0.86863451 0.00000000 + H -2.34780221 -0.86863451 0.00000000 + H 1.93764188 -1.58693865 0.00000000 + H -1.93764188 1.58693865 0.00000000 + C -0.53450789 -2.88212824 0.00000000 + C 0.53450789 2.88212824 0.00000000 + H -1.60655769 -3.13289308 0.00000000 + H 1.60655769 3.13289308 0.00000000 + C 0.36419263 -3.88177971 0.00000000 + C -0.36419263 3.88177971 0.00000000 + H 1.44522900 -3.70144241 0.00000000 + H -1.44522900 3.70144241 0.00000000 + H 0.04815351 -4.93192286 0.00000000 + H -0.04815351 4.93192286 0.00000000 + + ============================================================================== + internuclear distances + ------------------------------------------------------------------------------ + center one | center two | atomic units | angstroms + ------------------------------------------------------------------------------ + 3 C | 1 C | 2.68726 | 1.42204 + 4 C | 2 C | 2.68726 | 1.42204 + 5 C | 2 C | 2.68714 | 1.42197 + 5 C | 3 C | 2.65028 | 1.40247 + 6 C | 1 C | 2.68714 | 1.42197 + 6 C | 4 C | 2.65028 | 1.40247 + 7 H | 3 C | 2.07628 | 1.09872 + 8 H | 4 C | 2.07628 | 1.09872 + 9 H | 5 C | 2.07305 | 1.09701 + 10 H | 6 C | 2.07305 | 1.09701 + 11 C | 2 C | 2.83052 | 1.49784 + 12 C | 1 C | 2.83052 | 1.49784 + 13 H | 11 C | 2.08056 | 1.10099 + 14 H | 12 C | 2.08056 | 1.10099 + 15 C | 11 C | 2.54023 | 1.34423 + 16 C | 12 C | 2.54023 | 1.34423 + 17 H | 15 C | 2.07109 | 1.09597 + 18 H | 16 C | 2.07109 | 1.09597 + 19 H | 15 C | 2.07240 | 1.09667 + 20 H | 16 C | 2.07240 | 1.09667 + ------------------------------------------------------------------------------ + number of included internuclear distances: 20 + ============================================================================== + + + + ============================================================================== + internuclear angles + ------------------------------------------------------------------------------ + center 1 | center 2 | center 3 | degrees + ------------------------------------------------------------------------------ + 3 C | 1 C | 6 C | 117.98 + 3 C | 1 C | 12 C | 119.12 + 6 C | 1 C | 12 C | 122.90 + 4 C | 2 C | 5 C | 117.98 + 4 C | 2 C | 11 C | 119.12 + 5 C | 2 C | 11 C | 122.90 + 1 C | 3 C | 5 C | 121.15 + 1 C | 3 C | 7 H | 119.20 + 5 C | 3 C | 7 H | 119.65 + 2 C | 4 C | 6 C | 121.15 + 2 C | 4 C | 8 H | 119.20 + 6 C | 4 C | 8 H | 119.65 + 2 C | 5 C | 3 C | 120.87 + 2 C | 5 C | 9 H | 119.42 + 3 C | 5 C | 9 H | 119.70 + 1 C | 6 C | 4 C | 120.87 + 1 C | 6 C | 10 H | 119.42 + 4 C | 6 C | 10 H | 119.70 + 2 C | 11 C | 13 H | 114.63 + 2 C | 11 C | 15 C | 126.58 + 13 H | 11 C | 15 C | 118.79 + 1 C | 12 C | 14 H | 114.63 + 1 C | 12 C | 16 C | 126.58 + 14 H | 12 C | 16 C | 118.79 + 11 C | 15 C | 17 H | 122.49 + 11 C | 15 C | 19 H | 121.29 + 17 H | 15 C | 19 H | 116.22 + 12 C | 16 C | 18 H | 122.49 + 12 C | 16 C | 20 H | 121.29 + 18 H | 16 C | 20 H | 116.22 + ------------------------------------------------------------------------------ + number of included internuclear angles: 30 + ============================================================================== + + + + library name resolved from: environment + library file name is: + + + + Summary of "ao basis" -> "" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + * sto-3g on all atoms + + + NWChem Property Module + ---------------------- + + + Divinylbenzene in STO-3G basis set + + itol2e modified to match energy + convergence criterion. + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + Basis "ao basis" -> "ao basis" (cartesian) + ----- + C (Carbon) + ---------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 7.16168370E+01 0.154329 + 1 S 1.30450960E+01 0.535328 + 1 S 3.53051220E+00 0.444635 + + 2 S 2.94124940E+00 -0.099967 + 2 S 6.83483100E-01 0.399513 + 2 S 2.22289900E-01 0.700115 + + 3 P 2.94124940E+00 0.155916 + 3 P 6.83483100E-01 0.607684 + 3 P 2.22289900E-01 0.391957 + + H (Hydrogen) + ------------ + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.42525091E+00 0.154329 + 1 S 6.23913730E-01 0.535328 + 1 S 1.68855400E-01 0.444635 + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + Caching 1-el integrals + itol2e modified to match energy + convergence criterion. + + General Information + ------------------- + SCF calculation type: DFT + Wavefunction type: closed shell. + No. of atoms : 20 + No. of electrons : 70 + Alpha electrons : 35 + Beta electrons : 35 + Charge : 0 + Spin multiplicity: 1 + Use of symmetry is: on ; symmetry adaption is: on + Maximum number of iterations: 30 + AO basis - number of functions: 60 + number of shells: 40 + Convergence on energy requested: 1.00D-07 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 + + XC Information + -------------- + B3LYP Method XC Potential + Hartree-Fock (Exact) Exchange 0.200 + Slater Exchange Functional 0.800 local + Becke 1988 Exchange Functional 0.720 non-local + Lee-Yang-Parr Correlation Functional 0.810 + VWN I RPA Correlation Functional 0.190 local + + Grid Information + ---------------- + Grid used for XC integration: xfine + Radial quadrature: Mura-Knowles + Angular quadrature: Lebedev. + Tag B.-S. Rad. Rad. Pts. Rad. Cut. Ang. Pts. + --- ---------- --------- --------- --------- + C 0.70 100 13.0 1454 + H 0.35 100 13.0 1202 + Grid pruning is: on + Number of quadrature shells: 1000 + Spatial weights used: Erf1 + + Convergence Information + ----------------------- + Convergence aids based upon iterative change in + total energy or number of iterations. + Levelshifting, if invoked, occurs when the + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + DIIS, if invoked, will attempt to extrapolate + using up to (NFOCK): 10 stored Fock matrices. + + Damping( 0%) Levelshifting(0.5) DIIS + --------------- ------------------- --------------- + dE on: start ASAP start + dE off: 2 iters 30 iters 30 iters + + + Screening Tolerance Information + ------------------------------- + Density screening/tol_rho: 1.00D-11 + AO Gaussian exp screening on grid/accAOfunc: 16 + CD Gaussian exp screening on grid/accCDfunc: 20 + XC Gaussian exp screening on grid/accXCfunc: 20 + Schwarz screening/accCoul: 1.00D-08 + + + global array: Temp Over[1:60,1:60], handle: -989 + + 1 2 3 4 5 6 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 1.00000 0.24836 -0.00000 -0.00000 0.00000 0.00000 + 2 0.24836 1.00000 0.00000 -0.00000 0.00000 0.00030 + 3 -0.00000 0.00000 1.00000 0.00000 0.00000 -0.00014 + 4 -0.00000 -0.00000 0.00000 1.00000 0.00000 -0.00081 + 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 6 0.00000 0.00030 -0.00014 -0.00081 0.00000 1.00000 + 7 0.00030 0.02187 -0.00590 -0.03524 0.00000 0.24836 + 8 0.00014 0.00590 0.00661 -0.01021 0.00000 0.00000 + 9 0.00081 0.03524 -0.01021 -0.05268 0.00000 0.00000 + 10 0.00000 0.00000 0.00000 0.00000 0.00832 0.00000 + 11 0.00000 0.03557 0.04482 -0.03839 0.00000 0.00000 + 12 0.03557 0.35371 0.28849 -0.24714 0.00000 0.00159 + 13 -0.04482 -0.28849 -0.10190 0.26261 0.00000 -0.00235 + 14 0.03839 0.24714 0.26261 -0.02032 0.00000 -0.00288 + 15 0.00000 0.00000 0.00000 0.00000 0.20465 0.00000 + 16 0.00000 0.00159 -0.00235 -0.00288 0.00000 0.00000 + 17 0.00159 0.05619 -0.05280 -0.06468 0.00000 0.03557 + 18 0.00235 0.05280 -0.03131 -0.06691 0.00000 0.04482 + 19 0.00288 0.06468 -0.06691 -0.05866 0.00000 -0.03839 + 20 0.00000 0.00000 0.00000 0.00000 0.02331 0.00000 + 21 0.00000 0.00157 0.00127 -0.00344 0.00000 0.00000 + 22 0.00157 0.05578 0.02866 -0.07785 0.00000 0.03558 + 23 -0.00127 -0.02866 0.00691 0.04403 0.00000 -0.05494 + 24 0.00344 0.07785 0.04403 -0.09646 0.00000 -0.02157 + 25 0.00000 0.00000 0.00000 0.00000 0.02312 0.00000 + 26 0.00000 0.03558 -0.05494 -0.02157 0.00000 0.00000 + 27 0.03558 0.35374 -0.35362 -0.13884 0.00000 0.00157 + 28 0.05494 0.35362 -0.25587 -0.18083 0.00000 0.00127 + 29 0.02157 0.13884 -0.18083 0.13368 0.00000 -0.00344 + 30 0.00000 0.00000 0.00000 0.00000 0.20467 0.00000 + 31 0.00509 0.09301 0.11685 -0.03020 0.00000 0.00008 + 32 0.00008 0.00590 -0.00738 -0.00652 0.00000 0.00509 + 33 0.00008 0.00588 0.00484 -0.00854 0.00000 0.00508 + 34 0.00508 0.09284 -0.12012 0.00954 0.00000 0.00008 + 35 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 36 0.00000 0.00026 -0.00010 -0.00057 0.00000 0.02955 + 37 0.00000 0.00010 0.00004 -0.00022 0.00000 0.00980 + 38 0.00000 0.00057 -0.00022 -0.00117 0.00000 0.04831 + 39 0.00000 0.00000 0.00000 0.00000 0.00008 0.00000 + 40 0.00000 0.02955 0.00980 0.04831 0.00000 0.00000 + 41 0.02955 0.31761 0.06996 0.34497 0.00000 0.00000 + 42 -0.00980 -0.06996 0.15824 -0.09697 0.00000 -0.00000 + 43 -0.04831 -0.34497 -0.09697 -0.30023 0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.17791 0.00000 + 45 0.00000 0.00008 -0.00007 -0.00016 0.00000 0.00487 + 46 0.00487 0.09007 0.07314 0.09177 0.00000 0.00000 + 47 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 48 0.00000 0.00001 0.00000 -0.00002 0.00000 0.00116 + 49 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00066 + 50 0.00000 0.00002 0.00000 -0.00005 0.00000 0.00272 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00116 -0.00066 0.00272 0.00000 0.00000 + 53 0.00116 0.04688 -0.01682 0.06907 0.00000 0.00000 + 54 0.00066 0.01682 0.01248 0.02713 0.00000 0.00000 + 55 -0.00272 -0.06907 0.02713 -0.09229 0.00000 -0.00000 + 56 0.00000 0.00000 0.00000 0.00000 0.01908 0.00000 + 57 0.00000 0.00002 0.00001 -0.00005 0.00000 0.00074 + 58 0.00074 0.02468 -0.02186 0.02972 0.00000 0.00000 + 59 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00006 + 60 0.00006 0.00481 -0.00066 0.00811 0.00000 0.00000 + + 7 8 9 10 11 12 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00030 0.00014 0.00081 0.00000 0.00000 0.03557 + 2 0.02187 0.00590 0.03524 0.00000 0.03557 0.35371 + 3 -0.00590 0.00661 -0.01021 0.00000 0.04482 0.28849 + 4 -0.03524 -0.01021 -0.05268 0.00000 -0.03839 -0.24714 + 5 0.00000 0.00000 0.00000 0.00832 0.00000 0.00000 + 6 0.24836 0.00000 0.00000 0.00000 0.00000 0.00159 + 7 1.00000 -0.00000 0.00000 0.00000 0.00159 0.05619 + 8 -0.00000 1.00000 0.00000 0.00000 0.00235 0.05280 + 9 0.00000 0.00000 1.00000 0.00000 0.00288 0.06468 + 10 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 + 11 0.00159 0.00235 0.00288 0.00000 1.00000 0.24836 + 12 0.05619 0.05280 0.06468 0.00000 0.24836 1.00000 + 13 -0.05280 -0.03131 -0.06691 0.00000 0.00000 0.00000 + 14 -0.06468 -0.06691 -0.05866 0.00000 -0.00000 -0.00000 + 15 0.00000 0.00000 0.00000 0.02331 0.00000 0.00000 + 16 0.03557 -0.04482 0.03839 0.00000 0.00000 0.00039 + 17 0.35371 -0.28849 0.24714 0.00000 0.00039 0.02519 + 18 0.28849 -0.10190 0.26261 0.00000 0.00097 0.03810 + 19 -0.24714 0.26261 -0.02032 0.00000 0.00036 0.01415 + 20 0.00000 0.00000 0.00000 0.20465 0.00000 0.00000 + 21 0.03558 0.05494 0.02157 0.00000 0.00000 0.03729 + 22 0.35374 0.35362 0.13884 0.00000 0.03729 0.36341 + 23 -0.35362 -0.25587 -0.18083 0.00000 0.01014 0.06345 + 24 -0.13884 -0.18083 0.13368 0.00000 0.06099 0.38176 + 25 0.00000 0.00000 0.00000 0.20467 0.00000 0.00000 + 26 0.00157 -0.00127 0.00344 0.00000 0.00000 0.00170 + 27 0.05578 -0.02866 0.07785 0.00000 0.00170 0.05856 + 28 0.02866 0.00691 0.04403 0.00000 0.00390 0.08539 + 29 -0.07785 0.04403 -0.09646 0.00000 -0.00066 -0.01441 + 30 0.00000 0.00000 0.00000 0.02312 0.00000 0.00000 + 31 0.00590 0.00738 0.00652 0.00000 0.06102 0.48575 + 32 0.09301 -0.11685 0.03020 0.00000 0.00001 0.00175 + 33 0.09284 0.12012 -0.00954 0.00000 0.00527 0.09535 + 34 0.00588 -0.00484 0.00854 0.00000 0.00008 0.00611 + 35 0.02955 -0.00980 -0.04831 0.00000 0.00000 0.00000 + 36 0.31761 -0.06996 -0.34497 0.00000 0.00000 0.00144 + 37 0.06996 0.15824 -0.09697 0.00000 0.00000 0.00139 + 38 0.34497 -0.09697 -0.30023 0.00000 0.00001 0.00253 + 39 0.00000 0.00000 0.00000 0.17791 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.00000 0.00000 0.00126 + 41 0.00026 0.00010 0.00057 0.00000 0.00126 0.04921 + 42 -0.00010 0.00004 -0.00022 0.00000 0.00094 0.02306 + 43 -0.00057 -0.00022 -0.00117 0.00000 -0.00287 -0.07056 + 44 0.00000 0.00000 0.00000 0.00008 0.00000 0.00000 + 45 0.09007 -0.07314 -0.09177 0.00000 0.00000 0.00019 + 46 0.00008 0.00007 0.00016 0.00000 0.00132 0.03624 + 47 0.00116 0.00066 -0.00272 0.00000 0.00000 0.00000 + 48 0.04688 0.01682 -0.06907 0.00000 0.00000 0.00018 + 49 -0.01682 0.01248 0.02713 0.00000 0.00000 0.00009 + 50 0.06907 0.02713 -0.09229 0.00000 0.00000 0.00039 + 51 0.00000 0.00000 0.00000 0.01908 0.00000 0.00000 + 52 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 53 0.00001 -0.00000 0.00002 0.00000 0.00000 0.00174 + 54 0.00000 0.00000 0.00000 0.00000 0.00000 0.00152 + 55 -0.00002 0.00000 -0.00005 0.00000 -0.00001 -0.00307 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.02468 0.02186 -0.02972 0.00000 0.00000 0.00078 + 58 0.00002 -0.00001 0.00005 0.00000 0.00000 0.00068 + 59 0.00481 0.00066 -0.00811 0.00000 0.00000 0.00001 + 60 0.00000 0.00000 0.00000 0.00000 0.00000 0.00019 + + 13 14 15 16 17 18 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.04482 0.03839 0.00000 0.00000 0.00159 0.00235 + 2 -0.28849 0.24714 0.00000 0.00159 0.05619 0.05280 + 3 -0.10190 0.26261 0.00000 -0.00235 -0.05280 -0.03131 + 4 0.26261 -0.02032 0.00000 -0.00288 -0.06468 -0.06691 + 5 0.00000 0.00000 0.20465 0.00000 0.00000 0.00000 + 6 -0.00235 -0.00288 0.00000 0.00000 0.03557 0.04482 + 7 -0.05280 -0.06468 0.00000 0.03557 0.35371 0.28849 + 8 -0.03131 -0.06691 0.00000 -0.04482 -0.28849 -0.10190 + 9 -0.06691 -0.05866 0.00000 0.03839 0.24714 0.26261 + 10 0.00000 0.00000 0.02331 0.00000 0.00000 0.00000 + 11 0.00000 -0.00000 0.00000 0.00000 0.00039 0.00097 + 12 0.00000 -0.00000 0.00000 0.00039 0.02519 0.03810 + 13 1.00000 0.00000 0.00000 -0.00097 -0.03810 -0.05238 + 14 0.00000 1.00000 0.00000 -0.00036 -0.01415 -0.02305 + 15 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 16 -0.00097 -0.00036 0.00000 1.00000 0.24836 -0.00000 + 17 -0.03810 -0.01415 0.00000 0.24836 1.00000 -0.00000 + 18 -0.05238 -0.02305 0.00000 -0.00000 -0.00000 1.00000 + 19 -0.02305 0.00113 0.00000 0.00000 0.00000 0.00000 + 20 0.00000 0.00000 0.00969 0.00000 0.00000 0.00000 + 21 -0.01014 -0.06099 0.00000 0.00000 0.00170 0.00390 + 22 -0.06345 -0.38176 0.00000 0.00170 0.05856 0.08539 + 23 0.19756 -0.08733 0.00000 -0.00390 -0.08539 -0.11288 + 24 -0.08733 -0.31332 0.00000 0.00066 0.01441 0.02316 + 25 0.00000 0.00000 0.21207 0.00000 0.00000 0.00000 + 26 -0.00390 0.00066 0.00000 0.00000 0.03729 0.01014 + 27 -0.08539 0.01441 0.00000 0.03729 0.36341 0.06345 + 28 -0.11288 0.02316 0.00000 -0.01014 -0.06345 0.19756 + 29 0.02316 0.02049 0.00000 -0.06099 -0.38176 -0.08733 + 30 0.00000 0.00000 0.02440 0.00000 0.00000 0.00000 + 31 0.43567 0.16041 0.00000 0.00001 0.00175 0.00297 + 32 -0.00297 -0.00110 0.00000 0.06102 0.48575 -0.43567 + 33 0.03534 -0.11815 0.00000 0.00008 0.00611 0.00963 + 34 -0.00963 0.00325 0.00000 0.00527 0.09535 -0.03534 + 35 -0.00000 -0.00001 0.00000 0.00000 0.00126 0.00094 + 36 -0.00139 -0.00253 0.00000 0.00126 0.04921 0.02306 + 37 -0.00089 -0.00250 0.00000 -0.00094 -0.02306 0.00828 + 38 -0.00250 -0.00407 0.00000 0.00287 0.07056 0.03624 + 39 0.00000 0.00000 0.00048 0.00000 0.00000 0.00000 + 40 -0.00094 0.00287 0.00000 0.00000 0.00000 0.00000 + 41 -0.02306 0.07056 0.00000 0.00000 0.00144 0.00139 + 42 0.00828 0.03624 0.00000 -0.00000 -0.00139 -0.00089 + 43 0.03624 -0.09075 0.00000 -0.00001 -0.00253 -0.00250 + 44 0.00000 0.00000 0.02013 0.00000 0.00000 0.00000 + 45 -0.00024 -0.00030 0.00000 0.00132 0.03624 -0.00570 + 46 0.00570 0.05196 0.00000 0.00000 0.00019 0.00024 + 47 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 48 -0.00009 -0.00039 0.00000 0.00000 0.00174 0.00152 + 49 0.00002 -0.00019 0.00000 -0.00000 -0.00152 -0.00079 + 50 -0.00019 -0.00082 0.00000 0.00001 0.00307 0.00277 + 51 0.00000 0.00000 0.00006 0.00000 0.00000 0.00000 + 52 -0.00000 0.00001 0.00000 0.00000 0.00000 0.00000 + 53 -0.00152 0.00307 0.00000 0.00000 0.00018 0.00009 + 54 -0.00079 0.00277 0.00000 -0.00000 -0.00009 0.00002 + 55 0.00277 -0.00501 0.00000 -0.00000 -0.00039 -0.00019 + 56 0.00000 0.00000 0.00058 0.00000 0.00000 0.00000 + 57 0.00005 -0.00148 0.00000 0.00000 0.00068 0.00085 + 58 -0.00085 0.00099 0.00000 0.00000 0.00078 -0.00005 + 59 -0.00000 -0.00002 0.00000 0.00000 0.00019 0.00012 + 60 -0.00012 0.00038 0.00000 0.00000 0.00001 0.00000 + + 19 20 21 22 23 24 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00288 0.00000 0.00000 0.00157 -0.00127 0.00344 + 2 0.06468 0.00000 0.00157 0.05578 -0.02866 0.07785 + 3 -0.06691 0.00000 0.00127 0.02866 0.00691 0.04403 + 4 -0.05866 0.00000 -0.00344 -0.07785 0.04403 -0.09646 + 5 0.00000 0.02331 0.00000 0.00000 0.00000 0.00000 + 6 -0.03839 0.00000 0.00000 0.03558 -0.05494 -0.02157 + 7 -0.24714 0.00000 0.03558 0.35374 -0.35362 -0.13884 + 8 0.26261 0.00000 0.05494 0.35362 -0.25587 -0.18083 + 9 -0.02032 0.00000 0.02157 0.13884 -0.18083 0.13368 + 10 0.00000 0.20465 0.00000 0.00000 0.00000 0.00000 + 11 0.00036 0.00000 0.00000 0.03729 0.01014 0.06099 + 12 0.01415 0.00000 0.03729 0.36341 0.06345 0.38176 + 13 -0.02305 0.00000 -0.01014 -0.06345 0.19756 -0.08733 + 14 0.00113 0.00000 -0.06099 -0.38176 -0.08733 -0.31332 + 15 0.00000 0.00969 0.00000 0.00000 0.00000 0.00000 + 16 0.00000 0.00000 0.00000 0.00170 -0.00390 0.00066 + 17 0.00000 0.00000 0.00170 0.05856 -0.08539 0.01441 + 18 0.00000 0.00000 0.00390 0.08539 -0.11288 0.02316 + 19 1.00000 0.00000 -0.00066 -0.01441 0.02316 0.02049 + 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 21 -0.00066 0.00000 1.00000 0.24836 -0.00000 -0.00000 + 22 -0.01441 0.00000 0.24836 1.00000 0.00000 -0.00000 + 23 0.02316 0.00000 -0.00000 0.00000 1.00000 0.00000 + 24 0.02049 0.00000 -0.00000 -0.00000 0.00000 1.00000 + 25 0.00000 0.02440 0.00000 0.00000 0.00000 0.00000 + 26 0.06099 0.00000 0.00000 0.00038 -0.00078 0.00065 + 27 0.38176 0.00000 0.00038 0.02484 -0.03098 0.02550 + 28 -0.08733 0.00000 0.00078 0.03098 -0.03207 0.03425 + 29 -0.31332 0.00000 -0.00065 -0.02550 0.03425 -0.01864 + 30 0.00000 0.21207 0.00000 0.00000 0.00000 0.00000 + 31 0.00110 0.00000 0.00526 0.09520 0.07165 0.10018 + 32 -0.16041 0.00000 0.00008 0.00611 -0.01016 0.00008 + 33 -0.00325 0.00000 0.06126 0.48673 0.36054 -0.29343 + 34 0.11815 0.00000 0.00001 0.00173 -0.00242 0.00199 + 35 -0.00287 0.00000 0.00000 0.00105 -0.00162 -0.00199 + 36 -0.07056 0.00000 0.00105 0.04432 -0.04274 -0.05240 + 37 0.03624 0.00000 0.00162 0.04274 -0.02709 -0.05521 + 38 -0.09075 0.00000 0.00199 0.05240 -0.05521 -0.04974 + 39 0.00000 0.02013 0.00000 0.00000 0.00000 0.00000 + 40 0.00001 0.00000 0.00000 0.00000 -0.00000 0.00001 + 41 0.00253 0.00000 0.00000 0.00158 -0.00045 0.00311 + 42 -0.00250 0.00000 0.00000 0.00045 0.00039 0.00092 + 43 -0.00407 0.00000 -0.00001 -0.00311 0.00092 -0.00575 + 44 0.00000 0.00048 0.00000 0.00000 0.00000 0.00000 + 45 -0.05196 0.00000 0.00006 0.00515 -0.00667 -0.00554 + 46 0.00030 0.00000 0.00001 0.00114 0.00027 0.00210 + 47 -0.00001 0.00000 0.00000 0.00012 -0.00008 -0.00034 + 48 -0.00307 0.00000 0.00012 0.01305 -0.00524 -0.02165 + 49 0.00277 0.00000 0.00008 0.00524 0.00255 -0.00924 + 50 -0.00501 0.00000 0.00034 0.02165 -0.00924 -0.03340 + 51 0.00000 0.00058 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 53 0.00039 0.00000 0.00000 0.00002 -0.00002 0.00006 + 54 -0.00019 0.00000 0.00000 0.00002 -0.00001 0.00004 + 55 -0.00082 0.00000 -0.00000 -0.00006 0.00004 -0.00014 + 56 0.00000 0.00006 0.00000 0.00000 0.00000 0.00000 + 57 -0.00099 0.00000 0.00076 0.02519 0.00476 -0.03729 + 58 0.00148 0.00000 0.00000 0.00002 -0.00003 0.00005 + 59 -0.00038 0.00000 0.00000 0.00083 -0.00039 -0.00153 + 60 0.00002 0.00000 0.00000 0.00000 -0.00000 0.00000 + + 25 26 27 28 29 30 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 0.00000 0.03558 0.05494 0.02157 0.00000 + 2 0.00000 0.03558 0.35374 0.35362 0.13884 0.00000 + 3 0.00000 -0.05494 -0.35362 -0.25587 -0.18083 0.00000 + 4 0.00000 -0.02157 -0.13884 -0.18083 0.13368 0.00000 + 5 0.02312 0.00000 0.00000 0.00000 0.00000 0.20467 + 6 0.00000 0.00000 0.00157 0.00127 -0.00344 0.00000 + 7 0.00000 0.00157 0.05578 0.02866 -0.07785 0.00000 + 8 0.00000 -0.00127 -0.02866 0.00691 0.04403 0.00000 + 9 0.00000 0.00344 0.07785 0.04403 -0.09646 0.00000 + 10 0.20467 0.00000 0.00000 0.00000 0.00000 0.02312 + 11 0.00000 0.00000 0.00170 0.00390 -0.00066 0.00000 + 12 0.00000 0.00170 0.05856 0.08539 -0.01441 0.00000 + 13 0.00000 -0.00390 -0.08539 -0.11288 0.02316 0.00000 + 14 0.00000 0.00066 0.01441 0.02316 0.02049 0.00000 + 15 0.21207 0.00000 0.00000 0.00000 0.00000 0.02440 + 16 0.00000 0.00000 0.03729 -0.01014 -0.06099 0.00000 + 17 0.00000 0.03729 0.36341 -0.06345 -0.38176 0.00000 + 18 0.00000 0.01014 0.06345 0.19756 -0.08733 0.00000 + 19 0.00000 0.06099 0.38176 -0.08733 -0.31332 0.00000 + 20 0.02440 0.00000 0.00000 0.00000 0.00000 0.21207 + 21 0.00000 0.00000 0.00038 0.00078 -0.00065 0.00000 + 22 0.00000 0.00038 0.02484 0.03098 -0.02550 0.00000 + 23 0.00000 -0.00078 -0.03098 -0.03207 0.03425 0.00000 + 24 0.00000 0.00065 0.02550 0.03425 -0.01864 0.00000 + 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.00954 + 26 0.00000 1.00000 0.24836 0.00000 0.00000 0.00000 + 27 0.00000 0.24836 1.00000 0.00000 0.00000 0.00000 + 28 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 + 29 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 30 0.00954 0.00000 0.00000 0.00000 0.00000 1.00000 + 31 0.00000 0.00008 0.00611 0.01016 -0.00008 0.00000 + 32 0.00000 0.00526 0.09520 -0.07165 -0.10018 0.00000 + 33 0.00000 0.00001 0.00173 0.00242 -0.00199 0.00000 + 34 0.00000 0.06126 0.48673 -0.36054 0.29343 0.00000 + 35 0.00000 0.00000 0.00000 0.00000 -0.00001 0.00000 + 36 0.00000 0.00000 0.00158 0.00045 -0.00311 0.00000 + 37 0.00000 -0.00000 -0.00045 0.00039 0.00092 0.00000 + 38 0.00000 0.00001 0.00311 0.00092 -0.00575 0.00000 + 39 0.01794 0.00000 0.00000 0.00000 0.00000 0.00053 + 40 0.00000 0.00000 0.00105 0.00162 0.00199 0.00000 + 41 0.00000 0.00105 0.04432 0.04274 0.05240 0.00000 + 42 0.00000 -0.00162 -0.04274 -0.02709 -0.05521 0.00000 + 43 0.00000 -0.00199 -0.05240 -0.05521 -0.04974 0.00000 + 44 0.00053 0.00000 0.00000 0.00000 0.00000 0.01794 + 45 0.00000 0.00001 0.00114 -0.00027 -0.00210 0.00000 + 46 0.00000 0.00006 0.00515 0.00667 0.00554 0.00000 + 47 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 48 0.00000 0.00000 0.00002 0.00002 -0.00006 0.00000 + 49 0.00000 -0.00000 -0.00002 -0.00001 0.00004 0.00000 + 50 0.00000 0.00000 0.00006 0.00004 -0.00014 0.00000 + 51 0.00478 0.00000 0.00000 0.00000 0.00000 0.00001 + 52 0.00000 0.00000 0.00012 0.00008 0.00034 0.00000 + 53 0.00000 0.00012 0.01305 0.00524 0.02165 0.00000 + 54 0.00000 -0.00008 -0.00524 0.00255 -0.00924 0.00000 + 55 0.00000 -0.00034 -0.02165 -0.00924 -0.03340 0.00000 + 56 0.00001 0.00000 0.00000 0.00000 0.00000 0.00478 + 57 0.00000 0.00000 0.00002 0.00003 -0.00005 0.00000 + 58 0.00000 0.00076 0.02519 -0.00476 0.03729 0.00000 + 59 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 60 0.00000 0.00000 0.00083 0.00039 0.00153 0.00000 + + 31 32 33 34 35 36 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00509 0.00008 0.00008 0.00508 0.00000 0.00000 + 2 0.09301 0.00590 0.00588 0.09284 0.00000 0.00026 + 3 0.11685 -0.00738 0.00484 -0.12012 -0.00000 -0.00010 + 4 -0.03020 -0.00652 -0.00854 0.00954 -0.00000 -0.00057 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 0.00008 0.00509 0.00508 0.00008 0.00000 0.02955 + 7 0.00590 0.09301 0.09284 0.00588 0.02955 0.31761 + 8 0.00738 -0.11685 0.12012 -0.00484 -0.00980 -0.06996 + 9 0.00652 0.03020 -0.00954 0.00854 -0.04831 -0.34497 + 10 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 11 0.06102 0.00001 0.00527 0.00008 0.00000 0.00000 + 12 0.48575 0.00175 0.09535 0.00611 0.00000 0.00144 + 13 0.43567 -0.00297 0.03534 -0.00963 -0.00000 -0.00139 + 14 0.16041 -0.00110 -0.11815 0.00325 -0.00001 -0.00253 + 15 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 16 0.00001 0.06102 0.00008 0.00527 0.00000 0.00126 + 17 0.00175 0.48575 0.00611 0.09535 0.00126 0.04921 + 18 0.00297 -0.43567 0.00963 -0.03534 0.00094 0.02306 + 19 0.00110 -0.16041 -0.00325 0.11815 -0.00287 -0.07056 + 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 21 0.00526 0.00008 0.06126 0.00001 0.00000 0.00105 + 22 0.09520 0.00611 0.48673 0.00173 0.00105 0.04432 + 23 0.07165 -0.01016 0.36054 -0.00242 -0.00162 -0.04274 + 24 0.10018 0.00008 -0.29343 0.00199 -0.00199 -0.05240 + 25 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 26 0.00008 0.00526 0.00001 0.06126 0.00000 0.00000 + 27 0.00611 0.09520 0.00173 0.48673 0.00000 0.00158 + 28 0.01016 -0.07165 0.00242 -0.36054 0.00000 0.00045 + 29 -0.00008 -0.10018 -0.00199 0.29343 -0.00001 -0.00311 + 30 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 31 1.00000 0.00011 0.05049 0.00071 0.00000 0.00015 + 32 0.00011 1.00000 0.00071 0.05049 0.00113 0.03262 + 33 0.05049 0.00071 1.00000 0.00010 0.00087 0.02741 + 34 0.00071 0.05049 0.00010 1.00000 0.00000 0.00017 + 35 0.00000 0.00113 0.00087 0.00000 1.00000 0.24836 + 36 0.00015 0.03262 0.02741 0.00017 0.24836 1.00000 + 37 0.00019 -0.03181 0.03596 -0.00011 -0.00000 -0.00000 + 38 0.00024 0.03532 0.01884 0.00034 -0.00000 -0.00000 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 0.00113 0.00000 0.00000 0.00087 0.00000 0.00000 + 41 0.03262 0.00015 0.00017 0.02741 0.00000 0.00000 + 42 0.03181 -0.00019 0.00011 -0.03596 -0.00000 -0.00000 + 43 -0.03532 -0.00024 -0.00034 -0.01884 -0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 0.00001 0.06153 0.00248 0.00024 0.06070 0.48445 + 46 0.06153 0.00001 0.00024 0.00248 0.00000 0.00000 + 47 0.00000 0.00001 0.00089 0.00000 0.00000 0.04284 + 48 0.00004 0.00116 0.02792 0.00000 0.04284 0.39315 + 49 0.00003 -0.00144 0.02334 -0.00000 -0.04749 -0.27266 + 50 0.00007 0.00160 0.03404 0.00000 0.05283 0.30328 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00001 0.00000 0.00000 0.00089 0.00000 0.00000 + 53 0.00116 0.00004 0.00000 0.02792 0.00000 0.00000 + 54 0.00144 -0.00003 0.00000 -0.02334 -0.00000 -0.00000 + 55 -0.00160 -0.00007 -0.00000 -0.03404 -0.00000 -0.00000 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.00030 0.00024 0.08944 0.00000 0.00561 0.09966 + 58 0.00024 0.00030 0.00000 0.08944 0.00000 0.00000 + 59 0.00000 0.00025 0.00264 0.00000 0.00577 0.10177 + 60 0.00025 0.00000 0.00000 0.00264 0.00000 0.00000 + + 37 38 39 40 41 42 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 0.00000 0.00000 0.00000 0.02955 -0.00980 + 2 0.00010 0.00057 0.00000 0.02955 0.31761 -0.06996 + 3 0.00004 -0.00022 0.00000 0.00980 0.06996 0.15824 + 4 -0.00022 -0.00117 0.00000 0.04831 0.34497 -0.09697 + 5 0.00000 0.00000 0.00008 0.00000 0.00000 0.00000 + 6 0.00980 0.04831 0.00000 0.00000 0.00000 -0.00000 + 7 0.06996 0.34497 0.00000 0.00000 0.00026 -0.00010 + 8 0.15824 -0.09697 0.00000 0.00000 0.00010 0.00004 + 9 -0.09697 -0.30023 0.00000 0.00000 0.00057 -0.00022 + 10 0.00000 0.00000 0.17791 0.00000 0.00000 0.00000 + 11 0.00000 0.00001 0.00000 0.00000 0.00126 0.00094 + 12 0.00139 0.00253 0.00000 0.00126 0.04921 0.02306 + 13 -0.00089 -0.00250 0.00000 -0.00094 -0.02306 0.00828 + 14 -0.00250 -0.00407 0.00000 0.00287 0.07056 0.03624 + 15 0.00000 0.00000 0.00048 0.00000 0.00000 0.00000 + 16 -0.00094 0.00287 0.00000 0.00000 0.00000 -0.00000 + 17 -0.02306 0.07056 0.00000 0.00000 0.00144 -0.00139 + 18 0.00828 0.03624 0.00000 0.00000 0.00139 -0.00089 + 19 0.03624 -0.09075 0.00000 0.00001 0.00253 -0.00250 + 20 0.00000 0.00000 0.02013 0.00000 0.00000 0.00000 + 21 0.00162 0.00199 0.00000 0.00000 0.00000 0.00000 + 22 0.04274 0.05240 0.00000 0.00000 0.00158 0.00045 + 23 -0.02709 -0.05521 0.00000 -0.00000 -0.00045 0.00039 + 24 -0.05521 -0.04974 0.00000 0.00001 0.00311 0.00092 + 25 0.00000 0.00000 0.01794 0.00000 0.00000 0.00000 + 26 -0.00000 0.00001 0.00000 0.00000 0.00105 -0.00162 + 27 -0.00045 0.00311 0.00000 0.00105 0.04432 -0.04274 + 28 0.00039 0.00092 0.00000 0.00162 0.04274 -0.02709 + 29 0.00092 -0.00575 0.00000 0.00199 0.05240 -0.05521 + 30 0.00000 0.00000 0.00053 0.00000 0.00000 0.00000 + 31 0.00019 0.00024 0.00000 0.00113 0.03262 0.03181 + 32 -0.03181 0.03532 0.00000 0.00000 0.00015 -0.00019 + 33 0.03596 0.01884 0.00000 0.00000 0.00017 0.00011 + 34 -0.00011 0.00034 0.00000 0.00087 0.02741 -0.03596 + 35 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 36 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 37 1.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 38 0.00000 1.00000 0.00000 0.00000 0.00000 -0.00000 + 39 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 41 0.00000 0.00000 0.00000 0.24836 1.00000 0.00000 + 42 0.00000 -0.00000 0.00000 0.00000 0.00000 1.00000 + 43 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.45129 -0.10556 0.00000 0.00000 0.00000 -0.00000 + 46 0.00000 0.00000 0.00000 0.06070 0.48445 0.45129 + 47 0.04749 -0.05283 0.00000 0.00000 0.00000 -0.00000 + 48 0.27266 -0.30328 0.00000 0.00000 0.00000 -0.00000 + 49 -0.01650 0.28029 0.00000 0.00000 0.00000 0.00000 + 50 0.28029 -0.07629 0.00000 0.00000 0.00000 -0.00000 + 51 0.00000 0.00000 0.23549 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 0.04284 -0.04749 + 53 0.00000 0.00000 0.00000 0.04284 0.39315 -0.27266 + 54 0.00000 -0.00000 0.00000 0.04749 0.27266 -0.01650 + 55 -0.00000 -0.00000 0.00000 -0.05283 -0.30328 0.28029 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.11842 -0.04901 0.00000 0.00000 0.00000 0.00000 + 58 -0.00000 0.00000 0.00000 0.00561 0.09966 -0.11842 + 59 0.03569 -0.12555 0.00000 0.00000 0.00000 -0.00000 + 60 0.00000 0.00000 0.00000 0.00577 0.10177 -0.03569 + + 43 44 45 46 47 48 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.04831 0.00000 0.00000 0.00487 0.00000 0.00000 + 2 -0.34497 0.00000 0.00008 0.09007 0.00000 0.00001 + 3 -0.09697 0.00000 -0.00007 0.07314 0.00000 0.00000 + 4 -0.30023 0.00000 -0.00016 0.09177 -0.00000 -0.00002 + 5 0.00000 0.17791 0.00000 0.00000 0.00000 0.00000 + 6 -0.00000 0.00000 0.00487 0.00000 0.00000 0.00116 + 7 -0.00057 0.00000 0.09007 0.00008 0.00116 0.04688 + 8 -0.00022 0.00000 -0.07314 0.00007 0.00066 0.01682 + 9 -0.00117 0.00000 -0.09177 0.00016 -0.00272 -0.06907 + 10 0.00000 0.00008 0.00000 0.00000 0.00000 0.00000 + 11 -0.00287 0.00000 0.00000 0.00132 0.00000 0.00000 + 12 -0.07056 0.00000 0.00019 0.03624 0.00000 0.00018 + 13 0.03624 0.00000 -0.00024 0.00570 -0.00000 -0.00009 + 14 -0.09075 0.00000 -0.00030 0.05196 -0.00000 -0.00039 + 15 0.00000 0.02013 0.00000 0.00000 0.00000 0.00000 + 16 -0.00001 0.00000 0.00132 0.00000 0.00000 0.00000 + 17 -0.00253 0.00000 0.03624 0.00019 0.00000 0.00174 + 18 -0.00250 0.00000 -0.00570 0.00024 0.00000 0.00152 + 19 -0.00407 0.00000 -0.05196 0.00030 -0.00001 -0.00307 + 20 0.00000 0.00048 0.00000 0.00000 0.00000 0.00000 + 21 -0.00001 0.00000 0.00006 0.00001 0.00000 0.00012 + 22 -0.00311 0.00000 0.00515 0.00114 0.00012 0.01305 + 23 0.00092 0.00000 -0.00667 0.00027 -0.00008 -0.00524 + 24 -0.00575 0.00000 -0.00554 0.00210 -0.00034 -0.02165 + 25 0.00000 0.00053 0.00000 0.00000 0.00000 0.00000 + 26 -0.00199 0.00000 0.00001 0.00006 0.00000 0.00000 + 27 -0.05240 0.00000 0.00114 0.00515 0.00000 0.00002 + 28 -0.05521 0.00000 -0.00027 0.00667 0.00000 0.00002 + 29 -0.04974 0.00000 -0.00210 0.00554 -0.00000 -0.00006 + 30 0.00000 0.01794 0.00000 0.00000 0.00000 0.00000 + 31 -0.03532 0.00000 0.00001 0.06153 0.00000 0.00004 + 32 -0.00024 0.00000 0.06153 0.00001 0.00001 0.00116 + 33 -0.00034 0.00000 0.00248 0.00024 0.00089 0.02792 + 34 -0.01884 0.00000 0.00024 0.00248 0.00000 0.00000 + 35 -0.00000 0.00000 0.06070 0.00000 0.00000 0.04284 + 36 -0.00000 0.00000 0.48445 0.00000 0.04284 0.39315 + 37 -0.00000 0.00000 -0.45129 0.00000 0.04749 0.27266 + 38 -0.00000 0.00000 -0.10556 0.00000 -0.05283 -0.30328 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 + 41 0.00000 0.00000 0.00000 0.48445 0.00000 0.00000 + 42 0.00000 0.00000 -0.00000 0.45129 -0.00000 -0.00000 + 43 1.00000 0.00000 -0.00000 0.10556 -0.00000 -0.00000 + 44 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.00000 0.00000 1.00000 0.00000 0.00611 0.10604 + 46 0.10556 0.00000 0.00000 1.00000 0.00000 0.00000 + 47 -0.00000 0.00000 0.00611 0.00000 1.00000 0.24836 + 48 -0.00000 0.00000 0.10604 0.00000 0.24836 1.00000 + 49 -0.00000 0.00000 -0.12645 0.00000 -0.00000 0.00000 + 50 -0.00000 0.00000 0.04805 0.00000 -0.00000 -0.00000 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.05283 0.00000 0.00000 0.00611 0.00000 0.00000 + 53 0.30328 0.00000 0.00000 0.10604 0.00000 0.00000 + 54 0.28029 0.00000 -0.00000 0.12645 0.00000 0.00000 + 55 -0.07629 0.00000 -0.00000 -0.04805 0.00000 -0.00000 + 56 0.00000 0.23549 0.00000 0.00000 0.00000 0.00000 + 57 -0.00000 0.00000 0.01462 0.00000 0.06141 0.48732 + 58 0.04901 0.00000 0.00000 0.01462 0.00000 0.00000 + 59 -0.00000 0.00000 0.05493 0.00000 0.06131 0.48692 + 60 0.12555 0.00000 0.00000 0.05493 0.00000 0.00000 + + 49 50 51 52 53 54 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 0.00000 0.00000 0.00000 0.00116 0.00066 + 2 -0.00000 0.00002 0.00000 0.00116 0.04688 0.01682 + 3 0.00000 0.00000 0.00000 -0.00066 -0.01682 0.01248 + 4 0.00000 -0.00005 0.00000 0.00272 0.06907 0.02713 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 -0.00066 0.00272 0.00000 0.00000 0.00000 0.00000 + 7 -0.01682 0.06907 0.00000 0.00000 0.00001 0.00000 + 8 0.01248 0.02713 0.00000 -0.00000 -0.00000 0.00000 + 9 0.02713 -0.09229 0.00000 0.00000 0.00002 0.00000 + 10 0.00000 0.00000 0.01908 0.00000 0.00000 0.00000 + 11 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 12 0.00009 0.00039 0.00000 0.00000 0.00174 0.00152 + 13 0.00002 -0.00019 0.00000 -0.00000 -0.00152 -0.00079 + 14 -0.00019 -0.00082 0.00000 0.00001 0.00307 0.00277 + 15 0.00000 0.00000 0.00006 0.00000 0.00000 0.00000 + 16 -0.00000 0.00001 0.00000 0.00000 0.00000 -0.00000 + 17 -0.00152 0.00307 0.00000 0.00000 0.00018 -0.00009 + 18 -0.00079 0.00277 0.00000 0.00000 0.00009 0.00002 + 19 0.00277 -0.00501 0.00000 0.00000 0.00039 -0.00019 + 20 0.00000 0.00000 0.00058 0.00000 0.00000 0.00000 + 21 0.00008 0.00034 0.00000 0.00000 0.00000 0.00000 + 22 0.00524 0.02165 0.00000 0.00000 0.00002 0.00002 + 23 0.00255 -0.00924 0.00000 -0.00000 -0.00002 -0.00001 + 24 -0.00924 -0.03340 0.00000 0.00000 0.00006 0.00004 + 25 0.00000 0.00000 0.00478 0.00000 0.00000 0.00000 + 26 -0.00000 0.00000 0.00000 0.00000 0.00012 -0.00008 + 27 -0.00002 0.00006 0.00000 0.00012 0.01305 -0.00524 + 28 -0.00001 0.00004 0.00000 0.00008 0.00524 0.00255 + 29 0.00004 -0.00014 0.00000 0.00034 0.02165 -0.00924 + 30 0.00000 0.00000 0.00001 0.00000 0.00000 0.00000 + 31 0.00003 0.00007 0.00000 0.00001 0.00116 0.00144 + 32 -0.00144 0.00160 0.00000 0.00000 0.00004 -0.00003 + 33 0.02334 0.03404 0.00000 0.00000 0.00000 0.00000 + 34 -0.00000 0.00000 0.00000 0.00089 0.02792 -0.02334 + 35 -0.04749 0.05283 0.00000 0.00000 0.00000 -0.00000 + 36 -0.27266 0.30328 0.00000 0.00000 0.00000 -0.00000 + 37 -0.01650 0.28029 0.00000 0.00000 0.00000 0.00000 + 38 0.28029 -0.07629 0.00000 0.00000 0.00000 -0.00000 + 39 0.00000 0.00000 0.23549 0.00000 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.00000 0.04284 0.04749 + 41 0.00000 0.00000 0.00000 0.04284 0.39315 0.27266 + 42 0.00000 -0.00000 0.00000 -0.04749 -0.27266 -0.01650 + 43 -0.00000 -0.00000 0.00000 0.05283 0.30328 0.28029 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.12645 0.04805 0.00000 0.00000 0.00000 -0.00000 + 46 0.00000 0.00000 0.00000 0.00611 0.10604 0.12645 + 47 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 48 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 49 1.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 50 -0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 51 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 53 -0.00000 0.00000 0.00000 0.24836 1.00000 -0.00000 + 54 0.00000 0.00000 0.00000 0.00000 -0.00000 1.00000 + 55 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.45887 0.07655 0.00000 0.00000 0.00000 0.00000 + 58 -0.00000 0.00000 0.00000 0.06141 0.48732 -0.45887 + 59 -0.13400 -0.44525 0.00000 0.00000 0.00000 0.00000 + 60 -0.00000 0.00000 0.00000 0.06131 0.48692 0.13400 + + 55 56 57 58 59 60 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00272 0.00000 0.00000 0.00074 0.00000 0.00006 + 2 -0.06907 0.00000 0.00002 0.02468 0.00000 0.00481 + 3 0.02713 0.00000 0.00001 -0.02186 -0.00000 -0.00066 + 4 -0.09229 0.00000 -0.00005 0.02972 -0.00000 0.00811 + 5 0.00000 0.01908 0.00000 0.00000 0.00000 0.00000 + 6 -0.00000 0.00000 0.00074 0.00000 0.00006 0.00000 + 7 -0.00002 0.00000 0.02468 0.00002 0.00481 0.00000 + 8 0.00000 0.00000 0.02186 -0.00001 0.00066 0.00000 + 9 -0.00005 0.00000 -0.02972 0.00005 -0.00811 0.00000 + 10 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 11 -0.00001 0.00000 0.00000 0.00000 0.00000 0.00000 + 12 -0.00307 0.00000 0.00078 0.00068 0.00001 0.00019 + 13 0.00277 0.00000 0.00005 -0.00085 -0.00000 -0.00012 + 14 -0.00501 0.00000 -0.00148 0.00099 -0.00002 0.00038 + 15 0.00000 0.00058 0.00000 0.00000 0.00000 0.00000 + 16 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 17 -0.00039 0.00000 0.00068 0.00078 0.00019 0.00001 + 18 -0.00019 0.00000 0.00085 -0.00005 0.00012 0.00000 + 19 -0.00082 0.00000 -0.00099 0.00148 -0.00038 0.00002 + 20 0.00000 0.00006 0.00000 0.00000 0.00000 0.00000 + 21 -0.00000 0.00000 0.00076 0.00000 0.00000 0.00000 + 22 -0.00006 0.00000 0.02519 0.00002 0.00083 0.00000 + 23 0.00004 0.00000 0.00476 -0.00003 -0.00039 -0.00000 + 24 -0.00014 0.00000 -0.03729 0.00005 -0.00153 0.00000 + 25 0.00000 0.00001 0.00000 0.00000 0.00000 0.00000 + 26 -0.00034 0.00000 0.00000 0.00076 0.00000 0.00000 + 27 -0.02165 0.00000 0.00002 0.02519 0.00000 0.00083 + 28 -0.00924 0.00000 0.00003 -0.00476 0.00000 0.00039 + 29 -0.03340 0.00000 -0.00005 0.03729 -0.00000 0.00153 + 30 0.00000 0.00478 0.00000 0.00000 0.00000 0.00000 + 31 -0.00160 0.00000 0.00030 0.00024 0.00000 0.00025 + 32 -0.00007 0.00000 0.00024 0.00030 0.00025 0.00000 + 33 -0.00000 0.00000 0.08944 0.00000 0.00264 0.00000 + 34 -0.03404 0.00000 0.00000 0.08944 0.00000 0.00264 + 35 -0.00000 0.00000 0.00561 0.00000 0.00577 0.00000 + 36 -0.00000 0.00000 0.09966 0.00000 0.10177 0.00000 + 37 -0.00000 0.00000 0.11842 -0.00000 0.03569 0.00000 + 38 -0.00000 0.00000 -0.04901 0.00000 -0.12555 0.00000 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 -0.05283 0.00000 0.00000 0.00561 0.00000 0.00577 + 41 -0.30328 0.00000 0.00000 0.09966 0.00000 0.10177 + 42 0.28029 0.00000 0.00000 -0.11842 -0.00000 -0.03569 + 43 -0.07629 0.00000 -0.00000 0.04901 -0.00000 0.12555 + 44 0.00000 0.23549 0.00000 0.00000 0.00000 0.00000 + 45 -0.00000 0.00000 0.01462 0.00000 0.05493 0.00000 + 46 -0.04805 0.00000 0.00000 0.01462 0.00000 0.05493 + 47 0.00000 0.00000 0.06141 0.00000 0.06131 0.00000 + 48 -0.00000 0.00000 0.48732 0.00000 0.48692 0.00000 + 49 0.00000 0.00000 0.45887 -0.00000 -0.13400 -0.00000 + 50 -0.00000 0.00000 0.07655 0.00000 -0.44525 0.00000 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 + 53 0.00000 0.00000 0.00000 0.48732 0.00000 0.48692 + 54 -0.00000 0.00000 0.00000 -0.45887 0.00000 0.13400 + 55 1.00000 0.00000 -0.00000 -0.07655 -0.00000 0.44525 + 56 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 57 -0.00000 0.00000 1.00000 0.00000 0.14897 0.00000 + 58 -0.07655 0.00000 0.00000 1.00000 0.00000 0.14897 + 59 -0.00000 0.00000 0.14897 0.00000 1.00000 0.00000 + 60 0.44525 0.00000 0.00000 0.14897 0.00000 1.00000 + + Superposition of Atomic Density Guess + ------------------------------------- + + Sum of atomic energies: -376.44825176 + + global array: Temp HCore[1:60,1:60], handle: -988 + + 1 2 3 4 5 6 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 1.00000 0.24836 -0.00000 -0.00000 0.00000 0.00000 + 2 0.24836 1.00000 0.00000 -0.00000 0.00000 0.00030 + 3 -0.00000 0.00000 1.00000 0.00000 0.00000 -0.00014 + 4 -0.00000 -0.00000 0.00000 1.00000 0.00000 -0.00081 + 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 6 0.00000 0.00030 -0.00014 -0.00081 0.00000 1.00000 + 7 0.00030 0.02187 -0.00590 -0.03524 0.00000 0.24836 + 8 0.00014 0.00590 0.00661 -0.01021 0.00000 0.00000 + 9 0.00081 0.03524 -0.01021 -0.05268 0.00000 0.00000 + 10 0.00000 0.00000 0.00000 0.00000 0.00832 0.00000 + 11 0.00000 0.03557 0.04482 -0.03839 0.00000 0.00000 + 12 0.03557 0.35371 0.28849 -0.24714 0.00000 0.00159 + 13 -0.04482 -0.28849 -0.10190 0.26261 0.00000 -0.00235 + 14 0.03839 0.24714 0.26261 -0.02032 0.00000 -0.00288 + 15 0.00000 0.00000 0.00000 0.00000 0.20465 0.00000 + 16 0.00000 0.00159 -0.00235 -0.00288 0.00000 0.00000 + 17 0.00159 0.05619 -0.05280 -0.06468 0.00000 0.03557 + 18 0.00235 0.05280 -0.03131 -0.06691 0.00000 0.04482 + 19 0.00288 0.06468 -0.06691 -0.05866 0.00000 -0.03839 + 20 0.00000 0.00000 0.00000 0.00000 0.02331 0.00000 + 21 0.00000 0.00157 0.00127 -0.00344 0.00000 0.00000 + 22 0.00157 0.05578 0.02866 -0.07785 0.00000 0.03558 + 23 -0.00127 -0.02866 0.00691 0.04403 0.00000 -0.05494 + 24 0.00344 0.07785 0.04403 -0.09646 0.00000 -0.02157 + 25 0.00000 0.00000 0.00000 0.00000 0.02312 0.00000 + 26 0.00000 0.03558 -0.05494 -0.02157 0.00000 0.00000 + 27 0.03558 0.35374 -0.35362 -0.13884 0.00000 0.00157 + 28 0.05494 0.35362 -0.25587 -0.18083 0.00000 0.00127 + 29 0.02157 0.13884 -0.18083 0.13368 0.00000 -0.00344 + 30 0.00000 0.00000 0.00000 0.00000 0.20467 0.00000 + 31 0.00509 0.09301 0.11685 -0.03020 0.00000 0.00008 + 32 0.00008 0.00590 -0.00738 -0.00652 0.00000 0.00509 + 33 0.00008 0.00588 0.00484 -0.00854 0.00000 0.00508 + 34 0.00508 0.09284 -0.12012 0.00954 0.00000 0.00008 + 35 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 36 0.00000 0.00026 -0.00010 -0.00057 0.00000 0.02955 + 37 0.00000 0.00010 0.00004 -0.00022 0.00000 0.00980 + 38 0.00000 0.00057 -0.00022 -0.00117 0.00000 0.04831 + 39 0.00000 0.00000 0.00000 0.00000 0.00008 0.00000 + 40 0.00000 0.02955 0.00980 0.04831 0.00000 0.00000 + 41 0.02955 0.31761 0.06996 0.34497 0.00000 0.00000 + 42 -0.00980 -0.06996 0.15824 -0.09697 0.00000 -0.00000 + 43 -0.04831 -0.34497 -0.09697 -0.30023 0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.17791 0.00000 + 45 0.00000 0.00008 -0.00007 -0.00016 0.00000 0.00487 + 46 0.00487 0.09007 0.07314 0.09177 0.00000 0.00000 + 47 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 48 0.00000 0.00001 0.00000 -0.00002 0.00000 0.00116 + 49 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00066 + 50 0.00000 0.00002 0.00000 -0.00005 0.00000 0.00272 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00116 -0.00066 0.00272 0.00000 0.00000 + 53 0.00116 0.04688 -0.01682 0.06907 0.00000 0.00000 + 54 0.00066 0.01682 0.01248 0.02713 0.00000 0.00000 + 55 -0.00272 -0.06907 0.02713 -0.09229 0.00000 -0.00000 + 56 0.00000 0.00000 0.00000 0.00000 0.01908 0.00000 + 57 0.00000 0.00002 0.00001 -0.00005 0.00000 0.00074 + 58 0.00074 0.02468 -0.02186 0.02972 0.00000 0.00000 + 59 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00006 + 60 0.00006 0.00481 -0.00066 0.00811 0.00000 0.00000 + + 7 8 9 10 11 12 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00030 0.00014 0.00081 0.00000 0.00000 0.03557 + 2 0.02187 0.00590 0.03524 0.00000 0.03557 0.35371 + 3 -0.00590 0.00661 -0.01021 0.00000 0.04482 0.28849 + 4 -0.03524 -0.01021 -0.05268 0.00000 -0.03839 -0.24714 + 5 0.00000 0.00000 0.00000 0.00832 0.00000 0.00000 + 6 0.24836 0.00000 0.00000 0.00000 0.00000 0.00159 + 7 1.00000 -0.00000 0.00000 0.00000 0.00159 0.05619 + 8 -0.00000 1.00000 0.00000 0.00000 0.00235 0.05280 + 9 0.00000 0.00000 1.00000 0.00000 0.00288 0.06468 + 10 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 + 11 0.00159 0.00235 0.00288 0.00000 1.00000 0.24836 + 12 0.05619 0.05280 0.06468 0.00000 0.24836 1.00000 + 13 -0.05280 -0.03131 -0.06691 0.00000 0.00000 0.00000 + 14 -0.06468 -0.06691 -0.05866 0.00000 -0.00000 -0.00000 + 15 0.00000 0.00000 0.00000 0.02331 0.00000 0.00000 + 16 0.03557 -0.04482 0.03839 0.00000 0.00000 0.00039 + 17 0.35371 -0.28849 0.24714 0.00000 0.00039 0.02519 + 18 0.28849 -0.10190 0.26261 0.00000 0.00097 0.03810 + 19 -0.24714 0.26261 -0.02032 0.00000 0.00036 0.01415 + 20 0.00000 0.00000 0.00000 0.20465 0.00000 0.00000 + 21 0.03558 0.05494 0.02157 0.00000 0.00000 0.03729 + 22 0.35374 0.35362 0.13884 0.00000 0.03729 0.36341 + 23 -0.35362 -0.25587 -0.18083 0.00000 0.01014 0.06345 + 24 -0.13884 -0.18083 0.13368 0.00000 0.06099 0.38176 + 25 0.00000 0.00000 0.00000 0.20467 0.00000 0.00000 + 26 0.00157 -0.00127 0.00344 0.00000 0.00000 0.00170 + 27 0.05578 -0.02866 0.07785 0.00000 0.00170 0.05856 + 28 0.02866 0.00691 0.04403 0.00000 0.00390 0.08539 + 29 -0.07785 0.04403 -0.09646 0.00000 -0.00066 -0.01441 + 30 0.00000 0.00000 0.00000 0.02312 0.00000 0.00000 + 31 0.00590 0.00738 0.00652 0.00000 0.06102 0.48575 + 32 0.09301 -0.11685 0.03020 0.00000 0.00001 0.00175 + 33 0.09284 0.12012 -0.00954 0.00000 0.00527 0.09535 + 34 0.00588 -0.00484 0.00854 0.00000 0.00008 0.00611 + 35 0.02955 -0.00980 -0.04831 0.00000 0.00000 0.00000 + 36 0.31761 -0.06996 -0.34497 0.00000 0.00000 0.00144 + 37 0.06996 0.15824 -0.09697 0.00000 0.00000 0.00139 + 38 0.34497 -0.09697 -0.30023 0.00000 0.00001 0.00253 + 39 0.00000 0.00000 0.00000 0.17791 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.00000 0.00000 0.00126 + 41 0.00026 0.00010 0.00057 0.00000 0.00126 0.04921 + 42 -0.00010 0.00004 -0.00022 0.00000 0.00094 0.02306 + 43 -0.00057 -0.00022 -0.00117 0.00000 -0.00287 -0.07056 + 44 0.00000 0.00000 0.00000 0.00008 0.00000 0.00000 + 45 0.09007 -0.07314 -0.09177 0.00000 0.00000 0.00019 + 46 0.00008 0.00007 0.00016 0.00000 0.00132 0.03624 + 47 0.00116 0.00066 -0.00272 0.00000 0.00000 0.00000 + 48 0.04688 0.01682 -0.06907 0.00000 0.00000 0.00018 + 49 -0.01682 0.01248 0.02713 0.00000 0.00000 0.00009 + 50 0.06907 0.02713 -0.09229 0.00000 0.00000 0.00039 + 51 0.00000 0.00000 0.00000 0.01908 0.00000 0.00000 + 52 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 53 0.00001 -0.00000 0.00002 0.00000 0.00000 0.00174 + 54 0.00000 0.00000 0.00000 0.00000 0.00000 0.00152 + 55 -0.00002 0.00000 -0.00005 0.00000 -0.00001 -0.00307 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.02468 0.02186 -0.02972 0.00000 0.00000 0.00078 + 58 0.00002 -0.00001 0.00005 0.00000 0.00000 0.00068 + 59 0.00481 0.00066 -0.00811 0.00000 0.00000 0.00001 + 60 0.00000 0.00000 0.00000 0.00000 0.00000 0.00019 + + 13 14 15 16 17 18 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.04482 0.03839 0.00000 0.00000 0.00159 0.00235 + 2 -0.28849 0.24714 0.00000 0.00159 0.05619 0.05280 + 3 -0.10190 0.26261 0.00000 -0.00235 -0.05280 -0.03131 + 4 0.26261 -0.02032 0.00000 -0.00288 -0.06468 -0.06691 + 5 0.00000 0.00000 0.20465 0.00000 0.00000 0.00000 + 6 -0.00235 -0.00288 0.00000 0.00000 0.03557 0.04482 + 7 -0.05280 -0.06468 0.00000 0.03557 0.35371 0.28849 + 8 -0.03131 -0.06691 0.00000 -0.04482 -0.28849 -0.10190 + 9 -0.06691 -0.05866 0.00000 0.03839 0.24714 0.26261 + 10 0.00000 0.00000 0.02331 0.00000 0.00000 0.00000 + 11 0.00000 -0.00000 0.00000 0.00000 0.00039 0.00097 + 12 0.00000 -0.00000 0.00000 0.00039 0.02519 0.03810 + 13 1.00000 0.00000 0.00000 -0.00097 -0.03810 -0.05238 + 14 0.00000 1.00000 0.00000 -0.00036 -0.01415 -0.02305 + 15 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 16 -0.00097 -0.00036 0.00000 1.00000 0.24836 -0.00000 + 17 -0.03810 -0.01415 0.00000 0.24836 1.00000 -0.00000 + 18 -0.05238 -0.02305 0.00000 -0.00000 -0.00000 1.00000 + 19 -0.02305 0.00113 0.00000 0.00000 0.00000 0.00000 + 20 0.00000 0.00000 0.00969 0.00000 0.00000 0.00000 + 21 -0.01014 -0.06099 0.00000 0.00000 0.00170 0.00390 + 22 -0.06345 -0.38176 0.00000 0.00170 0.05856 0.08539 + 23 0.19756 -0.08733 0.00000 -0.00390 -0.08539 -0.11288 + 24 -0.08733 -0.31332 0.00000 0.00066 0.01441 0.02316 + 25 0.00000 0.00000 0.21207 0.00000 0.00000 0.00000 + 26 -0.00390 0.00066 0.00000 0.00000 0.03729 0.01014 + 27 -0.08539 0.01441 0.00000 0.03729 0.36341 0.06345 + 28 -0.11288 0.02316 0.00000 -0.01014 -0.06345 0.19756 + 29 0.02316 0.02049 0.00000 -0.06099 -0.38176 -0.08733 + 30 0.00000 0.00000 0.02440 0.00000 0.00000 0.00000 + 31 0.43567 0.16041 0.00000 0.00001 0.00175 0.00297 + 32 -0.00297 -0.00110 0.00000 0.06102 0.48575 -0.43567 + 33 0.03534 -0.11815 0.00000 0.00008 0.00611 0.00963 + 34 -0.00963 0.00325 0.00000 0.00527 0.09535 -0.03534 + 35 -0.00000 -0.00001 0.00000 0.00000 0.00126 0.00094 + 36 -0.00139 -0.00253 0.00000 0.00126 0.04921 0.02306 + 37 -0.00089 -0.00250 0.00000 -0.00094 -0.02306 0.00828 + 38 -0.00250 -0.00407 0.00000 0.00287 0.07056 0.03624 + 39 0.00000 0.00000 0.00048 0.00000 0.00000 0.00000 + 40 -0.00094 0.00287 0.00000 0.00000 0.00000 0.00000 + 41 -0.02306 0.07056 0.00000 0.00000 0.00144 0.00139 + 42 0.00828 0.03624 0.00000 -0.00000 -0.00139 -0.00089 + 43 0.03624 -0.09075 0.00000 -0.00001 -0.00253 -0.00250 + 44 0.00000 0.00000 0.02013 0.00000 0.00000 0.00000 + 45 -0.00024 -0.00030 0.00000 0.00132 0.03624 -0.00570 + 46 0.00570 0.05196 0.00000 0.00000 0.00019 0.00024 + 47 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 48 -0.00009 -0.00039 0.00000 0.00000 0.00174 0.00152 + 49 0.00002 -0.00019 0.00000 -0.00000 -0.00152 -0.00079 + 50 -0.00019 -0.00082 0.00000 0.00001 0.00307 0.00277 + 51 0.00000 0.00000 0.00006 0.00000 0.00000 0.00000 + 52 -0.00000 0.00001 0.00000 0.00000 0.00000 0.00000 + 53 -0.00152 0.00307 0.00000 0.00000 0.00018 0.00009 + 54 -0.00079 0.00277 0.00000 -0.00000 -0.00009 0.00002 + 55 0.00277 -0.00501 0.00000 -0.00000 -0.00039 -0.00019 + 56 0.00000 0.00000 0.00058 0.00000 0.00000 0.00000 + 57 0.00005 -0.00148 0.00000 0.00000 0.00068 0.00085 + 58 -0.00085 0.00099 0.00000 0.00000 0.00078 -0.00005 + 59 -0.00000 -0.00002 0.00000 0.00000 0.00019 0.00012 + 60 -0.00012 0.00038 0.00000 0.00000 0.00001 0.00000 + + 19 20 21 22 23 24 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00288 0.00000 0.00000 0.00157 -0.00127 0.00344 + 2 0.06468 0.00000 0.00157 0.05578 -0.02866 0.07785 + 3 -0.06691 0.00000 0.00127 0.02866 0.00691 0.04403 + 4 -0.05866 0.00000 -0.00344 -0.07785 0.04403 -0.09646 + 5 0.00000 0.02331 0.00000 0.00000 0.00000 0.00000 + 6 -0.03839 0.00000 0.00000 0.03558 -0.05494 -0.02157 + 7 -0.24714 0.00000 0.03558 0.35374 -0.35362 -0.13884 + 8 0.26261 0.00000 0.05494 0.35362 -0.25587 -0.18083 + 9 -0.02032 0.00000 0.02157 0.13884 -0.18083 0.13368 + 10 0.00000 0.20465 0.00000 0.00000 0.00000 0.00000 + 11 0.00036 0.00000 0.00000 0.03729 0.01014 0.06099 + 12 0.01415 0.00000 0.03729 0.36341 0.06345 0.38176 + 13 -0.02305 0.00000 -0.01014 -0.06345 0.19756 -0.08733 + 14 0.00113 0.00000 -0.06099 -0.38176 -0.08733 -0.31332 + 15 0.00000 0.00969 0.00000 0.00000 0.00000 0.00000 + 16 0.00000 0.00000 0.00000 0.00170 -0.00390 0.00066 + 17 0.00000 0.00000 0.00170 0.05856 -0.08539 0.01441 + 18 0.00000 0.00000 0.00390 0.08539 -0.11288 0.02316 + 19 1.00000 0.00000 -0.00066 -0.01441 0.02316 0.02049 + 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 21 -0.00066 0.00000 1.00000 0.24836 -0.00000 -0.00000 + 22 -0.01441 0.00000 0.24836 1.00000 0.00000 -0.00000 + 23 0.02316 0.00000 -0.00000 0.00000 1.00000 0.00000 + 24 0.02049 0.00000 -0.00000 -0.00000 0.00000 1.00000 + 25 0.00000 0.02440 0.00000 0.00000 0.00000 0.00000 + 26 0.06099 0.00000 0.00000 0.00038 -0.00078 0.00065 + 27 0.38176 0.00000 0.00038 0.02484 -0.03098 0.02550 + 28 -0.08733 0.00000 0.00078 0.03098 -0.03207 0.03425 + 29 -0.31332 0.00000 -0.00065 -0.02550 0.03425 -0.01864 + 30 0.00000 0.21207 0.00000 0.00000 0.00000 0.00000 + 31 0.00110 0.00000 0.00526 0.09520 0.07165 0.10018 + 32 -0.16041 0.00000 0.00008 0.00611 -0.01016 0.00008 + 33 -0.00325 0.00000 0.06126 0.48673 0.36054 -0.29343 + 34 0.11815 0.00000 0.00001 0.00173 -0.00242 0.00199 + 35 -0.00287 0.00000 0.00000 0.00105 -0.00162 -0.00199 + 36 -0.07056 0.00000 0.00105 0.04432 -0.04274 -0.05240 + 37 0.03624 0.00000 0.00162 0.04274 -0.02709 -0.05521 + 38 -0.09075 0.00000 0.00199 0.05240 -0.05521 -0.04974 + 39 0.00000 0.02013 0.00000 0.00000 0.00000 0.00000 + 40 0.00001 0.00000 0.00000 0.00000 -0.00000 0.00001 + 41 0.00253 0.00000 0.00000 0.00158 -0.00045 0.00311 + 42 -0.00250 0.00000 0.00000 0.00045 0.00039 0.00092 + 43 -0.00407 0.00000 -0.00001 -0.00311 0.00092 -0.00575 + 44 0.00000 0.00048 0.00000 0.00000 0.00000 0.00000 + 45 -0.05196 0.00000 0.00006 0.00515 -0.00667 -0.00554 + 46 0.00030 0.00000 0.00001 0.00114 0.00027 0.00210 + 47 -0.00001 0.00000 0.00000 0.00012 -0.00008 -0.00034 + 48 -0.00307 0.00000 0.00012 0.01305 -0.00524 -0.02165 + 49 0.00277 0.00000 0.00008 0.00524 0.00255 -0.00924 + 50 -0.00501 0.00000 0.00034 0.02165 -0.00924 -0.03340 + 51 0.00000 0.00058 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 53 0.00039 0.00000 0.00000 0.00002 -0.00002 0.00006 + 54 -0.00019 0.00000 0.00000 0.00002 -0.00001 0.00004 + 55 -0.00082 0.00000 -0.00000 -0.00006 0.00004 -0.00014 + 56 0.00000 0.00006 0.00000 0.00000 0.00000 0.00000 + 57 -0.00099 0.00000 0.00076 0.02519 0.00476 -0.03729 + 58 0.00148 0.00000 0.00000 0.00002 -0.00003 0.00005 + 59 -0.00038 0.00000 0.00000 0.00083 -0.00039 -0.00153 + 60 0.00002 0.00000 0.00000 0.00000 -0.00000 0.00000 + + 25 26 27 28 29 30 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 0.00000 0.03558 0.05494 0.02157 0.00000 + 2 0.00000 0.03558 0.35374 0.35362 0.13884 0.00000 + 3 0.00000 -0.05494 -0.35362 -0.25587 -0.18083 0.00000 + 4 0.00000 -0.02157 -0.13884 -0.18083 0.13368 0.00000 + 5 0.02312 0.00000 0.00000 0.00000 0.00000 0.20467 + 6 0.00000 0.00000 0.00157 0.00127 -0.00344 0.00000 + 7 0.00000 0.00157 0.05578 0.02866 -0.07785 0.00000 + 8 0.00000 -0.00127 -0.02866 0.00691 0.04403 0.00000 + 9 0.00000 0.00344 0.07785 0.04403 -0.09646 0.00000 + 10 0.20467 0.00000 0.00000 0.00000 0.00000 0.02312 + 11 0.00000 0.00000 0.00170 0.00390 -0.00066 0.00000 + 12 0.00000 0.00170 0.05856 0.08539 -0.01441 0.00000 + 13 0.00000 -0.00390 -0.08539 -0.11288 0.02316 0.00000 + 14 0.00000 0.00066 0.01441 0.02316 0.02049 0.00000 + 15 0.21207 0.00000 0.00000 0.00000 0.00000 0.02440 + 16 0.00000 0.00000 0.03729 -0.01014 -0.06099 0.00000 + 17 0.00000 0.03729 0.36341 -0.06345 -0.38176 0.00000 + 18 0.00000 0.01014 0.06345 0.19756 -0.08733 0.00000 + 19 0.00000 0.06099 0.38176 -0.08733 -0.31332 0.00000 + 20 0.02440 0.00000 0.00000 0.00000 0.00000 0.21207 + 21 0.00000 0.00000 0.00038 0.00078 -0.00065 0.00000 + 22 0.00000 0.00038 0.02484 0.03098 -0.02550 0.00000 + 23 0.00000 -0.00078 -0.03098 -0.03207 0.03425 0.00000 + 24 0.00000 0.00065 0.02550 0.03425 -0.01864 0.00000 + 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.00954 + 26 0.00000 1.00000 0.24836 0.00000 0.00000 0.00000 + 27 0.00000 0.24836 1.00000 0.00000 0.00000 0.00000 + 28 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 + 29 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 30 0.00954 0.00000 0.00000 0.00000 0.00000 1.00000 + 31 0.00000 0.00008 0.00611 0.01016 -0.00008 0.00000 + 32 0.00000 0.00526 0.09520 -0.07165 -0.10018 0.00000 + 33 0.00000 0.00001 0.00173 0.00242 -0.00199 0.00000 + 34 0.00000 0.06126 0.48673 -0.36054 0.29343 0.00000 + 35 0.00000 0.00000 0.00000 0.00000 -0.00001 0.00000 + 36 0.00000 0.00000 0.00158 0.00045 -0.00311 0.00000 + 37 0.00000 -0.00000 -0.00045 0.00039 0.00092 0.00000 + 38 0.00000 0.00001 0.00311 0.00092 -0.00575 0.00000 + 39 0.01794 0.00000 0.00000 0.00000 0.00000 0.00053 + 40 0.00000 0.00000 0.00105 0.00162 0.00199 0.00000 + 41 0.00000 0.00105 0.04432 0.04274 0.05240 0.00000 + 42 0.00000 -0.00162 -0.04274 -0.02709 -0.05521 0.00000 + 43 0.00000 -0.00199 -0.05240 -0.05521 -0.04974 0.00000 + 44 0.00053 0.00000 0.00000 0.00000 0.00000 0.01794 + 45 0.00000 0.00001 0.00114 -0.00027 -0.00210 0.00000 + 46 0.00000 0.00006 0.00515 0.00667 0.00554 0.00000 + 47 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 48 0.00000 0.00000 0.00002 0.00002 -0.00006 0.00000 + 49 0.00000 -0.00000 -0.00002 -0.00001 0.00004 0.00000 + 50 0.00000 0.00000 0.00006 0.00004 -0.00014 0.00000 + 51 0.00478 0.00000 0.00000 0.00000 0.00000 0.00001 + 52 0.00000 0.00000 0.00012 0.00008 0.00034 0.00000 + 53 0.00000 0.00012 0.01305 0.00524 0.02165 0.00000 + 54 0.00000 -0.00008 -0.00524 0.00255 -0.00924 0.00000 + 55 0.00000 -0.00034 -0.02165 -0.00924 -0.03340 0.00000 + 56 0.00001 0.00000 0.00000 0.00000 0.00000 0.00478 + 57 0.00000 0.00000 0.00002 0.00003 -0.00005 0.00000 + 58 0.00000 0.00076 0.02519 -0.00476 0.03729 0.00000 + 59 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 60 0.00000 0.00000 0.00083 0.00039 0.00153 0.00000 + + 31 32 33 34 35 36 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00509 0.00008 0.00008 0.00508 0.00000 0.00000 + 2 0.09301 0.00590 0.00588 0.09284 0.00000 0.00026 + 3 0.11685 -0.00738 0.00484 -0.12012 -0.00000 -0.00010 + 4 -0.03020 -0.00652 -0.00854 0.00954 -0.00000 -0.00057 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 0.00008 0.00509 0.00508 0.00008 0.00000 0.02955 + 7 0.00590 0.09301 0.09284 0.00588 0.02955 0.31761 + 8 0.00738 -0.11685 0.12012 -0.00484 -0.00980 -0.06996 + 9 0.00652 0.03020 -0.00954 0.00854 -0.04831 -0.34497 + 10 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 11 0.06102 0.00001 0.00527 0.00008 0.00000 0.00000 + 12 0.48575 0.00175 0.09535 0.00611 0.00000 0.00144 + 13 0.43567 -0.00297 0.03534 -0.00963 -0.00000 -0.00139 + 14 0.16041 -0.00110 -0.11815 0.00325 -0.00001 -0.00253 + 15 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 16 0.00001 0.06102 0.00008 0.00527 0.00000 0.00126 + 17 0.00175 0.48575 0.00611 0.09535 0.00126 0.04921 + 18 0.00297 -0.43567 0.00963 -0.03534 0.00094 0.02306 + 19 0.00110 -0.16041 -0.00325 0.11815 -0.00287 -0.07056 + 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 21 0.00526 0.00008 0.06126 0.00001 0.00000 0.00105 + 22 0.09520 0.00611 0.48673 0.00173 0.00105 0.04432 + 23 0.07165 -0.01016 0.36054 -0.00242 -0.00162 -0.04274 + 24 0.10018 0.00008 -0.29343 0.00199 -0.00199 -0.05240 + 25 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 26 0.00008 0.00526 0.00001 0.06126 0.00000 0.00000 + 27 0.00611 0.09520 0.00173 0.48673 0.00000 0.00158 + 28 0.01016 -0.07165 0.00242 -0.36054 0.00000 0.00045 + 29 -0.00008 -0.10018 -0.00199 0.29343 -0.00001 -0.00311 + 30 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 31 1.00000 0.00011 0.05049 0.00071 0.00000 0.00015 + 32 0.00011 1.00000 0.00071 0.05049 0.00113 0.03262 + 33 0.05049 0.00071 1.00000 0.00010 0.00087 0.02741 + 34 0.00071 0.05049 0.00010 1.00000 0.00000 0.00017 + 35 0.00000 0.00113 0.00087 0.00000 1.00000 0.24836 + 36 0.00015 0.03262 0.02741 0.00017 0.24836 1.00000 + 37 0.00019 -0.03181 0.03596 -0.00011 -0.00000 -0.00000 + 38 0.00024 0.03532 0.01884 0.00034 -0.00000 -0.00000 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 0.00113 0.00000 0.00000 0.00087 0.00000 0.00000 + 41 0.03262 0.00015 0.00017 0.02741 0.00000 0.00000 + 42 0.03181 -0.00019 0.00011 -0.03596 -0.00000 -0.00000 + 43 -0.03532 -0.00024 -0.00034 -0.01884 -0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 0.00001 0.06153 0.00248 0.00024 0.06070 0.48445 + 46 0.06153 0.00001 0.00024 0.00248 0.00000 0.00000 + 47 0.00000 0.00001 0.00089 0.00000 0.00000 0.04284 + 48 0.00004 0.00116 0.02792 0.00000 0.04284 0.39315 + 49 0.00003 -0.00144 0.02334 -0.00000 -0.04749 -0.27266 + 50 0.00007 0.00160 0.03404 0.00000 0.05283 0.30328 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00001 0.00000 0.00000 0.00089 0.00000 0.00000 + 53 0.00116 0.00004 0.00000 0.02792 0.00000 0.00000 + 54 0.00144 -0.00003 0.00000 -0.02334 -0.00000 -0.00000 + 55 -0.00160 -0.00007 -0.00000 -0.03404 -0.00000 -0.00000 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.00030 0.00024 0.08944 0.00000 0.00561 0.09966 + 58 0.00024 0.00030 0.00000 0.08944 0.00000 0.00000 + 59 0.00000 0.00025 0.00264 0.00000 0.00577 0.10177 + 60 0.00025 0.00000 0.00000 0.00264 0.00000 0.00000 + + 37 38 39 40 41 42 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 0.00000 0.00000 0.00000 0.02955 -0.00980 + 2 0.00010 0.00057 0.00000 0.02955 0.31761 -0.06996 + 3 0.00004 -0.00022 0.00000 0.00980 0.06996 0.15824 + 4 -0.00022 -0.00117 0.00000 0.04831 0.34497 -0.09697 + 5 0.00000 0.00000 0.00008 0.00000 0.00000 0.00000 + 6 0.00980 0.04831 0.00000 0.00000 0.00000 -0.00000 + 7 0.06996 0.34497 0.00000 0.00000 0.00026 -0.00010 + 8 0.15824 -0.09697 0.00000 0.00000 0.00010 0.00004 + 9 -0.09697 -0.30023 0.00000 0.00000 0.00057 -0.00022 + 10 0.00000 0.00000 0.17791 0.00000 0.00000 0.00000 + 11 0.00000 0.00001 0.00000 0.00000 0.00126 0.00094 + 12 0.00139 0.00253 0.00000 0.00126 0.04921 0.02306 + 13 -0.00089 -0.00250 0.00000 -0.00094 -0.02306 0.00828 + 14 -0.00250 -0.00407 0.00000 0.00287 0.07056 0.03624 + 15 0.00000 0.00000 0.00048 0.00000 0.00000 0.00000 + 16 -0.00094 0.00287 0.00000 0.00000 0.00000 -0.00000 + 17 -0.02306 0.07056 0.00000 0.00000 0.00144 -0.00139 + 18 0.00828 0.03624 0.00000 0.00000 0.00139 -0.00089 + 19 0.03624 -0.09075 0.00000 0.00001 0.00253 -0.00250 + 20 0.00000 0.00000 0.02013 0.00000 0.00000 0.00000 + 21 0.00162 0.00199 0.00000 0.00000 0.00000 0.00000 + 22 0.04274 0.05240 0.00000 0.00000 0.00158 0.00045 + 23 -0.02709 -0.05521 0.00000 -0.00000 -0.00045 0.00039 + 24 -0.05521 -0.04974 0.00000 0.00001 0.00311 0.00092 + 25 0.00000 0.00000 0.01794 0.00000 0.00000 0.00000 + 26 -0.00000 0.00001 0.00000 0.00000 0.00105 -0.00162 + 27 -0.00045 0.00311 0.00000 0.00105 0.04432 -0.04274 + 28 0.00039 0.00092 0.00000 0.00162 0.04274 -0.02709 + 29 0.00092 -0.00575 0.00000 0.00199 0.05240 -0.05521 + 30 0.00000 0.00000 0.00053 0.00000 0.00000 0.00000 + 31 0.00019 0.00024 0.00000 0.00113 0.03262 0.03181 + 32 -0.03181 0.03532 0.00000 0.00000 0.00015 -0.00019 + 33 0.03596 0.01884 0.00000 0.00000 0.00017 0.00011 + 34 -0.00011 0.00034 0.00000 0.00087 0.02741 -0.03596 + 35 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 36 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 37 1.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 38 0.00000 1.00000 0.00000 0.00000 0.00000 -0.00000 + 39 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 41 0.00000 0.00000 0.00000 0.24836 1.00000 0.00000 + 42 0.00000 -0.00000 0.00000 0.00000 0.00000 1.00000 + 43 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.45129 -0.10556 0.00000 0.00000 0.00000 -0.00000 + 46 0.00000 0.00000 0.00000 0.06070 0.48445 0.45129 + 47 0.04749 -0.05283 0.00000 0.00000 0.00000 -0.00000 + 48 0.27266 -0.30328 0.00000 0.00000 0.00000 -0.00000 + 49 -0.01650 0.28029 0.00000 0.00000 0.00000 0.00000 + 50 0.28029 -0.07629 0.00000 0.00000 0.00000 -0.00000 + 51 0.00000 0.00000 0.23549 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.00000 0.04284 -0.04749 + 53 0.00000 0.00000 0.00000 0.04284 0.39315 -0.27266 + 54 0.00000 -0.00000 0.00000 0.04749 0.27266 -0.01650 + 55 -0.00000 -0.00000 0.00000 -0.05283 -0.30328 0.28029 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.11842 -0.04901 0.00000 0.00000 0.00000 0.00000 + 58 -0.00000 0.00000 0.00000 0.00561 0.09966 -0.11842 + 59 0.03569 -0.12555 0.00000 0.00000 0.00000 -0.00000 + 60 0.00000 0.00000 0.00000 0.00577 0.10177 -0.03569 + + 43 44 45 46 47 48 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.04831 0.00000 0.00000 0.00487 0.00000 0.00000 + 2 -0.34497 0.00000 0.00008 0.09007 0.00000 0.00001 + 3 -0.09697 0.00000 -0.00007 0.07314 0.00000 0.00000 + 4 -0.30023 0.00000 -0.00016 0.09177 -0.00000 -0.00002 + 5 0.00000 0.17791 0.00000 0.00000 0.00000 0.00000 + 6 -0.00000 0.00000 0.00487 0.00000 0.00000 0.00116 + 7 -0.00057 0.00000 0.09007 0.00008 0.00116 0.04688 + 8 -0.00022 0.00000 -0.07314 0.00007 0.00066 0.01682 + 9 -0.00117 0.00000 -0.09177 0.00016 -0.00272 -0.06907 + 10 0.00000 0.00008 0.00000 0.00000 0.00000 0.00000 + 11 -0.00287 0.00000 0.00000 0.00132 0.00000 0.00000 + 12 -0.07056 0.00000 0.00019 0.03624 0.00000 0.00018 + 13 0.03624 0.00000 -0.00024 0.00570 -0.00000 -0.00009 + 14 -0.09075 0.00000 -0.00030 0.05196 -0.00000 -0.00039 + 15 0.00000 0.02013 0.00000 0.00000 0.00000 0.00000 + 16 -0.00001 0.00000 0.00132 0.00000 0.00000 0.00000 + 17 -0.00253 0.00000 0.03624 0.00019 0.00000 0.00174 + 18 -0.00250 0.00000 -0.00570 0.00024 0.00000 0.00152 + 19 -0.00407 0.00000 -0.05196 0.00030 -0.00001 -0.00307 + 20 0.00000 0.00048 0.00000 0.00000 0.00000 0.00000 + 21 -0.00001 0.00000 0.00006 0.00001 0.00000 0.00012 + 22 -0.00311 0.00000 0.00515 0.00114 0.00012 0.01305 + 23 0.00092 0.00000 -0.00667 0.00027 -0.00008 -0.00524 + 24 -0.00575 0.00000 -0.00554 0.00210 -0.00034 -0.02165 + 25 0.00000 0.00053 0.00000 0.00000 0.00000 0.00000 + 26 -0.00199 0.00000 0.00001 0.00006 0.00000 0.00000 + 27 -0.05240 0.00000 0.00114 0.00515 0.00000 0.00002 + 28 -0.05521 0.00000 -0.00027 0.00667 0.00000 0.00002 + 29 -0.04974 0.00000 -0.00210 0.00554 -0.00000 -0.00006 + 30 0.00000 0.01794 0.00000 0.00000 0.00000 0.00000 + 31 -0.03532 0.00000 0.00001 0.06153 0.00000 0.00004 + 32 -0.00024 0.00000 0.06153 0.00001 0.00001 0.00116 + 33 -0.00034 0.00000 0.00248 0.00024 0.00089 0.02792 + 34 -0.01884 0.00000 0.00024 0.00248 0.00000 0.00000 + 35 -0.00000 0.00000 0.06070 0.00000 0.00000 0.04284 + 36 -0.00000 0.00000 0.48445 0.00000 0.04284 0.39315 + 37 -0.00000 0.00000 -0.45129 0.00000 0.04749 0.27266 + 38 -0.00000 0.00000 -0.10556 0.00000 -0.05283 -0.30328 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 + 41 0.00000 0.00000 0.00000 0.48445 0.00000 0.00000 + 42 0.00000 0.00000 -0.00000 0.45129 -0.00000 -0.00000 + 43 1.00000 0.00000 -0.00000 0.10556 -0.00000 -0.00000 + 44 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.00000 0.00000 1.00000 0.00000 0.00611 0.10604 + 46 0.10556 0.00000 0.00000 1.00000 0.00000 0.00000 + 47 -0.00000 0.00000 0.00611 0.00000 1.00000 0.24836 + 48 -0.00000 0.00000 0.10604 0.00000 0.24836 1.00000 + 49 -0.00000 0.00000 -0.12645 0.00000 -0.00000 0.00000 + 50 -0.00000 0.00000 0.04805 0.00000 -0.00000 -0.00000 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.05283 0.00000 0.00000 0.00611 0.00000 0.00000 + 53 0.30328 0.00000 0.00000 0.10604 0.00000 0.00000 + 54 0.28029 0.00000 -0.00000 0.12645 0.00000 0.00000 + 55 -0.07629 0.00000 -0.00000 -0.04805 0.00000 -0.00000 + 56 0.00000 0.23549 0.00000 0.00000 0.00000 0.00000 + 57 -0.00000 0.00000 0.01462 0.00000 0.06141 0.48732 + 58 0.04901 0.00000 0.00000 0.01462 0.00000 0.00000 + 59 -0.00000 0.00000 0.05493 0.00000 0.06131 0.48692 + 60 0.12555 0.00000 0.00000 0.05493 0.00000 0.00000 + + 49 50 51 52 53 54 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 0.00000 0.00000 0.00000 0.00116 0.00066 + 2 -0.00000 0.00002 0.00000 0.00116 0.04688 0.01682 + 3 0.00000 0.00000 0.00000 -0.00066 -0.01682 0.01248 + 4 0.00000 -0.00005 0.00000 0.00272 0.06907 0.02713 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 -0.00066 0.00272 0.00000 0.00000 0.00000 0.00000 + 7 -0.01682 0.06907 0.00000 0.00000 0.00001 0.00000 + 8 0.01248 0.02713 0.00000 -0.00000 -0.00000 0.00000 + 9 0.02713 -0.09229 0.00000 0.00000 0.00002 0.00000 + 10 0.00000 0.00000 0.01908 0.00000 0.00000 0.00000 + 11 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 12 0.00009 0.00039 0.00000 0.00000 0.00174 0.00152 + 13 0.00002 -0.00019 0.00000 -0.00000 -0.00152 -0.00079 + 14 -0.00019 -0.00082 0.00000 0.00001 0.00307 0.00277 + 15 0.00000 0.00000 0.00006 0.00000 0.00000 0.00000 + 16 -0.00000 0.00001 0.00000 0.00000 0.00000 -0.00000 + 17 -0.00152 0.00307 0.00000 0.00000 0.00018 -0.00009 + 18 -0.00079 0.00277 0.00000 0.00000 0.00009 0.00002 + 19 0.00277 -0.00501 0.00000 0.00000 0.00039 -0.00019 + 20 0.00000 0.00000 0.00058 0.00000 0.00000 0.00000 + 21 0.00008 0.00034 0.00000 0.00000 0.00000 0.00000 + 22 0.00524 0.02165 0.00000 0.00000 0.00002 0.00002 + 23 0.00255 -0.00924 0.00000 -0.00000 -0.00002 -0.00001 + 24 -0.00924 -0.03340 0.00000 0.00000 0.00006 0.00004 + 25 0.00000 0.00000 0.00478 0.00000 0.00000 0.00000 + 26 -0.00000 0.00000 0.00000 0.00000 0.00012 -0.00008 + 27 -0.00002 0.00006 0.00000 0.00012 0.01305 -0.00524 + 28 -0.00001 0.00004 0.00000 0.00008 0.00524 0.00255 + 29 0.00004 -0.00014 0.00000 0.00034 0.02165 -0.00924 + 30 0.00000 0.00000 0.00001 0.00000 0.00000 0.00000 + 31 0.00003 0.00007 0.00000 0.00001 0.00116 0.00144 + 32 -0.00144 0.00160 0.00000 0.00000 0.00004 -0.00003 + 33 0.02334 0.03404 0.00000 0.00000 0.00000 0.00000 + 34 -0.00000 0.00000 0.00000 0.00089 0.02792 -0.02334 + 35 -0.04749 0.05283 0.00000 0.00000 0.00000 -0.00000 + 36 -0.27266 0.30328 0.00000 0.00000 0.00000 -0.00000 + 37 -0.01650 0.28029 0.00000 0.00000 0.00000 0.00000 + 38 0.28029 -0.07629 0.00000 0.00000 0.00000 -0.00000 + 39 0.00000 0.00000 0.23549 0.00000 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.00000 0.04284 0.04749 + 41 0.00000 0.00000 0.00000 0.04284 0.39315 0.27266 + 42 0.00000 -0.00000 0.00000 -0.04749 -0.27266 -0.01650 + 43 -0.00000 -0.00000 0.00000 0.05283 0.30328 0.28029 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.12645 0.04805 0.00000 0.00000 0.00000 -0.00000 + 46 0.00000 0.00000 0.00000 0.00611 0.10604 0.12645 + 47 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 48 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 49 1.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 50 -0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 51 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 53 -0.00000 0.00000 0.00000 0.24836 1.00000 -0.00000 + 54 0.00000 0.00000 0.00000 0.00000 -0.00000 1.00000 + 55 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.45887 0.07655 0.00000 0.00000 0.00000 0.00000 + 58 -0.00000 0.00000 0.00000 0.06141 0.48732 -0.45887 + 59 -0.13400 -0.44525 0.00000 0.00000 0.00000 0.00000 + 60 -0.00000 0.00000 0.00000 0.06131 0.48692 0.13400 + + 55 56 57 58 59 60 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00272 0.00000 0.00000 0.00074 0.00000 0.00006 + 2 -0.06907 0.00000 0.00002 0.02468 0.00000 0.00481 + 3 0.02713 0.00000 0.00001 -0.02186 -0.00000 -0.00066 + 4 -0.09229 0.00000 -0.00005 0.02972 -0.00000 0.00811 + 5 0.00000 0.01908 0.00000 0.00000 0.00000 0.00000 + 6 -0.00000 0.00000 0.00074 0.00000 0.00006 0.00000 + 7 -0.00002 0.00000 0.02468 0.00002 0.00481 0.00000 + 8 0.00000 0.00000 0.02186 -0.00001 0.00066 0.00000 + 9 -0.00005 0.00000 -0.02972 0.00005 -0.00811 0.00000 + 10 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 11 -0.00001 0.00000 0.00000 0.00000 0.00000 0.00000 + 12 -0.00307 0.00000 0.00078 0.00068 0.00001 0.00019 + 13 0.00277 0.00000 0.00005 -0.00085 -0.00000 -0.00012 + 14 -0.00501 0.00000 -0.00148 0.00099 -0.00002 0.00038 + 15 0.00000 0.00058 0.00000 0.00000 0.00000 0.00000 + 16 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 17 -0.00039 0.00000 0.00068 0.00078 0.00019 0.00001 + 18 -0.00019 0.00000 0.00085 -0.00005 0.00012 0.00000 + 19 -0.00082 0.00000 -0.00099 0.00148 -0.00038 0.00002 + 20 0.00000 0.00006 0.00000 0.00000 0.00000 0.00000 + 21 -0.00000 0.00000 0.00076 0.00000 0.00000 0.00000 + 22 -0.00006 0.00000 0.02519 0.00002 0.00083 0.00000 + 23 0.00004 0.00000 0.00476 -0.00003 -0.00039 -0.00000 + 24 -0.00014 0.00000 -0.03729 0.00005 -0.00153 0.00000 + 25 0.00000 0.00001 0.00000 0.00000 0.00000 0.00000 + 26 -0.00034 0.00000 0.00000 0.00076 0.00000 0.00000 + 27 -0.02165 0.00000 0.00002 0.02519 0.00000 0.00083 + 28 -0.00924 0.00000 0.00003 -0.00476 0.00000 0.00039 + 29 -0.03340 0.00000 -0.00005 0.03729 -0.00000 0.00153 + 30 0.00000 0.00478 0.00000 0.00000 0.00000 0.00000 + 31 -0.00160 0.00000 0.00030 0.00024 0.00000 0.00025 + 32 -0.00007 0.00000 0.00024 0.00030 0.00025 0.00000 + 33 -0.00000 0.00000 0.08944 0.00000 0.00264 0.00000 + 34 -0.03404 0.00000 0.00000 0.08944 0.00000 0.00264 + 35 -0.00000 0.00000 0.00561 0.00000 0.00577 0.00000 + 36 -0.00000 0.00000 0.09966 0.00000 0.10177 0.00000 + 37 -0.00000 0.00000 0.11842 -0.00000 0.03569 0.00000 + 38 -0.00000 0.00000 -0.04901 0.00000 -0.12555 0.00000 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 -0.05283 0.00000 0.00000 0.00561 0.00000 0.00577 + 41 -0.30328 0.00000 0.00000 0.09966 0.00000 0.10177 + 42 0.28029 0.00000 0.00000 -0.11842 -0.00000 -0.03569 + 43 -0.07629 0.00000 -0.00000 0.04901 -0.00000 0.12555 + 44 0.00000 0.23549 0.00000 0.00000 0.00000 0.00000 + 45 -0.00000 0.00000 0.01462 0.00000 0.05493 0.00000 + 46 -0.04805 0.00000 0.00000 0.01462 0.00000 0.05493 + 47 0.00000 0.00000 0.06141 0.00000 0.06131 0.00000 + 48 -0.00000 0.00000 0.48732 0.00000 0.48692 0.00000 + 49 0.00000 0.00000 0.45887 -0.00000 -0.13400 -0.00000 + 50 -0.00000 0.00000 0.07655 0.00000 -0.44525 0.00000 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 + 53 0.00000 0.00000 0.00000 0.48732 0.00000 0.48692 + 54 -0.00000 0.00000 0.00000 -0.45887 0.00000 0.13400 + 55 1.00000 0.00000 -0.00000 -0.07655 -0.00000 0.44525 + 56 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 + 57 -0.00000 0.00000 1.00000 0.00000 0.14897 0.00000 + 58 -0.07655 0.00000 0.00000 1.00000 0.00000 0.14897 + 59 -0.00000 0.00000 0.14897 0.00000 1.00000 0.00000 + 60 0.44525 0.00000 0.00000 0.14897 0.00000 1.00000 + + Non-variational initial energy + ------------------------------ + + Total energy = -379.429467 + 1-e energy = -1401.451096 + 2-e energy = 576.084617 + HOMO = -0.037645 + LUMO = 0.163723 + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 ag 2 bu 3 ag 4 bu 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 ag 24 bu 25 bu + 26 ag 27 bu 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 bu + + Time after variat. SCF: 0.8 + Time prior to 1st pass: 0.8 + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% + + + Grid_pts file = ./dvb.gridpts.0 + Record size in doubles = 12289 No. of grid_pts per rec = 3070 + Max. records in memory = 522 Max. recs in file = ********* + + + Memory utilization after 1st SCF pass: + Heap Space remaining (MW): 5.44 5443610 + Stack Space remaining (MW): 13.11 13106284 + + convergence iter energy DeltaE RMS-Dens Diis-err time + ---------------- ----- ----------------- --------- --------- --------- ------ + d= 0,ls=0.0,diis 1 -382.2544334264 -8.28D+02 1.42D-02 3.78D-01 10.5 + d= 0,ls=0.0,diis 2 -382.3017299251 -4.73D-02 6.99D-03 3.82D-02 14.6 + d= 0,ls=0.0,diis 3 -382.2954336496 6.30D-03 4.21D-03 7.95D-02 20.3 + d= 0,ls=0.0,diis 4 -382.3080990402 -1.27D-02 5.17D-04 8.80D-04 25.9 + d= 0,ls=0.0,diis 5 -382.3082353907 -1.36D-04 1.18D-04 4.46D-05 31.5 + Resetting Diis + d= 0,ls=0.0,diis 6 -382.3082415300 -6.14D-06 3.19D-05 3.09D-06 37.1 + d= 0,ls=0.0,diis 7 -382.3082420068 -4.77D-07 1.42D-05 1.61D-07 42.7 + d= 0,ls=0.0,diis 8 -382.3082420043 2.55D-09 7.54D-06 1.77D-07 48.3 + + + Total DFT energy = -382.308242004251 + One electron energy = -1400.645115169374 + Coulomb energy = 630.242754939282 + Exchange-Corr. energy = -57.842893941605 + Nuclear repulsion energy = 445.937012167446 + + Numeric. integr. density = 70.000000232072 + + Total iterative time = 47.5s + + + + Occupations of the irreducible representations + ---------------------------------------------- + + irrep alpha beta + -------- -------- -------- + ag 15.0 15.0 + au 2.0 2.0 + bg 3.0 3.0 + bu 15.0 15.0 + + + DFT Final Molecular Orbital Analysis + ------------------------------------ + + Vector 1 Occ=2.000000D+00 E=-1.002024D+01 Symmetry=bu + MO Center= 4.7D-11, 2.8D-10, 4.2D-27, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.699304 1 C s 6 -0.699304 2 C s + + Vector 2 Occ=2.000000D+00 E=-1.002019D+01 Symmetry=ag + MO Center= -4.7D-11, -2.8D-10, 1.1D-34, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.699301 1 C s 6 0.699301 2 C s + + Vector 3 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=bu + MO Center= -1.9D-09, -1.0D-08, 1.1D-24, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.699780 11 C s 40 -0.699780 12 C s + + Vector 4 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=ag + MO Center= 1.9D-09, 1.0D-08, -5.1D-34, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.699695 11 C s 40 0.699695 12 C s + + Vector 5 Occ=2.000000D+00 E=-1.000689D+01 Symmetry=ag + MO Center= 2.3D-15, -3.7D-16, 7.8D-35, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.546412 5 C s 26 0.546412 6 C s + 11 -0.437513 3 C s 16 -0.437513 4 C s + + Vector 6 Occ=2.000000D+00 E=-1.000688D+01 Symmetry=bu + MO Center= 4.7D-13, 3.8D-12, 9.8D-24, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.555878 5 C s 26 -0.555878 6 C s + 11 -0.424322 3 C s 16 0.424322 4 C s + + Vector 7 Occ=2.000000D+00 E=-1.000624D+01 Symmetry=bu + MO Center= -4.7D-11, 1.3D-12, 5.5D-26, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.556849 3 C s 16 -0.556849 4 C s + 21 0.425633 5 C s 26 -0.425633 6 C s + + Vector 8 Occ=2.000000D+00 E=-1.000609D+01 Symmetry=ag + MO Center= 4.6D-11, -5.1D-12, 8.5D-19, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.546521 3 C s 16 0.546521 4 C s + 21 0.437747 5 C s 26 0.437747 6 C s + + Vector 9 Occ=2.000000D+00 E=-9.992163D+00 Symmetry=bu + MO Center= -8.4D-17, 3.8D-16, 1.8D-34, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.700479 15 C s 52 -0.700479 16 C s + + Vector 10 Occ=2.000000D+00 E=-9.992163D+00 Symmetry=ag + MO Center= 7.8D-17, -7.8D-16, -8.6D-34, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.700478 15 C s 52 0.700478 16 C s + + Vector 11 Occ=2.000000D+00 E=-8.094667D-01 Symmetry=ag + MO Center= 1.8D-15, -6.7D-15, -5.8D-18, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.274702 1 C s 7 0.274702 2 C s + 12 0.247017 3 C s 17 0.247017 4 C s + 22 0.246689 5 C s 27 0.246689 6 C s + + Vector 12 Occ=2.000000D+00 E=-7.539346D-01 Symmetry=bu + MO Center= 1.1D-15, 1.5D-14, -1.4D-21, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 -0.297169 11 C s 41 0.297169 12 C s + 2 0.273786 1 C s 7 -0.273786 2 C s + 48 -0.209313 15 C s 53 0.209313 16 C s + + Vector 13 Occ=2.000000D+00 E=-7.178616D-01 Symmetry=ag + MO Center= -9.1D-16, -7.6D-15, 2.2D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.314817 11 C s 41 0.314817 12 C s + 48 0.309767 15 C s 53 0.309767 16 C s + + Vector 14 Occ=2.000000D+00 E=-6.999224D-01 Symmetry=bu + MO Center= -3.7D-15, -1.6D-16, 1.4D-20, r^2= 3.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.357134 3 C s 17 -0.357134 4 C s + 22 0.323905 5 C s 27 -0.323905 6 C s + + Vector 15 Occ=2.000000D+00 E=-6.673150D-01 Symmetry=bu + MO Center= -1.7D-18, -2.1D-15, -1.2D-19, r^2= 9.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.299508 15 C s 53 -0.299508 16 C s + 2 0.274066 1 C s 7 -0.274066 2 C s + 22 -0.202279 5 C s 27 0.202279 6 C s + + Vector 16 Occ=2.000000D+00 E=-5.885094D-01 Symmetry=ag + MO Center= -8.4D-16, -1.7D-15, -1.2D-16, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.241406 15 C s 53 0.241406 16 C s + 22 0.233815 5 C s 27 0.233815 6 C s + 2 -0.206378 1 C s 7 -0.206378 2 C s + 14 -0.160007 3 C py 19 0.160007 4 C py + 36 -0.159613 11 C s 41 -0.159613 12 C s + + Vector 17 Occ=2.000000D+00 E=-5.591516D-01 Symmetry=ag + MO Center= -5.4D-17, 4.5D-16, 2.2D-32, r^2= 5.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.326033 3 C s 17 0.326033 4 C s + 3 0.184864 1 C px 8 -0.184864 2 C px + 22 -0.170744 5 C s 24 0.170444 5 C py + 27 -0.170744 6 C s 29 -0.170444 6 C py + 31 0.169234 7 H s 32 0.169234 8 H s + + Vector 18 Occ=2.000000D+00 E=-5.314208D-01 Symmetry=bu + MO Center= -7.0D-16, -4.3D-15, -1.3D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.302767 11 C s 41 -0.302767 12 C s + 48 -0.249165 15 C s 53 0.249165 16 C s + 45 0.170519 13 H s 46 -0.170519 14 H s + 57 -0.160626 17 H s 58 0.160626 18 H s + 12 0.154466 3 C s 17 -0.154466 4 C s + + Vector 19 Occ=2.000000D+00 E=-5.099375D-01 Symmetry=ag + MO Center= 4.2D-16, 4.9D-15, 2.0D-32, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.201895 5 C px 28 -0.201895 6 C px + 13 0.184492 3 C px 18 -0.184492 4 C px + 36 0.180759 11 C s 41 0.180759 12 C s + 33 0.169279 9 H s 34 0.169279 10 H s + 22 0.166024 5 C s 27 0.166024 6 C s + + Vector 20 Occ=2.000000D+00 E=-4.575996D-01 Symmetry=ag + MO Center= -2.4D-16, 1.0D-15, 1.1D-32, r^2= 9.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.212730 15 C px 54 -0.212730 16 C px + 38 0.184649 11 C py 43 -0.184649 12 C py + 57 0.179111 17 H s 58 0.179111 18 H s + 45 -0.153094 13 H s 46 -0.153094 14 H s + + Vector 21 Occ=2.000000D+00 E=-4.391971D-01 Symmetry=bu + MO Center= 1.5D-15, 2.4D-15, -1.9D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.219233 11 C px 42 0.219233 12 C px + 50 0.210291 15 C py 55 0.210291 16 C py + 14 0.184960 3 C py 19 0.184960 4 C py + 59 -0.178127 19 H s 60 0.178127 20 H s + 45 -0.155495 13 H s 46 0.155495 14 H s + + Vector 22 Occ=2.000000D+00 E=-4.110182D-01 Symmetry=bu + MO Center= 3.4D-16, 2.3D-15, -1.4D-17, r^2= 6.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.235310 1 C s 7 -0.235310 2 C s + 33 0.230467 9 H s 34 -0.230467 10 H s + 31 -0.226658 7 H s 32 0.226658 8 H s + 13 -0.222261 3 C px 18 -0.222261 4 C px + 24 -0.177972 5 C py 29 -0.177972 6 C py + + Vector 23 Occ=2.000000D+00 E=-3.976933D-01 Symmetry=bu + MO Center= 1.2D-15, 3.2D-15, -2.2D-17, r^2= 8.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.251236 5 C px 28 0.251236 6 C px + 49 0.250511 15 C px 54 0.250511 16 C px + 3 -0.220827 1 C px 8 -0.220827 2 C px + 57 0.215415 17 H s 58 -0.215415 18 H s + 38 0.181486 11 C py 43 0.181486 12 C py + + Vector 24 Occ=2.000000D+00 E=-3.959385D-01 Symmetry=ag + MO Center= 8.8D-17, -1.1D-15, 1.7D-17, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.338998 15 C py 55 -0.338998 16 C py + 59 -0.262596 19 H s 60 -0.262596 20 H s + 37 0.251492 11 C px 42 -0.251492 12 C px + + Vector 25 Occ=2.000000D+00 E=-3.744297D-01 Symmetry=bu + MO Center= -1.4D-15, 2.7D-16, 5.0D-18, r^2= 4.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.307585 3 C px 18 0.307585 4 C px + 31 0.252268 7 H s 32 -0.252268 8 H s + 24 -0.226088 5 C py 29 -0.226088 6 C py + 33 0.218183 9 H s 34 -0.218183 10 H s + 23 0.188062 5 C px 28 0.188062 6 C px + + Vector 26 Occ=2.000000D+00 E=-3.509367D-01 Symmetry=bu + MO Center= -2.4D-15, -7.3D-15, -4.4D-17, r^2= 9.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.245677 15 C py 55 -0.245677 16 C py + 14 0.224344 3 C py 19 0.224344 4 C py + 37 -0.201678 11 C px 42 -0.201678 12 C px + 24 -0.193257 5 C py 29 -0.193257 6 C py + 38 0.187745 11 C py 43 0.187745 12 C py + + Vector 27 Occ=2.000000D+00 E=-3.470152D-01 Symmetry=ag + MO Center= 3.6D-15, 7.5D-16, -9.0D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.295189 15 C px 54 -0.295189 16 C px + 57 0.268012 17 H s 58 0.268012 18 H s + 37 -0.208878 11 C px 42 0.208878 12 C px + 45 0.200233 13 H s 46 0.200233 14 H s + 31 -0.156471 7 H s 32 -0.156471 8 H s + + Vector 28 Occ=2.000000D+00 E=-3.244706D-01 Symmetry=au + MO Center= -5.1D-17, 6.9D-15, -5.8D-17, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.337608 1 C pz 10 0.337608 2 C pz + 15 0.297979 3 C pz 20 0.297979 4 C pz + 25 0.297170 5 C pz 30 0.297170 6 C pz + 39 0.173946 11 C pz 44 0.173946 12 C pz + + Vector 29 Occ=2.000000D+00 E=-3.110645D-01 Symmetry=bu + MO Center= -1.5D-15, -5.6D-16, 1.1D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.259102 13 H s 46 -0.259102 14 H s + 4 0.241973 1 C py 9 0.241973 2 C py + 57 0.231029 17 H s 58 -0.231029 18 H s + 37 -0.217251 11 C px 42 -0.217251 12 C px + 59 -0.212334 19 H s 60 0.212334 20 H s + + Vector 30 Occ=2.000000D+00 E=-2.929833D-01 Symmetry=ag + MO Center= 1.2D-15, 2.7D-15, 2.0D-16, r^2= 6.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 -0.278184 3 C py 19 0.278184 4 C py + 4 0.268398 1 C py 9 -0.268398 2 C py + 38 0.248142 11 C py 43 -0.248142 12 C py + 33 -0.240411 9 H s 34 -0.240411 10 H s + 24 0.234450 5 C py 29 -0.234450 6 C py + + Vector 31 Occ=2.000000D+00 E=-2.874965D-01 Symmetry=ag + MO Center= -5.9D-16, -2.1D-16, -1.3D-16, r^2= 6.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.295855 1 C px 8 -0.295855 2 C px + 23 0.280599 5 C px 28 -0.280599 6 C px + 31 -0.258071 7 H s 32 -0.258071 8 H s + 13 -0.222116 3 C px 18 0.222116 4 C px + 45 -0.182739 13 H s 46 -0.182739 14 H s + + Vector 32 Occ=2.000000D+00 E=-2.634557D-01 Symmetry=bg + MO Center= 4.3D-15, 1.4D-13, -1.1D-21, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.376480 11 C pz 44 0.376480 12 C pz + 5 0.348964 1 C pz 10 -0.348964 2 C pz + 51 -0.271399 15 C pz 56 0.271399 16 C pz + + Vector 33 Occ=2.000000D+00 E=-2.123365D-01 Symmetry=au + MO Center= -1.5D-14, -1.9D-13, -3.1D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.417961 15 C pz 56 0.417961 16 C pz + 39 0.413781 11 C pz 44 0.413781 12 C pz + 15 -0.179204 3 C pz 20 -0.179204 4 C pz + 25 -0.176633 5 C pz 30 -0.176633 6 C pz + + Vector 34 Occ=2.000000D+00 E=-1.951682D-01 Symmetry=bg + MO Center= 9.4D-15, -1.2D-15, -3.0D-18, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.463626 3 C pz 20 -0.463626 4 C pz + 25 0.457537 5 C pz 30 -0.457537 6 C pz + + Vector 35 Occ=2.000000D+00 E=-1.529965D-01 Symmetry=bg + MO Center= 1.2D-15, 3.7D-14, 3.3D-17, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.397371 15 C pz 56 -0.397371 16 C pz + 5 0.387554 1 C pz 10 -0.387554 2 C pz + 25 -0.230743 5 C pz 30 0.230743 6 C pz + 39 0.223675 11 C pz 44 -0.223675 12 C pz + 15 0.215069 3 C pz 20 -0.215069 4 C pz + + Vector 36 Occ=0.000000D+00 E= 3.750921D-02 Symmetry=au + MO Center= 9.7D-17, 2.7D-14, 2.6D-16, r^2= 8.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.449614 15 C pz 56 -0.449614 16 C pz + 5 0.442670 1 C pz 10 0.442670 2 C pz + 25 -0.277553 5 C pz 30 -0.277553 6 C pz + 39 0.256133 11 C pz 44 0.256133 12 C pz + 15 -0.232265 3 C pz 20 -0.232265 4 C pz + + Vector 37 Occ=0.000000D+00 E= 9.011734D-02 Symmetry=au + MO Center= 1.2D-15, 2.6D-16, -7.4D-18, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.582692 3 C pz 20 0.582692 4 C pz + 25 -0.553237 5 C pz 30 -0.553237 6 C pz + + Vector 38 Occ=0.000000D+00 E= 1.107280D-01 Symmetry=bg + MO Center= 2.5D-15, -3.0D-14, 7.0D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.522167 11 C pz 44 -0.522167 12 C pz + 51 -0.523103 15 C pz 56 0.523103 16 C pz + 15 0.240693 3 C pz 20 -0.240693 4 C pz + 25 -0.232246 5 C pz 30 0.232246 6 C pz + + Vector 39 Occ=0.000000D+00 E= 1.822016D-01 Symmetry=au + MO Center= 6.9D-18, 6.1D-15, 3.6D-16, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.529134 11 C pz 44 -0.529134 12 C pz + 5 0.497218 1 C pz 10 0.497218 2 C pz + 51 0.379694 15 C pz 56 0.379694 16 C pz + 25 -0.199198 5 C pz 30 -0.199198 6 C pz + 15 -0.166739 3 C pz 20 -0.166739 4 C pz + + Vector 40 Occ=0.000000D+00 E= 2.723015D-01 Symmetry=bg + MO Center= -3.8D-15, -5.8D-15, 6.3D-17, r^2= 3.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.543477 1 C pz 10 -0.543477 2 C pz + 25 0.466878 5 C pz 30 -0.466878 6 C pz + 15 -0.464184 3 C pz 20 0.464184 4 C pz + 39 0.287731 11 C pz 44 -0.287731 12 C pz + 51 -0.156154 15 C pz 56 0.156154 16 C pz + + Vector 41 Occ=0.000000D+00 E= 3.324847D-01 Symmetry=ag + MO Center= 1.2D-16, -2.2D-16, -8.7D-17, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 -0.423790 9 H s 34 -0.423790 10 H s + 31 -0.413781 7 H s 32 -0.413781 8 H s + 2 0.401569 1 C s 7 0.401569 2 C s + 59 -0.358542 19 H s 60 -0.358542 20 H s + 38 -0.338105 11 C py 43 0.338105 12 C py + + Vector 42 Occ=0.000000D+00 E= 3.406450D-01 Symmetry=bu + MO Center= 2.0D-15, 2.5D-15, -1.1D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.433827 13 H s 46 -0.433827 14 H s + 13 0.355437 3 C px 18 0.355437 4 C px + 37 0.344559 11 C px 42 0.344559 12 C px + 31 -0.321888 7 H s 32 0.321888 8 H s + 57 -0.323133 17 H s 58 0.323133 18 H s + + Vector 43 Occ=0.000000D+00 E= 3.795219D-01 Symmetry=bu + MO Center= -2.0D-16, -3.9D-16, 1.0D-16, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.546115 11 C s 41 -0.546115 12 C s + 4 0.461528 1 C py 9 0.461528 2 C py + 33 0.405572 9 H s 34 -0.405572 10 H s + 59 0.351697 19 H s 60 -0.351697 20 H s + 2 0.338376 1 C s 7 -0.338376 2 C s + + Vector 44 Occ=0.000000D+00 E= 3.812902D-01 Symmetry=ag + MO Center= -3.5D-15, -1.4D-14, 7.3D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.579606 13 H s 46 0.579606 14 H s + 12 0.393525 3 C s 17 0.393525 4 C s + 57 -0.391441 17 H s 58 -0.391441 18 H s + 36 -0.382166 11 C s 41 -0.382166 12 C s + 37 0.338369 11 C px 42 -0.338369 12 C px + + Vector 45 Occ=0.000000D+00 E= 4.103420D-01 Symmetry=ag + MO Center= -4.5D-13, 1.3D-12, 6.1D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.647348 15 C s 53 0.647348 16 C s + 22 0.620079 5 C s 27 0.620079 6 C s + 57 -0.513314 17 H s 58 -0.513314 18 H s + 12 -0.443652 3 C s 17 -0.443652 4 C s + 59 -0.320794 19 H s 60 -0.320794 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.112339D-01 Symmetry=bu + MO Center= 4.4D-13, -1.3D-12, -2.0D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.613158 5 C s 27 -0.613158 6 C s + 48 0.539738 15 C s 53 -0.539738 16 C s + 2 0.476220 1 C s 7 -0.476220 2 C s + 57 -0.447816 17 H s 58 0.447816 18 H s + 12 -0.440665 3 C s 17 0.440665 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.258026D-01 Symmetry=bu + MO Center= 2.0D-15, 1.5D-14, 4.5D-18, r^2= 9.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.603108 7 H s 32 -0.603108 8 H s + 36 -0.446800 11 C s 41 0.446800 12 C s + 45 0.437140 13 H s 46 -0.437140 14 H s + 12 -0.368677 3 C s 17 0.368677 4 C s + 59 0.337702 19 H s 60 -0.337702 20 H s + + Vector 48 Occ=0.000000D+00 E= 4.393595D-01 Symmetry=ag + MO Center= 3.3D-15, 5.1D-14, -9.6D-17, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.782305 1 C s 7 0.782305 2 C s + 36 -0.556792 11 C s 41 -0.556792 12 C s + 12 -0.499660 3 C s 17 -0.499660 4 C s + 22 -0.411568 5 C s 27 -0.411568 6 C s + 48 0.409886 15 C s 53 0.409886 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.537212D-01 Symmetry=bu + MO Center= 1.1D-14, -6.9D-14, 3.8D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.706721 15 C s 53 -0.706721 16 C s + 57 -0.525555 17 H s 58 0.525555 18 H s + 33 0.477113 9 H s 34 -0.477113 10 H s + 36 -0.429001 11 C s 41 0.429001 12 C s + 22 -0.407169 5 C s 27 0.407169 6 C s + + Vector 50 Occ=0.000000D+00 E= 4.783353D-01 Symmetry=ag + MO Center= -8.0D-15, 1.4D-14, -9.9D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.706217 3 C s 17 0.706217 4 C s + 22 -0.619402 5 C s 27 -0.619402 6 C s + 59 -0.475187 19 H s 60 -0.475187 20 H s + 48 0.415041 15 C s 53 0.415041 16 C s + 50 -0.382621 15 C py 55 0.382621 16 C py + + Vector 51 Occ=0.000000D+00 E= 5.255619D-01 Symmetry=ag + MO Center= 1.0D-15, -3.2D-15, -1.4D-17, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.601873 1 C py 9 -0.601873 2 C py + 36 -0.491669 11 C s 41 -0.491669 12 C s + 13 -0.452502 3 C px 18 0.452502 4 C px + 2 -0.448702 1 C s 7 -0.448702 2 C s + 49 -0.342028 15 C px 54 0.342028 16 C px + + Vector 52 Occ=0.000000D+00 E= 5.463507D-01 Symmetry=bu + MO Center= 5.7D-15, -1.3D-14, -5.2D-18, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.647801 3 C s 17 -0.647801 4 C s + 3 -0.560732 1 C px 8 -0.560732 2 C px + 50 0.483439 15 C py 55 0.483439 16 C py + 24 -0.478220 5 C py 29 -0.478220 6 C py + 59 0.356004 19 H s 60 -0.356004 20 H s + + Vector 53 Occ=0.000000D+00 E= 5.764358D-01 Symmetry=ag + MO Center= -2.1D-15, 9.2D-16, -2.0D-17, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.537125 3 C px 18 -0.537125 4 C px + 23 -0.522141 5 C px 28 0.522141 6 C px + 33 0.519104 9 H s 34 0.519104 10 H s + 31 -0.448313 7 H s 32 -0.448313 8 H s + 24 0.400194 5 C py 29 -0.400194 6 C py + + Vector 54 Occ=0.000000D+00 E= 5.984381D-01 Symmetry=bu + MO Center= -5.4D-15, 1.7D-15, 4.6D-18, r^2= 4.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 0.723029 3 C py 19 0.723029 4 C py + 22 0.599919 5 C s 27 -0.599919 6 C s + 36 -0.415408 11 C s 41 0.415408 12 C s + 2 -0.405912 1 C s 7 0.405912 2 C s + 24 0.394227 5 C py 29 0.394227 6 C py + + Vector 55 Occ=0.000000D+00 E= 6.248973D-01 Symmetry=bu + MO Center= 1.9D-15, -3.1D-16, -1.2D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.608534 1 C s 7 -0.608534 2 C s + 49 -0.528892 15 C px 54 -0.528892 16 C px + 38 0.480661 11 C py 43 0.480661 12 C py + 23 -0.365994 5 C px 28 -0.365994 6 C px + 57 0.363289 17 H s 58 -0.363289 18 H s + + Vector 56 Occ=0.000000D+00 E= 6.398334D-01 Symmetry=ag + MO Center= 4.8D-16, 6.7D-15, -9.9D-17, r^2= 9.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.549269 11 C px 42 -0.549269 12 C px + 50 -0.534300 15 C py 55 0.534300 16 C py + 14 0.383477 3 C py 19 -0.383477 4 C py + 4 -0.364576 1 C py 9 0.364576 2 C py + 59 -0.330751 19 H s 60 -0.330751 20 H s + + Vector 57 Occ=0.000000D+00 E= 6.828368D-01 Symmetry=ag + MO Center= -5.8D-16, -1.3D-15, 1.7D-18, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.663093 11 C py 43 -0.663093 12 C py + 49 -0.580412 15 C px 54 0.580412 16 C px + 24 -0.449231 5 C py 29 0.449231 6 C py + 14 -0.392088 3 C py 19 0.392088 4 C py + 4 -0.381669 1 C py 9 0.381669 2 C py + + Vector 58 Occ=0.000000D+00 E= 7.173570D-01 Symmetry=bu + MO Center= 2.3D-15, 2.9D-14, -5.9D-20, r^2= 9.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.608025 11 C px 42 0.608025 12 C px + 48 -0.538017 15 C s 50 -0.540484 15 C py + 53 0.538017 16 C s 55 -0.540484 16 C py + 36 0.466540 11 C s 38 -0.464867 11 C py + 41 -0.466540 12 C s 43 -0.464867 12 C py + + Vector 59 Occ=0.000000D+00 E= 7.790413D-01 Symmetry=ag + MO Center= -2.3D-15, -2.5D-14, -5.2D-17, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.702431 1 C px 8 -0.702431 2 C px + 14 -0.534059 3 C py 19 0.534059 4 C py + 23 -0.435986 5 C px 28 0.435986 6 C px + 37 0.429836 11 C px 42 -0.429836 12 C px + 24 -0.411037 5 C py 29 0.411037 6 C py + + Vector 60 Occ=0.000000D+00 E= 7.942624D-01 Symmetry=bu + MO Center= -2.7D-16, -4.1D-15, 3.1D-23, r^2= 3.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.657693 1 C py 9 0.657693 2 C py + 13 -0.568325 3 C px 18 -0.568325 4 C px + 23 0.496519 5 C px 28 0.496519 6 C px + 22 -0.413797 5 C s 27 0.413797 6 C s + 24 -0.395895 5 C py 29 -0.395895 6 C py + + Final MO vectors + ---------------- + + + global array: alpha evecs[1:60,1:60], handle: -995 + + 1 2 3 4 5 6 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.69930 0.69930 -0.02742 0.02765 0.00327 -0.02868 + 2 0.03156 0.03135 0.00410 -0.00406 -0.00081 0.00816 + 3 -0.00002 0.00003 0.00067 -0.00065 0.00525 -0.00123 + 4 -0.00091 -0.00063 0.00416 -0.00413 -0.00054 -0.00308 + 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 6 -0.69930 0.69930 0.02742 0.02765 0.00327 0.02868 + 7 -0.03156 0.03135 -0.00410 -0.00406 -0.00081 -0.00816 + 8 -0.00002 -0.00003 0.00067 0.00065 -0.00525 -0.00123 + 9 -0.00091 0.00063 0.00416 0.00413 0.00054 -0.00308 + 10 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 11 -0.01887 -0.01934 0.01179 -0.01473 -0.43751 -0.42432 + 12 -0.00774 -0.00693 0.00068 -0.00068 -0.02438 -0.02407 + 13 0.00353 0.00332 -0.00013 0.00019 0.00102 0.00115 + 14 -0.00263 -0.00300 -0.00002 -0.00006 0.00367 0.00385 + 15 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 16 0.01887 -0.01934 -0.01179 -0.01473 -0.43751 0.42432 + 17 0.00774 -0.00693 -0.00068 -0.00068 -0.02438 0.02407 + 18 0.00353 -0.00332 -0.00013 -0.00019 -0.00102 0.00115 + 19 -0.00263 0.00300 -0.00002 0.00006 -0.00367 0.00385 + 20 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 21 0.01918 -0.01952 -0.00968 -0.01107 0.54641 0.55588 + 22 0.00771 -0.00687 -0.00055 -0.00042 0.02815 0.02865 + 23 -0.00417 0.00407 0.00013 0.00021 0.00007 -0.00009 + 24 -0.00132 0.00175 -0.00010 0.00001 0.00323 0.00334 + 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 26 -0.01918 -0.01952 0.00968 -0.01107 0.54641 -0.55588 + 27 -0.00771 -0.00687 0.00055 -0.00042 0.02815 -0.02865 + 28 -0.00417 -0.00407 0.00013 -0.00021 -0.00007 -0.00009 + 29 -0.00132 -0.00175 -0.00010 -0.00001 -0.00323 0.00334 + 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 31 0.00034 0.00022 -0.00010 0.00011 0.00405 0.00398 + 32 -0.00034 0.00022 0.00010 0.00011 0.00405 -0.00398 + 33 -0.00033 0.00022 -0.00004 -0.00006 -0.00506 -0.00515 + 34 0.00033 0.00022 0.00004 -0.00006 -0.00506 0.00515 + 35 0.02696 -0.02733 0.69978 0.69970 -0.00070 0.01381 + 36 0.00670 -0.00677 0.03078 0.03076 -0.00004 0.00073 + 37 0.00090 -0.00091 0.00075 0.00075 0.00011 0.00006 + 38 0.00397 -0.00401 -0.00108 -0.00109 -0.00003 -0.00005 + 39 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 40 -0.02696 -0.02733 -0.69978 0.69970 -0.00070 -0.01381 + 41 -0.00670 -0.00677 -0.03078 0.03076 -0.00004 -0.00073 + 42 0.00090 0.00091 0.00075 -0.00075 -0.00011 0.00006 + 43 0.00397 0.00401 -0.00108 0.00109 0.00003 -0.00005 + 44 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 45 -0.00032 0.00033 -0.00642 -0.00642 -0.00001 -0.00018 + 46 0.00032 0.00033 0.00642 -0.00642 -0.00001 0.00018 + 47 -0.00018 0.00019 -0.00811 -0.00810 -0.00029 -0.00093 + 48 -0.00047 0.00047 -0.00762 -0.00762 -0.00005 -0.00028 + 49 -0.00001 0.00001 0.00305 0.00305 -0.00003 0.00003 + 50 -0.00028 0.00029 -0.00344 -0.00344 -0.00001 -0.00014 + 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 52 0.00018 0.00019 0.00811 -0.00810 -0.00029 0.00093 + 53 0.00047 0.00047 0.00762 -0.00762 -0.00005 0.00028 + 54 -0.00001 -0.00001 0.00305 -0.00305 0.00003 0.00003 + 55 -0.00028 -0.00029 -0.00344 0.00344 0.00001 -0.00014 + 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 57 0.00015 -0.00014 0.00019 0.00019 0.00016 0.00015 + 58 -0.00015 -0.00014 -0.00019 0.00019 0.00016 -0.00015 + 59 0.00003 -0.00003 0.00022 0.00022 -0.00000 -0.00001 + 60 -0.00003 -0.00003 -0.00022 0.00022 -0.00000 0.00001 + + 7 8 9 10 11 12 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00367 0.02944 -0.00018 0.00018 -0.10786 -0.10355 + 2 -0.00110 -0.00749 -0.00016 0.00016 0.27470 0.27379 + 3 -0.00500 -0.00006 0.00002 -0.00002 -0.00550 0.00446 + 4 0.00128 0.00308 -0.00005 0.00005 -0.04073 0.03298 + 5 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 6 -0.00367 0.02944 0.00018 0.00018 -0.10786 0.10355 + 7 0.00110 -0.00749 0.00016 0.00016 0.27470 -0.27379 + 8 -0.00500 0.00006 0.00002 0.00002 0.00550 0.00446 + 9 0.00128 -0.00308 -0.00005 -0.00005 0.04073 0.03298 + 10 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 11 0.55685 0.54652 -0.00028 0.00057 -0.09784 -0.03906 + 12 0.02059 0.01990 0.00000 -0.00006 0.24702 0.10222 + 13 -0.00024 0.00013 -0.00001 0.00002 -0.05337 -0.02738 + 14 0.00222 0.00233 0.00008 -0.00003 -0.01450 0.05896 + 15 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 16 -0.55685 0.54652 0.00028 0.00057 -0.09784 0.03906 + 17 -0.02059 0.01990 -0.00000 -0.00006 0.24702 -0.10222 + 18 -0.00024 -0.00013 -0.00001 -0.00002 0.05337 -0.02738 + 19 0.00222 -0.00233 0.00008 0.00003 0.01450 0.05896 + 20 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 21 0.42563 0.43775 0.00079 0.00085 -0.09757 0.04279 + 22 0.01354 0.01412 -0.00002 -0.00004 0.24669 -0.11256 + 23 -0.00095 -0.00067 0.00001 0.00000 -0.04576 0.04462 + 24 -0.00301 -0.00302 0.00011 0.00009 0.03144 0.04668 + 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 26 -0.42563 0.43775 -0.00079 0.00085 -0.09757 -0.04279 + 27 -0.01354 0.01412 0.00002 -0.00004 0.24669 0.11256 + 28 -0.00095 0.00067 0.00001 -0.00000 0.04576 0.04462 + 29 -0.00301 0.00302 0.00011 -0.00009 -0.03144 0.04668 + 30 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 31 -0.00491 -0.00498 0.00001 -0.00002 0.04495 0.02686 + 32 0.00491 -0.00498 -0.00001 -0.00002 0.04495 -0.02686 + 33 -0.00371 -0.00400 0.00010 0.00010 0.04519 -0.03076 + 34 0.00371 -0.00400 -0.00010 0.00010 0.04519 0.03076 + 35 -0.00338 0.01736 0.00900 0.00901 -0.04972 0.11382 + 36 -0.00018 0.00075 -0.00689 -0.00689 0.12781 -0.29717 + 37 0.00001 0.00002 -0.00308 -0.00308 0.01290 -0.03419 + 38 0.00002 -0.00019 0.00338 0.00338 0.02845 -0.00850 + 39 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 40 0.00338 0.01736 -0.00900 0.00901 -0.04972 -0.11382 + 41 0.00018 0.00075 0.00689 -0.00689 0.12781 0.29717 + 42 0.00001 -0.00002 -0.00308 0.00308 -0.01290 -0.03419 + 43 0.00002 0.00019 0.00338 -0.00338 -0.02845 -0.00850 + 44 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 45 0.00005 -0.00025 0.00004 0.00004 0.02560 -0.06702 + 46 -0.00005 -0.00025 -0.00004 0.00004 0.02560 0.06702 + 47 -0.00021 -0.00115 0.70048 0.70048 -0.02467 0.08073 + 48 0.00003 -0.00033 0.03086 0.03086 0.06268 -0.20931 + 49 -0.00005 0.00005 -0.00089 -0.00089 -0.01240 0.03729 + 50 0.00001 -0.00018 0.00094 0.00094 0.02035 -0.04990 + 51 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 52 0.00021 -0.00115 -0.70048 0.70048 -0.02467 -0.08073 + 53 -0.00003 -0.00033 -0.03086 0.03086 0.06268 0.20931 + 54 -0.00005 -0.00005 -0.00089 0.00089 0.01240 0.03729 + 55 0.00001 0.00018 0.00094 -0.00094 -0.02035 -0.04990 + 56 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 57 0.00009 0.00010 -0.00636 -0.00636 0.01412 -0.04858 + 58 -0.00009 0.00010 0.00636 -0.00636 0.01412 0.04858 + 59 -0.00001 -0.00001 -0.00637 -0.00637 0.01058 -0.04369 + 60 0.00001 -0.00001 0.00637 -0.00637 0.01058 0.04369 + + 13 14 15 16 17 18 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00453 -0.01260 -0.09965 0.07098 0.05432 -0.01303 + 2 0.01483 0.03409 0.27407 -0.20638 -0.16079 0.03709 + 3 0.01037 0.12499 -0.01781 -0.12106 0.18486 -0.05359 + 4 0.09615 -0.02299 -0.05622 -0.07212 -0.06394 -0.13493 + 5 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 6 -0.00453 0.01260 0.09965 0.07098 0.05432 0.01303 + 7 0.01483 -0.03409 -0.27407 -0.20638 -0.16079 -0.03709 + 8 -0.01037 0.12499 -0.01781 0.12106 -0.18486 -0.05359 + 9 -0.09615 -0.02299 -0.05622 0.07212 0.06394 -0.13493 + 10 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 11 0.04631 -0.13232 -0.04077 0.00302 -0.11045 -0.05067 + 12 -0.12146 0.35713 0.11268 -0.01004 0.32603 0.15447 + 13 0.01614 0.00350 -0.03788 0.02993 0.08167 -0.00524 + 14 0.03704 -0.05621 0.09142 -0.16001 0.03652 0.00483 + 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 16 0.04631 0.13232 0.04077 0.00302 -0.11045 0.05067 + 17 -0.12146 -0.35713 -0.11268 -0.01004 0.32603 -0.15447 + 18 -0.01614 0.00350 -0.03788 -0.02993 -0.08167 -0.00524 + 19 -0.03704 -0.05621 0.09142 0.16001 -0.03652 0.00483 + 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 21 0.04173 -0.12009 0.07330 -0.08191 0.05747 0.03036 + 22 -0.10894 0.32390 -0.20228 0.23381 -0.17074 -0.09205 + 23 0.00204 0.03465 0.05406 0.06548 0.08653 0.03583 + 24 -0.04735 0.06563 0.04697 0.02290 0.17044 0.07857 + 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 26 0.04173 0.12009 -0.07330 -0.08191 0.05747 -0.03036 + 27 -0.10894 -0.32390 0.20228 0.23381 -0.17074 0.09205 + 28 -0.00204 0.03465 0.05406 -0.06548 -0.08653 0.03583 + 29 0.04735 0.06563 0.04697 -0.02290 -0.17044 0.07857 + 30 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 31 -0.02335 0.09831 0.03218 -0.01929 0.16923 0.05033 + 32 -0.02335 -0.09831 -0.03218 -0.01929 0.16923 -0.05033 + 33 -0.01660 0.08999 -0.05346 0.10642 -0.08383 -0.05580 + 34 -0.01660 -0.08999 0.05346 0.10642 -0.08383 0.05580 + 35 -0.11924 0.00020 -0.05162 0.05306 0.00758 -0.09885 + 36 0.31482 -0.00128 0.13685 -0.15961 -0.02451 0.30277 + 37 0.04535 0.02295 0.03919 0.08128 -0.04660 -0.11605 + 38 -0.05748 -0.01848 -0.12905 -0.12925 -0.07792 0.04107 + 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 40 -0.11924 -0.00020 0.05162 0.05306 0.00758 0.09885 + 41 0.31482 0.00128 -0.13685 -0.15961 -0.02451 -0.30277 + 42 -0.04535 0.02295 0.03919 -0.08128 0.04660 -0.11605 + 43 0.05748 -0.01848 -0.12905 0.12925 0.07792 0.04107 + 44 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 45 0.07653 -0.00984 0.03763 -0.08003 0.03216 0.17052 + 46 0.07653 0.00984 -0.03763 -0.08003 0.03216 -0.17052 + 47 -0.11746 -0.01450 -0.11027 -0.08371 -0.03787 0.08074 + 48 0.30977 0.03791 0.29951 0.24141 0.11347 -0.24917 + 49 -0.04908 0.00157 -0.03453 0.03560 -0.01390 -0.12315 + 50 0.05279 0.00637 0.01637 -0.03827 -0.04943 0.09128 + 51 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 52 -0.11746 0.01450 0.11027 -0.08371 -0.03787 -0.08074 + 53 0.30977 -0.03791 -0.29951 0.24141 0.11347 0.24917 + 54 0.04908 0.00157 -0.03453 -0.03560 0.01390 -0.12315 + 55 -0.05279 0.00637 0.01637 0.03827 0.04943 0.09128 + 56 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 57 0.07420 0.01478 0.07740 0.10354 0.02278 -0.16063 + 58 0.07420 -0.01478 -0.07740 0.10354 0.02278 0.16063 + 59 0.07484 0.00894 0.08996 0.09775 0.06787 -0.12474 + 60 0.07484 -0.00894 -0.08996 0.09775 0.06787 0.12474 + + 19 20 21 22 23 24 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.05454 -0.03229 0.02275 -0.06946 -0.02277 0.02167 + 2 -0.16217 0.10634 -0.07804 0.23531 0.07752 -0.07158 + 3 -0.01948 0.05143 0.12484 0.10107 -0.22083 -0.01574 + 4 0.14256 0.13227 -0.13509 -0.02739 -0.14330 -0.01021 + 5 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 6 0.05454 -0.03229 -0.02275 0.06946 0.02277 0.02167 + 7 -0.16217 0.10634 0.07804 -0.23531 -0.07752 -0.07158 + 8 0.01948 -0.05143 0.12484 0.10107 -0.22083 0.01574 + 9 -0.14256 -0.13227 -0.13509 -0.02739 -0.14330 0.01021 + 10 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 11 -0.00697 -0.01336 -0.02216 0.04738 -0.00126 -0.02514 + 12 0.02556 0.05158 0.07459 -0.16297 0.00150 0.08397 + 13 0.18449 0.13690 0.01857 -0.22226 -0.00314 -0.00635 + 14 -0.08790 0.14138 0.18496 0.06158 -0.12066 -0.08210 + 15 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 16 -0.00697 -0.01336 0.02216 -0.04738 0.00126 -0.02514 + 17 0.02556 0.05158 -0.07459 0.16297 -0.00150 0.08397 + 18 -0.18449 -0.13690 0.01857 -0.22226 -0.00314 0.00635 + 19 0.08790 -0.14138 0.18496 0.06158 -0.12066 0.08210 + 20 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 21 -0.05224 0.01978 0.04259 -0.04406 0.01174 0.01824 + 22 0.16602 -0.05620 -0.13897 0.15292 -0.03666 -0.06801 + 23 0.20190 0.08463 -0.09670 0.11282 0.25124 -0.03712 + 24 -0.03731 -0.13600 -0.10148 -0.17797 0.05674 0.13671 + 25 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 26 -0.05224 0.01978 -0.04259 0.04406 -0.01174 0.01824 + 27 0.16602 -0.05620 0.13897 -0.15292 0.03666 -0.06801 + 28 -0.20190 -0.08463 -0.09670 0.11282 0.25124 0.03712 + 29 0.03731 0.13600 -0.10148 -0.17797 0.05674 -0.13671 + 30 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 31 0.09946 0.13601 0.10020 -0.22666 -0.03672 0.00607 + 32 0.09946 0.13601 -0.10020 0.22666 0.03672 0.00607 + 33 0.16928 0.09041 -0.05988 0.23047 0.13275 -0.11408 + 34 0.16928 0.09041 0.05988 -0.23047 -0.13275 -0.11408 + 35 -0.05912 0.04018 -0.01690 -0.01529 -0.00257 -0.02765 + 36 0.18076 -0.12770 0.05160 0.04227 0.01492 0.08059 + 37 -0.06455 0.11482 0.21923 0.03807 -0.04290 0.25149 + 38 -0.00149 0.18465 0.10104 -0.12528 0.18149 -0.08173 + 39 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 40 -0.05912 0.04018 0.01690 0.01529 0.00257 -0.02765 + 41 0.18076 -0.12770 -0.05160 -0.04227 -0.01492 0.08059 + 42 0.06455 -0.11482 0.21923 0.03807 -0.04290 -0.25149 + 43 0.00149 -0.18465 0.10104 -0.12528 0.18149 0.08173 + 44 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 45 0.11251 -0.15309 -0.15549 0.02806 0.01234 -0.14506 + 46 0.11251 -0.15309 0.15549 -0.02806 -0.01234 -0.14506 + 47 0.05155 -0.01689 0.00814 0.01223 0.00106 -0.00444 + 48 -0.16347 0.06337 -0.03136 -0.05077 0.00750 -0.00010 + 49 -0.07915 0.21273 0.09058 -0.07563 0.25051 -0.01131 + 50 0.08165 0.00913 0.21029 0.13356 0.03810 0.33900 + 51 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 52 0.05155 -0.01689 -0.00814 -0.01223 -0.00106 -0.00444 + 53 -0.16347 0.06337 0.03136 0.05077 -0.00750 -0.00010 + 54 0.07915 -0.21273 0.09058 -0.07563 0.25051 0.01131 + 55 -0.08165 -0.00913 0.21029 0.13356 0.03810 -0.33900 + 56 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 57 -0.09475 0.17911 0.07306 -0.04231 0.21542 0.02497 + 58 -0.09475 0.17911 -0.07306 0.04231 -0.21542 0.02497 + 59 -0.09719 -0.02141 -0.17813 -0.10503 -0.08716 -0.26260 + 60 -0.09719 -0.02141 0.17813 0.10503 0.08716 -0.26260 + + 25 26 27 28 29 30 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00257 0.00315 0.02506 0.00000 -0.01028 -0.00342 + 2 -0.00882 -0.01168 -0.09024 -0.00000 0.04486 0.02281 + 3 -0.08496 0.16711 0.08893 -0.00000 0.09215 -0.13094 + 4 0.07881 -0.17820 0.00082 -0.00000 0.24197 0.26840 + 5 -0.00000 -0.00000 -0.00000 0.33761 0.00000 0.00000 + 6 -0.00257 -0.00315 0.02506 0.00000 0.01028 -0.00342 + 7 0.00882 0.01168 -0.09024 -0.00000 -0.04486 0.02281 + 8 -0.08496 0.16711 -0.08893 0.00000 0.09215 0.13094 + 9 0.07881 -0.17820 -0.00082 0.00000 0.24197 -0.26840 + 10 -0.00000 0.00000 0.00000 0.33761 -0.00000 -0.00000 + 11 0.02849 -0.01759 0.00530 0.00000 0.00685 0.00271 + 12 -0.09067 0.06357 -0.02695 -0.00000 -0.02118 -0.00884 + 13 0.30758 -0.10066 -0.12838 0.00000 0.06490 0.13268 + 14 0.14541 0.22434 -0.13363 0.00000 0.04102 -0.27818 + 15 -0.00000 -0.00000 0.00000 0.29798 -0.00000 -0.00000 + 16 -0.02849 0.01759 0.00530 0.00000 -0.00685 0.00271 + 17 0.09067 -0.06357 -0.02695 -0.00000 0.02118 -0.00884 + 18 0.30758 -0.10066 0.12838 -0.00000 0.06490 -0.13268 + 19 0.14541 0.22434 0.13363 -0.00000 0.04102 0.27818 + 20 0.00000 0.00000 0.00000 0.29798 0.00000 -0.00000 + 21 0.01970 0.00712 -0.00754 -0.00000 -0.01375 -0.00888 + 22 -0.06220 -0.02043 0.02538 0.00000 0.04725 0.02465 + 23 0.18806 -0.07066 0.06386 -0.00000 -0.14449 -0.08055 + 24 -0.22609 -0.19326 0.13981 0.00000 -0.00790 0.23445 + 25 0.00000 0.00000 0.00000 0.29717 -0.00000 -0.00000 + 26 -0.01970 -0.00712 -0.00754 -0.00000 0.01375 -0.00888 + 27 0.06220 0.02043 0.02538 0.00000 -0.04725 0.02465 + 28 0.18806 -0.07066 -0.06386 0.00000 -0.14449 0.08055 + 29 -0.22609 -0.19326 -0.13981 -0.00000 -0.00790 -0.23445 + 30 0.00000 0.00000 -0.00000 0.29717 -0.00000 -0.00000 + 31 0.25227 0.00752 -0.15647 0.00000 0.04671 0.02034 + 32 -0.25227 -0.00752 -0.15647 0.00000 -0.04671 0.02034 + 33 0.21818 0.04690 0.00782 -0.00000 -0.05383 -0.24041 + 34 -0.21818 -0.04690 0.00782 -0.00000 0.05383 -0.24041 + 35 -0.00193 0.00109 -0.01690 -0.00000 0.00273 -0.01988 + 36 0.00461 0.01245 0.07134 0.00000 -0.00655 0.08279 + 37 -0.01859 -0.20168 -0.20888 0.00000 -0.21725 0.04337 + 38 -0.06686 0.18774 0.08750 -0.00000 -0.16914 0.24814 + 39 -0.00000 -0.00000 -0.00000 0.17395 0.00000 -0.00000 + 40 0.00193 -0.00109 -0.01690 -0.00000 -0.00273 -0.01988 + 41 -0.00461 -0.01245 0.07134 0.00000 0.00655 0.08279 + 42 -0.01859 -0.20168 0.20888 -0.00000 -0.21725 -0.04337 + 43 -0.06686 0.18774 -0.08750 0.00000 -0.16914 -0.24814 + 44 0.00000 0.00000 -0.00000 0.17395 -0.00000 0.00000 + 45 0.01673 0.14559 0.20023 0.00000 0.25910 -0.06640 + 46 -0.01673 -0.14559 0.20023 0.00000 -0.25910 -0.06640 + 47 0.00445 0.02052 0.01051 -0.00000 0.00350 0.00833 + 48 -0.01850 -0.05651 -0.02704 0.00000 -0.01441 -0.02127 + 49 -0.07653 0.12000 0.29519 0.00000 0.19964 0.02772 + 50 -0.00552 -0.24568 0.04849 0.00000 0.13688 -0.14507 + 51 0.00000 0.00000 -0.00000 0.09244 -0.00000 0.00000 + 52 -0.00445 -0.02052 0.01051 -0.00000 -0.00350 0.00833 + 53 0.01850 0.05651 -0.02704 0.00000 0.01441 -0.02127 + 54 -0.07653 0.12000 -0.29519 -0.00000 0.19964 -0.02772 + 55 -0.00552 -0.24568 -0.04849 -0.00000 0.13688 0.14507 + 56 0.00000 0.00000 -0.00000 0.09244 -0.00000 0.00000 + 57 -0.05395 0.05142 0.26801 0.00000 0.23103 -0.05231 + 58 0.05395 -0.05142 0.26801 0.00000 -0.23103 -0.05231 + 59 0.01519 0.15786 -0.14304 -0.00000 -0.21233 0.13552 + 60 -0.01519 -0.15786 -0.14304 -0.00000 0.21233 0.13552 + + 31 32 33 34 35 36 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00699 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 2 0.03378 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 3 0.29586 0.00000 0.00000 0.00000 0.00000 0.00000 + 4 0.09493 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 5 -0.00000 0.34896 -0.01801 0.00575 0.38755 0.44267 + 6 -0.00699 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 7 0.03378 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 8 -0.29586 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 9 -0.09493 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 10 0.00000 -0.34896 -0.01801 -0.00575 -0.38755 0.44267 + 11 -0.01201 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 12 0.03558 0.00000 0.00000 0.00000 0.00000 -0.00000 + 13 -0.22212 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 14 -0.04919 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 15 0.00000 0.13165 -0.17920 0.46363 0.21507 -0.23227 + 16 -0.01201 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 17 0.03558 0.00000 0.00000 0.00000 0.00000 -0.00000 + 18 0.22212 0.00000 0.00000 0.00000 0.00000 -0.00000 + 19 0.04919 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 20 0.00000 -0.13165 -0.17920 -0.46363 -0.21507 -0.23227 + 21 0.00761 0.00000 0.00000 0.00000 0.00000 -0.00000 + 22 -0.02194 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 23 0.28060 0.00000 0.00000 0.00000 0.00000 0.00000 + 24 0.09600 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 25 0.00000 -0.13211 -0.17663 0.45754 -0.23074 -0.27755 + 26 0.00761 0.00000 0.00000 0.00000 0.00000 -0.00000 + 27 -0.02194 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 28 -0.28060 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 29 -0.09600 0.00000 0.00000 0.00000 -0.00000 0.00000 + 30 0.00000 0.13211 -0.17663 -0.45754 0.23074 -0.27755 + 31 -0.25807 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 32 -0.25807 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 33 0.15131 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 34 0.15131 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 35 -0.01113 0.00000 0.00000 0.00000 0.00000 -0.00000 + 36 0.03843 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 37 0.13689 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 38 0.11202 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 39 0.00000 -0.37648 0.41378 -0.00037 0.22367 0.25613 + 40 -0.01113 0.00000 0.00000 0.00000 0.00000 -0.00000 + 41 0.03843 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 42 -0.13689 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 43 -0.11202 0.00000 0.00000 0.00000 0.00000 0.00000 + 44 -0.00000 0.37648 0.41378 0.00037 -0.22367 0.25613 + 45 -0.18274 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 46 -0.18274 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 47 -0.00467 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 48 0.01837 0.00000 0.00000 0.00000 0.00000 -0.00000 + 49 -0.10958 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 50 -0.03768 0.00000 0.00000 0.00000 0.00000 0.00000 + 51 -0.00000 -0.27140 0.41796 0.00954 0.39737 -0.44961 + 52 -0.00467 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 53 0.01837 0.00000 0.00000 0.00000 0.00000 -0.00000 + 54 0.10958 0.00000 0.00000 -0.00000 0.00000 0.00000 + 55 0.03768 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 56 -0.00000 0.27140 0.41796 -0.00954 -0.39737 -0.44961 + 57 -0.11595 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 58 -0.11595 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 59 0.08985 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 60 0.08985 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + + 37 38 39 40 41 42 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 0.00000 -0.00000 -0.00000 -0.06824 -0.03374 + 2 0.00000 -0.00000 0.00000 0.00000 0.40157 0.19824 + 3 0.00000 0.00000 0.00000 -0.00000 0.08710 0.28506 + 4 -0.00000 -0.00000 0.00000 0.00000 0.27371 0.13577 + 5 -0.03192 -0.02345 0.49722 0.54348 -0.00000 -0.00000 + 6 -0.00000 0.00000 -0.00000 -0.00000 -0.06824 0.03374 + 7 0.00000 -0.00000 0.00000 0.00000 0.40157 -0.19824 + 8 0.00000 0.00000 -0.00000 0.00000 -0.08710 0.28506 + 9 -0.00000 -0.00000 -0.00000 -0.00000 -0.27371 0.13577 + 10 -0.03192 0.02345 0.49722 -0.54348 0.00000 0.00000 + 11 0.00000 0.00000 -0.00000 -0.00000 -0.02814 0.00595 + 12 -0.00000 -0.00000 0.00000 0.00000 0.17347 -0.02878 + 13 0.00000 -0.00000 -0.00000 0.00000 0.30451 0.35544 + 14 -0.00000 0.00000 -0.00000 -0.00000 0.05353 0.01074 + 15 0.58269 0.24069 -0.16674 -0.46418 0.00000 0.00000 + 16 -0.00000 0.00000 -0.00000 -0.00000 -0.02814 -0.00595 + 17 0.00000 -0.00000 0.00000 0.00000 0.17347 0.02878 + 18 -0.00000 -0.00000 0.00000 -0.00000 -0.30451 0.35544 + 19 -0.00000 0.00000 0.00000 0.00000 -0.05353 0.01074 + 20 0.58269 -0.24069 -0.16674 0.46418 -0.00000 -0.00000 + 21 -0.00000 -0.00000 0.00000 0.00000 -0.04649 -0.01586 + 22 0.00000 0.00000 -0.00000 0.00000 0.28090 0.09658 + 23 0.00000 0.00000 -0.00000 0.00000 0.20264 0.28597 + 24 -0.00000 -0.00000 -0.00000 -0.00000 -0.12426 0.00564 + 25 -0.55324 -0.23225 -0.19920 0.46688 -0.00000 -0.00000 + 26 0.00000 -0.00000 0.00000 0.00000 -0.04649 0.01586 + 27 -0.00000 0.00000 -0.00000 -0.00000 0.28090 -0.09658 + 28 -0.00000 -0.00000 0.00000 -0.00000 -0.20264 0.28597 + 29 -0.00000 -0.00000 0.00000 0.00000 0.12426 0.00564 + 30 -0.55324 0.23225 -0.19920 -0.46688 0.00000 0.00000 + 31 0.00000 -0.00000 -0.00000 -0.00000 -0.41378 -0.32189 + 32 -0.00000 -0.00000 -0.00000 -0.00000 -0.41378 0.32189 + 33 -0.00000 0.00000 0.00000 -0.00000 -0.42379 -0.27080 + 34 -0.00000 0.00000 0.00000 -0.00000 -0.42379 0.27080 + 35 0.00000 -0.00000 0.00000 0.00000 0.05002 0.00767 + 36 -0.00000 0.00000 -0.00000 -0.00000 -0.28213 -0.04685 + 37 -0.00000 0.00000 -0.00000 -0.00000 -0.24477 0.34456 + 38 -0.00000 -0.00000 -0.00000 -0.00000 -0.33810 0.21676 + 39 0.00380 0.52217 -0.52913 0.28773 -0.00000 -0.00000 + 40 0.00000 -0.00000 0.00000 0.00000 0.05002 -0.00767 + 41 -0.00000 -0.00000 -0.00000 -0.00000 -0.28213 0.04685 + 42 0.00000 -0.00000 0.00000 0.00000 0.24477 0.34456 + 43 0.00000 0.00000 0.00000 0.00000 0.33810 0.21676 + 44 0.00380 -0.52217 -0.52913 -0.28773 0.00000 0.00000 + 45 -0.00000 -0.00000 -0.00000 -0.00000 -0.14441 0.43383 + 46 -0.00000 -0.00000 -0.00000 -0.00000 -0.14441 -0.43383 + 47 -0.00000 -0.00000 0.00000 -0.00000 -0.04092 0.00256 + 48 0.00000 0.00000 0.00000 0.00000 0.23693 -0.01934 + 49 -0.00000 -0.00000 -0.00000 -0.00000 -0.13832 0.30324 + 50 -0.00000 -0.00000 -0.00000 -0.00000 -0.14825 0.16644 + 51 0.01077 -0.52310 0.37969 -0.15615 0.00000 0.00000 + 52 0.00000 -0.00000 -0.00000 -0.00000 -0.04092 -0.00256 + 53 -0.00000 0.00000 0.00000 0.00000 0.23693 0.01934 + 54 0.00000 0.00000 0.00000 0.00000 0.13832 0.30324 + 55 0.00000 -0.00000 0.00000 0.00000 0.14825 0.16644 + 56 0.01077 0.52310 0.37969 0.15615 -0.00000 -0.00000 + 57 -0.00000 -0.00000 0.00000 0.00000 0.10790 -0.32313 + 58 0.00000 0.00000 0.00000 0.00000 0.10790 0.32313 + 59 -0.00000 0.00000 -0.00000 -0.00000 -0.35854 0.28381 + 60 -0.00000 -0.00000 -0.00000 -0.00000 -0.35854 -0.28381 + + 43 44 45 46 47 48 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.05834 0.02268 0.05278 -0.08118 -0.02216 -0.12893 + 2 0.33838 -0.13703 -0.31847 0.47622 0.13839 0.78231 + 3 -0.09823 -0.10366 0.25896 -0.11474 -0.11098 -0.01962 + 4 0.46153 0.07568 -0.15525 0.01704 -0.24323 -0.03427 + 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 6 0.05834 0.02268 0.05278 0.08118 0.02216 -0.12893 + 7 -0.33838 -0.13703 -0.31847 -0.47622 -0.13839 0.78231 + 8 -0.09823 0.10366 -0.25896 -0.11474 -0.11098 0.01962 + 9 0.46153 -0.07568 0.15525 0.01704 -0.24323 0.03427 + 10 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 11 0.02504 -0.06444 0.07255 0.07415 0.05951 0.08004 + 12 -0.15222 0.39352 -0.44365 -0.44067 -0.36868 -0.49966 + 13 -0.13061 0.00225 -0.04821 -0.10021 -0.31643 -0.01875 + 14 0.22995 0.12425 0.16486 0.02279 -0.31506 -0.28291 + 15 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 16 -0.02504 -0.06444 0.07255 -0.07415 -0.05951 0.08004 + 17 0.15222 0.39352 -0.44365 0.44067 0.36868 -0.49966 + 18 -0.13061 -0.00225 0.04821 -0.10021 -0.31643 0.01875 + 19 0.22995 -0.12425 -0.16486 0.02279 -0.31506 0.28291 + 20 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 21 -0.00510 -0.01994 -0.10148 -0.10140 -0.00736 0.06591 + 22 0.02329 0.12752 0.62008 0.61316 0.03300 -0.41157 + 23 -0.26631 0.17399 -0.03870 0.00523 -0.20946 0.23962 + 24 0.32178 -0.20676 0.01016 -0.13338 -0.11033 0.24482 + 25 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 26 0.00510 -0.01994 -0.10148 0.10140 0.00736 0.06591 + 27 -0.02329 0.12752 0.62008 -0.61316 -0.03300 -0.41157 + 28 -0.26631 -0.17399 0.03870 0.00523 -0.20946 -0.23962 + 29 0.32178 0.20676 -0.01016 -0.13338 -0.11033 -0.24482 + 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 31 0.11582 -0.29164 0.22670 0.32244 0.60311 0.32408 + 32 -0.11582 -0.29164 0.22670 -0.32244 -0.60311 0.32408 + 33 0.40557 -0.29497 -0.22356 -0.35429 0.04475 0.19253 + 34 -0.40557 -0.29497 -0.22356 0.35429 -0.04475 0.19253 + 35 -0.09347 0.06358 -0.02475 -0.04071 0.07124 0.09223 + 36 0.54611 -0.38217 0.15743 0.25682 -0.44680 -0.55679 + 37 0.05807 0.33837 -0.13928 -0.16191 0.22490 0.11605 + 38 0.33241 0.07223 0.23434 0.17329 -0.05088 -0.08498 + 39 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 40 0.09347 0.06358 -0.02475 0.04071 -0.07124 0.09223 + 41 -0.54611 -0.38217 0.15743 -0.25682 0.44680 -0.55679 + 42 0.05807 -0.33837 0.13928 -0.16191 0.22490 -0.11605 + 43 0.33241 -0.07223 -0.23434 0.17329 -0.05088 0.08498 + 44 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 45 -0.15904 0.57961 -0.16935 -0.21129 0.43714 0.36453 + 46 0.15904 0.57961 -0.16935 0.21129 -0.43714 0.36453 + 47 0.05085 -0.01992 -0.10343 -0.08588 0.02025 -0.06749 + 48 -0.29723 0.11077 0.64735 0.53974 -0.13545 0.40989 + 49 0.10140 0.30436 0.23779 0.25100 0.05170 -0.00024 + 50 0.14226 0.23774 -0.07679 -0.13570 0.29542 -0.05131 + 51 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 52 -0.05085 -0.01992 -0.10343 0.08588 -0.02025 -0.06749 + 53 0.29723 0.11077 0.64735 -0.53974 0.13545 0.40989 + 54 0.10140 -0.30436 -0.23779 0.25100 0.05170 0.00024 + 55 0.14226 -0.23774 0.07679 -0.13570 0.29542 0.05131 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 -0.01079 -0.39144 -0.51331 -0.44782 -0.05131 -0.21179 + 58 0.01079 -0.39144 -0.51331 0.44782 0.05131 -0.21179 + 59 0.35170 0.25248 -0.32079 -0.31773 0.33770 -0.25941 + 60 -0.35170 0.25248 -0.32079 0.31773 -0.33770 -0.25941 + + 49 50 51 52 53 54 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.06085 0.03721 0.06722 0.00317 -0.00053 0.05880 + 2 -0.36184 -0.23260 -0.44870 -0.01124 -0.00248 -0.40591 + 3 -0.14570 -0.34787 0.12771 -0.56073 0.20695 -0.24957 + 4 0.11217 0.04893 0.60187 0.05941 0.04403 -0.00633 + 5 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 6 -0.06085 0.03721 0.06722 -0.00317 -0.00053 -0.05880 + 7 0.36184 -0.23260 -0.44870 0.01124 -0.00248 0.40591 + 8 -0.14570 0.34787 -0.12771 -0.56073 -0.20695 -0.24957 + 9 0.11217 -0.04893 -0.60187 0.05941 -0.04403 -0.00633 + 10 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 11 -0.05838 -0.11175 -0.01185 -0.09661 0.00390 0.03680 + 12 0.35368 0.70622 0.07742 0.64780 -0.03140 -0.25015 + 13 -0.14824 -0.09324 -0.45250 0.02122 0.53712 -0.21473 + 14 0.12936 -0.11737 0.15653 0.10781 0.19812 0.72303 + 15 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 16 0.05838 -0.11175 -0.01185 0.09661 0.00390 -0.03680 + 17 -0.35368 0.70622 0.07742 -0.64780 -0.03140 0.25015 + 18 -0.14824 0.09324 0.45250 0.02122 -0.53712 -0.21473 + 19 0.12936 0.11737 -0.15653 0.10781 -0.19812 0.72303 + 20 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 21 0.06637 0.09765 -0.04908 -0.03554 -0.00213 -0.08728 + 22 -0.40717 -0.61940 0.31762 0.24771 0.02086 0.59992 + 23 -0.17253 -0.13923 -0.32414 -0.19436 -0.52214 0.33345 + 24 0.14291 -0.18027 0.02623 -0.47822 0.40019 0.39423 + 25 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 26 -0.06637 0.09765 -0.04908 0.03554 -0.00213 0.08728 + 27 0.40717 -0.61940 0.31762 -0.24771 0.02086 -0.59992 + 28 -0.17253 0.13923 0.32414 -0.19436 0.52214 0.33345 + 29 0.14291 0.18027 -0.02623 -0.47822 -0.40019 0.39423 + 30 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 31 -0.07743 -0.21967 0.25325 -0.30688 -0.44831 0.07820 + 32 0.07743 -0.21967 0.25325 0.30688 -0.44831 -0.07820 + 33 0.47711 0.33385 0.05619 -0.21014 0.51910 -0.26110 + 34 -0.47711 0.33385 0.05619 0.21014 0.51910 0.26110 + 35 0.07086 -0.03056 0.07526 0.02689 0.05143 0.06052 + 36 -0.42900 0.21351 -0.49167 -0.19440 -0.35148 -0.41541 + 37 0.06306 -0.03074 0.15321 -0.26589 -0.12018 0.06499 + 38 0.11911 0.07453 0.00857 0.04267 0.15464 0.06260 + 39 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 -0.07086 -0.03056 0.07526 -0.02689 0.05143 -0.06052 + 41 0.42900 0.21351 -0.49167 0.19440 -0.35148 0.41541 + 42 0.06306 0.03074 -0.15321 -0.26589 0.12018 0.06499 + 43 0.11911 -0.07453 -0.00857 0.04267 -0.15464 0.06260 + 44 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 45 0.30082 -0.07193 0.30774 -0.14862 0.09225 0.23756 + 46 -0.30082 -0.07193 0.30774 0.14862 0.09225 -0.23756 + 47 -0.11287 -0.06460 -0.01973 -0.00897 -0.04267 -0.00685 + 48 0.70672 0.41504 0.12260 0.06945 0.29014 0.04268 + 49 0.14598 0.13302 -0.34203 0.02326 -0.08284 -0.26189 + 50 -0.02460 -0.38262 -0.12479 0.48344 0.26719 0.10776 + 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 52 0.11287 -0.06460 -0.01973 0.00897 -0.04267 0.00685 + 53 -0.70672 0.41504 0.12260 -0.06945 0.29014 -0.04268 + 54 0.14598 -0.13302 0.34203 0.02326 0.08284 -0.26189 + 55 -0.02460 0.38262 0.12479 0.48344 -0.26719 0.10776 + 56 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 57 -0.52556 -0.29507 0.23009 -0.10029 -0.14004 0.20420 + 58 0.52556 -0.29507 0.23009 0.10029 -0.14004 -0.20420 + 59 -0.32347 -0.47519 -0.24776 0.35600 0.06441 -0.00414 + 60 0.32347 -0.47519 -0.24776 -0.35600 0.06441 0.00414 + + 55 56 57 58 59 60 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.08989 0.01510 0.01661 0.02005 -0.00499 0.04414 + 2 0.60853 -0.09062 -0.10600 -0.14140 0.03340 -0.32847 + 3 -0.21224 -0.11872 0.13200 -0.45433 0.70243 0.16278 + 4 0.05256 -0.36458 -0.38167 0.13629 -0.05065 0.65769 + 5 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 6 0.08989 0.01510 0.01661 -0.02005 -0.00499 -0.04414 + 7 -0.60853 -0.09062 -0.10600 0.14140 0.03340 0.32847 + 8 -0.21224 0.11872 -0.13200 -0.45433 -0.70243 0.16278 + 9 0.05256 0.36458 0.38167 0.13629 0.05065 0.65769 + 10 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 11 -0.00731 0.02725 -0.01909 -0.04609 0.00745 -0.05196 + 12 0.06373 -0.19115 0.13760 0.33349 -0.05183 0.37682 + 13 0.25124 0.25479 0.11127 -0.19457 0.23943 -0.56833 + 14 -0.08785 0.38348 -0.39209 0.12836 -0.53406 -0.24121 + 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 16 0.00731 0.02725 -0.01909 0.04609 0.00745 0.05196 + 17 -0.06373 -0.19115 0.13760 -0.33349 -0.05183 -0.37682 + 18 0.25124 -0.25479 -0.11127 -0.19457 -0.23943 -0.56833 + 19 -0.08785 -0.38348 0.39209 0.12836 0.53406 -0.24121 + 20 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 21 -0.03521 -0.03182 0.01657 -0.02074 -0.00758 0.05675 + 22 0.23245 0.21889 -0.12012 0.15486 0.05144 -0.41380 + 23 -0.36599 0.17276 0.02185 -0.04663 -0.43599 0.49652 + 24 -0.18562 0.30524 -0.44923 -0.21409 -0.41104 -0.39589 + 25 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 26 0.03521 -0.03182 0.01657 0.02074 -0.00758 -0.05675 + 27 -0.23245 0.21889 -0.12012 -0.15486 0.05144 0.41380 + 28 -0.36599 -0.17276 -0.02185 -0.04663 0.43599 0.49652 + 29 -0.18562 -0.30524 0.44923 -0.21409 0.41104 -0.39589 + 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 31 -0.14093 -0.20985 -0.04154 -0.02084 -0.00735 0.26969 + 32 0.14093 -0.20985 -0.04154 0.02084 -0.00735 -0.26969 + 33 -0.00222 -0.05708 -0.19612 -0.10449 0.03922 -0.27789 + 34 0.00222 -0.05708 -0.19612 0.10449 0.03922 0.27789 + 35 0.02328 -0.04109 0.04186 -0.06153 -0.02738 -0.01273 + 36 -0.17902 0.28523 -0.32807 0.46654 0.21757 0.07838 + 37 0.31030 0.54927 -0.11106 0.60802 0.42984 0.02170 + 38 0.48066 0.17254 0.66309 -0.46487 -0.31930 0.36053 + 39 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 -0.02328 -0.04109 0.04186 0.06153 -0.02738 0.01273 + 41 0.17902 0.28523 -0.32807 -0.46654 0.21757 -0.07838 + 42 0.31030 -0.54927 0.11106 0.60802 -0.42984 0.02170 + 43 0.48066 -0.17254 -0.66309 -0.46487 0.31930 0.36053 + 44 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 45 0.35066 0.31504 0.14736 0.17100 0.15757 0.04812 + 46 -0.35066 0.31504 0.14736 -0.17100 0.15757 -0.04812 + 47 -0.01851 0.03133 -0.04902 0.07130 0.04167 -0.00960 + 48 0.13135 -0.22709 0.36667 -0.53802 -0.32571 0.08189 + 49 -0.52889 -0.17006 -0.58041 0.39452 0.25502 -0.21909 + 50 -0.23694 -0.53430 0.19950 -0.54048 -0.31984 0.00187 + 51 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 52 0.01851 0.03133 -0.04902 -0.07130 0.04167 0.00960 + 53 -0.13135 -0.22709 0.36667 0.53802 -0.32571 -0.08189 + 54 -0.52889 0.17006 0.58041 0.39452 -0.25502 -0.21909 + 55 -0.23694 0.53430 -0.19950 -0.54048 0.31984 0.00187 + 56 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 57 0.36329 0.28938 0.26297 -0.01006 -0.03248 0.13722 + 58 -0.36329 0.28938 0.26297 0.01006 -0.03248 -0.13722 + 59 -0.33886 -0.33075 -0.11581 -0.09330 -0.04790 -0.06477 + 60 0.33886 -0.33075 -0.11581 0.09330 -0.04790 0.06477 + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2631.731379210404 0.000000000000 0.000000000000 + 0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678692 + + Multipole analysis of the density + --------------------------------- + + L x y z total alpha beta nuclear + - - - - ----- ----- ---- ------- + 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 + + 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 + 1 0 1 0 0.000000 0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 0.000000 + + 2 2 0 0 -37.347169 -141.071520 -141.071520 244.795872 + 2 1 1 0 0.066522 2.848775 2.848775 -5.631027 + 2 1 0 1 -0.000000 -0.000000 -0.000000 0.000000 + 2 0 2 0 -37.714763 -767.339031 -767.339031 1496.963300 + 2 0 1 1 0.000000 0.000000 0.000000 0.000000 + 2 0 0 2 -43.587345 -21.793672 -21.793672 0.000000 + + + Parallel integral file used 8 records with 0 large values + + + ------------- + Dipole Moment + ------------- + + Center of charge (in au) is the expansion point + X = 0.0000000 Y = 0.0000000 Z = 0.0000000 + + Dipole moment 0.0000000000 A.U. + DMX -0.0000000000 DMXEFC 0.0000000000 + DMY 0.0000000000 DMYEFC 0.0000000000 + DMZ 0.0000000000 DMZEFC 0.0000000000 + -EFC- dipole 0.0000000000 A.U. + Total dipole 0.0000000000 A.U. + + Dipole moment 0.0000000000 Debye(s) + DMX -0.0000000000 DMXEFC 0.0000000000 + DMY 0.0000000000 DMYEFC 0.0000000000 + DMZ 0.0000000000 DMZEFC 0.0000000000 + -EFC- dipole 0.0000000000 DEBYE(S) + Total dipole 0.0000000000 DEBYE(S) + + 1 a.u. = 2.541766 Debyes + + ----------------- + Quadrupole Moment + ----------------- + + Center of charge (in au) is the expansion point + X = 0.0000000 Y = 0.0000000 Z = 0.0000000 + + < R**2 > = ********** a.u. ( 1 a.u. = 0.280023 10**(-16) cm**2 ) + ( also called diamagnetic susceptibility ) + + Second moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX -37.3471685133 0.0000000000 -37.3471685133 + YY -37.7147628233 0.0000000000 -37.7147628233 + ZZ -43.5873445806 0.0000000000 -43.5873445806 + XY 0.0665220953 0.0000000000 0.0665220953 + XZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 + + Second moments in buckingham(s) + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX -50.2286177524 0.0000000000 -50.2286177524 + YY -50.7229993834 0.0000000000 -50.7229993834 + ZZ -58.6210991872 0.0000000000 -58.6210991872 + XY 0.0894662977 0.0000000000 0.0894662977 + XZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 + + Quadrupole moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX 3.3038851887 0.0000000000 3.3038851887 + YY 2.7524937236 0.0000000000 2.7524937236 + ZZ -6.0563789123 0.0000000000 -6.0563789123 + XY 0.0997831429 0.0000000000 0.0997831429 + XZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 + + Quadrupole moments in buckingham(s) + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX 4.4434315330 0.0000000000 4.4434315330 + YY 3.7018590864 0.0000000000 3.7018590864 + ZZ -8.1452906193 0.0000000000 -8.1452906193 + XY 0.1341994465 0.0000000000 0.1341994465 + XZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 + + 1 a.u. = 1.344911 Buckinghams = 1.344911 10**(-26) esu*cm**2 + + --------------- + Octupole Moment + --------------- + + Center of charge (in au) is the expansion point + X = 0.0000000 Y = 0.0000000 Z = 0.0000000 + + Third moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 + + Third moments in 10**(-34) esu*cm**3 + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 + + Octupole moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 + + Octupole moments in 10**(-34) esu*cm**3 + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 + + 1 a.u. = 0.711688 10**(-34) esu*cm**3 + + + ---------------------------- + Mulliken population analysis + ---------------------------- + + Total S,P,D,... shell population + -------------------------------- + Atom S P + -------------------------------------------------------------------------------------- + 1 C 3.13683 2.86758 + 2 C 3.13683 2.86758 + 3 C 3.15099 2.92571 + 4 C 3.15099 2.92571 + 5 C 3.14877 2.92836 + 6 C 3.14877 2.92836 + 7 H 0.92201 0.00000 + 8 H 0.92201 0.00000 + 9 H 0.92068 0.00000 + 10 H 0.92068 0.00000 + 11 C 3.15391 2.92242 + 12 C 3.15391 2.92242 + 13 H 0.92331 0.00000 + 14 H 0.92331 0.00000 + 15 C 3.16903 2.98580 + 16 C 3.16903 2.98580 + 17 H 0.92389 0.00000 + 18 H 0.92389 0.00000 + 19 H 0.92070 0.00000 + 20 H 0.92070 0.00000 + + ----- Total gross population on atoms ---- + + 1 C 6.0 6.00441 + 2 C 6.0 6.00441 + 3 C 6.0 6.07670 + 4 C 6.0 6.07670 + 5 C 6.0 6.07713 + 6 C 6.0 6.07713 + 7 H 1.0 0.92201 + 8 H 1.0 0.92201 + 9 H 1.0 0.92068 + 10 H 1.0 0.92068 + 11 C 6.0 6.07633 + 12 C 6.0 6.07633 + 13 H 1.0 0.92331 + 14 H 1.0 0.92331 + 15 C 6.0 6.15483 + 16 C 6.0 6.15483 + 17 H 1.0 0.92389 + 18 H 1.0 0.92389 + 19 H 1.0 0.92070 + 20 H 1.0 0.92070 + + ----- Bond indices ----- + 1- 1 0.00000 1- 2 0.09858 1- 3 1.36307 1- 4 0.00313 1- 5 0.00305 1- 6 1.36519 1- 7 0.00447 1- 8 0.00733 + 2- 1 0.09858 2- 2 0.00000 2- 3 0.00313 2- 4 1.36307 2- 5 1.36519 2- 6 0.00305 2- 7 0.00733 2- 8 0.00447 + 3- 1 1.36307 3- 2 0.00313 3- 3 0.00000 3- 4 0.09865 3- 5 1.46517 3- 6 0.00361 3- 7 0.96133 3- 8 0.00021 + 4- 1 0.00313 4- 2 1.36307 4- 3 0.09865 4- 4 0.00000 4- 5 0.00361 4- 6 1.46517 4- 7 0.00021 4- 8 0.96133 + 5- 1 0.00305 5- 2 1.36519 5- 3 1.46517 5- 4 0.00361 5- 5 0.00000 5- 6 0.10218 5- 7 0.00381 5- 8 0.00699 + 6- 1 1.36519 6- 2 0.00305 6- 3 0.00361 6- 4 1.46517 6- 5 0.10218 6- 6 0.00000 6- 7 0.00699 6- 8 0.00381 + 7- 1 0.00447 7- 2 0.00733 7- 3 0.96133 7- 4 0.00021 7- 5 0.00381 7- 6 0.00699 7- 7 0.00000 7- 8 0.00007 + 8- 1 0.00733 8- 2 0.00447 8- 3 0.00021 8- 4 0.96133 8- 5 0.00699 8- 6 0.00381 8- 7 0.00007 8- 8 0.00000 + 9- 1 0.00729 9- 2 0.00424 9- 3 0.00373 9- 4 0.00702 9- 5 0.95945 9- 6 0.00019 9- 7 0.00292 9- 8 0.00118 + 10- 1 0.00424 10- 2 0.00729 10- 3 0.00702 10- 4 0.00373 10- 5 0.00019 10- 6 0.95945 10- 7 0.00118 10- 8 0.00292 + 11- 1 0.00023 11- 2 1.06640 11- 3 0.00888 11- 4 0.00560 11- 5 0.00473 11- 6 0.00771 11- 7 0.00097 11- 8 0.00271 + 12- 1 1.06640 12- 2 0.00023 12- 3 0.00560 12- 4 0.00888 12- 5 0.00771 12- 6 0.00473 12- 7 0.00271 12- 8 0.00097 + 13- 1 0.00004 13- 2 0.00563 13- 3 0.00073 13- 4 0.00197 13- 5 0.00605 13- 6 0.00007 13- 7 0.00029 13- 8 0.00141 + 14- 1 0.00563 14- 2 0.00004 14- 3 0.00197 14- 4 0.00073 14- 5 0.00007 14- 6 0.00605 14- 7 0.00141 14- 8 0.00029 + 15- 1 0.02591 15- 2 0.00353 15- 3 0.00033 15- 4 0.04473 15- 5 0.04010 15- 6 0.00077 15- 7 0.00002 15- 8 0.00009 + 16- 1 0.00353 16- 2 0.02591 16- 3 0.04473 16- 4 0.00033 16- 5 0.00077 16- 6 0.04010 16- 7 0.00009 16- 8 0.00002 + 17- 1 0.00001 17- 2 0.00446 17- 3 0.00011 17- 4 0.00015 17- 5 0.00034 17- 6 0.00002 17- 7 0.00002 17- 8 0.00002 + 18- 1 0.00446 18- 2 0.00001 18- 3 0.00015 18- 4 0.00011 18- 5 0.00002 18- 6 0.00034 18- 7 0.00002 18- 8 0.00002 + 19- 1 0.00003 19- 2 0.01046 19- 3 0.00000 19- 4 0.00080 19- 5 0.00042 19- 6 0.00023 19- 7 0.00002 19- 8 0.00006 + 20- 1 0.01046 20- 2 0.00003 20- 3 0.00080 20- 4 0.00000 20- 5 0.00023 20- 6 0.00042 20- 7 0.00006 20- 8 0.00002 + 1- 9 0.00729 1-10 0.00424 1-11 0.00023 1-12 1.06640 1-13 0.00004 1-14 0.00563 1-15 0.02591 1-16 0.00353 + 2- 9 0.00424 2-10 0.00729 2-11 1.06640 2-12 0.00023 2-13 0.00563 2-14 0.00004 2-15 0.00353 2-16 0.02591 + 3- 9 0.00373 3-10 0.00702 3-11 0.00888 3-12 0.00560 3-13 0.00073 3-14 0.00197 3-15 0.00033 3-16 0.04473 + 4- 9 0.00702 4-10 0.00373 4-11 0.00560 4-12 0.00888 4-13 0.00197 4-14 0.00073 4-15 0.04473 4-16 0.00033 + 5- 9 0.95945 5-10 0.00019 5-11 0.00473 5-12 0.00771 5-13 0.00605 5-14 0.00007 5-15 0.04010 5-16 0.00077 + 6- 9 0.00019 6-10 0.95945 6-11 0.00771 6-12 0.00473 6-13 0.00007 6-14 0.00605 6-15 0.00077 6-16 0.04010 + 7- 9 0.00292 7-10 0.00118 7-11 0.00097 7-12 0.00271 7-13 0.00029 7-14 0.00141 7-15 0.00002 7-16 0.00009 + 8- 9 0.00118 8-10 0.00292 8-11 0.00271 8-12 0.00097 8-13 0.00141 8-14 0.00029 8-15 0.00009 8-16 0.00002 + 9- 9 0.00000 9-10 0.00008 9-11 0.00301 9-12 0.00095 9-13 0.00010 9-14 0.00004 9-15 0.00040 9-16 0.00016 + 10- 9 0.00008 10-10 0.00000 10-11 0.00095 10-12 0.00301 10-13 0.00004 10-14 0.00010 10-15 0.00016 10-16 0.00040 + 11- 9 0.00301 11-10 0.00095 11-11 0.00000 11-12 0.00044 11-13 0.95915 11-14 0.00000 11-15 1.90133 11-16 0.00003 + 12- 9 0.00095 12-10 0.00301 12-11 0.00044 12-12 0.00000 12-13 0.00000 12-14 0.95915 12-15 0.00003 12-16 1.90133 + 13- 9 0.00010 13-10 0.00004 13-11 0.95915 13-12 0.00000 13-13 0.00000 13-14 0.00000 13-15 0.00281 13-16 0.00000 + 14- 9 0.00004 14-10 0.00010 14-11 0.00000 14-12 0.95915 14-13 0.00000 14-14 0.00000 14-15 0.00000 14-16 0.00281 + 15- 9 0.00040 15-10 0.00016 15-11 1.90133 15-12 0.00003 15-13 0.00281 15-14 0.00000 15-15 0.00000 15-16 0.00895 + 16- 9 0.00016 16-10 0.00040 16-11 0.00003 16-12 1.90133 16-13 0.00000 16-14 0.00281 16-15 0.00895 16-16 0.00000 + 17- 9 0.00273 17-10 0.00002 17-11 0.00313 17-12 0.00000 17-13 0.01161 17-14 0.00000 17-15 0.96639 17-16 0.00000 + 18- 9 0.00002 18-10 0.00273 18-11 0.00000 18-12 0.00313 18-13 0.00000 18-14 0.01161 18-15 0.00000 18-16 0.96639 + 19- 9 0.00012 19-10 0.00007 19-11 0.00283 19-12 0.00000 19-13 0.00423 19-14 0.00000 19-15 0.96924 19-16 0.00000 + 20- 9 0.00007 20-10 0.00012 20-11 0.00000 20-12 0.00283 20-13 0.00000 20-14 0.00423 20-15 0.00000 20-16 0.96924 + 1-17 0.00001 1-18 0.00446 1-19 0.00003 1-20 0.01046 + 2-17 0.00446 2-18 0.00001 2-19 0.01046 2-20 0.00003 + 3-17 0.00011 3-18 0.00015 3-19 0.00000 3-20 0.00080 + 4-17 0.00015 4-18 0.00011 4-19 0.00080 4-20 0.00000 + 5-17 0.00034 5-18 0.00002 5-19 0.00042 5-20 0.00023 + 6-17 0.00002 6-18 0.00034 6-19 0.00023 6-20 0.00042 + 7-17 0.00002 7-18 0.00002 7-19 0.00002 7-20 0.00006 + 8-17 0.00002 8-18 0.00002 8-19 0.00006 8-20 0.00002 + 9-17 0.00273 9-18 0.00002 9-19 0.00012 9-20 0.00007 + 10-17 0.00002 10-18 0.00273 10-19 0.00007 10-20 0.00012 + 11-17 0.00313 11-18 0.00000 11-19 0.00283 11-20 0.00000 + 12-17 0.00000 12-18 0.00313 12-19 0.00000 12-20 0.00283 + 13-17 0.01161 13-18 0.00000 13-19 0.00423 13-20 0.00000 + 14-17 0.00000 14-18 0.01161 14-19 0.00000 14-20 0.00423 + 15-17 0.96639 15-18 0.00000 15-19 0.96924 15-20 0.00000 + 16-17 0.00000 16-18 0.96639 16-19 0.00000 16-20 0.96924 + 17-17 0.00000 17-18 0.00000 17-19 0.00520 17-20 0.00000 + 18-17 0.00000 18-18 0.00000 18-19 0.00000 18-20 0.00520 + 19-17 0.00520 19-18 0.00000 19-19 0.00000 19-20 0.00000 + 20-17 0.00000 20-18 0.00520 20-19 0.00000 20-20 0.00000 + + Large bond indices + ------------------ + 1 C - 3 C 1.36307 + 1 C - 6 C 1.36519 + 1 C - 12 C 1.06640 + 2 C - 4 C 1.36307 + 2 C - 5 C 1.36519 + 2 C - 11 C 1.06640 + 3 C - 5 C 1.46517 + 3 C - 7 H 0.96133 + 4 C - 6 C 1.46517 + 4 C - 8 H 0.96133 + 5 C - 6 C 0.10218 + 5 C - 9 H 0.95945 + 6 C - 10 H 0.95945 + 11 C - 13 H 0.95915 + 11 C - 15 C 1.90133 + 12 C - 14 H 0.95915 + 12 C - 16 C 1.90133 + 15 C - 17 H 0.96639 + 15 C - 19 H 0.96924 + 16 C - 18 H 0.96639 + 16 C - 20 H 0.96924 + + Free electrons Valency + Number of Sum of + Bond indices - Bond indices + Valency Free electrons Bond indices =Mulliken charge = Net spin population + 1 C 3.97306 2.03135 3.97306 6.00441 0.00000 + 2 C 3.97306 2.03135 3.97306 6.00441 -0.00000 + 3 C 3.96923 2.10747 3.96923 6.07670 -0.00000 + 4 C 3.96923 2.10747 3.96923 6.07670 -0.00000 + 5 C 3.97007 2.10706 3.97007 6.07713 -0.00000 + 6 C 3.97007 2.10706 3.97007 6.07713 -0.00000 + 7 H 0.99392 -0.07191 0.99392 0.92201 -0.00000 + 8 H 0.99392 -0.07191 0.99392 0.92201 -0.00000 + 9 H 0.99371 -0.07303 0.99371 0.92068 -0.00000 + 10 H 0.99371 -0.07303 0.99371 0.92068 -0.00000 + 11 C 3.96810 2.10823 3.96810 6.07633 0.00000 + 12 C 3.96810 2.10823 3.96810 6.07633 0.00000 + 13 H 0.99412 -0.07081 0.99412 0.92331 -0.00000 + 14 H 0.99412 -0.07081 0.99412 0.92331 0.00000 + 15 C 3.96478 2.19006 3.96478 6.15483 -0.00000 + 16 C 3.96478 2.19006 3.96478 6.15483 -0.00000 + 17 H 0.99421 -0.07032 0.99421 0.92389 -0.00000 + 18 H 0.99421 -0.07032 0.99421 0.92389 -0.00000 + 19 H 0.99371 -0.07301 0.99371 0.92070 0.00000 + 20 H 0.99371 -0.07301 0.99371 0.92070 -0.00000 + + Task times cpu: 48.4s wall: 49.2s + Summary of allocated global arrays +----------------------------------- + No active global arrays + + + + GA Statistics for process 0 + ------------------------------ + + create destroy get put acc scatter gather read&inc +calls: 668 668 2.18e+05 4760 1.54e+05 420 0 8364 +number of processes/call 1.00e+00 1.00e+00 1.00e+00 1.00e+00 0.00e+00 +bytes total: 3.09e+07 6.60e+06 1.62e+07 3.09e+04 0.00e+00 6.69e+04 +bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 1123200 bytes +MA_summarize_allocated_blocks: starting scan ... +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +MA usage statistics: + + allocation statistics: + heap stack + ---- ----- + current number of blocks 0 0 + maximum number of blocks 24 54 + current total bytes 0 0 + maximum total bytes 61308712 22516376 + maximum total K-bytes 61309 22517 + maximum total M-bytes 62 23 + + + NWChem Input Module + ------------------- + + + + + + CITATION + -------- + Please cite the following reference when publishing + results obtained with NWChem: + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + + AUTHORS + ------- + E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, + J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, + S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, + F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, + P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, + D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, + A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, + A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, + H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, + K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, + H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, + A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, + R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, + K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, + A. T. Wong, Z. Zhang. + + Total times cpu: 48.5s wall: 51.1s diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.nw b/data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.nw new file mode 100644 index 000000000..a68f29933 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.nw @@ -0,0 +1,40 @@ + start dvb + title "Divinylbenzene in STO-3G basis set" + + geometry units angstroms + C -1.4152533224 0.2302217854 0.0000000000 + C 1.4152533224 -0.2302217854 0.0000000000 + C -0.4951331558 1.3144608674 0.0000000000 + C 0.4951331558 -1.3144608674 0.0000000000 + C 0.8894090436 1.0909493743 0.0000000000 + C -0.8894090436 -1.0909493743 0.0000000000 + H -0.8795511985 2.3437343748 0.0000000000 + H 0.8795511985 -2.3437343748 0.0000000000 + H 1.5779041557 1.9450061275 0.0000000000 + H -1.5779041557 -1.9450061275 0.0000000000 + C 2.8845844962 -0.5210893778 0.0000000000 + C -2.8845844962 0.5210893778 0.0000000000 + H 3.1403356810 -1.5919605685 0.0000000000 + H -3.1403356810 1.5919605685 0.0000000000 + C 3.8800428103 0.3822535424 0.0000000000 + C -3.8800428103 -0.3822535424 0.0000000000 + H 3.6946765858 1.4624389570 0.0000000000 + H -3.6946765858 -1.4624389570 0.0000000000 + H 4.9316453546 0.0711049543 0.0000000000 + H -4.9316453546 -0.0711049543 0.0000000000 + end + basis + * library sto-3g + end + dft + xc b3lyp + grid xfine + print "final vectors" "final vectors analysis" "overlap" + end + property + mulliken + dipole + quadrupole + octupole + end + task dft property diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.out b/data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.out new file mode 100644 index 000000000..c0f71933e --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.out @@ -0,0 +1,2776 @@ + argument 1 = dvb_sp_ks_overlaps.nw + + + + + Northwest Computational Chemistry Package (NWChem) 6.5 + ------------------------------------------------------ + + + Environmental Molecular Sciences Laboratory + Pacific Northwest National Laboratory + Richland, WA 99352 + + Copyright (c) 1994-2014 + Pacific Northwest National Laboratory + Battelle Memorial Institute + + NWChem is an open-source computational chemistry package + distributed under the terms of the + Educational Community License (ECL) 2.0 + A copy of the license is included with this distribution + in the LICENSE.TXT file + + ACKNOWLEDGMENT + -------------- + + This software and its documentation were developed at the + EMSL at Pacific Northwest National Laboratory, a multiprogram + national laboratory, operated for the U.S. Department of Energy + by Battelle under Contract Number DE-AC05-76RL01830. Support + for this work was provided by the Department of Energy Office + of Biological and Environmental Research, Office of Basic + Energy Sciences, and the Office of Advanced Scientific Computing. + + + Job information + --------------- + + hostname = boman + program = /usr/lib64/mpich/bin/nwchem_mpich + date = Thu Jan 22 19:57:31 2015 + + compiled = Sat_Dec_06_13:02:58_2014 + source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 + nwchem branch = 6.5 + nwchem revision = 26243 + ga revision = 10506 + input = dvb_sp_ks_overlaps.nw + prefix = dvb. + data base = ./dvb.db + status = startup + nproc = 1 + time left = -1s + + + + Memory information + ------------------ + + heap = 13107194 doubles = 100.0 Mbytes + stack = 13107199 doubles = 100.0 Mbytes + global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) + total = 52428793 doubles = 400.0 Mbytes + verify = yes + hardfail = no + + + Directory information + --------------------- + + 0 permanent = . + 0 scratch = . + + + + + NWChem Input Module + ------------------- + + + Divinylbenzene in STO-3G basis set + ---------------------------------- + + Scaling coordinates for geometry "geometry" by 1.889725989 + (inverse scale = 0.529177249) + + C2H symmetry detected + + ------ + auto-z + ------ + + + Geometry "geometry" -> "" + ------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.23680554 1.41416660 0.00000000 + 2 C 6.0000 -0.23680554 -1.41416660 0.00000000 + 3 C 6.0000 1.31675086 0.48901061 0.00000000 + 4 C 6.0000 -1.31675086 -0.48901061 0.00000000 + 5 C 6.0000 1.08679847 -0.89447642 0.00000000 + 6 C 6.0000 -1.08679847 0.89447642 0.00000000 + 7 H 1.0000 2.34780221 0.86863451 0.00000000 + 8 H 1.0000 -2.34780221 -0.86863451 0.00000000 + 9 H 1.0000 1.93764188 -1.58693865 0.00000000 + 10 H 1.0000 -1.93764188 1.58693865 0.00000000 + 11 C 6.0000 -0.53450789 -2.88212824 0.00000000 + 12 C 6.0000 0.53450789 2.88212824 0.00000000 + 13 H 1.0000 -1.60655769 -3.13289308 0.00000000 + 14 H 1.0000 1.60655769 3.13289308 0.00000000 + 15 C 6.0000 0.36419263 -3.88177971 0.00000000 + 16 C 6.0000 -0.36419263 3.88177971 0.00000000 + 17 H 1.0000 1.44522900 -3.70144241 0.00000000 + 18 H 1.0000 -1.44522900 3.70144241 0.00000000 + 19 H 1.0000 0.04815351 -4.93192286 0.00000000 + 20 H 1.0000 -0.04815351 4.93192286 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 445.9370121674 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value + ----------- -------- ----- ----- ----- ----- ----- ---------- + 1 Stretch 1 3 1.42204 + 2 Stretch 1 6 1.42197 + 3 Stretch 1 12 1.49784 + 4 Stretch 2 4 1.42204 + 5 Stretch 2 5 1.42197 + 6 Stretch 2 11 1.49784 + 7 Stretch 3 5 1.40247 + 8 Stretch 3 7 1.09872 + 9 Stretch 4 6 1.40247 + 10 Stretch 4 8 1.09872 + 11 Stretch 5 9 1.09701 + 12 Stretch 6 10 1.09701 + 13 Stretch 11 13 1.10099 + 14 Stretch 11 15 1.34423 + 15 Stretch 12 14 1.10099 + 16 Stretch 12 16 1.34423 + 17 Stretch 15 17 1.09597 + 18 Stretch 15 19 1.09667 + 19 Stretch 16 18 1.09597 + 20 Stretch 16 20 1.09667 + 21 Bend 1 3 5 121.14867 + 22 Bend 1 3 7 119.20109 + 23 Bend 1 6 4 120.87358 + 24 Bend 1 6 10 119.42285 + 25 Bend 1 12 14 114.62953 + 26 Bend 1 12 16 126.57992 + 27 Bend 2 4 6 121.14867 + 28 Bend 2 4 8 119.20109 + 29 Bend 2 5 3 120.87358 + 30 Bend 2 5 9 119.42285 + 31 Bend 2 11 13 114.62953 + 32 Bend 2 11 15 126.57992 + 33 Bend 3 1 6 117.97776 + 34 Bend 3 1 12 119.12155 + 35 Bend 3 5 9 119.70357 + 36 Bend 4 2 5 117.97776 + 37 Bend 4 2 11 119.12155 + 38 Bend 4 6 10 119.70357 + 39 Bend 5 2 11 122.90069 + 40 Bend 5 3 7 119.65024 + 41 Bend 6 1 12 122.90069 + 42 Bend 6 4 8 119.65024 + 43 Bend 11 15 17 122.48517 + 44 Bend 11 15 19 121.29492 + 45 Bend 12 16 18 122.48517 + 46 Bend 12 16 20 121.29492 + 47 Bend 13 11 15 118.79054 + 48 Bend 14 12 16 118.79054 + 49 Bend 17 15 19 116.21990 + 50 Bend 18 16 20 116.21990 + 51 Torsion 1 3 5 2 0.00000 + 52 Torsion 1 3 5 9 180.00000 + 53 Torsion 1 6 4 2 0.00000 + 54 Torsion 1 6 4 8 180.00000 + 55 Torsion 1 12 16 18 0.00000 + 56 Torsion 1 12 16 20 180.00000 + 57 Torsion 2 4 6 10 180.00000 + 58 Torsion 2 5 3 7 180.00000 + 59 Torsion 2 11 15 17 0.00000 + 60 Torsion 2 11 15 19 180.00000 + 61 Torsion 3 1 6 4 0.00000 + 62 Torsion 3 1 6 10 180.00000 + 63 Torsion 3 1 12 14 0.00000 + 64 Torsion 3 1 12 16 180.00000 + 65 Torsion 3 5 2 4 0.00000 + 66 Torsion 3 5 2 11 180.00000 + 67 Torsion 4 2 5 9 180.00000 + 68 Torsion 4 2 11 13 0.00000 + 69 Torsion 4 2 11 15 180.00000 + 70 Torsion 4 6 1 12 180.00000 + 71 Torsion 5 2 4 6 -0.00000 + 72 Torsion 5 2 4 8 180.00000 + 73 Torsion 5 2 11 13 180.00000 + 74 Torsion 5 2 11 15 0.00000 + 75 Torsion 5 3 1 6 0.00000 + 76 Torsion 5 3 1 12 180.00000 + 77 Torsion 6 1 3 7 180.00000 + 78 Torsion 6 1 12 14 180.00000 + 79 Torsion 6 1 12 16 0.00000 + 80 Torsion 6 4 2 11 180.00000 + 81 Torsion 7 3 1 12 -0.00000 + 82 Torsion 7 3 5 9 0.00000 + 83 Torsion 8 4 2 11 -0.00000 + 84 Torsion 8 4 6 10 0.00000 + 85 Torsion 9 5 2 11 0.00000 + 86 Torsion 10 6 1 12 0.00000 + 87 Torsion 13 11 15 17 180.00000 + 88 Torsion 13 11 15 19 -0.00000 + 89 Torsion 14 12 16 18 180.00000 + 90 Torsion 14 12 16 20 -0.00000 + + + XYZ format geometry + ------------------- + 20 + geometry + C 0.23680554 1.41416660 0.00000000 + C -0.23680554 -1.41416660 0.00000000 + C 1.31675086 0.48901061 0.00000000 + C -1.31675086 -0.48901061 0.00000000 + C 1.08679847 -0.89447642 0.00000000 + C -1.08679847 0.89447642 0.00000000 + H 2.34780221 0.86863451 0.00000000 + H -2.34780221 -0.86863451 0.00000000 + H 1.93764188 -1.58693865 0.00000000 + H -1.93764188 1.58693865 0.00000000 + C -0.53450789 -2.88212824 0.00000000 + C 0.53450789 2.88212824 0.00000000 + H -1.60655769 -3.13289308 0.00000000 + H 1.60655769 3.13289308 0.00000000 + C 0.36419263 -3.88177971 0.00000000 + C -0.36419263 3.88177971 0.00000000 + H 1.44522900 -3.70144241 0.00000000 + H -1.44522900 3.70144241 0.00000000 + H 0.04815351 -4.93192286 0.00000000 + H -0.04815351 4.93192286 0.00000000 + + ============================================================================== + internuclear distances + ------------------------------------------------------------------------------ + center one | center two | atomic units | angstroms + ------------------------------------------------------------------------------ + 3 C | 1 C | 2.68726 | 1.42204 + 4 C | 2 C | 2.68726 | 1.42204 + 5 C | 2 C | 2.68714 | 1.42197 + 5 C | 3 C | 2.65028 | 1.40247 + 6 C | 1 C | 2.68714 | 1.42197 + 6 C | 4 C | 2.65028 | 1.40247 + 7 H | 3 C | 2.07628 | 1.09872 + 8 H | 4 C | 2.07628 | 1.09872 + 9 H | 5 C | 2.07305 | 1.09701 + 10 H | 6 C | 2.07305 | 1.09701 + 11 C | 2 C | 2.83052 | 1.49784 + 12 C | 1 C | 2.83052 | 1.49784 + 13 H | 11 C | 2.08056 | 1.10099 + 14 H | 12 C | 2.08056 | 1.10099 + 15 C | 11 C | 2.54023 | 1.34423 + 16 C | 12 C | 2.54023 | 1.34423 + 17 H | 15 C | 2.07109 | 1.09597 + 18 H | 16 C | 2.07109 | 1.09597 + 19 H | 15 C | 2.07240 | 1.09667 + 20 H | 16 C | 2.07240 | 1.09667 + ------------------------------------------------------------------------------ + number of included internuclear distances: 20 + ============================================================================== + + + + ============================================================================== + internuclear angles + ------------------------------------------------------------------------------ + center 1 | center 2 | center 3 | degrees + ------------------------------------------------------------------------------ + 3 C | 1 C | 6 C | 117.98 + 3 C | 1 C | 12 C | 119.12 + 6 C | 1 C | 12 C | 122.90 + 4 C | 2 C | 5 C | 117.98 + 4 C | 2 C | 11 C | 119.12 + 5 C | 2 C | 11 C | 122.90 + 1 C | 3 C | 5 C | 121.15 + 1 C | 3 C | 7 H | 119.20 + 5 C | 3 C | 7 H | 119.65 + 2 C | 4 C | 6 C | 121.15 + 2 C | 4 C | 8 H | 119.20 + 6 C | 4 C | 8 H | 119.65 + 2 C | 5 C | 3 C | 120.87 + 2 C | 5 C | 9 H | 119.42 + 3 C | 5 C | 9 H | 119.70 + 1 C | 6 C | 4 C | 120.87 + 1 C | 6 C | 10 H | 119.42 + 4 C | 6 C | 10 H | 119.70 + 2 C | 11 C | 13 H | 114.63 + 2 C | 11 C | 15 C | 126.58 + 13 H | 11 C | 15 C | 118.79 + 1 C | 12 C | 14 H | 114.63 + 1 C | 12 C | 16 C | 126.58 + 14 H | 12 C | 16 C | 118.79 + 11 C | 15 C | 17 H | 122.49 + 11 C | 15 C | 19 H | 121.29 + 17 H | 15 C | 19 H | 116.22 + 12 C | 16 C | 18 H | 122.49 + 12 C | 16 C | 20 H | 121.29 + 18 H | 16 C | 20 H | 116.22 + ------------------------------------------------------------------------------ + number of included internuclear angles: 30 + ============================================================================== + + + + library name resolved from: environment + library file name is: + + + + Summary of "ao basis" -> "" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + * sto-3g on all atoms + + + NWChem Property Module + ---------------------- + + + Divinylbenzene in STO-3G basis set + + itol2e modified to match energy + convergence criterion. + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + Basis "ao basis" -> "ao basis" (cartesian) + ----- + C (Carbon) + ---------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 7.16168370E+01 0.154329 + 1 S 1.30450960E+01 0.535328 + 1 S 3.53051220E+00 0.444635 + + 2 S 2.94124940E+00 -0.099967 + 2 S 6.83483100E-01 0.399513 + 2 S 2.22289900E-01 0.700115 + + 3 P 2.94124940E+00 0.155916 + 3 P 6.83483100E-01 0.607684 + 3 P 2.22289900E-01 0.391957 + + H (Hydrogen) + ------------ + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.42525091E+00 0.154329 + 1 S 6.23913730E-01 0.535328 + 1 S 1.68855400E-01 0.444635 + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + ==================================== + Begin overlap 1-e integrals + ==================================== +1eov 7 C s 1 C s 0.00030276 +1eov 8 C p 1 C s 0.00013634 +1eov 9 C p 1 C s 0.00081417 +1eov 17 C s 1 C s 0.00158642 +1eov 18 C p 1 C s 0.00234748 +1eov 19 C p 1 C s 0.00287577 +1eov 26 C s 1 C s 0.00000058 +1eov 27 C s 1 C s 0.03557692 +1eov 28 C p 1 C s 0.05494002 +1eov 29 C p 1 C s 0.02157125 +1eov 32 H s 1 C s 0.00007985 +1eov 34 H s 1 C s 0.00508021 +1eov 40 C s 1 C s 0.00000014 +1eov 41 C s 1 C s 0.02955008 +1eov 42 C p 1 C s -0.00979645 +1eov 43 C p 1 C s -0.04830601 +1eov 46 H s 1 C s 0.00486942 +1eov 53 C s 1 C s 0.00115883 +1eov 54 C p 1 C s 0.00066296 +1eov 55 C p 1 C s -0.00272201 +1eov 58 H s 1 C s 0.00074066 +1eov 60 H s 1 C s 0.00005752 +1eov 6 C s 2 C s 0.00030276 +1eov 7 C s 2 C s 0.02186954 +1eov 8 C p 2 C s 0.00590170 +1eov 9 C p 2 C s 0.03524407 +1eov 16 C s 2 C s 0.00158642 +1eov 17 C s 2 C s 0.05618847 +1eov 18 C p 2 C s 0.05279983 +1eov 19 C p 2 C s 0.06468219 +1eov 26 C s 2 C s 0.03557692 +1eov 27 C s 2 C s 0.35374328 +1eov 28 C p 2 C s 0.35361990 +1eov 29 C p 2 C s 0.13884273 +1eov 32 H s 2 C s 0.00590154 +1eov 34 H s 2 C s 0.09284483 +1eov 40 C s 2 C s 0.02955008 +1eov 41 C s 2 C s 0.31760627 +1eov 42 C p 2 C s -0.06995906 +1eov 43 C p 2 C s -0.34496609 +1eov 46 H s 2 C s 0.09006704 +1eov 52 C s 2 C s 0.00115883 +1eov 53 C s 2 C s 0.04688356 +1eov 54 C p 2 C s 0.01682232 +1eov 55 C p 2 C s -0.06907006 +1eov 58 H s 2 C s 0.02467969 +1eov 60 H s 2 C s 0.00480795 +1eov 6 C s 3 C p -0.00013634 +1eov 6 C s 4 C p -0.00081417 +1eov 7 C s 3 C p -0.00590170 +1eov 7 C s 4 C p -0.03524407 +1eov 8 C p 3 C p 0.00660737 +1eov 9 C p 3 C p -0.01021452 +1eov 8 C p 4 C p -0.01021452 +1eov 9 C p 4 C p -0.05268175 +1eov 10 C p 5 C p 0.00831781 +1eov 16 C s 3 C p -0.00234748 +1eov 16 C s 4 C p -0.00287577 +1eov 17 C s 3 C p -0.05279983 +1eov 17 C s 4 C p -0.06468219 +1eov 18 C p 3 C p -0.03131094 +1eov 19 C p 3 C p -0.06690995 +1eov 18 C p 4 C p -0.06690995 +1eov 19 C p 4 C p -0.05866033 +1eov 20 C p 5 C p 0.02330740 +1eov 26 C s 3 C p -0.05494002 +1eov 26 C s 4 C p -0.02157125 +1eov 27 C s 3 C p -0.35361990 +1eov 27 C s 4 C p -0.13884273 +1eov 28 C p 3 C p -0.25587393 +1eov 29 C p 3 C p -0.18082655 +1eov 28 C p 4 C p -0.18082655 +1eov 29 C p 4 C p 0.13367656 +1eov 30 C p 5 C p 0.20467497 +1eov 32 H s 3 C p -0.00737838 +1eov 32 H s 4 C p -0.00651680 +1eov 34 H s 3 C p -0.12012197 +1eov 34 H s 4 C p 0.00954436 +1eov 40 C s 3 C p 0.00979645 +1eov 40 C s 4 C p 0.04830601 +1eov 41 C s 3 C p 0.06995906 +1eov 41 C s 4 C p 0.34496609 +1eov 42 C p 3 C p 0.15824148 +1eov 43 C p 3 C p -0.09696631 +1eov 42 C p 4 C p -0.09696631 +1eov 43 C p 4 C p -0.30023182 +1eov 44 C p 5 C p 0.17790623 +1eov 46 H s 3 C p 0.07313632 +1eov 46 H s 4 C p 0.09176940 +1eov 52 C s 3 C p -0.00066296 +1eov 52 C s 4 C p 0.00272201 +1eov 53 C s 3 C p -0.01682232 +1eov 53 C s 4 C p 0.06907006 +1eov 54 C p 3 C p 0.01247550 +1eov 55 C p 3 C p 0.02712642 +1eov 54 C p 4 C p 0.02712642 +1eov 55 C p 4 C p -0.09229496 +1eov 56 C p 5 C p 0.01908226 +1eov 58 H s 3 C p -0.02185510 +1eov 58 H s 4 C p 0.02971915 +1eov 60 H s 3 C p -0.00065662 +1eov 60 H s 4 C p 0.00810581 +1eov 6 C s 6 C s 1.00000000 +1eov 7 C s 6 C s 0.24836239 +1eov 16 C s 6 C s 0.00000058 +1eov 17 C s 6 C s 0.03557117 +1eov 18 C p 6 C s 0.04481702 +1eov 19 C p 6 C s -0.03839337 +1eov 27 C s 6 C s 0.00156648 +1eov 28 C p 6 C s 0.00126819 +1eov 29 C p 6 C s -0.00344449 +1eov 32 H s 6 C s 0.00509264 +1eov 34 H s 6 C s 0.00007948 +1eov 41 C s 6 C s 0.00000008 +1eov 42 C p 6 C s -0.00000006 +1eov 43 C p 6 C s -0.00000035 +1eov 46 H s 6 C s 0.00000007 +1eov 7 C s 7 C s 1.00000000 +1eov 16 C s 7 C s 0.03557117 +1eov 17 C s 7 C s 0.35371041 +1eov 18 C p 7 C s 0.28849089 +1eov 19 C p 7 C s -0.24714128 +1eov 26 C s 7 C s 0.00156648 +1eov 27 C s 7 C s 0.05577904 +1eov 28 C p 7 C s 0.02866212 +1eov 29 C p 7 C s -0.07784841 +1eov 32 H s 7 C s 0.09300775 +1eov 34 H s 7 C s 0.00588416 +1eov 40 C s 7 C s 0.00000008 +1eov 41 C s 7 C s 0.00025963 +1eov 42 C p 7 C s -0.00010165 +1eov 43 C p 7 C s -0.00056623 +1eov 46 H s 7 C s 0.00008155 +1eov 53 C s 7 C s 0.00000715 +1eov 54 C p 7 C s 0.00000046 +1eov 55 C p 7 C s -0.00001894 +1eov 58 H s 7 C s 0.00002394 +1eov 60 H s 7 C s 0.00000031 +1eov 8 C p 8 C p 1.00000000 +1eov 9 C p 9 C p 1.00000000 +1eov 10 C p 10 C p 1.00000000 +1eov 16 C s 8 C p -0.04481702 +1eov 16 C s 9 C p 0.03839337 +1eov 17 C s 8 C p -0.28849089 +1eov 17 C s 9 C p 0.24714128 +1eov 18 C p 8 C p -0.10189816 +1eov 19 C p 8 C p 0.26261039 +1eov 18 C p 9 C p 0.26261039 +1eov 19 C p 9 C p -0.02032026 +1eov 20 C p 10 C p 0.20464999 +1eov 26 C s 8 C p -0.00126819 +1eov 26 C s 9 C p 0.00344449 +1eov 27 C s 8 C p -0.02866212 +1eov 27 C s 9 C p 0.07784841 +1eov 28 C p 8 C p 0.00691013 +1eov 29 C p 8 C p 0.04402519 +1eov 28 C p 9 C p 0.04402519 +1eov 29 C p 9 C p -0.09645639 +1eov 30 C p 10 C p 0.02311926 +1eov 32 H s 8 C p -0.11684634 +1eov 32 H s 9 C p 0.03019589 +1eov 34 H s 8 C p -0.00484048 +1eov 34 H s 9 C p 0.00854096 +1eov 40 C s 8 C p 0.00000006 +1eov 40 C s 9 C p 0.00000035 +1eov 41 C s 8 C p 0.00010165 +1eov 41 C s 9 C p 0.00056623 +1eov 42 C p 8 C p 0.00004318 +1eov 43 C p 8 C p -0.00022448 +1eov 42 C p 9 C p -0.00022448 +1eov 43 C p 9 C p -0.00116687 +1eov 44 C p 10 C p 0.00008348 +1eov 46 H s 8 C p 0.00006594 +1eov 46 H s 9 C p 0.00016267 +1eov 53 C s 8 C p -0.00000046 +1eov 53 C s 9 C p 0.00001894 +1eov 54 C p 8 C p 0.00000222 +1eov 55 C p 8 C p 0.00000121 +1eov 54 C p 9 C p 0.00000121 +1eov 55 C p 9 C p -0.00004804 +1eov 56 C p 10 C p 0.00000225 +1eov 58 H s 8 C p -0.00001260 +1eov 58 H s 9 C p 0.00005332 +1eov 60 H s 8 C p 0.00000003 +1eov 60 H s 9 C p 0.00000084 +1eov 17 C s 11 C s 0.00038919 +1eov 18 C p 11 C s 0.00097464 +1eov 19 C p 11 C s 0.00036196 +1eov 27 C s 11 C s 0.00170373 +1eov 28 C p 11 C s 0.00390110 +1eov 29 C p 11 C s -0.00065809 +1eov 32 H s 11 C s 0.00001119 +1eov 34 H s 11 C s 0.00008438 +1eov 41 C s 11 C s 0.00126083 +1eov 42 C p 11 C s 0.00093897 +1eov 43 C p 11 C s -0.00287258 +1eov 46 H s 11 C s 0.00131509 +1eov 53 C s 11 C s 0.00000298 +1eov 54 C p 11 C s 0.00000476 +1eov 55 C p 11 C s -0.00000960 +1eov 58 H s 11 C s 0.00000237 +1eov 60 H s 11 C s 0.00000028 +1eov 16 C s 12 C s 0.00038919 +1eov 17 C s 12 C s 0.02519187 +1eov 18 C p 12 C s 0.03809642 +1eov 19 C p 12 C s 0.01414813 +1eov 26 C s 12 C s 0.00170373 +1eov 27 C s 12 C s 0.05855627 +1eov 28 C p 12 C s 0.08539477 +1eov 29 C p 12 C s -0.01440564 +1eov 32 H s 12 C s 0.00175463 +1eov 34 H s 12 C s 0.00610906 +1eov 40 C s 12 C s 0.00126083 +1eov 41 C s 12 C s 0.04921444 +1eov 42 C p 12 C s 0.02306259 +1eov 43 C p 12 C s -0.07055543 +1eov 46 H s 12 C s 0.03623781 +1eov 52 C s 12 C s 0.00000298 +1eov 53 C s 12 C s 0.00173815 +1eov 54 C p 12 C s 0.00152273 +1eov 55 C p 12 C s -0.00307343 +1eov 58 H s 12 C s 0.00068401 +1eov 60 H s 12 C s 0.00019170 +1eov 16 C s 13 C p -0.00097464 +1eov 16 C s 14 C p -0.00036196 +1eov 17 C s 13 C p -0.03809642 +1eov 17 C s 14 C p -0.01414813 +1eov 18 C p 13 C p -0.05237600 +1eov 19 C p 13 C p -0.02304990 +1eov 18 C p 14 C p -0.02304990 +1eov 19 C p 14 C p 0.00112989 +1eov 20 C p 15 C p 0.00969008 +1eov 26 C s 13 C p -0.00390110 +1eov 26 C s 14 C p 0.00065809 +1eov 27 C s 13 C p -0.08539477 +1eov 27 C s 14 C p 0.01440564 +1eov 28 C p 13 C p -0.11288491 +1eov 29 C p 13 C p 0.02315912 +1eov 28 C p 14 C p 0.02315912 +1eov 29 C p 14 C p 0.02049256 +1eov 30 C p 15 C p 0.02439938 +1eov 32 H s 13 C p -0.00297023 +1eov 32 H s 14 C p -0.00110041 +1eov 34 H s 13 C p -0.00963282 +1eov 34 H s 14 C p 0.00324981 +1eov 40 C s 13 C p -0.00093897 +1eov 40 C s 14 C p 0.00287258 +1eov 41 C s 13 C p -0.02306259 +1eov 41 C s 14 C p 0.07055543 +1eov 42 C p 13 C p 0.00828382 +1eov 43 C p 13 C p 0.03624265 +1eov 42 C p 14 C p 0.03624265 +1eov 43 C p 14 C p -0.09074670 +1eov 44 C p 15 C p 0.02013053 +1eov 46 H s 13 C p 0.00569515 +1eov 46 H s 14 C p 0.05195639 +1eov 52 C s 13 C p -0.00000476 +1eov 52 C s 14 C p 0.00000960 +1eov 53 C s 13 C p -0.00152273 +1eov 53 C s 14 C p 0.00307343 +1eov 54 C p 13 C p -0.00079266 +1eov 55 C p 13 C p 0.00277198 +1eov 54 C p 14 C p 0.00277198 +1eov 55 C p 14 C p -0.00501418 +1eov 56 C p 15 C p 0.00058071 +1eov 58 H s 13 C p -0.00085251 +1eov 58 H s 14 C p 0.00099155 +1eov 60 H s 13 C p -0.00011575 +1eov 60 H s 14 C p 0.00037677 +1eov 16 C s 16 C s 1.00000000 +1eov 17 C s 16 C s 0.24836239 +1eov 26 C s 16 C s 0.00000082 +1eov 27 C s 16 C s 0.03728874 +1eov 28 C p 16 C s -0.01013759 +1eov 29 C p 16 C s -0.06099186 +1eov 32 H s 16 C s 0.06102076 +1eov 34 H s 16 C s 0.00527184 +1eov 41 C s 16 C s 0.00000212 +1eov 42 C p 16 C s -0.00000372 +1eov 43 C p 16 C s -0.00000677 +1eov 46 H s 16 C s 0.00000027 +1eov 53 C s 16 C s 0.00000004 +1eov 54 C p 16 C s -0.00000004 +1eov 55 C p 16 C s -0.00000017 +1eov 58 H s 16 C s 0.00000294 +1eov 17 C s 17 C s 1.00000000 +1eov 26 C s 17 C s 0.03728874 +1eov 27 C s 17 C s 0.36341085 +1eov 28 C p 17 C s -0.06345323 +1eov 29 C p 17 C s -0.38176044 +1eov 32 H s 17 C s 0.48574945 +1eov 34 H s 17 C s 0.09534612 +1eov 40 C s 17 C s 0.00000212 +1eov 41 C s 17 C s 0.00144485 +1eov 42 C p 17 C s -0.00138894 +1eov 43 C p 17 C s -0.00252926 +1eov 46 H s 17 C s 0.00018766 +1eov 52 C s 17 C s 0.00000004 +1eov 53 C s 17 C s 0.00017692 +1eov 54 C p 17 C s -0.00008529 +1eov 55 C p 17 C s -0.00039134 +1eov 58 H s 17 C s 0.00077915 +1eov 60 H s 17 C s 0.00000753 +1eov 18 C p 18 C p 1.00000000 +1eov 19 C p 19 C p 1.00000000 +1eov 20 C p 20 C p 1.00000000 +1eov 26 C s 18 C p 0.01013759 +1eov 26 C s 19 C p 0.06099186 +1eov 27 C s 18 C p 0.06345323 +1eov 27 C s 19 C p 0.38176044 +1eov 28 C p 18 C p 0.19755997 +1eov 29 C p 18 C p -0.08732635 +1eov 28 C p 19 C p -0.08732635 +1eov 29 C p 19 C p -0.31331614 +1eov 30 C p 20 C p 0.21207467 +1eov 32 H s 18 C p -0.43567252 +1eov 32 H s 19 C p -0.16041073 +1eov 34 H s 18 C p -0.03533851 +1eov 34 H s 19 C p 0.11815431 +1eov 40 C s 18 C p 0.00000372 +1eov 40 C s 19 C p 0.00000677 +1eov 41 C s 18 C p 0.00138894 +1eov 41 C s 19 C p 0.00252926 +1eov 42 C p 18 C p -0.00089148 +1eov 43 C p 18 C p -0.00249775 +1eov 42 C p 19 C p -0.00249775 +1eov 43 C p 19 C p -0.00406824 +1eov 44 C p 20 C p 0.00048016 +1eov 46 H s 18 C p 0.00024262 +1eov 46 H s 19 C p 0.00030060 +1eov 52 C s 18 C p 0.00000004 +1eov 52 C s 19 C p 0.00000017 +1eov 53 C s 18 C p 0.00008529 +1eov 53 C s 19 C p 0.00039134 +1eov 54 C p 18 C p 0.00001509 +1eov 55 C p 18 C p -0.00019062 +1eov 54 C p 19 C p -0.00019062 +1eov 55 C p 19 C p -0.00081804 +1eov 56 C p 20 C p 0.00005663 +1eov 58 H s 18 C p -0.00004529 +1eov 58 H s 19 C p 0.00147734 +1eov 60 H s 18 C p 0.00000414 +1eov 60 H s 19 C p 0.00001769 +1eov 27 C s 21 C s 0.00037959 +1eov 28 C p 21 C s 0.00078457 +1eov 29 C p 21 C s -0.00064573 +1eov 32 H s 21 C s 0.00008435 +1eov 34 H s 21 C s 0.00001099 +1eov 41 C s 21 C s 0.00000250 +1eov 42 C p 21 C s 0.00000131 +1eov 43 C p 21 C s -0.00000898 +1eov 46 H s 21 C s 0.00000552 +1eov 26 C s 22 C s 0.00037959 +1eov 27 C s 22 C s 0.02483931 +1eov 28 C p 22 C s 0.03097885 +1eov 29 C p 22 C s -0.02549677 +1eov 32 H s 22 C s 0.00610765 +1eov 34 H s 22 C s 0.00173453 +1eov 40 C s 22 C s 0.00000250 +1eov 41 C s 22 C s 0.00158230 +1eov 42 C p 22 C s 0.00045458 +1eov 43 C p 22 C s -0.00310848 +1eov 46 H s 22 C s 0.00114126 +1eov 53 C s 22 C s 0.00002499 +1eov 54 C p 22 C s 0.00001818 +1eov 55 C p 22 C s -0.00005985 +1eov 58 H s 22 C s 0.00002475 +1eov 60 H s 22 C s 0.00000176 +1eov 26 C s 23 C p -0.00078457 +1eov 26 C s 24 C p 0.00064573 +1eov 27 C s 23 C p -0.03097885 +1eov 27 C s 24 C p 0.02549677 +1eov 28 C p 23 C p -0.03206671 +1eov 29 C p 23 C p 0.03424679 +1eov 28 C p 24 C p 0.03424679 +1eov 29 C p 24 C p -0.01864290 +1eov 30 C p 25 C p 0.00954351 +1eov 32 H s 23 C p -0.01016378 +1eov 32 H s 24 C p 0.00007647 +1eov 34 H s 23 C p -0.00242249 +1eov 34 H s 24 C p 0.00198754 +1eov 40 C s 23 C p -0.00000131 +1eov 40 C s 24 C p 0.00000898 +1eov 41 C s 23 C p -0.00045458 +1eov 41 C s 24 C p 0.00310848 +1eov 42 C p 23 C p 0.00039288 +1eov 43 C p 23 C p 0.00091838 +1eov 42 C p 24 C p 0.00091838 +1eov 43 C p 24 C p -0.00575278 +1eov 44 C p 25 C p 0.00052719 +1eov 46 H s 23 C p 0.00027079 +1eov 46 H s 24 C p 0.00209825 +1eov 53 C s 23 C p -0.00001818 +1eov 53 C s 24 C p 0.00005985 +1eov 54 C p 23 C p -0.00000539 +1eov 55 C p 23 C p 0.00004373 +1eov 54 C p 24 C p 0.00004373 +1eov 55 C p 24 C p -0.00013604 +1eov 56 C p 25 C p 0.00000789 +1eov 58 H s 23 C p -0.00002728 +1eov 58 H s 24 C p 0.00004952 +1eov 60 H s 23 C p -0.00000086 +1eov 60 H s 24 C p 0.00000442 +1eov 26 C s 26 C s 1.00000000 +1eov 27 C s 26 C s 0.24836239 +1eov 32 H s 26 C s 0.00526064 +1eov 34 H s 26 C s 0.06126406 +1eov 41 C s 26 C s 0.00105093 +1eov 42 C p 26 C s -0.00162169 +1eov 43 C p 26 C s -0.00198813 +1eov 46 H s 26 C s 0.00006428 +1eov 53 C s 26 C s 0.00012010 +1eov 54 C p 26 C s -0.00008248 +1eov 55 C p 26 C s -0.00034098 +1eov 58 H s 26 C s 0.00076401 +1eov 60 H s 26 C s 0.00000329 +1eov 27 C s 27 C s 1.00000000 +1eov 32 H s 27 C s 0.09520044 +1eov 34 H s 27 C s 0.48672623 +1eov 40 C s 27 C s 0.00105093 +1eov 41 C s 27 C s 0.04432484 +1eov 42 C p 27 C s -0.04273885 +1eov 43 C p 27 C s -0.05239599 +1eov 46 H s 27 C s 0.00515280 +1eov 52 C s 27 C s 0.00012010 +1eov 53 C s 27 C s 0.01304826 +1eov 54 C p 27 C s -0.00523759 +1eov 55 C p 27 C s -0.02165256 +1eov 58 H s 27 C s 0.02519238 +1eov 60 H s 27 C s 0.00083477 +1eov 28 C p 28 C p 1.00000000 +1eov 29 C p 29 C p 1.00000000 +1eov 30 C p 30 C p 1.00000000 +1eov 32 H s 28 C p -0.07164787 +1eov 32 H s 29 C p -0.10017665 +1eov 34 H s 28 C p -0.36054241 +1eov 34 H s 29 C p 0.29342885 +1eov 40 C s 28 C p 0.00162169 +1eov 40 C s 29 C p 0.00198813 +1eov 41 C s 28 C p 0.04273885 +1eov 41 C s 29 C p 0.05239599 +1eov 42 C p 28 C p -0.02709252 +1eov 43 C p 28 C p -0.05520745 +1eov 42 C p 29 C p -0.05520745 +1eov 43 C p 29 C p -0.04974235 +1eov 44 C p 30 C p 0.01793961 +1eov 46 H s 28 C p 0.00667173 +1eov 46 H s 29 C p 0.00554480 +1eov 52 C s 28 C p 0.00008248 +1eov 52 C s 29 C p 0.00034098 +1eov 53 C s 28 C p 0.00523759 +1eov 53 C s 29 C p 0.02165256 +1eov 54 C p 28 C p 0.00254866 +1eov 55 C p 28 C p -0.00923685 +1eov 54 C p 29 C p -0.00923685 +1eov 55 C p 29 C p -0.03340281 +1eov 56 C p 30 C p 0.00478298 +1eov 58 H s 28 C p -0.00476106 +1eov 58 H s 29 C p 0.03728513 +1eov 60 H s 28 C p 0.00039290 +1eov 60 H s 29 C p 0.00152729 +1eov 32 H s 31 H s 0.00010566 +1eov 34 H s 31 H s 0.00071247 +1eov 40 C s 31 H s 0.00112513 +1eov 41 C s 31 H s 0.03261996 +1eov 42 C p 31 H s 0.03180630 +1eov 43 C p 31 H s -0.03531792 +1eov 46 H s 31 H s 0.06152635 +1eov 52 C s 31 H s 0.00000570 +1eov 53 C s 31 H s 0.00116395 +1eov 54 C p 31 H s 0.00144175 +1eov 55 C p 31 H s -0.00160185 +1eov 58 H s 31 H s 0.00023842 +1eov 60 H s 31 H s 0.00025053 +1eov 32 H s 32 H s 1.00000000 +1eov 34 H s 32 H s 0.05049356 +1eov 40 C s 32 H s 0.00000018 +1eov 41 C s 32 H s 0.00014665 +1eov 42 C p 32 H s -0.00018643 +1eov 43 C p 32 H s -0.00024260 +1eov 46 H s 32 H s 0.00001429 +1eov 52 C s 32 H s 0.00000002 +1eov 53 C s 32 H s 0.00003531 +1eov 54 C p 32 H s -0.00003055 +1eov 55 C p 32 H s -0.00007317 +1eov 58 H s 32 H s 0.00029688 +1eov 60 H s 32 H s 0.00000158 +1eov 34 H s 33 H s 0.00010487 +1eov 40 C s 33 H s 0.00000023 +1eov 41 C s 33 H s 0.00017046 +1eov 42 C p 33 H s 0.00010566 +1eov 43 C p 33 H s -0.00033655 +1eov 46 H s 33 H s 0.00024029 +1eov 53 C s 33 H s 0.00000177 +1eov 54 C p 33 H s 0.00000176 +1eov 55 C p 33 H s -0.00000419 +1eov 58 H s 33 H s 0.00000137 +1eov 60 H s 33 H s 0.00000016 +1eov 34 H s 34 H s 1.00000000 +1eov 40 C s 34 H s 0.00086755 +1eov 41 C s 34 H s 0.02741238 +1eov 42 C p 34 H s -0.03595560 +1eov 43 C p 34 H s -0.01883758 +1eov 46 H s 34 H s 0.00247869 +1eov 52 C s 34 H s 0.00089160 +1eov 53 C s 34 H s 0.02791634 +1eov 54 C p 34 H s -0.02333733 +1eov 55 C p 34 H s -0.03403698 +1eov 58 H s 34 H s 0.08943587 +1eov 60 H s 34 H s 0.00263748 +1eov 41 C s 36 C s 0.00000058 +1eov 42 C p 36 C s -0.00000031 +1eov 43 C p 36 C s -0.00000168 +1eov 46 H s 36 C s 0.00000026 +1eov 55 C p 36 C s -0.00000002 +1eov 58 H s 36 C s 0.00000008 +1eov 41 C s 37 C p 0.00000031 +1eov 41 C s 38 C p 0.00000168 +1eov 42 C p 37 C p 0.00000002 +1eov 43 C p 37 C p -0.00000090 +1eov 42 C p 38 C p -0.00000090 +1eov 43 C p 38 C p -0.00000465 +1eov 44 C p 39 C p 0.00000018 +1eov 46 H s 37 C p 0.00000024 +1eov 46 H s 38 C p 0.00000068 +1eov 53 C s 38 C p 0.00000002 +1eov 55 C p 38 C p -0.00000007 +1eov 58 H s 37 C p -0.00000003 +1eov 58 H s 38 C p 0.00000023 +1eov 40 C s 40 C s 1.00000000 +1eov 41 C s 40 C s 0.24836239 +1eov 46 H s 40 C s 0.06069832 +1eov 52 C s 40 C s 0.00000224 +1eov 53 C s 40 C s 0.04283572 +1eov 54 C p 40 C s 0.04749158 +1eov 55 C p 40 C s -0.05282630 +1eov 58 H s 40 C s 0.00560597 +1eov 60 H s 40 C s 0.00577180 +1eov 41 C s 41 C s 1.00000000 +1eov 46 H s 41 C s 0.48445018 +1eov 52 C s 41 C s 0.04283572 +1eov 53 C s 41 C s 0.39315379 +1eov 54 C p 41 C s 0.27265559 +1eov 55 C p 41 C s -0.30328297 +1eov 58 H s 41 C s 0.09965606 +1eov 60 H s 41 C s 0.10177202 +1eov 42 C p 42 C p 1.00000000 +1eov 43 C p 43 C p 1.00000000 +1eov 44 C p 44 C p 1.00000000 +1eov 46 H s 42 C p 0.45129445 +1eov 46 H s 43 C p 0.10556299 +1eov 52 C s 42 C p -0.04749158 +1eov 52 C s 43 C p 0.05282630 +1eov 53 C s 42 C p -0.27265559 +1eov 53 C s 43 C p 0.30328297 +1eov 54 C p 42 C p -0.01649701 +1eov 55 C p 42 C p 0.28028940 +1eov 54 C p 43 C p 0.28028940 +1eov 55 C p 43 C p -0.07628724 +1eov 56 C p 44 C p 0.23548705 +1eov 58 H s 42 C p -0.11842404 +1eov 58 H s 43 C p 0.04900979 +1eov 60 H s 42 C p -0.03568903 +1eov 60 H s 43 C p 0.12555351 +1eov 46 H s 45 H s 0.00000006 +1eov 55 C p 45 H s -0.00000003 +1eov 58 H s 45 H s 0.00000015 +1eov 46 H s 46 H s 1.00000000 +1eov 52 C s 46 H s 0.00610975 +1eov 53 C s 46 H s 0.10603987 +1eov 54 C p 46 H s 0.12644547 +1eov 55 C p 46 H s -0.04804938 +1eov 58 H s 46 H s 0.01461637 +1eov 60 H s 46 H s 0.05493265 +1eov 52 C s 52 C s 1.00000000 +1eov 53 C s 52 C s 0.24836239 +1eov 58 H s 52 C s 0.06141276 +1eov 60 H s 52 C s 0.06131344 +1eov 53 C s 53 C s 1.00000000 +1eov 58 H s 53 C s 0.48732173 +1eov 60 H s 53 C s 0.48692411 +1eov 54 C p 54 C p 1.00000000 +1eov 55 C p 55 C p 1.00000000 +1eov 56 C p 56 C p 1.00000000 +1eov 58 H s 54 C p -0.45887461 +1eov 58 H s 55 C p -0.07654896 +1eov 60 H s 54 C p 0.13399724 +1eov 60 H s 55 C p 0.44524958 +1eov 58 H s 58 H s 1.00000000 +1eov 60 H s 58 H s 0.14896581 +1eov 60 H s 60 H s 1.00000000 + ==================================== + End overlap 1-e integrals + ==================================== + Caching 1-el integrals + itol2e modified to match energy + convergence criterion. + + General Information + ------------------- + SCF calculation type: DFT + Wavefunction type: closed shell. + No. of atoms : 20 + No. of electrons : 70 + Alpha electrons : 35 + Beta electrons : 35 + Charge : 0 + Spin multiplicity: 1 + Use of symmetry is: on ; symmetry adaption is: on + Maximum number of iterations: 30 + AO basis - number of functions: 60 + number of shells: 40 + Convergence on energy requested: 1.00D-07 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 + + XC Information + -------------- + B3LYP Method XC Potential + Hartree-Fock (Exact) Exchange 0.200 + Slater Exchange Functional 0.800 local + Becke 1988 Exchange Functional 0.720 non-local + Lee-Yang-Parr Correlation Functional 0.810 + VWN I RPA Correlation Functional 0.190 local + + Grid Information + ---------------- + Grid used for XC integration: xfine + Radial quadrature: Mura-Knowles + Angular quadrature: Lebedev. + Tag B.-S. Rad. Rad. Pts. Rad. Cut. Ang. Pts. + --- ---------- --------- --------- --------- + C 0.70 100 13.0 1454 + H 0.35 100 13.0 1202 + Grid pruning is: on + Number of quadrature shells: 1000 + Spatial weights used: Erf1 + + Convergence Information + ----------------------- + Convergence aids based upon iterative change in + total energy or number of iterations. + Levelshifting, if invoked, occurs when the + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + DIIS, if invoked, will attempt to extrapolate + using up to (NFOCK): 10 stored Fock matrices. + + Damping( 0%) Levelshifting(0.5) DIIS + --------------- ------------------- --------------- + dE on: start ASAP start + dE off: 2 iters 30 iters 30 iters + + + Screening Tolerance Information + ------------------------------- + Density screening/tol_rho: 1.00D-11 + AO Gaussian exp screening on grid/accAOfunc: 16 + CD Gaussian exp screening on grid/accCDfunc: 20 + XC Gaussian exp screening on grid/accXCfunc: 20 + Schwarz screening/accCoul: 1.00D-08 + + + Superposition of Atomic Density Guess + ------------------------------------- + + Sum of atomic energies: -376.44825176 + + Non-variational initial energy + ------------------------------ + + Total energy = -379.429467 + 1-e energy = -1401.451096 + 2-e energy = 576.084617 + HOMO = -0.037645 + LUMO = 0.163723 + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 ag 2 bu 3 ag 4 bu 5 bu + 6 ag 7 bu 8 ag 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 ag 24 bu 25 bu + 26 ag 27 bu 28 au 29 bu 30 ag + 31 ag 32 bg 33 au 34 bg 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 bu + + Time after variat. SCF: 0.8 + Time prior to 1st pass: 0.8 + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% + + + Grid_pts file = ./dvb.gridpts.0 + Record size in doubles = 12289 No. of grid_pts per rec = 3070 + Max. records in memory = 522 Max. recs in file = ********* + + + Memory utilization after 1st SCF pass: + Heap Space remaining (MW): 5.44 5443610 + Stack Space remaining (MW): 13.11 13106284 + + convergence iter energy DeltaE RMS-Dens Diis-err time + ---------------- ----- ----------------- --------- --------- --------- ------ + d= 0,ls=0.0,diis 1 -382.2544334264 -8.28D+02 1.42D-02 3.78D-01 10.4 + d= 0,ls=0.0,diis 2 -382.3017299251 -4.73D-02 6.99D-03 3.82D-02 14.4 + d= 0,ls=0.0,diis 3 -382.2954336496 6.30D-03 4.21D-03 7.95D-02 20.0 + d= 0,ls=0.0,diis 4 -382.3080990402 -1.27D-02 5.17D-04 8.80D-04 25.6 + d= 0,ls=0.0,diis 5 -382.3082353907 -1.36D-04 1.18D-04 4.46D-05 31.2 + Resetting Diis + d= 0,ls=0.0,diis 6 -382.3082415300 -6.14D-06 3.19D-05 3.09D-06 36.8 + d= 0,ls=0.0,diis 7 -382.3082420068 -4.77D-07 1.42D-05 1.61D-07 42.4 + d= 0,ls=0.0,diis 8 -382.3082420043 2.55D-09 7.54D-06 1.77D-07 47.9 + + + Total DFT energy = -382.308242004251 + One electron energy = -1400.645115169374 + Coulomb energy = 630.242754939282 + Exchange-Corr. energy = -57.842893941605 + Nuclear repulsion energy = 445.937012167446 + + Numeric. integr. density = 70.000000232072 + + Total iterative time = 47.2s + + + + Occupations of the irreducible representations + ---------------------------------------------- + + irrep alpha beta + -------- -------- -------- + ag 15.0 15.0 + au 2.0 2.0 + bg 3.0 3.0 + bu 15.0 15.0 + + + DFT Final Molecular Orbital Analysis + ------------------------------------ + + Vector 1 Occ=2.000000D+00 E=-1.002024D+01 Symmetry=bu + MO Center= 4.7D-11, 2.8D-10, 4.2D-27, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.699304 1 C s 6 -0.699304 2 C s + + Vector 2 Occ=2.000000D+00 E=-1.002019D+01 Symmetry=ag + MO Center= -4.7D-11, -2.8D-10, 1.1D-34, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.699301 1 C s 6 0.699301 2 C s + + Vector 3 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=bu + MO Center= -1.9D-09, -1.0D-08, 1.1D-24, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.699780 11 C s 40 -0.699780 12 C s + + Vector 4 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=ag + MO Center= 1.9D-09, 1.0D-08, -5.1D-34, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.699695 11 C s 40 0.699695 12 C s + + Vector 5 Occ=2.000000D+00 E=-1.000689D+01 Symmetry=ag + MO Center= 2.3D-15, -3.7D-16, 7.8D-35, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.546412 5 C s 26 0.546412 6 C s + 11 -0.437513 3 C s 16 -0.437513 4 C s + + Vector 6 Occ=2.000000D+00 E=-1.000688D+01 Symmetry=bu + MO Center= 4.7D-13, 3.8D-12, 9.8D-24, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.555878 5 C s 26 -0.555878 6 C s + 11 -0.424322 3 C s 16 0.424322 4 C s + + Vector 7 Occ=2.000000D+00 E=-1.000624D+01 Symmetry=bu + MO Center= -4.7D-11, 1.3D-12, 5.5D-26, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.556849 3 C s 16 -0.556849 4 C s + 21 0.425633 5 C s 26 -0.425633 6 C s + + Vector 8 Occ=2.000000D+00 E=-1.000609D+01 Symmetry=ag + MO Center= 4.6D-11, -5.1D-12, 8.5D-19, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.546521 3 C s 16 0.546521 4 C s + 21 0.437747 5 C s 26 0.437747 6 C s + + Vector 9 Occ=2.000000D+00 E=-9.992163D+00 Symmetry=bu + MO Center= -8.4D-17, 3.8D-16, 1.8D-34, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.700479 15 C s 52 -0.700479 16 C s + + Vector 10 Occ=2.000000D+00 E=-9.992163D+00 Symmetry=ag + MO Center= 7.8D-17, -7.8D-16, -8.6D-34, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.700478 15 C s 52 0.700478 16 C s + + Vector 11 Occ=2.000000D+00 E=-8.094667D-01 Symmetry=ag + MO Center= 1.8D-15, -6.7D-15, -5.8D-18, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.274702 1 C s 7 0.274702 2 C s + 12 0.247017 3 C s 17 0.247017 4 C s + 22 0.246689 5 C s 27 0.246689 6 C s + + Vector 12 Occ=2.000000D+00 E=-7.539346D-01 Symmetry=bu + MO Center= 1.1D-15, 1.5D-14, -1.4D-21, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 -0.297169 11 C s 41 0.297169 12 C s + 2 0.273786 1 C s 7 -0.273786 2 C s + 48 -0.209313 15 C s 53 0.209313 16 C s + + Vector 13 Occ=2.000000D+00 E=-7.178616D-01 Symmetry=ag + MO Center= -9.1D-16, -7.6D-15, 2.2D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.314817 11 C s 41 0.314817 12 C s + 48 0.309767 15 C s 53 0.309767 16 C s + + Vector 14 Occ=2.000000D+00 E=-6.999224D-01 Symmetry=bu + MO Center= -3.7D-15, -1.6D-16, 1.4D-20, r^2= 3.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.357134 3 C s 17 -0.357134 4 C s + 22 0.323905 5 C s 27 -0.323905 6 C s + + Vector 15 Occ=2.000000D+00 E=-6.673150D-01 Symmetry=bu + MO Center= -1.7D-18, -2.1D-15, -1.2D-19, r^2= 9.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.299508 15 C s 53 -0.299508 16 C s + 2 0.274066 1 C s 7 -0.274066 2 C s + 22 -0.202279 5 C s 27 0.202279 6 C s + + Vector 16 Occ=2.000000D+00 E=-5.885094D-01 Symmetry=ag + MO Center= -8.4D-16, -1.7D-15, -1.2D-16, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.241406 15 C s 53 0.241406 16 C s + 22 0.233815 5 C s 27 0.233815 6 C s + 2 -0.206378 1 C s 7 -0.206378 2 C s + 14 -0.160007 3 C py 19 0.160007 4 C py + 36 -0.159613 11 C s 41 -0.159613 12 C s + + Vector 17 Occ=2.000000D+00 E=-5.591516D-01 Symmetry=ag + MO Center= -5.4D-17, 4.5D-16, 2.2D-32, r^2= 5.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.326033 3 C s 17 0.326033 4 C s + 3 0.184864 1 C px 8 -0.184864 2 C px + 22 -0.170744 5 C s 24 0.170444 5 C py + 27 -0.170744 6 C s 29 -0.170444 6 C py + 31 0.169234 7 H s 32 0.169234 8 H s + + Vector 18 Occ=2.000000D+00 E=-5.314208D-01 Symmetry=bu + MO Center= -7.0D-16, -4.3D-15, -1.3D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.302767 11 C s 41 -0.302767 12 C s + 48 -0.249165 15 C s 53 0.249165 16 C s + 45 0.170519 13 H s 46 -0.170519 14 H s + 57 -0.160626 17 H s 58 0.160626 18 H s + 12 0.154466 3 C s 17 -0.154466 4 C s + + Vector 19 Occ=2.000000D+00 E=-5.099375D-01 Symmetry=ag + MO Center= 4.2D-16, 4.9D-15, 2.0D-32, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.201895 5 C px 28 -0.201895 6 C px + 13 0.184492 3 C px 18 -0.184492 4 C px + 36 0.180759 11 C s 41 0.180759 12 C s + 33 0.169279 9 H s 34 0.169279 10 H s + 22 0.166024 5 C s 27 0.166024 6 C s + + Vector 20 Occ=2.000000D+00 E=-4.575996D-01 Symmetry=ag + MO Center= -2.4D-16, 1.0D-15, 1.1D-32, r^2= 9.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.212730 15 C px 54 -0.212730 16 C px + 38 0.184649 11 C py 43 -0.184649 12 C py + 57 0.179111 17 H s 58 0.179111 18 H s + 45 -0.153094 13 H s 46 -0.153094 14 H s + + Vector 21 Occ=2.000000D+00 E=-4.391971D-01 Symmetry=bu + MO Center= 1.5D-15, 2.4D-15, -1.9D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.219233 11 C px 42 0.219233 12 C px + 50 0.210291 15 C py 55 0.210291 16 C py + 14 0.184960 3 C py 19 0.184960 4 C py + 59 -0.178127 19 H s 60 0.178127 20 H s + 45 -0.155495 13 H s 46 0.155495 14 H s + + Vector 22 Occ=2.000000D+00 E=-4.110182D-01 Symmetry=bu + MO Center= 3.4D-16, 2.3D-15, -1.4D-17, r^2= 6.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.235310 1 C s 7 -0.235310 2 C s + 33 0.230467 9 H s 34 -0.230467 10 H s + 31 -0.226658 7 H s 32 0.226658 8 H s + 13 -0.222261 3 C px 18 -0.222261 4 C px + 24 -0.177972 5 C py 29 -0.177972 6 C py + + Vector 23 Occ=2.000000D+00 E=-3.976933D-01 Symmetry=bu + MO Center= 1.2D-15, 3.2D-15, -2.2D-17, r^2= 8.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.251236 5 C px 28 0.251236 6 C px + 49 0.250511 15 C px 54 0.250511 16 C px + 3 -0.220827 1 C px 8 -0.220827 2 C px + 57 0.215415 17 H s 58 -0.215415 18 H s + 38 0.181486 11 C py 43 0.181486 12 C py + + Vector 24 Occ=2.000000D+00 E=-3.959385D-01 Symmetry=ag + MO Center= 8.8D-17, -1.1D-15, 1.7D-17, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.338998 15 C py 55 -0.338998 16 C py + 59 -0.262596 19 H s 60 -0.262596 20 H s + 37 0.251492 11 C px 42 -0.251492 12 C px + + Vector 25 Occ=2.000000D+00 E=-3.744297D-01 Symmetry=bu + MO Center= -1.4D-15, 2.7D-16, 5.0D-18, r^2= 4.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.307585 3 C px 18 0.307585 4 C px + 31 0.252268 7 H s 32 -0.252268 8 H s + 24 -0.226088 5 C py 29 -0.226088 6 C py + 33 0.218183 9 H s 34 -0.218183 10 H s + 23 0.188062 5 C px 28 0.188062 6 C px + + Vector 26 Occ=2.000000D+00 E=-3.509367D-01 Symmetry=bu + MO Center= -2.4D-15, -7.3D-15, -4.4D-17, r^2= 9.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.245677 15 C py 55 -0.245677 16 C py + 14 0.224344 3 C py 19 0.224344 4 C py + 37 -0.201678 11 C px 42 -0.201678 12 C px + 24 -0.193257 5 C py 29 -0.193257 6 C py + 38 0.187745 11 C py 43 0.187745 12 C py + + Vector 27 Occ=2.000000D+00 E=-3.470152D-01 Symmetry=ag + MO Center= 3.6D-15, 7.5D-16, -9.0D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.295189 15 C px 54 -0.295189 16 C px + 57 0.268012 17 H s 58 0.268012 18 H s + 37 -0.208878 11 C px 42 0.208878 12 C px + 45 0.200233 13 H s 46 0.200233 14 H s + 31 -0.156471 7 H s 32 -0.156471 8 H s + + Vector 28 Occ=2.000000D+00 E=-3.244706D-01 Symmetry=au + MO Center= -5.1D-17, 6.9D-15, -5.8D-17, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.337608 1 C pz 10 0.337608 2 C pz + 15 0.297979 3 C pz 20 0.297979 4 C pz + 25 0.297170 5 C pz 30 0.297170 6 C pz + 39 0.173946 11 C pz 44 0.173946 12 C pz + + Vector 29 Occ=2.000000D+00 E=-3.110645D-01 Symmetry=bu + MO Center= -1.5D-15, -5.6D-16, 1.1D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.259102 13 H s 46 -0.259102 14 H s + 4 0.241973 1 C py 9 0.241973 2 C py + 57 0.231029 17 H s 58 -0.231029 18 H s + 37 -0.217251 11 C px 42 -0.217251 12 C px + 59 -0.212334 19 H s 60 0.212334 20 H s + + Vector 30 Occ=2.000000D+00 E=-2.929833D-01 Symmetry=ag + MO Center= 1.2D-15, 2.7D-15, 2.0D-16, r^2= 6.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 -0.278184 3 C py 19 0.278184 4 C py + 4 0.268398 1 C py 9 -0.268398 2 C py + 38 0.248142 11 C py 43 -0.248142 12 C py + 33 -0.240411 9 H s 34 -0.240411 10 H s + 24 0.234450 5 C py 29 -0.234450 6 C py + + Vector 31 Occ=2.000000D+00 E=-2.874965D-01 Symmetry=ag + MO Center= -5.9D-16, -2.1D-16, -1.3D-16, r^2= 6.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.295855 1 C px 8 -0.295855 2 C px + 23 0.280599 5 C px 28 -0.280599 6 C px + 31 -0.258071 7 H s 32 -0.258071 8 H s + 13 -0.222116 3 C px 18 0.222116 4 C px + 45 -0.182739 13 H s 46 -0.182739 14 H s + + Vector 32 Occ=2.000000D+00 E=-2.634557D-01 Symmetry=bg + MO Center= 4.3D-15, 1.4D-13, -1.1D-21, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.376480 11 C pz 44 0.376480 12 C pz + 5 0.348964 1 C pz 10 -0.348964 2 C pz + 51 -0.271399 15 C pz 56 0.271399 16 C pz + + Vector 33 Occ=2.000000D+00 E=-2.123365D-01 Symmetry=au + MO Center= -1.5D-14, -1.9D-13, -3.1D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.417961 15 C pz 56 0.417961 16 C pz + 39 0.413781 11 C pz 44 0.413781 12 C pz + 15 -0.179204 3 C pz 20 -0.179204 4 C pz + 25 -0.176633 5 C pz 30 -0.176633 6 C pz + + Vector 34 Occ=2.000000D+00 E=-1.951682D-01 Symmetry=bg + MO Center= 9.4D-15, -1.2D-15, -3.0D-18, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.463626 3 C pz 20 -0.463626 4 C pz + 25 0.457537 5 C pz 30 -0.457537 6 C pz + + Vector 35 Occ=2.000000D+00 E=-1.529965D-01 Symmetry=bg + MO Center= 1.2D-15, 3.7D-14, 3.3D-17, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.397371 15 C pz 56 -0.397371 16 C pz + 5 0.387554 1 C pz 10 -0.387554 2 C pz + 25 -0.230743 5 C pz 30 0.230743 6 C pz + 39 0.223675 11 C pz 44 -0.223675 12 C pz + 15 0.215069 3 C pz 20 -0.215069 4 C pz + + Vector 36 Occ=0.000000D+00 E= 3.750921D-02 Symmetry=au + MO Center= 9.7D-17, 2.7D-14, 2.6D-16, r^2= 8.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.449614 15 C pz 56 -0.449614 16 C pz + 5 0.442670 1 C pz 10 0.442670 2 C pz + 25 -0.277553 5 C pz 30 -0.277553 6 C pz + 39 0.256133 11 C pz 44 0.256133 12 C pz + 15 -0.232265 3 C pz 20 -0.232265 4 C pz + + Vector 37 Occ=0.000000D+00 E= 9.011734D-02 Symmetry=au + MO Center= 1.2D-15, 2.6D-16, -7.4D-18, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.582692 3 C pz 20 0.582692 4 C pz + 25 -0.553237 5 C pz 30 -0.553237 6 C pz + + Vector 38 Occ=0.000000D+00 E= 1.107280D-01 Symmetry=bg + MO Center= 2.5D-15, -3.0D-14, 7.0D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.522167 11 C pz 44 -0.522167 12 C pz + 51 -0.523103 15 C pz 56 0.523103 16 C pz + 15 0.240693 3 C pz 20 -0.240693 4 C pz + 25 -0.232246 5 C pz 30 0.232246 6 C pz + + Vector 39 Occ=0.000000D+00 E= 1.822016D-01 Symmetry=au + MO Center= 6.9D-18, 6.1D-15, 3.6D-16, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.529134 11 C pz 44 -0.529134 12 C pz + 5 0.497218 1 C pz 10 0.497218 2 C pz + 51 0.379694 15 C pz 56 0.379694 16 C pz + 25 -0.199198 5 C pz 30 -0.199198 6 C pz + 15 -0.166739 3 C pz 20 -0.166739 4 C pz + + Vector 40 Occ=0.000000D+00 E= 2.723015D-01 Symmetry=bg + MO Center= -3.8D-15, -5.8D-15, 6.3D-17, r^2= 3.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.543477 1 C pz 10 -0.543477 2 C pz + 25 0.466878 5 C pz 30 -0.466878 6 C pz + 15 -0.464184 3 C pz 20 0.464184 4 C pz + 39 0.287731 11 C pz 44 -0.287731 12 C pz + 51 -0.156154 15 C pz 56 0.156154 16 C pz + + Vector 41 Occ=0.000000D+00 E= 3.324847D-01 Symmetry=ag + MO Center= 1.2D-16, -2.2D-16, -8.7D-17, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 -0.423790 9 H s 34 -0.423790 10 H s + 31 -0.413781 7 H s 32 -0.413781 8 H s + 2 0.401569 1 C s 7 0.401569 2 C s + 59 -0.358542 19 H s 60 -0.358542 20 H s + 38 -0.338105 11 C py 43 0.338105 12 C py + + Vector 42 Occ=0.000000D+00 E= 3.406450D-01 Symmetry=bu + MO Center= 2.0D-15, 2.5D-15, -1.1D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.433827 13 H s 46 -0.433827 14 H s + 13 0.355437 3 C px 18 0.355437 4 C px + 37 0.344559 11 C px 42 0.344559 12 C px + 31 -0.321888 7 H s 32 0.321888 8 H s + 57 -0.323133 17 H s 58 0.323133 18 H s + + Vector 43 Occ=0.000000D+00 E= 3.795219D-01 Symmetry=bu + MO Center= -2.0D-16, -3.9D-16, 1.0D-16, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.546115 11 C s 41 -0.546115 12 C s + 4 0.461528 1 C py 9 0.461528 2 C py + 33 0.405572 9 H s 34 -0.405572 10 H s + 59 0.351697 19 H s 60 -0.351697 20 H s + 2 0.338376 1 C s 7 -0.338376 2 C s + + Vector 44 Occ=0.000000D+00 E= 3.812902D-01 Symmetry=ag + MO Center= -3.5D-15, -1.4D-14, 7.3D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.579606 13 H s 46 0.579606 14 H s + 12 0.393525 3 C s 17 0.393525 4 C s + 57 -0.391441 17 H s 58 -0.391441 18 H s + 36 -0.382166 11 C s 41 -0.382166 12 C s + 37 0.338369 11 C px 42 -0.338369 12 C px + + Vector 45 Occ=0.000000D+00 E= 4.103420D-01 Symmetry=ag + MO Center= -4.5D-13, 1.3D-12, 6.1D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.647348 15 C s 53 0.647348 16 C s + 22 0.620079 5 C s 27 0.620079 6 C s + 57 -0.513314 17 H s 58 -0.513314 18 H s + 12 -0.443652 3 C s 17 -0.443652 4 C s + 59 -0.320794 19 H s 60 -0.320794 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.112339D-01 Symmetry=bu + MO Center= 4.4D-13, -1.3D-12, -2.0D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.613158 5 C s 27 -0.613158 6 C s + 48 0.539738 15 C s 53 -0.539738 16 C s + 2 0.476220 1 C s 7 -0.476220 2 C s + 57 -0.447816 17 H s 58 0.447816 18 H s + 12 -0.440665 3 C s 17 0.440665 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.258026D-01 Symmetry=bu + MO Center= 2.0D-15, 1.5D-14, 4.5D-18, r^2= 9.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.603108 7 H s 32 -0.603108 8 H s + 36 -0.446800 11 C s 41 0.446800 12 C s + 45 0.437140 13 H s 46 -0.437140 14 H s + 12 -0.368677 3 C s 17 0.368677 4 C s + 59 0.337702 19 H s 60 -0.337702 20 H s + + Vector 48 Occ=0.000000D+00 E= 4.393595D-01 Symmetry=ag + MO Center= 3.3D-15, 5.1D-14, -9.6D-17, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.782305 1 C s 7 0.782305 2 C s + 36 -0.556792 11 C s 41 -0.556792 12 C s + 12 -0.499660 3 C s 17 -0.499660 4 C s + 22 -0.411568 5 C s 27 -0.411568 6 C s + 48 0.409886 15 C s 53 0.409886 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.537212D-01 Symmetry=bu + MO Center= 1.1D-14, -6.9D-14, 3.8D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.706721 15 C s 53 -0.706721 16 C s + 57 -0.525555 17 H s 58 0.525555 18 H s + 33 0.477113 9 H s 34 -0.477113 10 H s + 36 -0.429001 11 C s 41 0.429001 12 C s + 22 -0.407169 5 C s 27 0.407169 6 C s + + Vector 50 Occ=0.000000D+00 E= 4.783353D-01 Symmetry=ag + MO Center= -8.0D-15, 1.4D-14, -9.9D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.706217 3 C s 17 0.706217 4 C s + 22 -0.619402 5 C s 27 -0.619402 6 C s + 59 -0.475187 19 H s 60 -0.475187 20 H s + 48 0.415041 15 C s 53 0.415041 16 C s + 50 -0.382621 15 C py 55 0.382621 16 C py + + Vector 51 Occ=0.000000D+00 E= 5.255619D-01 Symmetry=ag + MO Center= 1.0D-15, -3.2D-15, -1.4D-17, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.601873 1 C py 9 -0.601873 2 C py + 36 -0.491669 11 C s 41 -0.491669 12 C s + 13 -0.452502 3 C px 18 0.452502 4 C px + 2 -0.448702 1 C s 7 -0.448702 2 C s + 49 -0.342028 15 C px 54 0.342028 16 C px + + Vector 52 Occ=0.000000D+00 E= 5.463507D-01 Symmetry=bu + MO Center= 5.7D-15, -1.3D-14, -5.2D-18, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.647801 3 C s 17 -0.647801 4 C s + 3 -0.560732 1 C px 8 -0.560732 2 C px + 50 0.483439 15 C py 55 0.483439 16 C py + 24 -0.478220 5 C py 29 -0.478220 6 C py + 59 0.356004 19 H s 60 -0.356004 20 H s + + Vector 53 Occ=0.000000D+00 E= 5.764358D-01 Symmetry=ag + MO Center= -2.1D-15, 9.2D-16, -2.0D-17, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.537125 3 C px 18 -0.537125 4 C px + 23 -0.522141 5 C px 28 0.522141 6 C px + 33 0.519104 9 H s 34 0.519104 10 H s + 31 -0.448313 7 H s 32 -0.448313 8 H s + 24 0.400194 5 C py 29 -0.400194 6 C py + + Vector 54 Occ=0.000000D+00 E= 5.984381D-01 Symmetry=bu + MO Center= -5.4D-15, 1.7D-15, 4.6D-18, r^2= 4.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 0.723029 3 C py 19 0.723029 4 C py + 22 0.599919 5 C s 27 -0.599919 6 C s + 36 -0.415408 11 C s 41 0.415408 12 C s + 2 -0.405912 1 C s 7 0.405912 2 C s + 24 0.394227 5 C py 29 0.394227 6 C py + + Vector 55 Occ=0.000000D+00 E= 6.248973D-01 Symmetry=bu + MO Center= 1.9D-15, -3.1D-16, -1.2D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.608534 1 C s 7 -0.608534 2 C s + 49 -0.528892 15 C px 54 -0.528892 16 C px + 38 0.480661 11 C py 43 0.480661 12 C py + 23 -0.365994 5 C px 28 -0.365994 6 C px + 57 0.363289 17 H s 58 -0.363289 18 H s + + Vector 56 Occ=0.000000D+00 E= 6.398334D-01 Symmetry=ag + MO Center= 4.8D-16, 6.7D-15, -9.9D-17, r^2= 9.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.549269 11 C px 42 -0.549269 12 C px + 50 -0.534300 15 C py 55 0.534300 16 C py + 14 0.383477 3 C py 19 -0.383477 4 C py + 4 -0.364576 1 C py 9 0.364576 2 C py + 59 -0.330751 19 H s 60 -0.330751 20 H s + + Vector 57 Occ=0.000000D+00 E= 6.828368D-01 Symmetry=ag + MO Center= -5.8D-16, -1.3D-15, 1.7D-18, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.663093 11 C py 43 -0.663093 12 C py + 49 -0.580412 15 C px 54 0.580412 16 C px + 24 -0.449231 5 C py 29 0.449231 6 C py + 14 -0.392088 3 C py 19 0.392088 4 C py + 4 -0.381669 1 C py 9 0.381669 2 C py + + Vector 58 Occ=0.000000D+00 E= 7.173570D-01 Symmetry=bu + MO Center= 2.3D-15, 2.9D-14, -5.9D-20, r^2= 9.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.608025 11 C px 42 0.608025 12 C px + 48 -0.538017 15 C s 50 -0.540484 15 C py + 53 0.538017 16 C s 55 -0.540484 16 C py + 36 0.466540 11 C s 38 -0.464867 11 C py + 41 -0.466540 12 C s 43 -0.464867 12 C py + + Vector 59 Occ=0.000000D+00 E= 7.790413D-01 Symmetry=ag + MO Center= -2.3D-15, -2.5D-14, -5.2D-17, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.702431 1 C px 8 -0.702431 2 C px + 14 -0.534059 3 C py 19 0.534059 4 C py + 23 -0.435986 5 C px 28 0.435986 6 C px + 37 0.429836 11 C px 42 -0.429836 12 C px + 24 -0.411037 5 C py 29 0.411037 6 C py + + Vector 60 Occ=0.000000D+00 E= 7.942624D-01 Symmetry=bu + MO Center= -2.7D-16, -4.1D-15, 3.1D-23, r^2= 3.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.657693 1 C py 9 0.657693 2 C py + 13 -0.568325 3 C px 18 -0.568325 4 C px + 23 0.496519 5 C px 28 0.496519 6 C px + 22 -0.413797 5 C s 27 0.413797 6 C s + 24 -0.395895 5 C py 29 -0.395895 6 C py + + Final MO vectors + ---------------- + + + global array: alpha evecs[1:60,1:60], handle: -995 + + 1 2 3 4 5 6 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.69930 0.69930 -0.02742 0.02765 0.00327 -0.02868 + 2 0.03156 0.03135 0.00410 -0.00406 -0.00081 0.00816 + 3 -0.00002 0.00003 0.00067 -0.00065 0.00525 -0.00123 + 4 -0.00091 -0.00063 0.00416 -0.00413 -0.00054 -0.00308 + 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 6 -0.69930 0.69930 0.02742 0.02765 0.00327 0.02868 + 7 -0.03156 0.03135 -0.00410 -0.00406 -0.00081 -0.00816 + 8 -0.00002 -0.00003 0.00067 0.00065 -0.00525 -0.00123 + 9 -0.00091 0.00063 0.00416 0.00413 0.00054 -0.00308 + 10 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 11 -0.01887 -0.01934 0.01179 -0.01473 -0.43751 -0.42432 + 12 -0.00774 -0.00693 0.00068 -0.00068 -0.02438 -0.02407 + 13 0.00353 0.00332 -0.00013 0.00019 0.00102 0.00115 + 14 -0.00263 -0.00300 -0.00002 -0.00006 0.00367 0.00385 + 15 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 16 0.01887 -0.01934 -0.01179 -0.01473 -0.43751 0.42432 + 17 0.00774 -0.00693 -0.00068 -0.00068 -0.02438 0.02407 + 18 0.00353 -0.00332 -0.00013 -0.00019 -0.00102 0.00115 + 19 -0.00263 0.00300 -0.00002 0.00006 -0.00367 0.00385 + 20 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 21 0.01918 -0.01952 -0.00968 -0.01107 0.54641 0.55588 + 22 0.00771 -0.00687 -0.00055 -0.00042 0.02815 0.02865 + 23 -0.00417 0.00407 0.00013 0.00021 0.00007 -0.00009 + 24 -0.00132 0.00175 -0.00010 0.00001 0.00323 0.00334 + 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 26 -0.01918 -0.01952 0.00968 -0.01107 0.54641 -0.55588 + 27 -0.00771 -0.00687 0.00055 -0.00042 0.02815 -0.02865 + 28 -0.00417 -0.00407 0.00013 -0.00021 -0.00007 -0.00009 + 29 -0.00132 -0.00175 -0.00010 -0.00001 -0.00323 0.00334 + 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 31 0.00034 0.00022 -0.00010 0.00011 0.00405 0.00398 + 32 -0.00034 0.00022 0.00010 0.00011 0.00405 -0.00398 + 33 -0.00033 0.00022 -0.00004 -0.00006 -0.00506 -0.00515 + 34 0.00033 0.00022 0.00004 -0.00006 -0.00506 0.00515 + 35 0.02696 -0.02733 0.69978 0.69970 -0.00070 0.01381 + 36 0.00670 -0.00677 0.03078 0.03076 -0.00004 0.00073 + 37 0.00090 -0.00091 0.00075 0.00075 0.00011 0.00006 + 38 0.00397 -0.00401 -0.00108 -0.00109 -0.00003 -0.00005 + 39 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 40 -0.02696 -0.02733 -0.69978 0.69970 -0.00070 -0.01381 + 41 -0.00670 -0.00677 -0.03078 0.03076 -0.00004 -0.00073 + 42 0.00090 0.00091 0.00075 -0.00075 -0.00011 0.00006 + 43 0.00397 0.00401 -0.00108 0.00109 0.00003 -0.00005 + 44 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 45 -0.00032 0.00033 -0.00642 -0.00642 -0.00001 -0.00018 + 46 0.00032 0.00033 0.00642 -0.00642 -0.00001 0.00018 + 47 -0.00018 0.00019 -0.00811 -0.00810 -0.00029 -0.00093 + 48 -0.00047 0.00047 -0.00762 -0.00762 -0.00005 -0.00028 + 49 -0.00001 0.00001 0.00305 0.00305 -0.00003 0.00003 + 50 -0.00028 0.00029 -0.00344 -0.00344 -0.00001 -0.00014 + 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 52 0.00018 0.00019 0.00811 -0.00810 -0.00029 0.00093 + 53 0.00047 0.00047 0.00762 -0.00762 -0.00005 0.00028 + 54 -0.00001 -0.00001 0.00305 -0.00305 0.00003 0.00003 + 55 -0.00028 -0.00029 -0.00344 0.00344 0.00001 -0.00014 + 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 57 0.00015 -0.00014 0.00019 0.00019 0.00016 0.00015 + 58 -0.00015 -0.00014 -0.00019 0.00019 0.00016 -0.00015 + 59 0.00003 -0.00003 0.00022 0.00022 -0.00000 -0.00001 + 60 -0.00003 -0.00003 -0.00022 0.00022 -0.00000 0.00001 + + 7 8 9 10 11 12 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00367 0.02944 -0.00018 0.00018 -0.10786 -0.10355 + 2 -0.00110 -0.00749 -0.00016 0.00016 0.27470 0.27379 + 3 -0.00500 -0.00006 0.00002 -0.00002 -0.00550 0.00446 + 4 0.00128 0.00308 -0.00005 0.00005 -0.04073 0.03298 + 5 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 6 -0.00367 0.02944 0.00018 0.00018 -0.10786 0.10355 + 7 0.00110 -0.00749 0.00016 0.00016 0.27470 -0.27379 + 8 -0.00500 0.00006 0.00002 0.00002 0.00550 0.00446 + 9 0.00128 -0.00308 -0.00005 -0.00005 0.04073 0.03298 + 10 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 11 0.55685 0.54652 -0.00028 0.00057 -0.09784 -0.03906 + 12 0.02059 0.01990 0.00000 -0.00006 0.24702 0.10222 + 13 -0.00024 0.00013 -0.00001 0.00002 -0.05337 -0.02738 + 14 0.00222 0.00233 0.00008 -0.00003 -0.01450 0.05896 + 15 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 16 -0.55685 0.54652 0.00028 0.00057 -0.09784 0.03906 + 17 -0.02059 0.01990 -0.00000 -0.00006 0.24702 -0.10222 + 18 -0.00024 -0.00013 -0.00001 -0.00002 0.05337 -0.02738 + 19 0.00222 -0.00233 0.00008 0.00003 0.01450 0.05896 + 20 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 21 0.42563 0.43775 0.00079 0.00085 -0.09757 0.04279 + 22 0.01354 0.01412 -0.00002 -0.00004 0.24669 -0.11256 + 23 -0.00095 -0.00067 0.00001 0.00000 -0.04576 0.04462 + 24 -0.00301 -0.00302 0.00011 0.00009 0.03144 0.04668 + 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 26 -0.42563 0.43775 -0.00079 0.00085 -0.09757 -0.04279 + 27 -0.01354 0.01412 0.00002 -0.00004 0.24669 0.11256 + 28 -0.00095 0.00067 0.00001 -0.00000 0.04576 0.04462 + 29 -0.00301 0.00302 0.00011 -0.00009 -0.03144 0.04668 + 30 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 31 -0.00491 -0.00498 0.00001 -0.00002 0.04495 0.02686 + 32 0.00491 -0.00498 -0.00001 -0.00002 0.04495 -0.02686 + 33 -0.00371 -0.00400 0.00010 0.00010 0.04519 -0.03076 + 34 0.00371 -0.00400 -0.00010 0.00010 0.04519 0.03076 + 35 -0.00338 0.01736 0.00900 0.00901 -0.04972 0.11382 + 36 -0.00018 0.00075 -0.00689 -0.00689 0.12781 -0.29717 + 37 0.00001 0.00002 -0.00308 -0.00308 0.01290 -0.03419 + 38 0.00002 -0.00019 0.00338 0.00338 0.02845 -0.00850 + 39 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 40 0.00338 0.01736 -0.00900 0.00901 -0.04972 -0.11382 + 41 0.00018 0.00075 0.00689 -0.00689 0.12781 0.29717 + 42 0.00001 -0.00002 -0.00308 0.00308 -0.01290 -0.03419 + 43 0.00002 0.00019 0.00338 -0.00338 -0.02845 -0.00850 + 44 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 45 0.00005 -0.00025 0.00004 0.00004 0.02560 -0.06702 + 46 -0.00005 -0.00025 -0.00004 0.00004 0.02560 0.06702 + 47 -0.00021 -0.00115 0.70048 0.70048 -0.02467 0.08073 + 48 0.00003 -0.00033 0.03086 0.03086 0.06268 -0.20931 + 49 -0.00005 0.00005 -0.00089 -0.00089 -0.01240 0.03729 + 50 0.00001 -0.00018 0.00094 0.00094 0.02035 -0.04990 + 51 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 52 0.00021 -0.00115 -0.70048 0.70048 -0.02467 -0.08073 + 53 -0.00003 -0.00033 -0.03086 0.03086 0.06268 0.20931 + 54 -0.00005 -0.00005 -0.00089 0.00089 0.01240 0.03729 + 55 0.00001 0.00018 0.00094 -0.00094 -0.02035 -0.04990 + 56 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 57 0.00009 0.00010 -0.00636 -0.00636 0.01412 -0.04858 + 58 -0.00009 0.00010 0.00636 -0.00636 0.01412 0.04858 + 59 -0.00001 -0.00001 -0.00637 -0.00637 0.01058 -0.04369 + 60 0.00001 -0.00001 0.00637 -0.00637 0.01058 0.04369 + + 13 14 15 16 17 18 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00453 -0.01260 -0.09965 0.07098 0.05432 -0.01303 + 2 0.01483 0.03409 0.27407 -0.20638 -0.16079 0.03709 + 3 0.01037 0.12499 -0.01781 -0.12106 0.18486 -0.05359 + 4 0.09615 -0.02299 -0.05622 -0.07212 -0.06394 -0.13493 + 5 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 6 -0.00453 0.01260 0.09965 0.07098 0.05432 0.01303 + 7 0.01483 -0.03409 -0.27407 -0.20638 -0.16079 -0.03709 + 8 -0.01037 0.12499 -0.01781 0.12106 -0.18486 -0.05359 + 9 -0.09615 -0.02299 -0.05622 0.07212 0.06394 -0.13493 + 10 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 11 0.04631 -0.13232 -0.04077 0.00302 -0.11045 -0.05067 + 12 -0.12146 0.35713 0.11268 -0.01004 0.32603 0.15447 + 13 0.01614 0.00350 -0.03788 0.02993 0.08167 -0.00524 + 14 0.03704 -0.05621 0.09142 -0.16001 0.03652 0.00483 + 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 16 0.04631 0.13232 0.04077 0.00302 -0.11045 0.05067 + 17 -0.12146 -0.35713 -0.11268 -0.01004 0.32603 -0.15447 + 18 -0.01614 0.00350 -0.03788 -0.02993 -0.08167 -0.00524 + 19 -0.03704 -0.05621 0.09142 0.16001 -0.03652 0.00483 + 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 21 0.04173 -0.12009 0.07330 -0.08191 0.05747 0.03036 + 22 -0.10894 0.32390 -0.20228 0.23381 -0.17074 -0.09205 + 23 0.00204 0.03465 0.05406 0.06548 0.08653 0.03583 + 24 -0.04735 0.06563 0.04697 0.02290 0.17044 0.07857 + 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 26 0.04173 0.12009 -0.07330 -0.08191 0.05747 -0.03036 + 27 -0.10894 -0.32390 0.20228 0.23381 -0.17074 0.09205 + 28 -0.00204 0.03465 0.05406 -0.06548 -0.08653 0.03583 + 29 0.04735 0.06563 0.04697 -0.02290 -0.17044 0.07857 + 30 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 31 -0.02335 0.09831 0.03218 -0.01929 0.16923 0.05033 + 32 -0.02335 -0.09831 -0.03218 -0.01929 0.16923 -0.05033 + 33 -0.01660 0.08999 -0.05346 0.10642 -0.08383 -0.05580 + 34 -0.01660 -0.08999 0.05346 0.10642 -0.08383 0.05580 + 35 -0.11924 0.00020 -0.05162 0.05306 0.00758 -0.09885 + 36 0.31482 -0.00128 0.13685 -0.15961 -0.02451 0.30277 + 37 0.04535 0.02295 0.03919 0.08128 -0.04660 -0.11605 + 38 -0.05748 -0.01848 -0.12905 -0.12925 -0.07792 0.04107 + 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 40 -0.11924 -0.00020 0.05162 0.05306 0.00758 0.09885 + 41 0.31482 0.00128 -0.13685 -0.15961 -0.02451 -0.30277 + 42 -0.04535 0.02295 0.03919 -0.08128 0.04660 -0.11605 + 43 0.05748 -0.01848 -0.12905 0.12925 0.07792 0.04107 + 44 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 45 0.07653 -0.00984 0.03763 -0.08003 0.03216 0.17052 + 46 0.07653 0.00984 -0.03763 -0.08003 0.03216 -0.17052 + 47 -0.11746 -0.01450 -0.11027 -0.08371 -0.03787 0.08074 + 48 0.30977 0.03791 0.29951 0.24141 0.11347 -0.24917 + 49 -0.04908 0.00157 -0.03453 0.03560 -0.01390 -0.12315 + 50 0.05279 0.00637 0.01637 -0.03827 -0.04943 0.09128 + 51 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 52 -0.11746 0.01450 0.11027 -0.08371 -0.03787 -0.08074 + 53 0.30977 -0.03791 -0.29951 0.24141 0.11347 0.24917 + 54 0.04908 0.00157 -0.03453 -0.03560 0.01390 -0.12315 + 55 -0.05279 0.00637 0.01637 0.03827 0.04943 0.09128 + 56 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 57 0.07420 0.01478 0.07740 0.10354 0.02278 -0.16063 + 58 0.07420 -0.01478 -0.07740 0.10354 0.02278 0.16063 + 59 0.07484 0.00894 0.08996 0.09775 0.06787 -0.12474 + 60 0.07484 -0.00894 -0.08996 0.09775 0.06787 0.12474 + + 19 20 21 22 23 24 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.05454 -0.03229 0.02275 -0.06946 -0.02277 0.02167 + 2 -0.16217 0.10634 -0.07804 0.23531 0.07752 -0.07158 + 3 -0.01948 0.05143 0.12484 0.10107 -0.22083 -0.01574 + 4 0.14256 0.13227 -0.13509 -0.02739 -0.14330 -0.01021 + 5 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 6 0.05454 -0.03229 -0.02275 0.06946 0.02277 0.02167 + 7 -0.16217 0.10634 0.07804 -0.23531 -0.07752 -0.07158 + 8 0.01948 -0.05143 0.12484 0.10107 -0.22083 0.01574 + 9 -0.14256 -0.13227 -0.13509 -0.02739 -0.14330 0.01021 + 10 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 11 -0.00697 -0.01336 -0.02216 0.04738 -0.00126 -0.02514 + 12 0.02556 0.05158 0.07459 -0.16297 0.00150 0.08397 + 13 0.18449 0.13690 0.01857 -0.22226 -0.00314 -0.00635 + 14 -0.08790 0.14138 0.18496 0.06158 -0.12066 -0.08210 + 15 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 16 -0.00697 -0.01336 0.02216 -0.04738 0.00126 -0.02514 + 17 0.02556 0.05158 -0.07459 0.16297 -0.00150 0.08397 + 18 -0.18449 -0.13690 0.01857 -0.22226 -0.00314 0.00635 + 19 0.08790 -0.14138 0.18496 0.06158 -0.12066 0.08210 + 20 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 21 -0.05224 0.01978 0.04259 -0.04406 0.01174 0.01824 + 22 0.16602 -0.05620 -0.13897 0.15292 -0.03666 -0.06801 + 23 0.20190 0.08463 -0.09670 0.11282 0.25124 -0.03712 + 24 -0.03731 -0.13600 -0.10148 -0.17797 0.05674 0.13671 + 25 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 26 -0.05224 0.01978 -0.04259 0.04406 -0.01174 0.01824 + 27 0.16602 -0.05620 0.13897 -0.15292 0.03666 -0.06801 + 28 -0.20190 -0.08463 -0.09670 0.11282 0.25124 0.03712 + 29 0.03731 0.13600 -0.10148 -0.17797 0.05674 -0.13671 + 30 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 31 0.09946 0.13601 0.10020 -0.22666 -0.03672 0.00607 + 32 0.09946 0.13601 -0.10020 0.22666 0.03672 0.00607 + 33 0.16928 0.09041 -0.05988 0.23047 0.13275 -0.11408 + 34 0.16928 0.09041 0.05988 -0.23047 -0.13275 -0.11408 + 35 -0.05912 0.04018 -0.01690 -0.01529 -0.00257 -0.02765 + 36 0.18076 -0.12770 0.05160 0.04227 0.01492 0.08059 + 37 -0.06455 0.11482 0.21923 0.03807 -0.04290 0.25149 + 38 -0.00149 0.18465 0.10104 -0.12528 0.18149 -0.08173 + 39 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 40 -0.05912 0.04018 0.01690 0.01529 0.00257 -0.02765 + 41 0.18076 -0.12770 -0.05160 -0.04227 -0.01492 0.08059 + 42 0.06455 -0.11482 0.21923 0.03807 -0.04290 -0.25149 + 43 0.00149 -0.18465 0.10104 -0.12528 0.18149 0.08173 + 44 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 45 0.11251 -0.15309 -0.15549 0.02806 0.01234 -0.14506 + 46 0.11251 -0.15309 0.15549 -0.02806 -0.01234 -0.14506 + 47 0.05155 -0.01689 0.00814 0.01223 0.00106 -0.00444 + 48 -0.16347 0.06337 -0.03136 -0.05077 0.00750 -0.00010 + 49 -0.07915 0.21273 0.09058 -0.07563 0.25051 -0.01131 + 50 0.08165 0.00913 0.21029 0.13356 0.03810 0.33900 + 51 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 52 0.05155 -0.01689 -0.00814 -0.01223 -0.00106 -0.00444 + 53 -0.16347 0.06337 0.03136 0.05077 -0.00750 -0.00010 + 54 0.07915 -0.21273 0.09058 -0.07563 0.25051 0.01131 + 55 -0.08165 -0.00913 0.21029 0.13356 0.03810 -0.33900 + 56 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 57 -0.09475 0.17911 0.07306 -0.04231 0.21542 0.02497 + 58 -0.09475 0.17911 -0.07306 0.04231 -0.21542 0.02497 + 59 -0.09719 -0.02141 -0.17813 -0.10503 -0.08716 -0.26260 + 60 -0.09719 -0.02141 0.17813 0.10503 0.08716 -0.26260 + + 25 26 27 28 29 30 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00257 0.00315 0.02506 0.00000 -0.01028 -0.00342 + 2 -0.00882 -0.01168 -0.09024 -0.00000 0.04486 0.02281 + 3 -0.08496 0.16711 0.08893 -0.00000 0.09215 -0.13094 + 4 0.07881 -0.17820 0.00082 -0.00000 0.24197 0.26840 + 5 -0.00000 -0.00000 -0.00000 0.33761 0.00000 0.00000 + 6 -0.00257 -0.00315 0.02506 0.00000 0.01028 -0.00342 + 7 0.00882 0.01168 -0.09024 -0.00000 -0.04486 0.02281 + 8 -0.08496 0.16711 -0.08893 0.00000 0.09215 0.13094 + 9 0.07881 -0.17820 -0.00082 0.00000 0.24197 -0.26840 + 10 -0.00000 0.00000 0.00000 0.33761 -0.00000 -0.00000 + 11 0.02849 -0.01759 0.00530 0.00000 0.00685 0.00271 + 12 -0.09067 0.06357 -0.02695 -0.00000 -0.02118 -0.00884 + 13 0.30758 -0.10066 -0.12838 0.00000 0.06490 0.13268 + 14 0.14541 0.22434 -0.13363 0.00000 0.04102 -0.27818 + 15 -0.00000 -0.00000 0.00000 0.29798 -0.00000 -0.00000 + 16 -0.02849 0.01759 0.00530 0.00000 -0.00685 0.00271 + 17 0.09067 -0.06357 -0.02695 -0.00000 0.02118 -0.00884 + 18 0.30758 -0.10066 0.12838 -0.00000 0.06490 -0.13268 + 19 0.14541 0.22434 0.13363 -0.00000 0.04102 0.27818 + 20 0.00000 0.00000 0.00000 0.29798 0.00000 -0.00000 + 21 0.01970 0.00712 -0.00754 -0.00000 -0.01375 -0.00888 + 22 -0.06220 -0.02043 0.02538 0.00000 0.04725 0.02465 + 23 0.18806 -0.07066 0.06386 -0.00000 -0.14449 -0.08055 + 24 -0.22609 -0.19326 0.13981 0.00000 -0.00790 0.23445 + 25 0.00000 0.00000 0.00000 0.29717 -0.00000 -0.00000 + 26 -0.01970 -0.00712 -0.00754 -0.00000 0.01375 -0.00888 + 27 0.06220 0.02043 0.02538 0.00000 -0.04725 0.02465 + 28 0.18806 -0.07066 -0.06386 0.00000 -0.14449 0.08055 + 29 -0.22609 -0.19326 -0.13981 -0.00000 -0.00790 -0.23445 + 30 0.00000 0.00000 -0.00000 0.29717 -0.00000 -0.00000 + 31 0.25227 0.00752 -0.15647 0.00000 0.04671 0.02034 + 32 -0.25227 -0.00752 -0.15647 0.00000 -0.04671 0.02034 + 33 0.21818 0.04690 0.00782 -0.00000 -0.05383 -0.24041 + 34 -0.21818 -0.04690 0.00782 -0.00000 0.05383 -0.24041 + 35 -0.00193 0.00109 -0.01690 -0.00000 0.00273 -0.01988 + 36 0.00461 0.01245 0.07134 0.00000 -0.00655 0.08279 + 37 -0.01859 -0.20168 -0.20888 0.00000 -0.21725 0.04337 + 38 -0.06686 0.18774 0.08750 -0.00000 -0.16914 0.24814 + 39 -0.00000 -0.00000 -0.00000 0.17395 0.00000 -0.00000 + 40 0.00193 -0.00109 -0.01690 -0.00000 -0.00273 -0.01988 + 41 -0.00461 -0.01245 0.07134 0.00000 0.00655 0.08279 + 42 -0.01859 -0.20168 0.20888 -0.00000 -0.21725 -0.04337 + 43 -0.06686 0.18774 -0.08750 0.00000 -0.16914 -0.24814 + 44 0.00000 0.00000 -0.00000 0.17395 -0.00000 0.00000 + 45 0.01673 0.14559 0.20023 0.00000 0.25910 -0.06640 + 46 -0.01673 -0.14559 0.20023 0.00000 -0.25910 -0.06640 + 47 0.00445 0.02052 0.01051 -0.00000 0.00350 0.00833 + 48 -0.01850 -0.05651 -0.02704 0.00000 -0.01441 -0.02127 + 49 -0.07653 0.12000 0.29519 0.00000 0.19964 0.02772 + 50 -0.00552 -0.24568 0.04849 0.00000 0.13688 -0.14507 + 51 0.00000 0.00000 -0.00000 0.09244 -0.00000 0.00000 + 52 -0.00445 -0.02052 0.01051 -0.00000 -0.00350 0.00833 + 53 0.01850 0.05651 -0.02704 0.00000 0.01441 -0.02127 + 54 -0.07653 0.12000 -0.29519 -0.00000 0.19964 -0.02772 + 55 -0.00552 -0.24568 -0.04849 -0.00000 0.13688 0.14507 + 56 0.00000 0.00000 -0.00000 0.09244 -0.00000 0.00000 + 57 -0.05395 0.05142 0.26801 0.00000 0.23103 -0.05231 + 58 0.05395 -0.05142 0.26801 0.00000 -0.23103 -0.05231 + 59 0.01519 0.15786 -0.14304 -0.00000 -0.21233 0.13552 + 60 -0.01519 -0.15786 -0.14304 -0.00000 0.21233 0.13552 + + 31 32 33 34 35 36 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00699 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 2 0.03378 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 3 0.29586 0.00000 0.00000 0.00000 0.00000 0.00000 + 4 0.09493 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 5 -0.00000 0.34896 -0.01801 0.00575 0.38755 0.44267 + 6 -0.00699 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 7 0.03378 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 8 -0.29586 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 9 -0.09493 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 10 0.00000 -0.34896 -0.01801 -0.00575 -0.38755 0.44267 + 11 -0.01201 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 12 0.03558 0.00000 0.00000 0.00000 0.00000 -0.00000 + 13 -0.22212 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 14 -0.04919 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 15 0.00000 0.13165 -0.17920 0.46363 0.21507 -0.23227 + 16 -0.01201 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 17 0.03558 0.00000 0.00000 0.00000 0.00000 -0.00000 + 18 0.22212 0.00000 0.00000 0.00000 0.00000 -0.00000 + 19 0.04919 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 20 0.00000 -0.13165 -0.17920 -0.46363 -0.21507 -0.23227 + 21 0.00761 0.00000 0.00000 0.00000 0.00000 -0.00000 + 22 -0.02194 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 23 0.28060 0.00000 0.00000 0.00000 0.00000 0.00000 + 24 0.09600 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 25 0.00000 -0.13211 -0.17663 0.45754 -0.23074 -0.27755 + 26 0.00761 0.00000 0.00000 0.00000 0.00000 -0.00000 + 27 -0.02194 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 28 -0.28060 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 29 -0.09600 0.00000 0.00000 0.00000 -0.00000 0.00000 + 30 0.00000 0.13211 -0.17663 -0.45754 0.23074 -0.27755 + 31 -0.25807 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 32 -0.25807 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 33 0.15131 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 34 0.15131 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 35 -0.01113 0.00000 0.00000 0.00000 0.00000 -0.00000 + 36 0.03843 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 37 0.13689 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 38 0.11202 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 39 0.00000 -0.37648 0.41378 -0.00037 0.22367 0.25613 + 40 -0.01113 0.00000 0.00000 0.00000 0.00000 -0.00000 + 41 0.03843 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 42 -0.13689 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 43 -0.11202 0.00000 0.00000 0.00000 0.00000 0.00000 + 44 -0.00000 0.37648 0.41378 0.00037 -0.22367 0.25613 + 45 -0.18274 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 46 -0.18274 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 47 -0.00467 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 48 0.01837 0.00000 0.00000 0.00000 0.00000 -0.00000 + 49 -0.10958 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 50 -0.03768 0.00000 0.00000 0.00000 0.00000 0.00000 + 51 -0.00000 -0.27140 0.41796 0.00954 0.39737 -0.44961 + 52 -0.00467 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 53 0.01837 0.00000 0.00000 0.00000 0.00000 -0.00000 + 54 0.10958 0.00000 0.00000 -0.00000 0.00000 0.00000 + 55 0.03768 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 56 -0.00000 0.27140 0.41796 -0.00954 -0.39737 -0.44961 + 57 -0.11595 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 58 -0.11595 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 59 0.08985 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 60 0.08985 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + + 37 38 39 40 41 42 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 0.00000 -0.00000 -0.00000 -0.06824 -0.03374 + 2 0.00000 -0.00000 0.00000 0.00000 0.40157 0.19824 + 3 0.00000 0.00000 0.00000 -0.00000 0.08710 0.28506 + 4 -0.00000 -0.00000 0.00000 0.00000 0.27371 0.13577 + 5 -0.03192 -0.02345 0.49722 0.54348 -0.00000 -0.00000 + 6 -0.00000 0.00000 -0.00000 -0.00000 -0.06824 0.03374 + 7 0.00000 -0.00000 0.00000 0.00000 0.40157 -0.19824 + 8 0.00000 0.00000 -0.00000 0.00000 -0.08710 0.28506 + 9 -0.00000 -0.00000 -0.00000 -0.00000 -0.27371 0.13577 + 10 -0.03192 0.02345 0.49722 -0.54348 0.00000 0.00000 + 11 0.00000 0.00000 -0.00000 -0.00000 -0.02814 0.00595 + 12 -0.00000 -0.00000 0.00000 0.00000 0.17347 -0.02878 + 13 0.00000 -0.00000 -0.00000 0.00000 0.30451 0.35544 + 14 -0.00000 0.00000 -0.00000 -0.00000 0.05353 0.01074 + 15 0.58269 0.24069 -0.16674 -0.46418 0.00000 0.00000 + 16 -0.00000 0.00000 -0.00000 -0.00000 -0.02814 -0.00595 + 17 0.00000 -0.00000 0.00000 0.00000 0.17347 0.02878 + 18 -0.00000 -0.00000 0.00000 -0.00000 -0.30451 0.35544 + 19 -0.00000 0.00000 0.00000 0.00000 -0.05353 0.01074 + 20 0.58269 -0.24069 -0.16674 0.46418 -0.00000 -0.00000 + 21 -0.00000 -0.00000 0.00000 0.00000 -0.04649 -0.01586 + 22 0.00000 0.00000 -0.00000 0.00000 0.28090 0.09658 + 23 0.00000 0.00000 -0.00000 0.00000 0.20264 0.28597 + 24 -0.00000 -0.00000 -0.00000 -0.00000 -0.12426 0.00564 + 25 -0.55324 -0.23225 -0.19920 0.46688 -0.00000 -0.00000 + 26 0.00000 -0.00000 0.00000 0.00000 -0.04649 0.01586 + 27 -0.00000 0.00000 -0.00000 -0.00000 0.28090 -0.09658 + 28 -0.00000 -0.00000 0.00000 -0.00000 -0.20264 0.28597 + 29 -0.00000 -0.00000 0.00000 0.00000 0.12426 0.00564 + 30 -0.55324 0.23225 -0.19920 -0.46688 0.00000 0.00000 + 31 0.00000 -0.00000 -0.00000 -0.00000 -0.41378 -0.32189 + 32 -0.00000 -0.00000 -0.00000 -0.00000 -0.41378 0.32189 + 33 -0.00000 0.00000 0.00000 -0.00000 -0.42379 -0.27080 + 34 -0.00000 0.00000 0.00000 -0.00000 -0.42379 0.27080 + 35 0.00000 -0.00000 0.00000 0.00000 0.05002 0.00767 + 36 -0.00000 0.00000 -0.00000 -0.00000 -0.28213 -0.04685 + 37 -0.00000 0.00000 -0.00000 -0.00000 -0.24477 0.34456 + 38 -0.00000 -0.00000 -0.00000 -0.00000 -0.33810 0.21676 + 39 0.00380 0.52217 -0.52913 0.28773 -0.00000 -0.00000 + 40 0.00000 -0.00000 0.00000 0.00000 0.05002 -0.00767 + 41 -0.00000 -0.00000 -0.00000 -0.00000 -0.28213 0.04685 + 42 0.00000 -0.00000 0.00000 0.00000 0.24477 0.34456 + 43 0.00000 0.00000 0.00000 0.00000 0.33810 0.21676 + 44 0.00380 -0.52217 -0.52913 -0.28773 0.00000 0.00000 + 45 -0.00000 -0.00000 -0.00000 -0.00000 -0.14441 0.43383 + 46 -0.00000 -0.00000 -0.00000 -0.00000 -0.14441 -0.43383 + 47 -0.00000 -0.00000 0.00000 -0.00000 -0.04092 0.00256 + 48 0.00000 0.00000 0.00000 0.00000 0.23693 -0.01934 + 49 -0.00000 -0.00000 -0.00000 -0.00000 -0.13832 0.30324 + 50 -0.00000 -0.00000 -0.00000 -0.00000 -0.14825 0.16644 + 51 0.01077 -0.52310 0.37969 -0.15615 0.00000 0.00000 + 52 0.00000 -0.00000 -0.00000 -0.00000 -0.04092 -0.00256 + 53 -0.00000 0.00000 0.00000 0.00000 0.23693 0.01934 + 54 0.00000 0.00000 0.00000 0.00000 0.13832 0.30324 + 55 0.00000 -0.00000 0.00000 0.00000 0.14825 0.16644 + 56 0.01077 0.52310 0.37969 0.15615 -0.00000 -0.00000 + 57 -0.00000 -0.00000 0.00000 0.00000 0.10790 -0.32313 + 58 0.00000 0.00000 0.00000 0.00000 0.10790 0.32313 + 59 -0.00000 0.00000 -0.00000 -0.00000 -0.35854 0.28381 + 60 -0.00000 -0.00000 -0.00000 -0.00000 -0.35854 -0.28381 + + 43 44 45 46 47 48 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.05834 0.02268 0.05278 -0.08118 -0.02216 -0.12893 + 2 0.33838 -0.13703 -0.31847 0.47622 0.13839 0.78231 + 3 -0.09823 -0.10366 0.25896 -0.11474 -0.11098 -0.01962 + 4 0.46153 0.07568 -0.15525 0.01704 -0.24323 -0.03427 + 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 6 0.05834 0.02268 0.05278 0.08118 0.02216 -0.12893 + 7 -0.33838 -0.13703 -0.31847 -0.47622 -0.13839 0.78231 + 8 -0.09823 0.10366 -0.25896 -0.11474 -0.11098 0.01962 + 9 0.46153 -0.07568 0.15525 0.01704 -0.24323 0.03427 + 10 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 11 0.02504 -0.06444 0.07255 0.07415 0.05951 0.08004 + 12 -0.15222 0.39352 -0.44365 -0.44067 -0.36868 -0.49966 + 13 -0.13061 0.00225 -0.04821 -0.10021 -0.31643 -0.01875 + 14 0.22995 0.12425 0.16486 0.02279 -0.31506 -0.28291 + 15 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 16 -0.02504 -0.06444 0.07255 -0.07415 -0.05951 0.08004 + 17 0.15222 0.39352 -0.44365 0.44067 0.36868 -0.49966 + 18 -0.13061 -0.00225 0.04821 -0.10021 -0.31643 0.01875 + 19 0.22995 -0.12425 -0.16486 0.02279 -0.31506 0.28291 + 20 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 21 -0.00510 -0.01994 -0.10148 -0.10140 -0.00736 0.06591 + 22 0.02329 0.12752 0.62008 0.61316 0.03300 -0.41157 + 23 -0.26631 0.17399 -0.03870 0.00523 -0.20946 0.23962 + 24 0.32178 -0.20676 0.01016 -0.13338 -0.11033 0.24482 + 25 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 26 0.00510 -0.01994 -0.10148 0.10140 0.00736 0.06591 + 27 -0.02329 0.12752 0.62008 -0.61316 -0.03300 -0.41157 + 28 -0.26631 -0.17399 0.03870 0.00523 -0.20946 -0.23962 + 29 0.32178 0.20676 -0.01016 -0.13338 -0.11033 -0.24482 + 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 31 0.11582 -0.29164 0.22670 0.32244 0.60311 0.32408 + 32 -0.11582 -0.29164 0.22670 -0.32244 -0.60311 0.32408 + 33 0.40557 -0.29497 -0.22356 -0.35429 0.04475 0.19253 + 34 -0.40557 -0.29497 -0.22356 0.35429 -0.04475 0.19253 + 35 -0.09347 0.06358 -0.02475 -0.04071 0.07124 0.09223 + 36 0.54611 -0.38217 0.15743 0.25682 -0.44680 -0.55679 + 37 0.05807 0.33837 -0.13928 -0.16191 0.22490 0.11605 + 38 0.33241 0.07223 0.23434 0.17329 -0.05088 -0.08498 + 39 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 40 0.09347 0.06358 -0.02475 0.04071 -0.07124 0.09223 + 41 -0.54611 -0.38217 0.15743 -0.25682 0.44680 -0.55679 + 42 0.05807 -0.33837 0.13928 -0.16191 0.22490 -0.11605 + 43 0.33241 -0.07223 -0.23434 0.17329 -0.05088 0.08498 + 44 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 45 -0.15904 0.57961 -0.16935 -0.21129 0.43714 0.36453 + 46 0.15904 0.57961 -0.16935 0.21129 -0.43714 0.36453 + 47 0.05085 -0.01992 -0.10343 -0.08588 0.02025 -0.06749 + 48 -0.29723 0.11077 0.64735 0.53974 -0.13545 0.40989 + 49 0.10140 0.30436 0.23779 0.25100 0.05170 -0.00024 + 50 0.14226 0.23774 -0.07679 -0.13570 0.29542 -0.05131 + 51 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 52 -0.05085 -0.01992 -0.10343 0.08588 -0.02025 -0.06749 + 53 0.29723 0.11077 0.64735 -0.53974 0.13545 0.40989 + 54 0.10140 -0.30436 -0.23779 0.25100 0.05170 0.00024 + 55 0.14226 -0.23774 0.07679 -0.13570 0.29542 0.05131 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 -0.01079 -0.39144 -0.51331 -0.44782 -0.05131 -0.21179 + 58 0.01079 -0.39144 -0.51331 0.44782 0.05131 -0.21179 + 59 0.35170 0.25248 -0.32079 -0.31773 0.33770 -0.25941 + 60 -0.35170 0.25248 -0.32079 0.31773 -0.33770 -0.25941 + + 49 50 51 52 53 54 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.06085 0.03721 0.06722 0.00317 -0.00053 0.05880 + 2 -0.36184 -0.23260 -0.44870 -0.01124 -0.00248 -0.40591 + 3 -0.14570 -0.34787 0.12771 -0.56073 0.20695 -0.24957 + 4 0.11217 0.04893 0.60187 0.05941 0.04403 -0.00633 + 5 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 6 -0.06085 0.03721 0.06722 -0.00317 -0.00053 -0.05880 + 7 0.36184 -0.23260 -0.44870 0.01124 -0.00248 0.40591 + 8 -0.14570 0.34787 -0.12771 -0.56073 -0.20695 -0.24957 + 9 0.11217 -0.04893 -0.60187 0.05941 -0.04403 -0.00633 + 10 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 11 -0.05838 -0.11175 -0.01185 -0.09661 0.00390 0.03680 + 12 0.35368 0.70622 0.07742 0.64780 -0.03140 -0.25015 + 13 -0.14824 -0.09324 -0.45250 0.02122 0.53712 -0.21473 + 14 0.12936 -0.11737 0.15653 0.10781 0.19812 0.72303 + 15 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 16 0.05838 -0.11175 -0.01185 0.09661 0.00390 -0.03680 + 17 -0.35368 0.70622 0.07742 -0.64780 -0.03140 0.25015 + 18 -0.14824 0.09324 0.45250 0.02122 -0.53712 -0.21473 + 19 0.12936 0.11737 -0.15653 0.10781 -0.19812 0.72303 + 20 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 21 0.06637 0.09765 -0.04908 -0.03554 -0.00213 -0.08728 + 22 -0.40717 -0.61940 0.31762 0.24771 0.02086 0.59992 + 23 -0.17253 -0.13923 -0.32414 -0.19436 -0.52214 0.33345 + 24 0.14291 -0.18027 0.02623 -0.47822 0.40019 0.39423 + 25 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 26 -0.06637 0.09765 -0.04908 0.03554 -0.00213 0.08728 + 27 0.40717 -0.61940 0.31762 -0.24771 0.02086 -0.59992 + 28 -0.17253 0.13923 0.32414 -0.19436 0.52214 0.33345 + 29 0.14291 0.18027 -0.02623 -0.47822 -0.40019 0.39423 + 30 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 31 -0.07743 -0.21967 0.25325 -0.30688 -0.44831 0.07820 + 32 0.07743 -0.21967 0.25325 0.30688 -0.44831 -0.07820 + 33 0.47711 0.33385 0.05619 -0.21014 0.51910 -0.26110 + 34 -0.47711 0.33385 0.05619 0.21014 0.51910 0.26110 + 35 0.07086 -0.03056 0.07526 0.02689 0.05143 0.06052 + 36 -0.42900 0.21351 -0.49167 -0.19440 -0.35148 -0.41541 + 37 0.06306 -0.03074 0.15321 -0.26589 -0.12018 0.06499 + 38 0.11911 0.07453 0.00857 0.04267 0.15464 0.06260 + 39 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 -0.07086 -0.03056 0.07526 -0.02689 0.05143 -0.06052 + 41 0.42900 0.21351 -0.49167 0.19440 -0.35148 0.41541 + 42 0.06306 0.03074 -0.15321 -0.26589 0.12018 0.06499 + 43 0.11911 -0.07453 -0.00857 0.04267 -0.15464 0.06260 + 44 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 45 0.30082 -0.07193 0.30774 -0.14862 0.09225 0.23756 + 46 -0.30082 -0.07193 0.30774 0.14862 0.09225 -0.23756 + 47 -0.11287 -0.06460 -0.01973 -0.00897 -0.04267 -0.00685 + 48 0.70672 0.41504 0.12260 0.06945 0.29014 0.04268 + 49 0.14598 0.13302 -0.34203 0.02326 -0.08284 -0.26189 + 50 -0.02460 -0.38262 -0.12479 0.48344 0.26719 0.10776 + 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 52 0.11287 -0.06460 -0.01973 0.00897 -0.04267 0.00685 + 53 -0.70672 0.41504 0.12260 -0.06945 0.29014 -0.04268 + 54 0.14598 -0.13302 0.34203 0.02326 0.08284 -0.26189 + 55 -0.02460 0.38262 0.12479 0.48344 -0.26719 0.10776 + 56 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 57 -0.52556 -0.29507 0.23009 -0.10029 -0.14004 0.20420 + 58 0.52556 -0.29507 0.23009 0.10029 -0.14004 -0.20420 + 59 -0.32347 -0.47519 -0.24776 0.35600 0.06441 -0.00414 + 60 0.32347 -0.47519 -0.24776 -0.35600 0.06441 0.00414 + + 55 56 57 58 59 60 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.08989 0.01510 0.01661 0.02005 -0.00499 0.04414 + 2 0.60853 -0.09062 -0.10600 -0.14140 0.03340 -0.32847 + 3 -0.21224 -0.11872 0.13200 -0.45433 0.70243 0.16278 + 4 0.05256 -0.36458 -0.38167 0.13629 -0.05065 0.65769 + 5 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 6 0.08989 0.01510 0.01661 -0.02005 -0.00499 -0.04414 + 7 -0.60853 -0.09062 -0.10600 0.14140 0.03340 0.32847 + 8 -0.21224 0.11872 -0.13200 -0.45433 -0.70243 0.16278 + 9 0.05256 0.36458 0.38167 0.13629 0.05065 0.65769 + 10 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 11 -0.00731 0.02725 -0.01909 -0.04609 0.00745 -0.05196 + 12 0.06373 -0.19115 0.13760 0.33349 -0.05183 0.37682 + 13 0.25124 0.25479 0.11127 -0.19457 0.23943 -0.56833 + 14 -0.08785 0.38348 -0.39209 0.12836 -0.53406 -0.24121 + 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 16 0.00731 0.02725 -0.01909 0.04609 0.00745 0.05196 + 17 -0.06373 -0.19115 0.13760 -0.33349 -0.05183 -0.37682 + 18 0.25124 -0.25479 -0.11127 -0.19457 -0.23943 -0.56833 + 19 -0.08785 -0.38348 0.39209 0.12836 0.53406 -0.24121 + 20 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 21 -0.03521 -0.03182 0.01657 -0.02074 -0.00758 0.05675 + 22 0.23245 0.21889 -0.12012 0.15486 0.05144 -0.41380 + 23 -0.36599 0.17276 0.02185 -0.04663 -0.43599 0.49652 + 24 -0.18562 0.30524 -0.44923 -0.21409 -0.41104 -0.39589 + 25 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 26 0.03521 -0.03182 0.01657 0.02074 -0.00758 -0.05675 + 27 -0.23245 0.21889 -0.12012 -0.15486 0.05144 0.41380 + 28 -0.36599 -0.17276 -0.02185 -0.04663 0.43599 0.49652 + 29 -0.18562 -0.30524 0.44923 -0.21409 0.41104 -0.39589 + 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 31 -0.14093 -0.20985 -0.04154 -0.02084 -0.00735 0.26969 + 32 0.14093 -0.20985 -0.04154 0.02084 -0.00735 -0.26969 + 33 -0.00222 -0.05708 -0.19612 -0.10449 0.03922 -0.27789 + 34 0.00222 -0.05708 -0.19612 0.10449 0.03922 0.27789 + 35 0.02328 -0.04109 0.04186 -0.06153 -0.02738 -0.01273 + 36 -0.17902 0.28523 -0.32807 0.46654 0.21757 0.07838 + 37 0.31030 0.54927 -0.11106 0.60802 0.42984 0.02170 + 38 0.48066 0.17254 0.66309 -0.46487 -0.31930 0.36053 + 39 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 -0.02328 -0.04109 0.04186 0.06153 -0.02738 0.01273 + 41 0.17902 0.28523 -0.32807 -0.46654 0.21757 -0.07838 + 42 0.31030 -0.54927 0.11106 0.60802 -0.42984 0.02170 + 43 0.48066 -0.17254 -0.66309 -0.46487 0.31930 0.36053 + 44 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 45 0.35066 0.31504 0.14736 0.17100 0.15757 0.04812 + 46 -0.35066 0.31504 0.14736 -0.17100 0.15757 -0.04812 + 47 -0.01851 0.03133 -0.04902 0.07130 0.04167 -0.00960 + 48 0.13135 -0.22709 0.36667 -0.53802 -0.32571 0.08189 + 49 -0.52889 -0.17006 -0.58041 0.39452 0.25502 -0.21909 + 50 -0.23694 -0.53430 0.19950 -0.54048 -0.31984 0.00187 + 51 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 52 0.01851 0.03133 -0.04902 -0.07130 0.04167 0.00960 + 53 -0.13135 -0.22709 0.36667 0.53802 -0.32571 -0.08189 + 54 -0.52889 0.17006 0.58041 0.39452 -0.25502 -0.21909 + 55 -0.23694 0.53430 -0.19950 -0.54048 0.31984 0.00187 + 56 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 57 0.36329 0.28938 0.26297 -0.01006 -0.03248 0.13722 + 58 -0.36329 0.28938 0.26297 0.01006 -0.03248 -0.13722 + 59 -0.33886 -0.33075 -0.11581 -0.09330 -0.04790 -0.06477 + 60 0.33886 -0.33075 -0.11581 0.09330 -0.04790 0.06477 + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2631.731379210404 0.000000000000 0.000000000000 + 0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678692 + + Multipole analysis of the density + --------------------------------- + + L x y z total alpha beta nuclear + - - - - ----- ----- ---- ------- + 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 + + 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 + 1 0 1 0 0.000000 0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 0.000000 + + 2 2 0 0 -37.347169 -141.071520 -141.071520 244.795872 + 2 1 1 0 0.066522 2.848775 2.848775 -5.631027 + 2 1 0 1 -0.000000 -0.000000 -0.000000 0.000000 + 2 0 2 0 -37.714763 -767.339031 -767.339031 1496.963300 + 2 0 1 1 0.000000 0.000000 0.000000 0.000000 + 2 0 0 2 -43.587345 -21.793672 -21.793672 0.000000 + + + Parallel integral file used 8 records with 0 large values + + + ------------- + Dipole Moment + ------------- + + Center of charge (in au) is the expansion point + X = 0.0000000 Y = 0.0000000 Z = 0.0000000 + + Dipole moment 0.0000000000 A.U. + DMX -0.0000000000 DMXEFC 0.0000000000 + DMY 0.0000000000 DMYEFC 0.0000000000 + DMZ 0.0000000000 DMZEFC 0.0000000000 + -EFC- dipole 0.0000000000 A.U. + Total dipole 0.0000000000 A.U. + + Dipole moment 0.0000000000 Debye(s) + DMX -0.0000000000 DMXEFC 0.0000000000 + DMY 0.0000000000 DMYEFC 0.0000000000 + DMZ 0.0000000000 DMZEFC 0.0000000000 + -EFC- dipole 0.0000000000 DEBYE(S) + Total dipole 0.0000000000 DEBYE(S) + + 1 a.u. = 2.541766 Debyes + + ----------------- + Quadrupole Moment + ----------------- + + Center of charge (in au) is the expansion point + X = 0.0000000 Y = 0.0000000 Z = 0.0000000 + + < R**2 > = ********** a.u. ( 1 a.u. = 0.280023 10**(-16) cm**2 ) + ( also called diamagnetic susceptibility ) + + Second moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX -37.3471685133 0.0000000000 -37.3471685133 + YY -37.7147628233 0.0000000000 -37.7147628233 + ZZ -43.5873445806 0.0000000000 -43.5873445806 + XY 0.0665220953 0.0000000000 0.0665220953 + XZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 + + Second moments in buckingham(s) + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX -50.2286177524 0.0000000000 -50.2286177524 + YY -50.7229993834 0.0000000000 -50.7229993834 + ZZ -58.6210991872 0.0000000000 -58.6210991872 + XY 0.0894662977 0.0000000000 0.0894662977 + XZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 + + Quadrupole moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX 3.3038851887 0.0000000000 3.3038851887 + YY 2.7524937236 0.0000000000 2.7524937236 + ZZ -6.0563789123 0.0000000000 -6.0563789123 + XY 0.0997831429 0.0000000000 0.0997831429 + XZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 + + Quadrupole moments in buckingham(s) + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XX 4.4434315330 0.0000000000 4.4434315330 + YY 3.7018590864 0.0000000000 3.7018590864 + ZZ -8.1452906193 0.0000000000 -8.1452906193 + XY 0.1341994465 0.0000000000 0.1341994465 + XZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 + + 1 a.u. = 1.344911 Buckinghams = 1.344911 10**(-26) esu*cm**2 + + --------------- + Octupole Moment + --------------- + + Center of charge (in au) is the expansion point + X = 0.0000000 Y = 0.0000000 Z = 0.0000000 + + Third moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 + + Third moments in 10**(-34) esu*cm**3 + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 + + Octupole moments in atomic units + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 + + Octupole moments in 10**(-34) esu*cm**3 + + Component Electronic+nuclear Point charges Total + -------------------------------------------------------------------------- + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 + YYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 + + 1 a.u. = 0.711688 10**(-34) esu*cm**3 + + + ---------------------------- + Mulliken population analysis + ---------------------------- + + Total S,P,D,... shell population + -------------------------------- + Atom S P + -------------------------------------------------------------------------------------- + 1 C 3.13683 2.86758 + 2 C 3.13683 2.86758 + 3 C 3.15099 2.92571 + 4 C 3.15099 2.92571 + 5 C 3.14877 2.92836 + 6 C 3.14877 2.92836 + 7 H 0.92201 0.00000 + 8 H 0.92201 0.00000 + 9 H 0.92068 0.00000 + 10 H 0.92068 0.00000 + 11 C 3.15391 2.92242 + 12 C 3.15391 2.92242 + 13 H 0.92331 0.00000 + 14 H 0.92331 0.00000 + 15 C 3.16903 2.98580 + 16 C 3.16903 2.98580 + 17 H 0.92389 0.00000 + 18 H 0.92389 0.00000 + 19 H 0.92070 0.00000 + 20 H 0.92070 0.00000 + + ----- Total gross population on atoms ---- + + 1 C 6.0 6.00441 + 2 C 6.0 6.00441 + 3 C 6.0 6.07670 + 4 C 6.0 6.07670 + 5 C 6.0 6.07713 + 6 C 6.0 6.07713 + 7 H 1.0 0.92201 + 8 H 1.0 0.92201 + 9 H 1.0 0.92068 + 10 H 1.0 0.92068 + 11 C 6.0 6.07633 + 12 C 6.0 6.07633 + 13 H 1.0 0.92331 + 14 H 1.0 0.92331 + 15 C 6.0 6.15483 + 16 C 6.0 6.15483 + 17 H 1.0 0.92389 + 18 H 1.0 0.92389 + 19 H 1.0 0.92070 + 20 H 1.0 0.92070 + + ----- Bond indices ----- + 1- 1 0.00000 1- 2 0.09858 1- 3 1.36307 1- 4 0.00313 1- 5 0.00305 1- 6 1.36519 1- 7 0.00447 1- 8 0.00733 + 2- 1 0.09858 2- 2 0.00000 2- 3 0.00313 2- 4 1.36307 2- 5 1.36519 2- 6 0.00305 2- 7 0.00733 2- 8 0.00447 + 3- 1 1.36307 3- 2 0.00313 3- 3 0.00000 3- 4 0.09865 3- 5 1.46517 3- 6 0.00361 3- 7 0.96133 3- 8 0.00021 + 4- 1 0.00313 4- 2 1.36307 4- 3 0.09865 4- 4 0.00000 4- 5 0.00361 4- 6 1.46517 4- 7 0.00021 4- 8 0.96133 + 5- 1 0.00305 5- 2 1.36519 5- 3 1.46517 5- 4 0.00361 5- 5 0.00000 5- 6 0.10218 5- 7 0.00381 5- 8 0.00699 + 6- 1 1.36519 6- 2 0.00305 6- 3 0.00361 6- 4 1.46517 6- 5 0.10218 6- 6 0.00000 6- 7 0.00699 6- 8 0.00381 + 7- 1 0.00447 7- 2 0.00733 7- 3 0.96133 7- 4 0.00021 7- 5 0.00381 7- 6 0.00699 7- 7 0.00000 7- 8 0.00007 + 8- 1 0.00733 8- 2 0.00447 8- 3 0.00021 8- 4 0.96133 8- 5 0.00699 8- 6 0.00381 8- 7 0.00007 8- 8 0.00000 + 9- 1 0.00729 9- 2 0.00424 9- 3 0.00373 9- 4 0.00702 9- 5 0.95945 9- 6 0.00019 9- 7 0.00292 9- 8 0.00118 + 10- 1 0.00424 10- 2 0.00729 10- 3 0.00702 10- 4 0.00373 10- 5 0.00019 10- 6 0.95945 10- 7 0.00118 10- 8 0.00292 + 11- 1 0.00023 11- 2 1.06640 11- 3 0.00888 11- 4 0.00560 11- 5 0.00473 11- 6 0.00771 11- 7 0.00097 11- 8 0.00271 + 12- 1 1.06640 12- 2 0.00023 12- 3 0.00560 12- 4 0.00888 12- 5 0.00771 12- 6 0.00473 12- 7 0.00271 12- 8 0.00097 + 13- 1 0.00004 13- 2 0.00563 13- 3 0.00073 13- 4 0.00197 13- 5 0.00605 13- 6 0.00007 13- 7 0.00029 13- 8 0.00141 + 14- 1 0.00563 14- 2 0.00004 14- 3 0.00197 14- 4 0.00073 14- 5 0.00007 14- 6 0.00605 14- 7 0.00141 14- 8 0.00029 + 15- 1 0.02591 15- 2 0.00353 15- 3 0.00033 15- 4 0.04473 15- 5 0.04010 15- 6 0.00077 15- 7 0.00002 15- 8 0.00009 + 16- 1 0.00353 16- 2 0.02591 16- 3 0.04473 16- 4 0.00033 16- 5 0.00077 16- 6 0.04010 16- 7 0.00009 16- 8 0.00002 + 17- 1 0.00001 17- 2 0.00446 17- 3 0.00011 17- 4 0.00015 17- 5 0.00034 17- 6 0.00002 17- 7 0.00002 17- 8 0.00002 + 18- 1 0.00446 18- 2 0.00001 18- 3 0.00015 18- 4 0.00011 18- 5 0.00002 18- 6 0.00034 18- 7 0.00002 18- 8 0.00002 + 19- 1 0.00003 19- 2 0.01046 19- 3 0.00000 19- 4 0.00080 19- 5 0.00042 19- 6 0.00023 19- 7 0.00002 19- 8 0.00006 + 20- 1 0.01046 20- 2 0.00003 20- 3 0.00080 20- 4 0.00000 20- 5 0.00023 20- 6 0.00042 20- 7 0.00006 20- 8 0.00002 + 1- 9 0.00729 1-10 0.00424 1-11 0.00023 1-12 1.06640 1-13 0.00004 1-14 0.00563 1-15 0.02591 1-16 0.00353 + 2- 9 0.00424 2-10 0.00729 2-11 1.06640 2-12 0.00023 2-13 0.00563 2-14 0.00004 2-15 0.00353 2-16 0.02591 + 3- 9 0.00373 3-10 0.00702 3-11 0.00888 3-12 0.00560 3-13 0.00073 3-14 0.00197 3-15 0.00033 3-16 0.04473 + 4- 9 0.00702 4-10 0.00373 4-11 0.00560 4-12 0.00888 4-13 0.00197 4-14 0.00073 4-15 0.04473 4-16 0.00033 + 5- 9 0.95945 5-10 0.00019 5-11 0.00473 5-12 0.00771 5-13 0.00605 5-14 0.00007 5-15 0.04010 5-16 0.00077 + 6- 9 0.00019 6-10 0.95945 6-11 0.00771 6-12 0.00473 6-13 0.00007 6-14 0.00605 6-15 0.00077 6-16 0.04010 + 7- 9 0.00292 7-10 0.00118 7-11 0.00097 7-12 0.00271 7-13 0.00029 7-14 0.00141 7-15 0.00002 7-16 0.00009 + 8- 9 0.00118 8-10 0.00292 8-11 0.00271 8-12 0.00097 8-13 0.00141 8-14 0.00029 8-15 0.00009 8-16 0.00002 + 9- 9 0.00000 9-10 0.00008 9-11 0.00301 9-12 0.00095 9-13 0.00010 9-14 0.00004 9-15 0.00040 9-16 0.00016 + 10- 9 0.00008 10-10 0.00000 10-11 0.00095 10-12 0.00301 10-13 0.00004 10-14 0.00010 10-15 0.00016 10-16 0.00040 + 11- 9 0.00301 11-10 0.00095 11-11 0.00000 11-12 0.00044 11-13 0.95915 11-14 0.00000 11-15 1.90133 11-16 0.00003 + 12- 9 0.00095 12-10 0.00301 12-11 0.00044 12-12 0.00000 12-13 0.00000 12-14 0.95915 12-15 0.00003 12-16 1.90133 + 13- 9 0.00010 13-10 0.00004 13-11 0.95915 13-12 0.00000 13-13 0.00000 13-14 0.00000 13-15 0.00281 13-16 0.00000 + 14- 9 0.00004 14-10 0.00010 14-11 0.00000 14-12 0.95915 14-13 0.00000 14-14 0.00000 14-15 0.00000 14-16 0.00281 + 15- 9 0.00040 15-10 0.00016 15-11 1.90133 15-12 0.00003 15-13 0.00281 15-14 0.00000 15-15 0.00000 15-16 0.00895 + 16- 9 0.00016 16-10 0.00040 16-11 0.00003 16-12 1.90133 16-13 0.00000 16-14 0.00281 16-15 0.00895 16-16 0.00000 + 17- 9 0.00273 17-10 0.00002 17-11 0.00313 17-12 0.00000 17-13 0.01161 17-14 0.00000 17-15 0.96639 17-16 0.00000 + 18- 9 0.00002 18-10 0.00273 18-11 0.00000 18-12 0.00313 18-13 0.00000 18-14 0.01161 18-15 0.00000 18-16 0.96639 + 19- 9 0.00012 19-10 0.00007 19-11 0.00283 19-12 0.00000 19-13 0.00423 19-14 0.00000 19-15 0.96924 19-16 0.00000 + 20- 9 0.00007 20-10 0.00012 20-11 0.00000 20-12 0.00283 20-13 0.00000 20-14 0.00423 20-15 0.00000 20-16 0.96924 + 1-17 0.00001 1-18 0.00446 1-19 0.00003 1-20 0.01046 + 2-17 0.00446 2-18 0.00001 2-19 0.01046 2-20 0.00003 + 3-17 0.00011 3-18 0.00015 3-19 0.00000 3-20 0.00080 + 4-17 0.00015 4-18 0.00011 4-19 0.00080 4-20 0.00000 + 5-17 0.00034 5-18 0.00002 5-19 0.00042 5-20 0.00023 + 6-17 0.00002 6-18 0.00034 6-19 0.00023 6-20 0.00042 + 7-17 0.00002 7-18 0.00002 7-19 0.00002 7-20 0.00006 + 8-17 0.00002 8-18 0.00002 8-19 0.00006 8-20 0.00002 + 9-17 0.00273 9-18 0.00002 9-19 0.00012 9-20 0.00007 + 10-17 0.00002 10-18 0.00273 10-19 0.00007 10-20 0.00012 + 11-17 0.00313 11-18 0.00000 11-19 0.00283 11-20 0.00000 + 12-17 0.00000 12-18 0.00313 12-19 0.00000 12-20 0.00283 + 13-17 0.01161 13-18 0.00000 13-19 0.00423 13-20 0.00000 + 14-17 0.00000 14-18 0.01161 14-19 0.00000 14-20 0.00423 + 15-17 0.96639 15-18 0.00000 15-19 0.96924 15-20 0.00000 + 16-17 0.00000 16-18 0.96639 16-19 0.00000 16-20 0.96924 + 17-17 0.00000 17-18 0.00000 17-19 0.00520 17-20 0.00000 + 18-17 0.00000 18-18 0.00000 18-19 0.00000 18-20 0.00520 + 19-17 0.00520 19-18 0.00000 19-19 0.00000 19-20 0.00000 + 20-17 0.00000 20-18 0.00520 20-19 0.00000 20-20 0.00000 + + Large bond indices + ------------------ + 1 C - 3 C 1.36307 + 1 C - 6 C 1.36519 + 1 C - 12 C 1.06640 + 2 C - 4 C 1.36307 + 2 C - 5 C 1.36519 + 2 C - 11 C 1.06640 + 3 C - 5 C 1.46517 + 3 C - 7 H 0.96133 + 4 C - 6 C 1.46517 + 4 C - 8 H 0.96133 + 5 C - 6 C 0.10218 + 5 C - 9 H 0.95945 + 6 C - 10 H 0.95945 + 11 C - 13 H 0.95915 + 11 C - 15 C 1.90133 + 12 C - 14 H 0.95915 + 12 C - 16 C 1.90133 + 15 C - 17 H 0.96639 + 15 C - 19 H 0.96924 + 16 C - 18 H 0.96639 + 16 C - 20 H 0.96924 + + Free electrons Valency + Number of Sum of + Bond indices - Bond indices + Valency Free electrons Bond indices =Mulliken charge = Net spin population + 1 C 3.97306 2.03135 3.97306 6.00441 0.00000 + 2 C 3.97306 2.03135 3.97306 6.00441 -0.00000 + 3 C 3.96923 2.10747 3.96923 6.07670 -0.00000 + 4 C 3.96923 2.10747 3.96923 6.07670 -0.00000 + 5 C 3.97007 2.10706 3.97007 6.07713 -0.00000 + 6 C 3.97007 2.10706 3.97007 6.07713 -0.00000 + 7 H 0.99392 -0.07191 0.99392 0.92201 -0.00000 + 8 H 0.99392 -0.07191 0.99392 0.92201 -0.00000 + 9 H 0.99371 -0.07303 0.99371 0.92068 -0.00000 + 10 H 0.99371 -0.07303 0.99371 0.92068 -0.00000 + 11 C 3.96810 2.10823 3.96810 6.07633 0.00000 + 12 C 3.96810 2.10823 3.96810 6.07633 0.00000 + 13 H 0.99412 -0.07081 0.99412 0.92331 -0.00000 + 14 H 0.99412 -0.07081 0.99412 0.92331 0.00000 + 15 C 3.96478 2.19006 3.96478 6.15483 -0.00000 + 16 C 3.96478 2.19006 3.96478 6.15483 -0.00000 + 17 H 0.99421 -0.07032 0.99421 0.92389 -0.00000 + 18 H 0.99421 -0.07032 0.99421 0.92389 -0.00000 + 19 H 0.99371 -0.07301 0.99371 0.92070 0.00000 + 20 H 0.99371 -0.07301 0.99371 0.92070 -0.00000 + + Task times cpu: 48.0s wall: 48.5s + Summary of allocated global arrays +----------------------------------- + No active global arrays + + + + GA Statistics for process 0 + ------------------------------ + + create destroy get put acc scatter gather read&inc +calls: 668 668 2.18e+05 4760 1.54e+05 420 0 8364 +number of processes/call 1.00e+00 1.00e+00 1.00e+00 1.00e+00 0.00e+00 +bytes total: 3.08e+07 6.60e+06 1.62e+07 3.09e+04 0.00e+00 6.69e+04 +bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 1123200 bytes +MA_summarize_allocated_blocks: starting scan ... +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +MA usage statistics: + + allocation statistics: + heap stack + ---- ----- + current number of blocks 0 0 + maximum number of blocks 24 54 + current total bytes 0 0 + maximum total bytes 61308712 22516376 + maximum total K-bytes 61309 22517 + maximum total M-bytes 62 23 + + + NWChem Input Module + ------------------- + + + + + + CITATION + -------- + Please cite the following reference when publishing + results obtained with NWChem: + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + + AUTHORS + ------- + E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, + J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, + S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, + F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, + P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, + D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, + A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, + A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, + H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, + K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, + H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, + A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, + R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, + K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, + A. T. Wong, Z. Zhang. + + Total times cpu: 48.2s wall: 50.5s diff --git a/data/NWChem/basicNWChem7.0/dvb_un_sp_ks.nw b/data/NWChem/basicNWChem7.0/dvb_un_sp_ks.nw new file mode 100644 index 000000000..ee68937fb --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_un_sp_ks.nw @@ -0,0 +1,40 @@ + start dvb + title "Divinylbenzene in STO-3G basis set" + + geometry units angstroms + C -1.4152533224 0.2302217854 0.0000000000 + C 1.4152533224 -0.2302217854 0.0000000000 + C -0.4951331558 1.3144608674 0.0000000000 + C 0.4951331558 -1.3144608674 0.0000000000 + C 0.8894090436 1.0909493743 0.0000000000 + C -0.8894090436 -1.0909493743 0.0000000000 + H -0.8795511985 2.3437343748 0.0000000000 + H 0.8795511985 -2.3437343748 0.0000000000 + H 1.5779041557 1.9450061275 0.0000000000 + H -1.5779041557 -1.9450061275 0.0000000000 + C 2.8845844962 -0.5210893778 0.0000000000 + C -2.8845844962 0.5210893778 0.0000000000 + H 3.1403356810 -1.5919605685 0.0000000000 + H -3.1403356810 1.5919605685 0.0000000000 + C 3.8800428103 0.3822535424 0.0000000000 + C -3.8800428103 -0.3822535424 0.0000000000 + H 3.6946765858 1.4624389570 0.0000000000 + H -3.6946765858 -1.4624389570 0.0000000000 + H 4.9316453546 0.0711049543 0.0000000000 + H -4.9316453546 -0.0711049543 0.0000000000 + end + charge 1 + basis + * library sto-3g + end + dft + mult 2 + xc b3lyp + grid xfine + print "final vectors" "final vectors analysis" + end + property + mulliken + end + task dft property + diff --git a/data/NWChem/basicNWChem7.0/dvb_un_sp_ks.out b/data/NWChem/basicNWChem7.0/dvb_un_sp_ks.out new file mode 100644 index 000000000..eff9330b1 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/dvb_un_sp_ks.out @@ -0,0 +1,3402 @@ + argument 1 = dvb_un_sp_ks.nw + + + + + Northwest Computational Chemistry Package (NWChem) 6.5 + ------------------------------------------------------ + + + Environmental Molecular Sciences Laboratory + Pacific Northwest National Laboratory + Richland, WA 99352 + + Copyright (c) 1994-2014 + Pacific Northwest National Laboratory + Battelle Memorial Institute + + NWChem is an open-source computational chemistry package + distributed under the terms of the + Educational Community License (ECL) 2.0 + A copy of the license is included with this distribution + in the LICENSE.TXT file + + ACKNOWLEDGMENT + -------------- + + This software and its documentation were developed at the + EMSL at Pacific Northwest National Laboratory, a multiprogram + national laboratory, operated for the U.S. Department of Energy + by Battelle under Contract Number DE-AC05-76RL01830. Support + for this work was provided by the Department of Energy Office + of Biological and Environmental Research, Office of Basic + Energy Sciences, and the Office of Advanced Scientific Computing. + + + Job information + --------------- + + hostname = boman + program = /usr/lib64/mpich/bin/nwchem_mpich + date = Sat Jan 17 16:30:55 2015 + + compiled = Sat_Dec_06_13:02:58_2014 + source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 + nwchem branch = 6.5 + nwchem revision = 26243 + ga revision = 10506 + input = dvb_un_sp_ks.nw + prefix = dvb. + data base = ./dvb.db + status = startup + nproc = 1 + time left = -1s + + + + Memory information + ------------------ + + heap = 13107194 doubles = 100.0 Mbytes + stack = 13107199 doubles = 100.0 Mbytes + global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) + total = 52428793 doubles = 400.0 Mbytes + verify = yes + hardfail = no + + + Directory information + --------------------- + + 0 permanent = . + 0 scratch = . + + + + + NWChem Input Module + ------------------- + + + Divinylbenzene in STO-3G basis set + ---------------------------------- + + Scaling coordinates for geometry "geometry" by 1.889725989 + (inverse scale = 0.529177249) + + C2H symmetry detected + + ------ + auto-z + ------ + + + Geometry "geometry" -> "" + ------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 C 6.0000 0.23680554 1.41416660 0.00000000 + 2 C 6.0000 -0.23680554 -1.41416660 0.00000000 + 3 C 6.0000 1.31675086 0.48901061 0.00000000 + 4 C 6.0000 -1.31675086 -0.48901061 0.00000000 + 5 C 6.0000 1.08679847 -0.89447642 0.00000000 + 6 C 6.0000 -1.08679847 0.89447642 0.00000000 + 7 H 1.0000 2.34780221 0.86863451 0.00000000 + 8 H 1.0000 -2.34780221 -0.86863451 0.00000000 + 9 H 1.0000 1.93764188 -1.58693865 0.00000000 + 10 H 1.0000 -1.93764188 1.58693865 0.00000000 + 11 C 6.0000 -0.53450789 -2.88212824 0.00000000 + 12 C 6.0000 0.53450789 2.88212824 0.00000000 + 13 H 1.0000 -1.60655769 -3.13289308 0.00000000 + 14 H 1.0000 1.60655769 3.13289308 0.00000000 + 15 C 6.0000 0.36419263 -3.88177971 0.00000000 + 16 C 6.0000 -0.36419263 3.88177971 0.00000000 + 17 H 1.0000 1.44522900 -3.70144241 0.00000000 + 18 H 1.0000 -1.44522900 3.70144241 0.00000000 + 19 H 1.0000 0.04815351 -4.93192286 0.00000000 + 20 H 1.0000 -0.04815351 4.93192286 0.00000000 + + Atomic Mass + ----------- + + C 12.000000 + H 1.007825 + + + Effective nuclear repulsion energy (a.u.) 445.9370121674 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name C2h + Group number 21 + Group order 4 + No. of unique centers 10 + + Symmetry unique atoms + + 1 3 5 7 9 11 13 15 17 19 + + + + Z-matrix (autoz) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value + ----------- -------- ----- ----- ----- ----- ----- ---------- + 1 Stretch 1 3 1.42204 + 2 Stretch 1 6 1.42197 + 3 Stretch 1 12 1.49784 + 4 Stretch 2 4 1.42204 + 5 Stretch 2 5 1.42197 + 6 Stretch 2 11 1.49784 + 7 Stretch 3 5 1.40247 + 8 Stretch 3 7 1.09872 + 9 Stretch 4 6 1.40247 + 10 Stretch 4 8 1.09872 + 11 Stretch 5 9 1.09701 + 12 Stretch 6 10 1.09701 + 13 Stretch 11 13 1.10099 + 14 Stretch 11 15 1.34423 + 15 Stretch 12 14 1.10099 + 16 Stretch 12 16 1.34423 + 17 Stretch 15 17 1.09597 + 18 Stretch 15 19 1.09667 + 19 Stretch 16 18 1.09597 + 20 Stretch 16 20 1.09667 + 21 Bend 1 3 5 121.14867 + 22 Bend 1 3 7 119.20109 + 23 Bend 1 6 4 120.87358 + 24 Bend 1 6 10 119.42285 + 25 Bend 1 12 14 114.62953 + 26 Bend 1 12 16 126.57992 + 27 Bend 2 4 6 121.14867 + 28 Bend 2 4 8 119.20109 + 29 Bend 2 5 3 120.87358 + 30 Bend 2 5 9 119.42285 + 31 Bend 2 11 13 114.62953 + 32 Bend 2 11 15 126.57992 + 33 Bend 3 1 6 117.97776 + 34 Bend 3 1 12 119.12155 + 35 Bend 3 5 9 119.70357 + 36 Bend 4 2 5 117.97776 + 37 Bend 4 2 11 119.12155 + 38 Bend 4 6 10 119.70357 + 39 Bend 5 2 11 122.90069 + 40 Bend 5 3 7 119.65024 + 41 Bend 6 1 12 122.90069 + 42 Bend 6 4 8 119.65024 + 43 Bend 11 15 17 122.48517 + 44 Bend 11 15 19 121.29492 + 45 Bend 12 16 18 122.48517 + 46 Bend 12 16 20 121.29492 + 47 Bend 13 11 15 118.79054 + 48 Bend 14 12 16 118.79054 + 49 Bend 17 15 19 116.21990 + 50 Bend 18 16 20 116.21990 + 51 Torsion 1 3 5 2 0.00000 + 52 Torsion 1 3 5 9 180.00000 + 53 Torsion 1 6 4 2 0.00000 + 54 Torsion 1 6 4 8 180.00000 + 55 Torsion 1 12 16 18 0.00000 + 56 Torsion 1 12 16 20 180.00000 + 57 Torsion 2 4 6 10 180.00000 + 58 Torsion 2 5 3 7 180.00000 + 59 Torsion 2 11 15 17 0.00000 + 60 Torsion 2 11 15 19 180.00000 + 61 Torsion 3 1 6 4 0.00000 + 62 Torsion 3 1 6 10 180.00000 + 63 Torsion 3 1 12 14 0.00000 + 64 Torsion 3 1 12 16 180.00000 + 65 Torsion 3 5 2 4 0.00000 + 66 Torsion 3 5 2 11 180.00000 + 67 Torsion 4 2 5 9 180.00000 + 68 Torsion 4 2 11 13 0.00000 + 69 Torsion 4 2 11 15 180.00000 + 70 Torsion 4 6 1 12 180.00000 + 71 Torsion 5 2 4 6 -0.00000 + 72 Torsion 5 2 4 8 180.00000 + 73 Torsion 5 2 11 13 180.00000 + 74 Torsion 5 2 11 15 0.00000 + 75 Torsion 5 3 1 6 0.00000 + 76 Torsion 5 3 1 12 180.00000 + 77 Torsion 6 1 3 7 180.00000 + 78 Torsion 6 1 12 14 180.00000 + 79 Torsion 6 1 12 16 0.00000 + 80 Torsion 6 4 2 11 180.00000 + 81 Torsion 7 3 1 12 -0.00000 + 82 Torsion 7 3 5 9 0.00000 + 83 Torsion 8 4 2 11 -0.00000 + 84 Torsion 8 4 6 10 0.00000 + 85 Torsion 9 5 2 11 0.00000 + 86 Torsion 10 6 1 12 0.00000 + 87 Torsion 13 11 15 17 180.00000 + 88 Torsion 13 11 15 19 -0.00000 + 89 Torsion 14 12 16 18 180.00000 + 90 Torsion 14 12 16 20 -0.00000 + + + XYZ format geometry + ------------------- + 20 + geometry + C 0.23680554 1.41416660 0.00000000 + C -0.23680554 -1.41416660 0.00000000 + C 1.31675086 0.48901061 0.00000000 + C -1.31675086 -0.48901061 0.00000000 + C 1.08679847 -0.89447642 0.00000000 + C -1.08679847 0.89447642 0.00000000 + H 2.34780221 0.86863451 0.00000000 + H -2.34780221 -0.86863451 0.00000000 + H 1.93764188 -1.58693865 0.00000000 + H -1.93764188 1.58693865 0.00000000 + C -0.53450789 -2.88212824 0.00000000 + C 0.53450789 2.88212824 0.00000000 + H -1.60655769 -3.13289308 0.00000000 + H 1.60655769 3.13289308 0.00000000 + C 0.36419263 -3.88177971 0.00000000 + C -0.36419263 3.88177971 0.00000000 + H 1.44522900 -3.70144241 0.00000000 + H -1.44522900 3.70144241 0.00000000 + H 0.04815351 -4.93192286 0.00000000 + H -0.04815351 4.93192286 0.00000000 + + ============================================================================== + internuclear distances + ------------------------------------------------------------------------------ + center one | center two | atomic units | angstroms + ------------------------------------------------------------------------------ + 3 C | 1 C | 2.68726 | 1.42204 + 4 C | 2 C | 2.68726 | 1.42204 + 5 C | 2 C | 2.68714 | 1.42197 + 5 C | 3 C | 2.65028 | 1.40247 + 6 C | 1 C | 2.68714 | 1.42197 + 6 C | 4 C | 2.65028 | 1.40247 + 7 H | 3 C | 2.07628 | 1.09872 + 8 H | 4 C | 2.07628 | 1.09872 + 9 H | 5 C | 2.07305 | 1.09701 + 10 H | 6 C | 2.07305 | 1.09701 + 11 C | 2 C | 2.83052 | 1.49784 + 12 C | 1 C | 2.83052 | 1.49784 + 13 H | 11 C | 2.08056 | 1.10099 + 14 H | 12 C | 2.08056 | 1.10099 + 15 C | 11 C | 2.54023 | 1.34423 + 16 C | 12 C | 2.54023 | 1.34423 + 17 H | 15 C | 2.07109 | 1.09597 + 18 H | 16 C | 2.07109 | 1.09597 + 19 H | 15 C | 2.07240 | 1.09667 + 20 H | 16 C | 2.07240 | 1.09667 + ------------------------------------------------------------------------------ + number of included internuclear distances: 20 + ============================================================================== + + + + ============================================================================== + internuclear angles + ------------------------------------------------------------------------------ + center 1 | center 2 | center 3 | degrees + ------------------------------------------------------------------------------ + 3 C | 1 C | 6 C | 117.98 + 3 C | 1 C | 12 C | 119.12 + 6 C | 1 C | 12 C | 122.90 + 4 C | 2 C | 5 C | 117.98 + 4 C | 2 C | 11 C | 119.12 + 5 C | 2 C | 11 C | 122.90 + 1 C | 3 C | 5 C | 121.15 + 1 C | 3 C | 7 H | 119.20 + 5 C | 3 C | 7 H | 119.65 + 2 C | 4 C | 6 C | 121.15 + 2 C | 4 C | 8 H | 119.20 + 6 C | 4 C | 8 H | 119.65 + 2 C | 5 C | 3 C | 120.87 + 2 C | 5 C | 9 H | 119.42 + 3 C | 5 C | 9 H | 119.70 + 1 C | 6 C | 4 C | 120.87 + 1 C | 6 C | 10 H | 119.42 + 4 C | 6 C | 10 H | 119.70 + 2 C | 11 C | 13 H | 114.63 + 2 C | 11 C | 15 C | 126.58 + 13 H | 11 C | 15 C | 118.79 + 1 C | 12 C | 14 H | 114.63 + 1 C | 12 C | 16 C | 126.58 + 14 H | 12 C | 16 C | 118.79 + 11 C | 15 C | 17 H | 122.49 + 11 C | 15 C | 19 H | 121.29 + 17 H | 15 C | 19 H | 116.22 + 12 C | 16 C | 18 H | 122.49 + 12 C | 16 C | 20 H | 121.29 + 18 H | 16 C | 20 H | 116.22 + ------------------------------------------------------------------------------ + number of included internuclear angles: 30 + ============================================================================== + + + + library name resolved from: .nwchemrc + library file name is: + + + + Summary of "ao basis" -> "" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + * sto-3g on all atoms + + + NWChem Property Module + ---------------------- + + + Divinylbenzene in STO-3G basis set + + itol2e modified to match energy + convergence criterion. + + NWChem DFT Module + ----------------- + + + Divinylbenzene in STO-3G basis set + + + Basis "ao basis" -> "ao basis" (cartesian) + ----- + C (Carbon) + ---------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 7.16168370E+01 0.154329 + 1 S 1.30450960E+01 0.535328 + 1 S 3.53051220E+00 0.444635 + + 2 S 2.94124940E+00 -0.099967 + 2 S 6.83483100E-01 0.399513 + 2 S 2.22289900E-01 0.700115 + + 3 P 2.94124940E+00 0.155916 + 3 P 6.83483100E-01 0.607684 + 3 P 2.22289900E-01 0.391957 + + H (Hydrogen) + ------------ + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.42525091E+00 0.154329 + 1 S 6.23913730E-01 0.535328 + 1 S 1.68855400E-01 0.444635 + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + ag 25 + au 5 + bg 5 + bu 25 + + Caching 1-el integrals + itol2e modified to match energy + convergence criterion. + + General Information + ------------------- + SCF calculation type: DFT + Wavefunction type: spin polarized. + No. of atoms : 20 + No. of electrons : 69 + Alpha electrons : 35 + Beta electrons : 34 + Charge : 1 + Spin multiplicity: 2 + Use of symmetry is: on ; symmetry adaption is: on + Maximum number of iterations: 30 + AO basis - number of functions: 60 + number of shells: 40 + Convergence on energy requested: 1.00D-07 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 + + XC Information + -------------- + B3LYP Method XC Potential + Hartree-Fock (Exact) Exchange 0.200 + Slater Exchange Functional 0.800 local + Becke 1988 Exchange Functional 0.720 non-local + Lee-Yang-Parr Correlation Functional 0.810 + VWN I RPA Correlation Functional 0.190 local + + Grid Information + ---------------- + Grid used for XC integration: xfine + Radial quadrature: Mura-Knowles + Angular quadrature: Lebedev. + Tag B.-S. Rad. Rad. Pts. Rad. Cut. Ang. Pts. + --- ---------- --------- --------- --------- + C 0.70 100 13.0 1454 + H 0.35 100 13.0 1202 + Grid pruning is: on + Number of quadrature shells: 1000 + Spatial weights used: Erf1 + + Convergence Information + ----------------------- + Convergence aids based upon iterative change in + total energy or number of iterations. + Levelshifting, if invoked, occurs when the + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + DIIS, if invoked, will attempt to extrapolate + using up to (NFOCK): 10 stored Fock matrices. + + Damping( 0%) Levelshifting(0.5) DIIS + --------------- ------------------- --------------- + dE on: start ASAP start + dE off: 2 iters 30 iters 30 iters + + + Screening Tolerance Information + ------------------------------- + Density screening/tol_rho: 1.00D-11 + AO Gaussian exp screening on grid/accAOfunc: 16 + CD Gaussian exp screening on grid/accCDfunc: 20 + XC Gaussian exp screening on grid/accXCfunc: 20 + Schwarz screening/accCoul: 1.00D-08 + + + Superposition of Atomic Density Guess + ------------------------------------- + + Sum of atomic energies: -376.44825176 + + Renormalizing density from 70.00 to 69 + + Non-variational initial energy + ------------------------------ + + Total energy = -375.750729 + 1-e energy = -1381.430366 + 2-e energy = 559.742625 + HOMO = -0.261060 + LUMO = -0.063255 + + + Symmetry analysis of molecular orbitals - initial alpha + ------------------------------------------------------- + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 ag 2 bu 3 bu 4 ag 5 bu + 6 ag 7 ag 8 bu 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 bg 34 au 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + + Symmetry analysis of molecular orbitals - initial beta + ------------------------------------------------------ + + Numbering of irreducible representations: + + 1 ag 2 au 3 bg 4 bu + + Orbital symmetries: + + 1 ag 2 bu 3 bu 4 ag 5 bu + 6 ag 7 ag 8 bu 9 bu 10 ag + 11 ag 12 bu 13 ag 14 bu 15 bu + 16 ag 17 ag 18 bu 19 ag 20 ag + 21 bu 22 bu 23 bu 24 ag 25 bu + 26 bu 27 ag 28 au 29 bu 30 ag + 31 ag 32 bg 33 bg 34 au 35 bg + 36 au 37 au 38 bg 39 au 40 bg + 41 ag 42 bu 43 bu 44 ag 45 ag + + Time after variat. SCF: 0.7 + Time prior to 1st pass: 0.7 + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 19 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.086D+05 #integrals = 3.268D+05 #direct = 0.0% #cached =100.0% + + + Grid_pts file = ./dvb.gridpts.0 + Record size in doubles = 12289 No. of grid_pts per rec = 3070 + Max. records in memory = 522 Max. recs in file = ********* + + + Memory utilization after 1st SCF pass: + Heap Space remaining (MW): 5.44 5443586 + Stack Space remaining (MW): 13.11 13105692 + + convergence iter energy DeltaE RMS-Dens Diis-err time + ---------------- ----- ----------------- --------- --------- --------- ------ + d= 0,ls=0.0,diis 1 -382.0243207793 -8.28D+02 7.77D-03 1.04D-01 12.5 + 7.68D-03 1.02D-01 + d= 0,ls=0.0,diis 2 -382.0647499189 -4.04D-02 4.64D-03 1.95D-02 18.9 + 5.39D-03 2.36D-02 + d= 0,ls=0.0,diis 3 -382.0625001693 2.25D-03 2.83D-03 2.67D-02 28.1 + 2.64D-03 2.26D-02 + d= 0,ls=0.0,diis 4 -382.0809247663 -1.84D-02 3.84D-04 5.13D-04 37.4 + 3.93D-04 5.30D-04 + d= 0,ls=0.0,diis 5 -382.0812990147 -3.74D-04 2.64D-04 2.82D-05 46.7 + 2.73D-04 3.75D-05 + Resetting Diis + d= 0,ls=0.0,diis 6 -382.0813980745 -9.91D-05 1.70D-04 7.53D-06 56.0 + 1.78D-04 1.25D-05 + d= 0,ls=0.0,diis 7 -382.0814285795 -3.05D-05 7.49D-05 4.37D-06 65.3 + 1.08D-04 5.77D-06 + d= 0,ls=0.0,diis 8 -382.0814301365 -1.56D-06 4.83D-05 1.07D-05 74.6 + 5.20D-05 8.93D-06 + d= 0,ls=0.0,diis 9 -382.0814368255 -6.69D-06 6.54D-05 2.84D-07 83.8 + 7.05D-05 4.73D-07 + d= 0,ls=0.0,diis 10 -382.0814390543 -2.23D-06 7.31D-06 4.27D-08 93.1 + 3.38D-06 2.29D-08 + d= 0,ls=0.0,diis 11 -382.0814390856 -3.13D-08 6.92D-07 2.68D-09 102.4 + 1.65D-06 3.12D-09 + + + Total DFT energy = -382.081439085639 + One electron energy = -1386.634813660123 + Coulomb energy = 615.977982897230 + Exchange-Corr. energy = -57.361620490192 + Nuclear repulsion energy = 445.937012167446 + + Numeric. integr. density = 69.000000234960 + + Total iterative time = 101.6s + + + + Occupations of the irreducible representations + ---------------------------------------------- + + irrep alpha beta + -------- -------- -------- + ag 15.0 15.0 + au 2.0 2.0 + bg 3.0 2.0 + bu 15.0 15.0 + + + DFT Final Alpha Molecular Orbital Analysis + ------------------------------------------ + + Vector 1 Occ=1.000000D+00 E=-1.025361D+01 Symmetry=bu + MO Center= 2.5D-11, 1.5D-10, -4.2D-27, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.700267 1 C s 6 -0.700267 2 C s + + Vector 2 Occ=1.000000D+00 E=-1.025356D+01 Symmetry=ag + MO Center= -2.5D-11, -1.5D-10, 6.5D-19, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.700290 1 C s 6 0.700290 2 C s + + Vector 3 Occ=1.000000D+00 E=-1.021954D+01 Symmetry=bu + MO Center= 3.2D-11, -2.3D-11, -1.6D-24, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.682809 5 C s 26 -0.682809 6 C s + 11 -0.155052 3 C s 16 0.155052 4 C s + + Vector 4 Occ=1.000000D+00 E=-1.021949D+01 Symmetry=ag + MO Center= -3.2D-11, 2.3D-11, 9.8D-19, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.676841 5 C s 26 0.676841 6 C s + 11 -0.179416 3 C s 16 -0.179416 4 C s + + Vector 5 Occ=1.000000D+00 E=-1.021807D+01 Symmetry=bu + MO Center= 1.2D-11, 3.7D-12, -5.0D-24, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.682912 3 C s 16 -0.682912 4 C s + 21 0.156049 5 C s 26 -0.156049 6 C s + + Vector 6 Occ=1.000000D+00 E=-1.021797D+01 Symmetry=ag + MO Center= -1.2D-11, -3.9D-12, 3.0D-18, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.674981 3 C s 16 0.674981 4 C s + 21 0.179432 5 C s 26 0.179432 6 C s + + Vector 7 Occ=1.000000D+00 E=-1.021759D+01 Symmetry=bu + MO Center= -9.9D-10, -5.4D-09, 1.9D-21, r^2= 8.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.697690 11 C s 40 -0.697690 12 C s + + Vector 8 Occ=1.000000D+00 E=-1.021759D+01 Symmetry=ag + MO Center= 9.9D-10, 5.4D-09, 3.6D-32, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.695510 11 C s 40 0.695510 12 C s + + Vector 9 Occ=1.000000D+00 E=-1.021526D+01 Symmetry=bu + MO Center= 1.9D-17, 2.2D-16, -7.0D-32, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.697939 15 C s 52 -0.697939 16 C s + + Vector 10 Occ=1.000000D+00 E=-1.021526D+01 Symmetry=ag + MO Center= -3.0D-16, 1.2D-16, 2.2D-33, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.697918 15 C s 52 0.697918 16 C s + + Vector 11 Occ=1.000000D+00 E=-1.020756D+00 Symmetry=ag + MO Center= 6.5D-15, -8.9D-15, 3.5D-17, r^2= 2.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.290615 1 C s 7 0.290615 2 C s + 22 0.241187 5 C s 27 0.241187 6 C s + 12 0.239205 3 C s 17 0.239205 4 C s + + Vector 12 Occ=1.000000D+00 E=-9.619173D-01 Symmetry=bu + MO Center= 2.1D-15, 2.0D-14, 1.1D-20, r^2= 7.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.302134 1 C s 7 -0.302134 2 C s + 36 -0.278925 11 C s 41 0.278925 12 C s + 48 -0.200892 15 C s 53 0.200892 16 C s + + Vector 13 Occ=1.000000D+00 E=-9.216166D-01 Symmetry=ag + MO Center= -4.1D-16, -1.2D-14, 4.0D-32, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.322501 15 C s 53 0.322501 16 C s + 36 0.312363 11 C s 41 0.312363 12 C s + + Vector 14 Occ=1.000000D+00 E=-8.992434D-01 Symmetry=bu + MO Center= -7.0D-15, 2.7D-15, -6.9D-20, r^2= 3.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.363920 3 C s 17 -0.363920 4 C s + 22 0.320446 5 C s 27 -0.320446 6 C s + + Vector 15 Occ=1.000000D+00 E=-8.767202D-01 Symmetry=bu + MO Center= 7.1D-17, 2.1D-15, -1.0D-19, r^2= 9.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.313565 15 C s 53 -0.313565 16 C s + 2 0.266881 1 C s 7 -0.266881 2 C s + 22 -0.205247 5 C s 27 0.205247 6 C s + 36 0.162233 11 C s 41 -0.162233 12 C s + + Vector 16 Occ=1.000000D+00 E=-7.871090D-01 Symmetry=ag + MO Center= -8.0D-16, -2.8D-15, -5.2D-17, r^2= 7.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.249081 5 C s 27 0.249081 6 C s + 48 0.238948 15 C s 53 0.238948 16 C s + 2 -0.224049 1 C s 7 -0.224049 2 C s + 14 -0.170958 3 C py 19 0.170958 4 C py + + Vector 17 Occ=1.000000D+00 E=-7.598629D-01 Symmetry=ag + MO Center= -1.4D-15, 2.2D-15, 1.4D-16, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.334339 3 C s 17 0.334339 4 C s + 3 0.203987 1 C px 8 -0.203987 2 C px + 24 0.178445 5 C py 29 -0.178445 6 C py + 22 -0.169852 5 C s 27 -0.169852 6 C s + 2 -0.160170 1 C s 7 -0.160170 2 C s + + Vector 18 Occ=1.000000D+00 E=-7.224938D-01 Symmetry=bu + MO Center= -6.0D-16, -8.0D-16, -3.0D-32, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.309254 11 C s 41 -0.309254 12 C s + 48 -0.268359 15 C s 53 0.268359 16 C s + 4 -0.161007 1 C py 9 -0.161007 2 C py + 12 0.153598 3 C s 17 -0.153598 4 C s + 45 0.152835 13 H s 46 -0.152835 14 H s + + Vector 19 Occ=1.000000D+00 E=-7.035946D-01 Symmetry=ag + MO Center= 2.0D-16, -3.2D-16, 1.7D-32, r^2= 7.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.203402 5 C px 28 -0.203402 6 C px + 13 0.190090 3 C px 18 -0.190090 4 C px + 36 0.185525 11 C s 41 0.185525 12 C s + 48 -0.177455 15 C s 53 -0.177455 16 C s + 22 0.170730 5 C s 27 0.170730 6 C s + + Vector 20 Occ=1.000000D+00 E=-6.504762D-01 Symmetry=ag + MO Center= -1.1D-16, 5.8D-17, 3.4D-33, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.228211 15 C px 54 -0.228211 16 C px + 38 0.181709 11 C py 43 -0.181709 12 C py + 57 0.177943 17 H s 58 0.177943 18 H s + 36 -0.158069 11 C s 41 -0.158069 12 C s + + Vector 21 Occ=1.000000D+00 E=-6.349759D-01 Symmetry=bu + MO Center= 2.9D-16, -2.1D-15, 3.5D-17, r^2= 9.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 0.215130 3 C py 19 0.215130 4 C py + 37 0.211885 11 C px 42 0.211885 12 C px + 50 0.199161 15 C py 55 0.199161 16 C py + 3 0.173226 1 C px 8 0.173226 2 C px + 59 -0.151328 19 H s 60 0.151328 20 H s + + Vector 22 Occ=1.000000D+00 E=-6.039889D-01 Symmetry=bu + MO Center= 7.1D-16, -2.0D-16, -7.6D-17, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.208675 11 C py 43 0.208675 12 C py + 49 0.202922 15 C px 54 0.202922 16 C px + 13 0.183074 3 C px 18 0.183074 4 C px + 3 -0.181829 1 C px 8 -0.181829 2 C px + 24 0.179965 5 C py 29 0.179965 6 C py + + Vector 23 Occ=1.000000D+00 E=-5.960837D-01 Symmetry=bu + MO Center= 7.5D-16, -2.8D-16, -6.8D-32, r^2= 7.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.283932 5 C px 28 0.283932 6 C px + 33 0.234053 9 H s 34 -0.234053 10 H s + 49 0.175613 15 C px 54 0.175613 16 C px + 2 0.173244 1 C s 7 -0.173244 2 C s + 4 -0.154219 1 C py 9 -0.154219 2 C py + + Vector 24 Occ=1.000000D+00 E=-5.878168D-01 Symmetry=ag + MO Center= -9.0D-16, 1.8D-15, -4.7D-17, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.350754 15 C py 55 -0.350754 16 C py + 37 0.265660 11 C px 42 -0.265660 12 C px + 59 -0.246184 19 H s 60 -0.246184 20 H s + 45 -0.150427 13 H s 46 -0.150427 14 H s + + Vector 25 Occ=1.000000D+00 E=-5.688461D-01 Symmetry=bu + MO Center= -8.3D-16, 6.7D-16, -9.1D-19, r^2= 4.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.335087 3 C px 18 0.335087 4 C px + 31 0.248253 7 H s 32 -0.248253 8 H s + 23 0.195219 5 C px 28 0.195219 6 C px + 24 -0.193761 5 C py 29 -0.193761 6 C py + 33 0.190865 9 H s 34 -0.190865 10 H s + + Vector 26 Occ=1.000000D+00 E=-5.522412D-01 Symmetry=bu + MO Center= 2.9D-15, 1.6D-15, 1.5D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.283994 15 C py 55 0.283994 16 C py + 14 -0.220296 3 C py 19 -0.220296 4 C py + 37 0.215469 11 C px 42 0.215469 12 C px + 24 0.210473 5 C py 29 0.210473 6 C py + 59 -0.178274 19 H s 60 0.178274 20 H s + + Vector 27 Occ=1.000000D+00 E=-5.371004D-01 Symmetry=ag + MO Center= -2.1D-15, -2.3D-15, 4.3D-32, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.294646 15 C px 54 -0.294646 16 C px + 57 0.237658 17 H s 58 0.237658 18 H s + 37 -0.192640 11 C px 42 0.192640 12 C px + 45 0.172738 13 H s 46 0.172738 14 H s + 14 -0.170018 3 C py 19 0.170018 4 C py + + Vector 28 Occ=1.000000D+00 E=-5.336331D-01 Symmetry=au + MO Center= -2.3D-15, -5.8D-15, 3.6D-17, r^2= 3.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.362047 1 C pz 10 0.362047 2 C pz + 25 0.287484 5 C pz 30 0.287484 6 C pz + 15 0.285426 3 C pz 20 0.285426 4 C pz + 39 0.163596 11 C pz 44 0.163596 12 C pz + + Vector 29 Occ=1.000000D+00 E=-5.010516D-01 Symmetry=bu + MO Center= -2.4D-15, -3.0D-14, -1.1D-17, r^2= 1.3D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.260437 13 H s 46 -0.260437 14 H s + 37 -0.236132 11 C px 42 -0.236132 12 C px + 49 0.234565 15 C px 54 0.234565 16 C px + 57 0.235371 17 H s 58 -0.235371 18 H s + 4 0.218695 1 C py 9 0.218695 2 C py + + Vector 30 Occ=1.000000D+00 E=-4.932961D-01 Symmetry=ag + MO Center= 1.9D-15, 1.9D-14, 2.3D-17, r^2= 6.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 -0.259644 9 H s 34 -0.259644 10 H s + 4 0.247991 1 C py 9 -0.247991 2 C py + 14 -0.245384 3 C py 19 0.245384 4 C py + 24 0.218035 5 C py 29 -0.218035 6 C py + 38 0.210706 11 C py 43 -0.210706 12 C py + + Vector 31 Occ=1.000000D+00 E=-4.827093D-01 Symmetry=ag + MO Center= 1.0D-15, 9.1D-15, -1.9D-16, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.257457 1 C px 8 -0.257457 2 C px + 23 0.251931 5 C px 28 -0.251931 6 C px + 31 -0.234505 7 H s 32 -0.234505 8 H s + 13 -0.202378 3 C px 18 0.202378 4 C px + 45 -0.200740 13 H s 46 -0.200740 14 H s + + Vector 32 Occ=1.000000D+00 E=-4.736159D-01 Symmetry=bg + MO Center= 7.9D-16, -8.2D-15, -1.3D-19, r^2= 7.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.383761 1 C pz 10 -0.383761 2 C pz + 39 -0.342924 11 C pz 44 0.342924 12 C pz + 51 -0.265433 15 C pz 56 0.265433 16 C pz + + Vector 33 Occ=1.000000D+00 E=-4.179075D-01 Symmetry=au + MO Center= 4.4D-16, 1.4D-14, 1.7D-16, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.447522 15 C pz 56 0.447522 16 C pz + 39 0.389910 11 C pz 44 0.389910 12 C pz + 15 -0.169005 3 C pz 20 -0.169005 4 C pz + 25 -0.167861 5 C pz 30 -0.167861 6 C pz + + Vector 34 Occ=1.000000D+00 E=-3.943442D-01 Symmetry=bg + MO Center= 1.3D-15, 3.9D-16, -1.3D-18, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.460831 3 C pz 20 -0.460831 4 C pz + 25 0.460407 5 C pz 30 -0.460407 6 C pz + + Vector 35 Occ=1.000000D+00 E=-3.697074D-01 Symmetry=bg + MO Center= 2.4D-16, 1.0D-15, 7.3D-18, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.429422 15 C pz 56 -0.429422 16 C pz + 5 0.377815 1 C pz 10 -0.377815 2 C pz + 39 0.228269 11 C pz 44 -0.228269 12 C pz + 25 -0.201114 5 C pz 30 0.201114 6 C pz + 15 0.194046 3 C pz 20 -0.194046 4 C pz + + Vector 36 Occ=0.000000D+00 E=-1.774527D-01 Symmetry=au + MO Center= 5.0D-16, 1.4D-15, 1.0D-16, r^2= 7.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.454603 1 C pz 10 0.454603 2 C pz + 51 -0.414097 15 C pz 56 -0.414097 16 C pz + 25 -0.298929 5 C pz 30 -0.298929 6 C pz + 15 -0.257054 3 C pz 20 -0.257054 4 C pz + 39 0.248042 11 C pz 44 0.248042 12 C pz + + Vector 37 Occ=0.000000D+00 E=-1.115335D-01 Symmetry=au + MO Center= -6.1D-16, -4.9D-16, -1.0D-16, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.583595 3 C pz 20 0.583595 4 C pz + 25 -0.552467 5 C pz 30 -0.552467 6 C pz + + Vector 38 Occ=0.000000D+00 E=-9.436260D-02 Symmetry=bg + MO Center= 3.9D-16, 4.9D-15, -4.9D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.540550 11 C pz 44 -0.540550 12 C pz + 51 -0.500547 15 C pz 56 0.500547 16 C pz + 15 0.245368 3 C pz 20 -0.245368 4 C pz + 25 -0.235394 5 C pz 30 0.235394 6 C pz + + Vector 39 Occ=0.000000D+00 E=-2.962792D-02 Symmetry=au + MO Center= -3.5D-16, -4.3D-15, -8.5D-16, r^2= 8.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.553828 11 C pz 44 0.553828 12 C pz + 5 -0.468066 1 C pz 10 -0.468066 2 C pz + 51 -0.386369 15 C pz 56 -0.386369 16 C pz + 25 0.192075 5 C pz 30 0.192075 6 C pz + 15 0.159669 3 C pz 20 0.159669 4 C pz + + Vector 40 Occ=0.000000D+00 E= 5.994919D-02 Symmetry=bg + MO Center= -6.2D-16, -3.6D-15, 3.9D-17, r^2= 3.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.526875 1 C pz 10 -0.526875 2 C pz + 15 -0.472960 3 C pz 20 0.472960 4 C pz + 25 0.473775 5 C pz 30 -0.473775 6 C pz + 39 0.292051 11 C pz 44 -0.292051 12 C pz + 51 -0.155709 15 C pz 56 0.155709 16 C pz + + Vector 41 Occ=0.000000D+00 E= 1.397083D-01 Symmetry=ag + MO Center= -2.8D-15, -4.0D-14, -5.6D-17, r^2= 8.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.488096 1 C s 7 0.488096 2 C s + 33 -0.390580 9 H s 34 -0.390580 10 H s + 31 -0.378081 7 H s 32 -0.378081 8 H s + 38 -0.371423 11 C py 43 0.371423 12 C py + 36 -0.347602 11 C s 41 -0.347602 12 C s + + Vector 42 Occ=0.000000D+00 E= 1.490003D-01 Symmetry=bu + MO Center= 9.9D-15, 2.5D-14, -1.5D-18, r^2= 9.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.353761 13 H s 46 -0.353761 14 H s + 13 0.340063 3 C px 18 0.340063 4 C px + 37 0.328670 11 C px 42 0.328670 12 C px + 57 -0.322957 17 H s 58 0.322957 18 H s + 49 0.314370 15 C px 54 0.314370 16 C px + + Vector 43 Occ=0.000000D+00 E= 1.792466D-01 Symmetry=bu + MO Center= -6.5D-15, 1.8D-14, -4.9D-17, r^2= 6.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.587200 11 C s 41 -0.587200 12 C s + 4 0.447578 1 C py 9 0.447578 2 C py + 33 0.400056 9 H s 34 -0.400056 10 H s + 2 0.343313 1 C s 7 -0.343313 2 C s + 38 0.325332 11 C py 43 0.325332 12 C py + + Vector 44 Occ=0.000000D+00 E= 1.964587D-01 Symmetry=ag + MO Center= 2.9D-15, 5.3D-16, -2.9D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.520762 13 H s 46 0.520762 14 H s + 12 0.467458 3 C s 17 0.467458 4 C s + 57 -0.403044 17 H s 58 -0.403044 18 H s + 33 -0.332563 9 H s 34 -0.332563 10 H s + 31 -0.321891 7 H s 32 -0.321891 8 H s + + Vector 45 Occ=0.000000D+00 E= 2.146793D-01 Symmetry=ag + MO Center= 5.3D-14, -1.6D-13, 9.5D-17, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.771047 5 C s 27 0.771047 6 C s + 48 0.518815 15 C s 53 0.518815 16 C s + 2 -0.433732 1 C s 7 -0.433732 2 C s + 12 -0.405912 3 C s 17 -0.405912 4 C s + 57 -0.386663 17 H s 58 -0.386663 18 H s + + Vector 46 Occ=0.000000D+00 E= 2.203576D-01 Symmetry=bu + MO Center= -5.1D-14, 1.3D-13, 8.8D-17, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.643368 5 C s 27 -0.643368 6 C s + 2 0.505156 1 C s 7 -0.505156 2 C s + 12 -0.484304 3 C s 17 0.484304 4 C s + 48 0.481526 15 C s 53 -0.481526 16 C s + 31 0.412727 7 H s 32 -0.412727 8 H s + + Vector 47 Occ=0.000000D+00 E= 2.396756D-01 Symmetry=ag + MO Center= -1.0D-15, -1.5D-15, 8.7D-16, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.724224 1 C s 7 0.724224 2 C s + 12 -0.638843 3 C s 17 -0.638843 4 C s + 36 -0.483207 11 C s 41 -0.483207 12 C s + 48 0.460729 15 C s 53 0.460729 16 C s + 57 -0.356579 17 H s 58 -0.356579 18 H s + + Vector 48 Occ=0.000000D+00 E= 2.405820D-01 Symmetry=bu + MO Center= 1.5D-15, 1.6D-14, -3.4D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.510048 7 H s 32 -0.510048 8 H s + 59 0.462241 19 H s 60 -0.462241 20 H s + 45 0.458356 13 H s 46 -0.458356 14 H s + 36 -0.419598 11 C s 41 0.419598 12 C s + 50 0.340596 15 C py 55 0.340596 16 C py + + Vector 49 Occ=0.000000D+00 E= 2.630187D-01 Symmetry=bu + MO Center= -2.4D-15, 1.0D-14, 3.1D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.738193 15 C s 53 -0.738193 16 C s + 57 -0.576719 17 H s 58 0.576719 18 H s + 36 -0.469359 11 C s 41 0.469359 12 C s + 33 0.400675 9 H s 34 -0.400675 10 H s + 12 0.361314 3 C s 17 -0.361314 4 C s + + Vector 50 Occ=0.000000D+00 E= 2.853155D-01 Symmetry=ag + MO Center= 1.8D-15, 1.1D-14, -2.3D-17, r^2= 1.3D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.573676 3 C s 17 0.573676 4 C s + 22 -0.574431 5 C s 27 -0.574431 6 C s + 59 -0.569861 19 H s 60 -0.569861 20 H s + 48 0.524629 15 C s 53 0.524629 16 C s + 50 -0.408424 15 C py 55 0.408424 16 C py + + Vector 51 Occ=0.000000D+00 E= 3.197839D-01 Symmetry=ag + MO Center= -2.0D-15, -1.2D-15, -4.5D-18, r^2= 6.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.612787 1 C py 9 -0.612787 2 C py + 36 -0.600273 11 C s 41 -0.600273 12 C s + 13 -0.439477 3 C px 18 0.439477 4 C px + 45 0.343476 13 H s 46 0.343476 14 H s + 23 -0.335430 5 C px 28 0.335430 6 C px + + Vector 52 Occ=0.000000D+00 E= 3.442773D-01 Symmetry=bu + MO Center= -6.2D-15, -2.5D-14, 3.1D-18, r^2= 8.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.640599 3 C s 17 -0.640599 4 C s + 3 -0.549538 1 C px 8 -0.549538 2 C px + 24 -0.469978 5 C py 29 -0.469978 6 C py + 50 0.459269 15 C py 55 0.459269 16 C py + 59 0.377578 19 H s 60 -0.377578 20 H s + + Vector 53 Occ=0.000000D+00 E= 3.799999D-01 Symmetry=ag + MO Center= -5.2D-15, -4.2D-15, -9.4D-17, r^2= 5.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.550017 9 H s 34 0.550017 10 H s + 13 0.544691 3 C px 18 -0.544691 4 C px + 23 -0.506688 5 C px 28 0.506688 6 C px + 31 -0.498441 7 H s 32 -0.498441 8 H s + 24 0.355721 5 C py 29 -0.355721 6 C py + + Vector 54 Occ=0.000000D+00 E= 3.978255D-01 Symmetry=bu + MO Center= 7.7D-15, 1.1D-14, 7.3D-18, r^2= 4.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 0.707963 3 C py 19 0.707963 4 C py + 22 0.585164 5 C s 27 -0.585164 6 C s + 2 -0.439525 1 C s 7 0.439525 2 C s + 24 0.431297 5 C py 29 0.431297 6 C py + 23 0.381887 5 C px 28 0.381887 6 C px + + Vector 55 Occ=0.000000D+00 E= 4.254715D-01 Symmetry=bu + MO Center= -2.4D-15, -8.0D-14, -2.0D-20, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 -0.559554 15 C px 54 -0.559554 16 C px + 2 0.529227 1 C s 7 -0.529227 2 C s + 38 0.469562 11 C py 43 0.469562 12 C py + 45 0.401483 13 H s 46 -0.401483 14 H s + 57 0.390968 17 H s 58 -0.390968 18 H s + + Vector 56 Occ=0.000000D+00 E= 4.381710D-01 Symmetry=ag + MO Center= 5.7D-15, 1.0D-13, -8.7D-19, r^2= 9.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.562812 11 C px 42 -0.562812 12 C px + 50 -0.552022 15 C py 55 0.552022 16 C py + 14 0.425467 3 C py 19 -0.425467 4 C py + 24 0.352005 5 C py 29 -0.352005 6 C py + 59 -0.353031 19 H s 60 -0.353031 20 H s + + Vector 57 Occ=0.000000D+00 E= 4.777506D-01 Symmetry=ag + MO Center= -5.0D-15, -1.9D-14, -3.2D-17, r^2= 9.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.670259 11 C py 43 -0.670259 12 C py + 49 -0.605869 15 C px 54 0.605869 16 C px + 24 -0.424187 5 C py 29 0.424187 6 C py + 4 -0.383778 1 C py 9 0.383778 2 C py + 14 -0.351071 3 C py 19 0.351071 4 C py + + Vector 58 Occ=0.000000D+00 E= 5.060414D-01 Symmetry=bu + MO Center= 1.9D-15, 3.0D-14, -2.6D-18, r^2= 9.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.622376 11 C px 42 0.622376 12 C px + 50 -0.552727 15 C py 55 -0.552727 16 C py + 48 -0.518285 15 C s 53 0.518285 16 C s + 38 -0.456094 11 C py 43 -0.456094 12 C py + 36 0.447959 11 C s 41 -0.447959 12 C s + + Vector 59 Occ=0.000000D+00 E= 5.676000D-01 Symmetry=ag + MO Center= 2.7D-16, -2.3D-14, -2.4D-19, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.691283 1 C px 8 -0.691283 2 C px + 14 -0.543568 3 C py 19 0.543568 4 C py + 23 -0.437546 5 C px 28 0.437546 6 C px + 37 0.433546 11 C px 42 -0.433546 12 C px + 24 -0.417703 5 C py 29 0.417703 6 C py + + Vector 60 Occ=0.000000D+00 E= 5.817448D-01 Symmetry=bu + MO Center= -7.2D-16, -3.9D-15, 8.1D-24, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.642938 1 C py 9 0.642938 2 C py + 13 -0.568423 3 C px 18 -0.568423 4 C px + 23 0.495542 5 C px 28 0.495542 6 C px + 24 -0.397652 5 C py 29 -0.397652 6 C py + 22 -0.383109 5 C s 27 0.383109 6 C s + + + DFT Final Beta Molecular Orbital Analysis + ----------------------------------------- + + Vector 1 Occ=1.000000D+00 E=-1.025063D+01 Symmetry=bu + MO Center= 5.9D-12, 3.5D-11, 2.0D-26, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.700307 1 C s 6 -0.700307 2 C s + + Vector 2 Occ=1.000000D+00 E=-1.025058D+01 Symmetry=ag + MO Center= -5.9D-12, -3.5D-11, -7.5D-19, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.700330 1 C s 6 0.700330 2 C s + + Vector 3 Occ=1.000000D+00 E=-1.021921D+01 Symmetry=bu + MO Center= 1.7D-11, -1.3D-11, 1.7D-23, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.680255 5 C s 26 -0.680255 6 C s + 11 -0.165809 3 C s 16 0.165809 4 C s + + Vector 4 Occ=1.000000D+00 E=-1.021917D+01 Symmetry=ag + MO Center= -1.7D-11, 1.3D-11, -2.0D-18, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.673247 5 C s 26 0.673247 6 C s + 11 -0.192215 3 C s 16 -0.192215 4 C s + + Vector 5 Occ=1.000000D+00 E=-1.021844D+01 Symmetry=ag + MO Center= -2.1D-16, -1.4D-16, 7.7D-35, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.699342 11 C s 40 0.699342 12 C s + + Vector 6 Occ=1.000000D+00 E=-1.021844D+01 Symmetry=bu + MO Center= -1.6D-15, -3.8D-15, -6.3D-31, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.700085 11 C s 40 -0.700085 12 C s + + Vector 7 Occ=1.000000D+00 E=-1.021786D+01 Symmetry=bu + MO Center= -1.5D-13, -4.9D-13, 3.2D-31, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.680448 3 C s 16 -0.680448 4 C s + 21 0.166736 5 C s 26 -0.166736 6 C s + + Vector 8 Occ=1.000000D+00 E=-1.021776D+01 Symmetry=ag + MO Center= -2.1D-16, -1.7D-14, 2.4D-18, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.672703 3 C s 16 0.672703 4 C s + 21 0.193363 5 C s 26 0.193363 6 C s + + Vector 9 Occ=1.000000D+00 E=-1.021079D+01 Symmetry=ag + MO Center= -9.4D-10, 1.0D-08, 2.2D-17, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.700374 15 C s 52 0.700374 16 C s + + Vector 10 Occ=1.000000D+00 E=-1.021079D+01 Symmetry=bu + MO Center= 9.4D-10, -1.0D-08, -1.3D-25, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.700375 15 C s 52 -0.700375 16 C s + + Vector 11 Occ=1.000000D+00 E=-1.014702D+00 Symmetry=ag + MO Center= -6.5D-16, 3.5D-15, -2.5D-17, r^2= 2.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.279929 1 C s 7 0.279929 2 C s + 22 0.245657 5 C s 27 0.245657 6 C s + 12 0.244408 3 C s 17 0.244408 4 C s + + Vector 12 Occ=1.000000D+00 E=-9.544807D-01 Symmetry=bu + MO Center= -3.0D-16, -4.3D-15, 4.1D-21, r^2= 7.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.294364 1 C s 7 -0.294364 2 C s + 36 -0.292082 11 C s 41 0.292082 12 C s + 48 -0.187106 15 C s 53 0.187106 16 C s + + Vector 13 Occ=1.000000D+00 E=-9.137413D-01 Symmetry=ag + MO Center= 6.4D-17, 1.0D-15, 1.9D-32, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.329689 11 C s 41 0.329689 12 C s + 48 0.296717 15 C s 53 0.296717 16 C s + + Vector 14 Occ=1.000000D+00 E=-8.975952D-01 Symmetry=bu + MO Center= 1.5D-15, 6.7D-17, -6.9D-19, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.359673 3 C s 17 -0.359673 4 C s + 22 0.329999 5 C s 27 -0.329999 6 C s + + Vector 15 Occ=1.000000D+00 E=-8.645220D-01 Symmetry=bu + MO Center= 7.7D-16, 5.5D-15, -2.4D-18, r^2= 9.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.299589 15 C s 53 -0.299589 16 C s + 2 0.262762 1 C s 7 -0.262762 2 C s + 22 -0.193859 5 C s 27 0.193859 6 C s + 36 0.173277 11 C s 41 -0.173277 12 C s + + Vector 16 Occ=1.000000D+00 E=-7.818207D-01 Symmetry=ag + MO Center= -9.7D-16, -4.6D-15, -3.6D-33, r^2= 7.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.252823 5 C s 27 0.252823 6 C s + 48 0.235222 15 C s 53 0.235222 16 C s + 2 -0.210254 1 C s 7 -0.210254 2 C s + 14 -0.172862 3 C py 19 0.172862 4 C py + + Vector 17 Occ=1.000000D+00 E=-7.558002D-01 Symmetry=ag + MO Center= 2.7D-15, -7.1D-16, 2.9D-16, r^2= 5.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.329210 3 C s 17 0.329210 4 C s + 3 0.192358 1 C px 8 -0.192358 2 C px + 24 0.179530 5 C py 29 -0.179530 6 C py + 2 -0.173327 1 C s 7 -0.173327 2 C s + 22 -0.156903 5 C s 27 -0.156903 6 C s + + Vector 18 Occ=1.000000D+00 E=-7.185973D-01 Symmetry=bu + MO Center= 6.1D-16, 1.0D-15, -1.1D-31, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.298324 11 C s 41 -0.298324 12 C s + 48 -0.270135 15 C s 53 0.270135 16 C s + 4 -0.155566 1 C py 9 -0.155566 2 C py + 12 0.154423 3 C s 17 -0.154423 4 C s + 57 -0.154081 17 H s 58 0.154081 18 H s + + Vector 19 Occ=1.000000D+00 E=-7.004621D-01 Symmetry=ag + MO Center= -3.2D-16, 1.7D-15, 3.3D-16, r^2= 7.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.206098 5 C px 28 -0.206098 6 C px + 13 0.193510 3 C px 18 -0.193510 4 C px + 48 -0.178353 15 C s 53 -0.178353 16 C s + 36 0.176046 11 C s 41 0.176046 12 C s + 22 0.167712 5 C s 27 0.167712 6 C s + + Vector 20 Occ=1.000000D+00 E=-6.482774D-01 Symmetry=ag + MO Center= -1.9D-16, 4.4D-15, -4.9D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.222212 15 C px 54 -0.222212 16 C px + 38 0.180843 11 C py 43 -0.180843 12 C py + 57 0.181594 17 H s 58 0.181594 18 H s + 36 -0.160006 11 C s 41 -0.160006 12 C s + 45 -0.150901 13 H s 46 -0.150901 14 H s + + Vector 21 Occ=1.000000D+00 E=-6.329042D-01 Symmetry=bu + MO Center= -7.9D-17, -5.9D-15, -6.3D-17, r^2= 9.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 0.215331 3 C py 19 0.215331 4 C py + 37 0.213660 11 C px 42 0.213660 12 C px + 50 0.194026 15 C py 55 0.194026 16 C py + 3 0.168547 1 C px 8 0.168547 2 C px + 59 -0.153677 19 H s 60 0.153677 20 H s + + Vector 22 Occ=1.000000D+00 E=-6.012788D-01 Symmetry=bu + MO Center= -3.1D-15, -1.4D-15, -8.3D-18, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.203630 11 C py 43 0.203630 12 C py + 13 0.190532 3 C px 18 0.190532 4 C px + 49 0.190415 15 C px 54 0.190415 16 C px + 24 0.184533 5 C py 29 0.184533 6 C py + 2 -0.180455 1 C s 7 0.180455 2 C s + + Vector 23 Occ=1.000000D+00 E=-5.932512D-01 Symmetry=bu + MO Center= -2.5D-15, -1.6D-15, -6.4D-18, r^2= 7.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.288739 5 C px 28 0.288739 6 C px + 33 0.229707 9 H s 34 -0.229707 10 H s + 49 0.180460 15 C px 54 0.180460 16 C px + 2 0.164820 1 C s 7 -0.164820 2 C s + 4 -0.158181 1 C py 9 -0.158181 2 C py + + Vector 24 Occ=1.000000D+00 E=-5.849175D-01 Symmetry=ag + MO Center= 9.3D-16, -4.7D-15, -3.0D-17, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.343394 15 C py 55 -0.343394 16 C py + 37 0.269256 11 C px 42 -0.269256 12 C px + 59 -0.248478 19 H s 60 -0.248478 20 H s + 45 -0.151276 13 H s 46 -0.151276 14 H s + + Vector 25 Occ=1.000000D+00 E=-5.681424D-01 Symmetry=bu + MO Center= 1.2D-15, 2.3D-16, 4.6D-17, r^2= 4.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.334305 3 C px 18 0.334305 4 C px + 31 0.251506 7 H s 32 -0.251506 8 H s + 24 -0.203061 5 C py 29 -0.203061 6 C py + 33 0.192304 9 H s 34 -0.192304 10 H s + 23 0.190748 5 C px 28 0.190748 6 C px + + Vector 26 Occ=1.000000D+00 E=-5.492919D-01 Symmetry=bu + MO Center= 3.8D-15, 1.6D-14, 6.4D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.281360 15 C py 55 0.281360 16 C py + 37 0.220771 11 C px 42 0.220771 12 C px + 14 -0.214298 3 C py 19 -0.214298 4 C py + 24 0.198267 5 C py 29 0.198267 6 C py + 59 -0.180313 19 H s 60 0.180313 20 H s + + Vector 27 Occ=1.000000D+00 E=-5.351484D-01 Symmetry=ag + MO Center= -3.9D-15, -2.1D-15, 2.7D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.292081 15 C px 54 -0.292081 16 C px + 57 0.242951 17 H s 58 0.242951 18 H s + 37 -0.189598 11 C px 42 0.189598 12 C px + 14 -0.171016 3 C py 19 0.171016 4 C py + 24 0.170663 5 C py 29 -0.170663 6 C py + + Vector 28 Occ=1.000000D+00 E=-5.173619D-01 Symmetry=au + MO Center= -1.1D-15, -7.5D-15, -1.6D-16, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.335760 1 C pz 10 0.335760 2 C pz + 15 0.298615 3 C pz 20 0.298615 4 C pz + 25 0.299101 5 C pz 30 0.299101 6 C pz + 39 0.178320 11 C pz 44 0.178320 12 C pz + + Vector 29 Occ=1.000000D+00 E=-4.994339D-01 Symmetry=bu + MO Center= 1.0D-15, 1.9D-15, -4.9D-19, r^2= 1.3D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.256239 13 H s 46 -0.256239 14 H s + 57 0.240764 17 H s 58 -0.240764 18 H s + 37 -0.233080 11 C px 42 -0.233080 12 C px + 49 0.232064 15 C px 54 0.232064 16 C px + 4 0.215955 1 C py 9 0.215955 2 C py + + Vector 30 Occ=1.000000D+00 E=-4.917913D-01 Symmetry=ag + MO Center= -2.1D-15, -1.3D-14, -1.6D-17, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.254333 1 C py 9 -0.254333 2 C py + 14 -0.250401 3 C py 19 0.250401 4 C py + 33 -0.249495 9 H s 34 -0.249495 10 H s + 38 0.223252 11 C py 43 -0.223252 12 C py + 24 0.221300 5 C py 29 -0.221300 6 C py + + Vector 31 Occ=1.000000D+00 E=-4.811398D-01 Symmetry=ag + MO Center= 6.4D-16, 3.8D-15, -2.5D-17, r^2= 7.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.268469 1 C px 8 -0.268469 2 C px + 23 0.262253 5 C px 28 -0.262253 6 C px + 31 -0.237953 7 H s 32 -0.237953 8 H s + 13 -0.213427 3 C px 18 0.213427 4 C px + 45 -0.195861 13 H s 46 -0.195861 14 H s + + Vector 32 Occ=1.000000D+00 E=-4.507965D-01 Symmetry=bg + MO Center= 5.1D-15, 6.5D-14, -2.4D-20, r^2= 7.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.390136 11 C pz 44 0.390136 12 C pz + 5 0.360528 1 C pz 10 -0.360528 2 C pz + 51 -0.236386 15 C pz 56 0.236386 16 C pz + + Vector 33 Occ=1.000000D+00 E=-3.911602D-01 Symmetry=bg + MO Center= 9.9D-14, -1.5D-14, -1.7D-20, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.462059 3 C pz 20 -0.462059 4 C pz + 25 0.459179 5 C pz 30 -0.459179 6 C pz + + Vector 34 Occ=1.000000D+00 E=-3.887383D-01 Symmetry=au + MO Center= -1.0D-13, -4.3D-14, 7.7D-17, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.446267 11 C pz 44 0.446267 12 C pz + 51 0.370089 15 C pz 56 0.370089 16 C pz + 15 -0.195216 3 C pz 20 -0.195216 4 C pz + 25 -0.192201 5 C pz 30 -0.192201 6 C pz + + Vector 35 Occ=0.000000D+00 E=-3.004760D-01 Symmetry=bg + MO Center= 9.7D-17, -1.2D-15, -3.7D-18, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.382526 15 C pz 56 -0.382526 16 C pz + 5 0.377451 1 C pz 10 -0.377451 2 C pz + 39 0.258978 11 C pz 44 -0.258978 12 C pz + 25 -0.230918 5 C pz 30 0.230918 6 C pz + 15 0.221571 3 C pz 20 -0.221571 4 C pz + + Vector 36 Occ=0.000000D+00 E=-1.470203D-01 Symmetry=au + MO Center= -3.5D-16, 1.1D-16, -1.3D-16, r^2= 8.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.465917 15 C pz 56 -0.465917 16 C pz + 5 0.462167 1 C pz 10 0.462167 2 C pz + 25 -0.282231 5 C pz 30 -0.282231 6 C pz + 15 -0.215524 3 C pz 20 -0.215524 4 C pz + 39 0.193667 11 C pz 44 0.193667 12 C pz + + Vector 37 Occ=0.000000D+00 E=-1.034293D-01 Symmetry=au + MO Center= -2.5D-16, 1.5D-15, -2.4D-16, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.586902 3 C pz 20 0.586902 4 C pz + 25 -0.547895 5 C pz 30 -0.547895 6 C pz + + Vector 38 Occ=0.000000D+00 E=-7.365342D-02 Symmetry=bg + MO Center= -3.2D-16, -8.8D-15, 4.5D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.546329 15 C pz 56 -0.546329 16 C pz + 39 -0.490628 11 C pz 44 0.490628 12 C pz + 15 -0.246423 3 C pz 20 0.246423 4 C pz + 25 0.237312 5 C pz 30 -0.237312 6 C pz + + Vector 39 Occ=0.000000D+00 E=-8.263563D-03 Symmetry=au + MO Center= -7.5D-16, -3.9D-15, 5.2D-17, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.527822 11 C pz 44 -0.527822 12 C pz + 5 0.479886 1 C pz 10 0.479886 2 C pz + 51 0.410510 15 C pz 56 0.410510 16 C pz + 25 -0.189866 5 C pz 30 -0.189866 6 C pz + 15 -0.154920 3 C pz 20 -0.154920 4 C pz + + Vector 40 Occ=0.000000D+00 E= 7.613877D-02 Symmetry=bg + MO Center= 1.3D-15, 1.2D-14, -3.6D-17, r^2= 4.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.542343 1 C pz 10 -0.542343 2 C pz + 15 -0.460122 3 C pz 20 0.460122 4 C pz + 25 0.462364 5 C pz 30 -0.462364 6 C pz + 39 0.295326 11 C pz 44 -0.295326 12 C pz + 51 -0.170149 15 C pz 56 0.170149 16 C pz + + Vector 41 Occ=0.000000D+00 E= 1.421613D-01 Symmetry=ag + MO Center= 7.2D-15, 6.6D-15, -6.8D-16, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.466417 1 C s 7 0.466417 2 C s + 33 -0.401077 9 H s 34 -0.401077 10 H s + 31 -0.391553 7 H s 32 -0.391553 8 H s + 38 -0.369960 11 C py 43 0.369960 12 C py + 36 -0.334157 11 C s 41 -0.334157 12 C s + + Vector 42 Occ=0.000000D+00 E= 1.508757D-01 Symmetry=bu + MO Center= -6.5D-15, 1.8D-15, -2.2D-18, r^2= 9.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.369374 13 H s 46 -0.369374 14 H s + 13 0.345945 3 C px 18 0.345945 4 C px + 37 0.331162 11 C px 42 0.331162 12 C px + 57 -0.318134 17 H s 58 0.318134 18 H s + 31 -0.308970 7 H s 32 0.308970 8 H s + + Vector 43 Occ=0.000000D+00 E= 1.811463D-01 Symmetry=bu + MO Center= -6.1D-15, 2.4D-14, 1.2D-17, r^2= 6.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.585780 11 C s 41 -0.585780 12 C s + 4 0.460901 1 C py 9 0.460901 2 C py + 33 0.400004 9 H s 34 -0.400004 10 H s + 2 0.342347 1 C s 7 -0.342347 2 C s + 38 0.336102 11 C py 43 0.336102 12 C py + + Vector 44 Occ=0.000000D+00 E= 1.979357D-01 Symmetry=ag + MO Center= 9.1D-15, -2.0D-14, -1.2D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.553933 13 H s 46 0.553933 14 H s + 12 0.473527 3 C s 17 0.473527 4 C s + 57 -0.374127 17 H s 58 -0.374127 18 H s + 36 -0.346216 11 C s 41 -0.346216 12 C s + 31 -0.317813 7 H s 32 -0.317813 8 H s + + Vector 45 Occ=0.000000D+00 E= 2.203487D-01 Symmetry=ag + MO Center= -3.5D-14, 7.0D-14, -1.4D-16, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.798708 5 C s 27 0.798708 6 C s + 48 0.499362 15 C s 53 0.499362 16 C s + 2 -0.453588 1 C s 7 -0.453588 2 C s + 57 -0.402268 17 H s 58 -0.402268 18 H s + 12 -0.378189 3 C s 17 -0.378189 4 C s + + Vector 46 Occ=0.000000D+00 E= 2.257456D-01 Symmetry=bu + MO Center= 5.1D-14, -8.8D-14, -9.5D-18, r^2= 8.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.657299 5 C s 27 -0.657299 6 C s + 2 0.519662 1 C s 7 -0.519662 2 C s + 12 -0.509279 3 C s 17 0.509279 4 C s + 48 0.437550 15 C s 53 -0.437550 16 C s + 31 0.428914 7 H s 32 -0.428914 8 H s + + Vector 47 Occ=0.000000D+00 E= 2.420308D-01 Symmetry=bu + MO Center= 1.6D-14, 1.4D-14, 7.8D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.497941 7 H s 32 -0.497941 8 H s + 45 0.490064 13 H s 46 -0.490064 14 H s + 36 -0.454628 11 C s 41 0.454628 12 C s + 59 0.434459 19 H s 60 -0.434459 20 H s + 50 0.340887 15 C py 55 0.340887 16 C py + + Vector 48 Occ=0.000000D+00 E= 2.463279D-01 Symmetry=ag + MO Center= -4.2D-14, 1.8D-14, 6.8D-16, r^2= 7.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.733977 1 C s 7 0.733977 2 C s + 12 -0.670197 3 C s 17 -0.670197 4 C s + 36 -0.496803 11 C s 41 -0.496803 12 C s + 48 0.458166 15 C s 53 0.458166 16 C s + 31 0.352715 7 H s 32 0.352715 8 H s + + Vector 49 Occ=0.000000D+00 E= 2.700333D-01 Symmetry=bu + MO Center= 4.5D-16, -1.9D-14, -2.7D-17, r^2= 1.3D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.788397 15 C s 53 -0.788397 16 C s + 57 -0.590008 17 H s 58 0.590008 18 H s + 36 -0.426799 11 C s 41 0.426799 12 C s + 12 0.364525 3 C s 17 -0.364525 4 C s + 33 0.363951 9 H s 34 -0.363951 10 H s + + Vector 50 Occ=0.000000D+00 E= 2.904648D-01 Symmetry=ag + MO Center= 1.2D-15, -7.1D-15, -2.7D-17, r^2= 1.4D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 59 -0.570234 19 H s 60 -0.570234 20 H s + 22 -0.562454 5 C s 27 -0.562454 6 C s + 12 0.548632 3 C s 17 0.548632 4 C s + 48 0.548598 15 C s 53 0.548598 16 C s + 50 -0.407962 15 C py 55 0.407962 16 C py + + Vector 51 Occ=0.000000D+00 E= 3.235116D-01 Symmetry=ag + MO Center= 1.5D-14, -2.7D-14, 7.6D-17, r^2= 6.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.618627 1 C py 9 -0.618627 2 C py + 36 -0.569430 11 C s 41 -0.569430 12 C s + 13 -0.448367 3 C px 18 0.448367 4 C px + 2 -0.350555 1 C s 7 -0.350555 2 C s + 23 -0.341530 5 C px 28 0.341530 6 C px + + Vector 52 Occ=0.000000D+00 E= 3.477299D-01 Symmetry=bu + MO Center= -1.3D-14, 4.8D-14, -4.9D-19, r^2= 8.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.643811 3 C s 17 -0.643811 4 C s + 3 -0.550307 1 C px 8 -0.550307 2 C px + 24 -0.475389 5 C py 29 -0.475389 6 C py + 50 0.464002 15 C py 55 0.464002 16 C py + 59 0.379363 19 H s 60 -0.379363 20 H s + + Vector 53 Occ=0.000000D+00 E= 3.814970D-01 Symmetry=ag + MO Center= 6.5D-15, -2.8D-15, 1.3D-16, r^2= 5.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.551267 9 H s 34 0.551267 10 H s + 13 0.545245 3 C px 18 -0.545245 4 C px + 23 -0.507240 5 C px 28 0.507240 6 C px + 31 -0.496936 7 H s 32 -0.496936 8 H s + 24 0.368056 5 C py 29 -0.368056 6 C py + + Vector 54 Occ=0.000000D+00 E= 4.000063D-01 Symmetry=bu + MO Center= -6.5D-15, -9.8D-15, 3.5D-18, r^2= 4.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 0.711182 3 C py 19 0.711182 4 C py + 22 0.591264 5 C s 27 -0.591264 6 C s + 2 -0.433875 1 C s 7 0.433875 2 C s + 24 0.422807 5 C py 29 0.422807 6 C py + 36 -0.397282 11 C s 41 0.397282 12 C s + + Vector 55 Occ=0.000000D+00 E= 4.297925D-01 Symmetry=bu + MO Center= 4.3D-15, -5.7D-14, 2.8D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 -0.550856 15 C px 54 -0.550856 16 C px + 2 0.546773 1 C s 7 -0.546773 2 C s + 38 0.463785 11 C py 43 0.463785 12 C py + 45 0.391558 13 H s 46 -0.391558 14 H s + 57 0.385223 17 H s 58 -0.385223 18 H s + + Vector 56 Occ=0.000000D+00 E= 4.407378D-01 Symmetry=ag + MO Center= -6.0D-16, -5.8D-14, -6.7D-17, r^2= 9.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.559364 11 C px 42 -0.559364 12 C px + 50 -0.558669 15 C py 55 0.558669 16 C py + 14 0.422104 3 C py 19 -0.422104 4 C py + 59 -0.353220 19 H s 60 -0.353220 20 H s + 24 0.343087 5 C py 29 -0.343087 6 C py + + Vector 57 Occ=0.000000D+00 E= 4.815299D-01 Symmetry=ag + MO Center= 8.8D-15, 1.8D-13, -3.5D-16, r^2= 9.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.665726 11 C py 43 -0.665726 12 C py + 49 -0.604996 15 C px 54 0.604996 16 C px + 24 -0.426644 5 C py 29 0.426644 6 C py + 4 -0.381073 1 C py 9 0.381073 2 C py + 14 -0.358411 3 C py 19 0.358411 4 C py + + Vector 58 Occ=0.000000D+00 E= 5.114574D-01 Symmetry=bu + MO Center= -3.8D-15, -6.8D-14, -2.0D-17, r^2= 9.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.615897 11 C px 42 0.615897 12 C px + 50 -0.550172 15 C py 55 -0.550172 16 C py + 48 -0.532023 15 C s 53 0.532023 16 C s + 38 -0.460166 11 C py 43 -0.460166 12 C py + 36 0.457095 11 C s 41 -0.457095 12 C s + + Vector 59 Occ=0.000000D+00 E= 5.713391D-01 Symmetry=ag + MO Center= -2.0D-15, -1.5D-14, 2.1D-17, r^2= 5.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.690790 1 C px 8 -0.690790 2 C px + 14 -0.535771 3 C py 19 0.535771 4 C py + 23 -0.434504 5 C px 28 0.434504 6 C px + 37 0.436310 11 C px 42 -0.436310 12 C px + 24 -0.410491 5 C py 29 0.410491 6 C py + + Vector 60 Occ=0.000000D+00 E= 5.848855D-01 Symmetry=bu + MO Center= -2.0D-15, 3.5D-15, 5.4D-23, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.644413 1 C py 9 0.644413 2 C py + 13 -0.568080 3 C px 18 -0.568080 4 C px + 23 0.497669 5 C px 28 0.497669 6 C px + 24 -0.392913 5 C py 29 -0.392913 6 C py + 22 -0.387322 5 C s 27 0.387322 6 C s + + Final MO vectors + ---------------- + + + global array: alpha evecs[1:60,1:60], handle: -995 + + 1 2 3 4 5 6 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.70027 0.70029 -0.00991 0.00623 0.00578 0.00961 + 2 0.03127 0.03108 0.00758 -0.00410 -0.00467 -0.00669 + 3 -0.00005 0.00000 -0.00323 0.00483 -0.00404 -0.00211 + 4 -0.00102 -0.00075 -0.00239 0.00083 0.00261 0.00349 + 5 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 6 -0.70027 0.70029 0.00991 0.00623 -0.00578 0.00961 + 7 -0.03127 0.03108 -0.00758 -0.00410 0.00467 -0.00669 + 8 -0.00005 -0.00000 -0.00323 -0.00483 -0.00404 0.00211 + 9 -0.00102 0.00075 -0.00239 -0.00083 0.00261 -0.00349 + 10 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 11 -0.00703 -0.00745 -0.15505 -0.17942 0.68291 0.67498 + 12 -0.00713 -0.00653 -0.01347 -0.01415 0.02876 0.02805 + 13 0.00353 0.00335 0.00108 0.00101 -0.00090 -0.00053 + 14 -0.00271 -0.00293 0.00435 0.00432 0.00048 0.00073 + 15 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 16 0.00703 -0.00745 0.15505 -0.17942 -0.68291 0.67498 + 17 0.00713 -0.00653 0.01347 -0.01415 -0.02876 0.02805 + 18 0.00353 -0.00335 0.00108 -0.00101 -0.00090 0.00053 + 19 -0.00271 0.00293 0.00435 -0.00432 0.00048 -0.00073 + 20 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 21 0.00735 -0.00773 0.68281 0.67684 0.15605 0.17943 + 22 0.00710 -0.00649 0.03179 0.03148 0.00032 0.00167 + 23 -0.00420 0.00408 -0.00073 -0.00042 -0.00078 -0.00075 + 24 -0.00141 0.00169 0.00177 0.00172 -0.00410 -0.00407 + 25 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 26 -0.00735 -0.00773 -0.68281 0.67684 -0.15605 0.17943 + 27 -0.00710 -0.00649 -0.03179 0.03148 -0.00032 0.00167 + 28 -0.00420 -0.00408 -0.00073 0.00042 -0.00078 0.00075 + 29 -0.00141 -0.00169 0.00177 -0.00172 -0.00410 0.00407 + 30 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 31 0.00022 0.00011 0.00156 0.00166 -0.00604 -0.00610 + 32 -0.00022 0.00011 -0.00156 0.00166 0.00604 -0.00610 + 33 -0.00022 0.00011 -0.00616 -0.00617 -0.00122 -0.00158 + 34 0.00022 0.00011 0.00616 -0.00617 0.00122 -0.00158 + 35 0.00884 -0.00895 -0.00172 -0.00403 0.01371 -0.05656 + 36 0.00588 -0.00594 0.00016 -0.00011 0.00046 -0.00239 + 37 0.00088 -0.00089 0.00007 0.00012 0.00001 -0.00010 + 38 0.00398 -0.00403 0.00005 -0.00005 -0.00004 0.00003 + 39 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 40 -0.00884 -0.00895 0.00172 -0.00403 -0.01371 -0.05656 + 41 -0.00588 -0.00594 -0.00016 -0.00011 -0.00046 -0.00239 + 42 0.00088 0.00089 0.00007 -0.00012 0.00001 0.00010 + 43 0.00398 0.00403 0.00005 0.00005 -0.00004 -0.00003 + 44 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 45 -0.00015 0.00016 -0.00003 -0.00001 -0.00008 0.00043 + 46 0.00015 0.00016 0.00003 -0.00001 0.00008 0.00043 + 47 -0.00004 0.00004 -0.00272 -0.00204 -0.00045 0.00041 + 48 -0.00027 0.00027 -0.00019 -0.00013 -0.00012 0.00054 + 49 -0.00008 0.00008 -0.00005 -0.00005 0.00004 -0.00026 + 50 -0.00019 0.00019 -0.00007 -0.00004 -0.00004 0.00019 + 51 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 52 0.00004 0.00004 0.00272 -0.00204 0.00045 0.00041 + 53 0.00027 0.00027 0.00019 -0.00013 0.00012 0.00054 + 54 -0.00008 -0.00008 -0.00005 0.00005 0.00004 0.00026 + 55 -0.00019 -0.00019 -0.00007 0.00004 -0.00004 -0.00019 + 56 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 57 0.00014 -0.00013 0.00019 0.00019 0.00003 0.00000 + 58 -0.00014 -0.00013 -0.00019 0.00019 -0.00003 0.00000 + 59 0.00002 -0.00002 0.00000 0.00000 0.00000 -0.00003 + 60 -0.00002 -0.00002 -0.00000 0.00000 -0.00000 -0.00003 + + 7 8 9 10 11 12 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.01000 0.01082 -0.00086 0.00090 -0.11236 -0.11230 + 2 0.00518 -0.00564 0.00025 -0.00027 0.29061 0.30213 + 3 0.00072 -0.00078 0.00007 -0.00007 -0.00782 0.00093 + 4 0.00401 -0.00375 0.00024 -0.00023 -0.04781 0.02549 + 5 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 6 0.01000 0.01082 0.00086 0.00090 -0.11236 0.11230 + 7 -0.00518 -0.00564 -0.00025 -0.00027 0.29061 -0.30213 + 8 0.00072 0.00078 0.00007 0.00007 0.00782 0.00093 + 9 0.00401 0.00375 0.00024 0.00023 0.04781 0.02549 + 10 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 11 -0.01360 0.05346 -0.00134 0.00371 -0.09563 -0.04081 + 12 -0.00069 0.00221 -0.00007 0.00006 0.23920 0.10575 + 13 0.00000 0.00007 -0.00000 0.00002 -0.06120 -0.03319 + 14 -0.00003 0.00016 0.00009 -0.00001 -0.01194 0.06227 + 15 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 16 0.01360 0.05346 0.00134 0.00371 -0.09563 0.04081 + 17 0.00069 0.00221 0.00007 0.00006 0.23920 -0.10575 + 18 0.00000 -0.00007 -0.00000 -0.00002 0.06120 -0.03319 + 19 -0.00003 -0.00016 0.00009 0.00001 0.01194 0.06227 + 20 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 21 -0.00171 0.01813 0.00264 0.00346 -0.09616 0.04670 + 22 0.00022 0.00040 0.00009 0.00006 0.24119 -0.12183 + 23 0.00003 0.00002 0.00001 0.00000 -0.05422 0.05174 + 24 0.00003 -0.00044 0.00011 0.00006 0.03047 0.04807 + 25 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 26 0.00171 0.01813 -0.00264 0.00346 -0.09616 -0.04670 + 27 -0.00022 0.00040 -0.00009 0.00006 0.24119 0.12183 + 28 0.00003 -0.00002 0.00001 -0.00000 0.05422 0.05174 + 29 0.00003 0.00044 0.00011 -0.00006 -0.03047 0.04807 + 30 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 31 0.00013 -0.00051 0.00002 -0.00005 0.03738 0.02352 + 32 -0.00013 -0.00051 -0.00002 -0.00005 0.03738 -0.02352 + 33 -0.00013 -0.00033 0.00007 0.00007 0.03860 -0.02855 + 34 0.00013 -0.00033 -0.00007 0.00007 0.03860 0.02855 + 35 0.69769 0.69551 0.06081 0.06091 -0.04655 0.10813 + 36 0.03128 0.03118 -0.00469 -0.00468 0.11806 -0.27892 + 37 0.00116 0.00115 -0.00306 -0.00306 0.01486 -0.04006 + 38 -0.00124 -0.00125 0.00335 0.00334 0.02893 -0.01300 + 39 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 40 -0.69769 0.69551 -0.06081 0.06091 -0.04655 -0.10813 + 41 -0.03128 0.03118 0.00469 -0.00468 0.11806 0.27892 + 42 0.00116 -0.00115 -0.00306 0.00306 -0.01486 -0.04006 + 43 -0.00124 0.00125 0.00335 -0.00334 -0.02893 -0.01300 + 44 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 45 -0.00632 -0.00631 -0.00042 -0.00043 0.02036 -0.05423 + 46 0.00632 -0.00631 0.00042 -0.00043 0.02036 0.05423 + 47 -0.05994 -0.06020 0.69794 0.69792 -0.02279 0.07625 + 48 -0.00992 -0.00992 0.03028 0.03028 0.05880 -0.20089 + 49 0.00311 0.00310 -0.00076 -0.00076 -0.01203 0.03716 + 50 -0.00355 -0.00354 0.00084 0.00084 0.02047 -0.05355 + 51 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 52 0.05994 -0.06020 -0.69794 0.69792 -0.02279 -0.07625 + 53 0.00992 -0.00992 -0.03028 0.03028 0.05880 0.20089 + 54 0.00311 -0.00310 -0.00076 0.00076 0.01203 0.03716 + 55 -0.00355 0.00354 0.00084 -0.00084 -0.02047 -0.05355 + 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 57 0.00067 0.00067 -0.00632 -0.00632 0.01119 -0.04003 + 58 -0.00067 0.00067 0.00632 -0.00632 0.01119 0.04003 + 59 0.00068 0.00068 -0.00630 -0.00630 0.00801 -0.03386 + 60 -0.00068 0.00068 0.00630 -0.00630 0.00801 0.03386 + + 13 14 15 16 17 18 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00527 -0.01741 -0.09541 0.07503 0.05280 -0.00878 + 2 0.01734 0.04829 0.26688 -0.22405 -0.16017 0.02484 + 3 0.00948 0.13516 -0.02702 -0.13282 0.20399 -0.06319 + 4 0.10047 -0.02838 -0.06693 -0.07933 -0.07416 -0.16101 + 5 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 6 -0.00527 0.01741 0.09541 0.07503 0.05280 0.00878 + 7 0.01734 -0.04829 -0.26688 -0.22405 -0.16017 -0.02484 + 8 -0.00948 0.13516 -0.02702 0.13282 -0.20399 -0.06319 + 9 -0.10047 -0.02838 -0.06693 0.07933 0.07416 -0.16101 + 10 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 11 0.04392 -0.13456 -0.03234 0.00059 -0.11307 -0.05004 + 12 -0.11476 0.36392 0.08827 -0.00291 0.33434 0.15360 + 13 0.02018 -0.01164 -0.04027 0.02991 0.05770 -0.01295 + 14 0.03445 -0.05118 0.08767 -0.17096 0.03671 -0.00052 + 15 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 16 0.04392 0.13456 0.03234 0.00059 -0.11307 0.05004 + 17 -0.11476 -0.36392 -0.08827 -0.00291 0.33434 -0.15360 + 18 -0.02018 -0.01164 -0.04027 -0.02991 -0.05770 -0.01295 + 19 -0.03445 -0.05118 0.08767 0.17096 -0.03671 -0.00052 + 20 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 21 0.03885 -0.11828 0.07489 -0.08665 0.05701 0.02988 + 22 -0.10118 0.32045 -0.20525 0.24908 -0.16985 -0.09149 + 23 0.00586 0.02601 0.05754 0.05761 0.08949 0.04360 + 24 -0.04691 0.06912 0.03893 0.03189 0.17844 0.07850 + 25 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 26 0.03885 0.11828 -0.07489 -0.08665 0.05701 -0.02988 + 27 -0.10118 -0.32045 0.20525 0.24908 -0.16985 0.09149 + 28 -0.00586 0.02601 0.05754 -0.05761 -0.08949 0.04360 + 29 0.04691 0.06912 0.03893 -0.03189 -0.17844 0.07850 + 30 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 31 -0.01911 0.08699 0.02090 -0.01581 0.14424 0.04207 + 32 -0.01911 -0.08699 -0.02090 -0.01581 0.14424 -0.04207 + 33 -0.01299 0.07881 -0.04695 0.09666 -0.07714 -0.04755 + 34 -0.01299 -0.07881 0.04695 0.09666 -0.07714 0.04755 + 35 -0.11949 -0.00229 -0.06156 0.04912 0.00526 -0.10004 + 36 0.31236 0.00514 0.16223 -0.14818 -0.01747 0.30925 + 37 0.05597 0.02457 0.04600 0.07525 -0.04283 -0.10950 + 38 -0.05817 -0.02337 -0.12427 -0.13724 -0.08097 0.06228 + 39 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 40 -0.11949 0.00229 0.06156 0.04912 0.00526 0.10004 + 41 0.31236 -0.00514 -0.16223 -0.14818 -0.01747 -0.30925 + 42 -0.05597 0.02457 0.04600 -0.07525 0.04283 -0.10950 + 43 0.05817 -0.02337 -0.12427 0.13724 0.08097 0.06228 + 44 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 45 0.06568 -0.00705 0.03802 -0.06568 0.02806 0.15284 + 46 0.06568 0.00705 -0.03802 -0.06568 0.02806 -0.15284 + 47 -0.12014 -0.01850 -0.11386 -0.08132 -0.04025 0.08497 + 48 0.32250 0.04960 0.31356 0.23895 0.12255 -0.26836 + 49 -0.05334 -0.00089 -0.04239 0.02495 -0.01713 -0.11702 + 50 0.06386 0.00901 0.03327 -0.02656 -0.04155 0.08840 + 51 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 52 -0.12014 0.01850 0.11386 -0.08132 -0.04025 -0.08497 + 53 0.32250 -0.04960 -0.31356 0.23895 0.12255 0.26836 + 54 0.05334 -0.00089 -0.04239 -0.02495 0.01713 -0.11702 + 55 -0.06386 0.00901 0.03327 0.02656 0.04155 0.08840 + 56 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 57 0.06692 0.01495 0.06906 0.08613 0.02223 -0.14725 + 58 0.06692 -0.01495 -0.06906 0.08613 0.02223 0.14725 + 59 0.06354 0.00999 0.07439 0.07958 0.05739 -0.11450 + 60 0.06354 -0.00999 -0.07439 0.07958 0.05739 0.11450 + + 19 20 21 22 23 24 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.04941 -0.03074 0.01605 0.05016 -0.04943 0.01762 + 2 -0.15079 0.10373 -0.05653 -0.17516 0.17324 -0.06013 + 3 -0.00915 0.05371 0.17323 -0.18183 -0.14515 -0.01084 + 4 0.16233 0.12631 -0.14838 -0.07141 -0.15422 -0.00207 + 5 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 6 0.04941 -0.03074 -0.01605 -0.05016 0.04943 0.01762 + 7 -0.15079 0.10373 0.05653 0.17516 -0.17324 -0.06013 + 8 0.00915 -0.05371 0.17323 -0.18183 -0.14515 0.01084 + 9 -0.16233 -0.12631 -0.14838 -0.07141 -0.15422 0.00207 + 10 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 11 -0.01586 -0.01651 -0.01592 -0.04851 0.02675 -0.02456 + 12 0.05459 0.06225 0.05440 0.16655 -0.09606 0.08309 + 13 0.19009 0.13276 -0.02291 0.18307 -0.11531 -0.00726 + 14 -0.08542 0.13516 0.21513 -0.09029 -0.07937 -0.07063 + 15 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 16 -0.01586 -0.01651 0.01592 0.04851 -0.02675 -0.02456 + 17 0.05459 0.06225 -0.05440 -0.16655 0.09606 0.08309 + 18 -0.19009 -0.13276 -0.02291 0.18307 -0.11531 0.00726 + 19 0.08542 -0.13516 0.21513 -0.09029 -0.07937 0.07063 + 20 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 21 -0.05288 0.01534 0.03687 0.04863 -0.01828 0.02054 + 22 0.17073 -0.04215 -0.12036 -0.16822 0.06860 -0.07627 + 23 0.20340 0.09105 -0.10515 0.01483 0.28393 -0.03491 + 24 -0.02973 -0.13194 -0.14106 0.17996 -0.05903 0.12895 + 25 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 26 -0.05288 0.01534 -0.03687 -0.04863 0.01828 0.02054 + 27 0.17073 -0.04215 0.12036 0.16822 -0.06860 -0.07627 + 28 -0.20340 -0.09105 -0.10515 0.01483 0.28393 0.03491 + 29 0.02973 0.13194 -0.14106 0.17996 -0.05903 -0.12895 + 30 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 31 0.10239 0.12236 0.06143 0.17430 -0.14024 0.00806 + 32 0.10239 0.12236 -0.06143 -0.17430 0.14024 0.00806 + 33 0.15481 0.08835 -0.03786 -0.13734 0.23405 -0.10320 + 34 0.15481 0.08835 0.03786 0.13734 -0.23405 -0.10320 + 35 -0.06006 0.04912 -0.01220 0.01247 -0.00535 -0.02207 + 36 0.18553 -0.15807 0.03574 -0.03359 0.01882 0.06214 + 37 -0.06093 0.10901 0.21189 -0.00347 -0.00099 0.26566 + 38 0.01733 0.18171 0.09557 0.20868 0.10718 -0.05973 + 39 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 40 -0.06006 0.04912 0.01220 -0.01247 0.00535 -0.02207 + 41 0.18553 -0.15807 -0.03574 0.03359 -0.01882 0.06214 + 42 0.06093 -0.10901 0.21189 -0.00347 -0.00099 -0.26566 + 43 -0.01733 -0.18171 0.09557 0.20868 0.10718 0.05973 + 44 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 45 0.09990 -0.14589 -0.13652 -0.05392 0.00272 -0.15043 + 46 0.09990 -0.14589 0.13652 0.05392 -0.00272 -0.15043 + 47 0.05498 -0.02459 0.01442 -0.01490 0.00497 0.00284 + 48 -0.17745 0.09124 -0.05335 0.06396 -0.01168 -0.02489 + 49 -0.07380 0.22821 0.08196 0.20292 0.17561 0.00194 + 50 0.07802 -0.01439 0.19916 -0.06608 0.08506 0.35075 + 51 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 52 0.05498 -0.02459 -0.01442 0.01490 -0.00497 0.00284 + 53 -0.17745 0.09124 0.05335 -0.06396 0.01168 -0.02489 + 54 0.07380 -0.22821 0.08196 0.20292 0.17561 -0.00194 + 55 -0.07802 0.01439 0.19916 -0.06608 0.08506 -0.35075 + 56 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 57 -0.08778 0.17794 0.05131 0.14401 0.14368 0.02154 + 58 -0.08778 0.17794 -0.05131 -0.14401 -0.14368 0.02154 + 59 -0.08796 0.00375 -0.15133 0.02776 -0.09551 -0.24618 + 60 -0.08796 0.00375 0.15133 -0.02776 0.09551 -0.24618 + + 25 26 27 28 29 30 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00365 -0.00542 0.02328 -0.00000 -0.01407 -0.00516 + 2 -0.01307 0.02017 -0.08530 0.00000 0.05893 0.02700 + 3 -0.10159 -0.13438 0.09473 0.00000 0.08370 -0.18108 + 4 0.10401 0.16393 0.03656 -0.00000 0.21869 0.24799 + 5 0.00000 0.00000 -0.00000 0.36205 0.00000 0.00000 + 6 -0.00365 0.00542 0.02328 -0.00000 0.01407 -0.00516 + 7 0.01307 -0.02017 -0.08530 0.00000 -0.05893 0.02700 + 8 -0.10159 -0.13438 -0.09473 -0.00000 0.08370 0.18108 + 9 0.10401 0.16393 -0.03656 0.00000 0.21869 -0.24799 + 10 -0.00000 -0.00000 0.00000 0.36205 0.00000 -0.00000 + 11 0.02130 0.01217 0.00874 0.00000 0.00378 -0.00039 + 12 -0.06569 -0.04602 -0.04036 -0.00000 -0.01046 0.00381 + 13 0.33509 0.04131 -0.14242 -0.00000 0.05454 0.17154 + 14 0.11820 -0.22030 -0.17002 0.00000 0.04671 -0.24538 + 15 -0.00000 -0.00000 -0.00000 0.28543 -0.00000 0.00000 + 16 -0.02130 -0.01217 0.00874 0.00000 -0.00378 -0.00039 + 17 0.06569 0.04602 -0.04036 -0.00000 0.01046 0.00381 + 18 0.33509 0.04131 0.14242 0.00000 0.05454 -0.17154 + 19 0.11820 -0.22030 0.17002 -0.00000 0.04671 0.24538 + 20 0.00000 0.00000 -0.00000 0.28543 -0.00000 -0.00000 + 21 0.01638 -0.00903 -0.00919 0.00000 -0.01018 -0.00368 + 22 -0.05156 0.02619 0.03088 -0.00000 0.03583 0.00411 + 23 0.19522 0.02656 0.06872 0.00000 -0.12660 -0.14232 + 24 -0.19376 0.21047 0.16890 -0.00000 -0.00925 0.21804 + 25 0.00000 0.00000 -0.00000 0.28748 -0.00000 0.00000 + 26 -0.01638 0.00903 -0.00919 0.00000 0.01018 -0.00368 + 27 0.05156 -0.02619 0.03088 -0.00000 -0.03583 0.00411 + 28 0.19522 0.02656 -0.06872 -0.00000 -0.12660 0.14232 + 29 -0.19376 0.21047 -0.16890 0.00000 -0.00925 -0.21804 + 30 -0.00000 -0.00000 0.00000 0.28748 -0.00000 0.00000 + 31 0.24825 -0.04301 -0.17017 -0.00000 0.03941 0.07447 + 32 -0.24825 0.04301 -0.17017 -0.00000 -0.03941 0.07447 + 33 0.19086 -0.07288 -0.00437 0.00000 -0.04045 -0.25964 + 34 -0.19086 0.07288 -0.00437 0.00000 0.04045 -0.25964 + 35 -0.00369 -0.00083 -0.02363 0.00000 -0.00528 -0.01392 + 36 0.00855 -0.01326 0.09675 -0.00000 0.02546 0.05940 + 37 0.01719 0.21547 -0.19264 -0.00000 -0.23613 0.04020 + 38 -0.08854 -0.16872 0.11896 -0.00000 -0.13816 0.21071 + 39 0.00000 0.00000 -0.00000 0.16360 -0.00000 -0.00000 + 40 0.00369 0.00083 -0.02363 0.00000 0.00528 -0.01392 + 41 -0.00855 0.01326 0.09675 -0.00000 -0.02546 0.05940 + 42 0.01719 0.21547 0.19264 0.00000 -0.23613 -0.04020 + 43 -0.08854 -0.16872 -0.11896 0.00000 -0.13816 -0.21071 + 44 0.00000 -0.00000 0.00000 0.16360 -0.00000 0.00000 + 45 -0.00604 -0.13920 0.17274 0.00000 0.26044 -0.05348 + 46 0.00604 0.13920 0.17274 0.00000 -0.26044 -0.05348 + 47 0.00357 -0.01288 0.00970 -0.00000 0.00670 0.00468 + 48 -0.01812 0.02994 -0.02399 0.00000 -0.02457 -0.00970 + 49 -0.08868 -0.09005 0.29465 -0.00000 0.23457 0.01392 + 50 0.04248 0.28399 0.04103 -0.00000 0.14752 -0.15209 + 51 -0.00000 -0.00000 0.00000 0.09264 0.00000 -0.00000 + 52 -0.00357 0.01288 0.00970 -0.00000 -0.00670 0.00468 + 53 0.01812 -0.02994 -0.02399 0.00000 0.02457 -0.00970 + 54 -0.08868 -0.09005 -0.29465 0.00000 0.23457 -0.01392 + 55 0.04248 0.28399 -0.04103 0.00000 0.14752 0.15209 + 56 -0.00000 0.00000 -0.00000 0.09264 0.00000 0.00000 + 57 -0.05386 -0.03163 0.23766 0.00000 0.23537 -0.05164 + 58 0.05386 0.03163 0.23766 0.00000 -0.23537 -0.05164 + 59 -0.01882 -0.17827 -0.11462 0.00000 -0.20488 0.12789 + 60 0.01882 0.17827 -0.11462 0.00000 0.20488 0.12789 + + 31 32 33 34 35 36 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.01131 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 2 0.05090 0.00000 0.00000 0.00000 0.00000 0.00000 + 3 0.25746 0.00000 0.00000 0.00000 0.00000 0.00000 + 4 0.13519 0.00000 0.00000 -0.00000 0.00000 0.00000 + 5 -0.00000 0.38376 -0.02863 0.00545 0.37782 0.45460 + 6 -0.01131 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 7 0.05090 0.00000 0.00000 0.00000 0.00000 0.00000 + 8 -0.25746 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 9 -0.13519 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 10 0.00000 -0.38376 -0.02863 -0.00545 -0.37782 0.45460 + 11 -0.00573 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 12 0.01313 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 13 -0.20238 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 14 -0.08769 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 15 -0.00000 0.13424 -0.16901 0.46083 0.19405 -0.25705 + 16 -0.00573 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 17 0.01313 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 18 0.20238 0.00000 0.00000 0.00000 0.00000 -0.00000 + 19 0.08769 -0.00000 0.00000 0.00000 0.00000 0.00000 + 20 0.00000 -0.13424 -0.16901 -0.46083 -0.19405 -0.25705 + 21 0.00221 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 22 -0.00445 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 23 0.25193 0.00000 0.00000 0.00000 0.00000 0.00000 + 24 0.10901 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 25 0.00000 -0.14019 -0.16786 0.46041 -0.20111 -0.29893 + 26 0.00221 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 27 -0.00445 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 28 -0.25193 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 29 -0.10901 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 30 -0.00000 0.14019 -0.16786 -0.46041 0.20111 -0.29893 + 31 -0.23450 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 32 -0.23450 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 33 0.11058 0.00000 0.00000 0.00000 0.00000 -0.00000 + 34 0.11058 0.00000 0.00000 0.00000 0.00000 -0.00000 + 35 -0.00764 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 36 0.02488 0.00000 0.00000 0.00000 0.00000 -0.00000 + 37 0.16612 0.00000 0.00000 0.00000 -0.00000 0.00000 + 38 0.13719 0.00000 0.00000 -0.00000 0.00000 0.00000 + 39 0.00000 -0.34292 0.38991 -0.00493 0.22827 0.24804 + 40 -0.00764 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 41 0.02488 0.00000 0.00000 0.00000 0.00000 -0.00000 + 42 -0.16612 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 43 -0.13719 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 44 -0.00000 0.34292 0.38991 0.00493 -0.22827 0.24804 + 45 -0.20074 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 46 -0.20074 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 47 -0.00481 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 48 0.01940 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 49 -0.13819 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 50 -0.07790 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 51 0.00000 -0.26543 0.44752 0.00480 0.42942 -0.41410 + 52 -0.00481 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 53 0.01940 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 54 0.13819 0.00000 0.00000 0.00000 0.00000 0.00000 + 55 0.07790 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 56 -0.00000 0.26543 0.44752 -0.00480 -0.42942 -0.41410 + 57 -0.14119 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 58 -0.14119 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 59 0.12135 0.00000 0.00000 0.00000 0.00000 0.00000 + 60 0.12135 0.00000 0.00000 0.00000 0.00000 0.00000 + + 37 38 39 40 41 42 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 0.00000 -0.00000 -0.00000 -0.08213 -0.04998 + 2 0.00000 0.00000 0.00000 0.00000 0.48810 0.29399 + 3 0.00000 0.00000 -0.00000 0.00000 0.09388 0.30043 + 4 -0.00000 0.00000 0.00000 -0.00000 0.29342 0.22118 + 5 -0.02927 -0.01675 -0.46807 0.52687 -0.00000 0.00000 + 6 -0.00000 0.00000 -0.00000 -0.00000 -0.08213 0.04998 + 7 0.00000 -0.00000 0.00000 0.00000 0.48810 -0.29399 + 8 0.00000 -0.00000 0.00000 0.00000 -0.09388 0.30043 + 9 -0.00000 0.00000 -0.00000 0.00000 -0.29342 0.22118 + 10 -0.02927 0.01675 -0.46807 -0.52687 0.00000 0.00000 + 11 0.00000 -0.00000 0.00000 -0.00000 -0.01935 0.01715 + 12 -0.00000 -0.00000 -0.00000 0.00000 0.11907 -0.09840 + 13 -0.00000 0.00000 -0.00000 0.00000 0.29526 0.34006 + 14 0.00000 0.00000 -0.00000 -0.00000 0.01715 0.04222 + 15 0.58359 0.24537 0.15967 -0.47296 0.00000 0.00000 + 16 0.00000 -0.00000 0.00000 0.00000 -0.01935 -0.01715 + 17 -0.00000 0.00000 -0.00000 -0.00000 0.11907 0.09840 + 18 0.00000 -0.00000 0.00000 -0.00000 -0.29526 0.34006 + 19 0.00000 0.00000 0.00000 0.00000 -0.01715 0.04222 + 20 0.58359 -0.24537 0.15967 0.47296 -0.00000 -0.00000 + 21 0.00000 -0.00000 0.00000 0.00000 -0.03834 -0.02097 + 22 -0.00000 0.00000 -0.00000 -0.00000 0.23200 0.12333 + 23 0.00000 -0.00000 0.00000 0.00000 0.20717 0.25631 + 24 -0.00000 -0.00000 0.00000 -0.00000 -0.08486 0.07153 + 25 -0.55247 -0.23539 0.19207 0.47377 -0.00000 -0.00000 + 26 -0.00000 0.00000 0.00000 0.00000 -0.03834 0.02097 + 27 0.00000 -0.00000 -0.00000 -0.00000 0.23200 -0.12333 + 28 -0.00000 0.00000 -0.00000 -0.00000 -0.20717 0.25631 + 29 -0.00000 -0.00000 -0.00000 -0.00000 0.08486 0.07153 + 30 -0.55247 0.23539 0.19207 -0.47377 0.00000 0.00000 + 31 -0.00000 -0.00000 0.00000 -0.00000 -0.37808 -0.29551 + 32 -0.00000 -0.00000 0.00000 -0.00000 -0.37808 0.29551 + 33 0.00000 0.00000 0.00000 -0.00000 -0.39058 -0.22313 + 34 0.00000 -0.00000 0.00000 -0.00000 -0.39058 0.22313 + 35 -0.00000 -0.00000 0.00000 -0.00000 0.06050 -0.02027 + 36 0.00000 0.00000 -0.00000 0.00000 -0.34760 0.11954 + 37 0.00000 -0.00000 0.00000 -0.00000 -0.24702 0.32867 + 38 0.00000 0.00000 -0.00000 0.00000 -0.37142 0.28378 + 39 0.00542 0.54055 0.55383 0.29205 -0.00000 0.00000 + 40 -0.00000 0.00000 0.00000 -0.00000 0.06050 0.02027 + 41 0.00000 -0.00000 -0.00000 0.00000 -0.34760 -0.11954 + 42 -0.00000 -0.00000 -0.00000 0.00000 0.24702 0.32867 + 43 0.00000 0.00000 0.00000 0.00000 0.37142 0.28378 + 44 0.00542 -0.54055 0.55383 -0.29205 0.00000 -0.00000 + 45 -0.00000 -0.00000 0.00000 -0.00000 -0.12260 0.35376 + 46 -0.00000 0.00000 0.00000 -0.00000 -0.12260 -0.35376 + 47 0.00000 -0.00000 -0.00000 0.00000 -0.03836 0.00978 + 48 -0.00000 0.00000 0.00000 -0.00000 0.22213 -0.05941 + 49 0.00000 -0.00000 0.00000 -0.00000 -0.15556 0.31437 + 50 -0.00000 -0.00000 -0.00000 -0.00000 -0.11857 0.13819 + 51 0.00767 -0.50055 -0.38637 -0.15571 0.00000 -0.00000 + 52 0.00000 0.00000 -0.00000 0.00000 -0.03836 -0.00978 + 53 -0.00000 -0.00000 0.00000 -0.00000 0.22213 0.05941 + 54 0.00000 0.00000 -0.00000 0.00000 0.15556 0.31437 + 55 0.00000 -0.00000 0.00000 -0.00000 0.11857 0.13819 + 56 0.00767 0.50055 -0.38637 0.15571 -0.00000 0.00000 + 57 -0.00000 -0.00000 -0.00000 0.00000 0.13245 -0.32296 + 58 -0.00000 0.00000 -0.00000 0.00000 0.13245 0.32296 + 59 0.00000 -0.00000 0.00000 -0.00000 -0.34743 0.30474 + 60 0.00000 0.00000 0.00000 -0.00000 -0.34743 -0.30474 + + 43 44 45 46 47 48 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.05890 0.03827 0.07098 -0.08394 -0.11739 -0.01705 + 2 0.34331 -0.23458 -0.43373 0.50516 0.72422 0.11283 + 3 -0.18170 -0.11012 0.32733 -0.14922 0.04493 -0.09182 + 4 0.44758 0.10801 -0.11576 -0.10777 -0.17319 -0.19632 + 5 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 6 0.05890 0.03827 0.07098 0.08394 -0.11739 0.01705 + 7 -0.34331 -0.23458 -0.43373 -0.50516 0.72422 -0.11283 + 8 -0.18170 0.11012 -0.32733 -0.14922 -0.04493 -0.09182 + 9 0.44758 -0.10801 0.11576 -0.10777 0.17319 -0.19632 + 10 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 11 0.02561 -0.07584 0.06628 0.08109 0.10219 0.04412 + 12 -0.15326 0.46746 -0.40591 -0.48430 -0.63884 -0.27563 + 13 -0.18818 -0.02323 0.00823 -0.11120 0.04374 -0.25818 + 14 0.25975 0.15429 0.23491 -0.08022 -0.23212 -0.30206 + 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 16 -0.02561 -0.07584 0.06628 -0.08109 0.10219 -0.04412 + 17 0.15326 0.46746 -0.40591 0.48430 -0.63884 0.27563 + 18 -0.18818 0.02323 -0.00823 -0.11120 -0.04374 -0.25818 + 19 0.25975 -0.15429 -0.23491 -0.08022 0.23212 -0.30206 + 20 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 21 -0.01553 -0.02865 -0.12523 -0.10583 0.03701 0.00979 + 22 0.08946 0.18054 0.77105 0.64337 -0.23438 -0.07061 + 23 -0.30339 0.14855 -0.12383 -0.04525 0.28055 -0.23825 + 24 0.28968 -0.24822 -0.00251 -0.21929 0.24514 -0.07739 + 25 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 26 0.01553 -0.02865 -0.12523 0.10583 0.03701 -0.00979 + 27 -0.08946 0.18054 0.77105 -0.64337 -0.23438 0.07061 + 28 -0.30339 -0.14855 0.12383 -0.04525 -0.28055 -0.23825 + 29 0.28968 0.24822 0.00251 -0.21929 -0.24514 -0.07739 + 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 31 0.16705 -0.32189 0.14727 0.41273 0.34003 0.51005 + 32 -0.16705 -0.32189 0.14727 -0.41273 0.34003 -0.51005 + 33 0.40006 -0.33256 -0.27021 -0.40972 0.09239 0.13146 + 34 -0.40006 -0.33256 -0.27021 0.40972 0.09239 -0.13146 + 35 -0.09990 0.05372 -0.03571 -0.01805 0.07988 0.06611 + 36 0.58720 -0.32288 0.21753 0.11502 -0.48321 -0.41960 + 37 -0.01500 0.29450 -0.18171 -0.13468 0.09978 0.25865 + 38 0.32533 0.07476 0.22807 0.11992 0.00048 -0.04562 + 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 40 0.09990 0.05372 -0.03571 0.01805 0.07988 -0.06611 + 41 -0.58720 -0.32288 0.21753 -0.11502 -0.48321 0.41960 + 42 -0.01500 -0.29450 0.18171 -0.13468 -0.09978 0.25865 + 43 0.32533 -0.07476 -0.22807 0.11992 -0.00048 -0.04562 + 44 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 45 -0.26786 0.52076 -0.25865 -0.13180 0.34666 0.45836 + 46 0.26786 0.52076 -0.25865 0.13180 0.34666 -0.45836 + 47 0.03527 -0.02222 -0.08171 -0.07626 -0.07467 0.04394 + 48 -0.20157 0.12898 0.51881 0.48153 0.46073 -0.28435 + 49 0.05532 0.30668 0.16114 0.20705 0.11192 0.02643 + 50 0.05559 0.20897 -0.04237 -0.07315 0.05118 0.34060 + 51 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 52 -0.03527 -0.02222 -0.08171 0.07626 -0.07467 -0.04394 + 53 0.20157 0.12898 0.51881 -0.48153 0.46073 0.28435 + 54 0.05532 -0.30668 -0.16114 0.20705 -0.11192 0.02643 + 55 0.05559 -0.20897 0.04237 -0.07315 -0.05118 0.34060 + 56 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 57 0.00235 -0.40304 -0.38666 -0.39554 -0.35658 0.02855 + 58 -0.00235 -0.40304 -0.38666 0.39554 -0.35658 -0.02855 + 59 0.21759 0.22625 -0.25676 -0.25855 -0.16648 0.46224 + 60 -0.21759 0.22625 -0.25676 0.25855 -0.16648 -0.46224 + + 49 50 51 52 53 54 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.05831 0.02569 0.04558 -0.00034 -0.00169 0.06301 + 2 -0.35376 -0.16334 -0.31753 0.01021 0.00631 -0.43953 + 3 -0.19196 -0.32615 0.14021 -0.54954 0.15495 -0.18441 + 4 0.11670 0.03797 0.61279 0.07112 0.01701 -0.03904 + 5 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 6 -0.05831 0.02569 0.04558 0.00034 -0.00169 -0.06301 + 7 0.35376 -0.16334 -0.31753 -0.01021 0.00631 0.43953 + 8 -0.19196 0.32615 -0.14021 -0.54954 -0.15495 -0.18441 + 9 0.11670 -0.03797 -0.61279 0.07112 -0.01701 -0.03904 + 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 11 -0.05864 -0.09014 0.00199 -0.09529 -0.01181 0.04816 + 12 0.36131 0.57368 -0.00944 0.64060 0.06955 -0.32654 + 13 -0.17180 -0.14924 -0.43948 0.06032 0.54469 -0.23101 + 14 0.15234 -0.14224 0.11204 0.14373 0.15727 0.70796 + 15 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 16 0.05864 -0.09014 0.00199 0.09529 -0.01181 -0.04816 + 17 -0.36131 0.57368 -0.00944 -0.64060 0.06955 0.32654 + 18 -0.17180 0.14924 0.43948 0.06032 -0.54469 -0.23101 + 19 0.15234 0.14224 -0.11204 0.14373 -0.15727 0.70796 + 20 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 21 0.05300 0.08993 -0.03636 -0.04413 0.01505 -0.08535 + 22 -0.32369 -0.57443 0.23759 0.30544 -0.09007 0.58516 + 23 -0.14480 -0.06867 -0.33543 -0.15723 -0.50669 0.38189 + 24 0.09049 -0.17492 0.08597 -0.46998 0.35572 0.43130 + 25 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 26 -0.05300 0.08993 -0.03636 0.04413 0.01505 0.08535 + 27 0.32369 -0.57443 0.23759 -0.30544 -0.09007 -0.58516 + 28 -0.14480 0.06867 0.33543 -0.15723 0.50669 0.38189 + 29 0.09049 0.17492 -0.08597 -0.46998 -0.35572 0.43130 + 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 31 -0.06620 -0.10721 0.30340 -0.35590 -0.49844 0.12462 + 32 0.06620 -0.10721 0.30340 0.35590 -0.49844 -0.12462 + 33 0.40068 0.27951 0.13808 -0.27116 0.55002 -0.27282 + 34 -0.40068 0.27951 0.13808 0.27116 0.55002 0.27282 + 35 0.07657 -0.02595 0.09257 0.02264 0.04617 0.05615 + 36 -0.46936 0.18631 -0.60027 -0.16972 -0.31717 -0.38313 + 37 0.03747 -0.06437 0.12428 -0.22424 -0.13694 0.04128 + 38 0.13732 0.07194 -0.01913 0.05946 0.16445 -0.00237 + 39 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 40 -0.07657 -0.02595 0.09257 -0.02264 0.04617 -0.05615 + 41 0.46936 0.18631 -0.60027 0.16972 -0.31717 0.38313 + 42 0.03747 0.06437 -0.12428 -0.22424 0.13694 0.04128 + 43 0.13732 -0.07194 0.01913 0.05946 -0.16445 -0.00237 + 44 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 45 0.31193 -0.09499 0.34348 -0.13232 0.07474 0.20739 + 46 -0.31193 -0.09499 0.34348 0.13232 0.07474 -0.20739 + 47 -0.11650 -0.08147 -0.02906 0.00423 -0.04257 -0.00055 + 48 0.73819 0.52463 0.18353 -0.01526 0.29424 0.00035 + 49 0.16734 0.13581 -0.31700 -0.02901 -0.06230 -0.19487 + 50 0.04715 -0.40842 -0.06063 0.45927 0.26601 0.12481 + 51 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 52 0.11650 -0.08147 -0.02906 -0.00423 -0.04257 0.00055 + 53 -0.73819 0.52463 0.18353 0.01526 0.29424 -0.00035 + 54 0.16734 -0.13581 0.31700 -0.02901 0.06230 -0.19487 + 55 0.04715 0.40842 0.06063 0.45927 -0.26601 0.12481 + 56 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 57 -0.57672 -0.34451 0.17329 -0.01305 -0.16513 0.17493 + 58 0.57672 -0.34451 0.17329 0.01305 -0.16513 -0.17493 + 59 -0.28037 -0.56986 -0.23030 0.37758 0.07035 0.04195 + 60 0.28037 -0.56986 -0.23030 -0.37758 0.07035 -0.04195 + + 55 56 57 58 59 60 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.07726 0.01471 0.01892 0.01985 -0.00551 0.04011 + 2 0.52923 -0.09067 -0.12166 -0.14082 0.03670 -0.30348 + 3 -0.19308 -0.12058 0.11221 -0.44383 0.69128 0.16038 + 4 0.02006 -0.27775 -0.38378 0.13538 -0.04906 0.64294 + 5 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 6 0.07726 0.01471 0.01892 -0.01985 -0.00551 -0.04011 + 7 -0.52923 -0.09067 -0.12166 0.14082 0.03670 0.30348 + 8 -0.19308 0.12058 -0.11221 -0.44383 -0.69128 0.16038 + 9 0.02006 0.27775 0.38378 0.13538 0.04906 0.64294 + 10 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 11 -0.00029 0.02578 -0.01873 -0.04485 0.00481 -0.04736 + 12 0.01196 -0.18288 0.13397 0.32497 -0.03416 0.34585 + 13 0.24851 0.23313 0.11252 -0.19550 0.23925 -0.56842 + 14 -0.00850 0.42547 -0.35107 0.12647 -0.54357 -0.24361 + 15 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 16 0.00029 0.02578 -0.01873 0.04485 0.00481 0.04736 + 17 -0.01196 -0.18288 0.13397 -0.32497 -0.03416 -0.34585 + 18 0.24851 -0.23313 -0.11252 -0.19550 -0.23925 -0.56842 + 19 -0.00850 -0.42547 0.35107 0.12647 0.54357 -0.24361 + 20 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 21 -0.03836 -0.03426 0.01247 -0.02107 -0.00432 0.05217 + 22 0.25820 0.23635 -0.09201 0.15671 0.02976 -0.38311 + 23 -0.31856 0.14297 0.04138 -0.03754 -0.43755 0.49554 + 24 -0.09578 0.35200 -0.42419 -0.21381 -0.41770 -0.39765 + 25 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 26 0.03836 -0.03426 0.01247 0.02107 -0.00432 -0.05217 + 27 -0.25820 0.23635 -0.09201 -0.15671 0.02976 0.38311 + 28 -0.31856 -0.14297 -0.04138 -0.03754 0.43755 0.49554 + 29 -0.09578 -0.35200 0.42419 -0.21381 0.41770 -0.39765 + 30 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 31 -0.14284 -0.21597 -0.05398 -0.01662 -0.01208 0.29065 + 32 0.14284 -0.21597 -0.05398 0.01662 -0.01208 -0.29065 + 33 0.00032 -0.02344 -0.21481 -0.11392 0.04609 -0.29850 + 34 -0.00032 -0.02344 -0.21481 0.11392 0.04609 0.29850 + 35 0.03549 -0.03476 0.04093 -0.05874 -0.02532 -0.01108 + 36 -0.25925 0.24848 -0.32043 0.44796 0.20386 0.06537 + 37 0.31971 0.56281 -0.06038 0.62238 0.43355 0.02357 + 38 0.46956 0.10839 0.67026 -0.45609 -0.31475 0.37379 + 39 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 40 -0.03549 -0.03476 0.04093 0.05874 -0.02532 0.01108 + 41 0.25925 0.24848 -0.32043 -0.44796 0.20386 -0.06537 + 42 0.31971 -0.56281 0.06038 0.62238 -0.43355 0.02357 + 43 0.46956 -0.10839 -0.67026 -0.45609 0.31475 0.37379 + 44 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 45 0.40148 0.33902 0.18605 0.19579 0.17140 0.05739 + 46 -0.40148 0.33902 0.18605 -0.19579 0.17140 -0.05739 + 47 -0.02121 0.02963 -0.04422 0.06792 0.03939 -0.00990 + 48 0.14950 -0.22160 0.33503 -0.51829 -0.31147 0.08499 + 49 -0.55955 -0.13644 -0.60587 0.38397 0.25194 -0.23846 + 50 -0.23759 -0.55202 0.15069 -0.55273 -0.32186 0.00159 + 51 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 52 0.02121 0.02963 -0.04422 -0.06792 0.03939 0.00990 + 53 -0.14950 -0.22160 0.33503 0.51829 -0.31147 -0.08499 + 54 -0.55955 0.13644 0.60587 0.38397 -0.25194 -0.23846 + 55 -0.23759 0.55202 -0.15069 -0.55273 0.32186 0.00159 + 56 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 57 0.39097 0.26887 0.30933 -0.00831 -0.03714 0.15474 + 58 -0.39097 0.26887 0.30933 0.00831 -0.03714 -0.15474 + 59 -0.36799 -0.35303 -0.14874 -0.11604 -0.05708 -0.07237 + 60 0.36799 -0.35303 -0.14874 0.11604 -0.05708 0.07237 + + global array: beta evecs[1:60,1:60], handle: -990 + + 1 2 3 4 5 6 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.70031 0.70033 -0.01084 0.00641 0.01038 -0.01065 + 2 0.03097 0.03078 0.00759 -0.00390 -0.00475 0.00502 + 3 -0.00005 0.00000 -0.00316 0.00487 -0.00047 0.00057 + 4 -0.00101 -0.00074 -0.00244 0.00081 -0.00418 0.00410 + 5 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 6 -0.70031 0.70033 0.01084 0.00641 0.01038 0.01065 + 7 -0.03097 0.03078 -0.00759 -0.00390 -0.00475 -0.00502 + 8 -0.00005 -0.00000 -0.00316 -0.00487 0.00047 0.00057 + 9 -0.00101 0.00074 -0.00244 -0.00081 0.00418 0.00410 + 10 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 11 -0.00774 -0.00812 -0.16581 -0.19222 -0.03438 0.00968 + 12 -0.00710 -0.00649 -0.01389 -0.01466 -0.00151 0.00027 + 13 0.00349 0.00331 0.00109 0.00102 0.00015 -0.00003 + 14 -0.00267 -0.00290 0.00434 0.00429 0.00009 0.00001 + 15 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 16 0.00774 -0.00812 0.16581 -0.19222 -0.03438 -0.00968 + 17 0.00710 -0.00649 0.01389 -0.01466 -0.00151 -0.00027 + 18 0.00349 -0.00331 0.00109 -0.00102 -0.00015 -0.00003 + 19 -0.00267 0.00290 0.00434 -0.00429 -0.00009 0.00001 + 20 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 21 0.00809 -0.00842 0.68026 0.67325 0.00070 0.00648 + 22 0.00707 -0.00645 0.03172 0.03139 0.00043 0.00035 + 23 -0.00414 0.00403 -0.00072 -0.00040 0.00012 0.00001 + 24 -0.00138 0.00167 0.00184 0.00180 0.00010 -0.00010 + 25 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 26 -0.00809 -0.00842 -0.68026 0.67325 0.00070 -0.00648 + 27 -0.00707 -0.00645 -0.03172 0.03139 0.00043 -0.00035 + 28 -0.00414 -0.00403 -0.00072 0.00040 -0.00012 0.00001 + 29 -0.00138 -0.00167 0.00184 -0.00180 -0.00010 -0.00010 + 30 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 31 0.00023 0.00012 0.00166 0.00178 0.00028 -0.00007 + 32 -0.00023 0.00012 -0.00166 0.00178 0.00028 0.00007 + 33 -0.00023 0.00012 -0.00613 -0.00613 -0.00017 -0.00020 + 34 0.00023 0.00012 0.00613 -0.00613 -0.00017 0.00020 + 35 0.00965 -0.00978 -0.00416 -0.01026 0.69934 0.70008 + 36 0.00585 -0.00592 0.00003 -0.00040 0.03095 0.03100 + 37 0.00088 -0.00088 0.00006 0.00010 0.00098 0.00098 + 38 0.00393 -0.00397 0.00006 -0.00004 -0.00104 -0.00104 + 39 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 40 -0.00965 -0.00978 0.00416 -0.01026 0.69934 -0.70008 + 41 -0.00585 -0.00592 -0.00003 -0.00040 0.03095 -0.03100 + 42 0.00088 0.00088 0.00006 -0.00010 -0.00098 0.00098 + 43 0.00393 0.00397 0.00006 0.00004 0.00104 -0.00104 + 44 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 45 -0.00016 0.00017 -0.00001 0.00005 -0.00634 -0.00635 + 46 0.00016 0.00017 0.00001 0.00005 -0.00634 0.00635 + 47 -0.00010 0.00009 -0.00119 -0.00078 -0.01827 -0.01835 + 48 -0.00029 0.00029 -0.00010 -0.00001 -0.00810 -0.00811 + 49 -0.00008 0.00008 -0.00006 -0.00008 0.00306 0.00306 + 50 -0.00019 0.00020 -0.00005 -0.00000 -0.00349 -0.00350 + 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 52 0.00010 0.00009 0.00119 -0.00078 -0.01827 0.01835 + 53 0.00029 0.00029 0.00010 -0.00001 -0.00810 0.00811 + 54 -0.00008 -0.00008 -0.00006 0.00008 -0.00306 0.00306 + 55 -0.00019 -0.00020 -0.00005 0.00000 0.00349 -0.00350 + 56 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 57 0.00014 -0.00013 0.00018 0.00018 0.00029 0.00029 + 58 -0.00014 -0.00013 -0.00018 0.00018 0.00029 -0.00029 + 59 0.00002 -0.00002 -0.00001 -0.00001 0.00030 0.00030 + 60 -0.00002 -0.00002 0.00001 -0.00001 0.00030 -0.00030 + + 7 8 9 10 11 12 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00650 0.01189 0.00022 -0.00020 -0.10975 -0.11075 + 2 -0.00471 -0.00740 0.00007 -0.00008 0.27993 0.29436 + 3 -0.00410 -0.00210 -0.00003 0.00003 -0.00759 0.00190 + 4 0.00243 0.00300 -0.00001 0.00001 -0.04705 0.02922 + 5 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 6 -0.00650 0.01189 0.00022 0.00020 -0.10975 0.11075 + 7 0.00471 -0.00740 0.00007 0.00008 0.27993 -0.29436 + 8 -0.00410 0.00210 0.00003 0.00003 0.00759 0.00190 + 9 0.00243 -0.00300 0.00001 0.00001 0.04705 0.02922 + 10 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 11 0.68045 0.67270 0.00117 -0.00047 -0.09705 -0.04082 + 12 0.02852 0.02779 -0.00004 -0.00001 0.24441 0.10681 + 13 -0.00089 -0.00050 0.00002 -0.00001 -0.06142 -0.03276 + 14 0.00054 0.00082 -0.00002 0.00008 -0.01416 0.06295 + 15 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 16 -0.68045 0.67270 0.00117 0.00047 -0.09705 0.04082 + 17 -0.02852 0.02779 -0.00004 0.00001 0.24441 -0.10681 + 18 -0.00089 0.00050 -0.00002 -0.00001 0.06142 -0.03276 + 19 0.00054 -0.00082 0.00002 0.00008 0.01416 0.06295 + 20 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 21 0.16674 0.19336 0.00144 0.00124 -0.09739 0.04639 + 22 0.00081 0.00231 -0.00001 0.00001 0.24566 -0.12202 + 23 -0.00079 -0.00075 0.00000 0.00001 -0.05361 0.05140 + 24 -0.00406 -0.00405 0.00008 0.00011 0.03271 0.04878 + 25 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 26 -0.16674 0.19336 0.00144 -0.00124 -0.09739 -0.04639 + 27 -0.00081 0.00231 -0.00001 -0.00001 0.24566 0.12202 + 28 -0.00079 0.00075 -0.00000 0.00001 0.05361 0.05140 + 29 -0.00406 0.00405 -0.00008 0.00011 -0.03271 0.04878 + 30 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 31 -0.00601 -0.00607 -0.00002 0.00001 0.03876 0.02439 + 32 0.00601 -0.00607 -0.00002 -0.00001 0.03876 -0.02439 + 33 -0.00131 -0.00173 0.00009 0.00009 0.03995 -0.02936 + 34 0.00131 -0.00173 0.00009 -0.00009 0.03995 0.02936 + 35 -0.01086 0.03269 0.01922 0.01922 -0.04698 0.11129 + 36 -0.00062 0.00156 -0.00642 -0.00642 0.12146 -0.29208 + 37 -0.00003 0.00003 -0.00306 -0.00306 0.01460 -0.03927 + 38 -0.00000 -0.00011 0.00335 0.00335 0.03003 -0.01622 + 39 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 40 0.01086 0.03269 0.01922 -0.01922 -0.04698 -0.11129 + 41 0.00062 0.00156 -0.00642 0.00642 0.12146 0.29208 + 42 -0.00003 -0.00003 0.00306 -0.00306 -0.01460 -0.03927 + 43 -0.00000 0.00011 -0.00335 0.00335 -0.03003 -0.01622 + 44 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 45 0.00014 -0.00038 -0.00005 -0.00005 0.02088 -0.05715 + 46 -0.00014 -0.00038 -0.00005 0.00005 0.02088 0.05715 + 47 0.00044 -0.00236 0.70037 0.70037 -0.02161 0.07280 + 48 0.00017 -0.00052 0.03034 0.03034 0.05436 -0.18711 + 49 -0.00007 0.00013 -0.00092 -0.00092 -0.01184 0.03738 + 50 0.00008 -0.00025 0.00103 0.00103 0.02024 -0.05396 + 51 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 52 -0.00044 -0.00236 0.70037 -0.70037 -0.02161 -0.07280 + 53 -0.00017 -0.00052 0.03034 -0.03034 0.05436 0.18711 + 54 -0.00007 -0.00013 0.00092 -0.00092 0.01184 0.03738 + 55 0.00008 0.00025 -0.00103 0.00103 -0.02024 -0.05396 + 56 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 57 0.00002 0.00005 -0.00624 -0.00624 0.01124 -0.04022 + 58 -0.00002 0.00005 -0.00624 0.00624 0.01124 0.04022 + 59 -0.00001 0.00001 -0.00622 -0.00622 0.00793 -0.03379 + 60 0.00001 0.00001 -0.00622 0.00622 0.00793 0.03379 + + 13 14 15 16 17 18 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00908 -0.01204 -0.09487 0.07135 0.05790 -0.00837 + 2 0.02770 0.03286 0.26276 -0.21025 -0.17333 0.02318 + 3 0.01083 0.13358 -0.01981 -0.14305 0.19236 -0.06490 + 4 0.10531 -0.02485 -0.07112 -0.06814 -0.07398 -0.15557 + 5 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 6 -0.00908 0.01204 0.09487 0.07135 0.05790 0.00837 + 7 0.02770 -0.03286 -0.26276 -0.21025 -0.17333 -0.02318 + 8 -0.01083 0.13358 -0.01981 0.14305 -0.19236 -0.06490 + 9 -0.10531 -0.02485 -0.07112 0.06814 0.07398 -0.15557 + 10 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 11 0.04501 -0.13286 -0.04084 0.00993 -0.11128 -0.05019 + 12 -0.11813 0.35967 0.11294 -0.03021 0.32921 0.15442 + 13 0.01962 -0.00893 -0.04111 0.02946 0.06473 -0.01113 + 14 0.03897 -0.05722 0.08797 -0.17286 0.02516 -0.00309 + 15 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 16 0.04501 0.13286 0.04084 0.00993 -0.11128 0.05019 + 17 -0.11813 -0.35967 -0.11294 -0.03021 0.32921 -0.15442 + 18 -0.01962 -0.00893 -0.04111 -0.02946 -0.06473 -0.01113 + 19 -0.03897 -0.05722 0.08797 0.17286 -0.02516 -0.00309 + 20 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 21 0.04013 -0.12187 0.07009 -0.08786 0.05246 0.02981 + 22 -0.10487 0.33000 -0.19386 0.25282 -0.15690 -0.09147 + 23 0.00398 0.02407 0.05951 0.05584 0.09573 0.04297 + 24 -0.05068 0.06856 0.04444 0.01848 0.17953 0.08230 + 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 26 0.04013 0.12187 -0.07009 -0.08786 0.05246 -0.02981 + 27 -0.10487 -0.33000 0.19386 0.25282 -0.15690 0.09147 + 28 -0.00398 0.02407 0.05951 -0.05584 -0.09573 0.04297 + 29 0.05068 0.06856 0.04444 -0.01848 -0.17953 0.08230 + 30 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 31 -0.01985 0.08660 0.02803 -0.02557 0.14536 0.04322 + 32 -0.01985 -0.08660 -0.02803 -0.02557 0.14536 -0.04322 + 33 -0.01387 0.08154 -0.04544 0.10274 -0.07145 -0.05023 + 34 -0.01387 -0.08154 0.04544 0.10274 -0.07145 0.05023 + 35 -0.12403 0.00030 -0.06457 0.04348 0.00542 -0.09591 + 36 0.32969 -0.00151 0.17328 -0.13292 -0.01867 0.29832 + 37 0.05395 0.02244 0.04661 0.08178 -0.03857 -0.11667 + 38 -0.05243 -0.01737 -0.12796 -0.13892 -0.09348 0.06874 + 39 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 40 -0.12403 -0.00030 0.06457 0.04348 0.00542 0.09591 + 41 0.32969 0.00151 -0.17328 -0.13292 -0.01867 -0.29832 + 42 -0.05395 0.02244 0.04661 -0.08178 0.03857 -0.11667 + 43 0.05243 -0.01737 -0.12796 0.13892 0.09348 0.06874 + 44 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 45 0.07025 -0.00849 0.04141 -0.06377 0.02743 0.15181 + 46 0.07025 0.00849 -0.04141 -0.06377 0.02743 -0.15181 + 47 -0.11322 -0.01257 -0.11106 -0.08193 -0.04588 0.08751 + 48 0.29672 0.03260 0.29959 0.23522 0.13619 -0.27013 + 49 -0.05379 0.00093 -0.04390 0.02218 -0.01761 -0.11164 + 50 0.06472 0.00740 0.03442 -0.02021 -0.04091 0.08150 + 51 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 52 -0.11322 0.01257 0.11106 -0.08193 -0.04588 -0.08751 + 53 0.29672 -0.03260 -0.29959 0.23522 0.13619 0.27013 + 54 0.05379 0.00093 -0.04390 -0.02218 0.01761 -0.11164 + 55 -0.06472 0.00740 0.03442 0.02021 0.04091 0.08150 + 56 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 57 0.06605 0.01184 0.07124 0.09046 0.02929 -0.15408 + 58 0.06605 -0.01184 -0.07124 0.09046 0.02929 0.15408 + 59 0.06258 0.00661 0.07724 0.08181 0.06526 -0.11963 + 60 0.06258 -0.00661 -0.07724 0.08181 0.06526 0.11963 + + 19 20 21 22 23 24 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.04802 -0.03184 0.01711 0.05232 -0.04770 0.01801 + 2 -0.14425 0.10602 -0.05961 -0.18046 0.16482 -0.06045 + 3 -0.00928 0.05329 0.16855 -0.17693 -0.15263 -0.01264 + 4 0.16321 0.12113 -0.14936 -0.05852 -0.15818 0.00202 + 5 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 6 0.04802 -0.03184 -0.01711 -0.05232 0.04770 0.01801 + 7 -0.14425 0.10602 0.05961 0.18046 -0.16482 -0.06045 + 8 0.00928 -0.05329 0.16855 -0.17693 -0.15263 0.01264 + 9 -0.16321 -0.12113 -0.14936 -0.05852 -0.15818 -0.00202 + 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 11 -0.01393 -0.01692 -0.01757 -0.04764 0.02361 -0.02448 + 12 0.04834 0.06357 0.05985 0.16345 -0.08486 0.08280 + 13 0.19351 0.12955 -0.01752 0.19053 -0.10497 -0.00406 + 14 -0.08238 0.13938 0.21533 -0.09270 -0.07850 -0.07488 + 15 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 16 -0.01393 -0.01692 0.01757 0.04764 -0.02361 -0.02448 + 17 0.04834 0.06357 -0.05985 -0.16345 0.08486 0.08280 + 18 -0.19351 -0.12955 -0.01752 0.19053 -0.10497 0.00406 + 19 0.08238 -0.13938 0.21533 -0.09270 -0.07850 0.07488 + 20 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 21 -0.05200 0.01673 0.03742 0.04834 -0.01399 0.02036 + 22 0.16771 -0.04674 -0.12204 -0.16723 0.05337 -0.07580 + 23 0.20610 0.08551 -0.10453 0.00239 0.28874 -0.03405 + 24 -0.03544 -0.13215 -0.13907 0.18453 -0.05240 0.13202 + 25 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 26 -0.05200 0.01673 -0.03742 -0.04834 0.01399 0.02036 + 27 0.16771 -0.04674 0.12204 0.16723 -0.05337 -0.07580 + 28 -0.20610 -0.08551 -0.10453 0.00239 0.28874 0.03405 + 29 0.03544 0.13215 -0.13907 0.18453 -0.05240 -0.13202 + 30 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 31 0.10314 0.12278 0.06778 0.17897 -0.12927 0.00899 + 32 0.10314 0.12278 -0.06778 -0.17897 0.12927 0.00899 + 33 0.15818 0.08486 -0.03953 -0.14813 0.22971 -0.10571 + 34 0.15818 0.08486 0.03953 0.14813 -0.22971 -0.10571 + 35 -0.05680 0.04962 -0.01287 0.01359 -0.00476 -0.02343 + 36 0.17605 -0.16001 0.03874 -0.03698 0.01713 0.06739 + 37 -0.06308 0.11598 0.21366 -0.00322 -0.00060 0.26926 + 38 0.02487 0.18084 0.10088 0.20363 0.11792 -0.06053 + 39 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 40 -0.05680 0.04962 0.01287 -0.01359 0.00476 -0.02343 + 41 0.17605 -0.16001 -0.03874 0.03698 -0.01713 0.06739 + 42 0.06308 -0.11598 0.21366 -0.00322 -0.00060 -0.26926 + 43 -0.02487 -0.18084 0.10088 0.20363 0.11792 0.06053 + 44 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 45 0.09671 -0.15090 -0.13798 -0.05564 -0.00089 -0.15128 + 46 0.09671 -0.15090 0.13798 0.05564 0.00089 -0.15128 + 47 0.05661 -0.02594 0.01521 -0.01598 0.00460 0.00296 + 48 -0.17835 0.09374 -0.05480 0.06631 -0.00957 -0.02532 + 49 -0.06706 0.22221 0.07901 0.19042 0.18046 -0.00402 + 50 0.07346 -0.01309 0.19403 -0.07165 0.08047 0.34339 + 51 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 52 0.05661 -0.02594 -0.01521 0.01598 -0.00460 0.00296 + 53 -0.17835 0.09374 0.05480 -0.06631 0.00957 -0.02532 + 54 0.06706 -0.22221 0.07901 0.19042 0.18046 0.00402 + 55 -0.07346 0.01309 0.19403 -0.07165 0.08047 -0.34339 + 56 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 57 -0.08974 0.18159 0.04894 0.14037 0.15135 0.01653 + 58 -0.08974 0.18159 -0.04894 -0.14037 -0.15135 0.01653 + 59 -0.09199 0.00609 -0.15368 0.03650 -0.09603 -0.24848 + 60 -0.09199 0.00609 0.15368 -0.03650 0.09603 -0.24848 + + 25 26 27 28 29 30 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00445 -0.00539 0.02328 0.00000 -0.01352 -0.00587 + 2 -0.01559 0.01984 -0.08409 -0.00000 0.05647 0.03014 + 3 -0.09299 -0.13928 0.09578 0.00000 0.08226 -0.16228 + 4 0.09741 0.16444 0.03905 0.00000 0.21595 0.25433 + 5 0.00000 0.00000 -0.00000 0.33576 -0.00000 -0.00000 + 6 -0.00445 0.00539 0.02328 0.00000 0.01352 -0.00587 + 7 0.01559 -0.01984 -0.08409 -0.00000 -0.05647 0.03014 + 8 -0.09299 -0.13928 -0.09578 -0.00000 0.08226 0.16228 + 9 0.09741 0.16444 -0.03905 -0.00000 0.21595 -0.25433 + 10 -0.00000 0.00000 -0.00000 0.33576 0.00000 0.00000 + 11 0.02081 0.01408 0.00833 0.00000 0.00369 0.00027 + 12 -0.06411 -0.05242 -0.03887 -0.00000 -0.01022 0.00079 + 13 0.33431 0.05833 -0.14050 -0.00000 0.05368 0.15870 + 14 0.12863 -0.21430 -0.17102 -0.00000 0.04469 -0.25040 + 15 0.00000 -0.00000 -0.00000 0.29861 0.00000 -0.00000 + 16 -0.02081 -0.01408 0.00833 0.00000 -0.00369 0.00027 + 17 0.06411 0.05242 -0.03887 -0.00000 0.01022 0.00079 + 18 0.33431 0.05833 0.14050 0.00000 0.05368 -0.15870 + 19 0.12863 -0.21430 0.17102 0.00000 0.04469 0.25040 + 20 -0.00000 0.00000 -0.00000 0.29861 -0.00000 0.00000 + 21 0.01678 -0.00780 -0.00840 -0.00000 -0.01023 -0.00416 + 22 -0.05283 0.02225 0.02793 0.00000 0.03595 0.00642 + 23 0.19075 0.04054 0.07196 0.00000 -0.12729 -0.12364 + 24 -0.20306 0.19827 0.17066 0.00000 -0.00755 0.22130 + 25 -0.00000 0.00000 -0.00000 0.29910 -0.00000 0.00000 + 26 -0.01678 0.00780 -0.00840 -0.00000 0.01023 -0.00416 + 27 0.05283 -0.02225 0.02793 0.00000 -0.03595 0.00642 + 28 0.19075 0.04054 -0.07196 -0.00000 -0.12729 0.12364 + 29 -0.20306 0.19827 -0.17066 -0.00000 -0.00755 -0.22130 + 30 0.00000 -0.00000 -0.00000 0.29910 0.00000 -0.00000 + 31 0.25151 -0.03168 -0.17004 -0.00000 0.03876 0.05819 + 32 -0.25151 0.03168 -0.17004 -0.00000 -0.03876 0.05819 + 33 0.19230 -0.06065 -0.00451 -0.00000 -0.04159 -0.24949 + 34 -0.19230 0.06065 -0.00451 -0.00000 0.04159 -0.24949 + 35 -0.00379 -0.00221 -0.02240 -0.00000 -0.00447 -0.01385 + 36 0.00980 -0.00854 0.09226 0.00000 0.02157 0.05963 + 37 0.00209 0.22077 -0.18960 -0.00000 -0.23308 0.04933 + 38 -0.08217 -0.17597 0.12322 0.00000 -0.13942 0.22325 + 39 0.00000 -0.00000 -0.00000 0.17832 0.00000 0.00000 + 40 0.00379 0.00221 -0.02240 -0.00000 0.00447 -0.01385 + 41 -0.00980 0.00854 0.09226 0.00000 -0.02157 0.05963 + 42 0.00209 0.22077 0.18960 0.00000 -0.23308 -0.04933 + 43 -0.08217 -0.17597 -0.12322 -0.00000 -0.13942 -0.22325 + 44 -0.00000 0.00000 -0.00000 0.17832 -0.00000 -0.00000 + 45 0.00444 -0.14072 0.16692 0.00000 0.25624 -0.06667 + 46 -0.00444 0.14072 0.16692 0.00000 -0.25624 -0.06667 + 47 0.00433 -0.01306 0.00959 0.00000 0.00648 0.00452 + 48 -0.01958 0.02921 -0.02286 -0.00000 -0.02339 -0.00856 + 49 -0.08439 -0.09741 0.29208 0.00000 0.23206 0.00383 + 50 0.02469 0.28136 0.04144 -0.00000 0.14961 -0.15968 + 51 -0.00000 0.00000 -0.00000 0.08225 -0.00000 0.00000 + 52 -0.00433 0.01306 0.00959 0.00000 -0.00648 0.00452 + 53 0.01958 -0.02921 -0.02286 -0.00000 0.02339 -0.00856 + 54 -0.08439 -0.09741 -0.29208 -0.00000 0.23206 -0.00383 + 55 0.02469 0.28136 -0.04144 0.00000 0.14961 0.15968 + 56 0.00000 -0.00000 -0.00000 0.08225 0.00000 -0.00000 + 57 -0.05497 -0.03747 0.24295 0.00000 0.24076 -0.06353 + 58 0.05497 0.03747 0.24295 0.00000 -0.24076 -0.06353 + 59 -0.00815 -0.18031 -0.11801 -0.00000 -0.21235 0.14208 + 60 0.00815 0.18031 -0.11801 -0.00000 0.21235 0.14208 + + 31 32 33 34 35 36 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.01067 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 2 0.04755 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 3 0.26847 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 4 0.11497 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 5 0.00000 0.36053 0.00438 0.01239 0.37745 0.46217 + 6 -0.01067 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 7 0.04755 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 8 -0.26847 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 9 -0.11497 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 10 -0.00000 -0.36053 -0.00438 0.01239 -0.37745 0.46217 + 11 -0.00633 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 12 0.01543 0.00000 0.00000 -0.00000 0.00000 0.00000 + 13 -0.21343 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 14 -0.06710 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 15 -0.00000 0.13002 0.46206 -0.19522 0.22157 -0.21552 + 16 -0.00633 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 17 0.01543 0.00000 0.00000 -0.00000 0.00000 0.00000 + 18 0.21343 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 19 0.06710 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 20 -0.00000 -0.13002 -0.46206 -0.19522 -0.22157 -0.21552 + 21 0.00326 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 22 -0.00767 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 23 0.26225 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 24 0.09272 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 25 -0.00000 -0.13297 0.45918 -0.19220 -0.23092 -0.28223 + 26 0.00326 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 27 -0.00767 0.00000 0.00000 0.00000 -0.00000 0.00000 + 28 -0.26225 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 29 -0.09272 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 30 0.00000 0.13297 -0.45918 -0.19220 0.23092 -0.28223 + 31 -0.23795 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 32 -0.23795 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 33 0.12909 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 34 0.12909 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 35 -0.00695 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 36 0.02252 0.00000 0.00000 0.00000 0.00000 -0.00000 + 37 0.16303 0.00000 0.00000 -0.00000 0.00000 0.00000 + 38 0.12220 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 39 -0.00000 -0.39014 -0.00255 0.44627 0.25898 0.19367 + 40 -0.00695 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 41 0.02252 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 42 -0.16303 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 43 -0.12220 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 44 -0.00000 0.39014 0.00255 0.44627 -0.25898 0.19367 + 45 -0.19586 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 46 -0.19586 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 47 -0.00520 0.00000 -0.00000 0.00000 0.00000 0.00000 + 48 0.01990 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 49 -0.13861 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 50 -0.06792 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 51 -0.00000 -0.23639 0.00660 0.37009 0.38253 -0.46592 + 52 -0.00520 0.00000 -0.00000 0.00000 0.00000 0.00000 + 53 0.01990 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 54 0.13861 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 55 0.06792 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 56 0.00000 0.23639 -0.00660 0.37009 -0.38253 -0.46592 + 57 -0.14106 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 58 -0.14106 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 59 0.11639 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 60 0.11639 0.00000 0.00000 0.00000 -0.00000 -0.00000 + + 37 38 39 40 41 42 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.00000 0.00000 -0.00000 0.00000 -0.07895 -0.04667 + 2 0.00000 -0.00000 0.00000 -0.00000 0.46642 0.27307 + 3 0.00000 -0.00000 -0.00000 0.00000 0.09304 0.30472 + 4 0.00000 0.00000 -0.00000 -0.00000 0.29930 0.21038 + 5 -0.04155 0.03632 0.47989 0.54234 -0.00000 0.00000 + 6 -0.00000 0.00000 -0.00000 0.00000 -0.07895 0.04667 + 7 0.00000 -0.00000 0.00000 0.00000 0.46642 -0.27307 + 8 -0.00000 0.00000 0.00000 0.00000 -0.09304 0.30472 + 9 -0.00000 0.00000 0.00000 -0.00000 -0.29930 0.21038 + 10 -0.04155 -0.03632 0.47989 -0.54234 -0.00000 0.00000 + 11 0.00000 -0.00000 -0.00000 0.00000 -0.02282 0.01451 + 12 -0.00000 0.00000 0.00000 0.00000 0.14030 -0.08274 + 13 -0.00000 0.00000 0.00000 -0.00000 0.29415 0.34594 + 14 0.00000 0.00000 -0.00000 0.00000 0.02776 0.04082 + 15 0.58690 -0.24642 -0.15492 -0.46012 0.00000 -0.00000 + 16 0.00000 -0.00000 -0.00000 0.00000 -0.02282 -0.01451 + 17 -0.00000 0.00000 0.00000 0.00000 0.14030 0.08274 + 18 0.00000 0.00000 -0.00000 -0.00000 -0.29415 0.34594 + 19 -0.00000 0.00000 0.00000 0.00000 -0.02776 0.04082 + 20 0.58690 0.24642 -0.15492 0.46012 0.00000 0.00000 + 21 -0.00000 0.00000 0.00000 0.00000 -0.04060 -0.01934 + 22 0.00000 -0.00000 -0.00000 -0.00000 0.24602 0.11403 + 23 0.00000 0.00000 0.00000 -0.00000 0.20276 0.26717 + 24 -0.00000 -0.00000 -0.00000 0.00000 -0.09531 0.06571 + 25 -0.54790 0.23731 -0.18987 0.46236 0.00000 0.00000 + 26 -0.00000 0.00000 0.00000 0.00000 -0.04060 0.01934 + 27 0.00000 -0.00000 -0.00000 -0.00000 0.24602 -0.11403 + 28 -0.00000 0.00000 -0.00000 -0.00000 -0.20276 0.26717 + 29 0.00000 -0.00000 0.00000 -0.00000 0.09531 0.06571 + 30 -0.54790 -0.23731 -0.18987 -0.46236 0.00000 -0.00000 + 31 -0.00000 0.00000 -0.00000 0.00000 -0.39155 -0.30897 + 32 -0.00000 -0.00000 -0.00000 0.00000 -0.39155 0.30897 + 33 0.00000 0.00000 -0.00000 -0.00000 -0.40108 -0.23050 + 34 0.00000 0.00000 -0.00000 0.00000 -0.40108 0.23050 + 35 -0.00000 0.00000 0.00000 0.00000 0.05809 -0.01552 + 36 0.00000 0.00000 -0.00000 -0.00000 -0.33416 0.09189 + 37 0.00000 0.00000 -0.00000 -0.00000 -0.24389 0.33116 + 38 0.00000 0.00000 0.00000 0.00000 -0.36996 0.27297 + 39 0.00421 -0.49063 -0.52782 0.29533 0.00000 -0.00000 + 40 -0.00000 -0.00000 0.00000 0.00000 0.05809 0.01552 + 41 -0.00000 -0.00000 -0.00000 -0.00000 -0.33416 -0.09189 + 42 -0.00000 -0.00000 0.00000 0.00000 0.24389 0.33116 + 43 -0.00000 -0.00000 -0.00000 -0.00000 0.36996 0.27297 + 44 0.00421 0.49063 -0.52782 -0.29533 0.00000 0.00000 + 45 -0.00000 0.00000 -0.00000 0.00000 -0.12733 0.36937 + 46 -0.00000 0.00000 -0.00000 0.00000 -0.12733 -0.36937 + 47 -0.00000 0.00000 -0.00000 0.00000 -0.03649 0.00857 + 48 0.00000 -0.00000 0.00000 0.00000 0.20887 -0.05219 + 49 -0.00000 -0.00000 -0.00000 0.00000 -0.15353 0.30964 + 50 0.00000 -0.00000 -0.00000 -0.00000 -0.11806 0.13760 + 51 0.01858 0.54633 0.41051 -0.17015 -0.00000 0.00000 + 52 -0.00000 0.00000 -0.00000 0.00000 -0.03649 -0.00857 + 53 0.00000 -0.00000 0.00000 0.00000 0.20887 0.05219 + 54 0.00000 0.00000 0.00000 -0.00000 0.15353 0.30964 + 55 -0.00000 -0.00000 0.00000 0.00000 0.11806 0.13760 + 56 0.01858 -0.54633 0.41051 0.17015 -0.00000 -0.00000 + 57 -0.00000 0.00000 0.00000 0.00000 0.13628 -0.31813 + 58 -0.00000 0.00000 0.00000 0.00000 0.13628 0.31813 + 59 0.00000 0.00000 -0.00000 -0.00000 -0.33511 0.29438 + 60 0.00000 0.00000 -0.00000 0.00000 -0.33511 -0.29438 + + 43 44 45 46 47 48 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.05912 0.03107 0.07466 -0.08689 -0.01067 -0.11957 + 2 0.34235 -0.18965 -0.45359 0.51966 0.07378 0.73398 + 3 -0.16822 -0.13099 0.32112 -0.13953 -0.10301 0.06772 + 4 0.46090 0.10603 -0.11826 -0.10946 -0.17476 -0.15322 + 5 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 6 0.05912 0.03107 0.07466 0.08689 0.01067 -0.11957 + 7 -0.34235 -0.18965 -0.45359 -0.51966 -0.07378 0.73398 + 8 -0.16822 0.13099 -0.32112 -0.13953 -0.10301 -0.06772 + 9 0.46090 -0.10603 0.11826 -0.10946 -0.17476 0.15322 + 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 11 0.02505 -0.07692 0.06167 0.08510 0.03787 0.10710 + 12 -0.15001 0.47353 -0.37819 -0.50928 -0.23783 -0.67020 + 13 -0.17610 -0.02401 0.01192 -0.11554 -0.27443 0.04051 + 14 0.26919 0.13100 0.25304 -0.08853 -0.28244 -0.22157 + 15 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 16 -0.02505 -0.07692 0.06167 -0.08510 -0.03787 0.10710 + 17 0.15001 0.47353 -0.37819 0.50928 0.23783 -0.67020 + 18 -0.17610 0.02401 -0.01192 -0.11554 -0.27443 -0.04051 + 19 0.26919 -0.13100 -0.25304 -0.08853 -0.28244 0.22157 + 20 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 21 -0.01485 -0.01858 -0.12951 -0.10810 0.01737 0.03053 + 22 0.08524 0.11886 0.79871 0.65730 -0.11696 -0.19368 + 23 -0.28980 0.16266 -0.10239 -0.03249 -0.25092 0.27695 + 24 0.30068 -0.23862 -0.02058 -0.22081 -0.05532 0.25449 + 25 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 26 0.01485 -0.01858 -0.12951 0.10810 -0.01737 0.03053 + 27 -0.08524 0.11886 0.79871 -0.65730 0.11696 -0.19368 + 28 -0.28980 -0.16266 0.10239 -0.03249 -0.25092 -0.27695 + 29 0.30068 0.23862 0.02058 -0.22081 -0.05532 -0.25449 + 30 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 31 0.14896 -0.31781 0.12023 0.42891 0.49794 0.35272 + 32 -0.14896 -0.31781 0.12023 -0.42891 -0.49794 0.35272 + 33 0.40000 -0.30708 -0.30878 -0.42842 0.18498 0.07581 + 34 -0.40000 -0.30708 -0.30878 0.42842 -0.18498 0.07581 + 35 -0.09943 0.05744 -0.03439 -0.02074 0.07170 0.08184 + 36 0.58578 -0.34622 0.21034 0.13167 -0.45463 -0.49680 + 37 -0.00933 0.31828 -0.15556 -0.12426 0.26895 0.09540 + 38 0.33610 0.06246 0.22740 0.11143 -0.02791 -0.01503 + 39 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 40 0.09943 0.05744 -0.03439 0.02074 -0.07170 0.08184 + 41 -0.58578 -0.34622 0.21034 -0.13167 0.45463 -0.49680 + 42 -0.00933 -0.31828 0.15556 -0.12426 0.26895 -0.09540 + 43 0.33610 -0.06246 -0.22740 0.11143 -0.02791 0.01503 + 44 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 45 -0.25672 0.55393 -0.22589 -0.13131 0.49006 0.33992 + 46 0.25672 0.55393 -0.22589 0.13131 -0.49006 0.33992 + 47 0.03316 -0.01629 -0.07943 -0.06990 0.03517 -0.07492 + 48 -0.18680 0.09039 0.49936 0.43755 -0.22692 0.45817 + 49 0.06781 0.29619 0.18916 0.21051 0.03743 0.09301 + 50 0.05796 0.21542 -0.01774 -0.06424 0.34089 0.04390 + 51 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 52 -0.03316 -0.01629 -0.07943 0.06990 -0.03517 -0.07492 + 53 0.18680 0.09039 0.49936 -0.43755 0.22692 0.45817 + 54 0.06781 -0.29619 -0.18916 0.21051 0.03743 -0.09301 + 55 0.05796 -0.21542 0.01774 -0.06424 0.34089 -0.04390 + 56 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 57 -0.01828 -0.37413 -0.40227 -0.37268 -0.01664 -0.33080 + 58 0.01828 -0.37413 -0.40227 0.37268 0.01664 -0.33080 + 59 0.21500 0.24742 -0.21369 -0.22470 0.43446 -0.17764 + 60 -0.21500 0.24742 -0.21369 0.22470 -0.43446 -0.17764 + + 49 50 51 52 53 54 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.05669 0.02296 0.05109 -0.00141 -0.00151 0.06265 + 2 -0.34303 -0.14465 -0.35055 0.01740 0.00496 -0.43387 + 3 -0.18986 -0.31777 0.13407 -0.55031 0.15748 -0.20117 + 4 0.11767 0.01443 0.61863 0.07288 0.01967 -0.03991 + 5 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 6 -0.05669 0.02296 0.05109 0.00141 -0.00151 -0.06265 + 7 0.34303 -0.14465 -0.35055 -0.01740 0.00496 0.43387 + 8 -0.18986 0.31777 -0.13407 -0.55031 -0.15748 -0.20117 + 9 0.11767 -0.01443 -0.61863 0.07288 -0.01967 -0.03991 + 10 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 11 -0.05892 -0.08610 -0.00214 -0.09572 -0.01017 0.04562 + 12 0.36453 0.54863 0.01709 0.64381 0.05848 -0.30950 + 13 -0.14726 -0.13430 -0.44837 0.05813 0.54525 -0.22223 + 14 0.16724 -0.14752 0.11844 0.13042 0.16929 0.71118 + 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 16 0.05892 -0.08610 -0.00214 0.09572 -0.01017 -0.04562 + 17 -0.36453 0.54863 0.01709 -0.64381 0.05848 0.30950 + 18 -0.14726 0.13430 0.44837 0.05813 -0.54525 -0.22223 + 19 0.16724 0.14752 -0.11844 0.13042 -0.16929 0.71118 + 20 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 21 0.04740 0.08791 -0.03727 -0.04223 0.01331 -0.08617 + 22 -0.28840 -0.56245 0.24328 0.29275 -0.07833 0.59126 + 23 -0.12595 -0.05138 -0.34153 -0.16778 -0.50724 0.36764 + 24 0.08126 -0.17703 0.07284 -0.47539 0.36806 0.42281 + 25 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 26 -0.04740 0.08791 -0.03727 0.04223 0.01331 0.08617 + 27 0.28840 -0.56245 0.24328 -0.29275 -0.07833 -0.59126 + 28 -0.12595 0.05138 0.34153 -0.16778 0.50724 0.36764 + 29 0.08126 0.17703 -0.07284 -0.47539 -0.36806 0.42281 + 30 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 31 -0.09496 -0.10483 0.29620 -0.35020 -0.49694 0.11116 + 32 0.09496 -0.10483 0.29620 0.35020 -0.49694 -0.11116 + 33 0.36395 0.26185 0.13358 -0.26005 0.55127 -0.27099 + 34 -0.36395 0.26185 0.13358 0.26005 0.55127 0.27099 + 35 0.06992 -0.02689 0.08763 0.02227 0.04597 0.05809 + 36 -0.42680 0.19422 -0.56943 -0.16778 -0.31511 -0.39728 + 37 0.01336 -0.06614 0.12132 -0.22316 -0.12106 0.04644 + 38 0.13327 0.07280 -0.01885 0.06096 0.15838 0.00738 + 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 40 -0.06992 -0.02689 0.08763 -0.02227 0.04597 -0.05809 + 41 0.42680 0.19422 -0.56943 0.16778 -0.31511 0.39728 + 42 0.01336 0.06614 -0.12132 -0.22316 0.12106 0.04644 + 43 0.13327 -0.07280 0.01885 0.06096 -0.15838 0.00738 + 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 45 0.26533 -0.09841 0.32565 -0.13155 0.08489 0.21688 + 46 -0.26533 -0.09841 0.32565 0.13155 0.08489 -0.21688 + 47 -0.12533 -0.08598 -0.03056 0.00387 -0.04390 -0.00128 + 48 0.78840 0.54860 0.19172 -0.01271 0.29934 0.00550 + 49 0.17469 0.16067 -0.30921 -0.02338 -0.05668 -0.21232 + 50 -0.00162 -0.40796 -0.08294 0.46400 0.24904 0.12473 + 51 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.12533 -0.08598 -0.03056 -0.00387 -0.04390 0.00128 + 53 -0.78840 0.54860 0.19172 0.01271 0.29934 -0.00550 + 54 0.17469 -0.16067 0.30921 -0.02338 0.05668 -0.21232 + 55 -0.00162 0.40796 0.08294 0.46400 -0.24904 0.12473 + 56 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 57 -0.59001 -0.37429 0.16475 -0.02079 -0.16965 0.18513 + 58 0.59001 -0.37429 0.16475 0.02079 -0.16965 -0.18513 + 59 -0.34519 -0.57023 -0.24898 0.37936 0.05481 0.03538 + 60 0.34519 -0.57023 -0.24898 -0.37936 0.05481 -0.03538 + + 55 56 57 58 59 60 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 -0.08025 0.01525 0.01897 0.02107 -0.00570 0.04148 + 2 0.54677 -0.09361 -0.12172 -0.14885 0.03784 -0.31154 + 3 -0.19672 -0.12952 0.12700 -0.43949 0.69079 0.16309 + 4 0.02494 -0.28225 -0.38107 0.13957 -0.04690 0.64441 + 5 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 6 0.08025 0.01525 0.01897 -0.02107 -0.00570 -0.04148 + 7 -0.54677 -0.09361 -0.12172 0.14885 0.03784 0.31154 + 8 -0.19672 0.12952 -0.12700 -0.43949 -0.69079 0.16309 + 9 0.02494 0.28225 0.38107 0.13957 0.04690 0.64441 + 10 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 11 -0.00153 0.02528 -0.01839 -0.04504 0.00563 -0.04761 + 12 0.02119 -0.17944 0.13173 0.32652 -0.04002 0.34748 + 13 0.24845 0.22177 0.11856 -0.20031 0.23764 -0.56808 + 14 -0.02656 0.42210 -0.35841 0.12487 -0.53577 -0.24010 + 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 16 0.00153 0.02528 -0.01839 0.04504 0.00563 0.04761 + 17 -0.02119 -0.17944 0.13173 -0.32652 -0.04002 -0.34748 + 18 0.24845 -0.22177 -0.11856 -0.20031 -0.23764 -0.56808 + 19 -0.02656 -0.42210 0.35841 0.12487 0.53577 -0.24010 + 20 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 21 -0.03757 -0.03388 0.01232 -0.02016 -0.00515 0.05278 + 22 0.25226 0.23346 -0.09102 0.15041 0.03565 -0.38732 + 23 -0.32791 0.15496 0.02682 -0.03057 -0.43450 0.49767 + 24 -0.11443 0.34309 -0.42664 -0.21385 -0.41049 -0.39291 + 25 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 26 0.03757 -0.03388 0.01232 0.02016 -0.00515 -0.05278 + 27 -0.25226 0.23346 -0.09102 -0.15041 0.03565 0.38732 + 28 -0.32791 -0.15496 -0.02682 -0.03057 0.43450 0.49767 + 29 -0.11443 -0.34309 0.42664 -0.21385 0.41049 -0.39291 + 30 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 31 -0.14147 -0.20731 -0.05529 -0.01417 -0.01057 0.28810 + 32 0.14147 -0.20731 -0.05529 0.01417 -0.01057 -0.28810 + 33 0.00011 -0.03411 -0.20663 -0.11500 0.04545 -0.29513 + 34 -0.00011 -0.03411 -0.20663 0.11500 0.04545 0.29513 + 35 0.03194 -0.03636 0.04163 -0.05991 -0.02661 -0.01036 + 36 -0.23533 0.25961 -0.32547 0.45710 0.21378 0.06060 + 37 0.32338 0.55936 -0.05909 0.61590 0.43631 0.01940 + 38 0.46379 0.10984 0.66573 -0.46017 -0.32364 0.37370 + 39 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 40 -0.03194 -0.03636 0.04163 0.05991 -0.02661 0.01036 + 41 0.23533 0.25961 -0.32547 -0.45710 0.21378 -0.06060 + 42 0.32338 -0.55936 0.05909 0.61590 -0.43631 0.01940 + 43 0.46379 -0.10984 -0.66573 -0.46017 0.32364 0.37370 + 44 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 45 0.39156 0.33133 0.18744 0.18679 0.16786 0.05627 + 46 -0.39156 0.33133 0.18744 -0.18679 0.16786 -0.05627 + 47 -0.02068 0.03125 -0.04593 0.07045 0.04153 -0.01064 + 48 0.14430 -0.23060 0.34380 -0.53202 -0.32480 0.08974 + 49 -0.55086 -0.14182 -0.60500 0.38891 0.25982 -0.24067 + 50 -0.25138 -0.55867 0.15010 -0.55017 -0.32711 0.00482 + 51 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 52 0.02068 0.03125 -0.04593 -0.07045 0.04153 0.01064 + 53 -0.14430 -0.23060 0.34380 0.53202 -0.32480 -0.08974 + 54 -0.55086 0.14182 0.60500 0.38891 -0.25982 -0.24067 + 55 -0.25138 0.55867 -0.15010 -0.55017 0.32711 0.00482 + 56 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 57 0.38522 0.27781 0.30222 -0.00557 -0.03612 0.15326 + 58 -0.38522 0.27781 0.30222 0.00557 -0.03612 -0.15326 + 59 -0.37195 -0.35322 -0.15246 -0.10611 -0.05337 -0.07228 + 60 0.37195 -0.35322 -0.15246 0.10611 -0.05337 0.07228 + + alpha - beta orbital overlaps + ----------------------------- + + + alpha 1 2 3 4 5 6 7 8 9 10 + beta 1 2 3 4 7 8 6 5 10 9 + overlap 1.000 1.000 1.000 1.000 0.999 0.992 0.998 0.990 0.998 0.998 + + + alpha 11 12 13 14 15 16 17 18 19 20 + beta 11 12 13 14 15 16 17 18 19 20 + overlap 1.000 1.000 0.999 0.999 0.998 0.997 0.998 0.999 0.999 1.000 + + + alpha 21 22 23 24 25 26 27 28 29 30 + beta 21 22 23 24 25 26 27 28 29 30 + overlap 1.000 0.999 0.999 1.000 0.998 0.998 1.000 0.999 1.000 0.997 + + + alpha 31 32 33 34 35 36 37 38 39 40 + beta 31 32 34 33 35 36 37 38 39 40 + overlap 0.997 0.997 0.990 1.000 0.996 0.991 1.000 0.994 0.998 0.999 + + + alpha 41 42 43 44 45 46 47 48 49 50 + beta 41 42 43 44 45 46 48 47 49 50 + overlap 0.999 0.999 0.999 0.997 0.996 0.998 0.998 0.995 0.994 0.999 + + + alpha 51 52 53 54 55 56 57 58 59 60 + beta 51 52 53 54 55 56 57 58 59 60 + overlap 0.999 1.000 1.000 0.999 0.999 1.000 1.000 1.000 1.000 1.000 + + + -------------------------- + Expectation value of S2: + -------------------------- + = 0.7778 (Exact = 0.7500) + + + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 2631.731379210404 0.000000000000 0.000000000000 + 0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678692 + + Multipole analysis of the density + --------------------------------- + + L x y z total alpha beta nuclear + - - - - ----- ----- ---- ------- + 0 0 0 0 1.000000 -35.000000 -34.000000 70.000000 + + 1 1 0 0 0.000000 -0.000000 0.000000 0.000000 + 1 0 1 0 -0.000000 -0.000000 -0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 0.000000 + + 2 2 0 0 -32.088307 -138.903464 -137.980714 244.795872 + 2 1 1 0 -0.672812 3.818258 1.139957 -5.631027 + 2 1 0 1 0.000000 0.000000 0.000000 0.000000 + 2 0 2 0 -6.463658 -767.762440 -735.664518 1496.963300 + 2 0 1 1 0.000000 0.000000 0.000000 0.000000 + 2 0 0 2 -42.019876 -21.786617 -20.233259 0.000000 + + + Parallel integral file used 8 records with 0 large values + + + + ---------------------------- + Mulliken population analysis + ---------------------------- + + Alpha Spin S,P,D,... shell population + -------------------------------- + Atom S P + -------------------------------------------------------------------------------------- + 1 C 1.58378 1.49484 + 2 C 1.58378 1.49484 + 3 C 1.57880 1.44955 + 4 C 1.57880 1.44955 + 5 C 1.57805 1.45579 + 6 C 1.57805 1.45579 + 7 H 0.43571 0.00000 + 8 H 0.43571 0.00000 + 9 H 0.43762 0.00000 + 10 H 0.43762 0.00000 + 11 C 1.57515 1.41693 + 12 C 1.57515 1.41693 + 13 H 0.43877 0.00000 + 14 H 0.43877 0.00000 + 15 C 1.61193 1.59034 + 16 C 1.61193 1.59034 + 17 H 0.43100 0.00000 + 18 H 0.43100 0.00000 + 19 H 0.42175 0.00000 + 20 H 0.42175 0.00000 + + ----- Alpha Spin gross population on atoms ---- + + 1 C 6.0 3.07862 + 2 C 6.0 3.07862 + 3 C 6.0 3.02835 + 4 C 6.0 3.02835 + 5 C 6.0 3.03384 + 6 C 6.0 3.03384 + 7 H 1.0 0.43571 + 8 H 1.0 0.43571 + 9 H 1.0 0.43762 + 10 H 1.0 0.43762 + 11 C 6.0 2.99208 + 12 C 6.0 2.99208 + 13 H 1.0 0.43877 + 14 H 1.0 0.43877 + 15 C 6.0 3.20227 + 16 C 6.0 3.20227 + 17 H 1.0 0.43100 + 18 H 1.0 0.43100 + 19 H 1.0 0.42175 + 20 H 1.0 0.42175 + + Beta Spin S,P,D,... shell population + -------------------------------- + Atom S P + -------------------------------------------------------------------------------------- + 1 C 1.57022 1.29538 + 2 C 1.57022 1.29538 + 3 C 1.57994 1.43047 + 4 C 1.57994 1.43047 + 5 C 1.57849 1.42814 + 6 C 1.57849 1.42814 + 7 H 0.43692 0.00000 + 8 H 0.43692 0.00000 + 9 H 0.43920 0.00000 + 10 H 0.43920 0.00000 + 11 C 1.58410 1.46402 + 12 C 1.58410 1.46402 + 13 H 0.43669 0.00000 + 14 H 0.43669 0.00000 + 15 C 1.58990 1.28458 + 16 C 1.58990 1.28458 + 17 H 0.44539 0.00000 + 18 H 0.44539 0.00000 + 19 H 0.43656 0.00000 + 20 H 0.43656 0.00000 + + ----- Beta Spin gross population on atoms ---- + + 1 C 6.0 2.86560 + 2 C 6.0 2.86560 + 3 C 6.0 3.01041 + 4 C 6.0 3.01041 + 5 C 6.0 3.00663 + 6 C 6.0 3.00663 + 7 H 1.0 0.43692 + 8 H 1.0 0.43692 + 9 H 1.0 0.43920 + 10 H 1.0 0.43920 + 11 C 6.0 3.04812 + 12 C 6.0 3.04812 + 13 H 1.0 0.43669 + 14 H 1.0 0.43669 + 15 C 6.0 2.87448 + 16 C 6.0 2.87448 + 17 H 1.0 0.44539 + 18 H 1.0 0.44539 + 19 H 1.0 0.43656 + 20 H 1.0 0.43656 + + Total S,P,D,... shell population + -------------------------------- + Atom S P + -------------------------------------------------------------------------------------- + 1 C 3.15401 2.79021 + 2 C 3.15401 2.79021 + 3 C 3.15874 2.88002 + 4 C 3.15874 2.88002 + 5 C 3.15654 2.88393 + 6 C 3.15654 2.88393 + 7 H 0.87264 0.00000 + 8 H 0.87264 0.00000 + 9 H 0.87682 0.00000 + 10 H 0.87682 0.00000 + 11 C 3.15925 2.88095 + 12 C 3.15925 2.88095 + 13 H 0.87546 0.00000 + 14 H 0.87546 0.00000 + 15 C 3.20183 2.87493 + 16 C 3.20183 2.87493 + 17 H 0.87638 0.00000 + 18 H 0.87638 0.00000 + 19 H 0.85830 0.00000 + 20 H 0.85830 0.00000 + + ----- Total gross population on atoms ---- + + 1 C 6.0 5.94422 + 2 C 6.0 5.94422 + 3 C 6.0 6.03876 + 4 C 6.0 6.03876 + 5 C 6.0 6.04047 + 6 C 6.0 6.04047 + 7 H 1.0 0.87264 + 8 H 1.0 0.87264 + 9 H 1.0 0.87682 + 10 H 1.0 0.87682 + 11 C 6.0 6.04020 + 12 C 6.0 6.04020 + 13 H 1.0 0.87546 + 14 H 1.0 0.87546 + 15 C 6.0 6.07675 + 16 C 6.0 6.07675 + 17 H 1.0 0.87638 + 18 H 1.0 0.87638 + 19 H 1.0 0.85830 + 20 H 1.0 0.85830 + + ----- Atomic spin population ----- + + 1 C 6.0 0.21302 + 2 C 6.0 0.21302 + 3 C 6.0 0.01793 + 4 C 6.0 0.01793 + 5 C 6.0 0.02721 + 6 C 6.0 0.02721 + 7 H 1.0 -0.00121 + 8 H 1.0 -0.00121 + 9 H 1.0 -0.00158 + 10 H 1.0 -0.00158 + 11 C 6.0 -0.05604 + 12 C 6.0 -0.05604 + 13 H 1.0 0.00208 + 14 H 1.0 0.00208 + 15 C 6.0 0.32779 + 16 C 6.0 0.32779 + 17 H 1.0 -0.01439 + 18 H 1.0 -0.01439 + 19 H 1.0 -0.01481 + 20 H 1.0 -0.01481 + + ----- Bond indices ----- + 1- 1 0.00000 1- 2 0.04997 1- 3 1.26324 1- 4 0.01795 1- 5 0.01920 1- 6 1.26226 1- 7 0.00417 1- 8 0.00717 + 2- 1 0.04997 2- 2 0.00000 2- 3 0.01795 2- 4 1.26324 2- 5 1.26226 2- 6 0.01920 2- 7 0.00717 2- 8 0.00417 + 3- 1 1.26324 3- 2 0.01795 3- 3 0.00000 3- 4 0.07130 3- 5 1.55327 3- 6 0.00906 3- 7 0.95236 3- 8 0.00018 + 4- 1 0.01795 4- 2 1.26324 4- 3 0.07130 4- 4 0.00000 4- 5 0.00906 4- 6 1.55327 4- 7 0.00018 4- 8 0.95236 + 5- 1 0.01920 5- 2 1.26226 5- 3 1.55327 5- 4 0.00906 5- 5 0.00000 5- 6 0.07238 5- 7 0.00296 5- 8 0.00702 + 6- 1 1.26226 6- 2 0.01920 6- 3 0.00906 6- 4 1.55327 6- 5 0.07238 6- 6 0.00000 6- 7 0.00702 6- 8 0.00296 + 7- 1 0.00417 7- 2 0.00717 7- 3 0.95236 7- 4 0.00018 7- 5 0.00296 7- 6 0.00702 7- 7 0.00000 7- 8 0.00008 + 8- 1 0.00717 8- 2 0.00417 8- 3 0.00018 8- 4 0.95236 8- 5 0.00702 8- 6 0.00296 8- 7 0.00008 8- 8 0.00000 + 9- 1 0.00716 9- 2 0.00413 9- 3 0.00288 9- 4 0.00709 9- 5 0.95163 9- 6 0.00017 9- 7 0.00313 9- 8 0.00119 + 10- 1 0.00413 10- 2 0.00716 10- 3 0.00709 10- 4 0.00288 10- 5 0.00017 10- 6 0.95163 10- 7 0.00119 10- 8 0.00313 + 11- 1 0.01648 11- 2 1.16859 11- 3 0.02459 11- 4 0.00964 11- 5 0.00923 11- 6 0.02276 11- 7 0.00090 11- 8 0.00280 + 12- 1 1.16859 12- 2 0.01648 12- 3 0.00964 12- 4 0.02459 12- 5 0.02276 12- 6 0.00923 12- 7 0.00280 12- 8 0.00090 + 13- 1 0.00003 13- 2 0.00540 13- 3 0.00077 13- 4 0.00198 13- 5 0.00588 13- 6 0.00007 13- 7 0.00027 13- 8 0.00128 + 14- 1 0.00540 14- 2 0.00003 14- 3 0.00198 14- 4 0.00077 14- 5 0.00007 14- 6 0.00588 14- 7 0.00128 14- 8 0.00027 + 15- 1 0.02148 15- 2 0.05865 15- 3 0.01637 15- 4 0.02377 15- 5 0.02068 15- 6 0.01952 15- 7 0.00002 15- 8 0.00010 + 16- 1 0.05865 16- 2 0.02148 16- 3 0.02377 16- 4 0.01637 16- 5 0.01952 16- 6 0.02068 16- 7 0.00010 16- 8 0.00002 + 17- 1 0.00000 17- 2 0.00460 17- 3 0.00012 17- 4 0.00012 17- 5 0.00034 17- 6 0.00002 17- 7 0.00002 17- 8 0.00002 + 18- 1 0.00460 18- 2 0.00000 18- 3 0.00012 18- 4 0.00012 18- 5 0.00002 18- 6 0.00034 18- 7 0.00002 18- 8 0.00002 + 19- 1 0.00003 19- 2 0.01072 19- 3 0.00001 19- 4 0.00074 19- 5 0.00036 19- 6 0.00024 19- 7 0.00002 19- 8 0.00007 + 20- 1 0.01072 20- 2 0.00003 20- 3 0.00074 20- 4 0.00001 20- 5 0.00024 20- 6 0.00036 20- 7 0.00007 20- 8 0.00002 + 1- 9 0.00716 1-10 0.00413 1-11 0.01648 1-12 1.16859 1-13 0.00003 1-14 0.00540 1-15 0.02148 1-16 0.05865 + 2- 9 0.00413 2-10 0.00716 2-11 1.16859 2-12 0.01648 2-13 0.00540 2-14 0.00003 2-15 0.05865 2-16 0.02148 + 3- 9 0.00288 3-10 0.00709 3-11 0.02459 3-12 0.00964 3-13 0.00077 3-14 0.00198 3-15 0.01637 3-16 0.02377 + 4- 9 0.00709 4-10 0.00288 4-11 0.00964 4-12 0.02459 4-13 0.00198 4-14 0.00077 4-15 0.02377 4-16 0.01637 + 5- 9 0.95163 5-10 0.00017 5-11 0.00923 5-12 0.02276 5-13 0.00588 5-14 0.00007 5-15 0.02068 5-16 0.01952 + 6- 9 0.00017 6-10 0.95163 6-11 0.02276 6-12 0.00923 6-13 0.00007 6-14 0.00588 6-15 0.01952 6-16 0.02068 + 7- 9 0.00313 7-10 0.00119 7-11 0.00090 7-12 0.00280 7-13 0.00027 7-14 0.00128 7-15 0.00002 7-16 0.00010 + 8- 9 0.00119 8-10 0.00313 8-11 0.00280 8-12 0.00090 8-13 0.00128 8-14 0.00027 8-15 0.00010 8-16 0.00002 + 9- 9 0.00000 9-10 0.00008 9-11 0.00308 9-12 0.00085 9-13 0.00011 9-14 0.00004 9-15 0.00043 9-16 0.00015 + 10- 9 0.00008 10-10 0.00000 10-11 0.00085 10-12 0.00308 10-13 0.00004 10-14 0.00011 10-15 0.00015 10-16 0.00043 + 11- 9 0.00308 11-10 0.00085 11-11 0.00000 11-12 0.01397 11-13 0.95004 11-14 0.00000 11-15 1.70492 11-16 0.02004 + 12- 9 0.00085 12-10 0.00308 12-11 0.01397 12-12 0.00000 12-13 0.00000 12-14 0.95004 12-15 0.02004 12-16 1.70492 + 13- 9 0.00011 13-10 0.00004 13-11 0.95004 13-12 0.00000 13-13 0.00000 13-14 0.00000 13-15 0.00235 13-16 0.00000 + 14- 9 0.00004 14-10 0.00011 14-11 0.00000 14-12 0.95004 14-13 0.00000 14-14 0.00000 14-15 0.00000 14-16 0.00235 + 15- 9 0.00043 15-10 0.00015 15-11 1.70492 15-12 0.02004 15-13 0.00235 15-14 0.00000 15-15 0.00000 15-16 0.02684 + 16- 9 0.00015 16-10 0.00043 16-11 0.02004 16-12 1.70492 16-13 0.00000 16-14 0.00235 16-15 0.02684 16-16 0.00000 + 17- 9 0.00250 17-10 0.00001 17-11 0.00368 17-12 0.00000 17-13 0.01172 17-14 0.00000 17-15 0.95731 17-16 0.00000 + 18- 9 0.00001 18-10 0.00250 18-11 0.00000 18-12 0.00368 18-13 0.00000 18-14 0.01172 18-15 0.00000 18-16 0.95731 + 19- 9 0.00013 19-10 0.00007 19-11 0.00280 19-12 0.00000 19-13 0.00454 19-14 0.00000 19-15 0.95593 19-16 0.00000 + 20- 9 0.00007 20-10 0.00013 20-11 0.00000 20-12 0.00280 20-13 0.00000 20-14 0.00454 20-15 0.00000 20-16 0.95593 + 1-17 0.00000 1-18 0.00460 1-19 0.00003 1-20 0.01072 + 2-17 0.00460 2-18 0.00000 2-19 0.01072 2-20 0.00003 + 3-17 0.00012 3-18 0.00012 3-19 0.00001 3-20 0.00074 + 4-17 0.00012 4-18 0.00012 4-19 0.00074 4-20 0.00001 + 5-17 0.00034 5-18 0.00002 5-19 0.00036 5-20 0.00024 + 6-17 0.00002 6-18 0.00034 6-19 0.00024 6-20 0.00036 + 7-17 0.00002 7-18 0.00002 7-19 0.00002 7-20 0.00007 + 8-17 0.00002 8-18 0.00002 8-19 0.00007 8-20 0.00002 + 9-17 0.00250 9-18 0.00001 9-19 0.00013 9-20 0.00007 + 10-17 0.00001 10-18 0.00250 10-19 0.00007 10-20 0.00013 + 11-17 0.00368 11-18 0.00000 11-19 0.00280 11-20 0.00000 + 12-17 0.00000 12-18 0.00368 12-19 0.00000 12-20 0.00280 + 13-17 0.01172 13-18 0.00000 13-19 0.00454 13-20 0.00000 + 14-17 0.00000 14-18 0.01172 14-19 0.00000 14-20 0.00454 + 15-17 0.95731 15-18 0.00000 15-19 0.95593 15-20 0.00000 + 16-17 0.00000 16-18 0.95731 16-19 0.00000 16-20 0.95593 + 17-17 0.00000 17-18 0.00000 17-19 0.00404 17-20 0.00000 + 18-17 0.00000 18-18 0.00000 18-19 0.00000 18-20 0.00404 + 19-17 0.00404 19-18 0.00000 19-19 0.00000 19-20 0.00000 + 20-17 0.00000 20-18 0.00404 20-19 0.00000 20-20 0.00000 + + Large bond indices + ------------------ + 1 C - 3 C 1.26324 + 1 C - 6 C 1.26226 + 1 C - 12 C 1.16859 + 2 C - 4 C 1.26324 + 2 C - 5 C 1.26226 + 2 C - 11 C 1.16859 + 3 C - 5 C 1.55327 + 3 C - 7 H 0.95236 + 4 C - 6 C 1.55327 + 4 C - 8 H 0.95236 + 5 C - 9 H 0.95163 + 6 C - 10 H 0.95163 + 11 C - 13 H 0.95004 + 11 C - 15 C 1.70492 + 12 C - 14 H 0.95004 + 12 C - 16 C 1.70492 + 15 C - 17 H 0.95731 + 15 C - 19 H 0.95593 + 16 C - 18 H 0.95731 + 16 C - 20 H 0.95593 + + Free electrons Valency + Number of Sum of + Bond indices - Bond indices + Valency Free electrons Bond indices =Mulliken charge = Net spin population + 1 C 3.95709 2.02298 3.92124 5.94422 0.03585 + 2 C 3.95709 2.02298 3.92124 5.94422 0.03585 + 3 C 3.95608 2.08332 3.95544 6.03876 0.00064 + 4 C 3.95608 2.08332 3.95544 6.03876 0.00064 + 5 C 3.95814 2.08341 3.95706 6.04047 0.00108 + 6 C 3.95814 2.08341 3.95706 6.04047 0.00108 + 7 H 0.98378 -0.11114 0.98378 0.87264 0.00000 + 8 H 0.98378 -0.11114 0.98378 0.87264 0.00000 + 9 H 0.98483 -0.10801 0.98482 0.87682 0.00000 + 10 H 0.98483 -0.10801 0.98482 0.87682 0.00000 + 11 C 3.95561 2.08582 3.95438 6.04020 0.00122 + 12 C 3.95561 2.08582 3.95438 6.04020 0.00122 + 13 H 0.98449 -0.10902 0.98449 0.87546 0.00000 + 14 H 0.98449 -0.10902 0.98449 0.87546 0.00000 + 15 C 3.91092 2.24818 3.82858 6.07675 0.08235 + 16 C 3.91092 2.24818 3.82858 6.07675 0.08235 + 17 H 0.98472 -0.10813 0.98451 0.87638 0.00021 + 18 H 0.98472 -0.10813 0.98451 0.87638 0.00021 + 19 H 0.97992 -0.12140 0.97970 0.85830 0.00022 + 20 H 0.97992 -0.12140 0.97970 0.85830 0.00022 + + Task times cpu: 102.4s wall: 103.0s + Summary of allocated global arrays +----------------------------------- + No active global arrays + + + + GA Statistics for process 0 + ------------------------------ + + create destroy get put acc scatter gather read&inc +calls: 1431 1431 5.97e+05 1.03e+04 4.63e+05 840 0 2.32e+04 +number of processes/call 1.00e+00 1.00e+00 1.00e+00 1.00e+00 0.00e+00 +bytes total: 8.30e+07 1.80e+07 4.86e+07 6.18e+04 0.00e+00 1.85e+05 +bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 1872000 bytes +MA_summarize_allocated_blocks: starting scan ... +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +MA usage statistics: + + allocation statistics: + heap stack + ---- ----- + current number of blocks 0 0 + maximum number of blocks 24 54 + current total bytes 0 0 + maximum total bytes 61308904 22521112 + maximum total K-bytes 61309 22522 + maximum total M-bytes 62 23 + + + NWChem Input Module + ------------------- + + + + + + CITATION + -------- + Please cite the following reference when publishing + results obtained with NWChem: + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + + AUTHORS + ------- + E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, + J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, + S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, + F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, + P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, + D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, + A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, + A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, + H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, + K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, + H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, + A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, + R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, + K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, + A. T. Wong, Z. Zhang. + + Total times cpu: 102.6s wall: 105.2s diff --git a/data/NWChem/basicNWChem7.0/water_ccsd(t).nw b/data/NWChem/basicNWChem7.0/water_ccsd(t).nw new file mode 100644 index 000000000..d8ea31268 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/water_ccsd(t).nw @@ -0,0 +1,18 @@ + start water + title "water" + + geometry units angstroms + zmatrix + O + H1 O 0.99 + H2 O 0.99 H1 106.0 + end + end + basis + * library sto-3g + end + tce + ccsd(t) + end + task tce energy + diff --git a/data/NWChem/basicNWChem7.0/water_ccsd(t).out b/data/NWChem/basicNWChem7.0/water_ccsd(t).out new file mode 100644 index 000000000..0a9f4ab42 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/water_ccsd(t).out @@ -0,0 +1,694 @@ + argument 1 = water_ccsd(t).nw + + + + + Northwest Computational Chemistry Package (NWChem) 6.5 + ------------------------------------------------------ + + + Environmental Molecular Sciences Laboratory + Pacific Northwest National Laboratory + Richland, WA 99352 + + Copyright (c) 1994-2014 + Pacific Northwest National Laboratory + Battelle Memorial Institute + + NWChem is an open-source computational chemistry package + distributed under the terms of the + Educational Community License (ECL) 2.0 + A copy of the license is included with this distribution + in the LICENSE.TXT file + + ACKNOWLEDGMENT + -------------- + + This software and its documentation were developed at the + EMSL at Pacific Northwest National Laboratory, a multiprogram + national laboratory, operated for the U.S. Department of Energy + by Battelle under Contract Number DE-AC05-76RL01830. Support + for this work was provided by the Department of Energy Office + of Biological and Environmental Research, Office of Basic + Energy Sciences, and the Office of Advanced Scientific Computing. + + + Job information + --------------- + + hostname = boman + program = /usr/lib64/mpich/bin/nwchem_mpich + date = Sat Jan 17 16:32:40 2015 + + compiled = Sat_Dec_06_13:02:58_2014 + source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 + nwchem branch = 6.5 + nwchem revision = 26243 + ga revision = 10506 + input = water_ccsd(t).nw + prefix = water. + data base = ./water.db + status = startup + nproc = 1 + time left = -1s + + + + Memory information + ------------------ + + heap = 13107194 doubles = 100.0 Mbytes + stack = 13107199 doubles = 100.0 Mbytes + global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) + total = 52428793 doubles = 400.0 Mbytes + verify = yes + hardfail = no + + + Directory information + --------------------- + + 0 permanent = . + 0 scratch = . + + + + + NWChem Input Module + ------------------- + + + water + ----- + + Scaling coordinates for geometry "geometry" by 1.889725989 + (inverse scale = 0.529177249) + + CS symmetry detected + + + Geometry "geometry" -> "" + ------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 O 8.0000 -0.11915937 0.00000000 0.00000000 + 2 H1 1.0000 0.47663750 -0.79064915 0.00000000 + 3 H2 1.0000 0.47663750 0.79064915 0.00000000 + + Atomic Mass + ----------- + + O 15.994910 + H1 1.007825 + H2 1.007825 + + + Effective nuclear repulsion energy (a.u.) 8.8870069045 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name Cs + Group number 2 + Group order 2 + No. of unique centers 3 + + Symmetry unique atoms + + 1 2 3 + + + + Z-matrix (user) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value + ----------- -------- ----- ----- ----- ----- ----- ---------- + 1 Stretch 2 1 0.99000 + 2 Stretch 3 1 0.99000 + 3 Bend 3 1 2 106.00000 + + + XYZ format geometry + ------------------- + 3 + geometry + O -0.11915937 0.00000000 0.00000000 + H1 0.47663750 -0.79064915 0.00000000 + H2 0.47663750 0.79064915 0.00000000 + + ============================================================================== + internuclear distances + ------------------------------------------------------------------------------ + center one | center two | atomic units | angstroms + ------------------------------------------------------------------------------ + 2 H1 | 1 O | 1.87083 | 0.99000 + 3 H2 | 1 O | 1.87083 | 0.99000 + ------------------------------------------------------------------------------ + number of included internuclear distances: 2 + ============================================================================== + + + + ============================================================================== + internuclear angles + ------------------------------------------------------------------------------ + center 1 | center 2 | center 3 | degrees + ------------------------------------------------------------------------------ + 2 H1 | 1 O | 3 H2 | 106.00 + ------------------------------------------------------------------------------ + number of included internuclear angles: 1 + ============================================================================== + + + + library name resolved from: .nwchemrc + library file name is: + + + + Summary of "ao basis" -> "" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + * sto-3g on all atoms + + + Basis "ao basis" -> "ao basis" (cartesian) + ----- + O (Oxygen) + ---------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 1.30709320E+02 0.154329 + 1 S 2.38088610E+01 0.535328 + 1 S 6.44360830E+00 0.444635 + + 2 S 5.03315130E+00 -0.099967 + 2 S 1.16959610E+00 0.399513 + 2 S 3.80389000E-01 0.700115 + + 3 P 5.03315130E+00 0.155916 + 3 P 1.16959610E+00 0.607684 + 3 P 3.80389000E-01 0.391957 + + H1 (Hydrogen) + ------------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.42525091E+00 0.154329 + 1 S 6.23913730E-01 0.535328 + 1 S 1.68855400E-01 0.444635 + + H2 (Hydrogen) + ------------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.42525091E+00 0.154329 + 1 S 6.23913730E-01 0.535328 + 1 S 1.68855400E-01 0.444635 + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + O sto-3g 3 5 2s1p + H1 sto-3g 1 1 1s + H2 sto-3g 1 1 1s + + + NWChem SCF Module + ----------------- + + + water + + + + ao basis = "ao basis" + functions = 7 + atoms = 3 + closed shells = 5 + open shells = 0 + charge = 0.00 + wavefunction = RHF + input vectors = atomic + output vectors = ./water.movecs + use symmetry = T + symmetry adapt = T + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + O sto-3g 3 5 2s1p + H1 sto-3g 1 1 1s + H2 sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + a' 6 + a" 1 + + + Forming initial guess at 0.6s + + + Superposition of Atomic Density Guess + ------------------------------------- + + Sum of atomic energies: -74.71095592 + + Non-variational initial energy + ------------------------------ + + Total energy = -74.600404 + 1-e energy = -121.237645 + 2-e energy = 37.750235 + HOMO = -0.250874 + LUMO = 0.465222 + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 a' 2 a" + + Orbital symmetries: + + 1 a' 2 a' 3 a' 4 a' 5 a" + 6 a' 7 a' + + + Starting SCF solution at 0.6s + + + + ---------------------------------------------- + Quadratically convergent ROHF + + Convergence threshold : 1.000E-04 + Maximum no. of iterations : 30 + Final Fock-matrix accuracy: 1.000E-07 + ---------------------------------------------- + + + #quartets = 1.200D+02 #integrals = 2.560D+02 #direct = 0.0% #cached =100.0% + + + Integral file = ./water.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 2 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + iter energy gnorm gmax time + ----- ------------------- --------- --------- -------- + 1 -74.9231294979 6.62D-01 5.58D-01 0.1 + 2 -74.9634153745 1.36D-01 9.86D-02 0.1 + 3 -74.9643271715 3.30D-03 3.07D-03 0.1 + 4 -74.9643287681 1.06D-05 9.13D-06 0.1 + + + Final RHF results + ------------------ + + Total SCF energy = -74.964328768146 + One-electron energy = -121.840171203713 + Two-electron energy = 37.988835531048 + Nuclear repulsion energy = 8.887006904519 + + Time for solution = 0.0s + + + + Symmetry analysis of molecular orbitals - final + ----------------------------------------------- + + Numbering of irreducible representations: + + 1 a' 2 a" + + Orbital symmetries: + + 1 a' 2 a' 3 a' 4 a' 5 a" + 6 a' 7 a' + + Final eigenvalues + ----------------- + + 1 + 1 -20.2438 + 2 -1.2506 + 3 -0.6032 + 4 -0.4455 + 5 -0.3882 + 6 0.5707 + 7 0.7086 + + ROHF Final Molecular Orbital Analysis + ------------------------------------- + + Vector 2 Occ=2.000000D+00 E=-1.250645D+00 Symmetry=a' + MO Center= 5.9D-02, -2.3D-16, 1.8D-18, r^2= 5.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.845881 1 O s 1 -0.234218 1 O s + 6 0.156450 2 H s 7 0.156450 3 H s + + Vector 3 Occ=2.000000D+00 E=-6.031664D-01 Symmetry=a' + MO Center= 1.5D-01, 9.8D-15, -7.4D-31, r^2= 8.6D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.603305 1 O py 6 -0.446376 2 H s + 7 0.446376 3 H s + + Vector 4 Occ=2.000000D+00 E=-4.454698D-01 Symmetry=a' + MO Center= -1.4D-01, 9.0D-15, 1.1D-17, r^2= 6.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.774267 1 O px 2 -0.521395 1 O s + 6 0.289063 2 H s 7 0.289063 3 H s + + Vector 5 Occ=2.000000D+00 E=-3.882145D-01 Symmetry=a" + MO Center= -1.2D-01, 7.3D-18, -1.0D-18, r^2= 4.2D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 1.000000 1 O pz + + Vector 6 Occ=0.000000D+00 E= 5.707483D-01 Symmetry=a' + MO Center= 3.9D-01, 1.2D-13, -1.2D-17, r^2= 1.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.832527 1 O s 6 -0.775801 2 H s + 7 -0.775801 3 H s 3 0.732626 1 O px + + Vector 7 Occ=0.000000D+00 E= 7.085917D-01 Symmetry=a' + MO Center= 2.3D-01, -1.3D-13, 8.0D-31, r^2= 1.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.976484 1 O py 6 0.808916 2 H s + 7 -0.808916 3 H s + + + center of mass + -------------- + x = -0.09917438 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 4.499667433282 -0.000000000000 0.000000000000 + -0.000000000000 2.269153198409 0.000000000000 + 0.000000000000 0.000000000000 6.768820631691 + + Mulliken analysis of the total density + -------------------------------------- + + Atom Charge Shell Charges + ----------- ------ ------------------------------------------------------- + 1 O 8 8.34 2.00 1.84 4.51 + 2 H 1 0.83 0.83 + 3 H 1 0.83 0.83 + + Multipole analysis of the density wrt the origin + ------------------------------------------------ + + L x y z total open nuclear + - - - - ----- ---- ------- + 0 0 0 0 -0.000000 0.000000 10.000000 + + 1 1 0 0 0.658406 0.000000 0.000000 + 1 0 1 0 -0.000000 0.000000 0.000000 + 1 0 0 1 -0.000000 0.000000 0.000000 + + 2 2 0 0 -4.027790 0.000000 2.028215 + 2 1 1 0 -0.000000 0.000000 0.000000 + 2 1 0 1 -0.000000 0.000000 0.000000 + 2 0 2 0 -3.193229 0.000000 4.464731 + 2 0 1 1 -0.000000 0.000000 0.000000 + 2 0 0 2 -4.551067 0.000000 0.000000 + + + Parallel integral file used 1 records with 0 large values + + NWChem Extensible Many-Electron Theory Module + --------------------------------------------- + + ====================================================== + This portion of the program was automatically + generated by a Tensor Contraction Engine (TCE). + The development of this portion of the program + and TCE was supported by US Department of Energy, + Office of Science, Office of Basic Energy Science. + TCE is a product of Battelle and PNNL. + Please cite: S.Hirata, J.Phys.Chem.A 107, 9887 (2003). + ====================================================== + + water + + + General Information + ------------------- + Number of processors : 1 + Wavefunction type : Restricted Hartree-Fock + No. of electrons : 10 + Alpha electrons : 5 + Beta electrons : 5 + No. of orbitals : 14 + Alpha orbitals : 7 + Beta orbitals : 7 + Alpha frozen cores : 0 + Beta frozen cores : 0 + Alpha frozen virtuals : 0 + Beta frozen virtuals : 0 + Spin multiplicity : singlet + Number of AO functions : 7 + Number of AO shells : 5 + Use of symmetry is : on + Symmetry adaption is : on + Schwarz screening : 0.10D-09 + + Correlation Information + ----------------------- + Calculation type : Coupled-cluster singles & doubles w/ perturbation + Perturbative correction : (T) + Max iterations : 100 + Residual threshold : 0.10D-06 + T(0) DIIS level shift : 0.00D+00 + L(0) DIIS level shift : 0.00D+00 + T(1) DIIS level shift : 0.00D+00 + L(1) DIIS level shift : 0.00D+00 + T(R) DIIS level shift : 0.00D+00 + T(I) DIIS level shift : 0.00D+00 + CC-T/L Amplitude update : 5-th order DIIS + I/O scheme : Global Array Library + L-threshold : 0.10D-06 + EOM-threshold : 0.10D-06 + no EOMCCSD initial starts read in + TCE RESTART OPTIONS + READ_INT: F + WRITE_INT: F + READ_TA: F + WRITE_TA: F + READ_XA: F + WRITE_XA: F + READ_IN3: F + WRITE_IN3: F + SLICE: F + D4D5: F + + Memory Information + ------------------ + Available GA space size is 26214351 doubles + Available MA space size is 26213660 doubles + + Maximum block size 24 doubles + + tile_dim = 4 + + Block Spin Irrep Size Offset Alpha + ------------------------------------------------- + 1 alpha a' 4 doubles 0 1 + 2 alpha a" 1 doubles 4 2 + 3 beta a' 4 doubles 5 1 + 4 beta a" 1 doubles 9 2 + 5 alpha a' 2 doubles 10 5 + 6 beta a' 2 doubles 12 5 + + Global array virtual files algorithm will be used + + Parallel file system coherency ......... OK + + #quartets = 1.200D+02 #integrals = 2.560D+02 #direct = 0.0% #cached =100.0% + + + Integral file = ./water.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 2 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + Fock matrix recomputed + 1-e file size = 37 + 1-e file name = ./water.f1 + Cpu & wall time / sec 0.0 0.0 + + tce_ao2e: fast2e=1 + half-transformed integrals in memory + + 2-e (intermediate) file size = 5831 + 2-e (intermediate) file name = ./water.v2i + Cpu & wall time / sec 0.0 0.0 + + tce_mo2e: fast2e=1 + 2-e integrals stored in memory + + 2-e file size = 2390 + 2-e file name = ./water.v2 + Cpu & wall time / sec 0.0 0.0 + do_pt = F + do_lam_pt = F + do_cr_pt = F + do_lcr_pt = F + do_2t_pt = F + T1-number-of-tasks 1 + + t1 file size = 8 + t1 file name = ./water.t1 + t1 file handle = -999 + T2-number-of-boxes 4 + + t2 file size = 136 + t2 file name = ./water.t2 + t2 file handle = -996 + + CCSD iterations + ----------------------------------------------------------------- + Iter Residuum Correlation Cpu Wall V2*C2 + ----------------------------------------------------------------- + 1 0.0920495746753 -0.0380400906888 0.0 0.0 0.0 + 2 0.0327809448013 -0.0483582016482 0.0 0.0 0.0 + 3 0.0130397422560 -0.0515376251745 0.0 0.0 0.0 + 4 0.0055100075130 -0.0526698899679 0.0 0.0 0.0 + 5 0.0024425799129 -0.0531093782101 0.0 0.0 0.0 + MICROCYCLE DIIS UPDATE: 5 5 + 6 0.0000746366811 -0.0534292411166 0.0 0.0 0.0 + 7 0.0000248085446 -0.0534287715874 0.0 0.0 0.0 + 8 0.0000119958916 -0.0534290587485 0.0 0.0 0.0 + 9 0.0000060344303 -0.0534292081292 0.0 0.0 0.0 + 10 0.0000030784218 -0.0534292874613 0.0 0.0 0.0 + MICROCYCLE DIIS UPDATE: 10 5 + 11 0.0000002285216 -0.0534293712898 0.0 0.0 0.0 + 12 0.0000000797694 -0.0534293880032 0.0 0.0 0.0 + ----------------------------------------------------------------- + Iterations converged + CCSD correlation energy / hartree = -0.053429388003210 + CCSD total energy / hartree = -75.017758156149029 + + Singles contributions + + Doubles contributions + CCSD(T) + Using plain CCSD(T) code + + CCSD[T] correction energy / hartree = -0.000088830388398 + CCSD[T] correlation energy / hartree = -0.053518218391608 + CCSD[T] total energy / hartree = -75.017846986537421 + CCSD(T) correction energy / hartree = -0.000076702788768 + CCSD(T) correlation energy / hartree = -0.053506090791978 + CCSD(T) total energy / hartree = -75.017834858937803 + Cpu & wall time / sec 0.0 0.0 + + Parallel integral file used 1 records with 0 large values + + + Task times cpu: 0.2s wall: 0.5s + Summary of allocated global arrays +----------------------------------- + No active global arrays + + + + GA Statistics for process 0 + ------------------------------ + + create destroy get put acc scatter gather read&inc +calls: 1547 1547 8961 2028 5808 0 0 7298 +number of processes/call 1.00e+00 1.00e+00 1.00e+00 0.00e+00 0.00e+00 +bytes total: 2.25e+06 2.44e+05 1.59e+06 0.00e+00 0.00e+00 5.84e+04 +bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 66464 bytes +MA_summarize_allocated_blocks: starting scan ... +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +MA usage statistics: + + allocation statistics: + heap stack + ---- ----- + current number of blocks 0 0 + maximum number of blocks 18 27 + current total bytes 0 0 + maximum total bytes 1054168 22509208 + maximum total K-bytes 1055 22510 + maximum total M-bytes 2 23 + + + NWChem Input Module + ------------------- + + + + + + CITATION + -------- + Please cite the following reference when publishing + results obtained with NWChem: + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + + AUTHORS + ------- + E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, + J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, + S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, + F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, + P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, + D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, + A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, + A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, + H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, + K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, + H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, + A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, + R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, + K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, + A. T. Wong, Z. Zhang. + + Total times cpu: 0.3s wall: 2.3s diff --git a/data/NWChem/basicNWChem7.0/water_mp2.nw b/data/NWChem/basicNWChem7.0/water_mp2.nw new file mode 100644 index 000000000..1a276b5ae --- /dev/null +++ b/data/NWChem/basicNWChem7.0/water_mp2.nw @@ -0,0 +1,15 @@ + start water + title "water" + + geometry units angstroms + zmatrix + O + H1 O 0.99 + H2 O 0.99 H1 106.0 + end + end + basis + * library sto-3g + end + task mp2 + diff --git a/data/NWChem/basicNWChem7.0/water_mp2.out b/data/NWChem/basicNWChem7.0/water_mp2.out new file mode 100644 index 000000000..8f463b1e3 --- /dev/null +++ b/data/NWChem/basicNWChem7.0/water_mp2.out @@ -0,0 +1,596 @@ + argument 1 = water_mp2.nw + + + + + Northwest Computational Chemistry Package (NWChem) 6.5 + ------------------------------------------------------ + + + Environmental Molecular Sciences Laboratory + Pacific Northwest National Laboratory + Richland, WA 99352 + + Copyright (c) 1994-2014 + Pacific Northwest National Laboratory + Battelle Memorial Institute + + NWChem is an open-source computational chemistry package + distributed under the terms of the + Educational Community License (ECL) 2.0 + A copy of the license is included with this distribution + in the LICENSE.TXT file + + ACKNOWLEDGMENT + -------------- + + This software and its documentation were developed at the + EMSL at Pacific Northwest National Laboratory, a multiprogram + national laboratory, operated for the U.S. Department of Energy + by Battelle under Contract Number DE-AC05-76RL01830. Support + for this work was provided by the Department of Energy Office + of Biological and Environmental Research, Office of Basic + Energy Sciences, and the Office of Advanced Scientific Computing. + + + Job information + --------------- + + hostname = boman + program = /usr/lib64/mpich/bin/nwchem_mpich + date = Sat Jan 17 16:32:42 2015 + + compiled = Sat_Dec_06_13:02:58_2014 + source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 + nwchem branch = 6.5 + nwchem revision = 26243 + ga revision = 10506 + input = water_mp2.nw + prefix = water. + data base = ./water.db + status = startup + nproc = 1 + time left = -1s + + + + Memory information + ------------------ + + heap = 13107194 doubles = 100.0 Mbytes + stack = 13107199 doubles = 100.0 Mbytes + global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) + total = 52428793 doubles = 400.0 Mbytes + verify = yes + hardfail = no + + + Directory information + --------------------- + + 0 permanent = . + 0 scratch = . + + + + + NWChem Input Module + ------------------- + + + water + ----- + + Scaling coordinates for geometry "geometry" by 1.889725989 + (inverse scale = 0.529177249) + + CS symmetry detected + + + Geometry "geometry" -> "" + ------------------------- + + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) + + No. Tag Charge X Y Z + ---- ---------------- ---------- -------------- -------------- -------------- + 1 O 8.0000 -0.11915937 0.00000000 0.00000000 + 2 H1 1.0000 0.47663750 -0.79064915 0.00000000 + 3 H2 1.0000 0.47663750 0.79064915 0.00000000 + + Atomic Mass + ----------- + + O 15.994910 + H1 1.007825 + H2 1.007825 + + + Effective nuclear repulsion energy (a.u.) 8.8870069045 + + Nuclear Dipole moment (a.u.) + ---------------------------- + X Y Z + ---------------- ---------------- ---------------- + 0.0000000000 0.0000000000 0.0000000000 + + Symmetry information + -------------------- + + Group name Cs + Group number 2 + Group order 2 + No. of unique centers 3 + + Symmetry unique atoms + + 1 2 3 + + + + Z-matrix (user) + -------- + + Units are Angstrom for bonds and degrees for angles + + Type Name I J K L M Value + ----------- -------- ----- ----- ----- ----- ----- ---------- + 1 Stretch 2 1 0.99000 + 2 Stretch 3 1 0.99000 + 3 Bend 3 1 2 106.00000 + + + XYZ format geometry + ------------------- + 3 + geometry + O -0.11915937 0.00000000 0.00000000 + H1 0.47663750 -0.79064915 0.00000000 + H2 0.47663750 0.79064915 0.00000000 + + ============================================================================== + internuclear distances + ------------------------------------------------------------------------------ + center one | center two | atomic units | angstroms + ------------------------------------------------------------------------------ + 2 H1 | 1 O | 1.87083 | 0.99000 + 3 H2 | 1 O | 1.87083 | 0.99000 + ------------------------------------------------------------------------------ + number of included internuclear distances: 2 + ============================================================================== + + + + ============================================================================== + internuclear angles + ------------------------------------------------------------------------------ + center 1 | center 2 | center 3 | degrees + ------------------------------------------------------------------------------ + 2 H1 | 1 O | 3 H2 | 106.00 + ------------------------------------------------------------------------------ + number of included internuclear angles: 1 + ============================================================================== + + + + library name resolved from: .nwchemrc + library file name is: + + + + Summary of "ao basis" -> "" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + * sto-3g on all atoms + + + Basis "ao basis" -> "ao basis" (cartesian) + ----- + O (Oxygen) + ---------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 1.30709320E+02 0.154329 + 1 S 2.38088610E+01 0.535328 + 1 S 6.44360830E+00 0.444635 + + 2 S 5.03315130E+00 -0.099967 + 2 S 1.16959610E+00 0.399513 + 2 S 3.80389000E-01 0.700115 + + 3 P 5.03315130E+00 0.155916 + 3 P 1.16959610E+00 0.607684 + 3 P 3.80389000E-01 0.391957 + + H1 (Hydrogen) + ------------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.42525091E+00 0.154329 + 1 S 6.23913730E-01 0.535328 + 1 S 1.68855400E-01 0.444635 + + H2 (Hydrogen) + ------------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.42525091E+00 0.154329 + 1 S 6.23913730E-01 0.535328 + 1 S 1.68855400E-01 0.444635 + + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + O sto-3g 3 5 2s1p + H1 sto-3g 1 1 1s + H2 sto-3g 1 1 1s + + + NWChem SCF Module + ----------------- + + + water + + + + ao basis = "ao basis" + functions = 7 + atoms = 3 + closed shells = 5 + open shells = 0 + charge = 0.00 + wavefunction = RHF + input vectors = atomic + output vectors = ./water.movecs + use symmetry = T + symmetry adapt = T + + + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + O sto-3g 3 5 2s1p + H1 sto-3g 1 1 1s + H2 sto-3g 1 1 1s + + + Symmetry analysis of basis + -------------------------- + + a' 6 + a" 1 + + + Forming initial guess at 0.4s + + + Superposition of Atomic Density Guess + ------------------------------------- + + Sum of atomic energies: -74.71095592 + + Non-variational initial energy + ------------------------------ + + Total energy = -74.600404 + 1-e energy = -121.237645 + 2-e energy = 37.750235 + HOMO = -0.250874 + LUMO = 0.465222 + + + Symmetry analysis of molecular orbitals - initial + ------------------------------------------------- + + Numbering of irreducible representations: + + 1 a' 2 a" + + Orbital symmetries: + + 1 a' 2 a' 3 a' 4 a' 5 a" + 6 a' 7 a' + + + Starting SCF solution at 0.4s + + + + ---------------------------------------------- + Quadratically convergent ROHF + + Convergence threshold : 1.000E-06 + Maximum no. of iterations : 30 + Final Fock-matrix accuracy: 1.000E-08 + ---------------------------------------------- + + + #quartets = 1.200D+02 #integrals = 2.560D+02 #direct = 0.0% #cached =100.0% + + + Integral file = ./water.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 2 Max. records in file = ******** + No. of bits per label = 8 No. of bits per value = 64 + + + iter energy gnorm gmax time + ----- ------------------- --------- --------- -------- + 1 -74.9231294979 6.62D-01 5.58D-01 0.1 + 2 -74.9634153745 1.36D-01 9.86D-02 0.1 + 3 -74.9643271715 3.30D-03 3.07D-03 0.1 + 4 -74.9643287681 1.06D-05 9.13D-06 0.1 + 5 -74.9643287681 1.42D-08 1.22D-08 0.1 + + + Final RHF results + ------------------ + + Total SCF energy = -74.964328768150 + One-electron energy = -121.840170361009 + Two-electron energy = 37.988834688340 + Nuclear repulsion energy = 8.887006904519 + + Time for solution = 0.0s + + + + Symmetry analysis of molecular orbitals - final + ----------------------------------------------- + + Numbering of irreducible representations: + + 1 a' 2 a" + + Orbital symmetries: + + 1 a' 2 a' 3 a' 4 a' 5 a" + 6 a' 7 a' + + Final eigenvalues + ----------------- + + 1 + 1 -20.2438 + 2 -1.2506 + 3 -0.6032 + 4 -0.4455 + 5 -0.3882 + 6 0.5707 + 7 0.7086 + + ROHF Final Molecular Orbital Analysis + ------------------------------------- + + Vector 2 Occ=2.000000D+00 E=-1.250645D+00 Symmetry=a' + MO Center= 5.9D-02, -1.7D-15, 1.8D-18, r^2= 5.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.845882 1 O s 1 -0.234218 1 O s + 6 0.156449 2 H s 7 0.156449 3 H s + + Vector 3 Occ=2.000000D+00 E=-6.031663D-01 Symmetry=a' + MO Center= 1.5D-01, 1.1D-14, 5.5D-32, r^2= 8.6D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.603305 1 O py 6 -0.446377 2 H s + 7 0.446377 3 H s + + Vector 4 Occ=2.000000D+00 E=-4.454699D-01 Symmetry=a' + MO Center= -1.4D-01, 8.9D-15, 1.1D-17, r^2= 6.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.774267 1 O px 2 -0.521395 1 O s + 6 0.289064 2 H s 7 0.289064 3 H s + + Vector 5 Occ=2.000000D+00 E=-3.882146D-01 Symmetry=a" + MO Center= -1.2D-01, 7.3D-18, -1.0D-18, r^2= 4.2D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 1.000000 1 O pz + + Vector 6 Occ=0.000000D+00 E= 5.707483D-01 Symmetry=a' + MO Center= 3.9D-01, 1.2D-13, -1.2D-17, r^2= 1.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.832525 1 O s 6 -0.775801 2 H s + 7 -0.775801 3 H s 3 0.732626 1 O px + + Vector 7 Occ=0.000000D+00 E= 7.085916D-01 Symmetry=a' + MO Center= 2.3D-01, -1.3D-13, 8.0D-31, r^2= 1.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.976485 1 O py 6 0.808916 2 H s + 7 -0.808916 3 H s + + + center of mass + -------------- + x = -0.09917438 y = 0.00000000 z = 0.00000000 + + moments of inertia (a.u.) + ------------------ + 4.499667433282 -0.000000000000 0.000000000000 + -0.000000000000 2.269153198409 0.000000000000 + 0.000000000000 0.000000000000 6.768820631691 + + Mulliken analysis of the total density + -------------------------------------- + + Atom Charge Shell Charges + ----------- ------ ------------------------------------------------------- + 1 O 8 8.34 2.00 1.84 4.51 + 2 H 1 0.83 0.83 + 3 H 1 0.83 0.83 + + Multipole analysis of the density wrt the origin + ------------------------------------------------ + + L x y z total open nuclear + - - - - ----- ---- ------- + 0 0 0 0 -0.000000 0.000000 10.000000 + + 1 1 0 0 0.658404 0.000000 0.000000 + 1 0 1 0 -0.000000 0.000000 0.000000 + 1 0 0 1 -0.000000 0.000000 0.000000 + + 2 2 0 0 -4.027790 0.000000 2.028215 + 2 1 1 0 -0.000000 0.000000 0.000000 + 2 1 0 1 -0.000000 0.000000 0.000000 + 2 0 2 0 -3.193231 0.000000 4.464731 + 2 0 1 1 -0.000000 0.000000 0.000000 + 2 0 0 2 -4.551067 0.000000 0.000000 + + + Parallel integral file used 1 records with 0 large values + + NWChem MP2 Semi-direct Energy/Gradient Module + --------------------------------------------- + + + water + + + Basis functions = 7 + Molecular orbitals = 7 + Frozen core = 0 + Frozen virtuals = 0 + Active alpha occupied = 5 + Active beta occupied = 5 + Active alpha virtual = 2 + Active beta virtual = 2 + Use MO symmetry = T + Use skeleton AO sym = T + + AO/Fock/Back tols = 1.0D-09 1.0D-09 1.0D-09 + + GA uses MA = F GA memory limited = T + + Available: + local mem= 2.62D+07 + global mem= 2.62D+07 + local disk= 1.31D+13 + 1 passes of 5: 142678 191 316. + + Semi-direct pass number 1 of 1 for RHF alpha+beta at 0.5s +Node 0 wrote 0.0 Mb in 0.0 s Agg I/O rate: 0.0 Mb/s + Done moints_semi at 0.5s + Done maket at 0.5s + Done multipass loop at 0.5s + + + ------------------------------------------- + SCF energy -74.964328768150 + Correlation energy -0.038049932200 + Singlet pairs -0.034770106144 + Triplet pairs -0.003279826056 + Total MP2 energy -75.002378700349 + ------------------------------------------- + + + + --------------------------------------------------- + Spin Component Scaled (SCS) MP2 + Same spin pairs -0.002186550704 + Same spin scaling factor 0.333333333333 + Opposite spin pairs -0.035863381496 + Opposite spin scaling fact. 1.200000000000 + SCS-MP2 correlation energy -0.043764908029 + Total SCS-MP2 energy -75.008093676179 + --------------------------------------------------- + + ----------------------- + Performance information + ----------------------- + + Timer overhead = 8.00D-07 seconds/call + + Nr. of calls CPU time (s) Wall time (s) GFlops + --------------- ------------------- ------------------------------ ------------------- +Name Min Avg Max Min Avg Max Min Avg Max Mx/calls Min Max Sum +mp2: moin 1 1 1 1.40E-2 1.40E-2 1.40E-2 1.63E-2 1.63E-2 1.63E-2 1.63E-2 0.0 0.0 0.0 +mp2: make 1 1 1 0.0 0.0 0.0 1.50E-4 1.50E-4 1.50E-4 1.50E-4 0.0 0.0 0.0 +mp2: tota 1 1 1 3.20E-2 3.20E-2 3.20E-2 6.36E-2 6.36E-2 6.36E-2 6.36E-2 0.0 0.0 0.0 + + The average no. of pstat calls per process was 3.00D+00 + with a timing overhead of 2.40D-06s + + + Task times cpu: 0.1s wall: 0.3s + Summary of allocated global arrays +----------------------------------- + No active global arrays + + + + GA Statistics for process 0 + ------------------------------ + + create destroy get put acc scatter gather read&inc +calls: 337 337 1716 906 910 0 0 287 +number of processes/call 1.00e+00 1.00e+00 1.00e+00 0.00e+00 0.00e+00 +bytes total: 1.71e+05 1.10e+05 4.58e+04 0.00e+00 0.00e+00 2.30e+03 +bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 5448 bytes +MA_summarize_allocated_blocks: starting scan ... +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +MA usage statistics: + + allocation statistics: + heap stack + ---- ----- + current number of blocks 0 0 + maximum number of blocks 18 22 + current total bytes 0 0 + maximum total bytes 1054168 22509208 + maximum total K-bytes 1055 22510 + maximum total M-bytes 2 23 + + + NWChem Input Module + ------------------- + + + + + + CITATION + -------- + Please cite the following reference when publishing + results obtained with NWChem: + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + + AUTHORS + ------- + E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, + J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, + S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, + F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, + P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, + D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, + A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, + A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, + H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, + K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, + H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, + A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, + R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, + K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, + A. T. Wong, Z. Zhang. + + Total times cpu: 0.1s wall: 1.3s From 6e7f72a01ff9e6164ebc7855cb6fb0da370ab16f Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sat, 4 Jun 2022 13:26:36 -0400 Subject: [PATCH 007/103] NWChem: rename all input files from .nw extension to .in --- data/NWChem/basicNWChem7.0/{C_bigbasis.nw => C_bigbasis.in} | 0 .../{C_bigbasis_spherical.nw => C_bigbasis_spherical.in} | 0 data/NWChem/basicNWChem7.0/{dvb_bomd_ks.nw => dvb_bomd_ks.in} | 0 data/NWChem/basicNWChem7.0/{dvb_gopt_hf.nw => dvb_gopt_hf.in} | 0 data/NWChem/basicNWChem7.0/{dvb_gopt_ks.nw => dvb_gopt_ks.in} | 0 data/NWChem/basicNWChem7.0/{dvb_ir.nw => dvb_ir.in} | 0 data/NWChem/basicNWChem7.0/{dvb_sp_hf.nw => dvb_sp_hf.in} | 0 .../{dvb_sp_hf_overlaps.nw => dvb_sp_hf_overlaps.in} | 0 data/NWChem/basicNWChem7.0/{dvb_sp_ks.nw => dvb_sp_ks.in} | 0 .../{dvb_sp_ks_overlaps.nw => dvb_sp_ks_overlaps.in} | 0 data/NWChem/basicNWChem7.0/{dvb_td.nw => dvb_td.in} | 0 data/NWChem/basicNWChem7.0/{dvb_un_sp_ks.nw => dvb_un_sp_ks.in} | 0 data/NWChem/basicNWChem7.0/{water_ccsd(t).nw => water_ccsd(t).in} | 0 data/NWChem/basicNWChem7.0/{water_mp2.nw => water_mp2.in} | 0 14 files changed, 0 insertions(+), 0 deletions(-) rename data/NWChem/basicNWChem7.0/{C_bigbasis.nw => C_bigbasis.in} (100%) rename data/NWChem/basicNWChem7.0/{C_bigbasis_spherical.nw => C_bigbasis_spherical.in} (100%) rename data/NWChem/basicNWChem7.0/{dvb_bomd_ks.nw => dvb_bomd_ks.in} (100%) rename data/NWChem/basicNWChem7.0/{dvb_gopt_hf.nw => dvb_gopt_hf.in} (100%) rename data/NWChem/basicNWChem7.0/{dvb_gopt_ks.nw => dvb_gopt_ks.in} (100%) rename data/NWChem/basicNWChem7.0/{dvb_ir.nw => dvb_ir.in} (100%) rename data/NWChem/basicNWChem7.0/{dvb_sp_hf.nw => dvb_sp_hf.in} (100%) rename data/NWChem/basicNWChem7.0/{dvb_sp_hf_overlaps.nw => dvb_sp_hf_overlaps.in} (100%) rename data/NWChem/basicNWChem7.0/{dvb_sp_ks.nw => dvb_sp_ks.in} (100%) rename data/NWChem/basicNWChem7.0/{dvb_sp_ks_overlaps.nw => dvb_sp_ks_overlaps.in} (100%) rename data/NWChem/basicNWChem7.0/{dvb_td.nw => dvb_td.in} (100%) rename data/NWChem/basicNWChem7.0/{dvb_un_sp_ks.nw => dvb_un_sp_ks.in} (100%) rename data/NWChem/basicNWChem7.0/{water_ccsd(t).nw => water_ccsd(t).in} (100%) rename data/NWChem/basicNWChem7.0/{water_mp2.nw => water_mp2.in} (100%) diff --git a/data/NWChem/basicNWChem7.0/C_bigbasis.nw b/data/NWChem/basicNWChem7.0/C_bigbasis.in similarity index 100% rename from data/NWChem/basicNWChem7.0/C_bigbasis.nw rename to data/NWChem/basicNWChem7.0/C_bigbasis.in diff --git a/data/NWChem/basicNWChem7.0/C_bigbasis_spherical.nw b/data/NWChem/basicNWChem7.0/C_bigbasis_spherical.in similarity index 100% rename from data/NWChem/basicNWChem7.0/C_bigbasis_spherical.nw rename to data/NWChem/basicNWChem7.0/C_bigbasis_spherical.in diff --git a/data/NWChem/basicNWChem7.0/dvb_bomd_ks.nw b/data/NWChem/basicNWChem7.0/dvb_bomd_ks.in similarity index 100% rename from data/NWChem/basicNWChem7.0/dvb_bomd_ks.nw rename to data/NWChem/basicNWChem7.0/dvb_bomd_ks.in diff --git a/data/NWChem/basicNWChem7.0/dvb_gopt_hf.nw b/data/NWChem/basicNWChem7.0/dvb_gopt_hf.in similarity index 100% rename from data/NWChem/basicNWChem7.0/dvb_gopt_hf.nw rename to data/NWChem/basicNWChem7.0/dvb_gopt_hf.in diff --git a/data/NWChem/basicNWChem7.0/dvb_gopt_ks.nw b/data/NWChem/basicNWChem7.0/dvb_gopt_ks.in similarity index 100% rename from data/NWChem/basicNWChem7.0/dvb_gopt_ks.nw rename to data/NWChem/basicNWChem7.0/dvb_gopt_ks.in diff --git a/data/NWChem/basicNWChem7.0/dvb_ir.nw b/data/NWChem/basicNWChem7.0/dvb_ir.in similarity index 100% rename from data/NWChem/basicNWChem7.0/dvb_ir.nw rename to data/NWChem/basicNWChem7.0/dvb_ir.in diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_hf.nw b/data/NWChem/basicNWChem7.0/dvb_sp_hf.in similarity index 100% rename from data/NWChem/basicNWChem7.0/dvb_sp_hf.nw rename to data/NWChem/basicNWChem7.0/dvb_sp_hf.in diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.nw b/data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.in similarity index 100% rename from data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.nw rename to data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.in diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_ks.nw b/data/NWChem/basicNWChem7.0/dvb_sp_ks.in similarity index 100% rename from data/NWChem/basicNWChem7.0/dvb_sp_ks.nw rename to data/NWChem/basicNWChem7.0/dvb_sp_ks.in diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.nw b/data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.in similarity index 100% rename from data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.nw rename to data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.in diff --git a/data/NWChem/basicNWChem7.0/dvb_td.nw b/data/NWChem/basicNWChem7.0/dvb_td.in similarity index 100% rename from data/NWChem/basicNWChem7.0/dvb_td.nw rename to data/NWChem/basicNWChem7.0/dvb_td.in diff --git a/data/NWChem/basicNWChem7.0/dvb_un_sp_ks.nw b/data/NWChem/basicNWChem7.0/dvb_un_sp_ks.in similarity index 100% rename from data/NWChem/basicNWChem7.0/dvb_un_sp_ks.nw rename to data/NWChem/basicNWChem7.0/dvb_un_sp_ks.in diff --git a/data/NWChem/basicNWChem7.0/water_ccsd(t).nw b/data/NWChem/basicNWChem7.0/water_ccsd(t).in similarity index 100% rename from data/NWChem/basicNWChem7.0/water_ccsd(t).nw rename to data/NWChem/basicNWChem7.0/water_ccsd(t).in diff --git a/data/NWChem/basicNWChem7.0/water_mp2.nw b/data/NWChem/basicNWChem7.0/water_mp2.in similarity index 100% rename from data/NWChem/basicNWChem7.0/water_mp2.nw rename to data/NWChem/basicNWChem7.0/water_mp2.in From 45967946c9171b7d7ad4d4d7586fc2d0c5705994 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sat, 4 Jun 2022 13:44:55 -0400 Subject: [PATCH 008/103] NWChem: bump memory for certain DFT jobs --- data/NWChem/basicNWChem7.0/dvb_bomd_ks.in | 2 ++ data/NWChem/basicNWChem7.0/dvb_ir.in | 1 + data/NWChem/basicNWChem7.0/dvb_td.in | 1 + 3 files changed, 4 insertions(+) diff --git a/data/NWChem/basicNWChem7.0/dvb_bomd_ks.in b/data/NWChem/basicNWChem7.0/dvb_bomd_ks.in index af4c94eb2..bd813152b 100644 --- a/data/NWChem/basicNWChem7.0/dvb_bomd_ks.in +++ b/data/NWChem/basicNWChem7.0/dvb_bomd_ks.in @@ -29,6 +29,8 @@ basis * library sto-3g end +memory total 4 gb + dft xc b3lyp end diff --git a/data/NWChem/basicNWChem7.0/dvb_ir.in b/data/NWChem/basicNWChem7.0/dvb_ir.in index 7b244170a..dc48bd6d3 100644 --- a/data/NWChem/basicNWChem7.0/dvb_ir.in +++ b/data/NWChem/basicNWChem7.0/dvb_ir.in @@ -35,6 +35,7 @@ property quadrupole octupole end +memory total 4 gb DFT xc B3LYP grid fine diff --git a/data/NWChem/basicNWChem7.0/dvb_td.in b/data/NWChem/basicNWChem7.0/dvb_td.in index 319e3a5e1..f0b046a5c 100644 --- a/data/NWChem/basicNWChem7.0/dvb_td.in +++ b/data/NWChem/basicNWChem7.0/dvb_td.in @@ -35,6 +35,7 @@ property quadrupole octupole end +memory total 4 gb DFT xc B3LYP grid fine From 2f1f61c2cbf20ce1dd8d32229477f8ec90cc568a Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sat, 4 Jun 2022 14:01:29 -0400 Subject: [PATCH 009/103] NWChem: update with real 7.0 outputs --- data/NWChem/basicNWChem7.0/C_bigbasis.out | 410 +- .../basicNWChem7.0/C_bigbasis_spherical.out | 5303 +++++++------ data/NWChem/basicNWChem7.0/Trp_polar.out | 248 +- data/NWChem/basicNWChem7.0/dvb_bomd_ks.out | 1575 ++-- .../dvb_dispersion_bp86_d3zero.out | 873 ++- data/NWChem/basicNWChem7.0/dvb_gopt_hf.out | 3705 +++++---- data/NWChem/basicNWChem7.0/dvb_gopt_ks.out | 5040 +++++++----- data/NWChem/basicNWChem7.0/dvb_ir.out | 6958 ++++++----------- data/NWChem/basicNWChem7.0/dvb_sp_hf.out | 1721 ++-- .../basicNWChem7.0/dvb_sp_hf_overlaps.out | 3272 ++++++-- data/NWChem/basicNWChem7.0/dvb_sp_ks.out | 1438 ++-- .../basicNWChem7.0/dvb_sp_ks_overlaps.out | 2989 +++++-- data/NWChem/basicNWChem7.0/dvb_td.out | 752 +- data/NWChem/basicNWChem7.0/dvb_un_sp_ks.out | 2250 +++--- data/NWChem/basicNWChem7.0/water_ccsd(t).out | 268 +- data/NWChem/basicNWChem7.0/water_mp2.out | 219 +- 16 files changed, 19542 insertions(+), 17479 deletions(-) diff --git a/data/NWChem/basicNWChem7.0/C_bigbasis.out b/data/NWChem/basicNWChem7.0/C_bigbasis.out index 1269acdc2..a96dce105 100644 --- a/data/NWChem/basicNWChem7.0/C_bigbasis.out +++ b/data/NWChem/basicNWChem7.0/C_bigbasis.out @@ -1,17 +1,17 @@ - argument 1 = C_bigbasis.nw + argument 1 = C_bigbasis.in - Northwest Computational Chemistry Package (NWChem) 6.5 - ------------------------------------------------------ + Northwest Computational Chemistry Package (NWChem) 7.0.2 + -------------------------------------------------------- Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - Copyright (c) 1994-2014 + Copyright (c) 1994-2020 Pacific Northwest National Laboratory Battelle Memorial Institute @@ -36,16 +36,17 @@ Job information --------------- - hostname = boman - program = /usr/lib64/mpich/bin/nwchem_mpich - date = Thu Mar 12 23:38:59 2015 - - compiled = Sat_Dec_06_13:02:58_2014 - source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 - nwchem branch = 6.5 - nwchem revision = 26243 - ga revision = 10506 - input = C_bigbasis.nw + hostname = osmium + program = nwchem + date = Sat Jun 4 13:32:09 2022 + + compiled = Fri_Jul_02_16:33:00_2021 + source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src + nwchem branch = 7.0.2 + nwchem revision = b9985dfa + ga revision = 5.7.2 + use scalapack = T + input = C_bigbasis.in prefix = carbon. data base = ./carbon.db status = startup @@ -117,7 +118,7 @@ C 0.00000000 0.00000000 0.00000000 library name resolved from: environment - library file name is: + library file name is: @@ -230,7 +231,7 @@ - Forming initial guess at 0.9s + Forming initial guess at 0.1s Superposition of Atomic Density Guess @@ -248,7 +249,7 @@ LUMO = -0.079258 - Starting SCF solution at 1.7s + Starting SCF solution at 0.2s @@ -261,32 +262,23 @@ ---------------------------------------------- - Integral file = ./carbon.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 0 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 2.216D+04 #integrals = 2.375D+06 #direct = 0.0% #cached =100.0% - - iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -37.5688058794 4.90D-01 1.83D-01 3.0 - 2 -37.6026156044 1.46D-01 6.13D-02 3.1 - 3 -37.6045955930 2.99D-03 1.16D-03 3.3 - 4 -37.6045963875 8.86D-06 4.00D-06 3.6 + 1 -37.5688058816 4.90D-01 1.69D-01 0.6 + 2 -37.6026156048 1.46D-01 6.13D-02 1.1 + 3 -37.6045955953 2.99D-03 1.16D-03 2.4 + 4 -37.6045963897 8.65D-06 4.01D-06 4.2 Final RHF results ------------------ - Total SCF energy = -37.604596387455 - One-electron energy = -50.311751325836 - Two-electron energy = 12.707154938381 + Total SCF energy = -37.604596389676 + One-electron energy = -50.311751329861 + Two-electron energy = 12.707154940185 Nuclear repulsion energy = 0.000000000000 - Time for solution = 3.0s + Time for solution = 4.0s Final eigenvalues @@ -310,190 +302,177 @@ ROHF Final Molecular Orbital Analysis ------------------------------------- - Vector 2 Occ=2.000000D+00 E=-7.255323D-01 - MO Center= -1.5D-17, -1.6D-17, 3.5D-17, r^2= 8.4D-01 + Vector 2 Occ=2.000000D+00 E=-7.255322D-01 + MO Center= -5.0D-17, -2.9D-16, -3.0D-16, r^2= 8.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.739716 1 C s 2 0.338000 1 C s - 3 0.220047 1 C s 5 0.188087 1 C s + 4 0.739754 1 C s 2 0.338013 1 C s + 3 0.220050 1 C s 5 0.188052 1 C s Vector 3 Occ=2.000000D+00 E=-3.583778D-01 - MO Center= -7.5D-16, -5.4D-16, 2.0D-16, r^2= 1.2D+00 + MO Center= -7.2D-16, 1.4D-15, 2.1D-15, r^2= 1.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.258782 1 C px 10 0.243404 1 C px - 14 -0.234054 1 C py 11 -0.220145 1 C py - 16 0.160781 1 C px + 13 0.249426 1 C px 15 -0.247015 1 C pz + 10 0.234603 1 C px 12 -0.232335 1 C pz + 16 0.154970 1 C px 18 -0.153472 1 C pz - Vector 4 Occ=0.000000D+00 E= 1.855930D-02 - MO Center= 6.1D-15, 8.5D-15, -2.7D-15, r^2= 5.1D+00 + Vector 4 Occ=0.000000D+00 E= 1.855934D-02 + MO Center= -1.6D-15, -7.2D-16, -1.7D-15, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 20 0.474785 1 C py 19 0.356554 1 C px - 11 0.206000 1 C py 67 0.178570 1 C fxxy - 74 0.174497 1 C fyzz 72 0.162537 1 C fyyy - 21 -0.156056 1 C pz 10 0.154702 1 C px + 21 0.439324 1 C pz 19 0.428582 1 C px + 12 0.190600 1 C pz 10 0.185940 1 C px + 68 0.171607 1 C fxxz 71 0.168752 1 C fxzz + 73 0.158558 1 C fyyz 69 0.154000 1 C fxyy - Vector 5 Occ=0.000000D+00 E= 1.855930D-02 - MO Center= -1.6D-14, 8.0D-16, -3.8D-14, r^2= 5.1D+00 + Vector 5 Occ=0.000000D+00 E= 1.855934D-02 + MO Center= 2.0D-14, -6.8D-14, -8.8D-15, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.558745 1 C pz 19 0.254273 1 C px - 12 0.242429 1 C pz 75 0.200903 1 C fzzz - 68 0.195177 1 C fxxz 73 0.191457 1 C fyyz - 18 -0.153533 1 C pz + 20 0.583461 1 C py 11 0.253134 1 C py + 72 0.210124 1 C fyyy 67 0.201415 1 C fxxy + 74 0.201137 1 C fyzz 17 -0.160258 1 C py - Vector 6 Occ=0.000000D+00 E= 4.854699D-02 - MO Center= 3.6D-14, -5.9D-14, 3.3D-14, r^2= 1.4D+01 + Vector 6 Occ=0.000000D+00 E= 4.854695D-02 + MO Center= -5.8D-14, -4.1D-14, 1.1D-13, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 6 7.640961 1 C s 4 -3.364331 1 C s - 40 -2.246431 1 C dxx 43 -2.240694 1 C dyy - 45 -2.221777 1 C dzz 39 -1.391775 1 C dzz - 34 -1.374537 1 C dxx 37 -1.378548 1 C dyy - 5 0.995797 1 C s 96 0.705855 1 C gxxzz - - Vector 7 Occ=0.000000D+00 E= 7.943320D-02 - MO Center= -4.0D-14, 3.5D-14, 1.6D-14, r^2= 1.6D+01 + 6 7.640970 1 C s 4 -3.364353 1 C s + 40 -2.244197 1 C dxx 45 -2.243634 1 C dzz + 43 -2.221085 1 C dyy 37 -1.392272 1 C dyy + 34 -1.376111 1 C dxx 39 -1.376505 1 C dzz + 5 0.995820 1 C s 94 0.706927 1 C gxxyy + + Vector 7 Occ=0.000000D+00 E= 7.943490D-02 + MO Center= 8.4D-14, 3.5D-14, -8.1D-14, r^2= 1.6D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 16 1.789684 1 C px 17 -1.618670 1 C py - 19 -1.100977 1 C px 20 0.995773 1 C py - 18 -0.835602 1 C pz 66 -0.764368 1 C fxxx - 71 -0.765981 1 C fxzz 69 -0.757589 1 C fxyy - 72 0.692096 1 C fyyy 74 0.692787 1 C fyzz - - Vector 8 Occ=0.000000D+00 E= 9.506261D-02 - MO Center= -2.1D-15, 3.9D-15, -1.2D-14, r^2= 1.3D+01 + 16 1.724707 1 C px 18 -1.708035 1 C pz + 19 -1.061138 1 C px 21 1.050880 1 C pz + 17 0.791980 1 C py 66 -0.736885 1 C fxxx + 69 -0.738419 1 C fxyy 71 -0.728777 1 C fxzz + 73 0.731281 1 C fyyz 75 0.729841 1 C fzzz + + Vector 8 Occ=0.000000D+00 E= 9.506486D-02 + MO Center= -1.8D-14, 6.9D-14, 1.0D-14, r^2= 1.3D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 18 2.711864 1 C pz 17 -1.485893 1 C py - 21 -1.322348 1 C pz 68 -1.083519 1 C fxxz - 73 -1.080983 1 C fyyz 75 -1.080464 1 C fzzz - 15 1.006088 1 C pz 20 0.724545 1 C py - 58 -0.626803 1 C fxxz 63 -0.622303 1 C fyyz - - Vector 9 Occ=0.000000D+00 E= 9.506261D-02 - MO Center= 6.8D-15, 5.8D-15, 4.9D-15, r^2= 1.3D+01 + 17 2.936583 1 C py 20 -1.432090 1 C py + 67 -1.172128 1 C fxxy 72 -1.169810 1 C fyyy + 74 -1.171813 1 C fyzz 14 1.089126 1 C py + 18 0.783566 1 C pz 57 -0.676654 1 C fxxy + 64 -0.676096 1 C fyzz 62 -0.672541 1 C fyyy + + Vector 9 Occ=0.000000D+00 E= 9.506486D-02 + MO Center= -3.0D-14, 3.4D-15, -3.0D-14, r^2= 1.3D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 16 2.205141 1 C px 17 1.875104 1 C py - 18 1.090628 1 C pz 19 -1.075262 1 C px - 20 -0.914331 1 C py 66 -0.880977 1 C fxxx - 69 -0.875694 1 C fxyy 71 -0.877156 1 C fxzz - 13 0.818096 1 C px 72 -0.748648 1 C fyyy - - Vector 10 Occ=0.000000D+00 E= 2.075448D-01 - MO Center= 5.0D-15, 9.9D-15, -1.8D-15, r^2= 1.2D+01 + 16 2.207497 1 C px 18 2.161197 1 C pz + 19 -1.076535 1 C px 21 -1.053956 1 C pz + 66 -0.881627 1 C fxxx 69 -0.879199 1 C fxyy + 71 -0.876033 1 C fxzz 75 -0.863082 1 C fzzz + 68 -0.857478 1 C fxxz 73 -0.861101 1 C fyyz + + Vector 10 Occ=0.000000D+00 E= 2.075449D-01 + MO Center= 7.9D-15, -3.1D-15, 3.7D-15, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 6 10.898838 1 C s 4 -7.674247 1 C s - 5 6.413766 1 C s 45 -4.504887 1 C dzz - 43 -4.342119 1 C dyy 40 -4.292754 1 C dxx - 34 -3.417422 1 C dxx 37 -3.382306 1 C dyy - 39 -3.266521 1 C dzz 94 1.667303 1 C gxxyy + 6 10.898835 1 C s 4 -7.674258 1 C s + 5 6.413779 1 C s 43 -4.510884 1 C dyy + 40 -4.312013 1 C dxx 45 -4.316862 1 C dzz + 34 -3.403727 1 C dxx 39 -3.400278 1 C dzz + 37 -3.262261 1 C dyy 96 1.669320 1 C gxxzz Vector 11 Occ=0.000000D+00 E= 2.193480D-01 - MO Center= -6.6D-16, 2.6D-15, -5.9D-15, r^2= 7.7D+00 + MO Center= 2.3D-15, -3.9D-15, 1.8D-15, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 44 1.517574 1 C dyz 42 1.392189 1 C dxz - 38 -1.216819 1 C dyz 36 -1.116284 1 C dxz - 95 0.646161 1 C gxxyz 104 0.638967 1 C gyzzz - 102 0.635152 1 C gyyyz 98 0.596281 1 C gxyyz - 100 0.586409 1 C gxzzz 93 0.581271 1 C gxxxz + 41 1.475806 1 C dxy 44 1.452580 1 C dyz + 35 -1.183329 1 C dxy 38 -1.164706 1 C dyz + 99 0.630521 1 C gxyzz 95 0.620724 1 C gxxyz + 97 0.621933 1 C gxyyy 92 0.616403 1 C gxxxy + 102 0.611698 1 C gyyyz 104 0.607107 1 C gyzzz Vector 12 Occ=0.000000D+00 E= 2.193480D-01 - MO Center= -1.4D-15, -1.6D-15, 1.2D-15, r^2= 7.7D+00 + MO Center= 1.3D-15, 2.3D-15, 6.2D-16, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 41 1.201826 1 C dxy 45 -0.973002 1 C dzz - 35 -0.963647 1 C dxy 39 0.780171 1 C dzz - 43 0.539213 1 C dyy 97 0.507777 1 C gxyyy - 92 0.505100 1 C gxxxy 99 0.500161 1 C gxyzz - 44 0.485006 1 C dyz 42 -0.469926 1 C dxz + 42 1.193991 1 C dxz 43 -0.984225 1 C dyy + 36 -0.957364 1 C dxz 37 0.789171 1 C dyy + 44 -0.512589 1 C dyz 93 0.503283 1 C gxxxz + 100 0.503227 1 C gxzzz 40 0.500241 1 C dxx + 98 0.496193 1 C gxyyz 45 0.483984 1 C dzz Vector 13 Occ=0.000000D+00 E= 2.278086D-01 - MO Center= -1.0D-15, 1.5D-15, -9.8D-16, r^2= 7.7D+00 + MO Center= -1.9D-15, -7.0D-16, 4.1D-16, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 42 1.359944 1 C dxz 36 -1.111694 1 C dxz - 44 -0.943978 1 C dyz 38 0.771660 1 C dyz - 41 -0.704054 1 C dxy 45 -0.645980 1 C dzz - 43 0.595415 1 C dyy 93 0.584108 1 C gxxxz - 100 0.586810 1 C gxzzz 98 0.581774 1 C gxyyz + 41 1.273382 1 C dxy 44 -1.222634 1 C dyz + 35 -1.040933 1 C dxy 38 0.999448 1 C dyz + 42 0.645303 1 C dxz 43 0.644520 1 C dyy + 92 0.548813 1 C gxxxy 97 0.549740 1 C gxyyy + 99 0.538244 1 C gxyzz 36 -0.527506 1 C dxz Vector 14 Occ=0.000000D+00 E= 2.278086D-01 - MO Center= 6.2D-15, 1.1D-15, 5.5D-16, r^2= 7.7D+00 + MO Center= -3.5D-15, 3.9D-16, -2.4D-15, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 40 1.092387 1 C dxx 34 -0.892978 1 C dxx - 43 -0.891940 1 C dyy 44 -0.848737 1 C dyz - 37 0.729121 1 C dyy 38 0.693805 1 C dyz - 91 0.468942 1 C gxxxx 103 -0.469054 1 C gyyzz - 96 0.387989 1 C gxxzz 101 -0.383955 1 C gyyyy + 40 1.052000 1 C dxx 45 -1.026035 1 C dzz + 34 -0.859963 1 C dxx 39 0.838737 1 C dzz + 44 0.531748 1 C dyz 91 0.452092 1 C gxxxx + 103 -0.454077 1 C gyyzz 94 0.443599 1 C gxxyy + 105 -0.441054 1 C gzzzz 38 -0.434680 1 C dyz Vector 15 Occ=0.000000D+00 E= 2.333995D-01 - MO Center= -4.0D-16, 4.5D-16, -3.1D-15, r^2= 8.1D+00 + MO Center= 8.1D-16, 3.2D-16, 6.3D-16, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 6 3.267210 1 C s 4 -2.491286 1 C s - 5 2.253137 1 C s 40 -1.643299 1 C dxx - 41 1.612327 1 C dxy 43 -1.481095 1 C dyy - 39 -1.440538 1 C dzz 35 -1.346972 1 C dxy - 37 -0.993735 1 C dyy 45 -0.946271 1 C dzz - - Vector 16 Occ=0.000000D+00 E= 3.090704D-01 - MO Center= 8.1D-16, -5.5D-15, 4.7D-17, r^2= 9.7D+00 + 6 3.267231 1 C s 4 -2.491311 1 C s + 5 2.253160 1 C s 42 1.640090 1 C dxz + 40 -1.580023 1 C dxx 45 -1.564092 1 C dzz + 37 -1.457009 1 C dyy 36 -1.370165 1 C dxz + 39 -0.924416 1 C dzz 43 -0.926578 1 C dyy + + Vector 16 Occ=0.000000D+00 E= 3.090890D-01 + MO Center= -1.3D-15, 1.3D-15, 1.9D-15, r^2= 9.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 16 5.363539 1 C px 17 -4.851024 1 C py - 69 -2.517154 1 C fxyy 18 -2.504231 1 C pz - 66 -2.485406 1 C fxxx 71 -2.477851 1 C fxzz - 67 2.287407 1 C fxxy 72 2.244319 1 C fyyy - 74 2.241080 1 C fyzz 13 1.520692 1 C px - - Vector 17 Occ=0.000000D+00 E= 3.237123D-01 - MO Center= -5.1D-17, -9.5D-17, 2.9D-15, r^2= 8.8D+00 + 16 5.169025 1 C px 18 -5.119057 1 C pz + 71 -2.431580 1 C fxzz 68 2.409192 1 C fxxz + 66 -2.393604 1 C fxxx 69 -2.386420 1 C fxyy + 17 2.373599 1 C py 73 2.363351 1 C fyyz + 75 2.370093 1 C fzzz 13 1.464653 1 C px + + Vector 17 Occ=0.000000D+00 E= 3.237318D-01 + MO Center= -3.1D-15, 1.9D-15, -3.8D-15, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 17 5.892821 1 C py 16 4.622255 1 C px - 72 -2.808538 1 C fyyy 67 -2.783698 1 C fxxy - 74 -2.792126 1 C fyzz 66 -2.205848 1 C fxxx - 71 -2.198352 1 C fxzz 69 -2.166655 1 C fxyy - 14 1.630339 1 C py 57 -1.538540 1 C fxxy - - Vector 18 Occ=0.000000D+00 E= 3.237123D-01 - MO Center= 8.1D-16, -4.3D-16, 4.5D-15, r^2= 8.8D+00 + 18 5.458353 1 C pz 16 5.344302 1 C px + 75 -2.603018 1 C fzzz 73 -2.589326 1 C fyyz + 68 -2.569830 1 C fxxz 66 -2.548955 1 C fxxx + 69 -2.535987 1 C fxyy 71 -2.514392 1 C fxzz + 15 1.509146 1 C pz 13 1.477613 1 C px + + Vector 18 Occ=0.000000D+00 E= 3.237318D-01 + MO Center= -8.2D-16, 6.7D-16, -1.8D-15, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 18 7.059687 1 C pz 68 -3.359855 1 C fxxz - 73 -3.363373 1 C fyyz 75 -3.350233 1 C fzzz - 16 2.888679 1 C px 15 1.953170 1 C pz - 58 -1.829117 1 C fxxz 63 -1.827132 1 C fyyz - 65 -1.834547 1 C fzzz 66 -1.378545 1 C fxxx - - Vector 19 Occ=0.000000D+00 E= 5.318156D-01 - MO Center= -8.0D-16, 1.6D-15, -1.3D-15, r^2= 9.3D+00 + 17 7.262160 1 C py 67 -3.458489 1 C fxxy + 72 -3.445525 1 C fyyy 74 -3.458716 1 C fyzz + 14 2.007870 1 C py 57 -1.879590 1 C fxxy + 62 -1.886905 1 C fyyy 64 -1.879462 1 C fyzz + 16 -1.782361 1 C px 18 1.567551 1 C pz + + Vector 19 Occ=0.000000D+00 E= 5.318150D-01 + MO Center= 2.0D-14, -2.0D-15, -1.8D-14, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 23.980912 1 C s 4 -19.360996 1 C s - 6 10.671023 1 C s 34 -8.103800 1 C dxx - 37 -8.061044 1 C dyy 39 -7.920065 1 C dzz - 45 -5.568979 1 C dzz 40 -5.515605 1 C dxx - 43 -5.528025 1 C dyy 94 3.707229 1 C gxxyy - - ------------------------------------------------------------- -EAF file 0: "./carbon.aoints.0" size=28835840 bytes ------------------------------------------------------------- - write read awrite aread wait - ----- ---- ------ ----- ---- - calls: 55 8 0 432 432 - data(b): 2.88e+07 4.19e+06 0.00e+00 2.26e+08 - time(s): 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -rate(mb/s): 0.00e+00 0.00e+00 ------------------------------------------------------------- + 5 23.980974 1 C s 4 -19.361062 1 C s + 6 10.671027 1 C s 34 -8.087147 1 C dxx + 39 -8.082947 1 C dzz 37 -7.914901 1 C dyy + 43 -5.570492 1 C dyy 40 -5.520455 1 C dxx + 45 -5.521675 1 C dzz 96 3.709798 1 C gxxzz center of mass @@ -518,24 +497,21 @@ rate(mb/s): 0.00e+00 0.00e+00 L x y z total open nuclear - - - - ----- ---- ------- - 0 0 0 0 -0.000000 0.000000 6.000000 + 0 0 0 0 0.000000 0.000000 6.000000 1 1 0 0 0.000000 0.000000 0.000000 - 1 0 1 0 0.000000 0.000000 0.000000 + 1 0 1 0 -0.000000 0.000000 0.000000 1 0 0 1 -0.000000 0.000000 0.000000 - 2 2 0 0 -5.400126 0.000000 0.000000 - 2 1 1 0 1.474636 0.000000 0.000000 - 2 1 0 1 0.761248 0.000000 0.000000 - 2 0 2 0 -5.103420 0.000000 0.000000 - 2 0 1 1 -0.688506 0.000000 0.000000 - 2 0 0 2 -4.125119 0.000000 0.000000 - - - Parallel integral file used 55 records with 0 large values + 2 2 0 0 -5.284364 0.000000 0.000000 + 2 1 1 0 -0.695532 0.000000 0.000000 + 2 1 0 1 1.500029 0.000000 0.000000 + 2 0 2 0 -4.089079 0.000000 0.000000 + 2 0 1 1 0.688808 0.000000 0.000000 + 2 0 0 2 -5.255222 0.000000 0.000000 - Task times cpu: 3.7s wall: 4.8s + Task times cpu: 4.2s wall: 4.2s Summary of allocated global arrays ----------------------------------- No active global arrays @@ -546,9 +522,9 @@ rate(mb/s): 0.00e+00 0.00e+00 ------------------------------ create destroy get put acc scatter gather read&inc -calls: 173 173 5770 3356 3125 0 0 54 -number of processes/call 1.00e+00 1.00e+00 1.00e+00 0.00e+00 0.00e+00 -bytes total: 2.09e+07 1.36e+07 2.55e+06 0.00e+00 0.00e+00 4.32e+02 +calls: 181 181 5187 3085 3125 0 0 262 +number of processes/call -1.34e+15 6.37e+13 1.23e+15 0.00e+00 0.00e+00 +bytes total: 2.11e+07 1.36e+07 2.55e+06 0.00e+00 0.00e+00 2.10e+03 bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 Max memory consumed for GA by this process: 1146600 bytes MA_summarize_allocated_blocks: starting scan ... @@ -578,32 +554,52 @@ MA usage statistics: Please cite the following reference when publishing results obtained with NWChem: - M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, - T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, - E. Apra, T.L. Windus, W.A. de Jong - "NWChem: a comprehensive and scalable open-source - solution for large scale molecular simulations" - Comput. Phys. Commun. 181, 1477 (2010) - doi:10.1016/j.cpc.2010.04.018 + E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, + V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, + J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, + J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, + C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, + K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, + J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, + V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, + B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, + S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, + A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, + D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, + J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, + A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, + R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, + D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, + V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, + Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, + D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, + A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, + and R. J. Harrison + "NWChem: Past, present, and future + J. Chem. Phys. 152, 184102 (2020) + doi:10.1063/5.0004997 AUTHORS ------- - E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, - J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, - S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, - F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, + T. P. Straatsma, H. J. J. van Dam, D. Wang, T. L. Windus, N. P. Bauman, + A. Panyala, J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, + K. Lopata, S. A. Fischer, S. Krishnamoorthy, M. Jacquelin, W. Ma, M. Klemm, + O. Villa, Y. Chen, V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, + Eric Hermes, L. Jensen, J. E. Moore, J. C. Becca, V. Konjkov, + D. Mejia-Rodriguez, T. Risthaus, M. Malagoli, A. Marenich, A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, - P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, - D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, - A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, - A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, - H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, - K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, - H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, - A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, - R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, - K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, - A. T. Wong, Z. Zhang. - - Total times cpu: 3.7s wall: 5.7s + P.-D. Fan, A. Fonari, M. J. Williamson, R. J. Harrison, J. R. Rehr, + M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, V. Tipparaju, + M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, M. Swart, Q. Wu, + T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, + G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, + K. Tsemekhman, K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, + T. Clark, D. Clerc, H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, + E. Glendening, M. Gutowski, A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, + R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, X. Long, B. Meng, + T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, + M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. + + Total times cpu: 4.2s wall: 4.2s diff --git a/data/NWChem/basicNWChem7.0/C_bigbasis_spherical.out b/data/NWChem/basicNWChem7.0/C_bigbasis_spherical.out index 780acd44b..5068f85b9 100644 --- a/data/NWChem/basicNWChem7.0/C_bigbasis_spherical.out +++ b/data/NWChem/basicNWChem7.0/C_bigbasis_spherical.out @@ -1,9 +1,9 @@ - argument 1 = C_bigbasis_spherical.nw + argument 1 = C_bigbasis_spherical.in - Northwest Computational Chemistry Package (NWChem) 6.1.1 + Northwest Computational Chemistry Package (NWChem) 7.0.2 -------------------------------------------------------- @@ -11,7 +11,7 @@ Pacific Northwest National Laboratory Richland, WA 99352 - Copyright (c) 1994-2012 + Copyright (c) 1994-2020 Pacific Northwest National Laboratory Battelle Memorial Institute @@ -36,29 +36,32 @@ Job information --------------- - hostname = boman - program = nwchem - date = Thu Jan 1 16:59:11 2015 + hostname = osmium + program = nwchem + date = Sat Jun 4 13:32:14 2022 - compiled = Mon_Apr_29_14:32:06_2013 - source = /home/adam/bin/nwchem-6.1.1-src - nwchem branch = 6.1.1 - input = C_bigbasis_spherical.nw - prefix = carbon. - data base = ./carbon.db - status = startup - nproc = 1 - time left = -1s + compiled = Fri_Jul_02_16:33:00_2021 + source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src + nwchem branch = 7.0.2 + nwchem revision = b9985dfa + ga revision = 5.7.2 + use scalapack = T + input = C_bigbasis_spherical.in + prefix = carbon. + data base = ./carbon.db + status = startup + nproc = 1 + time left = -1s Memory information ------------------ - heap = 13107201 doubles = 100.0 Mbytes - stack = 13107201 doubles = 100.0 Mbytes + heap = 13107198 doubles = 100.0 Mbytes + stack = 13107195 doubles = 100.0 Mbytes global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) - total = 52428802 doubles = 400.0 Mbytes + total = 52428793 doubles = 400.0 Mbytes verify = yes hardfail = no @@ -91,7 +94,7 @@ No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.00000000 -0.00000000 0.00000000 + 1 C 6.0000 0.00000000 0.00000000 0.00000000 Atomic Mass ----------- @@ -105,17 +108,17 @@ ---------------------------- X Y Z ---------------- ---------------- ---------------- - 0.0000000000 -0.0000000000 0.0000000000 + 0.0000000000 0.0000000000 0.0000000000 XYZ format geometry ------------------- 1 geometry - C 0.00000000 -0.00000000 0.00000000 + C 0.00000000 0.00000000 0.00000000 - library name resolved from: .nwchemrc - library file name is: + library name resolved from: environment + library file name is: @@ -246,7 +249,7 @@ - Forming initial guess at 0.5s + Forming initial guess at 0.1s Superposition of Atomic Density Guess @@ -264,7 +267,7 @@ LUMO = -0.079257 - Starting SCF solution at 1.7s + Starting SCF solution at 0.3s @@ -277,32 +280,23 @@ ---------------------------------------------- - Integral file = ./carbon.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 0 Max. records in file = 853811 - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 9.477D+04 #integrals = 1.842D+06 #direct = 0.0% #cached =100.0% - - iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -37.5687978055 4.94D-01 2.24D-01 7.7 - 2 -37.6026044581 1.47D-01 8.78D-02 7.9 - 3 -37.6045774813 3.03D-03 1.54D-03 8.1 - 4 -37.6045782752 9.14D-06 4.86D-06 8.5 + 1 -37.5687978054 4.94D-01 1.99D-01 0.4 + 2 -37.6026044584 1.47D-01 8.78D-02 1.0 + 3 -37.6045774816 3.03D-03 1.54D-03 2.8 + 4 -37.6045782756 9.17D-06 4.87D-06 6.0 Final RHF results ------------------ - Total SCF energy = -37.604578275230 - One-electron energy = -50.311163754239 - Two-electron energy = 12.706585479010 + Total SCF energy = -37.604578275565 + One-electron energy = -50.311163756844 + Two-electron energy = 12.706585481279 Nuclear repulsion energy = 0.000000000000 - Time for solution = 7.1s + Time for solution = 5.7s Final eigenvalues @@ -327,892 +321,992 @@ ------------------------------------- Vector 1 Occ=2.000000D+00 E=-1.136493D+01 - MO Center= 2.3D-16, -3.3D-17, 2.1D-19, r^2= 2.7D-02 + MO Center= -5.8D-18, 1.3D-18, 2.4D-17, r^2= 2.7D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.993702 1 C s Vector 2 Occ=2.000000D+00 E=-7.256175D-01 - MO Center= -1.0D-14, 1.6D-14, 1.1D-15, r^2= 8.4D-01 + MO Center= 2.1D-15, 2.7D-16, -3.2D-15, r^2= 8.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.591838 1 C s 2 0.344912 1 C s 3 0.281046 1 C s 5 0.271536 1 C s Vector 3 Occ=2.000000D+00 E=-3.584495D-01 - MO Center= 7.3D-14, -1.2D-13, 1.1D-14, r^2= 1.2D+00 + MO Center= 2.8D-14, 1.2D-14, -1.1D-14, r^2= 1.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 17 0.382586 1 C py 14 0.281794 1 C py - 20 0.250183 1 C py 16 -0.221047 1 C px - 13 -0.162812 1 C px + 18 0.311536 1 C pz 16 0.305260 1 C px + 15 0.229462 1 C pz 13 0.224840 1 C px + 21 0.203722 1 C pz 19 0.199618 1 C px - Vector 4 Occ=0.000000D+00 E= 1.886942D-02 - MO Center= -1.1D-14, 1.6D-14, -1.8D-14, r^2= 4.7D+00 + Vector 4 Occ=0.000000D+00 E= 1.886941D-02 + MO Center= -5.3D-15, -1.4D-14, 1.2D-14, r^2= 4.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.528099 1 C pz 18 0.300047 1 C pz - 21 0.237740 1 C pz 15 0.183356 1 C pz + 32 0.518536 1 C py 17 0.294613 1 C py + 20 0.233435 1 C py 14 0.180036 1 C py - Vector 5 Occ=0.000000D+00 E= 1.886942D-02 - MO Center= 9.5D-14, 1.2D-13, -1.8D-14, r^2= 4.7D+00 + Vector 5 Occ=0.000000D+00 E= 1.886941D-02 + MO Center= 1.2D-14, 5.8D-16, -3.1D-14, r^2= 4.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 0.457264 1 C px 32 0.264193 1 C py - 16 0.259801 1 C px 19 0.205851 1 C px - 13 0.158762 1 C px 17 0.150105 1 C py + 33 -0.373849 1 C pz 31 0.369123 1 C px + 18 -0.212408 1 C pz 16 0.209723 1 C px + 21 -0.168299 1 C pz 19 0.166172 1 C px - Vector 6 Occ=0.000000D+00 E= 8.315941D-02 - MO Center= -6.6D-13, 1.2D-12, -5.6D-13, r^2= 8.9D+00 + Vector 6 Occ=0.000000D+00 E= 8.316007D-02 + MO Center= 1.9D-12, 7.2D-13, 1.8D-12, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 9 1.822073 1 C s 5 -1.382087 1 C s - 4 0.256983 1 C s 2 -0.200476 1 C s - 3 -0.201430 1 C s + 9 1.822071 1 C s 5 -1.382082 1 C s + 4 0.256979 1 C s 2 -0.200476 1 C s + 3 -0.201429 1 C s - Vector 7 Occ=0.000000D+00 E= 8.983622D-02 - MO Center= 5.7D-13, -1.0D-12, 4.6D-16, r^2= 1.4D+01 + Vector 7 Occ=0.000000D+00 E= 8.983614D-02 + MO Center= -1.8D-12, -4.1D-13, -1.8D-12, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 32 1.099152 1 C py 31 -0.635057 1 C px - 20 -0.461848 1 C py 19 0.266842 1 C px + 33 0.895029 1 C pz 31 0.876997 1 C px + 21 -0.376079 1 C pz 19 -0.368502 1 C px + 32 0.203055 1 C py Vector 8 Occ=0.000000D+00 E= 1.081510D-01 - MO Center= -1.9D-13, -3.1D-14, 1.5D-14, r^2= 1.1D+01 + MO Center= -2.7D-15, -3.0D-13, -5.6D-14, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 1.030035 1 C px 19 -0.703088 1 C px - 32 0.595118 1 C py 20 -0.406220 1 C py - 13 -0.181854 1 C px + 32 1.167316 1 C py 20 -0.796794 1 C py + 31 -0.225071 1 C px 14 -0.206091 1 C py + 19 0.153630 1 C px Vector 9 Occ=0.000000D+00 E= 1.081510D-01 - MO Center= 5.2D-16, 4.4D-14, 5.6D-13, r^2= 1.1D+01 + MO Center= -1.4D-13, 8.2D-14, 1.3D-13, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 1.189595 1 C pz 21 -0.812002 1 C pz - 15 -0.210025 1 C pz + 33 -0.842458 1 C pz 31 0.830122 1 C px + 21 0.575051 1 C pz 19 -0.566630 1 C px - Vector 10 Occ=0.000000D+00 E= 2.323427D-01 - MO Center= -2.6D-15, 8.1D-15, -4.5D-16, r^2= 7.0D+00 + Vector 10 Occ=0.000000D+00 E= 2.323429D-01 + MO Center= 1.5D-14, -9.8D-14, 3.3D-15, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 62 0.951929 1 C d 1 60 -0.549996 1 C d -1 - 47 -0.168930 1 C d 1 + 60 -0.763310 1 C d -1 59 0.708173 1 C d -2 + 63 -0.315328 1 C d 2 62 -0.157531 1 C d 1 - Vector 11 Occ=0.000000D+00 E= 2.323427D-01 - MO Center= -2.9D-14, -5.8D-15, 9.2D-15, r^2= 7.0D+00 + Vector 11 Occ=0.000000D+00 E= 2.323429D-01 + MO Center= -7.7D-15, 2.7D-14, 2.9D-14, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 61 0.952102 1 C d 0 59 -0.476224 1 C d -2 - 63 -0.274549 1 C d 2 46 -0.168960 1 C d 0 + 63 0.750382 1 C d 2 62 0.541195 1 C d 1 + 61 0.478515 1 C d 0 59 0.337793 1 C d -2 - Vector 12 Occ=0.000000D+00 E= 2.416048D-01 - MO Center= 1.9D-14, -2.7D-14, -1.5D-14, r^2= 7.0D+00 + Vector 12 Occ=0.000000D+00 E= 2.416051D-01 + MO Center= -1.6D-15, -7.1D-15, 1.1D-14, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 60 0.952279 1 C d -1 62 0.550197 1 C d 1 - 45 -0.170617 1 C d -1 + 61 0.948696 1 C d 0 63 -0.522344 1 C d 2 + 59 -0.178700 1 C d -2 46 -0.169974 1 C d 0 - Vector 13 Occ=0.000000D+00 E= 2.416048D-01 - MO Center= 6.6D-14, -6.5D-14, -3.0D-15, r^2= 7.0D+00 + Vector 13 Occ=0.000000D+00 E= 2.416051D-01 + MO Center= 6.9D-14, 3.0D-14, 7.7D-14, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 63 0.952798 1 C d 2 59 -0.549298 1 C d -2 - 48 -0.170710 1 C d 2 + 60 0.752354 1 C d -1 59 0.719194 1 C d -2 + 63 -0.297694 1 C d 2 62 0.174771 1 C d 1 - Vector 14 Occ=0.000000D+00 E= 2.453715D-01 - MO Center= 5.2D-14, -5.4D-14, 7.2D-15, r^2= 7.0D+00 + Vector 14 Occ=0.000000D+00 E= 2.453718D-01 + MO Center= 5.7D-14, 8.0D-15, 6.4D-14, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 59 0.824007 1 C d -2 61 0.549138 1 C d 0 - 63 0.475050 1 C d 2 5 0.172653 1 C s + 62 0.926608 1 C d 1 63 -0.429634 1 C d 2 + 61 -0.269826 1 C d 0 60 -0.214541 1 C d -1 + 59 -0.210219 1 C d -2 5 0.172653 1 C s + 47 -0.167080 1 C d 1 Vector 15 Occ=0.000000D+00 E= 4.438319D-01 - MO Center= -1.2D-13, 2.0D-13, 4.6D-15, r^2= 5.8D+00 + MO Center= -1.1D-13, -2.9D-14, -1.4D-13, r^2= 5.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 20 1.635336 1 C py 19 -0.944848 1 C px - 17 -0.895120 1 C py 32 -0.677720 1 C py - 16 0.517173 1 C px 31 0.391566 1 C px + 21 1.331638 1 C pz 19 1.304811 1 C px + 18 -0.728887 1 C pz 16 -0.714203 1 C px + 33 -0.551861 1 C pz 31 -0.540743 1 C px + 20 0.302108 1 C py 17 -0.165362 1 C py Vector 16 Occ=0.000000D+00 E= 4.625643D-01 - MO Center= -1.4D-13, -8.9D-14, 2.5D-16, r^2= 5.0D+00 + MO Center= -8.1D-14, 6.7D-14, 2.3D-14, r^2= 5.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 19 1.568107 1 C px 16 -1.002953 1 C px - 20 0.906005 1 C py 31 -0.633349 1 C px - 17 -0.579476 1 C py 32 -0.365930 1 C py - 10 -0.158582 1 C px + 20 1.226368 1 C py 19 -1.080271 1 C px + 17 -0.784378 1 C py 21 0.780282 1 C pz + 16 0.690935 1 C px 18 -0.499064 1 C pz + 32 -0.495323 1 C py 31 0.436315 1 C px + 33 -0.315151 1 C pz Vector 17 Occ=0.000000D+00 E= 4.625643D-01 - MO Center= -1.6D-14, -1.1D-14, -4.4D-14, r^2= 5.0D+00 + MO Center= -6.5D-14, -1.2D-13, 9.0D-14, r^2= 5.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 1.811023 1 C pz 18 -1.158320 1 C pz - 33 -0.731461 1 C pz 12 -0.183147 1 C pz + 20 1.300733 1 C py 21 -1.020052 1 C pz + 17 -0.831941 1 C py 19 0.739860 1 C px + 18 0.652419 1 C pz 32 -0.525358 1 C py + 16 -0.473210 1 C px 33 0.411993 1 C pz + 31 -0.298825 1 C px - Vector 18 Occ=0.000000D+00 E= 4.987099D-01 - MO Center= 2.6D-13, -1.2D-13, 4.3D-14, r^2= 4.9D+00 + Vector 18 Occ=0.000000D+00 E= 4.987103D-01 + MO Center= 1.6D-13, 5.6D-14, -1.1D-13, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 3.787878 1 C s 4 -2.769078 1 C s - 9 -1.559979 1 C s 3 0.395359 1 C s - 1 0.283346 1 C s 2 0.265029 1 C s + 5 3.787880 1 C s 4 -2.769079 1 C s + 9 -1.559982 1 C s 3 0.395360 1 C s + 1 0.283346 1 C s 2 0.265031 1 C s - Vector 19 Occ=0.000000D+00 E= 7.441460D-01 - MO Center= 1.3D-14, 9.6D-15, -5.0D-15, r^2= 3.7D+00 + Vector 19 Occ=0.000000D+00 E= 7.441462D-01 + MO Center= 4.0D-14, 1.3D-13, -7.0D-14, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 89 0.934717 1 C f 1 87 -0.540054 1 C f -1 - 85 0.278730 1 C f -3 75 -0.181053 1 C f 1 + 85 0.688291 1 C f -3 86 -0.687574 1 C f -2 + 87 0.489740 1 C f -1 88 -0.172217 1 C f 0 - Vector 20 Occ=0.000000D+00 E= 7.441460D-01 - MO Center= -1.0D-14, -4.0D-15, -1.4D-14, r^2= 3.7D+00 + Vector 20 Occ=0.000000D+00 E= 7.441462D-01 + MO Center= -8.7D-14, 2.0D-14, 8.3D-14, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 88 0.881421 1 C f 0 86 -0.591491 1 C f -2 - 90 -0.340998 1 C f 2 74 -0.170730 1 C f 0 + 90 0.709079 1 C f 2 91 0.686121 1 C f 3 + 89 0.379039 1 C f 1 88 0.262952 1 C f 0 + 87 0.217541 1 C f -1 - Vector 21 Occ=0.000000D+00 E= 7.622662D-01 - MO Center= -5.1D-14, 7.9D-14, -7.6D-15, r^2= 3.7D+00 + Vector 21 Occ=0.000000D+00 E= 7.622664D-01 + MO Center= 5.6D-14, 5.8D-14, 1.0D-13, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 87 0.764442 1 C f -1 91 -0.683862 1 C f 3 - 89 0.441672 1 C f 1 73 -0.150448 1 C f -1 + 87 0.854451 1 C f -1 85 -0.617946 1 C f -3 + 91 -0.297723 1 C f 3 73 -0.168163 1 C f -1 + 88 -0.167685 1 C f 0 - Vector 22 Occ=0.000000D+00 E= 7.622662D-01 - MO Center= -5.2D-14, 7.3D-14, -1.0D-14, r^2= 3.7D+00 + Vector 22 Occ=0.000000D+00 E= 7.622664D-01 + MO Center= 4.1D-13, 1.2D-13, 3.8D-13, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 90 0.967478 1 C f 2 86 -0.557762 1 C f -2 - 76 -0.190407 1 C f 2 + 88 0.748207 1 C f 0 91 -0.644067 1 C f 3 + 89 0.335996 1 C f 1 85 0.330846 1 C f -3 + 90 0.168935 1 C f 2 - Vector 23 Occ=0.000000D+00 E= 7.735613D-01 - MO Center= -5.5D-14, 8.4D-14, -1.1D-14, r^2= 3.7D+00 + Vector 23 Occ=0.000000D+00 E= 7.735615D-01 + MO Center= 8.6D-15, -1.1D-14, -1.5D-14, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 86 0.765024 1 C f -2 88 0.684010 1 C f 0 - 90 0.441046 1 C f 2 72 -0.151921 1 C f -2 + 86 0.765881 1 C f -2 87 0.422431 1 C f -1 + 90 -0.423469 1 C f 2 85 0.383322 1 C f -3 + 91 0.381906 1 C f 3 72 -0.152091 1 C f -2 - Vector 24 Occ=0.000000D+00 E= 7.735613D-01 - MO Center= -8.1D-14, 1.2D-13, -2.9D-14, r^2= 3.7D+00 + Vector 24 Occ=0.000000D+00 E= 7.735615D-01 + MO Center= 2.1D-14, -2.4D-13, 3.2D-14, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 85 1.081515 1 C f -3 89 -0.241789 1 C f 1 - 71 -0.214771 1 C f -3 + 88 0.713280 1 C f 0 89 -0.686032 1 C f 1 + 85 -0.299457 1 C f -3 86 -0.246681 1 C f -2 + 91 0.245728 1 C f 3 90 -0.218371 1 C f 2 - Vector 25 Occ=0.000000D+00 E= 7.755696D-01 - MO Center= 6.3D-14, -6.9D-14, 3.7D-14, r^2= 3.1D+00 + Vector 25 Occ=0.000000D+00 E= 7.755698D-01 + MO Center= -1.0D-13, 2.3D-13, -8.3D-14, r^2= 3.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 47 1.167693 1 C d 1 45 -0.674658 1 C d -1 - 62 -0.591071 1 C d 1 60 0.341503 1 C d -1 + 45 -0.943671 1 C d -1 44 0.922220 1 C d -2 + 60 0.477675 1 C d -1 59 -0.466816 1 C d -2 + 48 -0.240139 1 C d 2 - Vector 26 Occ=0.000000D+00 E= 7.755696D-01 - MO Center= 3.9D-14, -9.3D-14, 2.9D-14, r^2= 3.1D+00 + Vector 26 Occ=0.000000D+00 E= 7.755698D-01 + MO Center= -3.6D-13, -2.5D-13, -4.5D-13, r^2= 3.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 46 1.167905 1 C d 0 61 -0.591179 1 C d 0 - 44 -0.584165 1 C d -2 48 -0.336778 1 C d 2 - 59 0.295697 1 C d -2 63 0.170473 1 C d 2 + 48 0.969124 1 C d 2 47 0.685728 1 C d 1 + 46 0.576861 1 C d 0 63 -0.490559 1 C d 2 + 62 -0.347107 1 C d 1 61 -0.292000 1 C d 0 + 44 0.275354 1 C d -2 - Vector 27 Occ=0.000000D+00 E= 7.774147D-01 - MO Center= -1.3D-14, 9.4D-14, 9.4D-14, r^2= 3.7D+00 + Vector 27 Occ=0.000000D+00 E= 7.774150D-01 + MO Center= 1.3D-12, -1.2D-13, 4.8D-13, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 91 0.883006 1 C f 3 87 0.592230 1 C f -1 - 89 0.342173 1 C f 1 77 -0.175905 1 C f 3 + 89 0.701996 1 C f 1 90 -0.688852 1 C f 2 + 86 -0.337054 1 C f -2 91 0.244340 1 C f 3 + 88 0.202546 1 C f 0 85 -0.198631 1 C f -3 + 87 -0.162536 1 C f -1 - Vector 28 Occ=0.000000D+00 E= 7.910500D-01 - MO Center= 5.2D-14, -1.5D-13, 1.3D-14, r^2= 3.1D+00 + Vector 28 Occ=0.000000D+00 E= 7.910503D-01 + MO Center= -4.5D-13, -2.2D-14, 4.5D-13, r^2= 3.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 1.164315 1 C d 2 44 -0.671241 1 C d -2 - 63 -0.590993 1 C d 2 59 0.340714 1 C d -2 + 46 1.141784 1 C d 0 48 -0.673347 1 C d 2 + 61 -0.579557 1 C d 0 63 0.341783 1 C d 2 + 45 0.180712 1 C d -1 - Vector 29 Occ=0.000000D+00 E= 7.910500D-01 - MO Center= 6.3D-14, -9.7D-14, -9.1D-14, r^2= 3.1D+00 + Vector 29 Occ=0.000000D+00 E= 7.910503D-01 + MO Center= 2.5D-15, 2.6D-13, -4.4D-14, r^2= 3.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 1.163681 1 C d -1 47 0.672339 1 C d 1 - 60 -0.590670 1 C d -1 62 -0.341271 1 C d 1 + 45 0.905294 1 C d -1 44 0.897082 1 C d -2 + 60 -0.459517 1 C d -1 59 -0.455348 1 C d -2 + 48 -0.293886 1 C d 2 46 -0.225675 1 C d 0 + 47 0.211147 1 C d 1 - Vector 30 Occ=0.000000D+00 E= 7.982763D-01 - MO Center= 5.0D-14, -7.6D-14, -8.1D-15, r^2= 3.1D+00 + Vector 30 Occ=0.000000D+00 E= 7.982765D-01 + MO Center= -8.6D-13, -2.0D-13, -9.0D-13, r^2= 3.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 44 1.005773 1 C d -2 46 0.670272 1 C d 0 - 48 0.579840 1 C d 2 59 -0.509525 1 C d -2 - 61 -0.339560 1 C d 0 63 -0.293747 1 C d 2 - 5 -0.212227 1 C s 4 0.194625 1 C s + 47 1.131007 1 C d 1 62 -0.572969 1 C d 1 + 48 -0.524406 1 C d 2 46 -0.329346 1 C d 0 + 63 0.265665 1 C d 2 45 -0.261866 1 C d -1 + 44 -0.256591 1 C d -2 5 -0.212225 1 C s + 4 0.194624 1 C s 61 0.166847 1 C d 0 Vector 31 Occ=0.000000D+00 E= 1.573792D+00 - MO Center= 1.3D-15, -2.4D-15, -2.2D-15, r^2= 2.0D+00 + MO Center= 3.8D-17, 1.7D-16, 1.3D-15, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 18 2.114028 1 C pz 15 -1.449468 1 C pz - 21 -1.189515 1 C pz 33 0.359030 1 C pz + 16 1.453761 1 C px 18 -1.210355 1 C pz + 13 -0.996761 1 C px 17 -0.943796 1 C py + 15 0.829871 1 C pz 19 -0.817999 1 C px + 21 0.681040 1 C pz 14 0.647107 1 C py + 20 0.531053 1 C py 31 0.246895 1 C px Vector 32 Occ=0.000000D+00 E= 1.573792D+00 - MO Center= -7.3D-16, -3.9D-15, 5.6D-16, r^2= 2.0D+00 + MO Center= -4.3D-16, -7.2D-16, 5.2D-17, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 16 1.830468 1 C px 13 -1.255048 1 C px - 17 1.057592 1 C py 19 -1.029963 1 C px - 14 -0.725130 1 C py 20 -0.595083 1 C py - 31 0.310872 1 C px 32 0.179613 1 C py + 17 1.861191 1 C py 14 -1.276112 1 C py + 20 -1.047250 1 C py 18 -0.884576 1 C pz + 15 0.606503 1 C pz 21 0.497731 1 C pz + 16 0.471834 1 C px 13 -0.323509 1 C px + 32 0.316090 1 C py 19 -0.265490 1 C px Vector 33 Occ=0.000000D+00 E= 1.591118D+00 - MO Center= -6.5D-15, 1.0D-14, 4.1D-16, r^2= 2.0D+00 + MO Center= 7.8D-15, 2.7D-15, 6.5D-15, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 17 1.862310 1 C py 14 -1.228912 1 C py - 16 -1.075987 1 C px 20 -1.049997 1 C py - 13 0.710029 1 C px 19 0.606657 1 C px - 32 0.315816 1 C py 31 -0.182469 1 C px + 18 1.516461 1 C pz 16 1.485910 1 C px + 15 -1.000691 1 C pz 13 -0.980531 1 C px + 21 -0.855003 1 C pz 19 -0.837778 1 C px + 17 0.344039 1 C py 33 0.257166 1 C pz + 31 0.251985 1 C px 14 -0.227026 1 C py - Vector 34 Occ=0.000000D+00 E= 2.025893D+00 - MO Center= 1.4D-14, -1.9D-14, 3.5D-15, r^2= 1.8D+00 + Vector 34 Occ=0.000000D+00 E= 2.025892D+00 + MO Center= -3.7D-15, 1.1D-15, -8.7D-15, r^2= 1.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 4.720430 1 C s 3 -3.664892 1 C s - 2 -2.822864 1 C s 5 -2.748516 1 C s - 1 -1.454671 1 C s 9 0.806025 1 C s - 6 -0.540375 1 C s + 4 4.720433 1 C s 3 -3.664895 1 C s + 2 -2.822875 1 C s 5 -2.748517 1 C s + 1 -1.454675 1 C s 9 0.806026 1 C s + 6 -0.540380 1 C s Vector 35 Occ=0.000000D+00 E= 2.089992D+00 - MO Center= -2.4D-15, -1.6D-15, -1.2D-15, r^2= 2.0D+00 + MO Center= -8.8D-15, -8.8D-15, 1.1D-14, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 105 0.818190 1 C g 0 103 -0.633998 1 C g -2 - 107 -0.365507 1 C g 2 + 108 0.686358 1 C g 3 109 0.564995 1 C g 4 + 107 0.531862 1 C g 2 106 0.252092 1 C g 1 + 104 0.171271 1 C g -1 105 0.164563 1 C g 0 + 101 0.150134 1 C g -4 Vector 36 Occ=0.000000D+00 E= 2.089992D+00 - MO Center= 7.0D-16, 2.4D-16, -1.7D-15, r^2= 2.0D+00 + MO Center= -4.4D-14, 2.4D-14, 3.8D-14, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 106 0.896119 1 C g 1 104 -0.517751 1 C g -1 - 102 0.391170 1 C g -3 97 -0.159099 1 C g 1 + 102 0.688029 1 C g -3 101 -0.564985 1 C g -4 + 103 -0.517521 1 C g -2 104 0.321550 1 C g -1 Vector 37 Occ=0.000000D+00 E= 2.118339D+00 - MO Center= -3.0D-15, 3.6D-15, 1.5D-15, r^2= 2.0D+00 + MO Center= -7.1D-14, -3.2D-14, -3.2D-14, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 107 0.897129 1 C g 2 103 -0.517205 1 C g -2 - 109 -0.338713 1 C g 4 101 -0.196126 1 C g -4 - 98 -0.160278 1 C g 2 + 104 0.733450 1 C g -1 109 -0.609958 1 C g 4 + 101 0.325304 1 C g -4 103 -0.280468 1 C g -2 + 107 0.235597 1 C g 2 106 0.233944 1 C g 1 Vector 38 Occ=0.000000D+00 E= 2.118339D+00 - MO Center= 1.3D-16, 3.9D-15, -4.2D-16, r^2= 2.0D+00 + MO Center= -7.7D-15, -1.4D-15, 1.5D-14, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 108 0.830278 1 C g 3 104 -0.634021 1 C g -1 - 106 -0.366317 1 C g 1 + 101 0.605169 1 C g -4 105 -0.573569 1 C g 0 + 107 -0.428315 1 C g 2 106 -0.319189 1 C g 1 + 109 0.320034 1 C g 4 103 -0.278521 1 C g -2 + 104 0.211122 1 C g -1 Vector 39 Occ=0.000000D+00 E= 2.138632D+00 - MO Center= -3.7D-15, 4.5D-15, 1.3D-15, r^2= 2.0D+00 + MO Center= 2.6D-14, 7.0D-15, 3.4D-14, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 102 1.035836 1 C g -3 106 -0.338995 1 C g 1 - 104 0.195861 1 C g -1 93 -0.185905 1 C g -3 + 104 0.575838 1 C g -1 109 0.530026 1 C g 4 + 105 0.442699 1 C g 0 108 -0.415650 1 C g 3 + 103 0.401409 1 C g -2 107 -0.285778 1 C g 2 Vector 40 Occ=0.000000D+00 E= 2.138632D+00 - MO Center= -1.7D-15, 1.1D-14, -2.8D-15, r^2= 2.0D+00 + MO Center= -6.9D-15, 3.2D-15, -8.9D-15, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 101 0.633857 1 C g -4 105 -0.619030 1 C g 0 - 103 -0.479673 1 C g -2 109 -0.367022 1 C g 4 - 107 -0.276537 1 C g 2 + 105 0.632421 1 C g 0 101 0.539475 1 C g -4 + 102 0.426704 1 C g -3 103 -0.356088 1 C g -2 + 104 -0.347020 1 C g -1 106 -0.251590 1 C g 1 + 108 -0.196767 1 C g 3 - Vector 41 Occ=0.000000D+00 E= 2.150826D+00 - MO Center= -4.8D-15, 6.7D-15, 4.5D-16, r^2= 2.0D+00 + Vector 41 Occ=0.000000D+00 E= 2.150827D+00 + MO Center= -8.2D-15, -4.7D-16, 1.2D-15, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 108 0.732525 1 C g 3 104 0.719194 1 C g -1 - 106 0.415529 1 C g 1 + 106 0.936313 1 C g 1 102 0.322067 1 C g -3 + 101 0.238807 1 C g -4 107 -0.228329 1 C g 2 + 105 -0.207434 1 C g 0 104 -0.201642 1 C g -1 + 108 -0.201592 1 C g 3 97 -0.168500 1 C g 1 - Vector 42 Occ=0.000000D+00 E= 2.150826D+00 - MO Center= -8.7D-15, 3.2D-15, 5.1D-15, r^2= 2.0D+00 + Vector 42 Occ=0.000000D+00 E= 2.150827D+00 + MO Center= -2.7D-15, -2.7D-16, 1.5D-16, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 109 0.896505 1 C g 4 101 0.519103 1 C g -4 - 107 0.339216 1 C g 2 103 -0.195562 1 C g -2 - 100 -0.161337 1 C g 4 + 103 0.624875 1 C g -2 102 0.560875 1 C g -3 + 108 0.529876 1 C g 3 109 -0.313228 1 C g 4 + 107 -0.270032 1 C g 2 101 0.191479 1 C g -4 - Vector 43 Occ=0.000000D+00 E= 2.154894D+00 - MO Center= -4.2D-15, 5.2D-15, -2.5D-15, r^2= 2.0D+00 + Vector 43 Occ=0.000000D+00 E= 2.154895D+00 + MO Center= 3.6D-15, -8.6D-16, 6.0D-15, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 101 0.708762 1 C g -4 103 0.536358 1 C g -2 - 105 0.415310 1 C g 0 109 -0.410394 1 C g 4 - 107 0.309217 1 C g 2 + 107 0.693502 1 C g 2 105 -0.451873 1 C g 0 + 108 -0.451952 1 C g 3 102 0.367405 1 C g -3 + 103 0.339329 1 C g -2 106 -0.204647 1 C g 1 + 101 0.163532 1 C g -4 Vector 44 Occ=0.000000D+00 E= 2.190629D+00 - MO Center= 2.9D-15, -1.3D-15, -2.8D-15, r^2= 1.4D+00 + MO Center= 2.8D-15, -1.8D-14, 2.7D-14, r^2= 1.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 42 1.241259 1 C d 1 47 -0.932057 1 C d 1 - 40 -0.717162 1 C d -1 45 0.538514 1 C d -1 - 62 0.312896 1 C d 1 60 -0.180782 1 C d -1 + 39 0.789391 1 C d -2 43 0.713080 1 C d 2 + 44 -0.592751 1 C d -2 41 0.574496 1 C d 0 + 42 0.552800 1 C d 1 40 -0.536462 1 C d -1 + 48 -0.535449 1 C d 2 46 -0.431387 1 C d 0 + 47 -0.415096 1 C d 1 45 0.402828 1 C d -1 Vector 45 Occ=0.000000D+00 E= 2.190629D+00 - MO Center= -1.2D-15, -2.4D-15, -2.3D-15, r^2= 1.4D+00 + MO Center= -8.6D-15, 3.7D-15, 2.0D-14, r^2= 1.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 41 1.241485 1 C d 0 46 -0.932226 1 C d 0 - 39 -0.620968 1 C d -2 44 0.466283 1 C d -2 - 43 -0.357995 1 C d 2 61 0.312953 1 C d 0 - 48 0.268817 1 C d 2 59 -0.156533 1 C d -2 + 40 0.848060 1 C d -1 43 0.786098 1 C d 2 + 39 -0.650819 1 C d -2 45 -0.636805 1 C d -1 + 48 -0.590278 1 C d 2 44 0.488698 1 C d -2 + 42 0.484354 1 C d 1 47 -0.363700 1 C d 1 + 41 0.244390 1 C d 0 60 0.213779 1 C d -1 - Vector 46 Occ=0.000000D+00 E= 2.224676D+00 - MO Center= 2.0D-15, -1.3D-14, -1.6D-14, r^2= 1.4D+00 + Vector 46 Occ=0.000000D+00 E= 2.224677D+00 + MO Center= -1.3D-14, -1.2D-14, 1.6D-14, r^2= 1.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 43 1.239821 1 C d 2 48 -0.937001 1 C d 2 - 39 -0.714771 1 C d -2 44 0.540192 1 C d -2 - 63 0.312789 1 C d 2 59 -0.180326 1 C d -2 + 41 1.238414 1 C d 0 46 -0.935938 1 C d 0 + 43 -0.659578 1 C d 2 48 0.498480 1 C d 2 + 61 0.312434 1 C d 0 39 -0.278812 1 C d -2 + 44 0.210714 1 C d -2 63 -0.166402 1 C d 2 - Vector 47 Occ=0.000000D+00 E= 2.224676D+00 - MO Center= 3.4D-15, 3.4D-15, 1.5D-16, r^2= 1.4D+00 + Vector 47 Occ=0.000000D+00 E= 2.224677D+00 + MO Center= -2.7D-14, 3.0D-14, 2.4D-14, r^2= 1.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 40 1.239146 1 C d -1 45 -0.936490 1 C d -1 - 42 0.715941 1 C d 1 47 -0.541076 1 C d 1 - 60 0.312618 1 C d -1 62 0.180622 1 C d 1 + 40 0.982204 1 C d -1 39 0.923115 1 C d -2 + 45 -0.742306 1 C d -1 44 -0.697649 1 C d -2 + 43 -0.420713 1 C d 2 48 0.317956 1 C d 2 + 60 0.247796 1 C d -1 59 0.232889 1 C d -2 + 42 0.227743 1 C d 1 47 -0.172118 1 C d 1 - Vector 48 Occ=0.000000D+00 E= 2.237431D+00 - MO Center= -1.3D-14, 3.2D-15, 6.9D-16, r^2= 1.4D+00 + Vector 48 Occ=0.000000D+00 E= 2.237432D+00 + MO Center= -1.1D-15, -1.9D-15, 8.6D-15, r^2= 1.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 1.072153 1 C d -2 44 -0.810965 1 C d -2 - 41 0.714509 1 C d 0 43 0.618108 1 C d 2 - 46 -0.540447 1 C d 0 48 -0.467530 1 C d 2 - 59 0.270116 1 C d -2 4 -0.195140 1 C s - 61 0.180012 1 C d 0 63 0.155725 1 C d 2 + 42 1.205651 1 C d 1 47 -0.911942 1 C d 1 + 43 -0.559016 1 C d 2 48 0.422834 1 C d 2 + 41 -0.351083 1 C d 0 62 0.303750 1 C d 1 + 40 -0.279149 1 C d -1 39 -0.273526 1 C d -2 + 46 0.265555 1 C d 0 45 0.211146 1 C d -1 Vector 49 Occ=0.000000D+00 E= 2.245171D+00 - MO Center= -2.4D-16, -6.2D-15, 5.5D-15, r^2= 1.6D+00 + MO Center= 1.3D-14, -3.8D-15, -1.2D-14, r^2= 1.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 74 1.047608 1 C f 0 72 -0.703013 1 C f -2 - 88 -0.509554 1 C f 0 76 -0.405293 1 C f 2 - 86 0.341944 1 C f -2 90 0.197133 1 C f 2 + 76 0.820079 1 C f 2 77 0.707413 1 C f 3 + 75 0.460501 1 C f 1 71 -0.408839 1 C f -3 + 90 -0.398884 1 C f 2 74 0.369000 1 C f 0 + 91 -0.344084 1 C f 3 72 0.260074 1 C f -2 + 89 -0.223986 1 C f 1 85 0.198858 1 C f -3 Vector 50 Occ=0.000000D+00 E= 2.245171D+00 - MO Center= 9.6D-15, -2.5D-15, 6.1D-15, r^2= 1.6D+00 + MO Center= 1.2D-13, 7.7D-15, -1.8D-14, r^2= 1.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 75 1.110953 1 C f 1 73 -0.641877 1 C f -1 - 89 -0.540365 1 C f 1 71 0.331283 1 C f -3 - 87 0.312207 1 C f -1 85 -0.161135 1 C f -3 + 72 -0.779108 1 C f -2 71 0.713089 1 C f -3 + 73 0.636907 1 C f -1 77 0.415165 1 C f 3 + 86 0.378956 1 C f -2 85 -0.346844 1 C f -3 + 87 -0.309790 1 C f -1 76 0.231318 1 C f 2 + 91 -0.201935 1 C f 3 Vector 51 Occ=0.000000D+00 E= 2.283145D+00 - MO Center= 4.7D-16, -1.2D-14, 1.0D-14, r^2= 1.6D+00 + MO Center= 6.2D-15, -2.0D-14, -3.5D-14, r^2= 1.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 76 1.147874 1 C f 2 72 -0.661763 1 C f -2 - 90 -0.556016 1 C f 2 86 0.320549 1 C f -2 + 74 0.897676 1 C f 0 77 -0.742619 1 C f 3 + 71 0.433982 1 C f -3 88 -0.434823 1 C f 0 + 75 0.389216 1 C f 1 91 0.359715 1 C f 3 + 85 -0.210215 1 C f -3 76 0.202880 1 C f 2 + 89 -0.188531 1 C f 1 Vector 52 Occ=0.000000D+00 E= 2.283145D+00 - MO Center= 1.8D-14, -5.6D-15, 2.7D-15, r^2= 1.6D+00 + MO Center= 2.4D-14, 2.0D-14, -8.1D-14, r^2= 1.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 73 0.906980 1 C f -1 77 -0.811375 1 C f 3 - 75 0.524026 1 C f 1 87 -0.439329 1 C f -1 - 91 0.393020 1 C f 3 89 -0.253831 1 C f 1 + 73 1.020300 1 C f -1 71 -0.709423 1 C f -3 + 87 -0.494220 1 C f -1 77 -0.396527 1 C f 3 + 85 0.343635 1 C f -3 91 0.192072 1 C f 3 + 75 0.175427 1 C f 1 Vector 53 Occ=0.000000D+00 E= 2.306622D+00 - MO Center= 1.0D-14, -1.4D-14, 4.6D-15, r^2= 1.6D+00 + MO Center= 1.3D-14, 6.1D-15, -1.1D-14, r^2= 1.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 72 0.906951 1 C f -2 74 0.810907 1 C f 0 - 76 0.522868 1 C f 2 86 -0.438101 1 C f -2 - 88 -0.391707 1 C f 0 90 -0.252570 1 C f 2 + 74 0.848284 1 C f 0 75 -0.813183 1 C f 1 + 88 -0.409762 1 C f 0 89 0.392806 1 C f 1 + 71 -0.343977 1 C f -3 77 0.302122 1 C f 3 + 72 -0.270520 1 C f -2 76 -0.270883 1 C f 2 + 85 0.166158 1 C f -3 Vector 54 Occ=0.000000D+00 E= 2.306622D+00 - MO Center= 9.6D-15, -2.0D-15, -2.6D-15, r^2= 1.6D+00 + MO Center= 1.2D-15, 3.9D-15, -6.0D-15, r^2= 1.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 71 1.282157 1 C f -3 85 -0.619343 1 C f -3 - 75 -0.286647 1 C f 1 73 0.165616 1 C f -1 + 72 0.914738 1 C f -2 73 0.497852 1 C f -1 + 76 -0.495658 1 C f 2 71 0.462843 1 C f -3 + 77 0.445618 1 C f 3 86 -0.441862 1 C f -2 + 87 -0.240487 1 C f -1 90 0.239426 1 C f 2 + 85 -0.223575 1 C f -3 91 -0.215255 1 C f 3 Vector 55 Occ=0.000000D+00 E= 2.314600D+00 - MO Center= 1.5D-14, -2.1D-14, -3.9D-16, r^2= 1.6D+00 + MO Center= 1.1D-14, -3.6D-15, -1.5D-14, r^2= 1.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 77 1.046539 1 C f 3 73 0.701912 1 C f -1 - 91 -0.505034 1 C f 3 75 0.405544 1 C f 1 - 87 -0.338726 1 C f -1 89 -0.195705 1 C f 1 + 75 0.832006 1 C f 1 76 -0.816428 1 C f 2 + 89 -0.401506 1 C f 1 72 -0.399477 1 C f -2 + 90 0.393988 1 C f 2 77 0.289592 1 C f 3 + 74 0.240057 1 C f 0 71 -0.235417 1 C f -3 + 73 -0.192638 1 C f -1 86 0.192778 1 C f -2 - Vector 56 Occ=0.000000D+00 E= 5.167138D+00 - MO Center= 7.7D-16, -2.5D-16, 1.7D-16, r^2= 6.8D-01 + Vector 56 Occ=0.000000D+00 E= 5.167139D+00 + MO Center= 1.1D-15, 5.0D-17, -8.7D-16, r^2= 6.8D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 2.085560 1 C pz 12 -1.880435 1 C pz - 18 -1.328506 1 C pz 21 0.583766 1 C pz - 24 0.388461 1 C pz 33 -0.172182 1 C pz + 13 1.409567 1 C px 10 -1.270929 1 C px + 15 -1.149714 1 C pz 12 1.036634 1 C pz + 14 -1.020217 1 C py 11 0.919874 1 C py + 16 -0.897898 1 C px 18 0.732370 1 C pz + 17 0.649881 1 C py 19 0.394550 1 C px - Vector 57 Occ=0.000000D+00 E= 5.167138D+00 - MO Center= 2.9D-16, 8.4D-17, -1.8D-16, r^2= 6.8D-01 + Vector 57 Occ=0.000000D+00 E= 5.167139D+00 + MO Center= 5.9D-16, 9.4D-16, -7.5D-16, r^2= 6.8D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 1.805820 1 C px 10 -1.628209 1 C px - 16 -1.150311 1 C px 14 1.043347 1 C py - 11 -0.940729 1 C py 17 -0.664615 1 C py - 19 0.505465 1 C px 22 0.336356 1 C px - 20 0.292042 1 C py 23 0.194336 1 C py + 14 1.788136 1 C py 11 -1.612264 1 C py + 17 -1.139047 1 C py 15 -0.930303 1 C pz + 12 0.838803 1 C pz 18 0.592605 1 C pz + 13 0.535416 1 C px 20 0.500515 1 C py + 10 -0.482755 1 C px 16 -0.341061 1 C px Vector 58 Occ=0.000000D+00 E= 5.224839D+00 - MO Center= 1.5D-15, -3.5D-16, -8.1D-17, r^2= 6.8D-01 + MO Center= -3.2D-15, -1.4D-15, -2.9D-15, r^2= 6.8D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 1.814637 1 C py 11 -1.622529 1 C py - 17 -1.155596 1 C py 13 -1.048442 1 C px - 10 0.937448 1 C px 16 0.667669 1 C px - 20 0.506276 1 C py 23 0.333227 1 C py - 19 -0.292511 1 C px 22 -0.192529 1 C px + 15 1.477641 1 C pz 13 1.447873 1 C px + 12 -1.321209 1 C pz 10 -1.294592 1 C px + 18 -0.940991 1 C pz 16 -0.922034 1 C px + 21 0.412256 1 C pz 19 0.403951 1 C px + 14 0.335232 1 C py 11 -0.299742 1 C py Vector 59 Occ=0.000000D+00 E= 5.873904D+00 - MO Center= -1.1D-15, -8.0D-16, -5.0D-16, r^2= 8.6D-01 + MO Center= -2.9D-15, 3.7D-15, 2.0D-15, r^2= 8.6D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 97 1.004091 1 C g 1 95 -0.580134 1 C g -1 - 106 -0.480086 1 C g 1 93 0.438301 1 C g -3 - 104 0.277379 1 C g -1 102 -0.209565 1 C g -3 + 99 0.644014 1 C g 3 100 0.613297 1 C g 4 + 93 0.428690 1 C g -3 94 -0.417192 1 C g -2 + 98 0.409773 1 C g 2 95 0.364746 1 C g -1 + 108 -0.307922 1 C g 3 109 -0.293235 1 C g 4 + 92 -0.228275 1 C g -4 102 -0.204969 1 C g -3 Vector 60 Occ=0.000000D+00 E= 5.873904D+00 - MO Center= -5.7D-16, -5.0D-16, -5.8D-16, r^2= 8.6D-01 + MO Center= -1.7D-15, -4.9D-15, 2.8D-15, r^2= 8.6D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 96 0.916772 1 C g 0 94 -0.710387 1 C g -2 - 105 -0.438336 1 C g 0 98 -0.409546 1 C g 2 - 103 0.339657 1 C g -2 107 0.195816 1 C g 2 + 93 -0.641066 1 C g -3 92 0.613965 1 C g -4 + 98 0.452652 1 C g 2 99 0.421281 1 C g 3 + 94 0.415175 1 C g -2 102 0.306513 1 C g -3 + 101 -0.293555 1 C g -4 97 0.243135 1 C g 1 + 100 0.229238 1 C g 4 96 0.221219 1 C g 0 Vector 61 Occ=0.000000D+00 E= 5.921174D+00 - MO Center= 7.4D-16, -3.1D-15, 2.7D-16, r^2= 8.5D-01 + MO Center= 4.4D-15, -5.0D-15, -1.4D-15, r^2= 8.5D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 98 1.004440 1 C g 2 94 -0.579071 1 C g -2 - 107 -0.479360 1 C g 2 100 -0.379231 1 C g 4 - 103 0.276356 1 C g -2 92 -0.219581 1 C g -4 - 109 0.180985 1 C g 4 + 96 -0.651495 1 C g 0 92 0.620690 1 C g -4 + 98 -0.511433 1 C g 2 100 0.449332 1 C g 4 + 97 -0.390169 1 C g 1 105 0.310920 1 C g 0 + 101 -0.296219 1 C g -4 94 -0.265417 1 C g -2 + 107 0.244077 1 C g 2 109 -0.214439 1 C g 4 Vector 62 Occ=0.000000D+00 E= 5.921174D+00 - MO Center= 5.0D-16, -1.4D-15, -5.1D-16, r^2= 8.5D-01 + MO Center= -3.0D-16, -7.6D-16, 5.8D-16, r^2= 8.5D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 99 0.929593 1 C g 3 95 -0.709855 1 C g -1 - 108 -0.443640 1 C g 3 97 -0.410142 1 C g 1 - 104 0.338772 1 C g -1 106 0.195736 1 C g 1 + 95 0.846002 1 C g -1 100 -0.626816 1 C g 4 + 92 0.454434 1 C g -4 104 -0.403747 1 C g -1 + 94 -0.354135 1 C g -2 109 0.299142 1 C g 4 + 101 -0.216874 1 C g -4 97 0.209991 1 C g 1 + 98 0.194926 1 C g 2 103 0.169008 1 C g -2 Vector 63 Occ=0.000000D+00 E= 5.954845D+00 - MO Center= 6.1D-16, -2.8D-15, -6.5D-16, r^2= 8.5D-01 + MO Center= 7.4D-16, -1.7D-17, -9.3D-16, r^2= 8.5D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 92 0.709350 1 C g -4 96 -0.692757 1 C g 0 - 94 -0.536802 1 C g -2 100 -0.410735 1 C g 4 - 101 -0.338077 1 C g -4 105 0.330169 1 C g 0 - 98 -0.309473 1 C g 2 103 0.255841 1 C g -2 - 109 0.195757 1 C g 4 + 96 0.855021 1 C g 0 99 -0.479007 1 C g 3 + 100 0.440484 1 C g 4 92 0.431191 1 C g -4 + 105 -0.407504 1 C g 0 93 0.314904 1 C g -3 + 108 0.228295 1 C g 3 109 -0.209935 1 C g 4 + 101 -0.205506 1 C g -4 97 -0.194866 1 C g 1 Vector 64 Occ=0.000000D+00 E= 5.954845D+00 - MO Center= 2.1D-15, 3.9D-17, -2.0D-16, r^2= 8.5D-01 + MO Center= 1.0D-15, -1.5D-15, 3.1D-15, r^2= 8.5D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 93 1.159205 1 C g -3 102 -0.552479 1 C g -3 - 97 -0.379370 1 C g 1 95 0.219189 1 C g -1 - 106 0.180808 1 C g 1 + 95 0.735552 1 C g -1 94 0.600250 1 C g -2 + 92 -0.422759 1 C g -4 100 0.400023 1 C g 4 + 93 -0.362215 1 C g -3 104 -0.350565 1 C g -1 + 103 -0.286080 1 C g -2 98 -0.268743 1 C g 2 + 97 0.203782 1 C g 1 101 0.201487 1 C g -4 Vector 65 Occ=0.000000D+00 E= 5.975011D+00 - MO Center= 3.2D-15, -6.7D-15, -3.9D-16, r^2= 8.5D-01 + MO Center= 4.7D-15, 1.6D-15, -5.5D-16, r^2= 8.5D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 100 1.003032 1 C g 4 92 0.580785 1 C g -4 - 109 -0.477657 1 C g 4 98 0.379523 1 C g 2 - 101 -0.276577 1 C g -4 94 -0.218801 1 C g -2 - 107 -0.180734 1 C g 2 + 97 1.052500 1 C g 1 106 -0.501214 1 C g 1 + 93 0.334682 1 C g -3 92 0.258307 1 C g -4 + 99 -0.249320 1 C g 3 98 -0.243041 1 C g 2 + 96 -0.233389 1 C g 0 95 -0.231050 1 C g -1 + 102 -0.159380 1 C g -3 Vector 66 Occ=0.000000D+00 E= 5.975011D+00 - MO Center= 6.4D-16, -2.7D-15, -2.2D-16, r^2= 8.5D-01 + MO Center= -7.7D-17, 1.2D-15, 3.1D-16, r^2= 8.5D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 99 0.819567 1 C g 3 95 0.804652 1 C g -1 - 97 0.464904 1 C g 1 108 -0.390288 1 C g 3 - 104 -0.383186 1 C g -1 106 -0.221393 1 C g 1 + 94 0.698964 1 C g -2 93 0.641571 1 C g -3 + 99 0.583239 1 C g 3 100 -0.345102 1 C g 4 + 103 -0.332855 1 C g -2 98 -0.312196 1 C g 2 + 102 -0.305524 1 C g -3 108 -0.277746 1 C g 3 + 92 0.224854 1 C g -4 109 0.164342 1 C g 4 Vector 67 Occ=0.000000D+00 E= 5.981727D+00 - MO Center= -5.4D-17, -1.4D-15, -3.6D-16, r^2= 8.5D-01 + MO Center= 5.5D-15, 8.5D-16, -4.1D-15, r^2= 8.5D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 92 0.792927 1 C g -4 94 0.600050 1 C g -2 - 96 0.464628 1 C g 0 100 -0.459128 1 C g 4 - 101 -0.377499 1 C g -4 98 0.345936 1 C g 2 - 103 -0.285673 1 C g -2 105 -0.221201 1 C g 0 - 109 0.218583 1 C g 4 107 -0.164694 1 C g 2 + 98 0.775854 1 C g 2 96 -0.505532 1 C g 0 + 99 -0.505621 1 C g 3 93 0.411033 1 C g -3 + 94 0.379624 1 C g -2 107 -0.369370 1 C g 2 + 105 0.240675 1 C g 0 108 0.240717 1 C g 3 + 97 -0.228949 1 C g 1 102 -0.195686 1 C g -3 - Vector 68 Occ=0.000000D+00 E= 6.319864D+00 - MO Center= 3.8D-15, -1.4D-15, 2.7D-15, r^2= 5.4D-01 + Vector 68 Occ=0.000000D+00 E= 6.319865D+00 + MO Center= 1.5D-14, -2.2D-14, -1.9D-14, r^2= 5.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 1.214770 1 C d 1 42 -1.031836 1 C d 1 - 35 -0.701857 1 C d -1 40 0.596164 1 C d -1 - 47 0.484143 1 C d 1 45 -0.279723 1 C d -1 - 62 -0.152192 1 C d 1 + 34 0.819481 1 C d -2 39 -0.696074 1 C d -2 + 38 0.636287 1 C d 2 35 -0.587617 1 C d -1 + 36 0.542059 1 C d 0 43 -0.540468 1 C d 2 + 37 0.502731 1 C d 1 40 0.499127 1 C d -1 + 41 -0.460430 1 C d 0 42 -0.427024 1 C d 1 - Vector 69 Occ=0.000000D+00 E= 6.319864D+00 - MO Center= 3.8D-15, -5.7D-15, -4.1D-15, r^2= 5.4D-01 + Vector 69 Occ=0.000000D+00 E= 6.319865D+00 + MO Center= 2.8D-15, 2.0D-14, -1.4D-14, r^2= 5.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 1.214991 1 C d 0 41 -1.032024 1 C d 0 - 34 -0.607716 1 C d -2 39 0.516199 1 C d -2 - 46 0.484231 1 C d 0 38 -0.350355 1 C d 2 - 43 0.297595 1 C d 2 44 -0.242203 1 C d -2 - 61 -0.152219 1 C d 0 + 38 0.820979 1 C d 2 35 0.786882 1 C d -1 + 43 -0.697347 1 C d 2 40 -0.668385 1 C d -1 + 34 -0.575288 1 C d -2 37 0.514430 1 C d 1 + 39 0.488655 1 C d -2 42 -0.436962 1 C d 1 + 48 0.327199 1 C d 2 45 0.313609 1 C d -1 - Vector 70 Occ=0.000000D+00 E= 6.374996D+00 - MO Center= 9.9D-15, -1.1D-14, 7.7D-16, r^2= 5.4D-01 + Vector 70 Occ=0.000000D+00 E= 6.374997D+00 + MO Center= 5.9D-16, -4.1D-15, -4.3D-15, r^2= 5.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 38 1.215090 1 C d 2 43 -1.035060 1 C d 2 - 34 -0.700513 1 C d -2 39 0.596724 1 C d -2 - 48 0.484346 1 C d 2 44 -0.279231 1 C d -2 - 63 -0.152020 1 C d 2 + 36 1.213915 1 C d 0 41 -1.034060 1 C d 0 + 38 -0.644514 1 C d 2 43 0.549022 1 C d 2 + 46 0.483878 1 C d 0 34 -0.277417 1 C d -2 + 48 -0.256910 1 C d 2 39 0.236314 1 C d -2 + 61 -0.151873 1 C d 0 - Vector 71 Occ=0.000000D+00 E= 6.374996D+00 - MO Center= 2.2D-15, -4.4D-15, -8.4D-16, r^2= 5.4D-01 + Vector 71 Occ=0.000000D+00 E= 6.374997D+00 + MO Center= -1.8D-15, 2.7D-16, 1.3D-15, r^2= 5.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 1.214427 1 C d -1 40 -1.034496 1 C d -1 - 37 0.701660 1 C d 1 42 -0.597701 1 C d 1 - 45 0.484082 1 C d -1 47 0.279688 1 C d 1 - 60 -0.151937 1 C d -1 + 35 0.962782 1 C d -1 34 0.903432 1 C d -2 + 40 -0.820135 1 C d -1 39 -0.769579 1 C d -2 + 38 -0.415296 1 C d 2 45 0.383774 1 C d -1 + 44 0.360117 1 C d -2 43 0.353765 1 C d 2 + 37 0.223201 1 C d 1 42 -0.190131 1 C d 1 - Vector 72 Occ=0.000000D+00 E= 6.393611D+00 - MO Center= -8.1D-16, -7.9D-15, -7.8D-16, r^2= 5.4D-01 + Vector 72 Occ=0.000000D+00 E= 6.393612D+00 + MO Center= -6.4D-15, 2.4D-16, 4.2D-15, r^2= 5.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 34 1.052128 1 C d -2 39 -0.896942 1 C d -2 - 36 0.701164 1 C d 0 38 0.606564 1 C d 2 - 41 -0.597744 1 C d 0 43 -0.517097 1 C d 2 - 44 0.419310 1 C d -2 46 0.279438 1 C d 0 - 48 0.241737 1 C d 2 + 37 1.183133 1 C d 1 42 -1.008624 1 C d 1 + 38 -0.548575 1 C d 2 47 0.471520 1 C d 1 + 43 0.467662 1 C d 2 36 -0.344525 1 C d 0 + 41 0.293709 1 C d 0 35 -0.273936 1 C d -1 + 34 -0.268417 1 C d -2 40 0.233531 1 C d -1 Vector 73 Occ=0.000000D+00 E= 6.418132D+00 - MO Center= -1.5D-16, 2.9D-15, -2.3D-15, r^2= 6.2D-01 + MO Center= -2.4D-14, 5.0D-15, 2.3D-14, r^2= 6.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 68 1.034477 1 C f 1 75 -0.651911 1 C f 1 - 66 -0.597694 1 C f -1 73 0.376657 1 C f -1 - 64 0.308478 1 C f -3 89 0.242004 1 C f 1 - 71 -0.194398 1 C f -3 + 69 0.791779 1 C f 2 70 0.724887 1 C f 3 + 76 -0.498966 1 C f 2 77 -0.456812 1 C f 3 + 68 0.433847 1 C f 1 67 0.324705 1 C f 0 + 75 -0.273403 1 C f 1 64 -0.233808 1 C f -3 + 74 -0.204624 1 C f 0 90 0.185227 1 C f 2 Vector 74 Occ=0.000000D+00 E= 6.418132D+00 - MO Center= -7.6D-16, 7.5D-16, 5.4D-15, r^2= 6.2D-01 + MO Center= 1.7D-15, -1.5D-15, -1.7D-15, r^2= 6.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 67 0.975493 1 C f 0 65 -0.654621 1 C f -2 - 74 -0.614740 1 C f 0 72 0.412532 1 C f -2 - 69 -0.377391 1 C f 2 76 0.237826 1 C f 2 - 88 0.228205 1 C f 0 86 -0.153141 1 C f -2 + 65 -0.760052 1 C f -2 64 0.728827 1 C f -3 + 66 0.580635 1 C f -1 72 0.478973 1 C f -2 + 71 -0.459295 1 C f -3 73 -0.365907 1 C f -1 + 70 0.240672 1 C f 3 86 -0.177806 1 C f -2 + 85 0.170501 1 C f -3 77 -0.151668 1 C f 3 Vector 75 Occ=0.000000D+00 E= 6.473027D+00 - MO Center= 4.6D-16, 3.9D-15, -2.4D-16, r^2= 6.2D-01 + MO Center= 4.3D-15, 7.6D-16, 9.4D-15, r^2= 6.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 69 1.068947 1 C f 2 76 -0.672991 1 C f 2 - 65 -0.616260 1 C f -2 72 0.387987 1 C f -2 - 90 0.249312 1 C f 2 + 67 0.844849 1 C f 0 70 -0.656109 1 C f 3 + 74 -0.531902 1 C f 0 64 0.461102 1 C f -3 + 77 0.413075 1 C f 3 68 0.346549 1 C f 1 + 71 -0.290302 1 C f -3 75 -0.218181 1 C f 1 + 88 0.197045 1 C f 0 69 0.191222 1 C f 2 Vector 76 Occ=0.000000D+00 E= 6.473027D+00 - MO Center= -3.5D-15, 8.5D-15, 2.1D-15, r^2= 6.2D-01 + MO Center= -1.9D-15, 1.0D-14, -4.4D-15, r^2= 6.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 66 0.844617 1 C f -1 70 -0.755585 1 C f 3 - 73 -0.531756 1 C f -1 68 0.487994 1 C f 1 - 77 0.475704 1 C f 3 75 -0.307232 1 C f 1 - 87 0.196991 1 C f -1 91 -0.176226 1 C f 3 + 66 0.953371 1 C f -1 64 -0.622225 1 C f -3 + 73 -0.600226 1 C f -1 70 -0.429100 1 C f 3 + 71 0.391742 1 C f -3 77 0.270154 1 C f 3 + 87 0.222356 1 C f -1 68 0.194845 1 C f 1 Vector 77 Occ=0.000000D+00 E= 6.506281D+00 - MO Center= -4.6D-15, 5.8D-15, 1.5D-15, r^2= 6.2D-01 + MO Center= 8.4D-16, -2.0D-15, -2.3D-15, r^2= 6.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 65 0.844905 1 C f -2 67 0.755431 1 C f 0 - 72 -0.531564 1 C f -2 69 0.487097 1 C f 2 - 74 -0.475272 1 C f 0 76 -0.306452 1 C f 2 - 86 0.196669 1 C f -2 88 0.175842 1 C f 0 + 65 0.771278 1 C f -2 69 -0.507433 1 C f 2 + 72 -0.485242 1 C f -2 66 0.478897 1 C f -1 + 70 0.468766 1 C f 3 64 0.345850 1 C f -3 + 76 0.319246 1 C f 2 73 -0.301293 1 C f -1 + 77 -0.294920 1 C f 3 67 0.273572 1 C f 0 Vector 78 Occ=0.000000D+00 E= 6.506281D+00 - MO Center= -5.1D-15, 2.2D-14, 6.8D-16, r^2= 6.2D-01 + MO Center= 2.9D-15, 1.4D-15, -1.5D-16, r^2= 6.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 64 1.194442 1 C f -3 71 -0.751471 1 C f -3 - 85 0.278031 1 C f -3 68 -0.267037 1 C f 1 - 75 0.168004 1 C f 1 66 0.154285 1 C f -1 + 67 0.747350 1 C f 0 68 -0.740380 1 C f 1 + 74 -0.470188 1 C f 0 75 0.465803 1 C f 1 + 65 -0.441378 1 C f -2 64 -0.411081 1 C f -3 + 72 0.277688 1 C f -2 71 0.258628 1 C f -3 + 70 0.178351 1 C f 3 88 0.173961 1 C f 0 Vector 79 Occ=0.000000D+00 E= 6.517435D+00 - MO Center= -5.2D-15, 4.9D-15, -2.2D-16, r^2= 6.2D-01 + MO Center= -3.8D-15, -1.9D-15, 2.9D-15, r^2= 6.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 70 0.975150 1 C f 3 66 0.654031 1 C f -1 - 77 -0.613346 1 C f 3 73 -0.411370 1 C f -1 - 68 0.377880 1 C f 1 75 -0.237677 1 C f 1 - 91 0.226829 1 C f 3 87 0.152134 1 C f -1 + 68 0.775251 1 C f 1 69 -0.760736 1 C f 2 + 75 -0.487615 1 C f 1 76 0.478485 1 C f 2 + 65 -0.372227 1 C f -2 70 0.269837 1 C f 3 + 72 0.234122 1 C f -2 67 0.223682 1 C f 0 + 64 -0.219358 1 C f -3 66 -0.179497 1 C f -1 - Vector 80 Occ=0.000000D+00 E= 8.952275D+00 - MO Center= -4.5D-16, 6.4D-16, -5.5D-17, r^2= 4.8D-01 + Vector 80 Occ=0.000000D+00 E= 8.952256D+00 + MO Center= 6.0D-16, 2.1D-16, 3.0D-15, r^2= 4.8D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 15.465343 1 C s 1 10.092079 1 C s - 6 4.129188 1 C s 3 3.351480 1 C s - 4 -2.545550 1 C s 5 1.231572 1 C s - 9 -0.353825 1 C s 8 0.186934 1 C s + 2 15.465344 1 C s 1 10.092074 1 C s + 6 4.129193 1 C s 3 3.351479 1 C s + 4 -2.545547 1 C s 5 1.231570 1 C s + 9 -0.353824 1 C s 8 0.186935 1 C s Vector 81 Occ=0.000000D+00 E= 1.865905D+01 - MO Center= 3.5D-16, -4.0D-17, -6.2D-17, r^2= 2.0D-01 + MO Center= 7.5D-17, -7.4D-16, 1.3D-16, r^2= 2.0D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 -1.979321 1 C pz 24 1.983407 1 C pz - 15 1.126312 1 C pz 18 -0.598158 1 C pz - 21 0.260696 1 C pz + 11 1.715758 1 C py 23 -1.719299 1 C py + 14 -0.976334 1 C py 12 -0.861289 1 C pz + 24 0.863067 1 C pz 17 0.518509 1 C py + 15 0.490108 1 C pz 10 0.481741 1 C px + 22 -0.482735 1 C px 13 -0.274130 1 C px Vector 82 Occ=0.000000D+00 E= 1.865905D+01 - MO Center= 2.2D-16, -9.7D-18, -2.1D-17, r^2= 2.0D-01 + MO Center= 5.4D-16, 9.1D-17, -3.9D-16, r^2= 2.0D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 10 -1.713832 1 C px 22 1.717369 1 C px - 11 -0.990199 1 C py 23 0.992243 1 C py - 13 0.975238 1 C px 14 0.563463 1 C py - 16 -0.517926 1 C px 17 -0.299242 1 C py - 19 0.225728 1 C px + 10 1.347496 1 C px 22 -1.350277 1 C px + 12 -1.108296 1 C pz 24 1.110584 1 C pz + 11 -0.934693 1 C py 23 0.936622 1 C py + 13 -0.766779 1 C px 15 0.630665 1 C pz + 14 0.531878 1 C py 16 0.407218 1 C px Vector 83 Occ=0.000000D+00 E= 1.872025D+01 - MO Center= 4.7D-16, -1.6D-16, -9.2D-18, r^2= 2.0D-01 + MO Center= 4.2D-17, 7.3D-17, -4.8D-16, r^2= 2.0D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 -1.716852 1 C py 23 1.717173 1 C py - 10 0.991946 1 C px 22 -0.992131 1 C px - 14 0.977380 1 C py 13 -0.564701 1 C px - 17 -0.518567 1 C py 16 0.299613 1 C px - 20 0.225792 1 C py + 12 1.398016 1 C pz 24 -1.398277 1 C pz + 10 1.369852 1 C px 22 -1.370108 1 C px + 15 -0.795871 1 C pz 13 -0.779838 1 C px + 18 0.422265 1 C pz 16 0.413758 1 C px + 11 0.317167 1 C py 23 -0.317227 1 C py Vector 84 Occ=0.000000D+00 E= 2.637504D+01 - MO Center= 1.9D-16, -2.8D-17, 3.4D-17, r^2= 1.1D-01 + MO Center= -1.0D-16, 4.5D-16, -1.6D-17, r^2= 1.1D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 0.998986 1 C d 0 36 -0.571869 1 C d 0 - 49 -0.499675 1 C d -2 41 0.349426 1 C d 0 - 53 -0.288067 1 C d 2 34 0.286039 1 C d -2 - 39 -0.174777 1 C d -2 38 0.164904 1 C d 2 - 46 -0.159597 1 C d 0 + 50 0.776642 1 C d -1 49 -0.681974 1 C d -2 + 35 -0.444588 1 C d -1 53 0.444429 1 C d 2 + 34 0.390395 1 C d -2 40 0.271654 1 C d -1 + 38 -0.254413 1 C d 2 52 0.248017 1 C d 1 + 39 -0.238541 1 C d -2 43 0.155453 1 C d 2 Vector 85 Occ=0.000000D+00 E= 2.637504D+01 - MO Center= 2.5D-16, 2.2D-18, -3.3D-17, r^2= 1.1D-01 + MO Center= -3.4D-16, -3.2D-17, 2.4D-16, r^2= 1.1D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 52 0.998804 1 C d 1 50 -0.577080 1 C d -1 - 37 -0.571765 1 C d 1 42 0.349362 1 C d 1 - 35 0.330349 1 C d -1 40 -0.201851 1 C d -1 - 47 -0.159568 1 C d 1 + 53 0.729278 1 C d 2 52 0.536896 1 C d 1 + 51 0.499027 1 C d 0 49 0.461141 1 C d -2 + 38 -0.417475 1 C d 2 37 -0.307346 1 C d 1 + 36 -0.285668 1 C d 0 34 -0.263980 1 C d -2 + 43 0.255087 1 C d 2 50 -0.221036 1 C d -1 Vector 86 Occ=0.000000D+00 E= 2.642040D+01 - MO Center= 1.8D-16, 8.0D-17, 7.2D-18, r^2= 1.1D-01 + MO Center= 3.4D-17, -3.0D-16, -2.1D-16, r^2= 1.1D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 0.998752 1 C d -1 52 0.577049 1 C d 1 - 35 -0.572579 1 C d -1 40 0.349734 1 C d -1 - 37 -0.330819 1 C d 1 42 0.202066 1 C d 1 - 45 -0.159642 1 C d -1 + 50 0.792217 1 C d -1 49 0.738188 1 C d -2 + 35 -0.454173 1 C d -1 34 -0.423199 1 C d -2 + 53 -0.352264 1 C d 2 40 0.277412 1 C d -1 + 39 0.258492 1 C d -2 38 0.201951 1 C d 2 + 52 0.183520 1 C d 1 Vector 87 Occ=0.000000D+00 E= 2.642040D+01 - MO Center= 2.7D-16, -6.4D-17, 1.8D-17, r^2= 1.1D-01 + MO Center= -2.8D-16, 1.8D-17, 1.4D-16, r^2= 1.1D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 53 0.999296 1 C d 2 49 -0.576106 1 C d -2 - 38 -0.572891 1 C d 2 43 0.349925 1 C d 2 - 34 0.330278 1 C d -2 39 -0.201736 1 C d -2 - 48 -0.159729 1 C d 2 + 51 0.998821 1 C d 0 36 -0.572618 1 C d 0 + 53 -0.522987 1 C d 2 41 0.349758 1 C d 0 + 38 0.299826 1 C d 2 49 -0.243231 1 C d -2 + 43 -0.183135 1 C d 2 46 -0.159653 1 C d 0 Vector 88 Occ=0.000000D+00 E= 2.643532D+01 - MO Center= 2.0D-16, -1.4D-16, -2.6D-17, r^2= 1.1D-01 + MO Center= -4.0D-16, -2.9D-17, 3.0D-17, r^2= 1.1D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.865395 1 C d -2 51 0.576721 1 C d 0 - 53 0.498910 1 C d 2 34 -0.496358 1 C d -2 - 36 -0.330785 1 C d 0 39 0.303136 1 C d -2 - 38 -0.286156 1 C d 2 41 0.202017 1 C d 0 - 43 0.174761 1 C d 2 + 52 0.973150 1 C d 1 37 -0.558162 1 C d 1 + 53 -0.451214 1 C d 2 42 0.340881 1 C d 1 + 51 -0.283379 1 C d 0 38 0.258799 1 C d 2 + 50 -0.225317 1 C d -1 49 -0.220778 1 C d -2 + 36 0.162535 1 C d 0 43 -0.158054 1 C d 2 - Vector 89 Occ=0.000000D+00 E= 3.520177D+01 - MO Center= 5.1D-17, 1.6D-16, 9.5D-17, r^2= 1.4D-01 + Vector 89 Occ=0.000000D+00 E= 3.520176D+01 + MO Center= 4.4D-16, 4.5D-16, -3.7D-18, r^2= 1.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 10.107443 1 C s 6 6.793142 1 C s - 1 4.180155 1 C s 7 -1.860925 1 C s - 3 1.694535 1 C s 4 -1.183806 1 C s - 5 0.570961 1 C s 8 0.510409 1 C s + 2 10.107423 1 C s 6 6.793142 1 C s + 1 4.180134 1 C s 7 -1.860923 1 C s + 3 1.694532 1 C s 4 -1.183803 1 C s + 5 0.570960 1 C s 8 0.510410 1 C s 9 -0.166050 1 C s - Vector 90 Occ=0.000000D+00 E= 6.630290D+01 - MO Center= 2.3D-16, -2.6D-17, -1.5D-17, r^2= 5.9D-02 + Vector 90 Occ=0.000000D+00 E= 6.630291D+01 + MO Center= -7.4D-17, -1.4D-16, 1.3D-16, r^2= 5.9D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 24 1.803929 1 C pz 27 -1.704877 1 C pz - 12 -1.032950 1 C pz 15 0.517579 1 C pz - 18 -0.274524 1 C pz 30 0.172721 1 C pz + 23 1.667254 1 C py 26 -1.575707 1 C py + 11 -0.954688 1 C py 24 -0.636468 1 C pz + 27 0.601520 1 C pz 14 0.478365 1 C py + 12 0.364448 1 C pz 22 0.263528 1 C px + 17 -0.253725 1 C py 25 -0.249057 1 C px - Vector 91 Occ=0.000000D+00 E= 6.630290D+01 - MO Center= 2.2D-16, -2.9D-17, 6.4D-18, r^2= 5.9D-02 + Vector 91 Occ=0.000000D+00 E= 6.630291D+01 + MO Center= 1.5D-16, -1.3D-16, -1.5D-16, r^2= 5.9D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 1.561967 1 C px 25 -1.476201 1 C px - 23 0.902452 1 C py 10 -0.894399 1 C px - 26 -0.852900 1 C py 11 -0.516754 1 C py - 13 0.448156 1 C px 14 0.258930 1 C py - 16 -0.237702 1 C px + 22 1.277336 1 C px 25 -1.207198 1 C px + 24 -1.109692 1 C pz 27 1.048760 1 C pz + 10 -0.731416 1 C px 12 0.635422 1 C pz + 23 -0.625517 1 C py 26 0.591171 1 C py + 13 0.366490 1 C px 11 0.358178 1 C py Vector 92 Occ=0.000000D+00 E= 6.634334D+01 - MO Center= 2.1D-16, 1.6D-17, -2.7D-17, r^2= 5.9D-02 + MO Center= 1.7D-17, -2.4D-16, -3.1D-16, r^2= 5.9D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 1.562781 1 C py 26 -1.476138 1 C py - 22 -0.902928 1 C px 11 -0.895168 1 C py - 25 0.852868 1 C px 10 0.517201 1 C px - 14 0.448503 1 C py 13 -0.259132 1 C px - 17 -0.237814 1 C py + 24 1.272557 1 C pz 22 1.246920 1 C px + 27 -1.202005 1 C pz 25 -1.177790 1 C px + 12 -0.728927 1 C pz 10 -0.714242 1 C px + 15 0.365212 1 C pz 13 0.357854 1 C px + 23 0.288704 1 C py 26 -0.272698 1 C py Vector 93 Occ=0.000000D+00 E= 9.865573D+01 - MO Center= 2.5D-16, -1.9D-17, -1.7D-17, r^2= 2.6D-02 + MO Center= -6.5D-17, -9.0D-17, 8.5D-17, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 81 0.790987 1 C f 0 79 -0.530801 1 C f -2 - 83 -0.306016 1 C f 2 + 83 0.579190 1 C f 2 84 0.471191 1 C f 3 + 78 -0.397965 1 C f -3 82 0.332539 1 C f 1 + 79 0.296069 1 C f -2 81 0.282030 1 C f 0 Vector 94 Occ=0.000000D+00 E= 9.865573D+01 - MO Center= 2.2D-16, -4.1D-17, 2.8D-17, r^2= 2.6D-02 + MO Center= 2.8D-19, 8.3D-17, -2.0D-17, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 82 0.838817 1 C f 1 80 -0.484641 1 C f -1 - 78 0.250132 1 C f -3 + 79 0.544939 1 C f -2 78 -0.476244 1 C f -3 + 80 -0.473097 1 C f -1 84 -0.401919 1 C f 3 + 83 -0.280092 1 C f 2 Vector 95 Occ=0.000000D+00 E= 9.867875D+01 - MO Center= 2.3D-16, 1.5D-17, -1.5D-17, r^2= 2.6D-02 + MO Center= -7.2D-17, -4.8D-18, 9.9D-17, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 80 0.684899 1 C f -1 84 -0.612704 1 C f 3 - 82 0.395714 1 C f 1 + 80 0.767994 1 C f -1 78 -0.460976 1 C f -3 + 84 -0.403673 1 C f 3 82 0.187581 1 C f 1 Vector 96 Occ=0.000000D+00 E= 9.867875D+01 - MO Center= 2.2D-16, -4.3D-17, -1.4D-18, r^2= 2.6D-02 + MO Center= 1.4D-16, 8.4D-17, -1.4D-16, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 83 0.866809 1 C f 2 79 -0.499725 1 C f -2 + 81 0.686573 1 C f 0 84 -0.491108 1 C f 3 + 78 0.426487 1 C f -3 82 0.262197 1 C f 1 + 83 0.155673 1 C f 2 Vector 97 Occ=0.000000D+00 E= 9.869254D+01 - MO Center= 2.3D-16, -2.6D-17, 3.9D-17, r^2= 2.6D-02 + MO Center= -4.2D-17, 9.6D-18, -1.2D-17, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 79 0.685271 1 C f -2 81 0.612702 1 C f 0 - 83 0.395065 1 C f 2 + 79 0.678392 1 C f -2 83 -0.385557 1 C f 2 + 80 0.381086 1 C f -1 84 0.349154 1 C f 3 + 78 0.334344 1 C f -3 Vector 98 Occ=0.000000D+00 E= 9.869254D+01 - MO Center= 2.1D-16, -4.1D-17, 1.3D-18, r^2= 2.6D-02 + MO Center= 8.3D-17, 4.0D-17, -1.3D-16, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 78 0.968767 1 C f -3 82 -0.216585 1 C f 1 + 81 0.635552 1 C f 0 82 -0.614061 1 C f 1 + 78 -0.279397 1 C f -3 79 -0.243431 1 C f -2 + 84 0.208729 1 C f 3 83 -0.183012 1 C f 2 Vector 99 Occ=0.000000D+00 E= 9.869713D+01 - MO Center= 1.9D-16, 2.2D-17, -1.9D-17, r^2= 2.6D-02 + MO Center= -4.6D-16, 1.7D-16, -4.4D-16, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 84 0.790997 1 C f 3 80 0.530520 1 C f -1 - 82 0.306519 1 C f 1 + 82 0.628848 1 C f 1 83 -0.617074 1 C f 2 + 79 -0.301933 1 C f -2 84 0.218880 1 C f 3 + 81 0.181440 1 C f 0 78 -0.177933 1 C f -3 Vector 100 Occ=0.000000D+00 E= 1.151039D+02 - MO Center= 2.7D-16, -6.7D-18, 1.2D-17, r^2= 2.6D-02 + MO Center= -6.5D-17, 7.6D-17, -8.3D-18, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 56 1.000215 1 C d 0 54 -0.500289 1 C d -2 - 51 -0.495685 1 C d 0 58 -0.288423 1 C d 2 - 49 0.247933 1 C d -2 36 0.191588 1 C d 0 + 55 -0.806119 1 C d -1 54 0.761221 1 C d -2 + 50 0.399496 1 C d -1 49 -0.377245 1 C d -2 + 58 -0.290293 1 C d 2 35 -0.154410 1 C d -1 Vector 101 Occ=0.000000D+00 E= 1.151039D+02 - MO Center= 2.0D-16, -2.7D-17, -1.3D-17, r^2= 2.6D-02 + MO Center= 1.1D-16, -8.4D-17, -1.1D-16, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 57 1.000033 1 C d 1 55 -0.577789 1 C d -1 - 52 -0.495595 1 C d 1 50 0.286340 1 C d -1 - 37 0.191553 1 C d 1 + 58 0.804291 1 C d 2 57 0.576300 1 C d 1 + 56 0.501151 1 C d 0 53 -0.398590 1 C d 2 + 54 0.316142 1 C d -2 52 -0.285602 1 C d 1 + 51 -0.248360 1 C d 0 49 -0.156673 1 C d -2 + 38 0.154059 1 C d 2 Vector 102 Occ=0.000000D+00 E= 1.151263D+02 - MO Center= 1.9D-16, -6.0D-17, -2.8D-17, r^2= 2.6D-02 + MO Center= -1.1D-16, 2.9D-17, -9.6D-17, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 58 1.000570 1 C d 2 54 -0.576837 1 C d -2 - 53 -0.495986 1 C d 2 49 0.285940 1 C d -2 - 38 0.191737 1 C d 2 + 55 0.792976 1 C d -1 54 0.742577 1 C d -2 + 50 -0.393081 1 C d -1 49 -0.368098 1 C d -2 + 58 -0.345129 1 C d 2 57 0.183794 1 C d 1 + 53 0.171082 1 C d 2 35 0.151956 1 C d -1 Vector 103 Occ=0.000000D+00 E= 1.151263D+02 - MO Center= 2.4D-16, -3.0D-17, 5.4D-17, r^2= 2.6D-02 + MO Center= -1.2D-16, -1.3D-16, 2.2D-16, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 55 1.000025 1 C d -1 57 0.577781 1 C d 1 - 50 -0.495716 1 C d -1 52 -0.286408 1 C d 1 - 35 0.191633 1 C d -1 + 56 0.999805 1 C d 0 58 -0.528695 1 C d 2 + 51 -0.495607 1 C d 0 53 0.262076 1 C d 2 + 54 -0.232859 1 C d -2 36 0.191591 1 C d 0 Vector 104 Occ=0.000000D+00 E= 1.151337D+02 - MO Center= 2.2D-16, -1.4D-17, 2.2D-17, r^2= 2.6D-02 + MO Center= 4.0D-16, -3.0D-17, 6.7D-16, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 54 0.866532 1 C d -2 56 0.577478 1 C d 0 - 58 0.499566 1 C d 2 49 -0.429578 1 C d -2 - 51 -0.286281 1 C d 0 53 -0.247657 1 C d 2 - 34 0.166074 1 C d -2 + 57 0.974428 1 C d 1 52 -0.483067 1 C d 1 + 58 -0.451806 1 C d 2 56 -0.283751 1 C d 0 + 55 -0.225613 1 C d -1 53 0.223980 1 C d 2 + 54 -0.221068 1 C d -2 37 0.186753 1 C d 1 - Vector 105 Occ=0.000000D+00 E= 1.215482D+02 - MO Center= 2.5D-16, 5.2D-17, -2.5D-17, r^2= 4.3D-02 + Vector 105 Occ=0.000000D+00 E= 1.215483D+02 + MO Center= -1.5D-16, -3.4D-18, -1.0D-16, r^2= 4.3D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 5.715575 1 C s 6 4.392563 1 C s - 7 -3.722977 1 C s 1 2.655251 1 C s - 8 2.664212 1 C s 3 0.847036 1 C s - 4 -0.593581 1 C s 5 0.288850 1 C s + 2 5.715567 1 C s 6 4.392566 1 C s + 7 -3.722976 1 C s 1 2.655238 1 C s + 8 2.664213 1 C s 3 0.847036 1 C s + 4 -0.593580 1 C s 5 0.288850 1 C s Vector 106 Occ=0.000000D+00 E= 2.248202D+02 - MO Center= 2.3D-16, -3.7D-17, -4.6D-18, r^2= 1.8D-02 + MO Center= 6.3D-18, 1.9D-17, 1.2D-17, r^2= 1.8D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 30 1.589602 1 C pz 27 -1.570140 1 C pz - 24 0.950457 1 C pz 12 -0.487795 1 C pz - 15 0.245604 1 C pz + 29 -1.351525 1 C py 26 1.334978 1 C py + 23 -0.808106 1 C py 30 0.721667 1 C pz + 27 -0.712832 1 C pz 24 0.431500 1 C pz + 28 -0.423580 1 C px 25 0.418395 1 C px + 11 0.414737 1 C py 22 -0.253268 1 C px Vector 107 Occ=0.000000D+00 E= 2.248202D+02 - MO Center= 2.6D-16, -2.2D-17, -3.6D-20, r^2= 1.8D-02 + MO Center= 1.4D-17, -2.2D-17, -5.3D-17, r^2= 1.8D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 28 1.376385 1 C px 25 -1.359534 1 C px - 22 0.822970 1 C px 29 0.795235 1 C py - 26 -0.785499 1 C py 23 0.475488 1 C py - 10 -0.422366 1 C px 11 -0.244031 1 C py - 13 0.212661 1 C px + 28 -1.068354 1 C px 25 1.055274 1 C px + 30 0.865964 1 C pz 27 -0.855362 1 C pz + 29 0.797226 1 C py 26 -0.787466 1 C py + 22 -0.638792 1 C px 24 0.517779 1 C pz + 23 0.476679 1 C py 10 0.327842 1 C px Vector 108 Occ=0.000000D+00 E= 2.248392D+02 - MO Center= 2.5D-16, -5.9D-17, 2.3D-17, r^2= 1.8D-02 + MO Center= -1.3D-16, 2.1D-17, -8.2D-17, r^2= 1.8D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 29 1.376404 1 C py 26 -1.359687 1 C py - 23 0.823160 1 C py 28 -0.795245 1 C px - 25 0.785586 1 C px 22 -0.475597 1 C px - 11 -0.422488 1 C py 10 0.244101 1 C px - 14 0.212715 1 C py + 30 -1.120792 1 C pz 27 1.107180 1 C pz + 28 -1.098213 1 C px 25 1.084875 1 C px + 24 -0.670291 1 C pz 22 -0.656788 1 C px + 12 0.344028 1 C pz 10 0.337097 1 C px + 29 -0.254274 1 C py 26 0.251186 1 C py Vector 109 Occ=0.000000D+00 E= 5.084469D+02 - MO Center= 2.3D-16, -3.4D-17, 1.7D-19, r^2= 1.0D-02 + MO Center= 1.3D-17, -2.3D-17, 1.9D-17, r^2= 1.0D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 1 68.411147 1 C s 2 43.112051 1 C s - 6 -13.880356 1 C s 7 -7.956733 1 C s - 8 -7.232811 1 C s 3 -0.260955 1 C s - 4 0.205742 1 C s + 1 68.411149 1 C s 2 43.112056 1 C s + 6 -13.880353 1 C s 7 -7.956734 1 C s + 8 -7.232810 1 C s 3 -0.260953 1 C s + 4 0.205741 1 C s Final MO vectors @@ -1223,2028 +1317,2028 @@ 1 2 3 4 5 6 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.99370 0.00059 0.00000 0.00000 -0.00000 -0.07328 - 2 0.00103 0.34491 0.00000 0.00000 -0.00000 -0.20048 - 3 0.01599 0.28105 0.00000 0.00000 -0.00000 -0.20143 - 4 -0.00368 0.59184 -0.00000 -0.00000 0.00000 0.25698 - 5 0.00171 0.27154 0.00000 0.00000 -0.00000 -1.38209 - 6 0.00044 0.00026 0.00000 0.00000 -0.00000 -0.02902 - 7 -0.00002 -0.00008 -0.00000 -0.00000 -0.00000 0.00059 - 8 0.00005 0.00007 0.00000 0.00000 -0.00000 -0.00160 - 9 -0.00044 0.00291 -0.00000 -0.00000 0.00000 1.82207 - 10 -0.00000 -0.00000 -0.08330 0.00009 0.08364 -0.00000 - 11 -0.00000 0.00000 0.14418 0.00010 0.04833 0.00000 - 12 -0.00000 -0.00000 -0.00007 0.09660 -0.00013 0.00000 - 13 0.00000 -0.00000 -0.16281 0.00018 0.15876 -0.00000 - 14 -0.00000 0.00000 0.28179 0.00019 0.09173 0.00000 - 15 0.00000 0.00000 -0.00014 0.18336 -0.00025 0.00000 - 16 -0.00000 -0.00000 -0.22105 0.00029 0.25980 -0.00000 - 17 0.00000 0.00000 0.38259 0.00032 0.15011 0.00000 - 18 -0.00000 -0.00000 -0.00019 0.30005 -0.00041 0.00000 - 19 0.00000 0.00000 -0.14455 0.00023 0.20585 0.00000 - 20 -0.00000 -0.00000 0.25018 0.00025 0.11893 -0.00000 - 21 0.00000 0.00000 -0.00012 0.23774 -0.00033 0.00000 - 22 0.00000 -0.00000 -0.00009 -0.00000 -0.00001 0.00000 - 23 0.00000 -0.00000 0.00016 -0.00000 -0.00000 -0.00000 - 24 0.00000 0.00000 -0.00000 -0.00001 0.00000 0.00000 - 25 -0.00000 0.00000 0.00016 -0.00000 -0.00005 0.00000 - 26 -0.00000 0.00000 -0.00028 -0.00000 -0.00003 0.00000 - 27 0.00000 -0.00000 0.00000 -0.00006 0.00000 -0.00000 - 28 0.00000 -0.00000 -0.00012 0.00000 0.00013 -0.00000 - 29 0.00000 -0.00000 0.00022 0.00000 0.00007 -0.00000 - 30 -0.00000 0.00000 -0.00000 0.00015 -0.00000 0.00000 - 31 0.00000 -0.00000 -0.01189 0.00052 0.45726 -0.00000 - 32 -0.00000 0.00000 0.02059 0.00056 0.26419 0.00000 - 33 -0.00000 -0.00000 -0.00001 0.52810 -0.00073 -0.00000 - 34 -0.00006 -0.00144 0.00000 -0.00000 -0.00000 -0.00044 - 35 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 36 -0.00004 -0.00096 0.00000 -0.00000 0.00000 -0.00029 - 37 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 38 -0.00004 -0.00083 0.00000 0.00000 0.00000 -0.00025 - 39 -0.00060 0.00027 -0.00000 -0.00000 -0.00000 0.00004 - 40 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 41 -0.00040 0.00018 -0.00000 -0.00000 0.00000 0.00003 - 42 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 43 -0.00035 0.00016 0.00000 -0.00000 0.00000 0.00003 - 44 -0.00001 -0.00630 0.00000 -0.00000 0.00000 -0.00795 - 45 -0.00000 -0.00001 0.00000 -0.00000 0.00000 -0.00001 - 46 -0.00000 -0.00420 0.00000 -0.00000 0.00000 -0.00530 - 47 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 48 -0.00000 -0.00363 0.00000 0.00000 0.00000 -0.00458 - 49 0.00037 -0.00036 -0.00000 -0.00000 -0.00000 0.00010 - 50 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 51 0.00025 -0.00024 -0.00000 -0.00000 0.00000 0.00007 - 52 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 53 0.00021 -0.00021 0.00000 -0.00000 -0.00000 0.00006 - 54 0.00001 0.00001 -0.00000 -0.00000 -0.00000 -0.00001 - 55 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 56 0.00001 0.00001 0.00000 0.00000 -0.00000 -0.00001 - 57 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 58 0.00001 0.00001 0.00000 0.00000 0.00000 -0.00000 - 59 -0.00004 -0.00333 -0.00000 -0.00000 0.00000 0.04652 - 60 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00004 - 61 -0.00002 -0.00222 -0.00000 -0.00000 -0.00000 0.03100 - 62 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00002 - 63 -0.00002 -0.00192 -0.00000 -0.00000 -0.00000 0.02682 - 64 0.00000 0.00000 -0.00000 0.00000 0.00204 0.00000 - 65 0.00000 -0.00000 -0.00000 0.00144 -0.00000 0.00000 - 66 -0.00000 0.00000 0.00219 0.00000 0.00026 0.00000 - 67 -0.00000 0.00000 -0.00000 0.00129 -0.00000 0.00000 - 68 0.00000 0.00000 0.00127 0.00000 -0.00046 0.00000 - 69 0.00000 0.00000 -0.00000 0.00083 -0.00000 0.00000 - 70 0.00000 0.00000 0.00326 0.00000 0.00000 0.00000 - 71 -0.00000 -0.00000 -0.00001 0.00001 0.00379 -0.00000 - 72 0.00000 0.00000 -0.00001 0.00268 -0.00000 0.00000 - 73 0.00000 0.00000 0.00495 0.00000 0.00049 -0.00000 - 74 -0.00000 -0.00000 -0.00001 0.00240 -0.00000 0.00000 - 75 -0.00000 -0.00000 0.00286 0.00000 -0.00085 0.00000 - 76 -0.00000 0.00000 -0.00000 0.00155 -0.00000 0.00000 - 77 -0.00000 -0.00000 0.00737 0.00000 0.00000 -0.00000 - 78 0.00000 -0.00000 -0.00000 0.00000 0.00001 0.00000 - 79 0.00000 -0.00000 -0.00000 0.00001 -0.00000 0.00000 - 80 -0.00000 0.00000 0.00001 0.00000 0.00000 0.00000 - 81 0.00000 0.00000 -0.00000 0.00001 -0.00000 0.00000 - 82 -0.00000 -0.00000 0.00001 0.00000 -0.00000 0.00000 - 83 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 84 -0.00000 -0.00000 0.00002 0.00000 0.00000 -0.00000 - 85 0.00000 0.00000 -0.00001 0.00002 0.01143 0.00000 - 86 -0.00000 -0.00000 -0.00001 0.00809 -0.00001 0.00000 - 87 0.00000 0.00000 0.00412 0.00001 0.00148 0.00000 - 88 -0.00000 0.00000 -0.00000 0.00723 -0.00001 0.00000 - 89 0.00000 0.00000 0.00238 0.00000 -0.00256 0.00000 - 90 -0.00000 0.00000 -0.00000 0.00466 -0.00001 0.00000 - 91 0.00000 0.00000 0.00614 0.00000 0.00001 0.00000 - 92 -0.00001 -0.00004 -0.00000 0.00000 -0.00000 -0.00006 - 93 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 94 -0.00001 -0.00003 0.00000 0.00000 -0.00000 -0.00004 - 95 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 96 -0.00001 -0.00003 0.00000 0.00000 -0.00000 -0.00003 - 97 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 98 -0.00000 -0.00002 0.00000 0.00000 -0.00000 -0.00002 - 99 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 100 0.00001 0.00002 0.00000 -0.00000 0.00000 0.00003 - 101 -0.00000 -0.00026 0.00000 -0.00000 0.00000 0.00019 - 102 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 103 -0.00000 -0.00020 -0.00000 -0.00000 -0.00000 0.00015 - 104 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 105 -0.00000 -0.00015 0.00000 -0.00000 0.00000 0.00011 - 106 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 107 -0.00000 -0.00011 -0.00000 -0.00000 0.00000 0.00009 - 108 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 109 0.00000 0.00015 0.00000 0.00000 -0.00000 -0.00011 + 1 0.99370 0.00059 -0.00000 0.00000 -0.00000 -0.07328 + 2 0.00103 0.34491 -0.00000 0.00000 -0.00000 -0.20048 + 3 0.01599 0.28105 -0.00000 0.00000 -0.00000 -0.20143 + 4 -0.00368 0.59184 0.00000 0.00000 0.00000 0.25698 + 5 0.00171 0.27154 -0.00000 0.00000 -0.00000 -1.38208 + 6 0.00044 0.00026 -0.00000 0.00000 -0.00000 -0.02902 + 7 -0.00002 -0.00008 0.00000 -0.00000 0.00000 0.00059 + 8 0.00005 0.00007 -0.00000 -0.00000 -0.00000 -0.00160 + 9 -0.00044 0.00291 0.00000 -0.00000 0.00000 1.82207 + 10 -0.00000 -0.00000 0.11504 -0.01785 0.06752 -0.00000 + 11 0.00000 0.00000 0.02664 0.09485 0.00981 -0.00000 + 12 0.00000 -0.00000 0.11740 -0.00403 -0.06838 -0.00000 + 13 0.00000 -0.00000 0.22484 -0.03389 0.12816 -0.00000 + 14 -0.00000 -0.00000 0.05206 0.18004 0.01861 -0.00000 + 15 -0.00000 0.00000 0.22946 -0.00764 -0.12980 -0.00000 + 16 -0.00000 0.00000 0.30526 -0.05545 0.20972 -0.00000 + 17 0.00000 0.00000 0.07068 0.29461 0.03046 -0.00000 + 18 -0.00000 -0.00000 0.31154 -0.01250 -0.21241 0.00000 + 19 -0.00000 0.00000 0.19962 -0.04394 0.16617 -0.00000 + 20 -0.00000 -0.00000 0.04622 0.23343 0.02413 -0.00000 + 21 0.00000 0.00000 0.20372 -0.00991 -0.16830 -0.00000 + 22 0.00000 -0.00000 0.00013 0.00000 -0.00000 -0.00000 + 23 -0.00000 -0.00000 0.00003 -0.00001 -0.00000 -0.00000 + 24 -0.00000 -0.00000 0.00013 0.00000 0.00000 -0.00000 + 25 -0.00000 -0.00000 -0.00023 0.00001 -0.00004 -0.00000 + 26 0.00000 -0.00000 -0.00005 -0.00005 -0.00001 0.00000 + 27 0.00000 0.00000 -0.00023 0.00000 0.00004 -0.00000 + 28 0.00000 0.00000 0.00017 -0.00003 0.00010 -0.00000 + 29 -0.00000 -0.00000 0.00004 0.00014 0.00001 -0.00000 + 30 -0.00000 -0.00000 0.00018 -0.00001 -0.00010 -0.00000 + 31 -0.00000 -0.00000 0.01643 -0.09760 0.36912 0.00000 + 32 0.00000 0.00000 0.00380 0.51854 0.05361 0.00000 + 33 -0.00000 0.00000 0.01676 -0.02201 -0.37385 0.00000 + 34 0.00002 0.00037 0.00000 -0.00000 -0.00000 0.00011 + 35 0.00002 0.00037 -0.00000 0.00000 0.00000 0.00011 + 36 0.00002 0.00047 -0.00000 0.00000 -0.00000 0.00014 + 37 -0.00007 -0.00162 -0.00000 0.00000 0.00000 -0.00049 + 38 0.00003 0.00075 -0.00000 0.00000 -0.00000 0.00023 + 39 0.00015 -0.00007 -0.00000 -0.00000 0.00000 -0.00001 + 40 0.00016 -0.00007 0.00000 0.00000 0.00000 -0.00001 + 41 0.00020 -0.00009 0.00000 0.00000 0.00000 -0.00001 + 42 -0.00068 0.00031 0.00000 -0.00000 -0.00000 0.00005 + 43 0.00031 -0.00014 0.00000 0.00000 0.00000 -0.00002 + 44 0.00000 0.00161 0.00000 -0.00000 -0.00000 0.00203 + 45 0.00000 0.00164 -0.00000 0.00000 -0.00000 0.00207 + 46 0.00000 0.00206 -0.00000 -0.00000 -0.00000 0.00260 + 47 -0.00001 -0.00709 -0.00000 0.00000 0.00000 -0.00894 + 48 0.00000 0.00329 -0.00000 0.00000 -0.00000 0.00414 + 49 -0.00010 0.00009 0.00000 -0.00000 -0.00000 -0.00003 + 50 -0.00010 0.00009 0.00000 0.00000 -0.00000 -0.00003 + 51 -0.00012 0.00012 0.00000 0.00000 0.00000 -0.00003 + 52 0.00042 -0.00041 -0.00000 -0.00000 -0.00000 0.00012 + 53 -0.00019 0.00019 0.00000 0.00000 -0.00000 -0.00005 + 54 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 55 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 56 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 57 0.00001 0.00001 0.00000 0.00000 0.00000 -0.00001 + 58 -0.00001 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 59 0.00001 0.00085 -0.00000 -0.00000 0.00000 -0.01187 + 60 0.00001 0.00087 0.00000 0.00000 0.00000 -0.01211 + 61 0.00001 0.00109 -0.00000 0.00000 0.00000 -0.01523 + 62 -0.00004 -0.00375 0.00000 0.00000 -0.00000 0.05231 + 63 0.00002 0.00174 0.00000 0.00000 0.00000 -0.02426 + 64 0.00000 0.00000 -0.00073 -0.00082 -0.00041 -0.00000 + 65 0.00000 0.00000 -0.00125 -0.00151 -0.00017 0.00000 + 66 -0.00000 0.00000 -0.00060 -0.00074 0.00034 -0.00000 + 67 -0.00000 -0.00000 0.00075 0.00008 0.00135 -0.00000 + 68 0.00000 0.00000 0.00260 -0.00025 -0.00127 -0.00000 + 69 0.00000 0.00000 -0.00255 0.00070 -0.00056 -0.00000 + 70 0.00000 0.00000 0.00090 -0.00061 0.00060 -0.00000 + 71 -0.00000 -0.00000 -0.00166 -0.00153 -0.00076 0.00000 + 72 -0.00000 -0.00000 -0.00282 -0.00280 -0.00031 -0.00000 + 73 -0.00000 -0.00000 -0.00136 -0.00138 0.00063 0.00000 + 74 0.00000 0.00000 0.00169 0.00015 0.00252 0.00000 + 75 -0.00000 -0.00000 0.00586 -0.00047 -0.00236 0.00000 + 76 -0.00000 -0.00000 -0.00575 0.00130 -0.00105 0.00000 + 77 -0.00000 -0.00000 0.00204 -0.00114 0.00111 -0.00000 + 78 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 79 -0.00000 0.00000 -0.00001 -0.00001 -0.00000 0.00000 + 80 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 81 0.00000 0.00000 0.00000 0.00000 0.00001 -0.00000 + 82 0.00000 0.00000 0.00002 -0.00000 -0.00001 -0.00000 + 83 0.00000 0.00000 -0.00002 0.00000 -0.00000 0.00000 + 84 0.00000 -0.00000 0.00001 -0.00000 0.00000 0.00000 + 85 0.00000 0.00000 -0.00138 -0.00460 -0.00229 -0.00000 + 86 0.00000 0.00000 -0.00234 -0.00845 -0.00093 0.00000 + 87 0.00000 0.00000 -0.00113 -0.00417 0.00191 -0.00000 + 88 -0.00000 -0.00000 0.00141 0.00045 0.00760 -0.00000 + 89 0.00000 0.00000 0.00488 -0.00141 -0.00711 -0.00000 + 90 0.00000 0.00000 -0.00479 0.00392 -0.00316 -0.00000 + 91 -0.00000 0.00000 0.00170 -0.00343 0.00335 -0.00000 + 92 -0.00000 -0.00001 -0.00000 0.00000 -0.00000 -0.00001 + 93 -0.00000 -0.00002 0.00000 -0.00000 0.00000 -0.00003 + 94 -0.00000 -0.00002 -0.00000 0.00000 -0.00000 -0.00003 + 95 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 96 0.00001 0.00003 -0.00000 0.00000 0.00000 0.00004 + 97 0.00000 0.00001 -0.00000 0.00000 -0.00000 0.00002 + 98 -0.00001 -0.00004 -0.00000 0.00000 0.00000 -0.00005 + 99 0.00001 0.00003 -0.00000 -0.00000 -0.00000 0.00004 + 100 -0.00000 -0.00001 -0.00000 0.00000 -0.00000 -0.00001 + 101 -0.00000 -0.00006 -0.00000 0.00000 0.00000 0.00004 + 102 -0.00000 -0.00013 -0.00000 -0.00000 -0.00000 0.00010 + 103 -0.00000 -0.00012 0.00000 -0.00000 0.00000 0.00009 + 104 -0.00000 -0.00002 0.00000 -0.00000 0.00000 0.00001 + 105 0.00000 0.00016 0.00000 0.00000 0.00000 -0.00012 + 106 0.00000 0.00007 -0.00000 -0.00000 0.00000 -0.00006 + 107 -0.00000 -0.00025 0.00000 -0.00000 -0.00000 0.00019 + 108 0.00000 0.00016 0.00000 0.00000 0.00000 -0.00012 + 109 -0.00000 -0.00005 -0.00000 -0.00000 -0.00000 0.00003 7 8 9 10 11 12 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 2 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 3 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 4 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 5 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 6 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 7 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 8 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 9 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 10 0.01362 -0.06278 -0.00053 -0.00000 0.00000 0.00000 - 11 -0.02358 -0.03627 -0.00034 -0.00000 -0.00000 -0.00000 - 12 0.00001 0.00063 -0.07251 0.00000 -0.00000 -0.00000 - 13 0.05534 -0.18185 -0.00154 -0.00000 0.00000 -0.00000 - 14 -0.09578 -0.10507 -0.00099 -0.00000 0.00000 -0.00000 - 15 0.00005 0.00183 -0.21002 0.00000 -0.00000 0.00000 - 16 -0.01283 -0.09161 -0.00078 -0.00000 0.00000 0.00000 - 17 0.02220 -0.05293 -0.00050 -0.00000 -0.00000 0.00000 - 18 -0.00001 0.00092 -0.10581 0.00000 -0.00000 -0.00000 - 19 0.26684 -0.70309 -0.00597 -0.00000 0.00000 -0.00000 - 20 -0.46185 -0.40622 -0.00385 -0.00000 0.00000 -0.00000 - 21 0.00023 0.00709 -0.81200 -0.00000 -0.00000 0.00000 - 22 0.00199 -0.00431 -0.00004 0.00000 0.00000 -0.00000 - 23 -0.00345 -0.00249 -0.00002 0.00000 0.00000 -0.00000 - 24 0.00000 0.00004 -0.00498 0.00000 -0.00000 0.00000 - 25 -0.00015 0.00030 0.00000 0.00000 -0.00000 -0.00000 - 26 0.00027 0.00017 0.00000 0.00000 -0.00000 0.00000 - 27 -0.00000 -0.00000 0.00034 0.00000 0.00000 -0.00000 - 28 0.00012 -0.00030 -0.00000 0.00000 0.00000 0.00000 - 29 -0.00020 -0.00018 -0.00000 -0.00000 0.00000 -0.00000 - 30 0.00000 0.00000 -0.00035 0.00000 -0.00000 0.00000 - 31 -0.63506 1.03003 0.00874 0.00000 -0.00000 0.00000 - 32 1.09915 0.59512 0.00564 -0.00000 0.00000 0.00000 - 33 -0.00054 -0.01039 1.18960 0.00000 0.00000 -0.00000 - 34 0.00000 -0.00000 0.00000 0.00000 0.00440 0.00001 - 35 0.00000 0.00000 -0.00000 0.00508 -0.00001 -0.00875 - 36 0.00000 -0.00000 0.00000 -0.00000 -0.00879 0.00001 - 37 -0.00000 0.00000 -0.00000 -0.00879 0.00000 -0.00506 - 38 0.00000 0.00000 -0.00000 -0.00000 0.00253 -0.00001 - 39 -0.00000 0.00000 -0.00000 -0.00003 -0.02964 -0.00009 - 40 -0.00000 -0.00000 0.00000 -0.03423 0.00004 0.06290 - 41 -0.00000 0.00000 -0.00000 0.00003 0.05925 -0.00005 - 42 0.00000 -0.00000 0.00000 0.05924 -0.00002 0.03634 - 43 -0.00000 -0.00000 0.00000 0.00002 -0.01708 0.00010 - 44 0.00000 -0.00000 0.00000 0.00009 0.08451 0.00025 - 45 -0.00000 0.00000 -0.00000 0.09760 -0.00013 -0.17062 - 46 0.00000 -0.00000 0.00000 -0.00009 -0.16896 0.00015 - 47 -0.00000 0.00000 -0.00000 -0.16893 0.00005 -0.09858 - 48 0.00000 0.00000 -0.00000 -0.00005 0.04872 -0.00027 - 49 -0.00000 0.00000 -0.00000 -0.00000 -0.00057 -0.00000 - 50 -0.00000 -0.00000 0.00000 -0.00066 0.00000 0.00121 - 51 -0.00000 0.00000 0.00000 0.00000 0.00114 -0.00000 - 52 -0.00000 -0.00000 0.00000 0.00114 -0.00000 0.00070 - 53 -0.00000 -0.00000 0.00000 0.00000 -0.00033 0.00000 - 54 0.00000 -0.00000 0.00000 0.00000 0.00007 0.00000 - 55 0.00000 0.00000 -0.00000 0.00008 -0.00000 -0.00015 - 56 -0.00000 0.00000 0.00000 -0.00000 -0.00014 0.00000 - 57 0.00000 0.00000 -0.00000 -0.00014 0.00000 -0.00009 - 58 0.00000 0.00000 -0.00000 -0.00000 0.00004 -0.00000 - 59 -0.00000 0.00000 -0.00000 -0.00049 -0.47622 -0.00140 - 60 -0.00000 -0.00000 0.00000 -0.55000 0.00071 0.95228 - 61 -0.00000 0.00000 0.00000 0.00052 0.95210 -0.00081 - 62 0.00000 -0.00000 0.00000 0.95193 -0.00029 0.55020 - 63 -0.00000 -0.00000 0.00000 0.00026 -0.27455 0.00149 - 64 0.00000 -0.00148 -0.00001 -0.00000 0.00000 -0.00000 - 65 0.00000 0.00001 -0.00104 -0.00000 0.00000 -0.00000 - 66 -0.00032 -0.00019 -0.00000 0.00000 0.00000 -0.00000 - 67 0.00000 0.00001 -0.00093 -0.00000 -0.00000 -0.00000 - 68 -0.00018 0.00033 0.00000 -0.00000 0.00000 -0.00000 - 69 0.00000 0.00001 -0.00060 0.00000 0.00000 0.00000 - 70 -0.00048 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 71 0.00000 -0.00555 -0.00005 0.00000 0.00000 0.00000 - 72 0.00000 0.00003 -0.00392 0.00000 -0.00000 0.00000 - 73 -0.00225 -0.00072 -0.00001 -0.00000 -0.00000 0.00000 - 74 0.00000 0.00003 -0.00351 0.00000 0.00000 0.00000 - 75 -0.00130 0.00124 0.00001 0.00000 -0.00000 0.00000 - 76 0.00000 0.00002 -0.00226 -0.00000 -0.00000 0.00000 - 77 -0.00335 -0.00001 -0.00000 0.00000 0.00000 0.00000 - 78 0.00000 -0.00001 -0.00000 -0.00000 -0.00000 0.00000 - 79 0.00000 0.00000 -0.00001 -0.00000 0.00000 -0.00000 - 80 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 81 0.00000 0.00000 -0.00001 -0.00000 -0.00000 0.00000 - 82 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 83 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 84 -0.00001 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 85 -0.00000 -0.00195 -0.00002 -0.00000 0.00000 -0.00000 - 86 -0.00000 0.00001 -0.00138 -0.00000 0.00000 -0.00000 - 87 0.00341 -0.00025 -0.00000 0.00000 0.00000 -0.00000 - 88 -0.00000 0.00001 -0.00123 -0.00000 -0.00000 -0.00000 - 89 0.00197 0.00044 0.00000 -0.00000 0.00000 -0.00000 - 90 -0.00000 0.00001 -0.00080 0.00000 -0.00000 -0.00000 - 91 0.00508 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 92 0.00000 0.00000 -0.00000 0.00000 0.00039 -0.00000 - 93 0.00000 -0.00000 0.00000 0.00064 -0.00000 0.00000 - 94 -0.00000 -0.00000 0.00000 0.00000 -0.00030 0.00000 - 95 -0.00000 -0.00000 0.00000 0.00012 -0.00000 -0.00060 - 96 0.00000 0.00000 -0.00000 -0.00000 -0.00039 0.00000 - 97 0.00000 -0.00000 0.00000 -0.00021 -0.00000 -0.00035 - 98 0.00000 -0.00000 -0.00000 -0.00000 -0.00017 0.00000 - 99 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00061 - 100 0.00000 -0.00000 -0.00000 -0.00000 -0.00023 -0.00000 - 101 -0.00000 0.00000 0.00000 -0.00000 -0.00233 0.00000 - 102 0.00000 0.00000 0.00000 -0.00381 0.00000 -0.00000 - 103 0.00000 -0.00000 -0.00000 -0.00000 0.00176 -0.00001 - 104 0.00000 0.00000 -0.00000 -0.00072 0.00000 0.00377 - 105 -0.00000 0.00000 0.00000 0.00000 0.00227 -0.00001 - 106 -0.00000 0.00000 -0.00000 0.00125 0.00000 0.00218 - 107 -0.00000 0.00000 0.00000 0.00000 0.00102 -0.00000 - 108 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00384 - 109 -0.00000 0.00000 0.00000 0.00000 0.00135 0.00001 + 1 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 2 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 3 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 4 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 6 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 7 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 8 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 9 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 10 -0.01881 0.01372 -0.05060 0.00000 0.00000 0.00000 + 11 -0.00436 -0.07115 -0.00781 0.00000 0.00000 -0.00000 + 12 -0.01920 0.00270 0.05135 -0.00000 -0.00000 -0.00000 + 13 -0.07642 0.03974 -0.14656 0.00000 0.00000 0.00000 + 14 -0.01769 -0.20609 -0.02261 0.00000 0.00000 -0.00000 + 15 -0.07799 0.00782 0.14874 0.00000 -0.00000 0.00000 + 16 0.01772 0.02002 -0.07383 0.00000 0.00000 0.00000 + 17 0.00410 -0.10383 -0.01139 0.00000 -0.00000 -0.00000 + 18 0.01808 0.00394 0.07493 -0.00000 0.00000 -0.00000 + 19 -0.36850 0.15363 -0.56663 0.00000 0.00000 0.00000 + 20 -0.08532 -0.79679 -0.08743 0.00000 0.00000 -0.00000 + 21 -0.37608 0.03023 0.57505 -0.00000 0.00000 0.00000 + 22 -0.00275 0.00094 -0.00347 0.00000 -0.00000 0.00000 + 23 -0.00064 -0.00488 -0.00054 -0.00000 0.00000 -0.00000 + 24 -0.00281 0.00019 0.00352 0.00000 -0.00000 0.00000 + 25 0.00021 -0.00007 0.00024 0.00000 0.00000 -0.00000 + 26 0.00005 0.00034 0.00004 0.00000 -0.00000 -0.00000 + 27 0.00022 -0.00001 -0.00024 -0.00000 0.00000 0.00000 + 28 -0.00016 0.00007 -0.00025 -0.00000 -0.00000 0.00000 + 29 -0.00004 -0.00035 -0.00004 -0.00000 0.00000 0.00000 + 30 -0.00016 0.00001 0.00025 0.00000 -0.00000 0.00000 + 31 0.87700 -0.22507 0.83012 -0.00000 -0.00000 -0.00000 + 32 0.20305 1.16732 0.12809 -0.00000 -0.00000 0.00000 + 33 0.89503 -0.04429 -0.84246 0.00000 -0.00000 -0.00000 + 34 -0.00000 0.00000 -0.00000 -0.00654 -0.00312 0.00164 + 35 -0.00000 0.00000 0.00000 0.00705 0.00091 -0.00063 + 36 -0.00000 0.00000 -0.00000 -0.00015 -0.00442 -0.00872 + 37 0.00000 0.00000 -0.00000 0.00145 -0.00500 -0.00009 + 38 -0.00000 -0.00000 0.00000 0.00291 -0.00693 0.00480 + 39 0.00000 -0.00000 0.00000 0.04407 0.02102 -0.01180 + 40 0.00000 -0.00000 -0.00000 -0.04750 -0.00610 0.00451 + 41 0.00000 -0.00000 -0.00000 0.00101 0.02978 0.06266 + 42 -0.00000 -0.00000 0.00000 -0.00980 0.03368 0.00062 + 43 0.00000 0.00000 0.00000 -0.01962 0.04670 -0.03450 + 44 -0.00000 0.00000 -0.00000 -0.12567 -0.05994 0.03202 + 45 -0.00000 0.00000 0.00000 0.13546 0.01740 -0.01224 + 46 -0.00000 0.00000 -0.00000 -0.00289 -0.08492 -0.16997 + 47 0.00000 0.00000 0.00000 0.02796 -0.09604 -0.00167 + 48 -0.00000 -0.00000 0.00000 0.05596 -0.13316 0.09359 + 49 0.00000 -0.00000 -0.00000 0.00085 0.00040 -0.00023 + 50 0.00000 -0.00000 -0.00000 -0.00091 -0.00012 0.00009 + 51 0.00000 -0.00000 -0.00000 0.00002 0.00057 0.00121 + 52 -0.00000 -0.00000 -0.00000 -0.00019 0.00065 0.00001 + 53 0.00000 0.00000 0.00000 -0.00038 0.00090 -0.00066 + 54 -0.00000 0.00000 -0.00000 -0.00011 -0.00005 0.00003 + 55 -0.00000 0.00000 0.00000 0.00011 0.00001 -0.00001 + 56 -0.00000 0.00000 0.00000 -0.00000 -0.00007 -0.00015 + 57 0.00000 0.00000 0.00000 0.00002 -0.00008 -0.00000 + 58 -0.00000 -0.00000 0.00000 0.00005 -0.00011 0.00008 + 59 0.00000 -0.00000 0.00000 0.70817 0.33779 -0.17870 + 60 0.00000 -0.00000 -0.00000 -0.76331 -0.09807 0.06832 + 61 0.00000 -0.00000 -0.00000 0.01629 0.47851 0.94870 + 62 -0.00000 -0.00000 0.00000 -0.15753 0.54119 0.00934 + 63 0.00000 0.00000 -0.00000 -0.31533 0.75038 -0.52234 + 64 0.00011 0.00059 0.00030 -0.00000 0.00000 0.00000 + 65 0.00018 0.00109 0.00013 0.00000 -0.00000 0.00000 + 66 0.00009 0.00054 -0.00024 -0.00000 0.00000 0.00000 + 67 -0.00011 -0.00005 -0.00098 -0.00000 0.00000 -0.00000 + 68 -0.00038 0.00018 0.00092 -0.00000 0.00000 0.00000 + 69 0.00037 -0.00051 0.00040 0.00000 -0.00000 -0.00000 + 70 -0.00013 0.00045 -0.00043 -0.00000 -0.00000 0.00000 + 71 0.00075 0.00223 0.00113 0.00000 -0.00000 -0.00000 + 72 0.00128 0.00410 0.00048 -0.00000 0.00000 -0.00000 + 73 0.00062 0.00203 -0.00091 0.00000 -0.00000 -0.00000 + 74 -0.00077 -0.00019 -0.00369 0.00000 -0.00000 -0.00000 + 75 -0.00267 0.00066 0.00346 0.00000 -0.00000 -0.00000 + 76 0.00262 -0.00191 0.00152 -0.00000 0.00000 0.00000 + 77 -0.00093 0.00168 -0.00162 0.00000 -0.00000 -0.00000 + 78 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 79 0.00000 0.00001 0.00000 0.00000 0.00000 0.00000 + 80 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 81 -0.00000 -0.00000 -0.00001 -0.00000 0.00000 -0.00000 + 82 -0.00000 0.00000 0.00001 0.00000 -0.00000 -0.00000 + 83 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 84 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 85 -0.00114 0.00078 0.00040 -0.00000 0.00000 0.00000 + 86 -0.00194 0.00144 0.00017 0.00000 -0.00000 -0.00000 + 87 -0.00094 0.00071 -0.00032 -0.00000 0.00000 -0.00000 + 88 0.00117 -0.00007 -0.00130 -0.00000 0.00000 0.00000 + 89 0.00404 0.00023 0.00122 -0.00000 0.00000 0.00000 + 90 -0.00397 -0.00067 0.00054 0.00000 0.00000 -0.00000 + 91 0.00141 0.00059 -0.00057 -0.00000 -0.00000 0.00000 + 92 0.00000 -0.00000 0.00000 0.00021 0.00026 -0.00015 + 93 -0.00000 -0.00000 0.00000 0.00018 0.00020 -0.00015 + 94 -0.00000 -0.00000 0.00000 -0.00033 -0.00003 0.00012 + 95 -0.00000 -0.00000 -0.00000 -0.00042 0.00004 0.00019 + 96 -0.00000 -0.00000 -0.00000 0.00002 0.00048 0.00017 + 97 -0.00000 0.00000 -0.00000 -0.00010 -0.00012 -0.00078 + 98 0.00000 -0.00000 0.00000 0.00016 -0.00008 0.00013 + 99 -0.00000 -0.00000 -0.00000 0.00013 -0.00025 0.00027 + 100 -0.00000 0.00000 -0.00000 -0.00025 0.00022 -0.00015 + 101 -0.00000 -0.00000 0.00000 -0.00122 -0.00156 0.00097 + 102 0.00000 0.00000 0.00000 -0.00107 -0.00116 0.00092 + 103 0.00000 0.00000 0.00000 0.00196 0.00016 -0.00075 + 104 0.00000 0.00000 0.00000 0.00246 -0.00025 -0.00118 + 105 -0.00000 0.00000 -0.00000 -0.00010 -0.00283 -0.00110 + 106 0.00000 -0.00000 0.00000 0.00060 0.00071 0.00492 + 107 -0.00000 0.00000 0.00000 -0.00094 0.00049 -0.00081 + 108 0.00000 0.00000 0.00000 -0.00079 0.00150 -0.00170 + 109 0.00000 -0.00000 0.00000 0.00146 -0.00129 0.00097 13 14 15 16 17 18 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 0.01378 0.00000 -0.00000 -0.00000 0.28335 - 2 -0.00000 0.02575 0.00000 -0.00000 -0.00000 0.26503 - 3 -0.00000 0.02840 0.00000 -0.00000 -0.00000 0.39536 - 4 -0.00000 -0.08084 -0.00000 0.00000 0.00000 -2.76908 - 5 -0.00000 0.17265 0.00000 -0.00000 -0.00000 3.78788 - 6 -0.00000 0.00568 0.00000 -0.00000 -0.00000 0.12248 - 7 0.00000 -0.00013 -0.00000 0.00000 -0.00000 -0.00254 - 8 -0.00000 0.00031 0.00000 -0.00000 -0.00000 0.00659 - 9 0.00000 -0.14002 -0.00000 0.00000 0.00000 -1.55998 - 10 0.00000 0.00000 0.08354 -0.15858 -0.00003 -0.00000 - 11 0.00000 0.00000 -0.14458 -0.09162 -0.00011 0.00000 - 12 0.00000 -0.00000 0.00007 0.00008 -0.18315 -0.00000 - 13 -0.00000 0.00000 0.02720 -0.07483 -0.00001 -0.00000 - 14 -0.00000 -0.00000 -0.04707 -0.04323 -0.00005 0.00000 - 15 0.00000 -0.00000 0.00002 0.00004 -0.08642 -0.00000 - 16 0.00000 -0.00000 0.51717 -1.00295 -0.00017 -0.00000 - 17 0.00000 0.00000 -0.89512 -0.57948 -0.00067 0.00000 - 18 0.00000 -0.00000 0.00044 0.00048 -1.15832 -0.00000 - 19 -0.00000 0.00000 -0.94485 1.56811 0.00027 0.00000 - 20 -0.00000 -0.00000 1.63534 0.90600 0.00105 -0.00000 - 21 0.00000 -0.00000 -0.00081 -0.00076 1.81102 0.00000 - 22 -0.00000 0.00000 -0.00949 0.01618 0.00000 0.00000 - 23 -0.00000 0.00000 0.01643 0.00935 0.00001 -0.00000 - 24 0.00000 -0.00000 -0.00001 -0.00001 0.01869 0.00000 - 25 0.00000 0.00000 0.00031 -0.00060 -0.00000 -0.00000 - 26 0.00000 -0.00000 -0.00054 -0.00035 -0.00000 0.00000 - 27 -0.00000 -0.00000 0.00000 0.00000 -0.00069 -0.00000 - 28 -0.00000 -0.00000 -0.00034 0.00056 0.00000 0.00000 - 29 -0.00000 0.00000 0.00060 0.00032 0.00000 -0.00000 - 30 0.00000 -0.00000 -0.00000 -0.00000 0.00064 0.00000 - 31 0.00000 -0.00000 0.39157 -0.63335 -0.00011 -0.00000 - 32 0.00000 0.00000 -0.67772 -0.36593 -0.00042 0.00000 - 33 -0.00000 0.00000 0.00033 0.00031 -0.73146 -0.00000 - 34 0.00505 -0.00758 -0.00000 0.00000 0.00000 0.00255 - 35 0.00001 -0.00001 -0.00000 -0.00000 0.00000 0.00000 - 36 -0.00000 -0.00505 -0.00000 -0.00000 -0.00000 0.00170 - 37 0.00001 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 38 -0.00876 -0.00437 -0.00000 -0.00000 -0.00000 0.00147 - 39 -0.03628 0.05519 0.00000 -0.00000 -0.00000 -0.01939 - 40 -0.00010 0.00005 0.00000 0.00000 -0.00000 -0.00002 - 41 0.00000 0.03678 -0.00000 -0.00000 0.00000 -0.01292 - 42 -0.00009 0.00003 0.00000 0.00000 0.00000 -0.00001 - 43 0.06293 0.03182 -0.00000 0.00000 0.00000 -0.01118 - 44 0.09842 -0.14858 0.00000 0.00000 0.00000 0.06063 - 45 0.00027 -0.00013 -0.00000 -0.00000 0.00000 0.00005 - 46 -0.00000 -0.09902 0.00000 0.00000 -0.00000 0.04040 - 47 0.00025 -0.00007 -0.00000 -0.00000 -0.00000 0.00003 - 48 -0.17071 -0.08566 0.00000 -0.00000 -0.00000 0.03495 - 49 -0.00070 0.00106 0.00000 -0.00000 -0.00000 -0.00009 - 50 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 51 0.00000 0.00071 -0.00000 0.00000 0.00000 -0.00006 - 52 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 53 0.00121 0.00061 0.00000 0.00000 0.00000 -0.00005 - 54 0.00009 -0.00013 0.00000 0.00000 0.00000 0.00003 - 55 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 56 -0.00000 -0.00009 -0.00000 -0.00000 -0.00000 0.00002 - 57 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 58 -0.00015 -0.00007 0.00000 -0.00000 -0.00000 0.00002 - 59 -0.54930 0.82401 0.00000 -0.00000 -0.00000 -0.04647 - 60 -0.00149 0.00070 0.00000 0.00000 -0.00000 -0.00004 - 61 0.00000 0.54914 -0.00000 -0.00000 -0.00000 -0.03097 - 62 -0.00140 0.00041 0.00000 0.00000 0.00000 -0.00002 - 63 0.95280 0.47505 -0.00000 0.00000 0.00000 -0.02679 - 64 0.00000 0.00000 0.00000 -0.00153 -0.00000 -0.00000 - 65 0.00000 0.00000 0.00000 -0.00000 -0.00108 0.00000 - 66 0.00000 0.00000 -0.00083 -0.00020 -0.00000 -0.00000 - 67 0.00000 0.00000 0.00000 0.00000 -0.00097 -0.00000 - 68 -0.00000 0.00000 -0.00048 0.00034 -0.00000 -0.00000 - 69 0.00000 0.00000 0.00000 0.00000 -0.00063 0.00000 - 70 0.00000 0.00000 -0.00124 -0.00000 -0.00000 0.00000 - 71 -0.00000 -0.00000 0.00001 -0.01433 -0.00001 -0.00000 - 72 -0.00000 -0.00000 0.00001 -0.00000 -0.01014 -0.00000 - 73 -0.00000 -0.00000 -0.00820 -0.00185 -0.00002 0.00000 - 74 -0.00000 -0.00000 0.00001 0.00000 -0.00906 0.00000 - 75 0.00000 -0.00000 -0.00474 0.00320 -0.00001 0.00000 - 76 -0.00000 -0.00000 0.00001 0.00001 -0.00584 -0.00000 - 77 -0.00000 -0.00000 -0.01222 -0.00001 -0.00001 0.00000 - 78 0.00000 0.00000 0.00000 -0.00002 -0.00000 0.00000 - 79 0.00000 0.00000 0.00000 -0.00000 -0.00001 -0.00000 - 80 -0.00000 -0.00000 -0.00001 -0.00000 -0.00000 0.00000 - 81 0.00000 -0.00000 0.00000 0.00000 -0.00001 0.00000 - 82 0.00000 -0.00000 -0.00001 0.00000 -0.00000 -0.00000 - 83 0.00000 0.00000 0.00000 0.00000 -0.00001 -0.00000 - 84 -0.00000 0.00000 -0.00002 -0.00000 -0.00000 0.00000 - 85 0.00000 0.00000 -0.00004 0.04058 0.00002 0.00000 - 86 0.00000 0.00000 -0.00004 0.00000 0.02870 0.00000 - 87 0.00000 0.00000 0.02779 0.00524 0.00004 -0.00000 - 88 0.00000 0.00000 -0.00003 -0.00001 0.02566 -0.00000 - 89 -0.00000 0.00000 0.01606 -0.00907 0.00002 -0.00000 - 90 -0.00000 0.00000 -0.00002 -0.00003 0.01655 0.00000 - 91 0.00000 0.00000 0.04144 0.00004 0.00002 0.00000 - 92 -0.00043 -0.00064 -0.00000 0.00000 0.00000 -0.00012 - 93 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 94 0.00016 -0.00048 -0.00000 0.00000 0.00000 -0.00009 - 95 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 96 -0.00000 -0.00037 0.00000 0.00000 -0.00000 -0.00007 - 97 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 98 -0.00028 -0.00028 0.00000 0.00000 -0.00000 -0.00005 - 99 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 100 -0.00075 0.00037 0.00000 0.00000 -0.00000 0.00007 - 101 0.00272 0.00406 -0.00000 -0.00000 0.00000 0.00060 - 102 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 103 -0.00102 0.00307 0.00000 -0.00000 -0.00000 0.00046 - 104 -0.00001 0.00001 0.00000 -0.00000 -0.00000 0.00000 - 105 0.00000 0.00238 -0.00000 -0.00000 0.00000 0.00035 - 106 -0.00001 0.00000 -0.00000 0.00000 0.00000 0.00000 - 107 0.00178 0.00177 -0.00000 -0.00000 0.00000 0.00026 - 108 -0.00001 0.00001 0.00000 0.00000 -0.00000 0.00000 - 109 0.00469 -0.00235 -0.00000 -0.00000 0.00000 -0.00035 + 1 -0.00000 0.01378 -0.00000 0.00000 -0.00000 0.28335 + 2 0.00000 0.02576 -0.00000 0.00000 -0.00000 0.26503 + 3 0.00000 0.02840 0.00000 0.00000 -0.00000 0.39536 + 4 -0.00000 -0.08084 0.00000 -0.00000 0.00000 -2.76908 + 5 0.00000 0.17265 -0.00000 0.00000 -0.00000 3.78788 + 6 0.00000 0.00568 0.00000 0.00000 -0.00000 0.12248 + 7 0.00000 -0.00013 0.00000 -0.00000 -0.00000 -0.00254 + 8 0.00000 0.00031 0.00000 0.00000 0.00000 0.00659 + 9 -0.00000 -0.14002 -0.00000 -0.00000 0.00000 -1.55998 + 10 -0.00000 0.00000 -0.11536 0.10925 -0.07482 -0.00000 + 11 -0.00000 0.00000 -0.02671 -0.12402 -0.13154 -0.00000 + 12 0.00000 0.00000 -0.11773 -0.07891 0.10316 0.00000 + 13 -0.00000 0.00000 -0.03756 0.05155 -0.03531 -0.00000 + 14 -0.00000 0.00000 -0.00870 -0.05852 -0.06207 -0.00000 + 15 -0.00000 0.00000 -0.03833 -0.03723 0.04868 -0.00000 + 16 0.00000 0.00000 -0.71420 0.69094 -0.47321 -0.00000 + 17 -0.00000 0.00000 -0.16536 -0.78438 -0.83194 -0.00000 + 18 0.00000 0.00000 -0.72889 -0.49906 0.65242 0.00000 + 19 -0.00000 -0.00000 1.30481 -1.08027 0.73986 0.00000 + 20 0.00000 -0.00000 0.30211 1.22637 1.30073 0.00000 + 21 0.00000 -0.00000 1.33164 0.78028 -1.02005 -0.00000 + 22 0.00000 -0.00000 0.01311 -0.01115 0.00764 0.00000 + 23 0.00000 -0.00000 0.00304 0.01266 0.01342 0.00000 + 24 -0.00000 -0.00000 0.01338 0.00805 -0.01053 -0.00000 + 25 -0.00000 0.00000 -0.00043 0.00041 -0.00028 -0.00000 + 26 0.00000 0.00000 -0.00010 -0.00047 -0.00050 -0.00000 + 27 0.00000 0.00000 -0.00044 -0.00030 0.00039 -0.00000 + 28 0.00000 0.00000 0.00047 -0.00038 0.00026 0.00000 + 29 -0.00000 -0.00000 0.00011 0.00043 0.00046 0.00000 + 30 -0.00000 0.00000 0.00048 0.00028 -0.00036 0.00000 + 31 0.00000 0.00000 -0.54074 0.43631 -0.29882 -0.00000 + 32 0.00000 0.00000 -0.12520 -0.49532 -0.52536 -0.00000 + 33 -0.00000 0.00000 -0.55186 -0.31515 0.41199 0.00000 + 34 -0.00661 0.00193 0.00000 0.00000 0.00000 -0.00065 + 35 -0.00691 0.00197 0.00000 0.00000 0.00000 -0.00066 + 36 0.00078 0.00248 0.00000 0.00000 0.00000 -0.00084 + 37 -0.00161 -0.00853 -0.00000 0.00000 -0.00000 0.00287 + 38 0.00274 0.00395 0.00000 -0.00000 -0.00000 -0.00133 + 39 0.04750 -0.01408 -0.00000 0.00000 -0.00000 0.00495 + 40 0.04969 -0.01437 -0.00000 -0.00000 -0.00000 0.00505 + 41 -0.00557 -0.01807 -0.00000 -0.00000 -0.00000 0.00635 + 42 0.01154 0.06206 0.00000 -0.00000 0.00000 -0.02181 + 43 -0.01966 -0.02878 -0.00000 0.00000 0.00000 0.01011 + 44 -0.12886 0.03791 0.00000 0.00000 0.00000 -0.01547 + 45 -0.13480 0.03868 0.00000 0.00000 0.00000 -0.01579 + 46 0.01511 0.04865 0.00000 0.00000 0.00000 -0.01985 + 47 -0.03131 -0.16708 -0.00000 0.00000 -0.00000 0.06818 + 48 0.05334 0.07747 0.00000 -0.00000 0.00000 -0.03161 + 49 0.00091 -0.00027 -0.00000 -0.00000 0.00000 0.00002 + 50 0.00096 -0.00028 -0.00000 -0.00000 -0.00000 0.00002 + 51 -0.00011 -0.00035 -0.00000 -0.00000 -0.00000 0.00003 + 52 0.00022 0.00119 0.00000 -0.00000 0.00000 -0.00010 + 53 -0.00038 -0.00055 -0.00000 0.00000 0.00000 0.00005 + 54 -0.00011 0.00003 0.00000 0.00000 0.00000 -0.00001 + 55 -0.00012 0.00003 0.00000 0.00000 0.00000 -0.00001 + 56 0.00001 0.00004 -0.00000 -0.00000 0.00000 -0.00001 + 57 -0.00003 -0.00015 -0.00000 0.00000 0.00000 0.00003 + 58 0.00005 0.00007 -0.00000 -0.00000 -0.00000 -0.00002 + 59 0.71919 -0.21022 -0.00000 -0.00000 -0.00000 0.01185 + 60 0.75235 -0.21454 -0.00000 -0.00000 -0.00000 0.01210 + 61 -0.08433 -0.26983 -0.00000 -0.00000 -0.00000 0.01522 + 62 0.17477 0.92661 0.00000 -0.00000 0.00000 -0.05225 + 63 -0.29769 -0.42963 -0.00000 0.00000 0.00000 0.02423 + 64 0.00000 0.00000 0.00028 0.00027 0.00064 -0.00000 + 65 0.00000 -0.00000 0.00047 0.00078 0.00084 0.00000 + 66 -0.00000 0.00000 0.00023 0.00059 0.00017 -0.00000 + 67 0.00000 0.00000 -0.00028 0.00062 -0.00081 0.00000 + 68 0.00000 0.00000 -0.00098 -0.00048 0.00085 0.00000 + 69 -0.00000 -0.00000 0.00096 -0.00067 -0.00002 -0.00000 + 70 -0.00000 -0.00000 -0.00034 0.00064 -0.00004 0.00000 + 71 0.00000 -0.00000 0.00275 0.00249 0.00594 0.00000 + 72 -0.00000 -0.00000 0.00466 0.00726 0.00781 -0.00000 + 73 0.00000 -0.00000 0.00225 0.00552 0.00160 0.00000 + 74 -0.00000 -0.00000 -0.00280 0.00580 -0.00758 -0.00000 + 75 -0.00000 -0.00000 -0.00971 -0.00449 0.00791 -0.00000 + 76 0.00000 -0.00000 0.00953 -0.00631 -0.00022 0.00000 + 77 0.00000 0.00000 -0.00338 0.00601 -0.00037 -0.00000 + 78 0.00000 0.00000 0.00000 0.00000 0.00001 0.00000 + 79 0.00000 -0.00000 0.00001 0.00001 0.00001 0.00000 + 80 -0.00000 0.00000 0.00000 0.00001 0.00000 -0.00000 + 81 -0.00000 0.00000 -0.00000 0.00001 -0.00001 -0.00000 + 82 0.00000 -0.00000 -0.00001 -0.00001 0.00001 0.00000 + 83 0.00000 0.00000 0.00001 -0.00001 -0.00000 0.00000 + 84 -0.00000 -0.00000 -0.00000 0.00001 -0.00000 0.00000 + 85 -0.00000 0.00000 -0.00932 -0.00706 -0.01683 -0.00000 + 86 -0.00000 -0.00000 -0.01582 -0.02055 -0.02211 0.00000 + 87 -0.00000 0.00000 -0.00763 -0.01563 -0.00452 -0.00000 + 88 0.00000 0.00000 0.00950 -0.01643 0.02147 -0.00000 + 89 0.00000 0.00000 0.03294 0.01270 -0.02239 0.00000 + 90 -0.00000 0.00000 -0.03233 0.01787 0.00061 -0.00000 + 91 -0.00000 -0.00000 0.01147 -0.01701 0.00105 0.00000 + 92 0.00020 -0.00015 -0.00000 -0.00000 0.00000 -0.00003 + 93 0.00052 -0.00033 0.00000 0.00000 -0.00000 -0.00006 + 94 0.00051 -0.00031 -0.00000 -0.00000 0.00000 -0.00006 + 95 0.00006 -0.00004 -0.00000 -0.00000 0.00000 -0.00001 + 96 -0.00002 0.00041 0.00000 -0.00000 0.00000 0.00008 + 97 0.00009 0.00018 0.00000 0.00000 -0.00000 0.00003 + 98 -0.00027 -0.00063 0.00000 0.00000 -0.00000 -0.00012 + 99 0.00039 0.00041 0.00000 0.00000 -0.00000 0.00008 + 100 -0.00023 -0.00011 -0.00000 -0.00000 0.00000 -0.00002 + 101 -0.00128 0.00094 -0.00000 0.00000 -0.00000 0.00014 + 102 -0.00326 0.00210 0.00000 -0.00000 0.00000 0.00031 + 103 -0.00318 0.00194 0.00000 0.00000 -0.00000 0.00029 + 104 -0.00037 0.00027 -0.00000 0.00000 -0.00000 0.00004 + 105 0.00010 -0.00259 -0.00000 0.00000 -0.00000 -0.00039 + 106 -0.00055 -0.00117 -0.00000 0.00000 -0.00000 -0.00017 + 107 0.00166 0.00397 0.00000 0.00000 -0.00000 0.00059 + 108 -0.00243 -0.00259 -0.00000 -0.00000 0.00000 -0.00039 + 109 0.00145 0.00073 0.00000 -0.00000 0.00000 0.00011 19 20 21 22 23 24 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 2 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 3 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 4 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 6 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 7 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 8 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 9 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 10 0.00000 0.00000 -0.00000 -0.00000 -0.00001 0.00508 - 11 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00294 - 12 0.00000 -0.00000 -0.00000 -0.00000 0.00587 0.00001 - 13 0.00000 0.00000 0.00000 -0.00000 0.00002 -0.00879 - 14 -0.00000 -0.00000 -0.00000 0.00000 0.00001 -0.00508 - 15 -0.00000 0.00000 0.00000 -0.00000 -0.01016 -0.00002 - 16 -0.00000 -0.00000 -0.00000 -0.00000 -0.00008 0.04102 - 17 0.00000 0.00000 0.00000 -0.00000 -0.00002 0.02370 - 18 0.00000 -0.00000 -0.00000 -0.00000 0.04738 0.00008 - 19 0.00000 -0.00000 -0.00000 0.00000 0.00013 -0.06575 - 20 0.00000 0.00000 -0.00000 -0.00000 0.00004 -0.03799 - 21 -0.00000 -0.00000 -0.00000 0.00000 -0.07593 -0.00013 - 22 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00132 - 23 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00076 - 24 -0.00000 0.00000 0.00000 -0.00000 -0.00152 -0.00000 - 25 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00006 - 26 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00004 - 27 0.00000 -0.00000 -0.00000 0.00000 0.00007 0.00000 - 28 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00006 - 29 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00003 - 30 -0.00000 0.00000 0.00000 -0.00000 -0.00007 -0.00000 - 31 0.00000 0.00000 0.00000 -0.00000 -0.00004 0.02217 - 32 -0.00000 -0.00000 -0.00000 0.00000 -0.00001 0.01281 - 33 -0.00000 0.00000 0.00000 -0.00000 0.02561 0.00004 - 34 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 35 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 36 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 37 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 38 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 39 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 40 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 41 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 42 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 43 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 44 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 45 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 46 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 47 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 48 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 49 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 50 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 51 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 52 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 53 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 1 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 2 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 3 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 4 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 5 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 6 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 7 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 8 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 9 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 10 -0.00000 0.00000 0.00000 0.00000 0.00188 0.00380 + 11 -0.00000 -0.00000 -0.00000 -0.00000 -0.00553 0.00174 + 12 -0.00000 0.00000 0.00000 -0.00000 -0.00059 -0.00412 + 13 -0.00000 -0.00000 -0.00000 -0.00000 -0.00326 -0.00658 + 14 -0.00000 0.00000 -0.00000 0.00000 0.00956 -0.00301 + 15 0.00000 -0.00000 -0.00000 0.00000 0.00102 0.00713 + 16 0.00000 0.00000 0.00000 0.00000 0.01521 0.03069 + 17 0.00000 -0.00000 0.00000 -0.00000 -0.04461 0.01402 + 18 -0.00000 0.00000 -0.00000 -0.00000 -0.00478 -0.03326 + 19 0.00000 0.00000 0.00000 -0.00000 -0.02437 -0.04919 + 20 0.00000 0.00000 0.00000 -0.00000 0.07151 -0.02248 + 21 0.00000 0.00000 0.00000 0.00000 0.00766 0.05330 + 22 0.00000 0.00000 0.00000 -0.00000 -0.00049 -0.00099 + 23 0.00000 0.00000 0.00000 -0.00000 0.00144 -0.00045 + 24 0.00000 -0.00000 -0.00000 0.00000 0.00015 0.00107 + 25 -0.00000 -0.00000 -0.00000 -0.00000 0.00002 0.00005 + 26 -0.00000 -0.00000 -0.00000 0.00000 -0.00007 0.00002 + 27 -0.00000 0.00000 0.00000 -0.00000 -0.00001 -0.00005 + 28 -0.00000 -0.00000 -0.00000 -0.00000 -0.00002 -0.00004 + 29 -0.00000 0.00000 -0.00000 0.00000 0.00006 -0.00002 + 30 0.00000 -0.00000 -0.00000 0.00000 0.00001 0.00005 + 31 -0.00000 -0.00000 -0.00000 0.00000 0.00822 0.01659 + 32 -0.00000 -0.00000 -0.00000 0.00000 -0.02411 0.00758 + 33 -0.00000 -0.00000 -0.00000 0.00000 -0.00258 -0.01797 + 34 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 35 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 36 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 37 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 38 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 39 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 40 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 41 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 42 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 43 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 44 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 45 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 46 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 47 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 48 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 49 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 50 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 51 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 52 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 53 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 54 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 55 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 57 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 58 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 59 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 60 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 61 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 62 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 63 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 64 0.01020 0.00005 0.00002 0.00002 -0.00007 0.04091 - 65 0.00009 -0.02165 -0.00001 -0.02084 0.02894 0.00006 - 66 -0.01977 -0.00008 0.02856 0.00002 0.00003 0.00528 - 67 -0.00015 0.03226 -0.00003 -0.00000 0.02587 0.00004 - 68 0.03421 0.00017 0.01650 -0.00002 0.00004 -0.00915 - 69 0.00008 -0.01248 -0.00001 0.03614 0.01668 0.00000 - 70 0.00001 -0.00001 -0.02555 -0.00000 0.00002 0.00004 - 71 -0.05399 -0.00025 -0.00013 -0.00011 0.00037 -0.21477 - 72 -0.00048 0.11457 0.00003 0.10977 -0.15192 -0.00034 - 73 0.10461 0.00041 -0.15045 -0.00009 -0.00018 -0.02774 - 74 0.00080 -0.17073 0.00018 0.00000 -0.13583 -0.00024 - 75 -0.18105 -0.00089 -0.08692 0.00012 -0.00021 0.04802 - 76 -0.00041 0.06605 0.00005 -0.19041 -0.08758 -0.00002 - 77 -0.00005 0.00007 0.13459 0.00002 -0.00009 -0.00020 - 78 -0.00001 -0.00000 -0.00000 -0.00000 0.00000 -0.00004 - 79 -0.00000 0.00002 0.00000 0.00002 -0.00003 -0.00000 - 80 0.00002 0.00000 -0.00003 -0.00000 -0.00000 -0.00000 - 81 0.00000 -0.00003 0.00000 0.00000 -0.00002 -0.00000 - 82 -0.00003 -0.00000 -0.00002 0.00000 -0.00000 0.00001 - 83 -0.00000 0.00001 0.00000 -0.00003 -0.00002 -0.00000 - 84 -0.00000 0.00000 0.00002 0.00000 -0.00000 -0.00000 - 85 0.27873 0.00130 0.00065 0.00058 -0.00188 1.08152 - 86 0.00248 -0.59149 -0.00014 -0.55776 0.76502 0.00170 - 87 -0.54005 -0.00213 0.76444 0.00047 0.00089 0.13970 - 88 -0.00413 0.88142 -0.00092 -0.00000 0.68401 0.00119 - 89 0.93472 0.00460 0.44167 -0.00060 0.00107 -0.24179 - 90 0.00210 -0.34100 -0.00024 0.96748 0.44105 0.00011 - 91 0.00026 -0.00036 -0.68386 -0.00008 0.00046 0.00102 - 92 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 93 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 94 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 95 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 96 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 97 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 98 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 99 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 100 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 101 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 102 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 103 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 104 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 105 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 106 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 107 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 108 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 109 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 55 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 56 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 57 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 58 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 59 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 60 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 61 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 62 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 63 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 64 0.02519 -0.00247 -0.02308 0.01236 0.01450 -0.01133 + 65 -0.02517 -0.00254 -0.00048 0.00315 0.02897 -0.00933 + 66 0.01792 0.00796 0.03192 0.00450 0.01598 0.00372 + 67 -0.00630 0.00962 -0.00626 0.02795 0.00388 0.02698 + 68 -0.00373 0.01387 0.00481 0.01255 -0.00015 -0.02595 + 69 -0.00387 0.02595 -0.00152 0.00631 -0.01602 -0.00826 + 70 0.00272 0.02511 -0.01112 -0.02406 0.01445 0.00929 + 71 -0.13332 0.01306 0.12162 -0.06511 -0.07612 0.05947 + 72 0.13318 0.01346 0.00255 -0.01658 -0.15209 0.04899 + 73 -0.09486 -0.04214 -0.16816 -0.02369 -0.08389 -0.01951 + 74 0.03336 -0.05093 0.03300 -0.14725 -0.02035 -0.14165 + 75 0.01973 -0.07342 -0.02534 -0.06613 0.00080 0.13623 + 76 0.02047 -0.13735 0.00802 -0.03325 0.08409 0.04336 + 77 -0.01438 -0.13290 0.05859 0.12676 -0.07584 -0.04880 + 78 -0.00002 0.00000 0.00002 -0.00001 -0.00001 0.00001 + 79 0.00002 0.00000 0.00000 -0.00000 -0.00003 0.00001 + 80 -0.00002 -0.00001 -0.00003 -0.00000 -0.00001 -0.00000 + 81 0.00001 -0.00001 0.00001 -0.00003 -0.00000 -0.00003 + 82 0.00000 -0.00001 -0.00000 -0.00001 0.00000 0.00002 + 83 0.00000 -0.00002 0.00000 -0.00001 0.00001 0.00001 + 84 -0.00000 -0.00002 0.00001 0.00002 -0.00001 -0.00001 + 85 0.68829 -0.06744 -0.61795 0.33085 0.38332 -0.29946 + 86 -0.68757 -0.06949 -0.01296 0.08423 0.76588 -0.24668 + 87 0.48974 0.21754 0.85445 0.12038 0.42243 0.09827 + 88 -0.17222 0.26295 -0.16769 0.74821 0.10250 0.71328 + 89 -0.10187 0.37904 0.12878 0.33600 -0.00405 -0.68603 + 90 -0.10570 0.70908 -0.04076 0.16893 -0.42347 -0.21837 + 91 0.07426 0.68612 -0.29772 -0.64407 0.38191 0.24573 + 92 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 93 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 94 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 95 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 96 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 97 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 98 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 99 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 100 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 101 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 102 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 103 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 104 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 105 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 106 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 107 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 108 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 109 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 25 26 27 28 29 30 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.03626 - 2 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.05361 - 3 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.06426 - 4 0.00000 -0.00000 0.00000 0.00000 0.00000 0.19463 - 5 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.21223 - 6 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.01495 - 7 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00026 - 8 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00080 - 9 -0.00000 0.00000 0.00000 0.00000 0.00000 0.08676 - 10 -0.00000 0.00000 -0.00348 -0.00000 -0.00000 0.00000 - 11 -0.00000 -0.00000 0.00603 0.00000 -0.00000 -0.00000 - 12 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 13 0.00000 -0.00000 0.00626 0.00000 -0.00000 -0.00000 - 14 0.00000 0.00000 -0.01084 0.00000 0.00000 0.00000 - 15 0.00000 0.00000 0.00001 0.00000 -0.00000 0.00000 - 16 -0.00000 0.00000 -0.02769 -0.00000 -0.00000 0.00000 - 17 -0.00000 -0.00000 0.04793 -0.00000 -0.00000 -0.00000 - 18 -0.00000 0.00000 -0.00002 -0.00000 0.00000 -0.00000 - 19 0.00000 -0.00000 0.04668 0.00000 0.00000 -0.00000 - 20 0.00000 0.00000 -0.08079 0.00000 0.00000 0.00000 - 21 0.00000 -0.00000 0.00004 0.00000 -0.00000 0.00000 - 22 0.00000 -0.00000 0.00093 0.00000 0.00000 -0.00000 - 23 0.00000 0.00000 -0.00161 -0.00000 -0.00000 0.00000 - 24 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 25 -0.00000 0.00000 -0.00004 -0.00000 -0.00000 -0.00000 - 26 -0.00000 -0.00000 0.00008 -0.00000 -0.00000 -0.00000 - 27 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 28 0.00000 -0.00000 0.00004 0.00000 0.00000 -0.00000 - 29 0.00000 0.00000 -0.00007 0.00000 0.00000 0.00000 - 30 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 31 -0.00000 0.00000 -0.01573 -0.00000 -0.00000 0.00000 - 32 -0.00000 -0.00000 0.02723 -0.00000 -0.00000 -0.00000 - 33 -0.00000 0.00000 -0.00001 -0.00000 0.00000 -0.00000 - 34 -0.00001 -0.02564 -0.00000 -0.03074 -0.00003 0.04656 - 35 -0.02962 0.00002 0.00000 -0.00001 0.05328 0.00004 - 36 -0.00001 0.05127 0.00000 0.00000 -0.00005 0.03103 - 37 0.05126 0.00002 0.00000 -0.00003 0.03079 0.00002 - 38 0.00003 -0.01478 -0.00000 0.05331 0.00001 0.02684 - 39 0.00002 0.06090 0.00000 0.06760 0.00007 -0.10011 - 40 0.07033 -0.00004 -0.00000 0.00001 -0.11719 -0.00009 - 41 0.00003 -0.12175 -0.00000 -0.00000 0.00010 -0.06671 - 42 -0.12173 -0.00006 -0.00000 0.00007 -0.06771 -0.00005 - 43 -0.00006 0.03511 0.00000 -0.11725 -0.00001 -0.05771 - 44 -0.00015 -0.58417 -0.00000 -0.67124 -0.00073 1.00577 - 45 -0.67466 0.00034 0.00000 -0.00011 1.16368 0.00086 - 46 -0.00027 1.16791 0.00000 0.00000 -0.00099 0.67027 - 47 1.16769 0.00055 0.00000 -0.00073 0.67234 0.00050 - 48 0.00058 -0.33678 -0.00000 1.16432 0.00011 0.57984 - 49 0.00000 0.00103 0.00000 0.00116 0.00000 -0.00172 - 50 0.00119 -0.00000 -0.00000 0.00000 -0.00200 -0.00000 - 51 0.00000 -0.00206 -0.00000 -0.00000 0.00000 -0.00115 - 52 -0.00206 -0.00000 -0.00000 0.00000 -0.00116 -0.00000 - 53 -0.00000 0.00059 0.00000 -0.00200 -0.00000 -0.00099 - 54 -0.00000 -0.00024 -0.00000 -0.00028 -0.00000 0.00043 - 55 -0.00028 0.00000 0.00000 -0.00000 0.00049 0.00000 - 56 -0.00000 0.00049 0.00000 0.00000 -0.00000 0.00029 - 57 0.00049 0.00000 0.00000 -0.00000 0.00029 0.00000 - 58 0.00000 -0.00014 -0.00000 0.00049 0.00000 0.00025 - 59 0.00008 0.29570 0.00000 0.34071 0.00037 -0.50953 - 60 0.34150 -0.00017 -0.00000 0.00006 -0.59067 -0.00043 - 61 0.00014 -0.59118 -0.00000 -0.00000 0.00050 -0.33956 - 62 -0.59107 -0.00028 -0.00000 0.00037 -0.34127 -0.00025 - 63 -0.00029 0.17047 0.00000 -0.59099 -0.00006 -0.29375 - 64 -0.00000 -0.00000 -0.00003 -0.00000 -0.00000 0.00000 - 65 0.00000 0.00000 -0.00003 -0.00000 0.00000 0.00000 - 66 -0.00000 -0.00000 0.02249 0.00000 -0.00000 -0.00000 - 67 -0.00000 0.00000 -0.00003 -0.00000 0.00000 -0.00000 - 68 0.00000 -0.00000 0.01300 0.00000 -0.00000 -0.00000 - 69 -0.00000 0.00000 -0.00002 0.00000 0.00000 -0.00000 - 70 -0.00000 -0.00000 0.03354 0.00000 -0.00000 -0.00000 - 71 0.00000 0.00000 0.00017 0.00000 0.00000 -0.00000 - 72 -0.00000 -0.00000 0.00016 0.00000 -0.00000 -0.00000 - 73 0.00000 0.00000 -0.11798 -0.00000 0.00000 0.00000 - 74 0.00000 -0.00000 0.00014 -0.00000 -0.00000 0.00000 - 75 -0.00000 0.00000 -0.06817 -0.00000 0.00000 0.00000 - 76 0.00000 -0.00000 0.00009 -0.00000 -0.00000 0.00000 - 77 0.00000 0.00000 -0.17591 -0.00000 0.00000 0.00000 - 78 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 79 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 80 0.00000 0.00000 -0.00002 -0.00000 -0.00000 0.00000 - 81 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 82 -0.00000 0.00000 -0.00001 -0.00000 -0.00000 0.00000 - 83 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 84 0.00000 0.00000 -0.00003 -0.00000 0.00000 0.00000 - 85 -0.00000 -0.00000 -0.00083 -0.00000 -0.00000 0.00000 - 86 0.00000 0.00000 -0.00080 -0.00000 0.00000 -0.00000 - 87 -0.00000 -0.00000 0.59223 0.00000 -0.00000 -0.00000 - 88 -0.00000 0.00000 -0.00071 0.00000 0.00000 -0.00000 - 89 0.00000 -0.00000 0.34217 0.00000 -0.00000 -0.00000 - 90 -0.00000 0.00000 -0.00046 0.00000 0.00000 -0.00000 - 91 -0.00000 -0.00000 0.88301 0.00000 -0.00000 -0.00000 - 92 -0.00000 0.00043 0.00000 -0.00045 0.00000 -0.00066 - 93 0.00070 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 94 0.00000 -0.00032 -0.00000 0.00017 0.00000 -0.00050 - 95 0.00013 -0.00000 -0.00000 0.00000 -0.00063 -0.00000 - 96 0.00000 -0.00042 -0.00000 -0.00000 0.00000 -0.00039 - 97 -0.00023 -0.00000 0.00000 0.00000 -0.00036 -0.00000 - 98 -0.00000 -0.00019 -0.00000 -0.00030 0.00000 -0.00029 - 99 0.00000 0.00000 0.00000 0.00000 -0.00064 -0.00000 - 100 -0.00000 -0.00025 -0.00000 -0.00078 -0.00000 0.00038 - 101 0.00001 -0.00949 -0.00000 0.01104 -0.00000 0.01654 - 102 -0.01551 -0.00000 -0.00000 0.00002 -0.00001 -0.00000 - 103 -0.00001 0.00718 0.00000 -0.00416 -0.00003 0.01252 - 104 -0.00293 0.00002 0.00000 -0.00000 0.01529 0.00002 - 105 -0.00000 0.00927 0.00000 0.00000 -0.00002 0.00969 - 106 0.00508 0.00001 0.00000 -0.00001 0.00884 0.00001 - 107 0.00001 0.00414 0.00000 0.00721 -0.00001 0.00722 - 108 -0.00001 -0.00000 0.00000 -0.00001 0.01558 0.00002 - 109 0.00001 0.00550 0.00000 0.01906 0.00001 -0.00958 + 1 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.03626 + 2 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.05361 + 3 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.06426 + 4 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.19462 + 5 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.21223 + 6 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.01495 + 7 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00026 + 8 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00080 + 9 0.00000 0.00000 0.00000 -0.00000 0.00000 0.08676 + 10 -0.00000 -0.00000 0.00481 0.00000 0.00000 -0.00000 + 11 -0.00000 -0.00000 0.00111 0.00000 0.00000 -0.00000 + 12 -0.00000 -0.00000 0.00491 0.00000 -0.00000 -0.00000 + 13 0.00000 0.00000 -0.00865 -0.00000 -0.00000 0.00000 + 14 0.00000 0.00000 -0.00200 -0.00000 0.00000 0.00000 + 15 0.00000 0.00000 -0.00883 -0.00000 -0.00000 0.00000 + 16 -0.00000 -0.00000 0.03824 0.00000 0.00000 -0.00000 + 17 -0.00000 -0.00000 0.00885 0.00000 0.00000 -0.00000 + 18 -0.00000 -0.00000 0.03903 0.00000 0.00000 -0.00000 + 19 0.00000 0.00000 -0.06446 -0.00000 -0.00000 0.00000 + 20 0.00000 0.00000 -0.01493 -0.00000 -0.00000 0.00000 + 21 0.00000 0.00000 -0.06579 -0.00000 -0.00000 0.00000 + 22 0.00000 0.00000 -0.00128 -0.00000 -0.00000 0.00000 + 23 0.00000 0.00000 -0.00030 -0.00000 0.00000 0.00000 + 24 0.00000 0.00000 -0.00131 -0.00000 0.00000 0.00000 + 25 -0.00000 -0.00000 0.00006 -0.00000 -0.00000 -0.00000 + 26 -0.00000 -0.00000 0.00001 -0.00000 0.00000 0.00000 + 27 -0.00000 -0.00000 0.00006 0.00000 -0.00000 -0.00000 + 28 0.00000 0.00000 -0.00006 -0.00000 -0.00000 0.00000 + 29 0.00000 0.00000 -0.00001 -0.00000 -0.00000 -0.00000 + 30 0.00000 0.00000 -0.00006 -0.00000 0.00000 0.00000 + 31 -0.00000 -0.00000 0.02172 0.00000 0.00000 -0.00000 + 32 -0.00000 -0.00000 0.00503 0.00000 0.00000 -0.00000 + 33 -0.00000 -0.00000 0.02217 0.00000 0.00000 -0.00000 + 34 0.04048 0.01209 0.00000 -0.00567 0.04108 -0.01188 + 35 -0.04142 0.00112 -0.00000 0.00827 0.04145 -0.01212 + 36 0.00484 0.02532 0.00000 0.05228 -0.01033 -0.01524 + 37 -0.00388 0.03010 0.00000 0.00156 0.00967 0.05235 + 38 -0.01054 0.04254 0.00000 -0.03083 -0.01346 -0.02427 + 39 -0.09614 -0.02871 -0.00000 0.01246 -0.09034 0.02554 + 40 0.09838 -0.00267 0.00000 -0.01820 -0.09117 0.02606 + 41 -0.01150 -0.06014 -0.00000 -0.11498 0.02273 0.03278 + 42 0.00922 -0.07149 -0.00000 -0.00343 -0.02126 -0.11257 + 43 0.02503 -0.10103 -0.00000 0.06781 0.02960 0.05219 + 44 0.92222 0.27535 0.00000 -0.12374 0.89708 -0.25659 + 45 -0.94367 0.02562 -0.00000 0.18071 0.90529 -0.26187 + 46 0.11032 0.57686 0.00000 1.14178 -0.22567 -0.32935 + 47 -0.08849 0.68573 0.00000 0.03405 0.21115 1.13101 + 48 -0.24014 0.96912 0.00000 -0.67335 -0.29389 -0.52441 + 49 -0.00162 -0.00049 -0.00000 0.00021 -0.00154 0.00044 + 50 0.00166 -0.00005 0.00000 -0.00031 -0.00156 0.00045 + 51 -0.00019 -0.00102 -0.00000 -0.00197 0.00039 0.00056 + 52 0.00016 -0.00121 -0.00000 -0.00006 -0.00036 -0.00193 + 53 0.00042 -0.00171 -0.00000 0.00116 0.00051 0.00090 + 54 0.00038 0.00011 0.00000 -0.00005 0.00038 -0.00011 + 55 -0.00039 0.00001 -0.00000 0.00008 0.00038 -0.00011 + 56 0.00005 0.00024 0.00000 0.00048 -0.00010 -0.00014 + 57 -0.00004 0.00029 0.00000 0.00001 0.00009 0.00048 + 58 -0.00010 0.00040 0.00000 -0.00029 -0.00012 -0.00022 + 59 -0.46682 -0.13938 -0.00000 0.06281 -0.45535 0.12999 + 60 0.47767 -0.01297 0.00000 -0.09173 -0.45952 0.13266 + 61 -0.05584 -0.29200 -0.00000 -0.57956 0.11455 0.16685 + 62 0.04479 -0.34711 -0.00000 -0.01728 -0.10718 -0.57297 + 63 0.12156 -0.49056 -0.00000 0.34178 0.14917 0.26566 + 64 0.00000 0.00000 -0.00754 -0.00000 -0.00000 0.00000 + 65 0.00000 0.00000 -0.01280 -0.00000 -0.00000 0.00000 + 66 0.00000 0.00000 -0.00617 -0.00000 -0.00000 0.00000 + 67 -0.00000 -0.00000 0.00769 0.00000 0.00000 -0.00000 + 68 -0.00000 -0.00000 0.02666 0.00000 0.00000 -0.00000 + 69 0.00000 0.00000 -0.02616 -0.00000 -0.00000 0.00000 + 70 -0.00000 -0.00000 0.00928 0.00000 0.00000 -0.00000 + 71 -0.00000 -0.00000 0.03957 0.00000 0.00000 -0.00000 + 72 -0.00000 -0.00000 0.06715 0.00000 0.00000 -0.00000 + 73 -0.00000 -0.00000 0.03238 0.00000 0.00000 -0.00000 + 74 0.00000 0.00000 -0.04035 -0.00000 -0.00000 0.00000 + 75 0.00000 0.00000 -0.13985 -0.00000 -0.00000 0.00000 + 76 -0.00000 -0.00000 0.13723 0.00000 0.00000 -0.00000 + 77 0.00000 0.00000 -0.04868 -0.00000 -0.00000 0.00000 + 78 -0.00000 -0.00000 0.00001 -0.00000 0.00000 -0.00000 + 79 -0.00000 -0.00000 0.00001 0.00000 0.00000 -0.00000 + 80 -0.00000 0.00000 0.00001 0.00000 0.00000 0.00000 + 81 -0.00000 0.00000 -0.00001 -0.00000 -0.00000 0.00000 + 82 0.00000 0.00000 -0.00002 0.00000 0.00000 0.00000 + 83 -0.00000 -0.00000 0.00002 -0.00000 -0.00000 0.00000 + 84 0.00000 0.00000 -0.00001 -0.00000 0.00000 -0.00000 + 85 0.00000 0.00000 -0.19863 -0.00000 -0.00000 0.00000 + 86 0.00000 0.00000 -0.33705 -0.00000 -0.00000 0.00000 + 87 0.00000 0.00000 -0.16254 -0.00000 -0.00000 0.00000 + 88 -0.00000 -0.00000 0.20255 0.00000 0.00000 -0.00000 + 89 -0.00000 -0.00000 0.70200 0.00000 0.00000 -0.00000 + 90 0.00000 0.00000 -0.68885 -0.00000 -0.00000 0.00000 + 91 -0.00000 -0.00000 0.24434 0.00000 0.00000 -0.00000 + 92 0.00027 0.00025 0.00000 -0.00014 0.00023 -0.00015 + 93 0.00023 0.00018 0.00000 -0.00009 0.00056 -0.00034 + 94 -0.00036 0.00003 -0.00000 0.00018 0.00052 -0.00032 + 95 -0.00044 0.00012 -0.00000 0.00020 0.00004 -0.00004 + 96 0.00010 0.00051 0.00000 0.00018 -0.00004 0.00042 + 97 -0.00013 -0.00011 -0.00000 -0.00081 0.00018 0.00019 + 98 0.00016 -0.00012 -0.00000 0.00011 -0.00029 -0.00065 + 99 0.00010 -0.00029 -0.00000 0.00033 0.00037 0.00042 + 100 -0.00023 0.00028 0.00000 -0.00019 -0.00022 -0.00012 + 101 -0.00591 -0.00551 -0.00000 0.00336 -0.00558 0.00382 + 102 -0.00503 -0.00399 -0.00000 0.00230 -0.01356 0.00857 + 103 0.00801 -0.00059 0.00000 -0.00442 -0.01253 0.00792 + 104 0.00974 -0.00256 0.00000 -0.00494 -0.00100 0.00111 + 105 -0.00217 -0.01135 -0.00000 -0.00438 0.00087 -0.01054 + 106 0.00284 0.00248 0.00000 0.01962 -0.00434 -0.00478 + 107 -0.00348 0.00258 0.00000 -0.00257 0.00707 0.01618 + 108 -0.00222 0.00652 0.00000 -0.00792 -0.00909 -0.01055 + 109 0.00508 -0.00613 -0.00000 0.00454 0.00543 0.00297 31 32 33 34 35 36 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 0.00000 -0.00000 -1.45467 -0.00000 0.00000 - 2 0.00000 0.00000 -0.00000 -2.82286 -0.00000 0.00000 - 3 0.00000 0.00000 -0.00000 -3.66489 0.00000 -0.00000 + 1 -0.00000 0.00000 -0.00000 -1.45467 0.00000 -0.00000 + 2 -0.00000 0.00000 -0.00000 -2.82287 0.00000 -0.00000 + 3 -0.00000 0.00000 -0.00000 -3.66489 0.00000 -0.00000 4 -0.00000 -0.00000 0.00000 4.72043 -0.00000 0.00000 5 0.00000 0.00000 -0.00000 -2.74852 0.00000 -0.00000 - 6 0.00000 0.00000 -0.00000 -0.54037 -0.00000 0.00000 - 7 -0.00000 -0.00000 0.00000 0.00393 0.00000 -0.00000 - 8 0.00000 0.00000 -0.00000 -0.02811 -0.00000 -0.00000 - 9 -0.00000 0.00000 0.00000 0.80603 -0.00000 0.00000 - 10 0.00016 -0.06719 0.03914 -0.00000 0.00000 -0.00000 - 11 0.00005 -0.03882 -0.06774 0.00000 0.00000 -0.00000 - 12 -0.07760 -0.00016 0.00003 -0.00000 0.00000 0.00000 - 13 0.00294 -1.25505 0.71003 -0.00000 -0.00000 -0.00000 - 14 0.00098 -0.72513 -1.22891 0.00000 -0.00000 0.00000 - 15 -1.44947 -0.00304 0.00061 -0.00000 -0.00000 -0.00000 - 16 -0.00429 1.83047 -1.07599 0.00000 0.00000 0.00000 - 17 -0.00144 1.05759 1.86231 -0.00000 -0.00000 -0.00000 - 18 2.11403 0.00443 -0.00092 0.00000 0.00000 0.00000 - 19 0.00241 -1.02996 0.60666 -0.00000 -0.00000 -0.00000 - 20 0.00081 -0.59508 -1.05000 0.00000 0.00000 0.00000 - 21 -1.18952 -0.00249 0.00052 -0.00000 -0.00000 -0.00000 - 22 0.00014 -0.06070 0.03488 -0.00000 -0.00000 -0.00000 - 23 0.00005 -0.03507 -0.06038 0.00000 -0.00000 0.00000 - 24 -0.07010 -0.00015 0.00003 -0.00000 -0.00000 -0.00000 - 25 -0.00001 0.00386 -0.00233 0.00000 0.00000 0.00000 - 26 -0.00000 0.00223 0.00404 -0.00000 -0.00000 -0.00000 - 27 0.00445 0.00001 -0.00000 -0.00000 0.00000 0.00000 - 28 0.00001 -0.00297 0.00170 -0.00000 -0.00000 -0.00000 - 29 0.00000 -0.00172 -0.00295 0.00000 -0.00000 0.00000 - 30 -0.00343 -0.00001 0.00000 -0.00000 -0.00000 -0.00000 - 31 -0.00073 0.31087 -0.18247 0.00000 0.00000 0.00000 - 32 -0.00024 0.17961 0.31582 -0.00000 -0.00000 -0.00000 - 33 0.35903 0.00075 -0.00016 0.00000 0.00000 0.00000 - 34 -0.00000 0.00000 -0.00000 -0.01364 -0.00000 -0.00000 - 35 0.00000 0.00000 0.00000 -0.00001 -0.00000 -0.00000 - 36 0.00000 -0.00000 -0.00000 -0.00909 -0.00000 -0.00000 - 37 0.00000 -0.00000 0.00000 -0.00001 -0.00000 -0.00000 - 38 0.00000 -0.00000 -0.00000 -0.00787 -0.00000 0.00000 - 39 0.00000 -0.00000 -0.00000 0.04528 0.00000 0.00000 - 40 0.00000 -0.00000 0.00000 0.00004 0.00000 0.00000 - 41 -0.00000 0.00000 0.00000 0.03018 -0.00000 0.00000 - 42 0.00000 0.00000 -0.00000 0.00002 0.00000 0.00000 - 43 -0.00000 0.00000 0.00000 0.02611 0.00000 -0.00000 - 44 -0.00000 -0.00000 0.00000 -0.04329 -0.00000 -0.00000 - 45 -0.00000 0.00000 -0.00000 -0.00004 -0.00000 -0.00000 - 46 0.00000 0.00000 -0.00000 -0.02885 0.00000 -0.00000 - 47 -0.00000 -0.00000 0.00000 -0.00002 -0.00000 -0.00000 - 48 -0.00000 0.00000 -0.00000 -0.02496 -0.00000 0.00000 - 49 0.00000 -0.00000 -0.00000 0.00132 0.00000 0.00000 - 50 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 51 -0.00000 0.00000 0.00000 0.00088 0.00000 -0.00000 - 52 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 53 0.00000 0.00000 0.00000 0.00076 0.00000 -0.00000 - 54 -0.00000 0.00000 -0.00000 -0.00015 -0.00000 -0.00000 - 55 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 56 0.00000 -0.00000 0.00000 -0.00010 -0.00000 0.00000 - 57 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 58 0.00000 -0.00000 -0.00000 -0.00009 -0.00000 0.00000 - 59 -0.00000 0.00000 -0.00000 0.01759 0.00000 0.00000 - 60 0.00000 -0.00000 -0.00000 0.00001 0.00000 0.00000 - 61 -0.00000 -0.00000 0.00000 0.01172 -0.00000 0.00000 - 62 0.00000 0.00000 -0.00000 0.00001 0.00000 0.00000 - 63 0.00000 -0.00000 -0.00000 0.01014 0.00000 -0.00000 - 64 0.00002 -0.01095 0.00001 0.00000 -0.00000 0.00000 - 65 -0.00775 -0.00002 0.00001 0.00000 -0.00000 -0.00000 - 66 -0.00001 -0.00141 -0.00725 0.00000 -0.00000 0.00000 - 67 -0.00693 -0.00001 0.00001 -0.00000 0.00000 0.00000 - 68 -0.00001 0.00245 -0.00419 0.00000 0.00000 0.00000 - 69 -0.00447 -0.00000 0.00001 0.00000 0.00000 -0.00000 - 70 -0.00000 -0.00001 -0.01081 0.00000 0.00000 0.00000 - 71 -0.00008 0.03996 -0.00004 -0.00000 0.00000 -0.00000 - 72 0.02827 0.00007 -0.00004 -0.00000 0.00000 -0.00000 - 73 0.00003 0.00516 0.02781 -0.00000 0.00000 0.00000 - 74 0.02527 0.00005 -0.00003 0.00000 -0.00000 -0.00000 - 75 0.00004 -0.00893 0.01607 0.00000 -0.00000 -0.00000 - 76 0.01630 0.00001 -0.00002 -0.00000 -0.00000 0.00000 - 77 0.00002 0.00004 0.04147 0.00000 -0.00000 0.00000 - 78 0.00000 -0.00003 0.00000 -0.00000 0.00000 0.00000 - 79 -0.00002 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 80 -0.00000 -0.00000 -0.00002 0.00000 0.00000 0.00000 - 81 -0.00002 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 82 -0.00000 0.00001 -0.00001 0.00000 -0.00000 0.00000 - 83 -0.00001 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 84 -0.00000 -0.00000 -0.00003 -0.00000 -0.00000 -0.00000 - 85 0.00005 -0.02397 0.00002 0.00000 -0.00000 0.00000 - 86 -0.01696 -0.00004 0.00002 0.00000 -0.00000 0.00000 - 87 -0.00002 -0.00310 -0.01651 0.00000 -0.00000 -0.00000 - 88 -0.01516 -0.00003 0.00002 -0.00000 0.00000 0.00000 - 89 -0.00003 0.00536 -0.00954 -0.00000 0.00000 0.00000 - 90 -0.00978 -0.00001 0.00001 0.00000 0.00000 -0.00000 - 91 -0.00001 -0.00002 -0.02462 -0.00000 0.00000 -0.00000 - 92 -0.00000 -0.00000 -0.00000 0.00063 -0.02125 0.00003 - 93 -0.00000 0.00000 0.00000 -0.00000 -0.00002 -0.06945 - 94 -0.00000 -0.00000 -0.00000 0.00048 0.11256 0.00002 - 95 -0.00000 -0.00000 0.00000 0.00000 -0.00004 0.09192 - 96 0.00000 -0.00000 -0.00000 0.00037 -0.14526 0.00004 - 97 -0.00000 -0.00000 -0.00000 0.00000 -0.00009 -0.15910 - 98 -0.00000 -0.00000 -0.00000 0.00027 0.06489 -0.00012 - 99 0.00000 0.00000 0.00000 0.00000 0.00009 -0.00007 - 100 -0.00000 -0.00000 -0.00000 -0.00036 0.01230 0.00003 - 101 0.00000 0.00000 0.00000 -0.00162 0.11968 -0.00015 - 102 0.00000 -0.00000 -0.00000 0.00000 0.00012 0.39117 - 103 0.00000 0.00000 0.00000 -0.00122 -0.63400 -0.00012 - 104 0.00000 0.00000 -0.00000 -0.00000 0.00023 -0.51775 - 105 -0.00000 0.00000 0.00000 -0.00095 0.81819 -0.00025 - 106 -0.00000 0.00000 0.00000 -0.00000 0.00049 0.89612 - 107 0.00000 0.00000 0.00000 -0.00071 -0.36551 0.00065 - 108 -0.00000 -0.00000 -0.00000 -0.00000 -0.00050 0.00037 - 109 0.00000 0.00000 0.00000 0.00094 -0.06930 -0.00018 + 6 -0.00000 0.00000 -0.00000 -0.54038 0.00000 -0.00000 + 7 -0.00000 0.00000 -0.00000 0.00393 0.00000 0.00000 + 8 0.00000 0.00000 0.00000 -0.02811 0.00000 -0.00000 + 9 0.00000 0.00000 0.00000 0.80603 -0.00000 0.00000 + 10 -0.05336 -0.01732 -0.05405 -0.00000 -0.00000 0.00000 + 11 0.03464 -0.06832 -0.01251 -0.00000 0.00000 0.00000 + 12 0.04443 0.03247 -0.05516 -0.00000 -0.00000 0.00000 + 13 -0.99676 -0.32351 -0.98053 0.00000 -0.00000 0.00000 + 14 0.64711 -1.27611 -0.22703 0.00000 -0.00000 0.00000 + 15 0.82987 0.60650 -1.00069 0.00000 -0.00000 -0.00000 + 16 1.45376 0.47183 1.48591 -0.00000 0.00000 -0.00000 + 17 -0.94380 1.86119 0.34404 0.00000 0.00000 -0.00000 + 18 -1.21036 -0.88458 1.51646 -0.00000 0.00000 0.00000 + 19 -0.81800 -0.26549 -0.83778 0.00000 -0.00000 0.00000 + 20 0.53105 -1.04725 -0.19397 -0.00000 -0.00000 0.00000 + 21 0.68104 0.49773 -0.85500 0.00000 -0.00000 -0.00000 + 22 -0.04821 -0.01565 -0.04817 0.00000 -0.00000 0.00000 + 23 0.03130 -0.06172 -0.01115 0.00000 -0.00000 -0.00000 + 24 0.04014 0.02933 -0.04916 0.00000 -0.00000 -0.00000 + 25 0.00306 0.00099 0.00322 -0.00000 -0.00000 -0.00000 + 26 -0.00199 0.00392 0.00075 0.00000 -0.00000 -0.00000 + 27 -0.00255 -0.00186 0.00329 0.00000 0.00000 -0.00000 + 28 -0.00236 -0.00077 -0.00235 0.00000 0.00000 0.00000 + 29 0.00153 -0.00302 -0.00054 -0.00000 0.00000 0.00000 + 30 0.00196 0.00144 -0.00240 0.00000 -0.00000 -0.00000 + 31 0.24690 0.08013 0.25199 0.00000 -0.00000 -0.00000 + 32 -0.16029 0.31609 0.05834 0.00000 0.00000 -0.00000 + 33 -0.20556 -0.15023 0.25717 -0.00000 0.00000 -0.00000 + 34 0.00000 0.00000 0.00000 0.00348 -0.00000 -0.00000 + 35 0.00000 -0.00000 0.00000 0.00355 -0.00000 -0.00000 + 36 -0.00000 -0.00000 -0.00000 0.00447 -0.00000 0.00000 + 37 0.00000 0.00000 -0.00000 -0.01534 0.00000 0.00000 + 38 0.00000 -0.00000 0.00000 0.00711 0.00000 -0.00000 + 39 0.00000 0.00000 -0.00000 -0.01155 0.00000 0.00000 + 40 0.00000 -0.00000 0.00000 -0.01179 0.00000 0.00000 + 41 0.00000 0.00000 0.00000 -0.01483 -0.00000 0.00000 + 42 -0.00000 -0.00000 0.00000 0.05092 -0.00000 -0.00000 + 43 -0.00000 0.00000 -0.00000 -0.02361 -0.00000 0.00000 + 44 -0.00000 0.00000 0.00000 0.01104 -0.00000 -0.00000 + 45 0.00000 -0.00000 -0.00000 0.01127 -0.00000 -0.00000 + 46 -0.00000 -0.00000 -0.00000 0.01417 0.00000 -0.00000 + 47 0.00000 0.00000 -0.00000 -0.04868 0.00000 0.00000 + 48 0.00000 -0.00000 0.00000 0.02257 0.00000 -0.00000 + 49 -0.00000 -0.00000 -0.00000 -0.00034 0.00000 0.00000 + 50 0.00000 -0.00000 0.00000 -0.00034 0.00000 0.00000 + 51 0.00000 0.00000 -0.00000 -0.00043 0.00000 -0.00000 + 52 -0.00000 -0.00000 0.00000 0.00148 -0.00000 -0.00000 + 53 0.00000 0.00000 -0.00000 -0.00069 -0.00000 0.00000 + 54 0.00000 0.00000 -0.00000 0.00004 -0.00000 -0.00000 + 55 -0.00000 0.00000 0.00000 0.00004 -0.00000 -0.00000 + 56 0.00000 -0.00000 0.00000 0.00005 -0.00000 0.00000 + 57 -0.00000 -0.00000 0.00000 -0.00017 0.00000 0.00000 + 58 0.00000 -0.00000 0.00000 0.00008 0.00000 -0.00000 + 59 0.00000 0.00000 -0.00000 -0.00449 0.00000 0.00000 + 60 0.00000 0.00000 -0.00000 -0.00458 0.00000 0.00000 + 61 0.00000 0.00000 -0.00000 -0.00576 -0.00000 0.00000 + 62 -0.00000 -0.00000 0.00000 0.01978 -0.00000 -0.00000 + 63 0.00000 0.00000 -0.00000 -0.00917 -0.00000 0.00000 + 64 -0.00054 0.00490 0.00243 -0.00000 0.00000 -0.00000 + 65 -0.00363 0.00729 0.00413 0.00000 0.00000 0.00000 + 66 -0.00370 0.00236 0.00199 0.00000 -0.00000 -0.00000 + 67 -0.00589 -0.00431 -0.00248 -0.00000 0.00000 0.00000 + 68 0.00500 0.00483 -0.00859 -0.00000 -0.00000 0.00000 + 69 0.00458 -0.00152 0.00843 -0.00000 -0.00000 -0.00000 + 70 -0.00448 0.00103 -0.00299 -0.00000 -0.00000 -0.00000 + 71 0.00198 -0.01786 -0.00933 0.00000 -0.00000 0.00000 + 72 0.01326 -0.02661 -0.01583 -0.00000 -0.00000 -0.00000 + 73 0.01350 -0.00863 -0.00763 0.00000 0.00000 0.00000 + 74 0.02150 0.01571 0.00951 -0.00000 -0.00000 -0.00000 + 75 -0.01823 -0.01761 0.03297 0.00000 0.00000 -0.00000 + 76 -0.01671 0.00555 -0.03235 -0.00000 0.00000 0.00000 + 77 0.01636 -0.00375 0.01147 0.00000 0.00000 0.00000 + 78 -0.00000 0.00001 0.00001 0.00000 0.00000 0.00000 + 79 -0.00001 0.00002 0.00001 0.00000 0.00000 0.00000 + 80 -0.00001 0.00001 0.00000 0.00000 0.00000 -0.00000 + 81 -0.00001 -0.00001 -0.00001 0.00000 0.00000 0.00000 + 82 0.00001 0.00001 -0.00002 -0.00000 0.00000 0.00000 + 83 0.00001 -0.00000 0.00002 0.00000 -0.00000 -0.00000 + 84 -0.00001 0.00000 -0.00001 -0.00000 -0.00000 0.00000 + 85 -0.00119 0.01072 0.00554 -0.00000 0.00000 -0.00000 + 86 -0.00795 0.01596 0.00940 0.00000 0.00000 0.00000 + 87 -0.00810 0.00518 0.00453 -0.00000 -0.00000 -0.00000 + 88 -0.01290 -0.00943 -0.00565 0.00000 0.00000 0.00000 + 89 0.01094 0.01056 -0.01957 -0.00000 -0.00000 0.00000 + 90 0.01002 -0.00333 0.01921 -0.00000 -0.00000 -0.00000 + 91 -0.00981 0.00225 -0.00681 -0.00000 -0.00000 -0.00000 + 92 0.00000 0.00000 0.00000 0.00015 -0.02666 0.10031 + 93 0.00000 -0.00000 -0.00000 0.00033 0.00321 -0.12215 + 94 0.00000 -0.00000 0.00000 0.00030 0.01597 0.09188 + 95 -0.00000 -0.00000 0.00000 0.00004 -0.03041 -0.05709 + 96 -0.00000 0.00000 0.00000 -0.00040 -0.02922 0.02227 + 97 -0.00000 -0.00000 0.00000 -0.00018 -0.04476 0.01553 + 98 -0.00000 0.00000 -0.00000 0.00062 -0.09443 0.02105 + 99 -0.00000 -0.00000 -0.00000 -0.00040 -0.12186 -0.00444 + 100 -0.00000 -0.00000 0.00000 0.00011 -0.10031 -0.02647 + 101 -0.00000 -0.00000 0.00000 -0.00037 0.15013 -0.56499 + 102 0.00000 0.00000 0.00000 -0.00084 -0.01808 0.68803 + 103 -0.00000 -0.00000 -0.00000 -0.00077 -0.08997 -0.51752 + 104 0.00000 0.00000 -0.00000 -0.00011 0.17127 0.32155 + 105 0.00000 0.00000 -0.00000 0.00103 0.16456 -0.12542 + 106 0.00000 0.00000 -0.00000 0.00047 0.25209 -0.08746 + 107 0.00000 -0.00000 -0.00000 -0.00158 0.53186 -0.11859 + 108 0.00000 0.00000 -0.00000 0.00103 0.68636 0.02500 + 109 0.00000 0.00000 -0.00000 -0.00029 0.56499 0.14909 37 38 39 40 41 42 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 2 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 3 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 4 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 5 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 6 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 7 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 8 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 9 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 10 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 11 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 12 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 13 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 14 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 15 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 16 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 17 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 18 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 19 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 20 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 21 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 22 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 23 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 24 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 25 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 26 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 27 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 28 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 29 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 30 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 31 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 32 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 33 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 34 0.00000 -0.00000 -0.00000 -0.00140 0.00000 0.00231 - 35 0.00000 0.00000 -0.00161 0.00000 -0.00401 -0.00000 - 36 -0.00000 0.00000 0.00000 0.00279 0.00000 0.00000 - 37 0.00000 0.00000 0.00279 -0.00000 -0.00232 0.00000 - 38 -0.00000 0.00000 0.00000 -0.00081 0.00000 -0.00402 - 39 -0.00000 0.00000 0.00000 0.00322 -0.00000 -0.00585 - 40 -0.00000 -0.00000 0.00372 -0.00000 0.01014 0.00000 - 41 0.00000 -0.00000 -0.00000 -0.00645 -0.00001 -0.00000 - 42 -0.00000 -0.00000 -0.00645 0.00000 0.00586 -0.00000 - 43 0.00000 -0.00000 -0.00000 0.00186 -0.00000 0.01015 - 44 0.00000 -0.00000 -0.00001 -0.01060 0.00001 0.01783 - 45 0.00000 0.00000 -0.01224 0.00001 -0.03091 -0.00001 - 46 -0.00000 0.00000 0.00001 0.02120 0.00003 0.00000 - 47 0.00000 0.00000 0.02119 -0.00000 -0.01786 0.00001 - 48 -0.00000 0.00000 0.00001 -0.00611 0.00001 -0.03093 - 49 -0.00000 0.00000 0.00000 0.00009 -0.00000 -0.00015 - 50 -0.00000 -0.00000 0.00010 -0.00000 0.00027 0.00000 - 51 0.00000 -0.00000 -0.00000 -0.00018 -0.00000 -0.00000 - 52 -0.00000 -0.00000 -0.00018 0.00000 0.00015 -0.00000 - 53 0.00000 -0.00000 -0.00000 0.00005 -0.00000 0.00027 - 54 0.00000 -0.00000 -0.00000 -0.00002 0.00000 0.00003 - 55 0.00000 0.00000 -0.00002 0.00000 -0.00004 -0.00000 - 56 -0.00000 0.00000 0.00000 0.00003 0.00000 0.00000 - 57 0.00000 0.00000 0.00003 -0.00000 -0.00003 0.00000 - 58 -0.00000 0.00000 0.00000 -0.00001 0.00000 -0.00004 - 59 -0.00000 0.00000 0.00000 0.00349 -0.00000 -0.00587 - 60 -0.00000 -0.00000 0.00403 -0.00000 0.01017 0.00000 - 61 0.00000 -0.00000 -0.00000 -0.00698 -0.00001 -0.00000 - 62 -0.00000 -0.00000 -0.00698 0.00000 0.00588 -0.00000 - 63 0.00000 -0.00000 -0.00000 0.00201 -0.00000 0.01018 - 64 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 65 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 66 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 67 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 68 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 69 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 70 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 71 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 72 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 73 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 74 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 75 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 76 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 77 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 78 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 79 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 80 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 81 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 82 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 83 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 84 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 85 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 86 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 87 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 88 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 89 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 90 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 91 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 92 0.03504 0.00003 0.00001 -0.11376 0.00007 -0.09342 - 93 -0.00011 0.00014 -0.18591 0.00007 0.00012 -0.00017 - 94 0.09240 -0.00012 -0.00007 0.08609 0.00021 0.03519 - 95 0.00006 0.11327 -0.03515 0.00022 -0.12943 -0.00003 - 96 -0.00000 -0.00018 0.00004 0.11110 0.00020 0.00000 - 97 0.00023 0.06544 0.06084 0.00010 -0.07478 0.00005 - 98 -0.16028 0.00021 0.00020 0.04963 0.00012 -0.06105 - 99 -0.00019 -0.14833 -0.00018 0.00000 -0.13183 -0.00000 - 100 0.06051 -0.00012 0.00012 0.06587 -0.00004 -0.16134 - 101 -0.19613 -0.00018 -0.00008 0.63386 -0.00039 0.51910 - 102 0.00059 -0.00078 1.03584 -0.00039 -0.00069 0.00094 - 103 -0.51720 0.00067 0.00041 -0.47967 -0.00115 -0.19556 - 104 -0.00036 -0.63402 0.19586 -0.00123 0.71919 0.00019 - 105 0.00000 0.00099 -0.00023 -0.61903 -0.00112 -0.00000 - 106 -0.00129 -0.36632 -0.33900 -0.00054 0.41553 -0.00030 - 107 0.89713 -0.00117 -0.00113 -0.27654 -0.00068 0.33922 - 108 0.00108 0.83028 0.00098 -0.00000 0.73253 0.00002 - 109 -0.33871 0.00069 -0.00068 -0.36702 0.00020 0.89650 + 1 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 2 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 3 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 4 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 5 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 6 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 7 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 8 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 9 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 10 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 11 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 12 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 13 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 14 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 15 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 16 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 17 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 18 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 19 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 20 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 21 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 22 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 23 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 24 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 25 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 26 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 27 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 28 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 29 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 30 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 31 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 32 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 33 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 34 -0.00000 -0.00000 -0.00107 0.00204 0.00147 0.00276 + 35 -0.00000 -0.00000 0.00162 -0.00158 0.00050 0.00315 + 36 0.00000 -0.00000 0.00081 0.00115 -0.00396 0.00063 + 37 0.00000 0.00000 0.00132 0.00099 0.00014 0.00072 + 38 0.00000 -0.00000 0.00206 0.00120 0.00183 -0.00175 + 39 0.00000 0.00000 0.00246 -0.00471 -0.00372 -0.00696 + 40 0.00000 0.00000 -0.00373 0.00364 -0.00125 -0.00795 + 41 -0.00000 0.00000 -0.00186 -0.00266 0.01002 -0.00160 + 42 -0.00000 0.00000 -0.00306 -0.00229 -0.00036 -0.00183 + 43 -0.00000 0.00000 -0.00476 -0.00278 -0.00462 0.00443 + 44 -0.00000 -0.00000 -0.00808 0.01549 0.01133 0.02122 + 45 -0.00000 -0.00000 0.01227 -0.01196 0.00382 0.02423 + 46 0.00000 -0.00000 0.00611 0.00873 -0.03053 0.00487 + 47 0.00000 -0.00000 0.01004 0.00752 0.00109 0.00558 + 48 0.00000 -0.00000 0.01565 0.00913 0.01408 -0.01351 + 49 0.00000 0.00000 0.00007 -0.00013 -0.00010 -0.00018 + 50 0.00000 0.00000 -0.00010 0.00010 -0.00003 -0.00021 + 51 -0.00000 0.00000 -0.00005 -0.00007 0.00026 -0.00004 + 52 -0.00000 -0.00000 -0.00009 -0.00006 -0.00001 -0.00005 + 53 -0.00000 0.00000 -0.00013 -0.00008 -0.00012 0.00012 + 54 -0.00000 -0.00000 -0.00001 0.00002 0.00002 0.00003 + 55 -0.00000 -0.00000 0.00002 -0.00002 0.00001 0.00004 + 56 0.00000 -0.00000 0.00001 0.00001 -0.00004 0.00001 + 57 0.00000 0.00000 0.00001 0.00001 0.00000 0.00001 + 58 0.00000 -0.00000 0.00002 0.00001 0.00002 -0.00002 + 59 0.00000 0.00000 0.00266 -0.00510 -0.00373 -0.00698 + 60 0.00000 0.00000 -0.00404 0.00394 -0.00126 -0.00797 + 61 -0.00000 0.00000 -0.00201 -0.00288 0.01005 -0.00160 + 62 -0.00000 0.00000 -0.00331 -0.00248 -0.00036 -0.00183 + 63 -0.00000 0.00000 -0.00516 -0.00301 -0.00463 0.00445 + 64 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 65 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 66 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 67 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 68 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 69 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 70 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 71 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 72 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 73 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 74 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 75 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 76 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 77 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 78 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 79 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 80 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 81 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 82 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 83 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 84 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 85 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 86 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 87 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 88 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 89 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 90 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 91 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 92 -0.05812 -0.10812 0.00205 -0.09682 -0.04298 -0.03446 + 93 0.01123 0.01842 0.00775 -0.07658 -0.05796 -0.10094 + 94 0.05011 0.04976 -0.07204 0.06391 -0.00163 -0.11245 + 95 -0.13104 -0.03772 -0.10335 0.06228 0.03629 -0.02242 + 96 -0.01785 0.10247 -0.07945 -0.11350 0.03733 -0.00596 + 97 -0.04180 0.05703 -0.00241 0.04515 -0.16850 0.02303 + 98 -0.04209 0.07652 0.05129 -0.00836 0.04109 0.04860 + 99 0.01482 -0.01767 0.07460 0.03531 0.03628 -0.09536 + 100 0.10897 -0.05718 -0.09513 -0.00755 -0.02014 0.05637 + 101 0.32530 0.60517 -0.01143 0.53948 0.23881 0.19148 + 102 -0.06286 -0.10312 -0.04317 0.42670 0.32207 0.56087 + 103 -0.28047 -0.27852 0.40141 -0.35609 0.00904 0.62488 + 104 0.73345 0.21112 0.57584 -0.34702 -0.20164 0.12458 + 105 0.09993 -0.57357 0.44270 0.63242 -0.20743 0.03309 + 106 0.23394 -0.31919 0.01345 -0.25159 0.93631 -0.12797 + 107 0.23560 -0.42831 -0.28578 0.04656 -0.22833 -0.27003 + 108 -0.08295 0.09893 -0.41565 -0.19677 -0.20159 0.52988 + 109 -0.60996 0.32003 0.53003 0.04205 0.11190 -0.31323 43 44 45 46 47 48 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00202 -0.00000 0.00000 -0.00000 -0.00000 0.08450 - 2 -0.00397 -0.00000 0.00000 -0.00000 -0.00000 0.14652 - 3 -0.00541 -0.00000 0.00000 -0.00000 -0.00000 0.13419 - 4 0.00659 0.00000 -0.00000 0.00000 0.00000 -0.19514 - 5 -0.00321 -0.00000 0.00000 -0.00000 -0.00000 0.13775 - 6 -0.00073 0.00000 -0.00000 -0.00000 0.00000 0.03385 - 7 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00050 - 8 -0.00004 0.00000 -0.00000 -0.00000 0.00000 0.00178 - 9 0.00088 0.00000 -0.00000 0.00000 0.00000 -0.04169 + 1 -0.00202 0.00000 0.00000 0.00000 -0.00000 0.08451 + 2 -0.00397 0.00000 0.00000 0.00000 -0.00000 0.14653 + 3 -0.00541 0.00000 0.00000 0.00000 -0.00000 0.13419 + 4 0.00658 -0.00000 -0.00000 -0.00000 0.00000 -0.19514 + 5 -0.00320 0.00000 0.00000 0.00000 -0.00000 0.13775 + 6 -0.00073 -0.00000 -0.00000 -0.00000 0.00000 0.03385 + 7 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00050 + 8 -0.00004 -0.00000 -0.00000 -0.00000 0.00000 0.00178 + 9 0.00088 -0.00000 -0.00000 -0.00000 0.00000 -0.04169 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 11 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 12 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 13 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 14 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 15 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 16 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 17 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 18 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 19 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 20 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 21 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 22 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 23 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 24 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 25 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 26 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 27 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 28 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 29 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 30 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 31 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 32 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 33 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 34 -0.00386 0.00001 0.03612 0.04013 0.00002 -0.05924 - 35 -0.00000 0.04172 -0.00002 -0.00004 -0.06957 -0.00005 - 36 -0.00257 0.00002 -0.07222 0.00000 0.00006 -0.03948 - 37 -0.00000 -0.07220 -0.00004 0.00002 -0.04020 -0.00003 - 38 -0.00223 -0.00004 0.02082 -0.06961 0.00004 -0.03415 - 39 0.01020 -0.00014 -0.62097 -0.71477 -0.00029 1.07215 - 40 0.00001 -0.71716 0.00034 0.00072 1.23915 0.00091 - 41 0.00680 -0.00033 1.24148 -0.00000 -0.00106 0.71451 - 42 0.00001 1.24126 0.00064 -0.00029 0.71594 0.00053 - 43 0.00588 0.00063 -0.35800 1.23982 -0.00072 0.61811 - 44 -0.02986 0.00010 0.46628 0.54019 0.00022 -0.81096 - 45 -0.00003 0.53851 -0.00025 -0.00055 -0.93649 -0.00069 - 46 -0.01990 0.00025 -0.93223 0.00000 0.00080 -0.54045 - 47 -0.00001 -0.93206 -0.00048 0.00022 -0.54108 -0.00040 - 48 -0.01721 -0.00047 0.26882 -0.93700 0.00055 -0.46753 - 49 0.00026 -0.00000 -0.00842 -0.00985 -0.00000 0.01482 - 50 0.00000 -0.00972 0.00000 0.00001 0.01707 0.00001 - 51 0.00017 -0.00000 0.01683 -0.00000 -0.00001 0.00988 - 52 0.00000 0.01683 0.00001 -0.00000 0.00986 0.00001 - 53 0.00015 0.00001 -0.00485 0.01708 -0.00001 0.00855 - 54 -0.00004 0.00000 0.00080 0.00093 0.00000 -0.00140 - 55 -0.00000 0.00092 -0.00000 -0.00000 -0.00161 -0.00000 - 56 -0.00003 0.00000 -0.00160 0.00000 0.00000 -0.00093 - 57 -0.00000 -0.00160 -0.00000 0.00000 -0.00093 -0.00000 - 58 -0.00003 -0.00000 0.00046 -0.00161 0.00000 -0.00081 - 59 0.00983 -0.00003 -0.15653 -0.18033 -0.00007 0.27012 - 60 0.00001 -0.18078 0.00008 0.00018 0.31262 0.00023 - 61 0.00655 -0.00008 0.31295 -0.00000 -0.00027 0.18001 - 62 0.00000 0.31290 0.00016 -0.00007 0.18062 0.00013 - 63 0.00566 0.00016 -0.09024 0.31279 -0.00018 0.15572 - 64 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 65 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 66 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 67 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 68 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 69 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 70 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 71 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 72 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 73 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 74 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 75 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 76 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 77 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 78 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 79 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 80 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 81 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 82 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 83 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 84 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 85 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 86 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 87 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 88 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 89 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 90 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 91 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 92 -0.12766 0.00001 -0.00742 0.00869 -0.00001 0.01306 - 93 0.00000 -0.01213 -0.00000 0.00002 -0.00001 -0.00000 - 94 -0.09661 -0.00001 0.00562 -0.00327 -0.00002 0.00988 - 95 -0.00017 -0.00229 0.00001 0.00001 0.01204 0.00002 - 96 -0.07481 -0.00000 0.00725 -0.00000 -0.00002 0.00765 - 97 -0.00010 0.00397 0.00001 -0.00000 0.00696 0.00001 - 98 -0.05570 0.00001 0.00324 0.00568 -0.00001 0.00570 - 99 -0.00018 -0.00001 -0.00000 0.00000 0.01226 0.00002 - 100 0.07392 0.00001 0.00430 0.01501 -0.00000 -0.00756 - 101 0.70876 -0.00000 0.00502 -0.00631 0.00001 -0.00978 - 102 -0.00000 0.00821 0.00000 -0.00001 0.00001 0.00000 - 103 0.53636 0.00001 -0.00380 0.00238 0.00001 -0.00740 - 104 0.00097 0.00155 -0.00001 -0.00001 -0.00874 -0.00001 - 105 0.41531 0.00000 -0.00491 0.00000 0.00001 -0.00573 - 106 0.00056 -0.00269 -0.00001 0.00000 -0.00505 -0.00001 - 107 0.30922 -0.00001 -0.00219 -0.00412 0.00001 -0.00427 - 108 0.00099 0.00001 0.00000 -0.00000 -0.00890 -0.00001 - 109 -0.41039 -0.00000 -0.00291 -0.01090 0.00000 0.00566 + 11 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 12 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 13 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 14 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 15 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 16 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 17 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 18 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 19 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 20 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 21 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 22 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 23 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 24 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 25 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 26 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 27 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 28 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 29 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 30 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 31 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 32 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 33 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 34 0.00098 -0.04592 0.03786 0.01565 -0.05183 0.01511 + 35 0.00101 0.03121 -0.04933 -0.00225 -0.05515 0.01542 + 36 0.00126 -0.03342 -0.01422 -0.06953 0.00270 0.01940 + 37 -0.00434 -0.03216 -0.02817 -0.00005 -0.01279 -0.06661 + 38 0.00201 -0.04148 -0.04573 0.03703 0.02362 0.03089 + 39 -0.00260 0.78939 -0.65082 -0.27881 0.92312 -0.27353 + 40 -0.00266 -0.53646 0.84806 0.04007 0.98220 -0.27915 + 41 -0.00334 0.57450 0.24439 1.23841 -0.04818 -0.35108 + 42 0.01147 0.55280 0.48435 0.00082 0.22774 1.20565 + 43 -0.00532 0.71308 0.78610 -0.65958 -0.42071 -0.55902 + 44 0.00762 -0.59275 0.48870 0.21071 -0.69765 0.20689 + 45 0.00777 0.40283 -0.63681 -0.03028 -0.74231 0.21115 + 46 0.00978 -0.43139 -0.18351 -0.93594 0.03641 0.26556 + 47 -0.03357 -0.41510 -0.36370 -0.00062 -0.17212 -0.91194 + 48 0.01557 -0.53545 -0.59028 0.49848 0.31796 0.42283 + 49 -0.00007 0.01070 -0.00882 -0.00384 0.01272 -0.00378 + 50 -0.00007 -0.00727 0.01150 0.00055 0.01353 -0.00386 + 51 -0.00009 0.00779 0.00331 0.01706 -0.00066 -0.00485 + 52 0.00029 0.00749 0.00657 0.00001 0.00314 0.01667 + 53 -0.00014 0.00967 0.01066 -0.00909 -0.00580 -0.00773 + 54 0.00001 -0.00102 0.00084 0.00036 -0.00120 0.00036 + 55 0.00001 0.00069 -0.00109 -0.00005 -0.00128 0.00036 + 56 0.00001 -0.00074 -0.00031 -0.00161 0.00006 0.00046 + 57 -0.00005 -0.00071 -0.00062 -0.00000 -0.00030 -0.00157 + 58 0.00002 -0.00092 -0.00101 0.00086 0.00055 0.00073 + 59 -0.00251 0.19899 -0.16406 -0.07034 0.23289 -0.06891 + 60 -0.00256 -0.13523 0.21378 0.01011 0.24780 -0.07033 + 61 -0.00322 0.14482 0.06161 0.31243 -0.01215 -0.08845 + 62 0.01105 0.13935 0.12210 0.00021 0.05746 0.30375 + 63 -0.00512 0.17975 0.19816 -0.16640 -0.10614 -0.14084 + 64 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 65 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 66 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 67 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 68 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 69 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 70 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 71 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 72 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 73 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 74 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 75 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 76 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 77 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 78 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 79 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 80 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 81 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 82 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 83 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 84 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 85 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 86 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 87 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 88 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 89 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 90 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 91 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 92 -0.02946 -0.00615 0.00144 0.00329 -0.00393 0.00301 + 93 -0.06618 -0.00479 0.00153 0.00345 -0.01027 0.00677 + 94 -0.06112 0.00311 -0.00546 -0.00190 -0.01029 0.00625 + 95 -0.00853 0.00258 -0.00744 -0.00372 -0.00138 0.00087 + 96 0.08139 -0.00832 -0.00354 -0.00351 0.00014 -0.00833 + 97 0.03686 0.00285 -0.00076 0.01579 -0.00097 -0.00377 + 98 -0.12491 0.00016 0.00339 -0.00286 0.00518 0.01278 + 99 0.08141 0.00326 0.00429 -0.00505 -0.00804 -0.00833 + 100 -0.02289 -0.00177 -0.00597 0.00286 0.00478 0.00234 + 101 0.16353 0.00416 -0.00097 -0.00239 0.00285 -0.00226 + 102 0.36740 0.00324 -0.00103 -0.00250 0.00745 -0.00507 + 103 0.33933 -0.00210 0.00370 0.00138 0.00747 -0.00468 + 104 0.04738 -0.00175 0.00503 0.00270 0.00101 -0.00065 + 105 -0.45187 0.00563 0.00239 0.00255 -0.00010 0.00623 + 106 -0.20465 -0.00193 0.00052 -0.01147 0.00070 0.00282 + 107 0.69350 -0.00011 -0.00229 0.00208 -0.00376 -0.00957 + 108 -0.45195 -0.00221 -0.00290 0.00366 0.00584 0.00623 + 109 0.12710 0.00120 0.00404 -0.00208 -0.00347 -0.00175 49 50 51 52 53 54 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 2 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 3 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 4 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 5 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 6 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 7 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 8 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 9 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00472 - 11 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00273 - 12 0.00000 -0.00000 -0.00000 -0.00000 -0.00545 0.00000 - 13 0.00000 0.00000 -0.00000 0.00000 -0.00001 0.03512 - 14 -0.00000 -0.00000 0.00000 -0.00000 0.00002 0.02029 - 15 -0.00000 0.00000 0.00000 0.00000 0.04056 -0.00000 - 16 0.00000 0.00000 0.00000 -0.00000 0.00001 -0.06077 - 17 -0.00000 -0.00000 -0.00000 -0.00000 -0.00003 -0.03511 - 18 -0.00000 0.00000 -0.00000 0.00000 -0.07019 0.00000 - 19 -0.00000 -0.00000 -0.00000 -0.00000 -0.00001 0.03432 - 20 0.00000 0.00000 0.00000 0.00000 0.00002 0.01983 - 21 0.00000 -0.00000 0.00000 -0.00000 0.03964 -0.00000 - 22 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00306 - 23 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00177 - 24 -0.00000 0.00000 0.00000 0.00000 0.00353 -0.00000 - 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00017 - 26 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00010 - 27 0.00000 -0.00000 -0.00000 -0.00000 -0.00020 0.00000 - 28 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00014 - 29 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00008 - 30 -0.00000 0.00000 0.00000 0.00000 0.00016 -0.00000 - 31 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00981 - 32 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00567 - 33 -0.00000 0.00000 -0.00000 0.00000 -0.01133 0.00000 - 34 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 35 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 36 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 37 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 38 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 39 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 40 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 41 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 42 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 43 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 44 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 45 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 46 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 47 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 48 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 49 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 50 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 51 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 52 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 53 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 54 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 55 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 56 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 57 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 58 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 59 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 60 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 61 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 62 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 63 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 64 -0.00007 -0.02801 -0.00006 -0.00007 -0.00001 -0.10916 - 65 0.05945 -0.00011 0.05623 0.00001 -0.07722 -0.00003 - 66 0.00009 0.05428 -0.00005 -0.07707 -0.00012 -0.01410 - 67 -0.08859 0.00021 0.00000 0.00009 -0.06904 0.00000 - 68 -0.00025 -0.09395 0.00006 -0.04453 -0.00006 0.02440 - 69 0.03427 -0.00013 -0.09754 0.00003 -0.04452 0.00007 - 70 0.00004 -0.00003 0.00001 0.06895 -0.00005 -0.00010 - 71 0.00079 0.33128 0.00069 0.00077 0.00006 1.28216 - 72 -0.70301 0.00134 -0.66176 -0.00014 0.90695 0.00040 - 73 -0.00106 -0.64188 0.00059 0.90698 0.00135 0.16562 - 74 1.04761 -0.00251 -0.00000 -0.00109 0.81091 -0.00004 - 75 0.00293 1.11095 -0.00069 0.52403 0.00076 -0.28665 - 76 -0.40529 0.00157 1.14787 -0.00032 0.52287 -0.00080 - 77 -0.00042 0.00031 -0.00013 -0.81138 0.00055 0.00121 - 78 0.00000 0.00007 0.00000 0.00000 0.00000 0.00027 - 79 -0.00015 0.00000 -0.00014 -0.00000 0.00019 0.00000 - 80 -0.00000 -0.00013 0.00000 0.00019 0.00000 0.00004 - 81 0.00022 -0.00000 -0.00000 -0.00000 0.00017 -0.00000 - 82 0.00000 0.00023 -0.00000 0.00011 0.00000 -0.00006 - 83 -0.00009 0.00000 0.00024 -0.00000 0.00011 -0.00000 - 84 -0.00000 0.00000 -0.00000 -0.00017 0.00000 0.00000 - 85 -0.00039 -0.16114 -0.00034 -0.00037 -0.00003 -0.61934 - 86 0.34194 -0.00065 0.32055 0.00007 -0.43810 -0.00019 - 87 0.00052 0.31221 -0.00029 -0.43933 -0.00065 -0.08000 - 88 -0.50955 0.00122 0.00000 0.00053 -0.39171 0.00002 - 89 -0.00143 -0.54036 0.00033 -0.25383 -0.00037 0.13846 - 90 0.19713 -0.00076 -0.55602 0.00016 -0.25257 0.00039 - 91 0.00021 -0.00015 0.00006 0.39302 -0.00026 -0.00058 - 92 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 93 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 94 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 95 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 96 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 97 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 98 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 99 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 100 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 101 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 102 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 103 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 104 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 105 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 106 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 107 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 108 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 109 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 1 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 2 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 3 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 4 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 5 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 6 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 7 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 8 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 9 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 10 -0.00000 0.00000 -0.00000 0.00000 -0.00357 -0.00166 + 11 -0.00000 0.00000 0.00000 0.00000 -0.00149 0.00517 + 12 -0.00000 0.00000 0.00000 -0.00000 0.00384 0.00046 + 13 0.00000 -0.00000 0.00000 -0.00000 0.02658 0.01238 + 14 0.00000 -0.00000 -0.00000 -0.00000 0.01108 -0.03847 + 15 0.00000 -0.00000 -0.00000 0.00000 -0.02856 -0.00340 + 16 0.00000 -0.00000 -0.00000 -0.00000 -0.04600 -0.02143 + 17 0.00000 -0.00000 -0.00000 0.00000 -0.01918 0.06658 + 18 -0.00000 -0.00000 -0.00000 -0.00000 0.04942 0.00589 + 19 -0.00000 0.00000 0.00000 0.00000 0.02598 0.01210 + 20 -0.00000 0.00000 0.00000 -0.00000 0.01083 -0.03760 + 21 -0.00000 0.00000 0.00000 0.00000 -0.02791 -0.00333 + 22 0.00000 -0.00000 0.00000 -0.00000 0.00232 0.00108 + 23 0.00000 -0.00000 0.00000 -0.00000 0.00097 -0.00335 + 24 0.00000 -0.00000 -0.00000 0.00000 -0.00249 -0.00030 + 25 -0.00000 0.00000 -0.00000 0.00000 -0.00013 -0.00006 + 26 -0.00000 0.00000 -0.00000 0.00000 -0.00005 0.00019 + 27 -0.00000 0.00000 0.00000 -0.00000 0.00014 0.00002 + 28 0.00000 -0.00000 0.00000 -0.00000 0.00010 0.00005 + 29 0.00000 -0.00000 -0.00000 -0.00000 0.00004 -0.00015 + 30 0.00000 -0.00000 -0.00000 0.00000 -0.00011 -0.00001 + 31 0.00000 0.00000 -0.00000 0.00000 -0.00743 -0.00346 + 32 0.00000 -0.00000 -0.00000 0.00000 -0.00310 0.01075 + 33 0.00000 -0.00000 -0.00000 -0.00000 0.00798 0.00095 + 34 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 35 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 36 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 37 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 38 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 39 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 40 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 41 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 42 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 43 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 44 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 45 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 46 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 47 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 48 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 49 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 50 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 51 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 52 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 53 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 54 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 55 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 56 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 57 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 58 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 59 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 60 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 61 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 62 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 63 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 64 0.03457 -0.06030 -0.03688 0.06028 0.02929 -0.03941 + 65 -0.02199 0.06589 -0.00855 0.00082 0.02303 -0.07788 + 66 0.00026 -0.05386 -0.00717 -0.08670 -0.01094 -0.04239 + 67 -0.03120 0.00494 -0.07628 0.01255 -0.07222 -0.00861 + 68 -0.03894 -0.00630 -0.03307 -0.01491 0.06923 -0.00126 + 69 -0.06935 -0.01956 -0.01724 0.00312 0.02306 0.04220 + 70 -0.05982 -0.03511 0.06310 0.03369 -0.02572 -0.03794 + 71 -0.40884 0.71309 0.43398 -0.70942 -0.34398 0.46284 + 72 0.26007 -0.77911 0.10065 -0.00961 -0.27052 0.91474 + 73 -0.00311 0.63691 0.08439 1.02030 0.12851 0.49785 + 74 0.36900 -0.05839 0.89768 -0.14766 0.84828 0.10114 + 75 0.46050 0.07449 0.38922 0.17543 -0.81318 0.01477 + 76 0.82008 0.23132 0.20288 -0.03677 -0.27088 -0.49566 + 77 0.70741 0.41517 -0.74262 -0.39653 0.30212 0.44562 + 78 -0.00009 0.00015 0.00009 -0.00015 -0.00007 0.00010 + 79 0.00005 -0.00016 0.00002 -0.00000 -0.00006 0.00020 + 80 -0.00000 0.00013 0.00002 0.00022 0.00003 0.00011 + 81 0.00008 -0.00001 0.00019 -0.00003 0.00018 0.00002 + 82 0.00010 0.00002 0.00008 0.00004 -0.00017 0.00000 + 83 0.00017 0.00005 0.00004 -0.00001 -0.00006 -0.00011 + 84 0.00015 0.00009 -0.00016 -0.00008 0.00006 0.00010 + 85 0.19886 -0.34684 -0.21022 0.34364 0.16616 -0.22358 + 86 -0.12650 0.37896 -0.04875 0.00465 0.13067 -0.44186 + 87 0.00151 -0.30979 -0.04088 -0.49422 -0.06208 -0.24049 + 88 -0.17948 0.02840 -0.43482 0.07152 -0.40976 -0.04885 + 89 -0.22399 -0.03623 -0.18853 -0.08497 0.39281 -0.00713 + 90 -0.39888 -0.11251 -0.09827 0.01781 0.13085 0.23943 + 91 -0.34408 -0.20194 0.35972 0.19207 -0.14594 -0.21526 + 92 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 93 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 94 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 95 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 96 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 97 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 98 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 99 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 100 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 101 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 102 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 103 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 104 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 105 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 106 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 107 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 108 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 109 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 55 56 57 58 59 60 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 2 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 3 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 4 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 5 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 6 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 7 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 8 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 9 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 10 0.00329 -0.00130 -1.62821 0.93745 -0.00000 0.00000 - 11 -0.00570 -0.00168 -0.94073 -1.62253 0.00000 0.00000 - 12 0.00000 -1.88043 0.00197 0.00080 0.00000 0.00000 - 13 -0.02520 0.00145 1.80582 -1.04844 0.00000 -0.00000 - 14 0.04362 0.00186 1.04335 1.81464 -0.00000 -0.00000 - 15 -0.00002 2.08556 -0.00218 -0.00089 -0.00000 -0.00000 - 16 0.04434 -0.00092 -1.15031 0.66767 -0.00000 0.00000 - 17 -0.07675 -0.00119 -0.66461 -1.15560 0.00000 0.00000 - 18 0.00004 -1.32851 0.00139 0.00057 0.00000 0.00000 - 19 -0.02492 0.00040 0.50546 -0.29251 0.00000 -0.00000 - 20 0.04314 0.00052 0.29204 0.50628 -0.00000 -0.00000 - 21 -0.00002 0.58377 -0.00061 -0.00025 -0.00000 -0.00000 - 22 -0.00219 0.00027 0.33636 -0.19253 0.00000 -0.00000 - 23 0.00380 0.00035 0.19434 0.33323 -0.00000 -0.00000 - 24 -0.00000 0.38846 -0.00041 -0.00016 -0.00000 -0.00000 - 25 0.00013 0.00000 0.00275 -0.00164 -0.00000 -0.00000 - 26 -0.00022 0.00000 0.00159 0.00284 0.00000 -0.00000 - 27 0.00000 0.00317 -0.00000 -0.00000 -0.00000 0.00000 - 28 -0.00010 0.00001 0.01337 -0.00767 0.00000 -0.00000 - 29 0.00017 0.00001 0.00773 0.01328 -0.00000 -0.00000 - 30 -0.00000 0.01544 -0.00002 -0.00001 -0.00000 -0.00000 - 31 0.00712 -0.00012 -0.14909 0.08614 -0.00000 0.00000 - 32 -0.01232 -0.00015 -0.08614 -0.14908 -0.00000 0.00000 - 33 0.00001 -0.17218 0.00018 0.00007 0.00000 0.00000 - 34 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 35 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 36 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 37 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 38 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 39 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 40 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 41 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 42 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 43 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 44 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 45 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 46 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 47 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 48 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 49 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 50 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 51 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 52 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 53 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 54 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 55 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 56 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 57 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 58 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 59 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 60 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 61 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 62 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 63 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 64 0.00008 0.00002 0.01939 -0.00002 0.00000 -0.00000 - 65 0.00008 0.01372 -0.00001 -0.00002 -0.00000 0.00000 - 66 -0.05979 0.00002 0.00251 0.01352 0.00000 0.00000 - 67 0.00007 0.01227 -0.00001 -0.00002 0.00000 0.00000 - 68 -0.03454 0.00001 -0.00434 0.00781 -0.00000 -0.00000 - 69 0.00005 0.00791 -0.00002 -0.00001 -0.00000 -0.00000 - 70 -0.08915 0.00001 0.00002 0.02016 -0.00000 0.00000 - 71 -0.00099 -0.00002 -0.01525 0.00001 -0.00000 0.00000 - 72 -0.00095 -0.01079 0.00001 0.00001 0.00000 -0.00000 - 73 0.70191 -0.00002 -0.00197 -0.01054 -0.00000 -0.00000 - 74 -0.00085 -0.00965 0.00001 0.00001 -0.00000 0.00000 - 75 0.40554 -0.00001 0.00341 -0.00609 0.00000 0.00000 - 76 -0.00055 -0.00622 0.00002 0.00001 0.00000 0.00000 - 77 1.04654 -0.00001 -0.00001 -0.01571 0.00000 -0.00000 - 78 -0.00000 -0.00000 -0.00009 0.00000 -0.00000 -0.00000 - 79 -0.00000 -0.00007 0.00000 0.00000 0.00000 0.00000 - 80 0.00015 -0.00000 -0.00001 -0.00006 0.00000 -0.00000 - 81 -0.00000 -0.00006 0.00000 0.00000 -0.00000 -0.00000 - 82 0.00009 -0.00000 0.00002 -0.00004 0.00000 0.00000 - 83 -0.00000 -0.00004 0.00000 0.00000 -0.00000 -0.00000 - 84 0.00023 -0.00000 -0.00000 -0.00009 -0.00000 -0.00000 - 85 0.00048 0.00001 0.00682 -0.00001 0.00000 -0.00000 - 86 0.00046 0.00482 -0.00000 -0.00001 -0.00000 0.00000 - 87 -0.33873 0.00001 0.00088 0.00467 -0.00000 0.00000 - 88 0.00041 0.00431 -0.00000 -0.00001 0.00000 -0.00000 - 89 -0.19571 0.00000 -0.00152 0.00270 -0.00000 -0.00000 - 90 0.00026 0.00278 -0.00001 -0.00000 -0.00000 -0.00000 - 91 -0.50503 0.00000 0.00001 0.00696 -0.00000 0.00000 - 92 -0.00000 -0.00000 0.00000 -0.00000 -0.00017 0.13410 - 93 -0.00000 0.00000 -0.00000 0.00000 0.43830 0.00012 - 94 -0.00000 -0.00000 -0.00000 -0.00000 -0.00015 -0.71039 - 95 0.00000 -0.00000 0.00000 -0.00000 -0.58013 0.00027 - 96 -0.00000 0.00000 0.00000 0.00000 -0.00025 0.91677 - 97 0.00000 0.00000 -0.00000 0.00000 1.00409 0.00052 - 98 0.00000 -0.00000 -0.00000 0.00000 0.00072 -0.40955 - 99 -0.00000 -0.00000 0.00000 0.00000 0.00041 -0.00056 - 100 0.00000 -0.00000 0.00000 0.00000 -0.00021 -0.07765 - 101 0.00000 0.00000 -0.00000 -0.00000 0.00008 -0.06412 - 102 0.00000 -0.00000 0.00000 -0.00000 -0.20956 -0.00006 - 103 0.00000 0.00000 0.00000 0.00000 0.00007 0.33966 - 104 -0.00000 -0.00000 -0.00000 0.00000 0.27738 -0.00013 - 105 0.00000 -0.00000 -0.00000 -0.00000 0.00012 -0.43834 - 106 -0.00000 -0.00000 0.00000 -0.00000 -0.48009 -0.00025 - 107 0.00000 0.00000 0.00000 -0.00000 -0.00034 0.19582 - 108 0.00000 0.00000 -0.00000 -0.00000 -0.00020 0.00027 - 109 -0.00000 0.00000 -0.00000 -0.00000 0.00010 0.03713 + 1 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 2 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 3 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 4 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 5 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 6 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 7 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 8 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 9 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 10 -0.00455 -1.27093 -0.48276 -1.29459 -0.00000 0.00000 + 11 -0.00105 0.91987 -1.61226 -0.29974 0.00000 -0.00000 + 12 -0.00464 1.03663 0.83880 -1.32121 -0.00000 0.00000 + 13 0.03480 1.40957 0.53542 1.44787 0.00000 -0.00000 + 14 0.00806 -1.02022 1.78814 0.33523 -0.00000 0.00000 + 15 0.03552 -1.14971 -0.93030 1.47764 -0.00000 0.00000 + 16 -0.06124 -0.89790 -0.34106 -0.92203 -0.00000 0.00000 + 17 -0.01418 0.64988 -1.13905 -0.21348 0.00000 0.00000 + 18 -0.06249 0.73237 0.59261 -0.94099 0.00000 -0.00000 + 19 0.03442 0.39455 0.14987 0.40395 0.00000 -0.00000 + 20 0.00797 -0.28557 0.50051 0.09353 -0.00000 -0.00000 + 21 0.03513 -0.32181 -0.26040 0.41226 -0.00000 0.00000 + 22 0.00303 0.26255 0.09973 0.26588 -0.00000 -0.00000 + 23 0.00070 -0.19003 0.33306 0.06156 -0.00000 -0.00000 + 24 0.00309 -0.21415 -0.17328 0.27134 0.00000 -0.00000 + 25 -0.00017 0.00215 0.00082 0.00227 0.00000 0.00000 + 26 -0.00004 -0.00155 0.00272 0.00052 0.00000 0.00000 + 27 -0.00018 -0.00175 -0.00142 0.00231 -0.00000 -0.00000 + 28 0.00014 0.01044 0.00396 0.01059 -0.00000 -0.00000 + 29 0.00003 -0.00755 0.01324 0.00245 -0.00000 0.00000 + 30 0.00014 -0.00851 -0.00689 0.01081 0.00000 0.00000 + 31 -0.00983 -0.11637 -0.04420 -0.11895 -0.00000 0.00000 + 32 -0.00228 0.08423 -0.14763 -0.02754 0.00000 0.00000 + 33 -0.01003 0.09492 0.07680 -0.12140 0.00000 -0.00000 + 34 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 35 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 36 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 37 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 38 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 39 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 40 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 41 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 42 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 43 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 44 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 45 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 46 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 47 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 48 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 49 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 50 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 53 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 54 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 55 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 56 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 57 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 58 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 59 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 60 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 61 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 62 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 63 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 64 0.02005 0.00139 -0.00861 -0.00453 -0.00000 -0.00000 + 65 0.03403 0.00706 -0.01258 -0.00769 0.00000 0.00000 + 66 0.01641 0.00675 -0.00386 -0.00371 0.00000 0.00000 + 67 -0.02045 0.01005 0.00813 0.00462 0.00000 0.00000 + 68 -0.07087 -0.00842 -0.00897 0.01602 0.00000 0.00000 + 69 0.06954 -0.00823 0.00229 -0.01572 0.00000 0.00000 + 70 -0.02467 0.00802 -0.00143 0.00558 -0.00000 -0.00000 + 71 -0.23542 -0.00109 0.00677 0.00353 0.00000 0.00000 + 72 -0.39948 -0.00555 0.00990 0.00600 -0.00000 -0.00000 + 73 -0.19264 -0.00531 0.00304 0.00289 -0.00000 -0.00000 + 74 0.24006 -0.00790 -0.00639 -0.00360 -0.00000 -0.00000 + 75 0.83201 0.00662 0.00706 -0.01249 -0.00000 -0.00000 + 76 -0.81643 0.00647 -0.00180 0.01226 -0.00000 -0.00000 + 77 0.28959 -0.00631 0.00112 -0.00435 0.00000 0.00000 + 78 -0.00005 -0.00001 0.00004 0.00002 -0.00000 0.00000 + 79 -0.00009 -0.00003 0.00006 0.00004 0.00000 -0.00000 + 80 -0.00004 -0.00003 0.00002 0.00002 0.00000 0.00000 + 81 0.00005 -0.00005 -0.00004 -0.00002 0.00000 -0.00000 + 82 0.00018 0.00004 0.00004 -0.00008 -0.00000 0.00000 + 83 -0.00018 0.00004 -0.00001 0.00007 0.00000 -0.00000 + 84 0.00006 -0.00004 0.00001 -0.00003 -0.00000 0.00000 + 85 0.11361 0.00049 -0.00303 -0.00157 -0.00000 -0.00000 + 86 0.19278 0.00248 -0.00442 -0.00266 0.00000 0.00000 + 87 0.09296 0.00237 -0.00136 -0.00128 0.00000 0.00000 + 88 -0.11585 0.00353 0.00286 0.00160 0.00000 0.00000 + 89 -0.40151 -0.00296 -0.00315 0.00554 0.00000 0.00000 + 90 0.39399 -0.00289 0.00081 -0.00543 0.00000 0.00000 + 91 -0.13975 0.00282 -0.00050 0.00193 -0.00000 -0.00000 + 92 0.00000 0.00000 0.00000 -0.00000 -0.22827 0.61397 + 93 -0.00000 -0.00000 -0.00000 -0.00000 0.42869 -0.64107 + 94 0.00000 0.00000 0.00000 0.00000 -0.41719 0.41518 + 95 0.00000 0.00000 0.00000 -0.00000 0.36475 -0.18330 + 96 0.00000 -0.00000 -0.00000 0.00000 0.06937 0.22122 + 97 0.00000 0.00000 0.00000 0.00000 0.17400 0.24314 + 98 -0.00000 -0.00000 -0.00000 -0.00000 0.40977 0.45265 + 99 -0.00000 -0.00000 -0.00000 -0.00000 0.64401 0.42128 + 100 -0.00000 0.00000 0.00000 0.00000 0.61330 0.22924 + 101 -0.00000 -0.00000 -0.00000 0.00000 0.10914 -0.29355 + 102 0.00000 -0.00000 -0.00000 0.00000 -0.20497 0.30651 + 103 -0.00000 -0.00000 -0.00000 -0.00000 0.19947 -0.19851 + 104 -0.00000 -0.00000 -0.00000 0.00000 -0.17440 0.08764 + 105 -0.00000 0.00000 0.00000 0.00000 -0.03317 -0.10577 + 106 -0.00000 -0.00000 -0.00000 -0.00000 -0.08319 -0.11625 + 107 0.00000 -0.00000 -0.00000 0.00000 -0.19592 -0.21643 + 108 0.00000 0.00000 0.00000 -0.00000 -0.30792 -0.20143 + 109 0.00000 0.00000 -0.00000 0.00000 -0.29324 -0.10961 61 62 63 64 65 66 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 2 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 3 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 4 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 5 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 6 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 7 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 8 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 9 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 10 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 11 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 12 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 13 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 14 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 15 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 16 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 17 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 18 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 19 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 21 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 22 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 23 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 24 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 25 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 26 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 27 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 28 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 29 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 30 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 31 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 32 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 33 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 34 -0.00000 -0.00000 -0.00347 -0.00000 0.00487 0.00000 - 35 0.00000 -0.00000 0.00000 -0.00400 -0.00001 -0.00844 - 36 0.00000 0.00000 0.00693 -0.00000 0.00000 0.00001 - 37 0.00000 -0.00000 0.00000 0.00693 0.00000 -0.00488 - 38 0.00000 0.00000 -0.00200 0.00000 -0.00845 0.00001 - 39 0.00000 -0.00000 -0.00291 -0.00000 0.00540 0.00000 - 40 -0.00000 0.00000 0.00000 -0.00336 -0.00001 -0.00937 - 41 -0.00000 -0.00000 0.00581 -0.00000 0.00000 0.00001 - 42 -0.00000 0.00000 0.00000 0.00581 0.00000 -0.00541 - 43 -0.00000 -0.00000 -0.00168 0.00000 -0.00937 0.00001 - 44 -0.00000 0.00000 0.00203 0.00000 -0.00362 -0.00000 - 45 0.00000 -0.00000 -0.00000 0.00235 0.00001 0.00627 - 46 0.00000 0.00000 -0.00406 0.00000 -0.00000 -0.00001 - 47 0.00000 -0.00000 -0.00000 -0.00406 -0.00000 0.00362 - 48 0.00000 0.00000 0.00117 -0.00000 0.00627 -0.00001 - 49 0.00000 0.00000 -0.00010 -0.00000 0.00018 0.00000 - 50 -0.00000 0.00000 0.00000 -0.00011 -0.00000 -0.00031 - 51 -0.00000 -0.00000 0.00019 -0.00000 0.00000 0.00000 - 52 -0.00000 0.00000 0.00000 0.00019 0.00000 -0.00018 - 53 -0.00000 -0.00000 -0.00006 0.00000 -0.00031 0.00000 - 54 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 55 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 56 0.00000 0.00000 0.00001 -0.00000 0.00000 0.00000 - 57 0.00000 -0.00000 0.00000 0.00001 0.00000 -0.00000 - 58 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 59 0.00000 0.00000 -0.00054 -0.00000 0.00097 0.00000 - 60 -0.00000 0.00000 0.00000 -0.00062 -0.00000 -0.00168 - 61 -0.00000 -0.00000 0.00107 -0.00000 0.00000 0.00000 - 62 -0.00000 0.00000 0.00000 0.00107 0.00000 -0.00097 - 63 -0.00000 -0.00000 -0.00031 0.00000 -0.00168 0.00000 - 64 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 65 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 66 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 67 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 68 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 69 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 70 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 71 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 72 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 73 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 74 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 75 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 76 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 77 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 78 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 79 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 80 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 81 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 82 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 83 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 84 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 85 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 86 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 87 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 88 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 89 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 90 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 91 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 92 -0.21958 -0.00203 0.70935 -0.00052 0.58078 -0.00081 - 93 0.00067 -0.00087 0.00027 1.15921 0.00105 -0.00077 - 94 -0.57907 -0.00407 -0.53680 0.00079 -0.21880 -0.00115 - 95 0.00552 -0.70986 -0.00124 0.21919 0.00072 0.80465 - 96 -0.00001 0.00111 -0.69276 0.00016 -0.00000 -0.00125 - 97 0.00198 -0.41014 -0.00084 -0.37937 -0.00004 0.46490 - 98 1.00444 0.00706 -0.30947 -0.00107 0.37952 -0.00099 - 99 -0.00654 0.92959 0.00000 0.00109 0.00053 0.81957 - 100 -0.37923 -0.00239 -0.41073 -0.00051 1.00303 -0.00041 - 101 0.10479 0.00097 -0.33808 0.00025 -0.27658 0.00038 - 102 -0.00032 0.00042 -0.00013 -0.55248 -0.00050 0.00037 - 103 0.27636 0.00194 0.25584 -0.00037 0.10420 0.00055 - 104 -0.00263 0.33877 0.00059 -0.10447 -0.00034 -0.38319 - 105 0.00000 -0.00053 0.33017 -0.00008 0.00000 0.00060 - 106 -0.00094 0.19574 0.00040 0.18081 0.00002 -0.22139 - 107 -0.47936 -0.00337 0.14750 0.00051 -0.18073 0.00047 - 108 0.00312 -0.44364 -0.00000 -0.00052 -0.00025 -0.39029 - 109 0.18098 0.00114 0.19576 0.00024 -0.47766 0.00019 + 1 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 2 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 3 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 4 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 6 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 7 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 8 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 9 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 10 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 11 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 12 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 13 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 14 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 15 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 16 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 17 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 18 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 19 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 20 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 21 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 22 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 23 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 24 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 25 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 26 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 27 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 28 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 29 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 31 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 32 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 33 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 34 0.00000 0.00000 0.00188 -0.00539 0.00286 0.00592 + 35 0.00000 0.00000 -0.00010 0.00560 0.00077 0.00665 + 36 0.00000 -0.00000 0.00345 -0.00050 -0.00839 0.00099 + 37 -0.00000 -0.00000 0.00404 0.00071 0.00024 0.00153 + 38 0.00000 -0.00000 0.00568 0.00168 0.00399 -0.00353 + 39 -0.00000 -0.00000 0.00158 -0.00452 0.00317 0.00656 + 40 -0.00000 -0.00000 -0.00009 0.00470 0.00086 0.00738 + 41 -0.00000 0.00000 0.00289 -0.00042 -0.00930 0.00110 + 42 0.00000 0.00000 0.00339 0.00059 0.00026 0.00170 + 43 -0.00000 0.00000 0.00476 0.00141 0.00443 -0.00392 + 44 0.00000 0.00000 -0.00110 0.00316 -0.00212 -0.00439 + 45 0.00000 0.00000 0.00006 -0.00328 -0.00058 -0.00494 + 46 0.00000 -0.00000 -0.00202 0.00029 0.00623 -0.00074 + 47 -0.00000 -0.00000 -0.00237 -0.00042 -0.00018 -0.00114 + 48 0.00000 -0.00000 -0.00333 -0.00099 -0.00297 0.00262 + 49 -0.00000 -0.00000 0.00005 -0.00015 0.00010 0.00021 + 50 -0.00000 -0.00000 -0.00000 0.00016 0.00003 0.00024 + 51 -0.00000 0.00000 0.00010 -0.00001 -0.00030 0.00004 + 52 0.00000 0.00000 0.00011 0.00002 0.00001 0.00006 + 53 -0.00000 0.00000 0.00016 0.00005 0.00014 -0.00013 + 54 0.00000 0.00000 0.00000 -0.00001 0.00000 0.00000 + 55 0.00000 0.00000 -0.00000 0.00001 0.00000 0.00000 + 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 57 -0.00000 -0.00000 0.00001 0.00000 0.00000 0.00000 + 58 0.00000 -0.00000 0.00001 0.00000 0.00000 -0.00000 + 59 -0.00000 -0.00000 0.00029 -0.00083 0.00057 0.00118 + 60 -0.00000 -0.00000 -0.00002 0.00086 0.00015 0.00132 + 61 -0.00000 0.00000 0.00053 -0.00008 -0.00167 0.00020 + 62 0.00000 0.00000 0.00062 0.00011 0.00005 0.00030 + 63 -0.00000 0.00000 0.00088 0.00026 0.00079 -0.00070 + 64 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 65 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 66 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 67 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 68 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 69 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 70 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 71 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 72 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 73 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 74 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 75 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 76 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 77 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 78 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 79 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 80 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 81 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 82 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 83 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 84 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 85 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 86 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 87 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 88 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 89 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 90 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 91 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 92 0.62069 0.45443 0.43119 -0.42276 0.25831 0.22485 + 93 -0.10462 -0.08568 0.31490 -0.36222 0.33468 0.64157 + 94 -0.26542 -0.35413 0.01723 0.60025 -0.01815 0.69896 + 95 0.12054 0.84600 0.15830 0.73555 -0.23105 0.13015 + 96 -0.65149 0.02199 0.85502 -0.12363 -0.23339 0.02761 + 97 -0.39017 0.20999 -0.19487 0.20378 1.05250 -0.10072 + 98 -0.51143 0.19493 -0.18104 -0.26874 -0.24304 -0.31220 + 99 0.12254 -0.07666 -0.47901 -0.18818 -0.24932 0.58324 + 100 0.44933 -0.62682 0.44048 0.40002 0.13926 -0.34510 + 101 -0.29622 -0.21687 -0.20551 0.20149 -0.12301 -0.10708 + 102 0.04993 0.04089 -0.15008 0.17263 -0.15938 -0.30552 + 103 0.12667 0.16901 -0.00821 -0.28608 0.00864 -0.33286 + 104 -0.05753 -0.40375 -0.07545 -0.35056 0.11003 -0.06198 + 105 0.31092 -0.01050 -0.40750 0.05892 0.11114 -0.01315 + 106 0.18620 -0.10022 0.09287 -0.09712 -0.50121 0.04796 + 107 0.24408 -0.09303 0.08628 0.12808 0.11574 0.14867 + 108 -0.05848 0.03658 0.22830 0.08969 0.11873 -0.27775 + 109 -0.21444 0.29914 -0.20994 -0.19065 -0.06632 0.16434 67 68 69 70 71 72 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00031 -0.00000 -0.00000 -0.00000 0.00000 -0.04656 - 2 -0.00038 0.00000 0.00000 -0.00000 -0.00000 -0.07947 - 3 0.00019 0.00000 0.00000 -0.00000 -0.00000 -0.04778 + 1 -0.00031 -0.00000 -0.00000 -0.00000 0.00000 -0.04658 + 2 -0.00037 0.00000 0.00000 0.00000 -0.00000 -0.07949 + 3 0.00019 0.00000 0.00000 0.00000 -0.00000 -0.04779 4 -0.00014 -0.00000 -0.00000 -0.00000 0.00000 0.05609 5 0.00006 0.00000 0.00000 0.00000 -0.00000 -0.03017 - 6 -0.00011 0.00000 0.00000 -0.00000 -0.00000 -0.02190 - 7 -0.00001 -0.00000 -0.00000 -0.00000 0.00000 0.00124 - 8 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00131 + 6 -0.00011 0.00000 0.00000 0.00000 -0.00000 -0.02191 + 7 -0.00001 -0.00000 -0.00000 -0.00000 -0.00000 0.00124 + 8 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00131 9 -0.00002 -0.00000 -0.00000 -0.00000 0.00000 0.00881 - 10 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 11 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 12 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 13 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 14 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 15 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 16 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 17 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 18 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 19 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 20 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 21 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 22 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 23 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 24 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 25 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 26 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 27 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 28 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 29 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 30 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 31 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 32 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 33 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 34 -0.00761 -0.00048 -0.60772 -0.70051 -0.00046 1.05213 - 35 -0.00001 -0.70186 0.00072 0.00041 1.21443 0.00090 - 36 -0.00507 0.00035 1.21499 -0.00000 -0.00104 0.70116 - 37 -0.00000 1.21477 -0.00005 -0.00046 0.70166 0.00052 - 38 -0.00439 0.00042 -0.35036 1.21509 -0.00041 0.60656 - 39 -0.00924 0.00040 0.51620 0.59672 0.00039 -0.89694 - 40 -0.00001 0.59616 -0.00061 -0.00035 -1.03450 -0.00076 - 41 -0.00616 -0.00030 -1.03202 0.00000 0.00088 -0.59774 - 42 -0.00000 -1.03184 0.00005 0.00039 -0.59770 -0.00044 - 43 -0.00533 -0.00035 0.29760 -1.03506 0.00035 -0.51710 - 44 0.00611 -0.00019 -0.24220 -0.27923 -0.00018 0.41931 - 45 0.00001 -0.27972 0.00029 0.00016 0.48408 0.00036 - 46 0.00407 0.00014 0.48423 -0.00000 -0.00041 0.27944 - 47 0.00000 0.48414 -0.00002 -0.00018 0.27969 0.00021 - 48 0.00352 0.00017 -0.13963 0.48435 -0.00016 0.24174 - 49 -0.00030 0.00001 0.00925 0.01028 0.00001 -0.01525 - 50 -0.00000 0.01069 -0.00001 -0.00001 -0.01783 -0.00001 - 51 -0.00020 -0.00001 -0.01850 0.00000 0.00002 -0.01016 - 52 -0.00000 -0.01850 0.00000 0.00001 -0.01030 -0.00001 - 53 -0.00017 -0.00001 0.00533 -0.01784 0.00001 -0.00879 - 54 -0.00000 -0.00000 -0.00322 -0.00369 -0.00000 0.00552 - 55 -0.00000 -0.00372 0.00000 0.00000 0.00639 0.00000 - 56 -0.00000 0.00000 0.00644 -0.00000 -0.00001 0.00368 - 57 -0.00000 0.00644 -0.00000 -0.00000 0.00369 0.00000 - 58 -0.00000 0.00000 -0.00186 0.00639 -0.00000 0.00318 - 59 -0.00164 0.00006 0.07614 0.08764 0.00006 -0.13153 - 60 -0.00000 0.08793 -0.00009 -0.00005 -0.15194 -0.00011 - 61 -0.00109 -0.00004 -0.15222 0.00000 0.00013 -0.08766 - 62 -0.00000 -0.15219 0.00001 0.00006 -0.08778 -0.00006 - 63 -0.00095 -0.00005 0.04389 -0.15202 0.00005 -0.07583 - 64 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 65 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 66 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 67 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 68 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 69 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 70 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 71 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 72 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 73 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 74 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 75 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 76 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 77 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 78 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 79 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 80 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 81 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 82 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 83 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 84 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 85 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 86 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 87 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 88 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 89 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 90 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 91 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 92 0.79293 0.00000 -0.00429 0.00431 -0.00000 0.00612 - 93 -0.00000 -0.00701 0.00000 0.00001 -0.00001 -0.00000 - 94 0.60005 -0.00000 0.00325 -0.00162 -0.00001 0.00463 - 95 0.00108 -0.00133 0.00001 0.00000 0.00596 0.00001 - 96 0.46463 0.00000 0.00419 -0.00000 -0.00001 0.00359 - 97 0.00063 0.00230 0.00000 -0.00000 0.00345 0.00000 - 98 0.34594 0.00001 0.00187 0.00281 -0.00001 0.00267 - 99 0.00111 -0.00001 0.00000 0.00000 0.00608 0.00001 - 100 -0.45913 0.00000 0.00249 0.00743 0.00000 -0.00355 - 101 -0.37750 -0.00000 0.00120 -0.00109 0.00000 -0.00149 - 102 0.00000 0.00196 -0.00000 -0.00000 0.00000 0.00000 - 103 -0.28567 0.00000 -0.00091 0.00041 0.00000 -0.00112 - 104 -0.00052 0.00037 -0.00000 -0.00000 -0.00151 -0.00000 - 105 -0.22120 -0.00000 -0.00117 0.00000 0.00000 -0.00087 - 106 -0.00030 -0.00064 -0.00000 0.00000 -0.00087 -0.00000 - 107 -0.16469 -0.00000 -0.00052 -0.00071 0.00000 -0.00065 - 108 -0.00053 0.00000 -0.00000 -0.00000 -0.00154 -0.00000 - 109 0.21858 -0.00000 -0.00069 -0.00188 -0.00000 0.00086 + 10 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 11 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 12 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 13 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 14 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 16 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 17 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 18 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 19 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 20 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 21 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 22 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 23 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 24 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 25 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 26 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 27 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 28 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 29 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 30 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 31 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 32 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 33 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 34 0.00194 0.81948 -0.57529 -0.27742 0.90343 -0.26842 + 35 0.00198 -0.58762 0.78688 0.03483 0.96278 -0.27394 + 36 0.00249 0.54206 0.28193 1.21392 -0.04162 -0.34453 + 37 -0.00855 0.50273 0.51443 -0.00022 0.22320 1.18313 + 38 0.00397 0.63629 0.82098 -0.64451 -0.41530 -0.54858 + 39 0.00236 -0.69607 0.48865 0.23631 -0.76958 0.22883 + 40 0.00241 0.49913 -0.66838 -0.02967 -0.82014 0.23353 + 41 0.00303 -0.46043 -0.23948 -1.03406 0.03545 0.29371 + 42 -0.01039 -0.42702 -0.43696 0.00019 -0.19013 -1.00862 + 43 0.00482 -0.54047 -0.69735 0.54902 0.35377 0.46766 + 44 -0.00156 0.32660 -0.22928 -0.11058 0.36012 -0.10697 + 45 -0.00159 -0.23419 0.31361 0.01388 0.38377 -0.10917 + 46 -0.00200 0.21604 0.11236 0.48388 -0.01659 -0.13731 + 47 0.00687 0.20036 0.20502 -0.00009 0.08897 0.47152 + 48 -0.00319 0.25359 0.32720 -0.25691 -0.16554 -0.21863 + 49 0.00008 -0.01248 0.00876 0.00407 -0.01326 0.00389 + 50 0.00008 0.00895 -0.01198 -0.00051 -0.01413 0.00397 + 51 0.00010 -0.00825 -0.00429 -0.01782 0.00061 0.00499 + 52 -0.00034 -0.00765 -0.00783 0.00000 -0.00328 -0.01715 + 53 0.00016 -0.00969 -0.01250 0.00946 0.00610 0.00795 + 54 0.00000 0.00434 -0.00305 -0.00146 0.00475 -0.00141 + 55 0.00000 -0.00311 0.00417 0.00018 0.00507 -0.00144 + 56 0.00000 0.00287 0.00149 0.00639 -0.00022 -0.00181 + 57 -0.00000 0.00266 0.00273 -0.00000 0.00117 0.00621 + 58 0.00000 0.00337 0.00435 -0.00339 -0.00219 -0.00288 + 59 0.00042 -0.10267 0.07207 0.03471 -0.11303 0.03356 + 60 0.00043 0.07362 -0.09858 -0.00436 -0.12045 0.03425 + 61 0.00054 -0.06791 -0.03532 -0.15187 0.00521 0.04307 + 62 -0.00185 -0.06298 -0.06445 0.00003 -0.02792 -0.14791 + 63 0.00086 -0.07972 -0.10286 0.08064 0.05196 0.06858 + 64 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 65 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 66 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 67 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 68 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 69 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 70 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 71 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 72 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 73 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 74 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 75 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 76 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 77 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 78 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 79 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 80 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 81 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 82 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 83 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 84 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 85 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 86 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 87 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 88 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 89 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 90 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 91 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 92 0.18295 -0.00361 0.00055 0.00164 -0.00194 0.00141 + 93 0.41103 -0.00283 0.00067 0.00173 -0.00508 0.00317 + 94 0.37962 0.00204 -0.00301 -0.00092 -0.00510 0.00293 + 95 0.05301 0.00182 -0.00417 -0.00184 -0.00069 0.00041 + 96 -0.50553 -0.00464 -0.00241 -0.00174 0.00006 -0.00390 + 97 -0.22895 0.00168 -0.00031 0.00782 -0.00044 -0.00177 + 98 0.77585 -0.00006 0.00196 -0.00143 0.00256 0.00599 + 99 -0.50562 0.00169 0.00262 -0.00248 -0.00399 -0.00391 + 100 0.14219 -0.00075 -0.00352 0.00141 0.00237 0.00110 + 101 -0.08710 0.00101 -0.00015 -0.00041 0.00049 -0.00034 + 102 -0.19569 0.00079 -0.00019 -0.00044 0.00128 -0.00077 + 103 -0.18073 -0.00057 0.00084 0.00023 0.00129 -0.00071 + 104 -0.02524 -0.00051 0.00117 0.00046 0.00018 -0.00010 + 105 0.24068 0.00130 0.00067 0.00044 -0.00002 0.00095 + 106 0.10900 -0.00047 0.00009 -0.00198 0.00011 0.00043 + 107 -0.36937 0.00002 -0.00055 0.00036 -0.00065 -0.00145 + 108 0.24072 -0.00047 -0.00073 0.00063 0.00101 0.00095 + 109 -0.06770 0.00021 0.00098 -0.00036 -0.00060 -0.00027 73 74 75 76 77 78 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 2 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 3 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 4 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 6 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 7 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 8 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 9 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 10 0.00000 0.00000 -0.00000 0.00000 0.00000 0.02563 - 11 -0.00000 -0.00000 0.00000 -0.00000 0.00002 0.01481 - 12 -0.00000 0.00000 -0.00000 -0.00000 0.02960 -0.00001 - 13 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.03838 - 14 0.00000 0.00000 -0.00000 -0.00000 -0.00002 -0.02218 - 15 0.00000 -0.00000 0.00000 0.00000 -0.04433 0.00001 - 16 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.02691 - 17 0.00000 0.00000 -0.00000 0.00000 0.00002 0.01555 - 18 -0.00000 0.00000 -0.00000 -0.00000 0.03108 -0.00001 - 19 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.01158 - 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00001 -0.00669 - 21 0.00000 -0.00000 0.00000 0.00000 -0.01337 0.00000 - 22 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00656 - 23 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00379 - 24 -0.00000 0.00000 0.00000 -0.00000 -0.00758 0.00000 - 25 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00011 - 26 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00006 - 27 0.00000 -0.00000 -0.00000 0.00000 0.00012 -0.00000 - 28 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00027 - 29 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00016 - 30 -0.00000 0.00000 0.00000 -0.00000 -0.00032 0.00000 - 31 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00333 - 32 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00192 - 33 -0.00000 0.00000 -0.00000 -0.00000 0.00384 -0.00000 - 34 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 35 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 36 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 37 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 38 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 40 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 41 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 42 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 43 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 44 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 45 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 46 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 47 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 48 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 49 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 50 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 51 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 52 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 53 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 54 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 55 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 56 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 57 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 58 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 59 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 60 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 61 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 62 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 63 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 64 0.30848 0.00228 0.00064 0.00071 0.00037 1.19444 - 65 0.00451 -0.65462 -0.61626 -0.00030 0.84490 0.00015 - 66 -0.59769 -0.00397 0.00032 0.84462 0.00130 0.15429 - 67 -0.00721 0.97549 0.00000 -0.00102 0.75543 -0.00024 - 68 1.03448 0.00790 -0.00078 0.48799 0.00064 -0.26704 - 69 0.00335 -0.37739 1.06895 -0.00001 0.48710 -0.00087 - 70 0.00029 -0.00039 0.00009 -0.75559 0.00051 0.00113 - 71 -0.19440 -0.00144 -0.00041 -0.00045 -0.00023 -0.75147 - 72 -0.00285 0.41253 0.38799 0.00019 -0.53156 -0.00010 - 73 0.37666 0.00250 -0.00020 -0.53176 -0.00082 -0.09707 - 74 0.00454 -0.61474 -0.00000 0.00064 -0.47527 0.00015 - 75 -0.65191 -0.00498 0.00049 -0.30723 -0.00040 0.16800 - 76 -0.00211 0.23783 -0.67299 0.00001 -0.30645 0.00055 - 77 -0.00019 0.00025 -0.00005 0.47570 -0.00032 -0.00071 - 78 0.00017 0.00000 0.00000 0.00000 0.00000 0.00068 - 79 0.00000 -0.00035 -0.00034 -0.00000 0.00048 0.00000 - 80 -0.00032 -0.00000 0.00000 0.00047 0.00000 0.00009 - 81 -0.00000 0.00053 0.00000 -0.00000 0.00043 -0.00000 - 82 0.00056 0.00000 -0.00000 0.00027 0.00000 -0.00015 - 83 0.00000 -0.00020 0.00060 -0.00000 0.00028 -0.00000 - 84 0.00000 -0.00000 0.00000 -0.00042 0.00000 0.00000 - 85 0.07216 0.00053 0.00015 0.00017 0.00009 0.27803 - 86 0.00106 -0.15314 -0.14373 -0.00007 0.19667 0.00004 - 87 -0.13982 -0.00093 0.00007 0.19699 0.00030 0.03591 - 88 -0.00169 0.22821 0.00000 -0.00024 0.17584 -0.00005 - 89 0.24200 0.00185 -0.00018 0.11382 0.00015 -0.06216 - 90 0.00078 -0.08829 0.24931 -0.00000 0.11338 -0.00020 - 91 0.00007 -0.00009 0.00002 -0.17623 0.00012 0.00026 - 92 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 93 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 94 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 95 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 96 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 97 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 98 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 99 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 100 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 101 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 102 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 103 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 104 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 105 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 106 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 107 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 108 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 109 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 1 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 2 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 3 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 4 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 5 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 6 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 7 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 8 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 9 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 10 -0.00000 -0.00000 -0.00000 -0.00000 0.01326 0.01680 + 11 0.00000 -0.00000 0.00000 -0.00000 -0.02546 0.01433 + 12 -0.00000 0.00000 0.00000 0.00000 -0.00722 -0.01971 + 13 0.00000 -0.00000 0.00000 0.00000 -0.01986 -0.02516 + 14 -0.00000 -0.00000 -0.00000 -0.00000 0.03813 -0.02146 + 15 0.00000 -0.00000 -0.00000 0.00000 0.01081 0.02952 + 16 -0.00000 0.00000 -0.00000 -0.00000 0.01392 0.01764 + 17 0.00000 0.00000 0.00000 0.00000 -0.02673 0.01505 + 18 -0.00000 0.00000 0.00000 -0.00000 -0.00758 -0.02069 + 19 0.00000 -0.00000 0.00000 0.00000 -0.00599 -0.00759 + 20 -0.00000 -0.00000 -0.00000 -0.00000 0.01150 -0.00648 + 21 0.00000 -0.00000 -0.00000 0.00000 0.00326 0.00890 + 22 -0.00000 0.00000 -0.00000 0.00000 -0.00339 -0.00430 + 23 -0.00000 0.00000 -0.00000 0.00000 0.00652 -0.00367 + 24 -0.00000 0.00000 0.00000 -0.00000 0.00185 0.00505 + 25 0.00000 -0.00000 0.00000 -0.00000 0.00005 0.00007 + 26 0.00000 -0.00000 0.00000 -0.00000 -0.00011 0.00006 + 27 0.00000 -0.00000 -0.00000 0.00000 -0.00003 -0.00008 + 28 -0.00000 0.00000 -0.00000 0.00000 -0.00014 -0.00018 + 29 0.00000 0.00000 -0.00000 0.00000 0.00027 -0.00015 + 30 -0.00000 0.00000 0.00000 -0.00000 0.00008 0.00021 + 31 -0.00000 0.00000 -0.00000 -0.00000 0.00172 0.00218 + 32 0.00000 0.00000 0.00000 0.00000 -0.00331 0.00186 + 33 -0.00000 0.00000 0.00000 -0.00000 -0.00094 -0.00256 + 34 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 35 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 36 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 37 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 38 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 39 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 40 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 41 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 42 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 43 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 45 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 46 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 47 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 48 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 49 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 50 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 52 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 53 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 54 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 55 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 56 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 57 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 58 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 59 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 60 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 61 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 62 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 63 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 64 -0.23381 0.72883 0.46110 -0.62223 0.34585 -0.41108 + 65 0.08550 -0.76005 0.09415 -0.00061 0.77128 -0.44138 + 66 0.12089 0.58063 -0.00593 0.95337 0.47890 0.00976 + 67 0.32471 -0.12485 0.84485 -0.06287 0.27357 0.74735 + 68 0.43385 -0.02162 0.34655 0.19484 -0.16097 -0.74038 + 69 0.79178 0.05136 0.19122 -0.01736 -0.50743 -0.13930 + 70 0.72489 0.24067 -0.65611 -0.42910 0.46877 0.17835 + 71 0.14734 -0.45930 -0.29030 0.39174 -0.21759 0.25863 + 72 -0.05388 0.47897 -0.05928 0.00038 -0.48524 0.27769 + 73 -0.07618 -0.36591 0.00373 -0.60023 -0.30129 -0.00614 + 74 -0.20462 0.07868 -0.53190 0.03958 -0.17211 -0.47019 + 75 -0.27340 0.01363 -0.21818 -0.12267 0.10127 0.46580 + 76 -0.49897 -0.03236 -0.12039 0.01093 0.31925 0.08764 + 77 -0.45681 -0.15167 0.41307 0.27015 -0.29492 -0.11221 + 78 -0.00013 0.00039 0.00026 -0.00035 0.00020 -0.00023 + 79 0.00005 -0.00041 0.00005 -0.00000 0.00044 -0.00025 + 80 0.00007 0.00031 -0.00000 0.00053 0.00027 0.00001 + 81 0.00018 -0.00007 0.00047 -0.00004 0.00016 0.00042 + 82 0.00023 -0.00001 0.00019 0.00011 -0.00009 -0.00042 + 83 0.00043 0.00003 0.00011 -0.00001 -0.00029 -0.00008 + 84 0.00039 0.00013 -0.00037 -0.00024 0.00027 0.00010 + 85 -0.05470 0.17050 0.10754 -0.14512 0.08050 -0.09569 + 86 0.02000 -0.17781 0.02196 -0.00014 0.17953 -0.10274 + 87 0.02828 0.13583 -0.00138 0.22236 0.11147 0.00227 + 88 0.07596 -0.02921 0.19705 -0.01466 0.06368 0.17396 + 89 0.10149 -0.00506 0.08083 0.04544 -0.03747 -0.17234 + 90 0.18523 0.01201 0.04460 -0.00405 -0.11812 -0.03243 + 91 0.16958 0.05630 -0.15303 -0.10008 0.10911 0.04151 + 92 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 93 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 94 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 95 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 96 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 97 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 98 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 99 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 100 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 101 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 102 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 103 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 104 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 105 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 106 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 107 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 108 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 109 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 79 80 81 82 83 84 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 10.09208 -0.00000 -0.00000 -0.00000 0.00000 - 2 -0.00000 15.46534 -0.00000 0.00000 -0.00000 0.00000 - 3 0.00000 3.35148 0.00000 0.00000 -0.00000 -0.00000 + 1 0.00000 10.09207 0.00000 -0.00000 0.00000 0.00000 + 2 0.00000 15.46534 0.00000 -0.00000 0.00000 0.00000 + 3 0.00000 3.35148 0.00000 -0.00000 -0.00000 -0.00000 4 -0.00000 -2.54555 -0.00000 -0.00000 0.00000 0.00000 5 0.00000 1.23157 0.00000 0.00000 -0.00000 -0.00000 - 6 -0.00000 4.12919 -0.00000 0.00000 -0.00000 -0.00000 - 7 0.00000 0.03176 0.00000 -0.00000 0.00000 0.00000 - 8 -0.00000 0.18693 -0.00000 0.00000 -0.00000 -0.00000 - 9 -0.00000 -0.35382 -0.00000 -0.00000 0.00000 0.00000 - 10 -0.01873 0.00000 -0.00114 -1.71383 0.99195 -0.00000 - 11 0.03241 -0.00000 -0.00163 -0.99020 -1.71685 0.00000 - 12 -0.00002 -0.00000 -1.97932 0.00181 0.00085 0.00000 - 13 0.02796 -0.00000 0.00065 0.97524 -0.56470 0.00000 - 14 -0.04840 0.00000 0.00093 0.56346 0.97738 -0.00000 - 15 0.00002 -0.00000 1.12631 -0.00103 -0.00048 -0.00000 - 16 -0.01951 0.00000 -0.00035 -0.51793 0.29961 -0.00000 - 17 0.03377 -0.00000 -0.00049 -0.29924 -0.51857 0.00000 - 18 -0.00002 0.00000 -0.59816 0.00055 0.00026 0.00000 - 19 0.00838 -0.00000 0.00015 0.22573 -0.13046 0.00000 - 20 -0.01450 0.00000 0.00022 0.13042 0.22579 -0.00000 - 21 0.00001 -0.00000 0.26070 -0.00024 -0.00011 -0.00000 - 22 0.00475 -0.00000 0.00114 1.71737 -0.99213 0.00000 - 23 -0.00822 0.00000 0.00164 0.99224 1.71717 -0.00000 - 24 0.00000 -0.00000 1.98341 -0.00181 -0.00085 -0.00000 - 25 -0.00007 -0.00000 -0.00007 -0.09904 0.05676 -0.00000 - 26 0.00013 -0.00000 -0.00009 -0.05722 -0.09823 0.00000 - 27 -0.00000 0.00000 -0.11438 0.00010 0.00005 0.00000 - 28 0.00020 -0.00000 0.00004 0.05972 -0.03446 0.00000 - 29 -0.00034 0.00000 0.00006 0.03450 0.05964 0.00000 - 30 0.00000 -0.00000 0.06897 -0.00006 -0.00003 -0.00000 - 31 -0.00241 0.00000 -0.00005 -0.06791 0.03923 -0.00000 - 32 0.00417 -0.00000 -0.00006 -0.03924 -0.06789 0.00000 - 33 -0.00000 0.00000 -0.07843 0.00007 0.00003 0.00000 - 34 0.00000 0.00402 -0.00000 -0.00000 0.00000 0.28604 - 35 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00065 - 36 0.00000 0.00268 -0.00000 0.00000 0.00000 -0.57187 - 37 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00169 - 38 0.00000 0.00232 0.00000 0.00000 0.00000 0.16490 - 39 -0.00000 -0.00660 -0.00000 0.00000 0.00000 -0.17478 - 40 -0.00000 -0.00001 0.00000 0.00000 -0.00000 -0.00040 - 41 -0.00000 -0.00440 -0.00000 -0.00000 -0.00000 0.34943 - 42 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00103 - 43 -0.00000 -0.00381 0.00000 -0.00000 -0.00000 -0.10076 - 44 0.00000 0.00458 0.00000 -0.00000 -0.00000 0.07983 - 45 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00018 - 46 0.00000 0.00305 0.00000 -0.00000 0.00000 -0.15960 - 47 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00047 - 48 0.00000 0.00264 0.00000 -0.00000 0.00000 0.04602 - 49 -0.00000 -0.00143 0.00000 -0.00000 -0.00000 -0.49968 - 50 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00114 - 51 -0.00000 -0.00095 0.00000 -0.00000 -0.00000 0.99899 - 52 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00296 - 53 -0.00000 -0.00082 -0.00000 0.00000 -0.00000 -0.28807 - 54 0.00000 0.00026 0.00000 -0.00000 -0.00000 0.03121 - 55 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00007 - 56 0.00000 0.00017 -0.00000 -0.00000 -0.00000 -0.06239 - 57 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00018 - 58 0.00000 0.00015 0.00000 0.00000 -0.00000 0.01799 - 59 -0.00000 -0.00165 -0.00000 0.00000 0.00000 -0.02596 - 60 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00006 - 61 -0.00000 -0.00110 0.00000 -0.00000 -0.00000 0.05189 - 62 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00015 - 63 -0.00000 -0.00095 -0.00000 0.00000 -0.00000 -0.01496 - 64 -0.00092 0.00000 0.00000 0.00054 -0.00000 0.00000 - 65 -0.00088 -0.00000 0.00038 -0.00000 -0.00000 0.00000 - 66 0.65403 0.00000 0.00000 0.00007 0.00037 0.00000 - 67 -0.00079 0.00000 0.00034 -0.00000 -0.00000 -0.00000 - 68 0.37788 -0.00000 0.00000 -0.00012 0.00021 -0.00000 - 69 -0.00051 -0.00000 0.00022 -0.00000 -0.00000 -0.00000 - 70 0.97515 0.00000 0.00000 0.00000 0.00055 0.00000 - 71 0.00058 -0.00000 -0.00000 -0.00072 0.00000 -0.00000 - 72 0.00055 0.00000 -0.00051 0.00000 0.00000 -0.00000 - 73 -0.41137 -0.00000 -0.00000 -0.00009 -0.00048 -0.00000 - 74 0.00050 -0.00000 -0.00046 0.00000 0.00000 0.00000 - 75 -0.23768 0.00000 -0.00000 0.00016 -0.00028 0.00000 - 76 0.00032 0.00000 -0.00029 0.00000 0.00000 0.00000 - 77 -0.61335 -0.00000 -0.00000 -0.00000 -0.00072 -0.00000 - 78 -0.00000 0.00000 0.00000 0.00022 -0.00000 0.00000 - 79 -0.00000 0.00000 0.00016 -0.00000 -0.00000 -0.00000 - 80 0.00037 0.00000 0.00000 0.00003 0.00015 -0.00000 - 81 -0.00000 -0.00000 0.00014 -0.00000 -0.00000 -0.00000 - 82 0.00022 0.00000 0.00000 -0.00005 0.00008 -0.00000 - 83 -0.00000 -0.00000 0.00009 -0.00000 -0.00000 -0.00000 - 84 0.00056 -0.00000 0.00000 0.00000 0.00022 0.00000 - 85 -0.00021 0.00000 0.00000 0.00039 -0.00000 0.00000 - 86 -0.00021 -0.00000 0.00027 -0.00000 -0.00000 0.00000 - 87 0.15213 0.00000 0.00000 0.00005 0.00026 -0.00000 - 88 -0.00018 0.00000 0.00024 -0.00000 -0.00000 -0.00000 - 89 0.08790 -0.00000 0.00000 -0.00009 0.00015 -0.00000 - 90 -0.00012 -0.00000 0.00016 -0.00000 -0.00000 -0.00000 - 91 0.22683 -0.00000 0.00000 0.00000 0.00038 0.00000 - 92 0.00000 0.00001 -0.00000 0.00000 -0.00000 -0.00011 - 93 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 94 -0.00000 0.00001 0.00000 0.00000 -0.00000 0.00008 - 95 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 96 -0.00000 0.00001 0.00000 0.00000 0.00000 0.00011 - 97 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 98 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00005 - 99 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 100 -0.00000 -0.00001 0.00000 0.00000 0.00000 0.00006 - 101 -0.00000 0.00001 0.00000 -0.00000 0.00000 0.00010 - 102 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 103 0.00000 0.00001 -0.00000 0.00000 -0.00000 -0.00007 - 104 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 105 0.00000 0.00001 -0.00000 -0.00000 -0.00000 -0.00010 - 106 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 107 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00004 - 108 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 109 0.00000 -0.00001 0.00000 -0.00000 -0.00000 -0.00006 + 6 0.00000 4.12919 0.00000 0.00000 0.00000 -0.00000 + 7 0.00000 0.03176 -0.00000 -0.00000 0.00000 0.00000 + 8 0.00000 0.18694 0.00000 0.00000 -0.00000 -0.00000 + 9 -0.00000 -0.35382 -0.00000 0.00000 0.00000 0.00000 + 10 0.02586 -0.00000 0.48174 1.34750 1.36985 0.00000 + 11 0.00599 -0.00000 1.71576 -0.93469 0.31717 0.00000 + 12 0.02639 -0.00000 -0.86129 -1.10830 1.39802 0.00000 + 13 -0.03862 0.00000 -0.27413 -0.76678 -0.77984 -0.00000 + 14 -0.00894 0.00000 -0.97633 0.53188 -0.18056 -0.00000 + 15 -0.03941 0.00000 0.49011 0.63066 -0.79587 -0.00000 + 16 0.02694 -0.00000 0.14558 0.40722 0.41376 0.00000 + 17 0.00624 -0.00000 0.51851 -0.28247 0.09580 0.00000 + 18 0.02750 -0.00000 -0.26028 -0.33493 0.42226 0.00000 + 19 -0.01157 0.00000 -0.06345 -0.17748 -0.18016 0.00000 + 20 -0.00268 0.00000 -0.22598 0.12311 -0.04171 0.00000 + 21 -0.01181 0.00000 0.11344 0.14597 -0.18386 -0.00000 + 22 -0.00656 0.00000 -0.48274 -1.35028 -1.37011 -0.00000 + 23 -0.00152 0.00000 -1.71930 0.93662 -0.31723 -0.00000 + 24 -0.00670 0.00000 0.86307 1.11058 -1.39828 -0.00000 + 25 0.00010 0.00000 0.02784 0.07787 0.07838 0.00000 + 26 0.00002 -0.00000 0.09915 -0.05401 0.01815 0.00000 + 27 0.00010 -0.00000 -0.04977 -0.06404 0.07999 -0.00000 + 28 -0.00027 0.00000 -0.01679 -0.04695 -0.04759 -0.00000 + 29 -0.00006 0.00000 -0.05979 0.03257 -0.01102 -0.00000 + 30 -0.00028 0.00000 0.03001 0.03862 -0.04857 0.00000 + 31 0.00333 -0.00000 0.01909 0.05339 0.05417 -0.00000 + 32 0.00077 -0.00000 0.06799 -0.03704 0.01254 -0.00000 + 33 0.00339 -0.00000 -0.03413 -0.04392 0.05529 0.00000 + 34 -0.00000 -0.00103 0.00000 0.00000 0.00000 0.39040 + 35 0.00000 -0.00105 0.00000 0.00000 0.00000 -0.44459 + 36 0.00000 -0.00132 0.00000 -0.00000 -0.00000 -0.03313 + 37 0.00000 0.00452 0.00000 0.00000 0.00000 -0.14198 + 38 0.00000 -0.00210 0.00000 0.00000 0.00000 -0.25441 + 39 0.00000 0.00169 0.00000 0.00000 -0.00000 -0.23854 + 40 0.00000 0.00172 -0.00000 -0.00000 0.00000 0.27165 + 41 -0.00000 0.00216 -0.00000 -0.00000 0.00000 0.02024 + 42 -0.00000 -0.00743 -0.00000 -0.00000 -0.00000 0.08675 + 43 -0.00000 0.00344 -0.00000 -0.00000 -0.00000 0.15545 + 44 -0.00000 -0.00117 -0.00000 -0.00000 0.00000 0.10895 + 45 -0.00000 -0.00119 0.00000 0.00000 0.00000 -0.12408 + 46 0.00000 -0.00150 0.00000 0.00000 -0.00000 -0.00925 + 47 0.00000 0.00515 0.00000 0.00000 -0.00000 -0.03962 + 48 0.00000 -0.00239 0.00000 0.00000 0.00000 -0.07100 + 49 0.00000 0.00036 -0.00000 0.00000 -0.00000 -0.68197 + 50 0.00000 0.00037 -0.00000 0.00000 -0.00000 0.77664 + 51 -0.00000 0.00047 -0.00000 0.00000 0.00000 0.05787 + 52 -0.00000 -0.00161 -0.00000 -0.00000 -0.00000 0.24802 + 53 -0.00000 0.00074 -0.00000 -0.00000 -0.00000 0.44443 + 54 -0.00000 -0.00007 0.00000 0.00000 -0.00000 0.04259 + 55 0.00000 -0.00007 -0.00000 0.00000 0.00000 -0.04851 + 56 0.00000 -0.00008 0.00000 0.00000 -0.00000 -0.00361 + 57 -0.00000 0.00029 0.00000 0.00000 -0.00000 -0.01549 + 58 -0.00000 -0.00013 0.00000 0.00000 -0.00000 -0.02776 + 59 0.00000 0.00042 -0.00000 0.00000 -0.00000 -0.03543 + 60 0.00000 0.00043 0.00000 -0.00000 -0.00000 0.04034 + 61 -0.00000 0.00054 -0.00000 -0.00000 0.00000 0.00301 + 62 -0.00000 -0.00185 -0.00000 -0.00000 0.00000 0.01288 + 63 -0.00000 0.00086 0.00000 0.00000 -0.00000 0.02309 + 64 -0.21936 0.00000 0.00024 -0.00003 0.00012 -0.00000 + 65 -0.37223 -0.00000 0.00036 -0.00019 0.00021 -0.00000 + 66 -0.17950 0.00000 0.00011 -0.00019 0.00010 -0.00000 + 67 0.22368 0.00000 -0.00022 -0.00029 -0.00013 0.00000 + 68 0.77525 0.00000 0.00025 0.00024 -0.00043 0.00000 + 69 -0.76074 0.00000 -0.00007 0.00023 0.00043 0.00000 + 70 0.26984 -0.00000 0.00004 -0.00022 -0.00015 -0.00000 + 71 0.13797 -0.00000 -0.00032 0.00005 -0.00016 0.00000 + 72 0.23412 0.00000 -0.00047 0.00025 -0.00028 0.00000 + 73 0.11290 -0.00000 -0.00015 0.00025 -0.00013 0.00000 + 74 -0.14069 -0.00000 0.00030 0.00038 0.00017 -0.00000 + 75 -0.48761 -0.00000 -0.00033 -0.00032 0.00057 0.00000 + 76 0.47848 -0.00000 0.00009 -0.00030 -0.00056 0.00000 + 77 -0.16972 0.00000 -0.00006 0.00030 0.00020 0.00000 + 78 -0.00013 0.00000 0.00010 -0.00001 0.00005 0.00000 + 79 -0.00021 0.00000 0.00014 -0.00008 0.00008 0.00000 + 80 -0.00010 -0.00000 0.00005 -0.00008 0.00004 -0.00000 + 81 0.00013 -0.00000 -0.00009 -0.00012 -0.00005 -0.00000 + 82 0.00044 -0.00000 0.00010 0.00010 -0.00017 -0.00000 + 83 -0.00043 -0.00000 -0.00003 0.00009 0.00017 0.00000 + 84 0.00015 0.00000 0.00002 -0.00009 -0.00006 -0.00000 + 85 -0.05102 0.00000 0.00017 -0.00002 0.00009 0.00000 + 86 -0.08658 -0.00000 0.00025 -0.00014 0.00015 -0.00000 + 87 -0.04175 0.00000 0.00008 -0.00013 0.00007 -0.00000 + 88 0.05203 0.00000 -0.00016 -0.00020 -0.00009 -0.00000 + 89 0.18033 0.00000 0.00018 0.00017 -0.00030 0.00000 + 90 -0.17695 0.00000 -0.00005 0.00016 0.00030 -0.00000 + 91 0.06277 -0.00000 0.00003 -0.00016 -0.00011 -0.00000 + 92 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00005 + 93 0.00000 0.00001 -0.00000 -0.00000 0.00000 0.00004 + 94 0.00000 0.00001 -0.00000 0.00000 -0.00000 -0.00009 + 95 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00012 + 96 0.00000 -0.00001 0.00000 0.00000 0.00000 -0.00002 + 97 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00002 + 98 0.00000 0.00001 0.00000 -0.00000 0.00000 0.00005 + 99 -0.00000 -0.00001 -0.00000 -0.00000 0.00000 0.00005 + 100 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00008 + 101 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00004 + 102 -0.00000 0.00001 0.00000 0.00000 -0.00000 -0.00004 + 103 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00008 + 104 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00010 + 105 -0.00000 -0.00001 -0.00000 -0.00000 0.00000 0.00001 + 106 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00002 + 107 -0.00000 0.00001 0.00000 -0.00000 -0.00000 -0.00004 + 108 0.00000 -0.00001 -0.00000 -0.00000 0.00000 -0.00004 + 109 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00007 85 86 87 88 89 90 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 -0.00000 0.00000 0.02620 4.18015 0.00000 - 2 -0.00000 0.00000 0.00000 0.05218 10.10744 0.00000 - 3 0.00000 0.00000 0.00000 0.01234 1.69454 0.00000 - 4 -0.00000 -0.00000 -0.00000 -0.00964 -1.18381 -0.00000 - 5 0.00000 0.00000 0.00000 0.00480 0.57096 0.00000 - 6 0.00000 0.00000 0.00000 0.02529 6.79314 0.00000 - 7 -0.00000 -0.00000 -0.00000 -0.00537 -1.86092 -0.00000 - 8 0.00000 0.00000 0.00000 0.00208 0.51041 0.00000 - 9 -0.00000 -0.00000 -0.00000 -0.00139 -0.16605 -0.00000 - 10 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00502 - 11 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00341 - 12 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -1.03295 - 13 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00252 - 14 0.00000 0.00000 0.00000 0.00000 0.00000 0.00171 - 15 0.00000 0.00000 0.00000 0.00000 0.00000 0.51758 - 16 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00133 - 17 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00091 - 18 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.27452 - 19 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00059 - 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00040 - 21 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.12148 - 22 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00877 - 23 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00596 - 24 -0.00000 0.00000 0.00000 -0.00000 0.00000 1.80393 - 25 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00829 - 26 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00563 - 27 0.00000 0.00000 -0.00000 0.00000 0.00000 -1.70488 - 28 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00084 - 29 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00057 - 30 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.17272 - 31 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00018 - 32 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00012 - 33 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.03693 - 34 -0.00064 0.00018 0.33028 -0.49636 0.00197 -0.00000 - 35 0.33035 -0.57258 -0.00025 -0.00042 0.00000 0.00000 - 36 0.00155 0.00049 0.00000 -0.33079 0.00132 0.00000 - 37 -0.57176 -0.33082 0.00018 -0.00024 0.00000 -0.00000 - 38 -0.00069 0.00025 -0.57289 -0.28616 0.00114 -0.00000 - 39 0.00039 -0.00011 -0.20174 0.30314 -0.00157 0.00000 - 40 -0.20185 0.34973 0.00015 0.00026 -0.00000 -0.00000 - 41 -0.00095 -0.00030 -0.00000 0.20202 -0.00105 -0.00000 - 42 0.34936 0.20207 -0.00011 0.00015 -0.00000 0.00000 - 43 0.00042 -0.00015 0.34992 0.17476 -0.00091 0.00000 - 44 -0.00018 0.00005 0.09209 -0.13834 0.00083 0.00000 - 45 0.09219 -0.15964 -0.00007 -0.00012 0.00000 0.00000 - 46 0.00043 0.00014 0.00000 -0.09220 0.00056 0.00000 - 47 -0.15957 -0.09224 0.00005 -0.00007 0.00000 0.00000 - 48 -0.00019 0.00007 -0.15973 -0.07976 0.00048 -0.00000 - 49 0.00111 -0.00032 -0.57611 0.86540 -0.00230 -0.00000 - 50 -0.57708 0.99875 0.00043 0.00074 -0.00000 0.00000 - 51 -0.00271 -0.00085 -0.00000 0.57672 -0.00154 -0.00000 - 52 0.99880 0.57705 -0.00032 0.00043 -0.00000 0.00000 - 53 0.00121 -0.00043 0.99930 0.49891 -0.00133 -0.00000 - 54 -0.00007 0.00002 0.03591 -0.05391 0.00009 0.00000 - 55 0.03604 -0.06226 -0.00003 -0.00005 0.00000 0.00000 - 56 0.00017 0.00005 0.00000 -0.03593 0.00006 0.00000 - 57 -0.06238 -0.03597 0.00002 -0.00003 0.00000 -0.00000 - 58 -0.00008 0.00003 -0.06229 -0.03108 0.00005 0.00000 - 59 0.00006 -0.00002 -0.02993 0.04495 -0.00029 -0.00000 - 60 -0.02998 0.05188 0.00002 0.00004 -0.00000 0.00000 - 61 -0.00014 -0.00004 -0.00000 0.02996 -0.00019 -0.00000 - 62 0.05188 0.02998 -0.00002 0.00002 -0.00000 -0.00000 - 63 0.00006 -0.00002 0.05191 0.02592 -0.00017 0.00000 - 64 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 65 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00005 - 66 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 67 0.00000 0.00000 0.00000 0.00000 0.00000 0.00004 - 68 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 69 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00003 - 70 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 71 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 72 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00005 - 73 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 74 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00005 - 75 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 76 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00003 - 77 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 78 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 79 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 80 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 81 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 82 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 83 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 84 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 85 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 86 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00003 - 87 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 88 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00003 - 89 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 90 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00002 - 91 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 92 0.00000 -0.00000 0.00013 0.00019 -0.00000 -0.00000 - 93 -0.00018 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 94 -0.00000 -0.00000 -0.00005 0.00014 -0.00000 -0.00000 - 95 -0.00003 0.00018 0.00000 0.00000 -0.00000 0.00000 - 96 -0.00000 -0.00000 -0.00000 0.00011 -0.00000 0.00000 - 97 0.00006 0.00010 -0.00000 0.00000 -0.00000 -0.00000 - 98 0.00000 -0.00000 0.00008 0.00008 -0.00000 -0.00000 - 99 -0.00000 0.00018 0.00000 0.00000 -0.00000 0.00000 - 100 -0.00000 0.00000 0.00022 -0.00011 0.00000 0.00000 - 101 -0.00000 0.00000 -0.00011 -0.00017 0.00000 0.00000 - 102 0.00016 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 103 0.00000 0.00000 0.00004 -0.00013 0.00000 0.00000 - 104 0.00003 -0.00016 -0.00000 -0.00000 0.00000 -0.00000 - 105 0.00000 0.00000 0.00000 -0.00010 0.00000 0.00000 - 106 -0.00005 -0.00009 0.00000 -0.00000 0.00000 0.00000 - 107 -0.00000 0.00000 -0.00007 -0.00007 0.00000 0.00000 - 108 0.00000 -0.00016 -0.00000 -0.00000 0.00000 -0.00000 - 109 0.00000 -0.00000 -0.00019 0.00010 -0.00000 -0.00000 + 1 0.00000 -0.00000 0.00000 0.02620 4.18013 -0.00000 + 2 0.00000 0.00000 0.00000 0.05218 10.10742 -0.00000 + 3 -0.00000 0.00000 -0.00000 0.01234 1.69453 -0.00000 + 4 0.00000 -0.00000 0.00000 -0.00964 -1.18380 0.00000 + 5 -0.00000 0.00000 -0.00000 0.00480 0.57096 0.00000 + 6 -0.00000 0.00000 -0.00000 0.02529 6.79314 -0.00000 + 7 0.00000 -0.00000 0.00000 -0.00537 -1.86092 0.00000 + 8 -0.00000 0.00000 -0.00000 0.00208 0.51041 -0.00000 + 9 0.00000 -0.00000 0.00000 -0.00139 -0.16605 -0.00000 + 10 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.15090 + 11 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.95469 + 12 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.36445 + 13 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.07561 + 14 0.00000 -0.00000 0.00000 0.00000 0.00000 0.47836 + 15 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.18261 + 16 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.04010 + 17 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.25372 + 18 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.09686 + 19 -0.00000 0.00000 0.00000 0.00000 0.00000 0.01775 + 20 0.00000 -0.00000 0.00000 0.00000 0.00000 0.11228 + 21 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.04286 + 22 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.26353 + 23 -0.00000 -0.00000 0.00000 -0.00000 0.00000 1.66725 + 24 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.63647 + 25 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.24906 + 26 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -1.57571 + 27 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.60152 + 28 -0.00000 0.00000 0.00000 0.00000 0.00000 0.02523 + 29 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.15963 + 30 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.06094 + 31 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00539 + 32 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.03413 + 33 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.01303 + 34 -0.26398 -0.42320 0.13944 0.12663 -0.00050 0.00000 + 35 0.12653 -0.45417 -0.00718 0.12923 -0.00051 -0.00000 + 36 -0.28567 0.00797 -0.57262 0.16254 -0.00065 0.00000 + 37 -0.30735 -0.10521 0.00225 -0.55816 0.00222 -0.00000 + 38 -0.41748 0.20195 0.29983 0.25880 -0.00103 -0.00000 + 39 0.16130 0.25849 -0.08517 -0.07734 0.00040 -0.00000 + 40 -0.07731 0.27741 0.00438 -0.07893 0.00041 0.00000 + 41 0.17455 -0.00487 0.34976 -0.09926 0.00051 -0.00000 + 42 0.18780 0.06426 -0.00137 0.34088 -0.00177 0.00000 + 43 0.25509 -0.12335 -0.18314 -0.15805 0.00082 0.00000 + 44 -0.07367 -0.11799 0.03888 0.03529 -0.00021 0.00000 + 45 0.03531 -0.12663 -0.00200 0.03602 -0.00022 -0.00000 + 46 -0.07972 0.00222 -0.15965 0.04530 -0.00027 0.00000 + 47 -0.08577 -0.02933 0.00063 -0.15557 0.00094 -0.00000 + 48 -0.11651 0.05631 0.08360 0.07213 -0.00044 -0.00000 + 49 0.46114 0.73819 -0.24323 -0.22078 0.00059 -0.00000 + 50 -0.22104 0.79222 0.01252 -0.22532 0.00060 0.00000 + 51 0.49903 -0.01389 0.99882 -0.28338 0.00075 -0.00000 + 52 0.53690 0.18352 -0.00392 0.97315 -0.00259 0.00000 + 53 0.72928 -0.35226 -0.52299 -0.45121 0.00120 0.00000 + 54 -0.02880 -0.04601 0.01516 0.01375 -0.00002 0.00000 + 55 0.01380 -0.04938 -0.00078 0.01404 -0.00002 -0.00000 + 56 -0.03117 0.00087 -0.06226 0.01765 -0.00003 -0.00000 + 57 -0.03353 -0.01144 0.00024 -0.06062 0.00010 -0.00000 + 58 -0.04555 0.02196 0.03260 0.02811 -0.00005 0.00000 + 59 0.02395 0.03835 -0.01264 -0.01147 0.00007 0.00000 + 60 -0.01148 0.04115 0.00065 -0.01170 0.00008 0.00000 + 61 0.02592 -0.00072 0.05189 -0.01472 0.00009 -0.00000 + 62 0.02789 0.00953 -0.00020 0.05055 -0.00033 0.00000 + 63 0.03788 -0.01830 -0.02717 -0.02344 0.00015 -0.00000 + 64 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00003 + 65 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00005 + 66 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00002 + 67 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00002 + 68 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00003 + 69 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00001 + 70 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00001 + 71 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00003 + 72 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00005 + 73 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00002 + 74 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00002 + 75 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00003 + 76 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00001 + 77 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00001 + 78 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 79 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 80 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 81 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 82 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 83 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 84 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 85 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00002 + 86 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00003 + 87 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00001 + 88 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00001 + 89 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00002 + 90 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00001 + 91 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00001 + 92 -0.00008 -0.00006 0.00005 0.00004 -0.00000 0.00000 + 93 -0.00006 -0.00015 0.00005 0.00010 -0.00000 -0.00000 + 94 0.00002 -0.00015 -0.00002 0.00009 -0.00000 -0.00000 + 95 0.00001 -0.00002 -0.00005 0.00001 -0.00000 0.00000 + 96 -0.00013 0.00000 -0.00005 -0.00012 0.00000 0.00000 + 97 0.00004 -0.00001 0.00023 -0.00005 0.00000 0.00000 + 98 0.00002 0.00007 -0.00004 0.00019 -0.00000 0.00000 + 99 0.00006 -0.00012 -0.00007 -0.00012 0.00000 0.00000 + 100 -0.00005 0.00007 0.00004 0.00003 -0.00000 0.00000 + 101 0.00007 0.00005 -0.00004 -0.00004 0.00000 -0.00000 + 102 0.00005 0.00013 -0.00005 -0.00009 0.00000 0.00000 + 103 -0.00002 0.00013 0.00002 -0.00008 0.00000 0.00000 + 104 -0.00000 0.00002 0.00005 -0.00001 0.00000 -0.00000 + 105 0.00012 -0.00000 0.00005 0.00011 -0.00000 -0.00000 + 106 -0.00003 0.00001 -0.00021 0.00005 -0.00000 -0.00000 + 107 -0.00001 -0.00007 0.00004 -0.00016 0.00000 -0.00000 + 108 -0.00006 0.00011 0.00006 0.00011 -0.00000 0.00000 + 109 0.00004 -0.00006 -0.00004 -0.00003 0.00000 -0.00000 91 92 93 94 95 96 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 2 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 3 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 4 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 5 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 6 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 7 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 8 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 9 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 10 -0.89440 0.51720 -0.00000 0.00000 0.00000 -0.00000 - 11 -0.51675 -0.89517 0.00000 -0.00000 -0.00000 0.00000 - 12 0.00605 0.00044 -0.00000 -0.00000 -0.00000 -0.00000 - 13 0.44816 -0.25913 0.00000 -0.00000 -0.00000 0.00000 - 14 0.25893 0.44850 -0.00000 0.00000 0.00000 -0.00000 - 15 -0.00303 -0.00022 0.00000 0.00000 0.00000 0.00000 - 16 -0.23770 0.13740 -0.00000 0.00000 0.00000 0.00000 - 17 -0.13734 -0.23781 0.00000 -0.00000 -0.00000 -0.00000 - 18 0.00161 0.00012 -0.00000 -0.00000 -0.00000 -0.00000 - 19 0.10519 -0.06079 0.00000 -0.00000 -0.00000 -0.00000 - 20 0.06077 0.10521 -0.00000 0.00000 0.00000 0.00000 - 21 -0.00071 -0.00005 0.00000 0.00000 0.00000 0.00000 - 22 1.56197 -0.90293 0.00000 -0.00000 -0.00000 -0.00000 - 23 0.90245 1.56278 -0.00000 0.00000 0.00000 -0.00000 - 24 -0.01057 -0.00077 0.00000 0.00000 0.00000 0.00000 - 25 -1.47620 0.85287 -0.00000 0.00000 0.00000 0.00000 - 26 -0.85290 -1.47614 0.00000 -0.00000 -0.00000 0.00000 - 27 0.00999 0.00073 0.00000 0.00000 -0.00000 -0.00000 - 28 0.14955 -0.08635 -0.00000 0.00000 0.00000 -0.00000 - 29 0.08641 0.14945 0.00000 -0.00000 -0.00000 0.00000 - 30 -0.00101 -0.00007 -0.00000 -0.00000 0.00000 0.00000 - 31 -0.03197 0.01847 -0.00000 0.00000 0.00000 -0.00000 - 32 -0.01847 -0.03198 0.00000 -0.00000 -0.00000 -0.00000 - 33 0.00022 0.00002 -0.00000 0.00000 -0.00000 0.00000 - 34 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 35 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 36 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 37 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 38 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 39 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 40 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 41 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 42 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 43 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 44 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 45 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 46 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 47 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 48 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 49 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 50 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 51 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 52 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 53 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 54 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 55 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 56 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 57 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 58 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 59 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 60 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 61 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 62 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 63 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 64 0.00006 -0.00000 0.00005 -0.01034 -0.00002 -0.00002 - 65 -0.00000 -0.00000 0.02195 0.00012 0.00000 0.02067 - 66 0.00001 0.00004 -0.00012 0.02004 -0.02833 -0.00002 - 67 -0.00000 -0.00000 -0.03270 -0.00017 0.00003 0.00000 - 68 -0.00001 0.00003 0.00017 -0.03468 -0.01637 0.00002 - 69 -0.00000 -0.00000 0.01265 0.00005 0.00001 -0.03586 - 70 0.00000 0.00006 0.00001 -0.00001 0.02535 0.00000 - 71 -0.00007 0.00000 -0.00003 0.00630 0.00001 0.00001 - 72 0.00000 0.00000 -0.01337 -0.00008 -0.00000 -0.01260 - 73 -0.00001 -0.00005 0.00007 -0.01221 0.01726 0.00001 - 74 0.00000 0.00000 0.01993 0.00010 -0.00002 -0.00000 - 75 0.00002 -0.00003 -0.00010 0.02114 0.00997 -0.00001 - 76 0.00000 0.00000 -0.00771 -0.00003 -0.00001 0.02185 - 77 -0.00000 -0.00007 -0.00001 0.00001 -0.01544 -0.00000 - 78 -0.00000 0.00000 -0.00130 0.25013 0.00058 0.00052 - 79 0.00000 0.00000 -0.53080 -0.00302 -0.00011 -0.49973 - 80 -0.00000 -0.00000 0.00287 -0.48464 0.68490 0.00045 - 81 0.00000 0.00000 0.79099 0.00411 -0.00083 -0.00000 - 82 0.00000 -0.00000 -0.00415 0.83882 0.39571 -0.00052 - 83 0.00000 0.00000 -0.30602 -0.00114 -0.00024 0.86681 - 84 -0.00000 -0.00000 -0.00032 0.00023 -0.61270 -0.00010 - 85 0.00004 -0.00000 0.00001 -0.00254 -0.00001 -0.00001 - 86 -0.00000 -0.00000 0.00539 0.00003 0.00000 0.00507 - 87 0.00001 0.00003 -0.00003 0.00492 -0.00695 -0.00000 - 88 -0.00000 -0.00000 -0.00803 -0.00004 0.00001 0.00000 - 89 -0.00001 0.00002 0.00004 -0.00851 -0.00402 0.00001 - 90 -0.00000 -0.00000 0.00311 0.00001 0.00000 -0.00880 - 91 0.00000 0.00004 0.00000 -0.00000 0.00622 0.00000 - 92 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 93 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 1 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 2 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 3 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 4 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 5 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 6 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 7 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 8 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 9 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 10 -0.73142 -0.71424 0.00000 0.00000 -0.00000 0.00000 + 11 0.35818 -0.16537 0.00000 0.00000 -0.00000 0.00000 + 12 0.63542 -0.72893 -0.00000 0.00000 -0.00000 0.00000 + 13 0.36649 0.35785 -0.00000 -0.00000 0.00000 -0.00000 + 14 -0.17947 0.08286 -0.00000 -0.00000 0.00000 -0.00000 + 15 -0.31839 0.36521 0.00000 -0.00000 -0.00000 -0.00000 + 16 -0.19439 -0.18975 0.00000 0.00000 -0.00000 0.00000 + 17 0.09519 -0.04393 0.00000 0.00000 -0.00000 0.00000 + 18 0.16887 -0.19365 -0.00000 0.00000 -0.00000 0.00000 + 19 0.08602 0.08394 0.00000 -0.00000 0.00000 0.00000 + 20 -0.04212 0.01944 -0.00000 -0.00000 0.00000 -0.00000 + 21 -0.07473 0.08567 0.00000 -0.00000 -0.00000 -0.00000 + 22 1.27734 1.24692 -0.00000 -0.00000 0.00000 -0.00000 + 23 -0.62552 0.28870 -0.00000 -0.00000 0.00000 -0.00000 + 24 -1.10969 1.27256 0.00000 -0.00000 0.00000 -0.00000 + 25 -1.20720 -1.17779 -0.00000 0.00000 -0.00000 0.00000 + 26 0.59117 -0.27270 0.00000 0.00000 -0.00000 0.00000 + 27 1.04876 -1.20201 -0.00000 0.00000 0.00000 0.00000 + 28 0.12230 0.11924 0.00000 0.00000 -0.00000 0.00000 + 29 -0.05989 0.02761 0.00000 0.00000 -0.00000 0.00000 + 30 -0.10625 0.12169 0.00000 -0.00000 -0.00000 -0.00000 + 31 -0.02615 -0.02551 -0.00000 0.00000 -0.00000 -0.00000 + 32 0.01280 -0.00591 0.00000 -0.00000 -0.00000 0.00000 + 33 0.02272 -0.02604 0.00000 0.00000 -0.00000 -0.00000 + 34 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 35 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 36 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 37 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 38 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 39 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 40 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 41 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 42 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 43 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 44 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 45 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 46 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 47 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 48 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 49 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 50 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 51 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 52 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 53 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 54 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 55 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 56 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 57 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 58 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 59 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 60 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 61 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 62 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 63 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 64 0.00000 -0.00001 0.01645 0.01969 0.01907 -0.01764 + 65 0.00002 -0.00002 -0.01224 -0.02253 -0.00032 -0.00314 + 66 0.00002 -0.00001 0.00357 0.01956 -0.03177 0.00367 + 67 0.00004 0.00001 -0.01166 0.00022 -0.00098 -0.02840 + 68 -0.00003 0.00005 -0.01375 0.00480 -0.00776 -0.01085 + 69 -0.00003 -0.00005 -0.02395 0.01158 -0.00012 -0.00644 + 70 0.00003 0.00002 -0.01948 0.01662 0.01670 0.02032 + 71 -0.00000 0.00002 -0.01003 -0.01200 -0.01162 0.01075 + 72 -0.00002 0.00003 0.00746 0.01373 0.00020 0.00191 + 73 -0.00002 0.00001 -0.00217 -0.01192 0.01936 -0.00224 + 74 -0.00004 -0.00002 0.00711 -0.00013 0.00060 0.01731 + 75 0.00004 -0.00006 0.00838 -0.00293 0.00473 0.00661 + 76 0.00003 0.00006 0.01459 -0.00706 0.00007 0.00392 + 77 -0.00003 -0.00002 0.01187 -0.01013 -0.01018 -0.01238 + 78 -0.00000 0.00000 -0.39796 -0.47624 -0.46098 0.42649 + 79 -0.00000 0.00000 0.29607 0.54494 0.00780 0.07595 + 80 -0.00000 0.00000 -0.08628 -0.47310 0.76799 -0.08873 + 81 -0.00000 -0.00000 0.28203 -0.00524 0.02371 0.68657 + 82 0.00000 -0.00000 0.33254 -0.11609 0.18758 0.26220 + 83 0.00000 0.00000 0.57919 -0.28009 0.00284 0.15567 + 84 -0.00000 -0.00000 0.47119 -0.40192 -0.40367 -0.49111 + 85 0.00000 -0.00001 0.00404 0.00483 0.00468 -0.00433 + 86 0.00001 -0.00002 -0.00300 -0.00553 -0.00008 -0.00077 + 87 0.00001 -0.00001 0.00088 0.00480 -0.00780 0.00090 + 88 0.00002 0.00001 -0.00286 0.00005 -0.00024 -0.00697 + 89 -0.00002 0.00003 -0.00337 0.00118 -0.00190 -0.00266 + 90 -0.00002 -0.00003 -0.00588 0.00284 -0.00003 -0.00158 + 91 0.00002 0.00001 -0.00478 0.00408 0.00410 0.00499 + 92 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 93 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 94 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 95 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 96 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 97 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 98 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 99 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 100 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 101 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 102 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 103 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 104 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 105 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 106 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 107 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 108 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 109 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 95 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 96 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 97 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 98 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 99 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 100 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 101 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 102 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 103 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 104 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 105 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 106 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 107 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 108 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 109 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 97 98 99 100 101 102 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 2 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 3 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 4 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 5 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 6 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 7 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 8 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 9 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 10 0.00000 0.00022 -0.00016 -0.00000 -0.00000 -0.00000 - 11 0.00000 0.00013 0.00027 0.00000 0.00000 0.00000 - 12 0.00026 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 13 -0.00000 -0.00007 0.00005 0.00000 -0.00000 -0.00000 - 14 -0.00000 -0.00004 -0.00009 -0.00000 -0.00000 -0.00000 - 15 -0.00009 0.00000 0.00000 0.00000 0.00000 0.00000 - 16 0.00000 0.00004 -0.00003 0.00000 0.00000 0.00000 - 17 0.00000 0.00002 0.00005 0.00000 0.00000 0.00000 - 18 0.00004 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 19 -0.00000 -0.00002 0.00001 -0.00000 0.00000 0.00000 - 20 -0.00000 -0.00001 -0.00002 -0.00000 -0.00000 -0.00000 - 21 -0.00002 0.00000 0.00000 0.00000 0.00000 0.00000 - 22 -0.00000 -0.00039 0.00027 0.00000 0.00000 0.00000 - 23 -0.00000 -0.00022 -0.00047 -0.00000 -0.00000 -0.00000 - 24 -0.00045 0.00000 0.00000 0.00000 0.00000 -0.00000 - 25 0.00000 0.00008 -0.00005 -0.00000 -0.00000 -0.00000 - 26 0.00000 0.00004 0.00009 0.00000 0.00000 0.00000 - 27 0.00009 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 28 -0.00000 -0.00007 0.00005 -0.00000 0.00000 0.00000 - 29 -0.00000 -0.00004 -0.00008 -0.00000 -0.00000 0.00000 - 30 -0.00008 0.00000 0.00000 -0.00000 0.00000 0.00000 - 31 0.00000 0.00001 -0.00000 0.00000 -0.00000 -0.00000 - 32 0.00000 0.00000 0.00001 0.00000 -0.00000 -0.00000 - 33 0.00001 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 34 -0.00000 0.00000 -0.00000 -0.09583 -0.00007 -0.11054 - 35 0.00000 -0.00000 -0.00000 0.00010 -0.11067 -0.00108 - 36 -0.00000 -0.00000 -0.00000 0.19159 0.00004 0.00000 - 37 0.00000 0.00000 0.00000 0.00001 0.19155 -0.00073 - 38 -0.00000 0.00000 -0.00000 -0.05525 0.00007 0.19174 - 39 0.00000 -0.00000 0.00000 0.05799 0.00004 0.06688 - 40 -0.00000 0.00000 0.00000 -0.00006 0.06697 0.00065 - 41 0.00000 0.00000 0.00000 -0.11593 -0.00002 -0.00000 - 42 -0.00000 -0.00000 0.00000 -0.00001 -0.11591 0.00044 - 43 -0.00000 -0.00000 0.00000 0.03343 -0.00004 -0.11601 - 44 0.00000 0.00000 -0.00000 -0.02702 -0.00002 -0.03116 - 45 -0.00000 0.00000 -0.00000 0.00003 -0.03121 -0.00031 - 46 -0.00000 -0.00000 -0.00000 0.05403 0.00001 0.00000 - 47 0.00000 0.00000 0.00000 0.00000 0.05402 -0.00021 - 48 0.00000 -0.00000 0.00000 -0.01558 0.00002 0.05406 - 49 0.00000 -0.00000 0.00000 0.24793 0.00017 0.28594 - 50 -0.00000 0.00000 0.00000 -0.00027 0.28634 0.00280 - 51 0.00000 -0.00000 0.00000 -0.49569 -0.00010 -0.00000 - 52 -0.00000 -0.00000 0.00000 -0.00003 -0.49560 0.00190 - 53 0.00000 0.00000 0.00000 0.14294 -0.00018 -0.49599 - 54 0.00000 -0.00000 -0.00000 -0.50029 -0.00034 -0.57684 - 55 0.00000 0.00000 -0.00000 0.00054 -0.57779 -0.00565 - 56 0.00000 -0.00000 -0.00000 1.00021 0.00019 0.00001 - 57 -0.00000 0.00000 -0.00000 0.00005 1.00003 -0.00383 - 58 0.00000 -0.00000 0.00000 -0.28842 0.00037 1.00057 - 59 0.00000 -0.00000 0.00000 0.00891 0.00001 0.01028 - 60 0.00000 0.00000 0.00000 -0.00001 0.01029 0.00010 - 61 -0.00000 0.00000 0.00000 -0.01782 -0.00000 -0.00000 - 62 -0.00000 -0.00000 -0.00000 -0.00000 -0.01782 0.00007 - 63 -0.00000 0.00000 0.00000 0.00514 -0.00001 -0.01783 - 64 -0.00009 -0.04009 0.00003 -0.00000 -0.00000 -0.00000 - 65 -0.02836 0.00005 0.00003 -0.00000 0.00000 0.00000 - 66 -0.00005 -0.00518 -0.02196 -0.00000 -0.00000 -0.00000 - 67 -0.02536 0.00006 0.00003 0.00000 0.00000 -0.00000 - 68 -0.00000 0.00896 -0.01269 0.00000 -0.00000 0.00000 - 69 -0.01635 0.00006 0.00002 0.00000 0.00000 -0.00000 - 70 -0.00002 -0.00004 -0.03274 -0.00000 -0.00000 -0.00000 - 71 0.00006 0.02443 -0.00002 0.00000 0.00000 0.00000 - 72 0.01728 -0.00003 -0.00002 -0.00000 -0.00000 -0.00000 - 73 0.00003 0.00315 0.01338 0.00000 0.00000 0.00000 - 74 0.01545 -0.00004 -0.00002 -0.00000 -0.00000 0.00000 - 75 0.00000 -0.00546 0.00773 -0.00000 0.00000 -0.00000 - 76 0.00996 -0.00004 -0.00001 -0.00000 -0.00000 0.00000 - 77 0.00001 0.00002 0.01994 0.00000 0.00000 0.00000 - 78 0.00230 0.96877 -0.00075 -0.00000 -0.00000 -0.00000 - 79 0.68527 -0.00129 -0.00072 -0.00000 0.00000 0.00000 - 80 0.00131 0.12513 0.53052 0.00000 0.00000 0.00000 - 81 0.61270 -0.00145 -0.00064 0.00000 -0.00000 -0.00000 - 82 0.00007 -0.21658 0.30652 -0.00000 0.00000 -0.00000 - 83 0.39506 -0.00152 -0.00041 -0.00000 0.00000 0.00000 - 84 0.00042 0.00091 0.79100 -0.00000 -0.00000 0.00000 - 85 -0.00002 -0.00984 0.00001 0.00000 -0.00000 -0.00000 - 86 -0.00696 0.00001 0.00001 0.00000 0.00000 0.00000 - 87 -0.00001 -0.00127 -0.00539 0.00000 -0.00000 -0.00000 - 88 -0.00622 0.00001 0.00001 -0.00000 -0.00000 -0.00000 - 89 -0.00000 0.00220 -0.00311 0.00000 0.00000 0.00000 - 90 -0.00401 0.00002 0.00000 0.00000 0.00000 -0.00000 - 91 -0.00000 -0.00001 -0.00803 0.00000 -0.00000 -0.00000 - 92 -0.00000 0.00000 -0.00000 0.00001 -0.00000 -0.00001 - 93 0.00000 -0.00000 -0.00000 -0.00000 0.00001 -0.00000 - 94 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 95 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 96 -0.00000 0.00000 0.00000 -0.00001 -0.00000 -0.00000 - 97 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 98 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 99 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 100 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00001 - 101 0.00000 -0.00000 0.00000 -0.00001 0.00000 0.00001 - 102 -0.00000 0.00000 0.00000 0.00000 -0.00001 0.00000 - 103 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 104 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 105 0.00000 -0.00000 -0.00000 0.00001 0.00000 0.00000 - 106 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 107 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 108 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 109 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00001 + 1 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 2 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 3 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 4 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 5 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 6 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 7 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 8 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 9 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 10 0.00009 0.00016 0.00022 -0.00000 -0.00000 0.00000 + 11 -0.00024 0.00008 0.00005 -0.00000 0.00000 0.00000 + 12 -0.00003 -0.00018 0.00022 0.00000 -0.00000 0.00000 + 13 -0.00003 -0.00006 -0.00007 0.00000 0.00000 -0.00000 + 14 0.00008 -0.00003 -0.00002 0.00000 -0.00000 -0.00000 + 15 0.00001 0.00006 -0.00007 -0.00000 0.00000 -0.00000 + 16 0.00001 0.00003 0.00004 -0.00000 0.00000 0.00000 + 17 -0.00004 0.00001 0.00001 -0.00000 0.00000 0.00000 + 18 -0.00001 -0.00003 0.00004 0.00000 -0.00000 0.00000 + 19 -0.00001 -0.00001 -0.00002 -0.00000 0.00000 -0.00000 + 20 0.00002 -0.00001 -0.00000 -0.00000 -0.00000 -0.00000 + 21 0.00000 0.00001 -0.00002 -0.00000 0.00000 -0.00000 + 22 -0.00015 -0.00028 -0.00038 0.00000 0.00000 -0.00000 + 23 0.00042 -0.00015 -0.00009 0.00000 -0.00000 -0.00000 + 24 0.00006 0.00031 -0.00038 -0.00000 0.00000 -0.00000 + 25 0.00003 0.00006 0.00007 0.00000 -0.00000 0.00000 + 26 -0.00008 0.00003 0.00002 -0.00000 0.00000 -0.00000 + 27 -0.00001 -0.00006 0.00008 -0.00000 -0.00000 0.00000 + 28 -0.00003 -0.00005 -0.00006 -0.00000 0.00000 0.00000 + 29 0.00007 -0.00002 -0.00001 0.00000 0.00000 0.00000 + 30 0.00001 0.00005 -0.00007 0.00000 0.00000 -0.00000 + 31 0.00000 0.00000 0.00001 0.00000 -0.00000 0.00000 + 32 -0.00001 0.00000 0.00000 0.00000 -0.00000 0.00000 + 33 -0.00000 -0.00000 0.00001 -0.00000 -0.00000 0.00000 + 34 0.00000 -0.00000 0.00000 0.14581 0.06056 0.14230 + 35 0.00000 -0.00000 0.00000 -0.15441 -0.01181 0.15196 + 36 0.00000 -0.00000 -0.00000 0.00823 0.09599 -0.00543 + 37 -0.00000 0.00000 -0.00000 -0.02606 0.11039 0.03522 + 38 0.00000 -0.00000 -0.00000 -0.05560 0.15406 -0.06614 + 39 -0.00000 -0.00000 -0.00000 -0.08823 -0.03664 -0.08610 + 40 -0.00000 0.00000 -0.00000 0.09343 0.00715 -0.09194 + 41 -0.00000 0.00000 0.00000 -0.00498 -0.05809 0.00329 + 42 0.00000 -0.00000 0.00000 0.01577 -0.06680 -0.02131 + 43 -0.00000 0.00000 0.00000 0.03365 -0.09322 0.04002 + 44 0.00000 0.00000 0.00000 0.04112 0.01708 0.04012 + 45 0.00000 -0.00000 0.00000 -0.04354 -0.00333 0.04284 + 46 0.00000 0.00000 -0.00000 0.00232 0.02707 -0.00153 + 47 -0.00000 0.00000 -0.00000 -0.00735 0.03113 0.00993 + 48 0.00000 -0.00000 0.00000 -0.01568 0.04344 -0.01865 + 49 -0.00000 0.00000 -0.00000 -0.37724 -0.15667 -0.36810 + 50 -0.00000 0.00000 -0.00000 0.39950 0.03056 -0.39308 + 51 -0.00000 0.00000 -0.00000 -0.02128 -0.24836 0.01405 + 52 0.00000 -0.00000 0.00000 0.06742 -0.28560 -0.09111 + 53 -0.00000 0.00000 0.00000 0.14386 -0.39859 0.17108 + 54 0.00000 -0.00000 0.00000 0.76122 0.31614 0.74258 + 55 0.00000 -0.00000 0.00000 -0.80612 -0.06166 0.79298 + 56 0.00000 -0.00000 0.00000 0.04294 0.50115 -0.02833 + 57 -0.00000 0.00000 -0.00000 -0.13604 0.57630 0.18379 + 58 0.00000 -0.00000 0.00000 -0.29029 0.80429 -0.34513 + 59 -0.00000 -0.00000 0.00000 -0.01356 -0.00563 -0.01323 + 60 0.00000 -0.00000 0.00000 0.01436 0.00110 -0.01413 + 61 -0.00000 -0.00000 -0.00000 -0.00077 -0.00893 0.00050 + 62 -0.00000 -0.00000 0.00000 0.00242 -0.01027 -0.00328 + 63 -0.00000 -0.00000 -0.00000 0.00517 -0.01433 0.00615 + 64 -0.01384 0.01156 0.00736 -0.00000 0.00000 -0.00000 + 65 -0.02807 0.01007 0.01250 -0.00000 0.00000 -0.00000 + 66 -0.01577 -0.00313 0.00603 -0.00000 -0.00000 0.00000 + 67 -0.00467 -0.02630 -0.00751 0.00000 0.00000 0.00000 + 68 0.00099 0.02541 -0.02603 -0.00000 0.00000 0.00000 + 69 0.01596 0.00757 0.02554 -0.00000 -0.00000 -0.00000 + 70 -0.01445 -0.00864 -0.00906 0.00000 -0.00000 0.00000 + 71 0.00843 -0.00704 -0.00449 0.00000 -0.00000 0.00000 + 72 0.01710 -0.00614 -0.00761 0.00000 0.00000 0.00000 + 73 0.00961 0.00190 -0.00367 0.00000 0.00000 -0.00000 + 74 0.00284 0.01602 0.00457 -0.00000 0.00000 0.00000 + 75 -0.00060 -0.01548 0.01586 0.00000 -0.00000 -0.00000 + 76 -0.00972 -0.00461 -0.01556 0.00000 -0.00000 0.00000 + 77 0.00880 0.00526 0.00552 0.00000 -0.00000 -0.00000 + 78 0.33434 -0.27940 -0.17793 -0.00000 -0.00000 -0.00000 + 79 0.67839 -0.24343 -0.30193 -0.00000 0.00000 0.00000 + 80 0.38109 0.07552 -0.14560 0.00000 -0.00000 -0.00000 + 81 0.11280 0.63555 0.18144 -0.00000 -0.00000 -0.00000 + 82 -0.02385 -0.61406 0.62885 0.00000 -0.00000 -0.00000 + 83 -0.38556 -0.18301 -0.61707 -0.00000 -0.00000 0.00000 + 84 0.34915 0.20873 0.21888 0.00000 -0.00000 -0.00000 + 85 -0.00339 0.00284 0.00181 -0.00000 0.00000 -0.00000 + 86 -0.00689 0.00247 0.00307 -0.00000 0.00000 0.00000 + 87 -0.00387 -0.00077 0.00148 -0.00000 0.00000 0.00000 + 88 -0.00115 -0.00645 -0.00184 0.00000 -0.00000 -0.00000 + 89 0.00024 0.00623 -0.00638 -0.00000 0.00000 0.00000 + 90 0.00391 0.00186 0.00627 0.00000 0.00000 0.00000 + 91 -0.00354 -0.00212 -0.00222 0.00000 -0.00000 0.00000 + 92 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 93 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00001 + 94 0.00000 -0.00000 -0.00000 -0.00001 -0.00000 0.00001 + 95 -0.00000 -0.00000 0.00000 -0.00001 0.00000 0.00000 + 96 0.00000 0.00000 -0.00000 0.00000 0.00001 -0.00000 + 97 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 98 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 99 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00001 + 100 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 101 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 102 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00001 + 103 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00001 + 104 0.00000 0.00000 0.00000 0.00001 -0.00000 -0.00000 + 105 0.00000 -0.00000 0.00000 -0.00000 -0.00001 0.00000 + 106 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 107 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 108 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00001 + 109 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 103 104 105 106 107 108 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 -0.00768 2.65525 0.00000 0.00000 -0.00000 - 2 -0.00000 -0.01662 5.71558 0.00000 0.00000 -0.00000 - 3 -0.00000 -0.00275 0.84704 0.00000 0.00000 -0.00000 - 4 0.00000 0.00199 -0.59358 -0.00000 -0.00000 0.00000 - 5 -0.00000 -0.00098 0.28885 -0.00000 0.00000 0.00000 - 6 -0.00000 -0.01204 4.39256 0.00000 0.00000 -0.00000 - 7 0.00000 0.00954 -3.72298 -0.00000 -0.00000 0.00000 - 8 -0.00000 -0.00709 2.66421 -0.00000 0.00000 -0.00000 - 9 0.00000 0.00029 -0.08454 -0.00000 -0.00000 -0.00000 - 10 -0.00000 0.00000 -0.00000 0.00094 -0.42237 0.24410 - 11 0.00000 -0.00000 -0.00000 0.00030 -0.24403 -0.42249 - 12 -0.00000 0.00000 0.00000 -0.48779 -0.00096 0.00021 - 13 0.00000 -0.00000 0.00000 -0.00047 0.21266 -0.12290 - 14 -0.00000 0.00000 -0.00000 -0.00015 0.12287 0.21272 - 15 0.00000 -0.00000 -0.00000 0.24560 0.00048 -0.00010 - 16 0.00000 -0.00000 -0.00000 0.00025 -0.11427 0.06604 - 17 -0.00000 0.00000 -0.00000 0.00008 -0.06602 -0.11429 - 18 -0.00000 0.00000 0.00000 -0.13198 -0.00026 0.00006 - 19 -0.00000 -0.00000 0.00000 -0.00011 0.05098 -0.02946 - 20 0.00000 -0.00000 0.00000 -0.00004 0.02945 0.05098 - 21 0.00000 -0.00000 -0.00000 0.05887 0.00012 -0.00003 - 22 0.00000 0.00000 -0.00000 -0.00183 0.82297 -0.47560 - 23 -0.00000 0.00000 0.00000 -0.00059 0.47549 0.82316 - 24 0.00000 -0.00000 -0.00000 0.95046 0.00187 -0.00041 - 25 -0.00000 -0.00000 0.00000 0.00302 -1.35953 0.78559 - 26 0.00000 -0.00000 -0.00000 0.00097 -0.78550 -1.35969 - 27 -0.00000 0.00000 0.00000 -1.57014 -0.00310 0.00067 - 28 -0.00000 0.00000 -0.00000 -0.00305 1.37638 -0.79524 - 29 0.00000 -0.00000 0.00000 -0.00098 0.79524 1.37640 - 30 -0.00000 -0.00000 -0.00000 1.58960 0.00313 -0.00068 - 31 0.00000 0.00000 -0.00000 0.00003 -0.01556 0.00899 - 32 -0.00000 0.00000 -0.00000 0.00001 -0.00899 -0.01556 - 33 -0.00000 0.00000 0.00000 -0.01797 -0.00004 0.00001 - 34 -0.00073 0.16607 0.00056 0.00000 -0.00000 0.00000 - 35 0.19163 0.00014 0.00000 0.00000 -0.00000 -0.00000 - 36 -0.00016 0.11068 0.00037 0.00000 -0.00000 0.00000 - 37 0.11072 0.00008 0.00000 0.00000 0.00000 0.00000 - 38 0.00108 0.09574 0.00032 -0.00000 -0.00000 -0.00000 - 39 0.00044 -0.10048 -0.00038 -0.00000 -0.00000 0.00000 - 40 -0.11595 -0.00009 -0.00000 -0.00000 0.00000 0.00000 - 41 0.00010 -0.06696 -0.00025 0.00000 -0.00000 -0.00000 - 42 -0.06699 -0.00005 -0.00000 -0.00000 0.00000 -0.00000 - 43 -0.00066 -0.05793 -0.00022 0.00000 0.00000 -0.00000 - 44 -0.00021 0.04682 0.00019 0.00000 0.00000 -0.00000 - 45 0.05403 0.00004 0.00000 0.00000 0.00000 -0.00000 - 46 -0.00005 0.03120 0.00013 -0.00000 0.00000 0.00000 - 47 0.03121 0.00002 0.00000 0.00000 -0.00000 0.00000 - 48 0.00031 0.02699 0.00011 -0.00000 0.00000 0.00000 - 49 0.00190 -0.42958 -0.00125 -0.00000 0.00000 -0.00000 - 50 -0.49572 -0.00037 -0.00000 -0.00000 0.00000 0.00000 - 51 0.00042 -0.28628 -0.00083 -0.00000 0.00000 -0.00000 - 52 -0.28641 -0.00021 -0.00000 -0.00000 -0.00000 -0.00000 - 53 -0.00280 -0.24766 -0.00072 0.00000 0.00000 0.00000 - 54 -0.00383 0.86653 0.00228 0.00000 -0.00000 0.00000 - 55 1.00002 0.00074 0.00000 0.00000 0.00000 -0.00000 - 56 -0.00085 0.57748 0.00152 0.00000 0.00000 0.00000 - 57 0.57778 0.00043 0.00000 -0.00000 0.00000 0.00000 - 58 0.00565 0.49957 0.00132 -0.00000 -0.00000 0.00000 - 59 0.00007 -0.01544 -0.00007 -0.00000 -0.00000 -0.00000 - 60 -0.01782 -0.00001 -0.00000 -0.00000 -0.00000 0.00000 - 61 0.00002 -0.01029 -0.00004 -0.00000 -0.00000 -0.00000 - 62 -0.01030 -0.00001 -0.00000 -0.00000 0.00000 0.00000 - 63 -0.00010 -0.00890 -0.00004 -0.00000 -0.00000 -0.00000 - 64 -0.00000 -0.00000 0.00000 -0.00000 0.00001 -0.00000 - 65 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 66 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 67 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 68 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 69 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 70 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00001 - 71 0.00000 0.00000 -0.00000 0.00000 -0.00001 0.00000 - 72 -0.00000 -0.00000 -0.00000 -0.00001 -0.00000 0.00000 - 73 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00001 - 74 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 75 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 76 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 77 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00001 - 78 -0.00000 0.00000 -0.00000 -0.00000 0.00004 -0.00000 - 79 -0.00000 -0.00000 -0.00000 0.00003 0.00000 -0.00000 - 80 0.00000 0.00000 0.00000 0.00000 0.00000 0.00003 - 81 0.00000 0.00000 0.00000 0.00002 0.00000 -0.00000 - 82 -0.00000 -0.00000 -0.00000 0.00000 -0.00001 0.00001 - 83 -0.00000 -0.00000 -0.00000 0.00002 0.00000 -0.00000 - 84 0.00000 0.00000 0.00000 0.00000 0.00000 0.00004 - 85 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 86 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 87 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 88 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 89 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 90 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 91 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 92 -0.00000 -0.00001 -0.00000 0.00000 0.00000 -0.00000 - 93 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 94 0.00000 -0.00001 -0.00000 -0.00000 0.00000 -0.00000 - 95 -0.00001 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 96 0.00000 -0.00001 -0.00000 0.00000 0.00000 0.00000 - 97 -0.00001 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 98 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 99 -0.00001 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 100 -0.00000 0.00001 0.00000 -0.00000 0.00000 0.00000 - 101 0.00000 0.00001 0.00000 -0.00000 -0.00000 -0.00000 - 102 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 103 -0.00000 0.00001 0.00000 0.00000 -0.00000 0.00000 - 104 0.00001 0.00000 0.00000 -0.00000 0.00000 0.00000 - 105 -0.00000 0.00001 0.00000 -0.00000 -0.00000 -0.00000 - 106 0.00001 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 107 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 108 0.00001 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 109 0.00000 -0.00001 -0.00000 0.00000 -0.00000 -0.00000 + 1 -0.00000 -0.00768 2.65524 0.00000 -0.00000 -0.00000 + 2 0.00000 -0.01662 5.71557 0.00000 -0.00000 0.00000 + 3 0.00000 -0.00275 0.84704 0.00000 -0.00000 0.00000 + 4 -0.00000 0.00199 -0.59358 0.00000 -0.00000 -0.00000 + 5 0.00000 -0.00098 0.28885 -0.00000 0.00000 0.00000 + 6 0.00000 -0.01204 4.39257 0.00000 -0.00000 0.00000 + 7 -0.00000 0.00954 -3.72298 -0.00000 0.00000 -0.00000 + 8 0.00000 -0.00709 2.66421 0.00000 -0.00000 0.00000 + 9 -0.00000 0.00029 -0.08454 -0.00000 0.00000 -0.00000 + 10 0.00000 -0.00000 0.00000 0.12998 0.32784 0.33710 + 11 -0.00000 0.00000 -0.00000 0.41474 -0.24464 0.07805 + 12 0.00000 -0.00000 0.00000 -0.22146 -0.26574 0.34403 + 13 0.00000 0.00000 0.00000 -0.06545 -0.16507 -0.16972 + 14 0.00000 -0.00000 0.00000 -0.20882 0.12318 -0.03930 + 15 -0.00000 -0.00000 0.00000 0.11150 0.13380 -0.17321 + 16 -0.00000 -0.00000 0.00000 0.03517 0.08870 0.09119 + 17 -0.00000 0.00000 -0.00000 0.11221 -0.06619 0.02111 + 18 0.00000 0.00000 -0.00000 -0.05992 -0.07190 0.09307 + 19 0.00000 0.00000 -0.00000 -0.01569 -0.03957 -0.04068 + 20 0.00000 0.00000 -0.00000 -0.05006 0.02953 -0.00942 + 21 -0.00000 -0.00000 0.00000 0.02673 0.03207 -0.04151 + 22 -0.00000 0.00000 -0.00000 -0.25327 -0.63879 -0.65679 + 23 0.00000 -0.00000 0.00000 -0.80811 0.47668 -0.15207 + 24 -0.00000 0.00000 -0.00000 0.43150 0.51778 -0.67029 + 25 0.00000 -0.00000 0.00000 0.41839 1.05527 1.08488 + 26 -0.00000 -0.00000 0.00000 1.33498 -0.78747 0.25119 + 27 0.00000 -0.00000 0.00000 -0.71283 -0.85536 1.10718 + 28 0.00000 -0.00000 0.00000 -0.42358 -1.06835 -1.09821 + 29 0.00000 0.00000 0.00000 -1.35152 0.79723 -0.25427 + 30 0.00000 -0.00000 0.00000 0.72167 0.86596 -1.12079 + 31 -0.00000 -0.00000 0.00000 0.00479 0.01207 0.01241 + 32 -0.00000 -0.00000 0.00000 0.01528 -0.00901 0.00287 + 33 0.00000 0.00000 -0.00000 -0.00816 -0.00979 0.01267 + 34 -0.04462 -0.04237 -0.00014 -0.00000 0.00000 0.00000 + 35 0.00459 -0.04324 -0.00015 0.00000 0.00000 0.00000 + 36 0.19159 -0.05438 -0.00018 -0.00000 0.00000 0.00000 + 37 -0.00024 0.18675 0.00063 0.00000 0.00000 0.00000 + 38 -0.10131 -0.08659 -0.00029 -0.00000 0.00000 -0.00000 + 39 0.02700 0.02563 0.00010 0.00000 -0.00000 -0.00000 + 40 -0.00278 0.02616 0.00010 0.00000 -0.00000 -0.00000 + 41 -0.11592 0.03290 0.00012 -0.00000 -0.00000 -0.00000 + 42 0.00015 -0.11299 -0.00043 -0.00000 -0.00000 -0.00000 + 43 0.06130 0.05239 0.00020 0.00000 -0.00000 0.00000 + 44 -0.01258 -0.01194 -0.00005 -0.00000 -0.00000 0.00000 + 45 0.00130 -0.01219 -0.00005 -0.00000 0.00000 0.00000 + 46 0.05401 -0.01533 -0.00006 0.00000 0.00000 -0.00000 + 47 -0.00007 0.05265 0.00021 0.00000 0.00000 0.00000 + 48 -0.02856 -0.02441 -0.00010 -0.00000 -0.00000 -0.00000 + 49 0.11543 0.10959 0.00032 0.00000 -0.00000 -0.00000 + 50 -0.01188 0.11185 0.00032 -0.00000 -0.00000 -0.00000 + 51 -0.49561 0.14067 0.00041 0.00000 -0.00000 -0.00000 + 52 0.00063 -0.48307 -0.00140 -0.00000 0.00000 -0.00000 + 53 0.26208 0.22398 0.00065 0.00000 -0.00000 -0.00000 + 54 -0.23286 -0.22107 -0.00058 0.00000 0.00000 0.00000 + 55 0.02397 -0.22561 -0.00059 0.00000 0.00000 0.00000 + 56 0.99980 -0.28375 -0.00075 -0.00000 0.00000 0.00000 + 57 -0.00127 0.97443 0.00257 0.00000 -0.00000 -0.00000 + 58 -0.52870 -0.45181 -0.00119 -0.00000 -0.00000 -0.00000 + 59 0.00415 0.00394 0.00002 0.00000 0.00000 -0.00000 + 60 -0.00043 0.00402 0.00002 0.00000 -0.00000 0.00000 + 61 -0.01782 0.00506 0.00002 -0.00000 -0.00000 0.00000 + 62 0.00002 -0.01736 -0.00007 -0.00000 0.00000 -0.00000 + 63 0.00942 0.00805 0.00003 0.00000 0.00000 0.00000 + 64 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 65 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 66 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 67 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 68 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 69 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 70 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 71 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 72 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 73 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 74 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 75 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00001 + 76 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00001 + 77 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 78 0.00000 -0.00000 0.00000 0.00002 -0.00000 0.00001 + 79 0.00000 0.00000 -0.00000 0.00002 -0.00001 0.00001 + 80 -0.00000 0.00000 0.00000 0.00001 -0.00001 0.00001 + 81 0.00000 -0.00000 0.00000 -0.00002 -0.00002 -0.00001 + 82 0.00000 0.00000 -0.00000 0.00002 0.00002 -0.00003 + 83 0.00000 -0.00000 0.00000 -0.00000 0.00002 0.00003 + 84 -0.00000 0.00000 -0.00000 0.00000 -0.00002 -0.00001 + 85 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 86 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 87 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 88 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 89 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 90 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 91 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 92 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 93 -0.00000 -0.00001 -0.00000 0.00000 -0.00000 -0.00000 + 94 0.00000 -0.00001 -0.00000 -0.00000 -0.00000 0.00000 + 95 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 96 0.00000 0.00001 0.00000 0.00000 -0.00000 0.00000 + 97 -0.00001 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 98 0.00000 -0.00001 -0.00000 0.00000 -0.00000 0.00000 + 99 0.00000 0.00001 0.00000 0.00000 0.00000 0.00000 + 100 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 101 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 102 0.00000 0.00001 0.00000 -0.00000 0.00000 -0.00000 + 103 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 104 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 105 -0.00000 -0.00001 -0.00000 -0.00000 0.00000 0.00000 + 106 0.00001 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 107 -0.00000 0.00001 0.00000 0.00000 0.00000 -0.00000 + 108 -0.00000 -0.00001 -0.00000 -0.00000 -0.00000 -0.00000 + 109 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 109 ----------- 1 68.41115 - 2 43.11205 + 2 43.11206 3 -0.26095 4 0.20574 5 -0.10418 - 6 -13.88036 + 6 -13.88035 7 -7.95673 8 -7.23281 9 0.03094 @@ -3254,116 +3348,104 @@ 13 0.00000 14 0.00000 15 0.00000 - 16 -0.00000 + 16 0.00000 17 -0.00000 18 -0.00000 - 19 0.00000 + 19 -0.00000 20 0.00000 - 21 -0.00000 + 21 0.00000 22 0.00000 23 0.00000 24 0.00000 - 25 0.00000 - 26 0.00000 - 27 -0.00000 + 25 -0.00000 + 26 -0.00000 + 27 0.00000 28 -0.00000 - 29 -0.00000 - 30 0.00000 - 31 -0.00000 + 29 0.00000 + 30 -0.00000 + 31 0.00000 32 -0.00000 33 0.00000 - 34 -0.00001 - 35 -0.00000 - 36 -0.00001 - 37 -0.00000 - 38 -0.00001 - 39 0.00001 - 40 0.00000 - 41 0.00001 - 42 0.00000 - 43 0.00001 - 44 -0.00001 - 45 -0.00000 - 46 -0.00000 - 47 -0.00000 - 48 -0.00000 - 49 0.00001 - 50 0.00000 - 51 0.00001 - 52 0.00000 - 53 0.00001 - 54 -0.00001 - 55 -0.00000 - 56 -0.00001 - 57 -0.00000 - 58 -0.00001 - 59 0.00000 - 60 0.00000 - 61 0.00000 + 34 0.00000 + 35 0.00000 + 36 0.00000 + 37 -0.00001 + 38 0.00001 + 39 -0.00000 + 40 -0.00000 + 41 -0.00000 + 42 0.00001 + 43 -0.00001 + 44 0.00000 + 45 0.00000 + 46 0.00000 + 47 -0.00001 + 48 0.00000 + 49 -0.00000 + 50 -0.00000 + 51 -0.00000 + 52 0.00002 + 53 -0.00001 + 54 0.00000 + 55 0.00000 + 56 0.00000 + 57 -0.00001 + 58 0.00001 + 59 -0.00000 + 60 -0.00000 + 61 -0.00000 62 0.00000 - 63 0.00000 + 63 -0.00000 64 -0.00000 - 65 0.00000 + 65 -0.00000 66 -0.00000 67 0.00000 - 68 0.00000 + 68 -0.00000 69 0.00000 - 70 0.00000 + 70 -0.00000 71 0.00000 - 72 -0.00000 + 72 0.00000 73 0.00000 74 -0.00000 75 -0.00000 - 76 -0.00000 - 77 -0.00000 - 78 0.00000 - 79 0.00000 - 80 0.00000 + 76 0.00000 + 77 0.00000 + 78 -0.00000 + 79 -0.00000 + 80 -0.00000 81 0.00000 82 -0.00000 83 0.00000 - 84 0.00000 + 84 -0.00000 85 -0.00000 86 0.00000 87 -0.00000 88 0.00000 89 0.00000 90 -0.00000 - 91 0.00000 + 91 -0.00000 92 0.00000 - 93 -0.00000 + 93 0.00000 94 0.00000 95 0.00000 - 96 0.00000 - 97 0.00000 + 96 -0.00000 + 97 -0.00000 98 0.00000 - 99 0.00000 - 100 -0.00000 + 99 -0.00000 + 100 0.00000 101 -0.00000 - 102 0.00000 + 102 -0.00000 103 -0.00000 104 -0.00000 - 105 -0.00000 - 106 -0.00000 + 105 0.00000 + 106 0.00000 107 -0.00000 - 108 -0.00000 - 109 0.00000 - ------------------------------------------------------------- -EAF file 0: "./carbon.aoints.0" size=22544384 bytes ------------------------------------------------------------- - write read awrite aread wait - ----- ---- ------ ----- ---- - calls: 43 8 0 336 336 - data(b): 2.25e+07 4.19e+06 0.00e+00 1.76e+08 - time(s): 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -rate(mb/s): 0.00e+00 0.00e+00 ------------------------------------------------------------- - + 108 0.00000 + 109 -0.00000 center of mass -------------- - x = 0.00000000 y = -0.00000000 z = 0.00000000 + x = 0.00000000 y = 0.00000000 z = 0.00000000 moments of inertia (a.u.) ------------------ @@ -3387,21 +3469,18 @@ rate(mb/s): 0.00e+00 0.00e+00 0 0 0 0 -0.000000 0.000000 6.000000 1 1 0 0 -0.000000 0.000000 0.000000 - 1 0 1 0 0.000000 0.000000 -0.000000 - 1 0 0 1 -0.000000 0.000000 0.000000 - - 2 2 0 0 -4.602341 0.000000 0.000000 - 2 1 1 0 1.438794 0.000000 -0.000000 - 2 1 0 1 -0.000709 0.000000 0.000000 - 2 0 2 0 -6.261303 0.000000 0.000000 - 2 0 1 1 0.001226 0.000000 0.000000 - 2 0 0 2 -3.771050 0.000000 0.000000 - + 1 0 1 0 -0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 - Parallel integral file used 43 records with 0 large values + 2 2 0 0 -5.356399 0.000000 0.000000 + 2 1 1 0 -0.367062 0.000000 0.000000 + 2 1 0 1 -1.617944 0.000000 0.000000 + 2 0 2 0 -3.856037 0.000000 0.000000 + 2 0 1 1 -0.374609 0.000000 0.000000 + 2 0 0 2 -5.422258 0.000000 0.000000 - Task times cpu: 8.6s wall: 9.3s + Task times cpu: 6.0s wall: 6.0s Summary of allocated global arrays ----------------------------------- No active global arrays @@ -3412,9 +3491,9 @@ rate(mb/s): 0.00e+00 0.00e+00 ------------------------------ create destroy get put acc scatter gather read&inc -calls: 170 170 6855 4301 3241 0 0 0 -number of processes/call 1.00e+00 1.00e+00 1.00e+00 0.00e+00 0.00e+00 -bytes total: 2.27e+07 1.46e+07 2.74e+06 0.00e+00 0.00e+00 0.00e+00 +calls: 181 181 6240 4017 3241 0 0 262 +number of processes/call -1.13e+15 6.15e+13 1.80e+15 0.00e+00 0.00e+00 +bytes total: 2.29e+07 1.46e+07 2.74e+06 0.00e+00 0.00e+00 2.10e+03 bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 Max memory consumed for GA by this process: 1235624 bytes MA_summarize_allocated_blocks: starting scan ... @@ -3427,9 +3506,9 @@ MA usage statistics: current number of blocks 0 0 maximum number of blocks 16 14 current total bytes 0 0 - maximum total bytes 80096 39513968 - maximum total K-bytes 81 39514 - maximum total M-bytes 1 40 + maximum total bytes 80120 42712952 + maximum total K-bytes 81 42713 + maximum total M-bytes 1 43 NWChem Input Module @@ -3444,28 +3523,52 @@ MA usage statistics: Please cite the following reference when publishing results obtained with NWChem: - M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, - T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, - E. Apra, T.L. Windus, W.A. de Jong - "NWChem: a comprehensive and scalable open-source - solution for large scale molecular simulations" - Comput. Phys. Commun. 181, 1477 (2010) - doi:10.1016/j.cpc.2010.04.018 - - AUTHORS & CONTRIBUTORS - ---------------------- - E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, T. P. Straatsma, - M. Valiev, H. J. J. van Dam, D. Wang, E. Apra, T. L. Windus, J. Hammond, - J. Autschbach, F. Aquino, J. Mullin, P. Nichols, S. Hirata, M. T. Hackler, - Y. Zhao, P.-D. Fan, R. J. Harrison, M. Dupuis, D. M. A. Smith, K. Glaesemann, - J. Nieplocha, V. Tipparaju, M. Krishnan, A. Vazquez-Mayagoitia, L. Jensen, - M. Swart, Q. Wu, T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, - E. Brown, G. Cisneros, G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, - R. Kendall, J. A. Nichols, K. Tsemekhman, K. Wolinski, J. Anchell, - D. Bernholdt, P. Borowski, T. Clark, D. Clerc, H. Dachsel, M. Deegan, - K. Dyall, D. Elwood, E. Glendening, M. Gutowski, A. Hess, J. Jaffe, - B. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, - X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, G. Sandrone, - M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. Wong, Z. Zhang. - - Total times cpu: 8.6s wall: 10.0s + E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, + V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, + J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, + J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, + C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, + K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, + J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, + V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, + B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, + S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, + A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, + D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, + J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, + A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, + R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, + D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, + V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, + Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, + D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, + A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, + and R. J. Harrison + "NWChem: Past, present, and future + J. Chem. Phys. 152, 184102 (2020) + doi:10.1063/5.0004997 + + AUTHORS + ------- + E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, + T. P. Straatsma, H. J. J. van Dam, D. Wang, T. L. Windus, N. P. Bauman, + A. Panyala, J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, + K. Lopata, S. A. Fischer, S. Krishnamoorthy, M. Jacquelin, W. Ma, M. Klemm, + O. Villa, Y. Chen, V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, + Eric Hermes, L. Jensen, J. E. Moore, J. C. Becca, V. Konjkov, + D. Mejia-Rodriguez, T. Risthaus, M. Malagoli, A. Marenich, + A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, + P.-D. Fan, A. Fonari, M. J. Williamson, R. J. Harrison, J. R. Rehr, + M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, V. Tipparaju, + M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, M. Swart, Q. Wu, + T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, + G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, + K. Tsemekhman, K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, + T. Clark, D. Clerc, H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, + E. Glendening, M. Gutowski, A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, + R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, X. Long, B. Meng, + T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, + M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. + + Total times cpu: 6.0s wall: 6.0s diff --git a/data/NWChem/basicNWChem7.0/Trp_polar.out b/data/NWChem/basicNWChem7.0/Trp_polar.out index 2be316562..45167b4c3 100644 --- a/data/NWChem/basicNWChem7.0/Trp_polar.out +++ b/data/NWChem/basicNWChem7.0/Trp_polar.out @@ -58,15 +58,15 @@ task scf property - Northwest Computational Chemistry Package (NWChem) 6.6 - ------------------------------------------------------ + Northwest Computational Chemistry Package (NWChem) 7.0.2 + -------------------------------------------------------- Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - Copyright (c) 1994-2015 + Copyright (c) 1994-2020 Pacific Northwest National Laboratory Battelle Memorial Institute @@ -91,15 +91,16 @@ task scf property Job information --------------- - hostname = copper + hostname = osmium program = nwchem - date = Wed Jul 27 00:50:17 2016 - - compiled = Sun_Feb_14_13:23:17_2016 - source = /build/nwchem-XLLp2O/nwchem-6.6+r27746 - nwchem branch = 6.6 - nwchem revision = 27746 - ga revision = 10594 + date = Sat Jun 4 13:34:13 2022 + + compiled = Fri_Jul_02_16:33:00_2021 + source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src + nwchem branch = 7.0.2 + nwchem revision = b9985dfa + ga revision = 5.7.2 + use scalapack = T input = Trp_polar.in prefix = Trp_polar. data base = ./Trp_polar.db @@ -323,6 +324,9 @@ task scf property + library name resolved from: environment + library file name is: + Summary of "ao basis" -> "" (cartesian) @@ -435,7 +439,7 @@ task scf property - Forming initial guess at 0.5s + Forming initial guess at 0.1s Superposition of Atomic Density Guess @@ -453,7 +457,7 @@ task scf property LUMO = 0.219320 - Starting SCF solution at 1.9s + Starting SCF solution at 0.9s @@ -466,34 +470,25 @@ task scf property ---------------------------------------------- - Integral file = ./Trp_polar.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 230 Max. records in file = 19288 - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 8.876D+05 #integrals = 5.254D+06 #direct = 0.0% #cached =100.0% - - iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -673.3333996738 1.65D+00 4.34D-01 7.5 - 2 -673.5579531921 5.23D-01 9.82D-02 7.7 - 3 -673.5901146605 4.41D-02 1.96D-02 7.9 - 4 -673.5905709881 9.27D-04 3.19D-04 8.3 - 5 -673.5905711126 4.29D-07 2.12D-07 9.0 - 6 -673.5905711126 8.42D-11 1.57D-11 9.7 + 1 -673.3333996734 1.65D+00 4.34D-01 4.0 + 2 -673.5579531919 5.23D-01 9.82D-02 10.4 + 3 -673.5901147188 4.41D-02 1.96D-02 16.9 + 4 -673.5905709876 9.27D-04 3.18D-04 26.3 + 5 -673.5905711122 4.29D-07 2.12D-07 44.2 + 6 -673.5905711122 8.62D-11 1.54D-11 60.9 Final RHF results ------------------ - Total SCF energy = -673.590571112627 - One-electron energy = -2824.796309158325 - Two-electron energy = 1194.099334358451 + Total SCF energy = -673.590571112173 + One-electron energy = -2824.796309163842 + Two-electron energy = 1194.099334364422 Nuclear repulsion energy = 957.106403687247 - Time for solution = 8.2s + Time for solution = 60.1s Final eigenvalues @@ -1087,9 +1082,6 @@ task scf property 2 0 1 1 1.348243 0.000000 138.161061 2 0 0 2 -66.859565 0.000000 2136.322277 - - Parallel integral file used 121 records with 0 large values - *** CALLING NEW AORESP DRIVER FOR CLOSED AND OPEN SHELLS *** Entering AOResponse driver routine @@ -1126,7 +1118,7 @@ task scf property number of frequencies: 1 frequency in a.u.: 0.0000000E+00 Perturbing field: electric - Using Dipole Length Gauge + Using El. Dipole Length Gauge Setting up CPKS with frequency omega = 0.00000000 a.u. @@ -1146,16 +1138,7 @@ task scf property max iterations = 50 max subspace = 30 - - Integral file = ./Trp_polar.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 230 Max. records in file = 19288 - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 8.876D+05 #integrals = 5.216D+06 #direct = 0.0% #cached =100.0% - - SCF residual: 2.1313889800972591E-009 + SCF residual: 8.6162510654915214E-011 Iterative solution of linear equations @@ -1164,31 +1147,28 @@ Iterative solution of linear equations Maximum subspace 30 Iterations 50 Convergence 1.0D-08 - Start time 14.9 + Start time 64.2 iter nsub residual time ---- ------ -------- --------- - 1 3 1.75D+00 20.1 - 2 6 9.75D-01 25.3 - 3 9 1.24D-01 30.7 - 4 12 7.84D-02 35.8 - 5 15 2.15D-02 40.9 - 6 18 8.05D-03 46.2 - 7 21 2.62D-03 51.3 - 8 24 6.19D-04 56.4 - 9 27 1.73D-04 61.5 - 10 30 3.45D-05 66.6 - 11 30 1.27D-05 71.7 - 12 30 3.46D-06 76.8 - 13 30 8.13D-07 82.4 - 14 30 2.20D-07 87.7 - 15 30 9.27D-08 92.8 - 16 30 3.83D-08 98.1 - 17 30 9.56D-09 103.2 - - Parallel integral file used 120 records with 0 large values - + 1 3 1.75D+00 68.0 + 2 6 9.75D-01 71.8 + 3 9 1.24D-01 75.7 + 4 12 7.84D-02 79.5 + 5 15 2.15D-02 83.3 + 6 18 8.05D-03 87.1 + 7 21 2.62D-03 90.9 + 8 24 6.19D-04 94.7 + 9 27 1.73D-04 98.5 + 10 30 3.45D-05 102.4 + 11 30 1.27D-05 106.2 + 12 30 3.46D-06 110.0 + 13 30 8.13D-07 113.8 + 14 30 2.17D-07 117.6 + 15 30 9.34D-08 121.4 + 16 30 4.26D-08 125.2 + 17 30 9.93D-09 129.0 Electric Dipole Response Matrix (nonzero elements): @@ -1197,9 +1177,13 @@ Iterative solution of linear equations 2 -2.2776 49.9964 30.4190 3 -3.7757 30.4190 77.2609 + ------------------------------------------ + average: 74.12421 + I 0.00000 + + DFT Linear Response polarizability / au Frequency = 0.0000000 / au - Wavelength = Infinity / nm + Wavelength = -999999.0000000 / nm X Y Z ----------------------------------------------- X 95.1154128 -2.2775871 -3.7757114 @@ -1208,40 +1192,25 @@ Iterative solution of linear equations ----------------------------------------------- Eigenvalues = 91.5362531 30.2942943 100.5420753 Isotropic = 74.1242076 - Anisotropic = 54.0568623 + Anisotropic = 66.2058649 ----------------------------------------------- - average: 74.124207568359509 + I 0.0000000000000000 - Magnetic Dipole Response Matrix (nonzero elements): - Optical rotation tensor G' + Optical rotation tensor Beta - 1 2 3 - 1 2.6578 -41.3337 -14.1031 - 2 24.5834 -49.5181 54.5550 - 3 32.9671 -89.3949 46.9648 - average: 3.4811070632445741E-002 + I 0.0000000000000000 - - Principal components and PAS (Real part) - -86.3069 - 83.5151 - 2.8963 - --------------------- - average: 0.0348 + *** static G'=0. Use GPRIME input with finite omega + *** or better ORBETA without GPRIME for small or zero freq. - 1 2 3 - 1 0.3566 -0.3712 0.8573 - 2 0.8772 0.4487 -0.1706 - 3 -0.3214 0.8130 0.4856 - Exiting AOResponse driver routine - Task times cpu: 104.2s wall: 103.1s + zero matrix - NWChem Input Module - ------------------- + ------------------------------------------ + average: 0.00000 + I 0.00000 + Exiting AOResponse driver routine + Task times cpu: 129.0s wall: 129.8s Summary of allocated global arrays ----------------------------------- No active global arrays @@ -1252,12 +1221,11 @@ Iterative solution of linear equations ------------------------------ create destroy get put acc scatter gather read&inc -calls: 1984 1984 6.16e+05 3.42e+04 5.39e+05 1129 0 464 -number of processes/call 1.00e+00 1.00e+00 1.00e+00 0.00e+00 0.00e+00 -bytes total: 6.33e+08 6.50e+07 5.33e+08 6.96e+02 0.00e+00 3.71e+03 +calls: 1996 1996 3.63e+05 3.42e+04 5.43e+05 1129 0 716 +number of processes/call -2.42e+13 -2.68e+14 8.47e+12 0.00e+00 0.00e+00 +bytes total: 3.44e+08 6.50e+07 5.34e+08 6.96e+02 0.00e+00 5.73e+03 bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 Max memory consumed for GA by this process: 2219688 bytes - MA_summarize_allocated_blocks: starting scan ... MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: @@ -1266,11 +1234,18 @@ MA usage statistics: heap stack ---- ----- current number of blocks 0 0 - maximum number of blocks 25 35 + maximum number of blocks 24 35 current total bytes 0 0 - maximum total bytes 120649536 22511736 - maximum total K-bytes 120650 22512 - maximum total M-bytes 121 23 + maximum total bytes 80120 22511736 + maximum total K-bytes 81 22512 + maximum total M-bytes 1 23 + + + NWChem Input Module + ------------------- + + + CITATION @@ -1278,33 +1253,52 @@ MA usage statistics: Please cite the following reference when publishing results obtained with NWChem: - M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, - T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, - E. Apra, T.L. Windus, W.A. de Jong - "NWChem: a comprehensive and scalable open-source - solution for large scale molecular simulations" - Comput. Phys. Commun. 181, 1477 (2010) - doi:10.1016/j.cpc.2010.04.018 + E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, + V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, + J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, + J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, + C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, + K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, + J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, + V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, + B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, + S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, + A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, + D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, + J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, + A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, + R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, + D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, + V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, + Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, + D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, + A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, + and R. J. Harrison + "NWChem: Past, present, and future + J. Chem. Phys. 152, 184102 (2020) + doi:10.1063/5.0004997 AUTHORS ------- - E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, - J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, - S. A. Fischer, S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, - V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, - A. Marenich, A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, - J. Pittner, Y. Zhao, P.-D. Fan, A. Fonari, M. Williamson, R. J. Harrison, - J. R. Rehr, M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, - V. Tipparaju, M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, - L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, A. A. Auer, M. Nooijen, - L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, H. Fruchtl, J. Garza, - K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, K. Wolinski, - J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, H. Dachsel, - M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, A. C. Hess, - J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, - R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, - K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, - A. T. Wong, Z. Zhang. - - Total times cpu: 104.2s wall: 103.4s + E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, + T. P. Straatsma, H. J. J. van Dam, D. Wang, T. L. Windus, N. P. Bauman, + A. Panyala, J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, + K. Lopata, S. A. Fischer, S. Krishnamoorthy, M. Jacquelin, W. Ma, M. Klemm, + O. Villa, Y. Chen, V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, + Eric Hermes, L. Jensen, J. E. Moore, J. C. Becca, V. Konjkov, + D. Mejia-Rodriguez, T. Risthaus, M. Malagoli, A. Marenich, + A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, + P.-D. Fan, A. Fonari, M. J. Williamson, R. J. Harrison, J. R. Rehr, + M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, V. Tipparaju, + M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, M. Swart, Q. Wu, + T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, + G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, + K. Tsemekhman, K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, + T. Clark, D. Clerc, H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, + E. Glendening, M. Gutowski, A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, + R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, X. Long, B. Meng, + T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, + M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. + + Total times cpu: 129.0s wall: 129.8s diff --git a/data/NWChem/basicNWChem7.0/dvb_bomd_ks.out b/data/NWChem/basicNWChem7.0/dvb_bomd_ks.out index ae21288a2..664679d51 100644 --- a/data/NWChem/basicNWChem7.0/dvb_bomd_ks.out +++ b/data/NWChem/basicNWChem7.0/dvb_bomd_ks.out @@ -1,17 +1,17 @@ - argument 1 = dvb_bomd_ks.nw + argument 1 = dvb_bomd_ks.in - Northwest Computational Chemistry Package (NWChem) 6.6 - ------------------------------------------------------ + Northwest Computational Chemistry Package (NWChem) 7.0.2 + -------------------------------------------------------- Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - Copyright (c) 1994-2015 + Copyright (c) 1994-2020 Pacific Northwest National Laboratory Battelle Memorial Institute @@ -36,16 +36,17 @@ Job information --------------- - hostname = copper + hostname = osmium program = nwchem - date = Sun Jul 31 13:09:24 2016 - - compiled = Sun_Feb_14_13:23:17_2016 - source = /build/nwchem-XLLp2O/nwchem-6.6+r27746 - nwchem branch = 6.6 - nwchem revision = 27746 - ga revision = 10594 - input = dvb_bomd_ks.nw + date = Sat Jun 4 13:47:48 2022 + + compiled = Fri_Jul_02_16:33:00_2021 + source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src + nwchem branch = 7.0.2 + nwchem revision = b9985dfa + ga revision = 5.7.2 + use scalapack = T + input = dvb_bomd_ks.in prefix = dvb. data base = ./dvb.db status = startup @@ -57,10 +58,10 @@ Memory information ------------------ - heap = 13107196 doubles = 100.0 Mbytes - stack = 13107201 doubles = 100.0 Mbytes - global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) - total = 52428797 doubles = 400.0 Mbytes + heap = 134217726 doubles = 1024.0 Mbytes + stack = 134217723 doubles = 1024.0 Mbytes + global = 268435456 doubles = 2048.0 Mbytes (distinct from heap & stack) + total = 536870905 doubles = 4096.0 Mbytes verify = yes hardfail = no @@ -227,6 +228,9 @@ + library name resolved from: environment + library file name is: + Summary of "ao basis" -> "" (cartesian) @@ -236,7 +240,6 @@ * sto-3g on all atoms - calling qmd_driver NWChem QMD Module @@ -255,8 +258,7 @@ Thermostat: none Random seed: -123 Nuclear integrator: velocity-verlet - No restart file found - Beginning with random velocities + no velocities found in input Current temp. (K): 378.11 NWChem DFT Module @@ -304,20 +306,20 @@ Caching 1-el integrals - Time after variat. SCF: 0.6 - Time prior to 1st pass: 0.6 + Time after variat. SCF: 0.3 + Time prior to 1st pass: 0.3 Resetting Diis - Total DFT energy = -382.300234496971 - One electron energy = -1408.669142138536 - Coulomb energy = 634.252424248724 - Exchange-Corr. energy = -57.889687287395 + Total DFT energy = -382.300234057255 + One electron energy = -1408.669142371894 + Coulomb energy = 634.252424911240 + Exchange-Corr. energy = -57.889687276837 Nuclear repulsion energy = 450.006170680236 - Numeric. integr. density = 70.000005883413 + Numeric. integr. density = 70.000005883387 - Total iterative time = 12.1s + Total iterative time = 12.0s @@ -331,7 +333,7 @@ 3 C 1.973526 1.747713 0.000000 -0.019904 0.001498 0.000000 4 C -0.526628 2.582937 0.000000 0.008591 -0.050680 -0.000000 5 C -2.500165 0.834760 0.000000 0.019248 0.006173 0.000000 - 6 C -1.973526 -1.747713 0.000000 0.019904 -0.001498 0.000000 + 6 C -1.973526 -1.747713 0.000000 0.019904 -0.001498 -0.000000 7 H 4.471006 -1.493596 0.000000 0.001347 0.000197 0.000000 8 H 3.528989 3.125758 0.000000 0.001489 0.003437 0.000000 9 H -4.471006 1.493596 0.000000 -0.001347 -0.000197 0.000000 @@ -342,9 +344,9 @@ 14 H 0.272679 9.216066 0.000000 0.001999 0.001526 -0.000000 15 H 2.708710 6.713668 0.000000 0.002856 -0.000189 0.000000 16 C 1.108498 -5.434662 0.000000 -0.004656 -0.039239 0.000000 - 17 C -0.686919 -7.182403 0.000000 0.013088 0.023339 -0.000000 + 17 C -0.686919 -7.182403 0.000000 0.013087 0.023339 -0.000000 18 H 3.130289 -5.903397 0.000000 -0.000323 0.002973 -0.000000 - 19 H -0.272679 -9.216066 0.000000 -0.001999 -0.001526 -0.000000 + 19 H -0.272679 -9.216066 0.000000 -0.001999 -0.001526 0.000000 20 H -2.708710 -6.713668 0.000000 -0.002856 0.000189 -0.000000 @@ -357,19 +359,19 @@ Caching 1-el integrals - Time after variat. SCF: 18.4 - Time prior to 1st pass: 18.4 + Time after variat. SCF: 15.2 + Time prior to 1st pass: 15.2 - Total DFT energy = -382.299603734814 - One electron energy = -1408.442516297194 - Coulomb energy = 634.139748322437 - Exchange-Corr. energy = -57.884578818919 - Nuclear repulsion energy = 449.887743058861 + Total DFT energy = -382.299603286719 + One electron energy = -1408.442517198386 + Coulomb energy = 634.139749547366 + Exchange-Corr. energy = -57.884578784160 + Nuclear repulsion energy = 449.887743148460 - Numeric. integr. density = 70.000005695097 + Numeric. integr. density = 70.000005695039 - Total iterative time = 8.5s + Total iterative time = 8.0s @@ -405,11 +407,11 @@ ------------------- Time elapsed (fs) : 0.604721 Kin. energy (a.u.): 1 0.031752 - Pot. energy (a.u.): 1 -382.299604 - Tot. energy (a.u.): 1 -382.267852 + Pot. energy (a.u.): 1 -382.299603 + Tot. energy (a.u.): 1 -382.267851 Target temp. (K) : 1 298.00 Current temp. (K) : 1 371.35 - Dipole (a.u.) : 1 1.202618E-03 -2.264642E-04 -1.028963E-03 + Dipole (a.u.) : 1 1.202648E-03 -2.263902E-04 -1.028971E-03 @@ -422,19 +424,19 @@ Caching 1-el integrals - Time after variat. SCF: 32.4 - Time prior to 1st pass: 32.4 + Time after variat. SCF: 26.1 + Time prior to 1st pass: 26.1 - Total DFT energy = -382.296794147699 - One electron energy = -1408.168996718644 - Coulomb energy = 634.002659904567 - Exchange-Corr. energy = -57.879442129682 - Nuclear repulsion energy = 449.748984796061 + Total DFT energy = -382.296793668322 + One electron energy = -1408.168998064960 + Coulomb energy = 634.002661347266 + Exchange-Corr. energy = -57.879442098149 + Nuclear repulsion energy = 449.748985147520 - Numeric. integr. density = 70.000007291492 + Numeric. integr. density = 70.000007291420 - Total iterative time = 8.6s + Total iterative time = 8.0s @@ -446,22 +448,22 @@ 1 C 0.534406 -2.592582 0.008291 -0.004108 0.041760 0.000299 2 C 2.503533 -0.836228 0.020404 -0.014758 -0.013071 0.004028 3 C 1.968621 1.760844 -0.010129 -0.033163 0.008716 -0.004668 - 4 C -0.518594 2.587215 0.005007 0.017959 -0.048413 0.001370 + 4 C -0.518594 2.587215 0.005007 0.017959 -0.048414 0.001370 5 C -2.503965 0.845509 -0.013254 0.007469 0.018314 -0.001353 - 6 C -1.973842 -1.750312 -0.013814 0.010472 -0.015214 -0.000601 + 6 C -1.973842 -1.750312 -0.013814 0.010472 -0.015215 -0.000601 7 H 4.477704 -1.466821 -0.023348 -0.000439 0.002043 -0.001742 8 H 3.552850 3.128675 0.039948 0.007216 0.006455 0.001856 - 9 H -4.455397 1.504554 0.004680 0.005952 -0.002493 0.000716 + 9 H -4.455397 1.504554 0.004680 0.005951 -0.002493 0.000716 10 H -3.506415 -3.116344 -0.027942 0.006978 0.003372 0.000050 11 C -1.114969 5.416463 0.012887 0.030644 0.014705 -0.000910 - 12 C 0.696960 7.172677 -0.010441 0.028678 -0.049841 -0.001605 + 12 C 0.696960 7.172677 -0.010441 0.028678 -0.049842 -0.001605 13 H -3.234779 5.917442 0.048987 -0.036401 0.006160 0.000914 14 H 0.305675 9.280696 0.013464 -0.000049 0.027905 0.000662 - 15 H 2.656327 6.732141 -0.023433 -0.027209 0.008844 0.000748 + 15 H 2.656327 6.732140 -0.023433 -0.027209 0.008844 0.000748 16 C 1.107160 -5.422743 -0.007553 0.008941 -0.022649 0.002870 17 C -0.693038 -7.198527 0.012017 0.000811 -0.006983 -0.000901 18 H 3.110037 -5.887763 -0.120261 -0.007426 0.004779 -0.001593 - 19 H -0.292274 -9.196321 -0.021510 -0.005180 0.014145 0.000594 + 19 H -0.292274 -9.196321 -0.021510 -0.005179 0.014145 0.000594 20 H -2.688401 -6.685695 0.068744 0.003614 0.001466 -0.000737 @@ -471,10 +473,10 @@ Time elapsed (fs) : 1.209442 Kin. energy (a.u.): 2 0.029058 Pot. energy (a.u.): 2 -382.296794 - Tot. energy (a.u.): 2 -382.267736 + Tot. energy (a.u.): 2 -382.267735 Target temp. (K) : 2 298.00 Current temp. (K) : 2 339.85 - Dipole (a.u.) : 2 2.891437E-03 -1.071497E-03 -2.201611E-03 + Dipole (a.u.) : 2 2.891432E-03 -1.071556E-03 -2.201629E-03 @@ -487,19 +489,19 @@ Caching 1-el integrals - Time after variat. SCF: 46.6 - Time prior to 1st pass: 46.6 + Time after variat. SCF: 36.9 + Time prior to 1st pass: 36.9 - Total DFT energy = -382.293569296949 - One electron energy = -1407.846127957403 - Coulomb energy = 633.841935466021 - Exchange-Corr. energy = -57.873778488055 - Nuclear repulsion energy = 449.584401682489 + Total DFT energy = -382.293568835403 + One electron energy = -1407.846130119755 + Coulomb energy = 633.841937315184 + Exchange-Corr. energy = -57.873778482936 + Nuclear repulsion energy = 449.584402452103 - Numeric. integr. density = 70.000009836505 + Numeric. integr. density = 70.000009836422 - Total iterative time = 8.7s + Total iterative time = 8.0s @@ -511,15 +513,15 @@ 1 C 0.538504 -2.599268 0.012426 -0.001745 0.035304 0.000435 2 C 2.505886 -0.836446 0.030462 -0.012007 -0.015356 0.005990 3 C 1.967506 1.767089 -0.015027 -0.037024 0.012662 -0.006967 - 4 C -0.515282 2.591455 0.007462 0.021805 -0.045324 0.002021 + 4 C -0.515283 2.591455 0.007462 0.021805 -0.045325 0.002021 5 C -2.506270 0.850180 -0.019832 0.002094 0.022691 -0.001985 6 C -1.974520 -1.751054 -0.020700 0.005842 -0.020413 -0.000983 7 H 4.481118 -1.454322 -0.034278 -0.001307 0.002847 -0.002541 8 H 3.561512 3.127033 0.059136 0.008530 0.006660 0.002769 9 H -4.450023 1.511118 0.006712 0.008723 -0.003245 0.001030 10 H -3.497971 -3.112781 -0.041931 0.010441 0.006107 0.000125 - 11 C -1.119374 5.406558 0.019361 0.034774 0.002746 -0.001462 - 12 C 0.701042 7.169794 -0.015605 0.044294 -0.054763 -0.002660 + 11 C -1.119374 5.406558 0.019361 0.034773 0.002746 -0.001462 + 12 C 0.701042 7.169794 -0.015605 0.044295 -0.054763 -0.002660 13 H -3.271126 5.922008 0.073110 -0.046527 0.009029 0.001564 14 H 0.322088 9.300703 0.019923 0.000071 0.034883 0.001066 15 H 2.641535 6.737598 -0.035460 -0.037396 0.011980 0.001208 @@ -527,7 +529,7 @@ 17 C -0.696222 -7.206504 0.018058 -0.005040 -0.019808 -0.001336 18 H 3.103214 -5.882268 -0.179702 -0.008357 0.004935 -0.002309 19 H -0.299682 -9.192385 -0.032508 -0.006166 0.019513 0.001005 - 20 H -2.679555 -6.672342 0.103423 0.006138 0.002295 -0.001185 + 20 H -2.679555 -6.672342 0.103423 0.006138 0.002294 -0.001185 @@ -539,7 +541,7 @@ Tot. energy (a.u.): 3 -382.267622 Target temp. (K) : 3 298.00 Current temp. (K) : 3 303.46 - Dipole (a.u.) : 3 4.354933E-03 -1.226527E-03 -3.463850E-03 + Dipole (a.u.) : 3 4.354939E-03 -1.226533E-03 -3.463879E-03 @@ -552,19 +554,19 @@ Caching 1-el integrals - Time after variat. SCF: 60.7 - Time prior to 1st pass: 60.7 + Time after variat. SCF: 47.8 + Time prior to 1st pass: 47.8 - Total DFT energy = -382.291677449477 - One electron energy = -1407.469793314801 - Coulomb energy = 633.656574033725 - Exchange-Corr. energy = -57.867067327632 - Nuclear repulsion energy = 449.388609159232 + Total DFT energy = -382.291676982586 + One electron energy = -1407.469796377808 + Coulomb energy = 633.656576271552 + Exchange-Corr. energy = -57.867067341354 + Nuclear repulsion energy = 449.388610465025 - Numeric. integr. density = 70.000012528448 + Numeric. integr. density = 70.000012528362 - Total iterative time = 8.5s + Total iterative time = 8.0s @@ -585,14 +587,14 @@ 10 H -3.493079 -3.111295 -0.055963 0.012489 0.007590 0.000207 11 C -1.124772 5.396574 0.025877 0.033492 -0.008534 -0.001908 12 C 0.703859 7.168476 -0.020694 0.051873 -0.053131 -0.003687 - 13 H -3.291645 5.923504 0.096702 -0.051296 0.010724 0.002172 + 13 H -3.291644 5.923504 0.096702 -0.051296 0.010724 0.002172 14 H 0.338477 9.308842 0.026019 0.000907 0.037306 0.001423 15 H 2.639466 6.738980 -0.047898 -0.040110 0.013288 0.001622 16 C 1.104863 -5.408264 -0.015433 0.014168 -0.002209 0.005690 17 C -0.699261 -7.213916 0.024137 -0.010153 -0.028903 -0.001703 18 H 3.099235 -5.878451 -0.238357 -0.007215 0.004532 -0.003173 19 H -0.304991 -9.195088 -0.043848 -0.006416 0.021429 0.001366 - 20 H -2.672798 -6.659770 0.138504 0.007671 0.003350 -0.001616 + 20 H -2.672798 -6.659769 0.138504 0.007671 0.003350 -0.001616 @@ -601,10 +603,10 @@ Time elapsed (fs) : 2.418884 Kin. energy (a.u.): 4 0.024106 Pot. energy (a.u.): 4 -382.291677 - Tot. energy (a.u.): 4 -382.267572 + Tot. energy (a.u.): 4 -382.267571 Target temp. (K) : 4 298.00 Current temp. (K) : 4 281.92 - Dipole (a.u.) : 4 5.382358E-03 7.050637E-05 -4.746338E-03 + Dipole (a.u.) : 4 5.382361E-03 7.056587E-05 -4.746376E-03 @@ -617,19 +619,19 @@ Caching 1-el integrals - Time after variat. SCF: 74.8 - Time prior to 1st pass: 74.8 + Time after variat. SCF: 58.7 + Time prior to 1st pass: 58.7 - Total DFT energy = -382.291904099003 - One electron energy = -1407.049624754477 - Coulomb energy = 633.453494981868 - Exchange-Corr. energy = -57.859241304214 - Nuclear repulsion energy = 449.163466977821 + Total DFT energy = -382.291903643771 + One electron energy = -1407.049628949667 + Coulomb energy = 633.453497739928 + Exchange-Corr. energy = -57.859241337235 + Nuclear repulsion energy = 449.163468903204 - Numeric. integr. density = 70.000014765856 + Numeric. integr. density = 70.000014765744 - Total iterative time = 8.6s + Total iterative time = 8.0s @@ -639,7 +641,7 @@ atom coordinates gradient x y z x y z 1 C 0.546782 -2.615448 0.020654 0.002985 0.019118 0.000710 - 2 C 2.511542 -0.835526 0.050010 -0.006736 -0.017213 0.009721 + 2 C 2.511542 -0.835526 0.050010 -0.006736 -0.017214 0.009721 3 C 1.968494 1.778376 -0.024163 -0.037717 0.020973 -0.011149 4 C -0.510613 2.603697 0.012179 0.026617 -0.035743 0.003288 5 C -2.510942 0.857495 -0.032801 -0.004503 0.026609 -0.003242 @@ -647,15 +649,15 @@ 7 H 4.489489 -1.432451 -0.053289 -0.002177 0.003955 -0.003997 8 H 3.570111 3.117212 0.094403 0.007405 0.004206 0.004279 9 H -4.448661 1.527634 0.009623 0.009930 -0.003029 0.001645 - 10 H -3.492436 -3.112390 -0.070065 0.012709 0.007455 0.000271 + 10 H -3.492436 -3.112391 -0.070065 0.012709 0.007455 0.000271 11 C -1.131128 5.386834 0.032448 0.027360 -0.018789 -0.002153 12 C 0.705194 7.168676 -0.025677 0.050293 -0.044954 -0.004511 13 H -3.294712 5.921350 0.119555 -0.050999 0.011244 0.002641 14 H 0.354557 9.304290 0.031631 0.002374 0.035165 0.001666 - 15 H 2.651042 6.735842 -0.060888 -0.034401 0.012555 0.001888 + 15 H 2.651042 6.735841 -0.060888 -0.034401 0.012555 0.001888 16 C 1.103127 -5.400779 -0.019596 0.013052 0.008553 0.007400 17 C -0.702010 -7.220501 0.030264 -0.014275 -0.033524 -0.001950 - 18 H 3.097710 -5.876176 -0.295933 -0.004300 0.003647 -0.004292 + 18 H 3.097709 -5.876176 -0.295933 -0.004300 0.003647 -0.004292 19 H -0.308119 -9.205082 -0.055652 -0.005847 0.019350 0.001559 20 H -2.668650 -6.648337 0.174136 0.008016 0.004662 -0.001964 @@ -669,7 +671,7 @@ Tot. energy (a.u.): 5 -382.267608 Target temp. (K) : 5 298.00 Current temp. (K) : 5 284.15 - Dipole (a.u.) : 5 5.491734E-03 3.156685E-03 -5.966128E-03 + Dipole (a.u.) : 5 5.491672E-03 3.156837E-03 -5.966170E-03 @@ -682,19 +684,19 @@ Caching 1-el integrals - Time after variat. SCF: 89.2 - Time prior to 1st pass: 89.2 + Time after variat. SCF: 69.5 + Time prior to 1st pass: 69.5 - Total DFT energy = -382.293705888167 - One electron energy = -1406.603623132701 - Coulomb energy = 633.239808390541 - Exchange-Corr. energy = -57.850826120390 - Nuclear repulsion energy = 448.920934974382 + Total DFT energy = -382.293705399372 + One electron energy = -1406.603628537159 + Coulomb energy = 633.239811744292 + Exchange-Corr. energy = -57.850826166316 + Nuclear repulsion energy = 448.920937559811 - Numeric. integr. density = 70.000016527211 + Numeric. integr. density = 70.000016527051 - Total iterative time = 8.7s + Total iterative time = 8.0s @@ -711,12 +713,12 @@ 6 C -1.977189 -1.749490 -0.041142 -0.000205 -0.022441 -0.002192 7 H 4.494744 -1.423455 -0.060875 -0.001995 0.004207 -0.004664 8 H 3.570430 3.109869 0.109970 0.005132 0.001777 0.004787 - 9 H -4.453086 1.537511 0.010292 0.008093 -0.001953 0.001978 + 9 H -4.453085 1.537511 0.010292 0.008093 -0.001953 0.001978 10 H -3.496116 -3.116023 -0.084259 0.011069 0.005679 0.000287 11 C -1.138265 5.377631 0.039081 0.016619 -0.027665 -0.002107 12 C 0.705092 7.170160 -0.030532 0.041144 -0.030827 -0.004994 13 H -3.280430 5.915372 0.141509 -0.045649 0.010517 0.002870 - 14 H 0.369829 9.287775 0.036677 0.004375 0.028538 0.001735 + 14 H 0.369829 9.287774 0.036677 0.004375 0.028538 0.001735 15 H 2.674321 6.728432 -0.074520 -0.021973 0.010104 0.001940 16 C 1.101017 -5.393538 -0.023970 0.010148 0.019123 0.009350 17 C -0.704351 -7.226129 0.036448 -0.017232 -0.033932 -0.002049 @@ -730,11 +732,11 @@ ------------------- Time elapsed (fs) : 3.628326 Kin. energy (a.u.): 6 0.026002 - Pot. energy (a.u.): 6 -382.293706 - Tot. energy (a.u.): 6 -382.267704 + Pot. energy (a.u.): 6 -382.293705 + Tot. energy (a.u.): 6 -382.267703 Target temp. (K) : 6 298.00 Current temp. (K) : 6 304.11 - Dipole (a.u.) : 6 4.419669E-03 7.395040E-03 -7.052031E-03 + Dipole (a.u.) : 6 4.419665E-03 7.395290E-03 -7.052082E-03 @@ -747,19 +749,19 @@ Caching 1-el integrals - Time after variat. SCF: 103.5 - Time prior to 1st pass: 103.5 + Time after variat. SCF: 80.4 + Time prior to 1st pass: 80.4 - Total DFT energy = -382.295616066320 - One electron energy = -1406.161610716478 - Coulomb energy = 633.028659038472 - Exchange-Corr. energy = -57.842796940399 - Nuclear repulsion energy = 448.680132552085 + Total DFT energy = -382.295615610122 + One electron energy = -1406.161617225830 + Coulomb energy = 633.028662837864 + Exchange-Corr. energy = -57.842797024986 + Nuclear repulsion energy = 448.680135802831 - Numeric. integr. density = 70.000017279724 + Numeric. integr. density = 70.000017279557 - Total iterative time = 10.0s + Total iterative time = 9.5s @@ -769,18 +771,18 @@ atom coordinates gradient x y z x y z 1 C 0.554720 -2.633793 0.028801 0.007550 0.000146 0.001015 - 2 C 2.517978 -0.832666 0.068449 -0.002867 -0.015455 0.013085 - 3 C 1.973727 1.787270 -0.032032 -0.029597 0.028514 -0.014443 - 4 C -0.508952 2.619998 0.016521 0.026927 -0.022520 0.004544 + 2 C 2.517978 -0.832665 0.068449 -0.002867 -0.015455 0.013085 + 3 C 1.973728 1.787270 -0.032032 -0.029597 0.028514 -0.014443 + 4 C -0.508952 2.619998 0.016521 0.026927 -0.022521 0.004544 5 C -2.515149 0.861819 -0.045399 -0.004654 0.023865 -0.004591 6 C -1.978099 -1.747642 -0.047846 0.000700 -0.018546 -0.002524 7 H 4.500677 -1.415891 -0.066875 -0.001407 0.004261 -0.005291 - 8 H 3.569004 3.101921 0.123908 0.002081 -0.001123 0.005110 + 8 H 3.569003 3.101921 0.123908 0.002081 -0.001123 0.005110 9 H -4.460263 1.548052 0.010288 0.004988 -0.000356 0.002334 - 10 H -3.503563 -3.121587 -0.098551 0.007916 0.002592 0.000242 - 11 C -1.145877 5.369218 0.045773 0.001225 -0.034780 -0.001667 - 12 C 0.703814 7.172525 -0.035243 0.027775 -0.011837 -0.005075 - 13 H -3.250619 5.905816 0.162487 -0.035043 0.008414 0.002746 + 10 H -3.503562 -3.121587 -0.098551 0.007916 0.002592 0.000242 + 11 C -1.145876 5.369218 0.045773 0.001225 -0.034780 -0.001667 + 12 C 0.703814 7.172525 -0.035243 0.027775 -0.011836 -0.005075 + 13 H -3.250618 5.905816 0.162487 -0.035043 0.008414 0.002746 14 H 0.383613 9.261550 0.041132 0.006779 0.017688 0.001580 15 H 2.705075 6.717585 -0.088813 -0.006202 0.006611 0.001779 16 C 1.098618 -5.386844 -0.028611 0.006309 0.029061 0.011444 @@ -796,10 +798,10 @@ Time elapsed (fs) : 4.233048 Kin. energy (a.u.): 7 0.027811 Pot. energy (a.u.): 7 -382.295616 - Tot. energy (a.u.): 7 -382.267805 + Tot. energy (a.u.): 7 -382.267804 Target temp. (K) : 7 298.00 Current temp. (K) : 7 325.26 - Dipole (a.u.) : 7 1.867635E-03 1.177133E-02 -7.962347E-03 + Dipole (a.u.) : 7 1.867614E-03 1.177159E-02 -7.962402E-03 @@ -812,19 +814,19 @@ Caching 1-el integrals - Time after variat. SCF: 118.8 - Time prior to 1st pass: 118.8 + Time after variat. SCF: 92.7 + Time prior to 1st pass: 92.7 - Total DFT energy = -382.296073200097 - One electron energy = -1405.753720904803 - Coulomb energy = 632.833355891545 - Exchange-Corr. energy = -57.836212134068 - Nuclear repulsion energy = 448.460503947229 + Total DFT energy = -382.296072748297 + One electron energy = -1405.753728493205 + Coulomb energy = 632.833360166008 + Exchange-Corr. energy = -57.836212233011 + Nuclear repulsion energy = 448.460507811912 - Numeric. integr. density = 70.000017340127 + Numeric. integr. density = 70.000017339900 - Total iterative time = 10.3s + Total iterative time = 9.5s @@ -835,13 +837,13 @@ x y z x y z 1 C 0.558397 -2.643110 0.032833 0.009719 -0.009628 0.001186 2 C 2.521343 -0.830554 0.077132 -0.001566 -0.013403 0.014581 - 3 C 1.977684 1.790546 -0.035369 -0.023306 0.031248 -0.015727 + 3 C 1.977684 1.790546 -0.035368 -0.023306 0.031248 -0.015727 4 C -0.509281 2.629214 0.018506 0.025465 -0.014916 0.005170 5 C -2.517043 0.862927 -0.051511 -0.003160 0.020500 -0.005294 6 C -1.979028 -1.745264 -0.054477 0.002345 -0.013219 -0.002802 7 H 4.507089 -1.409776 -0.071074 -0.000481 0.004143 -0.005877 8 H 3.566869 3.094355 0.136108 -0.001283 -0.004111 0.005273 - 9 H -4.469138 1.558715 0.009490 0.001198 0.001546 0.002701 + 9 H -4.469137 1.558715 0.009490 0.001198 0.001546 0.002701 10 H -3.513702 -3.128033 -0.112925 0.003881 -0.001215 0.000137 11 C -1.153523 5.361799 0.052513 -0.018794 -0.039758 -0.000724 12 C 0.701743 7.175229 -0.039810 0.013616 0.010333 -0.004770 @@ -852,7 +854,7 @@ 17 C -0.707508 -7.234554 0.048989 -0.019490 -0.026738 -0.001918 18 H 3.096324 -5.875126 -0.457961 0.007955 -0.000058 -0.008802 19 H -0.307456 -9.266046 -0.094069 -0.001014 -0.003207 0.000599 - 20 H -2.671035 -6.625689 0.285260 0.002637 0.009502 -0.002036 + 20 H -2.671035 -6.625689 0.285260 0.002636 0.009502 -0.002036 @@ -864,7 +866,7 @@ Tot. energy (a.u.): 8 -382.267863 Target temp. (K) : 8 298.00 Current temp. (K) : 8 329.93 - Dipole (a.u.) : 8 -7.292608E-04 1.537565E-02 -8.669568E-03 + Dipole (a.u.) : 8 -7.293358E-04 1.537593E-02 -8.669625E-03 @@ -877,19 +879,19 @@ Caching 1-el integrals - Time after variat. SCF: 134.9 - Time prior to 1st pass: 134.9 + Time after variat. SCF: 105.1 + Time prior to 1st pass: 105.1 - Total DFT energy = -382.294203692049 - One electron energy = -1405.398994619370 - Coulomb energy = 632.661800011155 - Exchange-Corr. energy = -57.831674016082 - Nuclear repulsion energy = 448.274664932248 + Total DFT energy = -382.294203245523 + One electron energy = -1405.399003057520 + Coulomb energy = 632.661804625952 + Exchange-Corr. energy = -57.831674128286 + Nuclear repulsion energy = 448.274669314331 - Numeric. integr. density = 70.000016782594 + Numeric. integr. density = 70.000016782334 - Total iterative time = 9.7s + Total iterative time = 9.5s @@ -899,21 +901,21 @@ atom coordinates gradient x y z x y z 1 C 0.561797 -2.652152 0.036831 0.011798 -0.019140 0.001374 - 2 C 2.524753 -0.828060 0.085397 -0.000594 -0.010718 0.015916 + 2 C 2.524753 -0.828059 0.085397 -0.000594 -0.010718 0.015916 3 C 1.982307 1.792929 -0.038256 -0.016465 0.032782 -0.016811 4 C -0.510338 2.638855 0.020343 0.023115 -0.006849 0.005788 5 C -2.518847 0.863450 -0.057471 -0.001426 0.016294 -0.005988 6 C -1.980025 -1.742508 -0.061029 0.004069 -0.007246 -0.003039 - 7 H 4.513665 -1.405071 -0.073274 0.000632 0.003897 -0.006406 + 7 H 4.513664 -1.405071 -0.073274 0.000631 0.003897 -0.006406 8 H 3.565171 3.088188 0.146514 -0.004413 -0.006744 0.005333 - 9 H -4.478420 1.568851 0.007773 -0.002644 0.003505 0.003055 - 10 H -3.525162 -3.134065 -0.127346 -0.000339 -0.005084 -0.000013 + 9 H -4.478419 1.568851 0.007773 -0.002644 0.003505 0.003055 + 10 H -3.525161 -3.134066 -0.127346 -0.000339 -0.005084 -0.000013 11 C -1.160633 5.355516 0.059274 -0.042668 -0.042414 0.000792 12 C 0.699283 7.177637 -0.044241 0.001178 0.033169 -0.004173 - 13 H -3.160676 5.879341 0.201845 0.001794 -0.000210 0.000974 + 13 H -3.160676 5.879341 0.201845 0.001795 -0.000210 0.000974 14 H 0.403372 9.195913 0.048568 0.011956 -0.012620 0.000554 - 15 H 2.767570 6.690439 -0.119106 0.022745 -0.000736 0.001078 - 16 C 1.093390 -5.376201 -0.038935 -0.000843 0.045479 0.015381 + 15 H 2.767570 6.690438 -0.119106 0.022745 -0.000736 0.001078 + 16 C 1.093390 -5.376201 -0.038935 -0.000842 0.045479 0.015381 17 C -0.708259 -7.237557 0.055343 -0.019028 -0.021873 -0.001816 18 H 3.092265 -5.875293 -0.506693 0.010789 -0.000975 -0.010204 19 H -0.305727 -9.288111 -0.107511 0.000635 -0.011462 -0.000086 @@ -925,11 +927,11 @@ ------------------- Time elapsed (fs) : 5.442490 Kin. energy (a.u.): 9 0.026357 - Pot. energy (a.u.): 9 -382.294204 + Pot. energy (a.u.): 9 -382.294203 Tot. energy (a.u.): 9 -382.267847 Target temp. (K) : 9 298.00 Current temp. (K) : 9 308.25 - Dipole (a.u.) : 9 -2.943665E-03 1.741901E-02 -9.227580E-03 + Dipole (a.u.) : 9 -2.943847E-03 1.741942E-02 -9.227647E-03 @@ -942,19 +944,19 @@ Caching 1-el integrals - Time after variat. SCF: 150.2 - Time prior to 1st pass: 150.2 + Time after variat. SCF: 117.5 + Time prior to 1st pass: 117.5 - Total DFT energy = -382.290337583929 - One electron energy = -1405.100524617033 - Coulomb energy = 632.515334761773 - Exchange-Corr. energy = -57.829137907618 - Nuclear repulsion energy = 448.123990178949 + Total DFT energy = -382.290337129267 + One electron energy = -1405.100533726221 + Coulomb energy = 632.515339698489 + Exchange-Corr. energy = -57.829138030352 + Nuclear repulsion energy = 448.123994928819 - Numeric. integr. density = 70.000015027577 + Numeric. integr. density = 70.000015027262 - Total iterative time = 9.8s + Total iterative time = 9.5s @@ -965,24 +967,24 @@ x y z x y z 1 C 0.564860 -2.660647 0.040790 0.013763 -0.028031 0.001581 2 C 2.528180 -0.825259 0.093208 0.000180 -0.007541 0.017056 - 3 C 1.987400 1.794375 -0.040663 -0.009851 0.032766 -0.017755 + 3 C 1.987400 1.794375 -0.040663 -0.009850 0.032766 -0.017755 4 C -0.512056 2.648693 0.022015 0.020058 0.001546 0.006391 5 C -2.520611 0.863507 -0.063261 -0.000037 0.011648 -0.006644 6 C -1.981138 -1.739545 -0.067493 0.005278 -0.001368 -0.003257 7 H 4.520025 -1.401692 -0.073295 0.001761 0.003575 -0.006857 - 8 H 3.564975 3.084315 0.155106 -0.006747 -0.008574 0.005364 + 8 H 3.564974 3.084316 0.155106 -0.006747 -0.008574 0.005364 9 H -4.486802 1.577796 0.005017 -0.005953 0.005278 0.003370 - 10 H -3.536506 -3.138368 -0.141763 -0.004114 -0.008418 -0.000184 + 10 H -3.536505 -3.138369 -0.141763 -0.004114 -0.008418 -0.000184 11 C -1.166524 5.350445 0.066012 -0.067921 -0.043036 0.002805 12 C 0.696789 7.179097 -0.048552 -0.008069 0.053131 -0.003465 13 H -3.113078 5.865357 0.220828 0.025186 -0.006116 -0.000714 14 H 0.407585 9.166811 0.051898 0.014051 -0.027427 -0.000159 - 15 H 2.789462 6.676639 -0.134869 0.032239 -0.003639 0.000703 + 15 H 2.789462 6.676638 -0.134869 0.032239 -0.003639 0.000703 16 C 1.090765 -5.372722 -0.044729 -0.002929 0.051271 0.016837 - 17 C -0.708466 -7.239935 0.061750 -0.017812 -0.017552 -0.001777 + 17 C -0.708466 -7.239935 0.061750 -0.017812 -0.017553 -0.001777 18 H 3.084535 -5.875128 -0.551954 0.012168 -0.001484 -0.011254 19 H -0.304214 -9.306276 -0.120924 0.001883 -0.018051 -0.000779 - 20 H -2.678322 -6.625751 0.362799 -0.003133 0.012023 -0.001261 + 20 H -2.678322 -6.625750 0.362799 -0.003133 0.012023 -0.001261 @@ -990,11 +992,11 @@ ------------------- Time elapsed (fs) : 6.047211 Kin. energy (a.u.): 10 0.022590 - Pot. energy (a.u.): 10 -382.290338 - Tot. energy (a.u.): 10 -382.267748 + Pot. energy (a.u.): 10 -382.290337 + Tot. energy (a.u.): 10 -382.267747 Target temp. (K) : 10 298.00 Current temp. (K) : 10 264.20 - Dipole (a.u.) : 10 -4.095519E-03 1.798909E-02 -9.717987E-03 + Dipole (a.u.) : 10 -4.095699E-03 1.798954E-02 -9.718055E-03 @@ -1007,19 +1009,19 @@ Caching 1-el integrals - Time after variat. SCF: 165.7 - Time prior to 1st pass: 165.7 + Time after variat. SCF: 129.8 + Time prior to 1st pass: 129.8 - Total DFT energy = -382.286088218183 - One electron energy = -1404.846084586391 - Coulomb energy = 632.388822123609 - Exchange-Corr. energy = -57.827958384741 - Nuclear repulsion energy = 447.999132629342 + Total DFT energy = -382.286087743960 + One electron energy = -1404.846094145077 + Coulomb energy = 632.388827368852 + Exchange-Corr. energy = -57.827958535420 + Nuclear repulsion energy = 447.999137567685 - Numeric. integr. density = 70.000011836727 + Numeric. integr. density = 70.000011836388 - Total iterative time = 8.6s + Total iterative time = 8.0s @@ -1028,21 +1030,21 @@ atom coordinates gradient x y z x y z - 1 C 0.567529 -2.668341 0.044704 0.015559 -0.035974 0.001813 + 1 C 0.567530 -2.668341 0.044704 0.015559 -0.035974 0.001813 2 C 2.531602 -0.822243 0.100532 0.000901 -0.004037 0.017974 3 C 1.992775 1.794885 -0.042563 -0.004124 0.030992 -0.018625 4 C -0.514346 2.658486 0.023505 0.016448 0.010148 0.006969 - 5 C -2.522374 0.863231 -0.068860 0.000546 0.006926 -0.007230 + 5 C -2.522374 0.863231 -0.068861 0.000546 0.006926 -0.007230 6 C -1.982401 -1.736543 -0.073865 0.005531 0.003822 -0.003483 7 H 4.525787 -1.399529 -0.070983 0.002751 0.003228 -0.007213 - 8 H 3.567073 3.083359 0.161873 -0.007828 -0.009247 0.005443 - 9 H -4.493160 1.584944 0.001115 -0.008266 0.006662 0.003621 - 10 H -3.546451 -3.139808 -0.156117 -0.006957 -0.010761 -0.000346 + 8 H 3.567073 3.083360 0.161873 -0.007828 -0.009247 0.005443 + 9 H -4.493159 1.584944 0.001115 -0.008266 0.006662 0.003621 + 10 H -3.546450 -3.139808 -0.156117 -0.006957 -0.010761 -0.000346 11 C -1.170474 5.346604 0.072671 -0.089675 -0.042631 0.004961 12 C 0.694525 7.179039 -0.052764 -0.013373 0.066106 -0.002902 - 13 H -3.074049 5.853453 0.240054 0.046504 -0.011686 -0.002601 + 13 H -3.074048 5.853453 0.240054 0.046504 -0.011686 -0.002601 14 H 0.407018 9.147039 0.055282 0.015218 -0.037388 -0.000746 - 15 H 2.800386 6.664077 -0.150870 0.037483 -0.005680 0.000412 + 15 H 2.800386 6.664076 -0.150870 0.037483 -0.005680 0.000412 16 C 1.088225 -5.370707 -0.051004 -0.003557 0.055093 0.017731 17 C -0.708164 -7.241812 0.068207 -0.016130 -0.014358 -0.001840 18 H 3.072666 -5.874458 -0.593386 0.011894 -0.001511 -0.011805 @@ -1056,10 +1058,10 @@ Time elapsed (fs) : 6.651932 Kin. energy (a.u.): 11 0.018482 Pot. energy (a.u.): 11 -382.286088 - Tot. energy (a.u.): 11 -382.267606 + Tot. energy (a.u.): 11 -382.267605 Target temp. (K) : 11 298.00 Current temp. (K) : 11 216.16 - Dipole (a.u.) : 11 -3.416278E-03 1.825022E-02 -1.019813E-02 + Dipole (a.u.) : 11 -3.416412E-03 1.825050E-02 -1.019820E-02 @@ -1072,19 +1074,19 @@ Caching 1-el integrals - Time after variat. SCF: 179.9 - Time prior to 1st pass: 179.9 + Time after variat. SCF: 140.7 + Time prior to 1st pass: 140.7 - Total DFT energy = -382.283659499678 - One electron energy = -1404.617874417225 - Coulomb energy = 632.275142321931 - Exchange-Corr. energy = -57.827282998544 - Nuclear repulsion energy = 447.886355594160 + Total DFT energy = -382.283659115531 + One electron energy = -1404.617884043011 + Coulomb energy = 632.275147519826 + Exchange-Corr. energy = -57.827283162930 + Nuclear repulsion energy = 447.886360570585 - Numeric. integr. density = 70.000007921126 + Numeric. integr. density = 70.000007920787 - Total iterative time = 8.6s + Total iterative time = 8.0s @@ -1093,26 +1095,26 @@ atom coordinates gradient x y z x y z - 1 C 0.569754 -2.675008 0.048566 0.017187 -0.042671 0.002075 + 1 C 0.569755 -2.675008 0.048566 0.017187 -0.042671 0.002075 2 C 2.534999 -0.819111 0.107342 0.001692 -0.000325 0.018632 - 3 C 1.998267 1.794510 -0.043931 0.000309 0.027426 -0.019441 + 3 C 1.998267 1.794510 -0.043931 0.000309 0.027425 -0.019441 4 C -0.517107 2.667989 0.024795 0.012511 0.018815 0.007511 5 C -2.524152 0.862757 -0.074254 0.000031 0.002482 -0.007724 6 C -1.983823 -1.733650 -0.080137 0.004589 0.007858 -0.003741 - 7 H 4.530613 -1.398465 -0.066217 0.003434 0.002907 -0.007447 - 8 H 3.571835 3.085549 0.166789 -0.007476 -0.008629 0.005611 + 7 H 4.530612 -1.398465 -0.066217 0.003434 0.002907 -0.007447 + 8 H 3.571834 3.085550 0.166789 -0.007476 -0.008629 0.005611 9 H -4.496705 1.589826 -0.004020 -0.009326 0.007527 0.003791 - 10 H -3.554029 -3.137586 -0.170353 -0.008585 -0.011847 -0.000471 + 10 H -3.554028 -3.137586 -0.170353 -0.008585 -0.011847 -0.000471 11 C -1.171862 5.343980 0.079187 -0.101518 -0.042746 0.006592 12 C 0.692644 7.177093 -0.056894 -0.014360 0.068825 -0.002759 - 13 H -3.050840 5.845524 0.260165 0.059531 -0.015218 -0.004056 + 13 H -3.050839 5.845524 0.260165 0.059531 -0.015218 -0.004057 14 H 0.401273 9.139987 0.058920 0.015066 -0.039549 -0.000966 - 15 H 2.798559 6.653447 -0.167012 0.038312 -0.006727 0.000271 - 16 C 1.085786 -5.370267 -0.057786 -0.002620 0.056784 0.017943 + 15 H 2.798559 6.653446 -0.167012 0.038312 -0.006727 0.000271 + 16 C 1.085785 -5.370267 -0.057786 -0.002620 0.056784 0.017943 17 C -0.707401 -7.243278 0.074716 -0.014217 -0.012570 -0.002032 18 H 3.056750 -5.873274 -0.630802 0.009933 -0.001035 -0.011746 19 H -0.303354 -9.322735 -0.146754 0.002739 -0.023917 -0.001759 - 20 H -2.681497 -6.642004 0.442035 -0.007233 0.012609 -0.000283 + 20 H -2.681496 -6.642003 0.442035 -0.007233 0.012609 -0.000283 @@ -1124,7 +1126,7 @@ Tot. energy (a.u.): 12 -382.267517 Target temp. (K) : 12 298.00 Current temp. (K) : 12 188.79 - Dipole (a.u.) : 12 -3.403388E-03 1.843854E-02 -1.068928E-02 + Dipole (a.u.) : 12 -3.403031E-03 1.843859E-02 -1.068935E-02 @@ -1137,19 +1139,19 @@ Caching 1-el integrals - Time after variat. SCF: 194.5 - Time prior to 1st pass: 194.5 + Time after variat. SCF: 151.6 + Time prior to 1st pass: 151.6 - Total DFT energy = -382.284393093428 - One electron energy = -1404.404504686431 - Coulomb energy = 632.169434153870 - Exchange-Corr. energy = -57.826598554103 - Nuclear repulsion energy = 447.777275993237 + Total DFT energy = -382.284392727635 + One electron energy = -1404.404514206570 + Coulomb energy = 632.169439299011 + Exchange-Corr. energy = -57.826598719084 + Nuclear repulsion energy = 447.777280899008 - Numeric. integr. density = 70.000003867365 + Numeric. integr. density = 70.000003866962 - Total iterative time = 9.0s + Total iterative time = 8.0s @@ -1158,26 +1160,26 @@ atom coordinates gradient x y z x y z - 1 C 0.571488 -2.680455 0.052369 0.018586 -0.047885 0.002379 - 2 C 2.538347 -0.815971 0.113620 0.002655 0.003425 0.019015 + 1 C 0.571489 -2.680455 0.052369 0.018586 -0.047885 0.002379 + 2 C 2.538347 -0.815970 0.113620 0.002655 0.003425 0.019015 3 C 2.003751 1.793351 -0.044744 0.003371 0.022312 -0.020204 4 C -0.520225 2.676955 0.025871 0.008373 0.027371 0.008005 - 5 C -2.525931 0.862213 -0.079426 -0.001712 -0.001446 -0.008109 - 6 C -1.985376 -1.730981 -0.086302 0.002349 0.010481 -0.004052 + 5 C -2.525931 0.862213 -0.079426 -0.001712 -0.001447 -0.008109 + 6 C -1.985376 -1.730981 -0.086302 0.002349 0.010482 -0.004052 7 H 4.534270 -1.398389 -0.058917 0.003722 0.002648 -0.007547 - 8 H 3.579140 3.090674 0.169796 -0.005767 -0.006800 0.005870 + 8 H 3.579140 3.090675 0.169795 -0.005767 -0.006800 0.005870 9 H -4.497078 1.592148 -0.010444 -0.009000 0.007792 0.003871 10 H -3.558686 -3.131334 -0.184429 -0.008845 -0.011545 -0.000536 11 C -1.170350 5.342578 0.085515 -0.098684 -0.044562 0.006986 12 C 0.691173 7.173180 -0.060944 -0.010985 0.060433 -0.003212 13 H -3.047883 5.842773 0.281655 0.059592 -0.015415 -0.004396 - 14 H 0.390403 9.146389 0.062886 0.013469 -0.033218 -0.000675 - 15 H 2.783698 6.645106 -0.183246 0.034702 -0.006709 0.000345 + 14 H 0.390404 9.146389 0.062886 0.013469 -0.033218 -0.000675 + 15 H 2.783698 6.645105 -0.183246 0.034702 -0.006709 0.000345 16 C 1.083421 -5.371449 -0.065081 -0.000226 0.056254 0.017419 17 C -0.706232 -7.244385 0.081284 -0.012267 -0.012280 -0.002359 18 H 3.037455 -5.871738 -0.664221 0.006441 -0.000091 -0.011038 - 19 H -0.304298 -9.319033 -0.158838 0.002285 -0.022768 -0.001868 - 20 H -2.679682 -6.656565 0.481879 -0.008058 0.012003 0.000106 + 19 H -0.304299 -9.319033 -0.158838 0.002285 -0.022768 -0.001868 + 20 H -2.679682 -6.656564 0.481879 -0.008058 0.012003 0.000106 @@ -1189,7 +1191,7 @@ Tot. energy (a.u.): 13 -382.267560 Target temp. (K) : 13 298.00 Current temp. (K) : 13 196.87 - Dipole (a.u.) : 13 -4.248842E-03 1.925115E-02 -1.119203E-02 + Dipole (a.u.) : 13 -4.248441E-03 1.925117E-02 -1.119210E-02 @@ -1202,19 +1204,19 @@ Caching 1-el integrals - Time after variat. SCF: 209.3 - Time prior to 1st pass: 209.3 + Time after variat. SCF: 162.5 + Time prior to 1st pass: 162.5 - Total DFT energy = -382.287631452883 - One electron energy = -1404.211372795903 - Coulomb energy = 632.074411549527 - Exchange-Corr. energy = -57.826050280707 - Nuclear repulsion energy = 447.675380074200 + Total DFT energy = -382.287631040780 + One electron energy = -1404.211382067331 + Coulomb energy = 632.074416558902 + Exchange-Corr. energy = -57.826050415596 + Nuclear repulsion energy = 447.675384883245 - Numeric. integr. density = 70.000000130737 + Numeric. integr. density = 70.000000131000 - Total iterative time = 8.4s + Total iterative time = 8.0s @@ -1223,26 +1225,26 @@ atom coordinates gradient x y z x y z - 1 C 0.572691 -2.684534 0.056104 0.019685 -0.051448 0.002733 - 2 C 2.541619 -0.812928 0.119354 0.003830 0.007042 0.019124 - 3 C 2.009138 1.791555 -0.044979 0.005280 0.016112 -0.020876 + 1 C 0.572692 -2.684534 0.056104 0.019685 -0.051448 0.002733 + 2 C 2.541619 -0.812927 0.119354 0.003829 0.007042 0.019124 + 3 C 2.009138 1.791554 -0.044979 0.005280 0.016112 -0.020876 4 C -0.523582 2.685139 0.026718 0.004169 0.035509 0.008435 - 5 C -2.527661 0.861710 -0.084367 -0.004633 -0.004711 -0.008376 - 6 C -1.986995 -1.728613 -0.092351 -0.001131 0.011593 -0.004426 - 7 H 4.536661 -1.399215 -0.049051 0.003588 0.002475 -0.007509 - 8 H 3.588407 3.098113 0.170805 -0.003039 -0.004064 0.006179 - 9 H -4.494389 1.591818 -0.018185 -0.007317 0.007443 0.003861 - 10 H -3.560335 -3.121154 -0.198323 -0.007725 -0.009862 -0.000521 - 11 C -1.166018 5.342449 0.091643 -0.081310 -0.047969 0.005827 + 5 C -2.527661 0.861709 -0.084367 -0.004633 -0.004712 -0.008376 + 6 C -1.986996 -1.728612 -0.092351 -0.001131 0.011593 -0.004426 + 7 H 4.536661 -1.399215 -0.049050 0.003588 0.002475 -0.007509 + 8 H 3.588406 3.098114 0.170805 -0.003040 -0.004064 0.006179 + 9 H -4.494388 1.591818 -0.018185 -0.007317 0.007443 0.003861 + 10 H -3.560334 -3.121155 -0.198323 -0.007725 -0.009862 -0.000521 + 11 C -1.166017 5.342449 0.091643 -0.081310 -0.047969 0.005827 12 C 0.690016 7.167541 -0.064903 -0.003478 0.042961 -0.004275 - 13 H -3.065199 5.845266 0.304642 0.046725 -0.012285 -0.003319 - 14 H 0.374951 9.164093 0.067082 0.010645 -0.020391 0.000089 - 15 H 2.757031 6.639047 -0.199598 0.026697 -0.005601 0.000703 + 13 H -3.065199 5.845266 0.304642 0.046724 -0.012285 -0.003319 + 14 H 0.374952 9.164093 0.067082 0.010645 -0.020391 0.000089 + 15 H 2.757031 6.639046 -0.199598 0.026697 -0.005601 0.000703 16 C 1.081063 -5.374238 -0.072873 0.003295 0.053534 0.016187 - 17 C -0.704713 -7.245142 0.087919 -0.010391 -0.013418 -0.002823 + 17 C -0.704713 -7.245141 0.087919 -0.010391 -0.013418 -0.002823 18 H 3.015969 -5.870171 -0.693886 0.001765 0.001224 -0.009721 19 H -0.306021 -9.307586 -0.170286 0.001271 -0.018945 -0.001637 - 20 H -2.675127 -6.675209 0.521688 -0.007924 0.010801 0.000345 + 20 H -2.675127 -6.675207 0.521688 -0.007924 0.010801 0.000345 @@ -1251,10 +1253,10 @@ Time elapsed (fs) : 8.466095 Kin. energy (a.u.): 14 0.019926 Pot. energy (a.u.): 14 -382.287631 - Tot. energy (a.u.): 14 -382.267706 + Tot. energy (a.u.): 14 -382.267705 Target temp. (K) : 14 298.00 Current temp. (K) : 14 233.04 - Dipole (a.u.) : 14 -5.866789E-03 2.034241E-02 -1.171346E-02 + Dipole (a.u.) : 14 -5.866789E-03 2.034242E-02 -1.171353E-02 @@ -1267,19 +1269,19 @@ Caching 1-el integrals - Time after variat. SCF: 223.4 - Time prior to 1st pass: 223.4 + Time after variat. SCF: 173.4 + Time prior to 1st pass: 173.4 - Total DFT energy = -382.291163628204 - One electron energy = -1404.052856614500 - Coulomb energy = 631.994545586448 - Exchange-Corr. energy = -57.826299728642 - Nuclear repulsion energy = 447.593447128490 + Total DFT energy = -382.291163197278 + One electron energy = -1404.052865995569 + Coulomb energy = 631.994550741301 + Exchange-Corr. energy = -57.826299858644 + Nuclear repulsion energy = 447.593451915634 - Numeric. integr. density = 69.999997249956 + Numeric. integr. density = 69.999997249800 - Total iterative time = 9.7s + Total iterative time = 9.5s @@ -1289,25 +1291,25 @@ atom coordinates gradient x y z x y z 1 C 0.573332 -2.687143 0.059761 0.020432 -0.053284 0.003143 - 2 C 2.544781 -0.810086 0.124542 0.005207 0.010388 0.018967 + 2 C 2.544781 -0.810086 0.124542 0.005207 0.010389 0.018967 3 C 2.014374 1.789298 -0.044617 0.006432 0.009426 -0.021385 4 C -0.527058 2.692308 0.027324 0.000048 0.042857 0.008781 5 C -2.529259 0.861341 -0.089068 -0.008512 -0.007232 -0.008524 6 C -1.988583 -1.726575 -0.098274 -0.005653 0.011261 -0.004863 7 H 4.537832 -1.400882 -0.036629 0.003063 0.002391 -0.007336 - 8 H 3.598708 3.106934 0.169713 0.000197 -0.000871 0.006460 + 8 H 3.598707 3.106935 0.169713 0.000197 -0.000871 0.006460 9 H -4.489210 1.588956 -0.027239 -0.004462 0.006527 0.003770 - 10 H -3.559355 -3.107619 -0.212039 -0.005368 -0.006958 -0.000416 + 10 H -3.559354 -3.107620 -0.212039 -0.005368 -0.006958 -0.000416 11 C -1.159362 5.343691 0.097605 -0.054390 -0.051560 0.003408 - 12 C 0.688958 7.160673 -0.068739 0.007503 0.020134 -0.005814 - 13 H -3.098412 5.851938 0.328757 0.025693 -0.007134 -0.001124 + 12 C 0.688958 7.160673 -0.068739 0.007502 0.020134 -0.005814 + 13 H -3.098411 5.851938 0.328757 0.025693 -0.007134 -0.001124 14 H 0.355878 9.188733 0.071247 0.007069 -0.004594 0.001137 - 15 H 2.721282 6.634894 -0.216188 0.014609 -0.003460 0.001413 + 15 H 2.721282 6.634893 -0.216188 0.014609 -0.003460 0.001413 16 C 1.078611 -5.378557 -0.081128 0.007392 0.048782 0.014377 17 C -0.702897 -7.245514 0.094634 -0.008626 -0.015738 -0.003423 18 H 2.993883 -5.869020 -0.720243 -0.003543 0.002753 -0.007928 19 H -0.308175 -9.289693 -0.181178 -0.000225 -0.012762 -0.001037 - 20 H -2.667876 -6.697527 0.561378 -0.006867 0.009074 0.000394 + 20 H -2.667875 -6.697526 0.561378 -0.006867 0.009074 0.000394 @@ -1315,11 +1317,11 @@ ------------------- Time elapsed (fs) : 9.070816 Kin. energy (a.u.): 15 0.023323 - Pot. energy (a.u.): 15 -382.291164 + Pot. energy (a.u.): 15 -382.291163 Tot. energy (a.u.): 15 -382.267840 Target temp. (K) : 15 298.00 Current temp. (K) : 15 272.77 - Dipole (a.u.) : 15 -7.272343E-03 2.049716E-02 -1.232907E-02 + Dipole (a.u.) : 15 -7.272258E-03 2.049710E-02 -1.232913E-02 @@ -1332,19 +1334,19 @@ Caching 1-el integrals - Time after variat. SCF: 238.9 - Time prior to 1st pass: 238.9 + Time after variat. SCF: 185.7 + Time prior to 1st pass: 185.7 - Total DFT energy = -382.292888890640 - One electron energy = -1403.947116809886 - Coulomb energy = 631.938410403886 - Exchange-Corr. energy = -57.828009623903 - Nuclear repulsion energy = 447.543827139263 + Total DFT energy = -382.292888459089 + One electron energy = -1403.947126135477 + Coulomb energy = 631.938415427404 + Exchange-Corr. energy = -57.828009745634 + Nuclear repulsion energy = 447.543831994617 - Numeric. integr. density = 69.999995458588 + Numeric. integr. density = 69.999995458281 - Total iterative time = 10.3s + Total iterative time = 9.5s @@ -1355,24 +1357,24 @@ x y z x y z 1 C 0.573389 -2.688230 0.063328 0.020811 -0.053419 0.003620 2 C 2.547795 -0.807541 0.129188 0.006729 0.013374 0.018555 - 3 C 2.019427 1.786772 -0.043645 0.007304 0.002852 -0.021651 - 4 C -0.530536 2.698252 0.027679 -0.003821 0.048969 0.009023 - 5 C -2.530613 0.861179 -0.093526 -0.012966 -0.009009 -0.008570 - 6 C -1.990009 -1.724859 -0.104058 -0.010847 0.009696 -0.005351 - 7 H 4.537961 -1.403363 -0.021712 0.002214 0.002386 -0.007036 - 8 H 3.608942 3.116051 0.166423 0.003391 0.002292 0.006627 + 3 C 2.019427 1.786771 -0.043645 0.007304 0.002851 -0.021651 + 4 C -0.530536 2.698253 0.027679 -0.003821 0.048969 0.009023 + 5 C -2.530613 0.861179 -0.093526 -0.012966 -0.009010 -0.008570 + 6 C -1.990009 -1.724859 -0.104058 -0.010847 0.009697 -0.005351 + 7 H 4.537960 -1.403363 -0.021712 0.002214 0.002386 -0.007036 + 8 H 3.608941 3.116053 0.166423 0.003391 0.002292 0.006627 9 H -4.482514 1.583874 -0.037576 -0.000817 0.005177 0.003619 - 10 H -3.556549 -3.091717 -0.225614 -0.002086 -0.003149 -0.000226 + 10 H -3.556548 -3.091718 -0.225614 -0.002086 -0.003150 -0.000226 11 C -1.151153 5.346406 0.103470 -0.024458 -0.053560 0.000384 12 C 0.687686 7.153231 -0.072410 0.020754 -0.004160 -0.007624 - 13 H -3.140365 5.861037 0.353255 0.002676 -0.001629 0.001551 + 13 H -3.140364 5.861038 0.353255 0.002676 -0.001629 0.001551 14 H 0.334400 9.214936 0.075026 0.003273 0.010732 0.002238 - 15 H 2.680564 6.631918 -0.233260 -0.000665 -0.000502 0.002501 - 16 C 1.075948 -5.384269 -0.089793 0.011272 0.042239 0.012215 + 15 H 2.680563 6.631917 -0.233260 -0.000665 -0.000502 0.002501 + 16 C 1.075948 -5.384269 -0.089793 0.011271 0.042239 0.012215 17 C -0.700834 -7.245438 0.101448 -0.006912 -0.018693 -0.004135 18 H 2.973002 -5.868807 -0.743904 -0.008759 0.004289 -0.005889 19 H -0.310253 -9.267459 -0.191717 -0.002068 -0.004821 -0.000094 - 20 H -2.658288 -6.722932 0.600935 -0.005026 0.006936 0.000243 + 20 H -2.658288 -6.722931 0.600935 -0.005026 0.006936 0.000243 @@ -1380,11 +1382,11 @@ ------------------- Time elapsed (fs) : 9.675537 Kin. energy (a.u.): 16 0.025010 - Pot. energy (a.u.): 16 -382.292889 + Pot. energy (a.u.): 16 -382.292888 Tot. energy (a.u.): 16 -382.267879 Target temp. (K) : 16 298.00 Current temp. (K) : 16 292.50 - Dipole (a.u.) : 16 -9.086939E-03 1.859295E-02 -1.311502E-02 + Dipole (a.u.) : 16 -9.086854E-03 1.859289E-02 -1.311508E-02 @@ -1397,19 +1399,19 @@ Caching 1-el integrals - Time after variat. SCF: 254.9 - Time prior to 1st pass: 254.9 + Time after variat. SCF: 198.1 + Time prior to 1st pass: 198.1 - Total DFT energy = -382.292130556561 - One electron energy = -1403.898196012957 - Coulomb energy = 631.907870364942 - Exchange-Corr. energy = -57.831340085306 - Nuclear repulsion energy = 447.529535176760 + Total DFT energy = -382.292130112564 + One electron energy = -1403.898205541204 + Coulomb energy = 631.907875438930 + Exchange-Corr. energy = -57.831340197616 + Nuclear repulsion energy = 447.529540187327 - Numeric. integr. density = 69.999994687325 + Numeric. integr. density = 69.999994687090 - Total iterative time = 10.2s + Total iterative time = 9.4s @@ -1420,24 +1422,24 @@ x y z x y z 1 C 0.572851 -2.687790 0.066791 0.020775 -0.051926 0.004168 2 C 2.550617 -0.805378 0.133304 0.008285 0.015887 0.017915 - 3 C 2.024271 1.784164 -0.042054 0.008307 -0.003042 -0.021621 - 4 C -0.533904 2.702798 0.027776 -0.007364 0.053450 0.009142 - 5 C -2.531597 0.861275 -0.097739 -0.017445 -0.010159 -0.008528 + 3 C 2.024271 1.784164 -0.042054 0.008307 -0.003043 -0.021621 + 4 C -0.533905 2.702798 0.027776 -0.007364 0.053450 0.009142 + 5 C -2.531597 0.861274 -0.097739 -0.017445 -0.010159 -0.008528 6 C -1.991125 -1.723420 -0.109689 -0.016174 0.007328 -0.005853 - 7 H 4.537336 -1.406655 -0.004401 0.001177 0.002436 -0.006628 - 8 H 3.618023 3.124389 0.160878 0.006084 0.005006 0.006616 + 7 H 4.537336 -1.406656 -0.004401 0.001177 0.002436 -0.006628 + 8 H 3.618022 3.124391 0.160878 0.006084 0.005006 0.006616 9 H -4.475540 1.577030 -0.049144 0.003113 0.003579 0.003429 - 10 H -3.553034 -3.074743 -0.239112 0.001649 0.001104 0.000025 - 11 C -1.142245 5.350651 0.109323 0.003536 -0.052735 -0.002626 + 10 H -3.553033 -3.074744 -0.239112 0.001649 0.001104 0.000025 + 11 C -1.142244 5.350651 0.109323 0.003536 -0.052735 -0.002626 12 C 0.685821 7.145908 -0.075863 0.034079 -0.026852 -0.009444 13 H -3.183228 5.870691 0.377225 -0.017708 0.003035 0.004101 14 H 0.311808 9.237489 0.078044 -0.000294 0.023242 0.003203 - 15 H 2.640071 6.629113 -0.251182 -0.017142 0.002782 0.003893 + 15 H 2.640071 6.629111 -0.251182 -0.017142 0.002782 0.003893 16 C 1.072963 -5.391189 -0.098808 0.014024 0.034263 0.010023 17 C -0.698574 -7.244827 0.108380 -0.005179 -0.021423 -0.004902 - 18 H 2.955100 -5.870052 -0.765560 -0.013033 0.005590 -0.003919 + 18 H 2.955100 -5.870052 -0.765561 -0.013033 0.005590 -0.003919 19 H -0.311627 -9.243585 -0.202224 -0.004047 0.003895 0.001089 - 20 H -2.646991 -6.750698 0.640409 -0.002643 0.004541 -0.000083 + 20 H -2.646991 -6.750696 0.640409 -0.002643 0.004541 -0.000083 @@ -1445,11 +1447,11 @@ ------------------- Time elapsed (fs) : 10.280258 Kin. energy (a.u.): 17 0.024314 - Pot. energy (a.u.): 17 -382.292131 + Pot. energy (a.u.): 17 -382.292130 Tot. energy (a.u.): 17 -382.267816 Target temp. (K) : 17 298.00 Current temp. (K) : 17 284.37 - Dipole (a.u.) : 17 -1.042336E-02 1.501242E-02 -1.412410E-02 + Dipole (a.u.) : 17 -1.042324E-02 1.501235E-02 -1.412413E-02 @@ -1462,19 +1464,19 @@ Caching 1-el integrals - Time after variat. SCF: 270.6 - Time prior to 1st pass: 270.6 + Time after variat. SCF: 210.4 + Time prior to 1st pass: 210.4 - Total DFT energy = -382.289799972023 - One electron energy = -1403.894729105861 - Coulomb energy = 631.898785748413 - Exchange-Corr. energy = -57.835793287329 - Nuclear repulsion energy = 447.541936672753 + Total DFT energy = -382.289799520944 + One electron energy = -1403.894739101318 + Coulomb energy = 631.898791175965 + Exchange-Corr. energy = -57.835793460939 + Nuclear repulsion energy = 447.541941865348 - Numeric. integr. density = 69.999994390453 + Numeric. integr. density = 69.999994390259 - Total iterative time = 9.9s + Total iterative time = 9.4s @@ -1484,25 +1486,25 @@ atom coordinates gradient x y z x y z 1 C 0.571719 -2.685867 0.070136 0.020290 -0.048947 0.004785 - 2 C 2.553202 -0.803669 0.136908 0.009733 0.017856 0.017076 + 2 C 2.553202 -0.803669 0.136908 0.009732 0.017856 0.017076 3 C 2.028877 1.781643 -0.039845 0.009742 -0.007797 -0.021264 4 C -0.537063 2.705816 0.027612 -0.010546 0.056005 0.009123 5 C -2.532083 0.861660 -0.101708 -0.021292 -0.010850 -0.008416 6 C -1.991779 -1.722191 -0.115153 -0.020944 0.004724 -0.006315 - 7 H 4.536311 -1.410777 0.015164 0.000115 0.002500 -0.006128 - 8 H 3.625033 3.131025 0.153083 0.007931 0.006956 0.006382 + 7 H 4.536311 -1.410777 0.015165 0.000115 0.002500 -0.006128 + 8 H 3.625032 3.131026 0.153083 0.007931 0.006956 0.006382 9 H -4.469624 1.568969 -0.061879 0.006709 0.001970 0.003221 - 10 H -3.550080 -3.058145 -0.252619 0.005210 0.005210 0.000295 - 11 C -1.133438 5.356403 0.115252 0.027077 -0.048612 -0.005234 + 10 H -3.550079 -3.058146 -0.252619 0.005210 0.005210 0.000295 + 11 C -1.133437 5.356403 0.115252 0.027077 -0.048612 -0.005234 12 C 0.682982 7.139351 -0.079045 0.044224 -0.045694 -0.010914 - 13 H -3.220067 5.879311 0.399800 -0.033239 0.006339 0.006154 + 13 H -3.220067 5.879312 0.399800 -0.033239 0.006339 0.006154 14 H 0.289316 9.252134 0.079972 -0.003313 0.031708 0.003912 - 15 H 2.605410 6.625362 -0.270428 -0.031647 0.005590 0.005343 + 15 H 2.605410 6.625360 -0.270428 -0.031647 0.005590 0.005343 16 C 1.069577 -5.399087 -0.108108 0.014786 0.025238 0.008146 17 C -0.696166 -7.243604 0.115451 -0.003336 -0.022743 -0.005613 - 18 H 2.941633 -5.873199 -0.785884 -0.015574 0.006432 -0.002345 - 19 H -0.311625 -9.221035 -0.213102 -0.005872 0.012046 0.002309 - 20 H -2.634795 -6.780008 0.679911 -0.000055 0.002069 -0.000516 + 18 H 2.941633 -5.873200 -0.785884 -0.015574 0.006432 -0.002345 + 19 H -0.311625 -9.221035 -0.213101 -0.005872 0.012046 0.002309 + 20 H -2.634795 -6.780007 0.679911 -0.000055 0.002069 -0.000516 @@ -1514,7 +1516,7 @@ Tot. energy (a.u.): 18 -382.267699 Target temp. (K) : 18 298.00 Current temp. (K) : 18 258.48 - Dipole (a.u.) : 18 -1.111073E-02 1.083369E-02 -1.536007E-02 + Dipole (a.u.) : 18 -1.111054E-02 1.083368E-02 -1.536010E-02 @@ -1527,19 +1529,19 @@ Caching 1-el integrals - Time after variat. SCF: 286.0 - Time prior to 1st pass: 286.0 + Time after variat. SCF: 222.7 + Time prior to 1st pass: 222.7 - Total DFT energy = -382.287668642998 - One electron energy = -1403.914756403520 - Coulomb energy = 631.902283652002 - Exchange-Corr. energy = -57.840448507259 - Nuclear repulsion energy = 447.565252615779 + Total DFT energy = -382.287668224899 + One electron energy = -1403.914766730525 + Coulomb energy = 631.902289273088 + Exchange-Corr. energy = -57.840448738941 + Nuclear repulsion energy = 447.565257971478 - Numeric. integr. density = 69.999994118284 + Numeric. integr. density = 69.999994118079 - Total iterative time = 8.5s + Total iterative time = 8.0s @@ -1550,24 +1552,24 @@ x y z x y z 1 C 0.570008 -2.682545 0.073343 0.019339 -0.044665 0.005467 2 C 2.555509 -0.802470 0.140024 0.010916 0.019256 0.016065 - 3 C 2.033205 1.779345 -0.037029 0.011775 -0.011088 -0.020578 - 4 C -0.539919 2.707234 0.027187 -0.013356 0.056468 0.008956 + 3 C 2.033205 1.779345 -0.037029 0.011775 -0.011089 -0.020578 + 4 C -0.539920 2.707235 0.027187 -0.013356 0.056468 0.008956 5 C -2.531960 0.862356 -0.105437 -0.023830 -0.011253 -0.008241 6 C -1.991835 -1.721096 -0.120436 -0.024402 0.002511 -0.006664 7 H 4.535247 -1.415748 0.036815 -0.000796 0.002531 -0.005554 - 8 H 3.629346 3.135293 0.143117 0.008719 0.007939 0.005914 - 9 H -4.465992 1.560237 -0.075710 0.009332 0.000589 0.003007 - 10 H -3.548898 -3.043319 -0.266226 0.007894 0.008530 0.000517 + 8 H 3.629345 3.135294 0.143117 0.008719 0.007939 0.005914 + 9 H -4.465991 1.560237 -0.075710 0.009332 0.000589 0.003007 + 10 H -3.548897 -3.043320 -0.266225 0.007894 0.008530 0.000517 11 C -1.125404 5.363544 0.121330 0.045320 -0.041301 -0.007256 12 C 0.678880 7.134101 -0.081916 0.047558 -0.059021 -0.011556 - 13 H -3.245599 5.885775 0.420281 -0.043348 0.008213 0.007548 + 13 H -3.245598 5.885776 0.420281 -0.043348 0.008213 0.007548 14 H 0.267951 9.255992 0.080569 -0.005573 0.035638 0.004301 - 15 H 2.581516 6.619708 -0.291493 -0.040499 0.006972 0.006421 - 16 C 1.065769 -5.407706 -0.117642 0.012972 0.015523 0.006857 + 15 H 2.581515 6.619707 -0.291492 -0.040499 0.006972 0.006421 + 16 C 1.065769 -5.407707 -0.117642 0.012972 0.015523 0.006857 17 C -0.693662 -7.241731 0.122683 -0.001288 -0.021349 -0.006117 - 18 H 2.933464 -5.878535 -0.805410 -0.015857 0.006664 -0.001419 - 19 H -0.309625 -9.202584 -0.224765 -0.007222 0.018141 0.003276 - 20 H -2.622580 -6.810022 0.719589 0.002347 -0.000299 -0.000946 + 18 H 2.933463 -5.878535 -0.805410 -0.015857 0.006664 -0.001419 + 19 H -0.309625 -9.202584 -0.224764 -0.007222 0.018141 0.003276 + 20 H -2.622580 -6.810021 0.719589 0.002347 -0.000299 -0.000946 @@ -1575,11 +1577,11 @@ ------------------- Time elapsed (fs) : 11.489701 Kin. energy (a.u.): 19 0.020070 - Pot. energy (a.u.): 19 -382.287669 + Pot. energy (a.u.): 19 -382.287668 Tot. energy (a.u.): 19 -382.267599 Target temp. (K) : 19 298.00 Current temp. (K) : 19 234.72 - Dipole (a.u.) : 19 -1.130397E-02 7.269512E-03 -1.680409E-02 + Dipole (a.u.) : 19 -1.130383E-02 7.269509E-03 -1.680412E-02 @@ -1592,19 +1594,19 @@ Caching 1-el integrals - Time after variat. SCF: 300.1 - Time prior to 1st pass: 300.1 + Time after variat. SCF: 233.5 + Time prior to 1st pass: 233.5 - Total DFT energy = -382.287270380763 - One electron energy = -1403.937444300894 - Coulomb energy = 631.910091779012 - Exchange-Corr. energy = -57.844492184593 - Nuclear repulsion energy = 447.584574325713 + Total DFT energy = -382.287269914390 + One electron energy = -1403.937455088290 + Coulomb energy = 631.910097832791 + Exchange-Corr. energy = -57.844492418750 + Nuclear repulsion energy = 447.584579759859 - Numeric. integr. density = 69.999994061498 + Numeric. integr. density = 69.999994061417 - Total iterative time = 8.6s + Total iterative time = 8.0s @@ -1613,26 +1615,26 @@ atom coordinates gradient x y z x y z - 1 C 0.567744 -2.677947 0.076395 0.017891 -0.039266 0.006204 + 1 C 0.567745 -2.677947 0.076395 0.017891 -0.039266 0.006204 2 C 2.557504 -0.801822 0.142681 0.011689 0.020025 0.014911 3 C 2.037197 1.777364 -0.033625 0.014456 -0.012726 -0.019597 - 4 C -0.542394 2.707039 0.026507 -0.015837 0.054839 0.008636 + 4 C -0.542395 2.707039 0.026507 -0.015837 0.054839 0.008636 5 C -2.531156 0.863373 -0.108931 -0.024522 -0.011543 -0.008001 - 6 C -1.991193 -1.720073 -0.125529 -0.025885 0.001233 -0.006822 + 6 C -1.991193 -1.720073 -0.125529 -0.025885 0.001234 -0.006822 7 H 4.534453 -1.421581 0.060355 -0.001394 0.002484 -0.004918 - 8 H 3.630692 3.136861 0.131138 0.008383 0.007883 0.005230 - 9 H -4.465534 1.551305 -0.090564 0.010471 -0.000374 0.002784 - 10 H -3.550401 -3.031395 -0.280008 0.009100 0.010537 0.000623 + 8 H 3.630691 3.136862 0.131138 0.008383 0.007883 0.005230 + 9 H -4.465533 1.551305 -0.090564 0.010471 -0.000374 0.002784 + 10 H -3.550400 -3.031396 -0.280008 0.009100 0.010537 0.000623 11 C -1.118665 5.371865 0.127616 0.058098 -0.031235 -0.008604 - 12 C 0.673419 7.130536 -0.084457 0.041641 -0.065710 -0.010891 + 12 C 0.673419 7.130536 -0.084457 0.041641 -0.065711 -0.010891 13 H -3.256383 5.889445 0.438194 -0.048160 0.008766 0.008228 14 H 0.248482 9.247726 0.079702 -0.006934 0.034866 0.004337 - 15 H 2.571399 6.611683 -0.314741 -0.041097 0.006234 0.006659 - 16 C 1.061590 -5.416769 -0.127372 0.008515 0.005472 0.006277 - 17 C -0.691122 -7.239249 0.130090 0.001030 -0.016267 -0.006269 + 15 H 2.571399 6.611682 -0.314741 -0.041097 0.006234 0.006659 + 16 C 1.061590 -5.416770 -0.127372 0.008515 0.005472 0.006277 + 17 C -0.691122 -7.239248 0.130090 0.001030 -0.016267 -0.006269 18 H 2.930689 -5.886137 -0.824453 -0.013799 0.006247 -0.001238 19 H -0.305168 -9.190305 -0.237542 -0.007812 0.020940 0.003685 - 20 H -2.611163 -6.839934 0.759589 0.004166 -0.002407 -0.001234 + 20 H -2.611163 -6.839933 0.759589 0.004166 -0.002407 -0.001234 @@ -1644,7 +1646,7 @@ Tot. energy (a.u.): 20 -382.267573 Target temp. (K) : 20 298.00 Current temp. (K) : 20 230.36 - Dipole (a.u.) : 20 -1.080031E-02 5.091995E-03 -1.840022E-02 + Dipole (a.u.) : 20 -1.080016E-02 5.091956E-03 -1.840020E-02 @@ -1657,19 +1659,19 @@ Caching 1-el integrals - Time after variat. SCF: 314.3 - Time prior to 1st pass: 314.3 + Time after variat. SCF: 244.4 + Time prior to 1st pass: 244.4 - Total DFT energy = -382.289006068233 - One electron energy = -1403.951077476061 - Coulomb energy = 631.916834020619 - Exchange-Corr. energy = -57.847540400999 - Nuclear repulsion energy = 447.592777788208 + Total DFT energy = -382.289005628340 + One electron energy = -1403.951087967024 + Coulomb energy = 631.916839772592 + Exchange-Corr. energy = -57.847540609004 + Nuclear repulsion energy = 447.592783175096 - Numeric. integr. density = 69.999994443464 + Numeric. integr. density = 69.999994443389 - Total iterative time = 8.5s + Total iterative time = 8.0s @@ -1678,26 +1680,26 @@ atom coordinates gradient x y z x y z - 1 C 0.564969 -2.672227 0.079269 0.015960 -0.032971 0.006986 - 2 C 2.559164 -0.801746 0.144913 0.011952 0.020188 0.013627 - 3 C 2.040776 1.775747 -0.029661 0.017689 -0.012686 -0.018366 - 4 C -0.544417 2.705277 0.025580 -0.017985 0.051227 0.008158 + 1 C 0.564970 -2.672228 0.079269 0.015960 -0.032972 0.006986 + 2 C 2.559165 -0.801745 0.144913 0.011952 0.020188 0.013627 + 3 C 2.040776 1.775747 -0.029661 0.017690 -0.012686 -0.018366 + 4 C -0.544418 2.705277 0.025580 -0.017985 0.051227 0.008158 5 C -2.529652 0.864720 -0.112196 -0.023086 -0.011739 -0.007677 6 C -1.989812 -1.719086 -0.130427 -0.025009 0.001171 -0.006730 7 H 4.534134 -1.428259 0.085568 -0.001571 0.002323 -0.004222 - 8 H 3.629187 3.135747 0.117381 0.006967 0.006807 0.004369 + 8 H 3.629186 3.135748 0.117381 0.006967 0.006807 0.004369 9 H -4.468638 1.542500 -0.106365 0.009857 -0.000830 0.002534 - 10 H -3.555000 -3.023056 -0.294003 0.008476 0.010938 0.000554 + 10 H -3.554999 -3.023057 -0.294003 0.008476 0.010938 0.000554 11 C -1.113587 5.381078 0.134147 0.065229 -0.019056 -0.009198 12 C 0.666768 7.128849 -0.086687 0.026709 -0.065316 -0.008682 13 H -3.250783 5.890133 0.453308 -0.047868 0.008124 0.008165 - 14 H 0.231371 9.227598 0.077361 -0.007298 0.029345 0.004002 - 15 H 2.575264 6.601538 -0.340255 -0.033379 0.003338 0.005787 - 16 C 1.057168 -5.425989 -0.137280 0.001869 -0.004643 0.006334 + 14 H 0.231372 9.227598 0.077361 -0.007298 0.029345 0.004002 + 15 H 2.575263 6.601536 -0.340255 -0.033379 0.003338 0.005787 + 16 C 1.057167 -5.425989 -0.137281 0.001869 -0.004643 0.006334 17 C -0.688611 -7.236301 0.137676 0.003687 -0.007254 -0.006005 - 18 H 2.932608 -5.895865 -0.843075 -0.009793 0.005267 -0.001713 - 19 H -0.298053 -9.185149 -0.251574 -0.007496 0.019920 0.003316 - 20 H -2.601164 -6.869028 0.800008 0.005090 -0.004153 -0.001240 + 18 H 2.932608 -5.895865 -0.843076 -0.009793 0.005267 -0.001713 + 19 H -0.298054 -9.185149 -0.251573 -0.007496 0.019920 0.003316 + 20 H -2.601164 -6.869027 0.800008 0.005089 -0.004153 -0.001240 @@ -1706,10 +1708,10 @@ Time elapsed (fs) : 12.699143 Kin. energy (a.u.): 21 0.021373 Pot. energy (a.u.): 21 -382.289006 - Tot. energy (a.u.): 21 -382.267633 + Tot. energy (a.u.): 21 -382.267632 Target temp. (K) : 21 298.00 Current temp. (K) : 21 249.97 - Dipole (a.u.) : 21 -1.031187E-02 4.268400E-03 -2.006234E-02 + Dipole (a.u.) : 21 -1.031174E-02 4.268278E-03 -2.006232E-02 @@ -1722,19 +1724,19 @@ Caching 1-el integrals - Time after variat. SCF: 328.4 - Time prior to 1st pass: 328.4 + Time after variat. SCF: 255.2 + Time prior to 1st pass: 255.2 - Total DFT energy = -382.291974492159 - One electron energy = -1403.957070355794 - Coulomb energy = 631.922470191981 - Exchange-Corr. energy = -57.849824415583 - Nuclear repulsion energy = 447.592450087237 + Total DFT energy = -382.291974095909 + One electron energy = -1403.957080190202 + Coulomb energy = 631.922475440949 + Exchange-Corr. energy = -57.849824606705 + Nuclear repulsion energy = 447.592455260049 - Numeric. integr. density = 69.999995174539 + Numeric. integr. density = 69.999995174498 - Total iterative time = 8.4s + Total iterative time = 8.0s @@ -1743,26 +1745,26 @@ atom coordinates gradient x y z x y z - 1 C 0.561738 -2.665566 0.081944 0.013572 -0.025985 0.007800 + 1 C 0.561739 -2.665566 0.081944 0.013572 -0.025985 0.007800 2 C 2.560484 -0.802246 0.146754 0.011669 0.019768 0.012223 3 C 2.043849 1.774492 -0.025172 0.021264 -0.011115 -0.016949 4 C -0.545926 2.702051 0.024419 -0.019788 0.045858 0.007523 - 5 C -2.527488 0.866403 -0.115241 -0.019603 -0.011763 -0.007245 + 5 C -2.527488 0.866402 -0.115241 -0.019603 -0.011763 -0.007245 6 C -1.987716 -1.718132 -0.135133 -0.021794 0.002274 -0.006364 7 H 4.534349 -1.435727 0.112217 -0.001285 0.002026 -0.003465 - 8 H 3.625311 3.132317 0.102137 0.004648 0.004849 0.003390 - 9 H -4.475096 1.533978 -0.123028 0.007564 -0.000816 0.002231 - 10 H -3.562483 -3.018438 -0.308186 0.006063 0.009775 0.000286 + 8 H 3.625310 3.132318 0.102137 0.004648 0.004849 0.003390 + 9 H -4.475096 1.533977 -0.123028 0.007564 -0.000816 0.002231 + 10 H -3.562482 -3.018439 -0.308185 0.006063 0.009775 0.000286 11 C -1.110372 5.390836 0.140941 0.066243 -0.005472 -0.008914 12 C 0.659354 7.129029 -0.088668 0.005664 -0.058131 -0.005081 - 13 H -3.228899 5.888057 0.465645 -0.042427 0.006350 0.007302 - 14 H 0.216744 9.197487 0.073657 -0.006611 0.019151 0.003299 - 15 H 2.590484 6.590256 -0.367738 -0.019864 -0.001060 0.003892 - 16 C 1.052692 -5.435075 -0.147370 -0.006053 -0.014545 0.006796 - 17 C -0.686205 -7.233146 0.145434 0.006688 0.004957 -0.005381 - 18 H 2.937860 -5.907384 -0.861115 -0.004586 0.003892 -0.002610 - 19 H -0.288388 -9.186770 -0.266733 -0.006316 0.015482 0.002124 - 20 H -2.592896 -6.896709 0.840850 0.004956 -0.005495 -0.000856 + 13 H -3.228899 5.888057 0.465645 -0.042426 0.006350 0.007302 + 14 H 0.216745 9.197487 0.073657 -0.006611 0.019151 0.003299 + 15 H 2.590484 6.590254 -0.367738 -0.019864 -0.001060 0.003892 + 16 C 1.052692 -5.435076 -0.147370 -0.006053 -0.014546 0.006796 + 17 C -0.686206 -7.233146 0.145434 0.006688 0.004957 -0.005381 + 18 H 2.937859 -5.907385 -0.861115 -0.004586 0.003892 -0.002610 + 19 H -0.288389 -9.186770 -0.266733 -0.006316 0.015482 0.002124 + 20 H -2.592896 -6.896707 0.840850 0.004956 -0.005495 -0.000856 @@ -1771,10 +1773,10 @@ Time elapsed (fs) : 13.303864 Kin. energy (a.u.): 22 0.024237 Pot. energy (a.u.): 22 -382.291974 - Tot. energy (a.u.): 22 -382.267738 + Tot. energy (a.u.): 22 -382.267737 Target temp. (K) : 22 298.00 Current temp. (K) : 22 283.46 - Dipole (a.u.) : 22 -1.026917E-02 4.187358E-03 -2.167392E-02 + Dipole (a.u.) : 22 -1.026916E-02 4.187276E-03 -2.167390E-02 @@ -1787,19 +1789,19 @@ Caching 1-el integrals - Time after variat. SCF: 342.2 - Time prior to 1st pass: 342.2 + Time after variat. SCF: 266.1 + Time prior to 1st pass: 266.1 - Total DFT energy = -382.294558725944 - One electron energy = -1403.964468514008 - Coulomb energy = 631.929747688656 - Exchange-Corr. energy = -57.851951020011 - Nuclear repulsion energy = 447.592113119419 + Total DFT energy = -382.294558312906 + One electron energy = -1403.964477633258 + Coulomb energy = 631.929752657886 + Exchange-Corr. energy = -57.851951203415 + Nuclear repulsion energy = 447.592117865881 - Numeric. integr. density = 69.999996077885 + Numeric. integr. density = 69.999996077810 - Total iterative time = 8.4s + Total iterative time = 8.0s @@ -1811,23 +1813,23 @@ 1 C 0.558120 -2.658161 0.084395 0.010776 -0.018510 0.008637 2 C 2.561470 -0.803311 0.148247 0.010879 0.018814 0.010706 3 C 2.046315 1.773554 -0.020198 0.024835 -0.008318 -0.015416 - 4 C -0.546869 2.697515 0.023044 -0.021203 0.039040 0.006733 - 5 C -2.524764 0.868421 -0.118079 -0.014493 -0.011429 -0.006684 + 4 C -0.546870 2.697515 0.023044 -0.021203 0.039040 0.006733 + 5 C -2.524764 0.868421 -0.118080 -0.014493 -0.011429 -0.006684 6 C -1.984998 -1.717243 -0.139657 -0.016663 0.004171 -0.005753 7 H 4.535002 -1.443885 0.140045 -0.000573 0.001599 -0.002642 - 8 H 3.619855 3.127238 0.085740 0.001727 0.002261 0.002359 + 8 H 3.619853 3.127239 0.085740 0.001727 0.002261 0.002359 9 H -4.484126 1.525732 -0.140451 0.003981 -0.000476 0.001851 - 10 H -3.572028 -3.017146 -0.322466 0.002274 0.007405 -0.000160 - 11 C -1.109050 5.400750 0.147990 0.060447 0.008799 -0.007590 + 10 H -3.572027 -3.017146 -0.322466 0.002274 0.007405 -0.000160 + 11 C -1.109049 5.400750 0.147990 0.060447 0.008799 -0.007590 12 C 0.651778 7.130869 -0.090505 -0.017379 -0.045165 -0.000580 13 H -3.192581 5.883820 0.475497 -0.031555 0.003451 0.005545 - 14 H 0.204366 9.160861 0.068832 -0.004900 0.004756 0.002263 - 15 H 2.612462 6.579335 -0.396545 -0.004218 -0.005964 0.001356 + 14 H 0.204367 9.160861 0.068832 -0.004900 0.004756 0.002263 + 15 H 2.612462 6.579333 -0.396545 -0.004218 -0.005964 0.001356 16 C 1.048389 -5.443747 -0.157654 -0.014106 -0.023924 0.007345 17 C -0.683991 -7.230133 0.153345 0.009908 0.018838 -0.004557 18 H 2.944671 -5.920228 -0.878266 0.000938 0.002327 -0.003629 - 19 H -0.276575 -9.193658 -0.282615 -0.004477 0.008777 0.000261 - 20 H -2.586315 -6.922520 0.881982 0.003802 -0.006451 -0.000044 + 19 H -0.276576 -9.193658 -0.282615 -0.004477 0.008777 0.000261 + 20 H -2.586315 -6.922519 0.881982 0.003802 -0.006451 -0.000044 @@ -1835,11 +1837,11 @@ ------------------- Time elapsed (fs) : 13.908585 Kin. energy (a.u.): 23 0.026725 - Pot. energy (a.u.): 23 -382.294559 + Pot. energy (a.u.): 23 -382.294558 Tot. energy (a.u.): 23 -382.267833 Target temp. (K) : 23 298.00 Current temp. (K) : 23 312.56 - Dipole (a.u.) : 23 -1.077767E-02 4.013102E-03 -2.315883E-02 + Dipole (a.u.) : 23 -1.077761E-02 4.012935E-03 -2.315880E-02 @@ -1852,19 +1854,19 @@ Caching 1-el integrals - Time after variat. SCF: 356.2 - Time prior to 1st pass: 356.2 + Time after variat. SCF: 276.9 + Time prior to 1st pass: 276.9 - Total DFT energy = -382.295295368509 - One electron energy = -1403.981266269612 - Coulomb energy = 631.941093546115 - Exchange-Corr. energy = -57.854474005864 - Nuclear repulsion energy = 447.599351360852 + Total DFT energy = -382.295294980469 + One electron energy = -1403.981273877935 + Coulomb energy = 631.941097621028 + Exchange-Corr. energy = -57.854474171311 + Nuclear repulsion energy = 447.599355447749 - Numeric. integr. density = 69.999997287191 + Numeric. integr. density = 69.999997287113 - Total iterative time = 8.5s + Total iterative time = 8.0s @@ -1878,21 +1880,21 @@ 3 C 2.048071 1.772854 -0.014785 0.027939 -0.004746 -0.013834 4 C -0.547207 2.691864 0.021476 -0.022162 0.031139 0.005797 5 C -2.521626 0.870766 -0.120727 -0.008411 -0.010517 -0.005987 - 6 C -1.981803 -1.716473 -0.144016 -0.010305 0.006302 -0.004963 + 6 C -1.981803 -1.716473 -0.144017 -0.010305 0.006302 -0.004963 7 H 4.535849 -1.452586 0.168772 0.000458 0.001066 -0.001752 - 8 H 3.613811 3.121390 0.068541 -0.001373 -0.000585 0.001342 + 8 H 3.613809 3.121391 0.068540 -0.001373 -0.000585 0.001342 9 H -4.494512 1.517649 -0.158502 -0.000290 -0.000015 0.001383 - 10 H -3.582347 -3.018372 -0.336692 -0.002226 0.004373 -0.000725 + 10 H -3.582346 -3.018373 -0.336692 -0.002226 0.004373 -0.000725 11 C -1.109454 5.410413 0.155256 0.047351 0.023089 -0.005080 - 12 C 0.644698 7.133999 -0.092324 -0.038679 -0.028273 0.004172 + 12 C 0.644699 7.133999 -0.092325 -0.038679 -0.028273 0.004172 13 H -3.145528 5.878410 0.483462 -0.015069 -0.000553 0.002809 - 14 H 0.193654 9.122617 0.063236 -0.002369 -0.012504 0.000999 - 15 H 2.635875 6.570443 -0.425813 0.010340 -0.010470 -0.001339 + 14 H 0.193655 9.122617 0.063236 -0.002369 -0.012504 0.000999 + 15 H 2.635875 6.570441 -0.425813 0.010340 -0.010470 -0.001339 16 C 1.044489 -5.451734 -0.168148 -0.021127 -0.032415 0.007648 17 C -0.682060 -7.227658 0.161387 0.013059 0.032532 -0.003716 - 18 H 2.951163 -5.933863 -0.894182 0.005952 0.000762 -0.004479 - 19 H -0.263238 -9.203532 -0.298586 -0.002275 0.001268 -0.001995 - 20 H -2.581026 -6.946137 0.923130 0.001853 -0.007077 0.001154 + 18 H 2.951163 -5.933864 -0.894182 0.005952 0.000762 -0.004479 + 19 H -0.263239 -9.203532 -0.298585 -0.002275 0.001268 -0.001995 + 20 H -2.581026 -6.946135 0.923130 0.001853 -0.007077 0.001154 @@ -1904,7 +1906,7 @@ Tot. energy (a.u.): 24 -382.267875 Target temp. (K) : 24 298.00 Current temp. (K) : 24 320.69 - Dipole (a.u.) : 24 -1.150403E-02 3.135111E-03 -2.452986E-02 + Dipole (a.u.) : 24 -1.150379E-02 3.134564E-03 -2.452985E-02 @@ -1917,19 +1919,19 @@ Caching 1-el integrals - Time after variat. SCF: 370.1 - Time prior to 1st pass: 370.1 + Time after variat. SCF: 287.7 + Time prior to 1st pass: 287.7 - Total DFT energy = -382.293593352650 - One electron energy = -1404.005316912490 - Coulomb energy = 631.954713470404 - Exchange-Corr. energy = -57.857506475594 - Nuclear repulsion energy = 447.614516565029 + Total DFT energy = -382.293592953574 + One electron energy = -1404.005322730848 + Coulomb energy = 631.954716659525 + Exchange-Corr. energy = -57.857506606753 + Nuclear repulsion energy = 447.614519724502 - Numeric. integr. density = 69.999998908030 + Numeric. integr. density = 69.999998907969 - Total iterative time = 8.2s + Total iterative time = 8.0s @@ -1938,26 +1940,26 @@ atom coordinates gradient x y z x y z - 1 C 0.550048 -2.641988 0.088534 0.004228 -0.002903 0.010328 - 2 C 2.562543 -0.807013 0.150361 0.008288 0.015515 0.007369 + 1 C 0.550049 -2.641988 0.088534 0.004228 -0.002903 0.010328 + 2 C 2.562544 -0.807013 0.150361 0.008288 0.015515 0.007369 3 C 2.049029 1.772290 -0.008976 0.030049 -0.000950 -0.012256 - 4 C -0.546911 2.685323 0.019743 -0.022585 0.022544 0.004730 - 5 C -2.518248 0.873412 -0.123203 -0.002101 -0.008840 -0.005166 + 4 C -0.546912 2.685323 0.019743 -0.022585 0.022544 0.004730 + 5 C -2.518248 0.873412 -0.123204 -0.002101 -0.008840 -0.005166 6 C -1.978314 -1.715883 -0.148234 -0.003512 0.008080 -0.004086 7 H 4.536541 -1.461650 0.198095 0.001649 0.000471 -0.000798 - 8 H 3.608234 3.115741 0.050884 -0.004149 -0.003234 0.000383 - 9 H -4.504798 1.509571 -0.177025 -0.004580 0.000361 0.000836 - 10 H -3.591909 -3.021086 -0.350671 -0.006702 0.001266 -0.001330 + 8 H 3.608233 3.115742 0.050884 -0.004149 -0.003234 0.000383 + 9 H -4.504798 1.509570 -0.177025 -0.004580 0.000361 0.000836 + 10 H -3.591908 -3.021087 -0.350671 -0.006702 0.001266 -0.001330 11 C -1.111212 5.419416 0.162666 0.027450 0.036752 -0.001385 - 12 C 0.638724 7.137938 -0.094263 -0.055554 -0.010506 0.008513 - 13 H -3.093349 5.873187 0.490472 0.006419 -0.005490 -0.000870 - 14 H 0.183749 9.088627 0.057301 0.000479 -0.029968 -0.000288 - 15 H 2.655770 6.565113 -0.454625 0.021763 -0.013979 -0.003780 - 16 C 1.041193 -5.458795 -0.178861 -0.026125 -0.039646 0.007418 - 17 C -0.680501 -7.226113 0.169534 0.015694 0.044312 -0.002977 + 12 C 0.638724 7.137938 -0.094264 -0.055554 -0.010505 0.008513 + 13 H -3.093348 5.873187 0.490472 0.006419 -0.005490 -0.000870 + 14 H 0.183750 9.088626 0.057301 0.000479 -0.029968 -0.000288 + 15 H 2.655770 6.565111 -0.454625 0.021763 -0.013979 -0.003780 + 16 C 1.041193 -5.458796 -0.178861 -0.026125 -0.039646 0.007418 + 17 C -0.680502 -7.226113 0.169534 0.015694 0.044312 -0.002977 18 H 2.955630 -5.947758 -0.908575 0.009814 -0.000648 -0.004938 - 19 H -0.249128 -9.213837 -0.313878 -0.000008 -0.005691 -0.004320 - 20 H -2.576368 -6.967346 0.963884 -0.000519 -0.007446 0.002617 + 19 H -0.249129 -9.213837 -0.313878 -0.000008 -0.005691 -0.004320 + 20 H -2.576369 -6.967345 0.963884 -0.000519 -0.007446 0.002617 @@ -1969,7 +1971,7 @@ Tot. energy (a.u.): 25 -382.267838 Target temp. (K) : 25 298.00 Current temp. (K) : 25 301.22 - Dipole (a.u.) : 25 -1.166804E-02 1.656184E-03 -2.589634E-02 + Dipole (a.u.) : 25 -1.166780E-02 1.655566E-03 -2.589633E-02 @@ -1982,19 +1984,19 @@ Caching 1-el integrals - Time after variat. SCF: 383.9 - Time prior to 1st pass: 383.9 + Time after variat. SCF: 298.5 + Time prior to 1st pass: 298.5 - Total DFT energy = -382.290124877890 - One electron energy = -1404.020342711016 - Coulomb energy = 631.962836890999 - Exchange-Corr. energy = -57.860561494814 - Nuclear repulsion energy = 447.627942436941 + Total DFT energy = -382.290124463504 + One electron energy = -1404.020346311966 + Coulomb energy = 631.962839044551 + Exchange-Corr. energy = -57.860561575213 + Nuclear repulsion energy = 447.627944379125 - Numeric. integr. density = 70.000000543847 + Numeric. integr. density = 70.000000543784 - Total iterative time = 8.2s + Total iterative time = 8.0s @@ -2004,25 +2006,25 @@ atom coordinates gradient x y z x y z 1 C 0.545783 -2.633664 0.090173 0.000635 0.004848 0.011164 - 2 C 2.562705 -0.809556 0.151077 0.006855 0.013312 0.005590 - 3 C 2.049129 1.771753 -0.002817 0.030651 0.002511 -0.010707 + 2 C 2.562705 -0.809556 0.151077 0.006855 0.013311 0.005590 + 3 C 2.049128 1.771753 -0.002817 0.030651 0.002511 -0.010707 4 C -0.545971 2.678137 0.017875 -0.022400 0.013659 0.003557 - 5 C -2.514809 0.876310 -0.125532 0.003732 -0.006289 -0.004251 + 5 C -2.514809 0.876310 -0.125532 0.003732 -0.006288 -0.004251 6 C -1.974725 -1.715524 -0.152335 0.002986 0.009025 -0.003223 7 H 4.536671 -1.470874 0.227689 0.002814 -0.000132 0.000204 - 8 H 3.604068 3.111192 0.033098 -0.006099 -0.005226 -0.000499 - 9 H -4.513527 1.501369 -0.195832 -0.008276 0.000482 0.000236 - 10 H -3.599191 -3.024231 -0.364198 -0.010505 -0.001407 -0.001888 + 8 H 3.604067 3.111193 0.033098 -0.006099 -0.005226 -0.000499 + 9 H -4.513527 1.501369 -0.195831 -0.008276 0.000482 0.000236 + 10 H -3.599190 -3.024232 -0.364197 -0.010505 -0.001407 -0.001888 11 C -1.113754 5.427369 0.170117 0.003301 0.048970 0.003146 - 12 C 0.634337 7.142177 -0.096446 -0.066256 0.003918 0.011843 - 13 H -3.043353 5.869832 0.497779 0.030453 -0.010813 -0.005147 - 14 H 0.173680 9.064831 0.051464 0.002807 -0.043733 -0.001306 - 15 H 2.668262 6.564538 -0.482152 0.029070 -0.016178 -0.005671 + 12 C 0.634337 7.142176 -0.096446 -0.066256 0.003918 0.011843 + 13 H -3.043353 5.869833 0.497779 0.030454 -0.010813 -0.005147 + 14 H 0.173681 9.064831 0.051464 0.002807 -0.043733 -0.001306 + 15 H 2.668262 6.564537 -0.482152 0.029070 -0.016179 -0.005671 16 C 1.038644 -5.464724 -0.189785 -0.028371 -0.045292 0.006438 17 C -0.679392 -7.225833 0.177767 0.017307 0.052863 -0.002365 18 H 2.956759 -5.961432 -0.921288 0.012108 -0.001792 -0.004863 - 19 H -0.235014 -9.222207 -0.327701 0.002075 -0.011099 -0.006426 - 20 H -2.571534 -6.986022 1.003749 -0.002890 -0.007627 0.004169 + 19 H -0.235015 -9.222207 -0.327700 0.002075 -0.011099 -0.006426 + 20 H -2.571534 -6.986021 1.003749 -0.002890 -0.007627 0.004169 @@ -2030,11 +2032,11 @@ ------------------- Time elapsed (fs) : 15.722748 Kin. energy (a.u.): 26 0.022398 - Pot. energy (a.u.): 26 -382.290125 - Tot. energy (a.u.): 26 -382.267727 + Pot. energy (a.u.): 26 -382.290124 + Tot. energy (a.u.): 26 -382.267726 Target temp. (K) : 26 298.00 Current temp. (K) : 26 261.96 - Dipole (a.u.) : 26 -1.067251E-02 2.673692E-04 -2.739283E-02 + Dipole (a.u.) : 26 -1.067228E-02 2.667558E-04 -2.739282E-02 @@ -2047,19 +2049,19 @@ Caching 1-el integrals - Time after variat. SCF: 397.5 - Time prior to 1st pass: 397.5 + Time after variat. SCF: 309.3 + Time prior to 1st pass: 309.3 - Total DFT energy = -382.286692924823 - One electron energy = -1404.000240874926 - Coulomb energy = 631.953762418785 - Exchange-Corr. energy = -57.862726854160 - Nuclear repulsion energy = 447.622512385479 + Total DFT energy = -382.286692504457 + One electron energy = -1404.000241811000 + Coulomb energy = 631.953763299643 + Exchange-Corr. energy = -57.862726862751 + Nuclear repulsion energy = 447.622512869650 - Numeric. integr. density = 70.000001850936 + Numeric. integr. density = 70.000001850799 - Total iterative time = 8.3s + Total iterative time = 8.0s @@ -2069,25 +2071,25 @@ atom coordinates gradient x y z x y z 1 C 0.541499 -2.625480 0.091493 -0.003043 0.012323 0.011983 - 2 C 2.562670 -0.812479 0.151634 0.005591 0.010845 0.003778 + 2 C 2.562671 -0.812478 0.151634 0.005591 0.010845 0.003778 3 C 2.048352 1.771144 0.003648 0.029369 0.005178 -0.009182 4 C -0.544390 2.670562 0.015905 -0.021563 0.004876 0.002310 5 C -2.511477 0.879388 -0.127740 0.008510 -0.002858 -0.003287 6 C -1.971221 -1.715423 -0.156344 0.008602 0.008822 -0.002460 - 7 H 4.535844 -1.480053 0.257214 0.003772 -0.000685 0.001229 - 8 H 3.601977 3.108421 0.015481 -0.006837 -0.006197 -0.001321 - 9 H -4.519440 1.493004 -0.214719 -0.010900 0.000244 -0.000378 - 10 H -3.602899 -3.026897 -0.377082 -0.013147 -0.003278 -0.002326 - 11 C -1.116391 5.433923 0.177477 -0.019755 0.058572 0.007644 + 7 H 4.535845 -1.480053 0.257215 0.003772 -0.000685 0.001229 + 8 H 3.601976 3.108422 0.015481 -0.006837 -0.006197 -0.001321 + 9 H -4.519440 1.493004 -0.214718 -0.010900 0.000244 -0.000378 + 10 H -3.602898 -3.026898 -0.377082 -0.013147 -0.003278 -0.002326 + 11 C -1.116390 5.433923 0.177477 -0.019755 0.058572 0.007644 12 C 0.631843 7.146303 -0.098966 -0.069720 0.010776 0.013697 - 13 H -3.003718 5.870156 0.506836 0.051971 -0.015429 -0.009186 - 14 H 0.162657 9.055914 0.046071 0.003677 -0.049868 -0.001777 - 15 H 2.670864 6.569468 -0.507750 0.031907 -0.016950 -0.006811 + 13 H -3.003717 5.870157 0.506836 0.051971 -0.015429 -0.009186 + 14 H 0.162658 9.055914 0.046071 0.003677 -0.049868 -0.001777 + 15 H 2.670864 6.569466 -0.507749 0.031907 -0.016950 -0.006811 16 C 1.036905 -5.469359 -0.200893 -0.027451 -0.049120 0.004575 - 17 C -0.678776 -7.227065 0.186067 0.017463 0.057367 -0.001831 - 18 H 2.953768 -5.974496 -0.932347 0.012626 -0.002601 -0.004186 - 19 H -0.221607 -9.226800 -0.339337 0.003791 -0.014350 -0.008092 - 20 H -2.565717 -7.002103 1.042195 -0.004864 -0.007669 0.005621 + 17 C -0.678776 -7.227064 0.186067 0.017463 0.057367 -0.001831 + 18 H 2.953768 -5.974497 -0.932347 0.012626 -0.002601 -0.004186 + 19 H -0.221608 -9.226800 -0.339336 0.003791 -0.014350 -0.008092 + 20 H -2.565717 -7.002102 1.042195 -0.004864 -0.007669 0.005621 @@ -2099,7 +2101,7 @@ Tot. energy (a.u.): 27 -382.267596 Target temp. (K) : 27 298.00 Current temp. (K) : 27 223.34 - Dipole (a.u.) : 27 -8.739261E-03 -1.599924E-04 -2.905767E-02 + Dipole (a.u.) : 27 -8.739021E-03 -1.606352E-04 -2.905765E-02 @@ -2112,19 +2114,19 @@ Caching 1-el integrals - Time after variat. SCF: 411.3 - Time prior to 1st pass: 411.3 + Time after variat. SCF: 320.1 + Time prior to 1st pass: 320.1 - Total DFT energy = -382.285318449067 - One electron energy = -1403.920442943437 - Coulomb energy = 631.916670300049 - Exchange-Corr. energy = -57.863130774663 - Nuclear repulsion energy = 447.581584968984 + Total DFT energy = -382.285318130288 + One electron energy = -1403.920441011028 + Coulomb energy = 631.916669786676 + Exchange-Corr. energy = -57.863130757865 + Nuclear repulsion energy = 447.581583851928 - Numeric. integr. density = 70.000003090688 + Numeric. integr. density = 70.000003090529 - Total iterative time = 8.2s + Total iterative time = 8.0s @@ -2133,26 +2135,26 @@ atom coordinates gradient x y z x y z - 1 C 0.537302 -2.617647 0.092471 -0.006702 0.019355 0.012779 + 1 C 0.537303 -2.617647 0.092471 -0.006702 0.019355 0.012779 2 C 2.562476 -0.815711 0.152083 0.004656 0.008198 0.001976 - 3 C 2.046737 1.770387 0.010375 0.026084 0.006799 -0.007655 + 3 C 2.046736 1.770388 0.010376 0.026084 0.006799 -0.007655 4 C -0.542193 2.662847 0.013868 -0.020075 -0.003455 0.001025 5 C -2.508389 0.882547 -0.129853 0.011823 0.001351 -0.002329 - 6 C -1.967963 -1.715574 -0.160283 0.012918 0.007331 -0.001868 - 7 H 4.533735 -1.489000 0.286321 0.004366 -0.001137 0.002246 - 8 H 3.602212 3.107759 -0.001686 -0.006200 -0.005984 -0.002121 - 9 H -4.521645 1.484556 -0.233477 -0.012136 -0.000395 -0.000959 - 10 H -3.602135 -3.028448 -0.389175 -0.014324 -0.004119 -0.002586 - 11 C -1.118462 5.438803 0.184619 -0.034759 0.064114 0.010855 - 12 C 0.631341 7.150122 -0.101878 -0.065571 0.007864 0.013828 + 6 C -1.967962 -1.715574 -0.160283 0.012918 0.007331 -0.001868 + 7 H 4.533735 -1.488999 0.286321 0.004366 -0.001137 0.002246 + 8 H 3.602212 3.107760 -0.001686 -0.006200 -0.005984 -0.002121 + 9 H -4.521645 1.484555 -0.233477 -0.012136 -0.000395 -0.000959 + 10 H -3.602134 -3.028449 -0.389174 -0.014324 -0.004119 -0.002586 + 11 C -1.118462 5.438803 0.184619 -0.034760 0.064114 0.010855 + 12 C 0.631342 7.150122 -0.101878 -0.065571 0.007864 0.013828 13 H -2.981763 5.875729 0.519018 0.064346 -0.017871 -0.011776 - 14 H 0.150382 9.063962 0.041282 0.002525 -0.046404 -0.001584 - 15 H 2.662611 6.580163 -0.531030 0.030204 -0.016283 -0.007051 + 14 H 0.150383 9.063962 0.041282 0.002525 -0.046404 -0.001584 + 15 H 2.662611 6.580162 -0.531030 0.030204 -0.016283 -0.007051 16 C 1.035950 -5.472590 -0.212132 -0.023298 -0.051030 0.001789 - 17 C -0.678660 -7.229935 0.194420 0.015904 0.057469 -0.001292 + 17 C -0.678660 -7.229934 0.194420 0.015904 0.057469 -0.001292 18 H 2.946482 -5.986676 -0.941981 0.011360 -0.003040 -0.002912 - 19 H -0.209489 -9.226511 -0.348220 0.005014 -0.015159 -0.009163 - 20 H -2.558245 -7.015575 1.078729 -0.006135 -0.007606 0.006799 + 19 H -0.209490 -9.226511 -0.348219 0.005014 -0.015159 -0.009163 + 20 H -2.558245 -7.015574 1.078729 -0.006135 -0.007606 0.006799 @@ -2164,7 +2166,7 @@ Tot. energy (a.u.): 28 -382.267543 Target temp. (K) : 28 298.00 Current temp. (K) : 28 207.89 - Dipole (a.u.) : 28 -6.844032E-03 7.517071E-04 -3.079770E-02 + Dipole (a.u.) : 28 -6.843406E-03 7.509542E-04 -3.079767E-02 @@ -2177,19 +2179,19 @@ Caching 1-el integrals - Time after variat. SCF: 424.9 - Time prior to 1st pass: 424.9 + Time after variat. SCF: 330.9 + Time prior to 1st pass: 330.9 - Total DFT energy = -382.286803767160 - One electron energy = -1403.770660900103 - Coulomb energy = 631.846706604468 - Exchange-Corr. energy = -57.861439928256 - Nuclear repulsion energy = 447.498590456730 + Total DFT energy = -382.286803410007 + One electron energy = -1403.770656028229 + Coulomb energy = 631.846704716898 + Exchange-Corr. energy = -57.861439843006 + Nuclear repulsion energy = 447.498587744330 - Numeric. integr. density = 70.000003769315 + Numeric. integr. density = 70.000003769414 - Total iterative time = 8.2s + Total iterative time = 8.0s @@ -2200,24 +2202,24 @@ x y z x y z 1 C 0.533297 -2.610367 0.093083 -0.010236 0.025784 0.013543 2 C 2.562149 -0.819178 0.152476 0.004164 0.005455 0.000229 - 3 C 2.044376 1.769436 0.017322 0.020992 0.007371 -0.006097 - 4 C -0.539422 2.655231 0.011803 -0.017983 -0.011057 -0.000259 + 3 C 2.044375 1.769437 0.017322 0.020991 0.007372 -0.006097 + 4 C -0.539423 2.655231 0.011803 -0.017982 -0.011058 -0.000259 5 C -2.505638 0.885668 -0.131900 0.013440 0.006141 -0.001430 - 6 C -1.965074 -1.715934 -0.164168 0.015675 0.004578 -0.001497 + 6 C -1.965073 -1.715934 -0.164168 0.015675 0.004578 -0.001497 7 H 4.530139 -1.497559 0.314664 0.004495 -0.001451 0.003217 - 8 H 3.604557 3.109132 -0.018132 -0.004299 -0.004665 -0.002945 - 9 H -4.519721 1.476242 -0.251909 -0.011835 -0.001424 -0.001461 - 10 H -3.596497 -3.028598 -0.400388 -0.013897 -0.003834 -0.002628 - 11 C -1.119541 5.441851 0.191451 -0.036774 0.064513 0.011755 + 8 H 3.604556 3.109133 -0.018132 -0.004299 -0.004665 -0.002945 + 9 H -4.519721 1.476241 -0.251909 -0.011835 -0.001424 -0.001461 + 10 H -3.596496 -3.028599 -0.400388 -0.013897 -0.003834 -0.002628 + 11 C -1.119541 5.441852 0.191451 -0.036774 0.064513 0.011755 12 C 0.632713 7.153716 -0.105185 -0.054218 -0.003711 0.012244 - 13 H -2.981699 5.887381 0.535207 0.062879 -0.017013 -0.011923 - 14 H 0.137248 9.087796 0.037033 -0.000476 -0.034542 -0.000846 - 15 H 2.644083 6.596399 -0.551911 0.024021 -0.014240 -0.006271 - 16 C 1.035661 -5.474363 -0.223422 -0.016205 -0.051066 -0.001851 + 13 H -2.981699 5.887382 0.535207 0.062879 -0.017013 -0.011923 + 14 H 0.137250 9.087796 0.037032 -0.000476 -0.034542 -0.000846 + 15 H 2.644083 6.596397 -0.551911 0.024021 -0.014240 -0.006271 + 16 C 1.035661 -5.474363 -0.223423 -0.016205 -0.051066 -0.001851 17 C -0.678998 -7.234447 0.202809 0.012615 0.053212 -0.000686 - 18 H 2.935331 -5.997821 -0.950625 0.008489 -0.003116 -0.001113 - 19 H -0.199077 -9.221066 -0.353986 0.005666 -0.013477 -0.009548 - 20 H -2.548685 -7.026460 1.112951 -0.006513 -0.007458 0.007567 + 18 H 2.935331 -5.997822 -0.950625 0.008489 -0.003116 -0.001113 + 19 H -0.199078 -9.221066 -0.353985 0.005666 -0.013477 -0.009548 + 20 H -2.548686 -7.026459 1.112951 -0.006513 -0.007458 0.007567 @@ -2225,11 +2227,11 @@ ------------------- Time elapsed (fs) : 17.536911 Kin. energy (a.u.): 29 0.019182 - Pot. energy (a.u.): 29 -382.286804 + Pot. energy (a.u.): 29 -382.286803 Tot. energy (a.u.): 29 -382.267621 Target temp. (K) : 29 298.00 Current temp. (K) : 29 224.34 - Dipole (a.u.) : 29 -5.869104E-03 2.491629E-03 -3.247284E-02 + Dipole (a.u.) : 29 -5.868959E-03 2.490954E-03 -3.247281E-02 @@ -2242,19 +2244,19 @@ Caching 1-el integrals - Time after variat. SCF: 438.5 - Time prior to 1st pass: 438.5 + Time after variat. SCF: 341.7 + Time prior to 1st pass: 341.7 - Total DFT energy = -382.289951003063 - One electron energy = -1403.560530540379 - Coulomb energy = 631.747318937318 - Exchange-Corr. energy = -57.858096836411 - Nuclear repulsion energy = 447.381357436409 + Total DFT energy = -382.289950640583 + One electron energy = -1403.560523212645 + Coulomb energy = 631.747315907874 + Exchange-Corr. energy = -57.858096671573 + Nuclear repulsion energy = 447.381353335762 - Numeric. integr. density = 70.000002966128 + Numeric. integr. density = 70.000002966310 - Total iterative time = 8.3s + Total iterative time = 8.0s @@ -2263,26 +2265,26 @@ atom coordinates gradient x y z x y z - 1 C 0.529584 -2.603824 0.093309 -0.013527 0.031464 0.014271 + 1 C 0.529585 -2.603824 0.093309 -0.013527 0.031464 0.014271 2 C 2.561703 -0.822801 0.152862 0.004160 0.002711 -0.001418 3 C 2.041415 1.768275 0.024442 0.014553 0.007106 -0.004495 - 4 C -0.536138 2.647931 0.009745 -0.015339 -0.017742 -0.001510 - 5 C -2.503271 0.888614 -0.133906 0.013336 0.011260 -0.000638 + 4 C -0.536138 2.647931 0.009745 -0.015339 -0.017743 -0.001510 + 5 C -2.503271 0.888613 -0.133906 0.013336 0.011261 -0.000638 6 C -1.962632 -1.716425 -0.168011 0.016778 0.000727 -0.001372 - 7 H 4.525014 -1.505625 0.341913 0.004113 -0.001610 0.004109 - 8 H 3.608364 3.112092 -0.033576 -0.001496 -0.002539 -0.003818 - 9 H -4.513771 1.468412 -0.269844 -0.010027 -0.002783 -0.001848 - 10 H -3.586132 -3.027444 -0.410707 -0.011899 -0.002455 -0.002438 - 11 C -1.119569 5.443057 0.197947 -0.026311 0.059792 0.010242 + 7 H 4.525015 -1.505624 0.341913 0.004113 -0.001610 0.004109 + 8 H 3.608363 3.112093 -0.033576 -0.001496 -0.002539 -0.003818 + 9 H -4.513771 1.468411 -0.269844 -0.010027 -0.002783 -0.001848 + 10 H -3.586131 -3.027445 -0.410707 -0.011899 -0.002455 -0.002438 + 11 C -1.119569 5.443057 0.197948 -0.026311 0.059792 0.010242 12 C 0.635634 7.157416 -0.108842 -0.036794 -0.020242 0.009141 - 13 H -3.003026 5.904821 0.555452 0.048159 -0.012855 -0.009525 - 14 H 0.124277 9.123381 0.033071 -0.004509 -0.017894 0.000152 - 15 H 2.617383 6.617478 -0.570659 0.013645 -0.010967 -0.004399 + 13 H -3.003026 5.904822 0.555452 0.048158 -0.012855 -0.009525 + 14 H 0.124278 9.123382 0.033070 -0.004509 -0.017894 0.000152 + 15 H 2.617383 6.617477 -0.570659 0.013645 -0.010967 -0.004399 16 C 1.035835 -5.474677 -0.234660 -0.006820 -0.049365 -0.006160 - 17 C -0.679696 -7.240479 0.211219 0.007815 0.044977 0.000010 - 18 H 2.921292 -6.007906 -0.958890 0.004400 -0.002889 0.001063 - 19 H -0.190593 -9.211035 -0.356504 0.005711 -0.009464 -0.009215 - 20 H -2.536911 -7.034807 1.144597 -0.005947 -0.007233 0.007850 + 17 C -0.679697 -7.240479 0.211219 0.007815 0.044977 0.000010 + 18 H 2.921292 -6.007907 -0.958890 0.004400 -0.002889 0.001063 + 19 H -0.190594 -9.211035 -0.356503 0.005711 -0.009464 -0.009215 + 20 H -2.536911 -7.034806 1.144598 -0.005947 -0.007233 0.007850 @@ -2291,10 +2293,10 @@ Time elapsed (fs) : 18.141632 Kin. energy (a.u.): 30 0.022176 Pot. energy (a.u.): 30 -382.289951 - Tot. energy (a.u.): 30 -382.267775 + Tot. energy (a.u.): 30 -382.267774 Target temp. (K) : 30 298.00 Current temp. (K) : 30 259.36 - Dipole (a.u.) : 30 -6.321311E-03 3.476269E-03 -3.403590E-02 + Dipole (a.u.) : 30 -6.321125E-03 3.475646E-03 -3.403586E-02 @@ -2307,19 +2309,19 @@ Caching 1-el integrals - Time after variat. SCF: 452.1 - Time prior to 1st pass: 452.1 + Time after variat. SCF: 352.6 + Time prior to 1st pass: 352.6 - Total DFT energy = -382.292422958450 - One electron energy = -1403.313868396418 - Coulomb energy = 631.628581835999 - Exchange-Corr. energy = -57.853994245950 - Nuclear repulsion energy = 447.246857847920 + Total DFT energy = -382.292422583279 + One electron energy = -1403.313859221088 + Coulomb energy = 631.628577971048 + Exchange-Corr. energy = -57.853994037781 + Nuclear repulsion energy = 447.246852704541 - Numeric. integr. density = 70.000000190882 + Numeric. integr. density = 70.000000191123 - Total iterative time = 8.2s + Total iterative time = 8.0s @@ -2330,24 +2332,24 @@ x y z x y z 1 C 0.526258 -2.598180 0.093127 -0.016473 0.036267 0.014950 2 C 2.561138 -0.826501 0.153288 0.004624 0.000053 -0.002930 - 3 C 2.038039 1.766910 0.031691 0.007411 0.006349 -0.002867 - 4 C -0.532415 2.641137 0.007730 -0.012235 -0.023414 -0.002708 - 5 C -2.501285 0.891237 -0.135894 0.011680 0.016386 0.000012 - 6 C -1.960670 -1.716937 -0.171814 0.016302 -0.003914 -0.001489 - 7 H 4.518490 -1.513143 0.367763 0.003248 -0.001620 0.004895 - 8 H 3.612680 3.115916 -0.047720 0.001706 -0.000025 -0.004741 - 9 H -4.504410 1.461529 -0.287151 -0.006907 -0.004372 -0.002095 - 10 H -3.571718 -3.025454 -0.420197 -0.008517 -0.000129 -0.002024 - 11 C -1.118846 5.442553 0.204151 -0.008862 0.051142 0.007197 + 3 C 2.038038 1.766910 0.031691 0.007411 0.006349 -0.002867 + 4 C -0.532416 2.641137 0.007730 -0.012235 -0.023414 -0.002708 + 5 C -2.501285 0.891237 -0.135894 0.011680 0.016387 0.000012 + 6 C -1.960670 -1.716937 -0.171814 0.016302 -0.003914 -0.001490 + 7 H 4.518491 -1.513142 0.367763 0.003248 -0.001620 0.004895 + 8 H 3.612679 3.115917 -0.047720 0.001706 -0.000025 -0.004741 + 9 H -4.504410 1.461528 -0.287151 -0.006907 -0.004372 -0.002095 + 10 H -3.571717 -3.025455 -0.420197 -0.008517 -0.000129 -0.002024 + 11 C -1.118846 5.442554 0.204151 -0.008862 0.051142 0.007197 12 C 0.639606 7.161695 -0.112760 -0.015050 -0.037344 0.004844 - 13 H -3.040737 5.926635 0.578937 0.025616 -0.006539 -0.005437 - 14 H 0.112839 9.165055 0.029057 -0.008575 -0.000523 0.001115 - 15 H 2.586041 6.642289 -0.587911 -0.000104 -0.006763 -0.001498 + 13 H -3.040737 5.926635 0.578937 0.025615 -0.006539 -0.005437 + 14 H 0.112841 9.165055 0.029057 -0.008575 -0.000523 0.001115 + 15 H 2.586041 6.642287 -0.587911 -0.000104 -0.006763 -0.001497 16 C 1.036204 -5.473581 -0.245721 0.003872 -0.046129 -0.010825 17 C -0.680618 -7.247797 0.219627 0.001908 0.033480 0.000789 - 18 H 2.905757 -6.017009 -0.967516 -0.000311 -0.002477 0.003388 - 19 H -0.184051 -9.197785 -0.355887 0.005168 -0.003490 -0.008204 - 20 H -2.523113 -7.040694 1.173574 -0.004501 -0.006939 0.007627 + 18 H 2.905757 -6.017009 -0.967517 -0.000311 -0.002477 0.003388 + 19 H -0.184053 -9.197785 -0.355886 0.005168 -0.003490 -0.008204 + 20 H -2.523113 -7.040693 1.173574 -0.004501 -0.006939 0.007627 @@ -2359,7 +2361,7 @@ Tot. energy (a.u.): 31 -382.267883 Target temp. (K) : 31 298.00 Current temp. (K) : 31 287.00 - Dipole (a.u.) : 31 -7.235171E-03 2.932913E-03 -3.558706E-02 + Dipole (a.u.) : 31 -7.234953E-03 2.932324E-03 -3.558702E-02 @@ -2372,19 +2374,19 @@ Caching 1-el integrals - Time after variat. SCF: 465.7 - Time prior to 1st pass: 465.7 + Time after variat. SCF: 363.4 + Time prior to 1st pass: 363.4 - Total DFT energy = -382.292511876361 - One electron energy = -1403.053622732091 - Coulomb energy = 631.500648463133 - Exchange-Corr. energy = -57.849925734723 - Nuclear repulsion energy = 447.110388127320 + Total DFT energy = -382.292511423492 + One electron energy = -1403.053612578930 + Coulomb energy = 631.500644301550 + Exchange-Corr. energy = -57.849925480934 + Nuclear repulsion energy = 447.110382334822 - Numeric. integr. density = 69.999996013655 + Numeric. integr. density = 69.999996014209 - Total iterative time = 8.2s + Total iterative time = 8.0s @@ -2393,26 +2395,26 @@ atom coordinates gradient x y z x y z - 1 C 0.523402 -2.593572 0.092517 -0.018969 0.040084 0.015567 - 2 C 2.560440 -0.830203 0.153798 0.005462 -0.002415 -0.004279 - 3 C 2.034451 1.765364 0.039021 0.000264 0.005462 -0.001253 - 4 C -0.528343 2.635013 0.005793 -0.008766 -0.028044 -0.003839 - 5 C -2.499633 0.893393 -0.137882 0.008850 0.021173 0.000509 - 6 C -1.959174 -1.717337 -0.175575 0.014527 -0.008904 -0.001810 - 7 H 4.510861 -1.520110 0.391948 0.001984 -0.001504 0.005561 - 8 H 3.616416 3.119749 -0.060252 0.004768 0.002428 -0.005681 - 9 H -4.492699 1.456133 -0.303744 -0.002871 -0.006047 -0.002203 - 10 H -3.554407 -3.023421 -0.428999 -0.004133 0.002851 -0.001430 + 1 C 0.523403 -2.593573 0.092517 -0.018969 0.040084 0.015567 + 2 C 2.560441 -0.830203 0.153799 0.005462 -0.002415 -0.004279 + 3 C 2.034450 1.765364 0.039021 0.000264 0.005462 -0.001253 + 4 C -0.528344 2.635013 0.005793 -0.008765 -0.028044 -0.003839 + 5 C -2.499633 0.893393 -0.137883 0.008850 0.021173 0.000509 + 6 C -1.959174 -1.717338 -0.175575 0.014527 -0.008904 -0.001810 + 7 H 4.510861 -1.520109 0.391948 0.001984 -0.001504 0.005561 + 8 H 3.616415 3.119749 -0.060252 0.004768 0.002428 -0.005681 + 9 H -4.492699 1.456132 -0.303744 -0.002871 -0.006047 -0.002203 + 10 H -3.554407 -3.023422 -0.428998 -0.004133 0.002851 -0.001430 11 C -1.117869 5.440589 0.210149 0.008989 0.040234 0.003839 12 C 0.644008 7.167040 -0.116817 0.008517 -0.051497 -0.000149 - 13 H -3.087162 5.950673 0.604272 0.001787 0.000398 -0.000851 - 14 H 0.104319 9.206906 0.024664 -0.011895 0.014566 0.001842 - 15 H 2.554734 6.669400 -0.604653 -0.015463 -0.002156 0.002109 + 13 H -3.087162 5.950674 0.604272 0.001787 0.000398 -0.000851 + 14 H 0.104321 9.206906 0.024664 -0.011895 0.014566 0.001842 + 15 H 2.554735 6.669398 -0.604653 -0.015463 -0.002156 0.002109 16 C 1.036462 -5.471166 -0.256473 0.014651 -0.041551 -0.015435 - 17 C -0.681594 -7.256071 0.228014 -0.004611 0.019775 0.001638 + 17 C -0.681595 -7.256071 0.228014 -0.004611 0.019775 0.001638 18 H 2.890327 -6.025269 -0.977296 -0.004875 -0.002063 0.005570 - 19 H -0.179268 -9.183347 -0.352479 0.004139 0.003791 -0.006653 - 20 H -2.507784 -7.044220 1.199955 -0.002356 -0.006581 0.006947 + 19 H -0.179269 -9.183347 -0.352478 0.004139 0.003791 -0.006653 + 20 H -2.507784 -7.044219 1.199955 -0.002356 -0.006581 0.006947 @@ -2420,11 +2422,11 @@ ------------------- Time elapsed (fs) : 19.351075 Kin. energy (a.u.): 32 0.024633 - Pot. energy (a.u.): 32 -382.292512 - Tot. energy (a.u.): 32 -382.267879 + Pot. energy (a.u.): 32 -382.292511 + Tot. energy (a.u.): 32 -382.267878 Target temp. (K) : 32 298.00 Current temp. (K) : 32 288.10 - Dipole (a.u.) : 32 -7.895457E-03 8.955912E-04 -3.726779E-02 + Dipole (a.u.) : 32 -7.895365E-03 8.954788E-04 -3.726771E-02 @@ -2437,19 +2439,19 @@ Caching 1-el integrals - Time after variat. SCF: 479.3 - Time prior to 1st pass: 479.3 + Time after variat. SCF: 374.2 + Time prior to 1st pass: 374.2 - Total DFT energy = -382.290206571953 - One electron energy = -1402.791120769451 - Coulomb energy = 631.369326432498 - Exchange-Corr. energy = -57.846152130322 - Nuclear repulsion energy = 446.977739895322 + Total DFT energy = -382.290206119667 + One electron energy = -1402.791110136109 + Coulomb energy = 631.369322036713 + Exchange-Corr. energy = -57.846151864167 + Nuclear repulsion energy = 446.977733843896 - Numeric. integr. density = 69.999992122105 + Numeric. integr. density = 69.999992122295 - Total iterative time = 8.2s + Total iterative time = 7.9s @@ -2459,25 +2461,25 @@ atom coordinates gradient x y z x y z 1 C 0.521089 -2.590110 0.091463 -0.020922 0.042833 0.016105 - 2 C 2.559587 -0.833836 0.154431 0.006519 -0.004587 -0.005452 + 2 C 2.559587 -0.833836 0.154431 0.006519 -0.004588 -0.005452 3 C 2.030855 1.763662 0.046388 -0.006250 0.004765 0.000286 - 4 C -0.524020 2.629690 0.003965 -0.005060 -0.031652 -0.004896 + 4 C -0.524021 2.629690 0.003965 -0.005060 -0.031652 -0.004896 5 C -2.498234 0.894943 -0.139885 0.005421 0.025259 0.000872 - 6 C -1.958093 -1.717483 -0.179284 0.011946 -0.013660 -0.002252 - 7 H 4.502557 -1.526566 0.414241 0.000461 -0.001305 0.006103 - 8 H 3.618529 3.122755 -0.070852 0.007220 0.004437 -0.006592 - 9 H -4.480011 1.452795 -0.319589 0.001512 -0.007625 -0.002199 - 10 H -3.535691 -3.022357 -0.437314 0.000684 0.006045 -0.000736 + 6 C -1.958093 -1.717483 -0.179284 0.011946 -0.013661 -0.002252 + 7 H 4.502557 -1.526565 0.414242 0.000461 -0.001305 0.006103 + 8 H 3.618528 3.122756 -0.070852 0.007220 0.004437 -0.006592 + 9 H -4.480012 1.452794 -0.319588 0.001512 -0.007625 -0.002199 + 10 H -3.535690 -3.022358 -0.437313 0.000684 0.006045 -0.000736 11 C -1.117149 5.437475 0.216037 0.022790 0.028500 0.001089 - 12 C 0.648166 7.173857 -0.120869 0.030464 -0.060439 -0.005040 - 13 H -3.134195 5.974576 0.629897 -0.018790 0.006771 0.003315 - 14 H 0.099845 9.243802 0.019645 -0.014025 0.025757 0.002236 - 15 H 2.528688 6.697244 -0.622112 -0.029525 0.002079 0.005718 + 12 C 0.648167 7.173857 -0.120869 0.030464 -0.060439 -0.005040 + 13 H -3.134196 5.974576 0.629897 -0.018790 0.006771 0.003315 + 14 H 0.099847 9.243802 0.019645 -0.014025 0.025757 0.002236 + 15 H 2.528689 6.697243 -0.622112 -0.029525 0.002079 0.005718 16 C 1.036302 -5.467565 -0.266784 0.024232 -0.035792 -0.019530 17 C -0.682439 -7.264910 0.236353 -0.011256 0.005243 0.002587 18 H 2.876555 -6.032827 -0.988970 -0.008456 -0.001873 0.007282 - 19 H -0.175893 -9.170198 -0.346807 0.002830 0.011404 -0.004824 - 20 H -2.491653 -7.045508 1.223973 0.000205 -0.006159 0.005928 + 19 H -0.175894 -9.170199 -0.346806 0.002830 0.011404 -0.004824 + 20 H -2.491653 -7.045507 1.223973 0.000205 -0.006159 0.005928 @@ -2485,11 +2487,11 @@ ------------------- Time elapsed (fs) : 19.955796 Kin. energy (a.u.): 33 0.022426 - Pot. energy (a.u.): 33 -382.290207 + Pot. energy (a.u.): 33 -382.290206 Tot. energy (a.u.): 33 -382.267780 Target temp. (K) : 33 298.00 Current temp. (K) : 33 262.28 - Dipole (a.u.) : 33 -7.681169E-03 -1.603397E-03 -3.917829E-02 + Dipole (a.u.) : 33 -7.681205E-03 -1.603329E-03 -3.917821E-02 @@ -2502,19 +2504,19 @@ Caching 1-el integrals - Time after variat. SCF: 492.8 - Time prior to 1st pass: 492.8 + Time after variat. SCF: 385.0 + Time prior to 1st pass: 385.0 - Total DFT energy = -382.286953478639 - One electron energy = -1402.524948800881 - Coulomb energy = 631.235296953899 - Exchange-Corr. energy = -57.842378706913 - Nuclear repulsion energy = 446.845077075256 + Total DFT energy = -382.286952955795 + One electron energy = -1402.524938517700 + Coulomb energy = 631.235292876685 + Exchange-Corr. energy = -57.842378421764 + Nuclear repulsion energy = 446.845071106985 - Numeric. integr. density = 69.999989569352 + Numeric. integr. density = 69.999989569567 - Total iterative time = 8.2s + Total iterative time = 7.9s @@ -2524,25 +2526,25 @@ atom coordinates gradient x y z x y z 1 C 0.519373 -2.587871 0.089949 -0.022262 0.044462 0.016543 - 2 C 2.558548 -0.837338 0.155219 0.007597 -0.006359 -0.006452 + 2 C 2.558548 -0.837337 0.155219 0.007598 -0.006359 -0.006452 3 C 2.027438 1.761824 0.053746 -0.011614 0.004486 0.001690 - 4 C -0.519553 2.625271 0.002277 -0.001274 -0.034284 -0.005877 - 5 C -2.496989 0.895772 -0.141913 0.002108 0.028290 0.001150 - 6 C -1.957354 -1.717238 -0.182928 0.009221 -0.017489 -0.002701 + 4 C -0.519554 2.625271 0.002277 -0.001274 -0.034284 -0.005877 + 5 C -2.496990 0.895772 -0.141913 0.002108 0.028290 0.001150 + 6 C -1.957353 -1.717239 -0.182928 0.009221 -0.017489 -0.002701 7 H 4.494096 -1.532577 0.434459 -0.001139 -0.001080 0.006534 - 8 H 3.618186 3.124252 -0.079208 0.008711 0.005718 -0.007417 - 9 H -4.467838 1.452050 -0.334685 0.005547 -0.008902 -0.002141 - 10 H -3.517206 -3.023350 -0.445378 0.005219 0.008887 -0.000057 + 8 H 3.618186 3.124253 -0.079209 0.008711 0.005718 -0.007417 + 9 H -4.467838 1.452049 -0.334685 0.005547 -0.008902 -0.002141 + 10 H -3.517206 -3.023351 -0.445377 0.005219 0.008887 -0.000057 11 C -1.117080 5.433547 0.221894 0.030804 0.016901 -0.000616 - 12 C 0.651454 7.182401 -0.124777 0.046819 -0.062929 -0.008756 - 13 H -3.174836 5.996175 0.654393 -0.034146 0.011961 0.006598 - 14 H 0.100143 9.271935 0.013865 -0.014783 0.032431 0.002270 - 15 H 2.512686 6.724382 -0.641517 -0.038727 0.005090 0.008312 - 16 C 1.035449 -5.462940 -0.276537 0.031503 -0.028995 -0.022689 + 12 C 0.651455 7.182401 -0.124777 0.046819 -0.062929 -0.008756 + 13 H -3.174836 5.996176 0.654394 -0.034146 0.011961 0.006598 + 14 H 0.100145 9.271935 0.013865 -0.014783 0.032431 0.002270 + 15 H 2.512687 6.724381 -0.641517 -0.038727 0.005090 0.008312 + 16 C 1.035449 -5.462941 -0.276537 0.031503 -0.028995 -0.022689 17 C -0.682962 -7.273899 0.244619 -0.017621 -0.008507 0.003717 - 18 H 2.865661 -6.039748 -1.003121 -0.010340 -0.002119 0.008235 - 19 H -0.173480 -9.160930 -0.339494 0.001546 0.018106 -0.003087 - 20 H -2.475592 -7.044700 1.245974 0.002830 -0.005666 0.004744 + 18 H 2.865661 -6.039748 -1.003122 -0.010340 -0.002119 0.008235 + 19 H -0.173482 -9.160930 -0.339494 0.001546 0.018106 -0.003087 + 20 H -2.475592 -7.044699 1.245975 0.002830 -0.005666 0.004744 @@ -2554,7 +2556,7 @@ Tot. energy (a.u.): 34 -382.267659 Target temp. (K) : 34 298.00 Current temp. (K) : 34 225.65 - Dipole (a.u.) : 34 -6.375529E-03 -3.179826E-03 -4.133972E-02 + Dipole (a.u.) : 34 -6.375644E-03 -3.179620E-03 -4.133958E-02 @@ -2567,19 +2569,19 @@ Caching 1-el integrals - Time after variat. SCF: 506.4 - Time prior to 1st pass: 506.4 + Time after variat. SCF: 395.7 + Time prior to 1st pass: 395.7 - Total DFT energy = -382.284591471467 - One electron energy = -1402.248530109359 - Coulomb energy = 631.096971374183 - Exchange-Corr. energy = -57.838099939662 - Nuclear repulsion energy = 446.705067203371 + Total DFT energy = -382.284590954193 + One electron energy = -1402.248520535202 + Coulomb energy = 631.096967646429 + Exchange-Corr. energy = -57.838099685030 + Nuclear repulsion energy = 446.705061619611 - Numeric. integr. density = 69.999988244941 + Numeric. integr. density = 69.999988245137 - Total iterative time = 8.2s + Total iterative time = 7.9s @@ -2589,25 +2591,25 @@ atom coordinates gradient x y z x y z 1 C 0.518293 -2.586903 0.087962 -0.022936 0.044950 0.016863 - 2 C 2.557291 -0.840658 0.156192 0.008479 -0.007631 -0.007291 - 3 C 2.024353 1.759857 0.061056 -0.015464 0.004745 0.002906 + 2 C 2.557291 -0.840657 0.156192 0.008480 -0.007631 -0.007291 + 3 C 2.024352 1.759857 0.061056 -0.015464 0.004745 0.002906 4 C -0.515050 2.621832 0.000757 0.002429 -0.035999 -0.006781 - 5 C -2.495805 0.895793 -0.143973 -0.000353 0.029945 0.001411 - 6 C -1.956877 -1.716494 -0.186496 0.007060 -0.019677 -0.003019 - 7 H 4.486022 -1.538222 0.452453 -0.002618 -0.000894 0.006878 - 8 H 3.614880 3.123804 -0.085042 0.009030 0.006104 -0.008107 - 9 H -4.457552 1.454334 -0.349052 0.008531 -0.009670 -0.002108 - 10 H -3.500498 -3.027366 -0.453423 0.008728 0.010768 0.000474 + 5 C -2.495805 0.895792 -0.143974 -0.000353 0.029945 0.001411 + 6 C -1.956877 -1.716495 -0.186496 0.007060 -0.019677 -0.003019 + 7 H 4.486023 -1.538221 0.452453 -0.002618 -0.000894 0.006878 + 8 H 3.614879 3.123804 -0.085042 0.009030 0.006104 -0.008107 + 9 H -4.457552 1.454333 -0.349052 0.008531 -0.009670 -0.002108 + 10 H -3.500497 -3.027367 -0.453422 0.008728 0.010768 0.000474 11 C -1.117891 5.429136 0.227769 0.033018 0.006015 -0.001180 - 12 C 0.653405 7.192742 -0.128435 0.054429 -0.058527 -0.010291 - 13 H -3.203861 6.013705 0.676646 -0.043951 0.015755 0.008850 - 14 H 0.105470 9.289035 0.007312 -0.014136 0.034457 0.001951 - 15 H 2.509859 6.749788 -0.663749 -0.040254 0.006298 0.008929 + 12 C 0.653406 7.192742 -0.128435 0.054429 -0.058527 -0.010291 + 13 H -3.203861 6.013706 0.676646 -0.043951 0.015755 0.008850 + 14 H 0.105472 9.289036 0.007312 -0.014136 0.034457 0.001951 + 15 H 2.509860 6.749787 -0.663749 -0.040254 0.006298 0.008929 16 C 1.033696 -5.457488 -0.285642 0.035764 -0.021332 -0.024624 - 17 C -0.682981 -7.282645 0.252778 -0.023399 -0.019885 0.005127 + 17 C -0.682982 -7.282645 0.252778 -0.023399 -0.019885 0.005127 18 H 2.858283 -6.045948 -1.020075 -0.010133 -0.002931 0.008254 - 19 H -0.171594 -9.157821 -0.331132 0.000638 0.022597 -0.001850 - 20 H -2.460494 -7.041964 1.266362 0.005136 -0.005088 0.003608 + 19 H -0.171596 -9.157821 -0.331131 0.000638 0.022597 -0.001850 + 20 H -2.460494 -7.041963 1.266362 0.005136 -0.005088 0.003608 @@ -2616,10 +2618,10 @@ Time elapsed (fs) : 21.165238 Kin. energy (a.u.): 35 0.017004 Pot. energy (a.u.): 35 -382.284591 - Tot. energy (a.u.): 35 -382.267587 + Tot. energy (a.u.): 35 -382.267586 Target temp. (K) : 35 298.00 Current temp. (K) : 35 198.87 - Dipole (a.u.) : 35 -4.183161E-03 -2.816700E-03 -4.367229E-02 + Dipole (a.u.) : 35 -4.183250E-03 -2.816511E-03 -4.367215E-02 @@ -2635,33 +2637,52 @@ Please cite the following reference when publishing results obtained with NWChem: - M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, - T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, - E. Apra, T.L. Windus, W.A. de Jong - "NWChem: a comprehensive and scalable open-source - solution for large scale molecular simulations" - Comput. Phys. Commun. 181, 1477 (2010) - doi:10.1016/j.cpc.2010.04.018 + E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, + V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, + J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, + J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, + C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, + K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, + J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, + V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, + B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, + S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, + A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, + D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, + J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, + A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, + R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, + D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, + V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, + Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, + D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, + A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, + and R. J. Harrison + "NWChem: Past, present, and future + J. Chem. Phys. 152, 184102 (2020) + doi:10.1063/5.0004997 AUTHORS ------- - E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, - J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, - S. A. Fischer, S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, - V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, - A. Marenich, A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, - J. Pittner, Y. Zhao, P.-D. Fan, A. Fonari, M. Williamson, R. J. Harrison, - J. R. Rehr, M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, - V. Tipparaju, M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, - L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, A. A. Auer, M. Nooijen, - L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, H. Fruchtl, J. Garza, - K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, K. Wolinski, - J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, H. Dachsel, - M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, A. C. Hess, - J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, - R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, - K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, - A. T. Wong, Z. Zhang. - - Total times cpu: 519.7s wall: 521.3s + E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, + T. P. Straatsma, H. J. J. van Dam, D. Wang, T. L. Windus, N. P. Bauman, + A. Panyala, J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, + K. Lopata, S. A. Fischer, S. Krishnamoorthy, M. Jacquelin, W. Ma, M. Klemm, + O. Villa, Y. Chen, V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, + Eric Hermes, L. Jensen, J. E. Moore, J. C. Becca, V. Konjkov, + D. Mejia-Rodriguez, T. Risthaus, M. Malagoli, A. Marenich, + A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, + P.-D. Fan, A. Fonari, M. J. Williamson, R. J. Harrison, J. R. Rehr, + M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, V. Tipparaju, + M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, M. Swart, Q. Wu, + T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, + G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, + K. Tsemekhman, K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, + T. Clark, D. Clerc, H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, + E. Glendening, M. Gutowski, A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, + R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, X. Long, B. Meng, + T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, + M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. + + Total times cpu: 405.9s wall: 406.5s diff --git a/data/NWChem/basicNWChem7.0/dvb_dispersion_bp86_d3zero.out b/data/NWChem/basicNWChem7.0/dvb_dispersion_bp86_d3zero.out index 7f99a3b17..f76862918 100644 --- a/data/NWChem/basicNWChem7.0/dvb_dispersion_bp86_d3zero.out +++ b/data/NWChem/basicNWChem7.0/dvb_dispersion_bp86_d3zero.out @@ -1,17 +1,17 @@ - argument 1 = dvb_dispersion_bp86_3.in + argument 1 = dvb_dispersion_bp86_d3zero.in - Northwest Computational Chemistry Package (NWChem) 6.8 - ------------------------------------------------------ + Northwest Computational Chemistry Package (NWChem) 7.0.2 + -------------------------------------------------------- Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - Copyright (c) 1994-2017 + Copyright (c) 1994-2020 Pacific Northwest National Laboratory Battelle Memorial Institute @@ -38,18 +38,18 @@ hostname = osmium program = nwchem - date = Sun Dec 9 22:20:39 2018 + date = Sat Jun 4 13:32:22 2022 - compiled = Mon_Aug_27_23:56:01_2018 - source = /build/nwchem-0CLMct/nwchem-6.8+47+gitdf6c956 - nwchem branch = 6.8 - nwchem revision = v6.8-47-gdf6c956 - ga revision = ga-5.6.3 + compiled = Fri_Jul_02_16:33:00_2021 + source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src + nwchem branch = 7.0.2 + nwchem revision = b9985dfa + ga revision = 5.7.2 use scalapack = T - input = dvb_dispersion_bp86_3.in - prefix = dvb_dispersion_bp86_3. - data base = ./dvb_dispersion_bp86_3.db - status = restart + input = dvb_dispersion_bp86_d3zero.in + prefix = dvb_dispersion_bp86_d3zero. + data base = ./dvb_dispersion_bp86_d3zero.db + status = startup nproc = 1 time left = -1s @@ -58,10 +58,10 @@ Memory information ------------------ - heap = 13107200 doubles = 100.0 Mbytes - stack = 13107197 doubles = 100.0 Mbytes + heap = 13107194 doubles = 100.0 Mbytes + stack = 13107199 doubles = 100.0 Mbytes global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) - total = 52428797 doubles = 400.0 Mbytes + total = 52428793 doubles = 400.0 Mbytes verify = yes hardfail = no @@ -74,28 +74,6 @@ - Geometries in the database - -------------------------- - - Name Natoms Last Modified - -------------------------------- ------ ------------------------ - 1 geometry 20 Sun Dec 9 22:16:53 2018 - - The geometry named "geometry" is the default for restart - - - - Basis sets in the database - -------------------------- - - Name Natoms Last Modified - -------------------------------- ------ ------------------------ - 1 ao basis 0 Sun Dec 9 22:16:53 2018 - - The basis set named "ao basis" is the default AO basis for restart - - - NWChem Input Module ------------------- @@ -110,6 +88,8 @@ ------ auto-z ------ + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 Geometry "geometry" -> "" @@ -365,6 +345,9 @@ + library name resolved from: environment + library file name is: + Summary of "ao basis" -> "" (cartesian) @@ -375,7 +358,6 @@ perdew86 is a nonlocal functional; adding perdew81 local functional. - Restarting calculation NWChem Property Module ---------------------- @@ -506,28 +488,15 @@ XC Gaussian exp screening on grid/accXCfunc: 20 Schwarz screening/accCoul: 1.00D-08 - Dispersion Parameters - --------------------- - - DFT-D3 Model - s8 scale factor : 1.000000000000 - sr6 scale factor : 1.683000000000 - sr8 scale factor : 1.139000000000 - vdW contrib : 1.000000000000 - - - DFT-D3 Model - s8 scale factor : -0.014719930985 - sr6 scale factor : global array: Temp Over[1:60,1:60], handle: -989 1 2 3 4 5 6 ----------- ----------- ----------- ----------- ----------- ----------- - 1 1.00000 0.24836 0.00000 0.00000 0.00000 0.00000 - 2 0.24836 1.00000 -0.00000 -0.00000 0.00000 0.03795 - 3 0.00000 -0.00000 1.00000 -0.00000 0.00000 0.04734 - 4 0.00000 -0.00000 -0.00000 1.00000 0.00000 0.04144 + 1 1.00000 0.24836 -0.00000 0.00000 0.00000 0.00000 + 2 0.24836 1.00000 0.00000 -0.00000 0.00000 0.03795 + 3 0.00000 0.00000 1.00000 0.00000 0.00000 0.04734 + 4 0.00000 -0.00000 0.00000 1.00000 0.00000 0.04144 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 6 0.00000 0.03795 0.04734 0.04144 0.00000 1.00000 7 0.03795 0.36707 0.29320 0.25662 0.00000 0.24836 @@ -594,13 +563,13 @@ 5 0.00000 0.00000 0.00000 0.21490 0.00000 0.00000 6 0.24836 0.00000 0.00000 0.00000 0.00000 0.03799 7 1.00000 -0.00000 -0.00000 0.00000 0.03799 0.36730 - 8 -0.00000 1.00000 -0.00000 0.00000 -0.01222 -0.07561 + 8 0.00000 1.00000 -0.00000 0.00000 -0.01222 -0.07561 9 -0.00000 -0.00000 1.00000 0.00000 0.06179 0.38240 10 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 11 0.03799 -0.01222 0.06179 0.00000 1.00000 0.24836 12 0.36730 -0.07561 0.38240 0.00000 0.24836 1.00000 - 13 0.07561 0.19464 0.10336 0.00000 -0.00000 0.00000 - 14 -0.38240 0.10336 -0.30767 0.00000 -0.00000 -0.00000 + 13 0.07561 0.19464 0.10336 0.00000 0.00000 0.00000 + 14 -0.38240 0.10336 -0.30767 0.00000 -0.00000 0.00000 15 0.00000 0.00000 0.00000 0.21508 0.00000 0.00000 16 0.00184 -0.00280 0.00320 0.00000 0.00000 0.03797 17 0.06132 -0.05940 0.06788 0.00000 0.03797 0.36720 @@ -660,7 +629,7 @@ 8 0.19464 0.10336 0.00000 -0.00280 -0.05940 -0.03785 9 0.10336 -0.30767 0.00000 0.00320 0.06788 0.07261 10 0.00000 0.00000 0.21508 0.00000 0.00000 0.00000 - 11 -0.00000 -0.00000 0.00000 0.00000 0.03797 0.05959 + 11 0.00000 -0.00000 0.00000 0.00000 0.03797 0.05959 12 0.00000 -0.00000 0.00000 0.03797 0.36720 0.36891 13 1.00000 0.00000 0.00000 -0.05959 -0.36891 -0.27161 14 0.00000 1.00000 0.00000 0.02030 0.12569 0.16579 @@ -668,7 +637,7 @@ 16 -0.05959 0.02030 0.00000 1.00000 0.24836 0.00000 17 -0.36891 0.12569 0.00000 0.24836 1.00000 0.00000 18 -0.27161 0.16579 0.00000 0.00000 0.00000 1.00000 - 19 0.16579 0.15852 0.00000 -0.00000 0.00000 -0.00000 + 19 0.16579 0.15852 0.00000 -0.00000 0.00000 0.00000 20 0.00000 0.00000 0.21500 0.00000 0.00000 0.00000 21 -0.00416 -0.00082 0.00000 0.00000 0.03795 -0.04734 22 -0.08844 -0.01750 0.00000 0.03795 0.36707 -0.29320 @@ -730,12 +699,12 @@ 15 0.00000 0.21500 0.00000 0.00000 0.00000 0.00000 16 -0.00000 0.00000 0.00000 0.03795 0.04734 0.04144 17 0.00000 0.00000 0.03795 0.36707 0.29320 0.25662 - 18 -0.00000 0.00000 -0.04734 -0.29320 -0.09256 -0.26910 + 18 0.00000 0.00000 -0.04734 -0.29320 -0.09256 -0.26910 19 1.00000 0.00000 -0.04144 -0.25662 -0.26910 -0.02063 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 21 -0.04144 0.00000 1.00000 0.24836 -0.00000 -0.00000 22 -0.25662 0.00000 0.24836 1.00000 0.00000 0.00000 - 23 -0.26910 0.00000 -0.00000 0.00000 1.00000 -0.00000 + 23 -0.26910 0.00000 -0.00000 -0.00000 1.00000 -0.00000 24 -0.02063 0.00000 -0.00000 0.00000 -0.00000 1.00000 25 0.00000 0.21490 0.00000 0.00000 0.00000 0.00000 26 -0.00402 0.00000 0.00000 0.03799 0.01222 -0.06179 @@ -801,10 +770,10 @@ 23 0.00000 0.01222 0.07561 0.19464 0.10336 0.00000 24 0.00000 -0.06179 -0.38240 0.10336 -0.30767 0.00000 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.21508 - 26 0.00000 1.00000 0.24836 0.00000 0.00000 0.00000 + 26 0.00000 1.00000 0.24836 -0.00000 0.00000 0.00000 27 0.00000 0.24836 1.00000 -0.00000 0.00000 0.00000 - 28 0.00000 0.00000 -0.00000 1.00000 0.00000 0.00000 - 29 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 28 0.00000 -0.00000 -0.00000 1.00000 0.00000 0.00000 + 29 0.00000 0.00000 -0.00000 0.00000 1.00000 0.00000 30 0.21508 0.00000 0.00000 0.00000 0.00000 1.00000 31 0.00000 0.00009 0.00645 0.01069 0.00036 0.00000 32 0.00000 0.00001 0.00185 0.00250 0.00219 0.00000 @@ -875,7 +844,7 @@ 34 0.00076 0.00011 0.05001 1.00000 0.00000 0.00016 35 0.00000 0.00102 0.00102 0.00000 1.00000 0.24836 36 0.00016 0.03049 0.03049 0.00016 0.24836 1.00000 - 37 0.00020 0.03990 -0.02922 -0.00009 0.00000 0.00000 + 37 0.00020 0.03990 -0.02922 -0.00009 0.00000 -0.00000 38 -0.00026 -0.02016 -0.03383 -0.00032 -0.00000 0.00000 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 40 0.00000 0.00148 0.00001 0.00000 0.00000 0.04472 @@ -944,7 +913,7 @@ 40 0.05348 0.05144 0.00000 1.00000 0.24836 0.00000 41 0.29853 0.28716 0.00000 0.24836 1.00000 0.00000 42 -0.05323 -0.28521 0.00000 0.00000 0.00000 1.00000 - 43 -0.28521 -0.03108 0.00000 -0.00000 0.00000 0.00000 + 43 -0.28521 -0.03108 0.00000 0.00000 0.00000 0.00000 44 0.00000 0.00000 0.24327 0.00000 0.00000 0.00000 45 -0.45179 0.10758 0.00000 0.00578 0.10189 -0.12414 46 0.04556 0.12246 0.00000 0.06109 0.48601 -0.08998 @@ -1075,15 +1044,15 @@ 45 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 46 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 47 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 48 0.24836 -0.00000 0.00000 0.00000 0.00000 0.04472 + 48 0.24836 0.00000 0.00000 0.00000 0.00000 0.04472 49 1.00000 -0.00000 -0.00000 0.00000 0.04472 0.40277 - 50 -0.00000 1.00000 -0.00000 0.00000 -0.05348 -0.29853 + 50 0.00000 1.00000 -0.00000 0.00000 -0.05348 -0.29853 51 -0.00000 -0.00000 1.00000 0.00000 -0.05144 -0.28716 52 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 53 0.04472 -0.05348 -0.05144 0.00000 1.00000 0.24836 54 0.40277 -0.29853 -0.28716 0.00000 0.24836 1.00000 55 0.29853 -0.05323 -0.28521 0.00000 -0.00000 -0.00000 - 56 0.28716 -0.28521 -0.03108 0.00000 0.00000 -0.00000 + 56 0.28716 -0.28521 -0.03108 0.00000 -0.00000 -0.00000 57 0.00000 0.00000 0.00000 0.24327 0.00000 0.00000 58 0.48601 0.45179 -0.10758 0.00000 0.00578 0.10189 59 0.10189 -0.04556 -0.12246 0.00000 0.06109 0.48601 @@ -1151,6 +1120,19 @@ 58 0.12414 0.04077 0.00000 1.00000 0.04831 0.01414 59 0.08998 -0.45562 0.00000 0.04831 1.00000 0.15221 60 -0.45179 0.10758 0.00000 0.01414 0.15221 1.00000 + Dispersion Parameters + --------------------- + + DFT-D3 Model + s8 scale factor : 1.000000000000 + sr6 scale factor : 1.683000000000 + sr8 scale factor : 1.139000000000 + vdW contrib : 1.000000000000 + + + DFT-D3 Model + s8 scale factor : -0.014719930985 + sr6 scale factor : Superposition of Atomic Density Guess ------------------------------------- @@ -1161,10 +1143,10 @@ 1 2 3 4 5 6 ----------- ----------- ----------- ----------- ----------- ----------- - 1 1.00000 0.24836 0.00000 0.00000 0.00000 0.00000 - 2 0.24836 1.00000 -0.00000 -0.00000 0.00000 0.03795 - 3 0.00000 -0.00000 1.00000 -0.00000 0.00000 0.04734 - 4 0.00000 -0.00000 -0.00000 1.00000 0.00000 0.04144 + 1 1.00000 0.24836 -0.00000 0.00000 0.00000 0.00000 + 2 0.24836 1.00000 0.00000 -0.00000 0.00000 0.03795 + 3 0.00000 0.00000 1.00000 0.00000 0.00000 0.04734 + 4 0.00000 -0.00000 0.00000 1.00000 0.00000 0.04144 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 6 0.00000 0.03795 0.04734 0.04144 0.00000 1.00000 7 0.03795 0.36707 0.29320 0.25662 0.00000 0.24836 @@ -1231,13 +1213,13 @@ 5 0.00000 0.00000 0.00000 0.21490 0.00000 0.00000 6 0.24836 0.00000 0.00000 0.00000 0.00000 0.03799 7 1.00000 -0.00000 -0.00000 0.00000 0.03799 0.36730 - 8 -0.00000 1.00000 -0.00000 0.00000 -0.01222 -0.07561 + 8 0.00000 1.00000 -0.00000 0.00000 -0.01222 -0.07561 9 -0.00000 -0.00000 1.00000 0.00000 0.06179 0.38240 10 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 11 0.03799 -0.01222 0.06179 0.00000 1.00000 0.24836 12 0.36730 -0.07561 0.38240 0.00000 0.24836 1.00000 - 13 0.07561 0.19464 0.10336 0.00000 -0.00000 0.00000 - 14 -0.38240 0.10336 -0.30767 0.00000 -0.00000 -0.00000 + 13 0.07561 0.19464 0.10336 0.00000 0.00000 0.00000 + 14 -0.38240 0.10336 -0.30767 0.00000 -0.00000 0.00000 15 0.00000 0.00000 0.00000 0.21508 0.00000 0.00000 16 0.00184 -0.00280 0.00320 0.00000 0.00000 0.03797 17 0.06132 -0.05940 0.06788 0.00000 0.03797 0.36720 @@ -1297,7 +1279,7 @@ 8 0.19464 0.10336 0.00000 -0.00280 -0.05940 -0.03785 9 0.10336 -0.30767 0.00000 0.00320 0.06788 0.07261 10 0.00000 0.00000 0.21508 0.00000 0.00000 0.00000 - 11 -0.00000 -0.00000 0.00000 0.00000 0.03797 0.05959 + 11 0.00000 -0.00000 0.00000 0.00000 0.03797 0.05959 12 0.00000 -0.00000 0.00000 0.03797 0.36720 0.36891 13 1.00000 0.00000 0.00000 -0.05959 -0.36891 -0.27161 14 0.00000 1.00000 0.00000 0.02030 0.12569 0.16579 @@ -1305,7 +1287,7 @@ 16 -0.05959 0.02030 0.00000 1.00000 0.24836 0.00000 17 -0.36891 0.12569 0.00000 0.24836 1.00000 0.00000 18 -0.27161 0.16579 0.00000 0.00000 0.00000 1.00000 - 19 0.16579 0.15852 0.00000 -0.00000 0.00000 -0.00000 + 19 0.16579 0.15852 0.00000 -0.00000 0.00000 0.00000 20 0.00000 0.00000 0.21500 0.00000 0.00000 0.00000 21 -0.00416 -0.00082 0.00000 0.00000 0.03795 -0.04734 22 -0.08844 -0.01750 0.00000 0.03795 0.36707 -0.29320 @@ -1367,12 +1349,12 @@ 15 0.00000 0.21500 0.00000 0.00000 0.00000 0.00000 16 -0.00000 0.00000 0.00000 0.03795 0.04734 0.04144 17 0.00000 0.00000 0.03795 0.36707 0.29320 0.25662 - 18 -0.00000 0.00000 -0.04734 -0.29320 -0.09256 -0.26910 + 18 0.00000 0.00000 -0.04734 -0.29320 -0.09256 -0.26910 19 1.00000 0.00000 -0.04144 -0.25662 -0.26910 -0.02063 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 21 -0.04144 0.00000 1.00000 0.24836 -0.00000 -0.00000 22 -0.25662 0.00000 0.24836 1.00000 0.00000 0.00000 - 23 -0.26910 0.00000 -0.00000 0.00000 1.00000 -0.00000 + 23 -0.26910 0.00000 -0.00000 -0.00000 1.00000 -0.00000 24 -0.02063 0.00000 -0.00000 0.00000 -0.00000 1.00000 25 0.00000 0.21490 0.00000 0.00000 0.00000 0.00000 26 -0.00402 0.00000 0.00000 0.03799 0.01222 -0.06179 @@ -1438,10 +1420,10 @@ 23 0.00000 0.01222 0.07561 0.19464 0.10336 0.00000 24 0.00000 -0.06179 -0.38240 0.10336 -0.30767 0.00000 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.21508 - 26 0.00000 1.00000 0.24836 0.00000 0.00000 0.00000 + 26 0.00000 1.00000 0.24836 -0.00000 0.00000 0.00000 27 0.00000 0.24836 1.00000 -0.00000 0.00000 0.00000 - 28 0.00000 0.00000 -0.00000 1.00000 0.00000 0.00000 - 29 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 28 0.00000 -0.00000 -0.00000 1.00000 0.00000 0.00000 + 29 0.00000 0.00000 -0.00000 0.00000 1.00000 0.00000 30 0.21508 0.00000 0.00000 0.00000 0.00000 1.00000 31 0.00000 0.00009 0.00645 0.01069 0.00036 0.00000 32 0.00000 0.00001 0.00185 0.00250 0.00219 0.00000 @@ -1512,7 +1494,7 @@ 34 0.00076 0.00011 0.05001 1.00000 0.00000 0.00016 35 0.00000 0.00102 0.00102 0.00000 1.00000 0.24836 36 0.00016 0.03049 0.03049 0.00016 0.24836 1.00000 - 37 0.00020 0.03990 -0.02922 -0.00009 0.00000 0.00000 + 37 0.00020 0.03990 -0.02922 -0.00009 0.00000 -0.00000 38 -0.00026 -0.02016 -0.03383 -0.00032 -0.00000 0.00000 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 40 0.00000 0.00148 0.00001 0.00000 0.00000 0.04472 @@ -1581,7 +1563,7 @@ 40 0.05348 0.05144 0.00000 1.00000 0.24836 0.00000 41 0.29853 0.28716 0.00000 0.24836 1.00000 0.00000 42 -0.05323 -0.28521 0.00000 0.00000 0.00000 1.00000 - 43 -0.28521 -0.03108 0.00000 -0.00000 0.00000 0.00000 + 43 -0.28521 -0.03108 0.00000 0.00000 0.00000 0.00000 44 0.00000 0.00000 0.24327 0.00000 0.00000 0.00000 45 -0.45179 0.10758 0.00000 0.00578 0.10189 -0.12414 46 0.04556 0.12246 0.00000 0.06109 0.48601 -0.08998 @@ -1712,15 +1694,15 @@ 45 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 46 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 47 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 48 0.24836 -0.00000 0.00000 0.00000 0.00000 0.04472 + 48 0.24836 0.00000 0.00000 0.00000 0.00000 0.04472 49 1.00000 -0.00000 -0.00000 0.00000 0.04472 0.40277 - 50 -0.00000 1.00000 -0.00000 0.00000 -0.05348 -0.29853 + 50 0.00000 1.00000 -0.00000 0.00000 -0.05348 -0.29853 51 -0.00000 -0.00000 1.00000 0.00000 -0.05144 -0.28716 52 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 53 0.04472 -0.05348 -0.05144 0.00000 1.00000 0.24836 54 0.40277 -0.29853 -0.28716 0.00000 0.24836 1.00000 55 0.29853 -0.05323 -0.28521 0.00000 -0.00000 -0.00000 - 56 0.28716 -0.28521 -0.03108 0.00000 0.00000 -0.00000 + 56 0.28716 -0.28521 -0.03108 0.00000 -0.00000 -0.00000 57 0.00000 0.00000 0.00000 0.24327 0.00000 0.00000 58 0.48601 0.45179 -0.10758 0.00000 0.00578 0.10189 59 0.10189 -0.04556 -0.12246 0.00000 0.06109 0.48601 @@ -1821,41 +1803,41 @@ Time after variat. SCF: 0.2 Time prior to 1st pass: 0.2 - Grid_pts file = ./dvb_dispersion_bp86_3.gridpts.0 + Grid_pts file = ./dvb_dispersion_bp86_d3zero.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 - Max. records in memory = 139 Max. recs in file = 7400349 + Max. records in memory = 139 Max. recs in file = ********* Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 11.40 11395536 + Heap Space remaining (MW): 5.10 5104058 Stack Space remaining (MW): 13.11 13106284 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.2780414846 -8.32D+02 1.48D-02 4.06D-01 1.3 - d= 0,ls=0.0,diis 2 -382.3165297365 -3.85D-02 1.03D-02 6.25D-02 1.9 - d= 0,ls=0.0,diis 3 -382.2953662488 2.12D-02 6.78D-03 1.92D-01 2.7 - d= 0,ls=0.0,diis 4 -382.3269700412 -3.16D-02 9.67D-04 3.29D-03 3.4 - d= 0,ls=0.0,diis 5 -382.3274952755 -5.25D-04 1.64D-04 1.18D-04 4.2 + d= 0,ls=0.0,diis 1 -382.2780414847 -8.32D+02 1.48D-02 4.06D-01 1.1 + d= 0,ls=0.0,diis 2 -382.3165297366 -3.85D-02 1.03D-02 6.25D-02 1.8 + d= 0,ls=0.0,diis 3 -382.2953662489 2.12D-02 6.78D-03 1.92D-01 2.5 + d= 0,ls=0.0,diis 4 -382.3269700413 -3.16D-02 9.67D-04 3.29D-03 3.3 + d= 0,ls=0.0,diis 5 -382.3274952756 -5.25D-04 1.64D-04 1.18D-04 4.0 Resetting Diis - d= 0,ls=0.0,diis 6 -382.3275130097 -1.77D-05 2.93D-05 1.22D-06 4.9 - d= 0,ls=0.0,diis 7 -382.3275129678 4.19D-08 2.56D-05 3.80D-07 5.7 - d= 0,ls=0.0,diis 8 -382.3275129944 -2.66D-08 1.51D-05 6.70D-07 6.5 - d= 0,ls=0.0,diis 9 -382.3275131040 -1.10D-07 1.88D-06 1.47D-08 7.2 - d= 0,ls=0.0,diis 10 -382.3275131067 -2.76D-09 4.07D-07 6.59D-10 8.0 + d= 0,ls=0.0,diis 6 -382.3275130098 -1.77D-05 2.93D-05 1.22D-06 4.8 + d= 0,ls=0.0,diis 7 -382.3275129680 4.19D-08 2.56D-05 3.80D-07 5.5 + d= 0,ls=0.0,diis 8 -382.3275129945 -2.66D-08 1.51D-05 6.70D-07 6.3 + d= 0,ls=0.0,diis 9 -382.3275131041 -1.10D-07 1.88D-06 1.47D-08 7.0 + d= 0,ls=0.0,diis 10 -382.3275131068 -2.76D-09 4.07D-07 6.59D-10 7.8 - Total DFT energy = -382.327513106739 - One electron energy = -1408.765089990302 - Coulomb energy = 634.345142854073 - Exchange-Corr. energy = -57.899016719761 + Total DFT energy = -382.327513106845 + One electron energy = -1408.765089990389 + Coulomb energy = 634.345142854071 + Exchange-Corr. energy = -57.899016719777 Nuclear repulsion energy = 450.006170680236 Dispersion correction = -0.014719930985 Numeric. integr. density = 70.000000928522 - Total iterative time = 7.8s + Total iterative time = 7.6s @@ -1874,7 +1856,7 @@ ------------------------------------ Vector 1 Occ=2.000000D+00 E=-9.743480D+00 Symmetry=bu - MO Center= -1.7D-11, 8.7D-11, -1.5D-33, r^2= 2.0D+00 + MO Center= 2.0D-11, -1.0D-10, -6.9D-33, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.698405 1 C s 16 -0.698405 4 C s @@ -1882,7 +1864,7 @@ 2 0.032950 1 C s 17 -0.032950 4 C s Vector 2 Occ=2.000000D+00 E=-9.743419D+00 Symmetry=ag - MO Center= 1.7D-11, -8.7D-11, -2.6D-41, r^2= 2.0D+00 + MO Center= -2.0D-11, 1.0D-10, 1.2D-26, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.698404 1 C s 16 0.698404 4 C s @@ -1891,7 +1873,7 @@ 6 -0.025098 2 C s 21 -0.025098 5 C s Vector 3 Occ=2.000000D+00 E=-9.732220D+00 Symmetry=bu - MO Center= 2.2D-09, -1.1D-08, 4.8D-29, r^2= 8.6D+00 + MO Center= -3.8D-10, 1.9D-09, 3.5D-28, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.698552 11 C s 48 -0.698552 16 C s @@ -1900,7 +1882,7 @@ 6 0.030876 2 C s 21 -0.030876 5 C s Vector 4 Occ=2.000000D+00 E=-9.732219D+00 Symmetry=ag - MO Center= -2.2D-09, 1.1D-08, -1.5D-34, r^2= 8.6D+00 + MO Center= 3.8D-10, -1.9D-09, -3.4D-17, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.698559 11 C s 48 0.698559 16 C s @@ -1909,7 +1891,7 @@ 36 0.031524 11 C s 49 0.031524 16 C s Vector 5 Occ=2.000000D+00 E=-9.731733D+00 Symmetry=bu - MO Center= 5.5D-10, -1.1D-10, -7.2D-29, r^2= 2.0D+00 + MO Center= -4.7D-10, 9.5D-11, -9.6D-28, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 6 0.652368 2 C s 21 -0.652368 5 C s @@ -1919,7 +1901,7 @@ 7 0.032590 2 C s 22 -0.032590 5 C s Vector 6 Occ=2.000000D+00 E=-9.731714D+00 Symmetry=ag - MO Center= -5.5D-10, 1.1D-10, -7.2D-19, r^2= 2.0D+00 + MO Center= 4.7D-10, -9.5D-11, -4.1D-34, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 6 0.642220 2 C s 21 0.642220 5 C s @@ -1928,7 +1910,7 @@ 35 0.027222 11 C s 48 0.027222 16 C s Vector 7 Occ=2.000000D+00 E=-9.730548D+00 Symmetry=bu - MO Center= -2.8D-11, -1.7D-11, 3.4D-29, r^2= 2.0D+00 + MO Center= -4.3D-11, -2.9D-11, -9.3D-29, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 11 0.653793 3 C s 26 -0.653793 6 C s @@ -1936,7 +1918,7 @@ 12 0.027633 3 C s 27 -0.027633 6 C s Vector 8 Occ=2.000000D+00 E=-9.730434D+00 Symmetry=ag - MO Center= 2.8D-11, 1.9D-11, 3.0D-20, r^2= 2.0D+00 + MO Center= 4.3D-11, 3.0D-11, -4.1D-34, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 11 0.642938 3 C s 26 0.642938 6 C s @@ -1945,21 +1927,21 @@ 12 0.026709 3 C s 27 0.026709 6 C s Vector 9 Occ=2.000000D+00 E=-9.716193D+00 Symmetry=bu - MO Center= -2.3D-16, -1.5D-15, -1.6D-32, r^2= 1.5D+01 + MO Center= -1.4D-15, -1.3D-15, -3.4D-32, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 40 0.700250 12 C s 53 -0.700250 17 C s 41 0.031974 12 C s 54 -0.031974 17 C s Vector 10 Occ=2.000000D+00 E=-9.716193D+00 Symmetry=ag - MO Center= -5.9D-16, 1.9D-16, -2.3D-33, r^2= 1.5D+01 + MO Center= 9.1D-16, 1.3D-15, 2.8D-20, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 40 0.700250 12 C s 53 0.700250 17 C s 41 0.031974 12 C s 54 0.031974 17 C s Vector 11 Occ=2.000000D+00 E=-7.436950D-01 Symmetry=ag - MO Center= -1.1D-15, 4.9D-16, -3.5D-16, r^2= 2.7D+00 + MO Center= -6.2D-17, -5.0D-17, -2.7D-33, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.270915 1 C s 17 0.270915 4 C s @@ -1969,7 +1951,7 @@ 1 -0.108336 1 C s 16 -0.108336 4 C s Vector 12 Occ=2.000000D+00 E=-6.838015D-01 Symmetry=bu - MO Center= 9.2D-17, 2.4D-15, -1.0D-27, r^2= 7.7D+00 + MO Center= 5.1D-16, -1.4D-14, 9.6D-27, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 -0.289242 11 C s 49 0.289242 16 C s @@ -1979,7 +1961,7 @@ 35 0.111107 11 C s 48 -0.111107 16 C s Vector 13 Occ=2.000000D+00 E=-6.513053D-01 Symmetry=ag - MO Center= -9.8D-15, 3.8D-15, 1.5D-15, r^2= 1.1D+01 + MO Center= 2.9D-14, 2.4D-16, -2.5D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.317136 11 C s 41 0.316143 12 C s @@ -1989,7 +1971,7 @@ 7 -0.111211 2 C s 22 -0.111211 5 C s Vector 14 Occ=2.000000D+00 E=-6.362160D-01 Symmetry=bu - MO Center= 1.6D-14, -6.5D-15, -3.6D-25, r^2= 3.1D+00 + MO Center= -3.1D-14, 1.8D-14, -6.3D-26, r^2= 3.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 7 0.363750 2 C s 22 -0.363750 5 C s @@ -1999,7 +1981,7 @@ 11 -0.116758 3 C s 26 0.116758 6 C s Vector 15 Occ=2.000000D+00 E=-6.039853D-01 Symmetry=bu - MO Center= -3.1D-16, 3.5D-15, -1.9D-25, r^2= 8.6D+00 + MO Center= 5.4D-16, -3.7D-15, -2.6D-25, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 41 0.293927 12 C s 54 -0.293927 17 C s @@ -2009,7 +1991,7 @@ 38 0.120006 11 C py 51 0.120006 16 C py Vector 16 Occ=2.000000D+00 E=-5.265732D-01 Symmetry=ag - MO Center= -5.0D-16, 1.1D-15, 4.6D-17, r^2= 7.4D+00 + MO Center= -2.4D-16, 1.2D-16, -9.8D-32, r^2= 7.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.259816 3 C s 27 0.259816 6 C s @@ -2019,7 +2001,7 @@ 36 -0.166587 11 C s 49 -0.166587 16 C s Vector 17 Occ=2.000000D+00 E=-5.032438D-01 Symmetry=ag - MO Center= -1.7D-15, 7.8D-16, 5.2D-32, r^2= 5.7D+00 + MO Center= -9.0D-16, -9.7D-17, -7.1D-33, r^2= 5.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 7 0.319039 2 C s 22 0.319039 5 C s @@ -2029,7 +2011,7 @@ 31 0.159615 7 H s 33 0.159615 9 H s Vector 18 Occ=2.000000D+00 E=-4.763648D-01 Symmetry=bu - MO Center= -3.4D-15, -5.5D-15, 1.6D-31, r^2= 1.2D+01 + MO Center= 6.1D-16, 4.1D-16, 3.0D-32, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.310100 11 C s 49 -0.310100 16 C s @@ -2039,7 +2021,7 @@ 7 0.142136 2 C s 22 -0.142136 5 C s Vector 19 Occ=2.000000D+00 E=-4.588016D-01 Symmetry=ag - MO Center= 3.7D-15, -6.6D-16, 1.1D-16, r^2= 7.5D+00 + MO Center= 5.4D-16, -4.3D-16, 1.7D-33, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 13 0.198166 3 C px 28 -0.198166 6 C px @@ -2049,7 +2031,7 @@ 12 0.171760 3 C s 27 0.171760 6 C s Vector 20 Occ=2.000000D+00 E=-4.119756D-01 Symmetry=ag - MO Center= 2.1D-16, 2.0D-16, 6.5D-32, r^2= 9.2D+00 + MO Center= -6.1D-15, -2.0D-14, 9.9D-17, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 42 0.208213 12 C px 55 -0.208213 17 C px @@ -2059,7 +2041,7 @@ 45 -0.150136 13 H s 58 -0.150136 18 H s Vector 21 Occ=2.000000D+00 E=-3.896280D-01 Symmetry=bu - MO Center= 2.5D-15, -1.8D-14, -2.1D-20, r^2= 1.0D+01 + MO Center= -3.8D-16, -3.0D-14, 4.2D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 43 0.237833 12 C py 56 0.237833 17 C py @@ -2069,7 +2051,7 @@ 3 -0.146347 1 C px 18 -0.146347 4 C px Vector 22 Occ=2.000000D+00 E=-3.621640D-01 Symmetry=bu - MO Center= -8.7D-16, -8.5D-16, -8.9D-22, r^2= 6.0D+00 + MO Center= -1.1D-15, 3.5D-16, 2.7D-21, r^2= 6.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 32 0.265310 8 H s 34 -0.265310 10 H s @@ -2079,7 +2061,7 @@ 13 0.200025 3 C px 28 0.200025 6 C px Vector 23 Occ=2.000000D+00 E=-3.523547D-01 Symmetry=bu - MO Center= -1.4D-14, -6.6D-16, -8.1D-21, r^2= 8.0D+00 + MO Center= 3.6D-15, 7.8D-15, 5.9D-20, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.246810 1 C px 18 0.246810 4 C px @@ -2089,7 +2071,7 @@ 38 0.196970 11 C py 51 0.196970 16 C py Vector 24 Occ=2.000000D+00 E=-3.494113D-01 Symmetry=ag - MO Center= 1.5D-14, -2.9D-14, -2.9D-18, r^2= 1.4D+01 + MO Center= -1.3D-15, 8.2D-14, 3.5D-17, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 43 0.328039 12 C py 56 -0.328039 17 C py @@ -2099,7 +2081,7 @@ 14 0.122694 3 C py 29 -0.122694 6 C py Vector 25 Occ=2.000000D+00 E=-3.296561D-01 Symmetry=bu - MO Center= -7.6D-15, -2.6D-15, -2.5D-31, r^2= 5.3D+00 + MO Center= 9.9D-16, 8.5D-17, 4.6D-33, r^2= 5.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 8 0.287958 2 C px 23 0.287958 5 C px @@ -2109,7 +2091,7 @@ 13 0.152112 3 C px 28 0.152112 6 C px Vector 26 Occ=2.000000D+00 E=-3.118257D-01 Symmetry=bu - MO Center= 1.1D-15, 4.9D-14, 2.0D-31, r^2= 8.8D+00 + MO Center= 1.4D-15, -6.7D-14, -5.2D-32, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.240642 11 C px 50 0.240642 16 C px @@ -2119,7 +2101,7 @@ 45 -0.184373 13 H s 58 0.184373 18 H s Vector 27 Occ=2.000000D+00 E=-3.042013D-01 Symmetry=ag - MO Center= 3.6D-16, 2.6D-15, 2.8D-31, r^2= 1.2D+01 + MO Center= 2.1D-15, 2.3D-14, 1.7D-15, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 42 0.286640 12 C px 55 -0.286640 17 C px @@ -2129,7 +2111,7 @@ 46 -0.172823 14 H s 59 -0.172823 19 H s Vector 28 Occ=2.000000D+00 E=-2.885243D-01 Symmetry=au - MO Center= 3.6D-16, 2.0D-16, 4.7D-16, r^2= 3.4D+00 + MO Center= 9.7D-16, -4.2D-15, -1.2D-15, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.338341 1 C pz 20 0.338341 4 C pz @@ -2139,7 +2121,7 @@ 44 0.083552 12 C pz 57 0.083552 17 C pz Vector 29 Occ=2.000000D+00 E=-2.636079D-01 Symmetry=bu - MO Center= 1.3D-16, 5.4D-15, 7.4D-24, r^2= 1.2D+01 + MO Center= -1.8D-16, 2.7D-15, -2.4D-32, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.277460 1 C py 19 0.277460 4 C py @@ -2149,7 +2131,7 @@ 38 -0.207604 11 C py 51 -0.207604 16 C py Vector 30 Occ=2.000000D+00 E=-2.536258D-01 Symmetry=ag - MO Center= 4.9D-16, -1.4D-17, -2.0D-16, r^2= 4.9D+00 + MO Center= 1.1D-15, 2.7D-16, -3.9D-16, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 32 0.286830 8 H s 34 0.286830 10 H s @@ -2159,7 +2141,7 @@ 31 -0.189328 7 H s 33 -0.189328 9 H s Vector 31 Occ=2.000000D+00 E=-2.406812D-01 Symmetry=ag - MO Center= 2.3D-16, -4.8D-15, -5.9D-16, r^2= 7.2D+00 + MO Center= 1.3D-16, -3.5D-17, -4.4D-16, r^2= 7.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 38 0.268294 11 C py 51 -0.268294 16 C py @@ -2169,7 +2151,7 @@ 31 0.187703 7 H s 33 0.187703 9 H s Vector 32 Occ=2.000000D+00 E=-2.275910D-01 Symmetry=bg - MO Center= 1.7D-17, 9.4D-17, 1.6D-22, r^2= 7.5D+00 + MO Center= -6.9D-16, 2.0D-14, 7.7D-19, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.368393 11 C pz 52 0.368393 16 C pz @@ -2179,7 +2161,7 @@ 10 0.134741 2 C pz 25 -0.134741 5 C pz Vector 33 Occ=2.000000D+00 E=-1.825056D-01 Symmetry=au - MO Center= -2.4D-15, -5.2D-16, -9.5D-16, r^2= 1.1D+01 + MO Center= -9.8D-16, -1.4D-14, 5.3D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.418889 11 C pz 44 0.420542 12 C pz @@ -2188,14 +2170,14 @@ 15 -0.160557 3 C pz 30 -0.160557 6 C pz Vector 34 Occ=2.000000D+00 E=-1.689855D-01 Symmetry=bg - MO Center= 1.9D-15, -1.7D-16, 6.5D-21, r^2= 2.7D+00 + MO Center= 1.3D-15, -2.3D-17, -8.8D-21, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 10 0.471249 2 C pz 25 -0.471249 5 C pz 15 0.448460 3 C pz 30 -0.448460 6 C pz Vector 35 Occ=2.000000D+00 E=-1.342864D-01 Symmetry=bg - MO Center= -4.4D-16, -1.0D-15, 5.2D-21, r^2= 7.9D+00 + MO Center= -4.2D-16, -1.3D-16, 9.3D-22, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 44 0.396439 12 C pz 57 -0.396439 17 C pz @@ -2205,7 +2187,7 @@ 10 0.198475 2 C pz 25 -0.198475 5 C pz Vector 36 Occ=0.000000D+00 E= 1.821041D-02 Symmetry=au - MO Center= 1.2D-16, 1.6D-15, 1.9D-17, r^2= 7.9D+00 + MO Center= -1.6D-16, 7.7D-16, -7.3D-17, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 44 -0.454815 12 C pz 57 -0.454815 17 C pz @@ -2215,7 +2197,7 @@ 10 -0.218463 2 C pz 25 -0.218463 5 C pz Vector 37 Occ=0.000000D+00 E= 5.623652D-02 Symmetry=au - MO Center= -2.1D-16, 1.7D-16, -5.2D-18, r^2= 2.7D+00 + MO Center= -3.5D-15, -2.7D-16, 6.2D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 10 0.588717 2 C pz 25 0.588717 5 C pz @@ -2223,7 +2205,7 @@ 5 -0.041414 1 C pz 20 -0.041414 4 C pz Vector 38 Occ=0.000000D+00 E= 7.692729D-02 Symmetry=bg - MO Center= 3.5D-16, 3.2D-17, 3.8D-21, r^2= 1.1D+01 + MO Center= 1.8D-15, -5.1D-15, -4.9D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.535677 11 C pz 52 -0.535677 16 C pz @@ -2232,7 +2214,7 @@ 15 -0.212413 3 C pz 30 0.212413 6 C pz Vector 39 Occ=0.000000D+00 E= 1.389122D-01 Symmetry=au - MO Center= 4.5D-16, -2.0D-15, 5.4D-17, r^2= 7.6D+00 + MO Center= 3.8D-17, 4.3D-16, 5.9D-17, r^2= 7.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.518499 11 C pz 52 -0.518499 16 C pz @@ -2242,7 +2224,7 @@ 10 -0.179017 2 C pz 25 -0.179017 5 C pz Vector 40 Occ=0.000000D+00 E= 2.298124D-01 Symmetry=bg - MO Center= -3.1D-16, 2.0D-15, 1.4D-20, r^2= 3.6D+00 + MO Center= 1.6D-15, 3.7D-15, 8.2D-21, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.549198 1 C pz 20 -0.549198 4 C pz @@ -2252,7 +2234,7 @@ 44 -0.141662 12 C pz 57 0.141662 17 C pz Vector 41 Occ=0.000000D+00 E= 2.727972D-01 Symmetry=ag - MO Center= 6.7D-17, -5.1D-18, -4.3D-17, r^2= 8.3D+00 + MO Center= -7.4D-15, 2.5D-14, -2.0D-17, r^2= 8.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 31 -0.407803 7 H s 33 -0.407803 9 H s @@ -2262,7 +2244,7 @@ 46 -0.339683 14 H s 59 -0.339683 19 H s Vector 42 Occ=0.000000D+00 E= 2.828099D-01 Symmetry=bu - MO Center= 3.5D-17, 8.7D-17, -4.2D-23, r^2= 9.9D+00 + MO Center= 9.0D-15, -2.4D-14, -2.0D-20, r^2= 9.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.381264 15 H s 60 -0.381264 20 H s @@ -2272,7 +2254,7 @@ 42 -0.311583 12 C px 55 -0.311583 17 C px Vector 43 Occ=0.000000D+00 E= 3.166177D-01 Symmetry=bu - MO Center= -9.2D-15, -3.6D-14, 2.6D-22, r^2= 7.3D+00 + MO Center= -1.2D-15, -3.5D-15, 7.9D-20, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.577553 11 C s 49 -0.577553 16 C s @@ -2282,7 +2264,7 @@ 41 -0.333655 12 C s 54 0.333655 17 C s Vector 44 Occ=0.000000D+00 E= 3.220579D-01 Symmetry=ag - MO Center= 1.0D-14, 2.9D-14, 1.4D-18, r^2= 1.2D+01 + MO Center= 1.1D-15, 1.0D-16, 1.8D-17, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.518794 13 H s 58 0.518794 18 H s @@ -2292,7 +2274,7 @@ 32 -0.323628 8 H s 34 -0.323628 10 H s Vector 45 Occ=0.000000D+00 E= 3.619586D-01 Symmetry=bu - MO Center= -3.5D-14, -1.9D-13, -4.1D-22, r^2= 1.1D+01 + MO Center= 1.3D-15, 3.1D-16, -6.9D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.565871 3 C s 27 -0.565871 6 C s @@ -2302,7 +2284,7 @@ 46 -0.405169 14 H s 59 0.405169 19 H s Vector 46 Occ=0.000000D+00 E= 3.649510D-01 Symmetry=ag - MO Center= 3.3D-14, 2.0D-13, -2.8D-17, r^2= 1.2D+01 + MO Center= -6.4D-16, -5.5D-15, -5.3D-17, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 41 0.611135 12 C s 54 0.611135 17 C s @@ -2312,7 +2294,7 @@ 47 -0.385031 15 H s 60 -0.385031 20 H s Vector 47 Occ=0.000000D+00 E= 3.708950D-01 Symmetry=bu - MO Center= 4.3D-15, -5.6D-15, 2.6D-22, r^2= 8.7D+00 + MO Center= -3.9D-15, 3.1D-15, -2.0D-19, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 31 0.658447 7 H s 33 -0.658447 9 H s @@ -2322,7 +2304,7 @@ 36 -0.343433 11 C s 49 0.343433 16 C s Vector 48 Occ=0.000000D+00 E= 3.927485D-01 Symmetry=ag - MO Center= -1.1D-15, 2.1D-14, -3.1D-17, r^2= 7.5D+00 + MO Center= 1.9D-15, -9.6D-15, -7.9D-17, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.707695 1 C s 17 0.707695 4 C s @@ -2332,7 +2314,7 @@ 45 0.396851 13 H s 58 0.396851 18 H s Vector 49 Occ=0.000000D+00 E= 4.158433D-01 Symmetry=bu - MO Center= 5.1D-15, -1.0D-14, -3.4D-23, r^2= 1.2D+01 + MO Center= 2.9D-15, 2.0D-14, -1.5D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 41 0.726562 12 C s 54 -0.726562 17 C s @@ -2342,7 +2324,7 @@ 36 -0.386000 11 C s 49 0.386000 16 C s Vector 50 Occ=0.000000D+00 E= 4.413291D-01 Symmetry=ag - MO Center= -2.4D-15, -9.7D-15, 3.8D-17, r^2= 9.6D+00 + MO Center= -1.6D-15, -3.7D-15, -3.3D-17, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 -0.732063 3 C s 27 -0.732063 6 C s @@ -2352,7 +2334,7 @@ 32 0.369586 8 H s 34 0.369586 10 H s Vector 51 Occ=0.000000D+00 E= 4.827928D-01 Symmetry=ag - MO Center= -7.4D-16, 1.0D-15, -1.3D-17, r^2= 5.5D+00 + MO Center= 9.3D-16, -7.1D-15, -3.0D-18, r^2= 5.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.652861 1 C s 17 0.652861 4 C s @@ -2362,7 +2344,7 @@ 36 0.377803 11 C s 49 0.377803 16 C s Vector 52 Occ=0.000000D+00 E= 5.140784D-01 Symmetry=bu - MO Center= 2.6D-16, -4.4D-15, -5.5D-23, r^2= 7.7D+00 + MO Center= -1.3D-15, 1.3D-14, 1.9D-19, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 7 0.685816 2 C s 22 -0.685816 5 C s @@ -2372,7 +2354,7 @@ 46 0.342149 14 H s 59 -0.342149 19 H s Vector 53 Occ=0.000000D+00 E= 5.298835D-01 Symmetry=ag - MO Center= -2.5D-15, -5.1D-16, 2.1D-18, r^2= 4.7D+00 + MO Center= -8.0D-17, -1.7D-15, -2.7D-17, r^2= 4.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 8 0.603569 2 C px 23 -0.603569 5 C px @@ -2382,7 +2364,7 @@ 13 -0.430911 3 C px 28 0.430911 6 C px Vector 54 Occ=0.000000D+00 E= 5.518005D-01 Symmetry=bu - MO Center= 1.1D-15, 1.4D-17, 5.3D-24, r^2= 4.0D+00 + MO Center= -1.5D-15, 1.7D-15, 5.8D-19, r^2= 4.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 9 0.767672 2 C py 24 0.767672 5 C py @@ -2392,7 +2374,7 @@ 14 0.354480 3 C py 29 0.354480 6 C py Vector 55 Occ=0.000000D+00 E= 5.677046D-01 Symmetry=bu - MO Center= -6.8D-16, 6.2D-16, 2.8D-25, r^2= 1.1D+01 + MO Center= -9.0D-17, 1.4D-14, -4.9D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 42 0.600393 12 C px 55 0.600393 17 C px @@ -2402,7 +2384,7 @@ 12 -0.409680 3 C s 27 0.409680 6 C s Vector 56 Occ=0.000000D+00 E= 5.859088D-01 Symmetry=ag - MO Center= -3.3D-16, 4.8D-15, -1.4D-17, r^2= 1.0D+01 + MO Center= -6.7D-16, -2.2D-14, 5.4D-18, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.459086 11 C px 50 -0.459086 16 C px @@ -2412,7 +2394,7 @@ 38 -0.370936 11 C py 51 0.370936 16 C py Vector 57 Occ=0.000000D+00 E= 6.323420D-01 Symmetry=ag - MO Center= 3.7D-16, -5.9D-16, 1.8D-18, r^2= 8.8D+00 + MO Center= 1.5D-15, -8.9D-16, -1.5D-17, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 42 0.543753 12 C px 55 -0.543753 17 C px @@ -2422,7 +2404,7 @@ 36 0.478883 11 C s 49 0.478883 16 C s Vector 58 Occ=0.000000D+00 E= 6.813202D-01 Symmetry=bu - MO Center= -3.8D-16, 6.3D-16, -7.4D-25, r^2= 9.6D+00 + MO Center= -1.0D-16, -7.6D-16, -5.4D-20, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.666201 11 C px 50 0.666201 16 C px @@ -2432,7 +2414,7 @@ 3 -0.460450 1 C px 18 -0.460450 4 C px Vector 59 Occ=0.000000D+00 E= 7.418134D-01 Symmetry=ag - MO Center= 2.0D-15, 3.3D-15, -6.3D-18, r^2= 5.2D+00 + MO Center= 1.0D-16, 9.5D-16, 1.4D-16, r^2= 5.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.726299 1 C px 18 -0.726299 4 C px @@ -2442,7 +2424,7 @@ 14 0.388560 3 C py 29 -0.388560 6 C py Vector 60 Occ=0.000000D+00 E= 7.504626D-01 Symmetry=bu - MO Center= -8.8D-16, -4.0D-15, -3.7D-27, r^2= 2.8D+00 + MO Center= -3.1D-16, 4.0D-16, -7.5D-22, r^2= 2.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.641013 1 C py 19 0.641013 4 C py @@ -2463,32 +2445,32 @@ 2 0.03295 0.03269 0.00326 -0.00333 -0.00816 -0.00304 3 -0.00029 -0.00021 0.00064 -0.00055 -0.00166 -0.00507 4 0.00147 0.00111 -0.00438 0.00430 -0.00336 -0.00207 - 5 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 5 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 6 -0.02479 -0.02510 0.03088 -0.03374 0.65237 0.64222 7 -0.00880 -0.00775 0.00177 -0.00171 0.03259 0.03219 8 0.00379 0.00359 -0.00027 0.00032 -0.00148 -0.00121 9 0.00275 0.00324 0.00010 0.00003 0.00217 0.00218 - 10 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 10 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 11 0.02307 -0.02323 -0.01756 -0.00776 -0.24906 -0.27643 12 0.00874 -0.00765 -0.00124 -0.00017 -0.01808 -0.01914 13 -0.00455 0.00455 0.00017 0.00030 -0.00049 -0.00040 14 0.00109 -0.00164 0.00025 -0.00014 0.00473 0.00449 - 15 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 15 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 16 -0.69841 0.69840 0.03437 0.03521 -0.03451 0.01587 17 -0.03295 0.03269 -0.00326 -0.00333 0.00816 -0.00304 18 -0.00029 0.00021 0.00064 0.00055 -0.00166 0.00507 19 0.00147 -0.00111 -0.00438 -0.00430 -0.00336 0.00207 - 20 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 20 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 21 0.02479 -0.02510 -0.03088 -0.03374 -0.65237 0.64222 22 0.00880 -0.00775 -0.00177 -0.00171 -0.03259 0.03219 23 0.00379 -0.00359 -0.00027 -0.00032 -0.00148 0.00121 24 0.00275 -0.00324 0.00010 -0.00003 0.00217 -0.00218 - 25 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 25 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 26 -0.02307 -0.02323 0.01756 -0.00776 0.24906 -0.27643 27 -0.00874 -0.00765 0.00124 -0.00017 0.01808 -0.01914 28 -0.00455 -0.00455 0.00017 -0.00030 -0.00049 0.00040 29 0.00109 0.00164 0.00025 0.00014 0.00473 -0.00449 - 30 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 30 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 31 0.00042 0.00027 -0.00028 0.00028 -0.00620 -0.00615 32 -0.00042 0.00027 0.00005 -0.00008 0.00254 0.00271 33 -0.00042 0.00027 0.00028 0.00028 0.00620 -0.00615 @@ -2497,12 +2479,12 @@ 36 0.00691 -0.00700 0.03154 0.03152 -0.00163 0.00121 37 0.00091 -0.00092 0.00112 0.00112 -0.00007 -0.00004 38 -0.00398 0.00403 0.00144 0.00145 -0.00011 0.00012 - 39 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 39 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 40 -0.00020 0.00021 -0.01048 -0.01048 0.00116 -0.00048 41 -0.00061 0.00061 -0.00837 -0.00837 0.00053 -0.00033 42 0.00007 -0.00007 0.00356 0.00356 -0.00016 0.00017 43 0.00034 -0.00035 0.00338 0.00338 -0.00024 0.00016 - 44 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 45 -0.00041 0.00043 -0.00665 -0.00665 0.00038 -0.00028 46 0.00003 -0.00003 0.00027 0.00027 -0.00000 0.00001 47 0.00016 -0.00014 0.00023 0.00024 -0.00013 -0.00013 @@ -2510,12 +2492,12 @@ 49 -0.00691 -0.00700 -0.03154 0.03152 0.00163 0.00121 50 0.00091 0.00092 0.00112 -0.00112 -0.00007 0.00004 51 -0.00398 -0.00403 0.00144 -0.00145 -0.00011 -0.00012 - 52 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 52 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 53 0.00020 0.00021 0.01048 -0.01048 -0.00116 -0.00048 54 0.00061 0.00061 0.00837 -0.00837 -0.00053 -0.00033 55 0.00007 0.00007 0.00356 -0.00356 -0.00016 -0.00017 56 0.00034 0.00035 0.00338 -0.00338 -0.00024 -0.00016 - 57 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 57 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 58 0.00041 0.00043 0.00665 -0.00665 -0.00038 -0.00028 59 -0.00003 -0.00003 -0.00027 0.00027 0.00000 0.00001 60 -0.00016 -0.00014 -0.00023 0.00024 0.00013 -0.00013 @@ -2526,32 +2508,32 @@ 2 0.00366 -0.00755 -0.00018 0.00018 0.27091 0.26907 3 -0.00531 0.00268 -0.00003 0.00003 -0.01069 -0.00434 4 0.00037 -0.00246 0.00003 -0.00003 0.05081 -0.02654 - 5 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 5 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 6 0.25133 0.27599 -0.00022 0.00065 -0.09926 -0.03647 7 0.00496 0.00619 0.00000 -0.00010 0.24686 0.09487 8 0.00050 0.00064 -0.00001 0.00004 -0.05994 -0.02736 9 -0.00417 -0.00398 -0.00011 0.00002 0.01434 -0.06270 - 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 10 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 11 0.65379 0.64294 0.00126 0.00134 -0.09979 0.04936 12 0.02763 0.02671 -0.00002 -0.00004 0.24796 -0.12829 13 -0.00117 -0.00088 0.00000 -0.00000 -0.05001 0.04790 14 0.00079 0.00114 -0.00017 -0.00015 -0.03509 -0.04699 - 15 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 15 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 16 0.01354 0.03368 0.00040 0.00042 -0.10834 0.10264 17 -0.00366 -0.00755 0.00018 0.00018 0.27091 -0.26907 18 -0.00531 -0.00268 -0.00003 -0.00003 0.01069 -0.00434 19 0.00037 0.00246 0.00003 0.00003 -0.05081 -0.02654 - 20 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 20 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 21 -0.25133 0.27599 0.00022 0.00065 -0.09926 0.03647 22 -0.00496 0.00619 -0.00000 -0.00010 0.24686 -0.09487 23 0.00050 -0.00064 -0.00001 -0.00004 0.05994 -0.02736 24 -0.00417 0.00398 -0.00011 -0.00002 -0.01434 -0.06270 - 25 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 25 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 26 -0.65379 0.64294 -0.00126 0.00134 -0.09979 -0.04936 27 -0.02763 0.02671 0.00002 -0.00004 0.24796 0.12829 28 -0.00117 0.00088 0.00000 0.00000 0.05001 0.04790 29 0.00079 -0.00114 -0.00017 0.00015 0.03509 -0.04699 - 30 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 30 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 31 -0.00217 -0.00257 0.00001 -0.00002 0.04311 0.02436 32 -0.00610 -0.00614 0.00018 0.00018 0.04431 -0.03579 33 0.00217 -0.00257 -0.00001 -0.00002 0.04311 -0.02436 @@ -2560,12 +2542,12 @@ 36 0.00028 0.00084 -0.00737 -0.00737 0.11074 -0.28924 37 -0.00000 0.00005 -0.00351 -0.00351 0.01335 -0.04059 38 0.00000 0.00021 -0.00335 -0.00335 -0.02500 0.00316 - 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 39 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 40 -0.00114 -0.00174 0.70025 0.70025 -0.02251 0.08379 41 -0.00018 -0.00043 0.03197 0.03197 0.05613 -0.21499 42 -0.00006 0.00004 -0.00105 -0.00105 -0.01123 0.03956 43 0.00011 0.00023 -0.00102 -0.00102 -0.01870 0.04992 - 44 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 44 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 45 -0.00007 -0.00028 0.00005 0.00005 0.02161 -0.06423 46 -0.00002 -0.00002 -0.00663 -0.00663 0.00908 -0.04390 47 0.00024 0.00024 -0.00665 -0.00665 0.01349 -0.05123 @@ -2573,12 +2555,12 @@ 49 -0.00028 0.00084 0.00737 -0.00737 0.11074 0.28924 50 -0.00000 -0.00005 -0.00351 0.00351 -0.01335 -0.04059 51 0.00000 -0.00021 -0.00335 0.00335 0.02500 0.00316 - 52 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 52 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 53 0.00114 -0.00174 -0.70025 0.70025 -0.02251 -0.08379 54 0.00018 -0.00043 -0.03197 0.03197 0.05613 0.21499 55 -0.00006 -0.00004 -0.00105 0.00105 0.01123 0.03956 56 0.00011 -0.00023 -0.00102 0.00102 0.01870 0.04992 - 57 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 57 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 58 0.00007 -0.00028 -0.00005 0.00005 0.02161 0.06423 59 0.00002 -0.00002 0.00663 -0.00663 0.00908 0.04390 60 -0.00024 0.00024 0.00665 -0.00665 0.01349 0.05123 @@ -2589,7 +2571,7 @@ 2 0.01530 0.05236 0.27673 -0.17950 -0.19348 0.02747 3 0.00574 0.12965 -0.02394 -0.15377 0.16520 -0.05022 4 -0.09201 0.02938 0.05879 0.04799 0.07496 0.11742 - 5 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 5 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 6 0.04312 -0.13605 -0.03914 0.02351 -0.10883 -0.04678 7 -0.11121 0.36375 0.10735 -0.06818 0.31904 0.14214 8 0.01867 -0.00389 -0.03840 0.02012 0.08725 -0.00689 @@ -2599,22 +2581,22 @@ 12 -0.08892 0.31173 -0.21358 0.25982 -0.12271 -0.07434 13 0.00222 0.03718 0.05915 0.05554 0.11352 0.03224 14 0.05018 -0.06657 -0.04257 0.00893 -0.16798 -0.07488 - 15 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 15 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 16 -0.00441 0.01951 0.10159 0.06142 0.06571 0.01074 17 0.01530 -0.05236 -0.27673 -0.17950 -0.19348 -0.02747 18 -0.00574 0.12965 -0.02394 0.15377 -0.16520 -0.05022 19 0.09201 0.02938 0.05879 -0.04799 -0.07496 0.11742 - 20 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 20 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 21 0.04312 0.13605 0.03914 0.02351 -0.10883 0.04678 22 -0.11121 -0.36375 -0.10735 -0.06818 0.31904 -0.14214 23 -0.01867 -0.00389 -0.03840 -0.02012 -0.08725 -0.00689 24 0.03280 0.04904 -0.09559 -0.16930 0.00229 0.00431 - 25 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 25 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 26 0.03452 0.11676 -0.07802 -0.09115 0.04178 -0.02460 27 -0.08892 -0.31173 0.21358 0.25982 -0.12271 0.07434 28 -0.00222 0.03718 0.05915 -0.05554 -0.11352 0.03224 29 -0.05018 -0.06657 -0.04257 -0.00893 0.16798 -0.07488 - 30 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 30 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 31 -0.02077 0.09739 0.02945 -0.04348 0.15961 0.04239 32 -0.00848 0.08514 -0.05304 0.12294 -0.05506 -0.05565 33 -0.02077 -0.09739 -0.02945 -0.04348 0.15961 -0.04239 @@ -2623,12 +2605,12 @@ 36 0.31714 -0.00963 0.14820 -0.16659 -0.04788 0.31010 37 0.05396 0.02306 0.04374 0.09158 -0.02470 -0.12415 38 0.05740 0.01831 0.12001 0.09686 0.09499 -0.02989 - 39 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 39 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 40 -0.12092 -0.01319 -0.10882 -0.07001 -0.05283 0.08064 41 0.31614 0.03407 0.29393 0.20216 0.15793 -0.24943 42 -0.05328 0.00328 -0.03859 0.04775 -0.00426 -0.13624 43 -0.05237 -0.00615 -0.01446 0.02890 0.06077 -0.08145 - 44 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 44 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 45 0.07528 -0.01161 0.03917 -0.09120 0.01299 0.17811 46 0.07420 0.00777 0.08599 0.07930 0.08609 -0.12306 47 0.07549 0.01551 0.07221 0.09879 0.03910 -0.16405 @@ -2636,12 +2618,12 @@ 49 0.31714 0.00963 -0.14820 -0.16659 -0.04788 -0.31010 50 -0.05396 0.02306 0.04374 -0.09158 0.02470 -0.12415 51 -0.05740 0.01831 0.12001 -0.09686 -0.09499 -0.02989 - 52 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 52 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 53 -0.12092 0.01319 0.10882 -0.07001 -0.05283 -0.08064 54 0.31614 -0.03407 -0.29393 0.20216 0.15793 0.24943 55 0.05328 0.00328 -0.03859 -0.04775 0.00426 -0.13624 56 0.05237 -0.00615 -0.01446 -0.02890 -0.06077 -0.08145 - 57 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 57 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 58 0.07528 0.01161 -0.03917 -0.09120 0.01299 -0.17811 59 0.07420 -0.00777 -0.08599 0.07930 0.08609 0.12306 60 0.07549 -0.01551 -0.07221 0.09879 0.03910 0.16405 @@ -2652,32 +2634,32 @@ 2 -0.14488 0.12574 0.03785 0.25722 0.02947 0.06600 3 -0.01733 0.06346 -0.14635 -0.00516 0.24681 0.01258 4 -0.14662 -0.12458 -0.13199 0.07181 -0.10350 -0.01300 - 5 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 6 -0.00974 -0.01418 0.01385 0.04439 0.01578 0.02610 7 0.03678 0.05556 -0.04595 -0.15603 -0.05608 -0.08787 8 0.18823 0.12657 0.01154 -0.21897 -0.15260 0.00103 9 0.08481 -0.15796 0.20039 0.00800 -0.09497 -0.06672 - 10 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 10 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 11 -0.05365 0.02393 -0.03603 -0.04092 -0.03694 -0.02069 12 0.17176 -0.06742 0.11792 0.14505 0.12166 0.07644 13 0.19817 0.06677 0.09580 0.20003 -0.21440 0.02843 14 0.05026 0.14757 -0.13165 0.13520 0.05824 0.12269 - 15 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 15 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 16 0.05022 -0.03819 0.01030 0.07594 0.00754 -0.01990 17 -0.14488 0.12574 -0.03785 -0.25722 -0.02947 0.06600 18 0.01733 -0.06346 -0.14635 -0.00516 0.24681 -0.01258 19 0.14662 0.12458 -0.13199 0.07181 -0.10350 0.01300 - 20 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 21 -0.00974 -0.01418 -0.01385 -0.04439 -0.01578 0.02610 22 0.03678 0.05556 0.04595 0.15603 0.05608 -0.08787 23 -0.18823 -0.12657 0.01154 -0.21897 -0.15260 -0.00103 24 -0.08481 0.15796 0.20039 0.00800 -0.09497 0.06672 - 25 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 25 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 26 -0.05365 0.02393 0.03603 0.04092 0.03694 -0.02069 27 0.17176 -0.06742 -0.11792 -0.14505 -0.12166 0.07644 28 -0.19817 -0.06677 0.09580 0.20003 -0.21440 -0.02843 29 -0.05026 -0.14757 -0.13165 0.13520 0.05824 -0.12269 - 30 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 30 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 31 0.10377 0.12797 -0.06544 -0.24036 -0.11925 -0.01667 32 0.16530 0.08555 0.02957 0.26531 -0.07000 0.10662 33 0.10377 0.12797 0.06544 0.24036 0.11925 -0.01667 @@ -2691,7 +2673,7 @@ 41 -0.17450 0.05934 0.05112 -0.04799 -0.01112 -0.00684 42 -0.07345 0.20821 -0.04263 0.01441 -0.23814 0.06685 43 -0.08107 -0.02352 0.23783 -0.09769 0.04415 0.32804 - 44 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 44 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 45 0.10900 -0.15014 0.14112 0.05436 0.00402 0.17285 46 -0.10451 -0.01676 0.19146 -0.09792 0.06854 0.24379 47 -0.08444 0.17399 -0.04629 0.04255 -0.20092 0.00522 @@ -2711,192 +2693,192 @@ 25 26 27 28 29 30 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00190 -0.00490 0.02762 -0.00000 0.01201 -0.00335 - 2 0.00954 0.01897 -0.09841 0.00000 -0.05596 0.00786 - 3 -0.04015 -0.16392 0.09283 -0.00000 -0.07661 0.28496 - 4 -0.12565 -0.13005 0.02169 -0.00000 0.27746 0.13804 + 1 -0.00190 -0.00490 0.02762 0.00000 0.01201 -0.00335 + 2 0.00954 0.01897 -0.09841 -0.00000 -0.05596 0.00786 + 3 -0.04015 -0.16392 0.09283 0.00000 -0.07661 0.28496 + 4 -0.12565 -0.13005 0.02169 0.00000 0.27746 0.13804 5 0.00000 0.00000 -0.00000 0.33834 -0.00000 0.00000 6 0.03487 0.01411 0.00115 0.00000 -0.01083 -0.00778 7 -0.11166 -0.05131 -0.01381 -0.00000 0.03603 0.01936 - 8 0.28796 0.04219 -0.13845 0.00000 -0.06725 -0.24002 + 8 0.28796 0.04219 -0.13845 -0.00000 -0.06725 -0.24002 9 -0.13927 0.23749 0.12219 0.00000 0.00219 -0.17751 - 10 0.00000 0.00000 -0.00000 0.30000 -0.00000 0.00000 + 10 0.00000 0.00000 -0.00000 0.30000 -0.00000 -0.00000 11 0.00795 -0.00931 -0.00056 0.00000 0.01520 0.00908 12 -0.02075 0.02986 -0.00002 -0.00000 -0.05077 -0.02027 - 13 0.15211 0.08938 0.06386 -0.00000 0.13921 0.24218 + 13 0.15211 0.08938 0.06386 0.00000 0.13921 0.24218 14 0.23399 -0.20271 -0.14440 -0.00000 0.04229 0.12540 - 15 0.00000 0.00000 -0.00000 0.30020 -0.00000 0.00000 - 16 0.00190 0.00490 0.02762 -0.00000 -0.01201 -0.00335 - 17 -0.00954 -0.01897 -0.09841 0.00000 0.05596 0.00786 - 18 -0.04015 -0.16392 -0.09283 0.00000 -0.07661 -0.28496 + 15 0.00000 0.00000 -0.00000 0.30020 -0.00000 -0.00000 + 16 0.00190 0.00490 0.02762 0.00000 -0.01201 -0.00335 + 17 -0.00954 -0.01897 -0.09841 -0.00000 0.05596 0.00786 + 18 -0.04015 -0.16392 -0.09283 -0.00000 -0.07661 -0.28496 19 -0.12565 -0.13005 -0.02169 0.00000 0.27746 -0.13804 20 0.00000 0.00000 -0.00000 0.33834 -0.00000 0.00000 21 -0.03487 -0.01411 0.00115 0.00000 0.01083 -0.00778 22 0.11166 0.05131 -0.01381 -0.00000 -0.03603 0.01936 - 23 0.28796 0.04219 0.13845 -0.00000 -0.06725 0.24002 + 23 0.28796 0.04219 0.13845 0.00000 -0.06725 0.24002 24 -0.13927 0.23749 -0.12219 -0.00000 0.00219 0.17751 - 25 0.00000 0.00000 -0.00000 0.30000 -0.00000 0.00000 + 25 0.00000 0.00000 -0.00000 0.30000 -0.00000 -0.00000 26 -0.00795 0.00931 -0.00056 -0.00000 -0.01520 0.00908 27 0.02075 -0.02986 -0.00002 0.00000 0.05077 -0.02027 - 28 0.15211 0.08938 -0.06386 0.00000 0.13921 -0.24218 + 28 0.15211 0.08938 -0.06386 -0.00000 0.13921 -0.24218 29 0.23399 -0.20271 0.14440 0.00000 0.04229 -0.12540 - 30 0.00000 0.00000 -0.00000 0.30020 -0.00000 0.00000 - 31 0.21980 -0.04891 -0.15200 0.00000 -0.03012 -0.18933 + 30 0.00000 0.00000 -0.00000 0.30020 -0.00000 -0.00000 + 31 0.21980 -0.04891 -0.15200 -0.00000 -0.03012 -0.18933 32 0.21033 -0.04684 0.00799 -0.00000 0.06105 0.28683 - 33 -0.21980 0.04891 -0.15200 0.00000 0.03012 -0.18933 + 33 -0.21980 0.04891 -0.15200 -0.00000 0.03012 -0.18933 34 -0.21033 0.04684 0.00799 -0.00000 -0.06105 0.28683 - 35 -0.00214 -0.00134 -0.01905 0.00000 -0.00357 0.00761 + 35 -0.00214 -0.00134 -0.01905 -0.00000 -0.00357 0.00761 36 0.00021 -0.01559 0.07819 0.00000 0.01638 -0.03880 37 0.00592 0.24064 -0.17688 -0.00000 0.16852 0.05750 38 0.13756 0.14857 -0.07041 -0.00000 -0.20760 0.11454 - 39 0.00000 0.00000 0.00000 0.15835 -0.00000 0.00000 + 39 0.00000 -0.00000 -0.00000 0.15835 -0.00000 0.00000 40 0.00490 -0.02226 0.00850 0.00000 0.00263 -0.00660 41 -0.02555 0.05999 -0.02026 -0.00000 -0.00652 0.01620 42 -0.14739 -0.16203 0.28664 0.00000 -0.16186 -0.11973 - 43 -0.00417 -0.20943 -0.11367 0.00000 0.18394 -0.05834 - 44 0.00000 0.00000 0.00000 0.08355 -0.00000 0.00000 + 43 -0.00417 -0.20943 -0.11367 -0.00000 0.18394 -0.05834 + 44 -0.00000 -0.00000 -0.00000 0.08355 -0.00000 0.00000 45 0.01060 -0.18437 0.18350 0.00000 -0.22721 -0.06880 - 46 0.00944 -0.12693 -0.17282 0.00000 0.23351 -0.02883 + 46 0.00944 -0.12693 -0.17282 -0.00000 0.23351 -0.02883 47 -0.10073 -0.08333 0.27489 0.00000 -0.22398 -0.04883 - 48 0.00214 0.00134 -0.01905 0.00000 0.00357 0.00761 - 49 -0.00021 0.01559 0.07819 -0.00000 -0.01638 -0.03880 + 48 0.00214 0.00134 -0.01905 -0.00000 0.00357 0.00761 + 49 -0.00021 0.01559 0.07819 0.00000 -0.01638 -0.03880 50 0.00592 0.24064 0.17688 0.00000 0.16852 -0.05750 51 0.13756 0.14857 0.07041 0.00000 -0.20760 -0.11454 - 52 0.00000 0.00000 0.00000 0.15835 -0.00000 0.00000 + 52 -0.00000 -0.00000 -0.00000 0.15835 -0.00000 0.00000 53 -0.00490 0.02226 0.00850 0.00000 -0.00263 -0.00660 - 54 0.02555 -0.05999 -0.02026 0.00000 0.00652 0.01620 + 54 0.02555 -0.05999 -0.02026 -0.00000 0.00652 0.01620 55 -0.14739 -0.16203 -0.28664 -0.00000 -0.16186 0.11973 - 56 -0.00417 -0.20943 0.11367 -0.00000 0.18394 0.05834 - 57 0.00000 0.00000 0.00000 0.08355 -0.00000 0.00000 + 56 -0.00417 -0.20943 0.11367 0.00000 0.18394 0.05834 + 57 -0.00000 -0.00000 -0.00000 0.08355 -0.00000 0.00000 58 -0.01060 0.18437 0.18350 0.00000 0.22721 -0.06880 - 59 -0.00944 0.12693 -0.17282 0.00000 -0.23351 -0.02883 - 60 0.10073 0.08333 0.27489 -0.00000 0.22398 -0.04883 + 59 -0.00944 0.12693 -0.17282 -0.00000 -0.23351 -0.02883 + 60 0.10073 0.08333 0.27489 0.00000 0.22398 -0.04883 31 32 33 34 35 36 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00920 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 2 -0.05345 -0.00000 0.00000 0.00000 0.00000 0.00000 - 3 -0.13915 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 1 0.00920 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 2 -0.05345 0.00000 0.00000 -0.00000 0.00000 0.00000 + 3 -0.13915 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 4 0.25265 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 5 -0.00000 0.35462 -0.01229 0.02167 0.37782 0.43728 - 6 0.00556 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 7 -0.01482 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 8 0.08045 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 9 -0.22065 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 5 0.00000 0.35462 -0.01229 0.02167 0.37782 0.43728 + 6 0.00556 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 7 -0.01482 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 8 0.08045 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 9 -0.22065 -0.00000 0.00000 -0.00000 0.00000 -0.00000 10 -0.00000 0.13474 -0.16941 0.47125 0.19848 -0.21846 - 11 0.00199 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 12 -0.00810 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 13 -0.16881 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 14 0.21724 0.00000 -0.00000 0.00000 0.00000 0.00000 + 11 0.00199 0.00000 -0.00000 0.00000 0.00000 0.00000 + 12 -0.00810 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 13 -0.16881 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 14 0.21724 0.00000 -0.00000 0.00000 0.00000 -0.00000 15 -0.00000 -0.14710 -0.16056 0.44846 -0.24229 -0.28866 - 16 0.00920 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 17 -0.05345 -0.00000 0.00000 0.00000 0.00000 0.00000 - 18 0.13915 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 16 0.00920 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 17 -0.05345 0.00000 0.00000 -0.00000 0.00000 0.00000 + 18 0.13915 0.00000 0.00000 -0.00000 0.00000 0.00000 19 -0.25265 -0.00000 0.00000 -0.00000 -0.00000 0.00000 20 0.00000 -0.35462 -0.01229 -0.02167 -0.37782 0.43728 - 21 0.00556 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 22 -0.01482 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 23 -0.08045 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 24 0.22065 0.00000 -0.00000 0.00000 0.00000 0.00000 + 21 0.00556 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 22 -0.01482 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 23 -0.08045 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 24 0.22065 0.00000 -0.00000 0.00000 -0.00000 0.00000 25 -0.00000 -0.13474 -0.16941 -0.47125 -0.19848 -0.21846 - 26 0.00199 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 27 -0.00810 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 28 0.16881 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 29 -0.21724 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 26 0.00199 0.00000 -0.00000 0.00000 0.00000 0.00000 + 27 -0.00810 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 28 0.16881 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 29 -0.21724 -0.00000 0.00000 -0.00000 -0.00000 0.00000 30 -0.00000 0.14710 -0.16056 -0.44846 0.24229 -0.28866 - 31 0.18770 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 32 0.05092 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 33 0.18770 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 34 0.05092 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 35 0.02261 0.00000 0.00000 0.00000 0.00000 -0.00000 - 36 -0.09419 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 37 -0.11250 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 38 0.26829 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 31 0.18770 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 32 0.05092 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 33 0.18770 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 34 0.05092 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 35 0.02261 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 36 -0.09419 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 37 -0.11250 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 38 0.26829 -0.00000 -0.00000 0.00000 0.00000 -0.00000 39 0.00000 -0.36839 0.41889 0.00081 0.23390 0.27765 - 40 -0.00348 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 41 0.00584 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 40 -0.00348 0.00000 0.00000 0.00000 0.00000 -0.00000 + 41 0.00584 -0.00000 0.00000 -0.00000 -0.00000 0.00000 42 0.03589 0.00000 0.00000 0.00000 0.00000 -0.00000 - 43 -0.12688 -0.00000 0.00000 0.00000 0.00000 0.00000 + 43 -0.12688 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 44 0.00000 -0.26680 0.42054 0.01811 0.39644 -0.45482 - 45 0.17064 0.00000 -0.00000 0.00000 0.00000 0.00000 + 45 0.17064 0.00000 -0.00000 0.00000 -0.00000 -0.00000 46 -0.15662 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 47 0.11736 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 48 0.02261 0.00000 0.00000 0.00000 0.00000 -0.00000 - 49 -0.09419 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 50 0.11250 0.00000 0.00000 0.00000 0.00000 0.00000 - 51 -0.26829 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 47 0.11736 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 48 0.02261 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 49 -0.09419 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 50 0.11250 0.00000 -0.00000 0.00000 0.00000 0.00000 + 51 -0.26829 0.00000 0.00000 -0.00000 -0.00000 0.00000 52 0.00000 0.36839 0.41889 -0.00081 -0.23390 0.27765 - 53 -0.00348 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 54 0.00584 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 53 -0.00348 0.00000 0.00000 0.00000 0.00000 -0.00000 + 54 0.00584 -0.00000 0.00000 -0.00000 -0.00000 0.00000 55 -0.03589 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 56 0.12688 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 56 0.12688 0.00000 -0.00000 0.00000 0.00000 0.00000 57 0.00000 0.26680 0.42054 -0.01811 -0.39644 -0.45482 - 58 0.17064 0.00000 -0.00000 0.00000 0.00000 0.00000 + 58 0.17064 0.00000 -0.00000 0.00000 -0.00000 -0.00000 59 -0.15662 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 60 0.11736 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 60 0.11736 0.00000 -0.00000 0.00000 -0.00000 0.00000 37 38 39 40 41 42 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 -0.00000 -0.00000 -0.00000 -0.07041 0.05690 - 2 0.00000 0.00000 0.00000 0.00000 0.40333 -0.32242 - 3 -0.00000 -0.00000 -0.00000 0.00000 0.08572 -0.21887 - 4 0.00000 0.00000 -0.00000 0.00000 -0.33354 0.28115 - 5 -0.04141 -0.01970 0.50261 0.54920 -0.00000 -0.00000 - 6 0.00000 -0.00000 0.00000 0.00000 -0.03261 -0.01535 - 7 -0.00000 0.00000 -0.00000 -0.00000 0.19838 0.08247 - 8 0.00000 0.00000 0.00000 0.00000 0.26936 -0.29120 - 9 -0.00000 0.00000 0.00000 0.00000 -0.03805 0.08227 - 10 0.58872 0.22176 -0.17902 -0.47620 -0.00000 -0.00000 - 11 0.00000 0.00000 0.00000 0.00000 -0.04253 0.03169 - 12 0.00000 -0.00000 -0.00000 -0.00000 0.25520 -0.18586 - 13 0.00000 -0.00000 -0.00000 -0.00000 0.18266 -0.21627 - 14 0.00000 0.00000 -0.00000 -0.00000 0.11811 0.03918 + 1 0.00000 -0.00000 -0.00000 0.00000 -0.07041 0.05690 + 2 -0.00000 0.00000 0.00000 -0.00000 0.40333 -0.32242 + 3 0.00000 0.00000 0.00000 -0.00000 0.08572 -0.21887 + 4 -0.00000 0.00000 0.00000 0.00000 -0.33354 0.28115 + 5 -0.04141 -0.01970 0.50261 0.54920 0.00000 -0.00000 + 6 0.00000 0.00000 0.00000 -0.00000 -0.03261 -0.01535 + 7 0.00000 -0.00000 -0.00000 0.00000 0.19838 0.08247 + 8 -0.00000 0.00000 0.00000 -0.00000 0.26936 -0.29120 + 9 0.00000 0.00000 -0.00000 -0.00000 -0.03805 0.08227 + 10 0.58872 0.22176 -0.17902 -0.47620 -0.00000 0.00000 + 11 0.00000 -0.00000 -0.00000 0.00000 -0.04253 0.03169 + 12 -0.00000 0.00000 0.00000 -0.00000 0.25520 -0.18586 + 13 -0.00000 -0.00000 0.00000 -0.00000 0.18266 -0.21627 + 14 0.00000 0.00000 -0.00000 0.00000 0.11811 0.03918 15 -0.54864 -0.21241 -0.21187 0.47857 0.00000 -0.00000 - 16 -0.00000 -0.00000 -0.00000 -0.00000 -0.07041 -0.05690 - 17 0.00000 0.00000 0.00000 0.00000 0.40333 0.32242 - 18 0.00000 0.00000 0.00000 -0.00000 -0.08572 -0.21887 - 19 -0.00000 -0.00000 0.00000 -0.00000 0.33354 0.28115 + 16 0.00000 -0.00000 -0.00000 0.00000 -0.07041 -0.05690 + 17 -0.00000 0.00000 0.00000 -0.00000 0.40333 0.32242 + 18 -0.00000 -0.00000 -0.00000 0.00000 -0.08572 -0.21887 + 19 0.00000 -0.00000 -0.00000 -0.00000 0.33354 0.28115 20 -0.04141 0.01970 0.50261 -0.54920 -0.00000 -0.00000 - 21 0.00000 -0.00000 0.00000 0.00000 -0.03261 0.01535 - 22 -0.00000 0.00000 -0.00000 -0.00000 0.19838 -0.08247 - 23 -0.00000 -0.00000 -0.00000 -0.00000 -0.26936 -0.29120 - 24 0.00000 -0.00000 -0.00000 -0.00000 0.03805 0.08227 + 21 0.00000 0.00000 0.00000 -0.00000 -0.03261 0.01535 + 22 0.00000 -0.00000 -0.00000 0.00000 0.19838 -0.08247 + 23 0.00000 -0.00000 -0.00000 0.00000 -0.26936 -0.29120 + 24 -0.00000 -0.00000 0.00000 0.00000 0.03805 0.08227 25 0.58872 -0.22176 -0.17902 0.47620 0.00000 -0.00000 - 26 0.00000 0.00000 0.00000 0.00000 -0.04253 -0.03169 - 27 0.00000 -0.00000 -0.00000 -0.00000 0.25520 0.18586 - 28 -0.00000 0.00000 0.00000 0.00000 -0.18266 -0.21627 - 29 -0.00000 -0.00000 0.00000 0.00000 -0.11811 0.03918 - 30 -0.54864 0.21241 -0.21187 -0.47857 -0.00000 -0.00000 - 31 0.00000 -0.00000 0.00000 0.00000 -0.40780 0.26582 - 32 -0.00000 -0.00000 -0.00000 0.00000 -0.40537 0.20812 - 33 0.00000 -0.00000 0.00000 0.00000 -0.40780 -0.26582 - 34 -0.00000 -0.00000 -0.00000 0.00000 -0.40537 -0.20812 - 35 0.00000 0.00000 0.00000 -0.00000 0.06088 0.02158 - 36 -0.00000 0.00000 -0.00000 0.00000 -0.33513 -0.11485 - 37 0.00000 -0.00000 -0.00000 -0.00000 -0.18782 -0.27622 - 38 0.00000 0.00000 0.00000 -0.00000 0.38668 0.35284 - 39 0.00025 0.53568 -0.51850 0.26315 -0.00000 -0.00000 + 26 0.00000 -0.00000 -0.00000 0.00000 -0.04253 -0.03169 + 27 -0.00000 0.00000 0.00000 -0.00000 0.25520 0.18586 + 28 0.00000 0.00000 -0.00000 0.00000 -0.18266 -0.21627 + 29 -0.00000 -0.00000 0.00000 -0.00000 -0.11811 0.03918 + 30 -0.54864 0.21241 -0.21187 -0.47857 -0.00000 0.00000 + 31 0.00000 0.00000 -0.00000 0.00000 -0.40780 0.26582 + 32 0.00000 0.00000 0.00000 0.00000 -0.40537 0.20812 + 33 0.00000 0.00000 -0.00000 0.00000 -0.40780 -0.26582 + 34 0.00000 0.00000 0.00000 0.00000 -0.40537 -0.20812 + 35 -0.00000 -0.00000 0.00000 -0.00000 0.06088 0.02158 + 36 0.00000 0.00000 -0.00000 0.00000 -0.33513 -0.11485 + 37 0.00000 0.00000 0.00000 0.00000 -0.18782 -0.27622 + 38 -0.00000 0.00000 -0.00000 -0.00000 0.38668 0.35284 + 39 0.00025 0.53568 -0.51850 0.26315 0.00000 -0.00000 40 -0.00000 -0.00000 -0.00000 0.00000 -0.03885 0.00541 - 41 0.00000 0.00000 0.00000 0.00000 0.22110 -0.03279 - 42 0.00000 0.00000 0.00000 -0.00000 -0.08935 -0.31158 - 43 -0.00000 0.00000 -0.00000 0.00000 0.14373 0.20804 - 44 0.02411 -0.53194 0.37474 -0.14166 0.00000 -0.00000 - 45 0.00000 -0.00000 -0.00000 -0.00000 -0.06599 -0.31338 - 46 0.00000 -0.00000 -0.00000 -0.00000 -0.33968 -0.29338 - 47 -0.00000 -0.00000 -0.00000 0.00000 0.09854 0.38126 - 48 0.00000 0.00000 0.00000 -0.00000 0.06088 -0.02158 - 49 -0.00000 0.00000 -0.00000 0.00000 -0.33513 0.11485 - 50 -0.00000 0.00000 0.00000 0.00000 0.18782 -0.27622 - 51 -0.00000 -0.00000 -0.00000 0.00000 -0.38668 0.35284 - 52 0.00025 -0.53568 -0.51850 -0.26315 0.00000 -0.00000 + 41 0.00000 0.00000 0.00000 -0.00000 0.22110 -0.03279 + 42 0.00000 0.00000 0.00000 0.00000 -0.08935 -0.31158 + 43 -0.00000 0.00000 0.00000 -0.00000 0.14373 0.20804 + 44 0.02411 -0.53194 0.37474 -0.14166 -0.00000 -0.00000 + 45 0.00000 0.00000 0.00000 -0.00000 -0.06599 -0.31338 + 46 0.00000 -0.00000 -0.00000 0.00000 -0.33968 -0.29338 + 47 -0.00000 -0.00000 -0.00000 -0.00000 0.09854 0.38126 + 48 -0.00000 -0.00000 0.00000 -0.00000 0.06088 -0.02158 + 49 0.00000 0.00000 -0.00000 0.00000 -0.33513 0.11485 + 50 -0.00000 -0.00000 -0.00000 -0.00000 0.18782 -0.27622 + 51 0.00000 -0.00000 0.00000 0.00000 -0.38668 0.35284 + 52 0.00025 -0.53568 -0.51850 -0.26315 -0.00000 -0.00000 53 -0.00000 -0.00000 -0.00000 0.00000 -0.03885 -0.00541 - 54 0.00000 0.00000 0.00000 0.00000 0.22110 0.03279 - 55 -0.00000 -0.00000 -0.00000 0.00000 0.08935 -0.31158 - 56 0.00000 -0.00000 0.00000 -0.00000 -0.14373 0.20804 - 57 0.02411 0.53194 0.37474 0.14166 -0.00000 -0.00000 - 58 0.00000 -0.00000 -0.00000 -0.00000 -0.06599 0.31338 - 59 0.00000 -0.00000 -0.00000 -0.00000 -0.33968 0.29338 - 60 -0.00000 -0.00000 -0.00000 0.00000 0.09854 -0.38126 + 54 0.00000 0.00000 0.00000 -0.00000 0.22110 0.03279 + 55 -0.00000 -0.00000 -0.00000 -0.00000 0.08935 -0.31158 + 56 0.00000 -0.00000 -0.00000 0.00000 -0.14373 0.20804 + 57 0.02411 0.53194 0.37474 0.14166 0.00000 -0.00000 + 58 0.00000 0.00000 0.00000 -0.00000 -0.06599 0.31338 + 59 0.00000 -0.00000 -0.00000 0.00000 -0.33968 0.29338 + 60 -0.00000 -0.00000 -0.00000 -0.00000 0.09854 -0.38126 43 44 45 46 47 48 ----------- ----------- ----------- ----------- ----------- ----------- @@ -2904,32 +2886,32 @@ 2 0.22643 -0.21454 0.41032 -0.24484 0.22936 0.70769 3 -0.08511 -0.02575 -0.10837 0.21205 -0.15462 0.04434 4 -0.43189 0.01144 -0.05051 0.19347 0.14625 -0.03701 - 5 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 5 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 6 0.01603 -0.03741 0.06857 0.07443 0.07005 0.09358 7 -0.09673 0.22973 -0.40840 -0.45916 -0.43195 -0.58750 8 -0.15417 -0.01264 -0.12648 -0.04661 -0.37109 -0.09643 9 -0.21421 -0.14753 -0.05279 -0.13347 0.24139 0.25532 - 10 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 10 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 11 0.01040 -0.04425 -0.09323 -0.08702 -0.01968 0.04881 12 -0.06891 0.27323 0.56587 0.53433 0.11141 -0.30797 13 -0.26843 0.15318 0.01248 -0.00412 -0.24609 0.19395 14 -0.33971 0.20309 0.10507 -0.01901 0.05533 -0.26064 - 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 15 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 16 0.04084 0.03569 0.07061 0.04127 0.03711 -0.11606 17 -0.22643 -0.21454 -0.41032 -0.24484 -0.22936 0.70769 18 -0.08511 0.02575 -0.10837 -0.21205 -0.15462 -0.04434 19 -0.43189 -0.01144 -0.05051 -0.19347 0.14625 0.03701 - 20 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 20 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 21 -0.01603 -0.03741 -0.06857 0.07443 -0.07005 0.09358 22 0.09673 0.22973 0.40840 -0.45916 0.43195 -0.58750 23 -0.15417 0.01264 -0.12648 0.04661 -0.37109 0.09643 24 -0.21421 0.14753 -0.05279 0.13347 0.24139 -0.25532 - 25 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 25 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 26 -0.01040 -0.04425 0.09323 -0.08702 0.01968 0.04881 27 0.06891 0.27323 -0.56587 0.53433 -0.11141 -0.30797 28 -0.26843 -0.15318 0.01248 0.00412 -0.24609 -0.19395 29 -0.33971 -0.20309 0.10507 0.01901 0.05533 0.26064 - 30 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 30 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 31 0.11196 -0.19141 0.31048 0.25356 0.65845 0.41686 32 0.46245 -0.32363 -0.30475 -0.18333 0.07828 0.19388 33 -0.11196 -0.19141 -0.31048 0.25356 -0.65845 0.41686 @@ -2938,12 +2920,12 @@ 36 0.57755 -0.33028 0.36315 0.29663 -0.34343 -0.59483 37 -0.04905 0.28122 -0.25626 -0.24473 0.19555 0.14050 38 -0.27215 -0.15359 -0.13200 -0.18581 -0.02685 0.07757 - 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 39 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 40 0.05744 -0.04442 -0.08017 -0.09675 0.00696 -0.06251 41 -0.33365 0.26069 0.50834 0.61113 -0.05035 0.37785 42 -0.05264 0.33180 0.19809 0.17484 0.08354 -0.03479 43 -0.04123 -0.26942 0.20802 0.18807 -0.29727 0.03472 - 44 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 44 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 45 -0.31116 0.51879 -0.36878 -0.34870 0.38372 0.39685 46 0.23820 0.19861 -0.40517 -0.43902 0.31458 -0.23259 47 0.15343 -0.50593 -0.33516 -0.38503 -0.15183 -0.17176 @@ -2951,12 +2933,12 @@ 49 -0.57755 -0.33028 -0.36315 0.29663 0.34343 -0.59483 50 -0.04905 -0.28122 -0.25626 0.24473 0.19555 -0.14050 51 -0.27215 0.15359 -0.13200 0.18581 -0.02685 -0.07757 - 52 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 52 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 53 -0.05744 -0.04442 0.08017 -0.09675 -0.00696 -0.06251 54 0.33365 0.26069 -0.50834 0.61113 0.05035 0.37785 55 -0.05264 -0.33180 0.19809 -0.17484 0.08354 0.03479 56 -0.04123 0.26942 0.20802 -0.18807 -0.29727 -0.03472 - 57 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 57 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 58 0.31116 0.51879 0.36878 -0.34870 -0.38372 0.39685 59 -0.23820 0.19861 0.40517 -0.43902 -0.31458 -0.23259 60 -0.15343 -0.50593 0.33516 -0.38503 0.15183 -0.17176 @@ -2967,32 +2949,32 @@ 2 -0.34579 -0.09429 0.65286 -0.00023 0.01557 0.52967 3 -0.13858 -0.36126 -0.13074 -0.53666 0.20068 0.30558 4 -0.13852 0.01322 0.56823 -0.08461 0.06686 -0.00243 - 5 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 5 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 6 -0.05227 -0.10873 0.02938 -0.10065 0.02312 -0.02167 7 0.32087 0.69675 -0.19574 0.68582 -0.16430 0.14703 8 -0.14208 -0.01813 0.43499 0.00008 0.60357 0.24224 9 -0.18142 0.17653 0.20684 -0.01495 -0.27127 0.76767 - 10 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 11 0.06099 0.11392 0.05302 -0.01449 -0.01760 0.08335 12 -0.37547 -0.73206 -0.34940 0.11431 0.12892 -0.58261 13 -0.16273 -0.10010 0.41455 -0.28975 -0.43091 -0.36991 14 -0.19668 0.17181 0.02293 0.48107 -0.49280 0.35448 - 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 15 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 16 -0.05673 0.01519 -0.09680 -0.00226 -0.00245 0.07561 17 0.34579 -0.09429 0.65286 0.00023 0.01557 -0.52967 18 -0.13858 0.36126 0.13074 -0.53666 -0.20068 0.30558 19 -0.13852 -0.01322 -0.56823 -0.08461 -0.06686 -0.00243 - 20 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 21 0.05227 -0.10873 0.02938 0.10065 0.02312 0.02167 22 -0.32087 0.69675 -0.19574 -0.68582 -0.16430 -0.14703 23 -0.14208 0.01813 -0.43499 0.00008 -0.60357 0.24224 24 -0.18142 -0.17653 -0.20684 -0.01495 0.27127 0.76767 - 25 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 25 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 26 -0.06099 0.11392 0.05302 0.01449 -0.01760 -0.08335 27 0.37547 -0.73206 -0.34940 -0.11431 0.12892 0.58261 28 -0.16273 0.10010 -0.41455 -0.28975 0.43091 -0.36991 29 -0.19668 -0.17181 -0.02293 0.48107 0.49280 0.35448 - 30 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 30 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 31 -0.07964 -0.26062 -0.18058 -0.27822 -0.45372 -0.05023 32 0.50362 0.36959 -0.09021 -0.08820 0.46587 0.27185 33 0.07964 -0.26062 -0.18058 0.27822 -0.45372 0.05023 @@ -3006,7 +2988,7 @@ 41 0.72656 0.43437 -0.14047 0.09672 0.27992 0.02259 42 0.09899 0.13382 0.29752 0.10960 -0.10677 0.10776 43 0.08068 0.33684 -0.16355 -0.46352 -0.19145 0.20218 - 44 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 44 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 45 0.27068 0.00951 -0.26860 -0.25681 0.09609 -0.09194 46 -0.39051 -0.45182 0.24716 0.34215 0.01983 -0.13695 47 -0.49351 -0.30831 -0.18311 -0.20943 -0.12726 -0.10602 @@ -3019,7 +3001,7 @@ 54 -0.72656 0.43437 -0.14047 -0.09672 0.27992 -0.02259 55 0.09899 -0.13382 -0.29752 0.10960 0.10677 0.10776 56 0.08068 -0.33684 0.16355 -0.46352 0.19145 0.20218 - 57 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 57 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 58 -0.27068 0.00951 -0.26860 0.25681 0.09609 0.09194 59 0.39051 -0.45182 0.24716 -0.34215 0.01983 0.13695 60 0.49351 -0.30831 -0.18311 0.20943 -0.12726 0.10602 @@ -3030,7 +3012,7 @@ 2 -0.48547 -0.03796 0.01286 -0.03527 -0.00246 0.47187 3 0.32677 -0.12934 -0.21019 -0.46045 0.72630 -0.13984 4 0.08077 0.45087 -0.20822 -0.12405 0.12213 0.64101 - 5 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 5 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 6 0.01100 0.01883 0.01879 -0.04083 0.01217 0.06116 7 -0.09156 -0.13266 -0.13657 0.30620 -0.09323 -0.45405 8 -0.15834 0.20921 -0.05101 -0.12721 0.26305 0.61867 @@ -3045,17 +3027,17 @@ 17 0.48547 -0.03796 0.01286 0.03527 -0.00246 -0.47187 18 0.32677 0.12934 0.21019 -0.46045 -0.72630 -0.13984 19 0.08077 -0.45087 0.20822 -0.12405 -0.12213 0.64101 - 20 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 20 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 21 -0.01100 0.01883 0.01879 0.04083 0.01217 -0.06116 22 0.09156 -0.13266 -0.13657 -0.30620 -0.09323 0.45405 23 -0.15834 -0.20921 0.05101 -0.12721 -0.26305 0.61867 24 0.05864 0.19471 0.47899 -0.13228 -0.53222 -0.20985 - 25 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 26 -0.05989 -0.02289 -0.01875 0.02532 -0.01291 0.06090 27 0.40968 0.15365 0.13565 -0.19230 0.09742 -0.45327 28 0.27535 -0.29584 -0.08088 -0.13348 0.46801 -0.51106 29 -0.19090 0.06161 0.48201 0.18568 -0.38856 -0.43290 - 30 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 30 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 31 0.12110 -0.15032 -0.01740 -0.04860 -0.01815 -0.26079 32 0.15460 -0.23867 0.16186 -0.05876 0.03867 0.28541 33 -0.12110 -0.15032 -0.01740 0.04860 -0.01815 0.26079 @@ -3064,12 +3046,12 @@ 36 0.32311 0.11924 0.47888 0.50634 0.25848 -0.07609 37 -0.19970 0.45909 0.37852 0.66620 0.45526 -0.03151 38 0.51304 -0.37094 0.52184 0.41201 0.25198 0.25260 - 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 39 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 40 0.02201 0.01960 0.05897 0.07154 0.04037 0.00168 41 -0.16155 -0.14136 -0.45209 -0.55810 -0.32657 -0.02190 42 0.60039 -0.35082 0.54375 0.44041 0.26732 0.16025 43 -0.14416 0.45080 0.38045 0.54021 0.31305 -0.02938 - 44 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 44 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 45 -0.33801 0.34378 0.00058 0.19358 0.16329 -0.03977 46 0.25983 -0.32499 -0.02630 -0.11131 -0.06001 0.04470 47 -0.41509 0.42200 -0.16072 -0.01022 -0.02907 -0.13179 @@ -3077,12 +3059,12 @@ 49 -0.32311 0.11924 0.47888 -0.50634 0.25848 0.07609 50 -0.19970 -0.45909 -0.37852 0.66620 -0.45526 -0.03151 51 0.51304 0.37094 -0.52184 0.41201 -0.25198 0.25260 - 52 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 52 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 53 -0.02201 0.01960 0.05897 -0.07154 0.04037 -0.00168 54 0.16155 -0.14136 -0.45209 0.55810 -0.32657 0.02190 55 0.60039 0.35082 -0.54375 0.44041 -0.26732 0.16025 56 -0.14416 -0.45080 -0.38045 0.54021 -0.31305 -0.02938 - 57 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 57 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 58 0.33801 0.34378 0.00058 -0.19358 0.16329 0.03977 59 -0.25983 -0.32499 -0.02630 0.11131 -0.06001 -0.04470 60 0.41509 0.42200 -0.16072 0.01022 -0.02907 0.13179 @@ -3104,8 +3086,8 @@ - - - - ----- ----- ---- ------- 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 - 1 1 0 0 0.000000 0.000000 0.000000 0.000000 - 1 0 1 0 0.000000 0.000000 0.000000 -0.000000 + 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 + 1 0 1 0 -0.000000 -0.000000 -0.000000 -0.000000 1 0 0 1 0.000000 0.000000 0.000000 0.000000 2 2 0 0 -37.042971 -140.938758 -140.938758 244.834546 @@ -3124,15 +3106,15 @@ X = 0.0000000 Y = -0.0000000 Z = 0.0000000 Dipole moment 0.0000000000 A.U. - DMX 0.0000000000 DMXEFC 0.0000000000 - DMY 0.0000000000 DMYEFC 0.0000000000 + DMX -0.0000000000 DMXEFC 0.0000000000 + DMY -0.0000000000 DMYEFC 0.0000000000 DMZ -0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 A.U. Total dipole 0.0000000000 A.U. Dipole moment 0.0000000000 Debye(s) - DMX 0.0000000000 DMXEFC 0.0000000000 - DMY 0.0000000000 DMYEFC 0.0000000000 + DMX -0.0000000000 DMXEFC 0.0000000000 + DMY -0.0000000000 DMYEFC 0.0000000000 DMZ -0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 DEBYE(S) Total dipole 0.0000000000 DEBYE(S) @@ -3153,45 +3135,45 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -37.0429705161 0.0000000000 -37.0429705161 - YY -37.5497393670 0.0000000000 -37.5497393670 + XX -37.0429705159 0.0000000000 -37.0429705159 + YY -37.5497393667 0.0000000000 -37.5497393667 ZZ -43.5663842684 0.0000000000 -43.5663842684 XY 0.0932750344 0.0000000000 0.0932750344 - XZ 0.0000000000 0.0000000000 0.0000000000 - YZ -0.0000000000 0.0000000000 -0.0000000000 + XZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 Second moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -49.8194985197 0.0000000000 -49.8194985197 - YY -50.5010575218 0.0000000000 -50.5010575218 - ZZ -58.5929094328 0.0000000000 -58.5929094328 - XY 0.1254466199 0.0000000000 0.1254466199 - XZ 0.0000000000 0.0000000000 0.0000000000 - YZ -0.0000000000 0.0000000000 -0.0000000000 + XX -49.8194985195 0.0000000000 -49.8194985195 + YY -50.5010575214 0.0000000000 -50.5010575214 + ZZ -58.5929094329 0.0000000000 -58.5929094329 + XY 0.1254466198 0.0000000000 0.1254466198 + XZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 Quadrupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 3.5150913016 0.0000000000 3.5150913016 - YY 2.7549380252 0.0000000000 2.7549380252 - ZZ -6.2700293269 0.0000000000 -6.2700293269 + XX 3.5150913017 0.0000000000 3.5150913017 + YY 2.7549380254 0.0000000000 2.7549380254 + ZZ -6.2700293271 0.0000000000 -6.2700293271 XY 0.1399125517 0.0000000000 0.1399125517 - XZ 0.0000000000 0.0000000000 0.0000000000 - YZ -0.0000000000 0.0000000000 -0.0000000000 + XZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 Quadrupole moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XX 4.7274849576 0.0000000000 4.7274849576 - YY 3.7051464544 0.0000000000 3.7051464544 - ZZ -8.4326314120 0.0000000000 -8.4326314120 + YY 3.7051464547 0.0000000000 3.7051464547 + ZZ -8.4326314124 0.0000000000 -8.4326314124 XY 0.1881699298 0.0000000000 0.1881699298 - XZ 0.0000000000 0.0000000000 0.0000000000 - YZ -0.0000000000 0.0000000000 -0.0000000000 + XZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 1 a.u. = 1.344911 Buckinghams = 1.344911 10**(-26) esu*cm**2 @@ -3206,11 +3188,11 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX -0.0000000000 0.0000000000 -0.0000000000 + XXX 0.0000000000 0.0000000000 0.0000000000 YYY -0.0000000000 0.0000000000 -0.0000000000 ZZZ -0.0000000000 0.0000000000 -0.0000000000 - XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 YYZ -0.0000000000 0.0000000000 -0.0000000000 ZZX -0.0000000000 0.0000000000 -0.0000000000 @@ -3221,11 +3203,11 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX -0.0000000000 0.0000000000 -0.0000000000 + XXX 0.0000000000 0.0000000000 0.0000000000 YYY -0.0000000000 0.0000000000 -0.0000000000 ZZZ -0.0000000000 0.0000000000 -0.0000000000 - XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 YYZ -0.0000000000 0.0000000000 -0.0000000000 ZZX -0.0000000000 0.0000000000 -0.0000000000 @@ -3408,12 +3390,12 @@ Number of Sum of + Bond indices - Bond indices Valency Free electrons Bond indices =Mulliken charge = Net spin population 1 C 3.97321 2.03239 3.97321 6.00560 -0.00000 - 2 C 3.97023 2.11335 3.97023 6.08357 -0.00000 + 2 C 3.97023 2.11335 3.97023 6.08357 0.00000 3 C 3.97074 2.11062 3.97074 6.08136 0.00000 4 C 3.97321 2.03239 3.97321 6.00560 -0.00000 5 C 3.97023 2.11335 3.97023 6.08357 -0.00000 6 C 3.97074 2.11062 3.97074 6.08136 -0.00000 - 7 H 0.99301 -0.07660 0.99301 0.91641 -0.00000 + 7 H 0.99301 -0.07660 0.99301 0.91641 0.00000 8 H 0.99290 -0.07716 0.99290 0.91574 0.00000 9 H 0.99301 -0.07660 0.99301 0.91641 -0.00000 10 H 0.99290 -0.07716 0.99290 0.91574 -0.00000 @@ -3426,15 +3408,9 @@ 17 C 3.96379 2.20019 3.96379 6.16398 -0.00000 18 H 0.99303 -0.07649 0.99303 0.91654 -0.00000 19 H 0.99311 -0.07610 0.99311 0.91701 -0.00000 - 20 H 0.99347 -0.07426 0.99347 0.91921 -0.00000 - - Task times cpu: 8.4s wall: 8.0s - - - NWChem Input Module - ------------------- - + 20 H 0.99347 -0.07426 0.99347 0.91921 0.00000 + Task times cpu: 7.8s wall: 7.8s Summary of allocated global arrays ----------------------------------- No active global arrays @@ -3445,25 +3421,37 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 731 731 2.11e+05 5502 1.72e+05 420 0 1.31e+04 -number of processes/call 1.00e+00 1.00e+00 1.00e+00 0.00e+00 0.00e+00 -bytes total: 3.24e+07 8.49e+06 1.79e+07 8.00e+00 0.00e+00 1.04e+05 +calls: 731 731 2.11e+05 5468 1.72e+05 420 0 1.31e+04 +number of processes/call 1.90e+13 4.16e+13 4.83e+13 0.00e+00 0.00e+00 +bytes total: 3.24e+07 8.48e+06 1.79e+07 8.00e+00 0.00e+00 1.04e+05 bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 Max memory consumed for GA by this process: 1123200 bytes - MA_summarize_allocated_blocks: starting scan ... -MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +heap block 'gridpts', handle 117, address 0x555b876bd718: + type of elements: double precision + number of elements: 6291456 + address of client space: 0x555b876bd780 + index for client space: 11467577 + total number of bytes: 50331760 +MA_summarize_allocated_blocks: scan completed: 1 heap block, 0 stack blocks MA usage statistics: allocation statistics: heap stack ---- ----- - current number of blocks 0 0 - maximum number of blocks 21 55 - current total bytes 0 0 - maximum total bytes 13693312 22516360 - maximum total K-bytes 13694 22517 - maximum total M-bytes 14 23 + current number of blocks 1 0 + maximum number of blocks 22 57 + current total bytes 50331760 0 + maximum total bytes 64025136 22516376 + maximum total K-bytes 64026 22517 + maximum total M-bytes 65 23 + + + NWChem Input Module + ------------------- + + + CITATION @@ -3471,33 +3459,52 @@ MA usage statistics: Please cite the following reference when publishing results obtained with NWChem: - M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, - T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, - E. Apra, T.L. Windus, W.A. de Jong - "NWChem: a comprehensive and scalable open-source - solution for large scale molecular simulations" - Comput. Phys. Commun. 181, 1477 (2010) - doi:10.1016/j.cpc.2010.04.018 + E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, + V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, + J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, + J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, + C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, + K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, + J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, + V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, + B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, + S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, + A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, + D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, + J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, + A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, + R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, + D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, + V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, + Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, + D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, + A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, + and R. J. Harrison + "NWChem: Past, present, and future + J. Chem. Phys. 152, 184102 (2020) + doi:10.1063/5.0004997 AUTHORS ------- - E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, - J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, - S. A. Fischer, S. Krishnamoorthy, M. Jacquelin, W. Ma, M. Klemm, O. Villa, - Y. Chen, V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, V. Konjkov, + E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, + T. P. Straatsma, H. J. J. van Dam, D. Wang, T. L. Windus, N. P. Bauman, + A. Panyala, J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, + K. Lopata, S. A. Fischer, S. Krishnamoorthy, M. Jacquelin, W. Ma, M. Klemm, + O. Villa, Y. Chen, V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, + Eric Hermes, L. Jensen, J. E. Moore, J. C. Becca, V. Konjkov, D. Mejia-Rodriguez, T. Risthaus, M. Malagoli, A. Marenich, A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, P.-D. Fan, A. Fonari, M. J. Williamson, R. J. Harrison, J. R. Rehr, M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, V. Tipparaju, - M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, L. Jensen, M. Swart, - Q. Wu, T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, - G. Cisneros, G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, - J. A. Nichols, K. Tsemekhman, K. Wolinski, J. Anchell, D. E. Bernholdt, - P. Borowski, T. Clark, D. Clerc, H. Dachsel, M. J. O. Deegan, K. Dyall, - D. Elwood, E. Glendening, M. Gutowski, A. C. Hess, J. Jaffe, B. G. Johnson, - J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, X. Long, B. Meng, + M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, M. Swart, Q. Wu, + T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, + G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, + K. Tsemekhman, K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, + T. Clark, D. Clerc, H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, + E. Glendening, M. Gutowski, A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, + R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 8.5s wall: 8.0s + Total times cpu: 7.8s wall: 7.8s diff --git a/data/NWChem/basicNWChem7.0/dvb_gopt_hf.out b/data/NWChem/basicNWChem7.0/dvb_gopt_hf.out index da269dd38..11debe52a 100644 --- a/data/NWChem/basicNWChem7.0/dvb_gopt_hf.out +++ b/data/NWChem/basicNWChem7.0/dvb_gopt_hf.out @@ -1,17 +1,17 @@ - argument 1 = dvb_gopt_hf.nw + argument 1 = dvb_gopt_hf.in - Northwest Computational Chemistry Package (NWChem) 6.5 - ------------------------------------------------------ + Northwest Computational Chemistry Package (NWChem) 7.0.2 + -------------------------------------------------------- Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - Copyright (c) 1994-2014 + Copyright (c) 1994-2020 Pacific Northwest National Laboratory Battelle Memorial Institute @@ -36,16 +36,17 @@ Job information --------------- - hostname = boman - program = /usr/lib64/mpich/bin/nwchem_mpich - date = Sat Jan 17 16:28:30 2015 - - compiled = Sat_Dec_06_13:02:58_2014 - source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 - nwchem branch = 6.5 - nwchem revision = 26243 - ga revision = 10506 - input = dvb_gopt_hf.nw + hostname = osmium + program = nwchem + date = Sat Jun 4 13:32:30 2022 + + compiled = Fri_Jul_02_16:33:00_2021 + source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src + nwchem branch = 7.0.2 + nwchem revision = b9985dfa + ga revision = 5.7.2 + use scalapack = T + input = dvb_gopt_hf.in prefix = dvb. data base = ./dvb.db status = startup @@ -57,8 +58,8 @@ Memory information ------------------ - heap = 13107194 doubles = 100.0 Mbytes - stack = 13107199 doubles = 100.0 Mbytes + heap = 13107198 doubles = 100.0 Mbytes + stack = 13107195 doubles = 100.0 Mbytes global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) total = 52428793 doubles = 400.0 Mbytes verify = yes @@ -89,6 +90,8 @@ ------ auto-z ------ + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 Geometry "geometry" -> "" @@ -344,8 +347,8 @@ - library name resolved from: .nwchemrc - library file name is: + library name resolved from: environment + library file name is: @@ -367,6 +370,7 @@ Divinylbenzene in STO-3G basis set + no constraints, skipping 0.0000000000000000 maximum gradient threshold (gmax) = 0.000450 rms gradient threshold (grms) = 0.000300 maximum cartesian step threshold (xmax) = 0.001800 @@ -551,7 +555,7 @@ bu 25 - Forming initial guess at 0.8s + Forming initial guess at 0.0s Superposition of Atomic Density Guess @@ -589,7 +593,7 @@ 41 ag 42 bu 43 bu 44 ag 45 bu - Starting SCF solution at 1.4s + Starting SCF solution at 0.2s @@ -602,32 +606,23 @@ ---------------------------------------------- - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% - - iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7024515658 7.56D-01 1.81D-01 2.4 - 2 -379.7670218883 1.53D-01 4.40D-02 2.4 - 3 -379.7689554257 6.43D-03 2.31D-03 2.5 - 4 -379.7689624910 3.37D-05 9.25D-06 2.6 + 1 -379.7024485570 7.56D-01 1.81D-01 0.5 + 2 -379.7670205711 1.53D-01 4.40D-02 1.2 + 3 -379.7689540267 6.43D-03 2.31D-03 2.2 + 4 -379.7689610929 3.38D-05 9.25D-06 3.8 Final RHF results ------------------ - Total SCF energy = -379.768962491035 - One-electron energy = -1400.222183962455 - Two-electron energy = 574.516209303975 + Total SCF energy = -379.768961092935 + One-electron energy = -1400.222176091991 + Two-electron energy = 574.516202831610 Nuclear repulsion energy = 445.937012167446 - Time for solution = 1.9s + Time for solution = 3.6s @@ -704,162 +699,162 @@ ------------------------------------- Vector 11 Occ=2.000000D+00 E=-1.090299D+00 Symmetry=ag - MO Center= 3.8D-16, -5.7D-16, -3.2D-30, r^2= 3.0D+00 + MO Center= 2.4D-17, -4.4D-17, 2.8D-18, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.275368 1 C s 7 0.275368 2 C s 12 0.247273 3 C s 17 0.247273 4 C s - 22 0.247126 5 C s 27 0.247126 6 C s + 22 0.247125 5 C s 27 0.247125 6 C s Vector 12 Occ=2.000000D+00 E=-1.020254D+00 Symmetry=bu - MO Center= -6.8D-16, -1.8D-14, 5.5D-17, r^2= 7.9D+00 + MO Center= 1.6D-16, 7.1D-16, -8.2D-20, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.298699 11 C s 41 -0.298699 12 C s - 2 -0.270806 1 C s 7 0.270806 2 C s + 2 -0.270807 1 C s 7 0.270807 2 C s 48 0.213652 15 C s 53 -0.213652 16 C s - Vector 13 Occ=2.000000D+00 E=-9.749254D-01 Symmetry=ag - MO Center= 3.5D-15, 3.7D-15, -5.6D-18, r^2= 1.1D+01 + Vector 13 Occ=2.000000D+00 E=-9.749253D-01 Symmetry=ag + MO Center= -3.8D-16, 4.5D-16, -4.9D-34, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.314473 11 C s 41 0.314473 12 C s 48 0.310076 15 C s 53 0.310076 16 C s - Vector 14 Occ=2.000000D+00 E=-9.503033D-01 Symmetry=bu - MO Center= 1.3D-15, -5.7D-15, -1.2D-16, r^2= 3.1D+00 + Vector 14 Occ=2.000000D+00 E=-9.503037D-01 Symmetry=bu + MO Center= -9.2D-17, -1.3D-17, -6.8D-34, r^2= 3.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.357133 3 C s 17 -0.357133 4 C s - 22 0.325008 5 C s 27 -0.325008 6 C s + 22 0.325009 5 C s 27 -0.325009 6 C s - Vector 15 Occ=2.000000D+00 E=-9.096345D-01 Symmetry=bu - MO Center= 3.5D-16, 7.5D-15, 2.3D-32, r^2= 8.8D+00 + Vector 15 Occ=2.000000D+00 E=-9.096351D-01 Symmetry=bu + MO Center= 2.1D-17, 3.0D-17, -7.7D-32, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.292220 15 C s 53 -0.292220 16 C s - 2 0.279079 1 C s 7 -0.279079 2 C s + 2 0.279080 1 C s 7 -0.279080 2 C s 22 -0.200698 5 C s 27 0.200698 6 C s - Vector 16 Occ=2.000000D+00 E=-7.998830D-01 Symmetry=ag - MO Center= -2.9D-15, 1.9D-15, 2.4D-17, r^2= 8.5D+00 + Vector 16 Occ=2.000000D+00 E=-7.998827D-01 Symmetry=ag + MO Center= -4.5D-16, -3.0D-16, -1.8D-33, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.239926 15 C s 53 0.239926 16 C s - 22 0.229429 5 C s 27 0.229429 6 C s - 2 -0.212930 1 C s 7 -0.212930 2 C s + 48 0.239928 15 C s 53 0.239928 16 C s + 22 0.229428 5 C s 27 0.229428 6 C s + 2 -0.212931 1 C s 7 -0.212931 2 C s 14 -0.159170 3 C py 19 0.159170 4 C py 36 -0.159504 11 C s 41 -0.159504 12 C s - Vector 17 Occ=2.000000D+00 E=-7.628268D-01 Symmetry=ag - MO Center= 3.7D-15, 2.4D-15, -2.0D-18, r^2= 5.0D+00 + Vector 17 Occ=2.000000D+00 E=-7.628266D-01 Symmetry=ag + MO Center= 5.0D-16, 9.4D-17, 3.7D-33, r^2= 5.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.324855 3 C s 17 0.324855 4 C s - 3 0.189935 1 C px 8 -0.189935 2 C px - 22 -0.180804 5 C s 27 -0.180804 6 C s + 3 0.189937 1 C px 8 -0.189937 2 C px + 22 -0.180806 5 C s 27 -0.180806 6 C s 31 0.173636 7 H s 32 0.173636 8 H s 24 0.169743 5 C py 29 -0.169743 6 C py Vector 18 Occ=2.000000D+00 E=-7.276317D-01 Symmetry=bu - MO Center= -8.5D-17, 2.4D-15, -9.9D-18, r^2= 1.2D+01 + MO Center= -7.2D-17, 4.9D-17, 1.3D-32, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.297522 11 C s 41 -0.297522 12 C s - 48 -0.248206 15 C s 53 0.248206 16 C s + 48 -0.248205 15 C s 53 0.248205 16 C s 45 0.174840 13 H s 46 -0.174840 14 H s 57 -0.163892 17 H s 58 0.163892 18 H s Vector 19 Occ=2.000000D+00 E=-6.967772D-01 Symmetry=ag - MO Center= -9.3D-16, 0.0D+00, -1.1D-17, r^2= 7.9D+00 + MO Center= 1.8D-16, 1.9D-16, -4.1D-34, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.194626 5 C px 28 -0.194626 6 C px - 36 0.187351 11 C s 41 0.187351 12 C s - 13 0.174310 3 C px 18 -0.174310 4 C px + 36 0.187352 11 C s 41 0.187352 12 C s + 13 0.174309 3 C px 18 -0.174309 4 C px 2 -0.170808 1 C s 7 -0.170808 2 C s - 33 0.168856 9 H s 34 0.168856 10 H s + 33 0.168855 9 H s 34 0.168855 10 H s - Vector 20 Occ=2.000000D+00 E=-6.280522D-01 Symmetry=ag - MO Center= 5.1D-15, -3.5D-14, 7.8D-17, r^2= 9.3D+00 + Vector 20 Occ=2.000000D+00 E=-6.280524D-01 Symmetry=ag + MO Center= 3.0D-16, -2.2D-15, 5.5D-18, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.204700 15 C px 54 -0.204700 16 C px - 38 0.183205 11 C py 43 -0.183205 12 C py - 57 0.178852 17 H s 58 0.178852 18 H s + 49 0.204699 15 C px 54 -0.204699 16 C px + 38 0.183206 11 C py 43 -0.183206 12 C py + 57 0.178851 17 H s 58 0.178851 18 H s 45 -0.152733 13 H s 46 -0.152733 14 H s - Vector 21 Occ=2.000000D+00 E=-6.056780D-01 Symmetry=bu - MO Center= -1.9D-15, 5.6D-14, -3.4D-18, r^2= 1.0D+01 + Vector 21 Occ=2.000000D+00 E=-6.056785D-01 Symmetry=bu + MO Center= -1.6D-16, 5.0D-15, -6.5D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.215048 11 C px 42 0.215048 12 C px - 50 0.201798 15 C py 55 0.201798 16 C py + 37 0.215047 11 C px 42 0.215047 12 C px + 50 0.201796 15 C py 55 0.201796 16 C py 14 0.181913 3 C py 19 0.181913 4 C py - 59 -0.179094 19 H s 60 0.179094 20 H s - 45 -0.165299 13 H s 46 0.165299 14 H s + 59 -0.179093 19 H s 60 0.179093 20 H s + 45 -0.165300 13 H s 46 0.165300 14 H s - Vector 22 Occ=2.000000D+00 E=-5.729426D-01 Symmetry=bu - MO Center= -1.0D-15, 2.1D-15, 1.3D-32, r^2= 7.0D+00 + Vector 22 Occ=2.000000D+00 E=-5.729431D-01 Symmetry=bu + MO Center= -2.1D-16, 3.2D-16, 4.7D-32, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.234899 9 H s 34 -0.234899 10 H s + 33 0.234898 9 H s 34 -0.234898 10 H s 31 -0.225759 7 H s 32 0.225759 8 H s - 2 0.223491 1 C s 7 -0.223491 2 C s - 13 -0.220802 3 C px 18 -0.220802 4 C px - 24 -0.179464 5 C py 29 -0.179464 6 C py + 2 0.223487 1 C s 7 -0.223487 2 C s + 13 -0.220803 3 C px 18 -0.220803 4 C px + 24 -0.179466 5 C py 29 -0.179466 6 C py Vector 23 Occ=2.000000D+00 E=-5.536035D-01 Symmetry=bu - MO Center= -2.3D-17, 1.9D-15, -4.2D-33, r^2= 8.9D+00 + MO Center= 4.0D-16, -2.8D-15, 2.2D-32, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.252837 15 C px 54 0.252837 16 C px - 23 0.248952 5 C px 28 0.248952 6 C px + 49 0.252836 15 C px 54 0.252836 16 C px + 23 0.248954 5 C px 28 0.248954 6 C px 3 -0.221990 1 C px 8 -0.221990 2 C px - 57 0.222772 17 H s 58 -0.222772 18 H s - 38 0.178895 11 C py 43 0.178895 12 C py + 57 0.222771 17 H s 58 -0.222771 18 H s + 38 0.178894 11 C py 43 0.178894 12 C py - Vector 24 Occ=2.000000D+00 E=-5.531658D-01 Symmetry=ag - MO Center= -5.5D-16, -2.7D-14, -1.5D-18, r^2= 1.5D+01 + Vector 24 Occ=2.000000D+00 E=-5.531660D-01 Symmetry=ag + MO Center= -1.1D-16, -9.9D-17, -2.5D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.336239 15 C py 55 -0.336239 16 C py - 59 -0.268357 19 H s 60 -0.268357 20 H s + 59 -0.268358 19 H s 60 -0.268358 20 H s 37 0.248998 11 C px 42 -0.248998 12 C px 45 -0.151363 13 H s 46 -0.151363 14 H s - Vector 25 Occ=2.000000D+00 E=-5.253606D-01 Symmetry=bu - MO Center= -5.8D-16, -9.2D-16, 8.6D-34, r^2= 4.4D+00 + Vector 25 Occ=2.000000D+00 E=-5.253611D-01 Symmetry=bu + MO Center= 3.8D-16, -4.8D-16, -1.3D-18, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.299404 3 C px 18 0.299404 4 C px + 13 0.299403 3 C px 18 0.299403 4 C px 31 0.258504 7 H s 32 -0.258504 8 H s 24 -0.232845 5 C py 29 -0.232845 6 C py - 33 0.223596 9 H s 34 -0.223596 10 H s - 23 0.179046 5 C px 28 0.179046 6 C px + 33 0.223597 9 H s 34 -0.223597 10 H s + 23 0.179045 5 C px 28 0.179045 6 C px Vector 26 Occ=2.000000D+00 E=-4.966990D-01 Symmetry=bu - MO Center= 3.3D-15, 1.0D-14, 2.3D-17, r^2= 8.9D+00 + MO Center= 3.5D-16, -5.2D-16, 3.0D-33, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 -0.238942 15 C py 55 -0.238942 16 C py - 14 0.222972 3 C py 19 0.222972 4 C py - 37 -0.201999 11 C px 42 -0.201999 12 C px - 38 0.188759 11 C py 43 0.188759 12 C py + 50 -0.238943 15 C py 55 -0.238943 16 C py + 14 0.222971 3 C py 19 0.222971 4 C py + 37 -0.201997 11 C px 42 -0.201997 12 C px + 38 0.188761 11 C py 43 0.188761 12 C py 24 -0.184876 5 C py 29 -0.184876 6 C py - Vector 27 Occ=2.000000D+00 E=-4.925280D-01 Symmetry=ag - MO Center= -5.2D-15, -1.4D-14, -4.3D-30, r^2= 1.2D+01 + Vector 27 Occ=2.000000D+00 E=-4.925284D-01 Symmetry=ag + MO Center= -7.3D-16, 1.5D-16, 2.0D-36, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.296131 15 C px 54 -0.296131 16 C px + 49 0.296132 15 C px 54 -0.296132 16 C px 57 0.273185 17 H s 58 0.273185 18 H s 37 -0.209362 11 C px 42 0.209362 12 C px 45 0.202959 13 H s 46 0.202959 14 H s - 31 -0.156851 7 H s 32 -0.156851 8 H s + 31 -0.156849 7 H s 32 -0.156849 8 H s - Vector 28 Occ=2.000000D+00 E=-4.637308D-01 Symmetry=au - MO Center= 5.8D-16, 8.3D-17, -7.4D-17, r^2= 3.6D+00 + Vector 28 Occ=2.000000D+00 E=-4.637309D-01 Symmetry=au + MO Center= -9.0D-16, 3.1D-15, -7.2D-17, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.331504 1 C pz 10 0.331504 2 C pz @@ -867,46 +862,46 @@ 25 0.301868 5 C pz 30 0.301868 6 C pz 39 0.165577 11 C pz 44 0.165577 12 C pz - Vector 29 Occ=2.000000D+00 E=-4.464302D-01 Symmetry=bu - MO Center= -6.8D-16, -7.8D-16, -4.5D-17, r^2= 1.2D+01 + Vector 29 Occ=2.000000D+00 E=-4.464301D-01 Symmetry=bu + MO Center= -2.5D-16, -4.6D-18, 4.0D-34, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.257252 13 H s 46 -0.257252 14 H s - 4 0.243719 1 C py 9 0.243719 2 C py - 57 0.226298 17 H s 58 -0.226298 18 H s - 37 -0.214534 11 C px 42 -0.214534 12 C px + 45 0.257253 13 H s 46 -0.257253 14 H s + 4 0.243717 1 C py 9 0.243717 2 C py + 57 0.226299 17 H s 58 -0.226299 18 H s + 37 -0.214535 11 C px 42 -0.214535 12 C px 59 -0.211967 19 H s 60 0.211967 20 H s - Vector 30 Occ=2.000000D+00 E=-4.216550D-01 Symmetry=ag - MO Center= 3.3D-15, 8.0D-15, 4.6D-19, r^2= 5.7D+00 + Vector 30 Occ=2.000000D+00 E=-4.216541D-01 Symmetry=ag + MO Center= 2.3D-16, -4.0D-16, -1.8D-16, r^2= 5.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 -0.268212 3 C py 19 0.268212 4 C py - 4 0.260257 1 C py 9 -0.260257 2 C py - 33 -0.253899 9 H s 34 -0.253899 10 H s - 38 0.232935 11 C py 43 -0.232935 12 C py - 24 0.223473 5 C py 29 -0.223473 6 C py + 14 -0.268211 3 C py 19 0.268211 4 C py + 4 0.260254 1 C py 9 -0.260254 2 C py + 33 -0.253901 9 H s 34 -0.253901 10 H s + 38 0.232931 11 C py 43 -0.232931 12 C py + 24 0.223472 5 C py 29 -0.223472 6 C py - Vector 31 Occ=2.000000D+00 E=-4.156220D-01 Symmetry=ag - MO Center= 5.1D-16, -1.8D-15, 3.4D-18, r^2= 6.3D+00 + Vector 31 Occ=2.000000D+00 E=-4.156211D-01 Symmetry=ag + MO Center= 1.5D-16, 1.9D-16, 1.4D-16, r^2= 6.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 3 0.278853 1 C px 8 -0.278853 2 C px - 23 0.269038 5 C px 28 -0.269038 6 C px + 3 0.278851 1 C px 8 -0.278851 2 C px + 23 0.269036 5 C px 28 -0.269036 6 C px 31 -0.251625 7 H s 32 -0.251625 8 H s - 13 -0.210356 3 C px 18 0.210356 4 C px + 13 -0.210354 3 C px 18 0.210354 4 C px 45 -0.183775 13 H s 46 -0.183775 14 H s - Vector 32 Occ=2.000000D+00 E=-3.769631D-01 Symmetry=bg - MO Center= -1.1D-16, 1.8D-14, 3.1D-17, r^2= 8.6D+00 + Vector 32 Occ=2.000000D+00 E=-3.769632D-01 Symmetry=bg + MO Center= -3.3D-16, -2.9D-15, 1.7D-19, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.383213 11 C pz 44 -0.383213 12 C pz - 5 -0.318675 1 C pz 10 0.318675 2 C pz - 51 0.306666 15 C pz 56 -0.306666 16 C pz + 5 -0.318676 1 C pz 10 0.318676 2 C pz + 51 0.306665 15 C pz 56 -0.306665 16 C pz - Vector 33 Occ=2.000000D+00 E=-3.151268D-01 Symmetry=au - MO Center= 2.5D-14, -1.7D-14, -1.9D-17, r^2= 1.1D+01 + Vector 33 Occ=2.000000D+00 E=-3.151269D-01 Symmetry=au + MO Center= -2.9D-16, 7.9D-16, 3.7D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.426295 15 C pz 56 0.426295 16 C pz @@ -914,61 +909,61 @@ 15 -0.164508 3 C pz 20 -0.164508 4 C pz 25 -0.164934 5 C pz 30 -0.164934 6 C pz - Vector 34 Occ=2.000000D+00 E=-2.783651D-01 Symmetry=bg - MO Center= -2.6D-14, 3.6D-15, 4.0D-17, r^2= 2.7D+00 + Vector 34 Occ=2.000000D+00 E=-2.783652D-01 Symmetry=bg + MO Center= 1.3D-15, -2.5D-16, -3.1D-19, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.459816 3 C pz 20 -0.459816 4 C pz + 15 0.459817 3 C pz 20 -0.459817 4 C pz 25 0.461493 5 C pz 30 -0.461493 6 C pz - Vector 35 Occ=2.000000D+00 E=-2.221904D-01 Symmetry=bg - MO Center= -3.5D-17, -3.9D-15, 1.2D-17, r^2= 7.2D+00 + Vector 35 Occ=2.000000D+00 E=-2.221905D-01 Symmetry=bg + MO Center= -2.0D-17, -6.3D-16, 1.2D-18, r^2= 7.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.417993 1 C pz 10 -0.417993 2 C pz 51 0.358184 15 C pz 56 -0.358184 16 C pz - 15 0.231889 3 C pz 20 -0.231889 4 C pz + 15 0.231888 3 C pz 20 -0.231888 4 C pz 25 -0.232000 5 C pz 30 0.232000 6 C pz - 39 0.218349 11 C pz 44 -0.218349 12 C pz + 39 0.218350 11 C pz 44 -0.218350 12 C pz - Vector 36 Occ=0.000000D+00 E= 1.989924D-01 Symmetry=au - MO Center= -1.1D-16, -5.3D-14, 1.3D-16, r^2= 7.3D+00 + Vector 36 Occ=0.000000D+00 E= 1.989923D-01 Symmetry=au + MO Center= -8.2D-17, 2.3D-14, 1.9D-17, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.471534 1 C pz 10 0.471534 2 C pz 51 -0.414928 15 C pz 56 -0.414928 16 C pz 25 -0.278569 5 C pz 30 -0.278569 6 C pz - 15 -0.249973 3 C pz 20 -0.249973 4 C pz + 15 -0.249974 3 C pz 20 -0.249974 4 C pz 39 0.246934 11 C pz 44 0.246934 12 C pz - Vector 37 Occ=0.000000D+00 E= 2.685138D-01 Symmetry=au - MO Center= 2.3D-16, -2.0D-16, 2.1D-19, r^2= 2.7D+00 + Vector 37 Occ=0.000000D+00 E= 2.685137D-01 Symmetry=au + MO Center= -8.1D-17, -1.6D-16, 2.2D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.578558 3 C pz 20 0.578558 4 C pz - 25 -0.558106 5 C pz 30 -0.558106 6 C pz + 25 -0.558107 5 C pz 30 -0.558107 6 C pz - Vector 38 Occ=0.000000D+00 E= 3.088252D-01 Symmetry=bg - MO Center= 1.7D-16, 5.5D-14, 1.9D-17, r^2= 1.1D+01 + Vector 38 Occ=0.000000D+00 E= 3.088251D-01 Symmetry=bg + MO Center= 1.4D-16, -2.4D-14, -5.4D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.531237 15 C pz 56 0.531237 16 C pz - 39 0.524391 11 C pz 44 -0.524391 12 C pz + 39 0.524390 11 C pz 44 -0.524390 12 C pz 15 0.225543 3 C pz 20 -0.225543 4 C pz 25 -0.220434 5 C pz 30 0.220434 6 C pz - Vector 39 Occ=0.000000D+00 E= 3.970770D-01 Symmetry=au - MO Center= 4.2D-17, -2.7D-15, 5.5D-18, r^2= 8.4D+00 + Vector 39 Occ=0.000000D+00 E= 3.970769D-01 Symmetry=au + MO Center= -7.1D-16, -7.5D-15, 1.1D-15, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.535070 11 C pz 44 0.535070 12 C pz 5 -0.473494 1 C pz 10 -0.473494 2 C pz 51 -0.407351 15 C pz 56 -0.407351 16 C pz 25 0.186775 5 C pz 30 0.186775 6 C pz - 15 0.161862 3 C pz 20 0.161862 4 C pz + 15 0.161861 3 C pz 20 0.161861 4 C pz - Vector 40 Occ=0.000000D+00 E= 5.217566D-01 Symmetry=bg - MO Center= 9.7D-17, 1.8D-16, 2.6D-17, r^2= 3.8D+00 + Vector 40 Occ=0.000000D+00 E= 5.217565D-01 Symmetry=bg + MO Center= 8.0D-16, 7.0D-15, -2.6D-19, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.538711 1 C pz 10 -0.538711 2 C pz @@ -977,55 +972,55 @@ 39 0.278750 11 C pz 44 -0.278750 12 C pz 51 -0.158475 15 C pz 56 0.158475 16 C pz - Vector 41 Occ=0.000000D+00 E= 5.650160D-01 Symmetry=ag - MO Center= 3.8D-15, -4.1D-14, 1.8D-17, r^2= 8.7D+00 + Vector 41 Occ=0.000000D+00 E= 5.650142D-01 Symmetry=ag + MO Center= 3.9D-17, -4.0D-16, -4.7D-16, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.434798 9 H s 34 0.434798 10 H s - 31 0.420942 7 H s 32 0.420942 8 H s - 2 -0.380055 1 C s 7 -0.380055 2 C s - 59 0.353828 19 H s 60 0.353828 20 H s - 38 0.323940 11 C py 43 -0.323940 12 C py + 33 0.434809 9 H s 34 0.434809 10 H s + 31 0.420950 7 H s 32 0.420950 8 H s + 2 -0.380042 1 C s 7 -0.380042 2 C s + 59 0.353825 19 H s 60 0.353825 20 H s + 38 0.323933 11 C py 43 -0.323933 12 C py - Vector 42 Occ=0.000000D+00 E= 5.755620D-01 Symmetry=bu - MO Center= 3.3D-15, 5.1D-15, -3.4D-17, r^2= 1.0D+01 + Vector 42 Occ=0.000000D+00 E= 5.755623D-01 Symmetry=bu + MO Center= -1.1D-15, -2.4D-14, 3.6D-20, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.448702 13 H s 46 -0.448702 14 H s - 13 0.355546 3 C px 18 0.355546 4 C px - 37 0.350909 11 C px 42 0.350909 12 C px - 57 -0.321562 17 H s 58 0.321562 18 H s - 31 -0.318904 7 H s 32 0.318904 8 H s + 45 0.448708 13 H s 46 -0.448708 14 H s + 13 0.355539 3 C px 18 0.355539 4 C px + 37 0.350908 11 C px 42 0.350908 12 C px + 57 -0.321571 17 H s 58 0.321571 18 H s + 31 -0.318891 7 H s 32 0.318891 8 H s - Vector 43 Occ=0.000000D+00 E= 6.215596D-01 Symmetry=ag - MO Center= 5.3D-15, -1.2D-15, -4.4D-17, r^2= 1.2D+01 + Vector 43 Occ=0.000000D+00 E= 6.215603D-01 Symmetry=ag + MO Center= -1.4D-14, -5.6D-16, 5.2D-16, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.589566 13 H s 46 0.589566 14 H s - 12 0.397886 3 C s 17 0.397886 4 C s - 36 -0.394579 11 C s 41 -0.394579 12 C s - 57 -0.381363 17 H s 58 -0.381363 18 H s - 37 0.350692 11 C px 42 -0.350692 12 C px + 12 0.397895 3 C s 17 0.397895 4 C s + 36 -0.394565 11 C s 41 -0.394565 12 C s + 57 -0.381368 17 H s 58 -0.381368 18 H s + 37 0.350696 11 C px 42 -0.350696 12 C px - Vector 44 Occ=0.000000D+00 E= 6.258003D-01 Symmetry=bu - MO Center= -8.2D-15, 2.4D-14, 7.5D-17, r^2= 8.4D+00 + Vector 44 Occ=0.000000D+00 E= 6.258005D-01 Symmetry=bu + MO Center= 4.6D-16, -3.9D-17, 2.0D-19, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.529760 11 C s 41 -0.529760 12 C s - 4 0.453566 1 C py 9 0.453566 2 C py - 33 0.408895 9 H s 34 -0.408895 10 H s - 59 0.389457 19 H s 60 -0.389457 20 H s - 48 -0.337620 15 C s 53 0.337620 16 C s + 36 0.529790 11 C s 41 -0.529790 12 C s + 4 0.453569 1 C py 9 0.453569 2 C py + 33 0.408877 9 H s 34 -0.408877 10 H s + 59 0.389453 19 H s 60 -0.389453 20 H s + 48 -0.337623 15 C s 53 0.337623 16 C s - Vector 45 Occ=0.000000D+00 E= 6.582325D-01 Symmetry=ag - MO Center= -8.6D-16, 6.2D-15, -8.0D-17, r^2= 1.2D+01 + Vector 45 Occ=0.000000D+00 E= 6.582334D-01 Symmetry=ag + MO Center= -1.2D-15, 1.6D-15, -4.0D-17, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.683576 15 C s 53 0.683576 16 C s - 22 0.582877 5 C s 27 0.582877 6 C s - 57 -0.541814 17 H s 58 -0.541814 18 H s - 12 -0.457382 3 C s 17 -0.457382 4 C s - 59 -0.330810 19 H s 60 -0.330810 20 H s + 48 0.683572 15 C s 53 0.683572 16 C s + 22 0.582873 5 C s 27 0.582873 6 C s + 57 -0.541817 17 H s 58 -0.541817 18 H s + 12 -0.457375 3 C s 17 -0.457375 4 C s + 59 -0.330802 19 H s 60 -0.330802 20 H s center of mass @@ -1075,15 +1070,12 @@ 1 0 1 0 -0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 - 2 2 0 0 -38.360869 0.000000 244.795872 - 2 1 1 0 0.065434 0.000000 -5.631027 - 2 1 0 1 0.000000 0.000000 0.000000 - 2 0 2 0 -39.006221 0.000000 1496.963300 + 2 2 0 0 -38.360884 0.000000 244.795872 + 2 1 1 0 0.065438 0.000000 -5.631027 + 2 1 0 1 -0.000000 0.000000 0.000000 + 2 0 2 0 -39.006243 0.000000 1496.963300 2 0 1 1 0.000000 0.000000 0.000000 - 2 0 0 2 -43.564269 0.000000 0.000000 - - - Parallel integral file used 8 records with 0 large values + 2 0 0 2 -43.564268 0.000000 0.000000 NWChem Gradients Module ----------------------- @@ -1101,16 +1093,16 @@ atom coordinates gradient x y z x y z - 1 C 0.447498 2.672387 0.000000 0.004027 0.024725 0.000000 - 2 C -0.447498 -2.672387 0.000000 -0.004027 -0.024725 0.000000 + 1 C 0.447498 2.672387 0.000000 0.004028 0.024724 0.000000 + 2 C -0.447498 -2.672387 0.000000 -0.004028 -0.024724 -0.000000 3 C 2.488298 0.924096 0.000000 0.014289 0.002868 0.000000 4 C -2.488298 -0.924096 0.000000 -0.014289 -0.002868 0.000000 - 5 C 2.053751 -1.690315 0.000000 0.013557 -0.005635 0.000000 - 6 C -2.053751 1.690315 0.000000 -0.013557 0.005635 0.000000 + 5 C 2.053751 -1.690315 0.000000 0.013557 -0.005636 0.000000 + 6 C -2.053751 1.690315 0.000000 -0.013557 0.005636 0.000000 7 H 4.436703 1.641481 0.000000 0.013098 0.004960 0.000000 8 H -4.436703 -1.641481 0.000000 -0.013098 -0.004960 0.000000 9 H 3.661612 -2.998879 0.000000 0.009782 -0.009902 0.000000 - 10 H -3.661612 2.998879 0.000000 -0.009782 0.009902 0.000000 + 10 H -3.661612 2.998879 0.000000 -0.009782 0.009902 -0.000000 11 C -1.010073 -5.446433 0.000000 -0.017299 0.032961 0.000000 12 C 1.010073 5.446433 0.000000 0.017299 -0.032961 0.000000 13 H -3.035954 -5.920309 0.000000 -0.014124 -0.003179 0.000000 @@ -1125,14 +1117,15 @@ ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.02 | 2.59 | + | CPU | 0.00 | 0.54 | ---------------------------------------- - | WALL | 0.02 | 2.59 | + | WALL | 0.00 | 0.54 | ---------------------------------------- + no constraints, skipping 0.0000000000000000 @ Step Energy Delta E Gmax Grms Xrms Xmax Walltime @ ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 0 -379.76896249 0.0D+00 0.04567 0.01110 0.00000 0.00000 6.1 +@ 0 -379.76896109 0.0D+00 0.04567 0.01110 0.00000 0.00000 4.4 @@ -1194,35 +1187,35 @@ 48 Bend 14 12 16 118.79054 0.00039 49 Bend 17 15 19 116.21990 0.00037 50 Bend 18 16 20 116.21990 0.00037 - 51 Torsion 1 3 5 2 0.00000 -0.00000 + 51 Torsion 1 3 5 2 0.00000 0.00000 52 Torsion 1 3 5 9 180.00000 0.00000 - 53 Torsion 1 6 4 2 0.00000 -0.00000 + 53 Torsion 1 6 4 2 0.00000 0.00000 54 Torsion 1 6 4 8 180.00000 -0.00000 55 Torsion 1 12 16 18 0.00000 0.00000 - 56 Torsion 1 12 16 20 180.00000 0.00000 + 56 Torsion 1 12 16 20 180.00000 -0.00000 57 Torsion 2 4 6 10 180.00000 0.00000 58 Torsion 2 5 3 7 180.00000 -0.00000 59 Torsion 2 11 15 17 0.00000 -0.00000 60 Torsion 2 11 15 19 180.00000 -0.00000 61 Torsion 3 1 6 4 0.00000 0.00000 - 62 Torsion 3 1 6 10 180.00000 0.00000 - 63 Torsion 3 1 12 14 0.00000 -0.00000 - 64 Torsion 3 1 12 16 180.00000 -0.00000 + 62 Torsion 3 1 6 10 180.00000 -0.00000 + 63 Torsion 3 1 12 14 0.00000 0.00000 + 64 Torsion 3 1 12 16 180.00000 0.00000 65 Torsion 3 5 2 4 0.00000 0.00000 66 Torsion 3 5 2 11 180.00000 0.00000 - 67 Torsion 4 2 5 9 180.00000 0.00000 - 68 Torsion 4 2 11 13 0.00000 -0.00000 + 67 Torsion 4 2 5 9 180.00000 -0.00000 + 68 Torsion 4 2 11 13 0.00000 0.00000 69 Torsion 4 2 11 15 180.00000 0.00000 70 Torsion 4 6 1 12 180.00000 0.00000 71 Torsion 5 2 4 6 -0.00000 -0.00000 - 72 Torsion 5 2 4 8 180.00000 -0.00000 + 72 Torsion 5 2 4 8 180.00000 0.00000 73 Torsion 5 2 11 13 180.00000 -0.00000 74 Torsion 5 2 11 15 0.00000 0.00000 75 Torsion 5 3 1 6 0.00000 -0.00000 76 Torsion 5 3 1 12 180.00000 -0.00000 - 77 Torsion 6 1 3 7 180.00000 -0.00000 - 78 Torsion 6 1 12 14 180.00000 0.00000 - 79 Torsion 6 1 12 16 0.00000 -0.00000 + 77 Torsion 6 1 3 7 180.00000 0.00000 + 78 Torsion 6 1 12 14 180.00000 -0.00000 + 79 Torsion 6 1 12 16 0.00000 0.00000 80 Torsion 6 4 2 11 180.00000 -0.00000 81 Torsion 7 3 1 12 -0.00000 -0.00000 82 Torsion 7 3 5 9 0.00000 0.00000 @@ -1231,10 +1224,14 @@ 85 Torsion 9 5 2 11 0.00000 0.00000 86 Torsion 10 6 1 12 0.00000 0.00000 87 Torsion 13 11 15 17 180.00000 0.00000 - 88 Torsion 13 11 15 19 -0.00000 -0.00000 - 89 Torsion 14 12 16 18 180.00000 -0.00000 - 90 Torsion 14 12 16 20 -0.00000 -0.00000 + 88 Torsion 13 11 15 19 -0.00000 0.00000 + 89 Torsion 14 12 16 18 180.00000 0.00000 + 90 Torsion 14 12 16 20 -0.00000 0.00000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 NWChem SCF Module ----------------- @@ -1273,7 +1270,7 @@ bu 25 - Forming initial guess at 6.4s + Forming initial guess at 4.4s Loading old vectors from job with title : @@ -1301,7 +1298,7 @@ Divinylbenzene in STO-3G basis set 41 ag 42 bu 43 ag 44 bu 45 ag - Starting SCF solution at 6.4s + Starting SCF solution at 4.4s @@ -1314,31 +1311,22 @@ Divinylbenzene in STO-3G basis set ---------------------------------------------- - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.181D+05 #integrals = 3.546D+05 #direct = 0.0% #cached =100.0% - - iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7748618921 1.31D-01 2.55D-02 7.2 - 2 -379.7762734271 4.43D-03 1.54D-03 7.2 - 3 -379.7762753195 1.05D-05 2.95D-06 7.3 + 1 -379.7748612679 1.31D-01 2.55D-02 4.7 + 2 -379.7762731068 4.43D-03 1.54D-03 5.7 + 3 -379.7762749994 1.05D-05 2.95D-06 7.3 Final RHF results ------------------ - Total SCF energy = -379.776275319550 - One-electron energy = -1417.333828549438 - Two-electron energy = 582.747774644508 - Nuclear repulsion energy = 454.809778585381 + Total SCF energy = -379.776274999441 + One-electron energy = -1417.334071246266 + Two-electron energy = 582.747890558924 + Nuclear repulsion energy = 454.809905687902 - Time for solution = 1.9s + Time for solution = 3.0s @@ -1365,7 +1353,7 @@ Divinylbenzene in STO-3G basis set ----------------- 1 - 1 -11.0410 + 1 -11.0411 2 -11.0410 3 -11.0326 4 -11.0326 @@ -1414,163 +1402,163 @@ Divinylbenzene in STO-3G basis set ROHF Final Molecular Orbital Analysis ------------------------------------- - Vector 11 Occ=2.000000D+00 E=-1.112882D+00 Symmetry=ag - MO Center= -1.4D-16, -6.9D-16, -1.9D-17, r^2= 2.8D+00 + Vector 11 Occ=2.000000D+00 E=-1.112881D+00 Symmetry=ag + MO Center= -4.4D-17, -8.9D-17, -8.0D-35, r^2= 2.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.269208 1 C s 7 0.269208 2 C s 12 0.244670 3 C s 17 0.244670 4 C s - 22 0.244603 5 C s 27 0.244603 6 C s + 22 0.244602 5 C s 27 0.244602 6 C s Vector 12 Occ=2.000000D+00 E=-1.037372D+00 Symmetry=bu - MO Center= 1.9D-16, 4.4D-16, 4.0D-34, r^2= 8.0D+00 + MO Center= 7.6D-18, 1.3D-16, 7.0D-39, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.295138 11 C s 41 -0.295138 12 C s - 2 -0.259768 1 C s 7 0.259768 2 C s - 48 0.218845 15 C s 53 -0.218845 16 C s + 2 -0.259769 1 C s 7 0.259769 2 C s + 48 0.218844 15 C s 53 -0.218844 16 C s - Vector 13 Occ=2.000000D+00 E=-9.952245D-01 Symmetry=ag - MO Center= -5.2D-16, -1.2D-14, -9.4D-18, r^2= 1.1D+01 + Vector 13 Occ=2.000000D+00 E=-9.952246D-01 Symmetry=ag + MO Center= -5.8D-18, -2.4D-17, 6.9D-34, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.311306 11 C s 41 0.311306 12 C s - 48 0.307950 15 C s 53 0.307950 16 C s + 48 0.307949 15 C s 53 0.307949 16 C s - Vector 14 Occ=2.000000D+00 E=-9.651398D-01 Symmetry=bu - MO Center= 1.6D-15, 6.3D-16, 8.5D-20, r^2= 3.0D+00 + Vector 14 Occ=2.000000D+00 E=-9.651403D-01 Symmetry=bu + MO Center= -1.9D-16, 3.3D-17, -9.3D-21, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.353451 3 C s 17 -0.353451 4 C s - 22 0.318884 5 C s 27 -0.318884 6 C s + 22 0.318886 5 C s 27 -0.318886 6 C s - Vector 15 Occ=2.000000D+00 E=-9.279313D-01 Symmetry=bu - MO Center= -4.3D-17, 1.2D-14, -2.7D-19, r^2= 8.2D+00 + Vector 15 Occ=2.000000D+00 E=-9.279322D-01 Symmetry=bu + MO Center= -4.5D-17, -8.0D-17, 2.8D-20, r^2= 8.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.282481 1 C s 7 -0.282481 2 C s - 48 0.276987 15 C s 53 -0.276987 16 C s - 22 -0.202273 5 C s 27 0.202273 6 C s + 2 0.282482 1 C s 7 -0.282482 2 C s + 48 0.276988 15 C s 53 -0.276988 16 C s + 22 -0.202271 5 C s 27 0.202271 6 C s - Vector 16 Occ=2.000000D+00 E=-8.091041D-01 Symmetry=ag - MO Center= -2.9D-16, -2.2D-15, 3.2D-17, r^2= 7.7D+00 + Vector 16 Occ=2.000000D+00 E=-8.091037D-01 Symmetry=ag + MO Center= 7.4D-17, 1.5D-16, -1.0D-18, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.234910 5 C s 27 0.234910 6 C s - 48 0.220781 15 C s 53 0.220781 16 C s - 2 -0.206261 1 C s 7 -0.206261 2 C s + 22 0.234908 5 C s 27 0.234908 6 C s + 48 0.220783 15 C s 53 0.220783 16 C s + 2 -0.206265 1 C s 7 -0.206265 2 C s 14 -0.170154 3 C py 19 0.170154 4 C py - 36 -0.154355 11 C s 41 -0.154355 12 C s + 36 -0.154354 11 C s 41 -0.154354 12 C s - Vector 17 Occ=2.000000D+00 E=-7.743983D-01 Symmetry=ag - MO Center= 4.5D-17, -3.0D-16, 4.6D-20, r^2= 4.9D+00 + Vector 17 Occ=2.000000D+00 E=-7.743984D-01 Symmetry=ag + MO Center= -2.2D-16, 5.6D-17, 2.8D-18, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.317021 3 C s 17 0.317021 4 C s - 3 0.188321 1 C px 8 -0.188321 2 C px + 12 0.317022 3 C s 17 0.317022 4 C s + 3 0.188323 1 C px 8 -0.188323 2 C px 24 0.176341 5 C py 29 -0.176341 6 C py - 31 0.171236 7 H s 32 0.171236 8 H s - 2 -0.164741 1 C s 7 -0.164741 2 C s + 31 0.171235 7 H s 32 0.171235 8 H s + 2 -0.164738 1 C s 7 -0.164738 2 C s - Vector 18 Occ=2.000000D+00 E=-7.344205D-01 Symmetry=bu - MO Center= -1.1D-15, 4.5D-15, -8.9D-18, r^2= 1.2D+01 + Vector 18 Occ=2.000000D+00 E=-7.344208D-01 Symmetry=bu + MO Center= 8.8D-17, 1.0D-16, -4.2D-20, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.290969 11 C s 41 -0.290969 12 C s + 36 0.290970 11 C s 41 -0.290970 12 C s 48 -0.246144 15 C s 53 0.246144 16 C s - 45 0.178361 13 H s 46 -0.178361 14 H s + 45 0.178360 13 H s 46 -0.178360 14 H s 57 -0.167691 17 H s 58 0.167691 18 H s - Vector 19 Occ=2.000000D+00 E=-7.104278D-01 Symmetry=ag - MO Center= 4.9D-17, 6.8D-16, -7.0D-18, r^2= 7.6D+00 + Vector 19 Occ=2.000000D+00 E=-7.104280D-01 Symmetry=ag + MO Center= -1.7D-17, 1.1D-16, 1.4D-17, r^2= 7.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.196161 5 C px 28 -0.196161 6 C px - 13 0.179653 3 C px 18 -0.179653 4 C px - 36 0.177733 11 C s 41 0.177733 12 C s - 33 0.172262 9 H s 34 0.172262 10 H s - 48 -0.164476 15 C s 53 -0.164476 16 C s + 13 0.179652 3 C px 18 -0.179652 4 C px + 36 0.177734 11 C s 41 0.177734 12 C s + 33 0.172261 9 H s 34 0.172261 10 H s + 48 -0.164478 15 C s 53 -0.164478 16 C s - Vector 20 Occ=2.000000D+00 E=-6.443392D-01 Symmetry=ag - MO Center= 1.7D-18, -2.8D-15, 3.2D-32, r^2= 9.4D+00 + Vector 20 Occ=2.000000D+00 E=-6.443395D-01 Symmetry=ag + MO Center= 5.2D-16, -2.2D-15, -3.1D-20, r^2= 9.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.213190 15 C px 54 -0.213190 16 C px - 57 0.184226 17 H s 58 0.184226 18 H s - 38 0.181662 11 C py 43 -0.181662 12 C py + 49 0.213189 15 C px 54 -0.213189 16 C px + 57 0.184225 17 H s 58 0.184225 18 H s + 38 0.181663 11 C py 43 -0.181663 12 C py 45 -0.154937 13 H s 46 -0.154937 14 H s - Vector 21 Occ=2.000000D+00 E=-6.199387D-01 Symmetry=bu - MO Center= 1.2D-16, -7.8D-16, 1.2D-19, r^2= 1.0D+01 + Vector 21 Occ=2.000000D+00 E=-6.199391D-01 Symmetry=bu + MO Center= -2.8D-16, 4.2D-15, -1.7D-21, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 0.220074 15 C py 55 0.220074 16 C py + 50 0.220073 15 C py 55 0.220073 16 C py 37 0.215033 11 C px 42 0.215033 12 C px 59 -0.191409 19 H s 60 0.191409 20 H s 14 0.187232 3 C py 19 0.187232 4 C py - 45 -0.152494 13 H s 46 0.152494 14 H s + 45 -0.152495 13 H s 46 0.152495 14 H s - Vector 22 Occ=2.000000D+00 E=-5.793122D-01 Symmetry=bu - MO Center= -1.5D-16, 5.5D-16, -1.7D-33, r^2= 6.4D+00 + Vector 22 Occ=2.000000D+00 E=-5.793128D-01 Symmetry=bu + MO Center= -5.7D-16, 1.4D-15, 2.7D-32, r^2= 6.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.231891 7 H s 32 0.231891 8 H s - 33 0.229552 9 H s 34 -0.229552 10 H s - 13 -0.225887 3 C px 18 -0.225887 4 C px - 2 0.216463 1 C s 7 -0.216463 2 C s - 24 -0.182315 5 C py 29 -0.182315 6 C py + 31 -0.231893 7 H s 32 0.231893 8 H s + 33 0.229553 9 H s 34 -0.229553 10 H s + 13 -0.225890 3 C px 18 -0.225890 4 C px + 2 0.216460 1 C s 7 -0.216460 2 C s + 24 -0.182316 5 C py 29 -0.182316 6 C py - Vector 23 Occ=2.000000D+00 E=-5.678303D-01 Symmetry=bu - MO Center= 4.4D-16, -3.5D-17, -2.7D-34, r^2= 8.2D+00 + Vector 23 Occ=2.000000D+00 E=-5.678307D-01 Symmetry=bu + MO Center= 4.0D-16, -3.2D-15, -1.8D-20, r^2= 8.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.263822 5 C px 28 0.263822 6 C px + 23 0.263823 5 C px 28 0.263823 6 C px 49 0.239263 15 C px 54 0.239263 16 C px - 3 -0.212620 1 C px 8 -0.212620 2 C px - 57 0.208200 17 H s 58 -0.208200 18 H s - 38 0.165458 11 C py 43 0.165458 12 C py + 3 -0.212622 1 C px 8 -0.212622 2 C px + 57 0.208199 17 H s 58 -0.208199 18 H s + 38 0.165457 11 C py 43 0.165457 12 C py - Vector 24 Occ=2.000000D+00 E=-5.671700D-01 Symmetry=ag - MO Center= 2.4D-16, 3.3D-16, 1.7D-19, r^2= 1.4D+01 + Vector 24 Occ=2.000000D+00 E=-5.671702D-01 Symmetry=ag + MO Center= -1.0D-16, 3.9D-16, -3.8D-18, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 0.338831 15 C py 55 -0.338831 16 C py + 50 0.338830 15 C py 55 -0.338830 16 C py 59 -0.264253 19 H s 60 -0.264253 20 H s - 37 0.251898 11 C px 42 -0.251898 12 C px - 45 -0.150250 13 H s 46 -0.150250 14 H s + 37 0.251899 11 C px 42 -0.251899 12 C px + 45 -0.150249 13 H s 46 -0.150249 14 H s - Vector 25 Occ=2.000000D+00 E=-5.353823D-01 Symmetry=bu - MO Center= 4.2D-16, -1.5D-16, -3.7D-34, r^2= 4.2D+00 + Vector 25 Occ=2.000000D+00 E=-5.353832D-01 Symmetry=bu + MO Center= -2.9D-16, -1.3D-16, -5.8D-23, r^2= 4.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.305394 3 C px 18 0.305394 4 C px - 31 0.255751 7 H s 32 -0.255751 8 H s - 24 -0.226924 5 C py 29 -0.226924 6 C py - 33 0.221333 9 H s 34 -0.221333 10 H s - 23 0.190033 5 C px 28 0.190033 6 C px + 13 0.305392 3 C px 18 0.305392 4 C px + 31 0.255752 7 H s 32 -0.255752 8 H s + 24 -0.226927 5 C py 29 -0.226927 6 C py + 33 0.221334 9 H s 34 -0.221334 10 H s + 23 0.190030 5 C px 28 0.190030 6 C px - Vector 26 Occ=2.000000D+00 E=-5.109593D-01 Symmetry=bu - MO Center= 2.8D-16, -4.2D-16, 1.7D-18, r^2= 8.7D+00 + Vector 26 Occ=2.000000D+00 E=-5.109596D-01 Symmetry=bu + MO Center= 3.4D-16, -5.5D-16, 5.2D-33, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.238524 15 C py 55 -0.238524 16 C py - 14 0.224090 3 C py 19 0.224090 4 C py - 37 -0.211446 11 C px 42 -0.211446 12 C px - 38 0.189318 11 C py 43 0.189318 12 C py - 24 -0.187936 5 C py 29 -0.187936 6 C py + 14 0.224088 3 C py 19 0.224088 4 C py + 37 -0.211444 11 C px 42 -0.211444 12 C px + 38 0.189320 11 C py 43 0.189320 12 C py + 24 -0.187933 5 C py 29 -0.187933 6 C py - Vector 27 Occ=2.000000D+00 E=-4.999291D-01 Symmetry=ag - MO Center= 1.4D-16, 2.2D-16, 1.7D-32, r^2= 1.2D+01 + Vector 27 Occ=2.000000D+00 E=-4.999297D-01 Symmetry=ag + MO Center= 1.3D-16, -3.3D-16, 1.5D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.295481 15 C px 54 -0.295481 16 C px - 57 0.266195 17 H s 58 0.266195 18 H s + 49 0.295482 15 C px 54 -0.295482 16 C px + 57 0.266196 17 H s 58 0.266196 18 H s 37 -0.207571 11 C px 42 0.207571 12 C px - 45 0.202723 13 H s 46 0.202723 14 H s - 31 -0.157618 7 H s 32 -0.157618 8 H s + 45 0.202724 13 H s 46 0.202724 14 H s + 31 -0.157616 7 H s 32 -0.157616 8 H s - Vector 28 Occ=2.000000D+00 E=-4.825205D-01 Symmetry=au - MO Center= 8.1D-16, 2.3D-16, 2.6D-17, r^2= 3.4D+00 + Vector 28 Occ=2.000000D+00 E=-4.825208D-01 Symmetry=au + MO Center= -9.0D-16, 3.0D-15, -7.2D-17, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.327346 1 C pz 10 0.327346 2 C pz @@ -1578,46 +1566,46 @@ Divinylbenzene in STO-3G basis set 25 0.300387 5 C pz 30 0.300387 6 C pz 39 0.158733 11 C pz 44 0.158733 12 C pz - Vector 29 Occ=2.000000D+00 E=-4.498212D-01 Symmetry=bu - MO Center= -4.4D-16, -1.4D-15, -5.4D-17, r^2= 1.2D+01 + Vector 29 Occ=2.000000D+00 E=-4.498210D-01 Symmetry=bu + MO Center= -6.2D-17, 1.8D-17, -6.6D-34, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.255796 13 H s 46 -0.255796 14 H s - 4 0.249021 1 C py 9 0.249021 2 C py - 57 0.228910 17 H s 58 -0.228910 18 H s - 59 -0.219992 19 H s 60 0.219992 20 H s - 37 -0.213163 11 C px 42 -0.213163 12 C px + 45 0.255797 13 H s 46 -0.255797 14 H s + 4 0.249019 1 C py 9 0.249019 2 C py + 57 0.228911 17 H s 58 -0.228911 18 H s + 59 -0.219991 19 H s 60 0.219991 20 H s + 37 -0.213165 11 C px 42 -0.213165 12 C px - Vector 30 Occ=2.000000D+00 E=-4.271955D-01 Symmetry=ag - MO Center= 1.8D-16, 9.0D-16, -4.4D-20, r^2= 4.9D+00 + Vector 30 Occ=2.000000D+00 E=-4.271945D-01 Symmetry=ag + MO Center= 6.5D-17, -7.5D-19, -7.1D-17, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.283130 9 H s 34 0.283130 10 H s - 3 0.246825 1 C px 8 -0.246825 2 C px - 13 -0.223077 3 C px 14 0.223833 3 C py - 18 0.223077 4 C px 19 -0.223833 4 C py - 4 -0.206631 1 C py 9 0.206631 2 C py + 33 0.283128 9 H s 34 0.283128 10 H s + 3 0.246822 1 C px 8 -0.246822 2 C px + 13 -0.223075 3 C px 14 0.223835 3 C py + 18 0.223075 4 C px 19 -0.223835 4 C py + 4 -0.206634 1 C py 9 0.206634 2 C py - Vector 31 Occ=2.000000D+00 E=-4.196949D-01 Symmetry=ag - MO Center= 1.4D-17, -2.2D-16, -8.7D-20, r^2= 7.1D+00 + Vector 31 Occ=2.000000D+00 E=-4.196940D-01 Symmetry=ag + MO Center= -8.9D-18, 4.2D-17, 1.5D-16, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.221798 7 H s 32 -0.221798 8 H s - 23 0.214883 5 C px 28 -0.214883 6 C px - 3 0.211634 1 C px 8 -0.211634 2 C px - 38 0.211266 11 C py 43 -0.211266 12 C py - 4 0.207382 1 C py 9 -0.207382 2 C py + 31 -0.221801 7 H s 32 -0.221801 8 H s + 23 0.214887 5 C px 28 -0.214887 6 C px + 3 0.211639 1 C px 8 -0.211639 2 C px + 38 0.211263 11 C py 43 -0.211263 12 C py + 4 0.207379 1 C py 9 -0.207379 2 C py - Vector 32 Occ=2.000000D+00 E=-3.918082D-01 Symmetry=bg - MO Center= -1.4D-16, 1.8D-14, 5.1D-17, r^2= 8.5D+00 + Vector 32 Occ=2.000000D+00 E=-3.918083D-01 Symmetry=bg + MO Center= -3.0D-16, -2.8D-15, 8.6D-21, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.382322 11 C pz 44 -0.382322 12 C pz 51 0.312795 15 C pz 56 -0.312795 16 C pz - 5 -0.307787 1 C pz 10 0.307787 2 C pz + 5 -0.307788 1 C pz 10 0.307788 2 C pz Vector 33 Occ=2.000000D+00 E=-3.326113D-01 Symmetry=au - MO Center= -5.3D-16, -1.7D-14, 3.3D-18, r^2= 1.1D+01 + MO Center= -2.8D-16, 9.6D-17, -7.9D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.425147 15 C pz 56 0.425147 16 C pz @@ -1625,15 +1613,15 @@ Divinylbenzene in STO-3G basis set 15 -0.158101 3 C pz 20 -0.158101 4 C pz 25 -0.158298 5 C pz 30 -0.158298 6 C pz - Vector 34 Occ=2.000000D+00 E=-2.888756D-01 Symmetry=bg - MO Center= -6.7D-16, 1.1D-16, -2.2D-18, r^2= 2.6D+00 + Vector 34 Occ=2.000000D+00 E=-2.888757D-01 Symmetry=bg + MO Center= 1.4D-15, -2.4D-16, -2.6D-20, r^2= 2.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.458389 3 C pz 20 -0.458389 4 C pz 25 0.460584 5 C pz 30 -0.460584 6 C pz - Vector 35 Occ=2.000000D+00 E=-2.369262D-01 Symmetry=bg - MO Center= -3.5D-17, -1.1D-16, -1.2D-18, r^2= 6.7D+00 + Vector 35 Occ=2.000000D+00 E=-2.369263D-01 Symmetry=bg + MO Center= 2.7D-17, 1.5D-16, 8.4D-20, r^2= 6.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.423794 1 C pz 10 -0.423794 2 C pz @@ -1642,8 +1630,8 @@ Divinylbenzene in STO-3G basis set 25 -0.232696 5 C pz 30 0.232696 6 C pz 39 0.213480 11 C pz 44 -0.213480 12 C pz - Vector 36 Occ=0.000000D+00 E= 2.093710D-01 Symmetry=au - MO Center= 5.6D-17, 3.3D-16, -2.5D-17, r^2= 6.9D+00 + Vector 36 Occ=0.000000D+00 E= 2.093709D-01 Symmetry=au + MO Center= 7.8D-17, -4.6D-16, 1.7D-18, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.484082 1 C pz 10 0.484082 2 C pz @@ -1653,90 +1641,90 @@ Divinylbenzene in STO-3G basis set 39 0.247928 11 C pz 44 0.247928 12 C pz Vector 37 Occ=0.000000D+00 E= 2.756091D-01 Symmetry=au - MO Center= 1.8D-16, 1.9D-16, -1.0D-18, r^2= 2.6D+00 + MO Center= 9.7D-17, 7.1D-17, 1.4D-17, r^2= 2.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.586151 3 C pz 20 0.586151 4 C pz - 25 -0.560437 5 C pz 30 -0.560437 6 C pz + 25 -0.560438 5 C pz 30 -0.560438 6 C pz Vector 38 Occ=0.000000D+00 E= 3.235711D-01 Symmetry=bg - MO Center= 9.7D-17, 1.5D-33, 2.4D-17, r^2= 1.1D+01 + MO Center= 1.3D-16, 4.3D-16, 3.7D-20, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 -0.540074 15 C pz 56 0.540074 16 C pz + 51 -0.540075 15 C pz 56 0.540075 16 C pz 39 0.534050 11 C pz 44 -0.534050 12 C pz 15 0.222855 3 C pz 20 -0.222855 4 C pz 25 -0.216781 5 C pz 30 0.216781 6 C pz Vector 39 Occ=0.000000D+00 E= 4.108093D-01 Symmetry=au - MO Center= 9.7D-17, 1.1D-16, 2.7D-18, r^2= 8.4D+00 + MO Center= -7.2D-16, -7.5D-15, 1.1D-15, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.543406 11 C pz 44 0.543406 12 C pz 5 -0.470017 1 C pz 10 -0.470017 2 C pz 51 -0.421994 15 C pz 56 -0.421994 16 C pz - 25 0.189103 5 C pz 30 0.189103 6 C pz + 25 0.189104 5 C pz 30 0.189104 6 C pz 15 0.160155 3 C pz 20 0.160155 4 C pz Vector 40 Occ=0.000000D+00 E= 5.436774D-01 Symmetry=bg - MO Center= 2.8D-16, 1.4D-17, 2.3D-17, r^2= 3.7D+00 + MO Center= 6.9D-16, 6.7D-15, -6.2D-20, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.547533 1 C pz 10 -0.547533 2 C pz - 25 0.481659 5 C pz 30 -0.481659 6 C pz + 25 0.481660 5 C pz 30 -0.481660 6 C pz 15 -0.479259 3 C pz 20 0.479259 4 C pz 39 0.276511 11 C pz 44 -0.276511 12 C pz 51 -0.160420 15 C pz 56 0.160420 16 C pz - Vector 41 Occ=0.000000D+00 E= 5.712954D-01 Symmetry=ag - MO Center= -6.3D-17, 5.6D-17, 2.4D-19, r^2= 8.6D+00 + Vector 41 Occ=0.000000D+00 E= 5.712926D-01 Symmetry=ag + MO Center= 1.1D-15, -1.9D-16, -3.3D-16, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.419261 7 H s 32 -0.419261 8 H s - 33 -0.414182 9 H s 34 -0.414182 10 H s - 2 0.403086 1 C s 7 0.403086 2 C s - 38 -0.355076 11 C py 43 0.355076 12 C py - 59 -0.353224 19 H s 60 -0.353224 20 H s + 31 -0.419272 7 H s 32 -0.419272 8 H s + 33 -0.414198 9 H s 34 -0.414198 10 H s + 2 0.403076 1 C s 7 0.403076 2 C s + 38 -0.355068 11 C py 43 0.355068 12 C py + 59 -0.353228 19 H s 60 -0.353228 20 H s - Vector 42 Occ=0.000000D+00 E= 5.854633D-01 Symmetry=bu - MO Center= -1.3D-17, -7.8D-16, -2.5D-17, r^2= 1.0D+01 + Vector 42 Occ=0.000000D+00 E= 5.854640D-01 Symmetry=bu + MO Center= -6.6D-16, -1.2D-15, 3.5D-22, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.434963 13 H s 46 -0.434963 14 H s - 37 0.355509 11 C px 42 0.355509 12 C px - 13 0.340128 3 C px 18 0.340128 4 C px - 57 -0.339277 17 H s 58 0.339277 18 H s + 45 0.434972 13 H s 46 -0.434972 14 H s + 37 0.355507 11 C px 42 0.355507 12 C px + 13 0.340120 3 C px 18 0.340120 4 C px + 57 -0.339289 17 H s 58 0.339289 18 H s 59 0.324263 19 H s 60 -0.324263 20 H s - Vector 43 Occ=0.000000D+00 E= 6.360470D-01 Symmetry=bu - MO Center= 1.4D-15, -4.9D-15, -2.4D-18, r^2= 6.6D+00 + Vector 43 Occ=0.000000D+00 E= 6.360495D-01 Symmetry=bu + MO Center= -4.0D-17, 2.2D-16, 5.9D-22, r^2= 6.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.523629 11 C s 41 -0.523629 12 C s - 33 0.469341 9 H s 34 -0.469341 10 H s - 4 0.459158 1 C py 9 0.459158 2 C py - 24 0.330909 5 C py 29 0.330909 6 C py - 38 0.329900 11 C py 43 0.329900 12 C py + 36 0.523666 11 C s 41 -0.523666 12 C s + 33 0.469322 9 H s 34 -0.469322 10 H s + 4 0.459172 1 C py 9 0.459172 2 C py + 24 0.330903 5 C py 29 0.330903 6 C py + 38 0.329904 11 C py 43 0.329904 12 C py - Vector 44 Occ=0.000000D+00 E= 6.401696D-01 Symmetry=ag - MO Center= 2.6D-16, 1.5D-15, 5.2D-20, r^2= 1.1D+01 + Vector 44 Occ=0.000000D+00 E= 6.401707D-01 Symmetry=ag + MO Center= 4.0D-17, 3.8D-17, 3.0D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.590073 13 H s 46 0.590073 14 H s - 36 -0.414477 11 C s 41 -0.414477 12 C s - 12 0.387070 3 C s 17 0.387070 4 C s - 57 -0.382092 17 H s 58 -0.382092 18 H s - 37 0.341848 11 C px 42 -0.341848 12 C px + 45 0.590067 13 H s 46 0.590067 14 H s + 36 -0.414451 11 C s 41 -0.414451 12 C s + 12 0.387079 3 C s 17 0.387079 4 C s + 57 -0.382111 17 H s 58 -0.382111 18 H s + 37 0.341849 11 C px 42 -0.341849 12 C px Vector 45 Occ=0.000000D+00 E= 6.892918D-01 Symmetry=ag - MO Center= -2.3D-15, 3.0D-15, 9.8D-19, r^2= 1.2D+01 + MO Center= 1.1D-16, -2.1D-16, -1.4D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.725345 15 C s 53 0.725345 16 C s - 22 0.571387 5 C s 27 0.571387 6 C s - 57 -0.568657 17 H s 58 -0.568657 18 H s - 12 -0.386330 3 C s 17 -0.386330 4 C s - 59 -0.382906 19 H s 60 -0.382906 20 H s + 48 0.725339 15 C s 53 0.725339 16 C s + 22 0.571384 5 C s 27 0.571384 6 C s + 57 -0.568653 17 H s 58 -0.568653 18 H s + 12 -0.386357 3 C s 17 -0.386357 4 C s + 59 -0.382897 19 H s 60 -0.382897 20 H s center of mass @@ -1745,9 +1733,9 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2550.714209090369 -3.559875766040 0.000000000000 - -3.559875766040 370.755023624029 0.000000000000 - 0.000000000000 0.000000000000 2921.469232714398 + 2550.711185501807 -3.560028643940 0.000000000000 + -3.560028643940 370.755188448993 0.000000000000 + 0.000000000000 0.000000000000 2921.466373950800 Mulliken analysis of the total density -------------------------------------- @@ -1782,23 +1770,24 @@ Divinylbenzene in STO-3G basis set - - - - ----- ---- ------- 0 0 0 0 -0.000000 0.000000 70.000000 - 1 1 0 0 -0.000000 0.000000 0.000000 + 1 1 0 0 0.000000 0.000000 0.000000 1 0 1 0 0.000000 0.000000 0.000000 - 1 0 0 1 -0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 - 2 2 0 0 -38.561828 0.000000 232.574759 - 2 1 1 0 0.160630 0.000000 -3.149223 + 2 2 0 0 -38.561854 0.000000 232.574834 + 2 1 1 0 0.160634 0.000000 -3.149186 2 1 0 1 0.000000 0.000000 0.000000 - 2 0 2 0 -39.205441 0.000000 1450.712898 - 2 0 1 1 0.000000 0.000000 0.000000 - 2 0 0 2 -43.390250 0.000000 0.000000 - - - Parallel integral file used 9 records with 0 large values + 2 0 2 0 -39.205452 0.000000 1450.711174 + 2 0 1 1 -0.000000 0.000000 0.000000 + 2 0 0 2 -43.390246 0.000000 0.000000 Line search: step= 1.00 grad=-2.5D-02 hess= 1.7D-02 energy= -379.776275 mode=downhill new step= 0.71 predicted energy= -379.777719 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 -------- Step 1 @@ -1812,26 +1801,26 @@ Divinylbenzene in STO-3G basis set No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.22724160 1.39423547 0.00000000 - 2 C 6.0000 -0.22724160 -1.39423547 0.00000000 - 3 C 6.0000 1.29011222 0.48657547 0.00000000 - 4 C 6.0000 -1.29011222 -0.48657547 0.00000000 - 5 C 6.0000 1.07074764 -0.87712132 0.00000000 - 6 C 6.0000 -1.07074764 0.87712132 0.00000000 - 7 H 1.0000 2.30553944 0.86382557 0.00000000 - 8 H 1.0000 -2.30553944 -0.86382557 0.00000000 - 9 H 1.0000 1.91688216 -1.55112898 0.00000000 - 10 H 1.0000 -1.91688216 1.55112898 0.00000000 - 11 C 6.0000 -0.52266455 -2.85838895 0.00000000 - 12 C 6.0000 0.52266455 2.85838895 0.00000000 - 13 H 1.0000 -1.57920566 -3.10490067 0.00000000 - 14 H 1.0000 1.57920566 3.10490067 0.00000000 - 15 C 6.0000 0.35138416 -3.83632320 0.00000000 - 16 C 6.0000 -0.35138416 3.83632320 0.00000000 - 17 H 1.0000 1.41873631 -3.66698090 0.00000000 - 18 H 1.0000 -1.41873631 3.66698090 0.00000000 - 19 H 1.0000 0.03422255 -4.87021677 0.00000000 - 20 H 1.0000 -0.03422255 4.87021677 0.00000000 + 1 C 6.0000 0.22724212 1.39423379 0.00000000 + 2 C 6.0000 -0.22724212 -1.39423379 0.00000000 + 3 C 6.0000 1.29011111 0.48657429 0.00000000 + 4 C 6.0000 -1.29011111 -0.48657429 0.00000000 + 5 C 6.0000 1.07074587 -0.87712099 0.00000000 + 6 C 6.0000 -1.07074587 0.87712099 0.00000000 + 7 H 1.0000 2.30553753 0.86382357 0.00000000 + 8 H 1.0000 -2.30553753 -0.86382357 0.00000000 + 9 H 1.0000 1.91687888 -1.55112887 0.00000000 + 10 H 1.0000 -1.91687888 1.55112887 0.00000000 + 11 C 6.0000 -0.52266494 -2.85838677 0.00000000 + 12 C 6.0000 0.52266494 2.85838677 0.00000000 + 13 H 1.0000 -1.57920488 -3.10489919 0.00000000 + 14 H 1.0000 1.57920488 3.10489919 0.00000000 + 15 C 6.0000 0.35138387 -3.83631831 0.00000000 + 16 C 6.0000 -0.35138387 3.83631831 0.00000000 + 17 H 1.0000 1.41873487 -3.66697441 0.00000000 + 18 H 1.0000 -1.41873487 3.66697441 0.00000000 + 19 H 1.0000 0.03422431 -4.87021143 0.00000000 + 20 H 1.0000 -0.03422431 4.87021143 0.00000000 Atomic Mass ----------- @@ -1840,7 +1829,7 @@ Divinylbenzene in STO-3G basis set H 1.007825 - Effective nuclear repulsion energy (a.u.) 452.2054316873 + Effective nuclear repulsion energy (a.u.) 452.2059055972 Nuclear Dipole moment (a.u.) ---------------------------- @@ -1898,7 +1887,7 @@ Divinylbenzene in STO-3G basis set bu 25 - Forming initial guess at 8.7s + Forming initial guess at 7.4s Loading old vectors from job with title : @@ -1926,7 +1915,7 @@ Divinylbenzene in STO-3G basis set 41 ag 42 bu 43 bu 44 ag 45 ag - Starting SCF solution at 8.8s + Starting SCF solution at 7.4s @@ -1939,31 +1928,22 @@ Divinylbenzene in STO-3G basis set ---------------------------------------------- - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.173D+05 #integrals = 3.524D+05 #direct = 0.0% #cached =100.0% - - iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7777487685 3.88D-02 7.83D-03 9.2 - 2 -379.7778715357 1.39D-03 4.68D-04 9.3 - 3 -379.7778717199 3.65D-06 1.11D-06 9.4 + 1 -379.7777477805 3.88D-02 7.83D-03 7.7 + 2 -379.7778710253 1.39D-03 4.68D-04 8.7 + 3 -379.7778712095 3.65D-06 1.11D-06 10.3 Final RHF results ------------------ - Total SCF energy = -379.777871719881 - One-electron energy = -1412.318633962046 - Two-electron energy = 580.335330554840 - Nuclear repulsion energy = 452.205431687324 + Total SCF energy = -379.777871209459 + One-electron energy = -1412.319544119199 + Two-electron energy = 580.335767312527 + Nuclear repulsion energy = 452.205905597213 - Time for solution = 1.9s + Time for solution = 2.9s @@ -2039,210 +2019,210 @@ Divinylbenzene in STO-3G basis set ROHF Final Molecular Orbital Analysis ------------------------------------- - Vector 11 Occ=2.000000D+00 E=-1.106226D+00 Symmetry=ag - MO Center= 1.3D-17, 3.0D-18, -5.9D-34, r^2= 2.9D+00 + Vector 11 Occ=2.000000D+00 E=-1.106227D+00 Symmetry=ag + MO Center= -2.4D-17, -1.0D-16, 4.3D-19, r^2= 2.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.270995 1 C s 7 0.270995 2 C s 12 0.245481 3 C s 17 0.245481 4 C s - 22 0.245388 5 C s 27 0.245388 6 C s + 22 0.245387 5 C s 27 0.245387 6 C s - Vector 12 Occ=2.000000D+00 E=-1.032338D+00 Symmetry=bu - MO Center= 3.5D-17, -9.1D-16, -1.4D-18, r^2= 8.0D+00 + Vector 12 Occ=2.000000D+00 E=-1.032339D+00 Symmetry=bu + MO Center= -9.0D-18, -3.9D-17, 9.5D-22, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.296164 11 C s 41 -0.296164 12 C s + 36 0.296163 11 C s 41 -0.296163 12 C s 2 -0.263009 1 C s 7 0.263009 2 C s 48 0.217380 15 C s 53 -0.217380 16 C s - Vector 13 Occ=2.000000D+00 E=-9.892685D-01 Symmetry=ag - MO Center= 1.4D-17, 2.9D-16, 6.3D-34, r^2= 1.1D+01 + Vector 13 Occ=2.000000D+00 E=-9.892696D-01 Symmetry=ag + MO Center= 7.9D-17, 5.0D-16, 9.4D-35, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.312254 11 C s 41 0.312254 12 C s - 48 0.308631 15 C s 53 0.308631 16 C s + 48 0.308630 15 C s 53 0.308630 16 C s - Vector 14 Occ=2.000000D+00 E=-9.608178D-01 Symmetry=bu - MO Center= -1.9D-16, 1.4D-16, 7.0D-20, r^2= 3.0D+00 + Vector 14 Occ=2.000000D+00 E=-9.608188D-01 Symmetry=bu + MO Center= -1.2D-16, 1.0D-16, -8.6D-21, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.354518 3 C s 17 -0.354518 4 C s - 22 0.320668 5 C s 27 -0.320668 6 C s + 22 0.320669 5 C s 27 -0.320669 6 C s - Vector 15 Occ=2.000000D+00 E=-9.225777D-01 Symmetry=bu - MO Center= 1.4D-16, 1.1D-15, 6.2D-20, r^2= 8.4D+00 + Vector 15 Occ=2.000000D+00 E=-9.225795D-01 Symmetry=bu + MO Center= -4.3D-17, -7.9D-17, -9.7D-22, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.281535 1 C s 7 -0.281535 2 C s - 48 0.281414 15 C s 53 -0.281414 16 C s - 22 -0.201829 5 C s 27 0.201829 6 C s + 2 0.281536 1 C s 7 -0.281536 2 C s + 48 0.281413 15 C s 53 -0.281413 16 C s + 22 -0.201827 5 C s 27 0.201827 6 C s - Vector 16 Occ=2.000000D+00 E=-8.063744D-01 Symmetry=ag - MO Center= -5.9D-17, -9.4D-16, -9.3D-33, r^2= 7.9D+00 + Vector 16 Occ=2.000000D+00 E=-8.063743D-01 Symmetry=ag + MO Center= -3.5D-17, -3.0D-16, -7.2D-19, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.233388 5 C s 27 0.233388 6 C s - 48 0.226406 15 C s 53 0.226406 16 C s - 2 -0.208443 1 C s 7 -0.208443 2 C s - 14 -0.166984 3 C py 19 0.166984 4 C py + 22 0.233387 5 C s 27 0.233387 6 C s + 48 0.226408 15 C s 53 0.226408 16 C s + 2 -0.208445 1 C s 7 -0.208445 2 C s + 14 -0.166985 3 C py 19 0.166985 4 C py 36 -0.155999 11 C s 41 -0.155999 12 C s - Vector 17 Occ=2.000000D+00 E=-7.710203D-01 Symmetry=ag - MO Center= 2.1D-16, -5.4D-16, -6.5D-20, r^2= 4.9D+00 + Vector 17 Occ=2.000000D+00 E=-7.710208D-01 Symmetry=ag + MO Center= 1.0D-16, -1.1D-16, 2.1D-18, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.319443 3 C s 17 0.319443 4 C s - 3 0.188978 1 C px 8 -0.188978 2 C px + 3 0.188980 1 C px 8 -0.188980 2 C px 24 0.174403 5 C py 29 -0.174403 6 C py - 31 0.171988 7 H s 32 0.171988 8 H s - 22 -0.165447 5 C s 27 -0.165447 6 C s + 31 0.171987 7 H s 32 0.171987 8 H s + 22 -0.165449 5 C s 27 -0.165449 6 C s - Vector 18 Occ=2.000000D+00 E=-7.324310D-01 Symmetry=bu - MO Center= -5.8D-16, 9.7D-16, -1.2D-33, r^2= 1.2D+01 + Vector 18 Occ=2.000000D+00 E=-7.324314D-01 Symmetry=bu + MO Center= -6.8D-17, -1.5D-16, -1.8D-35, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.292981 11 C s 41 -0.292981 12 C s - 48 -0.246846 15 C s 53 0.246846 16 C s - 45 0.177338 13 H s 46 -0.177338 14 H s + 48 -0.246845 15 C s 53 0.246845 16 C s + 45 0.177337 13 H s 46 -0.177337 14 H s 57 -0.166598 17 H s 58 0.166598 18 H s - Vector 19 Occ=2.000000D+00 E=-7.064182D-01 Symmetry=ag - MO Center= 1.1D-16, -6.4D-16, -6.8D-18, r^2= 7.7D+00 + Vector 19 Occ=2.000000D+00 E=-7.064189D-01 Symmetry=ag + MO Center= 1.0D-16, 1.0D-16, -1.6D-33, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.195763 5 C px 28 -0.195763 6 C px 36 0.180607 11 C s 41 0.180607 12 C s - 13 0.178097 3 C px 18 -0.178097 4 C px - 33 0.171303 9 H s 34 0.171303 10 H s - 48 -0.163749 15 C s 53 -0.163749 16 C s + 13 0.178096 3 C px 18 -0.178096 4 C px + 33 0.171302 9 H s 34 0.171302 10 H s + 48 -0.163750 15 C s 53 -0.163750 16 C s - Vector 20 Occ=2.000000D+00 E=-6.395852D-01 Symmetry=ag - MO Center= -1.7D-16, -1.4D-16, 6.7D-20, r^2= 9.3D+00 + Vector 20 Occ=2.000000D+00 E=-6.395863D-01 Symmetry=ag + MO Center= 5.2D-16, -1.8D-15, 1.9D-18, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.210674 15 C px 54 -0.210674 16 C px - 38 0.182256 11 C py 43 -0.182256 12 C py + 49 0.210673 15 C px 54 -0.210673 16 C px + 38 0.182258 11 C py 43 -0.182258 12 C py 57 0.182599 17 H s 58 0.182599 18 H s 45 -0.154203 13 H s 46 -0.154203 14 H s - Vector 21 Occ=2.000000D+00 E=-6.156857D-01 Symmetry=bu - MO Center= 3.1D-17, -5.6D-17, 2.2D-20, r^2= 1.0D+01 + Vector 21 Occ=2.000000D+00 E=-6.156868D-01 Symmetry=bu + MO Center= -2.6D-16, 4.0D-15, -1.2D-21, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.215420 11 C px 42 0.215420 12 C px - 50 0.215554 15 C py 55 0.215554 16 C py + 50 0.215553 15 C py 55 0.215553 16 C py 59 -0.188564 19 H s 60 0.188564 20 H s 14 0.186158 3 C py 19 0.186158 4 C py - 45 -0.156252 13 H s 46 0.156252 14 H s + 45 -0.156253 13 H s 46 0.156253 14 H s - Vector 22 Occ=2.000000D+00 E=-5.775006D-01 Symmetry=bu - MO Center= -2.0D-17, 2.1D-16, -1.2D-18, r^2= 6.6D+00 + Vector 22 Occ=2.000000D+00 E=-5.775014D-01 Symmetry=bu + MO Center= -3.0D-16, 1.2D-15, 3.6D-32, r^2= 6.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.233617 9 H s 34 -0.233617 10 H s - 31 -0.232005 7 H s 32 0.232005 8 H s - 13 -0.225373 3 C px 18 -0.225373 4 C px - 2 0.220521 1 C s 7 -0.220521 2 C s - 24 -0.180347 5 C py 29 -0.180347 6 C py + 33 0.233616 9 H s 34 -0.233616 10 H s + 31 -0.232006 7 H s 32 0.232006 8 H s + 13 -0.225375 3 C px 18 -0.225375 4 C px + 2 0.220516 1 C s 7 -0.220516 2 C s + 24 -0.180350 5 C py 29 -0.180350 6 C py - Vector 23 Occ=2.000000D+00 E=-5.636932D-01 Symmetry=bu - MO Center= 4.1D-16, 2.8D-16, -8.3D-20, r^2= 8.5D+00 + Vector 23 Occ=2.000000D+00 E=-5.636939D-01 Symmetry=bu + MO Center= 3.7D-16, -3.1D-15, -3.6D-20, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.258028 5 C px 28 0.258028 6 C px - 49 0.244952 15 C px 54 0.244952 16 C px + 23 0.258031 5 C px 28 0.258031 6 C px + 49 0.244950 15 C px 54 0.244950 16 C px 3 -0.216816 1 C px 8 -0.216816 2 C px - 57 0.213755 17 H s 58 -0.213755 18 H s - 38 0.171613 11 C py 43 0.171613 12 C py + 57 0.213753 17 H s 58 -0.213753 18 H s + 38 0.171610 11 C py 43 0.171610 12 C py - Vector 24 Occ=2.000000D+00 E=-5.630739D-01 Symmetry=ag - MO Center= 4.0D-17, 3.3D-16, 2.2D-19, r^2= 1.4D+01 + Vector 24 Occ=2.000000D+00 E=-5.630748D-01 Symmetry=ag + MO Center= 2.8D-17, -7.0D-17, 4.4D-19, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.338025 15 C py 55 -0.338025 16 C py 59 -0.265422 19 H s 60 -0.265422 20 H s 37 0.251183 11 C px 42 -0.251183 12 C px - 45 -0.150767 13 H s 46 -0.150767 14 H s + 45 -0.150766 13 H s 46 -0.150766 14 H s - Vector 25 Occ=2.000000D+00 E=-5.324677D-01 Symmetry=bu - MO Center= 1.6D-16, -5.1D-17, -4.5D-20, r^2= 4.3D+00 + Vector 25 Occ=2.000000D+00 E=-5.324688D-01 Symmetry=bu + MO Center= -7.5D-17, 1.8D-17, -1.8D-22, r^2= 4.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.303547 3 C px 18 0.303547 4 C px + 13 0.303546 3 C px 18 0.303546 4 C px 31 0.256564 7 H s 32 -0.256564 8 H s - 24 -0.228788 5 C py 29 -0.228788 6 C py + 24 -0.228789 5 C py 29 -0.228789 6 C py 33 0.222170 9 H s 34 -0.222170 10 H s - 23 0.186973 5 C px 28 0.186973 6 C px + 23 0.186972 5 C px 28 0.186972 6 C px - Vector 26 Occ=2.000000D+00 E=-5.068215D-01 Symmetry=bu - MO Center= 4.3D-16, -9.2D-16, -5.9D-35, r^2= 8.7D+00 + Vector 26 Occ=2.000000D+00 E=-5.068223D-01 Symmetry=bu + MO Center= 2.7D-16, -1.5D-16, 3.3D-22, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.238517 15 C py 55 -0.238517 16 C py - 14 0.223706 3 C py 19 0.223706 4 C py + 14 0.223705 3 C py 19 0.223705 4 C py 37 -0.208903 11 C px 42 -0.208903 12 C px - 38 0.188878 11 C py 43 0.188878 12 C py - 24 -0.186989 5 C py 29 -0.186989 6 C py + 38 0.188880 11 C py 43 0.188880 12 C py + 24 -0.186988 5 C py 29 -0.186988 6 C py - Vector 27 Occ=2.000000D+00 E=-4.977764D-01 Symmetry=ag - MO Center= 1.1D-16, -1.4D-16, -7.6D-21, r^2= 1.2D+01 + Vector 27 Occ=2.000000D+00 E=-4.977772D-01 Symmetry=ag + MO Center= -4.7D-17, -1.9D-17, 1.4D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.295694 15 C px 54 -0.295694 16 C px - 57 0.268293 17 H s 58 0.268293 18 H s - 37 -0.207951 11 C px 42 0.207951 12 C px + 49 0.295695 15 C px 54 -0.295695 16 C px + 57 0.268294 17 H s 58 0.268294 18 H s + 37 -0.207950 11 C px 42 0.207950 12 C px 45 0.202679 13 H s 46 0.202679 14 H s - 31 -0.157464 7 H s 32 -0.157464 8 H s + 31 -0.157463 7 H s 32 -0.157463 8 H s - Vector 28 Occ=2.000000D+00 E=-4.769904D-01 Symmetry=au - MO Center= 1.3D-18, 3.5D-17, 6.5D-18, r^2= 3.5D+00 + Vector 28 Occ=2.000000D+00 E=-4.769914D-01 Symmetry=au + MO Center= -9.2D-18, 7.8D-18, -1.0D-17, r^2= 3.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.328557 1 C pz 10 0.328557 2 C pz 15 0.301650 3 C pz 20 0.301650 4 C pz - 25 0.300846 5 C pz 30 0.300846 6 C pz - 39 0.160686 11 C pz 44 0.160686 12 C pz + 25 0.300845 5 C pz 30 0.300845 6 C pz + 39 0.160685 11 C pz 44 0.160685 12 C pz - Vector 29 Occ=2.000000D+00 E=-4.488973D-01 Symmetry=bu - MO Center= 1.5D-16, -1.7D-16, 5.7D-34, r^2= 1.2D+01 + Vector 29 Occ=2.000000D+00 E=-4.488972D-01 Symmetry=bu + MO Center= -2.4D-16, -7.3D-17, -7.0D-34, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.256101 13 H s 46 -0.256101 14 H s - 4 0.247607 1 C py 9 0.247607 2 C py + 45 0.256102 13 H s 46 -0.256102 14 H s + 4 0.247605 1 C py 9 0.247605 2 C py 57 0.228180 17 H s 58 -0.228180 18 H s 59 -0.217854 19 H s 60 0.217854 20 H s - 37 -0.213413 11 C px 42 -0.213413 12 C px + 37 -0.213414 11 C px 42 -0.213414 12 C px - Vector 30 Occ=2.000000D+00 E=-4.255105D-01 Symmetry=ag - MO Center= 6.3D-17, -1.0D-16, 1.2D-20, r^2= 5.1D+00 + Vector 30 Occ=2.000000D+00 E=-4.255097D-01 Symmetry=ag + MO Center= 1.3D-17, 2.6D-16, 6.1D-21, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 33 0.278311 9 H s 34 0.278311 10 H s - 14 0.237233 3 C py 19 -0.237233 4 C py - 3 0.228157 1 C px 8 -0.228157 2 C px - 4 -0.222272 1 C py 9 0.222272 2 C py - 13 -0.208741 3 C px 18 0.208741 4 C px + 14 0.237232 3 C py 19 -0.237232 4 C py + 3 0.228159 1 C px 8 -0.228159 2 C px + 4 -0.222270 1 C py 9 0.222270 2 C py + 13 -0.208743 3 C px 18 0.208743 4 C px - Vector 31 Occ=2.000000D+00 E=-4.187042D-01 Symmetry=ag - MO Center= -4.9D-17, 2.8D-17, -9.3D-21, r^2= 6.9D+00 + Vector 31 Occ=2.000000D+00 E=-4.187036D-01 Symmetry=ag + MO Center= -4.5D-17, -6.5D-17, 2.2D-18, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 3 0.230874 1 C px 8 -0.230874 2 C px - 23 0.231133 5 C px 28 -0.231133 6 C px + 3 0.230873 1 C px 8 -0.230873 2 C px + 23 0.231132 5 C px 28 -0.231132 6 C px 31 -0.231743 7 H s 32 -0.231743 8 H s - 38 0.196126 11 C py 43 -0.196126 12 C py - 4 0.189664 1 C py 9 -0.189664 2 C py + 38 0.196128 11 C py 43 -0.196128 12 C py + 4 0.189666 1 C py 9 -0.189666 2 C py - Vector 32 Occ=2.000000D+00 E=-3.874132D-01 Symmetry=bg - MO Center= 2.8D-17, 1.1D-16, 1.9D-18, r^2= 8.5D+00 + Vector 32 Occ=2.000000D+00 E=-3.874140D-01 Symmetry=bg + MO Center= -9.3D-19, -6.5D-18, 7.5D-21, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.382566 11 C pz 44 -0.382566 12 C pz 5 -0.310990 1 C pz 10 0.310990 2 C pz 51 0.311041 15 C pz 56 -0.311041 16 C pz - Vector 33 Occ=2.000000D+00 E=-3.274489D-01 Symmetry=au - MO Center= -9.0D-17, 9.0D-35, -4.7D-19, r^2= 1.1D+01 + Vector 33 Occ=2.000000D+00 E=-3.274497D-01 Symmetry=au + MO Center= -2.1D-18, -9.6D-18, -5.7D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.425514 15 C pz 56 0.425514 16 C pz @@ -2250,15 +2230,15 @@ Divinylbenzene in STO-3G basis set 15 -0.159924 3 C pz 20 -0.159924 4 C pz 25 -0.160186 5 C pz 30 -0.160186 6 C pz - Vector 34 Occ=2.000000D+00 E=-2.857900D-01 Symmetry=bg - MO Center= 1.7D-20, -1.4D-20, -1.4D-19, r^2= 2.6D+00 + Vector 34 Occ=2.000000D+00 E=-2.857906D-01 Symmetry=bg + MO Center= 9.6D-17, 1.5D-17, -2.6D-20, r^2= 2.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.458819 3 C pz 20 -0.458819 4 C pz - 25 0.460817 5 C pz 30 -0.460817 6 C pz + 25 0.460816 5 C pz 30 -0.460816 6 C pz - Vector 35 Occ=2.000000D+00 E=-2.326017D-01 Symmetry=bg - MO Center= -8.3D-17, -4.4D-16, -6.6D-19, r^2= 6.8D+00 + Vector 35 Occ=2.000000D+00 E=-2.326025D-01 Symmetry=bg + MO Center= 1.9D-17, 1.4D-16, 1.1D-19, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.422125 1 C pz 10 -0.422125 2 C pz @@ -2267,101 +2247,101 @@ Divinylbenzene in STO-3G basis set 25 -0.232533 5 C pz 30 0.232533 6 C pz 39 0.214967 11 C pz 44 -0.214967 12 C pz - Vector 36 Occ=0.000000D+00 E= 2.063358D-01 Symmetry=au - MO Center= -1.4D-17, 2.2D-16, 1.5D-19, r^2= 7.0D+00 + Vector 36 Occ=0.000000D+00 E= 2.063361D-01 Symmetry=au + MO Center= 1.9D-17, -1.8D-17, -1.1D-18, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.480411 1 C pz 10 0.480411 2 C pz + 5 0.480412 1 C pz 10 0.480412 2 C pz 51 -0.410410 15 C pz 56 -0.410410 16 C pz 25 -0.284854 5 C pz 30 -0.284854 6 C pz 15 -0.250277 3 C pz 20 -0.250277 4 C pz 39 0.247674 11 C pz 44 0.247674 12 C pz - Vector 37 Occ=0.000000D+00 E= 2.735382D-01 Symmetry=au - MO Center= -2.7D-16, -6.0D-17, -1.5D-18, r^2= 2.7D+00 + Vector 37 Occ=0.000000D+00 E= 2.735385D-01 Symmetry=au + MO Center= -8.2D-18, -4.0D-17, 1.4D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.583890 3 C pz 20 0.583890 4 C pz - 25 -0.559760 5 C pz 30 -0.559760 6 C pz + 25 -0.559761 5 C pz 30 -0.559761 6 C pz - Vector 38 Occ=0.000000D+00 E= 3.192198D-01 Symmetry=bg - MO Center= 2.6D-16, -1.2D-35, -3.2D-19, r^2= 1.1D+01 + Vector 38 Occ=0.000000D+00 E= 3.192204D-01 Symmetry=bg + MO Center= 1.4D-17, -8.6D-17, -1.7D-21, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 -0.537463 15 C pz 56 0.537463 16 C pz - 39 0.531193 11 C pz 44 -0.531193 12 C pz + 51 -0.537464 15 C pz 56 0.537464 16 C pz + 39 0.531194 11 C pz 44 -0.531194 12 C pz 15 0.223589 3 C pz 20 -0.223589 4 C pz 25 -0.217792 5 C pz 30 0.217792 6 C pz - Vector 39 Occ=0.000000D+00 E= 4.067480D-01 Symmetry=au - MO Center= 4.2D-17, 5.0D-16, 3.7D-18, r^2= 8.4D+00 + Vector 39 Occ=0.000000D+00 E= 4.067486D-01 Symmetry=au + MO Center= -7.0D-16, -7.4D-15, 1.1D-15, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 0.540891 11 C pz 44 0.540891 12 C pz + 39 0.540892 11 C pz 44 0.540892 12 C pz 5 -0.471023 1 C pz 10 -0.471023 2 C pz 51 -0.417701 15 C pz 56 -0.417701 16 C pz 25 0.188443 5 C pz 30 0.188443 6 C pz 15 0.160675 3 C pz 20 0.160675 4 C pz - Vector 40 Occ=0.000000D+00 E= 5.372072D-01 Symmetry=bg - MO Center= -1.2D-16, -2.2D-16, 7.7D-19, r^2= 3.7D+00 + Vector 40 Occ=0.000000D+00 E= 5.372081D-01 Symmetry=bg + MO Center= 8.9D-16, 7.0D-15, -4.6D-20, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.544893 1 C pz 10 -0.544893 2 C pz 15 -0.476381 3 C pz 20 0.476381 4 C pz 25 0.478665 5 C pz 30 -0.478665 6 C pz - 39 0.277106 11 C pz 44 -0.277106 12 C pz + 39 0.277105 11 C pz 44 -0.277105 12 C pz 51 -0.159840 15 C pz 56 0.159840 16 C pz - Vector 41 Occ=0.000000D+00 E= 5.696467D-01 Symmetry=ag - MO Center= 1.6D-16, 1.1D-16, -1.4D-18, r^2= 8.6D+00 + Vector 41 Occ=0.000000D+00 E= 5.696447D-01 Symmetry=ag + MO Center= 1.6D-17, 2.2D-16, -3.0D-16, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.420271 7 H s 32 -0.420271 8 H s - 33 -0.419619 9 H s 34 -0.419619 10 H s - 2 0.397277 1 C s 7 0.397277 2 C s - 59 -0.353041 19 H s 60 -0.353041 20 H s - 38 -0.347221 11 C py 43 0.347221 12 C py + 31 -0.420285 7 H s 32 -0.420285 8 H s + 33 -0.419638 9 H s 34 -0.419638 10 H s + 2 0.397259 1 C s 7 0.397259 2 C s + 59 -0.353037 19 H s 60 -0.353037 20 H s + 38 -0.347215 11 C py 43 0.347215 12 C py - Vector 42 Occ=0.000000D+00 E= 5.827939D-01 Symmetry=bu - MO Center= 1.6D-16, -6.7D-16, -4.1D-19, r^2= 1.0D+01 + Vector 42 Occ=0.000000D+00 E= 5.827942D-01 Symmetry=bu + MO Center= 8.3D-17, 2.6D-16, 3.6D-23, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.439833 13 H s 46 -0.439833 14 H s - 37 0.354949 11 C px 42 0.354949 12 C px - 13 0.345833 3 C px 18 0.345833 4 C px - 57 -0.334015 17 H s 58 0.334015 18 H s - 31 -0.319954 7 H s 32 0.319954 8 H s + 45 0.439837 13 H s 46 -0.439837 14 H s + 37 0.354947 11 C px 42 0.354947 12 C px + 13 0.345823 3 C px 18 0.345823 4 C px + 57 -0.334027 17 H s 58 0.334027 18 H s + 31 -0.319939 7 H s 32 0.319939 8 H s - Vector 43 Occ=0.000000D+00 E= 6.331002D-01 Symmetry=bu - MO Center= 1.3D-16, 5.6D-17, 2.7D-19, r^2= 7.1D+00 + Vector 43 Occ=0.000000D+00 E= 6.331022D-01 Symmetry=bu + MO Center= 1.8D-16, -4.3D-16, 7.3D-24, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.525506 11 C s 41 -0.525506 12 C s - 4 0.460299 1 C py 9 0.460299 2 C py - 33 0.453252 9 H s 34 -0.453252 10 H s - 24 0.331150 5 C py 29 0.331150 6 C py - 38 0.329898 11 C py 43 0.329898 12 C py + 36 0.525540 11 C s 41 -0.525540 12 C s + 4 0.460304 1 C py 9 0.460304 2 C py + 33 0.453235 9 H s 34 -0.453235 10 H s + 24 0.331140 5 C py 29 0.331140 6 C py + 38 0.329896 11 C py 43 0.329896 12 C py - Vector 44 Occ=0.000000D+00 E= 6.347674D-01 Symmetry=ag - MO Center= -1.7D-17, 1.3D-15, 5.1D-19, r^2= 1.1D+01 + Vector 44 Occ=0.000000D+00 E= 6.347694D-01 Symmetry=ag + MO Center= -1.8D-16, 4.1D-16, 2.7D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.589715 13 H s 46 0.589715 14 H s - 36 -0.409313 11 C s 41 -0.409313 12 C s - 12 0.388876 3 C s 17 0.388876 4 C s - 57 -0.383161 17 H s 58 -0.383161 18 H s - 37 0.343923 11 C px 42 -0.343923 12 C px + 36 -0.409292 11 C s 41 -0.409292 12 C s + 12 0.388879 3 C s 17 0.388879 4 C s + 57 -0.383176 17 H s 58 -0.383176 18 H s + 37 0.343930 11 C px 42 -0.343930 12 C px - Vector 45 Occ=0.000000D+00 E= 6.803596D-01 Symmetry=ag - MO Center= 5.3D-16, -1.1D-15, 2.7D-18, r^2= 1.2D+01 + Vector 45 Occ=0.000000D+00 E= 6.803606D-01 Symmetry=ag + MO Center= 6.6D-17, 1.3D-16, 4.5D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.714454 15 C s 53 0.714454 16 C s - 22 0.576445 5 C s 27 0.576445 6 C s - 57 -0.560548 17 H s 58 -0.560548 18 H s - 12 -0.407769 3 C s 17 -0.407769 4 C s - 59 -0.369736 19 H s 60 -0.369736 20 H s + 48 0.714446 15 C s 53 0.714446 16 C s + 22 0.576448 5 C s 27 0.576448 6 C s + 57 -0.560546 17 H s 58 -0.560546 18 H s + 12 -0.407767 3 C s 17 -0.407767 4 C s + 59 -0.369726 19 H s 60 -0.369726 20 H s center of mass @@ -2370,9 +2350,9 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2574.039765462049 -2.551110151665 0.000000000000 - -2.551110151665 376.487158877255 0.000000000000 - 0.000000000000 0.000000000000 2950.526924339304 + 2574.034121510007 -2.551370060263 0.000000000000 + -2.551370060263 376.486424787198 0.000000000000 + 0.000000000000 0.000000000000 2950.520546297204 Mulliken analysis of the total density -------------------------------------- @@ -2407,19 +2387,16 @@ Divinylbenzene in STO-3G basis set - - - - ----- ---- ------- 0 0 0 0 -0.000000 0.000000 70.000000 - 1 1 0 0 0.000000 0.000000 0.000000 + 1 1 0 0 -0.000000 0.000000 0.000000 1 0 1 0 -0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 - 2 2 0 0 -38.506037 0.000000 236.067998 - 2 1 1 0 0.132847 0.000000 -3.853541 - 2 1 0 1 -0.000000 0.000000 0.000000 - 2 0 2 0 -39.151513 0.000000 1464.028399 - 2 0 1 1 0.000000 0.000000 0.000000 - 2 0 0 2 -43.441718 0.000000 0.000000 - - - Parallel integral file used 9 records with 0 large values + 2 2 0 0 -38.506068 0.000000 236.067533 + 2 1 1 0 0.132860 0.000000 -3.853410 + 2 1 0 1 0.000000 0.000000 0.000000 + 2 0 2 0 -39.151527 0.000000 1464.025178 + 2 0 1 1 -0.000000 0.000000 0.000000 + 2 0 0 2 -43.441708 0.000000 0.000000 NWChem Gradients Module ----------------------- @@ -2437,38 +2414,39 @@ Divinylbenzene in STO-3G basis set atom coordinates gradient x y z x y z - 1 C 0.429424 2.634723 0.000000 -0.000155 0.004270 0.000000 - 2 C -0.429424 -2.634723 0.000000 0.000155 -0.004270 0.000000 - 3 C 2.437959 0.919494 0.000000 0.000683 -0.001774 0.000000 - 4 C -2.437959 -0.919494 0.000000 -0.000683 0.001774 0.000000 - 5 C 2.023420 -1.657519 0.000000 0.001977 0.002639 0.000000 - 6 C -2.023420 1.657519 0.000000 -0.001977 -0.002639 -0.000000 - 7 H 4.356838 1.632394 0.000000 0.000464 0.000438 0.000000 - 8 H -4.356838 -1.632394 0.000000 -0.000464 -0.000438 0.000000 - 9 H 3.622382 -2.931209 0.000000 -0.000186 -0.000883 0.000000 - 10 H -3.622382 2.931209 0.000000 0.000186 0.000883 0.000000 - 11 C -0.987693 -5.401572 0.000000 0.002725 0.000196 0.000000 - 12 C 0.987693 5.401572 0.000000 -0.002725 -0.000196 0.000000 - 13 H -2.984266 -5.867411 0.000000 -0.000241 -0.001173 0.000000 - 14 H 2.984266 5.867411 0.000000 0.000241 0.001173 0.000000 - 15 C 0.664020 -7.249600 0.000000 -0.002363 0.001763 0.000000 - 16 C -0.664020 7.249600 0.000000 0.002363 -0.001763 0.000000 - 17 H 2.681023 -6.929589 0.000000 0.000157 0.001240 0.000000 - 18 H -2.681023 6.929589 0.000000 -0.000157 -0.001240 0.000000 - 19 H 0.064671 -9.203375 0.000000 -0.000909 -0.000158 0.000000 - 20 H -0.064671 9.203375 0.000000 0.000909 0.000158 0.000000 + 1 C 0.429425 2.634720 0.000000 -0.000156 0.004269 0.000000 + 2 C -0.429425 -2.634720 0.000000 0.000156 -0.004269 0.000000 + 3 C 2.437956 0.919492 0.000000 0.000682 -0.001775 0.000000 + 4 C -2.437956 -0.919492 0.000000 -0.000682 0.001775 0.000000 + 5 C 2.023416 -1.657518 0.000000 0.001977 0.002640 0.000000 + 6 C -2.023416 1.657518 0.000000 -0.001977 -0.002640 0.000000 + 7 H 4.356834 1.632390 0.000000 0.000463 0.000438 0.000000 + 8 H -4.356834 -1.632390 0.000000 -0.000463 -0.000438 0.000000 + 9 H 3.622376 -2.931209 0.000000 -0.000186 -0.000883 0.000000 + 10 H -3.622376 2.931209 0.000000 0.000186 0.000883 0.000000 + 11 C -0.987694 -5.401568 0.000000 0.002726 0.000194 0.000000 + 12 C 0.987694 5.401568 0.000000 -0.002726 -0.000194 0.000000 + 13 H -2.984265 -5.867409 0.000000 -0.000240 -0.001173 0.000000 + 14 H 2.984265 5.867409 0.000000 0.000240 0.001173 0.000000 + 15 C 0.664019 -7.249590 0.000000 -0.002365 0.001765 0.000000 + 16 C -0.664019 7.249590 0.000000 0.002365 -0.001765 0.000000 + 17 H 2.681020 -6.929577 0.000000 0.000156 0.001240 0.000000 + 18 H -2.681020 6.929577 0.000000 -0.000156 -0.001240 0.000000 + 19 H 0.064675 -9.203365 0.000000 -0.000909 -0.000157 0.000000 + 20 H -0.064675 9.203365 0.000000 0.000909 0.000157 0.000000 ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.02 | 2.64 | + | CPU | 0.00 | 0.56 | ---------------------------------------- - | WALL | 0.02 | 2.64 | + | WALL | 0.00 | 0.56 | ---------------------------------------- + no constraints, skipping 0.0000000000000000 Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 1 -379.77787172 -8.9D-03 0.00420 0.00083 0.04325 0.11704 13.4 +@ 1 -379.77787121 -8.9D-03 0.00420 0.00083 0.04325 0.11705 10.9 @@ -2481,17 +2459,17 @@ Divinylbenzene in STO-3G basis set Type Name I J K L M Value Gradient ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- 1 Stretch 1 3 1.39769 0.00158 - 2 Stretch 1 6 1.39721 0.00211 + 2 Stretch 1 6 1.39720 0.00211 3 Stretch 1 12 1.49366 -0.00171 4 Stretch 2 4 1.39769 0.00158 - 5 Stretch 2 5 1.39721 0.00211 + 5 Stretch 2 5 1.39720 0.00211 6 Stretch 2 11 1.49366 -0.00171 - 7 Stretch 3 5 1.38123 -0.00035 + 7 Stretch 3 5 1.38123 -0.00036 8 Stretch 3 7 1.08324 0.00059 - 9 Stretch 4 6 1.38123 -0.00035 + 9 Stretch 4 6 1.38123 -0.00036 10 Stretch 4 8 1.08324 0.00059 - 11 Stretch 5 9 1.08177 0.00041 - 12 Stretch 6 10 1.08177 0.00041 + 11 Stretch 5 9 1.08177 0.00040 + 12 Stretch 6 10 1.08177 0.00040 13 Stretch 11 13 1.08492 0.00050 14 Stretch 11 15 1.31161 -0.00420 15 Stretch 12 14 1.08492 0.00050 @@ -2500,69 +2478,69 @@ Divinylbenzene in STO-3G basis set 18 Stretch 15 19 1.08145 0.00042 19 Stretch 16 18 1.08070 0.00035 20 Stretch 16 20 1.08145 0.00042 - 21 Bend 1 3 5 121.35802 -0.00005 + 21 Bend 1 3 5 121.35801 -0.00005 22 Bend 1 3 7 119.12269 -0.00011 - 23 Bend 1 6 4 120.86048 0.00012 - 24 Bend 1 6 10 119.73797 -0.00050 - 25 Bend 1 12 14 114.54071 0.00074 - 26 Bend 1 12 16 126.80316 -0.00029 - 27 Bend 2 4 6 121.35802 -0.00005 + 23 Bend 1 6 4 120.86049 0.00012 + 24 Bend 1 6 10 119.73795 -0.00050 + 25 Bend 1 12 14 114.54076 0.00074 + 26 Bend 1 12 16 126.80308 -0.00029 + 27 Bend 2 4 6 121.35801 -0.00005 28 Bend 2 4 8 119.12269 -0.00011 - 29 Bend 2 5 3 120.86048 0.00012 - 30 Bend 2 5 9 119.73797 -0.00050 - 31 Bend 2 11 13 114.54071 0.00074 - 32 Bend 2 11 15 126.80316 -0.00029 + 29 Bend 2 5 3 120.86049 0.00012 + 30 Bend 2 5 9 119.73795 -0.00050 + 31 Bend 2 11 13 114.54076 0.00074 + 32 Bend 2 11 15 126.80308 -0.00029 33 Bend 3 1 6 117.78150 -0.00007 - 34 Bend 3 1 12 119.08891 -0.00019 - 35 Bend 3 5 9 119.40154 0.00038 + 34 Bend 3 1 12 119.08894 -0.00019 + 35 Bend 3 5 9 119.40156 0.00038 36 Bend 4 2 5 117.78150 -0.00007 - 37 Bend 4 2 11 119.08891 -0.00019 - 38 Bend 4 6 10 119.40154 0.00038 - 39 Bend 5 2 11 123.12959 0.00026 - 40 Bend 5 3 7 119.51930 0.00016 - 41 Bend 6 1 12 123.12959 0.00026 - 42 Bend 6 4 8 119.51930 0.00016 - 43 Bend 11 15 17 122.77420 -0.00057 - 44 Bend 11 15 19 121.15645 -0.00016 - 45 Bend 12 16 18 122.77420 -0.00057 - 46 Bend 12 16 20 121.15645 -0.00016 - 47 Bend 13 11 15 118.65613 -0.00044 - 48 Bend 14 12 16 118.65613 -0.00044 - 49 Bend 17 15 19 116.06935 0.00073 - 50 Bend 18 16 20 116.06935 0.00073 - 51 Torsion 1 3 5 2 0.00000 -0.00000 + 37 Bend 4 2 11 119.08894 -0.00019 + 38 Bend 4 6 10 119.40156 0.00038 + 39 Bend 5 2 11 123.12956 0.00026 + 40 Bend 5 3 7 119.51931 0.00016 + 41 Bend 6 1 12 123.12956 0.00026 + 42 Bend 6 4 8 119.51931 0.00016 + 43 Bend 11 15 17 122.77419 -0.00057 + 44 Bend 11 15 19 121.15647 -0.00016 + 45 Bend 12 16 18 122.77419 -0.00057 + 46 Bend 12 16 20 121.15647 -0.00016 + 47 Bend 13 11 15 118.65616 -0.00044 + 48 Bend 14 12 16 118.65616 -0.00044 + 49 Bend 17 15 19 116.06934 0.00073 + 50 Bend 18 16 20 116.06934 0.00073 + 51 Torsion 1 3 5 2 0.00000 0.00000 52 Torsion 1 3 5 9 180.00000 0.00000 - 53 Torsion 1 6 4 2 0.00000 -0.00000 - 54 Torsion 1 6 4 8 180.00000 -0.00000 + 53 Torsion 1 6 4 2 0.00000 0.00000 + 54 Torsion 1 6 4 8 180.00000 0.00000 55 Torsion 1 12 16 18 0.00000 0.00000 - 56 Torsion 1 12 16 20 180.00000 -0.00000 + 56 Torsion 1 12 16 20 180.00000 0.00000 57 Torsion 2 4 6 10 180.00000 0.00000 - 58 Torsion 2 5 3 7 180.00000 -0.00000 - 59 Torsion 2 11 15 17 0.00000 -0.00000 - 60 Torsion 2 11 15 19 180.00000 -0.00000 + 58 Torsion 2 5 3 7 180.00000 0.00000 + 59 Torsion 2 11 15 17 0.00000 0.00000 + 60 Torsion 2 11 15 19 180.00000 0.00000 61 Torsion 3 1 6 4 0.00000 0.00000 - 62 Torsion 3 1 6 10 180.00000 -0.00000 + 62 Torsion 3 1 6 10 180.00000 0.00000 63 Torsion 3 1 12 14 0.00000 0.00000 64 Torsion 3 1 12 16 180.00000 0.00000 65 Torsion 3 5 2 4 0.00000 0.00000 66 Torsion 3 5 2 11 180.00000 0.00000 67 Torsion 4 2 5 9 180.00000 0.00000 - 68 Torsion 4 2 11 13 0.00000 -0.00000 + 68 Torsion 4 2 11 13 0.00000 0.00000 69 Torsion 4 2 11 15 180.00000 0.00000 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 -0.00000 + 71 Torsion 5 2 4 6 -0.00000 0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 - 73 Torsion 5 2 11 13 180.00000 -0.00000 - 74 Torsion 5 2 11 15 0.00000 -0.00000 - 75 Torsion 5 3 1 6 0.00000 -0.00000 - 76 Torsion 5 3 1 12 180.00000 -0.00000 - 77 Torsion 6 1 3 7 180.00000 -0.00000 + 73 Torsion 5 2 11 13 180.00000 0.00000 + 74 Torsion 5 2 11 15 0.00000 0.00000 + 75 Torsion 5 3 1 6 0.00000 0.00000 + 76 Torsion 5 3 1 12 180.00000 0.00000 + 77 Torsion 6 1 3 7 180.00000 0.00000 78 Torsion 6 1 12 14 180.00000 0.00000 79 Torsion 6 1 12 16 0.00000 0.00000 - 80 Torsion 6 4 2 11 180.00000 -0.00000 - 81 Torsion 7 3 1 12 -0.00000 -0.00000 - 82 Torsion 7 3 5 9 0.00000 -0.00000 - 83 Torsion 8 4 2 11 -0.00000 -0.00000 + 80 Torsion 6 4 2 11 180.00000 0.00000 + 81 Torsion 7 3 1 12 -0.00000 0.00000 + 82 Torsion 7 3 5 9 0.00000 0.00000 + 83 Torsion 8 4 2 11 -0.00000 0.00000 84 Torsion 8 4 6 10 0.00000 0.00000 85 Torsion 9 5 2 11 0.00000 0.00000 86 Torsion 10 6 1 12 0.00000 0.00000 @@ -2571,6 +2549,10 @@ Divinylbenzene in STO-3G basis set 89 Torsion 14 12 16 18 180.00000 0.00000 90 Torsion 14 12 16 20 -0.00000 0.00000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 NWChem SCF Module ----------------- @@ -2609,7 +2591,7 @@ Divinylbenzene in STO-3G basis set bu 25 - Forming initial guess at 13.8s + Forming initial guess at 10.9s Loading old vectors from job with title : @@ -2637,7 +2619,7 @@ Divinylbenzene in STO-3G basis set 41 ag 42 bu 43 bu 44 ag 45 ag - Starting SCF solution at 13.8s + Starting SCF solution at 10.9s @@ -2650,31 +2632,22 @@ Divinylbenzene in STO-3G basis set ---------------------------------------------- - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.173D+05 #integrals = 3.522D+05 #direct = 0.0% #cached =100.0% - - iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7779267499 1.14D-02 2.55D-03 14.0 - 2 -379.7779382028 1.24D-04 3.33D-05 14.0 - 3 -379.7779382049 2.94D-06 9.82D-07 14.1 + 1 -379.7779258093 1.14D-02 2.55D-03 11.2 + 2 -379.7779377259 1.23D-04 3.34D-05 12.6 + 3 -379.7779377280 2.89D-06 9.67D-07 13.8 Final RHF results ------------------ - Total SCF energy = -379.777938204874 - One-electron energy = -1412.191347821370 - Two-electron energy = 580.268934995161 - Nuclear repulsion energy = 452.144474621336 + Total SCF energy = -379.777937728006 + One-electron energy = -1412.191653901135 + Two-electron energy = 580.269084101519 + Nuclear repulsion energy = 452.144632071610 - Time for solution = 1.8s + Time for solution = 2.9s @@ -2750,163 +2723,163 @@ Divinylbenzene in STO-3G basis set ROHF Final Molecular Orbital Analysis ------------------------------------- - Vector 11 Occ=2.000000D+00 E=-1.107062D+00 Symmetry=ag - MO Center= -1.8D-17, -4.1D-17, -4.4D-35, r^2= 2.8D+00 + Vector 11 Occ=2.000000D+00 E=-1.107061D+00 Symmetry=ag + MO Center= 3.1D-17, 1.3D-16, -1.2D-19, r^2= 2.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.270971 1 C s 7 0.270971 2 C s 12 0.245871 3 C s 17 0.245871 4 C s - 22 0.245769 5 C s 27 0.245769 6 C s + 22 0.245768 5 C s 27 0.245768 6 C s Vector 12 Occ=2.000000D+00 E=-1.031568D+00 Symmetry=bu - MO Center= -2.1D-17, -1.3D-16, 1.2D-36, r^2= 7.9D+00 + MO Center= 5.1D-18, 9.1D-17, 2.0D-23, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.294852 11 C s 41 -0.294852 12 C s - 2 -0.265712 1 C s 7 0.265712 2 C s + 36 0.294851 11 C s 41 -0.294851 12 C s + 2 -0.265713 1 C s 7 0.265713 2 C s 48 0.215088 15 C s 53 -0.215088 16 C s - Vector 13 Occ=2.000000D+00 E=-9.880593D-01 Symmetry=ag - MO Center= -2.2D-19, -2.5D-16, 5.3D-21, r^2= 1.1D+01 + Vector 13 Occ=2.000000D+00 E=-9.880595D-01 Symmetry=ag + MO Center= -3.4D-17, 8.7D-17, -7.6D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.313472 11 C s 41 0.313472 12 C s - 48 0.309409 15 C s 53 0.309409 16 C s + 48 0.309408 15 C s 53 0.309408 16 C s - Vector 14 Occ=2.000000D+00 E=-9.611655D-01 Symmetry=bu - MO Center= -2.2D-16, 5.2D-17, 7.3D-20, r^2= 3.0D+00 + Vector 14 Occ=2.000000D+00 E=-9.611659D-01 Symmetry=bu + MO Center= -1.4D-16, -3.2D-17, 1.0D-23, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.353934 3 C s 17 -0.353934 4 C s + 12 0.353935 3 C s 17 -0.353935 4 C s 22 0.321162 5 C s 27 -0.321162 6 C s - Vector 15 Occ=2.000000D+00 E=-9.227631D-01 Symmetry=bu - MO Center= -8.9D-17, 1.1D-15, 1.0D-20, r^2= 8.5D+00 + Vector 15 Occ=2.000000D+00 E=-9.227640D-01 Symmetry=bu + MO Center= -7.4D-17, 5.3D-17, -3.0D-21, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.283932 15 C s 53 -0.283932 16 C s 2 0.278771 1 C s 7 -0.278771 2 C s - 22 -0.199631 5 C s 27 0.199631 6 C s + 22 -0.199630 5 C s 27 0.199630 6 C s - Vector 16 Occ=2.000000D+00 E=-8.066404D-01 Symmetry=ag - MO Center= -2.6D-17, -6.0D-16, -8.5D-21, r^2= 8.0D+00 + Vector 16 Occ=2.000000D+00 E=-8.066399D-01 Symmetry=ag + MO Center= 4.3D-17, -1.1D-16, -8.0D-19, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.233182 5 C s 27 0.233182 6 C s - 48 0.226857 15 C s 53 0.226857 16 C s - 2 -0.207083 1 C s 7 -0.207083 2 C s + 22 0.233181 5 C s 27 0.233181 6 C s + 48 0.226859 15 C s 53 0.226859 16 C s + 2 -0.207085 1 C s 7 -0.207085 2 C s 14 -0.166939 3 C py 19 0.166939 4 C py 36 -0.156334 11 C s 41 -0.156334 12 C s Vector 17 Occ=2.000000D+00 E=-7.715672D-01 Symmetry=ag - MO Center= 2.7D-16, -4.0D-16, -6.6D-20, r^2= 4.9D+00 + MO Center= 1.1D-16, -1.3D-16, -1.1D-33, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.319435 3 C s 17 0.319435 4 C s - 3 0.189566 1 C px 8 -0.189566 2 C px - 24 0.174047 5 C py 29 -0.174047 6 C py + 3 0.189567 1 C px 8 -0.189567 2 C px + 24 0.174046 5 C py 29 -0.174046 6 C py 31 0.172059 7 H s 32 0.172059 8 H s - 22 -0.165451 5 C s 27 -0.165451 6 C s + 22 -0.165454 5 C s 27 -0.165454 6 C s - Vector 18 Occ=2.000000D+00 E=-7.332406D-01 Symmetry=bu - MO Center= 9.4D-17, -2.8D-17, 1.2D-20, r^2= 1.2D+01 + Vector 18 Occ=2.000000D+00 E=-7.332407D-01 Symmetry=bu + MO Center= 1.6D-17, -1.2D-16, -3.2D-22, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.293535 11 C s 41 -0.293535 12 C s - 48 -0.246654 15 C s 53 0.246654 16 C s + 48 -0.246653 15 C s 53 0.246653 16 C s 45 0.177487 13 H s 46 -0.177487 14 H s 57 -0.166188 17 H s 58 0.166188 18 H s Vector 19 Occ=2.000000D+00 E=-7.075234D-01 Symmetry=ag - MO Center= 1.3D-16, -2.8D-17, 2.9D-33, r^2= 7.6D+00 + MO Center= 3.4D-17, -1.4D-17, 2.5D-20, r^2= 7.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.196292 5 C px 28 -0.196292 6 C px + 23 0.196291 5 C px 28 -0.196291 6 C px 36 0.180122 11 C s 41 0.180122 12 C s - 13 0.178459 3 C px 18 -0.178459 4 C px - 33 0.171363 9 H s 34 0.171363 10 H s + 13 0.178458 3 C px 18 -0.178458 4 C px + 33 0.171362 9 H s 34 0.171362 10 H s 48 -0.162461 15 C s 53 -0.162461 16 C s - Vector 20 Occ=2.000000D+00 E=-6.392184D-01 Symmetry=ag - MO Center= -1.4D-16, -3.1D-16, 7.5D-20, r^2= 9.3D+00 + Vector 20 Occ=2.000000D+00 E=-6.392188D-01 Symmetry=ag + MO Center= 5.1D-16, -2.0D-15, 3.4D-18, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.210270 15 C px 54 -0.210270 16 C px - 38 0.182693 11 C py 43 -0.182693 12 C py - 57 0.181815 17 H s 58 0.181815 18 H s + 49 0.210268 15 C px 54 -0.210268 16 C px + 38 0.182694 11 C py 43 -0.182694 12 C py + 57 0.181814 17 H s 58 0.181814 18 H s 45 -0.153821 13 H s 46 -0.153821 14 H s - Vector 21 Occ=2.000000D+00 E=-6.150922D-01 Symmetry=bu - MO Center= 3.1D-17, 5.6D-17, 2.3D-36, r^2= 1.0D+01 + Vector 21 Occ=2.000000D+00 E=-6.150926D-01 Symmetry=bu + MO Center= -3.0D-16, 4.2D-15, -4.7D-33, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.215839 11 C px 42 0.215839 12 C px - 50 0.214806 15 C py 55 0.214806 16 C py + 50 0.214804 15 C py 55 0.214804 16 C py 14 0.188923 3 C py 19 0.188923 4 C py 59 -0.187371 19 H s 60 0.187371 20 H s - 45 -0.156186 13 H s 46 0.156186 14 H s + 45 -0.156187 13 H s 46 0.156187 14 H s - Vector 22 Occ=2.000000D+00 E=-5.777267D-01 Symmetry=bu - MO Center= -7.3D-17, -1.3D-16, 6.6D-33, r^2= 6.5D+00 + Vector 22 Occ=2.000000D+00 E=-5.777272D-01 Symmetry=bu + MO Center= -5.6D-16, 1.1D-15, 4.7D-21, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.234333 7 H s 32 0.234333 8 H s + 31 -0.234334 7 H s 32 0.234334 8 H s 33 0.235454 9 H s 34 -0.235454 10 H s - 13 -0.226999 3 C px 18 -0.226999 4 C px - 2 0.221483 1 C s 7 -0.221483 2 C s - 24 -0.178746 5 C py 29 -0.178746 6 C py + 13 -0.227001 3 C px 18 -0.227001 4 C px + 2 0.221479 1 C s 7 -0.221479 2 C s + 24 -0.178748 5 C py 29 -0.178748 6 C py - Vector 23 Occ=2.000000D+00 E=-5.639085D-01 Symmetry=bu - MO Center= 6.9D-17, -1.2D-16, -4.4D-34, r^2= 8.6D+00 + Vector 23 Occ=2.000000D+00 E=-5.639086D-01 Symmetry=bu + MO Center= 2.8D-16, -2.6D-15, 2.7D-32, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.256932 5 C px 28 0.256932 6 C px - 49 0.246909 15 C px 54 0.246909 16 C px + 23 0.256934 5 C px 28 0.256934 6 C px + 49 0.246908 15 C px 54 0.246908 16 C px 3 -0.217081 1 C px 8 -0.217081 2 C px - 57 0.215219 17 H s 58 -0.215219 18 H s - 38 0.173782 11 C py 43 0.173782 12 C py + 57 0.215218 17 H s 58 -0.215218 18 H s + 38 0.173780 11 C py 43 0.173780 12 C py - Vector 24 Occ=2.000000D+00 E=-5.627895D-01 Symmetry=ag - MO Center= 5.2D-17, 2.2D-16, -1.3D-35, r^2= 1.4D+01 + Vector 24 Occ=2.000000D+00 E=-5.627897D-01 Symmetry=ag + MO Center= -7.4D-18, 1.1D-16, 2.6D-34, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.338195 15 C py 55 -0.338195 16 C py - 59 -0.265241 19 H s 60 -0.265241 20 H s - 37 0.252585 11 C px 42 -0.252585 12 C px + 59 -0.265242 19 H s 60 -0.265242 20 H s + 37 0.252586 11 C px 42 -0.252586 12 C px 45 -0.152541 13 H s 46 -0.152541 14 H s - Vector 25 Occ=2.000000D+00 E=-5.326288D-01 Symmetry=bu - MO Center= 1.0D-16, 5.9D-17, 1.4D-22, r^2= 4.3D+00 + Vector 25 Occ=2.000000D+00 E=-5.326295D-01 Symmetry=bu + MO Center= -1.1D-16, -5.1D-17, -3.2D-24, r^2= 4.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.304516 3 C px 18 0.304516 4 C px + 13 0.304515 3 C px 18 0.304515 4 C px 31 0.255916 7 H s 32 -0.255916 8 H s - 24 -0.227097 5 C py 29 -0.227097 6 C py - 33 0.220966 9 H s 34 -0.220966 10 H s - 23 0.186385 5 C px 28 0.186385 6 C px + 24 -0.227098 5 C py 29 -0.227098 6 C py + 33 0.220967 9 H s 34 -0.220967 10 H s + 23 0.186383 5 C px 28 0.186383 6 C px - Vector 26 Occ=2.000000D+00 E=-5.074374D-01 Symmetry=bu - MO Center= 8.2D-17, -1.7D-16, 3.5D-21, r^2= 8.8D+00 + Vector 26 Occ=2.000000D+00 E=-5.074376D-01 Symmetry=bu + MO Center= 3.6D-16, 3.5D-17, 2.2D-22, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 -0.239198 15 C py 55 -0.239198 16 C py - 14 0.225100 3 C py 19 0.225100 4 C py + 50 -0.239197 15 C py 55 -0.239197 16 C py + 14 0.225099 3 C py 19 0.225099 4 C py 37 -0.209824 11 C px 42 -0.209824 12 C px - 24 -0.190022 5 C py 29 -0.190022 6 C py - 38 0.188078 11 C py 43 0.188078 12 C py + 24 -0.190020 5 C py 29 -0.190020 6 C py + 38 0.188079 11 C py 43 0.188079 12 C py - Vector 27 Occ=2.000000D+00 E=-4.982615D-01 Symmetry=ag - MO Center= -3.0D-17, -2.5D-16, 2.5D-21, r^2= 1.2D+01 + Vector 27 Occ=2.000000D+00 E=-4.982620D-01 Symmetry=ag + MO Center= 9.2D-17, -1.5D-16, 3.7D-20, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.296401 15 C px 54 -0.296401 16 C px - 57 0.268913 17 H s 58 0.268913 18 H s + 49 0.296403 15 C px 54 -0.296403 16 C px + 57 0.268915 17 H s 58 0.268915 18 H s 37 -0.206581 11 C px 42 0.206581 12 C px 45 0.201803 13 H s 46 0.201803 14 H s - 31 -0.156603 7 H s 32 -0.156603 8 H s + 31 -0.156601 7 H s 32 -0.156601 8 H s - Vector 28 Occ=2.000000D+00 E=-4.775776D-01 Symmetry=au - MO Center= -2.6D-17, -6.9D-18, -1.8D-19, r^2= 3.4D+00 + Vector 28 Occ=2.000000D+00 E=-4.775779D-01 Symmetry=au + MO Center= -4.3D-17, 7.4D-18, -8.5D-18, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.328944 1 C pz 10 0.328944 2 C pz @@ -2914,38 +2887,38 @@ Divinylbenzene in STO-3G basis set 25 0.301427 5 C pz 30 0.301427 6 C pz 39 0.158392 11 C pz 44 0.158392 12 C pz - Vector 29 Occ=2.000000D+00 E=-4.490450D-01 Symmetry=bu - MO Center= -8.7D-19, 1.1D-16, -1.6D-21, r^2= 1.2D+01 + Vector 29 Occ=2.000000D+00 E=-4.490448D-01 Symmetry=bu + MO Center= -1.9D-16, 3.8D-16, -4.6D-23, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.255781 13 H s 46 -0.255781 14 H s - 4 0.248652 1 C py 9 0.248652 2 C py - 57 0.227236 17 H s 58 -0.227236 18 H s + 4 0.248650 1 C py 9 0.248650 2 C py + 57 0.227237 17 H s 58 -0.227237 18 H s 59 -0.218156 19 H s 60 0.218156 20 H s 37 -0.213164 11 C px 42 -0.213164 12 C px - Vector 30 Occ=2.000000D+00 E=-4.260163D-01 Symmetry=ag - MO Center= 2.1D-17, 1.9D-16, 3.0D-21, r^2= 4.9D+00 + Vector 30 Occ=2.000000D+00 E=-4.260152D-01 Symmetry=ag + MO Center= -2.2D-17, 1.2D-16, 1.2D-20, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.283413 9 H s 34 0.283413 10 H s - 3 0.251202 1 C px 8 -0.251202 2 C px - 13 -0.225453 3 C px 18 0.225453 4 C px - 14 0.220393 3 C py 19 -0.220393 4 C py - 23 0.207454 5 C px 28 -0.207454 6 C px + 33 0.283412 9 H s 34 0.283412 10 H s + 3 0.251201 1 C px 8 -0.251201 2 C px + 13 -0.225452 3 C px 18 0.225452 4 C px + 14 0.220394 3 C py 19 -0.220394 4 C py + 23 0.207452 5 C px 28 -0.207452 6 C px - Vector 31 Occ=2.000000D+00 E=-4.184250D-01 Symmetry=ag - MO Center= 1.4D-16, 2.1D-16, -6.8D-21, r^2= 7.1D+00 + Vector 31 Occ=2.000000D+00 E=-4.184243D-01 Symmetry=ag + MO Center= 4.3D-18, -3.9D-17, 6.6D-21, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.218310 7 H s 32 -0.218310 8 H s - 38 0.216057 11 C py 43 -0.216057 12 C py - 4 0.212764 1 C py 9 -0.212764 2 C py - 23 0.210046 5 C px 28 -0.210046 6 C px - 3 0.205337 1 C px 8 -0.205337 2 C px + 31 -0.218311 7 H s 32 -0.218311 8 H s + 38 0.216055 11 C py 43 -0.216055 12 C py + 4 0.212763 1 C py 9 -0.212763 2 C py + 23 0.210048 5 C px 28 -0.210048 6 C px + 3 0.205340 1 C px 8 -0.205340 2 C px - Vector 32 Occ=2.000000D+00 E=-3.865863D-01 Symmetry=bg - MO Center= 1.4D-17, 2.2D-16, 1.1D-19, r^2= 8.5D+00 + Vector 32 Occ=2.000000D+00 E=-3.865864D-01 Symmetry=bg + MO Center= 7.7D-18, 2.5D-17, 2.7D-22, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.381256 11 C pz 44 -0.381256 12 C pz @@ -2953,50 +2926,50 @@ Divinylbenzene in STO-3G basis set 51 0.309399 15 C pz 56 -0.309399 16 C pz Vector 33 Occ=2.000000D+00 E=-3.264344D-01 Symmetry=au - MO Center= 6.9D-18, 3.3D-16, -3.7D-20, r^2= 1.1D+01 + MO Center= -5.7D-18, 4.0D-17, -5.6D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.426472 15 C pz 56 0.426472 16 C pz 39 0.415410 11 C pz 44 0.415410 12 C pz - 15 -0.158023 3 C pz 20 -0.158023 4 C pz - 25 -0.158205 5 C pz 30 -0.158205 6 C pz + 15 -0.158024 3 C pz 20 -0.158024 4 C pz + 25 -0.158206 5 C pz 30 -0.158206 6 C pz - Vector 34 Occ=2.000000D+00 E=-2.858064D-01 Symmetry=bg - MO Center= 1.7D-16, -5.5D-17, -2.1D-19, r^2= 2.6D+00 + Vector 34 Occ=2.000000D+00 E=-2.858065D-01 Symmetry=bg + MO Center= -3.0D-18, 1.7D-17, 8.4D-23, r^2= 2.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.458778 3 C pz 20 -0.458778 4 C pz + 15 0.458779 3 C pz 20 -0.458779 4 C pz 25 0.461008 5 C pz 30 -0.461008 6 C pz - Vector 35 Occ=2.000000D+00 E=-2.331874D-01 Symmetry=bg - MO Center= -6.9D-18, 2.2D-16, 7.7D-20, r^2= 6.9D+00 + Vector 35 Occ=2.000000D+00 E=-2.331875D-01 Symmetry=bg + MO Center= -1.9D-17, 1.9D-16, 3.7D-21, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.419757 1 C pz 10 -0.419757 2 C pz - 51 0.351594 15 C pz 56 -0.351594 16 C pz - 15 0.233808 3 C pz 20 -0.233808 4 C pz + 51 0.351595 15 C pz 56 -0.351595 16 C pz + 15 0.233807 3 C pz 20 -0.233807 4 C pz 25 -0.231138 5 C pz 30 0.231138 6 C pz - 39 0.217723 11 C pz 44 -0.217723 12 C pz + 39 0.217724 11 C pz 44 -0.217724 12 C pz Vector 36 Occ=0.000000D+00 E= 2.067082D-01 Symmetry=au - MO Center= -2.4D-38, 2.2D-16, 1.9D-19, r^2= 7.1D+00 + MO Center= 1.5D-17, -1.1D-16, -1.1D-18, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.478242 1 C pz 10 0.478242 2 C pz - 51 -0.411954 15 C pz 56 -0.411954 16 C pz + 51 -0.411955 15 C pz 56 -0.411955 16 C pz 25 -0.283601 5 C pz 30 -0.283601 6 C pz 15 -0.250659 3 C pz 20 -0.250659 4 C pz 39 0.250595 11 C pz 44 0.250595 12 C pz Vector 37 Occ=0.000000D+00 E= 2.733059D-01 Symmetry=au - MO Center= -2.2D-16, -3.4D-18, -1.5D-18, r^2= 2.7D+00 + MO Center= 3.6D-16, 4.7D-17, 1.4D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.583538 3 C pz 20 0.583538 4 C pz 25 -0.560242 5 C pz 30 -0.560242 6 C pz - Vector 38 Occ=0.000000D+00 E= 3.180212D-01 Symmetry=bg - MO Center= 1.8D-16, -7.8D-16, -5.0D-19, r^2= 1.1D+01 + Vector 38 Occ=0.000000D+00 E= 3.180211D-01 Symmetry=bg + MO Center= 1.9D-17, 3.9D-18, -1.7D-22, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.537587 15 C pz 56 0.537587 16 C pz @@ -3004,8 +2977,8 @@ Divinylbenzene in STO-3G basis set 15 0.221212 3 C pz 20 -0.221212 4 C pz 25 -0.215609 5 C pz 30 0.215609 6 C pz - Vector 39 Occ=0.000000D+00 E= 4.057343D-01 Symmetry=au - MO Center= 2.8D-17, 1.7D-37, 1.8D-22, r^2= 8.4D+00 + Vector 39 Occ=0.000000D+00 E= 4.057342D-01 Symmetry=au + MO Center= -6.1D-16, -6.7D-15, 1.1D-15, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.538763 11 C pz 44 0.538763 12 C pz @@ -3015,64 +2988,64 @@ Divinylbenzene in STO-3G basis set 15 0.162685 3 C pz 20 0.162685 4 C pz Vector 40 Occ=0.000000D+00 E= 5.378140D-01 Symmetry=bg - MO Center= 1.9D-16, -2.2D-16, 4.1D-20, r^2= 3.7D+00 + MO Center= 4.1D-16, 6.5D-15, -4.5D-21, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.545737 1 C pz 10 -0.545737 2 C pz 25 0.479938 5 C pz 30 -0.479938 6 C pz - 15 -0.477486 3 C pz 20 0.477486 4 C pz + 15 -0.477487 3 C pz 20 0.477487 4 C pz 39 0.274226 11 C pz 44 -0.274226 12 C pz 51 -0.157267 15 C pz 56 0.157267 16 C pz - Vector 41 Occ=0.000000D+00 E= 5.686409D-01 Symmetry=ag - MO Center= -1.3D-17, -5.6D-17, -1.0D-19, r^2= 8.6D+00 + Vector 41 Occ=0.000000D+00 E= 5.686389D-01 Symmetry=ag + MO Center= -4.4D-18, 9.7D-17, -3.0D-16, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.417124 7 H s 32 -0.417124 8 H s - 33 -0.416570 9 H s 34 -0.416570 10 H s - 2 0.397825 1 C s 7 0.397825 2 C s - 59 -0.351163 19 H s 60 -0.351163 20 H s - 38 -0.349122 11 C py 43 0.349122 12 C py + 31 -0.417139 7 H s 32 -0.417139 8 H s + 33 -0.416590 9 H s 34 -0.416590 10 H s + 2 0.397806 1 C s 7 0.397806 2 C s + 59 -0.351159 19 H s 60 -0.351159 20 H s + 38 -0.349115 11 C py 43 0.349115 12 C py - Vector 42 Occ=0.000000D+00 E= 5.833170D-01 Symmetry=bu - MO Center= -1.1D-16, -3.1D-16, -2.9D-20, r^2= 1.0D+01 + Vector 42 Occ=0.000000D+00 E= 5.833171D-01 Symmetry=bu + MO Center= -4.6D-17, -2.2D-16, -5.5D-23, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.432652 13 H s 46 -0.432652 14 H s - 37 0.356085 11 C px 42 0.356085 12 C px - 13 0.340298 3 C px 18 0.340298 4 C px - 57 -0.336113 17 H s 58 0.336113 18 H s - 59 0.321568 19 H s 60 -0.321568 20 H s + 45 0.432657 13 H s 46 -0.432657 14 H s + 37 0.356082 11 C px 42 0.356082 12 C px + 13 0.340290 3 C px 18 0.340290 4 C px + 57 -0.336125 17 H s 58 0.336125 18 H s + 59 0.321569 19 H s 60 -0.321569 20 H s - Vector 43 Occ=0.000000D+00 E= 6.324720D-01 Symmetry=bu - MO Center= 9.7D-17, 3.9D-16, 1.1D-19, r^2= 6.8D+00 + Vector 43 Occ=0.000000D+00 E= 6.324738D-01 Symmetry=bu + MO Center= 2.2D-16, -3.4D-16, -1.4D-23, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.534931 11 C s 41 -0.534931 12 C s - 33 0.462578 9 H s 34 -0.462578 10 H s - 4 0.456371 1 C py 9 0.456371 2 C py - 24 0.334101 5 C py 29 0.334101 6 C py - 38 0.320710 11 C py 43 0.320710 12 C py + 36 0.534965 11 C s 41 -0.534965 12 C s + 33 0.462557 9 H s 34 -0.462557 10 H s + 4 0.456378 1 C py 9 0.456378 2 C py + 24 0.334092 5 C py 29 0.334092 6 C py + 38 0.320709 11 C py 43 0.320709 12 C py - Vector 44 Occ=0.000000D+00 E= 6.357706D-01 Symmetry=ag - MO Center= -2.1D-16, 1.2D-15, -1.6D-19, r^2= 1.1D+01 + Vector 44 Occ=0.000000D+00 E= 6.357715D-01 Symmetry=ag + MO Center= -1.3D-16, 7.0D-16, 2.7D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.585193 13 H s 46 0.585193 14 H s - 36 -0.410415 11 C s 41 -0.410415 12 C s - 57 -0.389845 17 H s 58 -0.389845 18 H s - 12 0.386133 3 C s 17 0.386133 4 C s - 37 0.338138 11 C px 42 -0.338138 12 C px + 45 0.585194 13 H s 46 0.585194 14 H s + 36 -0.410391 11 C s 41 -0.410391 12 C s + 57 -0.389862 17 H s 58 -0.389862 18 H s + 12 0.386135 3 C s 17 0.386135 4 C s + 37 0.338145 11 C px 42 -0.338145 12 C px - Vector 45 Occ=0.000000D+00 E= 6.829151D-01 Symmetry=ag - MO Center= 1.8D-16, -2.2D-16, 2.5D-18, r^2= 1.2D+01 + Vector 45 Occ=0.000000D+00 E= 6.829146D-01 Symmetry=ag + MO Center= 1.3D-17, 1.5D-16, -1.5D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.725178 15 C s 53 0.725178 16 C s - 22 0.569738 5 C s 27 0.569738 6 C s - 57 -0.557573 17 H s 58 -0.557573 18 H s + 48 0.725166 15 C s 53 0.725166 16 C s + 22 0.569744 5 C s 27 0.569744 6 C s + 57 -0.557568 17 H s 58 -0.557568 18 H s 12 -0.421039 3 C s 17 -0.421039 4 C s - 59 -0.380829 19 H s 60 -0.380829 20 H s + 59 -0.380817 19 H s 60 -0.380817 20 H s center of mass @@ -3081,9 +3054,9 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2578.219241432481 -1.132543407615 0.000000000000 - -1.132543407615 375.632883608279 0.000000000000 - 0.000000000000 0.000000000000 2953.852125040761 + 2578.214951189417 -1.132964257036 0.000000000000 + -1.132964257036 375.633223840925 0.000000000000 + 0.000000000000 0.000000000000 2953.848175030341 Mulliken analysis of the total density -------------------------------------- @@ -3122,19 +3095,20 @@ Divinylbenzene in STO-3G basis set 1 0 1 0 -0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 - 2 2 0 0 -38.501692 0.000000 235.613502 - 2 1 1 0 0.091095 0.000000 -4.742366 - 2 1 0 1 -0.000000 0.000000 0.000000 - 2 0 2 0 -39.161862 0.000000 1466.439539 - 2 0 1 1 0.000000 0.000000 0.000000 - 2 0 0 2 -43.440551 0.000000 0.000000 - - - Parallel integral file used 9 records with 0 large values + 2 2 0 0 -38.501715 0.000000 235.613673 + 2 1 1 0 0.091105 0.000000 -4.742205 + 2 1 0 1 0.000000 0.000000 0.000000 + 2 0 2 0 -39.161868 0.000000 1466.437085 + 2 0 1 1 -0.000000 0.000000 0.000000 + 2 0 0 2 -43.440548 0.000000 0.000000 Line search: step= 1.00 grad=-2.0D-04 hess= 1.3D-04 energy= -379.777938 mode=downhill new step= 0.75 predicted energy= -379.777946 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 -------- Step 2 @@ -3148,26 +3122,26 @@ Divinylbenzene in STO-3G basis set No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.22732703 1.39305994 0.00000000 - 2 C 6.0000 -0.22732703 -1.39305994 0.00000000 - 3 C 6.0000 1.28858813 0.48600962 0.00000000 - 4 C 6.0000 -1.28858813 -0.48600962 0.00000000 - 5 C 6.0000 1.06914242 -0.87777125 0.00000000 - 6 C 6.0000 -1.06914242 0.87777125 0.00000000 - 7 H 1.0000 2.30367288 0.86178527 0.00000000 - 8 H 1.0000 -2.30367288 -0.86178527 0.00000000 - 9 H 1.0000 1.91656174 -1.54916938 0.00000000 - 10 H 1.0000 -1.91656174 1.54916938 0.00000000 - 11 C 6.0000 -0.52199385 -2.85909544 0.00000000 - 12 C 6.0000 0.52199385 2.85909544 0.00000000 - 13 H 1.0000 -1.57886435 -3.10088833 0.00000000 - 14 H 1.0000 1.57886435 3.10088833 0.00000000 - 15 C 6.0000 0.35280473 -3.84018666 0.00000000 - 16 C 6.0000 -0.35280473 3.84018666 0.00000000 - 17 H 1.0000 1.42049646 -3.67660073 0.00000000 - 18 H 1.0000 -1.42049646 3.67660073 0.00000000 - 19 H 1.0000 0.03597108 -4.87352048 0.00000000 - 20 H 1.0000 -0.03597108 4.87352048 0.00000000 + 1 C 6.0000 0.22732917 1.39305854 0.00000000 + 2 C 6.0000 -0.22732917 -1.39305854 0.00000000 + 3 C 6.0000 1.28858843 0.48600769 0.00000000 + 4 C 6.0000 -1.28858843 -0.48600769 0.00000000 + 5 C 6.0000 1.06914018 -0.87777231 0.00000000 + 6 C 6.0000 -1.06914018 0.87777231 0.00000000 + 7 H 1.0000 2.30367325 0.86178163 0.00000000 + 8 H 1.0000 -2.30367325 -0.86178163 0.00000000 + 9 H 1.0000 1.91655776 -1.54917176 0.00000000 + 10 H 1.0000 -1.91655776 1.54917176 0.00000000 + 11 C 6.0000 -0.52199569 -2.85909407 0.00000000 + 12 C 6.0000 0.52199569 2.85909407 0.00000000 + 13 H 1.0000 -1.57886575 -3.10088744 0.00000000 + 14 H 1.0000 1.57886575 3.10088744 0.00000000 + 15 C 6.0000 0.35280577 -3.84018325 0.00000000 + 16 C 6.0000 -0.35280577 3.84018325 0.00000000 + 17 H 1.0000 1.42049667 -3.67659448 0.00000000 + 18 H 1.0000 -1.42049667 3.67659448 0.00000000 + 19 H 1.0000 0.03597626 -4.87351790 0.00000000 + 20 H 1.0000 -0.03597626 4.87351790 0.00000000 Atomic Mass ----------- @@ -3176,7 +3150,7 @@ Divinylbenzene in STO-3G basis set H 1.007825 - Effective nuclear repulsion energy (a.u.) 452.1592761881 + Effective nuclear repulsion energy (a.u.) 452.1594995009 Nuclear Dipole moment (a.u.) ---------------------------- @@ -3234,7 +3208,7 @@ Divinylbenzene in STO-3G basis set bu 25 - Forming initial guess at 16.1s + Forming initial guess at 13.8s Loading old vectors from job with title : @@ -3262,7 +3236,7 @@ Divinylbenzene in STO-3G basis set 41 ag 42 bu 43 bu 44 ag 45 ag - Starting SCF solution at 16.1s + Starting SCF solution at 13.8s @@ -3275,30 +3249,21 @@ Divinylbenzene in STO-3G basis set ---------------------------------------------- - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.173D+05 #integrals = 3.523D+05 #direct = 0.0% #cached =100.0% - - iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7779457971 2.79D-03 6.27D-04 16.0 - 2 -379.7779460159 2.12D-05 5.22D-06 16.1 + 1 -379.7779448102 2.79D-03 6.26D-04 14.2 + 2 -379.7779455281 8.28D-06 3.07D-06 15.8 Final RHF results ------------------ - Total SCF energy = -379.777946015853 - One-electron energy = -1412.222317358614 - Two-electron energy = 580.285095154646 - Nuclear repulsion energy = 452.159276188116 + Total SCF energy = -379.777945528147 + One-electron energy = -1412.222747248014 + Two-electron energy = 580.285302218974 + Nuclear repulsion energy = 452.159499500893 - Time for solution = 1.8s + Time for solution = 2.0s @@ -3375,162 +3340,162 @@ Divinylbenzene in STO-3G basis set ------------------------------------- Vector 11 Occ=2.000000D+00 E=-1.106855D+00 Symmetry=ag - MO Center= 2.5D-17, -4.8D-17, 1.4D-21, r^2= 2.8D+00 + MO Center= -1.2D-17, -9.9D-17, 4.1D-37, r^2= 2.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.270978 1 C s 7 0.270978 2 C s 12 0.245779 3 C s 17 0.245779 4 C s - 22 0.245679 5 C s 27 0.245679 6 C s + 22 0.245678 5 C s 27 0.245678 6 C s - Vector 12 Occ=2.000000D+00 E=-1.031755D+00 Symmetry=bu - MO Center= 2.1D-17, 2.3D-16, -1.9D-22, r^2= 7.9D+00 + Vector 12 Occ=2.000000D+00 E=-1.031754D+00 Symmetry=bu + MO Center= 8.7D-18, -5.9D-17, 2.5D-23, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.295181 11 C s 41 -0.295181 12 C s - 2 -0.265047 1 C s 7 0.265047 2 C s + 36 0.295180 11 C s 41 -0.295180 12 C s + 2 -0.265048 1 C s 7 0.265048 2 C s 48 0.215657 15 C s 53 -0.215657 16 C s - Vector 13 Occ=2.000000D+00 E=-9.883568D-01 Symmetry=ag - MO Center= -3.8D-17, -3.1D-16, 4.9D-21, r^2= 1.1D+01 + Vector 13 Occ=2.000000D+00 E=-9.883569D-01 Symmetry=ag + MO Center= 5.1D-19, 1.2D-17, -4.8D-20, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.313178 11 C s 41 0.313178 12 C s - 48 0.309220 15 C s 53 0.309220 16 C s + 48 0.309219 15 C s 53 0.309219 16 C s - Vector 14 Occ=2.000000D+00 E=-9.610798D-01 Symmetry=bu - MO Center= 5.5D-17, -3.1D-17, 1.4D-25, r^2= 3.0D+00 + Vector 14 Occ=2.000000D+00 E=-9.610805D-01 Symmetry=bu + MO Center= 6.4D-17, -2.8D-17, -7.9D-26, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.354078 3 C s 17 -0.354078 4 C s - 22 0.321041 5 C s 27 -0.321041 6 C s + 22 0.321042 5 C s 27 -0.321042 6 C s - Vector 15 Occ=2.000000D+00 E=-9.227190D-01 Symmetry=bu - MO Center= -1.3D-17, -2.9D-16, -2.7D-24, r^2= 8.4D+00 + Vector 15 Occ=2.000000D+00 E=-9.227201D-01 Symmetry=bu + MO Center= -2.5D-17, 2.0D-16, -3.0D-21, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.283311 15 C s 53 -0.283311 16 C s + 48 0.283312 15 C s 53 -0.283312 16 C s 2 0.279457 1 C s 7 -0.279457 2 C s - 22 -0.200177 5 C s 27 0.200177 6 C s + 22 -0.200175 5 C s 27 0.200175 6 C s - Vector 16 Occ=2.000000D+00 E=-8.065744D-01 Symmetry=ag - MO Center= -1.1D-16, 1.9D-16, -3.0D-36, r^2= 8.0D+00 + Vector 16 Occ=2.000000D+00 E=-8.065741D-01 Symmetry=ag + MO Center= -6.2D-17, -2.5D-16, 3.0D-34, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.233234 5 C s 27 0.233234 6 C s - 48 0.226747 15 C s 53 0.226747 16 C s - 2 -0.207417 1 C s 7 -0.207417 2 C s + 22 0.233233 5 C s 27 0.233233 6 C s + 48 0.226749 15 C s 53 0.226749 16 C s + 2 -0.207419 1 C s 7 -0.207419 2 C s 14 -0.166951 3 C py 19 0.166951 4 C py 36 -0.156251 11 C s 41 -0.156251 12 C s - Vector 17 Occ=2.000000D+00 E=-7.714319D-01 Symmetry=ag - MO Center= 3.2D-17, 6.2D-17, -6.6D-20, r^2= 4.9D+00 + Vector 17 Occ=2.000000D+00 E=-7.714322D-01 Symmetry=ag + MO Center= 2.8D-17, -1.6D-16, 1.3D-19, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.319439 3 C s 17 0.319439 4 C s - 3 0.189421 1 C px 8 -0.189421 2 C px - 24 0.174135 5 C py 29 -0.174135 6 C py + 3 0.189423 1 C px 8 -0.189423 2 C px + 24 0.174134 5 C py 29 -0.174134 6 C py 31 0.172043 7 H s 32 0.172043 8 H s - 22 -0.165451 5 C s 27 -0.165451 6 C s + 22 -0.165453 5 C s 27 -0.165453 6 C s - Vector 18 Occ=2.000000D+00 E=-7.330410D-01 Symmetry=bu - MO Center= 5.6D-17, -2.2D-16, 1.2D-20, r^2= 1.2D+01 + Vector 18 Occ=2.000000D+00 E=-7.330413D-01 Symmetry=bu + MO Center= -9.6D-17, 4.6D-17, -3.2D-22, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.293398 11 C s 41 -0.293398 12 C s - 48 -0.246703 15 C s 53 0.246703 16 C s - 45 0.177451 13 H s 46 -0.177451 14 H s + 36 0.293399 11 C s 41 -0.293399 12 C s + 48 -0.246702 15 C s 53 0.246702 16 C s + 45 0.177450 13 H s 46 -0.177450 14 H s 57 -0.166288 17 H s 58 0.166288 18 H s - Vector 19 Occ=2.000000D+00 E=-7.072519D-01 Symmetry=ag - MO Center= 1.1D-16, 6.9D-17, -7.5D-22, r^2= 7.7D+00 + Vector 19 Occ=2.000000D+00 E=-7.072524D-01 Symmetry=ag + MO Center= 4.6D-18, -2.8D-17, 2.5D-20, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.196161 5 C px 28 -0.196161 6 C px 36 0.180242 11 C s 41 0.180242 12 C s - 13 0.178370 3 C px 18 -0.178370 4 C px - 33 0.171347 9 H s 34 0.171347 10 H s - 48 -0.162778 15 C s 53 -0.162778 16 C s + 13 0.178369 3 C px 18 -0.178369 4 C px + 33 0.171346 9 H s 34 0.171346 10 H s + 48 -0.162779 15 C s 53 -0.162779 16 C s - Vector 20 Occ=2.000000D+00 E=-6.393082D-01 Symmetry=ag - MO Center= -2.8D-17, -8.7D-19, -1.2D-33, r^2= 9.3D+00 + Vector 20 Occ=2.000000D+00 E=-6.393087D-01 Symmetry=ag + MO Center= 4.6D-16, -2.0D-15, 3.0D-18, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.210371 15 C px 54 -0.210371 16 C px - 38 0.182588 11 C py 43 -0.182588 12 C py - 57 0.182010 17 H s 58 0.182010 18 H s + 49 0.210370 15 C px 54 -0.210370 16 C px + 38 0.182590 11 C py 43 -0.182590 12 C py + 57 0.182009 17 H s 58 0.182009 18 H s 45 -0.153917 13 H s 46 -0.153917 14 H s - Vector 21 Occ=2.000000D+00 E=-6.152351D-01 Symmetry=bu - MO Center= -3.4D-17, -5.6D-17, 1.2D-24, r^2= 1.0D+01 + Vector 21 Occ=2.000000D+00 E=-6.152355D-01 Symmetry=bu + MO Center= -3.2D-16, 4.1D-15, -4.5D-33, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.215743 11 C px 42 0.215743 12 C px - 50 0.214998 15 C py 55 0.214998 16 C py - 14 0.188242 3 C py 19 0.188242 4 C py - 59 -0.187677 19 H s 60 0.187677 20 H s - 45 -0.156209 13 H s 46 0.156209 14 H s + 50 0.214997 15 C py 55 0.214997 16 C py + 14 0.188243 3 C py 19 0.188243 4 C py + 59 -0.187676 19 H s 60 0.187676 20 H s + 45 -0.156210 13 H s 46 0.156210 14 H s - Vector 22 Occ=2.000000D+00 E=-5.776710D-01 Symmetry=bu - MO Center= 1.1D-16, -2.3D-16, 5.3D-24, r^2= 6.5D+00 + Vector 22 Occ=2.000000D+00 E=-5.776716D-01 Symmetry=bu + MO Center= -5.4D-16, 1.1D-15, 3.8D-32, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.234997 9 H s 34 -0.234997 10 H s - 31 -0.233769 7 H s 32 0.233769 8 H s - 13 -0.226608 3 C px 18 -0.226608 4 C px - 2 0.221251 1 C s 7 -0.221251 2 C s - 24 -0.179142 5 C py 29 -0.179142 6 C py + 33 0.234996 9 H s 34 -0.234996 10 H s + 31 -0.233771 7 H s 32 0.233771 8 H s + 13 -0.226610 3 C px 18 -0.226610 4 C px + 2 0.221247 1 C s 7 -0.221247 2 C s + 24 -0.179144 5 C py 29 -0.179144 6 C py - Vector 23 Occ=2.000000D+00 E=-5.638582D-01 Symmetry=bu - MO Center= 1.2D-17, -1.1D-16, -3.0D-37, r^2= 8.6D+00 + Vector 23 Occ=2.000000D+00 E=-5.638585D-01 Symmetry=bu + MO Center= 3.6D-16, -2.8D-15, 2.8D-32, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.257224 5 C px 28 0.257224 6 C px - 49 0.246430 15 C px 54 0.246430 16 C px - 3 -0.217026 1 C px 8 -0.217026 2 C px - 57 0.214861 17 H s 58 -0.214861 18 H s - 38 0.173250 11 C py 43 0.173250 12 C py + 23 0.257226 5 C px 28 0.257226 6 C px + 49 0.246429 15 C px 54 0.246429 16 C px + 3 -0.217027 1 C px 8 -0.217027 2 C px + 57 0.214860 17 H s 58 -0.214860 18 H s + 38 0.173248 11 C py 43 0.173248 12 C py - Vector 24 Occ=2.000000D+00 E=-5.628598D-01 Symmetry=ag - MO Center= 3.5D-18, 5.6D-16, 5.7D-23, r^2= 1.4D+01 + Vector 24 Occ=2.000000D+00 E=-5.628602D-01 Symmetry=ag + MO Center= -1.2D-17, 4.1D-17, -2.0D-20, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.338156 15 C py 55 -0.338156 16 C py - 59 -0.265289 19 H s 60 -0.265289 20 H s - 37 0.252238 11 C px 42 -0.252238 12 C px + 59 -0.265290 19 H s 60 -0.265290 20 H s + 37 0.252239 11 C px 42 -0.252239 12 C px 45 -0.152103 13 H s 46 -0.152103 14 H s - Vector 25 Occ=2.000000D+00 E=-5.325889D-01 Symmetry=bu - MO Center= 1.4D-16, 8.5D-17, 1.3D-22, r^2= 4.3D+00 + Vector 25 Occ=2.000000D+00 E=-5.325898D-01 Symmetry=bu + MO Center= -1.6D-16, -1.4D-16, -3.7D-24, r^2= 4.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.304286 3 C px 18 0.304286 4 C px - 31 0.256086 7 H s 32 -0.256086 8 H s - 24 -0.227528 5 C py 29 -0.227528 6 C py + 13 0.304285 3 C px 18 0.304285 4 C px + 31 0.256085 7 H s 32 -0.256085 8 H s + 24 -0.227529 5 C py 29 -0.227529 6 C py 33 0.221271 9 H s 34 -0.221271 10 H s - 23 0.186535 5 C px 28 0.186535 6 C px + 23 0.186533 5 C px 28 0.186533 6 C px - Vector 26 Occ=2.000000D+00 E=-5.072873D-01 Symmetry=bu - MO Center= 6.4D-17, -1.4D-16, -4.8D-37, r^2= 8.8D+00 + Vector 26 Occ=2.000000D+00 E=-5.072878D-01 Symmetry=bu + MO Center= 3.5D-16, 1.9D-16, -5.1D-27, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.239032 15 C py 55 -0.239032 16 C py - 14 0.224753 3 C py 19 0.224753 4 C py + 14 0.224752 3 C py 19 0.224752 4 C py 37 -0.209605 11 C px 42 -0.209605 12 C px - 24 -0.189267 5 C py 29 -0.189267 6 C py - 38 0.188283 11 C py 43 0.188283 12 C py + 24 -0.189266 5 C py 29 -0.189266 6 C py + 38 0.188285 11 C py 43 0.188285 12 C py - Vector 27 Occ=2.000000D+00 E=-4.981434D-01 Symmetry=ag - MO Center= -2.6D-18, -2.8D-16, -1.1D-22, r^2= 1.2D+01 + Vector 27 Occ=2.000000D+00 E=-4.981441D-01 Symmetry=ag + MO Center= -4.4D-17, -1.8D-16, 5.4D-20, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.296227 15 C px 54 -0.296227 16 C px - 57 0.268760 17 H s 58 0.268760 18 H s + 49 0.296228 15 C px 54 -0.296228 16 C px + 57 0.268762 17 H s 58 0.268762 18 H s 37 -0.206923 11 C px 42 0.206923 12 C px 45 0.202023 13 H s 46 0.202023 14 H s - 31 -0.156815 7 H s 32 -0.156815 8 H s + 31 -0.156812 7 H s 32 -0.156812 8 H s - Vector 28 Occ=2.000000D+00 E=-4.774320D-01 Symmetry=au - MO Center= 8.4D-17, -1.4D-17, -1.0D-19, r^2= 3.4D+00 + Vector 28 Occ=2.000000D+00 E=-4.774326D-01 Symmetry=au + MO Center= 2.2D-17, -2.0D-18, -8.4D-18, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.328851 1 C pz 10 0.328851 2 C pz @@ -3538,165 +3503,165 @@ Divinylbenzene in STO-3G basis set 25 0.301287 5 C pz 30 0.301287 6 C pz 39 0.158952 11 C pz 44 0.158952 12 C pz - Vector 29 Occ=2.000000D+00 E=-4.490109D-01 Symmetry=bu - MO Center= -6.2D-17, 1.7D-16, 4.5D-24, r^2= 1.2D+01 + Vector 29 Occ=2.000000D+00 E=-4.490108D-01 Symmetry=bu + MO Center= -2.1D-16, 2.0D-16, -4.7D-23, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.255859 13 H s 46 -0.255859 14 H s - 4 0.248395 1 C py 9 0.248395 2 C py + 4 0.248393 1 C py 9 0.248393 2 C py 57 0.227470 17 H s 58 -0.227470 18 H s - 59 -0.218084 19 H s 60 0.218084 20 H s + 59 -0.218085 19 H s 60 0.218085 20 H s 37 -0.213223 11 C px 42 -0.213223 12 C px - Vector 30 Occ=2.000000D+00 E=-4.258775D-01 Symmetry=ag - MO Center= -5.7D-17, 2.8D-17, 3.1D-21, r^2= 4.9D+00 + Vector 30 Occ=2.000000D+00 E=-4.258767D-01 Symmetry=ag + MO Center= 4.9D-17, -1.0D-16, -1.3D-20, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 33 0.282547 9 H s 34 0.282547 10 H s - 3 0.246244 1 C px 8 -0.246244 2 C px - 14 0.224430 3 C py 19 -0.224430 4 C py - 13 -0.221888 3 C px 18 0.221888 4 C px - 4 -0.205734 1 C py 9 0.205734 2 C py + 3 0.246247 1 C px 8 -0.246247 2 C px + 14 0.224428 3 C py 19 -0.224428 4 C py + 13 -0.221891 3 C px 18 0.221891 4 C px + 4 -0.205730 1 C py 9 0.205730 2 C py - Vector 31 Occ=2.000000D+00 E=-4.185098D-01 Symmetry=ag - MO Center= 2.5D-16, -1.4D-17, -8.0D-22, r^2= 7.1D+00 + Vector 31 Occ=2.000000D+00 E=-4.185091D-01 Symmetry=ag + MO Center= -2.9D-17, -3.0D-16, 1.5D-20, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.221574 7 H s 32 -0.221574 8 H s - 23 0.215038 5 C px 28 -0.215038 6 C px - 3 0.211312 1 C px 8 -0.211312 2 C px - 38 0.211755 11 C py 43 -0.211755 12 C py - 4 0.207743 1 C py 9 -0.207743 2 C py + 31 -0.221572 7 H s 32 -0.221572 8 H s + 23 0.215036 5 C px 28 -0.215036 6 C px + 3 0.211309 1 C px 8 -0.211309 2 C px + 38 0.211758 11 C py 43 -0.211758 12 C py + 4 0.207747 1 C py 9 -0.207747 2 C py - Vector 32 Occ=2.000000D+00 E=-3.867880D-01 Symmetry=bg - MO Center= 1.4D-17, 3.6D-38, -1.6D-19, r^2= 8.5D+00 + Vector 32 Occ=2.000000D+00 E=-3.867881D-01 Symmetry=bg + MO Center= 1.4D-19, -1.6D-18, -1.6D-23, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 0.381582 11 C pz 44 -0.381582 12 C pz - 5 -0.312871 1 C pz 10 0.312871 2 C pz + 39 0.381581 11 C pz 44 -0.381581 12 C pz + 5 -0.312872 1 C pz 10 0.312872 2 C pz 51 0.309808 15 C pz 56 -0.309808 16 C pz Vector 33 Occ=2.000000D+00 E=-3.266843D-01 Symmetry=au - MO Center= -1.4D-17, 1.1D-16, -4.1D-20, r^2= 1.1D+01 + MO Center= -1.3D-17, -8.4D-16, -5.6D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.426239 15 C pz 56 0.426239 16 C pz 39 0.415134 11 C pz 44 0.415134 12 C pz 15 -0.158487 3 C pz 20 -0.158487 4 C pz - 25 -0.158689 5 C pz 30 -0.158689 6 C pz + 25 -0.158688 5 C pz 30 -0.158688 6 C pz - Vector 34 Occ=2.000000D+00 E=-2.858023D-01 Symmetry=bg - MO Center= 5.6D-17, -8.3D-17, -3.2D-22, r^2= 2.6D+00 + Vector 34 Occ=2.000000D+00 E=-2.858026D-01 Symmetry=bg + MO Center= -3.2D-17, 1.4D-17, 3.7D-23, r^2= 2.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.458789 3 C pz 20 -0.458789 4 C pz 25 0.460961 5 C pz 30 -0.460961 6 C pz - Vector 35 Occ=2.000000D+00 E=-2.330446D-01 Symmetry=bg - MO Center= 1.2D-41, -1.1D-16, -1.0D-21, r^2= 6.9D+00 + Vector 35 Occ=2.000000D+00 E=-2.330449D-01 Symmetry=bg + MO Center= -4.0D-17, 1.9D-16, 3.8D-21, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.420344 1 C pz 10 -0.420344 2 C pz - 51 0.351161 15 C pz 56 -0.351161 16 C pz - 15 0.233818 3 C pz 20 -0.233818 4 C pz - 25 -0.231485 5 C pz 30 0.231485 6 C pz - 39 0.217042 11 C pz 44 -0.217042 12 C pz + 5 0.420343 1 C pz 10 -0.420343 2 C pz + 51 0.351162 15 C pz 56 -0.351162 16 C pz + 15 0.233817 3 C pz 20 -0.233817 4 C pz + 25 -0.231486 5 C pz 30 0.231486 6 C pz + 39 0.217043 11 C pz 44 -0.217043 12 C pz - Vector 36 Occ=0.000000D+00 E= 2.066170D-01 Symmetry=au - MO Center= 6.2D-17, 2.2D-16, 1.7D-19, r^2= 7.1D+00 + Vector 36 Occ=0.000000D+00 E= 2.066171D-01 Symmetry=au + MO Center= -3.1D-17, -1.3D-16, -6.3D-19, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.478780 1 C pz 10 0.478780 2 C pz - 51 -0.411571 15 C pz 56 -0.411571 16 C pz - 25 -0.283914 5 C pz 30 -0.283914 6 C pz - 15 -0.250566 3 C pz 20 -0.250566 4 C pz + 51 -0.411572 15 C pz 56 -0.411572 16 C pz + 25 -0.283913 5 C pz 30 -0.283913 6 C pz + 15 -0.250567 3 C pz 20 -0.250567 4 C pz 39 0.249875 11 C pz 44 0.249875 12 C pz Vector 37 Occ=0.000000D+00 E= 2.733630D-01 Symmetry=au - MO Center= 7.2D-21, -2.7D-20, 1.6D-20, r^2= 2.7D+00 + MO Center= 2.4D-16, -3.7D-17, 1.4D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.583625 3 C pz 20 0.583625 4 C pz - 25 -0.560123 5 C pz 30 -0.560123 6 C pz + 25 -0.560124 5 C pz 30 -0.560124 6 C pz - Vector 38 Occ=0.000000D+00 E= 3.183163D-01 Symmetry=bg - MO Center= 5.6D-17, 4.4D-16, -1.2D-20, r^2= 1.1D+01 + Vector 38 Occ=0.000000D+00 E= 3.183161D-01 Symmetry=bg + MO Center= -3.4D-17, -4.2D-16, 1.8D-22, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.537558 15 C pz 56 0.537558 16 C pz - 39 0.531734 11 C pz 44 -0.531734 12 C pz - 15 0.221794 3 C pz 20 -0.221794 4 C pz + 39 0.531735 11 C pz 44 -0.531735 12 C pz + 15 0.221793 3 C pz 20 -0.221793 4 C pz 25 -0.216143 5 C pz 30 0.216143 6 C pz - Vector 39 Occ=0.000000D+00 E= 4.059818D-01 Symmetry=au - MO Center= -8.3D-17, -7.2D-16, -1.1D-20, r^2= 8.4D+00 + Vector 39 Occ=0.000000D+00 E= 4.059817D-01 Symmetry=au + MO Center= -5.9D-16, -6.7D-15, 1.1D-15, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 0.539290 11 C pz 44 0.539290 12 C pz - 5 -0.472841 1 C pz 10 -0.472841 2 C pz + 39 0.539289 11 C pz 44 0.539289 12 C pz + 5 -0.472842 1 C pz 10 -0.472842 2 C pz 51 -0.415749 15 C pz 56 -0.415749 16 C pz - 25 0.189782 5 C pz 30 0.189782 6 C pz + 25 0.189783 5 C pz 30 0.189783 6 C pz 15 0.162189 3 C pz 20 0.162189 4 C pz - Vector 40 Occ=0.000000D+00 E= 5.376631D-01 Symmetry=bg - MO Center= 1.2D-16, 6.9D-17, 2.5D-21, r^2= 3.7D+00 + Vector 40 Occ=0.000000D+00 E= 5.376635D-01 Symmetry=bg + MO Center= 7.3D-16, 7.0D-15, 3.3D-22, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.545529 1 C pz 10 -0.545529 2 C pz + 5 0.545530 1 C pz 10 -0.545530 2 C pz 25 0.479627 5 C pz 30 -0.479627 6 C pz 15 -0.477217 3 C pz 20 0.477217 4 C pz - 39 0.274931 11 C pz 44 -0.274931 12 C pz + 39 0.274930 11 C pz 44 -0.274930 12 C pz 51 -0.157896 15 C pz 56 0.157896 16 C pz - Vector 41 Occ=0.000000D+00 E= 5.688910D-01 Symmetry=ag - MO Center= 9.2D-18, 5.6D-17, -1.4D-20, r^2= 8.6D+00 + Vector 41 Occ=0.000000D+00 E= 5.688888D-01 Symmetry=ag + MO Center= -1.1D-16, 4.3D-18, -3.0D-16, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.417897 7 H s 32 -0.417897 8 H s - 33 -0.417311 9 H s 34 -0.417311 10 H s - 2 0.397697 1 C s 7 0.397697 2 C s - 59 -0.351622 19 H s 60 -0.351622 20 H s - 38 -0.348667 11 C py 43 0.348667 12 C py + 31 -0.417911 7 H s 32 -0.417911 8 H s + 33 -0.417331 9 H s 34 -0.417331 10 H s + 2 0.397679 1 C s 7 0.397679 2 C s + 59 -0.351617 19 H s 60 -0.351617 20 H s + 38 -0.348660 11 C py 43 0.348660 12 C py - Vector 42 Occ=0.000000D+00 E= 5.832026D-01 Symmetry=bu - MO Center= -1.2D-16, -1.3D-15, -2.7D-20, r^2= 1.0D+01 + Vector 42 Occ=0.000000D+00 E= 5.832028D-01 Symmetry=bu + MO Center= -2.9D-16, -8.1D-17, -5.3D-23, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.434524 13 H s 46 -0.434524 14 H s - 37 0.355849 11 C px 42 0.355849 12 C px - 13 0.341731 3 C px 18 0.341731 4 C px - 57 -0.335652 17 H s 58 0.335652 18 H s - 59 0.319213 19 H s 60 -0.319213 20 H s + 45 0.434528 13 H s 46 -0.434528 14 H s + 37 0.355846 11 C px 42 0.355846 12 C px + 13 0.341721 3 C px 18 0.341721 4 C px + 57 -0.335664 17 H s 58 0.335664 18 H s + 59 0.319218 19 H s 60 -0.319218 20 H s - Vector 43 Occ=0.000000D+00 E= 6.326170D-01 Symmetry=bu - MO Center= 9.6D-17, -5.0D-16, -1.9D-20, r^2= 6.9D+00 + Vector 43 Occ=0.000000D+00 E= 6.326188D-01 Symmetry=bu + MO Center= -3.1D-16, 7.8D-16, -1.5D-23, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.532708 11 C s 41 -0.532708 12 C s - 33 0.460301 9 H s 34 -0.460301 10 H s - 4 0.457464 1 C py 9 0.457464 2 C py - 24 0.333418 5 C py 29 0.333418 6 C py - 38 0.323095 11 C py 43 0.323095 12 C py + 36 0.532744 11 C s 41 -0.532744 12 C s + 33 0.460284 9 H s 34 -0.460284 10 H s + 4 0.457470 1 C py 9 0.457470 2 C py + 24 0.333410 5 C py 29 0.333410 6 C py + 38 0.323092 11 C py 43 0.323092 12 C py - Vector 44 Occ=0.000000D+00 E= 6.355275D-01 Symmetry=ag - MO Center= -1.1D-16, 8.9D-16, 2.4D-20, r^2= 1.1D+01 + Vector 44 Occ=0.000000D+00 E= 6.355288D-01 Symmetry=ag + MO Center= -4.9D-17, -1.1D-16, 2.7D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.586287 13 H s 46 0.586287 14 H s - 36 -0.410106 11 C s 41 -0.410106 12 C s - 12 0.386825 3 C s 17 0.386825 4 C s - 57 -0.388242 17 H s 58 -0.388242 18 H s - 37 0.339558 11 C px 42 -0.339558 12 C px + 45 0.586286 13 H s 46 0.586286 14 H s + 36 -0.410084 11 C s 41 -0.410084 12 C s + 12 0.386826 3 C s 17 0.386826 4 C s + 57 -0.388259 17 H s 58 -0.388259 18 H s + 37 0.339564 11 C px 42 -0.339564 12 C px - Vector 45 Occ=0.000000D+00 E= 6.822890D-01 Symmetry=ag - MO Center= 1.7D-16, 3.9D-16, 4.5D-20, r^2= 1.2D+01 + Vector 45 Occ=0.000000D+00 E= 6.822893D-01 Symmetry=ag + MO Center= 2.5D-17, -8.0D-17, -8.0D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.722469 15 C s 53 0.722469 16 C s - 22 0.571519 5 C s 27 0.571519 6 C s - 57 -0.558260 17 H s 58 -0.558260 18 H s - 12 -0.417703 3 C s 17 -0.417703 4 C s - 59 -0.378101 19 H s 60 -0.378101 20 H s + 48 0.722460 15 C s 53 0.722460 16 C s + 22 0.571523 5 C s 27 0.571523 6 C s + 57 -0.558256 17 H s 58 -0.558256 18 H s + 12 -0.417705 3 C s 17 -0.417705 4 C s + 59 -0.378092 19 H s 60 -0.378092 20 H s center of mass @@ -3705,9 +3670,9 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2577.189475393569 -1.481861862473 0.000000000000 - -1.481861862473 375.843264491353 0.000000000000 - 0.000000000000 0.000000000000 2953.032739884923 + 2577.185682164691 -1.481961762453 0.000000000000 + -1.481961762453 375.843170965665 0.000000000000 + 0.000000000000 0.000000000000 2953.028853130355 Mulliken analysis of the total density -------------------------------------- @@ -3742,19 +3707,16 @@ Divinylbenzene in STO-3G basis set - - - - ----- ---- ------- 0 0 0 0 -0.000000 0.000000 70.000000 - 1 1 0 0 -0.000000 0.000000 0.000000 + 1 1 0 0 0.000000 0.000000 0.000000 1 0 1 0 -0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 - 2 2 0 0 -38.502741 0.000000 235.725539 - 2 1 1 0 0.101398 0.000000 -4.523542 + 2 2 0 0 -38.502762 0.000000 235.725463 + 2 1 1 0 0.101402 0.000000 -4.523565 2 1 0 1 0.000000 0.000000 0.000000 - 2 0 2 0 -39.159478 0.000000 1465.845386 - 2 0 1 1 0.000000 0.000000 0.000000 - 2 0 0 2 -43.440847 0.000000 0.000000 - - - Parallel integral file used 9 records with 0 large values + 2 0 2 0 -39.159494 0.000000 1465.843222 + 2 0 1 1 -0.000000 0.000000 0.000000 + 2 0 0 2 -43.440842 0.000000 0.000000 NWChem Gradients Module ----------------------- @@ -3772,38 +3734,39 @@ Divinylbenzene in STO-3G basis set atom coordinates gradient x y z x y z - 1 C 0.429586 2.632502 0.000000 -0.000188 0.000671 0.000000 - 2 C -0.429586 -2.632502 0.000000 0.000188 -0.000671 0.000000 - 3 C 2.435078 0.918425 0.000000 -0.000241 -0.000683 0.000000 - 4 C -2.435078 -0.918425 0.000000 0.000241 0.000683 0.000000 - 5 C 2.020386 -1.658747 0.000000 0.000156 0.000899 0.000000 - 6 C -2.020386 1.658747 0.000000 -0.000156 -0.000899 0.000000 - 7 H 4.353311 1.628538 0.000000 -0.000218 0.000076 0.000000 - 8 H -4.353311 -1.628538 0.000000 0.000218 -0.000076 0.000000 - 9 H 3.621777 -2.927506 0.000000 -0.000354 -0.000177 0.000000 - 10 H -3.621777 2.927506 0.000000 0.000354 0.000177 0.000000 - 11 C -0.986425 -5.402907 0.000000 -0.000820 0.001736 0.000000 - 12 C 0.986425 5.402907 0.000000 0.000820 -0.001736 0.000000 - 13 H -2.983621 -5.859829 0.000000 0.000275 -0.000224 0.000000 - 14 H 2.983621 5.859829 0.000000 -0.000275 0.000224 0.000000 - 15 C 0.666704 -7.256901 0.000000 0.000945 -0.001691 0.000000 - 16 C -0.666704 7.256901 0.000000 -0.000945 0.001691 0.000000 - 17 H 2.684349 -6.947768 0.000000 -0.000288 0.000292 0.000000 - 18 H -2.684349 6.947768 0.000000 0.000288 -0.000292 0.000000 - 19 H 0.067975 -9.209618 0.000000 -0.000118 0.000298 0.000000 - 20 H -0.067975 9.209618 0.000000 0.000118 -0.000298 0.000000 + 1 C 0.429590 2.632499 0.000000 -0.000188 0.000670 0.000000 + 2 C -0.429590 -2.632499 0.000000 0.000188 -0.000670 0.000000 + 3 C 2.435079 0.918421 0.000000 -0.000241 -0.000683 0.000000 + 4 C -2.435079 -0.918421 0.000000 0.000241 0.000683 0.000000 + 5 C 2.020382 -1.658749 0.000000 0.000155 0.000899 0.000000 + 6 C -2.020382 1.658749 0.000000 -0.000155 -0.000899 0.000000 + 7 H 4.353311 1.628531 0.000000 -0.000219 0.000076 0.000000 + 8 H -4.353311 -1.628531 0.000000 0.000219 -0.000076 0.000000 + 9 H 3.621769 -2.927510 0.000000 -0.000354 -0.000177 0.000000 + 10 H -3.621769 2.927510 0.000000 0.000354 0.000177 0.000000 + 11 C -0.986429 -5.402904 0.000000 -0.000821 0.001737 0.000000 + 12 C 0.986429 5.402904 0.000000 0.000821 -0.001737 0.000000 + 13 H -2.983624 -5.859828 0.000000 0.000275 -0.000223 0.000000 + 14 H 2.983624 5.859828 0.000000 -0.000275 0.000223 0.000000 + 15 C 0.666706 -7.256894 0.000000 0.000945 -0.001692 0.000000 + 16 C -0.666706 7.256894 0.000000 -0.000945 0.001692 0.000000 + 17 H 2.684349 -6.947756 0.000000 -0.000288 0.000292 0.000000 + 18 H -2.684349 6.947756 0.000000 0.000288 -0.000292 0.000000 + 19 H 0.067985 -9.209613 0.000000 -0.000118 0.000298 0.000000 + 20 H -0.067985 9.209613 0.000000 0.000118 -0.000298 -0.000000 ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.02 | 2.67 | + | CPU | 0.00 | 0.55 | ---------------------------------------- - | WALL | 0.02 | 2.68 | + | WALL | 0.00 | 0.55 | ---------------------------------------- + no constraints, skipping 0.0000000000000000 Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 2 -379.77794602 -7.4D-05 0.00118 0.00023 0.00440 0.01818 20.7 +@ 2 -379.77794553 -7.4D-05 0.00118 0.00023 0.00440 0.01818 16.4 ok @@ -3835,77 +3798,81 @@ Divinylbenzene in STO-3G basis set 18 Stretch 15 19 1.08082 -0.00025 19 Stretch 16 18 1.08015 -0.00024 20 Stretch 16 20 1.08082 -0.00025 - 21 Bend 1 3 5 121.37912 0.00008 - 22 Bend 1 3 7 119.16567 -0.00012 - 23 Bend 1 6 4 120.81671 0.00003 - 24 Bend 1 6 10 119.93511 -0.00021 - 25 Bend 1 12 14 114.25124 0.00010 - 26 Bend 1 12 16 126.91315 0.00009 - 27 Bend 2 4 6 121.37912 0.00008 - 28 Bend 2 4 8 119.16567 -0.00012 - 29 Bend 2 5 3 120.81671 0.00003 - 30 Bend 2 5 9 119.93511 -0.00021 - 31 Bend 2 11 13 114.25124 0.00010 - 32 Bend 2 11 15 126.91315 0.00009 - 33 Bend 3 1 6 117.80418 -0.00011 - 34 Bend 3 1 12 119.15544 -0.00001 + 21 Bend 1 3 5 121.37907 0.00008 + 22 Bend 1 3 7 119.16569 -0.00012 + 23 Bend 1 6 4 120.81672 0.00003 + 24 Bend 1 6 10 119.93509 -0.00021 + 25 Bend 1 12 14 114.25126 0.00010 + 26 Bend 1 12 16 126.91301 0.00009 + 27 Bend 2 4 6 121.37907 0.00008 + 28 Bend 2 4 8 119.16569 -0.00012 + 29 Bend 2 5 3 120.81672 0.00003 + 30 Bend 2 5 9 119.93509 -0.00021 + 31 Bend 2 11 13 114.25126 0.00010 + 32 Bend 2 11 15 126.91301 0.00009 + 33 Bend 3 1 6 117.80420 -0.00011 + 34 Bend 3 1 12 119.15551 -0.00001 35 Bend 3 5 9 119.24818 0.00018 - 36 Bend 4 2 5 117.80418 -0.00011 - 37 Bend 4 2 11 119.15544 -0.00001 + 36 Bend 4 2 5 117.80420 -0.00011 + 37 Bend 4 2 11 119.15551 -0.00001 38 Bend 4 6 10 119.24818 0.00018 - 39 Bend 5 2 11 123.04039 0.00011 - 40 Bend 5 3 7 119.45522 0.00004 - 41 Bend 6 1 12 123.04039 0.00011 - 42 Bend 6 4 8 119.45522 0.00004 + 39 Bend 5 2 11 123.04028 0.00011 + 40 Bend 5 3 7 119.45524 0.00004 + 41 Bend 6 1 12 123.04028 0.00011 + 42 Bend 6 4 8 119.45524 0.00004 43 Bend 11 15 17 123.01126 -0.00017 - 44 Bend 11 15 19 121.23170 -0.00002 + 44 Bend 11 15 19 121.23177 -0.00002 45 Bend 12 16 18 123.01126 -0.00017 - 46 Bend 12 16 20 121.23170 -0.00002 - 47 Bend 13 11 15 118.83561 -0.00020 - 48 Bend 14 12 16 118.83561 -0.00020 - 49 Bend 17 15 19 115.75703 0.00019 - 50 Bend 18 16 20 115.75703 0.00019 - 51 Torsion 1 3 5 2 0.00000 0.00000 - 52 Torsion 1 3 5 9 180.00000 0.00000 - 53 Torsion 1 6 4 2 0.00000 0.00000 + 46 Bend 12 16 20 121.23177 -0.00002 + 47 Bend 13 11 15 118.83573 -0.00020 + 48 Bend 14 12 16 118.83573 -0.00020 + 49 Bend 17 15 19 115.75696 0.00019 + 50 Bend 18 16 20 115.75696 0.00019 + 51 Torsion 1 3 5 2 0.00000 -0.00000 + 52 Torsion 1 3 5 9 180.00000 -0.00000 + 53 Torsion 1 6 4 2 0.00000 -0.00000 54 Torsion 1 6 4 8 180.00000 0.00000 55 Torsion 1 12 16 18 0.00000 0.00000 56 Torsion 1 12 16 20 180.00000 0.00000 - 57 Torsion 2 4 6 10 180.00000 0.00000 + 57 Torsion 2 4 6 10 180.00000 -0.00000 58 Torsion 2 5 3 7 180.00000 0.00000 59 Torsion 2 11 15 17 0.00000 0.00000 60 Torsion 2 11 15 19 180.00000 0.00000 - 61 Torsion 3 1 6 4 0.00000 0.00000 - 62 Torsion 3 1 6 10 180.00000 0.00000 - 63 Torsion 3 1 12 14 0.00000 0.00000 - 64 Torsion 3 1 12 16 180.00000 0.00000 - 65 Torsion 3 5 2 4 0.00000 0.00000 - 66 Torsion 3 5 2 11 180.00000 0.00000 - 67 Torsion 4 2 5 9 180.00000 0.00000 - 68 Torsion 4 2 11 13 0.00000 0.00000 - 69 Torsion 4 2 11 15 180.00000 0.00000 - 70 Torsion 4 6 1 12 180.00000 0.00000 + 61 Torsion 3 1 6 4 0.00000 -0.00000 + 62 Torsion 3 1 6 10 180.00000 -0.00000 + 63 Torsion 3 1 12 14 0.00000 -0.00000 + 64 Torsion 3 1 12 16 180.00000 -0.00000 + 65 Torsion 3 5 2 4 0.00000 -0.00000 + 66 Torsion 3 5 2 11 180.00000 -0.00000 + 67 Torsion 4 2 5 9 180.00000 -0.00000 + 68 Torsion 4 2 11 13 0.00000 -0.00000 + 69 Torsion 4 2 11 15 180.00000 -0.00000 + 70 Torsion 4 6 1 12 180.00000 -0.00000 71 Torsion 5 2 4 6 -0.00000 0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 73 Torsion 5 2 11 13 180.00000 0.00000 - 74 Torsion 5 2 11 15 0.00000 0.00000 + 74 Torsion 5 2 11 15 0.00000 -0.00000 75 Torsion 5 3 1 6 0.00000 0.00000 76 Torsion 5 3 1 12 180.00000 0.00000 77 Torsion 6 1 3 7 180.00000 0.00000 78 Torsion 6 1 12 14 180.00000 0.00000 - 79 Torsion 6 1 12 16 0.00000 0.00000 + 79 Torsion 6 1 12 16 0.00000 -0.00000 80 Torsion 6 4 2 11 180.00000 0.00000 81 Torsion 7 3 1 12 -0.00000 0.00000 82 Torsion 7 3 5 9 0.00000 0.00000 83 Torsion 8 4 2 11 -0.00000 0.00000 - 84 Torsion 8 4 6 10 0.00000 0.00000 - 85 Torsion 9 5 2 11 0.00000 0.00000 - 86 Torsion 10 6 1 12 0.00000 0.00000 - 87 Torsion 13 11 15 17 180.00000 0.00000 - 88 Torsion 13 11 15 19 -0.00000 0.00000 - 89 Torsion 14 12 16 18 180.00000 0.00000 + 84 Torsion 8 4 6 10 0.00000 -0.00000 + 85 Torsion 9 5 2 11 0.00000 -0.00000 + 86 Torsion 10 6 1 12 0.00000 -0.00000 + 87 Torsion 13 11 15 17 180.00000 -0.00000 + 88 Torsion 13 11 15 19 -0.00000 -0.00000 + 89 Torsion 14 12 16 18 180.00000 -0.00000 90 Torsion 14 12 16 20 -0.00000 0.00000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 NWChem SCF Module ----------------- @@ -3944,7 +3911,7 @@ Divinylbenzene in STO-3G basis set bu 25 - Forming initial guess at 21.1s + Forming initial guess at 16.5s Loading old vectors from job with title : @@ -3972,7 +3939,7 @@ Divinylbenzene in STO-3G basis set 41 ag 42 bu 43 bu 44 ag 45 ag - Starting SCF solution at 21.1s + Starting SCF solution at 16.5s @@ -3985,30 +3952,21 @@ Divinylbenzene in STO-3G basis set ---------------------------------------------- - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.173D+05 #integrals = 3.523D+05 #direct = 0.0% #cached =100.0% - - iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7779543112 3.20D-03 7.92D-04 20.7 - 2 -379.7779550126 2.03D-05 5.29D-06 20.8 + 1 -379.7779533787 3.20D-03 7.92D-04 16.8 + 2 -379.7779544982 5.95D-06 1.69D-06 18.4 Final RHF results ------------------ - Total SCF energy = -379.777955012633 - One-electron energy = -1412.153753738604 - Two-electron energy = 580.252590970591 - Nuclear repulsion energy = 452.123207755380 + Total SCF energy = -379.777954498241 + One-electron energy = -1412.153829711762 + Two-electron energy = 580.252627249319 + Nuclear repulsion energy = 452.123247964202 - Time for solution = 1.8s + Time for solution = 2.0s @@ -4085,162 +4043,162 @@ Divinylbenzene in STO-3G basis set ------------------------------------- Vector 11 Occ=2.000000D+00 E=-1.106654D+00 Symmetry=ag - MO Center= -6.8D-18, -3.4D-17, 5.4D-37, r^2= 2.8D+00 + MO Center= -1.0D-17, -2.5D-17, 9.9D-24, r^2= 2.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.271040 1 C s 7 0.271040 2 C s - 12 0.245753 3 C s 17 0.245753 4 C s - 22 0.245633 5 C s 27 0.245633 6 C s + 2 0.271039 1 C s 7 0.271039 2 C s + 12 0.245752 3 C s 17 0.245752 4 C s + 22 0.245632 5 C s 27 0.245632 6 C s Vector 12 Occ=2.000000D+00 E=-1.031718D+00 Symmetry=bu - MO Center= 2.1D-17, 1.6D-16, -6.5D-24, r^2= 7.9D+00 + MO Center= 1.5D-17, -6.5D-17, 1.0D-38, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.295359 11 C s 41 -0.295359 12 C s + 36 0.295358 11 C s 41 -0.295358 12 C s 2 -0.264621 1 C s 7 0.264621 2 C s - 48 0.216121 15 C s 53 -0.216121 16 C s + 48 0.216120 15 C s 53 -0.216120 16 C s Vector 13 Occ=2.000000D+00 E=-9.884358D-01 Symmetry=ag - MO Center= -4.6D-17, -3.1D-16, 5.1D-21, r^2= 1.1D+01 + MO Center= -2.7D-17, 1.6D-16, -4.8D-20, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.313077 11 C s 41 0.313077 12 C s - 48 0.309299 15 C s 53 0.309299 16 C s + 48 0.309298 15 C s 53 0.309298 16 C s - Vector 14 Occ=2.000000D+00 E=-9.609325D-01 Symmetry=bu - MO Center= 1.7D-16, -1.6D-17, 5.5D-25, r^2= 3.0D+00 + Vector 14 Occ=2.000000D+00 E=-9.609327D-01 Symmetry=bu + MO Center= -7.2D-18, -4.7D-18, -6.5D-38, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.354271 3 C s 17 -0.354271 4 C s + 12 0.354272 3 C s 17 -0.354272 4 C s 22 0.320741 5 C s 27 -0.320741 6 C s - Vector 15 Occ=2.000000D+00 E=-9.226869D-01 Symmetry=bu - MO Center= -3.8D-17, -1.8D-16, 1.7D-24, r^2= 8.4D+00 + Vector 15 Occ=2.000000D+00 E=-9.226878D-01 Symmetry=bu + MO Center= -4.2D-17, -8.9D-18, -3.0D-21, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.282882 15 C s 53 -0.282882 16 C s 2 0.279932 1 C s 7 -0.279932 2 C s - 22 -0.200868 5 C s 27 0.200868 6 C s + 22 -0.200866 5 C s 27 0.200866 6 C s - Vector 16 Occ=2.000000D+00 E=-8.064084D-01 Symmetry=ag - MO Center= -6.9D-17, 2.2D-16, 1.4D-22, r^2= 8.0D+00 + Vector 16 Occ=2.000000D+00 E=-8.064077D-01 Symmetry=ag + MO Center= 5.8D-17, -3.2D-17, 3.0D-38, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.233466 5 C s 27 0.233466 6 C s - 48 0.226409 15 C s 53 0.226409 16 C s - 2 -0.207372 1 C s 7 -0.207372 2 C s + 22 0.233465 5 C s 27 0.233465 6 C s + 48 0.226411 15 C s 53 0.226411 16 C s + 2 -0.207375 1 C s 7 -0.207375 2 C s 14 -0.166928 3 C py 19 0.166928 4 C py 36 -0.156349 11 C s 41 -0.156349 12 C s Vector 17 Occ=2.000000D+00 E=-7.712747D-01 Symmetry=ag - MO Center= 7.8D-17, 1.5D-16, -2.6D-24, r^2= 4.9D+00 + MO Center= 2.8D-17, 1.2D-18, 1.3D-19, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.319588 3 C s 17 0.319588 4 C s - 3 0.189452 1 C px 8 -0.189452 2 C px - 24 0.173820 5 C py 29 -0.173820 6 C py + 3 0.189453 1 C px 8 -0.189453 2 C px + 24 0.173819 5 C py 29 -0.173819 6 C py 31 0.172194 7 H s 32 0.172194 8 H s - 22 -0.165458 5 C s 27 -0.165458 6 C s + 22 -0.165461 5 C s 27 -0.165461 6 C s - Vector 18 Occ=2.000000D+00 E=-7.329502D-01 Symmetry=bu - MO Center= 4.0D-17, 5.6D-17, 1.2D-20, r^2= 1.2D+01 + Vector 18 Occ=2.000000D+00 E=-7.329503D-01 Symmetry=bu + MO Center= -2.1D-17, -1.9D-16, 1.0D-35, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.293349 11 C s 41 -0.293349 12 C s - 48 -0.246639 15 C s 53 0.246639 16 C s - 45 0.177493 13 H s 46 -0.177493 14 H s + 48 -0.246638 15 C s 53 0.246638 16 C s + 45 0.177492 13 H s 46 -0.177492 14 H s 57 -0.166391 17 H s 58 0.166391 18 H s Vector 19 Occ=2.000000D+00 E=-7.072298D-01 Symmetry=ag - MO Center= 7.5D-17, 1.2D-16, -1.2D-21, r^2= 7.7D+00 + MO Center= -1.5D-17, -3.1D-17, 1.1D-22, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.196015 5 C px 28 -0.196015 6 C px 36 0.180383 11 C s 41 0.180383 12 C s - 13 0.178167 3 C px 18 -0.178167 4 C px - 33 0.171317 9 H s 34 0.171317 10 H s - 48 -0.162895 15 C s 53 -0.162895 16 C s + 13 0.178165 3 C px 18 -0.178165 4 C px + 33 0.171316 9 H s 34 0.171316 10 H s + 48 -0.162896 15 C s 53 -0.162896 16 C s - Vector 20 Occ=2.000000D+00 E=-6.391285D-01 Symmetry=ag - MO Center= 1.5D-17, -2.3D-17, -7.6D-22, r^2= 9.3D+00 + Vector 20 Occ=2.000000D+00 E=-6.391288D-01 Symmetry=ag + MO Center= -2.9D-17, 4.2D-17, -8.0D-23, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.210582 15 C px 54 -0.210582 16 C px - 38 0.182874 11 C py 43 -0.182874 12 C py - 57 0.182015 17 H s 58 0.182015 18 H s + 49 0.210581 15 C px 54 -0.210581 16 C px + 38 0.182876 11 C py 43 -0.182876 12 C py + 57 0.182014 17 H s 58 0.182014 18 H s 45 -0.153442 13 H s 46 -0.153442 14 H s - Vector 21 Occ=2.000000D+00 E=-6.150846D-01 Symmetry=bu - MO Center= -9.8D-17, -5.6D-17, 3.8D-25, r^2= 1.0D+01 + Vector 21 Occ=2.000000D+00 E=-6.150849D-01 Symmetry=bu + MO Center= 1.3D-17, -1.1D-16, 1.9D-25, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.216132 11 C px 42 0.216132 12 C px - 50 0.215149 15 C py 55 0.215149 16 C py - 14 0.188168 3 C py 19 0.188168 4 C py + 50 0.215147 15 C py 55 0.215147 16 C py + 14 0.188167 3 C py 19 0.188167 4 C py 59 -0.187496 19 H s 60 0.187496 20 H s - 45 -0.156488 13 H s 46 0.156488 14 H s + 45 -0.156490 13 H s 46 0.156490 14 H s - Vector 22 Occ=2.000000D+00 E=-5.776231D-01 Symmetry=bu - MO Center= -4.2D-17, 4.2D-17, 3.2D-36, r^2= 6.5D+00 + Vector 22 Occ=2.000000D+00 E=-5.776236D-01 Symmetry=bu + MO Center= -1.2D-17, -6.7D-17, 9.8D-37, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.234658 7 H s 32 0.234658 8 H s + 31 -0.234659 7 H s 32 0.234659 8 H s 33 0.234696 9 H s 34 -0.234696 10 H s - 13 -0.227224 3 C px 18 -0.227224 4 C px - 2 0.221308 1 C s 7 -0.221308 2 C s - 24 -0.178021 5 C py 29 -0.178021 6 C py + 13 -0.227226 3 C px 18 -0.227226 4 C px + 2 0.221304 1 C s 7 -0.221304 2 C s + 24 -0.178023 5 C py 29 -0.178023 6 C py Vector 23 Occ=2.000000D+00 E=-5.638139D-01 Symmetry=bu - MO Center= 1.1D-17, -3.1D-16, -4.7D-25, r^2= 8.6D+00 + MO Center= 5.1D-17, -8.9D-17, -4.1D-26, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.257150 5 C px 28 0.257150 6 C px - 49 0.246928 15 C px 54 0.246928 16 C px - 3 -0.216750 1 C px 8 -0.216750 2 C px - 57 0.215142 17 H s 58 -0.215142 18 H s - 38 0.174090 11 C py 43 0.174090 12 C py + 23 0.257152 5 C px 28 0.257152 6 C px + 49 0.246927 15 C px 54 0.246927 16 C px + 3 -0.216752 1 C px 8 -0.216752 2 C px + 57 0.215141 17 H s 58 -0.215141 18 H s + 38 0.174089 11 C py 43 0.174089 12 C py - Vector 24 Occ=2.000000D+00 E=-5.628773D-01 Symmetry=ag - MO Center= -2.8D-17, 0.0D+00, -1.3D-22, r^2= 1.4D+01 + Vector 24 Occ=2.000000D+00 E=-5.628775D-01 Symmetry=ag + MO Center= 3.4D-17, -2.2D-16, -2.0D-20, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 0.337894 15 C py 55 -0.337894 16 C py - 59 -0.264555 19 H s 60 -0.264555 20 H s + 50 0.337893 15 C py 55 -0.337893 16 C py + 59 -0.264556 19 H s 60 -0.264556 20 H s 37 0.253563 11 C px 42 -0.253563 12 C px 45 -0.153451 13 H s 46 -0.153451 14 H s - Vector 25 Occ=2.000000D+00 E=-5.325179D-01 Symmetry=bu - MO Center= -1.0D-16, 4.6D-17, 1.3D-22, r^2= 4.3D+00 + Vector 25 Occ=2.000000D+00 E=-5.325184D-01 Symmetry=bu + MO Center= 6.0D-17, -4.2D-17, 2.6D-38, r^2= 4.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.304546 3 C px 18 0.304546 4 C px + 13 0.304545 3 C px 18 0.304545 4 C px 31 0.255629 7 H s 32 -0.255629 8 H s - 24 -0.226735 5 C py 29 -0.226735 6 C py + 24 -0.226737 5 C py 29 -0.226737 6 C py 33 0.220959 9 H s 34 -0.220959 10 H s - 23 0.186204 5 C px 28 0.186204 6 C px + 23 0.186201 5 C px 28 0.186201 6 C px - Vector 26 Occ=2.000000D+00 E=-5.074061D-01 Symmetry=bu - MO Center= 6.1D-17, 5.6D-17, -3.0D-24, r^2= 8.7D+00 + Vector 26 Occ=2.000000D+00 E=-5.074062D-01 Symmetry=bu + MO Center= 7.9D-17, 5.4D-16, 2.9D-37, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.237948 15 C py 55 -0.237948 16 C py - 14 0.226865 3 C py 19 0.226865 4 C py - 37 -0.210150 11 C px 42 -0.210150 12 C px - 24 -0.192005 5 C py 29 -0.192005 6 C py - 38 0.186299 11 C py 43 0.186299 12 C py + 14 0.226863 3 C py 19 0.226863 4 C py + 37 -0.210149 11 C px 42 -0.210149 12 C px + 24 -0.192003 5 C py 29 -0.192003 6 C py + 38 0.186301 11 C py 43 0.186301 12 C py - Vector 27 Occ=2.000000D+00 E=-4.981034D-01 Symmetry=ag - MO Center= -8.2D-17, 1.1D-16, -1.2D-24, r^2= 1.2D+01 + Vector 27 Occ=2.000000D+00 E=-4.981039D-01 Symmetry=ag + MO Center= -3.7D-17, 2.3D-17, 3.7D-36, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.295899 15 C px 54 -0.295899 16 C px - 57 0.268745 17 H s 58 0.268745 18 H s + 49 0.295901 15 C px 54 -0.295901 16 C px + 57 0.268746 17 H s 58 0.268746 18 H s 37 -0.205395 11 C px 42 0.205395 12 C px 45 0.201220 13 H s 46 0.201220 14 H s - 31 -0.156903 7 H s 32 -0.156903 8 H s + 31 -0.156901 7 H s 32 -0.156901 8 H s Vector 28 Occ=2.000000D+00 E=-4.772651D-01 Symmetry=au - MO Center= 4.3D-19, -7.6D-17, 2.2D-20, r^2= 3.5D+00 + MO Center= -1.3D-17, -8.3D-18, -2.7D-20, r^2= 3.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.328899 1 C pz 10 0.328899 2 C pz @@ -4248,46 +4206,46 @@ Divinylbenzene in STO-3G basis set 25 0.301195 5 C pz 30 0.301195 6 C pz 39 0.159135 11 C pz 44 0.159135 12 C pz - Vector 29 Occ=2.000000D+00 E=-4.486298D-01 Symmetry=bu - MO Center= 1.7D-18, -3.3D-16, 4.9D-24, r^2= 1.2D+01 + Vector 29 Occ=2.000000D+00 E=-4.486296D-01 Symmetry=bu + MO Center= -4.2D-17, 6.3D-17, -4.7D-23, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.255263 13 H s 46 -0.255263 14 H s - 4 0.249193 1 C py 9 0.249193 2 C py + 4 0.249191 1 C py 9 0.249191 2 C py 57 0.227201 17 H s 58 -0.227201 18 H s 59 -0.218870 19 H s 60 0.218870 20 H s - 37 -0.212205 11 C px 42 -0.212205 12 C px + 37 -0.212206 11 C px 42 -0.212206 12 C px - Vector 30 Occ=2.000000D+00 E=-4.259545D-01 Symmetry=ag - MO Center= 2.6D-18, -2.2D-16, 2.9D-21, r^2= 4.8D+00 + Vector 30 Occ=2.000000D+00 E=-4.259534D-01 Symmetry=ag + MO Center= 1.5D-17, 2.8D-17, -8.3D-21, r^2= 4.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.283961 9 H s 34 0.283961 10 H s - 3 0.255444 1 C px 8 -0.255444 2 C px - 13 -0.228382 3 C px 18 0.228382 4 C px - 14 0.216875 3 C py 19 -0.216875 4 C py - 23 0.211741 5 C px 28 -0.211741 6 C px + 33 0.283960 9 H s 34 0.283960 10 H s + 3 0.255439 1 C px 8 -0.255439 2 C px + 13 -0.228379 3 C px 18 0.228379 4 C px + 14 0.216879 3 C py 19 -0.216879 4 C py + 23 0.211736 5 C px 28 -0.211736 6 C px - Vector 31 Occ=2.000000D+00 E=-4.181829D-01 Symmetry=ag - MO Center= -7.1D-17, -1.5D-16, -4.8D-22, r^2= 7.1D+00 + Vector 31 Occ=2.000000D+00 E=-4.181821D-01 Symmetry=ag + MO Center= 1.8D-17, 1.2D-16, 5.1D-21, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 38 0.219652 11 C py 43 -0.219652 12 C py - 4 0.216975 1 C py 9 -0.216975 2 C py - 31 -0.215098 7 H s 32 -0.215098 8 H s - 23 0.205614 5 C px 28 -0.205614 6 C px - 3 0.199802 1 C px 8 -0.199802 2 C px + 38 0.219648 11 C py 43 -0.219648 12 C py + 4 0.216971 1 C py 9 -0.216971 2 C py + 31 -0.215102 7 H s 32 -0.215102 8 H s + 23 0.205619 5 C px 28 -0.205619 6 C px + 3 0.199809 1 C px 8 -0.199809 2 C px Vector 32 Occ=2.000000D+00 E=-3.868371D-01 Symmetry=bg - MO Center= 2.8D-17, 2.2D-16, -1.6D-19, r^2= 8.5D+00 + MO Center= 9.2D-18, 1.0D-17, -4.6D-23, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.381753 11 C pz 44 -0.381753 12 C pz 5 -0.312311 1 C pz 10 0.312311 2 C pz 51 0.310279 15 C pz 56 -0.310279 16 C pz - Vector 33 Occ=2.000000D+00 E=-3.269036D-01 Symmetry=au - MO Center= 1.4D-17, -1.1D-16, -2.1D-21, r^2= 1.1D+01 + Vector 33 Occ=2.000000D+00 E=-3.269035D-01 Symmetry=au + MO Center= -8.7D-18, -7.1D-17, -1.1D-20, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.426196 15 C pz 56 0.426196 16 C pz @@ -4296,24 +4254,24 @@ Divinylbenzene in STO-3G basis set 25 -0.158699 5 C pz 30 -0.158699 6 C pz Vector 34 Occ=2.000000D+00 E=-2.855845D-01 Symmetry=bg - MO Center= 5.6D-17, 2.8D-17, -3.0D-22, r^2= 2.6D+00 + MO Center= 4.9D-18, 1.9D-17, 7.1D-23, r^2= 2.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.458996 3 C pz 20 -0.458996 4 C pz - 25 0.460826 5 C pz 30 -0.460826 6 C pz + 15 0.458997 3 C pz 20 -0.458997 4 C pz + 25 0.460825 5 C pz 30 -0.460825 6 C pz Vector 35 Occ=2.000000D+00 E=-2.332358D-01 Symmetry=bg - MO Center= -2.5D-42, 3.3D-16, -1.1D-21, r^2= 6.9D+00 + MO Center= -1.9D-17, 6.1D-16, 3.1D-21, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.420736 1 C pz 10 -0.420736 2 C pz 51 0.350548 15 C pz 56 -0.350548 16 C pz - 15 0.233595 3 C pz 20 -0.233595 4 C pz - 25 -0.232032 5 C pz 30 0.232032 6 C pz + 15 0.233594 3 C pz 20 -0.233594 4 C pz + 25 -0.232033 5 C pz 30 0.232033 6 C pz 39 0.216674 11 C pz 44 -0.216674 12 C pz - Vector 36 Occ=0.000000D+00 E= 2.069561D-01 Symmetry=au - MO Center= -1.4D-17, 3.3D-16, -4.8D-20, r^2= 7.1D+00 + Vector 36 Occ=0.000000D+00 E= 2.069560D-01 Symmetry=au + MO Center= 4.0D-18, -9.5D-18, 1.4D-20, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.479160 1 C pz 10 0.479160 2 C pz @@ -4322,34 +4280,34 @@ Divinylbenzene in STO-3G basis set 15 -0.250578 3 C pz 20 -0.250578 4 C pz 39 0.249778 11 C pz 44 0.249778 12 C pz - Vector 37 Occ=0.000000D+00 E= 2.731505D-01 Symmetry=au - MO Center= -3.7D-42, 1.4D-20, 2.1D-23, r^2= 2.7D+00 + Vector 37 Occ=0.000000D+00 E= 2.731504D-01 Symmetry=au + MO Center= 2.5D-16, -6.6D-17, -6.6D-19, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.583566 3 C pz 20 0.583566 4 C pz 25 -0.559971 5 C pz 30 -0.559971 6 C pz - Vector 38 Occ=0.000000D+00 E= 3.186101D-01 Symmetry=bg - MO Center= -2.8D-17, 6.5D-42, -1.2D-20, r^2= 1.1D+01 + Vector 38 Occ=0.000000D+00 E= 3.186099D-01 Symmetry=bg + MO Center= -8.3D-17, 3.2D-17, -5.7D-23, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.537697 15 C pz 56 0.537697 16 C pz 39 0.531787 11 C pz 44 -0.531787 12 C pz - 15 0.221776 3 C pz 20 -0.221776 4 C pz + 15 0.221775 3 C pz 20 -0.221775 4 C pz 25 -0.216153 5 C pz 30 0.216153 6 C pz - Vector 39 Occ=0.000000D+00 E= 4.060614D-01 Symmetry=au - MO Center= 2.8D-17, 3.3D-16, -1.0D-22, r^2= 8.4D+00 + Vector 39 Occ=0.000000D+00 E= 4.060612D-01 Symmetry=au + MO Center= -8.9D-17, 4.0D-16, 4.4D-20, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 0.539442 11 C pz 44 0.539442 12 C pz + 39 0.539441 11 C pz 44 0.539441 12 C pz 5 -0.472314 1 C pz 10 -0.472314 2 C pz 51 -0.416297 15 C pz 56 -0.416297 16 C pz 25 0.189498 5 C pz 30 0.189498 6 C pz - 15 0.162258 3 C pz 20 0.162258 4 C pz + 15 0.162259 3 C pz 20 0.162259 4 C pz - Vector 40 Occ=0.000000D+00 E= 5.374970D-01 Symmetry=bg - MO Center= -1.2D-16, 5.6D-17, 8.7D-22, r^2= 3.7D+00 + Vector 40 Occ=0.000000D+00 E= 5.374968D-01 Symmetry=bg + MO Center= -1.7D-16, 3.1D-17, 1.3D-22, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.545458 1 C pz 10 -0.545458 2 C pz @@ -4358,55 +4316,55 @@ Divinylbenzene in STO-3G basis set 39 0.274984 11 C pz 44 -0.274984 12 C pz 51 -0.158188 15 C pz 56 0.158188 16 C pz - Vector 41 Occ=0.000000D+00 E= 5.684402D-01 Symmetry=ag - MO Center= 1.9D-17, -1.7D-16, -1.4D-20, r^2= 8.6D+00 + Vector 41 Occ=0.000000D+00 E= 5.684381D-01 Symmetry=ag + MO Center= 1.3D-16, 1.7D-16, 4.0D-20, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.416641 7 H s 32 -0.416641 8 H s - 33 -0.415466 9 H s 34 -0.415466 10 H s - 2 0.396051 1 C s 7 0.396051 2 C s - 59 -0.352161 19 H s 60 -0.352161 20 H s - 38 -0.349638 11 C py 43 0.349638 12 C py + 31 -0.416655 7 H s 32 -0.416655 8 H s + 33 -0.415487 9 H s 34 -0.415487 10 H s + 2 0.396034 1 C s 7 0.396034 2 C s + 59 -0.352157 19 H s 60 -0.352157 20 H s + 38 -0.349631 11 C py 43 0.349631 12 C py - Vector 42 Occ=0.000000D+00 E= 5.827521D-01 Symmetry=bu - MO Center= 3.6D-17, -2.5D-16, -1.8D-20, r^2= 1.0D+01 + Vector 42 Occ=0.000000D+00 E= 5.827520D-01 Symmetry=bu + MO Center= -2.9D-16, -3.1D-17, -5.6D-23, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.433702 13 H s 46 -0.433702 14 H s - 37 0.355585 11 C px 42 0.355585 12 C px - 13 0.338735 3 C px 18 0.338735 4 C px - 57 -0.337814 17 H s 58 0.337814 18 H s - 59 0.322159 19 H s 60 -0.322159 20 H s + 45 0.433706 13 H s 46 -0.433706 14 H s + 37 0.355581 11 C px 42 0.355581 12 C px + 13 0.338727 3 C px 18 0.338727 4 C px + 57 -0.337825 17 H s 58 0.337825 18 H s + 59 0.322161 19 H s 60 -0.322161 20 H s - Vector 43 Occ=0.000000D+00 E= 6.323190D-01 Symmetry=bu - MO Center= -7.3D-17, 8.3D-17, 3.2D-20, r^2= 6.8D+00 + Vector 43 Occ=0.000000D+00 E= 6.323206D-01 Symmetry=bu + MO Center= -1.6D-16, 6.8D-16, 1.4D-23, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.533464 11 C s 41 -0.533464 12 C s - 33 0.462998 9 H s 34 -0.462998 10 H s - 4 0.456079 1 C py 9 0.456079 2 C py - 24 0.334681 5 C py 29 0.334681 6 C py - 38 0.320758 11 C py 43 0.320758 12 C py + 36 0.533500 11 C s 41 -0.533500 12 C s + 33 0.462977 9 H s 34 -0.462977 10 H s + 4 0.456085 1 C py 9 0.456085 2 C py + 24 0.334672 5 C py 29 0.334672 6 C py + 38 0.320757 11 C py 43 0.320757 12 C py - Vector 44 Occ=0.000000D+00 E= 6.348876D-01 Symmetry=ag - MO Center= 9.9D-17, 2.8D-17, 2.5D-20, r^2= 1.1D+01 + Vector 44 Occ=0.000000D+00 E= 6.348883D-01 Symmetry=ag + MO Center= 3.4D-18, -3.2D-16, 4.3D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.583303 13 H s 46 0.583303 14 H s - 36 -0.409943 11 C s 41 -0.409943 12 C s - 57 -0.390206 17 H s 58 -0.390206 18 H s - 12 0.386370 3 C s 17 0.386370 4 C s - 37 0.336257 11 C px 42 -0.336257 12 C px + 45 0.583304 13 H s 46 0.583304 14 H s + 36 -0.409920 11 C s 41 -0.409920 12 C s + 57 -0.390222 17 H s 58 -0.390222 18 H s + 12 0.386372 3 C s 17 0.386372 4 C s + 37 0.336265 11 C px 42 -0.336265 12 C px - Vector 45 Occ=0.000000D+00 E= 6.824439D-01 Symmetry=ag - MO Center= 1.6D-16, 0.0D+00, 4.4D-20, r^2= 1.2D+01 + Vector 45 Occ=0.000000D+00 E= 6.824432D-01 Symmetry=ag + MO Center= 1.8D-16, -1.4D-16, 5.7D-20, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.721856 15 C s 53 0.721856 16 C s - 22 0.572302 5 C s 27 0.572302 6 C s - 57 -0.554787 17 H s 58 -0.554787 18 H s - 12 -0.420239 3 C s 17 -0.420239 4 C s - 59 -0.380134 19 H s 60 -0.380134 20 H s + 48 0.721842 15 C s 53 0.721842 16 C s + 22 0.572309 5 C s 27 0.572309 6 C s + 57 -0.554782 17 H s 58 -0.554782 18 H s + 12 -0.420240 3 C s 17 -0.420240 4 C s + 59 -0.380120 19 H s 60 -0.380120 20 H s center of mass @@ -4415,9 +4373,9 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2576.837745220924 -1.554370059752 0.000000000000 - -1.554370059752 376.127728823556 0.000000000000 - 0.000000000000 0.000000000000 2952.965474044481 + 2576.835524234118 -1.554558931943 0.000000000000 + -1.554558931943 376.128053558710 0.000000000000 + 0.000000000000 0.000000000000 2952.963577792827 Mulliken analysis of the total density -------------------------------------- @@ -4454,21 +4412,22 @@ Divinylbenzene in STO-3G basis set 1 1 0 0 -0.000000 0.000000 0.000000 1 0 1 0 0.000000 0.000000 0.000000 - 1 0 0 1 0.000000 0.000000 0.000000 - - 2 2 0 0 -38.488927 0.000000 235.917151 - 2 1 1 0 0.092490 0.000000 -4.521145 - 2 1 0 1 0.000000 0.000000 0.000000 - 2 0 2 0 -39.169836 0.000000 1465.644946 - 2 0 1 1 0.000000 0.000000 0.000000 - 2 0 0 2 -43.441840 0.000000 0.000000 - + 1 0 0 1 -0.000000 0.000000 0.000000 - Parallel integral file used 9 records with 0 large values + 2 2 0 0 -38.488952 0.000000 235.917309 + 2 1 1 0 0.092499 0.000000 -4.521125 + 2 1 0 1 -0.000000 0.000000 0.000000 + 2 0 2 0 -39.169835 0.000000 1465.643684 + 2 0 1 1 -0.000000 0.000000 0.000000 + 2 0 0 2 -43.441839 0.000000 0.000000 Line search: - step= 1.00 grad=-1.8D-05 hess= 8.9D-06 energy= -379.777955 mode=accept - new step= 1.00 predicted energy= -379.777955 + step= 1.00 grad=-1.8D-05 hess= 8.9D-06 energy= -379.777954 mode=accept + new step= 1.00 predicted energy= -379.777954 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 -------- Step 3 @@ -4482,26 +4441,26 @@ Divinylbenzene in STO-3G basis set No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.22793038 1.39275351 0.00000000 - 2 C 6.0000 -0.22793038 -1.39275351 0.00000000 - 3 C 6.0000 1.28926244 0.48584793 0.00000000 - 4 C 6.0000 -1.28926244 -0.48584793 0.00000000 - 5 C 6.0000 1.06906799 -0.87846357 0.00000000 - 6 C 6.0000 -1.06906799 0.87846357 0.00000000 - 7 H 1.0000 2.30489717 0.86064400 0.00000000 - 8 H 1.0000 -2.30489717 -0.86064400 0.00000000 - 9 H 1.0000 1.91764263 -1.54869754 0.00000000 - 10 H 1.0000 -1.91764263 1.54869754 0.00000000 - 11 C 6.0000 -0.52228179 -2.85961381 0.00000000 - 12 C 6.0000 0.52228179 2.85961381 0.00000000 - 13 H 1.0000 -1.57970648 -3.10010258 0.00000000 - 14 H 1.0000 1.57970648 3.10010258 0.00000000 - 15 C 6.0000 0.35279638 -3.83931539 0.00000000 - 16 C 6.0000 -0.35279638 3.83931539 0.00000000 - 17 H 1.0000 1.42098800 -3.67698978 0.00000000 - 18 H 1.0000 -1.42098800 3.67698978 0.00000000 - 19 H 1.0000 0.03724867 -4.87336689 0.00000000 - 20 H 1.0000 -0.03724867 4.87336689 0.00000000 + 1 C 6.0000 0.22793339 1.39275333 0.00000000 + 2 C 6.0000 -0.22793339 -1.39275333 0.00000000 + 3 C 6.0000 1.28926373 0.48584551 0.00000000 + 4 C 6.0000 -1.28926373 -0.48584551 0.00000000 + 5 C 6.0000 1.06906603 -0.87846571 0.00000000 + 6 C 6.0000 -1.06906603 0.87846571 0.00000000 + 7 H 1.0000 2.30489907 0.86063972 0.00000000 + 8 H 1.0000 -2.30489907 -0.86063972 0.00000000 + 9 H 1.0000 1.91763799 -1.54870316 0.00000000 + 10 H 1.0000 -1.91763799 1.54870316 0.00000000 + 11 C 6.0000 -0.52228418 -2.85961377 0.00000000 + 12 C 6.0000 0.52228418 2.85961377 0.00000000 + 13 H 1.0000 -1.57970829 -3.10010591 0.00000000 + 14 H 1.0000 1.57970829 3.10010591 0.00000000 + 15 C 6.0000 0.35279767 -3.83931240 0.00000000 + 16 C 6.0000 -0.35279767 3.83931240 0.00000000 + 17 H 1.0000 1.42098859 -3.67698185 0.00000000 + 18 H 1.0000 -1.42098859 3.67698185 0.00000000 + 19 H 1.0000 0.03725465 -4.87336534 0.00000000 + 20 H 1.0000 -0.03725465 4.87336534 0.00000000 Atomic Mass ----------- @@ -4510,7 +4469,7 @@ Divinylbenzene in STO-3G basis set H 1.007825 - Effective nuclear repulsion energy (a.u.) 452.1232077554 + Effective nuclear repulsion energy (a.u.) 452.1232479642 Nuclear Dipole moment (a.u.) ---------------------------- @@ -4570,7 +4529,7 @@ Divinylbenzene in STO-3G basis set The SCF is already converged - Total SCF energy = -379.777955012633 + Total SCF energy = -379.777954498241 NWChem Gradients Module ----------------------- @@ -4588,38 +4547,39 @@ Divinylbenzene in STO-3G basis set atom coordinates gradient x y z x y z - 1 C 0.430726 2.631923 0.000000 0.000062 -0.000072 0.000000 - 2 C -0.430726 -2.631923 0.000000 -0.000062 0.000072 0.000000 - 3 C 2.436353 0.918119 0.000000 0.000013 0.000061 0.000000 - 4 C -2.436353 -0.918119 0.000000 -0.000013 -0.000061 0.000000 - 5 C 2.020246 -1.660055 0.000000 -0.000000 -0.000085 0.000000 - 6 C -2.020246 1.660055 0.000000 0.000000 0.000085 0.000000 - 7 H 4.355624 1.626381 0.000000 -0.000010 0.000013 0.000000 - 8 H -4.355624 -1.626381 0.000000 0.000010 -0.000013 0.000000 - 9 H 3.623819 -2.926614 0.000000 -0.000001 -0.000020 0.000000 - 10 H -3.623819 2.926614 0.000000 0.000001 0.000020 0.000000 - 11 C -0.986969 -5.403887 0.000000 0.000096 -0.000001 0.000000 - 12 C 0.986969 5.403887 0.000000 -0.000096 0.000001 0.000000 - 13 H -2.985212 -5.858344 0.000000 -0.000022 0.000007 0.000000 - 14 H 2.985212 5.858344 0.000000 0.000022 -0.000007 0.000000 - 15 C 0.666688 -7.255254 0.000000 -0.000026 -0.000012 0.000000 - 16 C -0.666688 7.255254 0.000000 0.000026 0.000012 0.000000 - 17 H 2.685278 -6.948503 0.000000 0.000041 0.000008 0.000000 - 18 H -2.685278 6.948503 0.000000 -0.000041 -0.000008 0.000000 - 19 H 0.070390 -9.209328 0.000000 -0.000027 0.000019 0.000000 - 20 H -0.070390 9.209328 0.000000 0.000027 -0.000019 0.000000 + 1 C 0.430732 2.631922 0.000000 0.000062 -0.000072 0.000000 + 2 C -0.430732 -2.631922 0.000000 -0.000062 0.000072 0.000000 + 3 C 2.436355 0.918115 0.000000 0.000013 0.000061 0.000000 + 4 C -2.436355 -0.918115 0.000000 -0.000013 -0.000061 0.000000 + 5 C 2.020242 -1.660059 0.000000 -0.000000 -0.000086 0.000000 + 6 C -2.020242 1.660059 0.000000 0.000000 0.000086 -0.000000 + 7 H 4.355628 1.626373 0.000000 -0.000010 0.000013 0.000000 + 8 H -4.355628 -1.626373 0.000000 0.000010 -0.000013 0.000000 + 9 H 3.623810 -2.926625 0.000000 -0.000001 -0.000020 0.000000 + 10 H -3.623810 2.926625 0.000000 0.000001 0.000020 0.000000 + 11 C -0.986974 -5.403886 0.000000 0.000096 -0.000001 0.000000 + 12 C 0.986974 5.403886 0.000000 -0.000096 0.000001 0.000000 + 13 H -2.985216 -5.858351 0.000000 -0.000022 0.000006 0.000000 + 14 H 2.985216 5.858351 0.000000 0.000022 -0.000006 0.000000 + 15 C 0.666691 -7.255248 0.000000 -0.000026 -0.000012 0.000000 + 16 C -0.666691 7.255248 0.000000 0.000026 0.000012 0.000000 + 17 H 2.685279 -6.948488 0.000000 0.000041 0.000008 0.000000 + 18 H -2.685279 6.948488 0.000000 -0.000041 -0.000008 0.000000 + 19 H 0.070401 -9.209325 0.000000 -0.000027 0.000019 0.000000 + 20 H -0.070401 9.209325 0.000000 0.000027 -0.000019 0.000000 ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.02 | 2.66 | + | CPU | 0.00 | 0.56 | ---------------------------------------- - | WALL | 0.02 | 2.66 | + | WALL | 0.00 | 0.56 | ---------------------------------------- + no constraints, skipping 0.0000000000000000 Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 3 -379.77795501 -9.0D-06 0.00004 0.00002 0.00110 0.00242 26.1 +@ 3 -379.77795450 -9.0D-06 0.00004 0.00002 0.00110 0.00242 19.0 ok ok ok @@ -4647,73 +4607,73 @@ Divinylbenzene in STO-3G basis set 14 Stretch 11 15 1.31361 -0.00002 15 Stretch 12 14 1.08443 0.00002 16 Stretch 12 16 1.31361 -0.00002 - 17 Stretch 15 17 1.08045 0.00004 + 17 Stretch 15 17 1.08046 0.00004 18 Stretch 15 19 1.08113 -0.00001 - 19 Stretch 16 18 1.08045 0.00004 + 19 Stretch 16 18 1.08046 0.00004 20 Stretch 16 20 1.08113 -0.00001 - 21 Bend 1 3 5 121.34556 -0.00001 - 22 Bend 1 3 7 119.23080 -0.00000 - 23 Bend 1 6 4 120.79772 -0.00002 - 24 Bend 1 6 10 120.06761 -0.00000 - 25 Bend 1 12 14 114.15948 -0.00002 - 26 Bend 1 12 16 126.88178 0.00002 - 27 Bend 2 4 6 121.34556 -0.00001 - 28 Bend 2 4 8 119.23080 -0.00000 - 29 Bend 2 5 3 120.79772 -0.00002 - 30 Bend 2 5 9 120.06761 -0.00000 - 31 Bend 2 11 13 114.15948 -0.00002 - 32 Bend 2 11 15 126.88178 0.00002 - 33 Bend 3 1 6 117.85672 0.00003 - 34 Bend 3 1 12 119.16710 0.00001 - 35 Bend 3 5 9 119.13467 0.00002 - 36 Bend 4 2 5 117.85672 0.00003 - 37 Bend 4 2 11 119.16710 0.00001 - 38 Bend 4 6 10 119.13467 0.00002 - 39 Bend 5 2 11 122.97618 -0.00004 - 40 Bend 5 3 7 119.42364 0.00001 - 41 Bend 6 1 12 122.97618 -0.00004 - 42 Bend 6 4 8 119.42364 0.00001 - 43 Bend 11 15 17 123.13078 0.00001 - 44 Bend 11 15 19 121.25857 -0.00002 - 45 Bend 12 16 18 123.13078 0.00001 - 46 Bend 12 16 20 121.25857 -0.00002 - 47 Bend 13 11 15 118.95875 -0.00001 - 48 Bend 14 12 16 118.95875 -0.00001 + 21 Bend 1 3 5 121.34554 -0.00001 + 22 Bend 1 3 7 119.23079 -0.00000 + 23 Bend 1 6 4 120.79775 -0.00002 + 24 Bend 1 6 10 120.06748 -0.00000 + 25 Bend 1 12 14 114.15963 -0.00002 + 26 Bend 1 12 16 126.88160 0.00002 + 27 Bend 2 4 6 121.34554 -0.00001 + 28 Bend 2 4 8 119.23079 -0.00000 + 29 Bend 2 5 3 120.79775 -0.00002 + 30 Bend 2 5 9 120.06748 -0.00000 + 31 Bend 2 11 13 114.15963 -0.00002 + 32 Bend 2 11 15 126.88160 0.00002 + 33 Bend 3 1 6 117.85671 0.00003 + 34 Bend 3 1 12 119.16724 0.00001 + 35 Bend 3 5 9 119.13476 0.00002 + 36 Bend 4 2 5 117.85671 0.00003 + 37 Bend 4 2 11 119.16724 0.00001 + 38 Bend 4 6 10 119.13476 0.00002 + 39 Bend 5 2 11 122.97606 -0.00004 + 40 Bend 5 3 7 119.42368 0.00001 + 41 Bend 6 1 12 122.97606 -0.00004 + 42 Bend 6 4 8 119.42368 0.00001 + 43 Bend 11 15 17 123.13072 0.00001 + 44 Bend 11 15 19 121.25862 -0.00002 + 45 Bend 12 16 18 123.13072 0.00001 + 46 Bend 12 16 20 121.25862 -0.00002 + 47 Bend 13 11 15 118.95877 -0.00001 + 48 Bend 14 12 16 118.95877 -0.00001 49 Bend 17 15 19 115.61065 0.00001 50 Bend 18 16 20 115.61065 0.00001 - 51 Torsion 1 3 5 2 0.00000 0.00000 + 51 Torsion 1 3 5 2 0.00000 -0.00000 52 Torsion 1 3 5 9 180.00000 0.00000 - 53 Torsion 1 6 4 2 0.00000 0.00000 - 54 Torsion 1 6 4 8 180.00000 0.00000 + 53 Torsion 1 6 4 2 0.00000 -0.00000 + 54 Torsion 1 6 4 8 180.00000 -0.00000 55 Torsion 1 12 16 18 0.00000 0.00000 - 56 Torsion 1 12 16 20 180.00000 0.00000 + 56 Torsion 1 12 16 20 180.00000 -0.00000 57 Torsion 2 4 6 10 180.00000 0.00000 - 58 Torsion 2 5 3 7 180.00000 0.00000 - 59 Torsion 2 11 15 17 0.00000 0.00000 - 60 Torsion 2 11 15 19 180.00000 0.00000 + 58 Torsion 2 5 3 7 180.00000 -0.00000 + 59 Torsion 2 11 15 17 0.00000 -0.00000 + 60 Torsion 2 11 15 19 180.00000 -0.00000 61 Torsion 3 1 6 4 0.00000 0.00000 - 62 Torsion 3 1 6 10 180.00000 0.00000 + 62 Torsion 3 1 6 10 180.00000 -0.00000 63 Torsion 3 1 12 14 0.00000 0.00000 64 Torsion 3 1 12 16 180.00000 0.00000 65 Torsion 3 5 2 4 0.00000 0.00000 66 Torsion 3 5 2 11 180.00000 0.00000 67 Torsion 4 2 5 9 180.00000 0.00000 - 68 Torsion 4 2 11 13 0.00000 0.00000 + 68 Torsion 4 2 11 13 0.00000 -0.00000 69 Torsion 4 2 11 15 180.00000 0.00000 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 0.00000 + 71 Torsion 5 2 4 6 -0.00000 -0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 - 73 Torsion 5 2 11 13 180.00000 0.00000 - 74 Torsion 5 2 11 15 0.00000 0.00000 - 75 Torsion 5 3 1 6 0.00000 0.00000 - 76 Torsion 5 3 1 12 180.00000 0.00000 - 77 Torsion 6 1 3 7 180.00000 0.00000 + 73 Torsion 5 2 11 13 180.00000 -0.00000 + 74 Torsion 5 2 11 15 0.00000 -0.00000 + 75 Torsion 5 3 1 6 0.00000 -0.00000 + 76 Torsion 5 3 1 12 180.00000 -0.00000 + 77 Torsion 6 1 3 7 180.00000 -0.00000 78 Torsion 6 1 12 14 180.00000 0.00000 79 Torsion 6 1 12 16 0.00000 0.00000 - 80 Torsion 6 4 2 11 180.00000 0.00000 - 81 Torsion 7 3 1 12 -0.00000 0.00000 - 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 0.00000 + 80 Torsion 6 4 2 11 180.00000 -0.00000 + 81 Torsion 7 3 1 12 -0.00000 -0.00000 + 82 Torsion 7 3 5 9 0.00000 -0.00000 + 83 Torsion 8 4 2 11 -0.00000 -0.00000 84 Torsion 8 4 6 10 0.00000 0.00000 85 Torsion 9 5 2 11 0.00000 0.00000 86 Torsion 10 6 1 12 0.00000 0.00000 @@ -4722,6 +4682,9 @@ Divinylbenzene in STO-3G basis set 89 Torsion 14 12 16 18 180.00000 0.00000 90 Torsion 14 12 16 20 -0.00000 0.00000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 NWChem SCF Module ----------------- @@ -4760,7 +4723,7 @@ Divinylbenzene in STO-3G basis set bu 25 - Forming initial guess at 26.3s + Forming initial guess at 19.1s Loading old vectors from job with title : @@ -4788,7 +4751,7 @@ Divinylbenzene in STO-3G basis set 41 ag 42 bu 43 bu 44 ag 45 ag - Starting SCF solution at 26.4s + Starting SCF solution at 19.1s @@ -4801,30 +4764,21 @@ Divinylbenzene in STO-3G basis set ---------------------------------------------- - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.173D+05 #integrals = 3.523D+05 #direct = 0.0% #cached =100.0% - - iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7779555173 5.35D-04 1.16D-04 25.5 - 2 -379.7779551102 2.00D-05 5.28D-06 25.6 + 1 -379.7779545645 5.34D-04 1.16D-04 19.4 + 2 -379.7779545979 4.25D-06 1.51D-06 20.7 Final RHF results ------------------ - Total SCF energy = -379.777955110167 - One-electron energy = -1412.141540797265 - Two-electron energy = 580.246505274266 - Nuclear repulsion energy = 452.117080412832 + Total SCF energy = -379.777954597878 + One-electron energy = -1412.141769630618 + Two-electron energy = 580.246615667285 + Nuclear repulsion energy = 452.117199365455 - Time for solution = 1.8s + Time for solution = 1.6s @@ -4901,162 +4855,162 @@ Divinylbenzene in STO-3G basis set ------------------------------------- Vector 11 Occ=2.000000D+00 E=-1.106644D+00 Symmetry=ag - MO Center= 3.0D-17, 3.1D-17, -1.0D-23, r^2= 2.8D+00 + MO Center= 2.0D-17, -1.8D-17, 1.4D-23, r^2= 2.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.271028 1 C s 7 0.271028 2 C s 12 0.245765 3 C s 17 0.245765 4 C s - 22 0.245643 5 C s 27 0.245643 6 C s + 22 0.245642 5 C s 27 0.245642 6 C s - Vector 12 Occ=2.000000D+00 E=-1.031709D+00 Symmetry=bu - MO Center= 2.8D-17, -2.8D-17, -1.1D-24, r^2= 7.9D+00 + Vector 12 Occ=2.000000D+00 E=-1.031708D+00 Symmetry=bu + MO Center= -1.8D-17, -5.3D-17, 1.1D-25, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.295371 11 C s 41 -0.295371 12 C s - 2 -0.264604 1 C s 7 0.264604 2 C s - 48 0.216147 15 C s 53 -0.216147 16 C s + 2 -0.264605 1 C s 7 0.264605 2 C s + 48 0.216146 15 C s 53 -0.216146 16 C s - Vector 13 Occ=2.000000D+00 E=-9.884409D-01 Symmetry=ag - MO Center= -7.5D-18, 4.4D-16, 5.2D-21, r^2= 1.1D+01 + Vector 13 Occ=2.000000D+00 E=-9.884411D-01 Symmetry=ag + MO Center= -3.3D-17, -2.1D-16, -4.8D-20, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.313083 11 C s 41 0.313083 12 C s - 48 0.309297 15 C s 53 0.309297 16 C s + 48 0.309296 15 C s 53 0.309296 16 C s - Vector 14 Occ=2.000000D+00 E=-9.609290D-01 Symmetry=bu - MO Center= -2.0D-17, 7.9D-17, 5.4D-25, r^2= 3.0D+00 + Vector 14 Occ=2.000000D+00 E=-9.609295D-01 Symmetry=bu + MO Center= -4.2D-18, 3.1D-17, -6.8D-38, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.354259 3 C s 17 -0.354259 4 C s - 22 0.320758 5 C s 27 -0.320758 6 C s + 12 0.354260 3 C s 17 -0.354260 4 C s + 22 0.320759 5 C s 27 -0.320759 6 C s - Vector 15 Occ=2.000000D+00 E=-9.226844D-01 Symmetry=bu - MO Center= -2.8D-18, -3.6D-16, -9.8D-26, r^2= 8.4D+00 + Vector 15 Occ=2.000000D+00 E=-9.226853D-01 Symmetry=bu + MO Center= -2.7D-17, -5.9D-16, 2.1D-36, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.282854 15 C s 53 -0.282854 16 C s + 48 0.282855 15 C s 53 -0.282855 16 C s 2 0.279962 1 C s 7 -0.279962 2 C s - 22 -0.200871 5 C s 27 0.200871 6 C s + 22 -0.200870 5 C s 27 0.200870 6 C s - Vector 16 Occ=2.000000D+00 E=-8.064080D-01 Symmetry=ag - MO Center= -7.5D-17, -1.9D-16, 1.4D-22, r^2= 8.0D+00 + Vector 16 Occ=2.000000D+00 E=-8.064075D-01 Symmetry=ag + MO Center= 5.8D-17, 1.6D-16, 7.3D-25, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.233406 5 C s 27 0.233406 6 C s - 48 0.226453 15 C s 53 0.226453 16 C s - 2 -0.207423 1 C s 7 -0.207423 2 C s + 22 0.233404 5 C s 27 0.233404 6 C s + 48 0.226455 15 C s 53 0.226455 16 C s + 2 -0.207425 1 C s 7 -0.207425 2 C s 14 -0.166918 3 C py 19 0.166918 4 C py 36 -0.156353 11 C s 41 -0.156353 12 C s Vector 17 Occ=2.000000D+00 E=-7.712472D-01 Symmetry=ag - MO Center= 1.2D-16, -1.4D-17, -2.1D-24, r^2= 4.9D+00 + MO Center= 9.9D-17, 6.7D-17, 4.2D-38, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.319593 3 C s 17 0.319593 4 C s - 3 0.189471 1 C px 8 -0.189471 2 C px + 3 0.189473 1 C px 8 -0.189473 2 C px 24 0.173832 5 C py 29 -0.173832 6 C py 31 0.172224 7 H s 32 0.172224 8 H s - 22 -0.165499 5 C s 27 -0.165499 6 C s + 22 -0.165501 5 C s 27 -0.165501 6 C s - Vector 18 Occ=2.000000D+00 E=-7.329704D-01 Symmetry=bu - MO Center= 4.2D-17, -3.9D-16, 1.2D-20, r^2= 1.2D+01 + Vector 18 Occ=2.000000D+00 E=-7.329705D-01 Symmetry=bu + MO Center= 6.6D-17, 3.0D-17, 3.3D-26, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.293348 11 C s 41 -0.293348 12 C s - 48 -0.246645 15 C s 53 0.246645 16 C s - 45 0.177498 13 H s 46 -0.177498 14 H s + 48 -0.246644 15 C s 53 0.246644 16 C s + 45 0.177497 13 H s 46 -0.177497 14 H s 57 -0.166398 17 H s 58 0.166398 18 H s - Vector 19 Occ=2.000000D+00 E=-7.072447D-01 Symmetry=ag - MO Center= 4.8D-17, -2.8D-17, -1.2D-21, r^2= 7.7D+00 + Vector 19 Occ=2.000000D+00 E=-7.072448D-01 Symmetry=ag + MO Center= 4.7D-18, -1.8D-16, 1.2D-23, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.195982 5 C px 28 -0.195982 6 C px - 36 0.180435 11 C s 41 0.180435 12 C s - 13 0.178105 3 C px 18 -0.178105 4 C px - 33 0.171312 9 H s 34 0.171312 10 H s - 48 -0.162921 15 C s 53 -0.162921 16 C s + 36 0.180436 11 C s 41 0.180436 12 C s + 13 0.178104 3 C px 18 -0.178104 4 C px + 33 0.171311 9 H s 34 0.171311 10 H s + 48 -0.162922 15 C s 53 -0.162922 16 C s - Vector 20 Occ=2.000000D+00 E=-6.391354D-01 Symmetry=ag - MO Center= -6.9D-17, -2.6D-17, -1.8D-24, r^2= 9.3D+00 + Vector 20 Occ=2.000000D+00 E=-6.391358D-01 Symmetry=ag + MO Center= -9.3D-18, -2.5D-18, -7.7D-23, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.210542 15 C px 54 -0.210542 16 C px - 38 0.182888 11 C py 43 -0.182888 12 C py - 57 0.181959 17 H s 58 0.181959 18 H s + 49 0.210540 15 C px 54 -0.210540 16 C px + 38 0.182889 11 C py 43 -0.182889 12 C py + 57 0.181957 17 H s 58 0.181957 18 H s 45 -0.153426 13 H s 46 -0.153426 14 H s - Vector 21 Occ=2.000000D+00 E=-6.150835D-01 Symmetry=bu - MO Center= 3.6D-17, -1.1D-16, 6.3D-25, r^2= 1.0D+01 + Vector 21 Occ=2.000000D+00 E=-6.150839D-01 Symmetry=bu + MO Center= 6.7D-17, -1.3D-16, 2.9D-26, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.216160 11 C px 42 0.216160 12 C px - 50 0.215187 15 C py 55 0.215187 16 C py + 37 0.216161 11 C px 42 0.216161 12 C px + 50 0.215186 15 C py 55 0.215186 16 C py 14 0.188104 3 C py 19 0.188104 4 C py - 59 -0.187518 19 H s 60 0.187518 20 H s - 45 -0.156516 13 H s 46 0.156516 14 H s + 59 -0.187517 19 H s 60 0.187517 20 H s + 45 -0.156517 13 H s 46 0.156517 14 H s - Vector 22 Occ=2.000000D+00 E=-5.776098D-01 Symmetry=bu - MO Center= -7.5D-17, 3.5D-17, 4.5D-25, r^2= 6.5D+00 + Vector 22 Occ=2.000000D+00 E=-5.776103D-01 Symmetry=bu + MO Center= 1.4D-17, -1.7D-18, 2.0D-26, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.234597 7 H s 32 0.234597 8 H s + 31 -0.234598 7 H s 32 0.234598 8 H s 33 0.234610 9 H s 34 -0.234610 10 H s - 13 -0.227179 3 C px 18 -0.227179 4 C px - 2 0.221229 1 C s 7 -0.221229 2 C s - 24 -0.178094 5 C py 29 -0.178094 6 C py + 13 -0.227181 3 C px 18 -0.227181 4 C px + 2 0.221225 1 C s 7 -0.221225 2 C s + 24 -0.178097 5 C py 29 -0.178097 6 C py - Vector 23 Occ=2.000000D+00 E=-5.638130D-01 Symmetry=bu - MO Center= 4.3D-17, -7.6D-17, 2.7D-38, r^2= 8.6D+00 + Vector 23 Occ=2.000000D+00 E=-5.638131D-01 Symmetry=bu + MO Center= 1.5D-17, 5.4D-18, 3.2D-38, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.257180 5 C px 28 0.257180 6 C px - 49 0.246867 15 C px 54 0.246867 16 C px + 23 0.257183 5 C px 28 0.257183 6 C px + 49 0.246865 15 C px 54 0.246865 16 C px 3 -0.216648 1 C px 8 -0.216648 2 C px - 57 0.215087 17 H s 58 -0.215087 18 H s - 38 0.174035 11 C py 43 0.174035 12 C py + 57 0.215086 17 H s 58 -0.215086 18 H s + 38 0.174033 11 C py 43 0.174033 12 C py - Vector 24 Occ=2.000000D+00 E=-5.628886D-01 Symmetry=ag - MO Center= -1.0D-17, 7.8D-16, -1.3D-22, r^2= 1.4D+01 + Vector 24 Occ=2.000000D+00 E=-5.628889D-01 Symmetry=ag + MO Center= -2.0D-17, 3.7D-16, -8.7D-24, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 0.337869 15 C py 55 -0.337869 16 C py + 50 0.337868 15 C py 55 -0.337868 16 C py 59 -0.264527 19 H s 60 -0.264527 20 H s - 37 0.253584 11 C px 42 -0.253584 12 C px + 37 0.253585 11 C px 42 -0.253585 12 C px 45 -0.153484 13 H s 46 -0.153484 14 H s - Vector 25 Occ=2.000000D+00 E=-5.324986D-01 Symmetry=bu - MO Center= -5.8D-17, 3.5D-17, 1.3D-26, r^2= 4.3D+00 + Vector 25 Occ=2.000000D+00 E=-5.324993D-01 Symmetry=bu + MO Center= 5.9D-18, -4.1D-17, 4.4D-27, r^2= 4.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 13 0.304551 3 C px 18 0.304551 4 C px 31 0.255648 7 H s 32 -0.255648 8 H s - 24 -0.226739 5 C py 29 -0.226739 6 C py - 33 0.220992 9 H s 34 -0.220992 10 H s - 23 0.186285 5 C px 28 0.186285 6 C px + 24 -0.226741 5 C py 29 -0.226741 6 C py + 33 0.220993 9 H s 34 -0.220993 10 H s + 23 0.186283 5 C px 28 0.186283 6 C px - Vector 26 Occ=2.000000D+00 E=-5.074034D-01 Symmetry=bu - MO Center= 6.6D-17, -3.3D-16, -3.0D-24, r^2= 8.7D+00 + Vector 26 Occ=2.000000D+00 E=-5.074036D-01 Symmetry=bu + MO Center= -4.3D-17, 5.8D-17, -5.1D-39, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.237851 15 C py 55 -0.237851 16 C py - 14 0.226865 3 C py 19 0.226865 4 C py - 37 -0.210175 11 C px 42 -0.210175 12 C px - 24 -0.191971 5 C py 29 -0.191971 6 C py - 38 0.186276 11 C py 43 0.186276 12 C py + 14 0.226864 3 C py 19 0.226864 4 C py + 37 -0.210174 11 C px 42 -0.210174 12 C px + 24 -0.191970 5 C py 29 -0.191970 6 C py + 38 0.186278 11 C py 43 0.186278 12 C py - Vector 27 Occ=2.000000D+00 E=-4.981101D-01 Symmetry=ag - MO Center= -8.2D-17, 3.3D-16, -2.0D-24, r^2= 1.2D+01 + Vector 27 Occ=2.000000D+00 E=-4.981106D-01 Symmetry=ag + MO Center= 1.2D-16, 7.8D-17, -1.8D-36, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.295931 15 C px 54 -0.295931 16 C px - 57 0.268763 17 H s 58 0.268763 18 H s + 49 0.295932 15 C px 54 -0.295932 16 C px + 57 0.268764 17 H s 58 0.268764 18 H s 37 -0.205387 11 C px 42 0.205387 12 C px 45 0.201213 13 H s 46 0.201213 14 H s - 31 -0.156858 7 H s 32 -0.156858 8 H s + 31 -0.156856 7 H s 32 -0.156856 8 H s - Vector 28 Occ=2.000000D+00 E=-4.772560D-01 Symmetry=au - MO Center= 1.3D-18, -6.9D-18, 2.8D-20, r^2= 3.5D+00 + Vector 28 Occ=2.000000D+00 E=-4.772562D-01 Symmetry=au + MO Center= 1.4D-18, -5.4D-18, -2.8D-20, r^2= 3.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.328887 1 C pz 10 0.328887 2 C pz @@ -5064,46 +5018,46 @@ Divinylbenzene in STO-3G basis set 25 0.301207 5 C pz 30 0.301207 6 C pz 39 0.159126 11 C pz 44 0.159126 12 C pz - Vector 29 Occ=2.000000D+00 E=-4.486543D-01 Symmetry=bu - MO Center= -4.3D-17, -3.3D-16, 5.0D-24, r^2= 1.2D+01 + Vector 29 Occ=2.000000D+00 E=-4.486540D-01 Symmetry=bu + MO Center= -8.2D-17, 4.1D-16, -4.7D-23, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.255187 13 H s 46 -0.255187 14 H s - 4 0.249211 1 C py 9 0.249211 2 C py + 4 0.249209 1 C py 9 0.249209 2 C py 57 0.227221 17 H s 58 -0.227221 18 H s - 59 -0.218924 19 H s 60 0.218924 20 H s - 37 -0.212139 11 C px 42 -0.212139 12 C px + 59 -0.218925 19 H s 60 0.218925 20 H s + 37 -0.212140 11 C px 42 -0.212140 12 C px - Vector 30 Occ=2.000000D+00 E=-4.259206D-01 Symmetry=ag - MO Center= -4.9D-17, -6.9D-18, 2.9D-21, r^2= 4.8D+00 + Vector 30 Occ=2.000000D+00 E=-4.259195D-01 Symmetry=ag + MO Center= -7.3D-17, 2.3D-16, -8.3D-21, r^2= 4.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.283935 9 H s 34 0.283935 10 H s - 3 0.255245 1 C px 8 -0.255245 2 C px + 33 0.283934 9 H s 34 0.283934 10 H s + 3 0.255244 1 C px 8 -0.255244 2 C px 13 -0.228238 3 C px 18 0.228238 4 C px - 14 0.217065 3 C py 19 -0.217065 4 C py - 23 0.211551 5 C px 28 -0.211551 6 C px + 14 0.217066 3 C py 19 -0.217066 4 C py + 23 0.211550 5 C px 28 -0.211550 6 C px - Vector 31 Occ=2.000000D+00 E=-4.182029D-01 Symmetry=ag - MO Center= -5.4D-18, -1.4D-17, -4.9D-22, r^2= 7.1D+00 + Vector 31 Occ=2.000000D+00 E=-4.182021D-01 Symmetry=ag + MO Center= 1.3D-16, -5.2D-16, 5.1D-21, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 38 0.219474 11 C py 43 -0.219474 12 C py - 4 0.216754 1 C py 9 -0.216754 2 C py - 31 -0.215280 7 H s 32 -0.215280 8 H s - 23 0.205813 5 C px 28 -0.205813 6 C px - 3 0.200084 1 C px 8 -0.200084 2 C px + 38 0.219472 11 C py 43 -0.219472 12 C py + 4 0.216753 1 C py 9 -0.216753 2 C py + 31 -0.215282 7 H s 32 -0.215282 8 H s + 23 0.205815 5 C px 28 -0.205815 6 C px + 3 0.200086 1 C px 8 -0.200086 2 C px - Vector 32 Occ=2.000000D+00 E=-3.868289D-01 Symmetry=bg - MO Center= 2.8D-17, 1.1D-16, -1.6D-19, r^2= 8.5D+00 + Vector 32 Occ=2.000000D+00 E=-3.868290D-01 Symmetry=bg + MO Center= 3.3D-18, -1.1D-17, 1.3D-23, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.381768 11 C pz 44 -0.381768 12 C pz 5 -0.312290 1 C pz 10 0.312290 2 C pz - 51 0.310302 15 C pz 56 -0.310302 16 C pz + 51 0.310301 15 C pz 56 -0.310301 16 C pz Vector 33 Occ=2.000000D+00 E=-3.269088D-01 Symmetry=au - MO Center= -1.7D-41, -1.1D-16, -2.3D-21, r^2= 1.1D+01 + MO Center= 1.7D-17, -7.3D-18, 4.5D-20, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.426190 15 C pz 56 0.426190 16 C pz @@ -5111,42 +5065,42 @@ Divinylbenzene in STO-3G basis set 15 -0.158548 3 C pz 20 -0.158548 4 C pz 25 -0.158700 5 C pz 30 -0.158700 6 C pz - Vector 34 Occ=2.000000D+00 E=-2.855873D-01 Symmetry=bg - MO Center= 5.6D-17, -2.0D-19, -2.4D-22, r^2= 2.6D+00 + Vector 34 Occ=2.000000D+00 E=-2.855874D-01 Symmetry=bg + MO Center= 1.3D-17, -9.3D-18, 3.7D-23, r^2= 2.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.458980 3 C pz 20 -0.458980 4 C pz 25 0.460839 5 C pz 30 -0.460839 6 C pz - Vector 35 Occ=2.000000D+00 E=-2.332302D-01 Symmetry=bg - MO Center= -6.9D-18, 1.1D-16, -9.6D-22, r^2= 6.9D+00 + Vector 35 Occ=2.000000D+00 E=-2.332303D-01 Symmetry=bg + MO Center= 1.2D-17, 2.9D-17, -8.1D-26, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.420759 1 C pz 10 -0.420759 2 C pz + 5 0.420758 1 C pz 10 -0.420758 2 C pz 51 0.350519 15 C pz 56 -0.350519 16 C pz - 15 0.233620 3 C pz 20 -0.233620 4 C pz - 25 -0.232023 5 C pz 30 0.232023 6 C pz + 15 0.233619 3 C pz 20 -0.233619 4 C pz + 25 -0.232024 5 C pz 30 0.232024 6 C pz 39 0.216659 11 C pz 44 -0.216659 12 C pz - Vector 36 Occ=0.000000D+00 E= 2.069474D-01 Symmetry=au - MO Center= -8.4D-43, 4.0D-42, -1.5D-22, r^2= 7.1D+00 + Vector 36 Occ=0.000000D+00 E= 2.069473D-01 Symmetry=au + MO Center= 8.5D-17, -2.4D-16, 9.5D-23, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.479185 1 C pz 10 0.479185 2 C pz - 51 -0.411109 15 C pz 56 -0.411109 16 C pz + 51 -0.411110 15 C pz 56 -0.411110 16 C pz 25 -0.284375 5 C pz 30 -0.284375 6 C pz 15 -0.250545 3 C pz 20 -0.250545 4 C pz 39 0.249755 11 C pz 44 0.249755 12 C pz - Vector 37 Occ=0.000000D+00 E= 2.731783D-01 Symmetry=au - MO Center= -5.5D-17, 5.6D-17, 5.2D-24, r^2= 2.7D+00 + Vector 37 Occ=0.000000D+00 E= 2.731784D-01 Symmetry=au + MO Center= 1.5D-17, 2.3D-17, -1.9D-22, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.583592 3 C pz 20 0.583592 4 C pz 25 -0.559958 5 C pz 30 -0.559958 6 C pz - Vector 38 Occ=0.000000D+00 E= 3.186016D-01 Symmetry=bg - MO Center= -4.2D-17, 3.3D-16, -1.2D-20, r^2= 1.1D+01 + Vector 38 Occ=0.000000D+00 E= 3.186015D-01 Symmetry=bg + MO Center= -6.7D-18, -2.0D-16, 4.1D-24, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.537711 15 C pz 56 0.537711 16 C pz @@ -5155,17 +5109,17 @@ Divinylbenzene in STO-3G basis set 25 -0.216118 5 C pz 30 0.216118 6 C pz Vector 39 Occ=0.000000D+00 E= 4.060358D-01 Symmetry=au - MO Center= 4.2D-17, -5.6D-17, -4.7D-24, r^2= 8.4D+00 + MO Center= 9.7D-17, 1.2D-16, 2.7D-21, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.539444 11 C pz 44 0.539444 12 C pz 5 -0.472288 1 C pz 10 -0.472288 2 C pz 51 -0.416310 15 C pz 56 -0.416310 16 C pz - 25 0.189509 5 C pz 30 0.189509 6 C pz + 25 0.189508 5 C pz 30 0.189508 6 C pz 15 0.162211 3 C pz 20 0.162211 4 C pz Vector 40 Occ=0.000000D+00 E= 5.374914D-01 Symmetry=bg - MO Center= 1.1D-16, -2.8D-16, 8.9D-22, r^2= 3.7D+00 + MO Center= 7.8D-17, -3.1D-16, 4.9D-23, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.545444 1 C pz 10 -0.545444 2 C pz @@ -5174,55 +5128,55 @@ Divinylbenzene in STO-3G basis set 39 0.274952 11 C pz 44 -0.274952 12 C pz 51 -0.158159 15 C pz 56 0.158159 16 C pz - Vector 41 Occ=0.000000D+00 E= 5.684326D-01 Symmetry=ag - MO Center= -1.7D-16, 1.1D-16, -1.3D-20, r^2= 8.6D+00 + Vector 41 Occ=0.000000D+00 E= 5.684305D-01 Symmetry=ag + MO Center= -1.5D-16, -1.5D-16, -1.9D-20, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.416717 7 H s 32 -0.416717 8 H s - 33 -0.415437 9 H s 34 -0.415437 10 H s - 2 0.396267 1 C s 7 0.396267 2 C s - 59 -0.352099 19 H s 60 -0.352099 20 H s - 38 -0.349672 11 C py 43 0.349672 12 C py + 31 -0.416731 7 H s 32 -0.416731 8 H s + 33 -0.415457 9 H s 34 -0.415457 10 H s + 2 0.396248 1 C s 7 0.396248 2 C s + 59 -0.352095 19 H s 60 -0.352095 20 H s + 38 -0.349665 11 C py 43 0.349665 12 C py Vector 42 Occ=0.000000D+00 E= 5.827712D-01 Symmetry=bu - MO Center= 5.6D-18, -2.2D-16, -1.8D-20, r^2= 1.0D+01 + MO Center= -3.5D-17, -2.3D-18, -6.4D-24, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.433624 13 H s 46 -0.433624 14 H s - 37 0.355585 11 C px 42 0.355585 12 C px - 13 0.338729 3 C px 18 0.338729 4 C px - 57 -0.337740 17 H s 58 0.337740 18 H s - 59 0.322375 19 H s 60 -0.322375 20 H s + 45 0.433630 13 H s 46 -0.433630 14 H s + 37 0.355582 11 C px 42 0.355582 12 C px + 13 0.338720 3 C px 18 0.338720 4 C px + 57 -0.337751 17 H s 58 0.337751 18 H s + 59 0.322378 19 H s 60 -0.322378 20 H s - Vector 43 Occ=0.000000D+00 E= 6.322689D-01 Symmetry=bu - MO Center= 1.6D-16, -2.8D-16, 3.2D-20, r^2= 6.8D+00 + Vector 43 Occ=0.000000D+00 E= 6.322706D-01 Symmetry=bu + MO Center= -2.6D-16, 6.7D-16, 2.5D-23, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.533810 11 C s 41 -0.533810 12 C s - 33 0.462623 9 H s 34 -0.462623 10 H s - 4 0.456063 1 C py 9 0.456063 2 C py - 24 0.334348 5 C py 29 0.334348 6 C py - 38 0.320880 11 C py 43 0.320880 12 C py + 36 0.533844 11 C s 41 -0.533844 12 C s + 33 0.462602 9 H s 34 -0.462602 10 H s + 4 0.456069 1 C py 9 0.456069 2 C py + 24 0.334338 5 C py 29 0.334338 6 C py + 38 0.320879 11 C py 43 0.320879 12 C py - Vector 44 Occ=0.000000D+00 E= 6.348990D-01 Symmetry=ag - MO Center= -2.3D-16, 1.4D-16, 1.7D-20, r^2= 1.1D+01 + Vector 44 Occ=0.000000D+00 E= 6.349000D-01 Symmetry=ag + MO Center= 1.0D-16, -4.8D-16, 6.1D-20, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.583492 13 H s 46 0.583492 14 H s - 36 -0.410017 11 C s 41 -0.410017 12 C s - 57 -0.389771 17 H s 58 -0.389771 18 H s - 12 0.386682 3 C s 17 0.386682 4 C s - 37 0.336442 11 C px 42 -0.336442 12 C px + 36 -0.409995 11 C s 41 -0.409995 12 C s + 57 -0.389787 17 H s 58 -0.389787 18 H s + 12 0.386684 3 C s 17 0.386684 4 C s + 37 0.336449 11 C px 42 -0.336449 12 C px - Vector 45 Occ=0.000000D+00 E= 6.824552D-01 Symmetry=ag - MO Center= -1.7D-16, 3.3D-16, 2.9D-20, r^2= 1.2D+01 + Vector 45 Occ=0.000000D+00 E= 6.824547D-01 Symmetry=ag + MO Center= 9.6D-17, -2.3D-16, 1.4D-21, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.721591 15 C s 53 0.721591 16 C s - 22 0.573176 5 C s 27 0.573176 6 C s - 57 -0.554837 17 H s 58 -0.554837 18 H s + 48 0.721580 15 C s 53 0.721580 16 C s + 22 0.573182 5 C s 27 0.573182 6 C s + 57 -0.554833 17 H s 58 -0.554833 18 H s 12 -0.419341 3 C s 17 -0.419341 4 C s - 59 -0.379637 19 H s 60 -0.379637 20 H s + 59 -0.379625 19 H s 60 -0.379625 20 H s center of mass @@ -5231,9 +5185,9 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2576.996202787686 -1.648166528577 0.000000000000 - -1.648166528577 376.118048110271 0.000000000000 - 0.000000000000 0.000000000000 2953.114250897957 + 2576.993140928739 -1.648470761309 0.000000000000 + -1.648470761309 376.118261825478 0.000000000000 + 0.000000000000 0.000000000000 2953.111402754218 Mulliken analysis of the total density -------------------------------------- @@ -5269,22 +5223,22 @@ Divinylbenzene in STO-3G basis set 0 0 0 0 -0.000000 0.000000 70.000000 1 1 0 0 -0.000000 0.000000 0.000000 - 1 0 1 0 -0.000000 0.000000 0.000000 + 1 0 1 0 0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 - 2 2 0 0 -38.489222 0.000000 235.913078 - 2 1 1 0 0.092965 0.000000 -4.471957 - 2 1 0 1 0.000000 0.000000 0.000000 - 2 0 2 0 -39.167740 0.000000 1465.729381 + 2 2 0 0 -38.489242 0.000000 235.913180 + 2 1 1 0 0.092975 0.000000 -4.471841 + 2 1 0 1 -0.000000 0.000000 0.000000 + 2 0 2 0 -39.167750 0.000000 1465.727644 2 0 1 1 0.000000 0.000000 0.000000 - 2 0 0 2 -43.441868 0.000000 0.000000 - - - Parallel integral file used 9 records with 0 large values + 2 0 0 2 -43.441865 0.000000 0.000000 Line search: - step= 1.00 grad=-1.8D-07 hess= 8.5D-08 energy= -379.777955 mode=accept + step= 1.00 grad=-1.8D-07 hess= 8.3D-08 energy= -379.777955 mode=accept new step= 1.00 predicted energy= -379.777955 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 -------- Step 4 @@ -5298,26 +5252,26 @@ Divinylbenzene in STO-3G basis set No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.22791249 1.39288748 0.00000000 - 2 C 6.0000 -0.22791249 -1.39288748 0.00000000 - 3 C 6.0000 1.28919537 0.48588632 0.00000000 - 4 C 6.0000 -1.28919537 -0.48588632 0.00000000 - 5 C 6.0000 1.06903481 -0.87838865 0.00000000 - 6 C 6.0000 -1.06903481 0.87838865 0.00000000 - 7 H 1.0000 2.30488244 0.86057095 0.00000000 - 8 H 1.0000 -2.30488244 -0.86057095 0.00000000 - 9 H 1.0000 1.91772166 -1.54845654 0.00000000 - 10 H 1.0000 -1.91772166 1.54845654 0.00000000 - 11 C 6.0000 -0.52245959 -2.85975846 0.00000000 - 12 C 6.0000 0.52245959 2.85975846 0.00000000 - 13 H 1.0000 -1.57985284 -3.10026315 0.00000000 - 14 H 1.0000 1.57985284 3.10026315 0.00000000 - 15 C 6.0000 0.35270448 -3.83939603 0.00000000 - 16 C 6.0000 -0.35270448 3.83939603 0.00000000 - 17 H 1.0000 1.42081357 -3.67692253 0.00000000 - 18 H 1.0000 -1.42081357 3.67692253 0.00000000 - 19 H 1.0000 0.03744355 -4.87355574 0.00000000 - 20 H 1.0000 -0.03744355 4.87355574 0.00000000 + 1 C 6.0000 0.22791436 1.39288682 0.00000000 + 2 C 6.0000 -0.22791436 -1.39288682 0.00000000 + 3 C 6.0000 1.28919622 0.48588492 0.00000000 + 4 C 6.0000 -1.28919622 -0.48588492 0.00000000 + 5 C 6.0000 1.06903351 -0.87838949 0.00000000 + 6 C 6.0000 -1.06903351 0.87838949 0.00000000 + 7 H 1.0000 2.30488364 0.86056857 0.00000000 + 8 H 1.0000 -2.30488364 -0.86056857 0.00000000 + 9 H 1.0000 1.91771846 -1.54845933 0.00000000 + 10 H 1.0000 -1.91771846 1.54845933 0.00000000 + 11 C 6.0000 -0.52246137 -2.85975751 0.00000000 + 12 C 6.0000 0.52246137 2.85975751 0.00000000 + 13 H 1.0000 -1.57985434 -3.10026381 0.00000000 + 14 H 1.0000 1.57985434 3.10026381 0.00000000 + 15 C 6.0000 0.35270515 -3.83939296 0.00000000 + 16 C 6.0000 -0.35270515 3.83939296 0.00000000 + 17 H 1.0000 1.42081376 -3.67691614 0.00000000 + 18 H 1.0000 -1.42081376 3.67691614 0.00000000 + 19 H 1.0000 0.03744757 -4.87355368 0.00000000 + 20 H 1.0000 -0.03744757 4.87355368 0.00000000 Atomic Mass ----------- @@ -5326,7 +5280,7 @@ Divinylbenzene in STO-3G basis set H 1.007825 - Effective nuclear repulsion energy (a.u.) 452.1170804128 + Effective nuclear repulsion energy (a.u.) 452.1171993655 Nuclear Dipole moment (a.u.) ---------------------------- @@ -5386,7 +5340,7 @@ Divinylbenzene in STO-3G basis set The SCF is already converged - Total SCF energy = -379.777955110167 + Total SCF energy = -379.777954597878 NWChem Gradients Module ----------------------- @@ -5404,38 +5358,39 @@ Divinylbenzene in STO-3G basis set atom coordinates gradient x y z x y z - 1 C 0.430692 2.632176 0.000000 0.000018 -0.000015 0.000000 - 2 C -0.430692 -2.632176 0.000000 -0.000018 0.000015 0.000000 - 3 C 2.436226 0.918192 0.000000 0.000004 -0.000003 0.000000 - 4 C -2.436226 -0.918192 0.000000 -0.000004 0.000003 0.000000 - 5 C 2.020183 -1.659914 0.000000 0.000016 0.000010 0.000000 - 6 C -2.020183 1.659914 0.000000 -0.000016 -0.000010 0.000000 - 7 H 4.355596 1.626243 0.000000 0.000002 0.000008 0.000000 - 8 H -4.355596 -1.626243 0.000000 -0.000002 -0.000008 0.000000 - 9 H 3.623968 -2.926159 0.000000 -0.000007 0.000002 0.000000 - 10 H -3.623968 2.926159 0.000000 0.000007 -0.000002 0.000000 - 11 C -0.987305 -5.404160 0.000000 0.000001 -0.000019 0.000000 - 12 C 0.987305 5.404160 0.000000 -0.000001 0.000019 0.000000 - 13 H -2.985489 -5.858648 0.000000 0.000003 -0.000003 0.000000 - 14 H 2.985489 5.858648 0.000000 -0.000003 0.000003 0.000000 - 15 C 0.666515 -7.255406 0.000000 0.000021 0.000015 0.000000 - 16 C -0.666515 7.255406 0.000000 -0.000021 -0.000015 0.000000 - 17 H 2.684948 -6.948376 0.000000 -0.000016 -0.000008 0.000000 - 18 H -2.684948 6.948376 0.000000 0.000016 0.000008 0.000000 - 19 H 0.070758 -9.209685 0.000000 -0.000008 -0.000005 0.000000 - 20 H -0.070758 9.209685 0.000000 0.000008 0.000005 0.000000 + 1 C 0.430696 2.632174 0.000000 0.000018 -0.000015 0.000000 + 2 C -0.430696 -2.632174 0.000000 -0.000018 0.000015 0.000000 + 3 C 2.436228 0.918189 0.000000 0.000004 -0.000003 0.000000 + 4 C -2.436228 -0.918189 0.000000 -0.000004 0.000003 0.000000 + 5 C 2.020180 -1.659915 0.000000 0.000016 0.000010 0.000000 + 6 C -2.020180 1.659915 0.000000 -0.000016 -0.000010 0.000000 + 7 H 4.355599 1.626239 0.000000 0.000002 0.000008 0.000000 + 8 H -4.355599 -1.626239 0.000000 -0.000002 -0.000008 0.000000 + 9 H 3.623962 -2.926164 0.000000 -0.000007 0.000002 0.000000 + 10 H -3.623962 2.926164 0.000000 0.000007 -0.000002 0.000000 + 11 C -0.987309 -5.404158 0.000000 0.000001 -0.000019 0.000000 + 12 C 0.987309 5.404158 0.000000 -0.000001 0.000019 0.000000 + 13 H -2.985492 -5.858649 0.000000 0.000003 -0.000003 0.000000 + 14 H 2.985492 5.858649 0.000000 -0.000003 0.000003 0.000000 + 15 C 0.666516 -7.255401 0.000000 0.000021 0.000015 0.000000 + 16 C -0.666516 7.255401 0.000000 -0.000021 -0.000015 0.000000 + 17 H 2.684949 -6.948364 0.000000 -0.000016 -0.000008 0.000000 + 18 H -2.684949 6.948364 0.000000 0.000016 0.000008 0.000000 + 19 H 0.070766 -9.209681 0.000000 -0.000008 -0.000006 0.000000 + 20 H -0.070766 9.209681 0.000000 0.000008 0.000006 0.000000 ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.02 | 2.64 | + | CPU | 0.00 | 0.56 | ---------------------------------------- - | WALL | 0.02 | 2.64 | + | WALL | 0.00 | 0.56 | ---------------------------------------- + no constraints, skipping 0.0000000000000000 Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 4 -379.77795511 -9.8D-08 0.00002 0.00001 0.00020 0.00046 31.3 +@ 4 -379.77795460 -1.0D-07 0.00002 0.00001 0.00020 0.00046 21.3 ok ok ok ok @@ -5453,9 +5408,9 @@ Divinylbenzene in STO-3G basis set 4 Stretch 2 4 1.39606 -0.00000 5 Stretch 2 5 1.39527 0.00002 6 Stretch 2 11 1.49615 0.00002 - 7 Stretch 3 5 1.38193 0.00000 + 7 Stretch 3 5 1.38192 -0.00000 8 Stretch 3 7 1.08259 0.00000 - 9 Stretch 4 6 1.38193 0.00000 + 9 Stretch 4 6 1.38192 -0.00000 10 Stretch 4 8 1.08259 0.00000 11 Stretch 5 9 1.08132 -0.00001 12 Stretch 6 10 1.08132 -0.00001 @@ -5467,76 +5422,76 @@ Divinylbenzene in STO-3G basis set 18 Stretch 15 19 1.08115 0.00001 19 Stretch 16 18 1.08040 -0.00002 20 Stretch 16 20 1.08115 0.00001 - 21 Bend 1 3 5 121.35100 -0.00000 + 21 Bend 1 3 5 121.35095 -0.00000 22 Bend 1 3 7 119.23300 -0.00000 - 23 Bend 1 6 4 120.80533 0.00000 - 24 Bend 1 6 10 120.06945 -0.00000 - 25 Bend 1 12 14 114.16793 -0.00000 - 26 Bend 1 12 16 126.86986 0.00001 - 27 Bend 2 4 6 121.35100 -0.00000 + 23 Bend 1 6 4 120.80535 0.00000 + 24 Bend 1 6 10 120.06938 -0.00000 + 25 Bend 1 12 14 114.16802 -0.00000 + 26 Bend 1 12 16 126.86972 0.00001 + 27 Bend 2 4 6 121.35095 -0.00000 28 Bend 2 4 8 119.23300 -0.00000 - 29 Bend 2 5 3 120.80533 0.00000 - 30 Bend 2 5 9 120.06945 -0.00000 - 31 Bend 2 11 13 114.16793 -0.00000 - 32 Bend 2 11 15 126.86986 0.00001 - 33 Bend 3 1 6 117.84368 0.00000 - 34 Bend 3 1 12 119.16412 -0.00000 - 35 Bend 3 5 9 119.12522 0.00000 - 36 Bend 4 2 5 117.84368 0.00000 - 37 Bend 4 2 11 119.16412 -0.00000 - 38 Bend 4 6 10 119.12522 0.00000 - 39 Bend 5 2 11 122.99220 0.00000 - 40 Bend 5 3 7 119.41601 0.00001 - 41 Bend 6 1 12 122.99220 0.00000 - 42 Bend 6 4 8 119.41601 0.00001 - 43 Bend 11 15 17 123.12702 0.00001 - 44 Bend 11 15 19 121.27013 -0.00001 - 45 Bend 12 16 18 123.12702 0.00001 - 46 Bend 12 16 20 121.27013 -0.00001 - 47 Bend 13 11 15 118.96221 -0.00001 - 48 Bend 14 12 16 118.96221 -0.00001 - 49 Bend 17 15 19 115.60285 0.00000 - 50 Bend 18 16 20 115.60285 0.00000 - 51 Torsion 1 3 5 2 0.00000 -0.00000 - 52 Torsion 1 3 5 9 180.00000 -0.00000 - 53 Torsion 1 6 4 2 0.00000 -0.00000 + 29 Bend 2 5 3 120.80535 0.00000 + 30 Bend 2 5 9 120.06938 -0.00000 + 31 Bend 2 11 13 114.16802 -0.00000 + 32 Bend 2 11 15 126.86972 0.00001 + 33 Bend 3 1 6 117.84369 0.00000 + 34 Bend 3 1 12 119.16417 -0.00000 + 35 Bend 3 5 9 119.12527 0.00000 + 36 Bend 4 2 5 117.84369 0.00000 + 37 Bend 4 2 11 119.16417 -0.00000 + 38 Bend 4 6 10 119.12527 0.00000 + 39 Bend 5 2 11 122.99213 0.00000 + 40 Bend 5 3 7 119.41604 0.00001 + 41 Bend 6 1 12 122.99213 0.00000 + 42 Bend 6 4 8 119.41604 0.00001 + 43 Bend 11 15 17 123.12699 0.00001 + 44 Bend 11 15 19 121.27017 -0.00001 + 45 Bend 12 16 18 123.12699 0.00001 + 46 Bend 12 16 20 121.27017 -0.00001 + 47 Bend 13 11 15 118.96227 -0.00001 + 48 Bend 14 12 16 118.96227 -0.00001 + 49 Bend 17 15 19 115.60284 0.00000 + 50 Bend 18 16 20 115.60284 0.00000 + 51 Torsion 1 3 5 2 0.00000 0.00000 + 52 Torsion 1 3 5 9 180.00000 0.00000 + 53 Torsion 1 6 4 2 0.00000 0.00000 54 Torsion 1 6 4 8 180.00000 0.00000 - 55 Torsion 1 12 16 18 0.00000 -0.00000 + 55 Torsion 1 12 16 18 0.00000 0.00000 56 Torsion 1 12 16 20 180.00000 0.00000 - 57 Torsion 2 4 6 10 180.00000 -0.00000 + 57 Torsion 2 4 6 10 180.00000 0.00000 58 Torsion 2 5 3 7 180.00000 0.00000 59 Torsion 2 11 15 17 0.00000 0.00000 60 Torsion 2 11 15 19 180.00000 0.00000 - 61 Torsion 3 1 6 4 0.00000 -0.00000 + 61 Torsion 3 1 6 4 0.00000 0.00000 62 Torsion 3 1 6 10 180.00000 0.00000 - 63 Torsion 3 1 12 14 0.00000 -0.00000 - 64 Torsion 3 1 12 16 180.00000 -0.00000 - 65 Torsion 3 5 2 4 0.00000 -0.00000 - 66 Torsion 3 5 2 11 180.00000 -0.00000 - 67 Torsion 4 2 5 9 180.00000 -0.00000 - 68 Torsion 4 2 11 13 0.00000 -0.00000 - 69 Torsion 4 2 11 15 180.00000 -0.00000 - 70 Torsion 4 6 1 12 180.00000 -0.00000 + 63 Torsion 3 1 12 14 0.00000 0.00000 + 64 Torsion 3 1 12 16 180.00000 0.00000 + 65 Torsion 3 5 2 4 0.00000 0.00000 + 66 Torsion 3 5 2 11 180.00000 0.00000 + 67 Torsion 4 2 5 9 180.00000 0.00000 + 68 Torsion 4 2 11 13 0.00000 0.00000 + 69 Torsion 4 2 11 15 180.00000 0.00000 + 70 Torsion 4 6 1 12 180.00000 0.00000 71 Torsion 5 2 4 6 -0.00000 0.00000 - 72 Torsion 5 2 4 8 180.00000 -0.00000 + 72 Torsion 5 2 4 8 180.00000 0.00000 73 Torsion 5 2 11 13 180.00000 0.00000 - 74 Torsion 5 2 11 15 0.00000 -0.00000 + 74 Torsion 5 2 11 15 0.00000 0.00000 75 Torsion 5 3 1 6 0.00000 0.00000 76 Torsion 5 3 1 12 180.00000 0.00000 77 Torsion 6 1 3 7 180.00000 0.00000 - 78 Torsion 6 1 12 14 180.00000 -0.00000 - 79 Torsion 6 1 12 16 0.00000 -0.00000 + 78 Torsion 6 1 12 14 180.00000 0.00000 + 79 Torsion 6 1 12 16 0.00000 0.00000 80 Torsion 6 4 2 11 180.00000 0.00000 81 Torsion 7 3 1 12 -0.00000 0.00000 - 82 Torsion 7 3 5 9 0.00000 -0.00000 + 82 Torsion 7 3 5 9 0.00000 0.00000 83 Torsion 8 4 2 11 -0.00000 0.00000 84 Torsion 8 4 6 10 0.00000 0.00000 - 85 Torsion 9 5 2 11 0.00000 -0.00000 - 86 Torsion 10 6 1 12 0.00000 -0.00000 - 87 Torsion 13 11 15 17 180.00000 -0.00000 - 88 Torsion 13 11 15 19 -0.00000 -0.00000 - 89 Torsion 14 12 16 18 180.00000 -0.00000 - 90 Torsion 14 12 16 20 -0.00000 -0.00000 + 85 Torsion 9 5 2 11 0.00000 0.00000 + 86 Torsion 10 6 1 12 0.00000 0.00000 + 87 Torsion 13 11 15 17 180.00000 0.00000 + 88 Torsion 13 11 15 19 -0.00000 0.00000 + 89 Torsion 14 12 16 18 180.00000 0.00000 + 90 Torsion 14 12 16 20 -0.00000 0.00000 ---------------------- @@ -5546,7 +5501,7 @@ Divinylbenzene in STO-3G basis set Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 4 -379.77795511 -9.8D-08 0.00002 0.00001 0.00020 0.00046 31.3 +@ 4 -379.77795460 -1.0D-07 0.00002 0.00001 0.00020 0.00046 21.3 ok ok ok ok @@ -5564,9 +5519,9 @@ Divinylbenzene in STO-3G basis set 4 Stretch 2 4 1.39606 -0.00000 5 Stretch 2 5 1.39527 0.00002 6 Stretch 2 11 1.49615 0.00002 - 7 Stretch 3 5 1.38193 0.00000 + 7 Stretch 3 5 1.38192 -0.00000 8 Stretch 3 7 1.08259 0.00000 - 9 Stretch 4 6 1.38193 0.00000 + 9 Stretch 4 6 1.38192 -0.00000 10 Stretch 4 8 1.08259 0.00000 11 Stretch 5 9 1.08132 -0.00001 12 Stretch 6 10 1.08132 -0.00001 @@ -5578,76 +5533,76 @@ Divinylbenzene in STO-3G basis set 18 Stretch 15 19 1.08115 0.00001 19 Stretch 16 18 1.08040 -0.00002 20 Stretch 16 20 1.08115 0.00001 - 21 Bend 1 3 5 121.35100 -0.00000 + 21 Bend 1 3 5 121.35095 -0.00000 22 Bend 1 3 7 119.23300 -0.00000 - 23 Bend 1 6 4 120.80533 0.00000 - 24 Bend 1 6 10 120.06945 -0.00000 - 25 Bend 1 12 14 114.16793 -0.00000 - 26 Bend 1 12 16 126.86986 0.00001 - 27 Bend 2 4 6 121.35100 -0.00000 + 23 Bend 1 6 4 120.80535 0.00000 + 24 Bend 1 6 10 120.06938 -0.00000 + 25 Bend 1 12 14 114.16802 -0.00000 + 26 Bend 1 12 16 126.86972 0.00001 + 27 Bend 2 4 6 121.35095 -0.00000 28 Bend 2 4 8 119.23300 -0.00000 - 29 Bend 2 5 3 120.80533 0.00000 - 30 Bend 2 5 9 120.06945 -0.00000 - 31 Bend 2 11 13 114.16793 -0.00000 - 32 Bend 2 11 15 126.86986 0.00001 - 33 Bend 3 1 6 117.84368 0.00000 - 34 Bend 3 1 12 119.16412 -0.00000 - 35 Bend 3 5 9 119.12522 0.00000 - 36 Bend 4 2 5 117.84368 0.00000 - 37 Bend 4 2 11 119.16412 -0.00000 - 38 Bend 4 6 10 119.12522 0.00000 - 39 Bend 5 2 11 122.99220 0.00000 - 40 Bend 5 3 7 119.41601 0.00001 - 41 Bend 6 1 12 122.99220 0.00000 - 42 Bend 6 4 8 119.41601 0.00001 - 43 Bend 11 15 17 123.12702 0.00001 - 44 Bend 11 15 19 121.27013 -0.00001 - 45 Bend 12 16 18 123.12702 0.00001 - 46 Bend 12 16 20 121.27013 -0.00001 - 47 Bend 13 11 15 118.96221 -0.00001 - 48 Bend 14 12 16 118.96221 -0.00001 - 49 Bend 17 15 19 115.60285 0.00000 - 50 Bend 18 16 20 115.60285 0.00000 - 51 Torsion 1 3 5 2 0.00000 -0.00000 - 52 Torsion 1 3 5 9 180.00000 -0.00000 - 53 Torsion 1 6 4 2 0.00000 -0.00000 + 29 Bend 2 5 3 120.80535 0.00000 + 30 Bend 2 5 9 120.06938 -0.00000 + 31 Bend 2 11 13 114.16802 -0.00000 + 32 Bend 2 11 15 126.86972 0.00001 + 33 Bend 3 1 6 117.84369 0.00000 + 34 Bend 3 1 12 119.16417 -0.00000 + 35 Bend 3 5 9 119.12527 0.00000 + 36 Bend 4 2 5 117.84369 0.00000 + 37 Bend 4 2 11 119.16417 -0.00000 + 38 Bend 4 6 10 119.12527 0.00000 + 39 Bend 5 2 11 122.99213 0.00000 + 40 Bend 5 3 7 119.41604 0.00001 + 41 Bend 6 1 12 122.99213 0.00000 + 42 Bend 6 4 8 119.41604 0.00001 + 43 Bend 11 15 17 123.12699 0.00001 + 44 Bend 11 15 19 121.27017 -0.00001 + 45 Bend 12 16 18 123.12699 0.00001 + 46 Bend 12 16 20 121.27017 -0.00001 + 47 Bend 13 11 15 118.96227 -0.00001 + 48 Bend 14 12 16 118.96227 -0.00001 + 49 Bend 17 15 19 115.60284 0.00000 + 50 Bend 18 16 20 115.60284 0.00000 + 51 Torsion 1 3 5 2 0.00000 0.00000 + 52 Torsion 1 3 5 9 180.00000 0.00000 + 53 Torsion 1 6 4 2 0.00000 0.00000 54 Torsion 1 6 4 8 180.00000 0.00000 - 55 Torsion 1 12 16 18 0.00000 -0.00000 + 55 Torsion 1 12 16 18 0.00000 0.00000 56 Torsion 1 12 16 20 180.00000 0.00000 - 57 Torsion 2 4 6 10 180.00000 -0.00000 + 57 Torsion 2 4 6 10 180.00000 0.00000 58 Torsion 2 5 3 7 180.00000 0.00000 59 Torsion 2 11 15 17 0.00000 0.00000 60 Torsion 2 11 15 19 180.00000 0.00000 - 61 Torsion 3 1 6 4 0.00000 -0.00000 + 61 Torsion 3 1 6 4 0.00000 0.00000 62 Torsion 3 1 6 10 180.00000 0.00000 - 63 Torsion 3 1 12 14 0.00000 -0.00000 - 64 Torsion 3 1 12 16 180.00000 -0.00000 - 65 Torsion 3 5 2 4 0.00000 -0.00000 - 66 Torsion 3 5 2 11 180.00000 -0.00000 - 67 Torsion 4 2 5 9 180.00000 -0.00000 - 68 Torsion 4 2 11 13 0.00000 -0.00000 - 69 Torsion 4 2 11 15 180.00000 -0.00000 - 70 Torsion 4 6 1 12 180.00000 -0.00000 + 63 Torsion 3 1 12 14 0.00000 0.00000 + 64 Torsion 3 1 12 16 180.00000 0.00000 + 65 Torsion 3 5 2 4 0.00000 0.00000 + 66 Torsion 3 5 2 11 180.00000 0.00000 + 67 Torsion 4 2 5 9 180.00000 0.00000 + 68 Torsion 4 2 11 13 0.00000 0.00000 + 69 Torsion 4 2 11 15 180.00000 0.00000 + 70 Torsion 4 6 1 12 180.00000 0.00000 71 Torsion 5 2 4 6 -0.00000 0.00000 - 72 Torsion 5 2 4 8 180.00000 -0.00000 + 72 Torsion 5 2 4 8 180.00000 0.00000 73 Torsion 5 2 11 13 180.00000 0.00000 - 74 Torsion 5 2 11 15 0.00000 -0.00000 + 74 Torsion 5 2 11 15 0.00000 0.00000 75 Torsion 5 3 1 6 0.00000 0.00000 76 Torsion 5 3 1 12 180.00000 0.00000 77 Torsion 6 1 3 7 180.00000 0.00000 - 78 Torsion 6 1 12 14 180.00000 -0.00000 - 79 Torsion 6 1 12 16 0.00000 -0.00000 + 78 Torsion 6 1 12 14 180.00000 0.00000 + 79 Torsion 6 1 12 16 0.00000 0.00000 80 Torsion 6 4 2 11 180.00000 0.00000 81 Torsion 7 3 1 12 -0.00000 0.00000 - 82 Torsion 7 3 5 9 0.00000 -0.00000 + 82 Torsion 7 3 5 9 0.00000 0.00000 83 Torsion 8 4 2 11 -0.00000 0.00000 84 Torsion 8 4 6 10 0.00000 0.00000 - 85 Torsion 9 5 2 11 0.00000 -0.00000 - 86 Torsion 10 6 1 12 0.00000 -0.00000 - 87 Torsion 13 11 15 17 180.00000 -0.00000 - 88 Torsion 13 11 15 19 -0.00000 -0.00000 - 89 Torsion 14 12 16 18 180.00000 -0.00000 - 90 Torsion 14 12 16 20 -0.00000 -0.00000 + 85 Torsion 9 5 2 11 0.00000 0.00000 + 86 Torsion 10 6 1 12 0.00000 0.00000 + 87 Torsion 13 11 15 17 180.00000 0.00000 + 88 Torsion 13 11 15 19 -0.00000 0.00000 + 89 Torsion 14 12 16 18 180.00000 0.00000 + 90 Torsion 14 12 16 20 -0.00000 0.00000 @@ -5658,26 +5613,26 @@ Divinylbenzene in STO-3G basis set No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.22791249 1.39288748 0.00000000 - 2 C 6.0000 -0.22791249 -1.39288748 0.00000000 - 3 C 6.0000 1.28919537 0.48588632 0.00000000 - 4 C 6.0000 -1.28919537 -0.48588632 0.00000000 - 5 C 6.0000 1.06903481 -0.87838865 0.00000000 - 6 C 6.0000 -1.06903481 0.87838865 0.00000000 - 7 H 1.0000 2.30488244 0.86057095 0.00000000 - 8 H 1.0000 -2.30488244 -0.86057095 0.00000000 - 9 H 1.0000 1.91772166 -1.54845654 0.00000000 - 10 H 1.0000 -1.91772166 1.54845654 0.00000000 - 11 C 6.0000 -0.52245959 -2.85975846 0.00000000 - 12 C 6.0000 0.52245959 2.85975846 0.00000000 - 13 H 1.0000 -1.57985284 -3.10026315 0.00000000 - 14 H 1.0000 1.57985284 3.10026315 0.00000000 - 15 C 6.0000 0.35270448 -3.83939603 0.00000000 - 16 C 6.0000 -0.35270448 3.83939603 0.00000000 - 17 H 1.0000 1.42081357 -3.67692253 0.00000000 - 18 H 1.0000 -1.42081357 3.67692253 0.00000000 - 19 H 1.0000 0.03744355 -4.87355574 0.00000000 - 20 H 1.0000 -0.03744355 4.87355574 0.00000000 + 1 C 6.0000 0.22791436 1.39288682 0.00000000 + 2 C 6.0000 -0.22791436 -1.39288682 0.00000000 + 3 C 6.0000 1.28919622 0.48588492 0.00000000 + 4 C 6.0000 -1.28919622 -0.48588492 0.00000000 + 5 C 6.0000 1.06903351 -0.87838949 0.00000000 + 6 C 6.0000 -1.06903351 0.87838949 0.00000000 + 7 H 1.0000 2.30488364 0.86056857 0.00000000 + 8 H 1.0000 -2.30488364 -0.86056857 0.00000000 + 9 H 1.0000 1.91771846 -1.54845933 0.00000000 + 10 H 1.0000 -1.91771846 1.54845933 0.00000000 + 11 C 6.0000 -0.52246137 -2.85975751 0.00000000 + 12 C 6.0000 0.52246137 2.85975751 0.00000000 + 13 H 1.0000 -1.57985434 -3.10026381 0.00000000 + 14 H 1.0000 1.57985434 3.10026381 0.00000000 + 15 C 6.0000 0.35270515 -3.83939296 0.00000000 + 16 C 6.0000 -0.35270515 3.83939296 0.00000000 + 17 H 1.0000 1.42081376 -3.67691614 0.00000000 + 18 H 1.0000 -1.42081376 3.67691614 0.00000000 + 19 H 1.0000 0.03744757 -4.87355368 0.00000000 + 20 H 1.0000 -0.03744757 4.87355368 0.00000000 Atomic Mass ----------- @@ -5686,7 +5641,7 @@ Divinylbenzene in STO-3G basis set H 1.007825 - Effective nuclear repulsion energy (a.u.) 452.1170804128 + Effective nuclear repulsion energy (a.u.) 452.1171993655 Nuclear Dipole moment (a.u.) ---------------------------- @@ -5725,9 +5680,9 @@ Divinylbenzene in STO-3G basis set 4 Stretch 2 4 1.39606 -0.02598 5 Stretch 2 5 1.39527 -0.02670 6 Stretch 2 11 1.49615 -0.00169 - 7 Stretch 3 5 1.38193 -0.02054 + 7 Stretch 3 5 1.38192 -0.02054 8 Stretch 3 7 1.08259 -0.01612 - 9 Stretch 4 6 1.38193 -0.02054 + 9 Stretch 4 6 1.38192 -0.02054 10 Stretch 4 8 1.08259 -0.01612 11 Stretch 5 9 1.08132 -0.01569 12 Stretch 6 10 1.08132 -0.01569 @@ -5739,36 +5694,36 @@ Divinylbenzene in STO-3G basis set 18 Stretch 15 19 1.08115 -0.01552 19 Stretch 16 18 1.08040 -0.01558 20 Stretch 16 20 1.08115 -0.01552 - 21 Bend 1 3 5 121.35100 0.20233 - 22 Bend 1 3 7 119.23300 0.03190 - 23 Bend 1 6 4 120.80533 -0.06825 - 24 Bend 1 6 10 120.06945 0.64660 - 25 Bend 1 12 14 114.16793 -0.46160 - 26 Bend 1 12 16 126.86986 0.28993 - 27 Bend 2 4 6 121.35100 0.20233 - 28 Bend 2 4 8 119.23300 0.03190 - 29 Bend 2 5 3 120.80533 -0.06825 - 30 Bend 2 5 9 120.06945 0.64660 - 31 Bend 2 11 13 114.16793 -0.46160 - 32 Bend 2 11 15 126.86986 0.28993 - 33 Bend 3 1 6 117.84368 -0.13408 - 34 Bend 3 1 12 119.16412 0.04257 - 35 Bend 3 5 9 119.12522 -0.57835 - 36 Bend 4 2 5 117.84368 -0.13408 - 37 Bend 4 2 11 119.16412 0.04257 - 38 Bend 4 6 10 119.12522 -0.57835 - 39 Bend 5 2 11 122.99220 0.09151 - 40 Bend 5 3 7 119.41601 -0.23423 - 41 Bend 6 1 12 122.99220 0.09151 - 42 Bend 6 4 8 119.41601 -0.23423 - 43 Bend 11 15 17 123.12702 0.64185 - 44 Bend 11 15 19 121.27013 -0.02480 - 45 Bend 12 16 18 123.12702 0.64185 - 46 Bend 12 16 20 121.27013 -0.02480 - 47 Bend 13 11 15 118.96221 0.17167 - 48 Bend 14 12 16 118.96221 0.17167 - 49 Bend 17 15 19 115.60285 -0.61705 - 50 Bend 18 16 20 115.60285 -0.61705 + 21 Bend 1 3 5 121.35095 0.20229 + 22 Bend 1 3 7 119.23300 0.03191 + 23 Bend 1 6 4 120.80535 -0.06823 + 24 Bend 1 6 10 120.06938 0.64652 + 25 Bend 1 12 14 114.16802 -0.46152 + 26 Bend 1 12 16 126.86972 0.28979 + 27 Bend 2 4 6 121.35095 0.20229 + 28 Bend 2 4 8 119.23300 0.03191 + 29 Bend 2 5 3 120.80535 -0.06823 + 30 Bend 2 5 9 120.06938 0.64652 + 31 Bend 2 11 13 114.16802 -0.46152 + 32 Bend 2 11 15 126.86972 0.28979 + 33 Bend 3 1 6 117.84369 -0.13406 + 34 Bend 3 1 12 119.16417 0.04262 + 35 Bend 3 5 9 119.12527 -0.57830 + 36 Bend 4 2 5 117.84369 -0.13406 + 37 Bend 4 2 11 119.16417 0.04262 + 38 Bend 4 6 10 119.12527 -0.57830 + 39 Bend 5 2 11 122.99213 0.09144 + 40 Bend 5 3 7 119.41604 -0.23420 + 41 Bend 6 1 12 122.99213 0.09144 + 42 Bend 6 4 8 119.41604 -0.23420 + 43 Bend 11 15 17 123.12699 0.64182 + 44 Bend 11 15 19 121.27017 -0.02475 + 45 Bend 12 16 18 123.12699 0.64182 + 46 Bend 12 16 20 121.27017 -0.02475 + 47 Bend 13 11 15 118.96227 0.17172 + 48 Bend 14 12 16 118.96227 0.17172 + 49 Bend 17 15 19 115.60284 -0.61706 + 50 Bend 18 16 20 115.60284 -0.61706 51 Torsion 1 3 5 2 0.00000 0.00000 52 Torsion 1 3 5 9 180.00000 0.00000 53 Torsion 1 6 4 2 0.00000 0.00000 @@ -5818,9 +5773,9 @@ Divinylbenzene in STO-3G basis set 3 C | 1 C | 2.63816 | 1.39606 4 C | 2 C | 2.63816 | 1.39606 5 C | 2 C | 2.63668 | 1.39527 - 5 C | 3 C | 2.61146 | 1.38193 + 5 C | 3 C | 2.61146 | 1.38192 6 C | 1 C | 2.63668 | 1.39527 - 6 C | 4 C | 2.61146 | 1.38193 + 6 C | 4 C | 2.61146 | 1.38192 7 H | 3 C | 2.04581 | 1.08259 8 H | 4 C | 2.04581 | 1.08259 9 H | 5 C | 2.04340 | 1.08132 @@ -5883,7 +5838,7 @@ Divinylbenzene in STO-3G basis set - Task times cpu: 28.3s wall: 30.9s + Task times cpu: 21.2s wall: 21.3s Summary of allocated global arrays ----------------------------------- No active global arrays @@ -5894,9 +5849,9 @@ Divinylbenzene in STO-3G basis set ------------------------------ create destroy get put acc scatter gather read&inc -calls: 1558 1558 1.30e+05 3.21e+04 1.43e+05 0 0 3.80e+04 -number of processes/call 1.00e+00 1.00e+00 1.00e+00 0.00e+00 0.00e+00 -bytes total: 5.87e+07 3.17e+07 1.91e+07 0.00e+00 0.00e+00 3.04e+05 +calls: 1606 1606 1.29e+05 3.24e+04 1.43e+05 0 0 3.92e+04 +number of processes/call -1.53e+13 6.59e+13 4.46e+13 0.00e+00 0.00e+00 +bytes total: 5.87e+07 3.17e+07 1.91e+07 0.00e+00 0.00e+00 3.14e+05 bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 Max memory consumed for GA by this process: 427200 bytes MA_summarize_allocated_blocks: starting scan ... @@ -5909,9 +5864,9 @@ MA usage statistics: current number of blocks 0 0 maximum number of blocks 20 29 current total bytes 0 0 - maximum total bytes 9987096 22510808 - maximum total K-bytes 9988 22511 - maximum total M-bytes 10 23 + maximum total bytes 80120 22510840 + maximum total K-bytes 81 22511 + maximum total M-bytes 1 23 NWChem Input Module @@ -5926,32 +5881,52 @@ MA usage statistics: Please cite the following reference when publishing results obtained with NWChem: - M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, - T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, - E. Apra, T.L. Windus, W.A. de Jong - "NWChem: a comprehensive and scalable open-source - solution for large scale molecular simulations" - Comput. Phys. Commun. 181, 1477 (2010) - doi:10.1016/j.cpc.2010.04.018 + E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, + V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, + J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, + J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, + C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, + K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, + J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, + V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, + B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, + S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, + A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, + D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, + J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, + A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, + R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, + D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, + V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, + Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, + D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, + A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, + and R. J. Harrison + "NWChem: Past, present, and future + J. Chem. Phys. 152, 184102 (2020) + doi:10.1063/5.0004997 AUTHORS ------- - E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, - J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, - S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, - F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, + T. P. Straatsma, H. J. J. van Dam, D. Wang, T. L. Windus, N. P. Bauman, + A. Panyala, J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, + K. Lopata, S. A. Fischer, S. Krishnamoorthy, M. Jacquelin, W. Ma, M. Klemm, + O. Villa, Y. Chen, V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, + Eric Hermes, L. Jensen, J. E. Moore, J. C. Becca, V. Konjkov, + D. Mejia-Rodriguez, T. Risthaus, M. Malagoli, A. Marenich, A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, - P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, - D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, - A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, - A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, - H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, - K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, - H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, - A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, - R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, - K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, - A. T. Wong, Z. Zhang. - - Total times cpu: 28.4s wall: 32.3s + P.-D. Fan, A. Fonari, M. J. Williamson, R. J. Harrison, J. R. Rehr, + M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, V. Tipparaju, + M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, M. Swart, Q. Wu, + T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, + G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, + K. Tsemekhman, K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, + T. Clark, D. Clerc, H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, + E. Glendening, M. Gutowski, A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, + R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, X. Long, B. Meng, + T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, + M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. + + Total times cpu: 21.2s wall: 21.3s diff --git a/data/NWChem/basicNWChem7.0/dvb_gopt_ks.out b/data/NWChem/basicNWChem7.0/dvb_gopt_ks.out index 137232af1..92f7d1d49 100644 --- a/data/NWChem/basicNWChem7.0/dvb_gopt_ks.out +++ b/data/NWChem/basicNWChem7.0/dvb_gopt_ks.out @@ -1,17 +1,17 @@ - argument 1 = dvb_gopt_ks.nw + argument 1 = dvb_gopt_ks.in - Northwest Computational Chemistry Package (NWChem) 6.5 - ------------------------------------------------------ + Northwest Computational Chemistry Package (NWChem) 7.0.2 + -------------------------------------------------------- Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - Copyright (c) 1994-2014 + Copyright (c) 1994-2020 Pacific Northwest National Laboratory Battelle Memorial Institute @@ -36,16 +36,17 @@ Job information --------------- - hostname = boman - program = /usr/lib64/mpich/bin/nwchem_mpich - date = Sat Jan 17 16:29:02 2015 - - compiled = Sat_Dec_06_13:02:58_2014 - source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 - nwchem branch = 6.5 - nwchem revision = 26243 - ga revision = 10506 - input = dvb_gopt_ks.nw + hostname = osmium + program = nwchem + date = Sat Jun 4 13:32:52 2022 + + compiled = Fri_Jul_02_16:33:00_2021 + source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src + nwchem branch = 7.0.2 + nwchem revision = b9985dfa + ga revision = 5.7.2 + use scalapack = T + input = dvb_gopt_ks.in prefix = dvb. data base = ./dvb.db status = startup @@ -89,6 +90,8 @@ ------ auto-z ------ + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 Geometry "geometry" -> "" @@ -344,8 +347,8 @@ - library name resolved from: .nwchemrc - library file name is: + library name resolved from: environment + library file name is: @@ -367,6 +370,7 @@ Divinylbenzene in STO-3G basis set + no constraints, skipping 0.0000000000000000 maximum gradient threshold (gmax) = 0.000450 rms gradient threshold (grms) = 0.000300 maximum cartesian step threshold (xmax) = 0.001800 @@ -414,7 +418,8 @@ Variables with the same non-blank name are constrained to be equal - Using old Hessian from previous optimization + Using diagonal initial Hessian + Scaling for Hessian diagonals: bonds = 1.00 angles = 0.25 torsions = 0.10 -------- Step 0 @@ -554,9 +559,9 @@ Maximum number of iterations: 30 AO basis - number of functions: 60 number of shells: 40 - Convergence on energy requested: 1.00D-06 - Convergence on density requested: 1.00D-05 - Convergence on gradient requested: 5.00D-04 + Convergence on energy requested: 1.00D-06 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 XC Information -------------- @@ -585,7 +590,7 @@ Convergence aids based upon iterative change in total energy or number of iterations. Levelshifting, if invoked, occurs when the - HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 DIIS, if invoked, will attempt to extrapolate using up to (NFOCK): 10 stored Fock matrices. @@ -597,11 +602,11 @@ Screening Tolerance Information ------------------------------- - Density screening/tol_rho: 1.00D-10 + Density screening/tol_rho: 1.00D-10 AO Gaussian exp screening on grid/accAOfunc: 14 CD Gaussian exp screening on grid/accCDfunc: 20 XC Gaussian exp screening on grid/accXCfunc: 20 - Schwarz screening/accCoul: 1.00D-08 + Schwarz screening/accCoul: 1.00D-08 Superposition of Atomic Density Guess @@ -638,17 +643,8 @@ 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 bu - Time after variat. SCF: 0.8 - Time prior to 1st pass: 0.8 - - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% - + Time after variat. SCF: 0.2 + Time prior to 1st pass: 0.2 Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 @@ -656,31 +652,31 @@ Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 10.94 10936722 + Heap Space remaining (MW): 5.89 5890482 Stack Space remaining (MW): 13.11 13106284 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.2544280479 -8.28D+02 1.42D-02 3.78D-01 4.0 - d= 0,ls=0.0,diis 2 -382.3017246235 -4.73D-02 6.99D-03 3.82D-02 4.8 - d= 0,ls=0.0,diis 3 -382.2954278893 6.30D-03 4.21D-03 7.95D-02 5.7 - d= 0,ls=0.0,diis 4 -382.3080934058 -1.27D-02 5.17D-04 8.80D-04 6.7 - d= 0,ls=0.0,diis 5 -382.3082297603 -1.36D-04 1.18D-04 4.46D-05 7.6 + d= 0,ls=0.0,diis 1 -382.2544279522 -8.28D+02 1.42D-02 3.78D-01 0.9 + d= 0,ls=0.0,diis 2 -382.3017245160 -4.73D-02 6.99D-03 3.82D-02 1.5 + d= 0,ls=0.0,diis 3 -382.2954277367 6.30D-03 4.21D-03 7.95D-02 2.1 + d= 0,ls=0.0,diis 4 -382.3080932546 -1.27D-02 5.17D-04 8.80D-04 2.7 + d= 0,ls=0.0,diis 5 -382.3082296151 -1.36D-04 1.18D-04 4.46D-05 3.3 Resetting Diis - d= 0,ls=0.0,diis 6 -382.3082358982 -6.14D-06 3.18D-05 3.09D-06 8.6 - d= 0,ls=0.0,diis 7 -382.3082363748 -4.77D-07 1.42D-05 1.61D-07 9.5 - d= 0,ls=0.0,diis 8 -382.3082363723 2.52D-09 7.54D-06 1.77D-07 10.5 + d= 0,ls=0.0,diis 6 -382.3082357524 -6.14D-06 3.18D-05 3.09D-06 3.9 + d= 0,ls=0.0,diis 7 -382.3082362291 -4.77D-07 1.42D-05 1.61D-07 4.4 + d= 0,ls=0.0,diis 8 -382.3082362266 2.52D-09 7.54D-06 1.77D-07 5.0 - Total DFT energy = -382.308236372325 - One electron energy = -1400.645117860810 - Coulomb energy = 630.242757684166 - Exchange-Corr. energy = -57.842888363128 + Total DFT energy = -382.308236226598 + One electron energy = -1400.645118242808 + Coulomb energy = 630.242758211543 + Exchange-Corr. energy = -57.842888362780 Nuclear repulsion energy = 445.937012167446 - Numeric. integr. density = 69.999956106136 + Numeric. integr. density = 69.999956106133 - Total iterative time = 9.7s + Total iterative time = 4.8s @@ -698,52 +694,136 @@ DFT Final Molecular Orbital Analysis ------------------------------------ + Vector 1 Occ=2.000000D+00 E=-1.002024D+01 Symmetry=bu + MO Center= -1.9D-11, -1.1D-10, 4.3D-33, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.699304 1 C s 6 -0.699304 2 C s + 2 0.031560 1 C s 7 -0.031560 2 C s + 35 0.026965 11 C s 40 -0.026965 12 C s + + Vector 2 Occ=2.000000D+00 E=-1.002019D+01 Symmetry=ag + MO Center= 1.9D-11, 1.1D-10, -2.0D-22, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.699301 1 C s 6 0.699301 2 C s + 2 0.031352 1 C s 7 0.031352 2 C s + 35 -0.027329 11 C s 40 -0.027329 12 C s + + Vector 3 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=bu + MO Center= 1.4D-11, 7.4D-11, 4.1D-33, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.699779 11 C s 40 -0.699779 12 C s + 36 0.030781 11 C s 41 -0.030781 12 C s + 1 -0.027419 1 C s 6 0.027419 2 C s + + Vector 4 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=ag + MO Center= -1.4D-11, -7.4D-11, -5.1D-18, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.699695 11 C s 40 0.699695 12 C s + 36 0.030762 11 C s 41 0.030762 12 C s + 1 0.027652 1 C s 6 0.027652 2 C s + + Vector 5 Occ=2.000000D+00 E=-1.000689D+01 Symmetry=ag + MO Center= 9.3D-11, -3.0D-11, 2.3D-18, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.546702 5 C s 26 0.546702 6 C s + 11 -0.437151 3 C s 16 -0.437151 4 C s + 22 0.028161 5 C s 27 0.028161 6 C s + + Vector 6 Occ=2.000000D+00 E=-1.000688D+01 Symmetry=bu + MO Center= -9.3D-11, 3.0D-11, 1.6D-28, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.556224 5 C s 26 -0.556224 6 C s + 11 -0.423869 3 C s 16 0.423869 4 C s + 1 -0.028675 1 C s 6 0.028675 2 C s + 22 0.028662 5 C s 27 -0.028662 6 C s + + Vector 7 Occ=2.000000D+00 E=-1.000624D+01 Symmetry=bu + MO Center= 1.8D-11, 2.1D-13, -5.6D-30, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.557194 3 C s 16 -0.557194 4 C s + 21 0.425180 5 C s 26 -0.425180 6 C s + + Vector 8 Occ=2.000000D+00 E=-1.000609D+01 Symmetry=ag + MO Center= -1.8D-11, 4.8D-13, -3.7D-18, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.546812 3 C s 16 0.546812 4 C s + 21 0.437385 5 C s 26 0.437385 6 C s + 1 0.029441 1 C s 6 0.029441 2 C s + + Vector 9 Occ=2.000000D+00 E=-9.992164D+00 Symmetry=bu + MO Center= -7.4D-12, 7.9D-11, -2.1D-33, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.700479 15 C s 52 -0.700479 16 C s + 48 0.030860 15 C s 53 -0.030860 16 C s + Vector 10 Occ=2.000000D+00 E=-9.992164D+00 Symmetry=ag - MO Center= 4.2D-09, -4.5D-08, 1.8D-18, r^2= 1.5D+01 + MO Center= 7.4D-12, -7.9D-11, -2.0D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700478 15 C s 52 0.700478 16 C s + 48 0.030860 15 C s 53 0.030860 16 C s - Vector 11 Occ=2.000000D+00 E=-8.094645D-01 Symmetry=ag - MO Center= 3.0D-17, 1.2D-17, -6.4D-33, r^2= 3.0D+00 + Vector 11 Occ=2.000000D+00 E=-8.094647D-01 Symmetry=ag + MO Center= 6.0D-15, 1.0D-14, -2.9D-15, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.274704 1 C s 7 0.274704 2 C s 12 0.247016 3 C s 17 0.247016 4 C s 22 0.246687 5 C s 27 0.246687 6 C s + 36 0.127810 11 C s 41 0.127810 12 C s + 1 -0.107859 1 C s 6 -0.107859 2 C s Vector 12 Occ=2.000000D+00 E=-7.539349D-01 Symmetry=bu - MO Center= -7.2D-16, -9.5D-15, 2.2D-21, r^2= 7.8D+00 + MO Center= -1.4D-15, -1.2D-14, -1.1D-31, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 -0.297168 11 C s 41 0.297168 12 C s - 2 0.273788 1 C s 7 -0.273788 2 C s + 2 0.273787 1 C s 7 -0.273787 2 C s 48 -0.209312 15 C s 53 0.209312 16 C s + 35 0.113817 11 C s 40 -0.113817 12 C s + 22 -0.112555 5 C s 27 0.112555 6 C s - Vector 13 Occ=2.000000D+00 E=-7.178611D-01 Symmetry=ag - MO Center= 3.8D-16, 4.6D-15, -2.1D-16, r^2= 1.1D+01 + Vector 13 Occ=2.000000D+00 E=-7.178610D-01 Symmetry=ag + MO Center= -1.1D-17, -2.3D-16, 4.1D-32, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.314815 11 C s 41 0.314815 12 C s 48 0.309767 15 C s 53 0.309767 16 C s + 12 -0.121459 3 C s 17 -0.121459 4 C s + 35 -0.119238 11 C s 40 -0.119238 12 C s + 47 -0.117464 15 C s 52 -0.117464 16 C s Vector 14 Occ=2.000000D+00 E=-6.999224D-01 Symmetry=bu - MO Center= 7.9D-16, -1.8D-15, -1.0D-20, r^2= 3.2D+00 + MO Center= -4.7D-15, 5.5D-16, 1.2D-31, r^2= 3.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.357135 3 C s 17 -0.357135 4 C s - 22 0.323903 5 C s 27 -0.323903 6 C s + 22 0.323902 5 C s 27 -0.323902 6 C s + 11 -0.132324 3 C s 16 0.132324 4 C s + 3 0.124985 1 C px 8 0.124985 2 C px + 21 -0.120092 5 C s 26 0.120092 6 C s Vector 15 Occ=2.000000D+00 E=-6.673152D-01 Symmetry=bu - MO Center= -5.9D-16, 5.7D-15, 1.2D-19, r^2= 9.1D+00 + MO Center= -7.9D-16, 1.5D-15, 4.8D-26, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.299507 15 C s 53 -0.299507 16 C s 2 0.274065 1 C s 7 -0.274065 2 C s 22 -0.202283 5 C s 27 0.202283 6 C s + 36 0.136847 11 C s 41 -0.136847 12 C s + 38 -0.129053 11 C py 43 -0.129053 12 C py - Vector 16 Occ=2.000000D+00 E=-5.885091D-01 Symmetry=ag - MO Center= 5.5D-16, -1.5D-15, 3.7D-17, r^2= 8.4D+00 + Vector 16 Occ=2.000000D+00 E=-5.885090D-01 Symmetry=ag + MO Center= -5.0D-15, 1.5D-15, -7.5D-17, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.241406 15 C s 53 0.241406 16 C s @@ -753,7 +833,7 @@ 36 -0.159613 11 C s 41 -0.159613 12 C s Vector 17 Occ=2.000000D+00 E=-5.591514D-01 Symmetry=ag - MO Center= 3.4D-16, -3.4D-16, -1.4D-16, r^2= 5.1D+00 + MO Center= 4.2D-16, -2.4D-15, 3.4D-17, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.326032 3 C s 17 0.326032 4 C s @@ -763,36 +843,37 @@ 31 0.169234 7 H s 32 0.169234 8 H s Vector 18 Occ=2.000000D+00 E=-5.314210D-01 Symmetry=bu - MO Center= -4.7D-17, 6.9D-15, -1.5D-18, r^2= 1.2D+01 + MO Center= -3.0D-15, -5.3D-15, -3.9D-31, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.302766 11 C s 41 -0.302766 12 C s 48 -0.249166 15 C s 53 0.249166 16 C s - 45 0.170518 13 H s 46 -0.170518 14 H s + 45 0.170519 13 H s 46 -0.170519 14 H s 57 -0.160626 17 H s 58 0.160626 18 H s 12 0.154465 3 C s 17 -0.154465 4 C s Vector 19 Occ=2.000000D+00 E=-5.099367D-01 Symmetry=ag - MO Center= -7.8D-16, -3.0D-15, -8.7D-17, r^2= 7.5D+00 + MO Center= -3.9D-16, -6.0D-15, -5.8D-17, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.201893 5 C px 28 -0.201893 6 C px - 13 0.184490 3 C px 18 -0.184490 4 C px + 13 0.184491 3 C px 18 -0.184491 4 C px 36 0.180763 11 C s 41 0.180763 12 C s 33 0.169276 9 H s 34 0.169276 10 H s 22 0.166022 5 C s 27 0.166022 6 C s Vector 20 Occ=2.000000D+00 E=-4.575989D-01 Symmetry=ag - MO Center= -2.6D-17, -4.0D-15, -1.4D-16, r^2= 9.5D+00 + MO Center= -7.6D-18, -1.8D-17, 5.7D-33, r^2= 9.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.212730 15 C px 54 -0.212730 16 C px 38 0.184649 11 C py 43 -0.184649 12 C py - 57 0.179110 17 H s 58 0.179110 18 H s - 45 -0.153092 13 H s 46 -0.153092 14 H s + 57 0.179111 17 H s 58 0.179111 18 H s + 45 -0.153093 13 H s 46 -0.153093 14 H s + 14 0.141383 3 C py 19 -0.141383 4 C py - Vector 21 Occ=2.000000D+00 E=-4.391970D-01 Symmetry=bu - MO Center= 3.3D-16, 6.8D-15, -7.3D-18, r^2= 1.0D+01 + Vector 21 Occ=2.000000D+00 E=-4.391972D-01 Symmetry=bu + MO Center= 1.5D-15, 6.8D-15, -3.3D-24, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.219233 11 C px 42 0.219233 12 C px @@ -802,112 +883,117 @@ 45 -0.155495 13 H s 46 0.155495 14 H s Vector 22 Occ=2.000000D+00 E=-4.110181D-01 Symmetry=bu - MO Center= -9.8D-16, -2.7D-15, -2.3D-17, r^2= 6.8D+00 + MO Center= 8.2D-15, 2.4D-14, -2.0D-23, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.235311 1 C s 7 -0.235311 2 C s - 33 0.230466 9 H s 34 -0.230466 10 H s + 2 0.235310 1 C s 7 -0.235310 2 C s + 33 0.230465 9 H s 34 -0.230465 10 H s 31 -0.226661 7 H s 32 0.226661 8 H s 13 -0.222264 3 C px 18 -0.222264 4 C px - 24 -0.177969 5 C py 29 -0.177969 6 C py + 24 -0.177970 5 C py 29 -0.177970 6 C py - Vector 23 Occ=2.000000D+00 E=-3.976936D-01 Symmetry=bu - MO Center= -1.3D-15, 2.9D-15, 3.1D-17, r^2= 8.7D+00 + Vector 23 Occ=2.000000D+00 E=-3.976935D-01 Symmetry=bu + MO Center= 2.7D-14, -1.6D-13, 3.9D-23, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.251231 5 C px 28 0.251231 6 C px 49 0.250513 15 C px 54 0.250513 16 C px 3 -0.220827 1 C px 8 -0.220827 2 C px 57 0.215416 17 H s 58 -0.215416 18 H s - 38 0.181490 11 C py 43 0.181490 12 C py + 38 0.181489 11 C py 43 0.181489 12 C py Vector 24 Occ=2.000000D+00 E=-3.959381D-01 Symmetry=ag - MO Center= 6.4D-16, -5.4D-15, -1.9D-31, r^2= 1.5D+01 + MO Center= -2.7D-14, 1.3D-13, 3.5D-30, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.338998 15 C py 55 -0.338998 16 C py 59 -0.262595 19 H s 60 -0.262595 20 H s 37 0.251493 11 C px 42 -0.251493 12 C px + 45 -0.145063 13 H s 46 -0.145063 14 H s + 24 0.136714 5 C py 29 -0.136714 6 C py - Vector 25 Occ=2.000000D+00 E=-3.744296D-01 Symmetry=bu - MO Center= -3.3D-16, -1.7D-16, -6.0D-19, r^2= 4.4D+00 + Vector 25 Occ=2.000000D+00 E=-3.744295D-01 Symmetry=bu + MO Center= 6.6D-16, -1.2D-15, -1.0D-22, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.307584 3 C px 18 0.307584 4 C px + 13 0.307585 3 C px 18 0.307585 4 C px 31 0.252266 7 H s 32 -0.252266 8 H s - 24 -0.226086 5 C py 29 -0.226086 6 C py - 33 0.218187 9 H s 34 -0.218187 10 H s + 24 -0.226085 5 C py 29 -0.226085 6 C py + 33 0.218186 9 H s 34 -0.218186 10 H s 23 0.188069 5 C px 28 0.188069 6 C px - Vector 26 Occ=2.000000D+00 E=-3.509365D-01 Symmetry=bu - MO Center= -1.2D-15, -1.2D-15, 3.4D-18, r^2= 9.0D+00 + Vector 26 Occ=2.000000D+00 E=-3.509364D-01 Symmetry=bu + MO Center= -6.0D-16, 7.1D-16, -3.5D-32, r^2= 9.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.245677 15 C py 55 -0.245677 16 C py - 14 0.224345 3 C py 19 0.224345 4 C py - 37 -0.201678 11 C px 42 -0.201678 12 C px - 24 -0.193260 5 C py 29 -0.193260 6 C py - 38 0.187744 11 C py 43 0.187744 12 C py + 14 0.224346 3 C py 19 0.224346 4 C py + 37 -0.201679 11 C px 42 -0.201679 12 C px + 24 -0.193261 5 C py 29 -0.193261 6 C py + 38 0.187743 11 C py 43 0.187743 12 C py Vector 27 Occ=2.000000D+00 E=-3.470151D-01 Symmetry=ag - MO Center= 1.8D-15, -8.3D-17, -8.8D-17, r^2= 1.2D+01 + MO Center= 9.8D-17, 4.3D-15, 2.7D-32, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.295188 15 C px 54 -0.295188 16 C px 57 0.268012 17 H s 58 0.268012 18 H s - 37 -0.208877 11 C px 42 0.208877 12 C px + 37 -0.208878 11 C px 42 0.208878 12 C px 45 0.200233 13 H s 46 0.200233 14 H s 31 -0.156472 7 H s 32 -0.156472 8 H s Vector 28 Occ=2.000000D+00 E=-3.244697D-01 Symmetry=au - MO Center= 5.1D-16, 3.6D-15, 6.3D-17, r^2= 3.6D+00 + MO Center= 4.6D-16, -1.1D-15, 2.6D-15, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.337608 1 C pz 10 0.337608 2 C pz 15 0.297979 3 C pz 20 0.297979 4 C pz 25 0.297168 5 C pz 30 0.297168 6 C pz - 39 0.173947 11 C pz 44 0.173947 12 C pz + 39 0.173948 11 C pz 44 0.173948 12 C pz + 51 0.092443 15 C pz 56 0.092443 16 C pz - Vector 29 Occ=2.000000D+00 E=-3.110651D-01 Symmetry=bu - MO Center= 9.4D-16, 2.1D-15, 2.8D-18, r^2= 1.2D+01 + Vector 29 Occ=2.000000D+00 E=-3.110650D-01 Symmetry=bu + MO Center= -1.8D-16, -2.4D-15, 5.9D-25, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.259102 13 H s 46 -0.259102 14 H s + 45 0.259101 13 H s 46 -0.259101 14 H s 4 0.241972 1 C py 9 0.241972 2 C py 57 0.231030 17 H s 58 -0.231030 18 H s 37 -0.217251 11 C px 42 -0.217251 12 C px 59 -0.212335 19 H s 60 0.212335 20 H s Vector 30 Occ=2.000000D+00 E=-2.929831D-01 Symmetry=ag - MO Center= -1.2D-15, -5.2D-15, -5.9D-17, r^2= 6.1D+00 + MO Center= -1.7D-16, -5.7D-16, 7.2D-17, r^2= 6.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 -0.278189 3 C py 19 0.278189 4 C py + 14 -0.278188 3 C py 19 0.278188 4 C py 4 0.268404 1 C py 9 -0.268404 2 C py - 38 0.248149 11 C py 43 -0.248149 12 C py - 33 -0.240401 9 H s 34 -0.240401 10 H s + 38 0.248148 11 C py 43 -0.248148 12 C py + 33 -0.240402 9 H s 34 -0.240402 10 H s 24 0.234458 5 C py 29 -0.234458 6 C py - Vector 31 Occ=2.000000D+00 E=-2.874965D-01 Symmetry=ag - MO Center= 2.9D-16, 4.6D-15, 4.4D-17, r^2= 6.2D+00 + Vector 31 Occ=2.000000D+00 E=-2.874966D-01 Symmetry=ag + MO Center= 1.8D-16, 2.9D-15, 1.0D-16, r^2= 6.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 3 0.295864 1 C px 8 -0.295864 2 C px - 23 0.280605 5 C px 28 -0.280605 6 C px + 3 0.295863 1 C px 8 -0.295863 2 C px + 23 0.280604 5 C px 28 -0.280604 6 C px 31 -0.258072 7 H s 32 -0.258072 8 H s - 13 -0.222125 3 C px 18 0.222125 4 C px + 13 -0.222124 3 C px 18 0.222124 4 C px 45 -0.182735 13 H s 46 -0.182735 14 H s Vector 32 Occ=2.000000D+00 E=-2.634558D-01 Symmetry=bg - MO Center= -4.5D-16, -3.6D-15, 2.3D-21, r^2= 7.8D+00 + MO Center= 7.7D-16, 1.7D-14, 2.1D-18, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.376480 11 C pz 44 0.376480 12 C pz 5 0.348964 1 C pz 10 -0.348964 2 C pz 51 -0.271398 15 C pz 56 0.271398 16 C pz + 15 0.131648 3 C pz 20 -0.131648 4 C pz + 25 -0.132106 5 C pz 30 0.132106 6 C pz Vector 33 Occ=2.000000D+00 E=-2.123363D-01 Symmetry=au - MO Center= 2.5D-15, -3.5D-14, 1.5D-16, r^2= 1.1D+01 + MO Center= 2.5D-15, -2.3D-14, 2.3D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.417961 15 C pz 56 0.417961 16 C pz @@ -916,14 +1002,14 @@ 25 -0.176634 5 C pz 30 -0.176634 6 C pz Vector 34 Occ=2.000000D+00 E=-1.951683D-01 Symmetry=bg - MO Center= -4.1D-15, 6.0D-16, -5.8D-19, r^2= 2.7D+00 + MO Center= -3.5D-15, 3.2D-16, 1.7D-22, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.463626 3 C pz 20 -0.463626 4 C pz 25 0.457536 5 C pz 30 -0.457536 6 C pz Vector 35 Occ=2.000000D+00 E=-1.529967D-01 Symmetry=bg - MO Center= -2.5D-16, 3.5D-14, -2.3D-17, r^2= 8.1D+00 + MO Center= -2.2D-16, 8.0D-15, -9.5D-22, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.397372 15 C pz 56 -0.397372 16 C pz @@ -933,7 +1019,7 @@ 15 0.215066 3 C pz 20 -0.215066 4 C pz Vector 36 Occ=0.000000D+00 E= 3.750925D-02 Symmetry=au - MO Center= 1.0D-15, -3.3D-16, -1.7D-16, r^2= 8.0D+00 + MO Center= 1.3D-16, -3.1D-16, 3.9D-17, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.449614 15 C pz 56 -0.449614 16 C pz @@ -942,15 +1028,16 @@ 39 0.256133 11 C pz 44 0.256133 12 C pz 15 -0.232265 3 C pz 20 -0.232265 4 C pz - Vector 37 Occ=0.000000D+00 E= 9.011745D-02 Symmetry=au - MO Center= -4.5D-14, 4.0D-15, 6.2D-16, r^2= 2.7D+00 + Vector 37 Occ=0.000000D+00 E= 9.011747D-02 Symmetry=au + MO Center= 2.8D-15, -2.7D-16, -1.6D-16, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.582691 3 C pz 20 0.582691 4 C pz 25 -0.553237 5 C pz 30 -0.553237 6 C pz + 5 -0.031922 1 C pz 10 -0.031922 2 C pz Vector 38 Occ=0.000000D+00 E= 1.107280D-01 Symmetry=bg - MO Center= 4.2D-14, 5.6D-15, 7.3D-17, r^2= 1.1D+01 + MO Center= -2.7D-15, -1.2D-15, -6.6D-23, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.522167 11 C pz 44 -0.522167 12 C pz @@ -959,17 +1046,17 @@ 25 -0.232246 5 C pz 30 0.232246 6 C pz Vector 39 Occ=0.000000D+00 E= 1.822017D-01 Symmetry=au - MO Center= -1.7D-16, -6.6D-15, -4.4D-16, r^2= 7.9D+00 + MO Center= 5.0D-16, 4.3D-15, -2.9D-16, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.529133 11 C pz 44 -0.529133 12 C pz 5 0.497218 1 C pz 10 0.497218 2 C pz 51 0.379694 15 C pz 56 0.379694 16 C pz - 25 -0.199197 5 C pz 30 -0.199197 6 C pz + 25 -0.199198 5 C pz 30 -0.199198 6 C pz 15 -0.166740 3 C pz 20 -0.166740 4 C pz Vector 40 Occ=0.000000D+00 E= 2.723016D-01 Symmetry=bg - MO Center= 3.4D-15, -4.0D-15, -9.7D-17, r^2= 3.8D+00 + MO Center= -5.8D-16, -4.1D-15, -1.2D-22, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.543477 1 C pz 10 -0.543477 2 C pz @@ -978,116 +1065,206 @@ 39 0.287732 11 C pz 44 -0.287732 12 C pz 51 -0.156154 15 C pz 56 0.156154 16 C pz - Vector 41 Occ=0.000000D+00 E= 3.324852D-01 Symmetry=ag - MO Center= 1.2D-14, -1.8D-15, 2.6D-16, r^2= 8.8D+00 + Vector 41 Occ=0.000000D+00 E= 3.324850D-01 Symmetry=ag + MO Center= -1.9D-15, 2.9D-15, 8.1D-17, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 -0.423787 9 H s 34 -0.423787 10 H s + 33 -0.423788 9 H s 34 -0.423788 10 H s 31 -0.413777 7 H s 32 -0.413777 8 H s - 2 0.401567 1 C s 7 0.401567 2 C s - 59 -0.358546 19 H s 60 -0.358546 20 H s + 2 0.401565 1 C s 7 0.401565 2 C s + 59 -0.358545 19 H s 60 -0.358545 20 H s 38 -0.338104 11 C py 43 0.338104 12 C py - Vector 42 Occ=0.000000D+00 E= 3.406446D-01 Symmetry=bu - MO Center= -1.1D-14, -1.7D-14, 1.3D-18, r^2= 1.0D+01 + Vector 42 Occ=0.000000D+00 E= 3.406445D-01 Symmetry=bu + MO Center= 3.5D-16, 3.5D-15, -2.4D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.433824 13 H s 46 -0.433824 14 H s - 13 0.355436 3 C px 18 0.355436 4 C px - 37 0.344560 11 C px 42 0.344560 12 C px + 45 0.433823 13 H s 46 -0.433823 14 H s + 13 0.355437 3 C px 18 0.355437 4 C px + 37 0.344559 11 C px 42 0.344559 12 C px 31 -0.321890 7 H s 32 0.321890 8 H s - 57 -0.323133 17 H s 58 0.323133 18 H s + 57 -0.323132 17 H s 58 0.323132 18 H s - Vector 43 Occ=0.000000D+00 E= 3.795222D-01 Symmetry=bu - MO Center= -4.2D-15, 1.6D-14, -5.2D-17, r^2= 7.8D+00 + Vector 43 Occ=0.000000D+00 E= 3.795220D-01 Symmetry=bu + MO Center= 9.8D-16, -3.7D-15, 8.5D-20, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.546119 11 C s 41 -0.546119 12 C s - 4 0.461528 1 C py 9 0.461528 2 C py - 33 0.405575 9 H s 34 -0.405575 10 H s - 59 0.351693 19 H s 60 -0.351693 20 H s - 2 0.338373 1 C s 7 -0.338373 2 C s + 36 0.546126 11 C s 41 -0.546126 12 C s + 4 0.461527 1 C py 9 0.461527 2 C py + 33 0.405568 9 H s 34 -0.405568 10 H s + 59 0.351691 19 H s 60 -0.351691 20 H s + 2 0.338381 1 C s 7 -0.338381 2 C s - Vector 44 Occ=0.000000D+00 E= 3.812905D-01 Symmetry=ag - MO Center= 1.3D-14, 2.3D-14, -1.1D-16, r^2= 1.2D+01 + Vector 44 Occ=0.000000D+00 E= 3.812899D-01 Symmetry=ag + MO Center= 2.8D-16, -2.7D-15, 4.8D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.579604 13 H s 46 0.579604 14 H s - 12 0.393522 3 C s 17 0.393522 4 C s - 57 -0.391444 17 H s 58 -0.391444 18 H s + 12 0.393529 3 C s 17 0.393529 4 C s + 57 -0.391441 17 H s 58 -0.391441 18 H s 36 -0.382169 11 C s 41 -0.382169 12 C s 37 0.338366 11 C px 42 -0.338366 12 C px - Vector 45 Occ=0.000000D+00 E= 4.103423D-01 Symmetry=ag - MO Center= -3.7D-13, 1.1D-12, -2.1D-16, r^2= 1.1D+01 + Vector 45 Occ=0.000000D+00 E= 4.103425D-01 Symmetry=ag + MO Center= 2.4D-13, -6.6D-13, 5.3D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.647348 15 C s 53 0.647348 16 C s - 22 0.620073 5 C s 27 0.620073 6 C s - 57 -0.513313 17 H s 58 -0.513313 18 H s - 12 -0.443657 3 C s 17 -0.443657 4 C s - 59 -0.320795 19 H s 60 -0.320795 20 H s + 48 0.647346 15 C s 53 0.647346 16 C s + 22 0.620075 5 C s 27 0.620075 6 C s + 57 -0.513315 17 H s 58 -0.513315 18 H s + 12 -0.443652 3 C s 17 -0.443652 4 C s + 59 -0.320791 19 H s 60 -0.320791 20 H s - Vector 46 Occ=0.000000D+00 E= 4.112340D-01 Symmetry=bu - MO Center= 3.6D-13, -1.1D-12, 1.1D-16, r^2= 1.1D+01 + Vector 46 Occ=0.000000D+00 E= 4.112341D-01 Symmetry=bu + MO Center= -2.3D-13, 6.7D-13, -2.0D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.613157 5 C s 27 -0.613157 6 C s - 48 0.539738 15 C s 53 -0.539738 16 C s - 2 0.476220 1 C s 7 -0.476220 2 C s - 57 -0.447818 17 H s 58 0.447818 18 H s - 12 -0.440665 3 C s 17 0.440665 4 C s + 22 0.613158 5 C s 27 -0.613158 6 C s + 48 0.539736 15 C s 53 -0.539736 16 C s + 2 0.476219 1 C s 7 -0.476219 2 C s + 57 -0.447814 17 H s 58 0.447814 18 H s + 12 -0.440663 3 C s 17 0.440663 4 C s - Vector 47 Occ=0.000000D+00 E= 4.258024D-01 Symmetry=bu - MO Center= -5.7D-15, -1.4D-14, -8.9D-18, r^2= 9.2D+00 + Vector 47 Occ=0.000000D+00 E= 4.258025D-01 Symmetry=bu + MO Center= 1.5D-15, -6.2D-15, -4.7D-18, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 0.603107 7 H s 32 -0.603107 8 H s - 36 -0.446798 11 C s 41 0.446798 12 C s + 31 0.603108 7 H s 32 -0.603108 8 H s + 36 -0.446797 11 C s 41 0.446797 12 C s 45 0.437141 13 H s 46 -0.437141 14 H s 12 -0.368675 3 C s 17 0.368675 4 C s - 59 0.337705 19 H s 60 -0.337705 20 H s + 59 0.337703 19 H s 60 -0.337703 20 H s - Vector 48 Occ=0.000000D+00 E= 4.393598D-01 Symmetry=ag - MO Center= 2.8D-15, 4.4D-16, 9.2D-17, r^2= 7.5D+00 + Vector 48 Occ=0.000000D+00 E= 4.393601D-01 Symmetry=ag + MO Center= -7.0D-15, -3.1D-14, 7.3D-17, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.782306 1 C s 7 0.782306 2 C s - 36 -0.556794 11 C s 41 -0.556794 12 C s - 12 -0.499660 3 C s 17 -0.499660 4 C s - 22 -0.411568 5 C s 27 -0.411568 6 C s - 48 0.409883 15 C s 53 0.409883 16 C s + 2 0.782303 1 C s 7 0.782303 2 C s + 36 -0.556791 11 C s 41 -0.556791 12 C s + 12 -0.499653 3 C s 17 -0.499653 4 C s + 22 -0.411571 5 C s 27 -0.411571 6 C s + 48 0.409890 15 C s 53 0.409890 16 C s - Vector 49 Occ=0.000000D+00 E= 4.537217D-01 Symmetry=bu - MO Center= -8.8D-15, 6.5D-15, -1.2D-17, r^2= 1.2D+01 + Vector 49 Occ=0.000000D+00 E= 4.537215D-01 Symmetry=bu + MO Center= 2.5D-16, 3.1D-14, 1.2D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.706720 15 C s 53 -0.706720 16 C s - 57 -0.525554 17 H s 58 0.525554 18 H s - 33 0.477116 9 H s 34 -0.477116 10 H s - 36 -0.428999 11 C s 41 0.428999 12 C s - 22 -0.407169 5 C s 27 0.407169 6 C s + 48 0.706722 15 C s 53 -0.706722 16 C s + 57 -0.525559 17 H s 58 0.525559 18 H s + 33 0.477115 9 H s 34 -0.477115 10 H s + 36 -0.428991 11 C s 41 0.428991 12 C s + 22 -0.407165 5 C s 27 0.407165 6 C s Vector 50 Occ=0.000000D+00 E= 4.783356D-01 Symmetry=ag - MO Center= 1.1D-14, -6.4D-15, 2.0D-16, r^2= 1.1D+01 + MO Center= 3.9D-16, -1.2D-15, 9.8D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.706217 3 C s 17 0.706217 4 C s - 22 -0.619403 5 C s 27 -0.619403 6 C s - 59 -0.475188 19 H s 60 -0.475188 20 H s - 48 0.415040 15 C s 53 0.415040 16 C s - 50 -0.382623 15 C py 55 0.382623 16 C py + 12 0.706221 3 C s 17 0.706221 4 C s + 22 -0.619401 5 C s 27 -0.619401 6 C s + 59 -0.475185 19 H s 60 -0.475185 20 H s + 48 0.415037 15 C s 53 0.415037 16 C s + 50 -0.382620 15 C py 55 0.382620 16 C py - Vector 51 Occ=0.000000D+00 E= 5.255622D-01 Symmetry=ag - MO Center= 6.7D-15, -6.7D-15, 8.3D-17, r^2= 6.5D+00 + Vector 51 Occ=0.000000D+00 E= 5.255624D-01 Symmetry=ag + MO Center= -1.7D-17, -3.2D-16, -7.5D-18, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.601871 1 C py 9 -0.601871 2 C py 36 -0.491666 11 C s 41 -0.491666 12 C s 13 -0.452505 3 C px 18 0.452505 4 C px - 2 -0.448706 1 C s 7 -0.448706 2 C s + 2 -0.448705 1 C s 7 -0.448705 2 C s 49 -0.342028 15 C px 54 0.342028 16 C px + Vector 52 Occ=0.000000D+00 E= 5.463505D-01 Symmetry=bu + MO Center= 3.7D-16, 2.9D-15, 6.1D-19, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.647799 3 C s 17 -0.647799 4 C s + 3 -0.560727 1 C px 8 -0.560727 2 C px + 50 0.483442 15 C py 55 0.483442 16 C py + 24 -0.478219 5 C py 29 -0.478219 6 C py + 59 0.356007 19 H s 60 -0.356007 20 H s + + Vector 53 Occ=0.000000D+00 E= 5.764362D-01 Symmetry=ag + MO Center= 2.5D-15, 2.4D-15, -2.8D-17, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.537120 3 C px 18 -0.537120 4 C px + 23 -0.522144 5 C px 28 0.522144 6 C px + 33 0.519105 9 H s 34 0.519105 10 H s + 31 -0.448308 7 H s 32 -0.448308 8 H s + 24 0.400192 5 C py 29 -0.400192 6 C py + + Vector 54 Occ=0.000000D+00 E= 5.984388D-01 Symmetry=bu + MO Center= -1.1D-15, -3.1D-15, 1.6D-18, r^2= 4.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 0.723029 3 C py 19 0.723029 4 C py + 22 0.599923 5 C s 27 -0.599923 6 C s + 36 -0.415411 11 C s 41 0.415411 12 C s + 2 -0.405907 1 C s 7 0.405907 2 C s + 24 0.394224 5 C py 29 0.394224 6 C py + + Vector 55 Occ=0.000000D+00 E= 6.248973D-01 Symmetry=bu + MO Center= 5.9D-16, 4.6D-16, 1.4D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.608536 1 C s 7 -0.608536 2 C s + 49 -0.528889 15 C px 54 -0.528889 16 C px + 38 0.480660 11 C py 43 0.480660 12 C py + 23 -0.365997 5 C px 28 -0.365997 6 C px + 57 0.363287 17 H s 58 -0.363287 18 H s + + Vector 56 Occ=0.000000D+00 E= 6.398334D-01 Symmetry=ag + MO Center= -2.2D-15, 2.0D-15, -3.7D-18, r^2= 9.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.549269 11 C px 42 -0.549269 12 C px + 50 -0.534300 15 C py 55 0.534300 16 C py + 14 0.383478 3 C py 19 -0.383478 4 C py + 4 -0.364575 1 C py 9 0.364575 2 C py + 59 -0.330751 19 H s 60 -0.330751 20 H s + + Vector 57 Occ=0.000000D+00 E= 6.828367D-01 Symmetry=ag + MO Center= 4.6D-16, 4.1D-15, 2.4D-17, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.663093 11 C py 43 -0.663093 12 C py + 49 -0.580412 15 C px 54 0.580412 16 C px + 24 -0.449231 5 C py 29 0.449231 6 C py + 14 -0.392087 3 C py 19 0.392087 4 C py + 4 -0.381671 1 C py 9 0.381671 2 C py + + Vector 58 Occ=0.000000D+00 E= 7.173568D-01 Symmetry=bu + MO Center= -1.6D-16, -8.9D-15, 5.2D-22, r^2= 9.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.608022 11 C px 42 0.608022 12 C px + 48 -0.538018 15 C s 50 -0.540481 15 C py + 53 0.538018 16 C s 55 -0.540481 16 C py + 36 0.466539 11 C s 38 -0.464871 11 C py + 41 -0.466539 12 C s 43 -0.464871 12 C py + + Vector 59 Occ=0.000000D+00 E= 7.790417D-01 Symmetry=ag + MO Center= -2.5D-16, 8.3D-15, 1.3D-16, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.702433 1 C px 8 -0.702433 2 C px + 14 -0.534061 3 C py 19 0.534061 4 C py + 23 -0.435987 5 C px 28 0.435987 6 C px + 37 0.429834 11 C px 42 -0.429834 12 C px + 24 -0.411039 5 C py 29 0.411039 6 C py + + Vector 60 Occ=0.000000D+00 E= 7.942619D-01 Symmetry=bu + MO Center= -3.4D-16, -7.9D-15, 1.1D-22, r^2= 3.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.657694 1 C py 9 0.657694 2 C py + 13 -0.568326 3 C px 18 -0.568326 4 C px + 23 0.496520 5 C px 28 0.496520 6 C px + 22 -0.413798 5 C s 27 0.413798 6 C s + 24 -0.395895 5 C py 29 -0.395895 6 C py + center of mass -------------- @@ -1107,18 +1284,79 @@ 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 1 1 0 0 0.000000 0.000000 0.000000 0.000000 - 1 0 1 0 0.000000 0.000000 0.000000 0.000000 + 1 0 1 0 -0.000000 -0.000000 -0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 0.000000 2 2 0 0 -37.347165 -141.071519 -141.071519 244.795872 - 2 1 1 0 0.066501 2.848764 2.848764 -5.631027 + 2 1 1 0 0.066503 2.848765 2.848765 -5.631027 2 1 0 1 0.000000 0.000000 0.000000 0.000000 - 2 0 2 0 -37.714743 -767.339021 -767.339021 1496.963300 - 2 0 1 1 -0.000000 -0.000000 -0.000000 0.000000 - 2 0 0 2 -43.587345 -21.793672 -21.793672 0.000000 + 2 0 2 0 -37.714741 -767.339020 -767.339020 1496.963300 + 2 0 1 1 0.000000 0.000000 0.000000 0.000000 + 2 0 0 2 -43.587344 -21.793672 -21.793672 0.000000 + + + General Information + ------------------- + SCF calculation type: DFT + Wavefunction type: closed shell. + No. of atoms : 20 + No. of electrons : 70 + Alpha electrons : 35 + Beta electrons : 35 + Charge : 0 + Spin multiplicity: 1 + Use of symmetry is: on ; symmetry adaption is: on + Maximum number of iterations: 30 + AO basis - number of functions: 60 + number of shells: 40 + Convergence on energy requested: 1.00D-06 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 + + XC Information + -------------- + B3LYP Method XC Potential + Hartree-Fock (Exact) Exchange 0.200 + Slater Exchange Functional 0.800 local + Becke 1988 Exchange Functional 0.720 non-local + Lee-Yang-Parr Correlation Functional 0.810 + VWN I RPA Correlation Functional 0.190 local + + Grid Information + ---------------- + Grid used for XC integration: medium + Radial quadrature: Mura-Knowles + Angular quadrature: Lebedev. + Tag B.-S. Rad. Rad. Pts. Rad. Cut. Ang. Pts. + --- ---------- --------- --------- --------- + C 0.70 49 12.0 434 + H 0.35 45 12.0 434 + Grid pruning is: on + Number of quadrature shells: 470 + Spatial weights used: Erf1 + + Convergence Information + ----------------------- + Convergence aids based upon iterative change in + total energy or number of iterations. + Levelshifting, if invoked, occurs when the + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + DIIS, if invoked, will attempt to extrapolate + using up to (NFOCK): 10 stored Fock matrices. + + Damping( 0%) Levelshifting(0.5) DIIS + --------------- ------------------- --------------- + dE on: start ASAP start + dE off: 2 iters 30 iters 30 iters - Parallel integral file used 8 records with 0 large values + Screening Tolerance Information + ------------------------------- + Density screening/tol_rho: 1.00D-10 + AO Gaussian exp screening on grid/accAOfunc: 14 + CD Gaussian exp screening on grid/accCDfunc: 20 + XC Gaussian exp screening on grid/accXCfunc: 20 + Schwarz screening/accCoul: 1.00D-08 @@ -1164,14 +1402,15 @@ ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.02 | 2.84 | + | CPU | 0.00 | 0.59 | ---------------------------------------- - | WALL | 0.02 | 2.85 | + | WALL | 0.00 | 0.59 | ---------------------------------------- + no constraints, skipping 0.0000000000000000 @ Step Energy Delta E Gmax Grms Xrms Xmax Walltime @ ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 0 -382.30823637 0.0D+00 0.00075 0.00023 0.00000 0.00000 16.9 +@ 0 -382.30823623 0.0D+00 0.00075 0.00023 0.00000 0.00000 6.1 ok @@ -1274,6 +1513,10 @@ 89 Torsion 14 12 16 18 180.00000 0.00000 90 Torsion 14 12 16 20 -0.00000 0.00000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 NWChem DFT Module ----------------- @@ -1316,9 +1559,9 @@ Maximum number of iterations: 30 AO basis - number of functions: 60 number of shells: 40 - Convergence on energy requested: 1.00D-06 - Convergence on density requested: 1.00D-05 - Convergence on gradient requested: 5.00D-04 + Convergence on energy requested: 1.00D-06 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 XC Information -------------- @@ -1347,7 +1590,7 @@ Convergence aids based upon iterative change in total energy or number of iterations. Levelshifting, if invoked, occurs when the - HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 DIIS, if invoked, will attempt to extrapolate using up to (NFOCK): 10 stored Fock matrices. @@ -1359,11 +1602,11 @@ Screening Tolerance Information ------------------------------- - Density screening/tol_rho: 1.00D-10 + Density screening/tol_rho: 1.00D-10 AO Gaussian exp screening on grid/accAOfunc: 14 CD Gaussian exp screening on grid/accCDfunc: 20 XC Gaussian exp screening on grid/accXCfunc: 20 - Schwarz screening/accCoul: 1.00D-08 + Schwarz screening/accCoul: 1.00D-08 Loading old vectors from job with title : @@ -1390,17 +1633,8 @@ Divinylbenzene in STO-3G basis set 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag - Time after variat. SCF: 16.0 - Time prior to 1st pass: 16.0 - - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.167D+05 #integrals = 3.470D+05 #direct = 0.0% #cached =100.0% - + Time after variat. SCF: 6.1 + Time prior to 1st pass: 6.1 Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 @@ -1408,26 +1642,26 @@ Divinylbenzene in STO-3G basis set Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 10.94 10936722 + Heap Space remaining (MW): 5.89 5890482 Stack Space remaining (MW): 13.11 13106284 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.3082506816 -8.28D+02 1.57D-04 3.59D-05 19.4 - d= 0,ls=0.0,diis 2 -382.3082601417 -9.46D-06 2.28D-05 4.14D-07 20.3 - d= 0,ls=0.0,diis 3 -382.3082601239 1.77D-08 1.28D-05 7.04D-07 21.3 - d= 0,ls=0.0,diis 4 -382.3082602335 -1.10D-07 2.15D-06 1.06D-08 22.2 + d= 0,ls=0.0,diis 1 -382.3082484651 -8.28D+02 1.66D-04 4.15D-05 6.9 + d= 0,ls=0.0,diis 2 -382.3082593124 -1.08D-05 2.13D-05 3.92D-07 7.5 + d= 0,ls=0.0,diis 3 -382.3082593278 -1.54D-08 1.10D-05 4.78D-07 8.1 + d= 0,ls=0.0,diis 4 -382.3082594024 -7.46D-08 2.19D-06 1.27D-08 8.7 - Total DFT energy = -382.308260233548 - One electron energy = -1400.533952041628 - Coulomb energy = 630.186523745953 - Exchange-Corr. energy = -57.843401191851 - Nuclear repulsion energy = 445.882569253979 + Total DFT energy = -382.308259402393 + One electron energy = -1400.535177245333 + Coulomb energy = 630.186780407650 + Exchange-Corr. energy = -57.843636287843 + Nuclear repulsion energy = 445.883773723134 - Numeric. integr. density = 69.999955506725 + Numeric. integr. density = 69.999955544927 - Total iterative time = 6.2s + Total iterative time = 2.6s @@ -1445,395 +1679,576 @@ Divinylbenzene in STO-3G basis set DFT Final Molecular Orbital Analysis ------------------------------------ - Vector 10 Occ=2.000000D+00 E=-9.992326D+00 Symmetry=ag - MO Center= 5.2D-09, -5.6D-08, -7.2D-34, r^2= 1.5D+01 + Vector 1 Occ=2.000000D+00 E=-1.002024D+01 Symmetry=bu + MO Center= -1.7D-18, 6.9D-17, -1.6D-50, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.699298 1 C s 6 -0.699298 2 C s + 2 0.031567 1 C s 7 -0.031567 2 C s + 35 0.027307 11 C s 40 -0.027307 12 C s + + Vector 2 Occ=2.000000D+00 E=-1.002019D+01 Symmetry=ag + MO Center= 3.1D-14, 4.4D-14, 3.1D-24, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.699296 1 C s 6 0.699296 2 C s + 2 0.031360 1 C s 7 0.031360 2 C s + 35 -0.027670 11 C s 40 -0.027670 12 C s + + Vector 3 Occ=2.000000D+00 E=-1.000809D+01 Symmetry=bu + MO Center= -9.8D-15, -4.9D-14, 2.7D-39, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.699820 11 C s 40 -0.699820 12 C s + 36 0.030782 11 C s 41 -0.030782 12 C s + 1 -0.027882 1 C s 6 0.027882 2 C s + + Vector 4 Occ=2.000000D+00 E=-1.000808D+01 Symmetry=ag + MO Center= 6.0D-15, 1.2D-14, 6.0D-18, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.699736 11 C s 40 0.699736 12 C s + 36 0.030764 11 C s 41 0.030764 12 C s + 1 0.028091 1 C s 6 0.028091 2 C s + + Vector 5 Occ=2.000000D+00 E=-1.000683D+01 Symmetry=bu + MO Center= -1.9D-09, 8.8D-10, -1.8D-25, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.607614 5 C s 26 -0.607614 6 C s + 11 -0.346486 3 C s 16 0.346486 4 C s + 22 0.030209 5 C s 27 -0.030209 6 C s + 1 -0.027685 1 C s 6 0.027685 2 C s + + Vector 6 Occ=2.000000D+00 E=-1.000683D+01 Symmetry=ag + MO Center= 1.9D-09, -8.8D-10, 4.4D-18, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.592712 5 C s 26 0.592712 6 C s + 11 -0.372414 3 C s 16 -0.372414 4 C s + 22 0.029585 5 C s 27 0.029585 6 C s + + Vector 7 Occ=2.000000D+00 E=-1.000611D+01 Symmetry=bu + MO Center= 3.0D-11, 9.7D-13, -9.9D-30, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.608391 3 C s 16 -0.608391 4 C s + 21 0.347846 5 C s 26 -0.347846 6 C s + + Vector 8 Occ=2.000000D+00 E=-1.000597D+01 Symmetry=ag + MO Center= -3.0D-11, -2.7D-12, 1.1D-33, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.592867 3 C s 16 0.592867 4 C s + 21 0.372685 5 C s 26 0.372685 6 C s + 1 0.028530 1 C s 6 0.028530 2 C s + + Vector 9 Occ=2.000000D+00 E=-9.992317D+00 Symmetry=bu + MO Center= 4.6D-11, -5.0D-10, -2.3D-33, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.700478 15 C s 52 -0.700478 16 C s + 48 0.030861 15 C s 53 -0.030861 16 C s + + Vector 10 Occ=2.000000D+00 E=-9.992317D+00 Symmetry=ag + MO Center= -4.6D-11, 5.0D-10, -4.0D-19, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700478 15 C s 52 0.700478 16 C s + 48 0.030860 15 C s 53 0.030860 16 C s - Vector 11 Occ=2.000000D+00 E=-8.094864D-01 Symmetry=ag - MO Center= -5.2D-15, -2.3D-15, -1.0D-17, r^2= 3.0D+00 + Vector 11 Occ=2.000000D+00 E=-8.095500D-01 Symmetry=ag + MO Center= 3.2D-15, -5.7D-15, 1.3D-15, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.274642 1 C s 7 0.274642 2 C s - 12 0.247004 3 C s 17 0.247004 4 C s - 22 0.246775 5 C s 27 0.246775 6 C s + 2 0.274631 1 C s 7 0.274631 2 C s + 12 0.247042 3 C s 17 0.247042 4 C s + 22 0.246798 5 C s 27 0.246798 6 C s + 36 0.127611 11 C s 41 0.127611 12 C s + 1 -0.107840 1 C s 6 -0.107840 2 C s - Vector 12 Occ=2.000000D+00 E=-7.539678D-01 Symmetry=bu - MO Center= 5.7D-16, 1.3D-14, -7.6D-24, r^2= 7.8D+00 + Vector 12 Occ=2.000000D+00 E=-7.539512D-01 Symmetry=bu + MO Center= 3.5D-16, 1.2D-15, 8.6D-27, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 -0.297281 11 C s 41 0.297281 12 C s - 2 0.273800 1 C s 7 -0.273800 2 C s - 48 -0.209329 15 C s 53 0.209329 16 C s + 36 -0.297190 11 C s 41 0.297190 12 C s + 2 0.273988 1 C s 7 -0.273988 2 C s + 48 -0.209129 15 C s 53 0.209129 16 C s + 35 0.113811 11 C s 40 -0.113811 12 C s + 22 -0.112901 5 C s 27 0.112901 6 C s - Vector 13 Occ=2.000000D+00 E=-7.179778D-01 Symmetry=ag - MO Center= -8.8D-16, -1.5D-16, 8.5D-16, r^2= 1.1D+01 + Vector 13 Occ=2.000000D+00 E=-7.179329D-01 Symmetry=ag + MO Center= 1.8D-16, 3.8D-15, 1.0D-31, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.314944 11 C s 41 0.314944 12 C s - 48 0.309728 15 C s 53 0.309728 16 C s + 36 0.315011 11 C s 41 0.315011 12 C s + 48 0.309756 15 C s 53 0.309756 16 C s + 12 -0.121068 3 C s 17 -0.121068 4 C s + 35 -0.119307 11 C s 40 -0.119307 12 C s + 47 -0.117447 15 C s 52 -0.117447 16 C s - Vector 14 Occ=2.000000D+00 E=-6.997680D-01 Symmetry=bu - MO Center= 5.9D-15, 1.9D-15, -1.5D-21, r^2= 3.2D+00 + Vector 14 Occ=2.000000D+00 E=-6.998154D-01 Symmetry=bu + MO Center= -3.9D-15, 2.6D-15, -1.1D-25, r^2= 3.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.356723 3 C s 17 -0.356723 4 C s - 22 0.324703 5 C s 27 -0.324703 6 C s + 12 0.356678 3 C s 17 -0.356678 4 C s + 22 0.324754 5 C s 27 -0.324754 6 C s + 11 -0.132166 3 C s 16 0.132166 4 C s + 3 0.124971 1 C px 8 0.124971 2 C px + 21 -0.120401 5 C s 26 0.120401 6 C s - Vector 15 Occ=2.000000D+00 E=-6.675239D-01 Symmetry=bu - MO Center= 1.7D-16, -1.0D-14, -2.2D-32, r^2= 9.1D+00 + Vector 15 Occ=2.000000D+00 E=-6.675484D-01 Symmetry=bu + MO Center= -1.2D-15, -1.9D-15, -7.2D-25, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.299626 15 C s 53 -0.299626 16 C s - 2 0.274165 1 C s 7 -0.274165 2 C s - 22 -0.200714 5 C s 27 0.200714 6 C s + 48 0.299800 15 C s 53 -0.299800 16 C s + 2 0.273933 1 C s 7 -0.273933 2 C s + 22 -0.200567 5 C s 27 0.200567 6 C s + 36 0.136978 11 C s 41 -0.136978 12 C s + 38 -0.129042 11 C py 43 -0.129042 12 C py - Vector 16 Occ=2.000000D+00 E=-5.886277D-01 Symmetry=ag - MO Center= 5.8D-16, 3.0D-15, 2.9D-16, r^2= 8.5D+00 + Vector 16 Occ=2.000000D+00 E=-5.886676D-01 Symmetry=ag + MO Center= 1.4D-15, 1.5D-15, 2.4D-32, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.242639 15 C s 53 0.242639 16 C s - 22 0.232264 5 C s 27 0.232264 6 C s - 2 -0.206945 1 C s 7 -0.206945 2 C s - 14 -0.159629 3 C py 19 0.159629 4 C py - 36 -0.159690 11 C s 41 -0.159690 12 C s + 48 0.242668 15 C s 53 0.242668 16 C s + 22 0.232288 5 C s 27 0.232288 6 C s + 2 -0.206857 1 C s 7 -0.206857 2 C s + 14 -0.159664 3 C py 19 0.159664 4 C py + 36 -0.159669 11 C s 41 -0.159669 12 C s - Vector 17 Occ=2.000000D+00 E=-5.589834D-01 Symmetry=ag - MO Center= -8.9D-16, 3.4D-15, 3.4D-17, r^2= 5.1D+00 + Vector 17 Occ=2.000000D+00 E=-5.590459D-01 Symmetry=ag + MO Center= 1.2D-16, -1.7D-15, 2.6D-33, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.326170 3 C s 17 0.326170 4 C s - 3 0.185821 1 C px 8 -0.185821 2 C px - 22 -0.172039 5 C s 27 -0.172039 6 C s - 24 0.170227 5 C py 29 -0.170227 6 C py - 31 0.169633 7 H s 32 0.169633 8 H s + 12 0.326130 3 C s 17 0.326130 4 C s + 3 0.185811 1 C px 8 -0.185811 2 C px + 22 -0.172012 5 C s 27 -0.172012 6 C s + 24 0.170301 5 C py 29 -0.170301 6 C py + 31 0.169565 7 H s 32 0.169565 8 H s - Vector 18 Occ=2.000000D+00 E=-5.316514D-01 Symmetry=bu - MO Center= -2.4D-16, -5.2D-15, 1.5D-18, r^2= 1.2D+01 + Vector 18 Occ=2.000000D+00 E=-5.316729D-01 Symmetry=bu + MO Center= 2.5D-15, 3.1D-14, 9.8D-23, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.302601 11 C s 41 -0.302601 12 C s - 48 -0.249279 15 C s 53 0.249279 16 C s - 45 0.170560 13 H s 46 -0.170560 14 H s - 57 -0.160325 17 H s 58 0.160325 18 H s - 12 0.154479 3 C s 17 -0.154479 4 C s + 36 0.302634 11 C s 41 -0.302634 12 C s + 48 -0.249281 15 C s 53 0.249281 16 C s + 45 0.170552 13 H s 46 -0.170552 14 H s + 57 -0.160320 17 H s 58 0.160320 18 H s + 12 0.154491 3 C s 17 -0.154491 4 C s - Vector 19 Occ=2.000000D+00 E=-5.101132D-01 Symmetry=ag - MO Center= 2.4D-15, 4.6D-16, 9.7D-17, r^2= 7.5D+00 + Vector 19 Occ=2.000000D+00 E=-5.101415D-01 Symmetry=ag + MO Center= -2.2D-15, -3.7D-14, 1.2D-32, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.202029 5 C px 28 -0.202029 6 C px - 13 0.183898 3 C px 18 -0.183898 4 C px - 36 0.180817 11 C s 41 0.180817 12 C s - 33 0.169580 9 H s 34 0.169580 10 H s - 22 0.166852 5 C s 27 0.166852 6 C s + 23 0.202113 5 C px 28 -0.202113 6 C px + 13 0.184022 3 C px 18 -0.184022 4 C px + 36 0.180730 11 C s 41 0.180730 12 C s + 33 0.169565 9 H s 34 0.169565 10 H s + 22 0.166812 5 C s 27 0.166812 6 C s - Vector 20 Occ=2.000000D+00 E=-4.574566D-01 Symmetry=ag - MO Center= -2.9D-15, 2.9D-15, 5.6D-17, r^2= 9.5D+00 + Vector 20 Occ=2.000000D+00 E=-4.574813D-01 Symmetry=ag + MO Center= 5.2D-17, 7.2D-15, -8.2D-33, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.212832 15 C px 54 -0.212832 16 C px - 38 0.184712 11 C py 43 -0.184712 12 C py - 57 0.178979 17 H s 58 0.178979 18 H s - 45 -0.152703 13 H s 46 -0.152703 14 H s + 49 0.212837 15 C px 54 -0.212837 16 C px + 38 0.184633 11 C py 43 -0.184633 12 C py + 57 0.179017 17 H s 58 0.179017 18 H s + 45 -0.152762 13 H s 46 -0.152762 14 H s + 14 0.141086 3 C py 19 -0.141086 4 C py - Vector 21 Occ=2.000000D+00 E=-4.393094D-01 Symmetry=bu - MO Center= -1.6D-15, -8.9D-15, -8.1D-17, r^2= 1.0D+01 + Vector 21 Occ=2.000000D+00 E=-4.393168D-01 Symmetry=bu + MO Center= -4.3D-15, -9.9D-14, 6.1D-21, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.219832 11 C px 42 0.219832 12 C px - 50 0.210061 15 C py 55 0.210061 16 C py - 14 0.184810 3 C py 19 0.184810 4 C py - 59 -0.177838 19 H s 60 0.177838 20 H s - 45 -0.155809 13 H s 46 0.155809 14 H s + 37 0.219684 11 C px 42 0.219684 12 C px + 50 0.209892 15 C py 55 0.209892 16 C py + 14 0.184959 3 C py 19 0.184959 4 C py + 59 -0.177804 19 H s 60 0.177804 20 H s + 45 -0.155688 13 H s 46 0.155688 14 H s - Vector 22 Occ=2.000000D+00 E=-4.107045D-01 Symmetry=bu - MO Center= 9.7D-16, -2.5D-15, 2.7D-17, r^2= 6.8D+00 + Vector 22 Occ=2.000000D+00 E=-4.107320D-01 Symmetry=bu + MO Center= 1.0D-14, 3.0D-14, 9.5D-22, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.234437 1 C s 7 -0.234437 2 C s - 33 0.230937 9 H s 34 -0.230937 10 H s - 31 -0.225474 7 H s 32 0.225474 8 H s - 13 -0.220391 3 C px 18 -0.220391 4 C px - 24 -0.178651 5 C py 29 -0.178651 6 C py + 33 0.231023 9 H s 34 -0.231023 10 H s + 31 -0.225318 7 H s 32 0.225318 8 H s + 13 -0.220329 3 C px 18 -0.220329 4 C px + 24 -0.178894 5 C py 29 -0.178894 6 C py - Vector 23 Occ=2.000000D+00 E=-3.978699D-01 Symmetry=bu - MO Center= 4.1D-16, -1.4D-15, -2.7D-31, r^2= 8.7D+00 + Vector 23 Occ=2.000000D+00 E=-3.978847D-01 Symmetry=bu + MO Center= -1.9D-14, 1.7D-13, 3.7D-22, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.251343 5 C px 28 0.251343 6 C px - 49 0.250986 15 C px 54 0.250986 16 C px - 3 -0.219178 1 C px 8 -0.219178 2 C px - 57 0.215607 17 H s 58 -0.215607 18 H s - 38 0.181775 11 C py 43 0.181775 12 C py + 23 0.251212 5 C px 28 0.251212 6 C px + 49 0.250998 15 C px 54 0.250998 16 C px + 3 -0.219185 1 C px 8 -0.219185 2 C px + 57 0.215637 17 H s 58 -0.215637 18 H s + 38 0.181596 11 C py 43 0.181596 12 C py - Vector 24 Occ=2.000000D+00 E=-3.961228D-01 Symmetry=ag - MO Center= 3.7D-16, 5.2D-15, -1.8D-17, r^2= 1.5D+01 + Vector 24 Occ=2.000000D+00 E=-3.961017D-01 Symmetry=ag + MO Center= 1.2D-15, -8.2D-14, -3.2D-17, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 0.338905 15 C py 55 -0.338905 16 C py - 59 -0.262082 19 H s 60 -0.262082 20 H s - 37 0.252156 11 C px 42 -0.252156 12 C px + 50 0.339018 15 C py 55 -0.339018 16 C py + 59 -0.262332 19 H s 60 -0.262332 20 H s + 37 0.251781 11 C px 42 -0.251781 12 C px + 45 -0.145378 13 H s 46 -0.145378 14 H s + 24 0.136219 5 C py 29 -0.136219 6 C py - Vector 25 Occ=2.000000D+00 E=-3.739950D-01 Symmetry=bu - MO Center= -5.3D-17, -1.1D-16, 9.2D-20, r^2= 4.4D+00 + Vector 25 Occ=2.000000D+00 E=-3.740454D-01 Symmetry=bu + MO Center= 1.5D-14, -1.5D-14, 3.9D-22, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.308557 3 C px 18 0.308557 4 C px - 31 0.253500 7 H s 32 -0.253500 8 H s - 24 -0.225037 5 C py 29 -0.225037 6 C py - 33 0.217272 9 H s 34 -0.217272 10 H s - 23 0.188199 5 C px 28 0.188199 6 C px + 13 0.308501 3 C px 18 0.308501 4 C px + 31 0.253509 7 H s 32 -0.253509 8 H s + 24 -0.225058 5 C py 29 -0.225058 6 C py + 33 0.217406 9 H s 34 -0.217406 10 H s + 23 0.188486 5 C px 28 0.188486 6 C px - Vector 26 Occ=2.000000D+00 E=-3.511835D-01 Symmetry=bu - MO Center= -4.7D-15, 8.3D-17, 1.3D-17, r^2= 8.9D+00 + Vector 26 Occ=2.000000D+00 E=-3.511833D-01 Symmetry=bu + MO Center= 1.5D-15, -5.6D-15, 6.3D-22, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 -0.245386 15 C py 55 -0.245386 16 C py - 14 0.224858 3 C py 19 0.224858 4 C py - 37 -0.201221 11 C px 42 -0.201221 12 C px - 24 -0.194246 5 C py 29 -0.194246 6 C py - 38 0.186647 11 C py 43 0.186647 12 C py + 50 -0.245816 15 C py 55 -0.245816 16 C py + 14 0.224363 3 C py 19 0.224363 4 C py + 37 -0.201040 11 C px 42 -0.201040 12 C px + 24 -0.193745 5 C py 29 -0.193745 6 C py + 38 0.187172 11 C py 43 0.187172 12 C py - Vector 27 Occ=2.000000D+00 E=-3.472252D-01 Symmetry=ag - MO Center= 1.8D-15, 5.9D-15, -2.0D-16, r^2= 1.2D+01 + Vector 27 Occ=2.000000D+00 E=-3.472500D-01 Symmetry=ag + MO Center= -6.0D-15, 2.2D-15, -6.0D-32, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.295576 15 C px 54 -0.295576 16 C px - 57 0.268134 17 H s 58 0.268134 18 H s - 37 -0.207992 11 C px 42 0.207992 12 C px - 45 0.199893 13 H s 46 0.199893 14 H s - 31 -0.155876 7 H s 32 -0.155876 8 H s + 49 0.295635 15 C px 54 -0.295635 16 C px + 57 0.268063 17 H s 58 0.268063 18 H s + 37 -0.208439 11 C px 42 0.208439 12 C px + 45 0.200131 13 H s 46 0.200131 14 H s + 31 -0.155860 7 H s 32 -0.155860 8 H s - Vector 28 Occ=2.000000D+00 E=-3.244880D-01 Symmetry=au - MO Center= 2.1D-17, -4.2D-17, 1.1D-16, r^2= 3.6D+00 + Vector 28 Occ=2.000000D+00 E=-3.245366D-01 Symmetry=au + MO Center= 2.6D-18, -3.1D-17, -1.4D-15, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.337546 1 C pz 10 0.337546 2 C pz - 15 0.297876 3 C pz 20 0.297876 4 C pz - 25 0.297256 5 C pz 30 0.297256 6 C pz - 39 0.173994 11 C pz 44 0.173994 12 C pz + 5 0.337552 1 C pz 10 0.337552 2 C pz + 15 0.297930 3 C pz 20 0.297930 4 C pz + 25 0.297298 5 C pz 30 0.297298 6 C pz + 39 0.173852 11 C pz 44 0.173852 12 C pz + 51 0.092316 15 C pz 56 0.092316 16 C pz - Vector 29 Occ=2.000000D+00 E=-3.112002D-01 Symmetry=bu - MO Center= 2.4D-15, 1.1D-16, -1.6D-18, r^2= 1.2D+01 + Vector 29 Occ=2.000000D+00 E=-3.112458D-01 Symmetry=bu + MO Center= -2.5D-16, -3.2D-15, 9.0D-24, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.258868 13 H s 46 -0.258868 14 H s - 4 0.242223 1 C py 9 0.242223 2 C py - 57 0.230826 17 H s 58 -0.230826 18 H s - 37 -0.217089 11 C px 42 -0.217089 12 C px - 59 -0.212824 19 H s 60 0.212824 20 H s + 45 0.259126 13 H s 46 -0.259126 14 H s + 4 0.242032 1 C py 9 0.242032 2 C py + 57 0.230769 17 H s 58 -0.230769 18 H s + 37 -0.217468 11 C px 42 -0.217468 12 C px + 59 -0.212554 19 H s 60 0.212554 20 H s - Vector 30 Occ=2.000000D+00 E=-2.928468D-01 Symmetry=ag - MO Center= 9.9D-17, -3.0D-15, 1.3D-32, r^2= 6.2D+00 + Vector 30 Occ=2.000000D+00 E=-2.929002D-01 Symmetry=ag + MO Center= 9.1D-16, 3.4D-15, -8.9D-33, r^2= 6.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 -0.278500 3 C py 19 0.278500 4 C py - 4 0.269812 1 C py 9 -0.269812 2 C py - 38 0.249224 11 C py 43 -0.249224 12 C py - 33 -0.238310 9 H s 34 -0.238310 10 H s - 24 0.235403 5 C py 29 -0.235403 6 C py + 14 -0.278621 3 C py 19 0.278621 4 C py + 4 0.270200 1 C py 9 -0.270200 2 C py + 38 0.249702 11 C py 43 -0.249702 12 C py + 33 -0.237614 9 H s 34 -0.237614 10 H s + 24 0.235789 5 C py 29 -0.235789 6 C py - Vector 31 Occ=2.000000D+00 E=-2.874097D-01 Symmetry=ag - MO Center= 5.6D-16, -7.6D-16, 1.9D-18, r^2= 6.1D+00 + Vector 31 Occ=2.000000D+00 E=-2.874126D-01 Symmetry=ag + MO Center= 5.7D-16, 1.3D-15, -5.6D-34, r^2= 6.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 3 0.298162 1 C px 8 -0.298162 2 C px - 23 0.281411 5 C px 28 -0.281411 6 C px - 31 -0.258905 7 H s 32 -0.258905 8 H s - 13 -0.224683 3 C px 18 0.224683 4 C px - 45 -0.181103 13 H s 46 -0.181103 14 H s + 3 0.298748 1 C px 8 -0.298748 2 C px + 23 0.281764 5 C px 28 -0.281764 6 C px + 31 -0.258980 7 H s 32 -0.258980 8 H s + 13 -0.225265 3 C px 18 0.225265 4 C px + 45 -0.180823 13 H s 46 -0.180823 14 H s - Vector 32 Occ=2.000000D+00 E=-2.635305D-01 Symmetry=bg - MO Center= -1.1D-15, -2.9D-14, -1.7D-18, r^2= 7.8D+00 + Vector 32 Occ=2.000000D+00 E=-2.635082D-01 Symmetry=bg + MO Center= -6.1D-16, -1.8D-14, -5.0D-18, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 -0.376563 11 C pz 44 0.376563 12 C pz - 5 0.348845 1 C pz 10 -0.348845 2 C pz - 51 -0.271493 15 C pz 56 0.271493 16 C pz + 39 -0.376467 11 C pz 44 0.376467 12 C pz + 5 0.349049 1 C pz 10 -0.349049 2 C pz + 51 -0.271296 15 C pz 56 0.271296 16 C pz + 25 -0.132899 5 C pz 30 0.132899 6 C pz + 15 0.130871 3 C pz 20 -0.130871 4 C pz + + Vector 33 Occ=2.000000D+00 E=-2.124106D-01 Symmetry=au + MO Center= 7.4D-16, 1.8D-14, 1.2D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.417958 15 C pz 56 0.417958 16 C pz + 39 0.413866 11 C pz 44 0.413866 12 C pz + 15 -0.179049 3 C pz 20 -0.179049 4 C pz + 25 -0.176601 5 C pz 30 -0.176601 6 C pz + + Vector 34 Occ=2.000000D+00 E=-1.951027D-01 Symmetry=bg + MO Center= -5.4D-16, 4.2D-17, 1.6D-22, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.463089 3 C pz 20 -0.463089 4 C pz + 25 0.458160 5 C pz 30 -0.458160 6 C pz + + Vector 35 Occ=2.000000D+00 E=-1.531035D-01 Symmetry=bg + MO Center= -7.1D-18, -1.1D-15, -1.9D-21, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.397504 15 C pz 56 -0.397504 16 C pz + 5 0.387454 1 C pz 10 -0.387454 2 C pz + 25 -0.228709 5 C pz 30 0.228709 6 C pz + 39 0.223749 11 C pz 44 -0.223749 12 C pz + 15 0.216968 3 C pz 20 -0.216968 4 C pz + + Vector 36 Occ=0.000000D+00 E= 3.740004D-02 Symmetry=au + MO Center= -1.7D-16, 2.0D-15, -1.2D-16, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.449940 15 C pz 56 -0.449940 16 C pz + 5 0.442397 1 C pz 10 0.442397 2 C pz + 25 -0.276404 5 C pz 30 -0.276404 6 C pz + 39 0.256431 11 C pz 44 0.256431 12 C pz + 15 -0.233074 3 C pz 20 -0.233074 4 C pz + + Vector 37 Occ=0.000000D+00 E= 9.032798D-02 Symmetry=au + MO Center= -1.3D-17, 1.7D-16, 2.9D-19, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.582537 3 C pz 20 0.582537 4 C pz + 25 -0.553598 5 C pz 30 -0.553598 6 C pz + 5 -0.031415 1 C pz 10 -0.031415 2 C pz + + Vector 38 Occ=0.000000D+00 E= 1.105755D-01 Symmetry=bg + MO Center= -1.7D-17, -5.5D-16, -6.7D-21, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.522278 11 C pz 44 -0.522278 12 C pz + 51 -0.523165 15 C pz 56 0.523165 16 C pz + 15 0.240480 3 C pz 20 -0.240480 4 C pz + 25 -0.231965 5 C pz 30 0.231965 6 C pz + + Vector 39 Occ=0.000000D+00 E= 1.821609D-01 Symmetry=au + MO Center= 4.7D-16, -3.4D-17, -2.5D-17, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.528932 11 C pz 44 -0.528932 12 C pz + 5 0.497606 1 C pz 10 0.497606 2 C pz + 51 0.379339 15 C pz 56 0.379339 16 C pz + 25 -0.199906 5 C pz 30 -0.199906 6 C pz + 15 -0.166322 3 C pz 20 -0.166322 4 C pz + + Vector 40 Occ=0.000000D+00 E= 2.725078D-01 Symmetry=bg + MO Center= 1.5D-17, 2.7D-16, -5.5D-22, r^2= 3.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.543560 1 C pz 10 -0.543560 2 C pz + 25 0.467299 5 C pz 30 -0.467299 6 C pz + 15 -0.464212 3 C pz 20 0.464212 4 C pz + 39 0.287453 11 C pz 44 -0.287453 12 C pz + 51 -0.155817 15 C pz 56 0.155817 16 C pz + + Vector 41 Occ=0.000000D+00 E= 3.321631D-01 Symmetry=ag + MO Center= -9.0D-16, 8.7D-15, -8.1D-18, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 -0.423466 9 H s 34 -0.423466 10 H s + 31 -0.412762 7 H s 32 -0.412762 8 H s + 2 0.402947 1 C s 7 0.402947 2 C s + 59 -0.356387 19 H s 60 -0.356387 20 H s + 38 -0.338668 11 C py 43 0.338668 12 C py - Vector 33 Occ=2.000000D+00 E=-2.124650D-01 Symmetry=au - MO Center= -2.5D-15, 3.2D-14, -8.9D-16, r^2= 1.1D+01 + Vector 42 Occ=0.000000D+00 E= 3.407507D-01 Symmetry=bu + MO Center= -2.1D-15, 1.5D-15, 8.3D-20, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 0.417910 15 C pz 56 0.417910 16 C pz - 39 0.413785 11 C pz 44 0.413785 12 C pz - 15 -0.179148 3 C pz 20 -0.179148 4 C pz - 25 -0.176693 5 C pz 30 -0.176693 6 C pz + 45 0.433532 13 H s 46 -0.433532 14 H s + 13 0.355615 3 C px 18 0.355615 4 C px + 37 0.345055 11 C px 42 0.345055 12 C px + 57 -0.323645 17 H s 58 0.323645 18 H s + 31 -0.319968 7 H s 32 0.319968 8 H s - Vector 34 Occ=2.000000D+00 E=-1.950570D-01 Symmetry=bg - MO Center= 3.4D-15, -2.4D-16, -3.3D-18, r^2= 2.7D+00 + Vector 43 Occ=0.000000D+00 E= 3.793545D-01 Symmetry=bu + MO Center= 1.1D-14, -1.0D-14, -2.3D-19, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.463098 3 C pz 20 -0.463098 4 C pz - 25 0.458162 5 C pz 30 -0.458162 6 C pz + 36 0.542803 11 C s 41 -0.542803 12 C s + 4 0.460601 1 C py 9 0.460601 2 C py + 33 0.411564 9 H s 34 -0.411564 10 H s + 59 0.346892 19 H s 60 -0.346892 20 H s + 2 0.335604 1 C s 7 -0.335604 2 C s - Vector 35 Occ=2.000000D+00 E=-1.531105D-01 Symmetry=bg - MO Center= 9.0D-17, -2.0D-15, 1.1D-18, r^2= 8.1D+00 + Vector 44 Occ=0.000000D+00 E= 3.816239D-01 Symmetry=ag + MO Center= -7.1D-15, -9.1D-16, 2.0D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 0.397304 15 C pz 56 -0.397304 16 C pz - 5 0.387657 1 C pz 10 -0.387657 2 C pz - 25 -0.228774 5 C pz 30 0.228774 6 C pz - 39 0.223581 11 C pz 44 -0.223581 12 C pz - 15 0.217057 3 C pz 20 -0.217057 4 C pz + 45 0.576120 13 H s 46 0.576120 14 H s + 12 0.393057 3 C s 17 0.393057 4 C s + 57 -0.394958 17 H s 58 -0.394958 18 H s + 36 -0.381551 11 C s 41 -0.381551 12 C s + 37 0.334539 11 C px 42 -0.334539 12 C px - Vector 36 Occ=0.000000D+00 E= 3.744591D-02 Symmetry=au - MO Center= 4.2D-16, -3.7D-31, -3.4D-16, r^2= 8.1D+00 + Vector 45 Occ=0.000000D+00 E= 4.109624D-01 Symmetry=ag + MO Center= 3.5D-14, -6.5D-14, 7.9D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 -0.449819 15 C pz 56 -0.449819 16 C pz - 5 0.442563 1 C pz 10 0.442563 2 C pz - 25 -0.276484 5 C pz 30 -0.276484 6 C pz - 39 0.256322 11 C pz 44 0.256322 12 C pz - 15 -0.233100 3 C pz 20 -0.233100 4 C pz + 48 0.651064 15 C s 53 0.651064 16 C s + 22 0.617166 5 C s 27 0.617166 6 C s + 57 -0.511603 17 H s 58 -0.511603 18 H s + 12 -0.451966 3 C s 17 -0.451966 4 C s + 59 -0.325195 19 H s 60 -0.325195 20 H s - Vector 37 Occ=0.000000D+00 E= 9.032264D-02 Symmetry=au - MO Center= -3.8D-14, 3.7D-15, 2.2D-16, r^2= 2.7D+00 + Vector 46 Occ=0.000000D+00 E= 4.119558D-01 Symmetry=bu + MO Center= -3.5D-14, 9.7D-14, 3.0D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.582541 3 C pz 20 0.582541 4 C pz - 25 -0.553553 5 C pz 30 -0.553553 6 C pz + 22 0.614074 5 C s 27 -0.614074 6 C s + 48 0.538910 15 C s 53 -0.538910 16 C s + 2 0.477328 1 C s 7 -0.477328 2 C s + 57 -0.447530 17 H s 58 0.447530 18 H s + 12 -0.442003 3 C s 17 0.442003 4 C s - Vector 38 Occ=0.000000D+00 E= 1.106422D-01 Symmetry=bg - MO Center= 4.1D-14, -1.3D-14, 2.1D-16, r^2= 1.1D+01 + Vector 47 Occ=0.000000D+00 E= 4.267398D-01 Symmetry=bu + MO Center= -4.0D-15, -7.4D-15, 2.9D-19, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 0.522254 11 C pz 44 -0.522254 12 C pz - 51 -0.523209 15 C pz 56 0.523209 16 C pz - 15 0.240543 3 C pz 20 -0.240543 4 C pz - 25 -0.232014 5 C pz 30 0.232014 6 C pz + 31 0.600408 7 H s 32 -0.600408 8 H s + 36 -0.455458 11 C s 41 0.455458 12 C s + 45 0.441221 13 H s 46 -0.441221 14 H s + 12 -0.359183 3 C s 17 0.359183 4 C s + 59 0.336773 19 H s 60 -0.336773 20 H s - Vector 39 Occ=0.000000D+00 E= 1.821888D-01 Symmetry=au - MO Center= 1.4D-15, 2.0D-14, 1.3D-16, r^2= 7.9D+00 + Vector 48 Occ=0.000000D+00 E= 4.397635D-01 Symmetry=ag + MO Center= 2.6D-15, 2.8D-15, 1.1D-17, r^2= 7.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 -0.529030 11 C pz 44 -0.529030 12 C pz - 5 0.497432 1 C pz 10 0.497432 2 C pz - 51 0.379541 15 C pz 56 0.379541 16 C pz - 25 -0.199861 5 C pz 30 -0.199861 6 C pz - 15 -0.166202 3 C pz 20 -0.166202 4 C pz + 2 0.784683 1 C s 7 0.784683 2 C s + 36 -0.563755 11 C s 41 -0.563755 12 C s + 12 -0.492712 3 C s 17 -0.492712 4 C s + 22 -0.416701 5 C s 27 -0.416701 6 C s + 48 0.408664 15 C s 53 0.408664 16 C s - Vector 40 Occ=0.000000D+00 E= 2.724733D-01 Symmetry=bg - MO Center= -4.1D-15, -9.4D-15, 9.0D-17, r^2= 3.8D+00 + Vector 49 Occ=0.000000D+00 E= 4.528658D-01 Symmetry=bu + MO Center= 8.9D-16, -2.3D-14, 7.2D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.543515 1 C pz 10 -0.543515 2 C pz - 25 0.467240 5 C pz 30 -0.467240 6 C pz - 15 -0.464141 3 C pz 20 0.464141 4 C pz - 39 0.287555 11 C pz 44 -0.287555 12 C pz - 51 -0.155949 15 C pz 56 0.155949 16 C pz + 48 0.712100 15 C s 53 -0.712100 16 C s + 57 -0.526302 17 H s 58 0.526302 18 H s + 33 0.472006 9 H s 34 -0.472006 10 H s + 36 -0.428776 11 C s 41 0.428776 12 C s + 22 -0.408078 5 C s 27 0.408078 6 C s - Vector 41 Occ=0.000000D+00 E= 3.321416D-01 Symmetry=ag - MO Center= 5.4D-15, 1.8D-14, -2.8D-16, r^2= 8.8D+00 + Vector 50 Occ=0.000000D+00 E= 4.781930D-01 Symmetry=ag + MO Center= -9.5D-16, -5.4D-15, 8.8D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 -0.423368 9 H s 34 -0.423368 10 H s - 31 -0.412811 7 H s 32 -0.412811 8 H s - 2 0.402435 1 C s 7 0.402435 2 C s - 59 -0.356499 19 H s 60 -0.356499 20 H s - 38 -0.338794 11 C py 43 0.338794 12 C py + 12 0.707149 3 C s 17 0.707149 4 C s + 22 -0.615274 5 C s 27 -0.615274 6 C s + 59 -0.477401 19 H s 60 -0.477401 20 H s + 48 0.416564 15 C s 53 0.416564 16 C s + 50 -0.384084 15 C py 55 0.384084 16 C py - Vector 42 Occ=0.000000D+00 E= 3.406629D-01 Symmetry=bu - MO Center= -8.1D-15, -1.5D-14, 1.6D-18, r^2= 1.0D+01 + Vector 51 Occ=0.000000D+00 E= 5.262549D-01 Symmetry=ag + MO Center= -1.4D-15, 2.7D-15, 3.1D-17, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.433703 13 H s 46 -0.433703 14 H s - 13 0.355087 3 C px 18 0.355087 4 C px - 37 0.344884 11 C px 42 0.344884 12 C px - 57 -0.324471 17 H s 58 0.324471 18 H s - 31 -0.319196 7 H s 32 0.319196 8 H s + 4 0.601501 1 C py 9 -0.601501 2 C py + 36 -0.488062 11 C s 41 -0.488062 12 C s + 13 -0.460506 3 C px 18 0.460506 4 C px + 2 -0.449505 1 C s 7 -0.449505 2 C s + 49 -0.343130 15 C px 54 0.343130 16 C px - Vector 43 Occ=0.000000D+00 E= 3.792966D-01 Symmetry=bu - MO Center= -1.2D-13, 3.3D-14, 4.5D-18, r^2= 7.7D+00 + Vector 52 Occ=0.000000D+00 E= 5.460159D-01 Symmetry=bu + MO Center= -5.0D-17, -5.9D-15, 4.5D-19, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.542699 11 C s 41 -0.542699 12 C s - 4 0.460617 1 C py 9 0.460617 2 C py - 33 0.411845 9 H s 34 -0.411845 10 H s - 59 0.346503 19 H s 60 -0.346503 20 H s - 2 0.335151 1 C s 7 -0.335151 2 C s + 12 0.647713 3 C s 17 -0.647713 4 C s + 3 -0.561679 1 C px 8 -0.561679 2 C px + 50 0.483902 15 C py 55 0.483902 16 C py + 24 -0.475211 5 C py 29 -0.475211 6 C py + 59 0.357420 19 H s 60 -0.357420 20 H s - Vector 44 Occ=0.000000D+00 E= 3.814198D-01 Symmetry=ag - MO Center= 1.2D-13, -4.6D-15, -4.1D-18, r^2= 1.1D+01 + Vector 53 Occ=0.000000D+00 E= 5.760086D-01 Symmetry=ag + MO Center= -2.1D-15, -1.0D-15, 9.1D-18, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.575440 13 H s 46 0.575440 14 H s - 57 -0.395682 17 H s 58 -0.395682 18 H s - 12 0.392592 3 C s 17 0.392592 4 C s - 36 -0.381119 11 C s 41 -0.381119 12 C s - 37 0.333941 11 C px 42 -0.333941 12 C px + 13 0.528704 3 C px 18 -0.528704 4 C px + 23 -0.531153 5 C px 28 0.531153 6 C px + 33 0.518705 9 H s 34 0.518705 10 H s + 31 -0.447274 7 H s 32 -0.447274 8 H s + 24 0.395998 5 C py 29 -0.395998 6 C py - Vector 45 Occ=0.000000D+00 E= 4.108891D-01 Symmetry=ag - MO Center= 2.0D-15, -4.9D-15, 8.7D-17, r^2= 1.1D+01 + Vector 54 Occ=0.000000D+00 E= 5.992037D-01 Symmetry=bu + MO Center= -2.2D-15, 8.5D-17, -9.9D-20, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.650147 15 C s 53 0.650147 16 C s - 22 0.617631 5 C s 27 0.617631 6 C s - 57 -0.510377 17 H s 58 -0.510377 18 H s - 12 -0.452237 3 C s 17 -0.452237 4 C s - 59 -0.325242 19 H s 60 -0.325242 20 H s + 14 0.721550 3 C py 19 0.721550 4 C py + 22 0.600464 5 C s 27 -0.600464 6 C s + 36 -0.417640 11 C s 41 0.417640 12 C s + 2 -0.397647 1 C s 7 0.397647 2 C s + 24 0.397526 5 C py 29 0.397526 6 C py - Vector 46 Occ=0.000000D+00 E= 4.118577D-01 Symmetry=bu - MO Center= 1.4D-14, -7.3D-15, -3.5D-16, r^2= 1.1D+01 + Vector 55 Occ=0.000000D+00 E= 6.251108D-01 Symmetry=bu + MO Center= 9.9D-16, 2.1D-14, 8.1D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.614459 5 C s 27 -0.614459 6 C s - 48 0.537728 15 C s 53 -0.537728 16 C s - 2 0.478074 1 C s 7 -0.478074 2 C s - 57 -0.446754 17 H s 58 0.446754 18 H s - 12 -0.443187 3 C s 17 0.443187 4 C s + 2 0.611677 1 C s 7 -0.611677 2 C s + 49 -0.526426 15 C px 54 -0.526426 16 C px + 38 0.479153 11 C py 43 0.479153 12 C py + 23 -0.370152 5 C px 28 -0.370152 6 C px + 57 0.360377 17 H s 58 -0.360377 18 H s - Vector 47 Occ=0.000000D+00 E= 4.266367D-01 Symmetry=bu - MO Center= -1.5D-14, -3.7D-14, 3.9D-17, r^2= 9.2D+00 + Vector 56 Occ=0.000000D+00 E= 6.395427D-01 Symmetry=ag + MO Center= 2.3D-15, -1.2D-14, 3.6D-18, r^2= 9.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 0.599852 7 H s 32 -0.599852 8 H s - 36 -0.455330 11 C s 41 0.455330 12 C s - 45 0.441107 13 H s 46 -0.441107 14 H s - 12 -0.358256 3 C s 17 0.358256 4 C s - 59 0.337822 19 H s 60 -0.337822 20 H s + 37 0.551083 11 C px 42 -0.551083 12 C px + 50 -0.534337 15 C py 55 0.534337 16 C py + 14 0.381696 3 C py 19 -0.381696 4 C py + 4 -0.364012 1 C py 9 0.364012 2 C py + 59 -0.332591 19 H s 60 -0.332591 20 H s - Vector 48 Occ=0.000000D+00 E= 4.396171D-01 Symmetry=ag - MO Center= -3.5D-15, 7.0D-14, -1.7D-17, r^2= 7.5D+00 + Vector 57 Occ=0.000000D+00 E= 6.829244D-01 Symmetry=ag + MO Center= 1.7D-15, 3.6D-15, 1.9D-18, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.784414 1 C s 7 0.784414 2 C s - 36 -0.563593 11 C s 41 -0.563593 12 C s - 12 -0.492886 3 C s 17 -0.492886 4 C s - 22 -0.415694 5 C s 27 -0.415694 6 C s - 48 0.409543 15 C s 53 0.409543 16 C s + 38 0.663484 11 C py 43 -0.663484 12 C py + 49 -0.579837 15 C px 54 0.579837 16 C px + 24 -0.448049 5 C py 29 0.448049 6 C py + 14 -0.393457 3 C py 19 0.393457 4 C py + 4 -0.383146 1 C py 9 0.383146 2 C py - Vector 49 Occ=0.000000D+00 E= 4.528141D-01 Symmetry=bu - MO Center= -1.4D-14, -4.1D-14, 5.9D-17, r^2= 1.2D+01 + Vector 58 Occ=0.000000D+00 E= 7.170271D-01 Symmetry=bu + MO Center= -9.2D-16, -6.7D-15, -2.5D-20, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.712558 15 C s 53 -0.712558 16 C s - 57 -0.526449 17 H s 58 0.526449 18 H s - 33 0.471697 9 H s 34 -0.471697 10 H s - 36 -0.429019 11 C s 41 0.429019 12 C s - 22 -0.407380 5 C s 27 0.407380 6 C s + 37 0.608003 11 C px 42 0.608003 12 C px + 50 -0.540558 15 C py 55 -0.540558 16 C py + 48 -0.535714 15 C s 53 0.535714 16 C s + 36 0.464727 11 C s 38 -0.463424 11 C py + 41 -0.464727 12 C s 43 -0.463424 12 C py - Vector 50 Occ=0.000000D+00 E= 4.781995D-01 Symmetry=ag - MO Center= 1.7D-14, -3.0D-14, -1.8D-16, r^2= 1.1D+01 + Vector 59 Occ=0.000000D+00 E= 7.794334D-01 Symmetry=ag + MO Center= 8.3D-16, 2.8D-15, -4.2D-17, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.706978 3 C s 17 0.706978 4 C s - 22 -0.614992 5 C s 27 -0.614992 6 C s - 59 -0.477345 19 H s 60 -0.477345 20 H s - 48 0.416901 15 C s 53 0.416901 16 C s - 50 -0.383754 15 C py 55 0.383754 16 C py + 3 0.702296 1 C px 8 -0.702296 2 C px + 14 -0.536465 3 C py 19 0.536465 4 C py + 23 -0.436180 5 C px 28 0.436180 6 C px + 37 0.428214 11 C px 42 -0.428214 12 C px + 24 -0.414247 5 C py 29 0.414247 6 C py - Vector 51 Occ=0.000000D+00 E= 5.262032D-01 Symmetry=ag - MO Center= 1.8D-15, 3.3D-15, -2.1D-17, r^2= 6.5D+00 + Vector 60 Occ=0.000000D+00 E= 7.946081D-01 Symmetry=bu + MO Center= 5.1D-16, -2.9D-15, -6.1D-20, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.601041 1 C py 9 -0.601041 2 C py - 36 -0.487768 11 C s 41 -0.487768 12 C s - 13 -0.460656 3 C px 18 0.460656 4 C px - 2 -0.449324 1 C s 7 -0.449324 2 C s - 49 -0.343007 15 C px 54 0.343007 16 C px + 4 0.657725 1 C py 9 0.657725 2 C py + 13 -0.566239 3 C px 18 -0.566239 4 C px + 23 0.500668 5 C px 28 0.500668 6 C px + 22 -0.418076 5 C s 27 0.418076 6 C s + 24 -0.389986 5 C py 29 -0.389986 6 C py center of mass @@ -1842,9 +2257,9 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2635.125650778422 0.266339930480 0.000000000000 - 0.266339930480 390.116666898836 0.000000000000 - 0.000000000000 0.000000000000 3025.242317677258 + 2635.475085331649 0.429282004814 0.000000000000 + 0.429282004814 390.021586877669 0.000000000000 + 0.000000000000 0.000000000000 3025.496672209317 Multipole analysis of the density --------------------------------- @@ -1853,23 +2268,24 @@ Divinylbenzene in STO-3G basis set - - - - ----- ----- ---- ------- 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 - 1 1 0 0 0.000000 0.000000 0.000000 0.000000 - 1 0 1 0 -0.000000 -0.000000 -0.000000 0.000000 - 1 0 0 1 -0.000000 -0.000000 -0.000000 0.000000 - - 2 2 0 0 -37.343759 -140.900429 -140.900429 244.457098 - 2 1 1 0 0.052012 2.913285 2.913285 -5.774558 - 2 1 0 1 -0.000000 -0.000000 -0.000000 0.000000 - 2 0 2 0 -37.702416 -768.250551 -768.250551 1498.798686 - 2 0 1 1 -0.000000 -0.000000 -0.000000 0.000000 - 2 0 0 2 -43.586768 -21.793384 -21.793384 0.000000 - + 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 + 1 0 1 0 0.000000 0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - Parallel integral file used 8 records with 0 large values + 2 2 0 0 -37.347012 -140.870066 -140.870066 244.393120 + 2 1 1 0 0.053664 2.951239 2.951239 -5.848814 + 2 1 0 1 0.000000 0.000000 0.000000 0.000000 + 2 0 2 0 -37.701637 -768.356504 -768.356504 1499.011371 + 2 0 1 1 0.000000 0.000000 0.000000 0.000000 + 2 0 0 2 -43.586500 -21.793250 -21.793250 0.000000 Line search: - step= 1.00 grad=-4.2D-05 hess= 1.8D-05 energy= -382.308260 mode=downhill - new step= 1.15 predicted energy= -382.308261 + step= 1.00 grad=-4.1D-05 hess= 1.8D-05 energy= -382.308259 mode=downhill + new step= 1.14 predicted energy= -382.308260 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 -------- Step 1 @@ -1883,26 +2299,26 @@ Divinylbenzene in STO-3G basis set No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.23489360 1.41633848 0.00000000 - 2 C 6.0000 -0.23489360 -1.41633848 0.00000000 - 3 C 6.0000 1.31378482 0.48913563 0.00000000 - 4 C 6.0000 -1.31378482 -0.48913563 0.00000000 - 5 C 6.0000 1.08693678 -0.89460429 0.00000000 - 6 C 6.0000 -1.08693678 0.89460429 0.00000000 - 7 H 1.0000 2.34436751 0.86975861 0.00000000 - 8 H 1.0000 -2.34436751 -0.86975861 0.00000000 - 9 H 1.0000 1.94305614 -1.58193333 0.00000000 - 10 H 1.0000 -1.94305614 1.58193333 0.00000000 - 11 C 6.0000 -0.53372272 -2.88402374 0.00000000 - 12 C 6.0000 0.53372272 2.88402374 0.00000000 - 13 H 1.0000 -1.60616081 -3.13004804 0.00000000 - 14 H 1.0000 1.60616081 3.13004804 0.00000000 - 15 C 6.0000 0.36346121 -3.88492101 0.00000000 - 16 C 6.0000 -0.36346121 3.88492101 0.00000000 - 17 H 1.0000 1.44545793 -3.70934848 0.00000000 - 18 H 1.0000 -1.44545793 3.70934848 0.00000000 - 19 H 1.0000 0.04530879 -4.93375331 0.00000000 - 20 H 1.0000 -0.04530879 4.93375331 0.00000000 + 1 C 6.0000 0.23468109 1.41619835 0.00000000 + 2 C 6.0000 -0.23468109 -1.41619835 0.00000000 + 3 C 6.0000 1.31365139 0.48929998 0.00000000 + 4 C 6.0000 -1.31365139 -0.48929998 0.00000000 + 5 C 6.0000 1.08700371 -0.89433901 0.00000000 + 6 C 6.0000 -1.08700371 0.89433901 0.00000000 + 7 H 1.0000 2.34394121 0.87047348 0.00000000 + 8 H 1.0000 -2.34394121 -0.87047348 0.00000000 + 9 H 1.0000 1.94266409 -1.58204025 0.00000000 + 10 H 1.0000 -1.94266409 1.58204025 0.00000000 + 11 C 6.0000 -0.53323219 -2.88386812 0.00000000 + 12 C 6.0000 0.53323219 2.88386812 0.00000000 + 13 H 1.0000 -1.60554416 -3.13005067 0.00000000 + 14 H 1.0000 1.60554416 3.13005067 0.00000000 + 15 C 6.0000 0.36362775 -3.88553175 0.00000000 + 16 C 6.0000 -0.36362775 3.88553175 0.00000000 + 17 H 1.0000 1.44554740 -3.71046509 0.00000000 + 18 H 1.0000 -1.44554740 3.71046509 0.00000000 + 19 H 1.0000 0.04439315 -4.93393567 0.00000000 + 20 H 1.0000 -0.04439315 4.93393567 0.00000000 Atomic Mass ----------- @@ -1911,7 +2327,7 @@ Divinylbenzene in STO-3G basis set H 1.007825 - Effective nuclear repulsion energy (a.u.) 445.8743961976 + Effective nuclear repulsion energy (a.u.) 445.8764836571 Nuclear Dipole moment (a.u.) ---------------------------- @@ -1973,9 +2389,9 @@ Divinylbenzene in STO-3G basis set Maximum number of iterations: 30 AO basis - number of functions: 60 number of shells: 40 - Convergence on energy requested: 1.00D-06 - Convergence on density requested: 1.00D-05 - Convergence on gradient requested: 5.00D-04 + Convergence on energy requested: 1.00D-06 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 XC Information -------------- @@ -2004,7 +2420,7 @@ Divinylbenzene in STO-3G basis set Convergence aids based upon iterative change in total energy or number of iterations. Levelshifting, if invoked, occurs when the - HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 DIIS, if invoked, will attempt to extrapolate using up to (NFOCK): 10 stored Fock matrices. @@ -2016,11 +2432,11 @@ Divinylbenzene in STO-3G basis set Screening Tolerance Information ------------------------------- - Density screening/tol_rho: 1.00D-10 + Density screening/tol_rho: 1.00D-10 AO Gaussian exp screening on grid/accAOfunc: 14 CD Gaussian exp screening on grid/accCDfunc: 20 XC Gaussian exp screening on grid/accXCfunc: 20 - Schwarz screening/accCoul: 1.00D-08 + Schwarz screening/accCoul: 1.00D-08 Loading old vectors from job with title : @@ -2047,17 +2463,8 @@ Divinylbenzene in STO-3G basis set 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag - Time after variat. SCF: 22.4 - Time prior to 1st pass: 22.4 - - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.167D+05 #integrals = 3.470D+05 #direct = 0.0% #cached =100.0% - + Time after variat. SCF: 8.7 + Time prior to 1st pass: 8.8 Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 @@ -2065,24 +2472,24 @@ Divinylbenzene in STO-3G basis set Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 10.94 10936722 + Heap Space remaining (MW): 5.89 5890482 Stack Space remaining (MW): 13.11 13106284 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.3082604208 -8.28D+02 2.39D-05 8.29D-07 25.8 - d= 0,ls=0.0,diis 2 -382.3082606378 -2.17D-07 4.90D-06 1.48D-08 26.8 + d= 0,ls=0.0,diis 1 -382.3082595282 -8.28D+02 2.31D-05 7.98D-07 9.5 + d= 0,ls=0.0,diis 2 -382.3082597353 -2.07D-07 4.54D-06 1.28D-08 10.1 - Total DFT energy = -382.308260637814 - One electron energy = -1400.517460653772 - Coulomb energy = 630.178289594640 - Exchange-Corr. energy = -57.843485776242 - Nuclear repulsion energy = 445.874396197560 + Total DFT energy = -382.308259735266 + One electron energy = -1400.520352004813 + Coulomb energy = 630.179357577184 + Exchange-Corr. energy = -57.843748964754 + Nuclear repulsion energy = 445.876483657118 - Numeric. integr. density = 69.999955439870 + Numeric. integr. density = 69.999955496331 - Total iterative time = 4.3s + Total iterative time = 1.4s @@ -2100,480 +2507,723 @@ Divinylbenzene in STO-3G basis set DFT Final Molecular Orbital Analysis ------------------------------------ - Vector 10 Occ=2.000000D+00 E=-9.992370D+00 Symmetry=ag - MO Center= -2.0D-17, 1.1D-16, -2.8D-33, r^2= 1.5D+01 + Vector 1 Occ=2.000000D+00 E=-1.002023D+01 Symmetry=bu + MO Center= -1.5D-11, -9.3D-11, -2.3D-33, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 47 0.700478 15 C s 52 0.700478 16 C s + 1 0.699297 1 C s 6 -0.699297 2 C s + 2 0.031568 1 C s 7 -0.031568 2 C s + 35 0.027340 11 C s 40 -0.027340 12 C s - Vector 11 Occ=2.000000D+00 E=-8.094835D-01 Symmetry=ag - MO Center= -3.6D-15, -1.0D-16, -1.5D-18, r^2= 3.0D+00 + Vector 2 Occ=2.000000D+00 E=-1.002018D+01 Symmetry=ag + MO Center= 1.5D-11, 9.3D-11, 1.8D-23, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.274628 1 C s 7 0.274628 2 C s - 12 0.247004 3 C s 17 0.247004 4 C s - 22 0.246791 5 C s 27 0.246791 6 C s + 1 0.699295 1 C s 6 0.699295 2 C s + 2 0.031361 1 C s 7 0.031361 2 C s + 35 -0.027703 11 C s 40 -0.027703 12 C s - Vector 12 Occ=2.000000D+00 E=-7.539665D-01 Symmetry=bu - MO Center= -2.4D-16, 2.0D-15, 2.4D-21, r^2= 7.8D+00 + Vector 3 Occ=2.000000D+00 E=-1.000809D+01 Symmetry=bu + MO Center= 2.7D-10, 1.4D-09, 1.1D-33, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 -0.297294 11 C s 41 0.297294 12 C s - 2 0.273790 1 C s 7 -0.273790 2 C s - 48 -0.209354 15 C s 53 0.209354 16 C s + 35 0.699821 11 C s 40 -0.699821 12 C s + 36 0.030783 11 C s 41 -0.030783 12 C s + 1 -0.027924 1 C s 6 0.027924 2 C s - Vector 13 Occ=2.000000D+00 E=-7.179934D-01 Symmetry=ag - MO Center= 2.9D-15, -7.8D-15, -7.3D-18, r^2= 1.1D+01 + Vector 4 Occ=2.000000D+00 E=-1.000809D+01 Symmetry=ag + MO Center= -2.7D-10, -1.4D-09, 7.8D-18, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.314948 11 C s 41 0.314948 12 C s - 48 0.309742 15 C s 53 0.309742 16 C s + 35 0.699738 11 C s 40 0.699738 12 C s + 36 0.030764 11 C s 41 0.030764 12 C s + 1 0.028131 1 C s 6 0.028131 2 C s - Vector 14 Occ=2.000000D+00 E=-6.997408D-01 Symmetry=bu - MO Center= 1.1D-15, -6.6D-16, -4.4D-21, r^2= 3.2D+00 + Vector 5 Occ=2.000000D+00 E=-1.000682D+01 Symmetry=bu + MO Center= 3.5D-10, -1.7D-10, 2.1D-29, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.356661 3 C s 17 -0.356661 4 C s - 22 0.324822 5 C s 27 -0.324822 6 C s + 21 0.612802 5 C s 26 -0.612802 6 C s + 11 -0.337257 3 C s 16 0.337257 4 C s + 22 0.030352 5 C s 27 -0.030352 6 C s + 1 -0.027561 1 C s 6 0.027561 2 C s - Vector 15 Occ=2.000000D+00 E=-6.675537D-01 Symmetry=bu - MO Center= -9.1D-16, 2.5D-15, 5.0D-20, r^2= 9.1D+00 + Vector 6 Occ=2.000000D+00 E=-1.000682D+01 Symmetry=ag + MO Center= -3.5D-10, 1.7D-10, 4.0D-33, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.299648 15 C s 53 -0.299648 16 C s - 2 0.274188 1 C s 7 -0.274188 2 C s - 22 -0.200478 5 C s 27 0.200478 6 C s + 21 0.597656 5 C s 26 0.597656 6 C s + 11 -0.364430 3 C s 16 -0.364430 4 C s + 22 0.029728 5 C s 27 0.029728 6 C s - Vector 16 Occ=2.000000D+00 E=-5.886425D-01 Symmetry=ag - MO Center= 1.2D-15, 4.1D-15, 1.1D-32, r^2= 8.5D+00 + Vector 7 Occ=2.000000D+00 E=-1.000608D+01 Symmetry=bu + MO Center= 7.4D-11, 8.4D-12, 1.9D-29, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.242818 15 C s 53 0.242818 16 C s - 22 0.232022 5 C s 27 0.232022 6 C s - 2 -0.207034 1 C s 7 -0.207034 2 C s - 14 -0.159569 3 C py 19 0.159569 4 C py - 36 -0.159724 11 C s 41 -0.159724 12 C s + 11 0.613559 3 C s 16 -0.613559 4 C s + 21 0.338624 5 C s 26 -0.338624 6 C s - Vector 17 Occ=2.000000D+00 E=-5.589534D-01 Symmetry=ag - MO Center= 4.8D-16, 4.4D-15, 6.4D-17, r^2= 5.1D+00 + Vector 8 Occ=2.000000D+00 E=-1.000595D+01 Symmetry=ag + MO Center= -7.4D-11, -4.7D-12, -6.0D-17, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.326189 3 C s 17 0.326189 4 C s - 3 0.185966 1 C px 8 -0.185966 2 C px - 22 -0.172243 5 C s 27 -0.172243 6 C s - 24 0.170193 5 C py 29 -0.170193 6 C py - 31 0.169694 7 H s 32 0.169694 8 H s + 11 0.597813 3 C s 16 0.597813 4 C s + 21 0.364704 5 C s 26 0.364704 6 C s + 1 0.028411 1 C s 6 0.028411 2 C s - Vector 18 Occ=2.000000D+00 E=-5.316846D-01 Symmetry=bu - MO Center= -6.9D-16, 4.1D-15, 1.8D-17, r^2= 1.2D+01 + Vector 9 Occ=2.000000D+00 E=-9.992356D+00 Symmetry=bu + MO Center= -6.4D-16, 9.0D-16, -2.1D-32, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.302585 11 C s 41 -0.302585 12 C s - 48 -0.249282 15 C s 53 0.249282 16 C s - 45 0.170564 13 H s 46 -0.170564 14 H s - 57 -0.160283 17 H s 58 0.160283 18 H s - 12 0.154479 3 C s 17 -0.154479 4 C s + 47 0.700478 15 C s 52 -0.700478 16 C s + 48 0.030860 15 C s 53 -0.030860 16 C s - Vector 19 Occ=2.000000D+00 E=-5.101375D-01 Symmetry=ag - MO Center= -1.9D-15, -4.0D-15, -7.0D-19, r^2= 7.5D+00 + Vector 10 Occ=2.000000D+00 E=-9.992356D+00 Symmetry=ag + MO Center= 2.5D-15, -4.9D-15, 8.5D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.202051 5 C px 28 -0.202051 6 C px - 13 0.183809 3 C px 18 -0.183809 4 C px - 36 0.180828 11 C s 41 0.180828 12 C s - 33 0.169625 9 H s 34 0.169625 10 H s - 22 0.166973 5 C s 27 0.166973 6 C s + 47 0.700478 15 C s 52 0.700478 16 C s + 48 0.030860 15 C s 53 0.030860 16 C s - Vector 20 Occ=2.000000D+00 E=-4.574324D-01 Symmetry=ag - MO Center= -3.9D-17, -9.3D-16, 1.1D-32, r^2= 9.5D+00 + Vector 11 Occ=2.000000D+00 E=-8.095545D-01 Symmetry=ag + MO Center= -4.9D-15, -1.6D-14, 9.2D-17, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.212864 15 C px 54 -0.212864 16 C px - 38 0.184723 11 C py 43 -0.184723 12 C py - 57 0.178969 17 H s 58 0.178969 18 H s - 45 -0.152629 13 H s 46 -0.152629 14 H s + 2 0.274617 1 C s 7 0.274617 2 C s + 12 0.247047 3 C s 17 0.247047 4 C s + 22 0.246815 5 C s 27 0.246815 6 C s + 36 0.127582 11 C s 41 0.127582 12 C s + 1 -0.107836 1 C s 6 -0.107836 2 C s - Vector 21 Occ=2.000000D+00 E=-4.393235D-01 Symmetry=bu - MO Center= 1.2D-16, -5.4D-15, 3.3D-17, r^2= 1.0D+01 + Vector 12 Occ=2.000000D+00 E=-7.539475D-01 Symmetry=bu + MO Center= 1.8D-15, 1.6D-14, 1.7D-33, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.219917 11 C px 42 0.219917 12 C px - 50 0.210050 15 C py 55 0.210050 16 C py - 14 0.184780 3 C py 19 0.184780 4 C py - 59 -0.177814 19 H s 60 0.177814 20 H s - 45 -0.155851 13 H s 46 0.155851 14 H s + 36 -0.297191 11 C s 41 0.297191 12 C s + 2 0.274001 1 C s 7 -0.274001 2 C s + 48 -0.209126 15 C s 53 0.209126 16 C s + 35 0.113810 11 C s 40 -0.113810 12 C s + 22 -0.112947 5 C s 27 0.112947 6 C s - Vector 22 Occ=2.000000D+00 E=-4.106547D-01 Symmetry=bu - MO Center= 2.6D-15, -1.1D-16, -1.7D-17, r^2= 6.8D+00 + Vector 13 Occ=2.000000D+00 E=-7.179410D-01 Symmetry=ag + MO Center= -2.5D-14, -4.2D-14, 1.0D-15, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.234310 1 C s 7 -0.234310 2 C s - 33 0.231015 9 H s 34 -0.231015 10 H s - 31 -0.225295 7 H s 32 0.225295 8 H s - 13 -0.220099 3 C px 18 -0.220099 4 C px - 24 -0.178744 5 C py 29 -0.178744 6 C py + 36 0.315023 11 C s 41 0.315023 12 C s + 48 0.309772 15 C s 53 0.309772 16 C s + 12 -0.121012 3 C s 17 -0.121012 4 C s + 35 -0.119312 11 C s 40 -0.119312 12 C s + 47 -0.117450 15 C s 52 -0.117450 16 C s - Vector 23 Occ=2.000000D+00 E=-3.978950D-01 Symmetry=bu - MO Center= 4.5D-16, 1.5D-16, 5.3D-32, r^2= 8.8D+00 + Vector 14 Occ=2.000000D+00 E=-6.997956D-01 Symmetry=bu + MO Center= 2.8D-14, 1.4D-14, 1.9D-25, r^2= 3.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.251353 5 C px 28 0.251353 6 C px - 49 0.251065 15 C px 54 0.251065 16 C px - 3 -0.218929 1 C px 8 -0.218929 2 C px - 57 0.215641 17 H s 58 -0.215641 18 H s - 38 0.181801 11 C py 43 0.181801 12 C py + 12 0.356615 3 C s 17 -0.356615 4 C s + 22 0.324869 5 C s 27 -0.324869 6 C s + 11 -0.132144 3 C s 16 0.132144 4 C s + 3 0.124966 1 C px 8 0.124966 2 C px + 21 -0.120443 5 C s 26 0.120443 6 C s - Vector 24 Occ=2.000000D+00 E=-3.961519D-01 Symmetry=ag - MO Center= -3.0D-16, 2.9D-15, 4.2D-17, r^2= 1.5D+01 + Vector 15 Occ=2.000000D+00 E=-6.675782D-01 Symmetry=bu + MO Center= -5.0D-16, 3.5D-14, 2.2D-25, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 0.338901 15 C py 55 -0.338901 16 C py - 59 -0.262013 19 H s 60 -0.262013 20 H s - 37 0.252237 11 C px 42 -0.252237 12 C px + 48 0.299842 15 C s 53 -0.299842 16 C s + 2 0.273924 1 C s 7 -0.273924 2 C s + 22 -0.200332 5 C s 27 0.200332 6 C s + 36 0.136967 11 C s 41 -0.136967 12 C s + 38 -0.129039 11 C py 43 -0.129039 12 C py - Vector 25 Occ=2.000000D+00 E=-3.739255D-01 Symmetry=bu - MO Center= 1.0D-15, -1.3D-15, -1.6D-31, r^2= 4.4D+00 + Vector 16 Occ=2.000000D+00 E=-5.886861D-01 Symmetry=ag + MO Center= -1.1D-15, -4.8D-15, -7.8D-17, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.308701 3 C px 18 0.308701 4 C px - 31 0.253687 7 H s 32 -0.253687 8 H s - 24 -0.224878 5 C py 29 -0.224878 6 C py - 33 0.217137 9 H s 34 -0.217137 10 H s - 23 0.188223 5 C px 28 0.188223 6 C px + 48 0.242838 15 C s 53 0.242838 16 C s + 22 0.232068 5 C s 27 0.232068 6 C s + 2 -0.206924 1 C s 7 -0.206924 2 C s + 14 -0.159612 3 C py 19 0.159612 4 C py + 36 -0.159699 11 C s 41 -0.159699 12 C s - Vector 26 Occ=2.000000D+00 E=-3.512171D-01 Symmetry=bu - MO Center= -3.8D-16, 1.7D-15, -1.5D-18, r^2= 8.9D+00 + Vector 17 Occ=2.000000D+00 E=-5.590261D-01 Symmetry=ag + MO Center= -2.2D-15, -1.8D-14, -7.7D-17, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 -0.245335 15 C py 55 -0.245335 16 C py - 14 0.224936 3 C py 19 0.224936 4 C py - 37 -0.201137 11 C px 42 -0.201137 12 C px - 24 -0.194395 5 C py 29 -0.194395 6 C py - 38 0.186485 11 C py 43 0.186485 12 C py + 12 0.326142 3 C s 17 0.326142 4 C s + 3 0.185942 1 C px 8 -0.185942 2 C px + 22 -0.172196 5 C s 27 -0.172196 6 C s + 24 0.170280 5 C py 29 -0.170280 6 C py + 31 0.169612 7 H s 32 0.169612 8 H s - Vector 27 Occ=2.000000D+00 E=-3.472574D-01 Symmetry=ag - MO Center= -2.2D-16, -3.3D-15, -1.3D-16, r^2= 1.2D+01 + Vector 18 Occ=2.000000D+00 E=-5.317061D-01 Symmetry=bu + MO Center= 4.2D-15, 4.6D-15, -2.7D-25, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.295628 15 C px 54 -0.295628 16 C px - 57 0.268143 17 H s 58 0.268143 18 H s - 37 -0.207885 11 C px 42 0.207885 12 C px - 45 0.199869 13 H s 46 0.199869 14 H s - 31 -0.155783 7 H s 32 -0.155783 8 H s + 36 0.302625 11 C s 41 -0.302625 12 C s + 48 -0.249284 15 C s 53 0.249284 16 C s + 45 0.170555 13 H s 46 -0.170555 14 H s + 57 -0.160282 17 H s 58 0.160282 18 H s + 12 0.154494 3 C s 17 -0.154494 4 C s - Vector 28 Occ=2.000000D+00 E=-3.244846D-01 Symmetry=au - MO Center= -2.5D-16, 2.5D-15, 2.6D-17, r^2= 3.6D+00 + Vector 19 Occ=2.000000D+00 E=-5.101668D-01 Symmetry=ag + MO Center= -3.4D-16, -2.1D-15, -6.8D-33, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.337533 1 C pz 10 0.337533 2 C pz - 15 0.297863 3 C pz 20 0.297863 4 C pz - 25 0.297271 5 C pz 30 0.297271 6 C pz - 39 0.173997 11 C pz 44 0.173997 12 C pz + 23 0.202145 5 C px 28 -0.202145 6 C px + 13 0.183957 3 C px 18 -0.183957 4 C px + 36 0.180728 11 C s 41 0.180728 12 C s + 33 0.169605 9 H s 34 0.169605 10 H s + 22 0.166918 5 C s 27 0.166918 6 C s - Vector 29 Occ=2.000000D+00 E=-3.112174D-01 Symmetry=bu - MO Center= 1.1D-15, 8.4D-15, 5.6D-19, r^2= 1.2D+01 + Vector 20 Occ=2.000000D+00 E=-4.574623D-01 Symmetry=ag + MO Center= 1.4D-14, -2.4D-14, -1.3D-16, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.258846 13 H s 46 -0.258846 14 H s - 4 0.242273 1 C py 9 0.242273 2 C py - 57 0.230776 17 H s 58 -0.230776 18 H s - 37 -0.217077 11 C px 42 -0.217077 12 C px - 59 -0.212879 19 H s 60 0.212879 20 H s + 49 0.212866 15 C px 54 -0.212866 16 C px + 38 0.184633 11 C py 43 -0.184633 12 C py + 57 0.179013 17 H s 58 0.179013 18 H s + 45 -0.152701 13 H s 46 -0.152701 14 H s + 14 0.141044 3 C py 19 -0.141044 4 C py - Vector 30 Occ=2.000000D+00 E=-2.928207D-01 Symmetry=ag - MO Center= -1.0D-15, -6.1D-15, -1.5D-17, r^2= 6.2D+00 + Vector 21 Occ=2.000000D+00 E=-4.393303D-01 Symmetry=bu + MO Center= 1.3D-15, 4.0D-14, 9.4D-24, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 -0.278543 3 C py 19 0.278543 4 C py - 4 0.270017 1 C py 9 -0.270017 2 C py - 38 0.249377 11 C py 43 -0.249377 12 C py - 33 -0.237999 9 H s 34 -0.237999 10 H s - 24 0.235539 5 C py 29 -0.235539 6 C py + 37 0.219743 11 C px 42 0.219743 12 C px + 50 0.209860 15 C py 55 0.209860 16 C py + 14 0.184948 3 C py 19 0.184948 4 C py + 59 -0.177779 19 H s 60 0.177779 20 H s + 45 -0.155710 13 H s 46 0.155710 14 H s - Vector 31 Occ=2.000000D+00 E=-2.873910D-01 Symmetry=ag - MO Center= -1.1D-15, 0.0D+00, -8.7D-18, r^2= 6.1D+00 + Vector 22 Occ=2.000000D+00 E=-4.106897D-01 Symmetry=bu + MO Center= 7.8D-15, 2.9D-14, -1.5D-22, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 3 0.298497 1 C px 8 -0.298497 2 C px - 23 0.281526 5 C px 28 -0.281526 6 C px - 31 -0.259029 7 H s 32 -0.259029 8 H s - 13 -0.225060 3 C px 18 0.225060 4 C px - 45 -0.180856 13 H s 46 -0.180856 14 H s + 2 0.234321 1 C s 7 -0.234321 2 C s + 33 0.231107 9 H s 34 -0.231107 10 H s + 31 -0.225131 7 H s 32 0.225131 8 H s + 13 -0.220051 3 C px 18 -0.220051 4 C px + 24 -0.179013 5 C py 29 -0.179013 6 C py - Vector 32 Occ=2.000000D+00 E=-2.635357D-01 Symmetry=bg - MO Center= -1.3D-15, -2.0D-14, -2.1D-19, r^2= 7.8D+00 + Vector 23 Occ=2.000000D+00 E=-3.979090D-01 Symmetry=bu + MO Center= -2.4D-16, 1.1D-14, 1.0D-22, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 -0.376572 11 C pz 44 0.376572 12 C pz - 5 0.348816 1 C pz 10 -0.348816 2 C pz - 51 -0.271529 15 C pz 56 0.271529 16 C pz + 23 0.251202 5 C px 28 0.251202 6 C px + 49 0.251073 15 C px 54 0.251073 16 C px + 3 -0.218958 1 C px 8 -0.218958 2 C px + 57 0.215673 17 H s 58 -0.215673 18 H s + 38 0.181595 11 C py 43 0.181595 12 C py - Vector 33 Occ=2.000000D+00 E=-2.124827D-01 Symmetry=au - MO Center= -4.2D-14, -5.3D-14, 1.8D-16, r^2= 1.1D+01 + Vector 24 Occ=2.000000D+00 E=-3.961254D-01 Symmetry=ag + MO Center= -1.0D-14, -4.0D-14, -2.2D-30, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 0.417921 15 C pz 56 0.417921 16 C pz - 39 0.413770 11 C pz 44 0.413770 12 C pz - 15 -0.179136 3 C pz 20 -0.179136 4 C pz - 25 -0.176698 5 C pz 30 -0.176698 6 C pz + 50 0.339029 15 C py 55 -0.339029 16 C py + 59 -0.262303 19 H s 60 -0.262303 20 H s + 37 0.251804 11 C px 42 -0.251804 12 C px + 45 -0.145410 13 H s 46 -0.145410 14 H s + 24 0.136153 5 C py 29 -0.136153 6 C py - Vector 34 Occ=2.000000D+00 E=-1.950362D-01 Symmetry=bg - MO Center= 4.4D-14, -4.9D-15, -7.9D-17, r^2= 2.7D+00 + Vector 25 Occ=2.000000D+00 E=-3.739878D-01 Symmetry=bu + MO Center= -1.1D-14, -7.9D-15, -5.1D-32, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.463017 3 C pz 20 -0.463017 4 C pz - 25 0.458257 5 C pz 30 -0.458257 6 C pz + 13 0.308624 3 C px 18 0.308624 4 C px + 31 0.253684 7 H s 32 -0.253684 8 H s + 24 -0.224918 5 C py 29 -0.224918 6 C py + 33 0.217299 9 H s 34 -0.217299 10 H s + 23 0.188544 5 C px 28 0.188544 6 C px - Vector 35 Occ=2.000000D+00 E=-1.531254D-01 Symmetry=bg - MO Center= -7.7D-16, 7.7D-14, 5.2D-17, r^2= 8.1D+00 + Vector 26 Occ=2.000000D+00 E=-3.512134D-01 Symmetry=bu + MO Center= 1.5D-16, -1.1D-16, 9.0D-33, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 0.397299 15 C pz 56 -0.397299 16 C pz - 5 0.387679 1 C pz 10 -0.387679 2 C pz - 25 -0.228477 5 C pz 30 0.228477 6 C pz - 39 0.223539 11 C pz 44 -0.223539 12 C pz - 15 0.217362 3 C pz 20 -0.217362 4 C pz + 50 -0.245825 15 C py 55 -0.245825 16 C py + 14 0.224368 3 C py 19 0.224368 4 C py + 37 -0.200937 11 C px 42 -0.200937 12 C px + 24 -0.193813 5 C py 29 -0.193813 6 C py + 38 0.187094 11 C py 43 0.187094 12 C py - Vector 36 Occ=0.000000D+00 E= 3.743854D-02 Symmetry=au - MO Center= 2.9D-16, -2.7D-15, -4.4D-18, r^2= 8.1D+00 + Vector 27 Occ=2.000000D+00 E=-3.472827D-01 Symmetry=ag + MO Center= -5.8D-16, 3.9D-15, -1.2D-31, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 -0.449848 15 C pz 56 -0.449848 16 C pz - 5 0.442538 1 C pz 10 0.442538 2 C pz - 25 -0.276317 5 C pz 30 -0.276317 6 C pz - 39 0.256375 11 C pz 44 0.256375 12 C pz - 15 -0.233225 3 C pz 20 -0.233225 4 C pz + 49 0.295690 15 C px 54 -0.295690 16 C px + 57 0.268063 17 H s 58 0.268063 18 H s + 37 -0.208403 11 C px 42 0.208403 12 C px + 45 0.200143 13 H s 46 0.200143 14 H s + 31 -0.155772 7 H s 32 -0.155772 8 H s - Vector 37 Occ=0.000000D+00 E= 9.035798D-02 Symmetry=au - MO Center= -1.5D-15, -1.9D-16, 9.1D-17, r^2= 2.7D+00 + Vector 28 Occ=2.000000D+00 E=-3.245389D-01 Symmetry=au + MO Center= 1.6D-15, 1.0D-14, 4.6D-16, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.582517 3 C pz 20 0.582517 4 C pz - 25 -0.553601 5 C pz 30 -0.553601 6 C pz + 5 0.337540 1 C pz 10 0.337540 2 C pz + 15 0.297925 3 C pz 20 0.297925 4 C pz + 25 0.297318 5 C pz 30 0.297318 6 C pz + 39 0.173838 11 C pz 44 0.173838 12 C pz + 51 0.092304 15 C pz 56 0.092304 16 C pz - Vector 38 Occ=0.000000D+00 E= 1.106312D-01 Symmetry=bg - MO Center= 3.5D-16, -1.3D-14, -3.7D-17, r^2= 1.1D+01 + Vector 29 Occ=2.000000D+00 E=-3.112676D-01 Symmetry=bu + MO Center= 3.6D-16, 8.0D-16, 8.1D-25, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 0.522279 11 C pz 44 -0.522279 12 C pz - 51 -0.523210 15 C pz 56 0.523210 16 C pz - 15 0.240523 3 C pz 20 -0.240523 4 C pz - 25 -0.231982 5 C pz 30 0.231982 6 C pz + 45 0.259140 13 H s 46 -0.259140 14 H s + 4 0.242053 1 C py 9 0.242053 2 C py + 57 0.230714 17 H s 58 -0.230714 18 H s + 37 -0.217508 11 C px 42 -0.217508 12 C px + 59 -0.212568 19 H s 60 0.212568 20 H s - Vector 39 Occ=0.000000D+00 E= 1.821934D-01 Symmetry=au - MO Center= -1.8D-15, -1.0D-14, 1.2D-15, r^2= 7.9D+00 + Vector 30 Occ=2.000000D+00 E=-2.928830D-01 Symmetry=ag + MO Center= -3.1D-16, -5.5D-16, -4.4D-16, r^2= 6.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 -0.529016 11 C pz 44 -0.529016 12 C pz - 5 0.497475 1 C pz 10 0.497475 2 C pz - 51 0.379500 15 C pz 56 0.379500 16 C pz - 25 -0.199966 5 C pz 30 -0.199966 6 C pz - 15 -0.166124 3 C pz 20 -0.166124 4 C pz + 14 -0.278676 3 C py 19 0.278676 4 C py + 4 0.270439 1 C py 9 -0.270439 2 C py + 38 0.249907 11 C py 43 -0.249907 12 C py + 33 -0.237229 9 H s 34 -0.237229 10 H s + 24 0.235968 5 C py 29 -0.235968 6 C py - Vector 40 Occ=0.000000D+00 E= 2.725058D-01 Symmetry=bg - MO Center= 2.9D-15, 2.4D-14, -2.7D-16, r^2= 3.8D+00 + Vector 31 Occ=2.000000D+00 E=-2.873949D-01 Symmetry=ag + MO Center= -5.4D-16, 2.3D-16, -1.8D-17, r^2= 6.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.543524 1 C pz 10 -0.543524 2 C pz - 25 0.467292 5 C pz 30 -0.467292 6 C pz - 15 -0.464132 3 C pz 20 0.464132 4 C pz - 39 0.287531 11 C pz 44 -0.287531 12 C pz - 51 -0.155915 15 C pz 56 0.155915 16 C pz + 3 0.299134 1 C px 8 -0.299134 2 C px + 23 0.281917 5 C px 28 -0.281917 6 C px + 31 -0.259102 7 H s 32 -0.259102 8 H s + 13 -0.225689 3 C px 18 0.225689 4 C px + 45 -0.180553 13 H s 46 -0.180553 14 H s - Vector 41 Occ=0.000000D+00 E= 3.320931D-01 Symmetry=ag - MO Center= -4.9D-15, -8.9D-16, -2.1D-16, r^2= 8.8D+00 + Vector 32 Occ=2.000000D+00 E=-2.635095D-01 Symmetry=bg + MO Center= -4.9D-16, 6.8D-15, -5.2D-18, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 -0.423309 9 H s 34 -0.423309 10 H s - 31 -0.412659 7 H s 32 -0.412659 8 H s - 2 0.402539 1 C s 7 0.402539 2 C s - 59 -0.356214 19 H s 60 -0.356214 20 H s - 38 -0.338877 11 C py 43 0.338877 12 C py + 39 -0.376465 11 C pz 44 0.376465 12 C pz + 5 0.349047 1 C pz 10 -0.349047 2 C pz + 51 -0.271304 15 C pz 56 0.271304 16 C pz + 25 -0.133004 5 C pz 30 0.133004 6 C pz + 15 0.130758 3 C pz 20 -0.130758 4 C pz - Vector 42 Occ=0.000000D+00 E= 3.406682D-01 Symmetry=bu - MO Center= -1.8D-15, 4.6D-14, 4.1D-17, r^2= 1.0D+01 + Vector 33 Occ=2.000000D+00 E=-2.124193D-01 Symmetry=au + MO Center= 2.5D-15, -2.0D-14, -9.4D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.433671 13 H s 46 -0.433671 14 H s - 13 0.355024 3 C px 18 0.355024 4 C px - 37 0.344919 11 C px 42 0.344919 12 C px - 57 -0.324700 17 H s 58 0.324700 18 H s - 31 -0.318780 7 H s 32 0.318780 8 H s + 51 0.417973 15 C pz 56 0.417973 16 C pz + 39 0.413863 11 C pz 44 0.413863 12 C pz + 15 -0.179026 3 C pz 20 -0.179026 4 C pz + 25 -0.176594 5 C pz 30 -0.176594 6 C pz - Vector 43 Occ=0.000000D+00 E= 3.792676D-01 Symmetry=bu - MO Center= -1.2D-14, -8.7D-15, -5.0D-17, r^2= 7.7D+00 + Vector 34 Occ=2.000000D+00 E=-1.950883D-01 Symmetry=bg + MO Center= -4.2D-15, 4.2D-16, 1.3D-22, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.542103 11 C s 41 -0.542103 12 C s - 4 0.460447 1 C py 9 0.460447 2 C py - 33 0.412846 9 H s 34 -0.412846 10 H s - 59 0.345793 19 H s 60 -0.345793 20 H s - 2 0.334588 1 C s 7 -0.334588 2 C s + 15 0.463013 3 C pz 20 -0.463013 4 C pz + 25 0.458245 5 C pz 30 -0.458245 6 C pz - Vector 44 Occ=0.000000D+00 E= 3.814410D-01 Symmetry=ag - MO Center= 2.1D-14, -5.3D-14, -2.9D-17, r^2= 1.1D+01 + Vector 35 Occ=2.000000D+00 E=-1.531153D-01 Symmetry=bg + MO Center= 1.3D-16, 3.7D-15, -1.7D-21, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.574760 13 H s 46 0.574760 14 H s - 57 -0.396370 17 H s 58 -0.396370 18 H s - 12 0.392408 3 C s 17 0.392408 4 C s - 36 -0.380922 11 C s 41 -0.380922 12 C s - 37 0.333235 11 C px 42 -0.333235 12 C px + 51 0.397525 15 C pz 56 -0.397525 16 C pz + 5 0.387449 1 C pz 10 -0.387449 2 C pz + 25 -0.228430 5 C pz 30 0.228430 6 C pz + 39 0.223731 11 C pz 44 -0.223731 12 C pz + 15 0.217235 3 C pz 20 -0.217235 4 C pz - Vector 45 Occ=0.000000D+00 E= 4.109711D-01 Symmetry=ag - MO Center= 3.5D-13, -1.0D-12, -1.2D-16, r^2= 1.1D+01 + Vector 36 Occ=0.000000D+00 E= 3.738778D-02 Symmetry=au + MO Center= 2.4D-16, -2.0D-16, 1.6D-16, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.650630 15 C s 53 0.650630 16 C s - 22 0.617118 5 C s 27 0.617118 6 C s - 57 -0.509954 17 H s 58 -0.509954 18 H s - 12 -0.453631 3 C s 17 -0.453631 4 C s - 59 -0.325984 19 H s 60 -0.325984 20 H s + 51 -0.449986 15 C pz 56 -0.449986 16 C pz + 5 0.442348 1 C pz 10 0.442348 2 C pz + 25 -0.276241 5 C pz 30 -0.276241 6 C pz + 39 0.256498 11 C pz 44 0.256498 12 C pz + 15 -0.233182 3 C pz 20 -0.233182 4 C pz - Vector 46 Occ=0.000000D+00 E= 4.119513D-01 Symmetry=bu - MO Center= -3.7D-13, 1.0D-12, 2.4D-16, r^2= 1.1D+01 + Vector 37 Occ=0.000000D+00 E= 9.036270D-02 Symmetry=au + MO Center= -2.7D-15, 3.9D-16, -1.4D-18, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.614592 5 C s 27 -0.614592 6 C s - 48 0.537470 15 C s 53 -0.537470 16 C s - 2 0.478326 1 C s 7 -0.478326 2 C s - 57 -0.446650 17 H s 58 0.446650 18 H s - 12 -0.443517 3 C s 17 0.443517 4 C s + 15 0.582515 3 C pz 20 0.582515 4 C pz + 25 -0.553647 5 C pz 30 -0.553647 6 C pz + 5 -0.031345 1 C pz 10 -0.031345 2 C pz - Vector 47 Occ=0.000000D+00 E= 4.267666D-01 Symmetry=bu - MO Center= 8.9D-15, 2.2D-14, -1.0D-17, r^2= 9.2D+00 + Vector 38 Occ=0.000000D+00 E= 1.105562D-01 Symmetry=bg + MO Center= 2.2D-15, -9.5D-16, 4.4D-22, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 0.599346 7 H s 32 -0.599346 8 H s - 36 -0.456674 11 C s 41 0.456674 12 C s - 45 0.441702 13 H s 46 -0.441702 14 H s - 12 -0.356655 3 C s 17 0.356655 4 C s - 59 0.337782 19 H s 60 -0.337782 20 H s + 39 0.522305 11 C pz 44 -0.522305 12 C pz + 51 -0.523161 15 C pz 56 0.523161 16 C pz + 15 0.240452 3 C pz 20 -0.240452 4 C pz + 25 -0.231927 5 C pz 30 0.231927 6 C pz - Vector 48 Occ=0.000000D+00 E= 4.396606D-01 Symmetry=ag - MO Center= -6.3D-15, 7.0D-14, -8.4D-16, r^2= 7.5D+00 + Vector 39 Occ=0.000000D+00 E= 1.821615D-01 Symmetry=au + MO Center= 3.2D-16, 1.6D-15, 1.2D-16, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.784763 1 C s 7 0.784763 2 C s - 36 -0.564635 11 C s 41 -0.564635 12 C s - 12 -0.491689 3 C s 17 -0.491689 4 C s - 22 -0.416484 5 C s 27 -0.416484 6 C s - 48 0.409412 15 C s 53 0.409412 16 C s + 39 -0.528903 11 C pz 44 -0.528903 12 C pz + 5 0.497672 1 C pz 10 0.497672 2 C pz + 51 0.379271 15 C pz 56 0.379271 16 C pz + 25 -0.200009 5 C pz 30 -0.200009 6 C pz + 15 -0.166269 3 C pz 20 -0.166269 4 C pz - Vector 49 Occ=0.000000D+00 E= 4.526778D-01 Symmetry=bu - MO Center= -6.3D-16, -7.9D-14, 7.2D-17, r^2= 1.2D+01 + Vector 40 Occ=0.000000D+00 E= 2.725437D-01 Symmetry=bg + MO Center= 5.6D-16, -9.3D-16, -1.2D-22, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.713372 15 C s 53 -0.713372 16 C s - 57 -0.526528 17 H s 58 0.526528 18 H s - 33 0.470914 9 H s 34 -0.470914 10 H s - 36 -0.429011 11 C s 41 0.429011 12 C s - 22 -0.407486 5 C s 27 0.407486 6 C s + 5 0.543574 1 C pz 10 -0.543574 2 C pz + 25 0.467356 5 C pz 30 -0.467356 6 C pz + 15 -0.464215 3 C pz 20 0.464215 4 C pz + 39 0.287415 11 C pz 44 -0.287415 12 C pz + 51 -0.155765 15 C pz 56 0.155765 16 C pz - Vector 50 Occ=0.000000D+00 E= 4.781784D-01 Symmetry=ag - MO Center= -1.4D-15, -4.8D-15, -1.1D-16, r^2= 1.1D+01 + Vector 41 Occ=0.000000D+00 E= 3.321223D-01 Symmetry=ag + MO Center= -7.4D-15, -1.1D-14, -3.0D-17, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.707155 3 C s 17 0.707155 4 C s - 22 -0.614309 5 C s 27 -0.614309 6 C s - 59 -0.477628 19 H s 60 -0.477628 20 H s - 48 0.417099 15 C s 53 0.417099 16 C s - 50 -0.383922 15 C py 55 0.383922 16 C py + 33 -0.423426 9 H s 34 -0.423426 10 H s + 31 -0.412616 7 H s 32 -0.412616 8 H s + 2 0.403112 1 C s 7 0.403112 2 C s + 59 -0.356113 19 H s 60 -0.356113 20 H s + 38 -0.338726 11 C py 43 0.338726 12 C py - Vector 51 Occ=0.000000D+00 E= 5.263025D-01 Symmetry=ag - MO Center= -4.1D-16, -4.2D-17, 3.4D-17, r^2= 6.5D+00 + Vector 42 Occ=0.000000D+00 E= 3.407681D-01 Symmetry=bu + MO Center= 7.6D-15, 1.3D-14, -1.6D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.600868 1 C py 9 -0.600868 2 C py - 36 -0.487164 11 C s 41 -0.487164 12 C s - 13 -0.461924 3 C px 18 0.461924 4 C px - 2 -0.449382 1 C s 7 -0.449382 2 C s - 49 -0.343149 15 C px 54 0.343149 16 C px + 45 0.433483 13 H s 46 -0.433483 14 H s + 13 0.355628 3 C px 18 0.355628 4 C px + 37 0.345113 11 C px 42 0.345113 12 C px + 57 -0.323741 17 H s 58 0.323741 18 H s + 31 -0.319691 7 H s 32 0.319691 8 H s + Vector 43 Occ=0.000000D+00 E= 3.793366D-01 Symmetry=bu + MO Center= -2.4D-15, -3.9D-15, -3.8D-19, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.542275 11 C s 41 -0.542275 12 C s + 4 0.460444 1 C py 9 0.460444 2 C py + 33 0.412439 9 H s 34 -0.412439 10 H s + 59 0.346299 19 H s 60 -0.346299 20 H s + 2 0.335155 1 C s 7 -0.335155 2 C s - center of mass - -------------- - x = 0.00000000 y = 0.00000000 z = 0.00000000 + Vector 44 Occ=0.000000D+00 E= 3.816718D-01 Symmetry=ag + MO Center= 4.7D-15, 1.5D-15, -1.1D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.575597 13 H s 46 0.575597 14 H s + 57 -0.395498 17 H s 58 -0.395498 18 H s + 12 0.392939 3 C s 17 0.392939 4 C s + 36 -0.381435 11 C s 41 -0.381435 12 C s + 37 0.333978 11 C px 42 -0.333978 12 C px - moments of inertia (a.u.) - ------------------ - 2635.639444894080 0.306669035348 0.000000000000 - 0.306669035348 390.010183636321 0.000000000000 - 0.000000000000 0.000000000000 3025.649628530401 + Vector 45 Occ=0.000000D+00 E= 4.110476D-01 Symmetry=ag + MO Center= 3.3D-14, -1.0D-13, -1.0D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.651637 15 C s 53 0.651637 16 C s + 22 0.616623 5 C s 27 0.616623 6 C s + 57 -0.511384 17 H s 58 -0.511384 18 H s + 12 -0.453202 3 C s 17 -0.453202 4 C s + 59 -0.325876 19 H s 60 -0.325876 20 H s - Multipole analysis of the density - --------------------------------- + Vector 46 Occ=0.000000D+00 E= 4.120554D-01 Symmetry=bu + MO Center= -3.6D-14, 1.0D-13, 1.3D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.614140 5 C s 27 -0.614140 6 C s + 48 0.538850 15 C s 53 -0.538850 16 C s + 2 0.477452 1 C s 7 -0.477452 2 C s + 57 -0.447551 17 H s 58 0.447551 18 H s + 12 -0.442137 3 C s 17 0.442137 4 C s - L x y z total alpha beta nuclear - - - - - ----- ----- ---- ------- - 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 + Vector 47 Occ=0.000000D+00 E= 4.268729D-01 Symmetry=bu + MO Center= -4.3D-15, 1.0D-15, 1.5D-18, r^2= 9.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.600026 7 H s 32 -0.600026 8 H s + 36 -0.456709 11 C s 41 0.456709 12 C s + 45 0.441780 13 H s 46 -0.441780 14 H s + 12 -0.357845 3 C s 17 0.357845 4 C s + 59 0.336587 19 H s 60 -0.336587 20 H s - 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 - 1 0 1 0 -0.000000 -0.000000 -0.000000 0.000000 - 1 0 0 1 -0.000000 -0.000000 -0.000000 0.000000 + Vector 48 Occ=0.000000D+00 E= 4.398241D-01 Symmetry=ag + MO Center= 5.0D-15, -1.7D-14, -8.8D-17, r^2= 7.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.785035 1 C s 7 0.785035 2 C s + 36 -0.564729 11 C s 41 -0.564729 12 C s + 12 -0.491591 3 C s 17 -0.491591 4 C s + 22 -0.417565 5 C s 27 -0.417565 6 C s + 48 0.408422 15 C s 53 0.408422 16 C s - 2 2 0 0 -37.343460 -140.874576 -140.874576 244.405691 - 2 1 1 0 0.051245 2.923748 2.923748 -5.796252 - 2 1 0 1 0.000000 0.000000 0.000000 0.000000 - 2 0 2 0 -37.704356 -768.390429 -768.390429 1499.076502 - 2 0 1 1 0.000000 0.000000 0.000000 0.000000 - 2 0 0 2 -43.586682 -21.793341 -21.793341 0.000000 + Vector 49 Occ=0.000000D+00 E= 4.527489D-01 Symmetry=bu + MO Center= -2.1D-15, 2.7D-14, -9.3D-19, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.712772 15 C s 53 -0.712772 16 C s + 57 -0.526343 17 H s 58 0.526343 18 H s + 33 0.471342 9 H s 34 -0.471342 10 H s + 36 -0.428730 11 C s 41 0.428730 12 C s + 22 -0.408282 5 C s 27 0.408282 6 C s + Vector 50 Occ=0.000000D+00 E= 4.781739D-01 Symmetry=ag + MO Center= -7.2D-16, -1.2D-14, -3.9D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.707342 3 C s 17 0.707342 4 C s + 22 -0.614693 5 C s 27 -0.614693 6 C s + 59 -0.477661 19 H s 60 -0.477661 20 H s + 48 0.416690 15 C s 53 0.416690 16 C s + 50 -0.384281 15 C py 55 0.384281 16 C py - Parallel integral file used 8 records with 0 large values + Vector 51 Occ=0.000000D+00 E= 5.263541D-01 Symmetry=ag + MO Center= 1.2D-15, -1.2D-15, -1.8D-17, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.601405 1 C py 9 -0.601405 2 C py + 36 -0.487545 11 C s 41 -0.487545 12 C s + 13 -0.461640 3 C px 18 0.461640 4 C px + 2 -0.449596 1 C s 7 -0.449596 2 C s + 49 -0.343278 15 C px 54 0.343278 16 C px + Vector 52 Occ=0.000000D+00 E= 5.459728D-01 Symmetry=bu + MO Center= 1.8D-15, 5.4D-15, 9.5D-20, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.647709 3 C s 17 -0.647709 4 C s + 3 -0.561794 1 C px 8 -0.561794 2 C px + 50 0.483960 15 C py 55 0.483960 16 C py + 24 -0.474789 5 C py 29 -0.474789 6 C py + 59 0.357599 19 H s 60 -0.357599 20 H s + Vector 53 Occ=0.000000D+00 E= 5.759572D-01 Symmetry=ag + MO Center= -4.6D-15, -3.5D-15, 1.9D-17, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 -0.532410 5 C px 28 0.532410 6 C px + 13 0.527486 3 C px 18 -0.527486 4 C px + 33 0.518626 9 H s 34 0.518626 10 H s + 31 -0.447097 7 H s 32 -0.447097 8 H s + 24 0.395392 5 C py 29 -0.395392 6 C py - NWChem DFT Gradient Module - -------------------------- + Vector 54 Occ=0.000000D+00 E= 5.993143D-01 Symmetry=bu + MO Center= 5.6D-15, 2.8D-15, 1.8D-18, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 0.721318 3 C py 19 0.721318 4 C py + 22 0.600546 5 C s 27 -0.600546 6 C s + 36 -0.417988 11 C s 41 0.417988 12 C s + 2 -0.396437 1 C s 7 0.396437 2 C s + 24 0.397939 5 C py 29 0.397939 6 C py + Vector 55 Occ=0.000000D+00 E= 6.251439D-01 Symmetry=bu + MO Center= 2.8D-16, 1.7D-14, 2.1D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.612156 1 C s 7 -0.612156 2 C s + 49 -0.526038 15 C px 54 -0.526038 16 C px + 38 0.478943 11 C py 43 0.478943 12 C py + 23 -0.370757 5 C px 28 -0.370757 6 C px + 57 0.359934 17 H s 58 -0.359934 18 H s - Divinylbenzene in STO-3G basis set + Vector 56 Occ=0.000000D+00 E= 6.395057D-01 Symmetry=ag + MO Center= -6.7D-17, -1.2D-14, 3.1D-17, r^2= 9.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.551339 11 C px 42 -0.551339 12 C px + 50 -0.534325 15 C py 55 0.534325 16 C py + 14 0.381456 3 C py 19 -0.381456 4 C py + 4 -0.363943 1 C py 9 0.363943 2 C py + 59 -0.332826 19 H s 60 -0.332826 20 H s + Vector 57 Occ=0.000000D+00 E= 6.829413D-01 Symmetry=ag + MO Center= 1.5D-16, -7.5D-15, -1.4D-17, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.663549 11 C py 43 -0.663549 12 C py + 49 -0.579745 15 C px 54 0.579745 16 C px + 24 -0.447883 5 C py 29 0.447883 6 C py + 14 -0.393639 3 C py 19 0.393639 4 C py + 4 -0.383371 1 C py 9 0.383371 2 C py + Vector 58 Occ=0.000000D+00 E= 7.169851D-01 Symmetry=bu + MO Center= -5.9D-17, 1.3D-15, 3.5D-20, r^2= 9.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.608000 11 C px 42 0.608000 12 C px + 50 -0.540554 15 C py 55 -0.540554 16 C py + 48 -0.535394 15 C s 53 0.535394 16 C s + 36 0.464456 11 C s 38 -0.463228 11 C py + 41 -0.464456 12 C s 43 -0.463228 12 C py - charge = 0.00 - wavefunction = closed shell + Vector 59 Occ=0.000000D+00 E= 7.794948D-01 Symmetry=ag + MO Center= -1.0D-15, -2.3D-16, 1.3D-16, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.702284 1 C px 8 -0.702284 2 C px + 14 -0.536801 3 C py 19 0.536801 4 C py + 23 -0.436207 5 C px 28 0.436207 6 C px + 37 0.427987 11 C px 42 -0.427987 12 C px + 24 -0.414694 5 C py 29 0.414694 6 C py - Using symmetry + Vector 60 Occ=0.000000D+00 E= 7.946649D-01 Symmetry=bu + MO Center= -3.3D-16, 5.3D-17, 1.7D-21, r^2= 3.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.657732 1 C py 9 0.657732 2 C py + 13 -0.565949 3 C px 18 -0.565949 4 C px + 23 0.501235 5 C px 28 0.501235 6 C px + 22 -0.418664 5 C s 27 0.418664 6 C s + 24 -0.389169 5 C py 29 -0.389169 6 C py - DFT ENERGY GRADIENTS + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 - atom coordinates gradient - x y z x y z - 1 C 0.443885 2.676492 0.000000 -0.000243 -0.000044 0.000000 - 2 C -0.443885 -2.676492 0.000000 0.000243 0.000044 0.000000 - 3 C 2.482693 0.924332 0.000000 -0.000056 0.000044 0.000000 - 4 C -2.482693 -0.924332 0.000000 0.000056 -0.000044 -0.000000 - 5 C 2.054013 -1.690557 0.000000 -0.000094 0.000186 0.000000 - 6 C -2.054013 1.690557 0.000000 0.000094 -0.000186 0.000000 - 7 H 4.430212 1.643605 0.000000 0.000011 -0.000087 0.000000 - 8 H -4.430212 -1.643605 0.000000 -0.000011 0.000087 0.000000 - 9 H 3.671844 -2.989421 0.000000 0.000084 -0.000264 0.000000 - 10 H -3.671844 2.989421 0.000000 -0.000084 0.000264 0.000000 - 11 C -1.008590 -5.450015 0.000000 0.000041 -0.000237 0.000000 - 12 C 1.008590 5.450015 0.000000 -0.000041 0.000237 0.000000 - 13 H -3.035204 -5.914933 0.000000 0.000101 0.000001 0.000000 - 14 H 3.035204 5.914933 0.000000 -0.000101 -0.000001 0.000000 - 15 C 0.686842 -7.341436 0.000000 -0.000366 -0.000079 0.000000 - 16 C -0.686842 7.341436 0.000000 0.000366 0.000079 0.000000 - 17 H 2.731519 -7.009652 0.000000 0.000117 -0.000008 0.000000 - 18 H -2.731519 7.009652 0.000000 -0.000117 0.000008 0.000000 - 19 H 0.085621 -9.323442 0.000000 0.000115 0.000135 0.000000 - 20 H -0.085621 9.323442 0.000000 -0.000115 -0.000135 0.000000 + moments of inertia (a.u.) + ------------------ + 2635.992442470797 0.488683785333 0.000000000000 + 0.488683785333 389.911239853950 0.000000000000 + 0.000000000000 0.000000000000 3025.903682324748 + + Multipole analysis of the density + --------------------------------- + + L x y z total alpha beta nuclear + - - - - ----- ----- ---- ------- + 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 0.000000 + 1 0 1 0 0.000000 0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 0.000000 + + 2 2 0 0 -37.347251 -140.842300 -140.842300 244.337349 + 2 1 1 0 0.053163 2.966039 2.966039 -5.878916 + 2 1 0 1 0.000000 0.000000 0.000000 0.000000 + 2 0 2 0 -37.703370 -768.498883 -768.498883 1499.294397 + 2 0 1 1 0.000000 0.000000 0.000000 0.000000 + 2 0 0 2 -43.586385 -21.793192 -21.793192 0.000000 + + + General Information + ------------------- + SCF calculation type: DFT + Wavefunction type: closed shell. + No. of atoms : 20 + No. of electrons : 70 + Alpha electrons : 35 + Beta electrons : 35 + Charge : 0 + Spin multiplicity: 1 + Use of symmetry is: on ; symmetry adaption is: on + Maximum number of iterations: 30 + AO basis - number of functions: 60 + number of shells: 40 + Convergence on energy requested: 1.00D-06 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 + + XC Information + -------------- + B3LYP Method XC Potential + Hartree-Fock (Exact) Exchange 0.200 + Slater Exchange Functional 0.800 local + Becke 1988 Exchange Functional 0.720 non-local + Lee-Yang-Parr Correlation Functional 0.810 + VWN I RPA Correlation Functional 0.190 local + + Grid Information + ---------------- + Grid used for XC integration: medium + Radial quadrature: Mura-Knowles + Angular quadrature: Lebedev. + Tag B.-S. Rad. Rad. Pts. Rad. Cut. Ang. Pts. + --- ---------- --------- --------- --------- + C 0.70 49 12.0 434 + H 0.35 45 12.0 434 + Grid pruning is: on + Number of quadrature shells: 470 + Spatial weights used: Erf1 + + Convergence Information + ----------------------- + Convergence aids based upon iterative change in + total energy or number of iterations. + Levelshifting, if invoked, occurs when the + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + DIIS, if invoked, will attempt to extrapolate + using up to (NFOCK): 10 stored Fock matrices. + + Damping( 0%) Levelshifting(0.5) DIIS + --------------- ------------------- --------------- + dE on: start ASAP start + dE off: 2 iters 30 iters 30 iters + + + Screening Tolerance Information + ------------------------------- + Density screening/tol_rho: 1.00D-10 + AO Gaussian exp screening on grid/accAOfunc: 14 + CD Gaussian exp screening on grid/accCDfunc: 20 + XC Gaussian exp screening on grid/accXCfunc: 20 + Schwarz screening/accCoul: 1.00D-08 + + + + NWChem DFT Gradient Module + -------------------------- + + + Divinylbenzene in STO-3G basis set + + + + charge = 0.00 + wavefunction = closed shell + + Using symmetry + + + DFT ENERGY GRADIENTS + + atom coordinates gradient + x y z x y z + 1 C 0.443483 2.676227 0.000000 -0.000182 -0.000149 0.000000 + 2 C -0.443483 -2.676227 0.000000 0.000182 0.000149 0.000000 + 3 C 2.482441 0.924643 0.000000 -0.000136 -0.000003 0.000000 + 4 C -2.482441 -0.924643 0.000000 0.000136 0.000003 0.000000 + 5 C 2.054139 -1.690056 0.000000 -0.000068 0.000284 0.000000 + 6 C -2.054139 1.690056 0.000000 0.000068 -0.000284 0.000000 + 7 H 4.429407 1.644956 0.000000 -0.000070 -0.000059 0.000000 + 8 H -4.429407 -1.644956 0.000000 0.000070 0.000059 0.000000 + 9 H 3.671103 -2.989623 0.000000 -0.000045 -0.000264 0.000000 + 10 H -3.671103 2.989623 0.000000 0.000045 0.000264 0.000000 + 11 C -1.007663 -5.449721 0.000000 -0.000212 0.000151 0.000000 + 12 C 1.007663 5.449721 0.000000 0.000212 -0.000151 0.000000 + 13 H -3.034039 -5.914938 0.000000 0.000186 -0.000016 0.000000 + 14 H 3.034039 5.914938 0.000000 -0.000186 0.000016 0.000000 + 15 C 0.687157 -7.342590 0.000000 0.000016 -0.000567 0.000000 + 16 C -0.687157 7.342590 0.000000 -0.000016 0.000567 0.000000 + 17 H 2.731688 -7.011762 0.000000 -0.000014 0.000010 0.000000 + 18 H -2.731688 7.011762 0.000000 0.000014 -0.000010 0.000000 + 19 H 0.083891 -9.323786 0.000000 0.000087 0.000213 0.000000 + 20 H -0.083891 9.323786 0.000000 -0.000087 -0.000213 0.000000 ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.02 | 2.82 | + | CPU | 0.00 | 0.59 | ---------------------------------------- - | WALL | 0.02 | 2.82 | + | WALL | 0.00 | 0.59 | ---------------------------------------- + no constraints, skipping 0.0000000000000000 Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 1 -382.30826064 -2.4D-05 0.00023 0.00007 0.00465 0.01494 33.9 +@ 1 -382.30825974 -2.4D-05 0.00031 0.00009 0.00504 0.01705 11.2 ok ok @@ -2585,68 +3235,68 @@ Divinylbenzene in STO-3G basis set Type Name I J K L M Value Gradient ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- - 1 Stretch 1 3 1.42257 0.00016 - 2 Stretch 1 6 1.42107 -0.00013 - 3 Stretch 1 12 1.49780 0.00018 - 4 Stretch 2 4 1.42257 0.00016 - 5 Stretch 2 5 1.42107 -0.00013 - 6 Stretch 2 11 1.49780 0.00018 - 7 Stretch 3 5 1.40221 0.00007 - 8 Stretch 3 7 1.09862 -0.00002 - 9 Stretch 4 6 1.40221 0.00007 - 10 Stretch 4 8 1.09862 -0.00002 - 11 Stretch 5 9 1.09789 0.00023 - 12 Stretch 6 10 1.09789 0.00023 - 13 Stretch 11 13 1.10030 -0.00010 - 14 Stretch 11 15 1.34415 -0.00013 - 15 Stretch 12 14 1.10030 -0.00010 - 16 Stretch 12 16 1.34415 -0.00013 - 17 Stretch 15 17 1.09615 0.00011 - 18 Stretch 15 19 1.09602 -0.00016 - 19 Stretch 16 18 1.09615 0.00011 - 20 Stretch 16 20 1.09602 -0.00016 - 21 Bend 1 3 5 121.36572 0.00004 - 22 Bend 1 3 7 119.05353 0.00003 - 23 Bend 1 6 4 120.84960 -0.00001 - 24 Bend 1 6 10 119.70158 -0.00008 - 25 Bend 1 12 14 114.42891 -0.00000 - 26 Bend 1 12 16 126.61916 0.00003 - 27 Bend 2 4 6 121.36572 0.00004 - 28 Bend 2 4 8 119.05353 0.00003 - 29 Bend 2 5 3 120.84960 -0.00001 - 30 Bend 2 5 9 119.70158 -0.00008 - 31 Bend 2 11 13 114.42891 -0.00000 - 32 Bend 2 11 15 126.61916 0.00003 - 33 Bend 3 1 6 117.78468 -0.00002 - 34 Bend 3 1 12 119.16744 0.00002 - 35 Bend 3 5 9 119.44882 0.00009 - 36 Bend 4 2 5 117.78468 -0.00002 - 37 Bend 4 2 11 119.16744 0.00002 - 38 Bend 4 6 10 119.44882 0.00009 - 39 Bend 5 2 11 123.04788 0.00000 - 40 Bend 5 3 7 119.58076 -0.00007 - 41 Bend 6 1 12 123.04788 0.00000 - 42 Bend 6 4 8 119.58076 -0.00007 - 43 Bend 11 15 17 122.65552 -0.00001 - 44 Bend 11 15 19 121.25297 0.00004 - 45 Bend 12 16 18 122.65552 -0.00001 - 46 Bend 12 16 20 121.25297 0.00004 - 47 Bend 13 11 15 118.95194 -0.00002 - 48 Bend 14 12 16 118.95194 -0.00002 - 49 Bend 17 15 19 116.09152 -0.00003 - 50 Bend 18 16 20 116.09152 -0.00003 + 1 Stretch 1 3 1.42243 0.00000 + 2 Stretch 1 6 1.42098 -0.00026 + 3 Stretch 1 12 1.49773 0.00019 + 4 Stretch 2 4 1.42243 0.00000 + 5 Stretch 2 5 1.42098 -0.00026 + 6 Stretch 2 11 1.49773 0.00019 + 7 Stretch 3 5 1.40208 -0.00004 + 8 Stretch 3 7 1.09854 -0.00009 + 9 Stretch 4 6 1.40208 -0.00004 + 10 Stretch 4 8 1.09854 -0.00009 + 11 Stretch 5 9 1.09776 0.00013 + 12 Stretch 6 10 1.09776 0.00013 + 13 Stretch 11 13 1.10021 -0.00018 + 14 Stretch 11 15 1.34450 0.00031 + 15 Stretch 12 14 1.10021 -0.00018 + 16 Stretch 12 16 1.34450 0.00031 + 17 Stretch 15 17 1.09599 -0.00001 + 18 Stretch 15 19 1.09593 -0.00023 + 19 Stretch 16 18 1.09599 -0.00001 + 20 Stretch 16 20 1.09593 -0.00023 + 21 Bend 1 3 5 121.36175 0.00004 + 22 Bend 1 3 7 119.03268 -0.00000 + 23 Bend 1 6 4 120.84904 -0.00001 + 24 Bend 1 6 10 119.66459 -0.00012 + 25 Bend 1 12 14 114.42810 -0.00002 + 26 Bend 1 12 16 126.66154 0.00011 + 27 Bend 2 4 6 121.36175 0.00004 + 28 Bend 2 4 8 119.03268 -0.00000 + 29 Bend 2 5 3 120.84904 -0.00001 + 30 Bend 2 5 9 119.66459 -0.00012 + 31 Bend 2 11 13 114.42810 -0.00002 + 32 Bend 2 11 15 126.66154 0.00011 + 33 Bend 3 1 6 117.78921 -0.00003 + 34 Bend 3 1 12 119.16636 0.00002 + 35 Bend 3 5 9 119.48638 0.00013 + 36 Bend 4 2 5 117.78921 -0.00003 + 37 Bend 4 2 11 119.16636 0.00002 + 38 Bend 4 6 10 119.48638 0.00013 + 39 Bend 5 2 11 123.04443 0.00001 + 40 Bend 5 3 7 119.60557 -0.00004 + 41 Bend 6 1 12 123.04443 0.00001 + 42 Bend 6 4 8 119.60557 -0.00004 + 43 Bend 11 15 17 122.64889 -0.00002 + 44 Bend 11 15 19 121.22440 0.00002 + 45 Bend 12 16 18 122.64889 -0.00002 + 46 Bend 12 16 20 121.22440 0.00002 + 47 Bend 13 11 15 118.91036 -0.00008 + 48 Bend 14 12 16 118.91036 -0.00008 + 49 Bend 17 15 19 116.12670 -0.00000 + 50 Bend 18 16 20 116.12670 -0.00000 51 Torsion 1 3 5 2 0.00000 0.00000 52 Torsion 1 3 5 9 180.00000 0.00000 53 Torsion 1 6 4 2 0.00000 0.00000 - 54 Torsion 1 6 4 8 180.00000 -0.00000 + 54 Torsion 1 6 4 8 180.00000 0.00000 55 Torsion 1 12 16 18 0.00000 0.00000 - 56 Torsion 1 12 16 20 180.00000 -0.00000 + 56 Torsion 1 12 16 20 180.00000 0.00000 57 Torsion 2 4 6 10 180.00000 0.00000 - 58 Torsion 2 5 3 7 180.00000 -0.00000 - 59 Torsion 2 11 15 17 0.00000 -0.00000 - 60 Torsion 2 11 15 19 180.00000 -0.00000 + 58 Torsion 2 5 3 7 180.00000 0.00000 + 59 Torsion 2 11 15 17 0.00000 0.00000 + 60 Torsion 2 11 15 19 180.00000 0.00000 61 Torsion 3 1 6 4 0.00000 0.00000 - 62 Torsion 3 1 6 10 180.00000 -0.00000 + 62 Torsion 3 1 6 10 180.00000 0.00000 63 Torsion 3 1 12 14 0.00000 0.00000 64 Torsion 3 1 12 16 180.00000 0.00000 65 Torsion 3 5 2 4 0.00000 0.00000 @@ -2655,20 +3305,20 @@ Divinylbenzene in STO-3G basis set 68 Torsion 4 2 11 13 0.00000 0.00000 69 Torsion 4 2 11 15 180.00000 0.00000 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 -0.00000 + 71 Torsion 5 2 4 6 -0.00000 0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 - 73 Torsion 5 2 11 13 180.00000 -0.00000 + 73 Torsion 5 2 11 13 180.00000 0.00000 74 Torsion 5 2 11 15 0.00000 0.00000 - 75 Torsion 5 3 1 6 0.00000 -0.00000 - 76 Torsion 5 3 1 12 180.00000 -0.00000 - 77 Torsion 6 1 3 7 180.00000 -0.00000 + 75 Torsion 5 3 1 6 0.00000 0.00000 + 76 Torsion 5 3 1 12 180.00000 0.00000 + 77 Torsion 6 1 3 7 180.00000 0.00000 78 Torsion 6 1 12 14 180.00000 0.00000 79 Torsion 6 1 12 16 0.00000 0.00000 - 80 Torsion 6 4 2 11 180.00000 -0.00000 - 81 Torsion 7 3 1 12 -0.00000 -0.00000 + 80 Torsion 6 4 2 11 180.00000 0.00000 + 81 Torsion 7 3 1 12 -0.00000 0.00000 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 -0.00000 - 84 Torsion 8 4 6 10 0.00000 -0.00000 + 83 Torsion 8 4 2 11 -0.00000 0.00000 + 84 Torsion 8 4 6 10 0.00000 0.00000 85 Torsion 9 5 2 11 0.00000 0.00000 86 Torsion 10 6 1 12 0.00000 0.00000 87 Torsion 13 11 15 17 180.00000 0.00000 @@ -2676,6 +3326,10 @@ Divinylbenzene in STO-3G basis set 89 Torsion 14 12 16 18 180.00000 0.00000 90 Torsion 14 12 16 20 -0.00000 0.00000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 NWChem DFT Module ----------------- @@ -2718,9 +3372,9 @@ Divinylbenzene in STO-3G basis set Maximum number of iterations: 30 AO basis - number of functions: 60 number of shells: 40 - Convergence on energy requested: 1.00D-06 - Convergence on density requested: 1.00D-05 - Convergence on gradient requested: 5.00D-04 + Convergence on energy requested: 1.00D-06 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 XC Information -------------- @@ -2749,7 +3403,7 @@ Divinylbenzene in STO-3G basis set Convergence aids based upon iterative change in total energy or number of iterations. Levelshifting, if invoked, occurs when the - HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 DIIS, if invoked, will attempt to extrapolate using up to (NFOCK): 10 stored Fock matrices. @@ -2761,11 +3415,11 @@ Divinylbenzene in STO-3G basis set Screening Tolerance Information ------------------------------- - Density screening/tol_rho: 1.00D-10 + Density screening/tol_rho: 1.00D-10 AO Gaussian exp screening on grid/accAOfunc: 14 CD Gaussian exp screening on grid/accCDfunc: 20 XC Gaussian exp screening on grid/accXCfunc: 20 - Schwarz screening/accCoul: 1.00D-08 + Schwarz screening/accCoul: 1.00D-08 Loading old vectors from job with title : @@ -2792,17 +3446,8 @@ Divinylbenzene in STO-3G basis set 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag - Time after variat. SCF: 32.2 - Time prior to 1st pass: 32.2 - - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.167D+05 #integrals = 3.470D+05 #direct = 0.0% #cached =100.0% - + Time after variat. SCF: 11.2 + Time prior to 1st pass: 11.2 Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 @@ -2810,25 +3455,25 @@ Divinylbenzene in STO-3G basis set Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 10.94 10936722 + Heap Space remaining (MW): 5.89 5890482 Stack Space remaining (MW): 13.11 13106284 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.3082614827 -8.28D+02 2.00D-05 5.16D-07 35.6 - d= 0,ls=0.0,diis 2 -382.3082615470 -6.43D-08 1.36D-05 2.58D-07 36.6 - d= 0,ls=0.0,diis 3 -382.3082615616 -1.46D-08 5.97D-06 1.80D-07 37.5 + d= 0,ls=0.0,diis 1 -382.3082611564 -8.28D+02 2.86D-05 1.25D-06 12.0 + d= 0,ls=0.0,diis 2 -382.3082613664 -2.10D-07 1.80D-05 3.40D-07 12.6 + d= 0,ls=0.0,diis 3 -382.3082613454 2.10D-08 9.82D-06 4.76D-07 13.2 - Total DFT energy = -382.308261561555 - One electron energy = -1400.565874850220 - Coulomb energy = 630.202164051566 - Exchange-Corr. energy = -57.843734202512 - Nuclear repulsion energy = 445.899183439611 + Total DFT energy = -382.308261345385 + One electron energy = -1400.570983765640 + Coulomb energy = 630.204493510204 + Exchange-Corr. energy = -57.843791588324 + Nuclear repulsion energy = 445.902020498375 - Numeric. integr. density = 69.999955369708 + Numeric. integr. density = 69.999955422839 - Total iterative time = 5.3s + Total iterative time = 2.0s @@ -2846,395 +3491,576 @@ Divinylbenzene in STO-3G basis set DFT Final Molecular Orbital Analysis ------------------------------------ - Vector 10 Occ=2.000000D+00 E=-9.992336D+00 Symmetry=ag - MO Center= 6.2D-10, -6.6D-09, 2.6D-18, r^2= 1.5D+01 + Vector 1 Occ=2.000000D+00 E=-1.002022D+01 Symmetry=bu + MO Center= -6.6D-18, 2.9D-16, 1.5D-52, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.699295 1 C s 6 -0.699295 2 C s + 2 0.031568 1 C s 7 -0.031568 2 C s + 35 0.027410 11 C s 40 -0.027410 12 C s + + Vector 2 Occ=2.000000D+00 E=-1.002017D+01 Symmetry=ag + MO Center= 1.9D-14, 6.4D-14, -2.3D-22, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.699293 1 C s 6 0.699293 2 C s + 2 0.031361 1 C s 7 0.031361 2 C s + 35 -0.027774 11 C s 40 -0.027774 12 C s + + Vector 3 Occ=2.000000D+00 E=-1.000811D+01 Symmetry=bu + MO Center= -1.1D-14, -5.5D-14, -4.0D-37, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.699825 11 C s 40 -0.699825 12 C s + 36 0.030786 11 C s 41 -0.030786 12 C s + 1 -0.028011 1 C s 6 0.028011 2 C s + + Vector 4 Occ=2.000000D+00 E=-1.000811D+01 Symmetry=ag + MO Center= 4.3D-15, 9.8D-15, -8.7D-18, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.699743 11 C s 40 0.699743 12 C s + 36 0.030768 11 C s 41 0.030768 12 C s + 1 0.028217 1 C s 6 0.028217 2 C s + + Vector 5 Occ=2.000000D+00 E=-1.000680D+01 Symmetry=bu + MO Center= 9.2D-12, -8.6D-12, -5.7D-29, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.612567 5 C s 26 -0.612567 6 C s + 11 -0.337697 3 C s 16 0.337697 4 C s + 22 0.030344 5 C s 27 -0.030344 6 C s + 1 -0.027536 1 C s 6 0.027536 2 C s + + Vector 6 Occ=2.000000D+00 E=-1.000679D+01 Symmetry=ag + MO Center= -9.1D-12, 6.4D-12, 3.2D-18, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.597421 5 C s 26 0.597421 6 C s + 11 -0.364816 3 C s 16 -0.364816 4 C s + 22 0.029720 5 C s 27 0.029720 6 C s + + Vector 7 Occ=2.000000D+00 E=-1.000606D+01 Symmetry=bu + MO Center= 3.6D-11, 2.2D-12, -2.8D-28, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.613321 3 C s 16 -0.613321 4 C s + 21 0.339057 5 C s 26 -0.339057 6 C s + + Vector 8 Occ=2.000000D+00 E=-1.000592D+01 Symmetry=ag + MO Center= -3.6D-11, -4.6D-14, -3.4D-33, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.597583 3 C s 16 0.597583 4 C s + 21 0.365097 5 C s 26 0.365097 6 C s + 1 0.028382 1 C s 6 0.028382 2 C s + + Vector 9 Occ=2.000000D+00 E=-9.992334D+00 Symmetry=bu + MO Center= -2.1D-16, 3.3D-16, -7.2D-32, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.700479 15 C s 52 -0.700479 16 C s + 48 0.030862 15 C s 53 -0.030862 16 C s + + Vector 10 Occ=2.000000D+00 E=-9.992334D+00 Symmetry=ag + MO Center= -1.2D-16, -1.1D-15, -2.4D-18, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700478 15 C s 52 0.700478 16 C s + 48 0.030862 15 C s 53 0.030862 16 C s - Vector 11 Occ=2.000000D+00 E=-8.095194D-01 Symmetry=ag - MO Center= 1.7D-14, -4.3D-15, -3.3D-18, r^2= 3.0D+00 + Vector 11 Occ=2.000000D+00 E=-8.095232D-01 Symmetry=ag + MO Center= -9.4D-18, -3.8D-18, -3.1D-32, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.274630 1 C s 7 0.274630 2 C s - 12 0.247014 3 C s 17 0.247014 4 C s - 22 0.246745 5 C s 27 0.246745 6 C s + 2 0.274627 1 C s 7 0.274627 2 C s + 12 0.247007 3 C s 17 0.247007 4 C s + 22 0.246742 5 C s 27 0.246742 6 C s + 36 0.127780 11 C s 41 0.127780 12 C s + 1 -0.107835 1 C s 6 -0.107835 2 C s - Vector 12 Occ=2.000000D+00 E=-7.539886D-01 Symmetry=bu - MO Center= -2.6D-17, -3.5D-17, -3.8D-32, r^2= 7.8D+00 + Vector 12 Occ=2.000000D+00 E=-7.540038D-01 Symmetry=bu + MO Center= 1.1D-17, -1.1D-16, 1.3D-33, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 -0.297267 11 C s 41 0.297267 12 C s - 2 0.273912 1 C s 7 -0.273912 2 C s - 48 -0.209192 15 C s 53 0.209192 16 C s + 36 -0.297282 11 C s 41 0.297282 12 C s + 2 0.273886 1 C s 7 -0.273886 2 C s + 48 -0.209209 15 C s 53 0.209209 16 C s + 35 0.113861 11 C s 40 -0.113861 12 C s + 22 -0.112716 5 C s 27 0.112716 6 C s - Vector 13 Occ=2.000000D+00 E=-7.179666D-01 Symmetry=ag - MO Center= 1.1D-15, -6.5D-15, 7.2D-17, r^2= 1.1D+01 + Vector 13 Occ=2.000000D+00 E=-7.179853D-01 Symmetry=ag + MO Center= 1.7D-17, 5.8D-16, 1.8D-32, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.314981 11 C s 41 0.314981 12 C s - 48 0.309679 15 C s 53 0.309679 16 C s + 36 0.314964 11 C s 41 0.314964 12 C s + 48 0.309661 15 C s 53 0.309661 16 C s + 12 -0.121200 3 C s 17 -0.121200 4 C s + 35 -0.119306 11 C s 40 -0.119306 12 C s + 47 -0.117422 15 C s 52 -0.117422 16 C s - Vector 14 Occ=2.000000D+00 E=-6.997958D-01 Symmetry=bu - MO Center= -1.8D-14, 1.9D-15, -2.4D-19, r^2= 3.2D+00 + Vector 14 Occ=2.000000D+00 E=-6.998006D-01 Symmetry=bu + MO Center= -1.9D-17, 5.7D-17, 4.4D-33, r^2= 3.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.356604 3 C s 17 -0.356604 4 C s - 22 0.324764 5 C s 27 -0.324764 6 C s + 12 0.356605 3 C s 17 -0.356605 4 C s + 22 0.324784 5 C s 27 -0.324784 6 C s + 11 -0.132143 3 C s 16 0.132143 4 C s + 3 0.124905 1 C px 8 0.124905 2 C px + 21 -0.120409 5 C s 26 0.120409 6 C s - Vector 15 Occ=2.000000D+00 E=-6.675124D-01 Symmetry=bu - MO Center= -7.5D-16, 6.0D-15, -2.5D-20, r^2= 9.1D+00 + Vector 15 Occ=2.000000D+00 E=-6.675211D-01 Symmetry=bu + MO Center= -4.1D-18, -1.1D-16, 5.1D-34, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.299748 15 C s 53 -0.299748 16 C s - 2 0.274029 1 C s 7 -0.274029 2 C s - 22 -0.200677 5 C s 27 0.200677 6 C s + 48 0.299727 15 C s 53 -0.299727 16 C s + 2 0.274056 1 C s 7 -0.274056 2 C s + 22 -0.200640 5 C s 27 0.200640 6 C s + 36 0.136822 11 C s 41 -0.136822 12 C s + 38 -0.129081 11 C py 43 -0.129081 12 C py - Vector 16 Occ=2.000000D+00 E=-5.887149D-01 Symmetry=ag - MO Center= 1.8D-15, 1.9D-15, -1.2D-16, r^2= 8.5D+00 + Vector 16 Occ=2.000000D+00 E=-5.887184D-01 Symmetry=ag + MO Center= 5.5D-16, 4.9D-15, 1.0D-16, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.242755 15 C s 53 0.242755 16 C s - 22 0.232204 5 C s 27 0.232204 6 C s - 2 -0.206920 1 C s 7 -0.206920 2 C s - 14 -0.159641 3 C py 19 0.159641 4 C py - 36 -0.159460 11 C s 41 -0.159460 12 C s + 48 0.242772 15 C s 53 0.242772 16 C s + 22 0.232178 5 C s 27 0.232178 6 C s + 2 -0.206963 1 C s 7 -0.206963 2 C s + 14 -0.159647 3 C py 19 0.159647 4 C py + 36 -0.159444 11 C s 41 -0.159444 12 C s - Vector 17 Occ=2.000000D+00 E=-5.589267D-01 Symmetry=ag - MO Center= -3.2D-16, 6.2D-17, 4.6D-33, r^2= 5.1D+00 + Vector 17 Occ=2.000000D+00 E=-5.589329D-01 Symmetry=ag + MO Center= -1.5D-15, 1.2D-15, 1.8D-16, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.326154 3 C s 17 0.326154 4 C s - 3 0.185898 1 C px 8 -0.185898 2 C px - 22 -0.172082 5 C s 27 -0.172082 6 C s - 24 0.170130 5 C py 29 -0.170130 6 C py - 31 0.169719 7 H s 32 0.169719 8 H s + 12 0.326148 3 C s 17 0.326148 4 C s + 3 0.185912 1 C px 8 -0.185912 2 C px + 22 -0.172111 5 C s 27 -0.172111 6 C s + 24 0.170143 5 C py 29 -0.170143 6 C py + 31 0.169705 7 H s 32 0.169705 8 H s - Vector 18 Occ=2.000000D+00 E=-5.316676D-01 Symmetry=bu - MO Center= 4.1D-16, 1.2D-15, -8.4D-18, r^2= 1.2D+01 + Vector 18 Occ=2.000000D+00 E=-5.316552D-01 Symmetry=bu + MO Center= 8.9D-16, -3.9D-15, -1.5D-31, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.302586 11 C s 41 -0.302586 12 C s - 48 -0.249262 15 C s 53 0.249262 16 C s - 45 0.170553 13 H s 46 -0.170553 14 H s - 57 -0.160341 17 H s 58 0.160341 18 H s - 12 0.154559 3 C s 17 -0.154559 4 C s + 36 0.302566 11 C s 41 -0.302566 12 C s + 48 -0.249272 15 C s 53 0.249272 16 C s + 45 0.170546 13 H s 46 -0.170546 14 H s + 57 -0.160351 17 H s 58 0.160351 18 H s + 12 0.154584 3 C s 17 -0.154584 4 C s - Vector 19 Occ=2.000000D+00 E=-5.101867D-01 Symmetry=ag - MO Center= -1.4D-16, 1.7D-16, 8.7D-32, r^2= 7.5D+00 + Vector 19 Occ=2.000000D+00 E=-5.101695D-01 Symmetry=ag + MO Center= 1.7D-18, -2.6D-17, 2.7D-32, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.202139 5 C px 28 -0.202139 6 C px - 13 0.183789 3 C px 18 -0.183789 4 C px - 36 0.180857 11 C s 41 0.180857 12 C s - 33 0.169713 9 H s 34 0.169713 10 H s - 22 0.166820 5 C s 27 0.166820 6 C s + 23 0.202151 5 C px 28 -0.202151 6 C px + 13 0.183804 3 C px 18 -0.183804 4 C px + 36 0.180837 11 C s 41 0.180837 12 C s + 33 0.169712 9 H s 34 0.169712 10 H s + 22 0.166829 5 C s 27 0.166829 6 C s - Vector 20 Occ=2.000000D+00 E=-4.574291D-01 Symmetry=ag - MO Center= 8.6D-16, 4.2D-15, -3.5D-17, r^2= 9.6D+00 + Vector 20 Occ=2.000000D+00 E=-4.574405D-01 Symmetry=ag + MO Center= 3.1D-15, -5.4D-14, -6.2D-17, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.212970 15 C px 54 -0.212970 16 C px - 38 0.184737 11 C py 43 -0.184737 12 C py - 57 0.179066 17 H s 58 0.179066 18 H s - 45 -0.152664 13 H s 46 -0.152664 14 H s + 49 0.212999 15 C px 54 -0.212999 16 C px + 38 0.184701 11 C py 43 -0.184701 12 C py + 57 0.179112 17 H s 58 0.179112 18 H s + 45 -0.152675 13 H s 46 -0.152675 14 H s + 14 0.140939 3 C py 19 -0.140939 4 C py - Vector 21 Occ=2.000000D+00 E=-4.393488D-01 Symmetry=bu - MO Center= -4.0D-16, -2.7D-15, -1.2D-31, r^2= 1.0D+01 + Vector 21 Occ=2.000000D+00 E=-4.393669D-01 Symmetry=bu + MO Center= -5.4D-15, 1.9D-14, -4.8D-22, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.219772 11 C px 42 0.219772 12 C px - 50 0.209578 15 C py 55 0.209578 16 C py - 14 0.184836 3 C py 19 0.184836 4 C py - 59 -0.177451 19 H s 60 0.177451 20 H s - 45 -0.155847 13 H s 46 0.155847 14 H s + 37 0.219731 11 C px 42 0.219731 12 C px + 50 0.209531 15 C py 55 0.209531 16 C py + 14 0.184837 3 C py 19 0.184837 4 C py + 59 -0.177447 19 H s 60 0.177447 20 H s + 45 -0.155819 13 H s 46 0.155819 14 H s - Vector 22 Occ=2.000000D+00 E=-4.106308D-01 Symmetry=bu - MO Center= -7.5D-16, -2.9D-15, 5.9D-17, r^2= 6.9D+00 + Vector 22 Occ=2.000000D+00 E=-4.106226D-01 Symmetry=bu + MO Center= 6.2D-15, 2.8D-14, -2.8D-22, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.234218 1 C s 7 -0.234218 2 C s - 33 0.231051 9 H s 34 -0.231051 10 H s - 31 -0.225180 7 H s 32 0.225180 8 H s - 13 -0.220072 3 C px 18 -0.220072 4 C px - 24 -0.178850 5 C py 29 -0.178850 6 C py + 2 0.234192 1 C s 7 -0.234192 2 C s + 33 0.231045 9 H s 34 -0.231045 10 H s + 31 -0.225073 7 H s 32 0.225073 8 H s + 13 -0.219981 3 C px 18 -0.219981 4 C px + 24 -0.178940 5 C py 29 -0.178940 6 C py - Vector 23 Occ=2.000000D+00 E=-3.979485D-01 Symmetry=bu - MO Center= -3.2D-17, -5.8D-15, -5.0D-18, r^2= 8.8D+00 + Vector 23 Occ=2.000000D+00 E=-3.979554D-01 Symmetry=bu + MO Center= -1.8D-15, 1.8D-14, -3.8D-32, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.251042 5 C px 28 0.251042 6 C px - 49 0.251297 15 C px 54 0.251297 16 C px - 3 -0.218954 1 C px 8 -0.218954 2 C px - 57 0.215793 17 H s 58 -0.215793 18 H s - 38 0.182113 11 C py 43 0.182113 12 C py + 23 0.251049 5 C px 28 0.251049 6 C px + 49 0.251272 15 C px 54 0.251272 16 C px + 3 -0.218913 1 C px 8 -0.218913 2 C px + 57 0.215784 17 H s 58 -0.215784 18 H s + 38 0.182019 11 C py 43 0.182019 12 C py - Vector 24 Occ=2.000000D+00 E=-3.960808D-01 Symmetry=ag - MO Center= 1.2D-16, 4.1D-15, -6.0D-17, r^2= 1.5D+01 + Vector 24 Occ=2.000000D+00 E=-3.960783D-01 Symmetry=ag + MO Center= -2.2D-14, 4.3D-15, 3.7D-17, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 0.338860 15 C py 55 -0.338860 16 C py - 59 -0.261998 19 H s 60 -0.261998 20 H s - 37 0.252281 11 C px 42 -0.252281 12 C px + 50 0.338873 15 C py 55 -0.338873 16 C py + 59 -0.262027 19 H s 60 -0.262027 20 H s + 37 0.252211 11 C px 42 -0.252211 12 C px + 45 -0.145780 13 H s 46 -0.145780 14 H s + 24 0.136038 5 C py 29 -0.136038 6 C py - Vector 25 Occ=2.000000D+00 E=-3.739841D-01 Symmetry=bu - MO Center= 4.9D-16, -1.3D-15, 2.3D-18, r^2= 4.4D+00 + Vector 25 Occ=2.000000D+00 E=-3.739878D-01 Symmetry=bu + MO Center= 1.5D-14, -1.7D-14, -5.4D-32, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.308788 3 C px 18 0.308788 4 C px - 31 0.253668 7 H s 32 -0.253668 8 H s - 24 -0.224637 5 C py 29 -0.224637 6 C py - 33 0.217053 9 H s 34 -0.217053 10 H s - 23 0.188307 5 C px 28 0.188307 6 C px + 13 0.308777 3 C px 18 0.308777 4 C px + 31 0.253710 7 H s 32 -0.253710 8 H s + 24 -0.224664 5 C py 29 -0.224664 6 C py + 33 0.217083 9 H s 34 -0.217083 10 H s + 23 0.188360 5 C px 28 0.188360 6 C px - Vector 26 Occ=2.000000D+00 E=-3.511583D-01 Symmetry=bu - MO Center= 8.4D-15, 1.8D-14, 2.2D-17, r^2= 8.9D+00 + Vector 26 Occ=2.000000D+00 E=-3.511538D-01 Symmetry=bu + MO Center= 8.1D-16, -6.4D-15, 1.1D-22, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 -0.245290 15 C py 55 -0.245290 16 C py - 14 0.225091 3 C py 19 0.225091 4 C py - 37 -0.201410 11 C px 42 -0.201410 12 C px - 24 -0.194730 5 C py 29 -0.194730 6 C py - 38 0.186225 11 C py 43 0.186225 12 C py + 50 -0.245370 15 C py 55 -0.245370 16 C py + 14 0.224960 3 C py 19 0.224960 4 C py + 37 -0.201384 11 C px 42 -0.201384 12 C px + 24 -0.194569 5 C py 29 -0.194569 6 C py + 38 0.186292 11 C py 43 0.186292 12 C py - Vector 27 Occ=2.000000D+00 E=-3.472814D-01 Symmetry=ag - MO Center= -9.9D-15, -9.4D-15, 4.1D-17, r^2= 1.2D+01 + Vector 27 Occ=2.000000D+00 E=-3.472880D-01 Symmetry=ag + MO Center= 2.3D-15, 4.6D-15, -6.5D-32, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.295548 15 C px 54 -0.295548 16 C px - 57 0.268071 17 H s 58 0.268071 18 H s - 37 -0.207830 11 C px 42 0.207830 12 C px - 45 0.199863 13 H s 46 0.199863 14 H s - 31 -0.155819 7 H s 32 -0.155819 8 H s + 49 0.295536 15 C px 54 -0.295536 16 C px + 57 0.268035 17 H s 58 0.268035 18 H s + 37 -0.207911 11 C px 42 0.207911 12 C px + 45 0.199912 13 H s 46 0.199912 14 H s + 31 -0.155832 7 H s 32 -0.155832 8 H s - Vector 28 Occ=2.000000D+00 E=-3.245156D-01 Symmetry=au - MO Center= 6.1D-16, -5.6D-17, 8.4D-17, r^2= 3.6D+00 + Vector 28 Occ=2.000000D+00 E=-3.245210D-01 Symmetry=au + MO Center= 2.4D-15, 7.1D-15, -3.4D-16, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.337538 1 C pz 10 0.337538 2 C pz - 15 0.297871 3 C pz 20 0.297871 4 C pz - 25 0.297226 5 C pz 30 0.297226 6 C pz - 39 0.174020 11 C pz 44 0.174020 12 C pz + 5 0.337531 1 C pz 10 0.337531 2 C pz + 15 0.297861 3 C pz 20 0.297861 4 C pz + 25 0.297221 5 C pz 30 0.297221 6 C pz + 39 0.174047 11 C pz 44 0.174047 12 C pz + 51 0.092477 15 C pz 56 0.092477 16 C pz - Vector 29 Occ=2.000000D+00 E=-3.112351D-01 Symmetry=bu - MO Center= -8.1D-16, -4.2D-15, 1.5D-17, r^2= 1.2D+01 + Vector 29 Occ=2.000000D+00 E=-3.112377D-01 Symmetry=bu + MO Center= 3.1D-16, 2.2D-16, 7.4D-34, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.258785 13 H s 46 -0.258785 14 H s - 4 0.242405 1 C py 9 0.242405 2 C py - 57 0.230617 17 H s 58 -0.230617 18 H s - 37 -0.216923 11 C px 42 -0.216923 12 C px - 59 -0.213078 19 H s 60 0.213078 20 H s + 45 0.258833 13 H s 46 -0.258833 14 H s + 4 0.242373 1 C py 9 0.242373 2 C py + 57 0.230596 17 H s 58 -0.230596 18 H s + 37 -0.216968 11 C px 42 -0.216968 12 C px + 59 -0.213051 19 H s 60 0.213051 20 H s - Vector 30 Occ=2.000000D+00 E=-2.927966D-01 Symmetry=ag - MO Center= -3.5D-16, 2.1D-15, -1.6D-16, r^2= 6.2D+00 + Vector 30 Occ=2.000000D+00 E=-2.928103D-01 Symmetry=ag + MO Center= 5.7D-16, 6.0D-16, 2.8D-16, r^2= 6.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 -0.278538 3 C py 19 0.278538 4 C py - 4 0.269955 1 C py 9 -0.269955 2 C py - 38 0.249300 11 C py 43 -0.249300 12 C py - 33 -0.238065 9 H s 34 -0.238065 10 H s - 24 0.235483 5 C py 29 -0.235483 6 C py + 14 -0.278647 3 C py 19 0.278647 4 C py + 4 0.270262 1 C py 9 -0.270262 2 C py + 38 0.249656 11 C py 43 -0.249656 12 C py + 33 -0.237529 9 H s 34 -0.237529 10 H s + 24 0.235770 5 C py 29 -0.235770 6 C py - Vector 31 Occ=2.000000D+00 E=-2.874573D-01 Symmetry=ag - MO Center= 7.3D-16, -1.3D-15, -1.5D-17, r^2= 6.1D+00 + Vector 31 Occ=2.000000D+00 E=-2.874461D-01 Symmetry=ag + MO Center= 5.3D-16, -1.4D-16, 3.2D-18, r^2= 6.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 3 0.298380 1 C px 8 -0.298380 2 C px - 23 0.281375 5 C px 28 -0.281375 6 C px - 31 -0.259036 7 H s 32 -0.259036 8 H s - 13 -0.224951 3 C px 18 0.224951 4 C px - 45 -0.180984 13 H s 46 -0.180984 14 H s + 3 0.298824 1 C px 8 -0.298824 2 C px + 23 0.281637 5 C px 28 -0.281637 6 C px + 31 -0.259090 7 H s 32 -0.259090 8 H s + 13 -0.225393 3 C px 18 0.225393 4 C px + 45 -0.180758 13 H s 46 -0.180758 14 H s - Vector 32 Occ=2.000000D+00 E=-2.635547D-01 Symmetry=bg - MO Center= 1.1D-16, 7.8D-15, 2.6D-20, r^2= 7.8D+00 + Vector 32 Occ=2.000000D+00 E=-2.635677D-01 Symmetry=bg + MO Center= -8.8D-16, -7.0D-15, 1.8D-22, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 -0.376546 11 C pz 44 0.376546 12 C pz - 5 0.348917 1 C pz 10 -0.348917 2 C pz - 51 -0.271389 15 C pz 56 0.271389 16 C pz + 39 -0.376563 11 C pz 44 0.376563 12 C pz + 5 0.348897 1 C pz 10 -0.348897 2 C pz + 51 -0.271400 15 C pz 56 0.271400 16 C pz + 25 -0.132774 5 C pz 30 0.132774 6 C pz + 15 0.130756 3 C pz 20 -0.130756 4 C pz - Vector 33 Occ=2.000000D+00 E=-2.124520D-01 Symmetry=au - MO Center= 1.1D-14, -1.8D-14, -4.4D-17, r^2= 1.1D+01 + Vector 33 Occ=2.000000D+00 E=-2.124635D-01 Symmetry=au + MO Center= 7.2D-15, -1.4D-15, 2.8D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 0.417878 15 C pz 56 0.417878 16 C pz - 39 0.413793 11 C pz 44 0.413793 12 C pz - 15 -0.179184 3 C pz 20 -0.179184 4 C pz - 25 -0.176752 5 C pz 30 -0.176752 6 C pz + 51 0.417863 15 C pz 56 0.417863 16 C pz + 39 0.413776 11 C pz 44 0.413776 12 C pz + 15 -0.179213 3 C pz 20 -0.179213 4 C pz + 25 -0.176781 5 C pz 30 -0.176781 6 C pz - Vector 34 Occ=2.000000D+00 E=-1.950605D-01 Symmetry=bg - MO Center= -1.1D-14, 1.3D-15, 2.5D-18, r^2= 2.7D+00 + Vector 34 Occ=2.000000D+00 E=-1.950743D-01 Symmetry=bg + MO Center= -8.9D-15, 1.0D-15, -1.9D-23, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.463068 3 C pz 20 -0.463068 4 C pz - 25 0.458187 5 C pz 30 -0.458187 6 C pz + 15 0.463053 3 C pz 20 -0.463053 4 C pz + 25 0.458195 5 C pz 30 -0.458195 6 C pz - Vector 35 Occ=2.000000D+00 E=-1.530836D-01 Symmetry=bg - MO Center= -4.2D-17, 9.0D-15, 1.1D-17, r^2= 8.1D+00 + Vector 35 Occ=2.000000D+00 E=-1.530785D-01 Symmetry=bg + MO Center= 2.5D-16, -2.7D-16, 7.6D-22, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 0.397413 15 C pz 56 -0.397413 16 C pz - 5 0.387579 1 C pz 10 -0.387579 2 C pz - 25 -0.228763 5 C pz 30 0.228763 6 C pz - 39 0.223616 11 C pz 44 -0.223616 12 C pz - 15 0.217019 3 C pz 20 -0.217019 4 C pz + 51 0.397414 15 C pz 56 -0.397414 16 C pz + 5 0.387609 1 C pz 10 -0.387609 2 C pz + 25 -0.228719 5 C pz 30 0.228719 6 C pz + 39 0.223574 11 C pz 44 -0.223574 12 C pz + 15 0.217069 3 C pz 20 -0.217069 4 C pz - Vector 36 Occ=0.000000D+00 E= 3.741067D-02 Symmetry=au - MO Center= -5.6D-17, 1.0D-14, 8.8D-17, r^2= 8.1D+00 + Vector 36 Occ=0.000000D+00 E= 3.739593D-02 Symmetry=au + MO Center= -8.9D-17, 4.7D-15, 6.0D-16, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 -0.449948 15 C pz 56 -0.449948 16 C pz - 5 0.442438 1 C pz 10 0.442438 2 C pz - 25 -0.276585 5 C pz 30 -0.276585 6 C pz - 39 0.256340 11 C pz 44 0.256340 12 C pz - 15 -0.232883 3 C pz 20 -0.232883 4 C pz + 51 -0.449929 15 C pz 56 -0.449929 16 C pz + 5 0.442484 1 C pz 10 0.442484 2 C pz + 25 -0.276549 5 C pz 30 -0.276549 6 C pz + 39 0.256272 11 C pz 44 0.256272 12 C pz + 15 -0.232935 3 C pz 20 -0.232935 4 C pz + + Vector 37 Occ=0.000000D+00 E= 9.037866D-02 Symmetry=au + MO Center= 3.7D-15, -2.5D-16, 7.2D-17, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.582595 3 C pz 20 0.582595 4 C pz + 25 -0.553542 5 C pz 30 -0.553542 6 C pz + 5 -0.031532 1 C pz 10 -0.031532 2 C pz + + Vector 38 Occ=0.000000D+00 E= 1.106291D-01 Symmetry=bg + MO Center= -4.3D-15, -4.8D-15, 9.5D-22, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.522224 11 C pz 44 -0.522224 12 C pz + 51 -0.523168 15 C pz 56 0.523168 16 C pz + 15 0.240636 3 C pz 20 -0.240636 4 C pz + 25 -0.232078 5 C pz 30 0.232078 6 C pz - Vector 37 Occ=0.000000D+00 E= 9.037226D-02 Symmetry=au - MO Center= -5.5D-17, -5.0D-17, 1.6D-16, r^2= 2.7D+00 + Vector 39 Occ=0.000000D+00 E= 1.822332D-01 Symmetry=au + MO Center= -4.5D-16, -1.3D-15, -4.9D-16, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.582605 3 C pz 20 0.582605 4 C pz - 25 -0.553519 5 C pz 30 -0.553519 6 C pz + 39 -0.529062 11 C pz 44 -0.529062 12 C pz + 5 0.497539 1 C pz 10 0.497539 2 C pz + 51 0.379454 15 C pz 56 0.379454 16 C pz + 25 -0.199806 5 C pz 30 -0.199806 6 C pz + 15 -0.166244 3 C pz 20 -0.166244 4 C pz - Vector 38 Occ=0.000000D+00 E= 1.106158D-01 Symmetry=bg - MO Center= -6.0D-16, -1.1D-14, -4.2D-18, r^2= 1.1D+01 + Vector 40 Occ=0.000000D+00 E= 2.725379D-01 Symmetry=bg + MO Center= 6.8D-16, 2.3D-15, -1.6D-22, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 0.522244 11 C pz 44 -0.522244 12 C pz - 51 -0.523184 15 C pz 56 0.523184 16 C pz - 15 0.240578 3 C pz 20 -0.240578 4 C pz - 25 -0.232018 5 C pz 30 0.232018 6 C pz + 5 0.543544 1 C pz 10 -0.543544 2 C pz + 25 0.467231 5 C pz 30 -0.467231 6 C pz + 15 -0.464151 3 C pz 20 0.464151 4 C pz + 39 0.287647 11 C pz 44 -0.287647 12 C pz + 51 -0.155950 15 C pz 56 0.155950 16 C pz - Vector 39 Occ=0.000000D+00 E= 1.822159D-01 Symmetry=au - MO Center= 2.2D-16, 1.3D-15, 4.9D-17, r^2= 7.9D+00 + Vector 41 Occ=0.000000D+00 E= 3.322342D-01 Symmetry=ag + MO Center= -1.5D-14, -1.2D-14, 7.3D-17, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 -0.529015 11 C pz 44 -0.529015 12 C pz - 5 0.497573 1 C pz 10 0.497573 2 C pz - 51 0.379409 15 C pz 56 0.379409 16 C pz - 25 -0.199831 5 C pz 30 -0.199831 6 C pz - 15 -0.166299 3 C pz 20 -0.166299 4 C pz + 33 -0.422894 9 H s 34 -0.422894 10 H s + 31 -0.413152 7 H s 32 -0.413152 8 H s + 2 0.401849 1 C s 7 0.401849 2 C s + 59 -0.356637 19 H s 60 -0.356637 20 H s + 38 -0.338820 11 C py 43 0.338820 12 C py - Vector 40 Occ=0.000000D+00 E= 2.725378D-01 Symmetry=bg - MO Center= -3.5D-17, -6.9D-17, -6.7D-17, r^2= 3.8D+00 + Vector 42 Occ=0.000000D+00 E= 3.407093D-01 Symmetry=bu + MO Center= 1.1D-14, 2.1D-14, -3.2D-25, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.543554 1 C pz 10 -0.543554 2 C pz - 25 0.467245 5 C pz 30 -0.467245 6 C pz - 15 -0.464177 3 C pz 20 0.464177 4 C pz - 39 0.287580 11 C pz 44 -0.287580 12 C pz - 51 -0.155897 15 C pz 56 0.155897 16 C pz + 45 0.435122 13 H s 46 -0.435122 14 H s + 13 0.355495 3 C px 18 0.355495 4 C px + 37 0.345416 11 C px 42 0.345416 12 C px + 57 -0.323758 17 H s 58 0.323758 18 H s + 31 -0.319866 7 H s 32 0.319866 8 H s - Vector 41 Occ=0.000000D+00 E= 3.322217D-01 Symmetry=ag - MO Center= 7.6D-15, -6.7D-16, 1.2D-17, r^2= 8.8D+00 + Vector 43 Occ=0.000000D+00 E= 3.794398D-01 Symmetry=bu + MO Center= 2.2D-15, -8.2D-15, -1.3D-22, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 -0.422733 9 H s 34 -0.422733 10 H s - 31 -0.413118 7 H s 32 -0.413118 8 H s - 2 0.401830 1 C s 7 0.401830 2 C s - 59 -0.356678 19 H s 60 -0.356678 20 H s - 38 -0.338873 11 C py 43 0.338873 12 C py + 36 0.541330 11 C s 41 -0.541330 12 C s + 4 0.460336 1 C py 9 0.460336 2 C py + 33 0.412099 9 H s 34 -0.412099 10 H s + 59 0.347335 19 H s 60 -0.347335 20 H s + 2 0.334881 1 C s 7 -0.334881 2 C s - Vector 42 Occ=0.000000D+00 E= 3.407201D-01 Symmetry=bu - MO Center= -5.9D-15, -2.8D-14, -7.4D-21, r^2= 1.0D+01 + Vector 44 Occ=0.000000D+00 E= 3.814709D-01 Symmetry=ag + MO Center= -1.8D-16, 2.2D-16, -2.4D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.434954 13 H s 46 -0.434954 14 H s - 13 0.355270 3 C px 18 0.355270 4 C px - 37 0.345502 11 C px 42 0.345502 12 C px - 57 -0.323890 17 H s 58 0.323890 18 H s - 31 -0.319692 7 H s 32 0.319692 8 H s + 45 0.575659 13 H s 46 0.575659 14 H s + 12 0.393683 3 C s 17 0.393683 4 C s + 57 -0.394557 17 H s 58 -0.394557 18 H s + 36 -0.382623 11 C s 41 -0.382623 12 C s + 37 0.333509 11 C px 42 -0.333509 12 C px - Vector 43 Occ=0.000000D+00 E= 3.794023D-01 Symmetry=bu - MO Center= 3.9D-14, -1.8D-14, -8.5D-19, r^2= 7.7D+00 + Vector 45 Occ=0.000000D+00 E= 4.109949D-01 Symmetry=ag + MO Center= 1.5D-16, 2.9D-16, -2.4D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.541960 11 C s 41 -0.541960 12 C s - 4 0.460267 1 C py 9 0.460267 2 C py - 33 0.412078 9 H s 34 -0.412078 10 H s - 59 0.346640 19 H s 60 -0.346640 20 H s - 2 0.334861 1 C s 7 -0.334861 2 C s + 48 0.652022 15 C s 53 0.652022 16 C s + 22 0.617093 5 C s 27 0.617093 6 C s + 57 -0.511635 17 H s 58 -0.511635 18 H s + 12 -0.451272 3 C s 17 -0.451272 4 C s + 59 -0.326170 19 H s 60 -0.326170 20 H s - Vector 44 Occ=0.000000D+00 E= 3.814646D-01 Symmetry=ag - MO Center= -4.5D-14, 3.8D-14, 1.5D-16, r^2= 1.1D+01 + Vector 46 Occ=0.000000D+00 E= 4.119808D-01 Symmetry=bu + MO Center= 9.5D-16, 4.3D-15, 1.8D-22, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.575577 13 H s 46 0.575577 14 H s - 12 0.393727 3 C s 17 0.393727 4 C s - 57 -0.394540 17 H s 58 -0.394540 18 H s - 36 -0.382601 11 C s 41 -0.382601 12 C s - 37 0.333449 11 C px 42 -0.333449 12 C px + 22 0.614303 5 C s 27 -0.614303 6 C s + 48 0.538475 15 C s 53 -0.538475 16 C s + 2 0.478807 1 C s 7 -0.478807 2 C s + 57 -0.448915 17 H s 58 0.448915 18 H s + 12 -0.443313 3 C s 17 0.443313 4 C s - Vector 45 Occ=0.000000D+00 E= 4.110215D-01 Symmetry=ag - MO Center= -8.0D-14, 2.5D-13, -2.0D-16, r^2= 1.1D+01 + Vector 47 Occ=0.000000D+00 E= 4.267657D-01 Symmetry=bu + MO Center= 2.4D-15, -1.5D-15, -9.3D-22, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.651976 15 C s 53 0.651976 16 C s - 22 0.617378 5 C s 27 0.617378 6 C s - 57 -0.511453 17 H s 58 -0.511453 18 H s - 12 -0.451157 3 C s 17 -0.451157 4 C s - 59 -0.326185 19 H s 60 -0.326185 20 H s + 31 0.598893 7 H s 32 -0.598893 8 H s + 36 -0.457437 11 C s 41 0.457437 12 C s + 45 0.441426 13 H s 46 -0.441426 14 H s + 12 -0.356309 3 C s 17 0.356309 4 C s + 59 0.338510 19 H s 60 -0.338510 20 H s - Vector 46 Occ=0.000000D+00 E= 4.120118D-01 Symmetry=bu - MO Center= 8.5D-14, -2.4D-13, -8.5D-18, r^2= 1.1D+01 + Vector 48 Occ=0.000000D+00 E= 4.396556D-01 Symmetry=ag + MO Center= -2.9D-15, -1.0D-13, 1.1D-16, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.614362 5 C s 27 -0.614362 6 C s - 48 0.538510 15 C s 53 -0.538510 16 C s - 2 0.478809 1 C s 7 -0.478809 2 C s - 57 -0.448832 17 H s 58 0.448832 18 H s - 12 -0.443511 3 C s 17 0.443511 4 C s + 2 0.784950 1 C s 7 0.784950 2 C s + 36 -0.563801 11 C s 41 -0.563801 12 C s + 12 -0.489818 3 C s 17 -0.489818 4 C s + 22 -0.418175 5 C s 27 -0.418175 6 C s + 48 0.410492 15 C s 53 0.410492 16 C s - Vector 47 Occ=0.000000D+00 E= 4.267529D-01 Symmetry=bu - MO Center= -4.9D-15, -1.2D-14, -1.4D-17, r^2= 9.3D+00 + Vector 49 Occ=0.000000D+00 E= 4.527008D-01 Symmetry=bu + MO Center= -1.9D-16, 1.0D-13, -3.4D-22, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 0.598752 7 H s 32 -0.598752 8 H s - 36 -0.457165 11 C s 41 0.457165 12 C s - 45 0.441390 13 H s 46 -0.441390 14 H s - 12 -0.356090 3 C s 17 0.356090 4 C s - 59 0.338978 19 H s 60 -0.338978 20 H s + 48 0.711876 15 C s 53 -0.711876 16 C s + 57 -0.525151 17 H s 58 0.525151 18 H s + 33 0.472402 9 H s 34 -0.472402 10 H s + 36 -0.430359 11 C s 41 0.430359 12 C s + 22 -0.408965 5 C s 27 0.408965 6 C s - Vector 48 Occ=0.000000D+00 E= 4.396376D-01 Symmetry=ag - MO Center= 5.4D-15, 9.3D-15, -1.8D-18, r^2= 7.5D+00 + Vector 50 Occ=0.000000D+00 E= 4.782347D-01 Symmetry=ag + MO Center= 7.5D-16, -2.7D-15, 4.0D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.784584 1 C s 7 0.784584 2 C s - 36 -0.564008 11 C s 41 -0.564008 12 C s - 12 -0.489821 3 C s 17 -0.489821 4 C s - 22 -0.417933 5 C s 27 -0.417933 6 C s - 48 0.410834 15 C s 53 0.410834 16 C s + 12 0.708890 3 C s 17 0.708890 4 C s + 22 -0.614900 5 C s 27 -0.614900 6 C s + 59 -0.475543 19 H s 60 -0.475543 20 H s + 48 0.413809 15 C s 53 0.413809 16 C s + 50 -0.383838 15 C py 55 0.383838 16 C py - Vector 49 Occ=0.000000D+00 E= 4.527257D-01 Symmetry=bu - MO Center= -1.3D-15, 1.3D-14, -2.7D-18, r^2= 1.2D+01 + Vector 51 Occ=0.000000D+00 E= 5.262514D-01 Symmetry=ag + MO Center= 6.5D-16, -3.9D-15, -1.2D-17, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.711943 15 C s 53 -0.711943 16 C s - 57 -0.525054 17 H s 58 0.525054 18 H s - 33 0.472530 9 H s 34 -0.472530 10 H s - 36 -0.430322 11 C s 41 0.430322 12 C s - 22 -0.408783 5 C s 27 0.408783 6 C s + 4 0.601044 1 C py 9 -0.601044 2 C py + 36 -0.486370 11 C s 41 -0.486370 12 C s + 13 -0.462725 3 C px 18 0.462725 4 C px + 2 -0.448674 1 C s 7 -0.448674 2 C s + 49 -0.343436 15 C px 54 0.343436 16 C px - Vector 50 Occ=0.000000D+00 E= 4.782775D-01 Symmetry=ag - MO Center= 2.1D-15, -1.3D-14, 6.9D-18, r^2= 1.1D+01 + Vector 52 Occ=0.000000D+00 E= 5.458062D-01 Symmetry=bu + MO Center= 1.3D-16, -4.9D-16, -1.1D-22, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.708915 3 C s 17 0.708915 4 C s - 22 -0.614912 5 C s 27 -0.614912 6 C s - 59 -0.475500 19 H s 60 -0.475500 20 H s - 48 0.413876 15 C s 53 0.413876 16 C s - 50 -0.383755 15 C py 55 0.383755 16 C py + 12 0.649685 3 C s 17 -0.649685 4 C s + 3 -0.562507 1 C px 8 -0.562507 2 C px + 50 0.482812 15 C py 55 0.482812 16 C py + 24 -0.475242 5 C py 29 -0.475242 6 C py + 59 0.355954 19 H s 60 -0.355954 20 H s - Vector 51 Occ=0.000000D+00 E= 5.262660D-01 Symmetry=ag - MO Center= 4.5D-15, 1.1D-15, 1.4D-17, r^2= 6.5D+00 + Vector 53 Occ=0.000000D+00 E= 5.760079D-01 Symmetry=ag + MO Center= 5.8D-16, 2.5D-15, 1.6D-17, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.600855 1 C py 9 -0.600855 2 C py - 36 -0.486199 11 C s 41 -0.486199 12 C s - 13 -0.462503 3 C px 18 0.462503 4 C px - 2 -0.449270 1 C s 7 -0.449270 2 C s - 49 -0.343566 15 C px 54 0.343566 16 C px + 23 -0.532951 5 C px 28 0.532951 6 C px + 13 0.526888 3 C px 18 -0.526888 4 C px + 33 0.519038 9 H s 34 0.519038 10 H s + 31 -0.447212 7 H s 32 -0.447212 8 H s + 24 0.396501 5 C py 29 -0.396501 6 C py + + Vector 54 Occ=0.000000D+00 E= 5.994758D-01 Symmetry=bu + MO Center= 4.3D-17, 2.4D-15, 2.1D-22, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 0.721180 3 C py 19 0.721180 4 C py + 22 0.602462 5 C s 27 -0.602462 6 C s + 36 -0.418131 11 C s 41 0.418131 12 C s + 2 -0.394333 1 C s 7 0.394333 2 C s + 24 0.396286 5 C py 29 0.396286 6 C py + + Vector 55 Occ=0.000000D+00 E= 6.250337D-01 Symmetry=bu + MO Center= 1.1D-15, 1.8D-14, 4.4D-23, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.613343 1 C s 7 -0.613343 2 C s + 49 -0.524780 15 C px 54 -0.524780 16 C px + 38 0.478235 11 C py 43 0.478235 12 C py + 23 -0.371951 5 C px 28 -0.371951 6 C px + 57 0.359604 17 H s 58 -0.359604 18 H s + + Vector 56 Occ=0.000000D+00 E= 6.396639D-01 Symmetry=ag + MO Center= -1.6D-15, -2.3D-14, 1.2D-17, r^2= 9.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.551433 11 C px 42 -0.551433 12 C px + 50 -0.534331 15 C py 55 0.534331 16 C py + 14 0.380862 3 C py 19 -0.380862 4 C py + 4 -0.365311 1 C py 9 0.365311 2 C py + 59 -0.331967 19 H s 60 -0.331967 20 H s + + Vector 57 Occ=0.000000D+00 E= 6.829618D-01 Symmetry=ag + MO Center= -3.6D-17, -2.4D-15, -8.9D-17, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.662656 11 C py 43 -0.662656 12 C py + 49 -0.579446 15 C px 54 0.579446 16 C px + 24 -0.448605 5 C py 29 0.448605 6 C py + 14 -0.395333 3 C py 19 0.395333 4 C py + 4 -0.383127 1 C py 9 0.383127 2 C py + + Vector 58 Occ=0.000000D+00 E= 7.172980D-01 Symmetry=bu + MO Center= 5.6D-16, 9.1D-15, 3.6D-23, r^2= 9.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.608412 11 C px 42 0.608412 12 C px + 50 -0.540485 15 C py 55 -0.540485 16 C py + 48 -0.536286 15 C s 53 0.536286 16 C s + 36 0.465778 11 C s 41 -0.465778 12 C s + 38 -0.463446 11 C py 43 -0.463446 12 C py + + Vector 59 Occ=0.000000D+00 E= 7.795874D-01 Symmetry=ag + MO Center= -4.4D-16, 5.1D-15, -4.7D-16, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.701595 1 C px 8 -0.701595 2 C px + 14 -0.535853 3 C py 19 0.535853 4 C py + 23 -0.436280 5 C px 28 0.436280 6 C px + 37 0.428833 11 C px 42 -0.428833 12 C px + 24 -0.413306 5 C py 29 0.413306 6 C py + + Vector 60 Occ=0.000000D+00 E= 7.946154D-01 Symmetry=bu + MO Center= 9.3D-16, -7.6D-15, 8.3D-26, r^2= 3.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.657760 1 C py 9 0.657760 2 C py + 13 -0.565781 3 C px 18 -0.565781 4 C px + 23 0.501307 5 C px 28 0.501307 6 C px + 22 -0.418182 5 C s 27 0.418182 6 C s + 24 -0.388928 5 C py 29 -0.388928 6 C py center of mass @@ -3243,9 +4069,9 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2635.004514089439 0.199379308416 0.000000000000 - 0.199379308416 390.064016353892 0.000000000000 - 0.000000000000 0.000000000000 3025.068530443331 + 2634.979943633768 0.248155278092 0.000000000000 + 0.248155278092 390.055048856857 0.000000000000 + 0.000000000000 0.000000000000 3025.034992490625 Multipole analysis of the density --------------------------------- @@ -3254,23 +4080,24 @@ Divinylbenzene in STO-3G basis set - - - - ----- ----- ---- ------- 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 - 1 1 0 0 0.000000 0.000000 0.000000 0.000000 + 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 1 0 1 0 0.000000 0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - 2 2 0 0 -37.340441 -140.889763 -140.889763 244.439085 - 2 1 1 0 0.051836 2.886961 2.886961 -5.722086 + 2 2 0 0 -37.340741 -140.886641 -140.886641 244.432541 + 2 1 1 0 0.052766 2.897420 2.897420 -5.742074 2 1 0 1 0.000000 0.000000 0.000000 0.000000 - 2 0 2 0 -37.705319 -768.210515 -768.210515 1498.715712 + 2 0 2 0 -37.704668 -768.204999 -768.204999 1498.705331 2 0 1 1 0.000000 0.000000 0.000000 0.000000 - 2 0 0 2 -43.586422 -21.793211 -21.793211 0.000000 - - - Parallel integral file used 8 records with 0 large values + 2 0 0 2 -43.586375 -21.793187 -21.793187 0.000000 Line search: - step= 1.00 grad=-1.9D-06 hess= 1.0D-06 energy= -382.308262 mode=accept - new step= 1.00 predicted energy= -382.308262 + step= 1.00 grad=-3.4D-06 hess= 1.8D-06 energy= -382.308261 mode=accept + new step= 1.00 predicted energy= -382.308261 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 -------- Step 2 @@ -3284,26 +4111,26 @@ Divinylbenzene in STO-3G basis set No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.23502264 1.41619612 0.00000000 - 2 C 6.0000 -0.23502264 -1.41619612 0.00000000 - 3 C 6.0000 1.31387896 0.48920741 0.00000000 - 4 C 6.0000 -1.31387896 -0.48920741 0.00000000 - 5 C 6.0000 1.08692421 -0.89443863 0.00000000 - 6 C 6.0000 -1.08692421 0.89443863 0.00000000 - 7 H 1.0000 2.34430474 0.87032956 0.00000000 - 8 H 1.0000 -2.34430474 -0.87032956 0.00000000 - 9 H 1.0000 1.94341431 -1.58079754 0.00000000 - 10 H 1.0000 -1.94341431 1.58079754 0.00000000 - 11 C 6.0000 -0.53388380 -2.88361062 0.00000000 - 12 C 6.0000 0.53388380 2.88361062 0.00000000 - 13 H 1.0000 -1.60649934 -3.12944182 0.00000000 - 14 H 1.0000 1.60649934 3.12944182 0.00000000 - 15 C 6.0000 0.36349137 -3.88448736 0.00000000 - 16 C 6.0000 -0.36349137 3.88448736 0.00000000 - 17 H 1.0000 1.44534605 -3.70899270 0.00000000 - 18 H 1.0000 -1.44534605 3.70899270 0.00000000 - 19 H 1.0000 0.04493628 -4.93342948 0.00000000 - 20 H 1.0000 -0.04493628 4.93342948 0.00000000 + 1 C 6.0000 0.23494737 1.41621750 0.00000000 + 2 C 6.0000 -0.23494737 -1.41621750 0.00000000 + 3 C 6.0000 1.31386079 0.48921213 0.00000000 + 4 C 6.0000 -1.31386079 -0.48921213 0.00000000 + 5 C 6.0000 1.08700002 -0.89440677 0.00000000 + 6 C 6.0000 -1.08700002 0.89440677 0.00000000 + 7 H 1.0000 2.34421732 0.87055376 0.00000000 + 8 H 1.0000 -2.34421732 -0.87055376 0.00000000 + 9 H 1.0000 1.94346655 -1.58086975 0.00000000 + 10 H 1.0000 -1.94346655 1.58086975 0.00000000 + 11 C 6.0000 -0.53373848 -2.88356296 0.00000000 + 12 C 6.0000 0.53373848 2.88356296 0.00000000 + 13 H 1.0000 -1.60633187 -3.12949359 0.00000000 + 14 H 1.0000 1.60633187 3.12949359 0.00000000 + 15 C 6.0000 0.36351571 -3.88447897 0.00000000 + 16 C 6.0000 -0.36351571 3.88447897 0.00000000 + 17 H 1.0000 1.44541455 -3.70914127 0.00000000 + 18 H 1.0000 -1.44541455 3.70914127 0.00000000 + 19 H 1.0000 0.04454750 -4.93327671 0.00000000 + 20 H 1.0000 -0.04454750 4.93327671 0.00000000 Atomic Mass ----------- @@ -3312,7 +4139,7 @@ Divinylbenzene in STO-3G basis set H 1.007825 - Effective nuclear repulsion energy (a.u.) 445.8991834396 + Effective nuclear repulsion energy (a.u.) 445.9020204984 Nuclear Dipole moment (a.u.) ---------------------------- @@ -3361,7 +4188,71 @@ Divinylbenzene in STO-3G basis set The DFT is already converged - Total DFT energy = -382.308261561555 + Total DFT energy = -382.308261345385 + + + General Information + ------------------- + SCF calculation type: DFT + Wavefunction type: closed shell. + No. of atoms : 20 + No. of electrons : 70 + Alpha electrons : 35 + Beta electrons : 35 + Charge : 0 + Spin multiplicity: 1 + Use of symmetry is: on ; symmetry adaption is: on + Maximum number of iterations: 30 + AO basis - number of functions: 60 + number of shells: 40 + Convergence on energy requested: 1.00D-06 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 + + XC Information + -------------- + B3LYP Method XC Potential + Hartree-Fock (Exact) Exchange 0.200 + Slater Exchange Functional 0.800 local + Becke 1988 Exchange Functional 0.720 non-local + Lee-Yang-Parr Correlation Functional 0.810 + VWN I RPA Correlation Functional 0.190 local + + Grid Information + ---------------- + Grid used for XC integration: medium + Radial quadrature: Mura-Knowles + Angular quadrature: Lebedev. + Tag B.-S. Rad. Rad. Pts. Rad. Cut. Ang. Pts. + --- ---------- --------- --------- --------- + C 0.70 49 12.0 434 + H 0.35 45 12.0 434 + Grid pruning is: on + Number of quadrature shells: 470 + Spatial weights used: Erf1 + + Convergence Information + ----------------------- + Convergence aids based upon iterative change in + total energy or number of iterations. + Levelshifting, if invoked, occurs when the + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + DIIS, if invoked, will attempt to extrapolate + using up to (NFOCK): 10 stored Fock matrices. + + Damping( 0%) Levelshifting(0.5) DIIS + --------------- ------------------- --------------- + dE on: start ASAP start + dE off: 2 iters 30 iters 30 iters + + + Screening Tolerance Information + ------------------------------- + Density screening/tol_rho: 1.00D-10 + AO Gaussian exp screening on grid/accAOfunc: 14 + CD Gaussian exp screening on grid/accCDfunc: 20 + XC Gaussian exp screening on grid/accXCfunc: 20 + Schwarz screening/accCoul: 1.00D-08 @@ -3383,38 +4274,39 @@ Divinylbenzene in STO-3G basis set atom coordinates gradient x y z x y z - 1 C 0.444128 2.676223 0.000000 0.000011 -0.000015 0.000000 - 2 C -0.444128 -2.676223 0.000000 -0.000011 0.000015 0.000000 - 3 C 2.482871 0.924468 0.000000 -0.000040 0.000035 0.000000 - 4 C -2.482871 -0.924468 0.000000 0.000040 -0.000035 -0.000000 - 5 C 2.053989 -1.690244 0.000000 0.000036 0.000043 0.000000 - 6 C -2.053989 1.690244 0.000000 -0.000036 -0.000043 0.000000 - 7 H 4.430094 1.644684 0.000000 0.000012 -0.000017 0.000000 - 8 H -4.430094 -1.644684 0.000000 -0.000012 0.000017 0.000000 - 9 H 3.672521 -2.987274 0.000000 -0.000029 0.000004 0.000000 - 10 H -3.672521 2.987274 0.000000 0.000029 -0.000004 0.000000 - 11 C -1.008894 -5.449234 0.000000 0.000005 -0.000019 0.000000 - 12 C 1.008894 5.449234 0.000000 -0.000005 0.000019 0.000000 - 13 H -3.035844 -5.913788 0.000000 -0.000009 0.000022 0.000000 - 14 H 3.035844 5.913788 0.000000 0.000009 -0.000022 0.000000 - 15 C 0.686899 -7.340617 0.000000 -0.000019 0.000067 0.000000 - 16 C -0.686899 7.340617 0.000000 0.000019 -0.000067 0.000000 - 17 H 2.731308 -7.008980 0.000000 0.000010 -0.000028 0.000000 - 18 H -2.731308 7.008980 0.000000 -0.000010 0.000028 0.000000 - 19 H 0.084917 -9.322830 0.000000 0.000020 -0.000027 0.000000 - 20 H -0.084917 9.322830 0.000000 -0.000020 0.000027 0.000000 + 1 C 0.443986 2.676263 0.000000 0.000008 0.000070 0.000000 + 2 C -0.443986 -2.676263 0.000000 -0.000008 -0.000070 -0.000000 + 3 C 2.482837 0.924477 0.000000 -0.000035 -0.000051 0.000000 + 4 C -2.482837 -0.924477 0.000000 0.000035 0.000051 0.000000 + 5 C 2.054132 -1.690184 0.000000 0.000035 0.000112 0.000000 + 6 C -2.054132 1.690184 0.000000 -0.000035 -0.000112 0.000000 + 7 H 4.429928 1.645108 0.000000 0.000012 0.000004 0.000000 + 8 H -4.429928 -1.645108 0.000000 -0.000012 -0.000004 0.000000 + 9 H 3.672619 -2.987411 0.000000 -0.000011 -0.000032 0.000000 + 10 H -3.672619 2.987411 0.000000 0.000011 0.000032 0.000000 + 11 C -1.008619 -5.449144 0.000000 0.000068 -0.000028 0.000000 + 12 C 1.008619 5.449144 0.000000 -0.000068 0.000028 0.000000 + 13 H -3.035527 -5.913885 0.000000 -0.000006 0.000008 0.000000 + 14 H 3.035527 5.913885 0.000000 0.000006 -0.000008 0.000000 + 15 C 0.686945 -7.340601 0.000000 -0.000057 0.000093 0.000000 + 16 C -0.686945 7.340601 0.000000 0.000057 -0.000093 0.000000 + 17 H 2.731437 -7.009261 0.000000 0.000027 -0.000012 0.000000 + 18 H -2.731437 7.009261 0.000000 -0.000027 0.000012 0.000000 + 19 H 0.084183 -9.322541 0.000000 -0.000012 -0.000004 0.000000 + 20 H -0.084183 9.322541 0.000000 0.000012 0.000004 0.000000 ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.02 | 2.82 | + | CPU | 0.00 | 0.60 | ---------------------------------------- - | WALL | 0.02 | 2.82 | + | WALL | 0.00 | 0.60 | ---------------------------------------- + no constraints, skipping 0.0000000000000000 Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 2 -382.30826156 -9.2D-07 0.00004 0.00001 0.00061 0.00215 45.3 +@ 2 -382.30826135 -1.6D-06 0.00009 0.00002 0.00090 0.00250 14.3 ok ok ok @@ -3426,97 +4318,100 @@ Divinylbenzene in STO-3G basis set Type Name I J K L M Value Gradient ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- - 1 Stretch 1 3 1.42241 -0.00004 - 2 Stretch 1 6 1.42119 0.00000 - 3 Stretch 1 12 1.49754 -0.00001 - 4 Stretch 2 4 1.42241 -0.00004 - 5 Stretch 2 5 1.42119 0.00000 - 6 Stretch 2 11 1.49754 -0.00001 - 7 Stretch 3 5 1.40214 -0.00003 - 8 Stretch 3 7 1.09865 0.00001 - 9 Stretch 4 6 1.40214 -0.00003 - 10 Stretch 4 8 1.09865 0.00001 - 11 Stretch 5 9 1.09757 -0.00003 - 12 Stretch 6 10 1.09757 -0.00003 + 1 Stretch 1 3 1.42246 -0.00000 + 2 Stretch 1 6 1.42121 0.00001 + 3 Stretch 1 12 1.49746 -0.00006 + 4 Stretch 2 4 1.42246 -0.00000 + 5 Stretch 2 5 1.42121 0.00001 + 6 Stretch 2 11 1.49746 -0.00006 + 7 Stretch 3 5 1.40209 -0.00006 + 8 Stretch 3 7 1.09866 0.00001 + 9 Stretch 4 6 1.40209 -0.00006 + 10 Stretch 4 8 1.09866 0.00001 + 11 Stretch 5 9 1.09762 0.00001 + 12 Stretch 6 10 1.09762 0.00001 13 Stretch 11 13 1.10043 0.00001 - 14 Stretch 11 15 1.34426 -0.00000 + 14 Stretch 11 15 1.34421 -0.00009 15 Stretch 12 14 1.10043 0.00001 - 16 Stretch 12 16 1.34426 -0.00000 - 17 Stretch 15 17 1.09600 0.00000 - 18 Stretch 15 19 1.09625 0.00002 - 19 Stretch 16 18 1.09600 0.00000 - 20 Stretch 16 20 1.09625 0.00002 - 21 Bend 1 3 5 121.35517 -0.00000 - 22 Bend 1 3 7 119.03190 0.00001 - 23 Bend 1 6 4 120.85367 0.00000 - 24 Bend 1 6 10 119.75404 -0.00001 - 25 Bend 1 12 14 114.42031 -0.00002 - 26 Bend 1 12 16 126.60923 0.00000 - 27 Bend 2 4 6 121.35517 -0.00000 - 28 Bend 2 4 8 119.03190 0.00001 - 29 Bend 2 5 3 120.85367 0.00000 - 30 Bend 2 5 9 119.75404 -0.00001 - 31 Bend 2 11 13 114.42031 -0.00002 - 32 Bend 2 11 15 126.60923 0.00000 - 33 Bend 3 1 6 117.79116 0.00000 - 34 Bend 3 1 12 119.15854 -0.00001 - 35 Bend 3 5 9 119.39229 0.00001 - 36 Bend 4 2 5 117.79116 0.00000 - 37 Bend 4 2 11 119.15854 -0.00001 - 38 Bend 4 6 10 119.39229 0.00001 - 39 Bend 5 2 11 123.05030 0.00001 - 40 Bend 5 3 7 119.61293 -0.00001 - 41 Bend 6 1 12 123.05030 0.00001 - 42 Bend 6 4 8 119.61293 -0.00001 - 43 Bend 11 15 17 122.66500 0.00001 - 44 Bend 11 15 19 121.22784 0.00001 - 45 Bend 12 16 18 122.66500 0.00001 - 46 Bend 12 16 20 121.22784 0.00001 - 47 Bend 13 11 15 118.97046 0.00001 - 48 Bend 14 12 16 118.97046 0.00001 - 49 Bend 17 15 19 116.10716 -0.00002 - 50 Bend 18 16 20 116.10716 -0.00002 + 16 Stretch 12 16 1.34421 -0.00009 + 17 Stretch 15 17 1.09601 0.00002 + 18 Stretch 15 19 1.09623 0.00001 + 19 Stretch 16 18 1.09601 0.00002 + 20 Stretch 16 20 1.09623 0.00001 + 21 Bend 1 3 5 121.35779 0.00000 + 22 Bend 1 3 7 119.02090 0.00000 + 23 Bend 1 6 4 120.85205 -0.00000 + 24 Bend 1 6 10 119.74704 -0.00002 + 25 Bend 1 12 14 114.42351 -0.00001 + 26 Bend 1 12 16 126.61629 0.00001 + 27 Bend 2 4 6 121.35779 0.00000 + 28 Bend 2 4 8 119.02090 0.00000 + 29 Bend 2 5 3 120.85205 -0.00000 + 30 Bend 2 5 9 119.74704 -0.00002 + 31 Bend 2 11 13 114.42351 -0.00001 + 32 Bend 2 11 15 126.61629 0.00001 + 33 Bend 3 1 6 117.79016 -0.00000 + 34 Bend 3 1 12 119.15965 -0.00001 + 35 Bend 3 5 9 119.40091 0.00002 + 36 Bend 4 2 5 117.79016 -0.00000 + 37 Bend 4 2 11 119.15965 -0.00001 + 38 Bend 4 6 10 119.40091 0.00002 + 39 Bend 5 2 11 123.05019 0.00001 + 40 Bend 5 3 7 119.62131 -0.00000 + 41 Bend 6 1 12 123.05019 0.00001 + 42 Bend 6 4 8 119.62131 -0.00000 + 43 Bend 11 15 17 122.66851 0.00002 + 44 Bend 11 15 19 121.20994 -0.00001 + 45 Bend 12 16 18 122.66851 0.00002 + 46 Bend 12 16 20 121.20994 -0.00001 + 47 Bend 13 11 15 118.96020 -0.00000 + 48 Bend 14 12 16 118.96020 -0.00000 + 49 Bend 17 15 19 116.12155 -0.00000 + 50 Bend 18 16 20 116.12155 -0.00000 51 Torsion 1 3 5 2 0.00000 0.00000 - 52 Torsion 1 3 5 9 180.00000 0.00000 + 52 Torsion 1 3 5 9 180.00000 -0.00000 53 Torsion 1 6 4 2 0.00000 0.00000 - 54 Torsion 1 6 4 8 180.00000 -0.00000 - 55 Torsion 1 12 16 18 0.00000 0.00000 - 56 Torsion 1 12 16 20 180.00000 -0.00000 - 57 Torsion 2 4 6 10 180.00000 0.00000 - 58 Torsion 2 5 3 7 180.00000 -0.00000 - 59 Torsion 2 11 15 17 0.00000 -0.00000 - 60 Torsion 2 11 15 19 180.00000 -0.00000 - 61 Torsion 3 1 6 4 0.00000 0.00000 - 62 Torsion 3 1 6 10 180.00000 -0.00000 - 63 Torsion 3 1 12 14 0.00000 0.00000 - 64 Torsion 3 1 12 16 180.00000 0.00000 - 65 Torsion 3 5 2 4 0.00000 0.00000 - 66 Torsion 3 5 2 11 180.00000 0.00000 - 67 Torsion 4 2 5 9 180.00000 0.00000 + 54 Torsion 1 6 4 8 180.00000 0.00000 + 55 Torsion 1 12 16 18 0.00000 -0.00000 + 56 Torsion 1 12 16 20 180.00000 0.00000 + 57 Torsion 2 4 6 10 180.00000 -0.00000 + 58 Torsion 2 5 3 7 180.00000 0.00000 + 59 Torsion 2 11 15 17 0.00000 0.00000 + 60 Torsion 2 11 15 19 180.00000 0.00000 + 61 Torsion 3 1 6 4 0.00000 -0.00000 + 62 Torsion 3 1 6 10 180.00000 0.00000 + 63 Torsion 3 1 12 14 0.00000 -0.00000 + 64 Torsion 3 1 12 16 180.00000 -0.00000 + 65 Torsion 3 5 2 4 0.00000 -0.00000 + 66 Torsion 3 5 2 11 180.00000 -0.00000 + 67 Torsion 4 2 5 9 180.00000 -0.00000 68 Torsion 4 2 11 13 0.00000 0.00000 - 69 Torsion 4 2 11 15 180.00000 0.00000 - 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 -0.00000 - 72 Torsion 5 2 4 8 180.00000 0.00000 - 73 Torsion 5 2 11 13 180.00000 -0.00000 + 69 Torsion 4 2 11 15 180.00000 -0.00000 + 70 Torsion 4 6 1 12 180.00000 -0.00000 + 71 Torsion 5 2 4 6 -0.00000 0.00000 + 72 Torsion 5 2 4 8 180.00000 -0.00000 + 73 Torsion 5 2 11 13 180.00000 0.00000 74 Torsion 5 2 11 15 0.00000 0.00000 - 75 Torsion 5 3 1 6 0.00000 -0.00000 - 76 Torsion 5 3 1 12 180.00000 -0.00000 - 77 Torsion 6 1 3 7 180.00000 -0.00000 - 78 Torsion 6 1 12 14 180.00000 0.00000 - 79 Torsion 6 1 12 16 0.00000 0.00000 - 80 Torsion 6 4 2 11 180.00000 -0.00000 - 81 Torsion 7 3 1 12 -0.00000 -0.00000 + 75 Torsion 5 3 1 6 0.00000 0.00000 + 76 Torsion 5 3 1 12 180.00000 0.00000 + 77 Torsion 6 1 3 7 180.00000 0.00000 + 78 Torsion 6 1 12 14 180.00000 -0.00000 + 79 Torsion 6 1 12 16 0.00000 -0.00000 + 80 Torsion 6 4 2 11 180.00000 0.00000 + 81 Torsion 7 3 1 12 -0.00000 0.00000 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 -0.00000 + 83 Torsion 8 4 2 11 -0.00000 0.00000 84 Torsion 8 4 6 10 0.00000 -0.00000 - 85 Torsion 9 5 2 11 0.00000 0.00000 - 86 Torsion 10 6 1 12 0.00000 0.00000 - 87 Torsion 13 11 15 17 180.00000 0.00000 - 88 Torsion 13 11 15 19 -0.00000 0.00000 - 89 Torsion 14 12 16 18 180.00000 0.00000 - 90 Torsion 14 12 16 20 -0.00000 0.00000 + 85 Torsion 9 5 2 11 0.00000 -0.00000 + 86 Torsion 10 6 1 12 0.00000 -0.00000 + 87 Torsion 13 11 15 17 180.00000 -0.00000 + 88 Torsion 13 11 15 19 -0.00000 -0.00000 + 89 Torsion 14 12 16 18 180.00000 -0.00000 + 90 Torsion 14 12 16 20 -0.00000 -0.00000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 NWChem DFT Module ----------------- @@ -3559,9 +4454,9 @@ Divinylbenzene in STO-3G basis set Maximum number of iterations: 30 AO basis - number of functions: 60 number of shells: 40 - Convergence on energy requested: 1.00D-06 - Convergence on density requested: 1.00D-05 - Convergence on gradient requested: 5.00D-04 + Convergence on energy requested: 1.00D-06 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 XC Information -------------- @@ -3590,7 +4485,7 @@ Divinylbenzene in STO-3G basis set Convergence aids based upon iterative change in total energy or number of iterations. Levelshifting, if invoked, occurs when the - HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 DIIS, if invoked, will attempt to extrapolate using up to (NFOCK): 10 stored Fock matrices. @@ -3602,11 +4497,11 @@ Divinylbenzene in STO-3G basis set Screening Tolerance Information ------------------------------- - Density screening/tol_rho: 1.00D-10 + Density screening/tol_rho: 1.00D-10 AO Gaussian exp screening on grid/accAOfunc: 14 CD Gaussian exp screening on grid/accCDfunc: 20 XC Gaussian exp screening on grid/accXCfunc: 20 - Schwarz screening/accCoul: 1.00D-08 + Schwarz screening/accCoul: 1.00D-08 Loading old vectors from job with title : @@ -3633,17 +4528,8 @@ Divinylbenzene in STO-3G basis set 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag - Time after variat. SCF: 43.0 - Time prior to 1st pass: 43.0 - - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.167D+05 #integrals = 3.470D+05 #direct = 0.0% #cached =100.0% - + Time after variat. SCF: 14.3 + Time prior to 1st pass: 14.3 Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 @@ -3651,24 +4537,24 @@ Divinylbenzene in STO-3G basis set Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 10.94 10936722 + Heap Space remaining (MW): 5.89 5890482 Stack Space remaining (MW): 13.11 13106284 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.3082616325 -8.28D+02 4.72D-06 3.31D-08 46.4 - d= 0,ls=0.0,diis 2 -382.3082616405 -8.02D-09 7.55D-07 5.47D-10 47.4 + d= 0,ls=0.0,diis 1 -382.3082614551 -8.28D+02 8.87D-06 1.29D-07 15.1 + d= 0,ls=0.0,diis 2 -382.3082614869 -3.18D-08 1.55D-06 1.89D-09 15.7 - Total DFT energy = -382.308261640529 - One electron energy = -1400.560791034297 - Coulomb energy = 630.200049655279 - Exchange-Corr. energy = -57.843683947487 - Nuclear repulsion energy = 445.896163685976 + Total DFT energy = -382.308261486912 + One electron energy = -1400.555899678923 + Coulomb energy = 630.197577703900 + Exchange-Corr. energy = -57.843634583388 + Nuclear repulsion energy = 445.893695071500 - Numeric. integr. density = 69.999955313940 + Numeric. integr. density = 69.999955318742 - Total iterative time = 4.3s + Total iterative time = 1.4s @@ -3686,395 +4572,576 @@ Divinylbenzene in STO-3G basis set DFT Final Molecular Orbital Analysis ------------------------------------ - Vector 10 Occ=2.000000D+00 E=-9.992327D+00 Symmetry=ag - MO Center= -2.4D-09, 2.5D-08, -3.4D-18, r^2= 1.5D+01 + Vector 1 Occ=2.000000D+00 E=-1.002022D+01 Symmetry=bu + MO Center= 8.4D-12, 5.0D-11, 5.6D-33, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.699296 1 C s 6 -0.699296 2 C s + 2 0.031567 1 C s 7 -0.031567 2 C s + 35 0.027420 11 C s 40 -0.027420 12 C s + + Vector 2 Occ=2.000000D+00 E=-1.002018D+01 Symmetry=ag + MO Center= -8.4D-12, -5.0D-11, -4.3D-40, r^2= 2.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 1 0.699293 1 C s 6 0.699293 2 C s + 2 0.031360 1 C s 7 0.031360 2 C s + 35 -0.027784 11 C s 40 -0.027784 12 C s + + Vector 3 Occ=2.000000D+00 E=-1.000812D+01 Symmetry=bu + MO Center= 2.9D-10, 1.6D-09, 7.1D-33, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.699826 11 C s 40 -0.699826 12 C s + 36 0.030784 11 C s 41 -0.030784 12 C s + 1 -0.028025 1 C s 6 0.028025 2 C s + + Vector 4 Occ=2.000000D+00 E=-1.000812D+01 Symmetry=ag + MO Center= -2.9D-10, -1.6D-09, -1.5D-17, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.699745 11 C s 40 0.699745 12 C s + 36 0.030766 11 C s 41 0.030766 12 C s + 1 0.028231 1 C s 6 0.028231 2 C s + + Vector 5 Occ=2.000000D+00 E=-1.000679D+01 Symmetry=bu + MO Center= 1.7D-14, 4.3D-14, -3.6D-30, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.612515 5 C s 26 -0.612515 6 C s + 11 -0.337795 3 C s 16 0.337795 4 C s + 22 0.030342 5 C s 27 -0.030342 6 C s + 1 -0.027515 1 C s 6 0.027515 2 C s + + Vector 6 Occ=2.000000D+00 E=-1.000679D+01 Symmetry=ag + MO Center= 1.4D-13, 6.1D-13, 9.6D-18, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 0.597377 5 C s 26 0.597377 6 C s + 11 -0.364888 3 C s 16 -0.364888 4 C s + 22 0.029718 5 C s 27 0.029718 6 C s + + Vector 7 Occ=2.000000D+00 E=-1.000606D+01 Symmetry=bu + MO Center= -1.5D-13, -6.2D-13, -1.0D-29, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.613269 3 C s 16 -0.613269 4 C s + 21 0.339152 5 C s 26 -0.339152 6 C s + + Vector 8 Occ=2.000000D+00 E=-1.000592D+01 Symmetry=ag + MO Center= -1.7D-16, 9.0D-16, 9.9D-19, r^2= 2.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 11 0.597541 3 C s 16 0.597541 4 C s + 21 0.365171 5 C s 26 0.365171 6 C s + 1 0.028361 1 C s 6 0.028361 2 C s + + Vector 9 Occ=2.000000D+00 E=-9.992325D+00 Symmetry=bu + MO Center= 5.5D-11, -5.9D-10, 4.7D-32, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.700479 15 C s 52 -0.700479 16 C s + 48 0.030861 15 C s 53 -0.030861 16 C s + + Vector 10 Occ=2.000000D+00 E=-9.992325D+00 Symmetry=ag + MO Center= -5.5D-11, 5.9D-10, -1.4D-32, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700478 15 C s 52 0.700478 16 C s + 48 0.030861 15 C s 53 0.030861 16 C s - Vector 11 Occ=2.000000D+00 E=-8.095106D-01 Symmetry=ag - MO Center= 5.7D-16, 7.0D-17, 1.3D-17, r^2= 3.0D+00 + Vector 11 Occ=2.000000D+00 E=-8.095070D-01 Symmetry=ag + MO Center= -2.7D-15, 8.1D-15, -6.7D-16, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.274634 1 C s 7 0.274634 2 C s + 2 0.274637 1 C s 7 0.274637 2 C s 12 0.247009 3 C s 17 0.247009 4 C s - 22 0.246750 5 C s 27 0.246750 6 C s + 22 0.246748 5 C s 27 0.246748 6 C s + 36 0.127773 11 C s 41 0.127773 12 C s + 1 -0.107836 1 C s 6 -0.107836 2 C s - Vector 12 Occ=2.000000D+00 E=-7.539866D-01 Symmetry=bu - MO Center= -2.6D-16, -1.1D-14, 7.9D-21, r^2= 7.8D+00 + Vector 12 Occ=2.000000D+00 E=-7.539865D-01 Symmetry=bu + MO Center= -1.3D-15, -1.4D-14, -2.9D-26, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 -0.297267 11 C s 41 0.297267 12 C s - 2 0.273904 1 C s 7 -0.273904 2 C s - 48 -0.209203 15 C s 53 0.209203 16 C s + 36 -0.297271 11 C s 41 0.297271 12 C s + 2 0.273910 1 C s 7 -0.273910 2 C s + 48 -0.209195 15 C s 53 0.209195 16 C s + 35 0.113851 11 C s 40 -0.113851 12 C s + 22 -0.112748 5 C s 27 0.112748 6 C s - Vector 13 Occ=2.000000D+00 E=-7.179660D-01 Symmetry=ag - MO Center= -4.7D-16, 6.3D-15, 2.9D-16, r^2= 1.1D+01 + Vector 13 Occ=2.000000D+00 E=-7.179639D-01 Symmetry=ag + MO Center= -3.8D-15, 8.7D-15, 7.8D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.314970 11 C s 41 0.314970 12 C s - 48 0.309678 15 C s 53 0.309678 16 C s + 36 0.314972 11 C s 41 0.314972 12 C s + 48 0.309671 15 C s 53 0.309671 16 C s + 12 -0.121203 3 C s 17 -0.121203 4 C s + 35 -0.119302 11 C s 40 -0.119302 12 C s + 47 -0.117422 15 C s 52 -0.117422 16 C s - Vector 14 Occ=2.000000D+00 E=-6.997886D-01 Symmetry=bu - MO Center= 6.6D-16, 4.9D-16, -4.9D-20, r^2= 3.2D+00 + Vector 14 Occ=2.000000D+00 E=-6.997869D-01 Symmetry=bu + MO Center= 1.0D-14, 2.9D-15, 7.8D-33, r^2= 3.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.356613 3 C s 17 -0.356613 4 C s - 22 0.324765 5 C s 27 -0.324765 6 C s + 12 0.356616 3 C s 17 -0.356616 4 C s + 22 0.324767 5 C s 27 -0.324767 6 C s + 11 -0.132144 3 C s 16 0.132144 4 C s + 3 0.124903 1 C px 8 0.124903 2 C px + 21 -0.120400 5 C s 26 0.120400 6 C s - Vector 15 Occ=2.000000D+00 E=-6.675116D-01 Symmetry=bu - MO Center= 8.8D-16, 3.9D-15, 2.6D-19, r^2= 9.1D+00 + Vector 15 Occ=2.000000D+00 E=-6.675089D-01 Symmetry=bu + MO Center= 8.8D-17, -6.0D-15, 4.2D-31, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.299738 15 C s 53 -0.299738 16 C s - 2 0.274043 1 C s 7 -0.274043 2 C s + 48 0.299742 15 C s 53 -0.299742 16 C s + 2 0.274040 1 C s 7 -0.274040 2 C s 22 -0.200662 5 C s 27 0.200662 6 C s + 36 0.136856 11 C s 41 -0.136856 12 C s + 38 -0.129052 11 C py 43 -0.129052 12 C py - Vector 16 Occ=2.000000D+00 E=-5.887077D-01 Symmetry=ag - MO Center= -1.5D-15, -4.4D-15, -1.2D-16, r^2= 8.5D+00 + Vector 16 Occ=2.000000D+00 E=-5.887091D-01 Symmetry=ag + MO Center= -3.5D-15, -3.4D-15, -3.1D-17, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.242746 15 C s 53 0.242746 16 C s - 22 0.232205 5 C s 27 0.232205 6 C s - 2 -0.206944 1 C s 7 -0.206944 2 C s - 14 -0.159641 3 C py 19 0.159641 4 C py - 36 -0.159475 11 C s 41 -0.159475 12 C s + 48 0.242759 15 C s 53 0.242759 16 C s + 22 0.232200 5 C s 27 0.232200 6 C s + 2 -0.206949 1 C s 7 -0.206949 2 C s + 14 -0.159639 3 C py 19 0.159639 4 C py + 36 -0.159469 11 C s 41 -0.159469 12 C s - Vector 17 Occ=2.000000D+00 E=-5.589269D-01 Symmetry=ag - MO Center= -1.1D-15, 1.9D-15, 2.4D-17, r^2= 5.1D+00 + Vector 17 Occ=2.000000D+00 E=-5.589268D-01 Symmetry=ag + MO Center= -2.9D-15, -6.7D-15, 5.8D-17, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.326160 3 C s 17 0.326160 4 C s - 3 0.185901 1 C px 8 -0.185901 2 C px - 22 -0.172095 5 C s 27 -0.172095 6 C s - 24 0.170108 5 C py 29 -0.170108 6 C py - 31 0.169724 7 H s 32 0.169724 8 H s + 3 0.185902 1 C px 8 -0.185902 2 C px + 22 -0.172107 5 C s 27 -0.172107 6 C s + 24 0.170107 5 C py 29 -0.170107 6 C py + 31 0.169722 7 H s 32 0.169722 8 H s - Vector 18 Occ=2.000000D+00 E=-5.316631D-01 Symmetry=bu - MO Center= -1.0D-15, -3.3D-16, -1.5D-17, r^2= 1.2D+01 + Vector 18 Occ=2.000000D+00 E=-5.316620D-01 Symmetry=bu + MO Center= -9.4D-16, -5.4D-15, 2.2D-24, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.302595 11 C s 41 -0.302595 12 C s - 48 -0.249271 15 C s 53 0.249271 16 C s - 45 0.170560 13 H s 46 -0.170560 14 H s - 57 -0.160345 17 H s 58 0.160345 18 H s - 12 0.154558 3 C s 17 -0.154558 4 C s + 36 0.302592 11 C s 41 -0.302592 12 C s + 48 -0.249276 15 C s 53 0.249276 16 C s + 45 0.170557 13 H s 46 -0.170557 14 H s + 57 -0.160348 17 H s 58 0.160348 18 H s + 12 0.154567 3 C s 17 -0.154567 4 C s - Vector 19 Occ=2.000000D+00 E=-5.101787D-01 Symmetry=ag - MO Center= -1.8D-15, 2.7D-15, 4.0D-18, r^2= 7.5D+00 + Vector 19 Occ=2.000000D+00 E=-5.101744D-01 Symmetry=ag + MO Center= 5.5D-16, 1.1D-14, 2.0D-32, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.202144 5 C px 28 -0.202144 6 C px - 13 0.183769 3 C px 18 -0.183769 4 C px - 36 0.180872 11 C s 41 0.180872 12 C s - 33 0.169716 9 H s 34 0.169716 10 H s - 22 0.166819 5 C s 27 0.166819 6 C s + 23 0.202148 5 C px 28 -0.202148 6 C px + 13 0.183770 3 C px 18 -0.183770 4 C px + 36 0.180871 11 C s 41 0.180871 12 C s + 33 0.169714 9 H s 34 0.169714 10 H s + 22 0.166818 5 C s 27 0.166818 6 C s Vector 20 Occ=2.000000D+00 E=-4.574373D-01 Symmetry=ag - MO Center= -4.3D-15, -4.7D-16, -3.8D-17, r^2= 9.6D+00 + MO Center= 4.5D-17, 2.8D-16, -3.2D-33, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.212954 15 C px 54 -0.212954 16 C px - 38 0.184716 11 C py 43 -0.184716 12 C py - 57 0.179068 17 H s 58 0.179068 18 H s - 45 -0.152693 13 H s 46 -0.152693 14 H s + 38 0.184711 11 C py 43 -0.184711 12 C py + 57 0.179072 17 H s 58 0.179072 18 H s + 45 -0.152695 13 H s 46 -0.152695 14 H s + 14 0.140939 3 C py 19 -0.140939 4 C py - Vector 21 Occ=2.000000D+00 E=-4.393594D-01 Symmetry=bu - MO Center= -5.2D-16, -6.1D-16, -4.7D-17, r^2= 1.0D+01 + Vector 21 Occ=2.000000D+00 E=-4.393603D-01 Symmetry=bu + MO Center= 1.1D-15, 5.1D-15, -2.6D-32, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.219723 11 C px 42 0.219723 12 C px - 50 0.209550 15 C py 55 0.209550 16 C py - 14 0.184813 3 C py 19 0.184813 4 C py - 59 -0.177445 19 H s 60 0.177445 20 H s - 45 -0.155828 13 H s 46 0.155828 14 H s + 37 0.219714 11 C px 42 0.219714 12 C px + 50 0.209514 15 C py 55 0.209514 16 C py + 14 0.184816 3 C py 19 0.184816 4 C py + 59 -0.177422 19 H s 60 0.177422 20 H s + 45 -0.155830 13 H s 46 0.155830 14 H s - Vector 22 Occ=2.000000D+00 E=-4.106203D-01 Symmetry=bu - MO Center= 1.1D-15, 2.3D-15, -2.8D-17, r^2= 6.9D+00 + Vector 22 Occ=2.000000D+00 E=-4.106186D-01 Symmetry=bu + MO Center= 9.1D-16, -3.7D-16, -5.0D-32, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.234296 1 C s 7 -0.234296 2 C s - 33 0.231175 9 H s 34 -0.231175 10 H s - 31 -0.225187 7 H s 32 0.225187 8 H s - 13 -0.220047 3 C px 18 -0.220047 4 C px - 24 -0.178806 5 C py 29 -0.178806 6 C py + 2 0.234285 1 C s 7 -0.234285 2 C s + 33 0.231164 9 H s 34 -0.231164 10 H s + 31 -0.225156 7 H s 32 0.225156 8 H s + 13 -0.220026 3 C px 18 -0.220026 4 C px + 24 -0.178832 5 C py 29 -0.178832 6 C py - Vector 23 Occ=2.000000D+00 E=-3.979534D-01 Symmetry=bu - MO Center= 1.0D-15, 9.8D-16, -1.3D-17, r^2= 8.8D+00 + Vector 23 Occ=2.000000D+00 E=-3.979531D-01 Symmetry=bu + MO Center= 1.5D-14, -1.1D-13, -1.4D-21, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.250973 5 C px 28 0.250973 6 C px - 49 0.251325 15 C px 54 0.251325 16 C px - 3 -0.219134 1 C px 8 -0.219134 2 C px - 57 0.215807 17 H s 58 -0.215807 18 H s - 38 0.182180 11 C py 43 0.182180 12 C py + 23 0.250958 5 C px 28 0.250958 6 C px + 49 0.251331 15 C px 54 0.251331 16 C px + 3 -0.219112 1 C px 8 -0.219112 2 C px + 57 0.215814 17 H s 58 -0.215814 18 H s + 38 0.182172 11 C py 43 0.182172 12 C py - Vector 24 Occ=2.000000D+00 E=-3.960737D-01 Symmetry=ag - MO Center= -9.2D-16, 2.0D-15, -3.9D-17, r^2= 1.5D+01 + Vector 24 Occ=2.000000D+00 E=-3.960675D-01 Symmetry=ag + MO Center= -1.4D-14, 1.2D-13, -1.2D-16, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 0.338878 15 C py 55 -0.338878 16 C py + 50 0.338876 15 C py 55 -0.338876 16 C py 59 -0.262036 19 H s 60 -0.262036 20 H s - 37 0.252199 11 C px 42 -0.252199 12 C px + 37 0.252197 11 C px 42 -0.252197 12 C px + 45 -0.145762 13 H s 46 -0.145762 14 H s + 24 0.136032 5 C py 29 -0.136032 6 C py - Vector 25 Occ=2.000000D+00 E=-3.739779D-01 Symmetry=bu - MO Center= 1.5D-15, -2.7D-16, -3.0D-17, r^2= 4.4D+00 + Vector 25 Occ=2.000000D+00 E=-3.739780D-01 Symmetry=bu + MO Center= -7.0D-16, -7.2D-16, -1.7D-32, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.308778 3 C px 18 0.308778 4 C px - 31 0.253683 7 H s 32 -0.253683 8 H s + 13 0.308776 3 C px 18 0.308776 4 C px + 31 0.253688 7 H s 32 -0.253688 8 H s 24 -0.224700 5 C py 29 -0.224700 6 C py - 33 0.217050 9 H s 34 -0.217050 10 H s - 23 0.188239 5 C px 28 0.188239 6 C px + 33 0.217062 9 H s 34 -0.217062 10 H s + 23 0.188260 5 C px 28 0.188260 6 C px - Vector 26 Occ=2.000000D+00 E=-3.511500D-01 Symmetry=bu - MO Center= 9.0D-16, 2.8D-16, 4.2D-18, r^2= 8.9D+00 + Vector 26 Occ=2.000000D+00 E=-3.511460D-01 Symmetry=bu + MO Center= -3.5D-17, 1.3D-15, -2.1D-33, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 -0.245306 15 C py 55 -0.245306 16 C py - 14 0.225016 3 C py 19 0.225016 4 C py - 37 -0.201407 11 C px 42 -0.201407 12 C px - 24 -0.194666 5 C py 29 -0.194666 6 C py - 38 0.186270 11 C py 43 0.186270 12 C py + 50 -0.245322 15 C py 55 -0.245322 16 C py + 14 0.224995 3 C py 19 0.224995 4 C py + 37 -0.201413 11 C px 42 -0.201413 12 C px + 24 -0.194639 5 C py 29 -0.194639 6 C py + 38 0.186266 11 C py 43 0.186266 12 C py - Vector 27 Occ=2.000000D+00 E=-3.472862D-01 Symmetry=ag - MO Center= 3.1D-17, 2.5D-16, -1.2D-16, r^2= 1.2D+01 + Vector 27 Occ=2.000000D+00 E=-3.472892D-01 Symmetry=ag + MO Center= 1.3D-15, -9.1D-15, 1.7D-16, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.295553 15 C px 54 -0.295553 16 C px - 57 0.268071 17 H s 58 0.268071 18 H s - 37 -0.207910 11 C px 42 0.207910 12 C px - 45 0.199900 13 H s 46 0.199900 14 H s - 31 -0.155818 7 H s 32 -0.155818 8 H s + 49 0.295552 15 C px 54 -0.295552 16 C px + 57 0.268066 17 H s 58 0.268066 18 H s + 37 -0.207915 11 C px 42 0.207915 12 C px + 45 0.199902 13 H s 46 0.199902 14 H s + 31 -0.155815 7 H s 32 -0.155815 8 H s - Vector 28 Occ=2.000000D+00 E=-3.245088D-01 Symmetry=au - MO Center= 4.9D-16, -2.6D-15, 8.0D-17, r^2= 3.6D+00 + Vector 28 Occ=2.000000D+00 E=-3.245066D-01 Symmetry=au + MO Center= -1.7D-15, -8.6D-15, 6.7D-16, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.337541 1 C pz 10 0.337541 2 C pz - 15 0.297866 3 C pz 20 0.297866 4 C pz - 25 0.297231 5 C pz 30 0.297231 6 C pz - 39 0.174025 11 C pz 44 0.174025 12 C pz + 5 0.337544 1 C pz 10 0.337544 2 C pz + 15 0.297864 3 C pz 20 0.297864 4 C pz + 25 0.297228 5 C pz 30 0.297228 6 C pz + 39 0.174034 11 C pz 44 0.174034 12 C pz + 51 0.092466 15 C pz 56 0.092466 16 C pz - Vector 29 Occ=2.000000D+00 E=-3.112466D-01 Symmetry=bu - MO Center= 5.3D-15, -1.2D-15, -1.1D-18, r^2= 1.2D+01 + Vector 29 Occ=2.000000D+00 E=-3.112490D-01 Symmetry=bu + MO Center= 1.6D-16, 8.4D-16, 1.4D-31, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.258810 13 H s 46 -0.258810 14 H s - 4 0.242385 1 C py 9 0.242385 2 C py - 57 0.230613 17 H s 58 -0.230613 18 H s - 37 -0.216952 11 C px 42 -0.216952 12 C px - 59 -0.213033 19 H s 60 0.213033 20 H s + 45 0.258811 13 H s 46 -0.258811 14 H s + 4 0.242381 1 C py 9 0.242381 2 C py + 57 0.230602 17 H s 58 -0.230602 18 H s + 37 -0.216947 11 C px 42 -0.216947 12 C px + 59 -0.213040 19 H s 60 0.213040 20 H s - Vector 30 Occ=2.000000D+00 E=-2.927991D-01 Symmetry=ag - MO Center= -2.3D-16, -7.6D-16, -1.6D-17, r^2= 6.2D+00 + Vector 30 Occ=2.000000D+00 E=-2.928021D-01 Symmetry=ag + MO Center= 1.0D-16, -1.8D-16, -2.1D-16, r^2= 6.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 -0.278610 3 C py 19 0.278610 4 C py - 4 0.270063 1 C py 9 -0.270063 2 C py - 38 0.249434 11 C py 43 -0.249434 12 C py - 33 -0.237888 9 H s 34 -0.237888 10 H s - 24 0.235614 5 C py 29 -0.235614 6 C py + 14 -0.278639 3 C py 19 0.278639 4 C py + 4 0.270138 1 C py 9 -0.270138 2 C py + 38 0.249522 11 C py 43 -0.249522 12 C py + 33 -0.237753 9 H s 34 -0.237753 10 H s + 24 0.235686 5 C py 29 -0.235686 6 C py - Vector 31 Occ=2.000000D+00 E=-2.874575D-01 Symmetry=ag - MO Center= 5.4D-16, -2.3D-15, -9.2D-18, r^2= 6.1D+00 + Vector 31 Occ=2.000000D+00 E=-2.874565D-01 Symmetry=ag + MO Center= -4.5D-17, 2.0D-16, 3.7D-17, r^2= 6.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 3 0.298526 1 C px 8 -0.298526 2 C px - 23 0.281456 5 C px 28 -0.281456 6 C px - 31 -0.259051 7 H s 32 -0.259051 8 H s - 13 -0.225103 3 C px 18 0.225103 4 C px - 45 -0.180917 13 H s 46 -0.180917 14 H s + 3 0.298638 1 C px 8 -0.298638 2 C px + 23 0.281521 5 C px 28 -0.281521 6 C px + 31 -0.259065 7 H s 32 -0.259065 8 H s + 13 -0.225213 3 C px 18 0.225213 4 C px + 45 -0.180858 13 H s 46 -0.180858 14 H s - Vector 32 Occ=2.000000D+00 E=-2.635512D-01 Symmetry=bg - MO Center= -9.0D-17, 1.2D-14, 6.3D-21, r^2= 7.8D+00 + Vector 32 Occ=2.000000D+00 E=-2.635517D-01 Symmetry=bg + MO Center= 1.0D-15, 8.6D-15, -2.3D-22, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 -0.376543 11 C pz 44 0.376543 12 C pz - 5 0.348923 1 C pz 10 -0.348923 2 C pz - 51 -0.271385 15 C pz 56 0.271385 16 C pz + 39 -0.376546 11 C pz 44 0.376546 12 C pz + 5 0.348929 1 C pz 10 -0.348929 2 C pz + 51 -0.271376 15 C pz 56 0.271376 16 C pz + 25 -0.132807 5 C pz 30 0.132807 6 C pz + 15 0.130769 3 C pz 20 -0.130769 4 C pz - Vector 33 Occ=2.000000D+00 E=-2.124471D-01 Symmetry=au - MO Center= -6.5D-16, -9.4D-15, -2.6D-16, r^2= 1.1D+01 + Vector 33 Occ=2.000000D+00 E=-2.124447D-01 Symmetry=au + MO Center= 5.1D-15, -2.1D-15, -8.1D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 0.417877 15 C pz 56 0.417877 16 C pz + 51 0.417870 15 C pz 56 0.417870 16 C pz 39 0.413792 11 C pz 44 0.413792 12 C pz - 15 -0.179193 3 C pz 20 -0.179193 4 C pz - 25 -0.176755 5 C pz 30 -0.176755 6 C pz + 15 -0.179204 3 C pz 20 -0.179204 4 C pz + 25 -0.176764 5 C pz 30 -0.176764 6 C pz - Vector 34 Occ=2.000000D+00 E=-1.950566D-01 Symmetry=bg - MO Center= -2.1D-15, -7.7D-16, 5.9D-17, r^2= 2.7D+00 + Vector 34 Occ=2.000000D+00 E=-1.950571D-01 Symmetry=bg + MO Center= -4.9D-15, 2.6D-16, -6.8D-21, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.463064 3 C pz 20 -0.463064 4 C pz - 25 0.458194 5 C pz 30 -0.458194 6 C pz + 15 0.463067 3 C pz 20 -0.463067 4 C pz + 25 0.458191 5 C pz 30 -0.458191 6 C pz - Vector 35 Occ=2.000000D+00 E=-1.530803D-01 Symmetry=bg - MO Center= -4.1D-33, 7.8D-16, 3.0D-18, r^2= 8.1D+00 + Vector 35 Occ=2.000000D+00 E=-1.530761D-01 Symmetry=bg + MO Center= 5.6D-17, 1.7D-15, 2.4D-21, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 0.397417 15 C pz 56 -0.397417 16 C pz - 5 0.387575 1 C pz 10 -0.387575 2 C pz - 25 -0.228724 5 C pz 30 0.228724 6 C pz + 51 0.397425 15 C pz 56 -0.397425 16 C pz + 5 0.387574 1 C pz 10 -0.387574 2 C pz + 25 -0.228725 5 C pz 30 0.228725 6 C pz 39 0.223621 11 C pz 44 -0.223621 12 C pz - 15 0.217057 3 C pz 20 -0.217057 4 C pz + 15 0.217051 3 C pz 20 -0.217051 4 C pz - Vector 36 Occ=0.000000D+00 E= 3.740717D-02 Symmetry=au - MO Center= 8.0D-16, -2.8D-14, 4.1D-16, r^2= 8.1D+00 + Vector 36 Occ=0.000000D+00 E= 3.739915D-02 Symmetry=au + MO Center= 2.3D-16, -1.1D-16, -1.5D-17, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 -0.449945 15 C pz 56 -0.449945 16 C pz + 51 -0.449948 15 C pz 56 -0.449948 16 C pz 5 0.442445 1 C pz 10 0.442445 2 C pz - 25 -0.276549 5 C pz 30 -0.276549 6 C pz - 39 0.256327 11 C pz 44 0.256327 12 C pz - 15 -0.232922 3 C pz 20 -0.232922 4 C pz + 25 -0.276536 5 C pz 30 -0.276536 6 C pz + 39 0.256311 11 C pz 44 0.256311 12 C pz + 15 -0.232933 3 C pz 20 -0.232933 4 C pz - Vector 37 Occ=0.000000D+00 E= 9.036486D-02 Symmetry=au - MO Center= -8.7D-15, 2.0D-15, 5.6D-16, r^2= 2.7D+00 + Vector 37 Occ=0.000000D+00 E= 9.036383D-02 Symmetry=au + MO Center= -4.8D-15, 6.6D-16, 6.5D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.582587 3 C pz 20 0.582587 4 C pz - 25 -0.553532 5 C pz 30 -0.553532 6 C pz + 15 0.582581 3 C pz 20 0.582581 4 C pz + 25 -0.553538 5 C pz 30 -0.553538 6 C pz + 5 -0.031517 1 C pz 10 -0.031517 2 C pz - Vector 38 Occ=0.000000D+00 E= 1.106123D-01 Symmetry=bg - MO Center= 7.6D-15, 1.8D-14, 8.7D-17, r^2= 1.1D+01 + Vector 38 Occ=0.000000D+00 E= 1.106076D-01 Symmetry=bg + MO Center= 5.1D-15, -8.5D-16, -1.6D-22, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 0.522233 11 C pz 44 -0.522233 12 C pz - 51 -0.523179 15 C pz 56 0.523179 16 C pz - 15 0.240586 3 C pz 20 -0.240586 4 C pz - 25 -0.232030 5 C pz 30 0.232030 6 C pz + 39 0.522224 11 C pz 44 -0.522224 12 C pz + 51 -0.523173 15 C pz 56 0.523173 16 C pz + 15 0.240596 3 C pz 20 -0.240596 4 C pz + 25 -0.232042 5 C pz 30 0.232042 6 C pz - Vector 39 Occ=0.000000D+00 E= 1.822119D-01 Symmetry=au - MO Center= -1.9D-16, 1.1D-15, -1.6D-16, r^2= 7.9D+00 + Vector 39 Occ=0.000000D+00 E= 1.822084D-01 Symmetry=au + MO Center= -1.3D-16, -1.3D-15, -1.1D-15, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 -0.529018 11 C pz 44 -0.529018 12 C pz - 5 0.497563 1 C pz 10 0.497563 2 C pz + 39 -0.529022 11 C pz 44 -0.529022 12 C pz + 5 0.497560 1 C pz 10 0.497560 2 C pz 51 0.379413 15 C pz 56 0.379413 16 C pz - 25 -0.199830 5 C pz 30 -0.199830 6 C pz - 15 -0.166289 3 C pz 20 -0.166289 4 C pz + 25 -0.199825 5 C pz 30 -0.199825 6 C pz + 15 -0.166282 3 C pz 20 -0.166282 4 C pz - Vector 40 Occ=0.000000D+00 E= 2.725252D-01 Symmetry=bg - MO Center= 2.8D-15, 6.4D-15, 2.0D-16, r^2= 3.8D+00 + Vector 40 Occ=0.000000D+00 E= 2.725174D-01 Symmetry=bg + MO Center= -6.3D-17, 1.9D-15, -6.4D-22, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.543548 1 C pz 10 -0.543548 2 C pz - 25 0.467238 5 C pz 30 -0.467238 6 C pz - 15 -0.464161 3 C pz 20 0.464161 4 C pz - 39 0.287595 11 C pz 44 -0.287595 12 C pz - 51 -0.155910 15 C pz 56 0.155910 16 C pz + 5 0.543543 1 C pz 10 -0.543543 2 C pz + 25 0.467233 5 C pz 30 -0.467233 6 C pz + 15 -0.464154 3 C pz 20 0.464154 4 C pz + 39 0.287606 11 C pz 44 -0.287606 12 C pz + 51 -0.155916 15 C pz 56 0.155916 16 C pz - Vector 41 Occ=0.000000D+00 E= 3.322354D-01 Symmetry=ag - MO Center= 1.5D-14, 2.1D-14, 2.9D-16, r^2= 8.8D+00 + Vector 41 Occ=0.000000D+00 E= 3.322390D-01 Symmetry=ag + MO Center= -5.0D-17, -5.0D-17, 5.0D-17, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 33 -0.422893 9 H s 34 -0.422893 10 H s - 31 -0.413191 7 H s 32 -0.413191 8 H s - 2 0.401841 1 C s 7 0.401841 2 C s - 59 -0.356586 19 H s 60 -0.356586 20 H s + 31 -0.413190 7 H s 32 -0.413190 8 H s + 2 0.401872 1 C s 7 0.401872 2 C s + 59 -0.356592 19 H s 60 -0.356592 20 H s 38 -0.338856 11 C py 43 0.338856 12 C py - Vector 42 Occ=0.000000D+00 E= 3.407361D-01 Symmetry=bu - MO Center= -1.8D-14, 2.8D-14, -1.3D-17, r^2= 1.0D+01 + Vector 42 Occ=0.000000D+00 E= 3.407333D-01 Symmetry=bu + MO Center= 8.4D-16, -8.1D-15, -1.9D-25, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.434984 13 H s 46 -0.434984 14 H s + 13 0.355451 3 C px 18 0.355451 4 C px + 37 0.345450 11 C px 42 0.345450 12 C px + 57 -0.323762 17 H s 58 0.323762 18 H s + 31 -0.319780 7 H s 32 0.319780 8 H s + + Vector 43 Occ=0.000000D+00 E= 3.794058D-01 Symmetry=bu + MO Center= 1.4D-16, -3.2D-16, 7.8D-22, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.541920 11 C s 41 -0.541920 12 C s + 4 0.460379 1 C py 9 0.460379 2 C py + 33 0.411930 9 H s 34 -0.411930 10 H s + 59 0.346836 19 H s 60 -0.346836 20 H s + 2 0.334928 1 C s 7 -0.334928 2 C s + + Vector 44 Occ=0.000000D+00 E= 3.814743D-01 Symmetry=ag + MO Center= -4.2D-15, 2.9D-15, -6.1D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.575754 13 H s 46 0.575754 14 H s + 12 0.394003 3 C s 17 0.394003 4 C s + 57 -0.394270 17 H s 58 -0.394270 18 H s + 36 -0.382518 11 C s 41 -0.382518 12 C s + 37 0.333681 11 C px 42 -0.333681 12 C px + + Vector 45 Occ=0.000000D+00 E= 4.109921D-01 Symmetry=ag + MO Center= -1.7D-13, 4.8D-13, -2.6D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.651816 15 C s 53 0.651816 16 C s + 22 0.617569 5 C s 27 0.617569 6 C s + 57 -0.511621 17 H s 58 -0.511621 18 H s + 12 -0.450886 3 C s 17 -0.450886 4 C s + 59 -0.325872 19 H s 60 -0.325872 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.119794D-01 Symmetry=bu + MO Center= 1.7D-13, -4.8D-13, 2.4D-23, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.614479 5 C s 27 -0.614479 6 C s + 48 0.538380 15 C s 53 -0.538380 16 C s + 2 0.478800 1 C s 7 -0.478800 2 C s + 57 -0.448609 17 H s 58 0.448609 18 H s + 12 -0.443260 3 C s 17 0.443260 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.267645D-01 Symmetry=bu + MO Center= 1.0D-14, 1.1D-14, 5.9D-21, r^2= 9.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.599120 7 H s 32 -0.599120 8 H s + 36 -0.456794 11 C s 41 0.456794 12 C s + 45 0.441157 13 H s 46 -0.441157 14 H s + 12 -0.356708 3 C s 17 0.356708 4 C s + 59 0.338785 19 H s 60 -0.338785 20 H s + + Vector 48 Occ=0.000000D+00 E= 4.396276D-01 Symmetry=ag + MO Center= -6.3D-15, 7.8D-14, 4.5D-17, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.784612 1 C s 7 0.784612 2 C s + 36 -0.563896 11 C s 41 -0.563896 12 C s + 12 -0.490173 3 C s 17 -0.490173 4 C s + 22 -0.417660 5 C s 27 -0.417660 6 C s + 48 0.410832 15 C s 53 0.410832 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.527199D-01 Symmetry=bu + MO Center= -1.6D-15, -8.2D-14, -6.6D-24, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.434922 13 H s 46 -0.434922 14 H s - 13 0.355399 3 C px 18 0.355399 4 C px - 37 0.345453 11 C px 42 0.345453 12 C px - 57 -0.323820 17 H s 58 0.323820 18 H s - 31 -0.319733 7 H s 32 0.319733 8 H s + 48 0.711997 15 C s 53 -0.711997 16 C s + 57 -0.525312 17 H s 58 0.525312 18 H s + 33 0.472372 9 H s 34 -0.472372 10 H s + 36 -0.430311 11 C s 41 0.430311 12 C s + 22 -0.408571 5 C s 27 0.408571 6 C s - Vector 43 Occ=0.000000D+00 E= 3.793988D-01 Symmetry=bu - MO Center= -1.0D-13, 2.4D-14, 6.5D-17, r^2= 7.7D+00 + Vector 50 Occ=0.000000D+00 E= 4.782364D-01 Symmetry=ag + MO Center= 1.3D-15, 2.3D-15, 1.6D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.541980 11 C s 41 -0.541980 12 C s - 4 0.460371 1 C py 9 0.460371 2 C py - 33 0.412018 9 H s 34 -0.412018 10 H s - 59 0.346715 19 H s 60 -0.346715 20 H s - 2 0.334836 1 C s 7 -0.334836 2 C s + 12 0.708635 3 C s 17 0.708635 4 C s + 22 -0.614995 5 C s 27 -0.614995 6 C s + 59 -0.475632 19 H s 60 -0.475632 20 H s + 48 0.413945 15 C s 53 0.413945 16 C s + 50 -0.383869 15 C py 55 0.383869 16 C py - Vector 44 Occ=0.000000D+00 E= 3.814761D-01 Symmetry=ag - MO Center= 9.3D-14, -1.0D-13, 1.0D-16, r^2= 1.1D+01 + Vector 51 Occ=0.000000D+00 E= 5.262409D-01 Symmetry=ag + MO Center= -5.2D-16, -1.7D-18, -2.3D-17, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.575702 13 H s 46 0.575702 14 H s - 12 0.393935 3 C s 17 0.393935 4 C s - 57 -0.394339 17 H s 58 -0.394339 18 H s - 36 -0.382428 11 C s 41 -0.382428 12 C s - 37 0.333670 11 C px 42 -0.333670 12 C px + 4 0.600992 1 C py 9 -0.600992 2 C py + 36 -0.486185 11 C s 41 -0.486185 12 C s + 13 -0.462747 3 C px 18 0.462747 4 C px + 2 -0.448944 1 C s 7 -0.448944 2 C s + 49 -0.343460 15 C px 54 0.343460 16 C px - Vector 45 Occ=0.000000D+00 E= 4.110019D-01 Symmetry=ag - MO Center= 3.1D-13, -9.0D-13, -8.7D-17, r^2= 1.1D+01 + Vector 52 Occ=0.000000D+00 E= 5.457845D-01 Symmetry=bu + MO Center= 2.5D-16, -9.7D-15, 1.2D-23, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.651794 15 C s 53 0.651794 16 C s - 22 0.617545 5 C s 27 0.617545 6 C s - 57 -0.511556 17 H s 58 -0.511556 18 H s - 12 -0.450921 3 C s 17 -0.450921 4 C s - 59 -0.325932 19 H s 60 -0.325932 20 H s + 12 0.649790 3 C s 17 -0.649790 4 C s + 3 -0.562509 1 C px 8 -0.562509 2 C px + 50 0.482776 15 C py 55 0.482776 16 C py + 24 -0.475219 5 C py 29 -0.475219 6 C py + 59 0.355918 19 H s 60 -0.355918 20 H s - Vector 46 Occ=0.000000D+00 E= 4.119879D-01 Symmetry=bu - MO Center= -3.3D-13, 9.1D-13, -2.9D-16, r^2= 1.1D+01 + Vector 53 Occ=0.000000D+00 E= 5.759991D-01 Symmetry=ag + MO Center= -2.4D-16, -1.0D-15, -1.2D-17, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.614470 5 C s 27 -0.614470 6 C s - 48 0.538364 15 C s 53 -0.538364 16 C s - 2 0.478798 1 C s 7 -0.478798 2 C s - 57 -0.448570 17 H s 58 0.448570 18 H s - 12 -0.443261 3 C s 17 0.443261 4 C s + 23 -0.532861 5 C px 28 0.532861 6 C px + 13 0.526978 3 C px 18 -0.526978 4 C px + 33 0.519093 9 H s 34 0.519093 10 H s + 31 -0.447492 7 H s 32 -0.447492 8 H s + 24 0.396531 5 C py 29 -0.396531 6 C py - Vector 47 Occ=0.000000D+00 E= 4.267671D-01 Symmetry=bu - MO Center= 9.0D-15, 2.0D-14, -3.1D-17, r^2= 9.2D+00 + Vector 54 Occ=0.000000D+00 E= 5.994376D-01 Symmetry=bu + MO Center= 5.6D-16, 6.4D-16, 4.5D-24, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 0.599150 7 H s 32 -0.599150 8 H s - 36 -0.456657 11 C s 41 0.456657 12 C s - 45 0.441108 13 H s 46 -0.441108 14 H s - 12 -0.356766 3 C s 17 0.356766 4 C s - 59 0.338857 19 H s 60 -0.338857 20 H s + 14 0.721164 3 C py 19 0.721164 4 C py + 22 0.602656 5 C s 27 -0.602656 6 C s + 36 -0.418121 11 C s 41 0.418121 12 C s + 24 0.396201 5 C py 29 0.396201 6 C py + 2 -0.394048 1 C s 7 0.394048 2 C s - Vector 48 Occ=0.000000D+00 E= 4.396342D-01 Symmetry=ag - MO Center= 5.2D-15, 6.2D-14, -1.4D-16, r^2= 7.5D+00 + Vector 55 Occ=0.000000D+00 E= 6.249996D-01 Symmetry=bu + MO Center= 3.6D-17, 8.7D-16, 1.8D-23, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.784543 1 C s 7 0.784543 2 C s - 36 -0.563960 11 C s 41 -0.563960 12 C s - 12 -0.490120 3 C s 17 -0.490120 4 C s - 22 -0.417636 5 C s 27 -0.417636 6 C s - 48 0.410895 15 C s 53 0.410895 16 C s + 2 0.613382 1 C s 7 -0.613382 2 C s + 49 -0.524934 15 C px 54 -0.524934 16 C px + 38 0.478472 11 C py 43 0.478472 12 C py + 23 -0.371900 5 C px 28 -0.371900 6 C px + 57 0.359703 17 H s 58 -0.359703 18 H s - Vector 49 Occ=0.000000D+00 E= 4.527325D-01 Symmetry=bu - MO Center= 3.8D-15, -7.1D-14, 5.8D-17, r^2= 1.2D+01 + Vector 56 Occ=0.000000D+00 E= 6.396498D-01 Symmetry=ag + MO Center= -1.2D-15, 5.2D-15, 1.3D-17, r^2= 9.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.712002 15 C s 53 -0.712002 16 C s - 57 -0.525304 17 H s 58 0.525304 18 H s - 33 0.472391 9 H s 34 -0.472391 10 H s - 36 -0.430350 11 C s 41 0.430350 12 C s - 22 -0.408564 5 C s 27 0.408564 6 C s + 37 0.551500 11 C px 42 -0.551500 12 C px + 50 -0.534557 15 C py 55 0.534557 16 C py + 14 0.380953 3 C py 19 -0.380953 4 C py + 4 -0.365061 1 C py 9 0.365061 2 C py + 59 -0.331930 19 H s 60 -0.331930 20 H s - Vector 50 Occ=0.000000D+00 E= 4.782522D-01 Symmetry=ag - MO Center= 1.1D-15, 4.2D-15, -3.3D-16, r^2= 1.1D+01 + Vector 57 Occ=0.000000D+00 E= 6.828579D-01 Symmetry=ag + MO Center= -5.5D-16, -1.3D-15, 2.7D-16, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.708705 3 C s 17 0.708705 4 C s - 22 -0.614998 5 C s 27 -0.614998 6 C s - 59 -0.475604 19 H s 60 -0.475604 20 H s - 48 0.413932 15 C s 53 0.413932 16 C s - 50 -0.383834 15 C py 55 0.383834 16 C py + 38 0.662732 11 C py 43 -0.662732 12 C py + 49 -0.579597 15 C px 54 0.579597 16 C px + 24 -0.448296 5 C py 29 0.448296 6 C py + 14 -0.394989 3 C py 19 0.394989 4 C py + 4 -0.383370 1 C py 9 0.383370 2 C py - Vector 51 Occ=0.000000D+00 E= 5.262553D-01 Symmetry=ag - MO Center= 5.2D-15, -2.8D-14, -3.3D-16, r^2= 6.5D+00 + Vector 58 Occ=0.000000D+00 E= 7.172123D-01 Symmetry=bu + MO Center= -1.9D-16, -2.3D-16, 8.5D-25, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.600949 1 C py 9 -0.600949 2 C py - 36 -0.486145 11 C s 41 -0.486145 12 C s - 13 -0.462715 3 C px 18 0.462715 4 C px - 2 -0.449116 1 C s 7 -0.449116 2 C s - 49 -0.343463 15 C px 54 0.343463 16 C px + 37 0.608565 11 C px 42 0.608565 12 C px + 50 -0.540521 15 C py 55 -0.540521 16 C py + 48 -0.536086 15 C s 53 0.536086 16 C s + 36 0.465537 11 C s 41 -0.465537 12 C s + 38 -0.463180 11 C py 43 -0.463180 12 C py + + Vector 59 Occ=0.000000D+00 E= 7.795297D-01 Symmetry=ag + MO Center= 5.1D-16, 8.4D-15, 8.6D-16, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.701660 1 C px 8 -0.701660 2 C px + 14 -0.535933 3 C py 19 0.535933 4 C py + 23 -0.436429 5 C px 28 0.436429 6 C px + 37 0.428799 11 C px 42 -0.428799 12 C px + 24 -0.413300 5 C py 29 0.413300 6 C py + + Vector 60 Occ=0.000000D+00 E= 7.945720D-01 Symmetry=bu + MO Center= 1.1D-15, -2.5D-15, 6.3D-26, r^2= 3.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.657748 1 C py 9 0.657748 2 C py + 13 -0.565924 3 C px 18 -0.565924 4 C px + 23 0.501426 5 C px 28 0.501426 6 C px + 22 -0.418009 5 C s 27 0.418009 6 C s + 24 -0.388862 5 C py 29 -0.388862 6 C py center of mass @@ -4083,9 +5150,9 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2635.030010129342 0.201628199728 0.000000000000 - 0.201628199728 390.070686128563 0.000000000000 - 0.000000000000 0.000000000000 3025.100696257906 + 2635.054908588280 0.214128976571 0.000000000000 + 0.214128976571 390.076166085683 0.000000000000 + 0.000000000000 0.000000000000 3025.131074673965 Multipole analysis of the density --------------------------------- @@ -4095,22 +5162,22 @@ Divinylbenzene in STO-3G basis set 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 1 1 0 0 0.000000 0.000000 0.000000 0.000000 - 1 0 1 0 -0.000000 -0.000000 -0.000000 0.000000 + 1 0 1 0 0.000000 0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - 2 2 0 0 -37.340646 -140.891384 -140.891384 244.442121 - 2 1 1 0 0.052347 2.886738 2.886738 -5.721128 + 2 2 0 0 -37.340482 -140.892737 -140.892737 244.444993 + 2 1 1 0 0.052186 2.889411 2.889411 -5.726636 2 1 0 1 0.000000 0.000000 0.000000 0.000000 - 2 0 2 0 -37.704664 -768.216034 -768.216034 1498.727404 - 2 0 1 1 -0.000000 -0.000000 -0.000000 0.000000 - 2 0 0 2 -43.586471 -21.793236 -21.793236 0.000000 - - - Parallel integral file used 8 records with 0 large values + 2 0 2 0 -37.703769 -768.223431 -768.223431 1498.743092 + 2 0 1 1 0.000000 0.000000 0.000000 0.000000 + 2 0 0 2 -43.586512 -21.793256 -21.793256 0.000000 Line search: - step= 1.00 grad=-8.3D-08 hess= 3.8D-09 energy= -382.308262 mode=accept - new step= 1.00 predicted energy= -382.308262 + step= 1.00 grad=-1.2D-07 hess=-1.7D-08 energy= -382.308261 mode=accept + new step= 1.00 predicted energy= -382.308261 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 -------- Step 3 @@ -4124,26 +5191,26 @@ Divinylbenzene in STO-3G basis set No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.23508647 1.41621544 0.00000000 - 2 C 6.0000 -0.23508647 -1.41621544 0.00000000 - 3 C 6.0000 1.31390635 0.48912330 0.00000000 - 4 C 6.0000 -1.31390635 -0.48912330 0.00000000 - 5 C 6.0000 1.08689379 -0.89453821 0.00000000 - 6 C 6.0000 -1.08689379 0.89453821 0.00000000 - 7 H 1.0000 2.34429319 0.87032423 0.00000000 - 8 H 1.0000 -2.34429319 -0.87032423 0.00000000 - 9 H 1.0000 1.94343860 -1.58086371 0.00000000 - 10 H 1.0000 -1.94343860 1.58086371 0.00000000 - 11 C 6.0000 -0.53391326 -2.88364140 0.00000000 - 12 C 6.0000 0.53391326 2.88364140 0.00000000 - 13 H 1.0000 -1.60648263 -3.12964688 0.00000000 - 14 H 1.0000 1.60648263 3.12964688 0.00000000 - 15 C 6.0000 0.36351559 -3.88448664 0.00000000 - 16 C 6.0000 -0.36351559 3.88448664 0.00000000 - 17 H 1.0000 1.44532237 -3.70881063 0.00000000 - 18 H 1.0000 -1.44532237 3.70881063 0.00000000 - 19 H 1.0000 0.04490649 -4.93338582 0.00000000 - 20 H 1.0000 -0.04490649 4.93338582 0.00000000 + 1 C 6.0000 0.23508346 1.41622985 0.00000000 + 2 C 6.0000 -0.23508346 -1.41622985 0.00000000 + 3 C 6.0000 1.31391866 0.48912507 0.00000000 + 4 C 6.0000 -1.31391866 -0.48912507 0.00000000 + 5 C 6.0000 1.08691131 -0.89453920 0.00000000 + 6 C 6.0000 -1.08691131 0.89453920 0.00000000 + 7 H 1.0000 2.34428971 0.87038359 0.00000000 + 8 H 1.0000 -2.34428971 -0.87038359 0.00000000 + 9 H 1.0000 1.94344652 -1.58087860 0.00000000 + 10 H 1.0000 -1.94344652 1.58087860 0.00000000 + 11 C 6.0000 -0.53389105 -2.88364229 0.00000000 + 12 C 6.0000 0.53389105 2.88364229 0.00000000 + 13 H 1.0000 -1.60646118 -3.12967212 0.00000000 + 14 H 1.0000 1.60646118 3.12967212 0.00000000 + 15 C 6.0000 0.36353694 -3.88450778 0.00000000 + 16 C 6.0000 -0.36353694 3.88450778 0.00000000 + 17 H 1.0000 1.44535655 -3.70889738 0.00000000 + 18 H 1.0000 -1.44535655 3.70889738 0.00000000 + 19 H 1.0000 0.04482672 -4.93338197 0.00000000 + 20 H 1.0000 -0.04482672 4.93338197 0.00000000 Atomic Mass ----------- @@ -4152,7 +5219,7 @@ Divinylbenzene in STO-3G basis set H 1.007825 - Effective nuclear repulsion energy (a.u.) 445.8961636860 + Effective nuclear repulsion energy (a.u.) 445.8936950715 Nuclear Dipole moment (a.u.) ---------------------------- @@ -4201,7 +5268,71 @@ Divinylbenzene in STO-3G basis set The DFT is already converged - Total DFT energy = -382.308261640529 + Total DFT energy = -382.308261486912 + + + General Information + ------------------- + SCF calculation type: DFT + Wavefunction type: closed shell. + No. of atoms : 20 + No. of electrons : 70 + Alpha electrons : 35 + Beta electrons : 35 + Charge : 0 + Spin multiplicity: 1 + Use of symmetry is: on ; symmetry adaption is: on + Maximum number of iterations: 30 + AO basis - number of functions: 60 + number of shells: 40 + Convergence on energy requested: 1.00D-06 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 + + XC Information + -------------- + B3LYP Method XC Potential + Hartree-Fock (Exact) Exchange 0.200 + Slater Exchange Functional 0.800 local + Becke 1988 Exchange Functional 0.720 non-local + Lee-Yang-Parr Correlation Functional 0.810 + VWN I RPA Correlation Functional 0.190 local + + Grid Information + ---------------- + Grid used for XC integration: medium + Radial quadrature: Mura-Knowles + Angular quadrature: Lebedev. + Tag B.-S. Rad. Rad. Pts. Rad. Cut. Ang. Pts. + --- ---------- --------- --------- --------- + C 0.70 49 12.0 434 + H 0.35 45 12.0 434 + Grid pruning is: on + Number of quadrature shells: 470 + Spatial weights used: Erf1 + + Convergence Information + ----------------------- + Convergence aids based upon iterative change in + total energy or number of iterations. + Levelshifting, if invoked, occurs when the + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + DIIS, if invoked, will attempt to extrapolate + using up to (NFOCK): 10 stored Fock matrices. + + Damping( 0%) Levelshifting(0.5) DIIS + --------------- ------------------- --------------- + dE on: start ASAP start + dE off: 2 iters 30 iters 30 iters + + + Screening Tolerance Information + ------------------------------- + Density screening/tol_rho: 1.00D-10 + AO Gaussian exp screening on grid/accAOfunc: 14 + CD Gaussian exp screening on grid/accCDfunc: 20 + XC Gaussian exp screening on grid/accXCfunc: 20 + Schwarz screening/accCoul: 1.00D-08 @@ -4223,38 +5354,39 @@ Divinylbenzene in STO-3G basis set atom coordinates gradient x y z x y z - 1 C 0.444249 2.676259 0.000000 0.000005 0.000003 0.000000 - 2 C -0.444249 -2.676259 0.000000 -0.000005 -0.000003 -0.000000 - 3 C 2.482923 0.924309 0.000000 -0.000003 0.000008 0.000000 - 4 C -2.482923 -0.924309 0.000000 0.000003 -0.000008 0.000000 - 5 C 2.053931 -1.690432 0.000000 0.000011 0.000007 0.000000 - 6 C -2.053931 1.690432 0.000000 -0.000011 -0.000007 0.000000 - 7 H 4.430072 1.644674 0.000000 -0.000002 -0.000003 0.000000 - 8 H -4.430072 -1.644674 0.000000 0.000002 0.000003 0.000000 - 9 H 3.672566 -2.987399 0.000000 -0.000008 0.000002 0.000000 - 10 H -3.672566 2.987399 0.000000 0.000008 -0.000002 0.000000 - 11 C -1.008950 -5.449292 0.000000 0.000001 -0.000003 0.000000 - 12 C 1.008950 5.449292 0.000000 -0.000001 0.000003 0.000000 - 13 H -3.035812 -5.914175 0.000000 0.000001 0.000006 0.000000 - 14 H 3.035812 5.914175 0.000000 -0.000001 -0.000006 0.000000 - 15 C 0.686945 -7.340615 0.000000 0.000006 0.000015 0.000000 - 16 C -0.686945 7.340615 0.000000 -0.000006 -0.000015 0.000000 - 17 H 2.731263 -7.008636 0.000000 -0.000003 -0.000008 0.000000 - 18 H -2.731263 7.008636 0.000000 0.000003 0.000008 0.000000 - 19 H 0.084861 -9.322747 0.000000 0.000007 -0.000005 0.000000 - 20 H -0.084861 9.322747 0.000000 -0.000007 0.000005 0.000000 + 1 C 0.444243 2.676286 0.000000 0.000014 0.000030 0.000000 + 2 C -0.444243 -2.676286 0.000000 -0.000014 -0.000030 0.000000 + 3 C 2.482946 0.924312 0.000000 0.000007 -0.000005 0.000000 + 4 C -2.482946 -0.924312 0.000000 -0.000007 0.000005 0.000000 + 5 C 2.053965 -1.690434 0.000000 0.000021 0.000010 0.000000 + 6 C -2.053965 1.690434 0.000000 -0.000021 -0.000010 0.000000 + 7 H 4.430065 1.644786 0.000000 -0.000001 0.000004 0.000000 + 8 H -4.430065 -1.644786 0.000000 0.000001 -0.000004 0.000000 + 9 H 3.672581 -2.987427 0.000000 -0.000008 -0.000001 0.000000 + 10 H -3.672581 2.987427 0.000000 0.000008 0.000001 0.000000 + 11 C -1.008908 -5.449294 0.000000 -0.000006 0.000016 0.000000 + 12 C 1.008908 5.449294 0.000000 0.000006 -0.000016 0.000000 + 13 H -3.035771 -5.914223 0.000000 -0.000002 0.000003 0.000000 + 14 H 3.035771 5.914223 0.000000 0.000002 -0.000003 0.000000 + 15 C 0.686985 -7.340655 0.000000 0.000024 0.000011 0.000000 + 16 C -0.686985 7.340655 0.000000 -0.000024 -0.000011 0.000000 + 17 H 2.731328 -7.008800 0.000000 0.000001 -0.000009 0.000000 + 18 H -2.731328 7.008800 0.000000 -0.000001 0.000009 0.000000 + 19 H 0.084710 -9.322740 0.000000 -0.000001 -0.000008 0.000000 + 20 H -0.084710 9.322740 0.000000 0.000001 0.000008 0.000000 ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.02 | 2.84 | + | CPU | 0.00 | 0.60 | ---------------------------------------- - | WALL | 0.02 | 2.84 | + | WALL | 0.00 | 0.60 | ---------------------------------------- + no constraints, skipping 0.0000000000000000 Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 3 -382.30826164 -7.9D-08 0.00001 0.00000 0.00011 0.00039 55.7 +@ 3 -382.30826149 -1.4D-07 0.00002 0.00000 0.00020 0.00053 16.8 ok ok ok ok @@ -4266,92 +5398,92 @@ Divinylbenzene in STO-3G basis set Type Name I J K L M Value Gradient ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- - 1 Stretch 1 3 1.42245 -0.00001 - 2 Stretch 1 6 1.42119 0.00000 - 3 Stretch 1 12 1.49754 -0.00001 - 4 Stretch 2 4 1.42245 -0.00001 - 5 Stretch 2 5 1.42119 0.00000 - 6 Stretch 2 11 1.49754 -0.00001 - 7 Stretch 3 5 1.40216 -0.00000 - 8 Stretch 3 7 1.09864 -0.00000 - 9 Stretch 4 6 1.40216 -0.00000 - 10 Stretch 4 8 1.09864 -0.00000 + 1 Stretch 1 3 1.42247 0.00001 + 2 Stretch 1 6 1.42121 0.00002 + 3 Stretch 1 12 1.49753 -0.00001 + 4 Stretch 2 4 1.42247 0.00001 + 5 Stretch 2 5 1.42121 0.00002 + 6 Stretch 2 11 1.49753 -0.00001 + 7 Stretch 3 5 1.40216 0.00000 + 8 Stretch 3 7 1.09865 -0.00000 + 9 Stretch 4 6 1.40216 0.00000 + 10 Stretch 4 8 1.09865 -0.00000 11 Stretch 5 9 1.09759 -0.00001 12 Stretch 6 10 1.09759 -0.00001 - 13 Stretch 11 13 1.10042 -0.00000 - 14 Stretch 11 15 1.34427 0.00000 - 15 Stretch 12 14 1.10042 -0.00000 - 16 Stretch 12 16 1.34427 0.00000 - 17 Stretch 15 17 1.09598 -0.00001 - 18 Stretch 15 19 1.09622 0.00000 - 19 Stretch 16 18 1.09598 -0.00001 - 20 Stretch 16 20 1.09622 0.00000 - 21 Bend 1 3 5 121.35706 -0.00000 - 22 Bend 1 3 7 119.02322 0.00000 - 23 Bend 1 6 4 120.85240 0.00000 - 24 Bend 1 6 10 119.76069 -0.00000 - 25 Bend 1 12 14 114.42831 -0.00000 - 26 Bend 1 12 16 126.60801 0.00000 - 27 Bend 2 4 6 121.35706 -0.00000 - 28 Bend 2 4 8 119.02322 0.00000 - 29 Bend 2 5 3 120.85240 0.00000 - 30 Bend 2 5 9 119.76069 -0.00000 - 31 Bend 2 11 13 114.42831 -0.00000 - 32 Bend 2 11 15 126.60801 0.00000 - 33 Bend 3 1 6 117.79055 -0.00000 - 34 Bend 3 1 12 119.16404 -0.00000 - 35 Bend 3 5 9 119.38691 0.00000 - 36 Bend 4 2 5 117.79055 -0.00000 - 37 Bend 4 2 11 119.16404 -0.00000 - 38 Bend 4 6 10 119.38691 0.00000 - 39 Bend 5 2 11 123.04542 0.00000 - 40 Bend 5 3 7 119.61972 -0.00000 - 41 Bend 6 1 12 123.04542 0.00000 - 42 Bend 6 4 8 119.61972 -0.00000 - 43 Bend 11 15 17 122.65784 0.00000 - 44 Bend 11 15 19 121.22189 0.00000 - 45 Bend 12 16 18 122.65784 0.00000 - 46 Bend 12 16 20 121.22189 0.00000 - 47 Bend 13 11 15 118.96367 0.00000 - 48 Bend 14 12 16 118.96367 0.00000 - 49 Bend 17 15 19 116.12028 -0.00000 - 50 Bend 18 16 20 116.12028 -0.00000 + 13 Stretch 11 13 1.10043 0.00000 + 14 Stretch 11 15 1.34429 0.00002 + 15 Stretch 12 14 1.10043 0.00000 + 16 Stretch 12 16 1.34429 0.00002 + 17 Stretch 15 17 1.09598 -0.00000 + 18 Stretch 15 19 1.09623 0.00001 + 19 Stretch 16 18 1.09598 -0.00000 + 20 Stretch 16 20 1.09623 0.00001 + 21 Bend 1 3 5 121.35727 -0.00000 + 22 Bend 1 3 7 119.02014 -0.00000 + 23 Bend 1 6 4 120.85246 0.00000 + 24 Bend 1 6 10 119.75952 -0.00000 + 25 Bend 1 12 14 114.42892 -0.00000 + 26 Bend 1 12 16 126.60923 0.00000 + 27 Bend 2 4 6 121.35727 -0.00000 + 28 Bend 2 4 8 119.02014 -0.00000 + 29 Bend 2 5 3 120.85246 0.00000 + 30 Bend 2 5 9 119.75952 -0.00000 + 31 Bend 2 11 13 114.42892 -0.00000 + 32 Bend 2 11 15 126.60923 0.00000 + 33 Bend 3 1 6 117.79027 -0.00000 + 34 Bend 3 1 12 119.16464 0.00000 + 35 Bend 3 5 9 119.38802 0.00000 + 36 Bend 4 2 5 117.79027 -0.00000 + 37 Bend 4 2 11 119.16464 0.00000 + 38 Bend 4 6 10 119.38802 0.00000 + 39 Bend 5 2 11 123.04509 0.00000 + 40 Bend 5 3 7 119.62260 0.00000 + 41 Bend 6 1 12 123.04509 0.00000 + 42 Bend 6 4 8 119.62260 0.00000 + 43 Bend 11 15 17 122.66073 0.00001 + 44 Bend 11 15 19 121.21705 -0.00000 + 45 Bend 12 16 18 122.66073 0.00001 + 46 Bend 12 16 20 121.21705 -0.00000 + 47 Bend 13 11 15 118.96184 0.00000 + 48 Bend 14 12 16 118.96184 0.00000 + 49 Bend 17 15 19 116.12222 -0.00000 + 50 Bend 18 16 20 116.12222 -0.00000 51 Torsion 1 3 5 2 0.00000 0.00000 52 Torsion 1 3 5 9 180.00000 0.00000 53 Torsion 1 6 4 2 0.00000 0.00000 - 54 Torsion 1 6 4 8 180.00000 -0.00000 + 54 Torsion 1 6 4 8 180.00000 0.00000 55 Torsion 1 12 16 18 0.00000 0.00000 - 56 Torsion 1 12 16 20 180.00000 -0.00000 + 56 Torsion 1 12 16 20 180.00000 0.00000 57 Torsion 2 4 6 10 180.00000 0.00000 - 58 Torsion 2 5 3 7 180.00000 -0.00000 - 59 Torsion 2 11 15 17 0.00000 -0.00000 - 60 Torsion 2 11 15 19 180.00000 -0.00000 + 58 Torsion 2 5 3 7 180.00000 0.00000 + 59 Torsion 2 11 15 17 0.00000 0.00000 + 60 Torsion 2 11 15 19 180.00000 0.00000 61 Torsion 3 1 6 4 0.00000 0.00000 - 62 Torsion 3 1 6 10 180.00000 -0.00000 + 62 Torsion 3 1 6 10 180.00000 0.00000 63 Torsion 3 1 12 14 0.00000 0.00000 64 Torsion 3 1 12 16 180.00000 0.00000 65 Torsion 3 5 2 4 0.00000 0.00000 66 Torsion 3 5 2 11 180.00000 0.00000 - 67 Torsion 4 2 5 9 180.00000 -0.00000 + 67 Torsion 4 2 5 9 180.00000 0.00000 68 Torsion 4 2 11 13 0.00000 0.00000 69 Torsion 4 2 11 15 180.00000 0.00000 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 -0.00000 + 71 Torsion 5 2 4 6 -0.00000 0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 - 73 Torsion 5 2 11 13 180.00000 -0.00000 + 73 Torsion 5 2 11 13 180.00000 0.00000 74 Torsion 5 2 11 15 0.00000 0.00000 - 75 Torsion 5 3 1 6 0.00000 -0.00000 - 76 Torsion 5 3 1 12 180.00000 -0.00000 + 75 Torsion 5 3 1 6 0.00000 0.00000 + 76 Torsion 5 3 1 12 180.00000 0.00000 77 Torsion 6 1 3 7 180.00000 0.00000 - 78 Torsion 6 1 12 14 180.00000 -0.00000 + 78 Torsion 6 1 12 14 180.00000 0.00000 79 Torsion 6 1 12 16 0.00000 0.00000 - 80 Torsion 6 4 2 11 180.00000 -0.00000 - 81 Torsion 7 3 1 12 -0.00000 -0.00000 + 80 Torsion 6 4 2 11 180.00000 0.00000 + 81 Torsion 7 3 1 12 -0.00000 0.00000 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 -0.00000 - 84 Torsion 8 4 6 10 0.00000 -0.00000 + 83 Torsion 8 4 2 11 -0.00000 0.00000 + 84 Torsion 8 4 6 10 0.00000 0.00000 85 Torsion 9 5 2 11 0.00000 0.00000 - 86 Torsion 10 6 1 12 0.00000 -0.00000 + 86 Torsion 10 6 1 12 0.00000 0.00000 87 Torsion 13 11 15 17 180.00000 0.00000 88 Torsion 13 11 15 19 -0.00000 0.00000 89 Torsion 14 12 16 18 180.00000 0.00000 @@ -4365,7 +5497,7 @@ Divinylbenzene in STO-3G basis set Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 3 -382.30826164 -7.9D-08 0.00001 0.00000 0.00011 0.00039 55.7 +@ 3 -382.30826149 -1.4D-07 0.00002 0.00000 0.00020 0.00053 16.8 ok ok ok ok @@ -4377,92 +5509,92 @@ Divinylbenzene in STO-3G basis set Type Name I J K L M Value Gradient ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- - 1 Stretch 1 3 1.42245 -0.00001 - 2 Stretch 1 6 1.42119 0.00000 - 3 Stretch 1 12 1.49754 -0.00001 - 4 Stretch 2 4 1.42245 -0.00001 - 5 Stretch 2 5 1.42119 0.00000 - 6 Stretch 2 11 1.49754 -0.00001 - 7 Stretch 3 5 1.40216 -0.00000 - 8 Stretch 3 7 1.09864 -0.00000 - 9 Stretch 4 6 1.40216 -0.00000 - 10 Stretch 4 8 1.09864 -0.00000 + 1 Stretch 1 3 1.42247 0.00001 + 2 Stretch 1 6 1.42121 0.00002 + 3 Stretch 1 12 1.49753 -0.00001 + 4 Stretch 2 4 1.42247 0.00001 + 5 Stretch 2 5 1.42121 0.00002 + 6 Stretch 2 11 1.49753 -0.00001 + 7 Stretch 3 5 1.40216 0.00000 + 8 Stretch 3 7 1.09865 -0.00000 + 9 Stretch 4 6 1.40216 0.00000 + 10 Stretch 4 8 1.09865 -0.00000 11 Stretch 5 9 1.09759 -0.00001 12 Stretch 6 10 1.09759 -0.00001 - 13 Stretch 11 13 1.10042 -0.00000 - 14 Stretch 11 15 1.34427 0.00000 - 15 Stretch 12 14 1.10042 -0.00000 - 16 Stretch 12 16 1.34427 0.00000 - 17 Stretch 15 17 1.09598 -0.00001 - 18 Stretch 15 19 1.09622 0.00000 - 19 Stretch 16 18 1.09598 -0.00001 - 20 Stretch 16 20 1.09622 0.00000 - 21 Bend 1 3 5 121.35706 -0.00000 - 22 Bend 1 3 7 119.02322 0.00000 - 23 Bend 1 6 4 120.85240 0.00000 - 24 Bend 1 6 10 119.76069 -0.00000 - 25 Bend 1 12 14 114.42831 -0.00000 - 26 Bend 1 12 16 126.60801 0.00000 - 27 Bend 2 4 6 121.35706 -0.00000 - 28 Bend 2 4 8 119.02322 0.00000 - 29 Bend 2 5 3 120.85240 0.00000 - 30 Bend 2 5 9 119.76069 -0.00000 - 31 Bend 2 11 13 114.42831 -0.00000 - 32 Bend 2 11 15 126.60801 0.00000 - 33 Bend 3 1 6 117.79055 -0.00000 - 34 Bend 3 1 12 119.16404 -0.00000 - 35 Bend 3 5 9 119.38691 0.00000 - 36 Bend 4 2 5 117.79055 -0.00000 - 37 Bend 4 2 11 119.16404 -0.00000 - 38 Bend 4 6 10 119.38691 0.00000 - 39 Bend 5 2 11 123.04542 0.00000 - 40 Bend 5 3 7 119.61972 -0.00000 - 41 Bend 6 1 12 123.04542 0.00000 - 42 Bend 6 4 8 119.61972 -0.00000 - 43 Bend 11 15 17 122.65784 0.00000 - 44 Bend 11 15 19 121.22189 0.00000 - 45 Bend 12 16 18 122.65784 0.00000 - 46 Bend 12 16 20 121.22189 0.00000 - 47 Bend 13 11 15 118.96367 0.00000 - 48 Bend 14 12 16 118.96367 0.00000 - 49 Bend 17 15 19 116.12028 -0.00000 - 50 Bend 18 16 20 116.12028 -0.00000 + 13 Stretch 11 13 1.10043 0.00000 + 14 Stretch 11 15 1.34429 0.00002 + 15 Stretch 12 14 1.10043 0.00000 + 16 Stretch 12 16 1.34429 0.00002 + 17 Stretch 15 17 1.09598 -0.00000 + 18 Stretch 15 19 1.09623 0.00001 + 19 Stretch 16 18 1.09598 -0.00000 + 20 Stretch 16 20 1.09623 0.00001 + 21 Bend 1 3 5 121.35727 -0.00000 + 22 Bend 1 3 7 119.02014 -0.00000 + 23 Bend 1 6 4 120.85246 0.00000 + 24 Bend 1 6 10 119.75952 -0.00000 + 25 Bend 1 12 14 114.42892 -0.00000 + 26 Bend 1 12 16 126.60923 0.00000 + 27 Bend 2 4 6 121.35727 -0.00000 + 28 Bend 2 4 8 119.02014 -0.00000 + 29 Bend 2 5 3 120.85246 0.00000 + 30 Bend 2 5 9 119.75952 -0.00000 + 31 Bend 2 11 13 114.42892 -0.00000 + 32 Bend 2 11 15 126.60923 0.00000 + 33 Bend 3 1 6 117.79027 -0.00000 + 34 Bend 3 1 12 119.16464 0.00000 + 35 Bend 3 5 9 119.38802 0.00000 + 36 Bend 4 2 5 117.79027 -0.00000 + 37 Bend 4 2 11 119.16464 0.00000 + 38 Bend 4 6 10 119.38802 0.00000 + 39 Bend 5 2 11 123.04509 0.00000 + 40 Bend 5 3 7 119.62260 0.00000 + 41 Bend 6 1 12 123.04509 0.00000 + 42 Bend 6 4 8 119.62260 0.00000 + 43 Bend 11 15 17 122.66073 0.00001 + 44 Bend 11 15 19 121.21705 -0.00000 + 45 Bend 12 16 18 122.66073 0.00001 + 46 Bend 12 16 20 121.21705 -0.00000 + 47 Bend 13 11 15 118.96184 0.00000 + 48 Bend 14 12 16 118.96184 0.00000 + 49 Bend 17 15 19 116.12222 -0.00000 + 50 Bend 18 16 20 116.12222 -0.00000 51 Torsion 1 3 5 2 0.00000 0.00000 52 Torsion 1 3 5 9 180.00000 0.00000 53 Torsion 1 6 4 2 0.00000 0.00000 - 54 Torsion 1 6 4 8 180.00000 -0.00000 + 54 Torsion 1 6 4 8 180.00000 0.00000 55 Torsion 1 12 16 18 0.00000 0.00000 - 56 Torsion 1 12 16 20 180.00000 -0.00000 + 56 Torsion 1 12 16 20 180.00000 0.00000 57 Torsion 2 4 6 10 180.00000 0.00000 - 58 Torsion 2 5 3 7 180.00000 -0.00000 - 59 Torsion 2 11 15 17 0.00000 -0.00000 - 60 Torsion 2 11 15 19 180.00000 -0.00000 + 58 Torsion 2 5 3 7 180.00000 0.00000 + 59 Torsion 2 11 15 17 0.00000 0.00000 + 60 Torsion 2 11 15 19 180.00000 0.00000 61 Torsion 3 1 6 4 0.00000 0.00000 - 62 Torsion 3 1 6 10 180.00000 -0.00000 + 62 Torsion 3 1 6 10 180.00000 0.00000 63 Torsion 3 1 12 14 0.00000 0.00000 64 Torsion 3 1 12 16 180.00000 0.00000 65 Torsion 3 5 2 4 0.00000 0.00000 66 Torsion 3 5 2 11 180.00000 0.00000 - 67 Torsion 4 2 5 9 180.00000 -0.00000 + 67 Torsion 4 2 5 9 180.00000 0.00000 68 Torsion 4 2 11 13 0.00000 0.00000 69 Torsion 4 2 11 15 180.00000 0.00000 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 -0.00000 + 71 Torsion 5 2 4 6 -0.00000 0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 - 73 Torsion 5 2 11 13 180.00000 -0.00000 + 73 Torsion 5 2 11 13 180.00000 0.00000 74 Torsion 5 2 11 15 0.00000 0.00000 - 75 Torsion 5 3 1 6 0.00000 -0.00000 - 76 Torsion 5 3 1 12 180.00000 -0.00000 + 75 Torsion 5 3 1 6 0.00000 0.00000 + 76 Torsion 5 3 1 12 180.00000 0.00000 77 Torsion 6 1 3 7 180.00000 0.00000 - 78 Torsion 6 1 12 14 180.00000 -0.00000 + 78 Torsion 6 1 12 14 180.00000 0.00000 79 Torsion 6 1 12 16 0.00000 0.00000 - 80 Torsion 6 4 2 11 180.00000 -0.00000 - 81 Torsion 7 3 1 12 -0.00000 -0.00000 + 80 Torsion 6 4 2 11 180.00000 0.00000 + 81 Torsion 7 3 1 12 -0.00000 0.00000 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 -0.00000 - 84 Torsion 8 4 6 10 0.00000 -0.00000 + 83 Torsion 8 4 2 11 -0.00000 0.00000 + 84 Torsion 8 4 6 10 0.00000 0.00000 85 Torsion 9 5 2 11 0.00000 0.00000 - 86 Torsion 10 6 1 12 0.00000 -0.00000 + 86 Torsion 10 6 1 12 0.00000 0.00000 87 Torsion 13 11 15 17 180.00000 0.00000 88 Torsion 13 11 15 19 -0.00000 0.00000 89 Torsion 14 12 16 18 180.00000 0.00000 @@ -4477,26 +5609,26 @@ Divinylbenzene in STO-3G basis set No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.23508647 1.41621544 0.00000000 - 2 C 6.0000 -0.23508647 -1.41621544 0.00000000 - 3 C 6.0000 1.31390635 0.48912330 0.00000000 - 4 C 6.0000 -1.31390635 -0.48912330 0.00000000 - 5 C 6.0000 1.08689379 -0.89453821 0.00000000 - 6 C 6.0000 -1.08689379 0.89453821 0.00000000 - 7 H 1.0000 2.34429319 0.87032423 0.00000000 - 8 H 1.0000 -2.34429319 -0.87032423 0.00000000 - 9 H 1.0000 1.94343860 -1.58086371 0.00000000 - 10 H 1.0000 -1.94343860 1.58086371 0.00000000 - 11 C 6.0000 -0.53391326 -2.88364140 0.00000000 - 12 C 6.0000 0.53391326 2.88364140 0.00000000 - 13 H 1.0000 -1.60648263 -3.12964688 0.00000000 - 14 H 1.0000 1.60648263 3.12964688 0.00000000 - 15 C 6.0000 0.36351559 -3.88448664 0.00000000 - 16 C 6.0000 -0.36351559 3.88448664 0.00000000 - 17 H 1.0000 1.44532237 -3.70881063 0.00000000 - 18 H 1.0000 -1.44532237 3.70881063 0.00000000 - 19 H 1.0000 0.04490649 -4.93338582 0.00000000 - 20 H 1.0000 -0.04490649 4.93338582 0.00000000 + 1 C 6.0000 0.23508346 1.41622985 0.00000000 + 2 C 6.0000 -0.23508346 -1.41622985 0.00000000 + 3 C 6.0000 1.31391866 0.48912507 0.00000000 + 4 C 6.0000 -1.31391866 -0.48912507 0.00000000 + 5 C 6.0000 1.08691131 -0.89453920 0.00000000 + 6 C 6.0000 -1.08691131 0.89453920 0.00000000 + 7 H 1.0000 2.34428971 0.87038359 0.00000000 + 8 H 1.0000 -2.34428971 -0.87038359 0.00000000 + 9 H 1.0000 1.94344652 -1.58087860 0.00000000 + 10 H 1.0000 -1.94344652 1.58087860 0.00000000 + 11 C 6.0000 -0.53389105 -2.88364229 0.00000000 + 12 C 6.0000 0.53389105 2.88364229 0.00000000 + 13 H 1.0000 -1.60646118 -3.12967212 0.00000000 + 14 H 1.0000 1.60646118 3.12967212 0.00000000 + 15 C 6.0000 0.36353694 -3.88450778 0.00000000 + 16 C 6.0000 -0.36353694 3.88450778 0.00000000 + 17 H 1.0000 1.44535655 -3.70889738 0.00000000 + 18 H 1.0000 -1.44535655 3.70889738 0.00000000 + 19 H 1.0000 0.04482672 -4.93338197 0.00000000 + 20 H 1.0000 -0.04482672 4.93338197 0.00000000 Atomic Mass ----------- @@ -4505,7 +5637,7 @@ Divinylbenzene in STO-3G basis set H 1.007825 - Effective nuclear repulsion energy (a.u.) 445.8961636860 + Effective nuclear repulsion energy (a.u.) 445.8936950715 Nuclear Dipole moment (a.u.) ---------------------------- @@ -4538,56 +5670,56 @@ Divinylbenzene in STO-3G basis set Type Name I J K L M Value Change ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- - 1 Stretch 1 3 1.42245 0.00041 - 2 Stretch 1 6 1.42119 -0.00078 - 3 Stretch 1 12 1.49754 -0.00030 - 4 Stretch 2 4 1.42245 0.00041 - 5 Stretch 2 5 1.42119 -0.00078 - 6 Stretch 2 11 1.49754 -0.00030 - 7 Stretch 3 5 1.40216 -0.00031 - 8 Stretch 3 7 1.09864 -0.00008 - 9 Stretch 4 6 1.40216 -0.00031 - 10 Stretch 4 8 1.09864 -0.00008 + 1 Stretch 1 3 1.42247 0.00043 + 2 Stretch 1 6 1.42121 -0.00076 + 3 Stretch 1 12 1.49753 -0.00032 + 4 Stretch 2 4 1.42247 0.00043 + 5 Stretch 2 5 1.42121 -0.00076 + 6 Stretch 2 11 1.49753 -0.00032 + 7 Stretch 3 5 1.40216 -0.00030 + 8 Stretch 3 7 1.09865 -0.00007 + 9 Stretch 4 6 1.40216 -0.00030 + 10 Stretch 4 8 1.09865 -0.00007 11 Stretch 5 9 1.09759 0.00058 12 Stretch 6 10 1.09759 0.00058 - 13 Stretch 11 13 1.10042 -0.00057 - 14 Stretch 11 15 1.34427 0.00004 - 15 Stretch 12 14 1.10042 -0.00057 - 16 Stretch 12 16 1.34427 0.00004 - 17 Stretch 15 17 1.09598 0.00000 - 18 Stretch 15 19 1.09622 -0.00045 - 19 Stretch 16 18 1.09598 0.00000 - 20 Stretch 16 20 1.09622 -0.00045 - 21 Bend 1 3 5 121.35706 0.20839 - 22 Bend 1 3 7 119.02322 -0.17787 - 23 Bend 1 6 4 120.85240 -0.02118 - 24 Bend 1 6 10 119.76069 0.33784 - 25 Bend 1 12 14 114.42831 -0.20122 - 26 Bend 1 12 16 126.60801 0.02809 - 27 Bend 2 4 6 121.35706 0.20839 - 28 Bend 2 4 8 119.02322 -0.17787 - 29 Bend 2 5 3 120.85240 -0.02118 - 30 Bend 2 5 9 119.76069 0.33784 - 31 Bend 2 11 13 114.42831 -0.20122 - 32 Bend 2 11 15 126.60801 0.02809 - 33 Bend 3 1 6 117.79055 -0.18721 - 34 Bend 3 1 12 119.16404 0.04248 - 35 Bend 3 5 9 119.38691 -0.31666 - 36 Bend 4 2 5 117.79055 -0.18721 - 37 Bend 4 2 11 119.16404 0.04248 - 38 Bend 4 6 10 119.38691 -0.31666 - 39 Bend 5 2 11 123.04542 0.14473 - 40 Bend 5 3 7 119.61972 -0.03052 - 41 Bend 6 1 12 123.04542 0.14473 - 42 Bend 6 4 8 119.61972 -0.03052 - 43 Bend 11 15 17 122.65784 0.17267 - 44 Bend 11 15 19 121.22189 -0.07304 - 45 Bend 12 16 18 122.65784 0.17267 - 46 Bend 12 16 20 121.22189 -0.07304 - 47 Bend 13 11 15 118.96367 0.17313 - 48 Bend 14 12 16 118.96367 0.17313 - 49 Bend 17 15 19 116.12028 -0.09963 - 50 Bend 18 16 20 116.12028 -0.09963 + 13 Stretch 11 13 1.10043 -0.00056 + 14 Stretch 11 15 1.34429 0.00005 + 15 Stretch 12 14 1.10043 -0.00056 + 16 Stretch 12 16 1.34429 0.00005 + 17 Stretch 15 17 1.09598 0.00001 + 18 Stretch 15 19 1.09623 -0.00044 + 19 Stretch 16 18 1.09598 0.00001 + 20 Stretch 16 20 1.09623 -0.00044 + 21 Bend 1 3 5 121.35727 0.20860 + 22 Bend 1 3 7 119.02014 -0.18096 + 23 Bend 1 6 4 120.85246 -0.02112 + 24 Bend 1 6 10 119.75952 0.33667 + 25 Bend 1 12 14 114.42892 -0.20061 + 26 Bend 1 12 16 126.60923 0.02931 + 27 Bend 2 4 6 121.35727 0.20860 + 28 Bend 2 4 8 119.02014 -0.18096 + 29 Bend 2 5 3 120.85246 -0.02112 + 30 Bend 2 5 9 119.75952 0.33667 + 31 Bend 2 11 13 114.42892 -0.20061 + 32 Bend 2 11 15 126.60923 0.02931 + 33 Bend 3 1 6 117.79027 -0.18748 + 34 Bend 3 1 12 119.16464 0.04308 + 35 Bend 3 5 9 119.38802 -0.31555 + 36 Bend 4 2 5 117.79027 -0.18748 + 37 Bend 4 2 11 119.16464 0.04308 + 38 Bend 4 6 10 119.38802 -0.31555 + 39 Bend 5 2 11 123.04509 0.14440 + 40 Bend 5 3 7 119.62260 -0.02764 + 41 Bend 6 1 12 123.04509 0.14440 + 42 Bend 6 4 8 119.62260 -0.02764 + 43 Bend 11 15 17 122.66073 0.17556 + 44 Bend 11 15 19 121.21705 -0.07787 + 45 Bend 12 16 18 122.66073 0.17556 + 46 Bend 12 16 20 121.21705 -0.07787 + 47 Bend 13 11 15 118.96184 0.17130 + 48 Bend 14 12 16 118.96184 0.17130 + 49 Bend 17 15 19 116.12222 -0.09768 + 50 Bend 18 16 20 116.12222 -0.09768 51 Torsion 1 3 5 2 0.00000 0.00000 52 Torsion 1 3 5 9 180.00000 0.00000 53 Torsion 1 6 4 2 0.00000 0.00000 @@ -4634,26 +5766,26 @@ Divinylbenzene in STO-3G basis set ------------------------------------------------------------------------------ center one | center two | atomic units | angstroms ------------------------------------------------------------------------------ - 3 C | 1 C | 2.68803 | 1.42245 - 4 C | 2 C | 2.68803 | 1.42245 - 5 C | 2 C | 2.68566 | 1.42119 + 3 C | 1 C | 2.68807 | 1.42247 + 4 C | 2 C | 2.68807 | 1.42247 + 5 C | 2 C | 2.68569 | 1.42121 5 C | 3 C | 2.64970 | 1.40216 - 6 C | 1 C | 2.68566 | 1.42119 + 6 C | 1 C | 2.68569 | 1.42121 6 C | 4 C | 2.64970 | 1.40216 - 7 H | 3 C | 2.07613 | 1.09864 - 8 H | 4 C | 2.07613 | 1.09864 + 7 H | 3 C | 2.07614 | 1.09865 + 8 H | 4 C | 2.07614 | 1.09865 9 H | 5 C | 2.07415 | 1.09759 10 H | 6 C | 2.07415 | 1.09759 - 11 C | 2 C | 2.82995 | 1.49754 - 12 C | 1 C | 2.82995 | 1.49754 - 13 H | 11 C | 2.07949 | 1.10042 - 14 H | 12 C | 2.07949 | 1.10042 - 15 C | 11 C | 2.54031 | 1.34427 - 16 C | 12 C | 2.54031 | 1.34427 + 11 C | 2 C | 2.82991 | 1.49753 + 12 C | 1 C | 2.82991 | 1.49753 + 13 H | 11 C | 2.07950 | 1.10043 + 14 H | 12 C | 2.07950 | 1.10043 + 15 C | 11 C | 2.54033 | 1.34429 + 16 C | 12 C | 2.54033 | 1.34429 17 H | 15 C | 2.07110 | 1.09598 18 H | 16 C | 2.07110 | 1.09598 - 19 H | 15 C | 2.07156 | 1.09622 - 20 H | 16 C | 2.07156 | 1.09622 + 19 H | 15 C | 2.07157 | 1.09623 + 20 H | 16 C | 2.07157 | 1.09623 ------------------------------------------------------------------------------ number of included internuclear distances: 20 ============================================================================== @@ -4702,7 +5834,7 @@ Divinylbenzene in STO-3G basis set - Task times cpu: 52.7s wall: 55.3s + Task times cpu: 16.7s wall: 16.8s Summary of allocated global arrays ----------------------------------- No active global arrays @@ -4713,9 +5845,9 @@ Divinylbenzene in STO-3G basis set ------------------------------ create destroy get put acc scatter gather read&inc -calls: 753 753 4.38e+05 1.83e+04 2.70e+05 0 0 3.17e+04 -number of processes/call 1.00e+00 1.00e+00 1.00e+00 0.00e+00 0.00e+00 -bytes total: 8.69e+07 1.86e+07 3.17e+07 0.00e+00 0.00e+00 2.54e+05 +calls: 805 805 4.54e+05 1.89e+04 3.10e+05 0 0 3.97e+04 +number of processes/call -4.88e+12 5.93e+13 2.34e+12 0.00e+00 0.00e+00 +bytes total: 8.81e+07 1.98e+07 3.45e+07 0.00e+00 0.00e+00 3.18e+05 bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 Max memory consumed for GA by this process: 1123200 bytes MA_summarize_allocated_blocks: starting scan ... @@ -4726,11 +5858,11 @@ MA usage statistics: heap stack ---- ----- current number of blocks 0 0 - maximum number of blocks 25 54 + maximum number of blocks 26 57 current total bytes 0 0 - maximum total bytes 17363824 22516376 - maximum total K-bytes 17364 22517 - maximum total M-bytes 18 23 + maximum total bytes 57734664 22516376 + maximum total K-bytes 57735 22517 + maximum total M-bytes 58 23 NWChem Input Module @@ -4745,32 +5877,52 @@ MA usage statistics: Please cite the following reference when publishing results obtained with NWChem: - M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, - T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, - E. Apra, T.L. Windus, W.A. de Jong - "NWChem: a comprehensive and scalable open-source - solution for large scale molecular simulations" - Comput. Phys. Commun. 181, 1477 (2010) - doi:10.1016/j.cpc.2010.04.018 + E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, + V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, + J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, + J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, + C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, + K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, + J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, + V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, + B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, + S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, + A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, + D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, + J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, + A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, + R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, + D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, + V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, + Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, + D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, + A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, + and R. J. Harrison + "NWChem: Past, present, and future + J. Chem. Phys. 152, 184102 (2020) + doi:10.1063/5.0004997 AUTHORS ------- - E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, - J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, - S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, - F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, + T. P. Straatsma, H. J. J. van Dam, D. Wang, T. L. Windus, N. P. Bauman, + A. Panyala, J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, + K. Lopata, S. A. Fischer, S. Krishnamoorthy, M. Jacquelin, W. Ma, M. Klemm, + O. Villa, Y. Chen, V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, + Eric Hermes, L. Jensen, J. E. Moore, J. C. Becca, V. Konjkov, + D. Mejia-Rodriguez, T. Risthaus, M. Malagoli, A. Marenich, A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, - P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, - D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, - A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, - A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, - H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, - K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, - H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, - A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, - R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, - K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, - A. T. Wong, Z. Zhang. - - Total times cpu: 52.8s wall: 57.2s + P.-D. Fan, A. Fonari, M. J. Williamson, R. J. Harrison, J. R. Rehr, + M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, V. Tipparaju, + M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, M. Swart, Q. Wu, + T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, + G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, + K. Tsemekhman, K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, + T. Clark, D. Clerc, H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, + E. Glendening, M. Gutowski, A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, + R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, X. Long, B. Meng, + T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, + M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. + + Total times cpu: 16.7s wall: 16.8s diff --git a/data/NWChem/basicNWChem7.0/dvb_ir.out b/data/NWChem/basicNWChem7.0/dvb_ir.out index e1ea6823b..e43936703 100644 --- a/data/NWChem/basicNWChem7.0/dvb_ir.out +++ b/data/NWChem/basicNWChem7.0/dvb_ir.out @@ -1,26 +1,26 @@ - argument 1 = dvb_ir.nw + argument 1 = dvb_ir.in - - - Northwest Computational Chemistry Package (NWChem) 7.0.0 + + + Northwest Computational Chemistry Package (NWChem) 7.0.2 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2019 + + Copyright (c) 1994-2020 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = smp-n17.sam.pitt.edu - program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem - date = Mon Aug 2 10:34:36 2021 - - compiled = Wed_May_13_13:33:26_2020 - source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 - nwchem branch = 7.0.0 - nwchem revision = N/A - ga revision = 5.7.1 - use scalapack = F - input = dvb_ir.nw + hostname = osmium + program = nwchem + date = Sat Jun 4 13:41:03 2022 + + compiled = Fri_Jul_02_16:33:00_2021 + source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src + nwchem branch = 7.0.2 + nwchem revision = b9985dfa + ga revision = 5.7.2 + use scalapack = T + input = dvb_ir.in prefix = dvb. data base = ./dvb.db status = startup - nproc = 4 + nproc = 1 time left = -1s @@ -58,27 +58,27 @@ Memory information ------------------ - heap = 13107196 doubles = 100.0 Mbytes - stack = 13107201 doubles = 100.0 Mbytes - global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) - total = 52428797 doubles = 400.0 Mbytes + heap = 134217726 doubles = 1024.0 Mbytes + stack = 134217723 doubles = 1024.0 Mbytes + global = 268435456 doubles = 2048.0 Mbytes (distinct from heap & stack) + total = 536870905 doubles = 4096.0 Mbytes verify = yes hardfail = no Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + Divinylbenzene in STO-3G basis set ---------------------------------- @@ -90,15 +90,15 @@ ------ auto-z ------ - no constraints, skipping 0.000000000000000E+000 - no constraints, skipping 0.000000000000000E+000 - - + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 C 6.0000 0.23680554 1.41416660 0.00000000 @@ -121,13 +121,13 @@ 18 H 1.0000 -1.44522900 3.70144241 0.00000000 19 H 1.0000 0.04815351 -4.93192286 0.00000000 20 H 1.0000 -0.04815351 4.93192286 0.00000000 - + Atomic Mass ----------- - + C 12.000000 H 1.007825 - + Effective nuclear repulsion energy (a.u.) 445.9370121674 @@ -136,26 +136,26 @@ X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - + Z-matrix (autoz) -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value ----------- -------- ----- ----- ----- ----- ----- ---------- 1 Stretch 1 3 1.42204 @@ -228,7 +228,7 @@ 68 Torsion 4 2 11 13 0.00000 69 Torsion 4 2 11 15 180.00000 70 Torsion 4 6 1 12 180.00000 - 71 Torsion 5 2 4 6 0.00000 + 71 Torsion 5 2 4 6 -0.00000 72 Torsion 5 2 4 8 180.00000 73 Torsion 5 2 11 13 180.00000 74 Torsion 5 2 11 15 0.00000 @@ -238,18 +238,18 @@ 78 Torsion 6 1 12 14 180.00000 79 Torsion 6 1 12 16 0.00000 80 Torsion 6 4 2 11 180.00000 - 81 Torsion 7 3 1 12 0.00000 + 81 Torsion 7 3 1 12 -0.00000 82 Torsion 7 3 5 9 0.00000 - 83 Torsion 8 4 2 11 0.00000 + 83 Torsion 8 4 2 11 -0.00000 84 Torsion 8 4 6 10 0.00000 85 Torsion 9 5 2 11 0.00000 86 Torsion 10 6 1 12 0.00000 87 Torsion 13 11 15 17 180.00000 - 88 Torsion 13 11 15 19 0.00000 + 88 Torsion 13 11 15 19 -0.00000 89 Torsion 14 12 16 18 180.00000 - 90 Torsion 14 12 16 20 0.00000 - - + 90 Torsion 14 12 16 20 -0.00000 + + XYZ format geometry ------------------- 20 @@ -274,7 +274,7 @@ H -1.44522900 3.70144241 0.00000000 H 0.04815351 -4.93192286 0.00000000 H -0.04815351 4.93192286 0.00000000 - + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -338,2706 +338,92 @@ 11 C | 15 C | 17 H | 122.49 11 C | 15 C | 19 H | 121.29 17 H | 15 C | 19 H | 116.22 - 12 C | 16 C | 18 H | 122.49 - 12 C | 16 C | 20 H | 121.29 - 18 H | 16 C | 20 H | 116.22 - ------------------------------------------------------------------------------ - number of included internuclear angles: 30 - ============================================================================== - - - - - - Summary of "ao basis" -> "" (cartesian) - ------------------------------------------------------------------------------ - Tag Description Shells Functions and Types - ---------------- ------------------------------ ------ --------------------- - * sto-3g on all atoms - - - - NWChem DFT Module - ----------------- - - - Divinylbenzene in STO-3G basis set - - - Basis "ao basis" -> "ao basis" (cartesian) - ----- - C (Carbon) - ---------- - Exponent Coefficients - -------------- --------------------------------------------------------- - 1 S 7.16168370E+01 0.154329 - 1 S 1.30450960E+01 0.535328 - 1 S 3.53051220E+00 0.444635 - - 2 S 2.94124940E+00 -0.099967 - 2 S 6.83483100E-01 0.399513 - 2 S 2.22289900E-01 0.700115 - - 3 P 2.94124940E+00 0.155916 - 3 P 6.83483100E-01 0.607684 - 3 P 2.22289900E-01 0.391957 - - H (Hydrogen) - ------------ - Exponent Coefficients - -------------- --------------------------------------------------------- - 1 S 3.42525091E+00 0.154329 - 1 S 6.23913730E-01 0.535328 - 1 S 1.68855400E-01 0.444635 - - - - Summary of "ao basis" -> "ao basis" (cartesian) - ------------------------------------------------------------------------------ - Tag Description Shells Functions and Types - ---------------- ------------------------------ ------ --------------------- - C sto-3g 3 5 2s1p - H sto-3g 1 1 1s - - - - - Summary of "ao basis" -> "ao basis" (cartesian) - ------------------------------------------------------------------------------ - Tag Description Shells Functions and Types - ---------------- ------------------------------ ------ --------------------- - C sto-3g 3 5 2s1p - H sto-3g 1 1 1s - - - Symmetry analysis of basis - -------------------------- - - ag 25 - au 5 - bg 5 - bu 25 - - Caching 1-el integrals - - General Information - ------------------- - SCF calculation type: DFT - Wavefunction type: closed shell. - No. of atoms : 20 - No. of electrons : 70 - Alpha electrons : 35 - Beta electrons : 35 - Charge : 0 - Spin multiplicity: 1 - Use of symmetry is: on ; symmetry adaption is: on - Maximum number of iterations: 120 - This is a Direct SCF calculation. - AO basis - number of functions: 60 - number of shells: 40 - Convergence on energy requested: 1.00D-06 - Convergence on density requested: 1.00D-05 - Convergence on gradient requested: 5.00D-04 - - XC Information - -------------- - B3LYP Method XC Potential - Hartree-Fock (Exact) Exchange 0.200 - Slater Exchange Functional 0.800 local - Becke 1988 Exchange Functional 0.720 non-local - Lee-Yang-Parr Correlation Functional 0.810 - VWN I RPA Correlation Functional 0.190 local - - Grid Information - ---------------- - Grid used for XC integration: fine - Radial quadrature: Mura-Knowles - Angular quadrature: Lebedev. - Tag B.-S. Rad. Rad. Pts. Rad. Cut. Ang. Pts. - --- ---------- --------- --------- --------- - C 0.70 70 13.0 590 - H 0.35 60 13.0 590 - Grid pruning is: on - Number of quadrature shells: 650 - Spatial weights used: Erf1 - - Convergence Information - ----------------------- - Convergence aids based upon iterative change in - total energy or number of iterations. - Levelshifting, if invoked, occurs when the - HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 - DIIS, if invoked, will attempt to extrapolate - using up to (NFOCK): 10 stored Fock matrices. - - Damping( 0%) Levelshifting(0.5) DIIS - --------------- ------------------- --------------- - dE on: start ASAP start - dE off: 2 iters 120 iters 120 iters - - - Screening Tolerance Information - ------------------------------- - Density screening/tol_rho: 1.00D-10 - AO Gaussian exp screening on grid/accAOfunc: 14 - CD Gaussian exp screening on grid/accCDfunc: 20 - XC Gaussian exp screening on grid/accXCfunc: 20 - Schwarz screening/accCoul: 1.00D-08 - - - Superposition of Atomic Density Guess - ------------------------------------- - - Sum of atomic energies: -376.44825176 - - Non-variational initial energy - ------------------------------ - - Total energy = -379.429467 - 1-e energy = -1401.451096 - 2-e energy = 576.084617 - HOMO = -0.037645 - LUMO = 0.163723 - - - Symmetry analysis of molecular orbitals - initial - ------------------------------------------------- - - Numbering of irreducible representations: - - 1 ag 2 au 3 bg 4 bu - - Orbital symmetries: - - 1 ag 2 bu 3 ag 4 bu 5 bu - 6 ag 7 bu 8 ag 9 bu 10 ag - 11 ag 12 bu 13 ag 14 bu 15 bu - 16 ag 17 ag 18 bu 19 ag 20 ag - 21 bu 22 bu 23 ag 24 bu 25 bu - 26 ag 27 bu 28 au 29 bu 30 ag - 31 ag 32 bg 33 au 34 bg 35 bg - 36 au 37 au 38 bg 39 au 40 bg - 41 ag 42 bu 43 bu 44 ag 45 bu - - Time after variat. SCF: 0.2 - Time prior to 1st pass: 0.2 - - Grid_pts file = ./dvb.gridpts.0 - Record size in doubles = 12289 No. of grid_pts per rec = 3070 - Max. records in memory = 36 Max. recs in file = 2708490 - - Grid integrated density: 69.999986137672 - Requested integration accuracy: 0.10E-06 - - Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 12.66 12661300 - Stack Space remaining (MW): 13.11 13106284 - - convergence iter energy DeltaE RMS-Dens Diis-err time - ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.2544268093 -8.28D+02 1.42D-02 3.78D-01 0.8 - Grid integrated density: 69.999985909173 - Requested integration accuracy: 0.10E-06 - d= 0,ls=0.0,diis 2 -382.3017244973 -4.73D-02 6.99D-03 3.82D-02 1.1 - Grid integrated density: 69.999985779738 - Requested integration accuracy: 0.10E-06 - d= 0,ls=0.0,diis 3 -382.2954325913 6.29D-03 4.21D-03 7.95D-02 1.5 - Grid integrated density: 69.999985851075 - Requested integration accuracy: 0.10E-06 - d= 0,ls=0.0,diis 4 -382.3080980885 -1.27D-02 5.18D-04 8.80D-04 2.0 - Grid integrated density: 69.999985853412 - Requested integration accuracy: 0.10E-06 - d= 0,ls=0.0,diis 5 -382.3082344529 -1.36D-04 1.18D-04 4.46D-05 2.4 - Grid integrated density: 69.999985849933 - Requested integration accuracy: 0.10E-06 - Resetting Diis - d= 0,ls=0.0,diis 6 -382.3082405905 -6.14D-06 3.18D-05 3.09D-06 2.8 - Grid integrated density: 69.999985850347 - Requested integration accuracy: 0.10E-06 - d= 0,ls=0.0,diis 7 -382.3082410673 -4.77D-07 1.42D-05 1.61D-07 3.2 - Grid integrated density: 69.999985850447 - Requested integration accuracy: 0.10E-06 - d= 0,ls=0.0,diis 8 -382.3082410648 2.54D-09 7.54D-06 1.77D-07 3.6 - - - Total DFT energy = -382.308241064755 - One electron energy = -1400.645112583539 - Coulomb energy = 630.242752436138 - Exchange-Corr. energy = -57.842893084801 - Nuclear repulsion energy = 445.937012167446 - - Numeric. integr. density = 69.999985850447 - - Total iterative time = 3.4s - - - - Occupations of the irreducible representations - ---------------------------------------------- - - irrep alpha beta - -------- -------- -------- - ag 15.0 15.0 - au 2.0 2.0 - bg 3.0 3.0 - bu 15.0 15.0 - - - DFT Final Molecular Orbital Analysis - ------------------------------------ - - Vector 1 Occ=2.000000D+00 E=-1.002024D+01 Symmetry=bu - MO Center= 5.9D-12, 3.5D-11, -5.2D-33, r^2= 2.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 1 0.699304 1 C s 6 -0.699304 2 C s - 2 0.031560 1 C s 7 -0.031560 2 C s - 35 0.026964 11 C s 40 -0.026964 12 C s - - Vector 2 Occ=2.000000D+00 E=-1.002019D+01 Symmetry=ag - MO Center= -5.9D-12, -3.5D-11, 4.3D-43, r^2= 2.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 1 0.699301 1 C s 6 0.699301 2 C s - 2 0.031352 1 C s 7 0.031352 2 C s - 35 -0.027328 11 C s 40 -0.027328 12 C s - - Vector 3 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=bu - MO Center= -1.3D-17, -7.4D-16, 5.1D-50, r^2= 8.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 35 0.699780 11 C s 40 -0.699780 12 C s - 36 0.030781 11 C s 41 -0.030781 12 C s - 1 -0.027417 1 C s 6 0.027417 2 C s - - Vector 4 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=ag - MO Center= -3.3D-14, -8.2D-14, 8.5D-19, r^2= 8.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 35 0.699695 11 C s 40 0.699695 12 C s - 36 0.030762 11 C s 41 0.030762 12 C s - 1 0.027650 1 C s 6 0.027650 2 C s - - Vector 5 Occ=2.000000D+00 E=-1.000689D+01 Symmetry=ag - MO Center= -3.2D-10, 1.0D-10, -2.2D-19, r^2= 2.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 21 0.546492 5 C s 26 0.546492 6 C s - 11 -0.437412 3 C s 16 -0.437412 4 C s - 22 0.028154 5 C s 27 0.028154 6 C s - - Vector 6 Occ=2.000000D+00 E=-1.000688D+01 Symmetry=bu - MO Center= 3.2D-10, -1.0D-10, 1.2D-28, r^2= 2.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 21 0.555977 5 C s 26 -0.555977 6 C s - 11 -0.424192 3 C s 16 0.424192 4 C s - 1 -0.028676 1 C s 6 0.028676 2 C s - 22 0.028655 5 C s 27 -0.028655 6 C s - - Vector 7 Occ=2.000000D+00 E=-1.000624D+01 Symmetry=bu - MO Center= 1.1D-11, -1.1D-12, 9.4D-30, r^2= 2.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 11 0.556948 3 C s 16 -0.556948 4 C s - 21 0.425503 5 C s 26 -0.425503 6 C s - - Vector 8 Occ=2.000000D+00 E=-1.000609D+01 Symmetry=ag - MO Center= -1.2D-11, 3.3D-13, 7.1D-34, r^2= 2.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 11 0.546602 3 C s 16 0.546602 4 C s - 21 0.437646 5 C s 26 0.437646 6 C s - 1 0.029442 1 C s 6 0.029442 2 C s - - Vector 9 Occ=2.000000D+00 E=-9.992164D+00 Symmetry=bu - MO Center= 3.6D-16, -1.2D-15, -1.2D-33, r^2= 1.5D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 47 0.700479 15 C s 52 -0.700479 16 C s - 48 0.030860 15 C s 53 -0.030860 16 C s - - Vector 10 Occ=2.000000D+00 E=-9.992163D+00 Symmetry=ag - MO Center= -8.0D-17, 1.1D-15, -1.8D-34, r^2= 1.5D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 47 0.700478 15 C s 52 0.700478 16 C s - 48 0.030860 15 C s 53 0.030860 16 C s - - Vector 11 Occ=2.000000D+00 E=-8.094663D-01 Symmetry=ag - MO Center= -1.5D-17, -1.0D-17, 2.2D-33, r^2= 3.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.274703 1 C s 7 0.274703 2 C s - 12 0.247016 3 C s 17 0.247016 4 C s - 22 0.246689 5 C s 27 0.246689 6 C s - 36 0.127807 11 C s 41 0.127807 12 C s - 1 -0.107859 1 C s 6 -0.107859 2 C s - - Vector 12 Occ=2.000000D+00 E=-7.539347D-01 Symmetry=bu - MO Center= 1.5D-17, 2.6D-17, 9.7D-34, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 -0.297169 11 C s 41 0.297169 12 C s - 2 0.273787 1 C s 7 -0.273787 2 C s - 48 -0.209312 15 C s 53 0.209312 16 C s - 35 0.113817 11 C s 40 -0.113817 12 C s - 22 -0.112555 5 C s 27 0.112555 6 C s - - Vector 13 Occ=2.000000D+00 E=-7.178615D-01 Symmetry=ag - MO Center= 2.7D-15, -1.4D-14, 1.4D-17, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.314817 11 C s 41 0.314817 12 C s - 48 0.309767 15 C s 53 0.309767 16 C s - 12 -0.121456 3 C s 17 -0.121456 4 C s - 35 -0.119239 11 C s 40 -0.119239 12 C s - 47 -0.117464 15 C s 52 -0.117464 16 C s - - Vector 14 Occ=2.000000D+00 E=-6.999224D-01 Symmetry=bu - MO Center= -2.8D-15, 3.2D-17, -2.4D-26, r^2= 3.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.357134 3 C s 17 -0.357134 4 C s - 22 0.323904 5 C s 27 -0.323904 6 C s - 11 -0.132324 3 C s 16 0.132324 4 C s - 3 0.124986 1 C px 8 0.124986 2 C px - 21 -0.120093 5 C s 26 0.120093 6 C s - - Vector 15 Occ=2.000000D+00 E=-6.673151D-01 Symmetry=bu - MO Center= -8.5D-16, 1.3D-14, -6.8D-27, r^2= 9.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.299508 15 C s 53 -0.299508 16 C s - 2 0.274066 1 C s 7 -0.274066 2 C s - 22 -0.202279 5 C s 27 0.202279 6 C s - 36 0.136846 11 C s 41 -0.136846 12 C s - 38 -0.129053 11 C py 43 -0.129053 12 C py - - Vector 16 Occ=2.000000D+00 E=-5.885093D-01 Symmetry=ag - MO Center= -2.5D-15, -3.1D-15, -1.8D-17, r^2= 8.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.241407 15 C s 53 0.241407 16 C s - 22 0.233815 5 C s 27 0.233815 6 C s - 2 -0.206378 1 C s 7 -0.206378 2 C s - 14 -0.160007 3 C py 19 0.160007 4 C py - 36 -0.159613 11 C s 41 -0.159613 12 C s - - Vector 17 Occ=2.000000D+00 E=-5.591515D-01 Symmetry=ag - MO Center= -1.1D-14, 1.2D-15, -2.7D-17, r^2= 5.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.326033 3 C s 17 0.326033 4 C s - 3 0.184865 1 C px 8 -0.184865 2 C px - 22 -0.170745 5 C s 24 0.170444 5 C py - 27 -0.170745 6 C s 29 -0.170444 6 C py - 31 0.169234 7 H s 32 0.169234 8 H s - - Vector 18 Occ=2.000000D+00 E=-5.314209D-01 Symmetry=bu - MO Center= -7.6D-16, 1.2D-14, 2.8D-26, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.302766 11 C s 41 -0.302766 12 C s - 48 -0.249165 15 C s 53 0.249165 16 C s - 45 0.170519 13 H s 46 -0.170519 14 H s - 57 -0.160626 17 H s 58 0.160626 18 H s - 12 0.154466 3 C s 17 -0.154466 4 C s - - Vector 19 Occ=2.000000D+00 E=-5.099374D-01 Symmetry=ag - MO Center= 1.1D-15, -3.5D-15, -3.6D-17, r^2= 7.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 0.201895 5 C px 28 -0.201895 6 C px - 13 0.184492 3 C px 18 -0.184492 4 C px - 36 0.180760 11 C s 41 0.180760 12 C s - 33 0.169279 9 H s 34 0.169279 10 H s - 22 0.166023 5 C s 27 0.166023 6 C s - - Vector 20 Occ=2.000000D+00 E=-4.575994D-01 Symmetry=ag - MO Center= -1.6D-16, -3.1D-15, -5.6D-33, r^2= 9.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 49 0.212730 15 C px 54 -0.212730 16 C px - 38 0.184649 11 C py 43 -0.184649 12 C py - 57 0.179111 17 H s 58 0.179111 18 H s - 45 -0.153094 13 H s 46 -0.153094 14 H s - 14 0.141384 3 C py 19 -0.141384 4 C py - - Vector 21 Occ=2.000000D+00 E=-4.391973D-01 Symmetry=bu - MO Center= 1.2D-15, 3.6D-15, 4.1D-32, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.219233 11 C px 42 0.219233 12 C px - 50 0.210290 15 C py 55 0.210290 16 C py - 14 0.184960 3 C py 19 0.184960 4 C py - 59 -0.178127 19 H s 60 0.178127 20 H s - 45 -0.155495 13 H s 46 0.155495 14 H s - - Vector 22 Occ=2.000000D+00 E=-4.110182D-01 Symmetry=bu - MO Center= 9.1D-16, -3.2D-14, -5.7D-23, r^2= 6.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.235309 1 C s 7 -0.235309 2 C s - 33 0.230466 9 H s 34 -0.230466 10 H s - 31 -0.226657 7 H s 32 0.226657 8 H s - 13 -0.222260 3 C px 18 -0.222260 4 C px - 24 -0.177972 5 C py 29 -0.177972 6 C py - - Vector 23 Occ=2.000000D+00 E=-3.976933D-01 Symmetry=bu - MO Center= -6.8D-15, 8.9D-14, 6.7D-23, r^2= 8.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 0.251236 5 C px 28 0.251236 6 C px - 49 0.250512 15 C px 54 0.250512 16 C px - 3 -0.220827 1 C px 8 -0.220827 2 C px - 57 0.215415 17 H s 58 -0.215415 18 H s - 38 0.181487 11 C py 43 0.181487 12 C py - - Vector 24 Occ=2.000000D+00 E=-3.959385D-01 Symmetry=ag - MO Center= 2.5D-14, -8.1D-14, -8.2D-17, r^2= 1.5D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 50 0.338998 15 C py 55 -0.338998 16 C py - 59 -0.262595 19 H s 60 -0.262595 20 H s - 37 0.251492 11 C px 42 -0.251492 12 C px - 45 -0.145063 13 H s 46 -0.145063 14 H s - 24 0.136713 5 C py 29 -0.136713 6 C py - - Vector 25 Occ=2.000000D+00 E=-3.744296D-01 Symmetry=bu - MO Center= -2.9D-15, 5.1D-15, 8.7D-24, r^2= 4.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 13 0.307586 3 C px 18 0.307586 4 C px - 31 0.252268 7 H s 32 -0.252268 8 H s - 24 -0.226087 5 C py 29 -0.226087 6 C py - 33 0.218183 9 H s 34 -0.218183 10 H s - 23 0.188063 5 C px 28 0.188063 6 C px - - Vector 26 Occ=2.000000D+00 E=-3.509366D-01 Symmetry=bu - MO Center= -2.6D-15, -2.1D-15, 2.8D-24, r^2= 9.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 50 -0.245677 15 C py 55 -0.245677 16 C py - 14 0.224345 3 C py 19 0.224345 4 C py - 37 -0.201678 11 C px 42 -0.201678 12 C px - 24 -0.193258 5 C py 29 -0.193258 6 C py - 38 0.187744 11 C py 43 0.187744 12 C py - - Vector 27 Occ=2.000000D+00 E=-3.470152D-01 Symmetry=ag - MO Center= 5.9D-16, 1.8D-14, -1.8D-16, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 49 0.295189 15 C px 54 -0.295189 16 C px - 57 0.268012 17 H s 58 0.268012 18 H s - 37 -0.208878 11 C px 42 0.208878 12 C px - 45 0.200233 13 H s 46 0.200233 14 H s - 31 -0.156471 7 H s 32 -0.156471 8 H s - - Vector 28 Occ=2.000000D+00 E=-3.244703D-01 Symmetry=au - MO Center= 2.5D-16, 1.4D-15, 3.8D-16, r^2= 3.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 5 0.337608 1 C pz 10 0.337608 2 C pz - 15 0.297979 3 C pz 20 0.297979 4 C pz - 25 0.297169 5 C pz 30 0.297169 6 C pz - 39 0.173947 11 C pz 44 0.173947 12 C pz - 51 0.092442 15 C pz 56 0.092442 16 C pz - - Vector 29 Occ=2.000000D+00 E=-3.110646D-01 Symmetry=bu - MO Center= -4.5D-16, -4.2D-15, 9.8D-25, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.259102 13 H s 46 -0.259102 14 H s - 4 0.241973 1 C py 9 0.241973 2 C py - 57 0.231030 17 H s 58 -0.231030 18 H s - 37 -0.217250 11 C px 42 -0.217250 12 C px - 59 -0.212334 19 H s 60 0.212334 20 H s - - Vector 30 Occ=2.000000D+00 E=-2.929834D-01 Symmetry=ag - MO Center= 2.3D-16, 1.1D-15, 1.7D-16, r^2= 6.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 14 -0.278184 3 C py 19 0.278184 4 C py - 4 0.268398 1 C py 9 -0.268398 2 C py - 38 0.248141 11 C py 43 -0.248141 12 C py - 33 -0.240411 9 H s 34 -0.240411 10 H s - 24 0.234450 5 C py 29 -0.234450 6 C py - - Vector 31 Occ=2.000000D+00 E=-2.874967D-01 Symmetry=ag - MO Center= -2.3D-16, -4.8D-16, 2.8D-18, r^2= 6.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 3 0.295855 1 C px 8 -0.295855 2 C px - 23 0.280599 5 C px 28 -0.280599 6 C px - 31 -0.258071 7 H s 32 -0.258071 8 H s - 13 -0.222116 3 C px 18 0.222116 4 C px - 45 -0.182739 13 H s 46 -0.182739 14 H s - - Vector 32 Occ=2.000000D+00 E=-2.634558D-01 Symmetry=bg - MO Center= -5.6D-16, -1.4D-14, 2.8D-18, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 -0.376480 11 C pz 44 0.376480 12 C pz - 5 0.348964 1 C pz 10 -0.348964 2 C pz - 51 -0.271399 15 C pz 56 0.271399 16 C pz - 15 0.131647 3 C pz 20 -0.131647 4 C pz - 25 -0.132107 5 C pz 30 0.132107 6 C pz - - Vector 33 Occ=2.000000D+00 E=-2.123364D-01 Symmetry=au - MO Center= -4.0D-15, 1.8D-14, -2.6D-16, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 0.417961 15 C pz 56 0.417961 16 C pz - 39 0.413781 11 C pz 44 0.413781 12 C pz - 15 -0.179205 3 C pz 20 -0.179205 4 C pz - 25 -0.176633 5 C pz 30 -0.176633 6 C pz - - Vector 34 Occ=2.000000D+00 E=-1.951683D-01 Symmetry=bg - MO Center= 4.8D-15, -3.5D-16, 1.7D-19, r^2= 2.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 15 0.463626 3 C pz 20 -0.463626 4 C pz - 25 0.457537 5 C pz 30 -0.457537 6 C pz - - Vector 35 Occ=2.000000D+00 E=-1.529966D-01 Symmetry=bg - MO Center= -4.2D-17, -4.2D-15, 3.4D-18, r^2= 8.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 0.397372 15 C pz 56 -0.397372 16 C pz - 5 0.387554 1 C pz 10 -0.387554 2 C pz - 25 -0.230744 5 C pz 30 0.230744 6 C pz - 39 0.223675 11 C pz 44 -0.223675 12 C pz - 15 0.215068 3 C pz 20 -0.215068 4 C pz - - Vector 36 Occ=0.000000D+00 E= 3.750915D-02 Symmetry=au - MO Center= 6.7D-17, 5.2D-15, -2.7D-17, r^2= 8.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 -0.449614 15 C pz 56 -0.449614 16 C pz - 5 0.442670 1 C pz 10 0.442670 2 C pz - 25 -0.277553 5 C pz 30 -0.277553 6 C pz - 39 0.256133 11 C pz 44 0.256133 12 C pz - 15 -0.232265 3 C pz 20 -0.232265 4 C pz - - Vector 37 Occ=0.000000D+00 E= 9.011730D-02 Symmetry=au - MO Center= -3.3D-16, 1.1D-16, 1.1D-17, r^2= 2.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 15 0.582692 3 C pz 20 0.582692 4 C pz - 25 -0.553237 5 C pz 30 -0.553237 6 C pz - 5 -0.031922 1 C pz 10 -0.031922 2 C pz - - Vector 38 Occ=0.000000D+00 E= 1.107279D-01 Symmetry=bg - MO Center= 1.2D-15, -3.4D-15, -5.3D-18, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 0.522167 11 C pz 44 -0.522167 12 C pz - 51 -0.523103 15 C pz 56 0.523103 16 C pz - 15 0.240693 3 C pz 20 -0.240693 4 C pz - 25 -0.232246 5 C pz 30 0.232246 6 C pz - - Vector 39 Occ=0.000000D+00 E= 1.822016D-01 Symmetry=au - MO Center= -4.1D-16, -3.6D-15, -2.5D-17, r^2= 7.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 -0.529134 11 C pz 44 -0.529134 12 C pz - 5 0.497218 1 C pz 10 0.497218 2 C pz - 51 0.379694 15 C pz 56 0.379694 16 C pz - 25 -0.199198 5 C pz 30 -0.199198 6 C pz - 15 -0.166739 3 C pz 20 -0.166739 4 C pz - - Vector 40 Occ=0.000000D+00 E= 2.723015D-01 Symmetry=bg - MO Center= -8.6D-16, 9.2D-16, -2.1D-18, r^2= 3.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 5 0.543477 1 C pz 10 -0.543477 2 C pz - 25 0.466878 5 C pz 30 -0.466878 6 C pz - 15 -0.464184 3 C pz 20 0.464184 4 C pz - 39 0.287732 11 C pz 44 -0.287732 12 C pz - 51 -0.156154 15 C pz 56 0.156154 16 C pz - - Vector 41 Occ=0.000000D+00 E= 3.324846D-01 Symmetry=ag - MO Center= -2.7D-15, -4.4D-15, 2.4D-17, r^2= 8.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 33 -0.423791 9 H s 34 -0.423791 10 H s - 31 -0.413780 7 H s 32 -0.413780 8 H s - 2 0.401566 1 C s 7 0.401566 2 C s - 59 -0.358542 19 H s 60 -0.358542 20 H s - 38 -0.338104 11 C py 43 0.338104 12 C py - - Vector 42 Occ=0.000000D+00 E= 3.406448D-01 Symmetry=bu - MO Center= 3.1D-15, -5.0D-15, 1.1D-18, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.433826 13 H s 46 -0.433826 14 H s - 13 0.355437 3 C px 18 0.355437 4 C px - 37 0.344559 11 C px 42 0.344559 12 C px - 31 -0.321888 7 H s 32 0.321888 8 H s - 57 -0.323132 17 H s 58 0.323132 18 H s - - Vector 43 Occ=0.000000D+00 E= 3.795217D-01 Symmetry=bu - MO Center= -1.7D-15, 9.9D-16, -2.2D-19, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.546122 11 C s 41 -0.546122 12 C s - 4 0.461528 1 C py 9 0.461528 2 C py - 33 0.405566 9 H s 34 -0.405566 10 H s - 59 0.351694 19 H s 60 -0.351694 20 H s - 2 0.338383 1 C s 7 -0.338383 2 C s - - Vector 44 Occ=0.000000D+00 E= 3.812896D-01 Symmetry=ag - MO Center= 1.3D-15, 8.3D-15, -3.5D-18, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.579606 13 H s 46 0.579606 14 H s - 12 0.393532 3 C s 17 0.393532 4 C s - 57 -0.391438 17 H s 58 -0.391438 18 H s - 36 -0.382166 11 C s 41 -0.382166 12 C s - 37 0.338368 11 C px 42 -0.338368 12 C px - - Vector 45 Occ=0.000000D+00 E= 4.103423D-01 Symmetry=ag - MO Center= 3.0D-13, -8.9D-13, 3.6D-17, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.647346 15 C s 53 0.647346 16 C s - 22 0.620081 5 C s 27 0.620081 6 C s - 57 -0.513316 17 H s 58 -0.513316 18 H s - 12 -0.443647 3 C s 17 -0.443647 4 C s - 59 -0.320789 19 H s 60 -0.320789 20 H s - - Vector 46 Occ=0.000000D+00 E= 4.112340D-01 Symmetry=bu - MO Center= -3.0D-13, 8.9D-13, -4.4D-19, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 22 0.613160 5 C s 27 -0.613160 6 C s - 48 0.539734 15 C s 53 -0.539734 16 C s - 2 0.476221 1 C s 7 -0.476221 2 C s - 57 -0.447812 17 H s 58 0.447812 18 H s - 12 -0.440665 3 C s 17 0.440665 4 C s - - Vector 47 Occ=0.000000D+00 E= 4.258027D-01 Symmetry=bu - MO Center= 4.8D-15, 1.3D-14, -7.9D-20, r^2= 9.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 31 0.603109 7 H s 32 -0.603109 8 H s - 36 -0.446799 11 C s 41 0.446799 12 C s - 45 0.437140 13 H s 46 -0.437140 14 H s - 12 -0.368676 3 C s 17 0.368676 4 C s - 59 0.337701 19 H s 60 -0.337701 20 H s - - Vector 48 Occ=0.000000D+00 E= 4.393598D-01 Symmetry=ag - MO Center= -7.1D-15, -3.2D-15, 4.4D-17, r^2= 7.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.782302 1 C s 7 0.782302 2 C s - 36 -0.556789 11 C s 41 -0.556789 12 C s - 12 -0.499654 3 C s 17 -0.499654 4 C s - 22 -0.411571 5 C s 27 -0.411571 6 C s - 48 0.409894 15 C s 53 0.409894 16 C s - - Vector 49 Occ=0.000000D+00 E= 4.537209D-01 Symmetry=bu - MO Center= -7.5D-15, 9.6D-15, 5.7D-18, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.706725 15 C s 53 -0.706725 16 C s - 57 -0.525561 17 H s 58 0.525561 18 H s - 33 0.477111 9 H s 34 -0.477111 10 H s - 36 -0.428993 11 C s 41 0.428993 12 C s - 22 -0.407164 5 C s 27 0.407164 6 C s - - Vector 50 Occ=0.000000D+00 E= 4.783352D-01 Symmetry=ag - MO Center= 6.9D-15, -1.3D-14, -8.4D-18, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.706221 3 C s 17 0.706221 4 C s - 22 -0.619399 5 C s 27 -0.619399 6 C s - 59 -0.475184 19 H s 60 -0.475184 20 H s - 48 0.415039 15 C s 53 0.415039 16 C s - 50 -0.382619 15 C py 55 0.382619 16 C py - - Vector 51 Occ=0.000000D+00 E= 5.255622D-01 Symmetry=ag - MO Center= 1.0D-15, -8.1D-15, 1.8D-17, r^2= 6.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 4 0.601872 1 C py 9 -0.601872 2 C py - 36 -0.491669 11 C s 41 -0.491669 12 C s - 13 -0.452502 3 C px 18 0.452502 4 C px - 2 -0.448702 1 C s 7 -0.448702 2 C s - 49 -0.342028 15 C px 54 0.342028 16 C px - - Vector 52 Occ=0.000000D+00 E= 5.463504D-01 Symmetry=bu - MO Center= -2.9D-15, 4.5D-16, 2.0D-19, r^2= 7.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.647800 3 C s 17 -0.647800 4 C s - 3 -0.560730 1 C px 8 -0.560730 2 C px - 50 0.483440 15 C py 55 0.483440 16 C py - 24 -0.478220 5 C py 29 -0.478220 6 C py - 59 0.356006 19 H s 60 -0.356006 20 H s - - Vector 53 Occ=0.000000D+00 E= 5.764361D-01 Symmetry=ag - MO Center= -3.4D-15, -4.2D-15, -1.9D-17, r^2= 5.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 13 0.537124 3 C px 18 -0.537124 4 C px - 23 -0.522141 5 C px 28 0.522141 6 C px - 33 0.519103 9 H s 34 0.519103 10 H s - 31 -0.448310 7 H s 32 -0.448310 8 H s - 24 0.400193 5 C py 29 -0.400193 6 C py - - Vector 54 Occ=0.000000D+00 E= 5.984382D-01 Symmetry=bu - MO Center= 2.7D-15, 3.4D-15, -3.7D-18, r^2= 4.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 14 0.723029 3 C py 19 0.723029 4 C py - 22 0.599921 5 C s 27 -0.599921 6 C s - 36 -0.415409 11 C s 41 0.415409 12 C s - 2 -0.405910 1 C s 7 0.405910 2 C s - 24 0.394225 5 C py 29 0.394225 6 C py - - Vector 55 Occ=0.000000D+00 E= 6.248974D-01 Symmetry=bu - MO Center= 1.7D-15, 6.3D-15, -1.5D-18, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.608534 1 C s 7 -0.608534 2 C s - 49 -0.528890 15 C px 54 -0.528890 16 C px - 38 0.480659 11 C py 43 0.480659 12 C py - 23 -0.365995 5 C px 28 -0.365995 6 C px - 57 0.363288 17 H s 58 -0.363288 18 H s - - Vector 56 Occ=0.000000D+00 E= 6.398338D-01 Symmetry=ag - MO Center= 1.2D-15, -1.8D-14, -2.4D-17, r^2= 9.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.549268 11 C px 42 -0.549268 12 C px - 50 -0.534300 15 C py 55 0.534300 16 C py - 14 0.383479 3 C py 19 -0.383479 4 C py - 4 -0.364575 1 C py 9 0.364575 2 C py - 59 -0.330751 19 H s 60 -0.330751 20 H s - - Vector 57 Occ=0.000000D+00 E= 6.828367D-01 Symmetry=ag - MO Center= 1.9D-15, 3.2D-14, 1.7D-18, r^2= 9.3D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 38 0.663092 11 C py 43 -0.663092 12 C py - 49 -0.580411 15 C px 54 0.580411 16 C px - 24 -0.449232 5 C py 29 0.449232 6 C py - 14 -0.392088 3 C py 19 0.392088 4 C py - 4 -0.381671 1 C py 9 0.381671 2 C py - - Vector 58 Occ=0.000000D+00 E= 7.173572D-01 Symmetry=bu - MO Center= -1.5D-15, -2.3D-14, 1.1D-20, r^2= 9.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.608023 11 C px 42 0.608023 12 C px - 48 -0.538018 15 C s 50 -0.540483 15 C py - 53 0.538018 16 C s 55 -0.540483 16 C py - 36 0.466540 11 C s 38 -0.464871 11 C py - 41 -0.466540 12 C s 43 -0.464871 12 C py - - Vector 59 Occ=0.000000D+00 E= 7.790413D-01 Symmetry=ag - MO Center= -4.4D-16, 1.7D-15, 9.3D-19, r^2= 5.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 3 0.702431 1 C px 8 -0.702431 2 C px - 14 -0.534058 3 C py 19 0.534058 4 C py - 23 -0.435986 5 C px 28 0.435986 6 C px - 37 0.429836 11 C px 42 -0.429836 12 C px - 24 -0.411036 5 C py 29 0.411036 6 C py - - Vector 60 Occ=0.000000D+00 E= 7.942618D-01 Symmetry=bu - MO Center= 4.2D-16, 3.2D-15, -2.0D-22, r^2= 3.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 4 0.657694 1 C py 9 0.657694 2 C py - 13 -0.568326 3 C px 18 -0.568326 4 C px - 23 0.496519 5 C px 28 0.496519 6 C px - 22 -0.413798 5 C s 27 0.413798 6 C s - 24 -0.395895 5 C py 29 -0.395895 6 C py - - - center of mass - -------------- - x = 0.00000000 y = 0.00000000 z = 0.00000000 - - moments of inertia (a.u.) - ------------------ - 2631.731379210398 -0.000000000000 0.000000000000 - -0.000000000000 390.819001468288 0.000000000000 - 0.000000000000 0.000000000000 3022.550380678686 - - Multipole analysis of the density - --------------------------------- - - L x y z total alpha beta nuclear - - - - - ----- ----- ---- ------- - 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 - - 1 1 0 0 0.000000 0.000000 0.000000 0.000000 - 1 0 1 0 -0.000000 -0.000000 -0.000000 0.000000 - 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - - 2 2 0 0 -37.347176 -141.071524 -141.071524 244.795872 - 2 1 1 0 0.066522 2.848775 2.848775 -5.631027 - 2 1 0 1 0.000000 0.000000 0.000000 0.000000 - 2 0 2 0 -37.714761 -767.339030 -767.339030 1496.963300 - 2 0 1 1 0.000000 0.000000 0.000000 0.000000 - 2 0 0 2 -43.587344 -21.793672 -21.793672 0.000000 - - - Task times cpu: 3.5s wall: 3.7s - - - NWChem Input Module - ------------------- - - - NWChem Property Module - ---------------------- - - - Divinylbenzene in STO-3G basis set - - - NWChem DFT Module - ----------------- - - - Divinylbenzene in STO-3G basis set - - - - - Summary of "ao basis" -> "ao basis" (cartesian) - ------------------------------------------------------------------------------ - Tag Description Shells Functions and Types - ---------------- ------------------------------ ------ --------------------- - C sto-3g 3 5 2s1p - H sto-3g 1 1 1s - - - Symmetry analysis of basis - -------------------------- - - ag 25 - au 5 - bg 5 - bu 25 - - Caching 1-el integrals - - General Information - ------------------- - SCF calculation type: DFT - Wavefunction type: closed shell. - No. of atoms : 20 - No. of electrons : 70 - Alpha electrons : 35 - Beta electrons : 35 - Charge : 0 - Spin multiplicity: 1 - Use of symmetry is: on ; symmetry adaption is: on - Maximum number of iterations: 120 - This is a Direct SCF calculation. - AO basis - number of functions: 60 - number of shells: 40 - Convergence on energy requested: 1.00D-07 - Convergence on density requested: 1.00D-05 - Convergence on gradient requested: 5.00D-04 - - XC Information - -------------- - B3LYP Method XC Potential - Hartree-Fock (Exact) Exchange 0.200 - Slater Exchange Functional 0.800 local - Becke 1988 Exchange Functional 0.720 non-local - Lee-Yang-Parr Correlation Functional 0.810 - VWN I RPA Correlation Functional 0.190 local - - Grid Information - ---------------- - Grid used for XC integration: fine - Radial quadrature: Mura-Knowles - Angular quadrature: Lebedev. - Tag B.-S. Rad. Rad. Pts. Rad. Cut. Ang. Pts. - --- ---------- --------- --------- --------- - C 0.70 70 13.0 590 - H 0.35 60 13.0 590 - Grid pruning is: on - Number of quadrature shells: 650 - Spatial weights used: Erf1 - - Convergence Information - ----------------------- - Convergence aids based upon iterative change in - total energy or number of iterations. - Levelshifting, if invoked, occurs when the - HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 - DIIS, if invoked, will attempt to extrapolate - using up to (NFOCK): 10 stored Fock matrices. - - Damping( 0%) Levelshifting(0.5) DIIS - --------------- ------------------- --------------- - dE on: start ASAP start - dE off: 2 iters 120 iters 120 iters - - - Screening Tolerance Information - ------------------------------- - Density screening/tol_rho: 1.00D-11 - AO Gaussian exp screening on grid/accAOfunc: 16 - CD Gaussian exp screening on grid/accCDfunc: 20 - XC Gaussian exp screening on grid/accXCfunc: 20 - Schwarz screening/accCoul: 1.00D-08 - - - Loading old vectors from job with title : - -Divinylbenzene in STO-3G basis set - - - Symmetry analysis of molecular orbitals - initial - ------------------------------------------------- - - Numbering of irreducible representations: - - 1 ag 2 au 3 bg 4 bu - - Orbital symmetries: - - 1 bu 2 ag 3 bu 4 ag 5 ag - 6 bu 7 bu 8 ag 9 bu 10 ag - 11 ag 12 bu 13 ag 14 bu 15 bu - 16 ag 17 ag 18 bu 19 ag 20 ag - 21 bu 22 bu 23 bu 24 ag 25 bu - 26 bu 27 ag 28 au 29 bu 30 ag - 31 ag 32 bg 33 au 34 bg 35 bg - 36 au 37 au 38 bg 39 au 40 bg - 41 ag 42 bu 43 bu 44 ag 45 ag - - Time after variat. SCF: 3.8 - Time prior to 1st pass: 3.8 - - Grid_pts file = ./dvb.gridpts.0 - Record size in doubles = 12289 No. of grid_pts per rec = 3070 - Max. records in memory = 36 Max. recs in file = 2708480 - - Grid integrated density: 69.999985820918 - Requested integration accuracy: 0.10E-06 - - Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 12.66 12661300 - Stack Space remaining (MW): 13.11 13106284 - - convergence iter energy DeltaE RMS-Dens Diis-err time - ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.3082410796 -8.28D+02 2.51D-06 4.81D-09 4.4 - Grid integrated density: 69.999985820953 - Requested integration accuracy: 0.10E-06 - d= 0,ls=0.0,diis 2 -382.3082410784 1.18D-09 1.64D-06 1.24D-08 4.8 - - - Total DFT energy = -382.308241078404 - One electron energy = -1400.644981599696 - Coulomb energy = 630.242633700093 - Exchange-Corr. energy = -57.842905346248 - Nuclear repulsion energy = 445.937012167446 - - Numeric. integr. density = 69.999985820953 - - Total iterative time = 1.1s - - - - Occupations of the irreducible representations - ---------------------------------------------- - - irrep alpha beta - -------- -------- -------- - ag 15.0 15.0 - au 2.0 2.0 - bg 3.0 3.0 - bu 15.0 15.0 - - - DFT Final Molecular Orbital Analysis - ------------------------------------ - - Vector 1 Occ=2.000000D+00 E=-1.002023D+01 Symmetry=bu - MO Center= -5.3D-13, -3.2D-12, 1.2D-33, r^2= 2.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 1 0.699302 1 C s 6 -0.699302 2 C s - 2 0.031561 1 C s 7 -0.031561 2 C s - 35 0.027009 11 C s 40 -0.027009 12 C s - - Vector 2 Occ=2.000000D+00 E=-1.002018D+01 Symmetry=ag - MO Center= 5.4D-13, 3.2D-12, 2.2D-23, r^2= 2.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 1 0.699298 1 C s 6 0.699298 2 C s - 2 0.031353 1 C s 7 0.031353 2 C s - 35 -0.027373 11 C s 40 -0.027373 12 C s - - Vector 3 Occ=2.000000D+00 E=-1.000794D+01 Symmetry=bu - MO Center= 6.1D-10, 3.3D-09, -1.9D-28, r^2= 8.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 35 0.699780 11 C s 40 -0.699780 12 C s - 36 0.030780 11 C s 41 -0.030780 12 C s - 1 -0.027467 1 C s 6 0.027467 2 C s - - Vector 4 Occ=2.000000D+00 E=-1.000794D+01 Symmetry=ag - MO Center= -6.1D-10, -3.3D-09, 6.8D-19, r^2= 8.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 35 0.699695 11 C s 40 0.699695 12 C s - 36 0.030762 11 C s 41 0.030762 12 C s - 1 0.027699 1 C s 6 0.027699 2 C s - - Vector 5 Occ=2.000000D+00 E=-1.000689D+01 Symmetry=ag - MO Center= -1.3D-09, 4.1D-10, -8.7D-19, r^2= 2.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 21 0.542930 5 C s 26 0.542930 6 C s - 11 -0.441824 3 C s 16 -0.441824 4 C s - 22 0.028039 5 C s 27 0.028039 6 C s - - Vector 6 Occ=2.000000D+00 E=-1.000689D+01 Symmetry=bu - MO Center= 1.3D-09, -4.0D-10, 9.0D-28, r^2= 2.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 21 0.551779 5 C s 26 -0.551779 6 C s - 11 -0.429634 3 C s 16 0.429634 4 C s - 1 -0.028726 1 C s 6 0.028726 2 C s - 22 0.028520 5 C s 27 -0.028520 6 C s - - Vector 7 Occ=2.000000D+00 E=-1.000624D+01 Symmetry=bu - MO Center= 6.0D-12, -3.7D-12, 6.1D-32, r^2= 2.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 11 0.552761 3 C s 16 -0.552761 4 C s - 21 0.430935 5 C s 26 -0.430935 6 C s - - Vector 8 Occ=2.000000D+00 E=-1.000610D+01 Symmetry=ag - MO Center= -6.9D-12, -9.6D-13, 2.9D-34, r^2= 2.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 11 0.543041 3 C s 16 0.543041 4 C s - 21 0.442061 5 C s 26 0.442061 6 C s - 1 0.029487 1 C s 6 0.029487 2 C s - - Vector 9 Occ=2.000000D+00 E=-9.992165D+00 Symmetry=bu - MO Center= 1.8D-16, -5.3D-16, -4.9D-32, r^2= 1.5D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 47 0.700479 15 C s 52 -0.700479 16 C s - 48 0.030860 15 C s 53 -0.030860 16 C s - - Vector 10 Occ=2.000000D+00 E=-9.992165D+00 Symmetry=ag - MO Center= -1.1D-15, 1.0D-15, -1.5D-34, r^2= 1.5D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 47 0.700478 15 C s 52 0.700478 16 C s - 48 0.030860 15 C s 53 0.030860 16 C s - - Vector 11 Occ=2.000000D+00 E=-8.094668D-01 Symmetry=ag - MO Center= -6.6D-15, 5.2D-15, -4.8D-16, r^2= 3.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.274700 1 C s 7 0.274700 2 C s - 12 0.247020 3 C s 17 0.247020 4 C s - 22 0.246686 5 C s 27 0.246686 6 C s - 36 0.127811 11 C s 41 0.127811 12 C s - 1 -0.107859 1 C s 6 -0.107859 2 C s - - Vector 12 Occ=2.000000D+00 E=-7.539367D-01 Symmetry=bu - MO Center= -1.2D-15, -2.1D-14, 1.1D-26, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 -0.297176 11 C s 41 0.297176 12 C s - 2 0.273780 1 C s 7 -0.273780 2 C s - 48 -0.209315 15 C s 53 0.209315 16 C s - 35 0.113819 11 C s 40 -0.113819 12 C s - 22 -0.112546 5 C s 27 0.112546 6 C s - - Vector 13 Occ=2.000000D+00 E=-7.178645D-01 Symmetry=ag - MO Center= -3.2D-14, 4.0D-14, 4.0D-16, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.314819 11 C s 41 0.314819 12 C s - 48 0.309764 15 C s 53 0.309764 16 C s - 12 -0.121460 3 C s 17 -0.121460 4 C s - 35 -0.119239 11 C s 40 -0.119239 12 C s - 47 -0.117463 15 C s 52 -0.117463 16 C s - - Vector 14 Occ=2.000000D+00 E=-6.999240D-01 Symmetry=bu - MO Center= 4.0D-14, 1.7D-14, -2.3D-29, r^2= 3.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.357139 3 C s 17 -0.357139 4 C s - 22 0.323897 5 C s 27 -0.323897 6 C s - 11 -0.132325 3 C s 16 0.132325 4 C s - 3 0.124984 1 C px 8 0.124984 2 C px - 21 -0.120091 5 C s 26 0.120091 6 C s - - Vector 15 Occ=2.000000D+00 E=-6.673158D-01 Symmetry=bu - MO Center= 6.6D-16, -4.1D-14, 4.3D-27, r^2= 9.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.299501 15 C s 53 -0.299501 16 C s - 2 0.274069 1 C s 7 -0.274069 2 C s - 22 -0.202292 5 C s 27 0.202292 6 C s - 36 0.136841 11 C s 41 -0.136841 12 C s - 38 -0.129055 11 C py 43 -0.129055 12 C py - - Vector 16 Occ=2.000000D+00 E=-5.885104D-01 Symmetry=ag - MO Center= 1.7D-15, 7.6D-15, 9.8D-18, r^2= 8.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.241410 15 C s 53 0.241410 16 C s - 22 0.233811 5 C s 27 0.233811 6 C s - 2 -0.206377 1 C s 7 -0.206377 2 C s - 14 -0.160007 3 C py 19 0.160007 4 C py - 36 -0.159613 11 C s 41 -0.159613 12 C s - - Vector 17 Occ=2.000000D+00 E=-5.591522D-01 Symmetry=ag - MO Center= 1.3D-15, 1.2D-15, 1.9D-17, r^2= 5.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.326032 3 C s 17 0.326032 4 C s - 3 0.184863 1 C px 8 -0.184863 2 C px - 22 -0.170748 5 C s 24 0.170440 5 C py - 27 -0.170748 6 C s 29 -0.170440 6 C py - 31 0.169237 7 H s 32 0.169237 8 H s - - Vector 18 Occ=2.000000D+00 E=-5.314225D-01 Symmetry=bu - MO Center= 1.1D-15, -9.3D-15, -1.5D-25, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.302765 11 C s 41 -0.302765 12 C s - 48 -0.249169 15 C s 53 0.249169 16 C s - 45 0.170519 13 H s 46 -0.170519 14 H s - 57 -0.160625 17 H s 58 0.160625 18 H s - 12 0.154466 3 C s 17 -0.154466 4 C s - - Vector 19 Occ=2.000000D+00 E=-5.099380D-01 Symmetry=ag - MO Center= 4.5D-16, -3.6D-16, -5.9D-17, r^2= 7.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 0.201892 5 C px 28 -0.201892 6 C px - 13 0.184492 3 C px 18 -0.184492 4 C px - 36 0.180760 11 C s 41 0.180760 12 C s - 33 0.169278 9 H s 34 0.169278 10 H s - 22 0.166026 5 C s 27 0.166026 6 C s - - Vector 20 Occ=2.000000D+00 E=-4.576012D-01 Symmetry=ag - MO Center= 4.1D-15, 2.9D-14, 3.4D-17, r^2= 9.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 49 0.212726 15 C px 54 -0.212726 16 C px - 38 0.184650 11 C py 43 -0.184650 12 C py - 57 0.179107 17 H s 58 0.179107 18 H s - 45 -0.153095 13 H s 46 -0.153095 14 H s - 14 0.141384 3 C py 19 -0.141384 4 C py - - Vector 21 Occ=2.000000D+00 E=-4.391989D-01 Symmetry=bu - MO Center= -3.7D-15, -3.4D-14, 6.1D-23, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.219236 11 C px 42 0.219236 12 C px - 50 0.210289 15 C py 55 0.210289 16 C py - 14 0.184961 3 C py 19 0.184961 4 C py - 59 -0.178125 19 H s 60 0.178125 20 H s - 45 -0.155497 13 H s 46 0.155497 14 H s - - Vector 22 Occ=2.000000D+00 E=-4.110192D-01 Symmetry=bu - MO Center= -2.7D-15, -3.3D-15, 1.9D-23, r^2= 6.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.235304 1 C s 7 -0.235304 2 C s - 33 0.230451 9 H s 34 -0.230451 10 H s - 31 -0.226662 7 H s 32 0.226662 8 H s - 13 -0.222271 3 C px 18 -0.222271 4 C px - 24 -0.177966 5 C py 29 -0.177966 6 C py - - Vector 23 Occ=2.000000D+00 E=-3.976931D-01 Symmetry=bu - MO Center= 2.7D-15, -1.5D-14, 4.2D-32, r^2= 8.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 0.251234 5 C px 28 0.251234 6 C px - 49 0.250512 15 C px 54 0.250512 16 C px - 3 -0.220814 1 C px 8 -0.220814 2 C px - 57 0.215415 17 H s 58 -0.215415 18 H s - 38 0.181486 11 C py 43 0.181486 12 C py - - Vector 24 Occ=2.000000D+00 E=-3.959401D-01 Symmetry=ag - MO Center= 7.2D-15, 2.1D-14, 1.0D-17, r^2= 1.5D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 50 0.338996 15 C py 55 -0.338996 16 C py - 59 -0.262591 19 H s 60 -0.262591 20 H s - 37 0.251499 11 C px 42 -0.251499 12 C px - 45 -0.145068 13 H s 46 -0.145068 14 H s - 24 0.136710 5 C py 29 -0.136710 6 C py - - Vector 25 Occ=2.000000D+00 E=-3.744310D-01 Symmetry=bu - MO Center= -1.0D-14, 1.9D-15, -6.5D-31, r^2= 4.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 13 0.307580 3 C px 18 0.307580 4 C px - 31 0.252258 7 H s 32 -0.252258 8 H s - 24 -0.226088 5 C py 29 -0.226088 6 C py - 33 0.218196 9 H s 34 -0.218196 10 H s - 23 0.188076 5 C px 28 0.188076 6 C px - - Vector 26 Occ=2.000000D+00 E=-3.509386D-01 Symmetry=bu - MO Center= -2.4D-15, 1.1D-15, 4.8D-32, r^2= 9.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 50 -0.245674 15 C py 55 -0.245674 16 C py - 14 0.224351 3 C py 19 0.224351 4 C py - 37 -0.201679 11 C px 42 -0.201679 12 C px - 24 -0.193262 5 C py 29 -0.193262 6 C py - 38 0.187739 11 C py 43 0.187739 12 C py - - Vector 27 Occ=2.000000D+00 E=-3.470166D-01 Symmetry=ag - MO Center= -1.6D-17, 8.5D-16, 4.6D-32, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 49 0.295192 15 C px 54 -0.295192 16 C px - 57 0.268014 17 H s 58 0.268014 18 H s - 37 -0.208870 11 C px 42 0.208870 12 C px - 45 0.200226 13 H s 46 0.200226 14 H s - 31 -0.156468 7 H s 32 -0.156468 8 H s - - Vector 28 Occ=2.000000D+00 E=-3.244710D-01 Symmetry=au - MO Center= 7.9D-15, -6.7D-15, 4.0D-16, r^2= 3.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 5 0.337605 1 C pz 10 0.337605 2 C pz - 15 0.297981 3 C pz 20 0.297981 4 C pz - 25 0.297166 5 C pz 30 0.297166 6 C pz - 39 0.173952 11 C pz 44 0.173952 12 C pz - 51 0.092445 15 C pz 56 0.092445 16 C pz - - Vector 29 Occ=2.000000D+00 E=-3.110655D-01 Symmetry=bu - MO Center= -4.2D-16, -6.5D-15, -9.2D-25, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.259096 13 H s 46 -0.259096 14 H s - 4 0.241973 1 C py 9 0.241973 2 C py - 57 0.231031 17 H s 58 -0.231031 18 H s - 37 -0.217246 11 C px 42 -0.217246 12 C px - 59 -0.212337 19 H s 60 0.212337 20 H s - - Vector 30 Occ=2.000000D+00 E=-2.929848D-01 Symmetry=ag - MO Center= 3.7D-16, 3.8D-15, 3.9D-17, r^2= 6.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 14 -0.278190 3 C py 19 0.278190 4 C py - 4 0.268405 1 C py 9 -0.268405 2 C py - 38 0.248153 11 C py 43 -0.248153 12 C py - 33 -0.240396 9 H s 34 -0.240396 10 H s - 24 0.234459 5 C py 29 -0.234459 6 C py - - Vector 31 Occ=2.000000D+00 E=-2.874971D-01 Symmetry=ag - MO Center= -5.4D-16, 1.6D-15, 4.6D-17, r^2= 6.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 3 0.295870 1 C px 8 -0.295870 2 C px - 23 0.280610 5 C px 28 -0.280610 6 C px - 31 -0.258072 7 H s 32 -0.258072 8 H s - 13 -0.222130 3 C px 18 0.222130 4 C px - 45 -0.182729 13 H s 46 -0.182729 14 H s - - Vector 32 Occ=2.000000D+00 E=-2.634578D-01 Symmetry=bg - MO Center= 5.5D-16, -5.4D-15, -2.8D-18, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 -0.376488 11 C pz 44 0.376488 12 C pz - 5 0.348955 1 C pz 10 -0.348955 2 C pz - 51 -0.271403 15 C pz 56 0.271403 16 C pz - 15 0.131650 3 C pz 20 -0.131650 4 C pz - 25 -0.132098 5 C pz 30 0.132098 6 C pz - - Vector 33 Occ=2.000000D+00 E=-2.123397D-01 Symmetry=au - MO Center= -6.0D-15, 1.5D-14, -3.5D-16, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 0.417956 15 C pz 56 0.417956 16 C pz - 39 0.413783 11 C pz 44 0.413783 12 C pz - 15 -0.179209 3 C pz 20 -0.179209 4 C pz - 25 -0.176634 5 C pz 30 -0.176634 6 C pz - - Vector 34 Occ=2.000000D+00 E=-1.951698D-01 Symmetry=bg - MO Center= -2.0D-15, 9.5D-16, 3.3D-18, r^2= 2.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 15 0.463634 3 C pz 20 -0.463634 4 C pz - 25 0.457528 5 C pz 30 -0.457528 6 C pz - - Vector 35 Occ=2.000000D+00 E=-1.529974D-01 Symmetry=bg - MO Center= -2.7D-16, -2.9D-15, -7.2D-18, r^2= 8.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 0.397364 15 C pz 56 -0.397364 16 C pz - 5 0.387559 1 C pz 10 -0.387559 2 C pz - 25 -0.230763 5 C pz 30 0.230763 6 C pz - 39 0.223671 11 C pz 44 -0.223671 12 C pz - 15 0.215057 3 C pz 20 -0.215057 4 C pz - - Vector 36 Occ=0.000000D+00 E= 3.750859D-02 Symmetry=au - MO Center= -3.2D-17, -2.2D-15, 5.0D-19, r^2= 8.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 -0.449621 15 C pz 56 -0.449621 16 C pz - 5 0.442664 1 C pz 10 0.442664 2 C pz - 25 -0.277536 5 C pz 30 -0.277536 6 C pz - 39 0.256140 11 C pz 44 0.256140 12 C pz - 15 -0.232275 3 C pz 20 -0.232275 4 C pz - - Vector 37 Occ=0.000000D+00 E= 9.011567D-02 Symmetry=au - MO Center= 1.4D-16, -1.8D-16, -5.4D-17, r^2= 2.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 15 0.582686 3 C pz 20 0.582686 4 C pz - 25 -0.553244 5 C pz 30 -0.553244 6 C pz - 5 -0.031918 1 C pz 10 -0.031918 2 C pz - - Vector 38 Occ=0.000000D+00 E= 1.107246D-01 Symmetry=bg - MO Center= 1.1D-15, -3.6D-15, -3.4D-18, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 0.522166 11 C pz 44 -0.522166 12 C pz - 51 -0.523108 15 C pz 56 0.523108 16 C pz - 15 0.240688 3 C pz 20 -0.240688 4 C pz - 25 -0.232244 5 C pz 30 0.232244 6 C pz - - Vector 39 Occ=0.000000D+00 E= 1.821995D-01 Symmetry=au - MO Center= 3.6D-16, 5.9D-15, -2.6D-17, r^2= 7.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 -0.529127 11 C pz 44 -0.529127 12 C pz - 5 0.497225 1 C pz 10 0.497225 2 C pz - 51 0.379690 15 C pz 56 0.379690 16 C pz - 25 -0.199207 5 C pz 30 -0.199207 6 C pz - 15 -0.166738 3 C pz 20 -0.166738 4 C pz - - Vector 40 Occ=0.000000D+00 E= 2.723008D-01 Symmetry=bg - MO Center= -1.8D-15, -2.2D-15, -2.2D-19, r^2= 3.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 5 0.543479 1 C pz 10 -0.543479 2 C pz - 25 0.466880 5 C pz 30 -0.466880 6 C pz - 15 -0.464183 3 C pz 20 0.464183 4 C pz - 39 0.287727 11 C pz 44 -0.287727 12 C pz - 51 -0.156151 15 C pz 56 0.156151 16 C pz - - Vector 41 Occ=0.000000D+00 E= 3.324831D-01 Symmetry=ag - MO Center= 1.6D-15, 1.3D-15, -8.4D-17, r^2= 8.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 33 -0.423783 9 H s 34 -0.423783 10 H s - 31 -0.413784 7 H s 32 -0.413784 8 H s - 2 0.401572 1 C s 7 0.401572 2 C s - 59 -0.358539 19 H s 60 -0.358539 20 H s - 38 -0.338107 11 C py 43 0.338107 12 C py - - Vector 42 Occ=0.000000D+00 E= 3.406431D-01 Symmetry=bu - MO Center= -2.8D-15, -6.2D-15, -2.8D-19, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.433831 13 H s 46 -0.433831 14 H s - 13 0.355438 3 C px 18 0.355438 4 C px - 37 0.344564 11 C px 42 0.344564 12 C px - 31 -0.321891 7 H s 32 0.321891 8 H s - 57 -0.323128 17 H s 58 0.323128 18 H s - - Vector 43 Occ=0.000000D+00 E= 3.795208D-01 Symmetry=bu - MO Center= -2.2D-14, 1.4D-14, 3.1D-18, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.546139 11 C s 41 -0.546139 12 C s - 4 0.461532 1 C py 9 0.461532 2 C py - 33 0.405551 9 H s 34 -0.405551 10 H s - 59 0.351678 19 H s 60 -0.351678 20 H s - 2 0.338398 1 C s 7 -0.338398 2 C s - - Vector 44 Occ=0.000000D+00 E= 3.812879D-01 Symmetry=ag - MO Center= 2.4D-14, -9.7D-15, -5.6D-18, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.579617 13 H s 46 0.579617 14 H s - 12 0.393543 3 C s 17 0.393543 4 C s - 57 -0.391422 17 H s 58 -0.391422 18 H s - 36 -0.382181 11 C s 41 -0.382181 12 C s - 37 0.338374 11 C px 42 -0.338374 12 C px - - Vector 45 Occ=0.000000D+00 E= 4.103421D-01 Symmetry=ag - MO Center= -1.3D-15, 3.3D-15, 3.5D-17, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.647355 15 C s 53 0.647355 16 C s - 22 0.620085 5 C s 27 0.620085 6 C s - 57 -0.513327 17 H s 58 -0.513327 18 H s - 12 -0.443641 3 C s 17 -0.443641 4 C s - 59 -0.320785 19 H s 60 -0.320785 20 H s - - Vector 46 Occ=0.000000D+00 E= 4.112339D-01 Symmetry=bu - MO Center= -2.7D-15, 3.9D-15, 2.3D-18, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 22 0.613159 5 C s 27 -0.613159 6 C s - 48 0.539742 15 C s 53 -0.539742 16 C s - 2 0.476210 1 C s 7 -0.476210 2 C s - 57 -0.447810 17 H s 58 0.447810 18 H s - 12 -0.440665 3 C s 17 0.440665 4 C s - - Vector 47 Occ=0.000000D+00 E= 4.258005D-01 Symmetry=bu - MO Center= 1.2D-15, 9.6D-15, -2.6D-19, r^2= 9.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 31 0.603117 7 H s 32 -0.603117 8 H s - 36 -0.446797 11 C s 41 0.446797 12 C s - 45 0.437145 13 H s 46 -0.437145 14 H s - 12 -0.368679 3 C s 17 0.368679 4 C s - 59 0.337691 19 H s 60 -0.337691 20 H s - - Vector 48 Occ=0.000000D+00 E= 4.393589D-01 Symmetry=ag - MO Center= 2.6D-16, -5.1D-14, 8.0D-17, r^2= 7.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.782306 1 C s 7 0.782306 2 C s - 36 -0.556803 11 C s 41 -0.556803 12 C s - 12 -0.499671 3 C s 17 -0.499671 4 C s - 22 -0.411554 5 C s 27 -0.411554 6 C s - 48 0.409877 15 C s 53 0.409877 16 C s - - Vector 49 Occ=0.000000D+00 E= 4.537206D-01 Symmetry=bu - MO Center= 5.1D-15, 3.6D-14, 7.1D-18, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.706731 15 C s 53 -0.706731 16 C s - 57 -0.525560 17 H s 58 0.525560 18 H s - 33 0.477108 9 H s 34 -0.477108 10 H s - 36 -0.428983 11 C s 41 0.428983 12 C s - 22 -0.407154 5 C s 27 0.407154 6 C s - - Vector 50 Occ=0.000000D+00 E= 4.783347D-01 Symmetry=ag - MO Center= -4.6D-15, 3.1D-15, -9.0D-18, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.706203 3 C s 17 0.706203 4 C s - 22 -0.619411 5 C s 27 -0.619411 6 C s - 59 -0.475193 19 H s 60 -0.475193 20 H s - 48 0.415054 15 C s 53 0.415054 16 C s - 50 -0.382620 15 C py 55 0.382620 16 C py - - Vector 51 Occ=0.000000D+00 E= 5.255617D-01 Symmetry=ag - MO Center= -4.1D-16, -3.3D-15, -5.7D-18, r^2= 6.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 4 0.601871 1 C py 9 -0.601871 2 C py - 36 -0.491651 11 C s 41 -0.491651 12 C s - 13 -0.452509 3 C px 18 0.452509 4 C px - 2 -0.448717 1 C s 7 -0.448717 2 C s - 49 -0.342031 15 C px 54 0.342031 16 C px - - Vector 52 Occ=0.000000D+00 E= 5.463502D-01 Symmetry=bu - MO Center= 2.8D-16, -2.7D-15, 6.1D-19, r^2= 7.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.647784 3 C s 17 -0.647784 4 C s - 3 -0.560724 1 C px 8 -0.560724 2 C px - 50 0.483451 15 C py 55 0.483451 16 C py - 24 -0.478219 5 C py 29 -0.478219 6 C py - 59 0.356016 19 H s 60 -0.356016 20 H s - - Vector 53 Occ=0.000000D+00 E= 5.764350D-01 Symmetry=ag - MO Center= -2.2D-15, -1.6D-15, -9.4D-19, r^2= 5.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 13 0.537116 3 C px 18 -0.537116 4 C px - 23 -0.522145 5 C px 28 0.522145 6 C px - 33 0.519105 9 H s 34 0.519105 10 H s - 31 -0.448305 7 H s 32 -0.448305 8 H s - 24 0.400193 5 C py 29 -0.400193 6 C py - - Vector 54 Occ=0.000000D+00 E= 5.984360D-01 Symmetry=bu - MO Center= 9.5D-16, 4.4D-15, -6.2D-18, r^2= 4.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 14 0.723027 3 C py 19 0.723027 4 C py - 22 0.599925 5 C s 27 -0.599925 6 C s - 36 -0.415409 11 C s 41 0.415409 12 C s - 2 -0.405903 1 C s 7 0.405903 2 C s - 24 0.394224 5 C py 29 0.394224 6 C py - - Vector 55 Occ=0.000000D+00 E= 6.248960D-01 Symmetry=bu - MO Center= -1.5D-16, 2.0D-14, 4.0D-18, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.608540 1 C s 7 -0.608540 2 C s - 49 -0.528894 15 C px 54 -0.528894 16 C px - 38 0.480664 11 C py 43 0.480664 12 C py - 23 -0.365998 5 C px 28 -0.365998 6 C px - 57 0.363290 17 H s 58 -0.363290 18 H s - - Vector 56 Occ=0.000000D+00 E= 6.398314D-01 Symmetry=ag - MO Center= 2.1D-15, 5.8D-15, -4.7D-18, r^2= 9.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.549270 11 C px 42 -0.549270 12 C px - 50 -0.534308 15 C py 55 0.534308 16 C py - 14 0.383478 3 C py 19 -0.383478 4 C py - 4 -0.364573 1 C py 9 0.364573 2 C py - 59 -0.330752 19 H s 60 -0.330752 20 H s - - Vector 57 Occ=0.000000D+00 E= 6.828339D-01 Symmetry=ag - MO Center= -9.2D-16, -3.5D-14, -9.2D-18, r^2= 9.3D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 38 0.663094 11 C py 43 -0.663094 12 C py - 49 -0.580417 15 C px 54 0.580417 16 C px - 24 -0.449228 5 C py 29 0.449228 6 C py - 14 -0.392078 3 C py 19 0.392078 4 C py - 4 -0.381677 1 C py 9 0.381677 2 C py - - Vector 58 Occ=0.000000D+00 E= 7.173538D-01 Symmetry=bu - MO Center= 3.3D-16, 1.0D-14, -2.0D-20, r^2= 9.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.608022 11 C px 42 0.608022 12 C px - 48 -0.538014 15 C s 50 -0.540482 15 C py - 53 0.538014 16 C s 55 -0.540482 16 C py - 36 0.466536 11 C s 38 -0.464866 11 C py - 41 -0.466536 12 C s 43 -0.464866 12 C py - - Vector 59 Occ=0.000000D+00 E= 7.790400D-01 Symmetry=ag - MO Center= 2.0D-15, 8.3D-17, -2.9D-19, r^2= 5.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 3 0.702437 1 C px 8 -0.702437 2 C px - 14 -0.534061 3 C py 19 0.534061 4 C py - 23 -0.435992 5 C px 28 0.435992 6 C px - 37 0.429830 11 C px 42 -0.429830 12 C px - 24 -0.411043 5 C py 29 0.411043 6 C py - - Vector 60 Occ=0.000000D+00 E= 7.942614D-01 Symmetry=bu - MO Center= 2.8D-16, -8.7D-16, -2.6D-20, r^2= 3.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 4 0.657695 1 C py 9 0.657695 2 C py - 13 -0.568326 3 C px 18 -0.568326 4 C px - 23 0.496523 5 C px 28 0.496523 6 C px - 22 -0.413798 5 C s 27 0.413798 6 C s - 24 -0.395895 5 C py 29 -0.395895 6 C py - + 12 C | 16 C | 18 H | 122.49 + 12 C | 16 C | 20 H | 121.29 + 18 H | 16 C | 20 H | 116.22 + ------------------------------------------------------------------------------ + number of included internuclear angles: 30 + ============================================================================== - center of mass - -------------- - x = 0.00000000 y = 0.00000000 z = 0.00000000 - moments of inertia (a.u.) - ------------------ - 2631.731379210398 -0.000000000000 0.000000000000 - -0.000000000000 390.819001468288 0.000000000000 - 0.000000000000 0.000000000000 3022.550380678686 - - Multipole analysis of the density - --------------------------------- - - L x y z total alpha beta nuclear - - - - - ----- ----- ---- ------- - 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 - - 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 - 1 0 1 0 0.000000 0.000000 0.000000 0.000000 - 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - - 2 2 0 0 -37.347207 -141.071539 -141.071539 244.795872 - 2 1 1 0 0.066095 2.848561 2.848561 -5.631027 - 2 1 0 1 0.000000 0.000000 0.000000 0.000000 - 2 0 2 0 -37.713952 -767.338626 -767.338626 1496.963300 - 2 0 1 1 0.000000 0.000000 0.000000 0.000000 - 2 0 0 2 -43.587343 -21.793672 -21.793672 0.000000 - - ------------- - Dipole Moment - ------------- - - Center of charge (in au) is the expansion point - X = 0.0000000 Y = 0.0000000 Z = 0.0000000 - - Dipole moment 0.0000000000 A.U. - DMX -0.0000000000 DMXEFC 0.0000000000 - DMY 0.0000000000 DMYEFC 0.0000000000 - DMZ -0.0000000000 DMZEFC 0.0000000000 - -EFC- dipole 0.0000000000 A.U. - Total dipole 0.0000000000 A.U. - - Dipole moment 0.0000000000 Debye(s) - DMX -0.0000000000 DMXEFC 0.0000000000 - DMY 0.0000000000 DMYEFC 0.0000000000 - DMZ -0.0000000000 DMZEFC 0.0000000000 - -EFC- dipole 0.0000000000 DEBYE(S) - Total dipole 0.0000000000 DEBYE(S) - - 1 a.u. = 2.541766 Debyes - - ----------------- - Quadrupole Moment - ----------------- - - Center of charge (in au) is the expansion point - X = 0.0000000 Y = 0.0000000 Z = 0.0000000 - - < R**2 > = ********** a.u. ( 1 a.u. = 0.280023 10**(-16) cm**2 ) - ( also called diamagnetic susceptibility ) - - Second moments in atomic units - - Component Electronic+nuclear Point charges Total - -------------------------------------------------------------------------- - XX -37.3472067707 0.0000000000 -37.3472067707 - YY -37.7139522621 0.0000000000 -37.7139522621 - ZZ -43.5873432401 0.0000000000 -43.5873432401 - XY 0.0660946259 0.0000000000 0.0660946259 - XZ -0.0000000000 0.0000000000 -0.0000000000 - YZ 0.0000000000 0.0000000000 0.0000000000 - - Second moments in buckingham(s) - - Component Electronic+nuclear Point charges Total - -------------------------------------------------------------------------- - XX -50.2286692052 0.0000000000 -50.2286692052 - YY -50.7219092508 0.0000000000 -50.7219092508 - ZZ -58.6210973844 0.0000000000 -58.6210973844 - XY 0.0888913894 0.0000000000 0.0888913894 - XZ -0.0000000000 0.0000000000 -0.0000000000 - YZ 0.0000000000 0.0000000000 0.0000000000 - - Quadrupole moments in atomic units - - Component Electronic+nuclear Point charges Total - -------------------------------------------------------------------------- - XX 3.3034409804 0.0000000000 3.3034409804 - YY 2.7533227433 0.0000000000 2.7533227433 - ZZ -6.0567637237 0.0000000000 -6.0567637237 - XY 0.0991419388 0.0000000000 0.0991419388 - XZ -0.0000000000 0.0000000000 -0.0000000000 - YZ 0.0000000000 0.0000000000 0.0000000000 - - Quadrupole moments in buckingham(s) - - Component Electronic+nuclear Point charges Total - -------------------------------------------------------------------------- - XX 4.4428341124 0.0000000000 4.4428341124 - YY 3.7029740440 0.0000000000 3.7029740440 - ZZ -8.1458081564 0.0000000000 -8.1458081564 - XY 0.1333370841 0.0000000000 0.1333370841 - XZ -0.0000000000 0.0000000000 -0.0000000000 - YZ 0.0000000000 0.0000000000 0.0000000000 - - 1 a.u. = 1.344911 Buckinghams = 1.344911 10**(-26) esu*cm**2 - - --------------- - Octupole Moment - --------------- - - Center of charge (in au) is the expansion point - X = 0.0000000 Y = 0.0000000 Z = 0.0000000 - - Third moments in atomic units - - Component Electronic+nuclear Point charges Total - -------------------------------------------------------------------------- - XXX 0.0000000000 0.0000000000 0.0000000000 - YYY 0.0000000000 0.0000000000 0.0000000000 - ZZZ -0.0000000000 0.0000000000 -0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 - XXZ -0.0000000000 0.0000000000 -0.0000000000 - YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 - ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY 0.0000000000 0.0000000000 0.0000000000 - XYZ -0.0000000000 0.0000000000 -0.0000000000 - - Third moments in 10**(-34) esu*cm**3 - - Component Electronic+nuclear Point charges Total - -------------------------------------------------------------------------- - XXX 0.0000000000 0.0000000000 0.0000000000 - YYY 0.0000000000 0.0000000000 0.0000000000 - ZZZ -0.0000000000 0.0000000000 -0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 - XXZ -0.0000000000 0.0000000000 -0.0000000000 - YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 - ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY 0.0000000000 0.0000000000 0.0000000000 - XYZ -0.0000000000 0.0000000000 -0.0000000000 - - Octupole moments in atomic units - - Component Electronic+nuclear Point charges Total - -------------------------------------------------------------------------- - XXX 0.0000000000 0.0000000000 0.0000000000 - YYY 0.0000000000 0.0000000000 0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 - YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 - ZZX -0.0000000000 0.0000000000 -0.0000000000 - ZZY -0.0000000000 0.0000000000 -0.0000000000 - XYZ -0.0000000000 0.0000000000 -0.0000000000 - - Octupole moments in 10**(-34) esu*cm**3 - - Component Electronic+nuclear Point charges Total - -------------------------------------------------------------------------- - XXX 0.0000000000 0.0000000000 0.0000000000 - YYY 0.0000000000 0.0000000000 0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 - YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 - ZZX -0.0000000000 0.0000000000 -0.0000000000 - ZZY -0.0000000000 0.0000000000 -0.0000000000 - XYZ -0.0000000000 0.0000000000 -0.0000000000 - - 1 a.u. = 0.711688 10**(-34) esu*cm**3 - - - ---------------------------- - Mulliken population analysis - ---------------------------- - - Total S,P,D,... shell population - -------------------------------- - Atom S P - -------------------------------------------------------------------------------------- - 1 C 3.13682 2.86756 - 2 C 3.13682 2.86756 - 3 C 3.15100 2.92573 - 4 C 3.15100 2.92573 - 5 C 3.14877 2.92834 - 6 C 3.14877 2.92834 - 7 H 0.92201 0.00000 - 8 H 0.92201 0.00000 - 9 H 0.92068 0.00000 - 10 H 0.92068 0.00000 - 11 C 3.15392 2.92245 - 12 C 3.15392 2.92245 - 13 H 0.92331 0.00000 - 14 H 0.92331 0.00000 - 15 C 3.16903 2.98579 - 16 C 3.16903 2.98579 - 17 H 0.92388 0.00000 - 18 H 0.92388 0.00000 - 19 H 0.92070 0.00000 - 20 H 0.92070 0.00000 - - ----- Total gross population on atoms ---- - - 1 C 6.0 6.00438 - 2 C 6.0 6.00438 - 3 C 6.0 6.07673 - 4 C 6.0 6.07673 - 5 C 6.0 6.07712 - 6 C 6.0 6.07712 - 7 H 1.0 0.92201 - 8 H 1.0 0.92201 - 9 H 1.0 0.92068 - 10 H 1.0 0.92068 - 11 C 6.0 6.07637 - 12 C 6.0 6.07637 - 13 H 1.0 0.92331 - 14 H 1.0 0.92331 - 15 C 6.0 6.15482 - 16 C 6.0 6.15482 - 17 H 1.0 0.92388 - 18 H 1.0 0.92388 - 19 H 1.0 0.92070 - 20 H 1.0 0.92070 - - ----- Bond indices ----- - 1- 1 0.00000 1- 2 0.09858 1- 3 1.36307 1- 4 0.00313 1- 5 0.00305 1- 6 1.36519 1- 7 0.00447 1- 8 0.00733 - 2- 1 0.09858 2- 2 0.00000 2- 3 0.00313 2- 4 1.36307 2- 5 1.36519 2- 6 0.00305 2- 7 0.00733 2- 8 0.00447 - 3- 1 1.36307 3- 2 0.00313 3- 3 0.00000 3- 4 0.09865 3- 5 1.46517 3- 6 0.00361 3- 7 0.96133 3- 8 0.00021 - 4- 1 0.00313 4- 2 1.36307 4- 3 0.09865 4- 4 0.00000 4- 5 0.00361 4- 6 1.46517 4- 7 0.00021 4- 8 0.96133 - 5- 1 0.00305 5- 2 1.36519 5- 3 1.46517 5- 4 0.00361 5- 5 0.00000 5- 6 0.10219 5- 7 0.00381 5- 8 0.00699 - 6- 1 1.36519 6- 2 0.00305 6- 3 0.00361 6- 4 1.46517 6- 5 0.10219 6- 6 0.00000 6- 7 0.00699 6- 8 0.00381 - 7- 1 0.00447 7- 2 0.00733 7- 3 0.96133 7- 4 0.00021 7- 5 0.00381 7- 6 0.00699 7- 7 0.00000 7- 8 0.00007 - 8- 1 0.00733 8- 2 0.00447 8- 3 0.00021 8- 4 0.96133 8- 5 0.00699 8- 6 0.00381 8- 7 0.00007 8- 8 0.00000 - 9- 1 0.00729 9- 2 0.00424 9- 3 0.00373 9- 4 0.00702 9- 5 0.95946 9- 6 0.00019 9- 7 0.00292 9- 8 0.00118 - 10- 1 0.00424 10- 2 0.00729 10- 3 0.00702 10- 4 0.00373 10- 5 0.00019 10- 6 0.95946 10- 7 0.00118 10- 8 0.00292 - 11- 1 0.00023 11- 2 1.06640 11- 3 0.00888 11- 4 0.00560 11- 5 0.00473 11- 6 0.00771 11- 7 0.00097 11- 8 0.00271 - 12- 1 1.06640 12- 2 0.00023 12- 3 0.00560 12- 4 0.00888 12- 5 0.00771 12- 6 0.00473 12- 7 0.00271 12- 8 0.00097 - 13- 1 0.00004 13- 2 0.00563 13- 3 0.00073 13- 4 0.00197 13- 5 0.00605 13- 6 0.00007 13- 7 0.00029 13- 8 0.00141 - 14- 1 0.00563 14- 2 0.00004 14- 3 0.00197 14- 4 0.00073 14- 5 0.00007 14- 6 0.00605 14- 7 0.00141 14- 8 0.00029 - 15- 1 0.02591 15- 2 0.00353 15- 3 0.00033 15- 4 0.04473 15- 5 0.04010 15- 6 0.00077 15- 7 0.00002 15- 8 0.00009 - 16- 1 0.00353 16- 2 0.02591 16- 3 0.04473 16- 4 0.00033 16- 5 0.00077 16- 6 0.04010 16- 7 0.00009 16- 8 0.00002 - 17- 1 0.00001 17- 2 0.00446 17- 3 0.00011 17- 4 0.00015 17- 5 0.00034 17- 6 0.00002 17- 7 0.00002 17- 8 0.00002 - 18- 1 0.00446 18- 2 0.00001 18- 3 0.00015 18- 4 0.00011 18- 5 0.00002 18- 6 0.00034 18- 7 0.00002 18- 8 0.00002 - 19- 1 0.00003 19- 2 0.01046 19- 3 0.00000 19- 4 0.00080 19- 5 0.00042 19- 6 0.00023 19- 7 0.00002 19- 8 0.00006 - 20- 1 0.01046 20- 2 0.00003 20- 3 0.00080 20- 4 0.00000 20- 5 0.00023 20- 6 0.00042 20- 7 0.00006 20- 8 0.00002 - 1- 9 0.00729 1-10 0.00424 1-11 0.00023 1-12 1.06640 1-13 0.00004 1-14 0.00563 1-15 0.02591 1-16 0.00353 - 2- 9 0.00424 2-10 0.00729 2-11 1.06640 2-12 0.00023 2-13 0.00563 2-14 0.00004 2-15 0.00353 2-16 0.02591 - 3- 9 0.00373 3-10 0.00702 3-11 0.00888 3-12 0.00560 3-13 0.00073 3-14 0.00197 3-15 0.00033 3-16 0.04473 - 4- 9 0.00702 4-10 0.00373 4-11 0.00560 4-12 0.00888 4-13 0.00197 4-14 0.00073 4-15 0.04473 4-16 0.00033 - 5- 9 0.95946 5-10 0.00019 5-11 0.00473 5-12 0.00771 5-13 0.00605 5-14 0.00007 5-15 0.04010 5-16 0.00077 - 6- 9 0.00019 6-10 0.95946 6-11 0.00771 6-12 0.00473 6-13 0.00007 6-14 0.00605 6-15 0.00077 6-16 0.04010 - 7- 9 0.00292 7-10 0.00118 7-11 0.00097 7-12 0.00271 7-13 0.00029 7-14 0.00141 7-15 0.00002 7-16 0.00009 - 8- 9 0.00118 8-10 0.00292 8-11 0.00271 8-12 0.00097 8-13 0.00141 8-14 0.00029 8-15 0.00009 8-16 0.00002 - 9- 9 0.00000 9-10 0.00008 9-11 0.00301 9-12 0.00095 9-13 0.00010 9-14 0.00004 9-15 0.00040 9-16 0.00016 - 10- 9 0.00008 10-10 0.00000 10-11 0.00095 10-12 0.00301 10-13 0.00004 10-14 0.00010 10-15 0.00016 10-16 0.00040 - 11- 9 0.00301 11-10 0.00095 11-11 0.00000 11-12 0.00044 11-13 0.95915 11-14 0.00000 11-15 1.90133 11-16 0.00003 - 12- 9 0.00095 12-10 0.00301 12-11 0.00044 12-12 0.00000 12-13 0.00000 12-14 0.95915 12-15 0.00003 12-16 1.90133 - 13- 9 0.00010 13-10 0.00004 13-11 0.95915 13-12 0.00000 13-13 0.00000 13-14 0.00000 13-15 0.00281 13-16 0.00000 - 14- 9 0.00004 14-10 0.00010 14-11 0.00000 14-12 0.95915 14-13 0.00000 14-14 0.00000 14-15 0.00000 14-16 0.00281 - 15- 9 0.00040 15-10 0.00016 15-11 1.90133 15-12 0.00003 15-13 0.00281 15-14 0.00000 15-15 0.00000 15-16 0.00895 - 16- 9 0.00016 16-10 0.00040 16-11 0.00003 16-12 1.90133 16-13 0.00000 16-14 0.00281 16-15 0.00895 16-16 0.00000 - 17- 9 0.00273 17-10 0.00002 17-11 0.00313 17-12 0.00000 17-13 0.01161 17-14 0.00000 17-15 0.96639 17-16 0.00000 - 18- 9 0.00002 18-10 0.00273 18-11 0.00000 18-12 0.00313 18-13 0.00000 18-14 0.01161 18-15 0.00000 18-16 0.96639 - 19- 9 0.00012 19-10 0.00007 19-11 0.00283 19-12 0.00000 19-13 0.00423 19-14 0.00000 19-15 0.96924 19-16 0.00000 - 20- 9 0.00007 20-10 0.00012 20-11 0.00000 20-12 0.00283 20-13 0.00000 20-14 0.00423 20-15 0.00000 20-16 0.96924 - 1-17 0.00001 1-18 0.00446 1-19 0.00003 1-20 0.01046 - 2-17 0.00446 2-18 0.00001 2-19 0.01046 2-20 0.00003 - 3-17 0.00011 3-18 0.00015 3-19 0.00000 3-20 0.00080 - 4-17 0.00015 4-18 0.00011 4-19 0.00080 4-20 0.00000 - 5-17 0.00034 5-18 0.00002 5-19 0.00042 5-20 0.00023 - 6-17 0.00002 6-18 0.00034 6-19 0.00023 6-20 0.00042 - 7-17 0.00002 7-18 0.00002 7-19 0.00002 7-20 0.00006 - 8-17 0.00002 8-18 0.00002 8-19 0.00006 8-20 0.00002 - 9-17 0.00273 9-18 0.00002 9-19 0.00012 9-20 0.00007 - 10-17 0.00002 10-18 0.00273 10-19 0.00007 10-20 0.00012 - 11-17 0.00313 11-18 0.00000 11-19 0.00283 11-20 0.00000 - 12-17 0.00000 12-18 0.00313 12-19 0.00000 12-20 0.00283 - 13-17 0.01161 13-18 0.00000 13-19 0.00423 13-20 0.00000 - 14-17 0.00000 14-18 0.01161 14-19 0.00000 14-20 0.00423 - 15-17 0.96639 15-18 0.00000 15-19 0.96924 15-20 0.00000 - 16-17 0.00000 16-18 0.96639 16-19 0.00000 16-20 0.96924 - 17-17 0.00000 17-18 0.00000 17-19 0.00520 17-20 0.00000 - 18-17 0.00000 18-18 0.00000 18-19 0.00000 18-20 0.00520 - 19-17 0.00520 19-18 0.00000 19-19 0.00000 19-20 0.00000 - 20-17 0.00000 20-18 0.00520 20-19 0.00000 20-20 0.00000 - - Large bond indices - ------------------ - 1 C - 3 C 1.36307 - 1 C - 6 C 1.36519 - 1 C - 12 C 1.06640 - 2 C - 4 C 1.36307 - 2 C - 5 C 1.36519 - 2 C - 11 C 1.06640 - 3 C - 5 C 1.46517 - 3 C - 7 H 0.96133 - 4 C - 6 C 1.46517 - 4 C - 8 H 0.96133 - 5 C - 6 C 0.10219 - 5 C - 9 H 0.95946 - 6 C - 10 H 0.95946 - 11 C - 13 H 0.95915 - 11 C - 15 C 1.90133 - 12 C - 14 H 0.95915 - 12 C - 16 C 1.90133 - 15 C - 17 H 0.96639 - 15 C - 19 H 0.96924 - 16 C - 18 H 0.96639 - 16 C - 20 H 0.96924 - - Free electrons Valency - Number of Sum of + Bond indices - Bond indices - Valency Free electrons Bond indices =Mulliken charge = Net spin population - 1 C 3.97306 2.03132 3.97306 6.00438 -0.00000 - 2 C 3.97306 2.03132 3.97306 6.00438 -0.00000 - 3 C 3.96923 2.10751 3.96923 6.07673 0.00000 - 4 C 3.96923 2.10751 3.96923 6.07673 0.00000 - 5 C 3.97007 2.10705 3.97007 6.07712 -0.00000 - 6 C 3.97007 2.10705 3.97007 6.07712 -0.00000 - 7 H 0.99392 -0.07191 0.99392 0.92201 -0.00000 - 8 H 0.99392 -0.07191 0.99392 0.92201 -0.00000 - 9 H 0.99371 -0.07303 0.99371 0.92068 -0.00000 - 10 H 0.99371 -0.07303 0.99371 0.92068 -0.00000 - 11 C 3.96810 2.10827 3.96810 6.07637 -0.00000 - 12 C 3.96810 2.10827 3.96810 6.07637 -0.00000 - 13 H 0.99412 -0.07081 0.99412 0.92331 -0.00000 - 14 H 0.99412 -0.07081 0.99412 0.92331 0.00000 - 15 C 3.96478 2.19004 3.96478 6.15482 -0.00000 - 16 C 3.96478 2.19004 3.96478 6.15482 -0.00000 - 17 H 0.99421 -0.07032 0.99421 0.92388 -0.00000 - 18 H 0.99421 -0.07032 0.99421 0.92388 -0.00000 - 19 H 0.99371 -0.07301 0.99371 0.92070 0.00000 - 20 H 0.99371 -0.07301 0.99371 0.92070 -0.00000 - - Task times cpu: 1.3s wall: 1.4s - - - NWChem Input Module - ------------------- - - - - - NWChem Nuclear Hessian and Frequency Analysis - --------------------------------------------- - - - - NWChem Analytic Hessian - ----------------------- - - - NWChem DFT Module - ----------------- - - - Divinylbenzene in STO-3G basis set - - + library name resolved from: environment + library file name is: + - Summary of "ao basis" -> "ao basis" (cartesian) + Summary of "ao basis" -> "" (cartesian) ------------------------------------------------------------------------------ Tag Description Shells Functions and Types ---------------- ------------------------------ ------ --------------------- - C sto-3g 3 5 2s1p - H sto-3g 1 1 1s - - - Caching 1-el integrals - - General Information - ------------------- - SCF calculation type: DFT - Wavefunction type: closed shell. - No. of atoms : 20 - No. of electrons : 70 - Alpha electrons : 35 - Beta electrons : 35 - Charge : 0 - Spin multiplicity: 1 - Use of symmetry is: off; symmetry adaption is: off - Maximum number of iterations: 120 - This is a Direct SCF calculation. - AO basis - number of functions: 60 - number of shells: 40 - Convergence on energy requested: 1.00D-07 - Convergence on density requested: 1.00D-05 - Convergence on gradient requested: 1.00D-06 - - XC Information - -------------- - B3LYP Method XC Potential - Hartree-Fock (Exact) Exchange 0.200 - Slater Exchange Functional 0.800 local - Becke 1988 Exchange Functional 0.720 non-local - Lee-Yang-Parr Correlation Functional 0.810 - VWN I RPA Correlation Functional 0.190 local - - Grid Information - ---------------- - Grid used for XC integration: fine - Radial quadrature: Mura-Knowles - Angular quadrature: Lebedev. - Tag B.-S. Rad. Rad. Pts. Rad. Cut. Ang. Pts. - --- ---------- --------- --------- --------- - C 0.70 70 14.0 590 - H 0.35 60 14.0 590 - Grid pruning is: on - Number of quadrature shells: 1300 - Spatial weights used: Erf1 - - Convergence Information - ----------------------- - Convergence aids based upon iterative change in - total energy or number of iterations. - Levelshifting, if invoked, occurs when the - HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 - DIIS, if invoked, will attempt to extrapolate - using up to (NFOCK): 10 stored Fock matrices. - - Damping( 0%) Levelshifting(0.5) DIIS - --------------- ------------------- --------------- - dE on: start ASAP start - dE off: 2 iters 120 iters 120 iters - - - Screening Tolerance Information - ------------------------------- - Density screening/tol_rho: 1.00D-11 - AO Gaussian exp screening on grid/accAOfunc: 16 - CD Gaussian exp screening on grid/accCDfunc: 20 - XC Gaussian exp screening on grid/accXCfunc: 20 - Schwarz screening/accCoul: 1.00D-12 + * sto-3g on all atoms - Loading old vectors from job with title : -Divinylbenzene in STO-3G basis set - Time after variat. SCF: 5.1 - Time prior to 1st pass: 5.1 + NWChem Nuclear Hessian and Frequency Analysis + --------------------------------------------- - Grid_pts file = ./dvb.gridpts.0 - Record size in doubles = 12289 No. of grid_pts per rec = 3070 - Max. records in memory = 70 Max. recs in file = 2708480 - Grid integrated density: 69.999985865503 - Requested integration accuracy: 0.10E-13 - Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 12.24 12243460 - Stack Space remaining (MW): 13.11 13106284 + NWChem Analytic Hessian + ----------------------- - convergence iter energy DeltaE RMS-Dens Diis-err time - ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.3082408039 -8.28D+02 5.46D-07 2.08D-10 6.8 - Grid integrated density: 69.999985865508 - Requested integration accuracy: 0.10E-13 - d= 0,ls=0.0,diis 2 -382.3082408038 5.26D-11 3.56D-07 5.33D-10 7.9 + Basis "ao basis" -> "ao basis" (cartesian) + ----- + C (Carbon) + ---------- + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 7.16168370E+01 0.154329 + 1 S 1.30450960E+01 0.535328 + 1 S 3.53051220E+00 0.444635 + 2 S 2.94124940E+00 -0.099967 + 2 S 6.83483100E-01 0.399513 + 2 S 2.22289900E-01 0.700115 - Total DFT energy = -382.308240803802 - One electron energy = -1400.644873211701 - Coulomb energy = 630.242523599853 - Exchange-Corr. energy = -57.842903359400 - Nuclear repulsion energy = 445.937012167446 + 3 P 2.94124940E+00 0.155916 + 3 P 6.83483100E-01 0.607684 + 3 P 2.22289900E-01 0.391957 - Numeric. integr. density = 69.999985865508 + H (Hydrogen) + ------------ + Exponent Coefficients + -------------- --------------------------------------------------------- + 1 S 3.42525091E+00 0.154329 + 1 S 6.23913730E-01 0.535328 + 1 S 1.68855400E-01 0.444635 - Total iterative time = 2.8s - - DFT Final Molecular Orbital Analysis - ------------------------------------ - - Vector 1 Occ=2.000000D+00 E=-1.002023D+01 - MO Center= 1.9D-08, 1.1D-07, -4.2D-15, r^2= 2.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 1 0.699302 1 C s 6 -0.699302 2 C s - 2 0.031561 1 C s 7 -0.031561 2 C s - 35 0.027002 11 C s 40 -0.027002 12 C s - - Vector 2 Occ=2.000000D+00 E=-1.002018D+01 - MO Center= -1.9D-08, -1.1D-07, -3.4D-15, r^2= 2.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 1 0.699299 1 C s 6 0.699299 2 C s - 2 0.031353 1 C s 7 0.031353 2 C s - 35 -0.027366 11 C s 40 -0.027366 12 C s - - Vector 3 Occ=2.000000D+00 E=-1.000794D+01 - MO Center= 3.5D-07, 1.9D-06, -3.5D-14, r^2= 8.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 35 0.699780 11 C s 40 -0.699781 12 C s - 36 0.030780 11 C s 41 -0.030780 12 C s - 1 -0.027460 1 C s 6 0.027460 2 C s - - Vector 4 Occ=2.000000D+00 E=-1.000794D+01 - MO Center= -3.5D-07, -1.9D-06, -3.7D-14, r^2= 8.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 35 0.699696 11 C s 40 0.699695 12 C s - 36 0.030762 11 C s 41 0.030762 12 C s - 1 0.027691 1 C s 6 0.027692 2 C s - - Vector 5 Occ=2.000000D+00 E=-1.000689D+01 - MO Center= -5.8D-06, 1.8D-06, 7.8D-15, r^2= 2.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 21 0.543308 5 C s 26 0.543310 6 C s - 11 -0.441358 3 C s 16 -0.441360 4 C s - 22 0.028051 5 C s 27 0.028051 6 C s - - Vector 6 Occ=2.000000D+00 E=-1.000689D+01 - MO Center= 5.8D-06, -1.8D-06, 5.1D-15, r^2= 2.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 21 0.552224 5 C s 26 -0.552221 6 C s - 11 -0.429067 3 C s 16 0.429064 4 C s - 1 -0.028720 1 C s 6 0.028720 2 C s - 22 0.028535 5 C s 27 -0.028535 6 C s - - Vector 7 Occ=2.000000D+00 E=-1.000624D+01 - MO Center= -7.8D-08, 2.0D-09, 6.4D-15, r^2= 2.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 11 0.553203 3 C s 16 -0.553203 4 C s - 21 0.430367 5 C s 26 -0.430367 6 C s - - Vector 8 Occ=2.000000D+00 E=-1.000610D+01 - MO Center= 7.7D-08, -4.0D-09, 8.9D-15, r^2= 2.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 11 0.543420 3 C s 16 0.543420 4 C s - 21 0.441595 5 C s 26 0.441595 6 C s - 1 0.029480 1 C s 6 0.029480 2 C s - - Vector 9 Occ=2.000000D+00 E=-9.992162D+00 - MO Center= -6.0D-06, 6.4D-05, -9.0D-14, r^2= 1.5D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 47 0.700473 15 C s 52 -0.700485 16 C s - 48 0.030860 15 C s 53 -0.030860 16 C s - - Vector 10 Occ=2.000000D+00 E=-9.992162D+00 - MO Center= 6.0D-06, -6.4D-05, -9.1D-14, r^2= 1.5D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 47 0.700484 15 C s 52 0.700473 16 C s - 48 0.030860 15 C s 53 0.030860 16 C s - - Vector 11 Occ=2.000000D+00 E=-8.094671D-01 - MO Center= -1.7D-10, -5.3D-10, -9.0D-11, r^2= 3.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.274701 1 C s 7 0.274701 2 C s - 12 0.247019 3 C s 17 0.247019 4 C s - 22 0.246686 5 C s 27 0.246686 6 C s - 36 0.127810 11 C s 41 0.127810 12 C s - 1 -0.107859 1 C s 6 -0.107859 2 C s - - Vector 12 Occ=2.000000D+00 E=-7.539366D-01 - MO Center= 2.0D-10, 2.8D-09, 1.2D-10, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 -0.297174 11 C s 41 0.297174 12 C s - 2 0.273783 1 C s 7 -0.273783 2 C s - 48 -0.209312 15 C s 53 0.209312 16 C s - 35 0.113819 11 C s 40 -0.113819 12 C s - 22 -0.112548 5 C s 27 0.112548 6 C s - - Vector 13 Occ=2.000000D+00 E=-7.178637D-01 - MO Center= 7.5D-10, -2.4D-09, 1.3D-10, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.314820 11 C s 41 0.314820 12 C s - 48 0.309763 15 C s 53 0.309763 16 C s - 12 -0.121459 3 C s 17 -0.121459 4 C s - 35 -0.119240 11 C s 40 -0.119240 12 C s - 47 -0.117463 15 C s 52 -0.117463 16 C s - - Vector 14 Occ=2.000000D+00 E=-6.999242D-01 - MO Center= -8.8D-10, -2.4D-10, -1.9D-11, r^2= 3.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.357138 3 C s 17 -0.357138 4 C s - 22 0.323899 5 C s 27 -0.323899 6 C s - 11 -0.132325 3 C s 16 0.132325 4 C s - 3 0.124984 1 C px 8 0.124984 2 C px - 21 -0.120091 5 C s 26 0.120091 6 C s - - Vector 15 Occ=2.000000D+00 E=-6.673156D-01 - MO Center= -7.1D-11, 1.5D-09, -1.4D-10, r^2= 9.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.299502 15 C s 53 -0.299502 16 C s - 2 0.274067 1 C s 7 -0.274067 2 C s - 22 -0.202290 5 C s 27 0.202290 6 C s - 36 0.136845 11 C s 41 -0.136845 12 C s - 38 -0.129055 11 C py 43 -0.129055 12 C py - - Vector 16 Occ=2.000000D+00 E=-5.885104D-01 - MO Center= 1.5D-10, -1.6D-09, 2.1D-11, r^2= 8.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.241409 15 C s 53 0.241409 16 C s - 22 0.233813 5 C s 27 0.233813 6 C s - 2 -0.206376 1 C s 7 -0.206376 2 C s - 14 -0.160008 3 C py 19 0.160008 4 C py - 36 -0.159610 11 C s 41 -0.159610 12 C s - - Vector 17 Occ=2.000000D+00 E=-5.591525D-01 - MO Center= -1.8D-10, -1.1D-09, -7.6D-11, r^2= 5.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.326032 3 C s 17 0.326032 4 C s - 3 0.184863 1 C px 8 -0.184863 2 C px - 22 -0.170746 5 C s 24 0.170441 5 C py - 27 -0.170746 6 C s 29 -0.170441 6 C py - 31 0.169237 7 H s 32 0.169237 8 H s - - Vector 18 Occ=2.000000D+00 E=-5.314221D-01 - MO Center= -9.9D-12, -1.9D-09, 5.9D-11, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.302764 11 C s 41 -0.302764 12 C s - 48 -0.249169 15 C s 53 0.249169 16 C s - 45 0.170519 13 H s 46 -0.170519 14 H s - 57 -0.160625 17 H s 58 0.160625 18 H s - 12 0.154466 3 C s 17 -0.154466 4 C s - - Vector 19 Occ=2.000000D+00 E=-5.099381D-01 - MO Center= 1.0D-10, 3.8D-09, -4.6D-12, r^2= 7.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 0.201892 5 C px 28 -0.201892 6 C px - 13 0.184492 3 C px 18 -0.184492 4 C px - 36 0.180760 11 C s 41 0.180760 12 C s - 33 0.169278 9 H s 34 0.169278 10 H s - 22 0.166026 5 C s 27 0.166026 6 C s - - Vector 20 Occ=2.000000D+00 E=-4.576009D-01 - MO Center= -3.0D-10, 5.6D-10, -5.9D-12, r^2= 9.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 49 0.212725 15 C px 54 -0.212725 16 C px - 38 0.184649 11 C py 43 -0.184649 12 C py - 57 0.179107 17 H s 58 0.179107 18 H s - 45 -0.153096 13 H s 46 -0.153096 14 H s - 14 0.141384 3 C py 19 -0.141384 4 C py - - Vector 21 Occ=2.000000D+00 E=-4.391986D-01 - MO Center= 2.7D-10, 2.4D-10, 1.1D-12, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.219236 11 C px 42 0.219236 12 C px - 50 0.210287 15 C py 55 0.210287 16 C py - 14 0.184962 3 C py 19 0.184962 4 C py - 59 -0.178123 19 H s 60 0.178123 20 H s - 45 -0.155497 13 H s 46 0.155497 14 H s - - Vector 22 Occ=2.000000D+00 E=-4.110193D-01 - MO Center= 1.5D-09, 3.9D-09, -2.0D-12, r^2= 6.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.235304 1 C s 7 -0.235304 2 C s - 33 0.230453 9 H s 34 -0.230453 10 H s - 31 -0.226662 7 H s 32 0.226662 8 H s - 13 -0.222271 3 C px 18 -0.222271 4 C px - 24 -0.177966 5 C py 29 -0.177966 6 C py - - Vector 23 Occ=2.000000D+00 E=-3.976932D-01 - MO Center= -2.8D-10, 2.6D-09, 3.6D-12, r^2= 8.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 0.251235 5 C px 28 0.251235 6 C px - 49 0.250511 15 C px 54 0.250511 16 C px - 3 -0.220817 1 C px 8 -0.220817 2 C px - 57 0.215415 17 H s 58 -0.215415 18 H s - 38 0.181487 11 C py 43 0.181487 12 C py - - Vector 24 Occ=2.000000D+00 E=-3.959394D-01 - MO Center= -6.5D-10, -7.0D-09, 9.4D-12, r^2= 1.5D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 50 0.338996 15 C py 55 -0.338996 16 C py - 59 -0.262591 19 H s 60 -0.262591 20 H s - 37 0.251499 11 C px 42 -0.251499 12 C px - 45 -0.145068 13 H s 46 -0.145068 14 H s - 24 0.136710 5 C py 29 -0.136710 6 C py - - Vector 25 Occ=2.000000D+00 E=-3.744313D-01 - MO Center= -1.0D-09, 8.7D-10, -1.2D-12, r^2= 4.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 13 0.307580 3 C px 18 0.307580 4 C px - 31 0.252259 7 H s 32 -0.252259 8 H s - 24 -0.226090 5 C py 29 -0.226090 6 C py - 33 0.218194 9 H s 34 -0.218194 10 H s - 23 0.188073 5 C px 28 0.188073 6 C px - - Vector 26 Occ=2.000000D+00 E=-3.509384D-01 - MO Center= -1.1D-09, -4.2D-09, 1.2D-11, r^2= 9.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 50 -0.245675 15 C py 55 -0.245675 16 C py - 14 0.224348 3 C py 19 0.224348 4 C py - 37 -0.201681 11 C px 42 -0.201680 12 C px - 24 -0.193259 5 C py 29 -0.193259 6 C py - 38 0.187741 11 C py 43 0.187741 12 C py - - Vector 27 Occ=2.000000D+00 E=-3.470162D-01 - MO Center= 1.6D-09, 3.9D-09, -1.8D-11, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 49 0.295191 15 C px 54 -0.295191 16 C px - 57 0.268015 17 H s 58 0.268015 18 H s - 37 -0.208869 11 C px 42 0.208869 12 C px - 45 0.200225 13 H s 46 0.200225 14 H s - 31 -0.156469 7 H s 32 -0.156469 8 H s - - Vector 28 Occ=2.000000D+00 E=-3.244714D-01 - MO Center= -2.1D-11, 5.2D-11, 1.4D-10, r^2= 3.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 5 0.337606 1 C pz 10 0.337606 2 C pz - 15 0.297981 3 C pz 20 0.297981 4 C pz - 25 0.297167 5 C pz 30 0.297167 6 C pz - 39 0.173950 11 C pz 44 0.173950 12 C pz - 51 0.092443 15 C pz 56 0.092443 16 C pz - - Vector 29 Occ=2.000000D+00 E=-3.110655D-01 - MO Center= 2.9D-10, -2.7D-09, -2.2D-12, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.259097 13 H s 46 -0.259097 14 H s - 4 0.241971 1 C py 9 0.241971 2 C py - 57 0.231032 17 H s 58 -0.231032 18 H s - 37 -0.217246 11 C px 42 -0.217246 12 C px - 59 -0.212338 19 H s 60 0.212338 20 H s - - Vector 30 Occ=2.000000D+00 E=-2.929849D-01 - MO Center= 7.0D-11, -1.0D-09, -7.9D-12, r^2= 6.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 14 -0.278189 3 C py 19 0.278189 4 C py - 4 0.268404 1 C py 9 -0.268404 2 C py - 38 0.248152 11 C py 43 -0.248152 12 C py - 33 -0.240398 9 H s 34 -0.240398 10 H s - 24 0.234457 5 C py 29 -0.234457 6 C py - - Vector 31 Occ=2.000000D+00 E=-2.874973D-01 - MO Center= -1.5D-10, 2.6D-09, 7.6D-12, r^2= 6.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 3 0.295868 1 C px 8 -0.295868 2 C px - 23 0.280608 5 C px 28 -0.280608 6 C px - 31 -0.258071 7 H s 32 -0.258071 8 H s - 13 -0.222128 3 C px 18 0.222128 4 C px - 45 -0.182731 13 H s 46 -0.182731 14 H s - - Vector 32 Occ=2.000000D+00 E=-2.634576D-01 - MO Center= -1.1D-11, -6.5D-11, -9.3D-11, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 -0.376486 11 C pz 44 0.376486 12 C pz - 5 0.348958 1 C pz 10 -0.348958 2 C pz - 51 -0.271400 15 C pz 56 0.271400 16 C pz - 15 0.131651 3 C pz 20 -0.131651 4 C pz - 25 -0.132099 5 C pz 30 0.132099 6 C pz - - Vector 33 Occ=2.000000D+00 E=-2.123388D-01 - MO Center= -1.5D-10, 3.3D-11, -1.2D-10, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 0.417956 15 C pz 56 0.417956 16 C pz - 39 0.413784 11 C pz 44 0.413784 12 C pz - 15 -0.179208 3 C pz 20 -0.179208 4 C pz - 25 -0.176633 5 C pz 30 -0.176633 6 C pz - - Vector 34 Occ=2.000000D+00 E=-1.951700D-01 - MO Center= 1.8D-10, -1.5D-11, -1.5D-11, r^2= 2.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 15 0.463633 3 C pz 20 -0.463633 4 C pz - 25 0.457529 5 C pz 30 -0.457529 6 C pz - - Vector 35 Occ=2.000000D+00 E=-1.529972D-01 - MO Center= -4.7D-12, 2.6D-11, 7.1D-11, r^2= 8.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 0.397365 15 C pz 56 -0.397365 16 C pz - 5 0.387557 1 C pz 10 -0.387557 2 C pz - 25 -0.230760 5 C pz 30 0.230760 6 C pz - 39 0.223675 11 C pz 44 -0.223675 12 C pz - 15 0.215057 3 C pz 20 -0.215057 4 C pz - - Vector 36 Occ=0.000000D+00 E= 3.750873D-02 - MO Center= 1.3D-12, 3.5D-11, 2.2D-11, r^2= 8.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 -0.449620 15 C pz 56 -0.449620 16 C pz - 5 0.442666 1 C pz 10 0.442666 2 C pz - 25 -0.277539 5 C pz 30 -0.277539 6 C pz - 39 0.256136 11 C pz 44 0.256136 12 C pz - 15 -0.232275 3 C pz 20 -0.232275 4 C pz - - Vector 37 Occ=0.000000D+00 E= 9.011547D-02 - MO Center= -8.3D-11, 5.6D-12, 6.3D-11, r^2= 2.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 15 0.582686 3 C pz 20 0.582686 4 C pz - 25 -0.553243 5 C pz 30 -0.553243 6 C pz - 5 -0.031919 1 C pz 10 -0.031919 2 C pz - - Vector 38 Occ=0.000000D+00 E= 1.107255D-01 - MO Center= 6.9D-11, -1.1D-10, 9.7D-11, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 0.522164 11 C pz 44 -0.522164 12 C pz - 51 -0.523108 15 C pz 56 0.523108 16 C pz - 15 0.240689 3 C pz 20 -0.240689 4 C pz - 25 -0.232245 5 C pz 30 0.232245 6 C pz - - Vector 39 Occ=0.000000D+00 E= 1.821996D-01 - MO Center= 7.8D-12, 6.4D-11, -5.4D-12, r^2= 7.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 -0.529128 11 C pz 44 -0.529128 12 C pz - 5 0.497222 1 C pz 10 0.497222 2 C pz - 51 0.379693 15 C pz 56 0.379693 16 C pz - 25 -0.199205 5 C pz 30 -0.199205 6 C pz - 15 -0.166737 3 C pz 20 -0.166737 4 C pz - - Vector 40 Occ=0.000000D+00 E= 2.723004D-01 - MO Center= 1.8D-11, -2.6D-11, -1.4D-10, r^2= 3.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 5 0.543478 1 C pz 10 -0.543478 2 C pz - 25 0.466880 5 C pz 30 -0.466880 6 C pz - 15 -0.464183 3 C pz 20 0.464183 4 C pz - 39 0.287728 11 C pz 44 -0.287728 12 C pz - 51 -0.156152 15 C pz 56 0.156152 16 C pz - - Vector 41 Occ=0.000000D+00 E= 3.324833D-01 - MO Center= 6.7D-09, 1.5D-08, -9.1D-12, r^2= 8.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 33 -0.423784 9 H s 34 -0.423784 10 H s - 31 -0.413784 7 H s 32 -0.413784 8 H s - 2 0.401574 1 C s 7 0.401574 2 C s - 59 -0.358537 19 H s 60 -0.358537 20 H s - 38 -0.338108 11 C py 43 0.338108 12 C py - - Vector 42 Occ=0.000000D+00 E= 3.406433D-01 - MO Center= -6.9D-09, -9.6D-09, -3.6D-11, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.433831 13 H s 46 -0.433831 14 H s - 13 0.355439 3 C px 18 0.355439 4 C px - 37 0.344563 11 C px 42 0.344563 12 C px - 31 -0.321893 7 H s 32 0.321893 8 H s - 57 -0.323128 17 H s 58 0.323128 18 H s - - Vector 43 Occ=0.000000D+00 E= 3.795209D-01 - MO Center= -1.9D-08, 1.5D-09, 9.0D-11, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.546134 11 C s 41 -0.546134 12 C s - 4 0.461534 1 C py 9 0.461534 2 C py - 33 0.405557 9 H s 34 -0.405557 10 H s - 59 0.351677 19 H s 60 -0.351677 20 H s - 2 0.338392 1 C s 7 -0.338392 2 C s - - Vector 44 Occ=0.000000D+00 E= 3.812888D-01 - MO Center= 1.7D-08, -1.4D-08, 3.3D-11, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.579619 13 H s 46 0.579619 14 H s - 12 0.393539 3 C s 17 0.393539 4 C s - 57 -0.391421 17 H s 58 -0.391421 18 H s - 36 -0.382180 11 C s 41 -0.382180 12 C s - 37 0.338377 11 C px 42 -0.338377 12 C px - - Vector 45 Occ=0.000000D+00 E= 4.103421D-01 - MO Center= 1.8D-08, -7.7D-08, -3.0D-10, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.647350 15 C s 53 0.647350 16 C s - 22 0.620094 5 C s 27 0.620094 6 C s - 57 -0.513323 17 H s 58 -0.513323 18 H s - 12 -0.443642 3 C s 17 -0.443642 4 C s - 59 -0.320781 19 H s 60 -0.320781 20 H s - - Vector 46 Occ=0.000000D+00 E= 4.112339D-01 - MO Center= -2.2D-08, 6.9D-08, -1.1D-10, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 22 0.613164 5 C s 27 -0.613164 6 C s - 48 0.539737 15 C s 53 -0.539737 16 C s - 2 0.476215 1 C s 7 -0.476215 2 C s - 57 -0.447809 17 H s 58 0.447809 18 H s - 12 -0.440673 3 C s 17 0.440673 4 C s - - Vector 47 Occ=0.000000D+00 E= 4.258004D-01 - MO Center= 8.3D-09, 1.7D-08, 1.5D-12, r^2= 9.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 31 0.603111 7 H s 32 -0.603111 8 H s - 36 -0.446799 11 C s 41 0.446799 12 C s - 45 0.437149 13 H s 46 -0.437149 14 H s - 12 -0.368675 3 C s 17 0.368675 4 C s - 59 0.337699 19 H s 60 -0.337699 20 H s - - Vector 48 Occ=0.000000D+00 E= 4.393584D-01 - MO Center= -6.4D-10, -2.0D-08, -3.8D-11, r^2= 7.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.782308 1 C s 7 0.782308 2 C s - 36 -0.556804 11 C s 41 -0.556804 12 C s - 12 -0.499686 3 C s 17 -0.499686 4 C s - 22 -0.411541 5 C s 27 -0.411541 6 C s - 48 0.409876 15 C s 53 0.409876 16 C s - - Vector 49 Occ=0.000000D+00 E= 4.537211D-01 - MO Center= 7.8D-10, 2.2D-08, 1.3D-10, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.706735 15 C s 53 -0.706735 16 C s - 57 -0.525560 17 H s 58 0.525560 18 H s - 33 0.477104 9 H s 34 -0.477104 10 H s - 36 -0.428989 11 C s 41 0.428989 12 C s - 22 -0.407152 5 C s 27 0.407152 6 C s - - Vector 50 Occ=0.000000D+00 E= 4.783350D-01 - MO Center= -2.4D-09, 1.6D-09, 2.4D-10, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.706194 3 C s 17 0.706194 4 C s - 22 -0.619412 5 C s 27 -0.619412 6 C s - 59 -0.475199 19 H s 60 -0.475199 20 H s - 48 0.415063 15 C s 53 0.415063 16 C s - 50 -0.382623 15 C py 55 0.382623 16 C py - - Vector 51 Occ=0.000000D+00 E= 5.255612D-01 - MO Center= 2.3D-10, 2.1D-09, -1.2D-11, r^2= 6.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 4 0.601873 1 C py 9 -0.601873 2 C py - 36 -0.491653 11 C s 41 -0.491653 12 C s - 13 -0.452509 3 C px 18 0.452509 4 C px - 2 -0.448713 1 C s 7 -0.448713 2 C s - 49 -0.342029 15 C px 54 0.342029 16 C px - - Vector 52 Occ=0.000000D+00 E= 5.463504D-01 - MO Center= -1.2D-10, -5.6D-09, 2.9D-11, r^2= 7.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.647789 3 C s 17 -0.647789 4 C s - 3 -0.560729 1 C px 8 -0.560729 2 C px - 50 0.483447 15 C py 55 0.483447 16 C py - 24 -0.478220 5 C py 29 -0.478220 6 C py - 59 0.356013 19 H s 60 -0.356013 20 H s - - Vector 53 Occ=0.000000D+00 E= 5.764346D-01 - MO Center= 4.5D-10, -9.8D-10, 3.1D-11, r^2= 5.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 13 0.537118 3 C px 18 -0.537118 4 C px - 23 -0.522145 5 C px 28 0.522145 6 C px - 33 0.519107 9 H s 34 0.519107 10 H s - 31 -0.448309 7 H s 32 -0.448309 8 H s - 24 0.400195 5 C py 29 -0.400195 6 C py - - Vector 54 Occ=0.000000D+00 E= 5.984358D-01 - MO Center= 5.7D-11, 1.4D-10, -2.5D-11, r^2= 4.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 14 0.723028 3 C py 19 0.723028 4 C py - 22 0.599922 5 C s 27 -0.599922 6 C s - 36 -0.415406 11 C s 41 0.415406 12 C s - 2 -0.405911 1 C s 7 0.405911 2 C s - 24 0.394228 5 C py 29 0.394228 6 C py - - Vector 55 Occ=0.000000D+00 E= 6.248962D-01 - MO Center= 5.0D-10, 5.1D-09, 1.8D-11, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.608535 1 C s 7 -0.608535 2 C s - 49 -0.528898 15 C px 54 -0.528898 16 C px - 38 0.480663 11 C py 43 0.480663 12 C py - 23 -0.365994 5 C px 28 -0.365994 6 C px - 57 0.363294 17 H s 58 -0.363294 18 H s - - Vector 56 Occ=0.000000D+00 E= 6.398312D-01 - MO Center= -7.0D-10, -8.9D-09, -5.4D-12, r^2= 9.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.549270 11 C px 42 -0.549270 12 C px - 50 -0.534309 15 C py 55 0.534309 16 C py - 14 0.383476 3 C py 19 -0.383476 4 C py - 4 -0.364572 1 C py 9 0.364572 2 C py - 59 -0.330755 19 H s 60 -0.330755 20 H s - - Vector 57 Occ=0.000000D+00 E= 6.828344D-01 - MO Center= 3.7D-11, 3.2D-09, -1.5D-11, r^2= 9.3D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 38 0.663094 11 C py 43 -0.663094 12 C py - 49 -0.580417 15 C px 54 0.580417 16 C px - 24 -0.449228 5 C py 29 0.449228 6 C py - 14 -0.392080 3 C py 19 0.392080 4 C py - 4 -0.381673 1 C py 9 0.381673 2 C py - - Vector 58 Occ=0.000000D+00 E= 7.173545D-01 - MO Center= -3.3D-10, -1.8D-09, -6.3D-11, r^2= 9.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.608024 11 C px 42 0.608024 12 C px - 48 -0.538014 15 C s 50 -0.540485 15 C py - 53 0.538014 16 C s 55 -0.540485 16 C py - 36 0.466539 11 C s 38 -0.464864 11 C py - 41 -0.466539 12 C s 43 -0.464864 12 C py - - Vector 59 Occ=0.000000D+00 E= 7.790397D-01 - MO Center= 1.6D-10, -2.0D-10, 1.5D-11, r^2= 5.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 3 0.702436 1 C px 8 -0.702436 2 C px - 14 -0.534060 3 C py 19 0.534060 4 C py - 23 -0.435990 5 C px 28 0.435990 6 C px - 37 0.429832 11 C px 42 -0.429832 12 C px - 24 -0.411041 5 C py 29 0.411041 6 C py - - Vector 60 Occ=0.000000D+00 E= 7.942614D-01 - MO Center= 1.6D-10, 1.3D-09, 2.3D-11, r^2= 3.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 4 0.657694 1 C py 9 0.657694 2 C py - 13 -0.568325 3 C px 18 -0.568325 4 C px - 23 0.496523 5 C px 28 0.496523 6 C px - 22 -0.413797 5 C s 27 0.413797 6 C s - 24 -0.395894 5 C py 29 -0.395894 6 C py - + Summary of "ao basis" -> "ao basis" (cartesian) + ------------------------------------------------------------------------------ + Tag Description Shells Functions and Types + ---------------- ------------------------------ ------ --------------------- + C sto-3g 3 5 2s1p + H sto-3g 1 1 1s - center of mass - -------------- - x = 0.00000000 y = 0.00000000 z = 0.00000000 - moments of inertia (a.u.) - ------------------ - 2631.731379210398 -0.000000000000 0.000000000000 - -0.000000000000 390.819001468288 0.000000000000 - 0.000000000000 0.000000000000 3022.550380678686 - - Multipole analysis of the density - --------------------------------- - - L x y z total alpha beta nuclear - - - - - ----- ----- ---- ------- - 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 - - 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 - 1 0 1 0 0.000000 0.000000 0.000000 0.000000 - 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - - 2 2 0 0 -37.347203 -141.071538 -141.071538 244.795872 - 2 1 1 0 0.066044 2.848536 2.848536 -5.631027 - 2 1 0 1 -0.000000 -0.000000 -0.000000 0.000000 - 2 0 2 0 -37.713749 -767.338525 -767.338525 1496.963300 - 2 0 1 1 -0.000000 -0.000000 -0.000000 0.000000 - 2 0 0 2 -43.587344 -21.793672 -21.793672 0.000000 - + Resetting Diis HESSIAN: the one electron contributions are done in 0.3s - HESSIAN: 2-el 1st deriv. term done in 2.3s + HESSIAN: 2-el 1st deriv. term done in 1.7s - HESSIAN: 2-el 2nd deriv. term done in 3.1s + HESSIAN: 2-el 2nd deriv. term done in 5.5s stpr_wrt_fd_from_sq: overwrite of existing file:./dvb.hess stpr_wrt_fd_dipole: overwrite of existing file./dvb.fd_ddipole - HESSIAN: the two electron contributions are done in 25.3s + HESSIAN: the two electron contributions are done in 38.4s NWChem CPHF Module ------------------ - - + + scftype = RHF nclosed = 35 nopen = 0 @@ -3048,9 +434,9 @@ Divinylbenzene in STO-3G basis set max iterations = 50 max subspace = 600 - Grid integrated density: 69.999985865503 + Grid integrated density: 69.999985865524 Requested integration accuracy: 0.10E-13 - SCF residual: 4.228076010274929E-006 + SCF residual: 9.8629681555313482E-005 Iterative solution of linear equations @@ -3059,15 +445,15 @@ Iterative solution of linear equations Maximum subspace 600 Iterations 50 Convergence 1.0D-04 - Start time 79.1 + Start time 105.2 iter nsub residual time ---- ------ -------- --------- - 1 60 1.02D-01 117.1 - 2 120 3.14D-02 155.2 - 3 180 3.42D-04 193.1 - 4 240 9.07D-06 231.0 + 1 60 1.02D-01 155.4 + 2 120 3.15D-02 205.2 + 3 180 3.68D-04 255.1 + 4 240 4.12D-05 304.9 HESSIAN: the CPHF contributions are done stpr_wrt_fd_from_sq: overwrite of existing file:./dvb.hess stpr_wrt_fd_dipole: overwrite of existing file./dvb.fd_ddipole @@ -3077,203 +463,203 @@ Iterative solution of linear equations X vector of derivative dipole (au) [debye/angstrom] - d_dipole_x/ = -0.1510 [ -0.7253] - d_dipole_x/ = -0.0021 [ -0.0103] + d_dipole_x/ = -0.1509 [ -0.7249] + d_dipole_x/ = -0.0022 [ -0.0108] d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = -0.1510 [ -0.7253] - d_dipole_x/ = -0.0021 [ -0.0103] - d_dipole_x/ = 0.0000 [ 0.0000] - d_dipole_x/ = 0.0275 [ 0.1321] - d_dipole_x/ = 0.0823 [ 0.3954] + d_dipole_x/ = -0.1509 [ -0.7249] + d_dipole_x/ = -0.0022 [ -0.0108] + d_dipole_x/ = -0.0000 [ -0.0000] + d_dipole_x/ = 0.0277 [ 0.1332] + d_dipole_x/ = 0.0824 [ 0.3956] d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = 0.0275 [ 0.1321] - d_dipole_x/ = 0.0823 [ 0.3954] - d_dipole_x/ = 0.0000 [ 0.0000] - d_dipole_x/ = -0.0413 [ -0.1984] + d_dipole_x/ = 0.0277 [ 0.1332] + d_dipole_x/ = 0.0824 [ 0.3956] + d_dipole_x/ = -0.0000 [ -0.0000] + d_dipole_x/ = -0.0413 [ -0.1985] d_dipole_x/ = -0.0967 [ -0.4647] - d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = -0.0413 [ -0.1984] + d_dipole_x/ = 0.0000 [ 0.0000] + d_dipole_x/ = -0.0413 [ -0.1985] d_dipole_x/ = -0.0967 [ -0.4647] d_dipole_x/ = 0.0000 [ 0.0000] - d_dipole_x/ = 0.0609 [ 0.2926] - d_dipole_x/ = -0.0124 [ -0.0597] + d_dipole_x/ = 0.0607 [ 0.2916] + d_dipole_x/ = -0.0125 [ -0.0602] d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = 0.0609 [ 0.2926] - d_dipole_x/ = -0.0124 [ -0.0597] - d_dipole_x/ = 0.0000 [ 0.0000] - d_dipole_x/ = 0.0625 [ 0.3002] - d_dipole_x/ = 0.0105 [ 0.0506] - d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = 0.0625 [ 0.3002] - d_dipole_x/ = 0.0105 [ 0.0506] + d_dipole_x/ = 0.0607 [ 0.2916] + d_dipole_x/ = -0.0125 [ -0.0602] + d_dipole_x/ = -0.0000 [ -0.0000] + d_dipole_x/ = 0.0624 [ 0.2998] + d_dipole_x/ = 0.0106 [ 0.0509] + d_dipole_x/ = 0.0000 [ 0.0000] + d_dipole_x/ = 0.0624 [ 0.2998] + d_dipole_x/ = 0.0106 [ 0.0509] d_dipole_x/ = 0.0000 [ 0.0000] - d_dipole_x/ = -0.0041 [ -0.0199] - d_dipole_x/ = 0.0182 [ 0.0875] - d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = -0.0041 [ -0.0199] - d_dipole_x/ = 0.0182 [ 0.0875] - d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = 0.0199 [ 0.0955] - d_dipole_x/ = 0.0196 [ 0.0940] + d_dipole_x/ = -0.0040 [ -0.0191] + d_dipole_x/ = 0.0183 [ 0.0880] + d_dipole_x/ = 0.0000 [ 0.0000] + d_dipole_x/ = -0.0040 [ -0.0191] + d_dipole_x/ = 0.0183 [ 0.0880] + d_dipole_x/ = 0.0000 [ 0.0000] + d_dipole_x/ = 0.0198 [ 0.0949] + d_dipole_x/ = 0.0195 [ 0.0939] d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = 0.0199 [ 0.0955] - d_dipole_x/ = 0.0196 [ 0.0940] - d_dipole_x/ = 0.0000 [ 0.0000] - d_dipole_x/ = -0.0385 [ -0.1850] - d_dipole_x/ = 0.0441 [ 0.2116] + d_dipole_x/ = 0.0198 [ 0.0949] + d_dipole_x/ = 0.0195 [ 0.0939] + d_dipole_x/ = -0.0000 [ -0.0000] + d_dipole_x/ = -0.0385 [ -0.1849] + d_dipole_x/ = 0.0441 [ 0.2117] d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = -0.0385 [ -0.1850] - d_dipole_x/ = 0.0441 [ 0.2116] - d_dipole_x/ = 0.0000 [ 0.0000] - d_dipole_x/ = 0.0371 [ 0.1782] + d_dipole_x/ = -0.0385 [ -0.1849] + d_dipole_x/ = 0.0441 [ 0.2117] + d_dipole_x/ = -0.0000 [ -0.0000] + d_dipole_x/ = 0.0371 [ 0.1780] d_dipole_x/ = -0.0203 [ -0.0974] d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = 0.0371 [ 0.1782] + d_dipole_x/ = 0.0371 [ 0.1780] d_dipole_x/ = -0.0203 [ -0.0974] - d_dipole_x/ = 0.0000 [ 0.0000] - d_dipole_x/ = 0.0271 [ 0.1300] - d_dipole_x/ = -0.0431 [ -0.2070] + d_dipole_x/ = -0.0000 [ -0.0000] + d_dipole_x/ = 0.0271 [ 0.1299] + d_dipole_x/ = -0.0431 [ -0.2071] d_dipole_x/ = 0.0000 [ 0.0000] - d_dipole_x/ = 0.0271 [ 0.1300] - d_dipole_x/ = -0.0431 [ -0.2070] + d_dipole_x/ = 0.0271 [ 0.1299] + d_dipole_x/ = -0.0431 [ -0.2071] d_dipole_x/ = 0.0000 [ 0.0000] Y vector of derivative dipole (au) [debye/angstrom] - d_dipole_y/ = -0.0718 [ -0.3450] - d_dipole_y/ = 0.1874 [ 0.8999] + d_dipole_y/ = -0.0720 [ -0.3459] + d_dipole_y/ = 0.1879 [ 0.9024] d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = -0.0718 [ -0.3450] - d_dipole_y/ = 0.1874 [ 0.8999] - d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = 0.0751 [ 0.3606] - d_dipole_y/ = -0.1833 [ -0.8804] + d_dipole_y/ = -0.0720 [ -0.3459] + d_dipole_y/ = 0.1879 [ 0.9024] + d_dipole_y/ = 0.0000 [ 0.0000] + d_dipole_y/ = 0.0748 [ 0.3594] + d_dipole_y/ = -0.1833 [ -0.8805] d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = 0.0751 [ 0.3606] - d_dipole_y/ = -0.1833 [ -0.8804] - d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = -0.1113 [ -0.5348] - d_dipole_y/ = -0.1166 [ -0.5600] - d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = -0.1113 [ -0.5348] - d_dipole_y/ = -0.1166 [ -0.5600] + d_dipole_y/ = 0.0748 [ 0.3594] + d_dipole_y/ = -0.1833 [ -0.8805] + d_dipole_y/ = 0.0000 [ 0.0000] + d_dipole_y/ = -0.1109 [ -0.5327] + d_dipole_y/ = -0.1165 [ -0.5596] + d_dipole_y/ = -0.0000 [ -0.0000] + d_dipole_y/ = -0.1109 [ -0.5327] + d_dipole_y/ = -0.1165 [ -0.5596] d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = -0.0187 [ -0.0899] - d_dipole_y/ = 0.0366 [ 0.1759] - d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = -0.0187 [ -0.0899] - d_dipole_y/ = 0.0366 [ 0.1759] + d_dipole_y/ = -0.0187 [ -0.0897] + d_dipole_y/ = 0.0366 [ 0.1756] + d_dipole_y/ = -0.0000 [ -0.0000] + d_dipole_y/ = -0.0187 [ -0.0897] + d_dipole_y/ = 0.0366 [ 0.1756] d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = 0.0101 [ 0.0484] - d_dipole_y/ = 0.0357 [ 0.1716] - d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = 0.0101 [ 0.0484] - d_dipole_y/ = 0.0357 [ 0.1716] - d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = 0.3359 [ 1.6134] - d_dipole_y/ = 0.1972 [ 0.9474] - d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = 0.3359 [ 1.6134] - d_dipole_y/ = 0.1972 [ 0.9474] - d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = -0.0650 [ -0.3123] - d_dipole_y/ = -0.0308 [ -0.1477] - d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = -0.0650 [ -0.3123] - d_dipole_y/ = -0.0308 [ -0.1477] + d_dipole_y/ = 0.0100 [ 0.0480] + d_dipole_y/ = 0.0357 [ 0.1714] + d_dipole_y/ = 0.0000 [ 0.0000] + d_dipole_y/ = 0.0100 [ 0.0480] + d_dipole_y/ = 0.0357 [ 0.1714] + d_dipole_y/ = 0.0000 [ 0.0000] + d_dipole_y/ = 0.3361 [ 1.6142] + d_dipole_y/ = 0.1970 [ 0.9464] + d_dipole_y/ = -0.0000 [ -0.0000] + d_dipole_y/ = 0.3361 [ 1.6142] + d_dipole_y/ = 0.1970 [ 0.9464] + d_dipole_y/ = -0.0000 [ -0.0000] + d_dipole_y/ = -0.0653 [ -0.3139] + d_dipole_y/ = -0.0307 [ -0.1477] + d_dipole_y/ = -0.0000 [ -0.0000] + d_dipole_y/ = -0.0653 [ -0.3139] + d_dipole_y/ = -0.0307 [ -0.1477] d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = -0.0545 [ -0.2616] - d_dipole_y/ = -0.2571 [ -1.2348] + d_dipole_y/ = -0.0540 [ -0.2593] + d_dipole_y/ = -0.2575 [ -1.2368] d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = -0.0545 [ -0.2616] - d_dipole_y/ = -0.2571 [ -1.2348] + d_dipole_y/ = -0.0540 [ -0.2593] + d_dipole_y/ = -0.2575 [ -1.2368] d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = -0.1556 [ -0.7472] + d_dipole_y/ = -0.1558 [ -0.7482] d_dipole_y/ = 0.0151 [ 0.0724] - d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = -0.1556 [ -0.7472] + d_dipole_y/ = 0.0000 [ 0.0000] + d_dipole_y/ = -0.1558 [ -0.7482] d_dipole_y/ = 0.0151 [ 0.0724] d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = 0.0558 [ 0.2682] - d_dipole_y/ = 0.1157 [ 0.5557] - d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = 0.0558 [ 0.2682] - d_dipole_y/ = 0.1157 [ 0.5557] + d_dipole_y/ = 0.0558 [ 0.2681] + d_dipole_y/ = 0.1159 [ 0.5565] + d_dipole_y/ = -0.0000 [ -0.0000] + d_dipole_y/ = 0.0558 [ 0.2681] + d_dipole_y/ = 0.1159 [ 0.5565] d_dipole_y/ = -0.0000 [ -0.0000] Z vector of derivative dipole (au) [debye/angstrom] d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0274 [ 0.1315] + d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = 0.0274 [ 0.1317] d_dipole_z/ = 0.0000 [ 0.0000] d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0274 [ 0.1315] + d_dipole_z/ = 0.0274 [ 0.1317] d_dipole_z/ = 0.0000 [ 0.0000] d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = -0.0909 [ -0.4366] + d_dipole_z/ = -0.0909 [ -0.4367] d_dipole_z/ = 0.0000 [ 0.0000] d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = -0.0909 [ -0.4366] - d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = -0.0909 [ -0.4367] + d_dipole_z/ = -0.0000 [ -0.0000] d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = -0.0830 [ -0.3987] - d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = -0.0831 [ -0.3991] + d_dipole_z/ = 0.0000 [ 0.0000] d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = -0.0830 [ -0.3987] - d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0780 [ 0.3747] + d_dipole_z/ = -0.0831 [ -0.3991] + d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = 0.0780 [ 0.3746] d_dipole_z/ = -0.0000 [ -0.0000] d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0780 [ 0.3747] + d_dipole_z/ = 0.0780 [ 0.3746] d_dipole_z/ = -0.0000 [ -0.0000] d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = 0.0792 [ 0.3802] + d_dipole_z/ = 0.0792 [ 0.3804] d_dipole_z/ = 0.0000 [ 0.0000] d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0792 [ 0.3802] - d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = -0.0790 [ -0.3796] - d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = -0.0790 [ -0.3796] + d_dipole_z/ = 0.0792 [ 0.3804] + d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = -0.0786 [ -0.3777] + d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = -0.0786 [ -0.3777] d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0804 [ 0.3860] - d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = 0.0803 [ 0.3857] + d_dipole_z/ = -0.0000 [ -0.0000] d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = 0.0804 [ 0.3860] - d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = -0.2048 [ -0.9838] + d_dipole_z/ = 0.0803 [ 0.3857] + d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = -0.2053 [ -0.9859] d_dipole_z/ = -0.0000 [ -0.0000] d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = -0.2048 [ -0.9838] - d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = -0.2053 [ -0.9859] + d_dipole_z/ = -0.0000 [ -0.0000] d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = 0.0985 [ 0.4731] - d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = 0.0985 [ 0.4733] + d_dipole_z/ = -0.0000 [ -0.0000] d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0985 [ 0.4731] - d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0944 [ 0.4532] + d_dipole_z/ = 0.0985 [ 0.4733] + d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = 0.0944 [ 0.4536] d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0944 [ 0.4532] + d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = 0.0944 [ 0.4536] HESSIAN: the Hessian is done - - + + Vibrational analysis via the FX method - + See chapter 2 in "Molecular Vibrations" by Wilson, Decius and Cross - + Vib: Default input used - + Nuclear Hessian passed symmetry test - + ---------------------------- Atom information ---------------------------- @@ -3311,236 +697,236 @@ Iterative solution of linear equations 1 2 3 4 5 6 7 8 9 10 ----- ----- ----- ----- ----- - 1 6.04374D+01 - 2 1.45050D-01 5.88028D+01 - 3 -1.98560D-07 9.32378D-08 1.31742D+01 - 4 -7.00922D+00 1.31539D+00 1.25305D-07 6.04374D+01 - 5 1.31539D+00 8.54309D-01 -9.70138D-08 1.45051D-01 5.88028D+01 - 6 -7.48381D-08 1.02361D-07 -7.46919D-01 2.73232D-07 3.04188D-08 1.31742D+01 - 7 -2.21703D+01 1.15478D+01 5.89064D-08 1.76199D+00 -3.07969D+00 7.30546D-08 6.86232D+01 - 8 4.45985D+00 -1.74171D+01 -9.96654D-08 -9.06151D+00 -1.31709D+00 -9.33211D-08 4.62154D+00 6.31124D+01 - 9 -1.22586D-07 1.66312D-07 -5.54021D+00 1.72199D-07 -2.07285D-08 5.76233D-01 3.49001D-08 2.46905D-07 1.17733D+01 - 10 1.76199D+00 -3.07969D+00 -1.00534D-08 -2.21703D+01 1.15478D+01 1.47735D-09 -6.73464D-01 2.26192D+00 -4.92583D-08 6.86232D+01 - 11 -9.06151D+00 -1.31709D+00 8.76935D-08 4.45985D+00 -1.74171D+01 9.90397D-08 2.26193D+00 -6.38051D+00 8.79565D-08 4.62154D+00 - 12 -6.31840D-08 1.56099D-07 5.76233D-01 2.40784D-07 -3.94823D-08 -5.54021D+00 7.18267D-08 2.81560D-07 -5.95426D-01 -8.90806D-08 - 13 5.11189D+00 8.53427D-01 2.02327D-08 -2.64811D+01 -8.05834D+00 5.85967D-09 -1.28547D+01 1.13596D+00 6.29627D-08 -4.97370D+00 - 14 6.70443D+00 -4.60695D+00 1.28864D-07 -1.29249D+00 -1.28898D+01 5.27912D-08 -7.41509D+00 -3.14754D+01 -3.60873D-08 -4.89466D-01 - 15 1.33977D-07 -1.69699D-07 5.86587D-01 -2.62990D-07 2.65080D-09 -5.64467D+00 -6.69978D-08 -3.04940D-07 -5.20435D+00 1.25871D-07 - 16 -2.64811D+01 -8.05834D+00 -6.94112D-08 5.11189D+00 8.53427D-01 -8.48561D-08 -4.97370D+00 4.43990D+00 -5.44210D-09 -1.28547D+01 - 17 -1.29249D+00 -1.28898D+01 7.58657D-08 6.70443D+00 -4.60695D+00 3.43860D-10 -4.89466D-01 6.22994D+00 -8.00818D-08 -7.41509D+00 - 18 1.42321D-07 -1.52000D-07 -5.64467D+00 -2.44514D-07 1.81382D-08 5.86587D-01 -5.78346D-08 -3.18827D-07 5.39335D-01 1.25034D-07 - 19 -4.19853D+00 -3.86486D+00 -2.88864D-07 3.51241D-01 1.09722D-02 -1.14617D-07 -1.05255D+02 -3.16205D+01 1.69920D-07 3.00419D-01 - 20 6.73056D+00 2.87481D+00 -1.03327D-07 4.26941D-01 -1.50724D+00 -3.56368D-08 -3.16258D+01 -3.05524D+01 3.82459D-08 1.72450D-01 - 21 5.92956D-08 1.03806D-07 6.90095D-01 -3.98826D-08 -5.37055D-08 2.53480D+00 -7.70804D-09 2.53061D-08 -1.14693D+01 7.84772D-09 - 22 3.51240D-01 1.09719D-02 -2.89038D-07 -4.19853D+00 -3.86486D+00 -1.22326D-07 3.00420D-01 2.26305D-01 1.65949D-07 -1.05255D+02 - 23 4.26940D-01 -1.50724D+00 -6.44263D-08 6.73056D+00 2.87481D+00 -1.65483D-08 1.72450D-01 -1.44160D-01 3.14253D-08 -3.16258D+01 - 24 6.88298D-08 8.52717D-08 2.53480D+00 2.72958D-08 -8.71345D-08 6.90095D-01 8.36995D-09 7.96412D-08 -2.58687D-01 -5.45514D-09 - 25 4.30781D-02 -5.24130D-01 -1.14948D-08 -4.33613D+00 6.47257D+00 -9.37694D-08 2.61185D+00 -3.25973D+00 -1.97682D-07 -1.07008D+00 - 26 -9.70331D-01 -1.15598D+00 6.61931D-08 -4.02163D+00 3.68358D+00 1.14433D-07 8.13445D+00 -3.85904D+00 1.26509D-07 -7.35420D-01 - 27 7.82430D-08 -2.88556D-08 2.54249D+00 -1.34782D-07 -8.78528D-08 8.13625D-01 -3.86938D-08 -1.07807D-07 1.04352D+00 9.60295D-08 - 28 -4.33613D+00 6.47257D+00 2.74767D-07 4.30778D-02 -5.24130D-01 1.77465D-07 -1.07008D+00 -1.17383D+00 5.44220D-08 2.61185D+00 - 29 -4.02163D+00 3.68358D+00 -1.86223D-07 -9.70331D-01 -1.15598D+00 -1.33920D-07 -7.35420D-01 -4.41278D-01 -9.54796D-08 8.13445D+00 - 30 1.03456D-07 1.47595D-08 8.13625D-01 -1.13119D-07 -3.40509D-08 2.54249D+00 -7.41605D-08 -1.28806D-07 2.22042D+00 5.79845D-08 - 31 -1.82913D-02 1.29658D-01 -4.32117D-08 -1.02960D+01 -4.67903D+00 -1.08535D-08 -5.34827D-01 -7.17955D-02 1.99558D-08 5.38831D-01 - 32 -2.84578D-02 -5.03059D-01 1.08544D-09 -2.21551D+00 -1.97806D+01 -1.02418D-09 -1.40759D-01 8.43420D-01 -4.24909D-08 5.46570D-01 - 33 1.38629D-09 -6.82021D-08 -8.16117D-02 -2.10903D-08 4.69346D-08 -5.28407D+00 -1.05449D-08 -3.68832D-08 5.74076D-01 3.05336D-08 - 34 -1.02960D+01 -4.67903D+00 -4.60347D-08 -1.82912D-02 1.29658D-01 -1.39574D-08 5.38831D-01 2.66574D+00 1.85253D-08 -5.34827D-01 - 35 -2.21551D+00 -1.97806D+01 7.04721D-08 -2.84579D-02 -5.03059D-01 6.99842D-08 5.46570D-01 -3.70762D+00 3.58228D-08 -1.40759D-01 - 36 -3.15169D-08 -7.81069D-08 -5.28407D+00 -5.10200D-08 4.18063D-08 -8.16117D-02 -2.18730D-08 -5.72149D-08 3.30916D-01 1.46463D-08 - 37 5.14058D-02 1.70454D-02 -1.06240D-08 -6.98753D-01 1.07914D+00 -5.28033D-08 -4.54977D-02 4.80501D-02 -1.16346D-07 4.29257D-01 - 38 2.18947D-02 4.68823D-02 -1.62167D-08 -9.13405D+00 -1.91320D+00 -1.06689D-08 -4.89743D-01 7.72583D-02 -3.09356D-08 -6.41417D-01 - 39 3.01331D-08 2.22151D-08 2.88618D-02 -2.45873D-08 -6.08756D-08 6.69679D-01 8.49632D-09 -7.06820D-08 7.29552D-04 -5.53772D-09 - 40 -6.98753D-01 1.07914D+00 1.71771D-07 5.14057D-02 1.70454D-02 1.33464D-07 4.29257D-01 7.01770D-01 2.69711D-08 -4.54975D-02 - 41 -9.13405D+00 -1.91320D+00 2.54999D-08 2.18947D-02 4.68823D-02 2.76547D-08 -6.41417D-01 5.13507D-01 3.23033D-08 -4.89743D-01 - 42 7.53833D-08 3.64598D-08 6.69679D-01 -5.04668D-08 -3.08023D-08 2.88618D-02 -2.11808D-08 -8.45161D-09 -2.50492D-01 3.32307D-08 - 43 6.92477D-03 -1.62180D-01 2.35219D-08 1.44630D+00 1.09117D+00 2.50554D-08 -5.20744D-02 2.47134D-01 2.61649D-09 8.62197D-02 - 44 7.75861D-02 1.51943D-01 9.21846D-09 1.79281D+00 -4.01849D+00 -1.08044D-08 1.20644D-01 -1.41695D-01 -3.14659D-08 -5.87576D-01 - 45 -4.48029D-08 -3.33466D-08 -3.41806D-03 -1.95886D-08 1.62830D-08 4.57948D-01 4.21742D-09 -3.91801D-08 -3.83696D-02 -1.05214D-08 - 46 1.44630D+00 1.09117D+00 -1.07047D-09 6.92476D-03 -1.62180D-01 6.71131D-10 8.62197D-02 -5.93063D-01 -2.98132D-08 -5.20744D-02 - 47 1.79281D+00 -4.01849D+00 4.64704D-08 7.75860D-02 1.51943D-01 2.51356D-08 -5.87576D-01 2.41124D-01 -4.08063D-09 1.20644D-01 - 48 1.85825D-08 -3.04787D-08 4.57948D-01 4.34562D-08 2.37914D-08 -3.41806D-03 1.30624D-08 6.83546D-09 1.20061D-01 1.42961D-09 - 49 -2.26103D-02 -3.50795D-02 3.15256D-08 1.37005D-01 -3.99491D-01 8.68660D-09 1.12154D-01 -9.90917D-03 -3.47976D-08 -3.08816D-02 - 50 -7.34625D-04 -1.25552D-02 3.12089D-08 -4.34929D-01 4.60541D-01 4.78005D-08 -7.14590D-02 5.02131D-02 4.48181D-08 -1.70383D-02 - 51 1.08311D-07 -1.14975D-07 -2.28228D-02 -1.86212D-07 -6.10180D-09 -2.36390D+00 -9.88070D-09 -1.70586D-07 3.99601D-02 9.84710D-08 - 52 1.37006D-01 -3.99491D-01 1.49253D-08 -2.26106D-02 -3.50795D-02 3.14397D-09 -3.08816D-02 -4.38115D-02 2.07965D-08 1.12154D-01 - 53 -4.34929D-01 4.60541D-01 -4.65938D-08 -7.34735D-04 -1.25553D-02 -5.83905D-08 -1.70383D-02 4.43541D-03 -4.53598D-08 -7.14590D-02 - 54 1.05924D-07 -1.10631D-07 -2.36390D+00 -1.51108D-07 3.14794D-08 -2.28228D-02 -7.34877D-08 -1.54252D-07 9.55340D-03 3.77285D-08 - 55 1.66511D-02 -1.82583D-02 -7.58296D-08 -9.69337D-01 3.56611D-01 -7.44185D-08 6.08744D-02 -3.16181D-03 -3.07204D-09 2.28764D-01 - 56 4.54458D-02 3.47242D-02 -5.95671D-08 7.91720D-01 -9.96082D-03 -9.71332D-09 -6.59737D-02 3.98656D-03 3.45110D-08 -1.42726D-01 - 57 9.91580D-08 -3.24288D-08 4.37367D-02 -1.09494D-07 -4.42628D-08 3.71012D+00 -2.86395D-08 -1.45708D-07 -9.35102D-02 4.85552D-08 - 58 -9.69337D-01 3.56611D-01 1.70547D-08 1.66513D-02 -1.82582D-02 2.17578D-08 2.28764D-01 2.65093D-01 4.59776D-08 6.08743D-02 - 59 7.91720D-01 -9.96086D-03 -4.35607D-08 4.54461D-02 3.47242D-02 -2.26501D-10 -1.42726D-01 -1.13188D-01 3.22963D-08 -6.59738D-02 - 60 7.04453D-08 -2.31335D-08 3.71012D+00 -1.53424D-07 -4.27272D-08 4.37367D-02 -2.59821D-08 -1.62463D-07 7.76420D-03 5.29665D-08 + 1 6.04378D+01 + 2 1.45037D-01 5.88030D+01 + 3 8.34652D-07 -7.01318D-07 1.31762D+01 + 4 -7.00907D+00 1.31543D+00 8.24936D-07 6.04378D+01 + 5 1.31539D+00 8.54363D-01 -8.21312D-07 1.45036D-01 5.88030D+01 + 6 9.05004D-07 -6.23401D-07 -7.46985D-01 1.22729D-06 -6.43792D-07 1.31762D+01 + 7 -2.21707D+01 1.15482D+01 5.17630D-08 1.76185D+00 -3.07970D+00 1.46176D-08 6.86237D+01 + 8 4.46002D+00 -1.74172D+01 -1.68415D-07 -9.06123D+00 -1.31689D+00 -1.53314D-07 4.62115D+00 6.31130D+01 + 9 1.32242D-06 -1.07189D-06 -5.54095D+00 1.36298D-06 -7.36884D-07 5.76192D-01 4.67979D-07 3.88984D-07 1.17737D+01 + 10 1.76185D+00 -3.07970D+00 3.87702D-08 -2.21707D+01 1.15482D+01 6.56920D-09 -6.73198D-01 2.26187D+00 1.20053D-07 6.86237D+01 + 11 -9.06123D+00 -1.31689D+00 -8.47152D-09 4.46002D+00 -1.74172D+01 -1.09995D-08 2.26182D+00 -6.38046D+00 -3.11653D-07 4.62116D+00 + 12 1.07122D-06 -1.09937D-06 5.76192D-01 1.09448D-06 -7.38311D-07 -5.54095D+00 1.13640D-07 9.66538D-07 -5.95356D-01 5.16881D-08 + 13 5.11185D+00 8.53537D-01 -8.64161D-08 -2.64812D+01 -8.05855D+00 5.38789D-08 -1.28549D+01 1.13598D+00 -2.70039D-07 -4.97396D+00 + 14 6.70428D+00 -4.60684D+00 7.58094D-07 -1.29255D+00 -1.28897D+01 -4.34628D-07 -7.41534D+00 -3.14761D+01 -3.47345D-07 -4.89510D-01 + 15 -1.11487D-06 9.57191D-07 5.86598D-01 -1.24576D-06 5.67163D-07 -5.64533D+00 7.79592D-08 -8.78312D-07 -5.20427D+00 4.08656D-08 + 16 -2.64812D+01 -8.05855D+00 -1.50035D-08 5.11185D+00 8.53538D-01 1.27785D-07 -4.97396D+00 4.43988D+00 -1.26540D-06 -1.28549D+01 + 17 -1.29255D+00 -1.28897D+01 8.45827D-07 6.70428D+00 -4.60684D+00 -3.58964D-07 -4.89510D-01 6.22985D+00 -1.56189D-06 -7.41533D+00 + 18 -1.19063D-06 9.54661D-07 -5.64533D+00 -1.31191D-06 5.62329D-07 5.86598D-01 -1.06258D-08 -7.20677D-07 5.39546D-01 -5.85971D-08 + 19 -4.19844D+00 -3.86560D+00 -1.41877D-06 3.51387D-01 1.08970D-02 1.32092D-06 -1.05254D+02 -3.16199D+01 -3.89710D-06 3.00089D-01 + 20 6.73089D+00 2.87452D+00 -5.62102D-07 4.26943D-01 -1.50738D+00 5.32993D-07 -3.16253D+01 -3.05526D+01 -1.07407D-06 1.72500D-01 + 21 -1.73934D-08 5.97181D-08 6.90372D-01 8.66833D-08 3.20405D-07 2.53489D+00 -2.10859D-07 -3.91720D-07 -1.14697D+01 6.62007D-08 + 22 3.51388D-01 1.08926D-02 -1.88857D-06 -4.19845D+00 -3.86559D+00 8.88651D-07 3.00088D-01 2.26179D-01 2.54303D-06 -1.05254D+02 + 23 4.26943D-01 -1.50738D+00 -8.14152D-07 6.73089D+00 2.87453D+00 3.29680D-07 1.72500D-01 -1.44134D-01 2.12310D-06 -3.16253D+01 + 24 6.30013D-08 8.03511D-08 2.53489D+00 1.73398D-07 3.28913D-07 6.90372D-01 -4.88836D-08 -6.34543D-07 -2.58748D-01 1.86906D-07 + 25 4.31381D-02 -5.24254D-01 -6.43568D-08 -4.33573D+00 6.47309D+00 -2.93688D-07 2.61162D+00 -3.26024D+00 2.99233D-06 -1.06978D+00 + 26 -9.70452D-01 -1.15609D+00 1.59046D-07 -4.02210D+00 3.68313D+00 1.16058D-07 8.13508D+00 -3.85861D+00 -1.84305D-06 -7.35289D-01 + 27 -5.68648D-07 5.84122D-08 2.54265D+00 -9.46961D-07 1.97898D-07 8.13767D-01 5.06071D-07 -1.75045D-07 1.04347D+00 6.12841D-07 + 28 -4.33573D+00 6.47310D+00 2.09644D-07 4.31393D-02 -5.24258D-01 -4.88960D-08 -1.06978D+00 -1.17391D+00 -3.93698D-07 2.61162D+00 + 29 -4.02210D+00 3.68313D+00 4.04625D-08 -9.70452D-01 -1.15609D+00 1.58370D-08 -7.35290D-01 -4.41287D-01 -2.90098D-07 8.13507D+00 + 30 -5.84329D-07 6.78360D-08 8.13767D-01 -9.33993D-07 2.60880D-07 2.54265D+00 5.00895D-07 -1.80840D-07 2.22040D+00 5.78773D-07 + 31 -1.82998D-02 1.29608D-01 -3.07853D-07 -1.02960D+01 -4.67943D+00 3.01425D-07 -5.34756D-01 -7.17831D-02 -1.74721D-07 5.38980D-01 + 32 -2.84990D-02 -5.03059D-01 1.36473D-07 -2.21544D+00 -1.97813D+01 -1.37145D-07 -1.40544D-01 8.43403D-01 1.77333D-07 5.46801D-01 + 33 -1.06942D-06 9.68314D-07 -8.16175D-02 -1.12015D-06 1.03565D-06 -5.28510D+00 -4.61276D-07 -3.95997D-07 5.74050D-01 -2.40936D-07 + 34 -1.02960D+01 -4.67943D+00 -2.34162D-07 -1.83000D-02 1.29609D-01 3.70701D-07 5.38981D-01 2.66574D+00 -1.07376D-06 -5.34756D-01 + 35 -2.21544D+00 -1.97813D+01 9.46213D-09 -2.84984D-02 -5.03060D-01 -2.74014D-07 5.46801D-01 -3.70766D+00 1.91504D-06 -1.40544D-01 + 36 -1.12929D-06 9.61879D-07 -5.28510D+00 -1.17588D-06 1.01671D-06 -8.16177D-02 -5.73732D-07 -2.22497D-07 3.31108D-01 -3.64058D-07 + 37 5.13941D-02 1.70383D-02 2.66340D-07 -6.99095D-01 1.08014D+00 -3.80377D-07 -4.54490D-02 4.80226D-02 -3.77223D-08 4.28924D-01 + 38 2.18738D-02 4.68747D-02 -3.31326D-08 -9.13441D+00 -1.91303D+00 1.31847D-08 -4.89806D-01 7.72444D-02 -1.40271D-07 -6.41644D-01 + 39 3.63115D-07 -1.43777D-07 2.88533D-02 2.01130D-07 6.02620D-08 6.70002D-01 -3.54709D-08 4.12421D-09 7.23613D-04 8.06451D-08 + 40 -6.99096D-01 1.08014D+00 5.19673D-08 5.13946D-02 1.70370D-02 -5.85804D-07 4.28924D-01 7.01919D-01 2.37173D-06 -4.54492D-02 + 41 -9.13441D+00 -1.91303D+00 3.47209D-08 2.18737D-02 4.68745D-02 9.56062D-08 -6.41644D-01 5.13442D-01 -1.36152D-06 -4.89806D-01 + 42 4.13514D-07 -1.05031D-07 6.70002D-01 2.86454D-07 2.17335D-08 2.88534D-02 9.98827D-08 -1.59628D-07 -2.50530D-01 1.81964D-07 + 43 6.95037D-03 -1.62132D-01 -5.10168D-08 1.44641D+00 1.09097D+00 -1.87328D-08 -5.21684D-02 2.47118D-01 7.73815D-07 8.62416D-02 + 44 7.75663D-02 1.51913D-01 2.23235D-07 1.79269D+00 -4.01798D+00 -1.23484D-07 1.20649D-01 -1.41690D-01 -4.76543D-07 -5.87728D-01 + 45 3.94012D-07 -3.34440D-07 -3.36951D-03 3.82940D-07 -4.74257D-07 4.58103D-01 1.35145D-07 2.76378D-07 -3.84838D-02 -3.47479D-08 + 46 1.44641D+00 1.09097D+00 -6.39923D-08 6.95048D-03 -1.62133D-01 -2.76149D-08 8.62417D-02 -5.93093D-01 9.88744D-07 -5.21687D-02 + 47 1.79269D+00 -4.01798D+00 2.01262D-07 7.75665D-02 1.51912D-01 -1.38724D-07 -5.87728D-01 2.41139D-01 -4.08604D-07 1.20649D-01 + 48 4.92014D-07 -2.83763D-07 4.58103D-01 4.87218D-07 -4.16384D-07 -3.36946D-03 1.79411D-07 1.41776D-07 1.20110D-01 3.12883D-08 + 49 -2.26155D-02 -3.50940D-02 5.85533D-07 1.36992D-01 -3.99157D-01 -5.08267D-07 1.12285D-01 -9.92134D-03 -5.20074D-07 -3.09444D-02 + 50 -7.32150D-04 -1.25599D-02 2.01403D-07 -4.34877D-01 4.60456D-01 -6.40162D-08 -7.14896D-02 5.01739D-02 -8.54843D-07 -1.69559D-02 + 51 2.28997D-08 -2.13534D-07 -2.28610D-02 1.04780D-07 -4.31387D-07 -2.36372D+00 3.19342D-07 -1.39376D-07 4.01800D-02 1.40507D-07 + 52 1.36992D-01 -3.99156D-01 5.26783D-07 -2.26151D-02 -3.50937D-02 -5.92369D-07 -3.09449D-02 -4.37923D-02 -2.19508D-07 1.12286D-01 + 53 -4.34877D-01 4.60456D-01 1.56226D-07 -7.32348D-04 -1.25595D-02 -1.36389D-07 -1.69563D-02 4.41304D-03 -1.95695D-07 -7.14895D-02 + 54 -1.42786D-09 -1.27739D-07 -2.36372D+00 2.54067D-08 -3.64245D-07 -2.28610D-02 1.77780D-07 -3.68547D-10 9.41233D-03 3.40384D-08 + 55 1.66290D-02 -1.82633D-02 -3.47569D-07 -9.69370D-01 3.56592D-01 3.22390D-07 6.09399D-02 -3.13833D-03 -3.56633D-07 2.28729D-01 + 56 4.54612D-02 3.47635D-02 -5.41602D-07 7.91891D-01 -1.03799D-02 4.89039D-07 -6.60993D-02 3.97635D-03 9.58605D-08 -1.42741D-01 + 57 -7.38211D-07 6.09139D-07 4.36801D-02 -9.64633D-07 7.60687D-07 3.71028D+00 -3.46249D-07 -3.19090D-07 -9.33564D-02 -9.93632D-08 + 58 -9.69370D-01 3.56591D-01 -2.84875D-07 1.66288D-02 -1.82624D-02 3.46126D-07 2.28729D-01 2.65128D-01 -7.04271D-07 6.09398D-02 + 59 7.91891D-01 -1.03810D-02 -4.74431D-07 4.54605D-02 3.47641D-02 5.70207D-07 -1.42741D-01 -1.13204D-01 -2.02353D-07 -6.61000D-02 + 60 -8.31002D-07 6.56707D-07 3.71028D+00 -9.77345D-07 7.85196D-07 4.36801D-02 -4.14955D-07 -2.32616D-07 7.69305D-03 -1.96190D-07 11 12 13 14 15 16 17 18 19 20 ----- ----- ----- ----- ----- - 11 6.31124D+01 - 12 -1.32969D-07 1.17733D+01 - 13 4.43990D+00 3.93377D-08 6.51307D+01 - 14 6.22994D+00 6.30764D-08 -5.68229D+00 6.65665D+01 - 15 2.03288D-07 5.39335D-01 2.84331D-07 1.47627D-08 1.17908D+01 - 16 1.13596D+00 -2.02197D-08 -2.66819D+00 -3.53318D+00 8.69376D-08 6.51307D+01 - 17 -3.14754D+01 2.10033D-08 -3.53318D+00 -4.23560D+00 -1.57669D-07 -5.68229D+00 6.65665D+01 - 18 1.92363D-07 -5.20435D+00 2.90672D-07 2.21793D-08 -5.38102D-01 5.23653D-08 9.09614D-08 1.17908D+01 - 19 2.26305D-01 -1.08234D-07 4.79806D-01 1.79585D+00 6.20272D-07 -4.42532D-01 1.15902D+00 -4.42193D-07 3.73228D+02 - 20 -1.44160D-01 -3.54205D-08 -9.54744D+00 -1.69273D+00 1.71070D-07 7.09906D-01 -1.04303D+00 -1.25948D-07 1.13654D+02 1.06907D+02 - 21 -1.12852D-08 -2.58687D-01 -2.35872D-08 2.00966D-08 9.71382D-01 6.16533D-08 -7.58934D-08 2.12729D+00 -8.08604D-08 6.13488D-09 - 22 -3.16205D+01 -1.23688D-07 -4.42532D-01 1.15902D+00 6.49675D-07 4.79806D-01 1.79585D+00 -4.13206D-07 -1.93093D-01 -1.70849D-01 - 23 -3.05524D+01 -4.54058D-08 7.09906D-01 -1.04303D+00 2.01160D-07 -9.54744D+00 -1.69273D+00 -1.05136D-07 -1.70864D-01 1.17981D-01 - 24 5.87207D-08 -1.14693D+01 -1.18959D-07 1.63260D-08 2.12729D+00 1.21158D-08 -9.82699D-08 9.71382D-01 -4.36602D-08 -5.50554D-09 - 25 -1.17383D+00 -1.41948D-07 -7.85170D+01 4.84365D+01 1.82023D-07 1.28177D-01 -3.00492D-01 1.43140D-07 1.16133D+00 1.83693D-02 - 26 -4.41278D-01 1.30848D-07 4.81977D+01 -5.80306D+01 -2.48895D-07 -2.74557D-01 2.09541D-02 -6.37409D-08 1.91106D-01 1.85774D+00 - 27 1.11865D-07 2.22042D+00 1.27303D-07 1.93581D-08 -1.15730D+01 5.55095D-08 -2.43298D-08 -2.66922D-01 2.84264D-09 2.14773D-07 - 28 -3.25973D+00 1.11430D-07 1.28177D-01 -3.00492D-01 -1.90089D-07 -7.85170D+01 4.84365D+01 -2.13993D-07 -7.95620D-01 1.12035D+00 - 29 -3.85904D+00 -8.79472D-08 -2.74557D-01 2.09543D-02 7.77060D-08 4.81977D+01 -5.80306D+01 2.57574D-07 -6.75044D-01 6.07630D-01 - 30 8.29237D-08 1.04352D+00 7.85084D-08 3.31796D-08 -2.66922D-01 2.26460D-08 -2.40033D-08 -1.15730D+01 6.45401D-08 2.04294D-07 - 31 2.66574D+00 -2.17357D-08 1.03852D-01 -2.78256D+00 1.16581D-07 -4.12333D-01 7.78820D-02 -6.90339D-08 2.39046D-02 -4.43940D-01 - 32 -3.70762D+00 -5.06848D-08 -1.77398D+00 -2.09791D+00 8.65092D-08 5.21237D-01 5.70077D-01 -8.18324D-09 2.32763D-02 5.96784D-02 - 33 4.36427D-09 3.30916D-01 4.07857D-08 -1.23627D-08 2.32843D-01 -1.87905D-09 3.82177D-08 6.16694D-01 8.56994D-09 5.39780D-08 - 34 -7.17953D-02 -2.66515D-08 -4.12333D-01 7.78820D-02 1.10803D-07 1.03852D-01 -2.78256D+00 -7.31602D-08 4.46697D-01 5.83228D-01 - 35 8.43420D-01 2.58149D-08 5.21237D-01 5.70077D-01 -2.30297D-08 -1.77398D+00 -2.09791D+00 -1.13847D-07 -5.97887D-01 4.38695D-01 - 36 -2.25161D-08 5.74076D-01 6.62451D-08 1.02681D-08 6.16694D-01 2.40891D-08 6.20228D-08 2.32843D-01 8.35927D-09 6.13150D-08 - 37 7.01770D-01 -3.73418D-08 1.99701D-01 3.07479D-02 -6.29851D-08 -3.34741D-02 -9.84428D-03 1.81885D-07 3.10688D-02 -4.64536D-02 - 38 5.13507D-01 -2.43080D-08 5.21254D-01 -1.53132D+00 5.93614D-08 3.59658D-02 4.70667D-02 -8.68367D-09 1.57286D-02 -4.65369D-01 - 39 6.66059D-08 -2.50492D-01 1.72122D-08 5.00256D-08 7.02038D-01 4.14953D-08 -3.31249D-08 -7.77861D-03 -7.71083D-08 1.23084D-07 - 40 4.80499D-02 1.14404D-07 -3.34742D-02 -9.84439D-03 -2.67237D-07 1.99701D-01 3.07480D-02 -1.78444D-08 8.12671D-02 -4.05668D-01 - 41 7.72583D-02 1.50219D-08 3.59658D-02 4.70667D-02 6.89833D-09 5.21254D-01 -1.53132D+00 -5.11300D-08 5.11827D-01 -1.00682D-01 - 42 7.25608D-08 7.29596D-04 1.17141D-08 -2.84582D-09 -7.77864D-03 -1.11255D-08 -4.01606D-08 7.02038D-01 4.15312D-09 5.30607D-09 - 43 -5.93063D-01 -8.85534D-10 -4.21075D-01 -4.28853D-01 1.48452D-08 1.64605D-01 1.24311D-01 -7.06985D-08 -1.52876D-03 -6.48840D-03 - 44 2.41124D-01 -8.86607D-10 5.28278D-01 3.25683D-01 -6.22930D-08 -7.32985D-02 -2.66602D-01 6.59258D-08 -3.92367D-03 1.61715D-02 - 45 -8.08459D-09 1.20061D-01 4.65305D-08 1.32773D-08 3.65394D-02 8.98089D-09 3.77726D-08 -8.79322D-03 4.97908D-08 2.99855D-08 - 46 2.47134D-01 -2.64262D-08 1.64605D-01 1.24310D-01 7.95941D-08 -4.21075D-01 -4.28853D-01 -2.31437D-09 4.82105D-02 -8.51096D-02 - 47 -1.41695D-01 2.74762D-08 -7.32985D-02 -2.66602D-01 -8.77504D-08 5.28278D-01 3.25683D-01 4.79913D-08 -2.89814D-02 -1.83897D-02 - 48 3.31474D-08 -3.83696D-02 -3.02748D-10 -3.37364D-08 -8.79321D-03 -3.59813D-08 1.17661D-09 3.65394D-02 -4.94496D-09 1.03653D-08 - 49 -4.38117D-02 4.41518D-08 1.43475D-01 -3.08777D-01 -2.42319D-07 -5.06454D-02 9.10676D-03 2.32828D-07 1.25764D-03 -2.62012D-02 - 50 4.43533D-03 8.03382D-08 3.79500D-01 -3.83751D-01 -1.66301D-07 -3.78815D-02 1.47725D-02 7.88351D-08 -2.35618D-02 -3.46633D-02 - 51 1.53080D-07 9.55341D-03 1.59911D-07 3.27469D-08 5.10411D-02 6.98389D-09 -1.73584D-08 7.58401D-02 -6.89577D-08 3.15360D-07 - 52 -9.90952D-03 7.03038D-08 -5.06453D-02 9.10703D-03 -3.01535D-07 1.43475D-01 -3.08777D-01 1.90403D-07 -3.80009D-02 -2.67266D-02 - 53 5.02130D-02 -3.55418D-09 -3.78815D-02 1.47726D-02 -9.71727D-08 3.79500D-01 -3.83752D-01 1.47868D-07 -7.70177D-02 8.47733D-02 - 54 1.40535D-07 3.99601D-02 1.96763D-07 1.47734D-08 7.58402D-02 4.68088D-08 4.00781D-09 5.10410D-02 1.31455D-08 3.04814D-07 - 55 2.65093D-01 -2.70473D-08 -1.59512D-01 -4.43687D-02 2.13398D-07 -7.61218D-02 1.55565D-02 -3.41381D-08 6.91094D-03 4.80271D-02 - 56 -1.13188D-01 -3.93464D-08 6.33992D-02 1.36200D-01 2.47211D-07 1.21546D-01 -5.70987D-02 -1.68167D-07 1.13995D-02 -1.55417D-02 - 57 1.25837D-07 7.76420D-03 1.34803D-07 3.27582D-09 -1.26276D-01 1.22146D-08 2.02868D-08 -2.58691D-01 -2.01545D-08 2.65295D-07 - 58 -3.16158D-03 2.24849D-08 -7.61218D-02 1.55565D-02 6.97826D-08 -1.59512D-01 -4.43688D-02 -1.90848D-07 3.66438D-02 5.06973D-04 - 59 3.98692D-03 -3.21368D-08 1.21546D-01 -5.70988D-02 2.04313D-07 6.33991D-02 1.36200D-01 -2.08497D-07 8.97916D-02 -2.26059D-02 - 60 1.17355D-07 -9.35102D-02 1.55477D-07 1.24619D-08 -2.58691D-01 5.28523D-08 4.18982D-08 -1.26276D-01 3.12609D-08 2.40359D-07 + 11 6.31130D+01 + 12 -7.16020D-08 1.17737D+01 + 13 4.43988D+00 -6.46342D-07 6.51309D+01 + 14 6.22985D+00 1.48383D-06 -5.68175D+00 6.65665D+01 + 15 1.32707D-07 5.39547D-01 1.69684D-07 -3.02063D-10 1.17909D+01 + 16 1.13598D+00 -1.62508D-06 -2.66785D+00 -3.53320D+00 1.70337D-06 6.51309D+01 + 17 -3.14761D+01 2.88492D-07 -3.53323D+00 -4.23553D+00 9.95308D-07 -5.68175D+00 6.65665D+01 + 18 3.00180D-07 -5.20427D+00 7.44432D-08 -1.66892D-07 -5.38017D-01 1.95278D-08 -2.73190D-07 1.17909D+01 + 19 2.26172D-01 -8.25697D-06 4.79516D-01 1.79659D+00 5.94471D-06 -4.42020D-01 1.15897D+00 7.40298D-06 3.73228D+02 + 20 -1.44137D-01 -2.71091D-06 -9.54811D+00 -1.69242D+00 1.72692D-06 7.09815D-01 -1.04306D+00 2.47777D-06 1.13653D+02 1.06909D+02 + 21 -2.14813D-07 -2.58748D-01 4.93113D-07 -1.59487D-07 9.71394D-01 1.02205D-07 2.54411D-07 2.12727D+00 -1.78008D-07 4.51854D-07 + 22 -3.16199D+01 -1.92399D-06 -4.42022D-01 1.15896D+00 -8.72070D-07 4.79516D-01 1.79659D+00 7.01964D-07 -1.92986D-01 -1.70941D-01 + 23 -3.05526D+01 4.33562D-07 7.09814D-01 -1.04306D+00 -1.64281D-06 -9.54811D+00 -1.69242D+00 -8.44927D-07 -1.70910D-01 1.17941D-01 + 24 -4.24440D-07 -1.14697D+01 6.24972D-07 8.24764D-08 2.12727D+00 2.63608D-07 4.55003D-07 9.71393D-01 -9.69119D-07 6.40776D-07 + 25 -1.17391D+00 3.78924D-06 -7.85161D+01 4.84357D+01 -4.03095D-06 1.27877D-01 -3.00224D-01 -3.10168D-06 1.16129D+00 1.88173D-02 + 26 -4.41289D-01 -2.00814D-06 4.81967D+01 -5.80297D+01 2.29298D-06 -2.74516D-01 2.09526D-02 1.70841D-06 1.90806D-01 1.85738D+00 + 27 -5.17946D-08 2.22040D+00 -6.98750D-08 5.29796D-07 -1.15727D+01 -3.88693D-08 1.71358D-07 -2.67013D-01 1.12455D-07 4.23688D-07 + 28 -3.26024D+00 4.41342D-07 1.27877D-01 -3.00220D-01 -4.62797D-07 -7.85161D+01 4.84357D+01 4.13895D-07 -7.96331D-01 1.12031D+00 + 29 -3.85862D+00 -4.84053D-07 -2.74516D-01 2.09504D-02 6.64521D-07 4.81967D+01 -5.80297D+01 1.05977D-07 -6.75027D-01 6.07621D-01 + 30 -2.28326D-08 1.04347D+00 -5.90690D-08 4.78006D-07 -2.67013D-01 -6.15437D-08 1.47015D-07 -1.15727D+01 1.65288D-07 3.91959D-07 + 31 2.66574D+00 -1.08139D-06 1.03713D-01 -2.78248D+00 4.66761D-07 -4.12350D-01 7.78624D-02 9.40057D-07 2.38199D-02 -4.43963D-01 + 32 -3.70766D+00 6.82698D-07 -1.77424D+00 -2.09767D+00 -5.66485D-07 5.21126D-01 5.70138D-01 -3.71084D-07 2.31960D-02 5.98250D-02 + 33 4.80670D-07 3.31108D-01 3.32363D-07 -8.43866D-07 2.33109D-01 -1.19238D-07 -6.15887D-07 6.16737D-01 2.78677D-06 9.46774D-07 + 34 -7.17838D-02 -1.98429D-06 -4.12350D-01 7.78627D-02 1.42314D-06 1.03713D-01 -2.78248D+00 1.87576D-06 4.46502D-01 5.83321D-01 + 35 8.43404D-01 2.41366D-06 5.21126D-01 5.70139D-01 -2.40506D-06 -1.77424D+00 -2.09767D+00 -2.19731D-06 -5.98452D-01 4.38597D-01 + 36 6.59829D-07 5.74052D-01 2.07567D-07 -1.01899D-06 6.16737D-01 -2.19808D-07 -8.04579D-07 2.33107D-01 3.36614D-06 7.62081D-07 + 37 7.01920D-01 1.10309D-06 2.00034D-01 3.05980D-02 -4.86468D-07 -3.35377D-02 -9.72864D-03 -6.42605D-07 3.10411D-02 -4.64495D-02 + 38 5.13442D-01 -2.44226D-07 5.21438D-01 -1.53140D+00 1.27792D-07 3.60511D-02 4.69698D-02 3.24203D-07 1.56087D-02 -4.65463D-01 + 39 -1.27745D-07 -2.50530D-01 1.21706D-07 -1.18799D-08 7.01981D-01 5.17565D-08 4.56981D-08 -7.73667D-03 -5.38578D-07 -2.51785D-08 + 40 4.80242D-02 3.51267D-06 -3.35381D-02 -9.72853D-03 -3.01636D-06 2.00034D-01 3.05971D-02 -3.13714D-06 8.12997D-02 -4.06090D-01 + 41 7.72444D-02 -1.44113D-06 3.60509D-02 4.69702D-02 1.42941D-06 5.21438D-01 -1.53140D+00 1.59786D-06 5.12433D-01 -1.00575D-01 + 42 -2.87880D-07 7.24073D-04 2.13262D-07 1.96198D-07 -7.73752D-03 2.12239D-07 1.98607D-07 7.01981D-01 -1.18455D-06 -9.35644D-09 + 43 -5.93092D-01 7.95410D-07 -4.21112D-01 -4.28909D-01 -9.23945D-07 1.64673D-01 1.24245D-01 -7.40176D-07 -1.52026D-03 -6.49288D-03 + 44 2.41140D-01 5.99200D-08 5.28455D-01 3.25617D-01 2.79297D-07 -7.33276D-02 -2.66560D-01 1.04801D-07 -3.94984D-03 1.61104D-02 + 45 -6.42675D-08 1.20110D-01 -2.82898D-07 2.49858D-07 3.66558D-02 9.82334D-09 6.56920D-08 -8.83622D-03 -6.68494D-07 -4.59449D-07 + 46 2.47118D-01 1.00095D-06 1.64673D-01 1.24245D-01 -1.15266D-06 -4.21112D-01 -4.28909D-01 -9.47740D-07 4.83785D-02 -8.50256D-02 + 47 -1.41689D-01 1.32210D-07 -7.33275D-02 -2.66559D-01 2.16350D-07 5.28455D-01 3.25617D-01 4.27490D-08 -2.88426D-02 -1.84340D-02 + 48 -1.92005D-07 -3.84841D-02 -1.84200D-07 3.37604D-07 -8.83633D-03 1.00523D-07 1.70102D-07 3.66562D-02 -1.13625D-06 -3.68773D-07 + 49 -4.37916D-02 8.72802D-07 1.43614D-01 -3.08661D-01 2.89779D-07 -5.07142D-02 9.29296D-03 -8.13837D-07 1.14279D-03 -2.60973D-02 + 50 4.41268D-03 -5.33113D-07 3.79534D-01 -3.83752D-01 9.18113D-07 -3.78710D-02 1.48084D-02 5.14644D-07 -2.35987D-02 -3.46184D-02 + 51 -1.63690D-07 9.41374D-03 -1.46199D-07 5.09256D-07 5.07326D-02 5.53286D-08 3.68903D-07 7.58894D-02 -9.14914D-07 5.58160D-08 + 52 -9.92159D-03 1.23528D-06 -5.07136D-02 9.29265D-03 -1.61117D-08 1.43614D-01 -3.08660D-01 -1.16364D-06 -3.82043D-02 -2.68201D-02 + 53 5.01738D-02 1.40816D-07 -3.78709D-02 1.48079D-02 2.02949D-07 3.79534D-01 -3.83752D-01 -2.06158D-07 -7.72063D-02 8.47912D-02 + 54 -2.12298D-08 4.01785D-02 -2.06396D-07 3.11271D-07 7.58908D-02 -4.87456D-08 1.53004D-07 5.07342D-02 -2.97239D-07 8.61048D-09 + 55 2.65127D-01 -1.33335D-06 -1.59606D-01 -4.43262D-02 7.64613D-07 -7.61562D-02 1.55312D-02 1.13478D-06 6.99353D-03 4.80126D-02 + 56 -1.13205D-01 -1.32979D-06 6.32321D-02 1.36107D-01 3.62468D-07 1.21655D-01 -5.73241D-02 1.09765D-06 1.14674D-02 -1.56386D-02 + 57 3.81561D-07 7.69299D-03 2.43441D-07 -6.07830D-07 -1.26400D-01 -1.04610D-07 -4.40924D-07 -2.58629D-01 2.15734D-06 7.47331D-07 + 58 -3.13944D-03 -1.63278D-06 -7.61560D-02 1.55313D-02 1.11718D-06 -1.59606D-01 -4.43258D-02 1.44025D-06 3.66555D-02 4.74594D-04 + 59 3.97599D-03 -1.62868D-06 1.21655D-01 -5.73244D-02 6.08372D-07 6.32315D-02 1.36107D-01 1.37045D-06 9.01297D-02 -2.25005D-02 + 60 4.34937D-07 -9.33559D-02 2.47017D-07 -7.38148D-07 -2.58629D-01 -1.24311D-07 -5.75229D-07 -1.26401D-01 2.53941D-06 6.74116D-07 21 22 23 24 25 26 27 28 29 30 ----- ----- ----- ----- ----- - 21 2.81998D+01 - 22 -6.39317D-08 3.73228D+02 - 23 -1.07227D-08 1.13654D+02 1.06907D+02 - 24 -1.07314D+00 5.28518D-08 -6.24931D-10 2.81998D+01 - 25 -7.52191D-08 -7.95621D-01 1.12035D+00 -2.26098D-08 2.76994D+02 - 26 4.16067D-08 -6.75043D-01 6.07630D-01 9.88962D-08 -1.73688D+02 2.07215D+02 - 27 -5.06417D+00 -1.29591D-07 -1.46173D-07 1.46951D-01 -4.61183D-08 -2.68646D-08 2.74015D+01 - 28 2.76913D-08 1.16133D+00 1.83692D-02 6.00489D-08 -5.57569D-02 2.35550D-01 -5.49841D-07 2.76994D+02 - 29 -8.94241D-08 1.91106D-01 1.85774D+00 1.01816D-08 2.35548D-01 -1.69917D-02 4.36988D-07 -1.73688D+02 2.07215D+02 - 30 1.46951D-01 -8.04998D-08 -1.44546D-07 -5.06417D+00 -1.96006D-08 -8.78238D-08 -1.16200D+00 -2.87841D-07 -2.93899D-08 2.74015D+01 - 31 1.36411D-08 4.46698D-01 5.83228D-01 -8.76897D-08 3.57344D-01 3.19097D-01 -2.95756D-08 1.36679D-01 3.97081D-01 4.84559D-08 - 32 5.13585D-09 -5.97887D-01 4.38695D-01 -3.82649D-08 4.86503D-01 -1.06826D-02 -8.57430D-08 -6.75502D-02 -9.58921D-02 1.35863D-07 - 33 4.52562D-02 -3.45504D-08 -5.53535D-08 -1.11324D+00 -3.05350D-08 1.16888D-08 -1.12327D+00 -2.79198D-08 1.49698D-08 9.78347D-03 - 34 3.38262D-08 2.39047D-02 -4.43940D-01 -5.85405D-08 1.36679D-01 3.97081D-01 6.30560D-09 3.57344D-01 3.19097D-01 4.11780D-08 - 35 6.86768D-08 2.32763D-02 5.96783D-02 -6.95838D-10 -6.75500D-02 -9.58923D-02 -2.14207D-07 4.86502D-01 -1.06826D-02 3.15721D-08 - 36 -1.11324D+00 1.03425D-08 -1.13416D-08 4.52562D-02 -2.67428D-08 -2.04499D-08 9.78346D-03 -3.39125D-08 -9.38203D-09 -1.12327D+00 - 37 -4.09396D-08 8.12669D-02 -4.05668D-01 6.68844D-08 1.21922D-01 4.50779D-02 6.62061D-08 8.13479D-03 2.60101D-02 1.17274D-07 - 38 5.58180D-08 5.11827D-01 -1.00682D-01 -3.09108D-09 3.27914D-03 -3.35557D-03 4.97625D-09 1.52114D-02 -1.25545D-03 7.37380D-08 - 39 -2.24134D-01 -3.69902D-08 -3.95830D-08 -5.44680D-02 -1.92812D-08 -2.34728D-08 -6.45495D-02 -1.80230D-07 -8.77603D-09 1.52780D-02 - 40 2.14355D-08 3.10683D-02 -4.64536D-02 1.17551D-07 8.13471D-03 2.60099D-02 -1.93985D-07 1.21922D-01 4.50781D-02 -1.60037D-07 - 41 -3.12602D-08 1.57286D-02 -4.65369D-01 -2.97211D-08 1.52114D-02 -1.25536D-03 -7.05900D-08 3.27908D-03 -3.35559D-03 -4.05729D-08 - 42 -5.44680D-02 1.88443D-09 -9.79919D-08 -2.24134D-01 5.15996D-08 6.55531D-08 1.52779D-02 -1.05607D-07 -2.41521D-08 -6.45495D-02 - 43 1.99347D-08 4.82105D-02 -8.51097D-02 -7.52501D-09 1.25426D-02 -5.90892D-01 -6.59796D-08 -2.27065D-02 -8.71337D-02 2.73616D-09 - 44 -2.41859D-08 -2.89815D-02 -1.83897D-02 4.69940D-08 1.08872D-01 -2.98840D-01 3.32427D-08 -3.62014D-02 -1.00357D-01 4.50010D-08 - 45 7.65866D-03 -5.04418D-09 7.46111D-09 3.50629D-02 -1.79772D-08 -5.94429D-09 6.79294D-02 2.30055D-08 -1.52069D-08 -3.19028D-02 - 46 -6.66429D-09 -1.52876D-03 -6.48848D-03 -3.46385D-08 -2.27064D-02 -8.71337D-02 -1.56055D-08 1.25425D-02 -5.90892D-01 7.16981D-08 - 47 -3.28215D-09 -3.92388D-03 1.61714D-02 4.96187D-08 -3.62014D-02 -1.00357D-01 -2.08384D-08 1.08872D-01 -2.98840D-01 -3.39333D-08 - 48 3.50629D-02 -8.42219D-08 -5.68288D-08 7.65866D-03 -4.15603D-08 2.93391D-08 -3.19028D-02 -9.13951D-10 1.24140D-08 6.79294D-02 - 49 -7.47490D-08 -3.80011D-02 -2.67263D-02 1.98563D-07 5.20094D-01 -2.82891D-01 9.93017D-08 -1.47219D-03 -7.81139D-03 -1.08263D-07 - 50 1.42810D-08 -7.70179D-02 8.47736D-02 1.18736D-07 -7.21877D-01 -1.66457D+00 2.69476D-09 5.15503D-03 -1.26044D-03 -1.91588D-07 - 51 1.33084D-02 -1.51286D-07 -2.16545D-07 -8.74656D-02 -1.04227D-07 -1.88194D-08 3.21829D-01 -3.02728D-07 -9.57381D-09 -3.94458D-03 - 52 -2.95722D-08 1.25765D-03 -2.62008D-02 1.81015D-07 -1.47221D-03 -7.81157D-03 2.34920D-08 5.20094D-01 -2.82891D-01 -1.33242D-07 - 53 -6.77550D-08 -2.35617D-02 -3.46631D-02 3.73387D-08 5.15507D-03 -1.26049D-03 1.30202D-07 -7.21877D-01 -1.66457D+00 -4.39382D-08 - 54 -8.74658D-02 -7.30669D-08 -2.05159D-07 1.33086D-02 -1.39807D-07 -6.40779D-08 -3.94469D-03 -3.23520D-07 -6.28143D-08 3.21829D-01 - 55 -6.14134D-08 3.66440D-02 5.06737D-04 -9.91822D-08 3.28799D-01 2.46914D-01 6.07503D-08 3.50509D-02 1.14048D-01 5.73411D-08 - 56 2.91777D-08 8.97918D-02 -2.26061D-02 -1.73893D-07 3.10539D-02 1.24404D-01 -4.77512D-08 -3.74492D-02 -5.79708D-02 4.35154D-08 - 57 4.60060D-03 -1.10216D-07 -1.95082D-07 3.25310D-01 -9.19409D-08 -1.62837D-08 1.32227D-01 -2.71789D-07 -5.36967D-08 7.18422D-03 - 58 1.64206D-08 6.91106D-03 4.80269D-02 -5.55806D-08 3.50509D-02 1.14048D-01 -8.49148D-08 3.28799D-01 2.46914D-01 -6.38239D-08 - 59 4.26530D-08 1.13997D-02 -1.55420D-02 -1.64359D-07 -3.74491D-02 -5.79705D-02 -2.67100D-08 3.10538D-02 1.24404D-01 5.85325D-08 - 60 3.25310D-01 -1.07169D-07 -1.74774D-07 4.60074D-03 -1.03773D-07 4.98347D-08 7.18417D-03 -2.62200D-07 -4.28439D-08 1.32227D-01 + 21 2.82005D+01 + 22 -3.67146D-06 3.73228D+02 + 23 -2.23595D-06 1.13653D+02 1.06909D+02 + 24 -1.07313D+00 -1.14814D-06 3.93844D-07 2.82005D+01 + 25 -1.97746D-06 -7.96332D-01 1.12031D+00 -4.07840D-06 2.76991D+02 + 26 1.37861D-06 -6.75027D-01 6.07623D-01 2.09610D-06 -1.73685D+02 2.07212D+02 + 27 -5.06433D+00 -4.54490D-07 -2.15725D-07 1.46859D-01 1.29158D-06 -1.13600D-06 2.74006D+01 + 28 1.09832D-06 1.16129D+00 1.88147D-02 -1.09615D-06 -5.56227D-02 2.35537D-01 1.34541D-06 2.76991D+02 + 29 -6.35230D-08 1.90810D-01 1.85738D+00 7.69905D-07 2.35623D-01 -1.70977D-02 -9.89743D-07 -1.73685D+02 2.07212D+02 + 30 1.46859D-01 -4.06676D-07 -2.48771D-07 -5.06433D+00 1.23733D-06 -1.16379D-06 -1.16187D+00 9.95803D-07 -4.12511D-07 2.74006D+01 + 31 2.75970D-08 4.46503D-01 5.83322D-01 1.14236D-06 3.57472D-01 3.18957D-01 -4.66771D-07 1.36670D-01 3.97220D-01 -7.29932D-07 + 32 2.13022D-07 -5.98454D-01 4.38596D-01 -7.78808D-07 4.86731D-01 -1.09157D-02 8.09195D-07 -6.74687D-02 -9.58650D-02 1.53927D-07 + 33 4.52187D-02 2.32732D-06 -5.03241D-07 -1.11315D+00 1.36804D-06 -7.02490D-07 -1.12321D+00 1.26569D-06 -2.96176D-07 9.61464D-03 + 34 8.44696D-07 2.38211D-02 -4.43962D-01 1.95577D-06 1.36670D-01 3.97219D-01 -1.12539D-06 3.57472D-01 3.18956D-01 -1.37212D-06 + 35 -1.34557D-06 2.31944D-02 5.98233D-02 -2.36035D-06 -6.74693D-02 -9.58653D-02 2.15489D-06 4.86731D-01 -1.09148D-02 1.51421D-06 + 36 -1.11315D+00 2.93702D-06 -6.28798D-07 4.52174D-02 1.83674D-06 -7.67548D-07 9.61489D-03 1.73998D-06 -3.82025D-07 -1.12321D+00 + 37 2.96156D-07 8.12962D-02 -4.06092D-01 -1.41215D-06 1.21811D-01 4.50516D-02 7.11444D-07 8.09350D-03 2.59388D-02 4.58653D-07 + 38 1.43103D-07 5.12433D-01 -1.00576D-01 1.85733D-07 3.13542D-03 -3.25573D-03 2.44051D-08 1.52390D-02 -1.27788D-03 -2.79171D-07 + 39 -2.24087D-01 -5.43117D-07 1.80335D-08 -5.45940D-02 -5.58599D-07 2.90967D-07 -6.46970D-02 -6.79201D-07 2.39599D-07 1.53053D-02 + 40 -1.87693D-06 3.10393D-02 -4.64517D-02 -3.55037D-06 8.09388D-03 2.59386D-02 2.47062D-06 1.21811D-01 4.50518D-02 2.24569D-06 + 41 1.25241D-06 1.56087D-02 -4.65463D-01 1.25391D-06 1.52396D-02 -1.27834D-03 -9.09530D-07 3.13590D-03 -3.25606D-03 -1.20120D-06 + 42 -5.45947D-02 -1.18054D-06 8.33701D-08 -2.24088D-01 -1.05582D-06 3.85364D-07 1.53059D-02 -1.20630D-06 3.84451D-07 -6.46967D-02 + 43 -5.46318D-07 4.83775D-02 -8.50259D-02 -7.66744D-07 1.24012D-02 -5.90701D-01 8.34317D-07 -2.27104D-02 -8.71611D-02 4.56924D-07 + 44 5.05493D-07 -2.88435D-02 -1.84349D-02 -2.34065D-07 1.08753D-01 -2.98924D-01 -5.19221D-08 -3.61868D-02 -1.00403D-01 -6.35672D-08 + 45 7.74867D-03 -3.43434D-07 7.75087D-08 3.48790D-02 3.98913D-09 1.81860D-07 6.77512D-02 -2.28104D-07 1.26780D-07 -3.17940D-02 + 46 -7.28388D-07 -1.52022D-03 -6.49354D-03 -9.71469D-07 -2.27103D-02 -8.71613D-02 9.79179D-07 1.24020D-02 -5.90701D-01 6.31911D-07 + 47 4.50040D-07 -3.95104D-03 1.61097D-02 -2.83959D-07 -3.61868D-02 -1.00403D-01 -2.93885D-08 1.08753D-01 -2.98924D-01 -4.80158D-08 + 48 3.48790D-02 -8.46538D-07 1.51695D-07 7.74893D-03 -4.65724D-07 3.00747D-07 -3.17938D-02 -7.20218D-07 2.45238D-07 6.77509D-02 + 49 4.27398D-07 -3.82035D-02 -2.68212D-02 -8.68923D-07 5.20070D-01 -2.82890D-01 -3.19224D-07 -1.62495D-03 -7.82358D-03 7.97465D-07 + 50 6.85024D-07 -7.72065D-02 8.47915D-02 5.69683D-07 -7.22099D-01 -1.66437D+00 -7.94892D-07 5.15752D-03 -1.30366D-03 -3.09586D-07 + 51 1.31379D-02 -5.51957D-07 3.20402D-07 -8.72742D-02 5.81824D-08 -9.70858D-08 3.22102D-01 -1.60707D-07 -1.00897D-07 -4.00799D-03 + 52 1.61876D-07 1.13984D-03 -2.60978D-02 -1.12075D-06 -1.62552D-03 -7.82285D-03 -1.19473D-07 5.20066D-01 -2.82890D-01 9.62077D-07 + 53 8.60235D-08 -2.35982D-02 -3.46184D-02 1.48029D-09 5.15826D-03 -1.30355D-03 -2.79648D-07 -7.22099D-01 -1.66438D+00 1.69721D-07 + 54 -8.72729D-02 -2.85123D-08 1.23896D-07 1.31392D-02 4.23423D-07 -1.45189D-07 -4.00901D-03 2.49654D-07 -1.33640D-07 3.22100D-01 + 55 9.80627D-08 3.66579D-02 4.75937D-04 1.41046D-06 3.29117D-01 2.46781D-01 -8.30491D-07 3.51199D-02 1.14081D-01 -7.55240D-07 + 56 -2.27747D-07 9.01293D-02 -2.24985D-02 1.37409D-06 3.11380D-02 1.24598D-01 -4.51050D-07 -3.73181D-02 -5.79475D-02 -8.70472D-07 + 57 4.49396D-03 1.77746D-06 -3.79687D-07 3.25480D-01 1.33506D-06 -6.42846D-07 1.32347D-01 9.40974D-07 -2.71284D-07 7.07599D-03 + 58 3.67016D-07 6.99447D-03 4.80143D-02 1.66299D-06 3.51189D-02 1.14082D-01 -1.05002D-06 3.29117D-01 2.46781D-01 -9.88563D-07 + 59 1.61240D-08 1.14712D-02 -1.56373D-02 1.70605D-06 -3.73174D-02 -5.79478D-02 -6.51882D-07 3.11410D-02 1.24598D-01 -9.91995D-07 + 60 3.25480D-01 2.14679D-06 -5.20328D-07 4.49354D-03 1.39994D-06 -5.41739D-07 7.07590D-03 1.14832D-06 -2.16821D-07 1.32347D-01 31 32 33 34 35 36 37 38 39 40 ----- ----- ----- ----- ----- - 31 7.32537D+01 - 32 -1.18223D+01 6.42677D+01 - 33 7.74534D-08 -3.21779D-08 1.15274D+01 - 34 -1.37497D-02 -7.62524D-02 1.42583D-09 7.32537D+01 - 35 -7.62491D-02 2.73211D-01 -5.96167D-08 -1.18223D+01 6.42677D+01 - 36 1.71847D-08 4.39870D-09 -8.23495D-02 -6.75287D-08 6.31018D-08 1.15274D+01 - 37 -1.09713D+02 -2.12657D+01 -1.95808D-08 1.22522D-02 2.11076D-03 9.36803D-08 3.92892D+02 - 38 -2.21072D+01 -2.37594D+01 2.86649D-09 4.02469D-02 8.64613D-03 1.84846D-09 7.49232D+01 8.59877D+01 - 39 2.83253D-08 5.86617D-08 -1.27707D+01 -2.26093D-08 -7.18503D-08 -1.01866D-03 -4.63674D-08 -5.84206D-08 3.00143D+01 - 40 1.22523D-02 2.11080D-03 -5.75940D-08 -1.09713D+02 -2.12657D+01 2.00881D-08 -7.29242D-03 5.33938D-04 6.63661D-08 3.92892D+02 - 41 4.02468D-02 8.64606D-03 -1.08600D-08 -2.21072D+01 -2.37594D+01 -1.36393D-08 5.34506D-04 -1.93456D-04 4.44335D-08 7.49232D+01 - 42 3.12022D-08 1.08098D-07 -1.01871D-03 -2.01097D-08 -2.26386D-08 -1.27707D+01 -8.70560D-08 -1.77573D-07 -4.37486D-04 4.07980D-09 - 43 -3.08027D+01 1.93772D+01 -2.20968D-08 1.02804D-03 9.97285D-02 7.16479D-09 -4.51862D+00 9.25775D+00 1.66793D-08 -3.72413D-03 - 44 2.12254D+01 -3.26591D+01 5.71672D-09 3.90887D-02 -8.44004D-02 5.42643D-10 -2.77532D+00 2.37434D+00 2.38844D-08 -5.34908D-03 - 45 -4.36699D-09 -6.35259D-09 -4.38022D+00 2.35067D-10 3.84629D-08 7.55765D-03 -2.50463D-08 -1.02345D-08 1.65020D+00 5.21527D-08 - 46 1.02797D-03 9.97285D-02 -1.05263D-08 -3.08027D+01 1.93772D+01 2.67014D-08 -3.72395D-03 -8.48281D-03 -4.19327D-09 -4.51862D+00 - 47 3.90888D-02 -8.44003D-02 -1.22443D-09 2.12254D+01 -3.26591D+01 -3.90816D-09 -5.34911D-03 -1.90884D-02 -3.00425D-10 -2.77532D+00 - 48 8.63888D-10 -3.87252D-08 7.55764D-03 1.85835D-09 1.36396D-08 -4.38022D+00 -5.02727D-08 -1.04521D-08 -1.30280D-03 2.80241D-08 - 49 -3.93883D+00 -2.31110D+00 1.35694D-08 5.33318D-02 2.32461D-02 2.59967D-08 -5.72272D-01 2.24282D+00 5.94175D-08 -7.92119D-03 - 50 8.58333D+00 3.33054D+00 -1.22322D-08 -8.03480D-03 3.83563D-03 -1.62986D-08 2.12150D+00 -3.71565D+00 3.43553D-08 6.18590D-04 - 51 9.34617D-08 1.72833D-07 1.37922D+00 5.39093D-08 9.70571D-08 1.74379D-02 -4.19272D-07 -2.44219D-07 1.39437D+01 3.35401D-07 - 52 5.33320D-02 2.32461D-02 -4.13878D-08 -3.93883D+00 -2.31110D+00 -8.08211D-09 -7.92150D-03 -2.48623D-02 1.25633D-07 -5.72271D-01 - 53 -8.03470D-03 3.83566D-03 2.13271D-08 8.58333D+00 3.33054D+00 2.07422D-08 6.18408D-04 -4.67385D-03 1.48619D-07 2.12150D+00 - 54 4.36383D-08 1.16272D-07 1.74379D-02 5.08891D-08 3.05095D-08 1.37922D+00 -4.02608D-07 -2.28163D-07 2.79944D-03 3.07296D-07 - 55 2.84421D+00 8.23724D+00 4.54575D-08 -1.77257D-02 -1.44307D-02 -6.39094D-08 1.92429D+00 -5.65460D-02 -1.17331D-07 5.40225D-03 - 56 -3.57312D+00 -4.53340D+00 4.97378D-09 -2.90161D-02 -1.56273D-02 2.82248D-08 -1.42282D-01 1.64640D+00 -1.09386D-07 2.28444D-03 - 57 1.66985D-09 1.53504D-07 1.61489D+00 8.30763D-09 -1.89613D-08 -2.16506D-03 -2.92748D-07 -2.22039D-07 -9.19869D+00 3.14123D-07 - 58 -1.77257D-02 -1.44308D-02 5.27514D-08 2.84421D+00 8.23724D+00 -6.66858D-08 5.40227D-03 1.98358D-02 -4.74173D-08 1.92429D+00 - 59 -2.90163D-02 -1.56274D-02 -3.69124D-08 -3.57312D+00 -4.53340D+00 -1.58292D-08 2.28460D-03 1.10362D-02 -6.11695D-08 -1.42282D-01 - 60 5.41784D-08 1.52173D-07 -2.16514D-03 7.25600D-08 -7.58826D-10 1.61489D+00 -3.80538D-07 -2.63841D-07 2.82903D-03 2.27249D-07 + 31 7.32542D+01 + 32 -1.18223D+01 6.42684D+01 + 33 1.06496D-06 -5.02598D-08 1.15282D+01 + 34 -1.38407D-02 -7.61781D-02 -2.22784D-06 7.32542D+01 + 35 -7.61487D-02 2.73210D-01 2.42850D-06 -1.18223D+01 6.42684D+01 + 36 1.00254D-06 7.36260D-08 -8.23884D-02 9.74012D-07 3.01197D-07 1.15282D+01 + 37 -1.09713D+02 -2.12656D+01 1.34589D-06 1.23494D-02 2.12036D-03 -8.83053D-07 3.92893D+02 + 38 -2.21070D+01 -2.37600D+01 -1.37692D-07 4.01907D-02 8.67280D-03 -1.96680D-07 7.49229D+01 8.59901D+01 + 39 -1.04403D-08 -8.72591D-08 -1.27715D+01 -1.13029D-07 -8.25726D-08 -9.71090D-04 8.45761D-08 2.72261D-07 3.00161D+01 + 40 1.23494D-02 2.12103D-03 4.21178D-06 -1.09713D+02 -2.12656D+01 1.95337D-06 -7.20292D-03 5.24915D-04 -2.46295D-06 3.92893D+02 + 41 4.01904D-02 8.67275D-03 -1.48872D-06 -2.21070D+01 -2.37600D+01 -1.58886D-06 5.59187D-04 -1.83904D-04 8.19364D-07 7.49229D+01 + 42 7.70267D-08 -2.41404D-07 -9.70199D-04 2.94288D-08 -2.52991D-07 -1.27715D+01 7.23519D-08 4.16755D-07 -4.64336D-04 3.14730D-07 + 43 -3.08030D+01 1.93772D+01 6.73472D-07 1.03845D-03 9.96748D-02 5.23259D-07 -4.51805D+00 9.25804D+00 -4.17769D-07 -3.86339D-03 + 44 2.12259D+01 -3.26592D+01 4.82582D-08 3.90750D-02 -8.43979D-02 -9.87348D-07 -2.77692D+00 2.37423D+00 -3.95346D-08 -5.26995D-03 + 45 -6.06930D-07 2.37616D-07 -4.37967D+00 -3.12936D-07 3.21996D-08 7.56639D-03 1.15245D-06 -9.15442D-08 1.65016D+00 2.59632D-07 + 46 1.03829D-03 9.96750D-02 9.23603D-07 -3.08030D+01 1.93772D+01 7.71689D-07 -3.86292D-03 -8.41979D-03 -5.58354D-07 -4.51805D+00 + 47 3.90751D-02 -8.43978D-02 1.59601D-07 2.12259D+01 -3.26592D+01 -8.74681D-07 -5.27062D-03 -1.90831D-02 -8.32790D-08 -2.77692D+00 + 48 -4.85577D-07 6.49136D-08 7.56668D-03 -2.11121D-07 -1.09018D-07 -4.37967D+00 1.06633D-06 7.38042D-08 -1.31411D-03 1.99829D-07 + 49 -3.93903D+00 -2.31167D+00 1.27471D-06 5.34387D-02 2.31921D-02 -1.24136D-06 -5.72593D-01 2.24332D+00 -8.35808D-07 -7.89477D-03 + 50 8.58322D+00 3.33026D+00 -4.82564D-07 -8.00785D-03 3.81707D-03 -9.52225D-07 2.12247D+00 -3.71539D+00 2.55900D-07 5.66148D-04 + 51 -4.37004D-07 3.69542D-08 1.37838D+00 -1.02661D-07 -6.58184D-08 1.73731D-02 1.00490D-06 -1.18862D-07 1.39445D+01 2.42894D-07 + 52 5.34394D-02 2.31915D-02 1.74323D-06 -3.93903D+00 -2.31167D+00 -7.51696D-07 -7.89753D-03 -2.48029D-02 -1.09674D-06 -5.72591D-01 + 53 -8.00775D-03 3.81706D-03 3.23352D-07 8.58322D+00 3.33026D+00 -1.27862D-07 5.65284D-04 -4.68270D-03 -1.88573D-07 2.12247D+00 + 54 -3.89619D-07 1.61670D-07 1.73716D-02 -1.09572D-07 -3.27455D-08 1.37838D+00 8.10143D-07 -2.54650D-07 2.83274D-03 9.31509D-08 + 55 2.84417D+00 8.23756D+00 -1.36673D-06 -1.77702D-02 -1.43686D-02 6.03353D-07 1.92395D+00 -5.69487D-02 8.92479D-07 5.49072D-03 + 56 -3.57342D+00 -4.53318D+00 -1.55899D-06 -2.91289D-02 -1.55543D-02 1.27270D-06 -1.41780D-01 1.64601D+00 9.89615D-07 2.21975D-03 + 57 7.03304D-07 -5.60058D-08 1.61421D+00 4.22644D-07 2.18108D-07 -2.30633D-03 -1.65793D-06 -1.43891D-07 -9.19882D+00 -3.97255D-07 + 58 -1.77701D-02 -1.43690D-02 -1.74963D-06 2.84417D+00 8.23756D+00 1.89243D-07 5.49158D-03 1.97672D-02 1.07913D-06 1.92395D+00 + 59 -2.91293D-02 -1.55538D-02 -2.01653D-06 -3.57342D+00 -4.53317D+00 8.18804D-07 2.22171D-03 1.09767D-02 1.17332D-06 -1.41781D-01 + 60 6.89649D-07 5.97460D-08 -2.30677D-03 4.36816D-07 3.05130D-07 1.61421D+00 -1.68566D-06 -2.67925D-07 2.91318D-03 -5.24039D-07 41 42 43 44 45 46 47 48 49 50 ----- ----- ----- ----- ----- - 41 8.59877D+01 - 42 -1.94794D-08 3.00143D+01 - 43 -8.48281D-03 6.64229D-08 7.25694D+01 - 44 -1.90884D-02 -3.64632D-08 -8.85231D+00 7.42922D+01 - 45 8.31118D-09 -1.30282D-03 -1.08628D-07 4.72834D-08 9.49641D+00 - 46 9.25775D+00 3.18580D-08 2.22369D-02 -4.07841D-02 -9.72105D-09 7.25694D+01 - 47 2.37434D+00 -4.59394D-08 -4.07838D-02 1.73309D-02 2.82797D-09 -8.85231D+00 7.42922D+01 - 48 7.18009D-09 1.65020D+00 1.91933D-08 8.47986D-09 9.51568D-04 3.83901D-08 -1.63687D-07 9.49641D+00 - 49 -2.48625D-02 -2.37447D-07 -1.15044D+02 -1.70499D+01 3.05336D-10 -2.01879D-02 -2.89283D-02 -2.75795D-08 4.10717D+02 - 50 -4.67393D-03 -2.29367D-07 -1.76171D+01 -2.32521D+01 -1.92346D-09 -3.97285D-04 2.03490D-03 6.47973D-09 6.01949D+01 7.17964D+01 - 51 5.30282D-08 2.79946D-03 2.76870D-08 -9.37257D-08 -1.11505D+01 -2.66694D-07 5.29599D-08 -7.94268D-04 1.39314D-08 1.98331D-07 - 52 2.24282D+00 -1.94074D-07 -2.01879D-02 -2.89286D-02 2.96469D-08 -1.15044D+02 -1.70499D+01 3.16387D-09 -5.75531D-02 -3.04105D-03 - 53 -3.71565D+00 -1.21147D-07 -3.97289D-04 2.03474D-03 -3.87397D-10 -1.76171D+01 -2.32521D+01 6.19140D-09 -3.04273D-03 -1.60337D-03 - 54 7.02936D-08 1.39437D+01 6.33212D-08 -5.99242D-08 -7.94256D-04 -2.64457D-07 7.93263D-08 -1.11505D+01 3.47657D-08 2.36788D-07 - 55 1.98359D-02 8.85411D-08 -2.89075D+01 -2.92942D+01 5.07414D-10 9.75036D-03 1.36418D-02 1.65070D-09 -1.13611D+00 -2.96573D+01 - 56 1.10363D-02 1.62312D-07 -2.83537D+01 -1.09348D+02 5.82653D-09 1.14581D-02 1.33553D-02 -7.64468D-09 7.45709D+00 1.82252D+00 - 57 9.00498D-08 2.82900D-03 4.17375D-08 -9.58120D-08 -1.02020D+01 -1.97949D-07 7.16942D-08 -4.26051D-03 4.25645D-08 2.21443D-07 - 58 -5.65459D-02 1.68259D-07 9.75040D-03 1.36418D-02 3.68684D-09 -2.89075D+01 -2.92942D+01 5.66729D-08 3.18446D-02 -1.57948D-03 - 59 1.64640D+00 1.92089D-07 1.14582D-02 1.33554D-02 3.71724D-08 -2.83537D+01 -1.09348D+02 2.13056D-08 3.17517D-02 5.09684D-03 - 60 7.55032D-08 -9.19869D+00 4.72144D-08 -7.65905D-08 -4.26048D-03 -1.95686D-07 3.08293D-08 -1.02020D+01 8.93270D-08 2.15031D-07 + 41 8.59901D+01 + 42 3.06752D-07 3.00161D+01 + 43 -8.41957D-03 -2.79060D-07 7.25688D+01 + 44 -1.90833D-02 5.44245D-07 -8.85215D+00 7.42911D+01 + 45 -3.42287D-08 -1.31392D-03 -1.59708D-07 4.18005D-07 9.49437D+00 + 46 9.25804D+00 -4.14802D-07 2.22992D-02 -4.08003D-02 -1.58425D-06 7.25688D+01 + 47 2.37423D+00 4.57536D-07 -4.07683D-02 1.73497D-02 -1.72019D-07 -8.85215D+00 7.42911D+01 + 48 1.00845D-07 1.65016D+00 -2.15594D-07 4.29280D-07 9.34423D-04 3.26763D-07 2.09187D-07 9.49437D+00 + 49 -2.48037D-02 5.18850D-07 -1.15042D+02 -1.70502D+01 -1.95009D-06 -2.02254D-02 -2.89466D-02 1.86185D-06 4.10712D+02 + 50 -4.68256D-03 4.61949D-07 -1.76171D+01 -2.32513D+01 8.64961D-07 -3.96689D-04 2.02513D-03 1.55732D-06 6.01938D+01 7.17943D+01 + 51 2.07086D-08 2.83195D-03 -2.66606D-09 4.15271D-07 -1.11487D+01 1.64230D-07 1.38771D-07 -6.92516D-04 6.36670D-07 -2.44806D-07 + 52 2.24332D+00 2.30374D-07 -2.02243D-02 -2.89476D-02 -2.77009D-06 -1.15042D+02 -1.70502D+01 1.04159D-06 -5.77038D-02 -3.07108D-03 + 53 -3.71539D+00 4.60016D-08 -3.96301D-04 2.02485D-03 -5.12663D-07 -1.76171D+01 -2.32513D+01 1.57655D-07 -3.10272D-03 -1.60692D-03 + 54 -4.49256D-08 1.39445D+01 -2.86144D-09 3.29750D-07 -6.89824D-04 1.09804D-07 1.33581D-07 -1.11487D+01 6.21124D-07 -2.21983D-07 + 55 1.97670D-02 -2.63010D-07 -2.89069D+01 -2.92941D+01 2.16162D-06 9.71272D-03 1.36517D-02 -8.29903D-07 -1.13577D+00 -2.96570D+01 + 56 1.09776D-02 -6.14441D-07 -2.83537D+01 -1.09346D+02 2.39305D-06 1.14797D-02 1.33255D-02 -1.89323D-06 7.45840D+00 1.82246D+00 + 57 7.32134D-08 2.91286D-03 2.12429D-07 -7.82318D-07 -1.02000D+01 -7.64386D-07 -5.33953D-07 -4.02837D-03 -1.21641D-06 6.59093D-07 + 58 -5.69485D-02 -3.49898D-08 9.71209D-03 1.36520D-02 2.84541D-06 -2.89069D+01 -2.92941D+01 -1.48926D-07 3.20028D-02 -1.56214D-03 + 59 1.64601D+00 -3.24183D-07 1.14787D-02 1.33262D-02 3.19540D-06 -2.83537D+01 -1.09346D+02 -1.15496D-06 3.20228D-02 5.17021D-03 + 60 -1.98100D-09 -9.19882D+00 1.77247D-07 -8.54198D-07 -4.02770D-03 -7.74250D-07 -5.88507D-07 -1.02000D+01 -1.06350D-06 7.10907D-07 51 52 53 54 55 56 57 58 59 60 ----- ----- ----- ----- ----- - 51 2.48893D+01 - 52 -4.07827D-09 4.10717D+02 - 53 -1.77128D-08 6.01949D+01 7.17964D+01 - 54 1.87383D-02 3.58652D-07 -2.11651D-07 2.48893D+01 - 55 2.12190D-08 3.18446D-02 -1.57957D-03 2.29435D-08 9.18444D+01 - 56 2.96683D-08 3.17516D-02 5.09667D-03 -5.38555D-08 9.99955D+01 3.89499D+02 - 57 2.20895D+00 2.43599D-07 -2.09600D-07 -2.04472D-02 1.14605D-07 -9.76479D-09 2.48347D+01 - 58 -6.55967D-09 -1.13611D+00 -2.96573D+01 -3.46051D-08 -1.36546D-02 -1.77519D-02 4.45420D-08 9.18444D+01 - 59 3.07732D-08 7.45709D+00 1.82252D+00 -5.38346D-08 -1.77429D-02 -2.31206D-02 1.27547D-07 9.99955D+01 3.89499D+02 - 60 -2.04472D-02 2.37798D-07 -2.39748D-07 2.20895D+00 1.84399D-07 2.93876D-08 2.76931D-02 -1.41354D-07 -8.91166D-08 2.48347D+01 + 51 2.48856D+01 + 52 3.12519D-06 4.10712D+02 + 53 6.85932D-07 6.01938D+01 7.17943D+01 + 54 1.86370D-02 -2.78744D-08 -7.01146D-08 2.48856D+01 + 55 -2.20460D-06 3.20024D-02 -1.56159D-03 7.66038D-07 9.18424D+01 + 56 -2.58354D-06 3.20202D-02 5.17049D-03 1.56475D-06 9.99942D+01 3.89494D+02 + 57 2.20813D+00 1.02418D-06 5.38070D-07 -2.06744D-02 4.98775D-07 1.93618D-06 2.48305D+01 + 58 -2.90202D-06 -1.13577D+00 -2.96570D+01 1.20212D-07 -1.36523D-02 -1.78996D-02 -2.92272D-06 9.18424D+01 + 59 -3.34532D-06 7.45840D+00 1.82246D+00 9.10767D-07 -1.77668D-02 -2.32582D-02 -3.03157D-06 9.99942D+01 3.89494D+02 + 60 -2.06749D-02 1.12159D-06 6.26103D-07 2.20813D+00 4.78990D-07 1.94176D-06 2.74736D-02 5.40209D-07 1.85633D-07 2.48305D+01 @@ -3551,653 +937,653 @@ Iterative solution of linear equations 1 2 3 4 5 6 - Frequency -9.87 -1.35 3.25 6.84 9.13 17.94 - - 1 0.00000 -0.00001 -0.08510 0.02117 -0.04865 0.00000 - 2 0.00000 0.00000 0.02112 0.08511 0.00812 -0.00000 - 3 0.03224 0.08767 -0.00001 0.00000 0.00000 0.04608 - 4 0.00000 -0.00001 -0.08510 0.02116 0.04865 0.00000 - 5 0.00000 0.00000 0.02113 0.08511 -0.00810 -0.00000 - 6 -0.03224 0.08767 -0.00001 0.00000 0.00000 -0.04608 - 7 0.00000 -0.00001 -0.08510 0.02117 -0.01679 0.00000 - 8 0.00000 0.00000 0.02112 0.08510 0.04526 -0.00000 - 9 -0.04845 0.08766 -0.00001 0.00000 0.00000 0.11753 - 10 0.00000 -0.00001 -0.08510 0.02117 0.01678 0.00000 - 11 0.00000 0.00000 0.02113 0.08511 -0.04524 -0.00000 - 12 0.04845 0.08766 -0.00001 0.00000 0.00000 -0.11753 - 13 0.00000 -0.00001 -0.08510 0.02117 0.03078 0.00000 - 14 0.00000 0.00000 0.02112 0.08510 0.03735 -0.00000 - 15 -0.07986 0.08766 -0.00001 0.00000 0.00000 0.07262 - 16 0.00000 -0.00001 -0.08510 0.02117 -0.03079 0.00000 - 17 0.00000 0.00000 0.02113 0.08510 -0.03733 -0.00000 - 18 0.07986 0.08766 -0.00001 0.00000 0.00000 -0.07262 - 19 0.00000 -0.00001 -0.08510 0.02117 -0.02985 0.00000 - 20 -0.00000 -0.00000 0.02112 0.08510 0.08072 -0.00000 - 21 -0.08626 0.08766 -0.00001 0.00000 0.00000 0.20964 - 22 0.00000 -0.00001 -0.08510 0.02117 0.02984 0.00000 - 23 0.00000 0.00000 0.02113 0.08511 -0.08070 -0.00000 - 24 0.08626 0.08766 -0.00001 0.00000 0.00000 -0.20964 - 25 0.00000 -0.00001 -0.08510 0.02114 0.05461 0.00000 - 26 -0.00000 0.00000 0.02112 0.08506 0.06667 -0.00000 - 27 -0.14245 0.08766 -0.00001 0.00000 0.00000 0.13105 - 28 0.00000 -0.00001 -0.08510 0.02116 -0.05461 0.00000 - 29 0.00000 0.00000 0.02113 0.08508 -0.06665 -0.00000 - 30 0.14245 0.08766 -0.00001 0.00000 0.00000 -0.13105 - 31 0.00000 -0.00001 -0.08510 0.02110 0.09911 0.00000 - 32 0.00000 0.00000 0.02113 0.08513 -0.01834 -0.00000 - 33 -0.06300 0.08768 -0.00001 0.00000 0.00000 -0.09782 - 34 0.00000 -0.00001 -0.08509 0.02112 -0.09912 0.00000 - 35 0.00000 0.00000 0.02112 0.08512 0.01836 -0.00000 - 36 0.06300 0.08768 -0.00001 0.00000 0.00000 0.09782 - 37 0.00000 -0.00001 -0.08510 0.02109 0.10768 0.00000 - 38 0.00000 0.00000 0.02112 0.08519 -0.05506 -0.00000 - 39 -0.01443 0.08765 -0.00001 0.00000 0.00000 -0.18828 - 40 0.00000 -0.00001 -0.08508 0.02111 -0.10769 0.00000 - 41 -0.00000 0.00000 0.02111 0.08518 0.05508 -0.00000 - 42 0.01443 0.08765 -0.00001 0.00000 0.00000 0.18828 - 43 0.00000 -0.00001 -0.08510 0.02101 0.13341 0.00000 - 44 0.00000 0.00000 0.02113 0.08505 0.01250 -0.00000 - 45 -0.14245 0.08772 -0.00002 0.00000 0.00000 -0.04404 - 46 0.00000 -0.00001 -0.08508 0.02104 -0.13341 0.00000 - 47 0.00000 0.00000 0.02113 0.08505 -0.01248 -0.00000 - 48 0.14245 0.08772 -0.00001 0.00000 0.00000 0.04404 - 49 0.00000 -0.00001 -0.08510 0.02104 0.12725 0.00000 - 50 -0.00000 0.00000 0.02113 0.08491 0.04950 -0.00000 - 51 -0.19442 0.08775 -0.00002 0.00000 0.00000 0.04608 - 52 0.00000 -0.00001 -0.08508 0.02106 -0.12726 0.00000 - 53 0.00000 0.00000 0.02114 0.08492 -0.04948 -0.00000 - 54 0.19442 0.08775 -0.00001 0.00000 0.00000 -0.04608 - 55 0.00000 -0.00002 -0.08509 0.02090 0.16929 0.00000 - 56 0.00000 0.00000 0.02113 0.08508 0.00170 -0.00000 - 57 -0.15891 0.08773 -0.00002 0.00000 0.00000 -0.08863 - 58 0.00000 -0.00001 -0.08507 0.02093 -0.16929 0.00000 - 59 0.00000 0.00000 0.02113 0.08508 -0.00168 -0.00000 - 60 0.15891 0.08773 -0.00001 0.00000 0.00000 0.08862 + Frequency -10.16 -1.46 3.33 6.77 9.11 17.92 + + 1 0.00001 -0.00007 -0.08495 -0.02223 -0.04843 0.00001 + 2 -0.00000 0.00001 0.02177 -0.08487 0.00885 -0.00001 + 3 -0.03209 0.08763 -0.00007 -0.00001 0.00001 0.04615 + 4 -0.00000 -0.00008 -0.08492 -0.02138 0.04886 0.00000 + 5 -0.00000 0.00001 0.02176 -0.08502 -0.00737 -0.00000 + 6 0.03210 0.08763 -0.00007 -0.00000 0.00001 -0.04614 + 7 0.00001 -0.00007 -0.08494 -0.02196 -0.01657 0.00001 + 8 -0.00001 0.00001 0.02178 -0.08455 0.04599 -0.00001 + 9 0.04867 0.08761 -0.00006 -0.00001 0.00002 0.11743 + 10 0.00000 -0.00007 -0.08493 -0.02166 0.01700 0.00000 + 11 0.00000 0.00002 0.02175 -0.08534 -0.04451 -0.00000 + 12 -0.04866 0.08762 -0.00008 0.00000 -0.00001 -0.11742 + 13 0.00000 -0.00007 -0.08493 -0.02154 0.03100 0.00000 + 14 -0.00001 0.00001 0.02177 -0.08461 0.03808 -0.00001 + 15 0.07993 0.08761 -0.00006 -0.00001 0.00002 0.07246 + 16 0.00001 -0.00007 -0.08495 -0.02208 -0.03057 0.00001 + 17 0.00000 0.00002 0.02175 -0.08527 -0.03660 -0.00000 + 18 -0.07992 0.08763 -0.00008 -0.00000 -0.00000 -0.07245 + 19 0.00001 -0.00007 -0.08495 -0.02207 -0.02963 0.00001 + 20 -0.00001 0.00000 0.02178 -0.08423 0.08145 -0.00001 + 21 0.08664 0.08761 -0.00005 -0.00002 0.00004 0.20946 + 22 0.00000 -0.00007 -0.08493 -0.02155 0.03006 0.00000 + 23 0.00001 0.00002 0.02173 -0.08565 -0.07996 0.00000 + 24 -0.08663 0.08762 -0.00009 0.00001 -0.00002 -0.20946 + 25 -0.00000 -0.00008 -0.08492 -0.02131 0.05482 0.00000 + 26 -0.00001 0.00001 0.02178 -0.08432 0.06740 -0.00001 + 27 0.14257 0.08760 -0.00005 -0.00001 0.00003 0.13076 + 28 0.00001 -0.00006 -0.08495 -0.02227 -0.05439 0.00001 + 29 0.00000 0.00002 0.02174 -0.08549 -0.06591 0.00000 + 30 -0.14256 0.08762 -0.00009 0.00000 -0.00002 -0.13076 + 31 -0.00000 -0.00008 -0.08490 -0.02087 0.09933 -0.00000 + 32 -0.00000 0.00001 0.02176 -0.08512 -0.01760 -0.00000 + 33 0.06272 0.08766 -0.00008 -0.00000 0.00001 -0.09795 + 34 0.00001 -0.00006 -0.08496 -0.02262 -0.09890 0.00001 + 35 -0.00000 0.00001 0.02177 -0.08480 0.01909 -0.00001 + 36 -0.06271 0.08766 -0.00007 -0.00001 0.00001 0.09795 + 37 -0.00001 -0.00008 -0.08490 -0.02078 0.10790 -0.00000 + 38 0.00000 0.00002 0.02174 -0.08551 -0.05433 -0.00000 + 39 0.01382 0.08753 -0.00008 0.00000 -0.00001 -0.18834 + 40 0.00001 -0.00006 -0.08496 -0.02268 -0.10747 0.00002 + 41 -0.00001 0.00001 0.02177 -0.08454 0.05581 -0.00001 + 42 -0.01381 0.08753 -0.00006 -0.00001 0.00003 0.18834 + 43 -0.00001 -0.00009 -0.08489 -0.02048 0.13362 -0.00001 + 44 -0.00000 0.00001 0.02177 -0.08477 0.01323 -0.00001 + 45 0.14245 0.08784 -0.00007 -0.00000 0.00002 -0.04432 + 46 0.00002 -0.00006 -0.08497 -0.02284 -0.13319 0.00002 + 47 -0.00000 0.00001 0.02176 -0.08499 -0.01175 -0.00000 + 48 -0.14244 0.08786 -0.00008 -0.00001 -0.00000 0.04433 + 49 -0.00001 -0.00008 -0.08489 -0.02056 0.12746 -0.00001 + 50 -0.00001 0.00001 0.02179 -0.08431 0.05023 -0.00001 + 51 0.19478 0.08798 -0.00006 -0.00001 0.00003 0.04572 + 52 0.00002 -0.00006 -0.08497 -0.02280 -0.12703 0.00002 + 53 0.00000 0.00002 0.02176 -0.08518 -0.04875 -0.00000 + 54 -0.19476 0.08801 -0.00009 -0.00000 -0.00001 -0.04572 + 55 -0.00001 -0.00009 -0.08487 -0.02005 0.16950 -0.00001 + 56 -0.00000 0.00001 0.02177 -0.08490 0.00243 -0.00001 + 57 0.15880 0.08785 -0.00007 -0.00000 0.00002 -0.08896 + 58 0.00002 -0.00005 -0.08497 -0.02304 -0.16907 0.00002 + 59 -0.00000 0.00001 0.02177 -0.08493 -0.00095 -0.00001 + 60 -0.15878 0.08787 -0.00007 -0.00001 0.00000 0.08896 7 8 9 10 11 12 - Frequency 49.03 81.32 151.71 181.05 265.75 301.27 - - 1 -0.00000 0.00000 -0.00000 0.05678 -0.06710 -0.00000 - 2 -0.00000 -0.00000 0.00000 0.01052 0.02426 -0.00000 - 3 -0.04459 -0.05531 0.02075 0.00000 -0.00000 0.11845 - 4 -0.00000 0.00000 -0.00000 0.05678 0.06710 -0.00000 - 5 -0.00000 -0.00000 0.00000 0.01052 -0.02426 0.00000 - 6 -0.04459 0.05531 0.02075 0.00000 0.00000 -0.11845 - 7 -0.00000 0.00000 -0.00000 0.06198 -0.03562 -0.00000 - 8 -0.00000 -0.00000 0.00000 0.01364 0.05531 0.00000 - 9 -0.05721 0.02665 0.05683 0.00000 -0.00000 0.07801 - 10 -0.00000 0.00000 -0.00000 0.06198 0.03562 -0.00000 - 11 -0.00000 -0.00000 -0.00000 0.01364 -0.05531 -0.00000 - 12 -0.05721 -0.02665 0.05683 0.00000 -0.00000 -0.07801 - 13 -0.00000 0.00000 -0.00000 0.06099 0.04505 -0.00000 - 14 -0.00000 -0.00000 0.00000 0.00643 0.03727 0.00000 - 15 -0.05328 0.08504 0.06572 0.00000 0.00000 -0.06449 - 16 -0.00000 0.00000 -0.00000 0.06099 -0.04505 -0.00000 - 17 -0.00000 -0.00000 0.00000 0.00643 -0.03727 -0.00000 - 18 -0.05328 -0.08504 0.06572 0.00000 0.00000 0.06449 - 19 -0.00000 0.00000 -0.00000 0.06243 -0.05344 -0.00000 - 20 -0.00000 -0.00000 0.00000 0.01382 0.10413 0.00000 - 21 -0.06189 0.05291 0.04388 0.00000 -0.00000 0.11910 - 22 -0.00000 0.00000 -0.00000 0.06243 0.05344 -0.00000 - 23 -0.00000 -0.00000 -0.00000 0.01382 -0.10413 -0.00000 - 24 -0.06189 -0.05291 0.04388 -0.00000 -0.00000 -0.11910 - 25 -0.00000 0.00000 -0.00000 0.05942 0.08282 -0.00000 - 26 -0.00000 -0.00000 0.00000 0.00251 0.08104 0.00000 - 27 -0.05767 0.16009 0.05764 0.00000 0.00000 -0.08322 - 28 -0.00000 0.00000 -0.00000 0.05942 -0.08282 -0.00000 - 29 -0.00000 -0.00000 0.00000 0.00251 -0.08104 -0.00000 - 30 -0.05767 -0.16009 0.05764 -0.00000 0.00000 0.08322 - 31 -0.00000 0.00000 0.00000 -0.03069 0.03030 -0.00000 - 32 -0.00000 -0.00000 -0.00000 0.02870 -0.02383 -0.00000 - 33 -0.01338 0.08998 -0.12599 -0.00000 0.00000 0.03636 - 34 -0.00000 0.00000 0.00000 -0.03069 -0.03030 -0.00000 - 35 -0.00000 -0.00000 -0.00000 0.02870 0.02383 -0.00000 - 36 -0.01338 -0.08998 -0.12599 -0.00000 0.00000 -0.03636 - 37 -0.00000 0.00000 0.00000 -0.05166 0.01289 -0.00000 - 38 -0.00000 -0.00000 -0.00000 0.11818 0.04827 -0.00000 - 39 -0.11914 0.25125 -0.35625 -0.00000 0.00000 0.25934 - 40 -0.00000 0.00000 0.00000 -0.05166 -0.01289 0.00000 - 41 -0.00000 -0.00000 -0.00000 0.11818 -0.04827 -0.00000 - 42 -0.11914 -0.25125 -0.35625 -0.00000 0.00000 -0.25934 - 43 -0.00000 0.00000 0.00000 -0.12655 -0.06659 -0.00000 - 44 -0.00000 -0.00000 0.00000 -0.05557 -0.11206 0.00000 - 45 0.15095 -0.08983 -0.00427 0.00000 -0.00000 0.02101 - 46 -0.00000 0.00000 0.00000 -0.12655 0.06659 0.00000 - 47 -0.00000 -0.00000 0.00000 -0.05557 0.11206 0.00000 - 48 0.15095 0.08983 -0.00427 0.00000 -0.00000 -0.02101 - 49 -0.00000 0.00000 0.00000 -0.10888 -0.04633 -0.00000 - 50 -0.00000 -0.00000 0.00000 -0.15873 -0.22732 0.00000 - 51 0.27570 -0.27843 0.24308 0.00000 -0.00000 -0.20778 - 52 -0.00000 0.00000 0.00000 -0.10888 0.04633 0.00000 - 53 -0.00000 -0.00000 0.00000 -0.15873 0.22732 0.00000 - 54 0.27570 0.27843 0.24308 0.00000 -0.00000 0.20778 - 55 -0.00000 0.00000 0.00000 -0.23087 -0.18385 0.00000 - 56 -0.00000 -0.00000 0.00000 -0.02434 -0.07747 0.00000 - 57 0.16995 -0.05957 -0.14357 -0.00000 0.00000 0.23349 + Frequency 48.95 81.26 151.68 181.05 265.74 301.25 + + 1 -0.00000 -0.00000 -0.00000 0.05678 -0.06710 -0.00000 + 2 0.00000 -0.00000 -0.00000 0.01052 0.02426 0.00000 + 3 -0.04466 0.05533 0.02076 -0.00000 0.00000 -0.11845 + 4 -0.00000 -0.00000 -0.00000 0.05678 0.06710 0.00000 + 5 0.00000 -0.00000 -0.00000 0.01052 -0.02426 -0.00000 + 6 -0.04466 -0.05533 0.02076 0.00000 -0.00000 0.11845 + 7 -0.00000 -0.00000 -0.00000 0.06198 -0.03562 0.00000 + 8 0.00000 -0.00000 -0.00000 0.01363 0.05531 -0.00000 + 9 -0.05727 -0.02671 0.05684 0.00000 -0.00000 -0.07802 + 10 -0.00000 -0.00000 -0.00000 0.06198 0.03562 0.00000 + 11 0.00000 -0.00000 -0.00000 0.01363 -0.05531 -0.00000 + 12 -0.05727 0.02671 0.05684 -0.00000 -0.00000 0.07802 + 13 -0.00000 -0.00000 -0.00000 0.06099 0.04505 0.00000 + 14 0.00000 -0.00000 -0.00000 0.00643 0.03727 -0.00000 + 15 -0.05334 -0.08512 0.06573 0.00000 0.00000 0.06449 + 16 -0.00000 -0.00000 -0.00000 0.06099 -0.04505 -0.00000 + 17 0.00000 -0.00000 -0.00000 0.00643 -0.03727 -0.00000 + 18 -0.05334 0.08512 0.06573 -0.00000 0.00000 -0.06449 + 19 -0.00000 -0.00000 -0.00000 0.06243 -0.05344 0.00000 + 20 0.00000 -0.00000 -0.00000 0.01382 0.10413 0.00000 + 21 -0.06196 -0.05301 0.04389 0.00000 -0.00000 -0.11911 + 22 -0.00000 -0.00000 -0.00000 0.06243 0.05344 0.00000 + 23 0.00000 0.00000 -0.00000 0.01382 -0.10413 -0.00000 + 24 -0.06195 0.05301 0.04389 -0.00000 -0.00000 0.11911 + 25 -0.00000 -0.00000 -0.00000 0.05942 0.08282 0.00000 + 26 0.00000 -0.00000 -0.00000 0.00251 0.08104 0.00000 + 27 -0.05773 -0.16023 0.05764 0.00000 0.00000 0.08322 + 28 -0.00000 -0.00000 -0.00000 0.05942 -0.08282 -0.00000 + 29 0.00000 -0.00000 0.00000 0.00251 -0.08104 -0.00000 + 30 -0.05773 0.16023 0.05764 -0.00000 0.00000 -0.08322 + 31 -0.00000 -0.00000 -0.00000 -0.03069 0.03030 -0.00000 + 32 0.00000 -0.00000 -0.00000 0.02870 -0.02383 -0.00000 + 33 -0.01348 -0.09004 -0.12599 -0.00000 0.00000 -0.03634 + 34 -0.00000 -0.00000 0.00000 -0.03069 -0.03030 0.00000 + 35 0.00000 -0.00000 -0.00000 0.02870 0.02383 0.00000 + 36 -0.01348 0.09004 -0.12599 -0.00000 0.00000 0.03634 + 37 0.00000 -0.00000 -0.00000 -0.05166 0.01289 -0.00000 + 38 0.00000 -0.00000 -0.00000 0.11818 0.04826 0.00000 + 39 -0.11930 -0.25127 -0.35623 -0.00000 0.00000 -0.25932 + 40 -0.00000 -0.00000 0.00000 -0.05166 -0.01289 0.00000 + 41 0.00000 -0.00000 -0.00000 0.11818 -0.04826 -0.00000 + 42 -0.11930 0.25127 -0.35623 -0.00000 0.00000 0.25932 + 43 0.00000 -0.00000 -0.00000 -0.12655 -0.06658 -0.00000 + 44 0.00000 -0.00000 -0.00000 -0.05557 -0.11206 -0.00000 + 45 0.15087 0.08970 -0.00431 0.00000 -0.00000 -0.02102 + 46 -0.00000 0.00000 0.00000 -0.12655 0.06658 0.00000 + 47 0.00000 -0.00000 0.00000 -0.05557 0.11206 0.00000 + 48 0.15087 -0.08970 -0.00431 -0.00000 -0.00000 0.02102 + 49 0.00000 -0.00000 -0.00000 -0.10888 -0.04632 -0.00000 + 50 0.00000 -0.00000 -0.00000 -0.15874 -0.22733 -0.00000 + 51 0.27569 0.27827 0.24304 0.00000 -0.00000 0.20778 + 52 -0.00000 -0.00000 0.00000 -0.10888 0.04633 0.00000 + 53 0.00000 0.00000 0.00000 -0.15874 0.22733 0.00000 + 54 0.27569 -0.27827 0.24304 -0.00000 -0.00000 -0.20778 + 55 0.00000 -0.00000 -0.00000 -0.23087 -0.18385 -0.00000 + 56 0.00000 -0.00000 -0.00000 -0.02434 -0.07747 -0.00000 + 57 0.16983 0.05940 -0.14365 -0.00000 0.00000 -0.23353 58 -0.00000 0.00000 0.00000 -0.23087 0.18385 0.00000 - 59 -0.00000 -0.00000 0.00000 -0.02434 0.07747 0.00000 - 60 0.16995 0.05957 -0.14357 -0.00000 0.00000 -0.23349 + 59 0.00000 -0.00000 0.00000 -0.02434 0.07747 0.00000 + 60 0.16983 -0.05940 -0.14365 -0.00000 -0.00000 0.23353 13 14 15 16 17 18 - Frequency 407.92 424.40 468.98 487.92 578.92 657.87 + Frequency 407.92 424.39 468.98 487.92 578.91 657.85 - 1 0.06233 0.00000 -0.00000 -0.02307 0.03797 -0.00000 - 2 0.06102 0.00000 0.00000 0.03327 -0.06916 0.00000 - 3 -0.00000 0.01084 0.13222 0.00000 0.00000 0.02736 + 1 0.06233 0.00000 0.00000 -0.02307 0.03797 0.00000 + 2 0.06102 0.00000 -0.00000 0.03327 -0.06916 -0.00000 + 3 -0.00000 -0.01085 0.13220 0.00000 0.00000 -0.02734 4 -0.06233 -0.00000 0.00000 -0.02307 -0.03797 0.00000 - 5 -0.06102 -0.00000 -0.00000 0.03327 0.06916 -0.00000 - 6 -0.00000 0.01084 0.13222 0.00000 0.00000 -0.02736 - 7 0.00252 -0.00000 -0.00000 -0.04171 0.07931 -0.00000 - 8 -0.02401 -0.00000 0.00000 0.04783 -0.03825 -0.00000 - 9 -0.00000 0.12087 -0.06190 0.00000 -0.00000 -0.08228 - 10 -0.00252 0.00000 0.00000 -0.04171 -0.07931 0.00000 - 11 0.02401 0.00000 -0.00000 0.04783 0.03825 0.00000 - 12 -0.00000 0.12087 -0.06190 0.00000 -0.00000 0.08228 + 5 -0.06102 -0.00000 -0.00000 0.03327 0.06916 0.00000 + 6 0.00000 -0.01085 0.13220 0.00000 0.00000 0.02734 + 7 0.00252 -0.00000 0.00000 -0.04171 0.07930 0.00000 + 8 -0.02401 -0.00000 -0.00000 0.04783 -0.03826 0.00000 + 9 0.00000 -0.12087 -0.06191 -0.00000 -0.00000 0.08227 + 10 -0.00252 -0.00000 0.00000 -0.04171 -0.07930 0.00000 + 11 0.02401 0.00000 -0.00000 0.04783 0.03826 0.00000 + 12 0.00000 -0.12087 -0.06191 -0.00000 -0.00000 -0.08227 13 -0.07035 -0.00000 0.00000 -0.04286 -0.01392 0.00000 - 14 -0.02928 -0.00000 0.00000 0.05698 -0.01297 -0.00000 - 15 0.00000 -0.12494 -0.03989 -0.00000 0.00000 0.07877 - 16 0.07035 0.00000 -0.00000 -0.04286 0.01392 -0.00000 + 14 -0.02928 -0.00000 -0.00000 0.05698 -0.01297 0.00000 + 15 -0.00000 0.12494 -0.03988 -0.00000 0.00000 -0.07877 + 16 0.07035 0.00000 0.00000 -0.04286 0.01392 0.00000 17 0.02928 0.00000 -0.00000 0.05698 0.01297 0.00000 - 18 0.00000 -0.12494 -0.03989 -0.00000 0.00000 -0.07877 - 19 0.03779 0.00000 -0.00000 -0.04590 0.08498 -0.00000 - 20 -0.11570 -0.00000 0.00000 0.05444 -0.05170 -0.00000 - 21 -0.00000 0.23242 -0.22743 0.00000 -0.00000 -0.11226 - 22 -0.03779 -0.00000 0.00000 -0.04590 -0.08498 0.00000 - 23 0.11570 0.00000 -0.00000 0.05445 0.05170 0.00000 - 24 -0.00000 0.23242 -0.22743 0.00000 -0.00000 0.11226 + 18 -0.00000 0.12494 -0.03988 -0.00000 0.00000 0.07877 + 19 0.03779 -0.00000 0.00000 -0.04590 0.08497 0.00000 + 20 -0.11570 -0.00000 -0.00000 0.05444 -0.05171 0.00000 + 21 0.00000 -0.23240 -0.22744 -0.00000 -0.00000 0.11226 + 22 -0.03779 -0.00000 0.00000 -0.04590 -0.08497 -0.00000 + 23 0.11570 0.00000 -0.00000 0.05444 0.05171 0.00000 + 24 0.00000 -0.23240 -0.22744 -0.00000 -0.00000 -0.11226 25 -0.07248 -0.00000 0.00000 -0.04412 -0.09398 0.00000 - 26 -0.03305 -0.00000 0.00000 0.05565 -0.11018 -0.00000 - 27 0.00000 -0.28133 -0.19196 -0.00000 0.00000 0.13474 - 28 0.07248 0.00000 -0.00000 -0.04412 0.09398 -0.00000 - 29 0.03305 0.00000 -0.00000 0.05565 0.11018 0.00000 - 30 0.00000 -0.28133 -0.19196 -0.00000 0.00000 -0.13474 - 31 0.00243 0.00000 -0.00000 0.09736 0.10217 0.00000 - 32 -0.11048 -0.00000 -0.00000 -0.01407 0.05567 0.00000 - 33 -0.00000 -0.00253 0.04259 0.00000 -0.00000 -0.09644 - 34 -0.00243 -0.00000 -0.00000 0.09736 -0.10217 -0.00000 - 35 0.11048 0.00000 0.00000 -0.01407 -0.05567 0.00000 - 36 -0.00000 -0.00253 0.04259 0.00000 -0.00000 0.09644 - 37 0.01267 0.00000 -0.00000 0.09900 0.10803 0.00000 - 38 -0.16285 -0.00000 -0.00000 -0.02943 0.02986 0.00000 - 39 -0.00000 -0.01385 -0.13641 -0.00000 0.00000 0.13056 - 40 -0.01267 -0.00000 -0.00000 0.09900 -0.10803 -0.00000 - 41 0.16285 0.00000 -0.00000 -0.02943 -0.02986 0.00000 - 42 0.00000 -0.01385 -0.13641 -0.00000 0.00000 -0.13056 + 26 -0.03305 -0.00000 -0.00000 0.05565 -0.11019 0.00000 + 27 -0.00000 0.28135 -0.19195 -0.00000 0.00000 -0.13474 + 28 0.07248 0.00000 0.00000 -0.04412 0.09398 0.00000 + 29 0.03305 0.00000 -0.00000 0.05565 0.11019 0.00000 + 30 -0.00000 0.28135 -0.19195 -0.00000 0.00000 0.13474 + 31 0.00242 -0.00000 -0.00000 0.09736 0.10217 0.00000 + 32 -0.11048 -0.00000 -0.00000 -0.01407 0.05567 -0.00000 + 33 0.00000 0.00253 0.04260 -0.00000 -0.00000 0.09645 + 34 -0.00242 0.00000 -0.00000 0.09736 -0.10217 -0.00000 + 35 0.11048 0.00000 0.00000 -0.01407 -0.05567 -0.00000 + 36 -0.00000 0.00253 0.04260 0.00000 0.00000 -0.09645 + 37 0.01267 -0.00000 -0.00000 0.09900 0.10803 0.00000 + 38 -0.16285 -0.00000 -0.00000 -0.02943 0.02985 -0.00000 + 39 0.00000 0.01386 -0.13640 -0.00000 0.00000 -0.13052 + 40 -0.01267 0.00000 -0.00000 0.09900 -0.10803 -0.00000 + 41 0.16285 0.00000 0.00000 -0.02943 -0.02985 -0.00000 + 42 -0.00000 0.01386 -0.13640 0.00000 -0.00000 0.13052 43 0.03932 0.00000 -0.00000 0.01768 0.01300 0.00000 44 -0.09043 -0.00000 0.00000 -0.10304 -0.03511 -0.00000 - 45 -0.00000 0.00074 -0.01871 -0.00000 -0.00000 0.01639 - 46 -0.03932 -0.00000 0.00000 0.01768 -0.01300 -0.00000 + 45 0.00000 -0.00074 -0.01871 -0.00000 -0.00000 -0.01639 + 46 -0.03932 -0.00000 0.00000 0.01768 -0.01300 0.00000 47 0.09043 0.00000 0.00000 -0.10304 0.03511 0.00000 - 48 -0.00000 0.00074 -0.01871 0.00000 -0.00000 -0.01639 - 49 0.03611 0.00000 -0.00000 0.04793 0.04988 0.00000 - 50 -0.06588 -0.00000 0.00000 -0.27470 -0.25315 -0.00000 - 51 -0.00000 0.02871 0.16235 0.00000 -0.00000 -0.20851 - 52 -0.03611 -0.00000 0.00000 0.04793 -0.04988 -0.00000 - 53 0.06588 0.00000 0.00000 -0.27470 0.25315 0.00000 - 54 -0.00000 0.02871 0.16235 0.00000 -0.00000 0.20851 - 55 0.06842 0.00000 0.00000 -0.14510 -0.19200 -0.00000 - 56 -0.10050 -0.00000 -0.00000 -0.05619 0.02532 0.00000 - 57 0.00000 -0.02538 -0.25320 -0.00000 0.00000 0.35708 - 58 -0.06842 0.00000 0.00000 -0.14510 0.19200 0.00000 - 59 0.10050 0.00000 0.00000 -0.05619 -0.02532 0.00000 - 60 -0.00000 -0.02538 -0.25320 -0.00000 0.00000 -0.35708 + 48 -0.00000 -0.00074 -0.01871 -0.00000 -0.00000 0.01639 + 49 0.03611 0.00000 -0.00000 0.04794 0.04989 -0.00000 + 50 -0.06588 0.00000 0.00000 -0.27471 -0.25315 -0.00000 + 51 -0.00000 -0.02872 0.16237 -0.00000 -0.00000 0.20851 + 52 -0.03611 -0.00000 -0.00000 0.04794 -0.04989 -0.00000 + 53 0.06588 -0.00000 0.00000 -0.27471 0.25315 0.00000 + 54 0.00000 -0.02872 0.16237 -0.00000 0.00000 -0.20851 + 55 0.06843 0.00000 0.00000 -0.14510 -0.19200 0.00000 + 56 -0.10050 -0.00000 -0.00000 -0.05618 0.02532 -0.00000 + 57 0.00000 0.02541 -0.25324 -0.00000 0.00000 -0.35710 + 58 -0.06843 -0.00000 0.00000 -0.14510 0.19200 0.00000 + 59 0.10050 0.00000 0.00000 -0.05618 -0.02532 -0.00000 + 60 -0.00000 0.02541 -0.25324 -0.00000 -0.00000 0.35710 19 20 21 22 23 24 - Frequency 673.47 707.33 735.12 810.69 862.51 893.97 - - 1 -0.04040 0.00000 0.00161 0.00000 -0.00735 -0.00000 - 2 -0.00028 -0.00000 0.01015 -0.00000 -0.03625 -0.00000 - 3 -0.00000 -0.06850 0.00000 0.14256 0.00000 -0.00213 - 4 0.04040 -0.00000 0.00161 0.00000 0.00735 -0.00000 - 5 0.00028 0.00000 0.01015 0.00000 0.03625 0.00000 - 6 0.00000 -0.06850 -0.00000 -0.14256 0.00000 0.00213 - 7 -0.08893 0.00000 -0.03821 0.00000 0.11601 0.00000 - 8 -0.09855 -0.00000 -0.07523 0.00000 0.00186 0.00000 - 9 0.00000 -0.01327 -0.00000 -0.05828 -0.00000 -0.06360 - 10 0.08893 -0.00000 -0.03821 -0.00000 -0.11601 -0.00000 - 11 0.09855 -0.00000 -0.07523 0.00000 -0.00186 0.00000 - 12 -0.00000 -0.01327 0.00000 0.05828 -0.00000 0.06360 - 13 0.06162 0.00000 -0.01410 0.00000 0.11777 0.00000 - 14 -0.12263 0.00000 -0.07362 0.00000 -0.03435 -0.00000 - 15 0.00000 -0.01708 -0.00000 0.05684 0.00000 -0.07061 - 16 -0.06162 -0.00000 -0.01410 0.00000 -0.11777 -0.00000 - 17 0.12263 -0.00000 -0.07362 0.00000 0.03435 0.00000 - 18 0.00000 -0.01708 0.00000 -0.05684 -0.00000 0.07061 - 19 -0.10491 0.00000 -0.01933 0.00000 0.08785 0.00000 - 20 -0.05681 -0.00000 -0.12589 0.00000 0.09835 0.00000 - 21 0.00000 0.25586 -0.00000 -0.15512 -0.00000 0.43166 - 22 0.10491 -0.00000 -0.01933 -0.00000 -0.08785 0.00000 - 23 0.05681 -0.00000 -0.12589 0.00000 -0.09835 -0.00000 - 24 -0.00000 0.25586 -0.00000 0.15512 0.00000 -0.43166 - 25 0.08399 -0.00000 -0.04801 0.00000 0.07287 0.00000 - 26 -0.09557 -0.00000 -0.11190 0.00000 -0.10063 -0.00000 - 27 0.00000 0.25282 0.00000 0.15507 -0.00000 0.44920 - 28 -0.08399 0.00000 -0.04801 0.00000 -0.07287 -0.00000 - 29 0.09557 0.00000 -0.11190 0.00000 0.10063 0.00000 - 30 0.00000 0.25282 -0.00000 -0.15507 0.00000 -0.44920 - 31 0.02095 0.00000 0.07199 -0.00000 -0.03707 -0.00000 - 32 0.00442 0.00000 0.10255 -0.00000 -0.05193 -0.00000 - 33 0.00000 0.09532 0.00000 0.06774 -0.00000 -0.00046 - 34 -0.02095 -0.00000 0.07199 -0.00000 0.03707 -0.00000 - 35 -0.00442 -0.00000 0.10255 -0.00000 0.05193 0.00000 - 36 -0.00000 0.09532 -0.00000 -0.06774 -0.00000 0.00046 - 37 0.02192 0.00000 0.07556 -0.00000 -0.04012 -0.00000 - 38 0.00030 -0.00000 0.10592 -0.00000 -0.05473 -0.00000 - 39 -0.00000 -0.14975 -0.00000 -0.08856 0.00000 -0.00102 - 40 -0.02192 -0.00000 0.07556 -0.00000 0.04012 -0.00000 - 41 -0.00030 0.00000 0.10592 -0.00000 0.05473 0.00000 - 42 0.00000 -0.14975 0.00000 0.08856 0.00000 0.00102 - 43 0.01521 -0.00000 -0.00669 0.00000 0.00136 0.00000 - 44 -0.00833 -0.00000 0.05019 -0.00000 -0.03528 -0.00000 - 45 0.00000 -0.01415 0.00000 -0.00631 0.00000 0.00157 - 46 -0.01521 -0.00000 -0.00669 0.00000 -0.00136 0.00000 - 47 0.00833 0.00000 0.05019 -0.00000 0.03528 0.00000 - 48 0.00000 -0.01415 0.00000 0.00631 0.00000 -0.00157 - 49 0.02124 -0.00000 0.02469 -0.00000 -0.02022 -0.00000 - 50 -0.04492 -0.00000 -0.14774 0.00000 0.09895 0.00000 - 51 0.00000 0.20972 0.00000 0.11597 -0.00000 0.01085 - 52 -0.02124 -0.00000 0.02469 0.00000 0.02022 0.00000 - 53 0.04492 0.00000 -0.14774 0.00000 -0.09895 -0.00000 - 54 -0.00000 0.20972 -0.00000 -0.11597 -0.00000 -0.01085 - 55 -0.01403 -0.00000 -0.20682 0.00000 0.15090 0.00000 - 56 0.00015 -0.00000 0.11207 -0.00000 -0.08152 -0.00000 - 57 -0.00000 -0.35821 -0.00000 -0.22519 -0.00000 -0.01649 - 58 0.01403 0.00000 -0.20682 0.00000 -0.15090 -0.00000 - 59 -0.00015 0.00000 0.11207 -0.00000 0.08152 0.00000 - 60 0.00000 -0.35821 0.00000 0.22519 -0.00000 0.01649 + Frequency 673.47 707.32 735.12 810.72 862.51 893.97 + + 1 -0.04040 0.00000 -0.00161 -0.00000 -0.00735 -0.00000 + 2 -0.00027 -0.00000 -0.01015 0.00000 -0.03625 -0.00000 + 3 -0.00000 -0.06851 0.00000 0.14257 -0.00000 -0.00213 + 4 0.04040 -0.00000 -0.00161 -0.00000 0.00735 0.00000 + 5 0.00027 0.00000 -0.01015 0.00000 0.03625 0.00000 + 6 0.00000 -0.06851 0.00000 -0.14257 0.00000 0.00213 + 7 -0.08893 0.00000 0.03821 0.00000 0.11601 0.00000 + 8 -0.09854 0.00000 0.07523 0.00000 0.00186 -0.00000 + 9 0.00000 -0.01327 -0.00000 -0.05829 0.00000 -0.06359 + 10 0.08893 0.00000 0.03821 -0.00000 -0.11601 -0.00000 + 11 0.09854 0.00000 0.07523 0.00000 -0.00186 -0.00000 + 12 0.00000 -0.01327 0.00000 0.05829 -0.00000 0.06359 + 13 0.06162 -0.00000 0.01410 0.00000 0.11777 0.00000 + 14 -0.12263 0.00000 0.07363 -0.00000 -0.03435 -0.00000 + 15 -0.00000 -0.01708 0.00000 0.05684 0.00000 -0.07062 + 16 -0.06162 -0.00000 0.01410 -0.00000 -0.11777 -0.00000 + 17 0.12263 0.00000 0.07363 0.00000 0.03435 -0.00000 + 18 -0.00000 -0.01708 0.00000 -0.05684 0.00000 0.07062 + 19 -0.10491 0.00000 0.01933 0.00000 0.08785 0.00000 + 20 -0.05681 0.00000 0.12589 0.00000 0.09835 0.00000 + 21 0.00000 0.25589 -0.00000 -0.15514 -0.00000 0.43161 + 22 0.10491 -0.00000 0.01933 -0.00000 -0.08785 -0.00000 + 23 0.05681 0.00000 0.12589 0.00000 -0.09835 -0.00000 + 24 0.00000 0.25589 -0.00000 0.15514 0.00000 -0.43161 + 25 0.08399 0.00000 0.04801 -0.00000 0.07287 -0.00000 + 26 -0.09556 0.00000 0.11190 -0.00000 -0.10064 -0.00000 + 27 -0.00000 0.25286 -0.00000 0.15510 -0.00000 0.44924 + 28 -0.08399 0.00000 0.04801 -0.00000 -0.07287 -0.00000 + 29 0.09556 0.00000 0.11190 0.00000 0.10064 -0.00000 + 30 -0.00000 0.25286 -0.00000 -0.15510 0.00000 -0.44924 + 31 0.02094 -0.00000 -0.07198 -0.00000 -0.03707 0.00000 + 32 0.00441 -0.00000 -0.10255 -0.00000 -0.05193 0.00000 + 33 0.00000 0.09532 -0.00000 0.06773 -0.00000 -0.00046 + 34 -0.02094 -0.00000 -0.07198 0.00000 0.03707 0.00000 + 35 -0.00441 -0.00000 -0.10255 0.00000 0.05193 0.00000 + 36 0.00000 0.09532 -0.00000 -0.06773 0.00000 0.00046 + 37 0.02191 -0.00000 -0.07556 -0.00000 -0.04012 0.00000 + 38 0.00030 -0.00000 -0.10592 -0.00000 -0.05472 0.00000 + 39 0.00000 -0.14968 0.00000 -0.08848 0.00000 -0.00102 + 40 -0.02191 -0.00000 -0.07556 -0.00000 0.04012 0.00000 + 41 -0.00030 -0.00000 -0.10592 0.00000 0.05472 0.00000 + 42 0.00000 -0.14968 0.00000 0.08848 0.00000 0.00102 + 43 0.01521 0.00000 0.00669 -0.00000 0.00136 -0.00000 + 44 -0.00833 -0.00000 -0.05019 -0.00000 -0.03528 0.00000 + 45 0.00000 -0.01414 0.00000 -0.00631 0.00000 0.00157 + 46 -0.01521 0.00000 0.00669 -0.00000 -0.00136 -0.00000 + 47 0.00833 -0.00000 -0.05019 0.00000 0.03528 0.00000 + 48 0.00000 -0.01414 0.00000 0.00631 0.00000 -0.00157 + 49 0.02124 -0.00000 -0.02470 -0.00000 -0.02022 -0.00000 + 50 -0.04491 0.00000 0.14774 0.00000 0.09895 0.00000 + 51 -0.00000 0.20970 -0.00000 0.11595 -0.00000 0.01084 + 52 -0.02124 -0.00000 -0.02470 -0.00000 0.02022 0.00000 + 53 0.04491 0.00000 0.14774 0.00000 -0.09895 -0.00000 + 54 -0.00000 0.20970 -0.00000 -0.11595 -0.00000 -0.01084 + 55 -0.01402 0.00000 0.20682 0.00000 0.15091 0.00000 + 56 0.00015 -0.00000 -0.11207 -0.00000 -0.08152 0.00000 + 57 -0.00000 -0.35820 0.00000 -0.22516 -0.00000 -0.01649 + 58 0.01402 0.00000 0.20682 0.00000 -0.15091 -0.00000 + 59 -0.00015 -0.00000 -0.11207 0.00000 0.08152 0.00000 + 60 -0.00000 -0.35820 0.00000 0.22516 -0.00000 0.01649 25 26 27 28 29 30 - Frequency 896.43 980.89 981.00 1017.88 1036.47 1073.56 - - 1 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00790 - 2 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.02569 - 3 -0.09617 -0.00351 -0.00464 -0.01793 0.00052 -0.00000 - 4 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00790 - 5 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.02569 - 6 -0.09617 0.00351 -0.00464 0.01793 0.00052 -0.00000 - 7 0.00000 0.00000 0.00000 0.00000 0.00000 0.12357 - 8 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00034 - 9 0.05632 -0.00011 -0.00041 0.06702 -0.07537 0.00000 - 10 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.12357 - 11 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00034 - 12 0.05632 0.00011 -0.00041 -0.06702 -0.07537 0.00000 - 13 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.11040 - 14 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.03539 - 15 0.06224 0.00087 0.00351 -0.06477 0.07373 -0.00000 - 16 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.11040 - 17 0.00000 -0.00000 0.00000 0.00000 0.00000 0.03539 - 18 0.06224 -0.00087 0.00351 0.06477 0.07373 -0.00000 - 19 0.00000 0.00000 0.00000 0.00000 0.00000 0.18869 - 20 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.15970 - 21 -0.34859 0.00224 0.00598 -0.45178 0.43577 -0.00000 - 22 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.18869 - 23 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.15970 - 24 -0.34859 -0.00224 0.00598 0.45178 0.43577 -0.00000 - 25 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.23832 - 26 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.11367 - 27 -0.35800 -0.01067 -0.01853 0.42627 -0.41636 0.00000 - 28 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.23832 - 29 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.11367 - 30 -0.35800 0.01067 -0.01853 -0.42627 -0.41636 0.00000 - 31 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00306 - 32 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00131 - 33 0.04810 -0.03547 0.03601 -0.00985 -0.00064 0.00000 - 34 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00306 - 35 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00131 - 36 0.04810 0.03547 0.03601 0.00985 -0.00064 0.00000 - 37 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00224 - 38 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.02105 - 39 -0.02854 0.01369 -0.01385 -0.02068 -0.00305 -0.00000 - 40 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00224 - 41 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.02105 - 42 -0.02854 -0.01369 -0.01385 0.02068 -0.00305 -0.00000 - 43 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00627 - 44 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.01722 - 45 -0.00157 0.10289 -0.10289 0.00161 0.00247 -0.00000 - 46 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00627 - 47 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.01722 - 48 -0.00157 -0.10289 -0.10289 -0.00161 0.00247 -0.00000 - 49 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.01791 - 50 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.05605 - 51 0.05828 -0.42438 0.42434 -0.02614 -0.01922 0.00000 - 52 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.01791 - 53 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.05605 - 54 0.05828 0.42437 0.42435 0.02614 -0.01922 -0.00000 - 55 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.07139 - 56 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.04148 - 57 -0.14366 -0.41777 0.41664 0.02724 -0.00556 0.00000 - 58 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.07139 - 59 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.04148 - 60 -0.14366 0.41776 0.41664 -0.02724 -0.00556 0.00000 + Frequency 896.45 980.81 980.90 1017.88 1036.48 1073.56 + + 1 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00790 + 2 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.02569 + 3 0.09619 0.00352 -0.00464 0.01793 -0.00053 0.00000 + 4 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00790 + 5 0.00000 0.00000 -0.00000 0.00000 0.00000 0.02569 + 6 0.09619 -0.00352 -0.00464 -0.01793 -0.00053 -0.00000 + 7 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.12357 + 8 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00035 + 9 -0.05631 0.00008 -0.00040 -0.06703 0.07538 -0.00000 + 10 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.12357 + 11 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00035 + 12 -0.05631 -0.00008 -0.00040 0.06703 0.07538 0.00000 + 13 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.11040 + 14 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.03539 + 15 -0.06224 -0.00085 0.00351 0.06477 -0.07372 -0.00000 + 16 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.11040 + 17 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.03539 + 18 -0.06224 0.00085 0.00351 -0.06477 -0.07372 -0.00000 + 19 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.18868 + 20 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.15968 + 21 0.34853 -0.00208 0.00597 0.45182 -0.43580 0.00000 + 22 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.18868 + 23 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.15968 + 24 0.34853 0.00208 0.00597 -0.45182 -0.43580 -0.00000 + 25 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.23832 + 26 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.11368 + 27 0.35800 0.01053 -0.01853 -0.42621 0.41633 -0.00000 + 28 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.23832 + 29 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.11368 + 30 0.35800 -0.01053 -0.01853 0.42621 0.41633 0.00000 + 31 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00306 + 32 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00131 + 33 -0.04810 0.03548 0.03601 0.00984 0.00065 -0.00000 + 34 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00306 + 35 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00131 + 36 -0.04810 -0.03548 0.03601 -0.00984 0.00065 -0.00000 + 37 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00224 + 38 -0.00000 0.00000 0.00000 0.00000 0.00000 0.02107 + 39 0.02850 -0.01369 -0.01388 0.02070 0.00304 0.00000 + 40 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00224 + 41 -0.00000 0.00000 0.00000 0.00000 0.00000 0.02107 + 42 0.02850 0.01369 -0.01387 -0.02070 0.00304 0.00000 + 43 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00627 + 44 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.01722 + 45 0.00156 -0.10289 -0.10289 -0.00158 -0.00247 0.00000 + 46 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00627 + 47 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.01722 + 48 0.00156 0.10289 -0.10289 0.00158 -0.00247 -0.00000 + 49 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.01792 + 50 0.00000 -0.00000 0.00000 0.00000 0.00000 0.05607 + 51 -0.05827 0.42438 0.42435 0.02600 0.01921 0.00000 + 52 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.01792 + 53 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.05607 + 54 -0.05827 -0.42439 0.42434 -0.02600 0.01921 0.00000 + 55 0.00000 0.00000 0.00000 0.00000 0.00000 0.07142 + 56 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.04149 + 57 0.14369 0.41774 0.41664 -0.02738 0.00556 -0.00000 + 58 -0.00000 0.00000 0.00000 0.00000 0.00000 0.07142 + 59 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.04149 + 60 0.14369 -0.41775 0.41663 0.02738 0.00556 -0.00000 31 32 33 34 35 36 - Frequency 1102.05 1107.68 1107.83 1110.64 1203.74 1260.97 - - 1 0.04695 0.00000 -0.00000 0.01907 -0.02863 -0.00343 - 2 0.02536 0.00000 0.00000 0.05340 0.04210 -0.06549 - 3 -0.00000 0.00087 -0.00189 -0.00000 -0.00000 -0.00000 - 4 0.04695 -0.00000 -0.00000 -0.01907 -0.02863 0.00343 - 5 0.02536 -0.00000 -0.00000 -0.05340 0.04210 0.06549 - 6 0.00000 0.00087 0.00189 -0.00000 -0.00000 -0.00000 - 7 -0.02102 0.00000 0.00000 0.01974 0.02730 -0.03669 - 8 -0.01933 0.00000 0.00000 0.02742 0.04694 0.02375 - 9 0.00000 0.00297 -0.00254 -0.00000 0.00000 0.00000 - 10 -0.02102 -0.00000 0.00000 -0.01974 0.02730 0.03669 - 11 -0.01933 -0.00000 -0.00000 -0.02742 0.04694 -0.02375 - 12 0.00000 0.00297 0.00254 -0.00000 0.00000 0.00000 - 13 -0.04801 0.00000 0.00000 0.03976 0.01627 -0.03141 - 14 0.00569 -0.00000 -0.00000 -0.01821 -0.07108 -0.00831 - 15 -0.00000 -0.00308 -0.00218 0.00000 0.00000 -0.00000 - 16 -0.04801 -0.00000 -0.00000 -0.03976 0.01627 0.03141 - 17 0.00569 0.00000 0.00000 0.01821 -0.07108 0.00831 - 18 -0.00000 -0.00308 0.00218 0.00000 -0.00000 -0.00000 - 19 0.03412 0.00000 -0.00000 0.01344 -0.06977 -0.18953 - 20 -0.17692 0.00000 0.00000 0.05643 0.33451 0.42653 - 21 0.00000 -0.00462 0.02531 -0.00000 0.00000 -0.00000 - 22 0.03412 -0.00000 -0.00000 -0.01344 -0.06977 0.18953 - 23 -0.17692 -0.00000 0.00000 -0.05643 0.33451 -0.42653 - 24 -0.00000 -0.00462 -0.02531 -0.00000 -0.00000 -0.00000 - 25 -0.05560 0.00000 0.00000 0.08424 -0.24895 -0.27165 - 26 0.00503 0.00000 -0.00000 0.02707 -0.40590 -0.29753 - 27 -0.00000 -0.00364 -0.01729 0.00000 -0.00000 0.00000 - 28 -0.05560 -0.00000 -0.00000 -0.08424 -0.24895 0.27165 - 29 0.00503 -0.00000 -0.00000 -0.02707 -0.40590 0.29753 - 30 0.00000 -0.00364 0.01729 0.00000 0.00000 0.00000 - 31 0.04504 -0.00000 -0.00000 -0.04317 0.00749 -0.02480 - 32 0.02723 -0.00000 -0.00000 -0.02353 0.00840 -0.02169 - 33 -0.00000 0.05838 0.05888 -0.00000 -0.00000 0.00000 - 34 0.04504 0.00000 0.00000 0.04317 0.00749 0.02480 - 35 0.02723 0.00000 0.00000 0.02353 0.00840 0.02169 - 36 -0.00000 0.05838 -0.05888 -0.00000 0.00000 0.00000 - 37 -0.01471 0.00000 0.00000 0.01435 0.00167 -0.00835 - 38 0.29025 -0.00000 -0.00000 -0.27123 0.02887 -0.11096 - 39 0.00000 -0.55234 -0.55188 0.00000 0.00000 0.00000 - 40 -0.01471 -0.00000 0.00000 -0.01435 0.00167 0.00835 - 41 0.29025 0.00000 0.00000 0.27123 0.02887 0.11096 - 42 0.00000 -0.55235 0.55188 0.00000 0.00000 -0.00000 - 43 -0.03774 0.00000 0.00000 0.03461 -0.00346 0.00810 - 44 -0.05944 0.00000 0.00000 0.07151 -0.02144 -0.00126 - 45 -0.00000 -0.00480 -0.00489 0.00000 -0.00000 -0.00000 - 46 -0.03774 -0.00000 0.00000 -0.03461 -0.00346 -0.00810 - 47 -0.05944 -0.00000 -0.00000 -0.07151 -0.02144 0.00126 - 48 0.00000 -0.00480 0.00489 0.00000 -0.00000 -0.00000 - 49 -0.09351 0.00000 0.00000 0.09074 -0.01215 0.01809 - 50 0.28921 -0.00000 -0.00000 -0.28513 0.03880 -0.05436 - 51 0.00000 -0.31355 -0.31254 0.00000 0.00000 0.00000 - 52 -0.09351 -0.00000 -0.00000 -0.09074 -0.01215 -0.01809 - 53 0.28921 0.00000 0.00000 0.28513 0.03880 0.05436 - 54 0.00000 -0.31355 0.31254 0.00000 0.00000 0.00000 - 55 0.30578 -0.00000 -0.00000 -0.33075 0.10345 0.00612 - 56 -0.16347 0.00000 0.00000 0.18341 -0.05499 -0.00223 - 57 -0.00000 0.22715 0.22625 -0.00000 0.00000 0.00000 - 58 0.30578 0.00000 -0.00000 0.33075 0.10345 -0.00612 - 59 -0.16347 -0.00000 -0.00000 -0.18341 -0.05499 0.00223 - 60 -0.00000 0.22715 -0.22625 -0.00000 0.00000 0.00000 + Frequency 1102.04 1107.69 1107.85 1110.64 1203.74 1260.98 + + 1 -0.04694 -0.00000 -0.00000 0.01907 0.02864 -0.00344 + 2 -0.02536 0.00000 0.00000 0.05340 -0.04211 -0.06549 + 3 -0.00000 0.00087 -0.00189 0.00000 0.00000 0.00000 + 4 -0.04694 -0.00000 -0.00000 -0.01907 0.02864 0.00344 + 5 -0.02536 -0.00000 -0.00000 -0.05340 -0.04211 0.06549 + 6 -0.00000 0.00087 0.00189 -0.00000 -0.00000 0.00000 + 7 0.02101 0.00000 0.00000 0.01975 -0.02730 -0.03670 + 8 0.01933 0.00000 0.00000 0.02742 -0.04693 0.02375 + 9 0.00000 0.00297 -0.00255 -0.00000 -0.00000 -0.00000 + 10 0.02101 -0.00000 0.00000 -0.01975 -0.02730 0.03670 + 11 0.01933 -0.00000 -0.00000 -0.02742 -0.04693 -0.02375 + 12 0.00000 0.00297 0.00255 -0.00000 0.00000 -0.00000 + 13 0.04802 0.00000 0.00000 0.03976 -0.01628 -0.03140 + 14 -0.00570 -0.00000 -0.00000 -0.01821 0.07108 -0.00830 + 15 -0.00000 -0.00308 -0.00218 0.00000 0.00000 0.00000 + 16 0.04802 0.00000 0.00000 -0.03976 -0.01628 0.03140 + 17 -0.00570 0.00000 0.00000 0.01821 0.07108 0.00830 + 18 -0.00000 -0.00308 0.00218 0.00000 -0.00000 0.00000 + 19 -0.03413 -0.00000 -0.00000 0.01344 0.06977 -0.18952 + 20 0.17693 0.00000 0.00000 0.05642 -0.33449 0.42650 + 21 -0.00000 -0.00462 0.02531 0.00000 0.00000 0.00000 + 22 -0.03413 -0.00000 -0.00000 -0.01344 0.06977 0.18952 + 23 0.17693 0.00000 0.00000 -0.05642 -0.33449 -0.42650 + 24 -0.00000 -0.00462 -0.02531 0.00000 -0.00000 0.00000 + 25 0.05563 0.00000 0.00000 0.08425 0.24896 -0.27167 + 26 -0.00501 0.00000 0.00000 0.02707 0.40591 -0.29755 + 27 0.00000 -0.00365 -0.01728 -0.00000 -0.00000 -0.00000 + 28 0.05563 -0.00000 -0.00000 -0.08425 0.24896 0.27167 + 29 -0.00501 -0.00000 -0.00000 -0.02707 0.40591 0.29755 + 30 0.00000 -0.00365 0.01728 -0.00000 0.00000 -0.00000 + 31 -0.04504 -0.00000 -0.00000 -0.04318 -0.00748 -0.02481 + 32 -0.02723 -0.00000 -0.00000 -0.02354 -0.00840 -0.02169 + 33 -0.00000 0.05839 0.05888 -0.00000 -0.00000 0.00000 + 34 -0.04504 0.00000 -0.00000 0.04318 -0.00748 0.02481 + 35 -0.02723 0.00000 -0.00000 0.02354 -0.00840 0.02169 + 36 0.00000 0.05839 -0.05889 -0.00000 -0.00000 0.00000 + 37 0.01470 0.00000 0.00000 0.01435 -0.00167 -0.00836 + 38 -0.29024 -0.00000 -0.00000 -0.27121 -0.02885 -0.11096 + 39 0.00000 -0.55238 -0.55188 0.00000 -0.00000 -0.00000 + 40 0.01470 -0.00000 -0.00000 -0.01435 -0.00167 0.00836 + 41 -0.29024 0.00000 -0.00000 0.27121 -0.02885 0.11096 + 42 -0.00000 -0.55235 0.55192 0.00000 0.00000 -0.00000 + 43 0.03775 0.00000 0.00000 0.03461 0.00346 0.00810 + 44 0.05944 0.00000 0.00000 0.07151 0.02144 -0.00126 + 45 -0.00000 -0.00480 -0.00489 0.00000 0.00000 -0.00000 + 46 0.03775 -0.00000 0.00000 -0.03461 0.00346 -0.00810 + 47 0.05944 -0.00000 -0.00000 -0.07151 0.02144 0.00126 + 48 -0.00000 -0.00480 0.00489 -0.00000 0.00000 -0.00000 + 49 0.09351 0.00000 0.00000 0.09074 0.01214 0.01809 + 50 -0.28921 -0.00000 -0.00000 -0.28512 -0.03879 -0.05437 + 51 0.00000 -0.31355 -0.31251 0.00000 0.00000 -0.00000 + 52 0.09351 -0.00000 0.00000 -0.09074 0.01214 -0.01809 + 53 -0.28921 0.00000 -0.00000 0.28512 -0.03879 0.05437 + 54 -0.00000 -0.31353 0.31253 0.00000 0.00000 -0.00000 + 55 -0.30577 -0.00000 -0.00000 -0.33075 -0.10345 0.00611 + 56 0.16347 0.00000 0.00000 0.18341 0.05499 -0.00223 + 57 -0.00000 0.22711 0.22620 -0.00000 -0.00000 0.00000 + 58 -0.30577 0.00000 -0.00000 0.33075 -0.10345 -0.00611 + 59 0.16347 -0.00000 0.00000 -0.18341 0.05499 0.00223 + 60 0.00000 0.22710 -0.22622 0.00000 -0.00000 0.00000 37 38 39 40 41 42 - Frequency 1284.27 1296.19 1350.01 1398.57 1422.10 1427.46 - - 1 -0.04120 0.00126 0.12417 -0.07796 0.01964 0.04504 - 2 0.12978 -0.12803 0.03520 -0.01087 -0.01048 -0.00154 - 3 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 4 -0.04120 -0.00126 0.12417 0.07796 0.01964 -0.04504 - 5 0.12978 0.12803 0.03520 0.01087 -0.01048 0.00154 - 6 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 7 0.00047 -0.03753 -0.05351 -0.00610 0.00048 0.01030 - 8 -0.04828 -0.05690 0.08213 0.01245 0.02855 -0.01863 - 9 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 10 0.00047 0.03753 -0.05351 0.00610 0.00048 -0.01030 - 11 -0.04828 0.05690 0.08213 -0.01245 0.02855 0.01863 - 12 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 13 0.05548 0.00312 -0.04647 0.01128 -0.01627 -0.01264 - 14 0.01801 0.07015 -0.06652 0.03349 -0.02299 -0.01380 - 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 16 0.05548 -0.00312 -0.04647 -0.01128 -0.01627 0.01264 - 17 0.01801 -0.07015 -0.06652 -0.03349 -0.02299 0.01380 - 18 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 19 0.10585 -0.03060 0.03564 0.12122 0.01547 -0.07875 - 20 -0.32491 -0.11290 -0.16308 -0.33257 -0.00674 0.22426 - 21 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 22 0.10585 0.03060 0.03564 -0.12122 0.01547 0.07875 - 23 -0.32491 0.11290 -0.16308 0.33257 -0.00674 -0.22426 - 24 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 25 -0.06400 0.12498 -0.03794 -0.23107 0.02576 0.14483 - 26 -0.12731 0.23416 -0.05327 -0.25732 0.02696 0.17715 - 27 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 28 -0.06400 -0.12498 -0.03794 0.23107 0.02576 -0.14483 - 29 -0.12731 -0.23416 -0.05327 0.25732 0.02696 -0.17715 - 30 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 31 -0.02903 -0.04529 -0.04595 -0.05229 0.06164 -0.04614 - 32 -0.01723 -0.03078 -0.03338 -0.02815 0.01097 -0.00037 - 33 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 34 -0.02903 0.04529 -0.04595 0.05229 0.06164 0.04614 - 35 -0.01723 0.03078 -0.03338 0.02815 0.01097 0.00037 - 36 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 37 0.00842 -0.00842 -0.04728 -0.11330 0.18734 -0.15748 - 38 -0.21091 -0.22645 -0.04890 0.21077 -0.48958 0.44374 - 39 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 40 0.00842 0.00842 -0.04728 0.11330 0.18734 0.15748 - 41 -0.21091 0.22645 -0.04890 -0.21077 -0.48958 -0.44374 - 42 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 43 0.00426 0.01683 0.02584 0.04322 -0.07098 0.06153 - 44 -0.01942 -0.01485 0.01209 0.00816 0.01040 -0.01490 - 45 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 46 0.00426 -0.01683 0.02584 -0.04322 -0.07098 -0.06153 - 47 -0.01942 0.01485 0.01209 -0.00816 0.01040 0.01490 - 48 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 49 0.01091 0.03263 0.04981 0.07900 -0.12421 0.10457 - 50 -0.04584 -0.09141 -0.11904 -0.17606 0.26383 -0.21459 - 51 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 52 0.01091 -0.03263 0.04981 -0.07900 -0.12421 -0.10457 - 53 -0.04584 0.09141 -0.11904 0.17606 0.26383 0.21459 - 54 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 55 0.05818 0.00433 -0.04883 -0.01597 -0.03893 0.03854 - 56 -0.03966 -0.01588 0.03266 0.02236 0.00980 -0.01627 - 57 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 58 0.05818 -0.00433 -0.04883 0.01597 -0.03893 -0.03854 - 59 -0.03966 0.01588 0.03266 -0.02236 0.00980 0.01627 - 60 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + Frequency 1284.28 1296.19 1350.03 1398.58 1422.11 1427.48 + + 1 0.04121 0.00126 -0.12417 -0.07796 0.01964 0.04504 + 2 -0.12978 -0.12803 -0.03521 -0.01087 -0.01047 -0.00154 + 3 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 4 0.04121 -0.00126 -0.12417 0.07796 0.01964 -0.04504 + 5 -0.12978 0.12803 -0.03521 0.01087 -0.01047 0.00154 + 6 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 7 -0.00047 -0.03752 0.05352 -0.00610 0.00048 0.01030 + 8 0.04828 -0.05690 -0.08213 0.01245 0.02855 -0.01862 + 9 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 10 -0.00047 0.03752 0.05352 0.00610 0.00048 -0.01030 + 11 0.04828 0.05690 -0.08213 -0.01245 0.02855 0.01862 + 12 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 13 -0.05548 0.00312 0.04647 0.01128 -0.01627 -0.01265 + 14 -0.01802 0.07015 0.06652 0.03350 -0.02300 -0.01380 + 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 16 -0.05548 -0.00312 0.04647 -0.01128 -0.01627 0.01265 + 17 -0.01802 -0.07015 0.06652 -0.03350 -0.02300 0.01380 + 18 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 19 -0.10586 -0.03060 -0.03564 0.12124 0.01548 -0.07875 + 20 0.32493 -0.11289 0.16307 -0.33260 -0.00675 0.22426 + 21 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 22 -0.10586 0.03060 -0.03564 -0.12124 0.01548 0.07875 + 23 0.32493 0.11288 0.16307 0.33260 -0.00675 -0.22426 + 24 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 25 0.06397 0.12499 0.03795 -0.23106 0.02576 0.14481 + 26 0.12727 0.23416 0.05328 -0.25731 0.02695 0.17713 + 27 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 28 0.06397 -0.12499 0.03795 0.23106 0.02576 -0.14481 + 29 0.12727 -0.23417 0.05328 0.25731 0.02695 -0.17713 + 30 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 31 0.02903 -0.04530 0.04595 -0.05229 0.06164 -0.04614 + 32 0.01723 -0.03078 0.03338 -0.02815 0.01096 -0.00036 + 33 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 34 0.02903 0.04530 0.04595 0.05229 0.06164 0.04614 + 35 0.01723 0.03078 0.03338 0.02815 0.01096 0.00036 + 36 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 37 -0.00841 -0.00843 0.04728 -0.11330 0.18734 -0.15748 + 38 0.21091 -0.22645 0.04889 0.21077 -0.48958 0.44375 + 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 40 -0.00841 0.00843 0.04728 0.11330 0.18734 0.15748 + 41 0.21091 0.22644 0.04889 -0.21077 -0.48958 -0.44375 + 42 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 43 -0.00426 0.01683 -0.02584 0.04321 -0.07098 0.06153 + 44 0.01942 -0.01485 -0.01209 0.00816 0.01040 -0.01490 + 45 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 46 -0.00426 -0.01683 -0.02584 -0.04321 -0.07098 -0.06153 + 47 0.01942 0.01485 -0.01209 -0.00816 0.01040 0.01490 + 48 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 49 -0.01091 0.03264 -0.04981 0.07900 -0.12421 0.10457 + 50 0.04585 -0.09141 0.11905 -0.17606 0.26384 -0.21461 + 51 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 52 -0.01091 -0.03264 -0.04981 -0.07900 -0.12421 -0.10457 + 53 0.04585 0.09141 0.11905 0.17605 0.26384 0.21460 + 54 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 55 -0.05817 0.00433 0.04881 -0.01595 -0.03897 0.03857 + 56 0.03965 -0.01588 -0.03265 0.02235 0.00981 -0.01628 + 57 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 58 -0.05817 -0.00433 0.04881 0.01595 -0.03896 -0.03857 + 59 0.03965 0.01588 -0.03265 -0.02235 0.00981 0.01628 + 60 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 43 44 45 46 47 48 - Frequency 1514.54 1565.52 1575.25 1639.66 1690.89 1738.51 - - 1 -0.08527 0.01922 0.03916 0.02450 -0.13387 -0.00456 - 2 0.00349 0.02693 -0.01784 0.10213 0.01395 -0.08069 - 3 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 4 -0.08527 -0.01922 0.03916 0.02450 0.13387 0.00456 - 5 0.00349 -0.02693 -0.01784 0.10213 -0.01395 0.08069 - 6 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 7 0.04359 -0.01123 -0.00022 0.05014 0.07415 -0.01531 - 8 0.07879 0.02451 -0.03521 -0.07383 -0.05240 0.12506 - 9 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 10 0.04359 0.01123 -0.00022 0.05014 -0.07415 0.01531 - 11 0.07879 -0.02451 -0.03521 -0.07383 0.05240 -0.12506 - 12 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 13 -0.00985 0.01485 -0.02100 -0.07262 -0.09009 -0.04485 - 14 -0.09862 -0.00336 0.02236 -0.04321 -0.02880 -0.11056 - 15 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 16 -0.00985 -0.01485 -0.02100 -0.07262 0.09009 0.04485 - 17 -0.09862 0.00336 0.02236 -0.04321 0.02880 0.11056 - 18 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 19 0.14081 0.01368 -0.06086 -0.07315 0.01804 0.08717 - 20 -0.14094 -0.04283 0.11834 0.28371 0.12912 -0.13561 - 21 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 22 0.14081 -0.01368 -0.06086 -0.07315 -0.01804 -0.08717 - 23 -0.14094 0.04283 0.11834 0.28371 -0.12912 0.13561 - 24 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 25 0.24353 -0.00265 -0.01874 0.14396 0.03693 0.12753 - 26 0.19038 -0.02953 0.03547 0.23627 0.14244 0.08863 - 27 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 28 0.24353 0.00265 -0.01874 0.14396 -0.03693 -0.12753 - 29 0.19038 0.02953 0.03547 0.23627 -0.14244 -0.08863 - 30 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 31 -0.00043 -0.02438 -0.02829 -0.01304 -0.00315 0.00495 - 32 0.04378 0.08496 0.06811 -0.02167 -0.01481 -0.02291 - 33 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 34 -0.00043 0.02438 -0.02829 -0.01304 0.00315 -0.00495 - 35 0.04378 -0.08496 0.06811 -0.02167 0.01481 0.02291 - 36 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 37 -0.00014 0.03403 0.03509 -0.01750 0.01292 -0.00562 - 38 0.03126 -0.17993 -0.21582 -0.01810 -0.07351 0.02451 - 39 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 40 -0.00014 -0.03403 0.03509 -0.01750 -0.01292 0.00562 - 41 0.03126 0.17993 -0.21582 -0.01810 0.07351 -0.02451 - 42 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 43 0.00641 -0.02000 -0.02355 0.01332 -0.01812 -0.00650 - 44 -0.02123 -0.00061 0.00871 -0.01177 0.02548 0.00948 - 45 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 46 0.00641 0.02000 -0.02355 0.01332 0.01812 0.00650 - 47 -0.02123 0.00061 0.00871 -0.01177 -0.02548 -0.00948 - 48 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 49 0.02288 0.05062 0.04686 0.00220 0.00195 -0.00214 - 50 -0.08857 -0.36142 -0.35914 0.05802 -0.10371 -0.02689 - 51 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 52 0.02288 -0.05062 0.04686 0.00220 -0.00195 0.00214 - 53 -0.08857 0.36142 -0.35914 0.05802 0.10371 0.02689 - 54 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 55 0.13520 0.42775 0.40139 -0.08298 0.07990 0.01533 - 56 -0.06598 -0.14594 -0.12813 0.01582 -0.00176 0.00413 - 57 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 58 0.13520 -0.42775 0.40139 -0.08298 -0.07990 -0.01533 - 59 -0.06598 0.14594 -0.12813 0.01582 0.00176 -0.00413 - 60 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + Frequency 1514.55 1565.51 1575.25 1639.67 1690.89 1738.52 + + 1 0.08527 0.01922 0.03916 -0.02450 -0.13387 -0.00455 + 2 -0.00349 0.02693 -0.01785 -0.10213 0.01394 -0.08069 + 3 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 4 0.08527 -0.01922 0.03916 -0.02450 0.13387 0.00455 + 5 -0.00349 -0.02693 -0.01785 -0.10213 -0.01394 0.08069 + 6 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 7 -0.04360 -0.01123 -0.00023 -0.05014 0.07415 -0.01531 + 8 -0.07879 0.02451 -0.03521 0.07383 -0.05240 0.12506 + 9 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 10 -0.04360 0.01123 -0.00023 -0.05014 -0.07415 0.01531 + 11 -0.07879 -0.02451 -0.03521 0.07383 0.05240 -0.12506 + 12 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 13 0.00985 0.01485 -0.02100 0.07262 -0.09009 -0.04485 + 14 0.09862 -0.00336 0.02236 0.04321 -0.02880 -0.11056 + 15 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 16 0.00985 -0.01485 -0.02100 0.07262 0.09009 0.04485 + 17 0.09862 0.00336 0.02236 0.04321 0.02880 0.11056 + 18 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 19 -0.14081 0.01369 -0.06085 0.07316 0.01804 0.08717 + 20 0.14094 -0.04284 0.11832 -0.28373 0.12912 -0.13563 + 21 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 22 -0.14081 -0.01369 -0.06085 0.07316 -0.01804 -0.08717 + 23 0.14094 0.04284 0.11832 -0.28373 -0.12912 0.13563 + 24 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 25 -0.24353 -0.00265 -0.01876 -0.14395 0.03693 0.12753 + 26 -0.19038 -0.02953 0.03544 -0.23627 0.14245 0.08863 + 27 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 28 -0.24353 0.00265 -0.01876 -0.14395 -0.03693 -0.12753 + 29 -0.19038 0.02953 0.03544 -0.23627 -0.14245 -0.08863 + 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 31 0.00043 -0.02437 -0.02828 0.01304 -0.00315 0.00495 + 32 -0.04378 0.08495 0.06810 0.02166 -0.01482 -0.02291 + 33 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 34 0.00043 0.02437 -0.02828 0.01304 0.00315 -0.00495 + 35 -0.04378 -0.08495 0.06810 0.02166 0.01482 0.02291 + 36 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 37 0.00014 0.03404 0.03511 0.01750 0.01293 -0.00562 + 38 -0.03125 -0.17995 -0.21585 0.01811 -0.07350 0.02452 + 39 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 40 0.00014 -0.03404 0.03511 0.01750 -0.01293 0.00562 + 41 -0.03125 0.17995 -0.21585 0.01811 0.07350 -0.02452 + 42 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 43 -0.00641 -0.02001 -0.02357 -0.01332 -0.01813 -0.00650 + 44 0.02123 -0.00060 0.00872 0.01177 0.02548 0.00948 + 45 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 46 -0.00641 0.02001 -0.02357 -0.01332 0.01813 0.00650 + 47 0.02123 0.00060 0.00872 0.01177 -0.02548 -0.00948 + 48 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 49 -0.02288 0.05062 0.04685 -0.00220 0.00195 -0.00215 + 50 0.08858 -0.36142 -0.35913 -0.05800 -0.10371 -0.02689 + 51 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 52 -0.02288 -0.05062 0.04685 -0.00220 -0.00195 0.00215 + 53 0.08858 0.36142 -0.35913 -0.05800 0.10371 0.02689 + 54 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 55 -0.13522 0.42776 0.40140 0.08295 0.07989 0.01532 + 56 0.06598 -0.14594 -0.12813 -0.01581 -0.00175 0.00414 + 57 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 58 -0.13522 -0.42776 0.40140 0.08295 -0.07990 -0.01532 + 59 0.06598 0.14594 -0.12813 -0.01581 0.00175 -0.00414 + 60 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 49 50 51 52 53 54 - Frequency 1814.82 1815.80 3394.05 3394.77 3432.81 3432.86 - - 1 -0.03130 0.01449 -0.00016 0.00015 0.00037 0.00033 - 2 0.00993 -0.02488 -0.00002 0.00005 0.00160 0.00159 - 3 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 4 0.03130 0.01449 -0.00016 -0.00015 0.00037 -0.00033 - 5 -0.00993 -0.02488 -0.00002 -0.00005 0.00160 -0.00159 - 6 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 7 0.01075 -0.00476 -0.00077 0.00028 -0.00152 -0.00201 - 8 0.01758 -0.00541 -0.00008 -0.00011 -0.00056 -0.00076 - 9 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 10 -0.01075 -0.00476 -0.00077 -0.00028 -0.00152 0.00201 - 11 -0.01758 -0.00541 -0.00008 0.00011 -0.00056 0.00076 - 12 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 13 -0.02265 -0.00002 0.00110 0.00097 0.00037 0.00042 - 14 -0.02175 0.01020 -0.00077 -0.00052 0.00018 -0.00055 - 15 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 16 0.02265 -0.00002 0.00110 -0.00097 0.00037 -0.00042 - 17 0.02175 0.01020 -0.00077 0.00052 0.00018 0.00055 - 18 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 19 0.02205 -0.01127 0.00876 -0.00197 0.01770 0.02382 - 20 -0.00276 0.00595 0.00286 -0.00056 0.00539 0.00778 - 21 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 22 -0.02205 -0.01127 0.00876 0.00197 0.01770 -0.02382 - 23 0.00276 0.00595 0.00286 0.00056 0.00539 -0.00778 - 24 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 25 0.00665 -0.02765 -0.01019 -0.00723 -0.00244 -0.00479 - 26 0.01606 -0.01927 0.00766 0.00526 0.00177 0.00358 - 27 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 28 -0.00665 -0.02765 -0.01019 0.00723 -0.00244 0.00479 - 29 -0.01606 -0.01927 0.00766 -0.00526 0.00177 -0.00358 - 30 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 31 -0.07193 -0.07136 -0.01098 -0.01088 -0.05774 0.05776 - 32 0.10891 0.11364 -0.00791 -0.00786 -0.00949 0.00952 - 33 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 34 0.07193 -0.07136 -0.01098 0.01088 -0.05774 -0.05776 - 35 -0.10891 0.11364 -0.00791 0.00786 -0.00949 -0.00952 - 36 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 37 -0.03015 -0.02932 0.17471 0.17277 0.63082 -0.63120 - 38 -0.14276 -0.13893 0.03970 0.03934 0.14648 -0.14658 - 39 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 40 0.03015 -0.02932 0.17471 -0.17277 0.63084 0.63118 - 41 0.14276 -0.13893 0.03970 -0.03934 0.14648 0.14657 - 42 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 43 0.07693 0.07771 -0.02954 -0.02952 0.01393 -0.01385 - 44 -0.09225 -0.09392 0.03603 0.03607 -0.01032 0.01017 - 45 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 46 -0.07693 0.07771 -0.02954 0.02952 0.01393 0.01385 - 47 0.09225 -0.09392 0.03603 -0.03607 -0.01032 -0.01017 - 48 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 49 0.04825 0.04843 0.44961 0.45013 -0.14525 0.14376 - 50 0.19163 0.19578 0.08010 0.08017 -0.02806 0.02781 - 51 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 52 -0.04825 0.04843 0.44961 -0.45013 -0.14525 -0.14376 - 53 -0.19163 0.19578 0.08010 -0.08017 -0.02806 -0.02781 - 54 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 55 -0.17116 -0.17149 -0.14250 -0.14272 0.02993 -0.02939 - 56 -0.03740 -0.03904 -0.45481 -0.45518 0.09575 -0.09407 - 57 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 58 0.17116 -0.17149 -0.14250 0.14272 0.02993 0.02939 - 59 0.03740 -0.03904 -0.45481 0.45518 0.09576 0.09407 - 60 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + Frequency 1814.82 1815.79 3394.02 3394.74 3432.81 3432.86 + + 1 -0.03130 -0.01449 -0.00016 0.00015 -0.00037 0.00033 + 2 0.00993 0.02488 -0.00002 0.00005 -0.00160 0.00159 + 3 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 4 0.03130 -0.01449 -0.00016 -0.00015 -0.00037 -0.00033 + 5 -0.00993 0.02488 -0.00002 -0.00005 -0.00160 -0.00159 + 6 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 7 0.01075 0.00476 -0.00077 0.00028 0.00151 -0.00201 + 8 0.01758 0.00541 -0.00008 -0.00011 0.00056 -0.00076 + 9 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 10 -0.01075 0.00476 -0.00077 -0.00028 0.00151 0.00201 + 11 -0.01758 0.00541 -0.00008 0.00011 0.00056 0.00076 + 12 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 13 -0.02265 0.00002 0.00110 0.00097 -0.00037 0.00042 + 14 -0.02175 -0.01020 -0.00077 -0.00052 -0.00018 -0.00055 + 15 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 16 0.02265 0.00002 0.00110 -0.00097 -0.00037 -0.00042 + 17 0.02175 -0.01020 -0.00077 0.00052 -0.00018 0.00055 + 18 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 19 0.02205 0.01127 0.00877 -0.00198 -0.01766 0.02381 + 20 -0.00276 -0.00595 0.00287 -0.00056 -0.00537 0.00778 + 21 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 22 -0.02205 0.01127 0.00877 0.00198 -0.01766 -0.02381 + 23 0.00276 -0.00595 0.00287 0.00056 -0.00537 -0.00778 + 24 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 25 0.00665 0.02766 -0.01018 -0.00722 0.00243 -0.00481 + 26 0.01606 0.01927 0.00766 0.00525 -0.00176 0.00360 + 27 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 28 -0.00665 0.02766 -0.01018 0.00722 0.00243 0.00481 + 29 -0.01606 0.01927 0.00766 -0.00525 -0.00176 -0.00360 + 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 31 -0.07194 0.07136 -0.01097 -0.01088 0.05774 0.05776 + 32 0.10892 -0.11364 -0.00791 -0.00786 0.00949 0.00953 + 33 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 34 0.07194 0.07136 -0.01097 0.01088 0.05774 -0.05776 + 35 -0.10892 -0.11364 -0.00791 0.00786 0.00949 -0.00953 + 36 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 37 -0.03015 0.02931 0.17461 0.17269 -0.63086 -0.63121 + 38 -0.14278 0.13894 0.03967 0.03933 -0.14649 -0.14658 + 39 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 40 0.03015 0.02931 0.17461 -0.17269 -0.63086 0.63121 + 41 0.14278 0.13894 0.03967 -0.03933 -0.14649 0.14658 + 42 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 43 0.07693 -0.07771 -0.02954 -0.02952 -0.01393 -0.01385 + 44 -0.09225 0.09392 0.03603 0.03607 0.01031 0.01016 + 45 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 46 -0.07693 -0.07771 -0.02954 0.02952 -0.01393 0.01385 + 47 0.09225 0.09392 0.03603 -0.03607 0.01031 -0.01016 + 48 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 49 0.04826 -0.04843 0.44963 0.45014 0.14519 0.14371 + 50 0.19161 -0.19576 0.08010 0.08017 0.02805 0.02780 + 51 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 52 -0.04826 -0.04843 0.44962 -0.45015 0.14519 -0.14371 + 53 -0.19161 -0.19576 0.08010 -0.08018 0.02805 -0.02780 + 54 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 55 -0.17113 0.17147 -0.14250 -0.14272 -0.02990 -0.02936 + 56 -0.03741 0.03905 -0.45483 -0.45520 -0.09567 -0.09400 + 57 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 58 0.17113 0.17147 -0.14250 0.14273 -0.02990 0.02936 + 59 0.03741 0.03905 -0.45482 0.45520 -0.09567 0.09400 + 60 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 55 56 57 58 59 60 - Frequency 3447.87 3451.34 3471.33 3474.29 3546.61 3546.63 + Frequency 3447.86 3451.33 3471.31 3474.27 3546.60 3546.61 1 0.00118 0.00257 -0.00372 -0.00146 0.00015 -0.00016 2 -0.00216 -0.00161 0.00002 -0.00203 -0.00032 0.00032 - 3 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 3 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 4 0.00118 -0.00257 -0.00372 0.00146 0.00015 0.00016 5 -0.00216 0.00161 0.00002 0.00203 -0.00032 -0.00032 - 6 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 7 -0.05178 -0.05188 0.02223 -0.02228 -0.00003 0.00010 - 8 -0.01793 -0.01832 0.01127 -0.01081 0.00002 0.00008 - 9 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 10 -0.05178 0.05188 0.02223 0.02228 -0.00003 -0.00010 - 11 -0.01793 0.01832 0.01127 0.01081 0.00002 -0.00008 - 12 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 13 0.01903 0.01825 0.04225 -0.04266 0.00032 0.00042 - 14 -0.01192 -0.01191 -0.03626 0.03640 -0.00026 -0.00037 - 15 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 16 0.01903 -0.01825 0.04225 0.04266 0.00032 -0.00042 - 17 -0.01192 0.01191 -0.03626 -0.03640 -0.00026 0.00037 - 18 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 19 0.58132 0.58291 -0.24570 0.24107 -0.00015 -0.00072 - 20 0.21359 0.21459 -0.09200 0.08962 0.00006 -0.00029 - 21 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 22 0.58132 -0.58291 -0.24570 -0.24107 -0.00015 0.00072 - 23 0.21359 -0.21460 -0.09200 -0.08962 0.00006 0.00029 - 24 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 25 -0.20600 -0.20191 -0.47840 0.47998 -0.00498 -0.00614 - 26 0.16656 0.16430 0.39220 -0.39319 0.00363 0.00464 - 27 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 28 -0.20600 0.20191 -0.47840 -0.47998 -0.00498 0.00614 - 29 0.16656 -0.16430 0.39220 0.39319 0.00363 -0.00464 - 30 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 31 0.00193 -0.00209 0.00005 -0.00072 0.00316 0.00317 + 6 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 7 -0.05177 -0.05187 0.02225 -0.02231 -0.00003 0.00010 + 8 -0.01792 -0.01831 0.01128 -0.01082 0.00002 0.00008 + 9 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 10 -0.05177 0.05187 0.02225 0.02231 -0.00003 -0.00010 + 11 -0.01792 0.01831 0.01128 0.01082 0.00002 -0.00008 + 12 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 13 0.01905 0.01827 0.04224 -0.04265 0.00032 0.00042 + 14 -0.01193 -0.01193 -0.03625 0.03639 -0.00026 -0.00037 + 15 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 16 0.01905 -0.01827 0.04224 0.04265 0.00032 -0.00042 + 17 -0.01193 0.01193 -0.03625 -0.03639 -0.00026 0.00037 + 18 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 19 0.58125 0.58278 -0.24589 0.24135 -0.00015 -0.00072 + 20 0.21356 0.21455 -0.09207 0.08973 0.00006 -0.00029 + 21 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 22 0.58123 -0.58280 -0.24589 -0.24135 -0.00015 0.00072 + 23 0.21355 -0.21455 -0.09207 -0.08973 0.00006 0.00029 + 24 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 25 -0.20616 -0.20214 -0.47833 0.47989 -0.00498 -0.00614 + 26 0.16670 0.16449 0.39214 -0.39311 0.00363 0.00464 + 27 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 28 -0.20616 0.20214 -0.47833 -0.47988 -0.00498 0.00614 + 29 0.16669 -0.16449 0.39214 0.39311 0.00363 -0.00464 + 30 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 31 0.00192 -0.00209 0.00005 -0.00072 0.00316 0.00317 32 0.00028 -0.00041 -0.00015 -0.00004 0.00067 0.00067 - 33 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 34 0.00193 0.00209 0.00005 0.00072 0.00316 -0.00317 + 33 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 34 0.00192 0.00209 0.00005 0.00072 0.00316 -0.00317 35 0.00028 0.00041 -0.00015 0.00004 0.00067 -0.00067 - 36 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 37 -0.02044 0.02369 0.00260 0.00566 -0.03650 -0.03661 - 38 -0.00351 0.00486 0.00117 0.00001 -0.00653 -0.00655 - 39 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 40 -0.02044 -0.02369 0.00260 -0.00566 -0.03650 0.03661 - 41 -0.00351 -0.00486 0.00117 -0.00001 -0.00653 0.00655 - 42 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 36 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 37 -0.02040 0.02368 0.00262 0.00565 -0.03652 -0.03662 + 38 -0.00350 0.00486 0.00117 0.00001 -0.00653 -0.00655 + 39 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 40 -0.02040 -0.02368 0.00262 -0.00565 -0.03651 0.03663 + 41 -0.00350 -0.00486 0.00117 -0.00001 -0.00653 0.00656 + 42 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 43 -0.00006 0.00030 -0.00022 0.00043 0.05034 0.05033 44 -0.00053 -0.00071 -0.00095 0.00093 0.04415 0.04414 - 45 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 46 -0.00006 -0.00030 -0.00022 -0.00043 0.05034 -0.05034 - 47 -0.00053 0.00071 -0.00095 -0.00093 0.04415 -0.04415 - 48 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 49 -0.00358 -0.00515 -0.00295 0.00049 -0.46702 -0.46701 - 50 -0.00086 -0.00110 -0.00092 0.00049 -0.07799 -0.07798 - 51 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 52 -0.00358 0.00515 -0.00295 -0.00049 -0.46699 0.46704 - 53 -0.00086 0.00110 -0.00092 -0.00049 -0.07798 0.07799 - 54 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 55 0.00231 0.00193 0.00303 -0.00301 -0.13352 -0.13349 - 56 0.00819 0.00590 0.00988 -0.01061 -0.44633 -0.44626 - 57 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 58 0.00231 -0.00193 0.00303 0.00301 -0.13351 0.13350 - 59 0.00819 -0.00590 0.00988 0.01061 -0.44630 0.44629 - 60 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 45 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 46 -0.00006 -0.00030 -0.00022 -0.00043 0.05033 -0.05034 + 47 -0.00053 0.00071 -0.00095 -0.00093 0.04414 -0.04415 + 48 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 49 -0.00360 -0.00515 -0.00294 0.00049 -0.46707 -0.46697 + 50 -0.00087 -0.00110 -0.00091 0.00049 -0.07799 -0.07797 + 51 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 52 -0.00360 0.00515 -0.00294 -0.00049 -0.46695 0.46708 + 53 -0.00087 0.00110 -0.00091 -0.00049 -0.07797 0.07799 + 54 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 55 0.00231 0.00193 0.00303 -0.00301 -0.13353 -0.13348 + 56 0.00821 0.00590 0.00987 -0.01061 -0.44636 -0.44621 + 57 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 58 0.00231 -0.00193 0.00303 0.00301 -0.13350 0.13351 + 59 0.00821 -0.00590 0.00987 0.01061 -0.44625 0.44632 + 60 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 @@ -4205,66 +1591,66 @@ Iterative solution of linear equations Normal Eigenvalue || Derivative Dipole Moments (debye/angs) Mode [cm**-1] || [d/dqX] [d/dqY] [d/dqZ] ------ ---------- || ------------------ ------------------ ----------------- - 1 -9.867 || 0.000 -0.000 -0.000 - 2 -1.353 || 0.000 -0.000 0.000 - 3 3.249 || 0.000 -0.000 -0.000 - 4 6.841 || -0.000 0.000 0.000 - 5 9.128 || -0.000 0.000 -0.000 - 6 17.936 || -0.000 0.000 0.000 - 7 49.034 || 0.000 0.000 0.027 - 8 81.318 || -0.000 -0.000 -0.000 - 9 151.708 || 0.000 -0.000 -0.091 - 10 181.054 || 0.031 -0.073 0.000 - 11 265.748 || 0.000 -0.000 0.000 - 12 301.273 || -0.000 0.000 0.000 - 13 407.919 || 0.000 -0.000 0.000 - 14 424.395 || 0.000 -0.000 -0.049 - 15 468.983 || 0.000 -0.000 0.372 - 16 487.924 || 0.018 -0.214 0.000 - 17 578.923 || -0.000 0.000 0.000 - 18 657.872 || 0.000 0.000 -0.000 - 19 673.471 || 0.000 -0.000 -0.000 - 20 707.330 || 0.000 0.000 -0.105 - 21 735.119 || -0.024 0.319 -0.000 - 22 810.690 || -0.000 0.000 -0.000 - 23 862.507 || -0.000 0.000 -0.000 - 24 893.972 || -0.000 0.000 0.000 - 25 896.429 || 0.000 -0.000 0.788 - 26 980.893 || -0.000 0.000 -0.000 - 27 980.995 || 0.000 -0.000 0.930 - 28 1017.881 || 0.000 -0.000 0.000 - 29 1036.472 || 0.000 0.000 -0.013 - 30 1073.557 || 0.014 -0.106 0.000 - 31 1102.050 || 0.034 0.456 0.000 - 32 1107.676 || -0.000 0.000 -0.558 - 33 1107.831 || 0.000 -0.000 -0.000 - 34 1110.642 || -0.000 -0.000 0.000 - 35 1203.738 || -0.090 0.165 0.000 - 36 1260.972 || 0.000 0.000 0.000 - 37 1284.271 || 0.024 0.025 -0.000 - 38 1296.187 || 0.000 0.000 0.000 - 39 1350.012 || -0.050 -0.460 -0.000 - 40 1398.572 || 0.000 -0.000 -0.000 - 41 1422.098 || -0.086 0.440 0.000 - 42 1427.463 || -0.000 -0.000 0.000 - 43 1514.545 || 0.648 0.167 -0.000 - 44 1565.520 || -0.000 -0.000 -0.000 - 45 1575.253 || 0.082 0.084 0.000 - 46 1639.662 || -0.039 0.601 -0.000 - 47 1690.892 || -0.000 -0.000 0.000 - 48 1738.512 || -0.000 -0.000 -0.000 - 49 1814.824 || 0.000 -0.000 0.000 - 50 1815.797 || -0.188 -0.009 0.000 - 51 3394.049 || 0.362 -1.487 0.000 - 52 3394.769 || -0.000 0.000 -0.000 - 53 3432.813 || 0.068 -0.287 0.000 - 54 3432.857 || -0.000 0.000 0.000 - 55 3447.869 || 0.173 0.028 -0.000 - 56 3451.342 || -0.000 0.000 0.000 - 57 3471.325 || -0.347 0.112 0.000 - 58 3474.289 || 0.000 -0.000 -0.000 - 59 3546.614 || 0.012 -0.020 0.000 - 60 3546.627 || 0.000 -0.000 0.000 + 1 -10.163 || -0.000 -0.000 -0.000 + 2 -1.457 || 0.000 -0.000 0.000 + 3 3.326 || 0.000 -0.000 -0.000 + 4 6.771 || -0.000 0.000 -0.000 + 5 9.111 || -0.000 0.000 -0.000 + 6 17.920 || -0.000 -0.000 -0.000 + 7 48.949 || 0.000 0.000 0.026 + 8 81.258 || -0.000 -0.000 0.000 + 9 151.679 || -0.000 0.000 -0.091 + 10 181.052 || 0.031 -0.073 -0.000 + 11 265.745 || -0.000 -0.000 -0.000 + 12 301.255 || 0.000 -0.000 -0.000 + 13 407.919 || 0.000 -0.000 -0.000 + 14 424.394 || 0.000 -0.000 0.049 + 15 468.984 || 0.000 -0.000 0.372 + 16 487.920 || 0.018 -0.214 0.000 + 17 578.915 || -0.000 -0.000 -0.000 + 18 657.852 || -0.000 -0.000 -0.000 + 19 673.474 || -0.000 0.000 0.000 + 20 707.323 || -0.000 0.000 -0.105 + 21 735.116 || 0.024 -0.318 0.000 + 22 810.722 || -0.000 0.000 0.000 + 23 862.506 || -0.000 -0.000 -0.000 + 24 893.969 || 0.000 0.000 -0.000 + 25 896.450 || -0.000 -0.000 0.788 + 26 980.811 || 0.000 -0.000 0.000 + 27 980.898 || 0.000 -0.000 0.931 + 28 1017.883 || 0.000 0.000 0.000 + 29 1036.477 || -0.000 0.000 0.013 + 30 1073.561 || -0.014 0.107 -0.000 + 31 1102.044 || -0.034 -0.456 0.000 + 32 1107.690 || 0.000 -0.000 -0.558 + 33 1107.846 || -0.000 -0.000 0.000 + 34 1110.635 || -0.000 0.000 0.000 + 35 1203.741 || 0.090 -0.165 0.000 + 36 1260.981 || -0.000 -0.000 0.000 + 37 1284.285 || -0.024 -0.027 -0.000 + 38 1296.192 || 0.000 0.000 -0.000 + 39 1350.027 || 0.050 0.459 0.000 + 40 1398.580 || -0.000 -0.000 0.000 + 41 1422.114 || -0.086 0.439 -0.000 + 42 1427.476 || 0.000 -0.000 -0.000 + 43 1514.547 || -0.648 -0.166 0.000 + 44 1565.514 || 0.000 0.000 0.000 + 45 1575.249 || 0.081 0.083 -0.000 + 46 1639.671 || 0.039 -0.600 0.000 + 47 1690.894 || -0.000 0.000 0.000 + 48 1738.522 || 0.000 0.000 -0.000 + 49 1814.823 || -0.000 0.000 0.000 + 50 1815.793 || 0.188 0.009 0.000 + 51 3394.021 || -0.361 1.489 0.000 + 52 3394.745 || -0.000 0.000 0.000 + 53 3432.814 || -0.067 0.289 0.000 + 54 3432.859 || 0.000 -0.000 -0.000 + 55 3447.865 || 0.172 0.028 0.000 + 56 3451.333 || -0.000 -0.000 0.000 + 57 3471.308 || -0.346 0.112 0.000 + 58 3474.273 || 0.000 -0.000 -0.000 + 59 3546.598 || 0.012 -0.020 0.000 + 60 3546.610 || 0.000 -0.000 -0.000 ---------------------------------------------------------------------------- @@ -4275,76 +1661,76 @@ Iterative solution of linear equations Normal Eigenvalue || Infra Red Intensities Mode [cm**-1] || [atomic units] [(debye/angs)**2] [(KM/mol)] [arbitrary] ------ ---------- || -------------- ----------------- ---------- ----------- - 1 -9.867 || 0.000000 0.000 0.000 0.000 - 2 -1.353 || 0.000000 0.000 0.000 0.000 - 3 3.249 || 0.000000 0.000 0.000 0.000 - 4 6.841 || 0.000000 0.000 0.000 0.000 - 5 9.128 || 0.000000 0.000 0.000 0.000 - 6 17.936 || 0.000000 0.000 0.000 0.000 - 7 49.034 || 0.000031 0.001 0.030 0.068 - 8 81.318 || 0.000000 0.000 0.000 0.000 - 9 151.708 || 0.000359 0.008 0.350 0.796 - 10 181.054 || 0.000273 0.006 0.266 0.607 - 11 265.748 || 0.000000 0.000 0.000 0.000 - 12 301.273 || 0.000000 0.000 0.000 0.000 + 1 -10.163 || 0.000000 0.000 0.000 0.000 + 2 -1.457 || 0.000000 0.000 0.000 0.000 + 3 3.326 || 0.000000 0.000 0.000 0.000 + 4 6.771 || 0.000000 0.000 0.000 0.000 + 5 9.111 || 0.000000 0.000 0.000 0.000 + 6 17.920 || 0.000000 0.000 0.000 0.000 + 7 48.949 || 0.000030 0.001 0.029 0.066 + 8 81.258 || 0.000000 0.000 0.000 0.000 + 9 151.679 || 0.000361 0.008 0.352 0.801 + 10 181.052 || 0.000273 0.006 0.266 0.606 + 11 265.745 || 0.000000 0.000 0.000 0.000 + 12 301.255 || 0.000000 0.000 0.000 0.000 13 407.919 || 0.000000 0.000 0.000 0.000 - 14 424.395 || 0.000104 0.002 0.101 0.230 - 15 468.983 || 0.006013 0.139 5.862 13.348 - 16 487.924 || 0.001991 0.046 1.941 4.420 - 17 578.923 || 0.000000 0.000 0.000 0.000 - 18 657.872 || 0.000000 0.000 0.000 0.000 - 19 673.471 || 0.000000 0.000 0.000 0.000 - 20 707.330 || 0.000476 0.011 0.464 1.057 - 21 735.119 || 0.004427 0.102 4.316 9.827 - 22 810.690 || 0.000000 0.000 0.000 0.000 - 23 862.507 || 0.000000 0.000 0.000 0.000 - 24 893.972 || 0.000000 0.000 0.000 0.000 - 25 896.429 || 0.026921 0.621 26.244 59.759 - 26 980.893 || 0.000000 0.000 0.000 0.000 - 27 980.995 || 0.037511 0.865 36.567 83.267 - 28 1017.881 || 0.000000 0.000 0.000 0.000 - 29 1036.472 || 0.000007 0.000 0.007 0.016 - 30 1073.557 || 0.000499 0.012 0.486 1.108 - 31 1102.050 || 0.009062 0.209 8.834 20.117 - 32 1107.676 || 0.013506 0.312 13.166 29.980 - 33 1107.831 || 0.000000 0.000 0.000 0.000 - 34 1110.642 || 0.000000 0.000 0.000 0.000 - 35 1203.738 || 0.001529 0.035 1.491 3.394 - 36 1260.972 || 0.000000 0.000 0.000 0.000 - 37 1284.271 || 0.000054 0.001 0.052 0.119 - 38 1296.187 || 0.000000 0.000 0.000 0.000 - 39 1350.012 || 0.009260 0.214 9.027 20.555 - 40 1398.572 || 0.000000 0.000 0.000 0.000 - 41 1422.098 || 0.008709 0.201 8.490 19.333 - 42 1427.463 || 0.000000 0.000 0.000 0.000 - 43 1514.545 || 0.019391 0.447 18.903 43.044 - 44 1565.520 || 0.000000 0.000 0.000 0.000 - 45 1575.253 || 0.000597 0.014 0.582 1.325 - 46 1639.662 || 0.015700 0.362 15.305 34.850 - 47 1690.892 || 0.000000 0.000 0.000 0.000 - 48 1738.512 || 0.000000 0.000 0.000 0.000 - 49 1814.824 || 0.000000 0.000 0.000 0.000 - 50 1815.797 || 0.001538 0.035 1.500 3.415 - 51 3394.049 || 0.101455 2.341 98.903 225.212 - 52 3394.769 || 0.000000 0.000 0.000 0.000 - 53 3432.813 || 0.003768 0.087 3.673 8.363 - 54 3432.857 || 0.000000 0.000 0.000 0.000 - 55 3447.869 || 0.001332 0.031 1.299 2.958 - 56 3451.342 || 0.000000 0.000 0.000 0.000 - 57 3471.325 || 0.005757 0.133 5.613 12.780 - 58 3474.289 || 0.000000 0.000 0.000 0.000 - 59 3546.614 || 0.000023 0.001 0.023 0.052 - 60 3546.627 || 0.000000 0.000 0.000 0.000 + 14 424.394 || 0.000104 0.002 0.101 0.231 + 15 468.984 || 0.006007 0.139 5.856 13.320 + 16 487.920 || 0.001998 0.046 1.948 4.431 + 17 578.915 || 0.000000 0.000 0.000 0.000 + 18 657.852 || 0.000000 0.000 0.000 0.000 + 19 673.474 || 0.000000 0.000 0.000 0.000 + 20 707.323 || 0.000480 0.011 0.468 1.064 + 21 735.116 || 0.004421 0.102 4.310 9.804 + 22 810.722 || 0.000000 0.000 0.000 0.000 + 23 862.506 || 0.000000 0.000 0.000 0.000 + 24 893.969 || 0.000000 0.000 0.000 0.000 + 25 896.450 || 0.026920 0.621 26.243 59.694 + 26 980.811 || 0.000000 0.000 0.000 0.000 + 27 980.898 || 0.037600 0.867 36.654 83.375 + 28 1017.883 || 0.000000 0.000 0.000 0.000 + 29 1036.477 || 0.000007 0.000 0.007 0.016 + 30 1073.561 || 0.000504 0.012 0.491 1.117 + 31 1102.044 || 0.009064 0.209 8.836 20.100 + 32 1107.690 || 0.013481 0.311 13.142 29.893 + 33 1107.846 || 0.000000 0.000 0.000 0.000 + 34 1110.635 || 0.000000 0.000 0.000 0.000 + 35 1203.741 || 0.001536 0.035 1.497 3.406 + 36 1260.981 || 0.000000 0.000 0.000 0.000 + 37 1284.285 || 0.000056 0.001 0.055 0.124 + 38 1296.192 || 0.000000 0.000 0.000 0.000 + 39 1350.027 || 0.009255 0.214 9.022 20.521 + 40 1398.580 || 0.000000 0.000 0.000 0.000 + 41 1422.114 || 0.008675 0.200 8.457 19.236 + 42 1427.476 || 0.000000 0.000 0.000 0.000 + 43 1514.547 || 0.019376 0.447 18.889 42.966 + 44 1565.514 || 0.000000 0.000 0.000 0.000 + 45 1575.249 || 0.000588 0.014 0.573 1.304 + 46 1639.671 || 0.015691 0.362 15.296 34.794 + 47 1690.894 || 0.000000 0.000 0.000 0.000 + 48 1738.522 || 0.000000 0.000 0.000 0.000 + 49 1814.823 || 0.000000 0.000 0.000 0.000 + 50 1815.793 || 0.001535 0.035 1.497 3.404 + 51 3394.021 || 0.101750 2.347 99.191 225.626 + 52 3394.745 || 0.000000 0.000 0.000 0.000 + 53 3432.814 || 0.003804 0.088 3.708 8.435 + 54 3432.859 || 0.000000 0.000 0.000 0.000 + 55 3447.865 || 0.001314 0.030 1.281 2.914 + 56 3451.333 || 0.000000 0.000 0.000 0.000 + 57 3471.308 || 0.005727 0.132 5.583 12.699 + 58 3474.273 || 0.000000 0.000 0.000 0.000 + 59 3546.598 || 0.000024 0.001 0.023 0.053 + 60 3546.610 || 0.000000 0.000 0.000 0.000 ---------------------------------------------------------------------------- - - + + Vibrational analysis via the FX method --- with translations and rotations projected out --- --- via the Eckart algorithm --- - Projected Nuclear Hessian trans-rot subspace norm:1.6954D-33 + Projected Nuclear Hessian trans-rot subspace norm:7.7198D-33 (should be close to zero!) -------------------------------------------------------- @@ -4354,236 +1740,236 @@ Iterative solution of linear equations 1 2 3 4 5 6 7 8 9 10 ----- ----- ----- ----- ----- - 1 6.04379D+01 - 2 1.45070D-01 5.88027D+01 - 3 -1.83457D-07 8.47636D-08 1.31747D+01 - 4 -7.00966D+00 1.31534D+00 1.39564D-07 6.04379D+01 - 5 1.31535D+00 8.54294D-01 -1.00583D-07 1.45070D-01 5.88027D+01 - 6 -8.02482D-08 9.24390D-08 -7.47350D-01 2.63238D-07 2.36488D-08 1.31747D+01 - 7 -2.21706D+01 1.15478D+01 7.16920D-08 1.76228D+00 -3.07982D+00 6.49161D-08 6.86228D+01 - 8 4.45971D+00 -1.74172D+01 -7.79202D-08 -9.06143D+00 -1.31704D+00 -7.26655D-08 4.62189D+00 6.31121D+01 - 9 -1.14460D-07 1.49614D-07 -5.54097D+00 1.75142D-07 -3.12760D-08 5.77012D-01 3.45029D-08 2.59215D-07 1.17720D+01 - 10 1.76228D+00 -3.07982D+00 -1.24524D-08 -2.21706D+01 1.15478D+01 -1.76021D-08 -6.73246D-01 2.26146D+00 -7.17612D-08 6.86228D+01 - 11 -9.06143D+00 -1.31704D+00 3.62290D-08 4.45971D+00 -1.74172D+01 5.17215D-08 2.26147D+00 -6.38033D+00 2.44113D-08 4.62189D+00 - 12 -6.49012D-08 1.40081D-07 5.77012D-01 2.20321D-07 -5.04950D-08 -5.54097D+00 6.75348D-08 2.90268D-07 -5.94074D-01 -1.03789D-07 - 13 5.11168D+00 8.53456D-01 -2.34372D-08 -2.64809D+01 -8.05825D+00 -5.36927D-08 -1.28545D+01 1.13599D+00 -2.34044D-09 -4.97396D+00 - 14 6.70471D+00 -4.60716D+00 1.06145D-07 -1.29276D+00 -1.28897D+01 2.44066D-08 -7.41466D+00 -3.14760D+01 -6.71816D-08 -4.89956D-01 - 15 9.61308D-08 -1.47178D-07 5.85676D-01 -2.86313D-07 2.68597D-08 -5.64376D+00 -1.06531D-07 -2.45014D-07 -5.20672D+00 7.37456D-08 - 16 -2.64809D+01 -8.05825D+00 -5.91489D-08 5.11168D+00 8.53456D-01 -9.15133D-08 -4.97396D+00 4.43996D+00 -1.14614D-08 -1.28545D+01 - 17 -1.29276D+00 -1.28897D+01 6.70327D-08 6.70471D+00 -4.60716D+00 -1.08774D-08 -4.89957D-01 6.23037D+00 -8.22488D-08 -7.41466D+00 - 18 1.35032D-07 -1.37840D-07 -5.64376D+00 -2.39423D-07 3.32533D-08 5.85676D-01 -5.79075D-08 -2.68931D-07 5.41713D-01 1.22609D-07 - 19 -4.19785D+00 -3.86470D+00 -2.39199D-07 3.50648D-01 1.08889D-02 -1.22334D-07 -1.05255D+02 -3.16204D+01 1.25078D-07 3.01129D-01 - 20 6.72941D+00 2.87433D+00 -1.69235D-07 4.28065D-01 -1.50687D+00 -1.13692D-07 -3.16236D+01 -3.05532D+01 -9.26180D-08 1.70005D-01 - 21 1.12058D-07 1.11592D-07 6.89106D-01 4.63746D-08 -2.86950D-08 2.53580D+00 1.84172D-08 1.51600D-07 -1.14737D+01 -4.66548D-08 - 22 3.50647D-01 1.08894D-02 -2.29775D-07 -4.19785D+00 -3.86470D+00 -1.23221D-07 3.01130D-01 2.26210D-01 1.15092D-07 -1.05255D+02 - 23 4.28064D-01 -1.50687D+00 -6.40402D-08 6.72942D+00 2.87433D+00 -2.31748D-08 1.70005D-01 -1.43408D-01 7.91258D-09 -3.16236D+01 - 24 3.39934D-08 8.80630D-08 2.53580D+00 -3.28112D-08 -7.82791D-08 6.89106D-01 -8.42494D-09 1.84005D-07 -2.54207D-01 -2.24501D-08 - 25 4.25430D-02 -5.24501D-01 4.37453D-08 -4.33555D+00 6.47284D+00 -1.00721D-07 2.61340D+00 -3.26054D+00 -2.09170D-07 -1.07183D+00 - 26 -9.72307D-01 -1.15656D+00 1.92585D-08 -4.01993D+00 3.68340D+00 6.09485D-08 8.13582D+00 -3.85917D+00 3.99663D-08 -7.37275D-01 - 27 1.29565D-07 -1.57889D-09 2.54138D+00 -6.08880D-08 -4.86480D-08 8.14736D-01 -1.51615D-08 3.91560D-08 1.04766D+00 5.17230D-08 - 28 -4.33555D+00 6.47284D+00 3.43694D-07 4.25427D-02 -5.24503D-01 1.86883D-07 -1.07183D+00 -1.17321D+00 9.03699D-08 2.61340D+00 - 29 -4.01993D+00 3.68339D+00 -2.03374D-07 -9.72306D-01 -1.15656D+00 -1.60413D-07 -7.37275D-01 -4.41820D-01 -1.24608D-07 8.13582D+00 - 30 7.10087D-08 1.42997D-08 8.14736D-01 -1.59076D-07 -2.32904D-08 2.54138D+00 -8.71397D-08 -2.85522D-08 2.21631D+00 3.23058D-08 - 31 -1.89631D-02 1.29556D-01 -4.09930D-08 -1.02953D+01 -4.67891D+00 -2.75736D-08 -5.34143D-01 -7.18491D-02 -9.95938D-09 5.38023D-01 - 32 -2.82214D-02 -5.03070D-01 -1.53334D-08 -2.21578D+00 -1.97806D+01 -1.78649D-08 -1.40896D-01 8.43310D-01 -6.90416D-08 5.46619D-01 - 33 -1.29501D-09 -5.89529D-08 -8.24739D-02 -2.93199D-08 5.82076D-08 -5.28319D+00 -1.56358D-08 3.50812D-09 5.74229D-01 1.73457D-08 - 34 -1.02953D+01 -4.67891D+00 -2.86914D-08 -1.89630D-02 1.29556D-01 -1.45001D-08 5.38023D-01 2.66579D+00 1.88339D-08 -5.34143D-01 - 35 -2.21578D+00 -1.97806D+01 5.20070D-08 -2.82214D-02 -5.03070D-01 5.74955D-08 5.46619D-01 -3.70750D+00 4.63733D-09 -1.40896D-01 - 36 -2.26567D-08 -7.84744D-08 -5.28319D+00 -4.07823D-08 4.72617D-08 -8.24739D-02 -1.52380D-08 -2.74471D-08 3.30790D-01 3.68761D-09 - 37 5.02967D-02 1.64535D-02 4.46330D-08 -6.97562D-01 1.07980D+00 -6.06133D-08 -4.23405D-02 4.66760D-02 -1.27157D-07 4.25944D-01 - 38 2.24291D-02 4.71787D-02 -2.34204D-08 -9.13462D+00 -1.91356D+00 -2.69576D-08 -4.91535D-01 7.80050D-02 -5.41896D-08 -6.39863D-01 - 39 4.44078D-09 3.38810D-08 2.89514D-02 -7.14892D-08 -4.63405D-08 6.69603D-01 -1.13969D-08 4.86036D-08 8.07209D-03 -3.15740D-08 - 40 -6.97562D-01 1.07980D+00 1.99928D-07 5.02965D-02 1.64520D-02 9.86029D-08 4.25944D-01 7.03114D-01 4.46147D-08 -4.23407D-02 - 41 -9.13462D+00 -1.91356D+00 -1.60637D-08 2.24302D-02 4.71790D-02 -2.29871D-08 -6.39864D-01 5.12786D-01 -5.45306D-08 -4.91534D-01 - 42 1.13458D-07 4.40233D-08 6.69603D-01 1.66347D-08 -2.75114D-09 2.89514D-02 2.36642D-09 1.11417D-07 -2.57783D-01 -1.80479D-08 - 43 6.29664D-03 -1.62390D-01 2.74515D-08 1.44691D+00 1.09134D+00 2.32721D-08 -5.10271D-02 2.46804D-01 -1.70221D-08 8.50870D-02 - 44 7.74469D-02 1.51899D-01 3.72265D-09 1.79288D+00 -4.01851D+00 -2.30302D-08 1.20667D-01 -1.41700D-01 -3.86287D-08 -5.87724D-01 - 45 -3.92195D-08 -3.25381D-08 -4.18285D-03 -7.56015D-09 1.73851D-08 4.58732D-01 7.24011D-09 -2.13942D-09 -3.69306D-02 -1.57351D-08 - 46 1.44691D+00 1.09134D+00 2.07837D-08 6.29659D-03 -1.62391D-01 1.21877D-08 8.50868D-02 -5.92801D-01 -1.36816D-08 -5.10272D-02 - 47 1.79288D+00 -4.01851D+00 4.74688D-08 7.74470D-02 1.51899D-01 1.01558D-08 -5.87724D-01 2.41085D-01 -8.24702D-09 1.20667D-01 - 48 1.48187D-08 -2.10718D-08 4.58732D-01 4.48921D-08 3.81030D-08 -4.18285D-03 1.23977D-08 4.73265D-08 1.18652D-01 -1.12202D-08 - 49 -2.50886D-02 -3.57336D-02 6.09114D-08 1.39511D-01 -3.99045D-01 -3.72696D-08 1.15479D-01 -1.06130D-02 -6.60752D-08 -3.44169D-02 - 50 -1.64701D-03 -1.31623D-02 -1.53922D-08 -4.34267D-01 4.60427D-01 -1.50123D-08 -7.02848D-02 4.95083D-02 -3.18019D-08 -1.86709D-02 - 51 1.52955D-07 -1.06228D-07 -2.67680D-02 -1.40288D-07 1.14987D-08 -2.35994D+00 4.05833D-09 -4.56206D-08 4.25682D-02 5.42874D-08 - 52 1.39511D-01 -3.99044D-01 6.10719D-08 -2.50890D-02 -3.57351D-02 -1.64448D-08 -3.44174D-02 -4.34147D-02 7.81555D-08 1.15479D-01 - 53 -4.34268D-01 4.60427D-01 -5.64386D-08 -1.64615D-03 -1.31625D-02 -8.60157D-08 -1.86718D-02 4.50753D-03 -6.31800D-08 -7.02842D-02 - 54 9.10005D-08 -1.11329D-07 -2.35994D+00 -1.75152D-07 4.79068D-08 -2.67681D-02 -7.15569D-08 -5.72210D-08 6.99761D-03 1.13991D-08 - 55 1.43297D-02 -1.91445D-02 -5.63749D-08 -9.66934D-01 3.57512D-01 -1.17264D-07 6.56981D-02 -4.82949D-03 -9.27264D-08 2.23784D-01 - 56 4.52381D-02 3.47556D-02 -9.76712D-08 7.91865D-01 -9.96311D-03 -4.38951D-08 -6.61143D-02 4.17217D-03 -5.85000D-08 -1.42856D-01 - 57 1.08093D-07 -1.79843D-08 4.10333D-02 -1.13799D-07 -2.64207D-08 3.71284D+00 -3.71255D-08 -1.74447D-08 -8.72514D-02 9.30649D-09 - 58 -9.66935D-01 3.57513D-01 7.73959D-08 1.43298D-02 -1.91460D-02 2.15633D-08 2.23784D-01 2.66676D-01 8.39429D-08 6.56976D-02 - 59 7.91864D-01 -9.96320D-03 -7.59381D-08 4.52391D-02 3.47557D-02 -3.61168D-08 -1.42856D-01 -1.13255D-01 -5.58658D-08 -6.61138D-02 - 60 8.14730D-08 -2.31402D-08 3.71284D+00 -1.36826D-07 -2.01813D-08 4.10333D-02 -1.13277D-08 -6.22772D-08 1.55793D-03 1.20597D-08 + 1 6.04383D+01 + 2 1.45058D-01 5.88029D+01 + 3 8.36861D-07 -7.07949D-07 1.31766D+01 + 4 -7.00951D+00 1.31539D+00 8.48197D-07 6.04383D+01 + 5 1.31535D+00 8.54347D-01 -8.20765D-07 1.45057D-01 5.88029D+01 + 6 7.49679D-07 -4.96130D-07 -7.47412D-01 1.09811D-06 -5.17847D-07 1.31766D+01 + 7 -2.21710D+01 1.15482D+01 4.61288D-08 1.76215D+00 -3.07983D+00 -1.45462D-07 6.86234D+01 + 8 4.45989D+00 -1.74173D+01 -9.52918D-08 -9.06116D+00 -1.31683D+00 4.20824D-08 4.62150D+00 6.31128D+01 + 9 1.21994D-06 -9.11691D-07 -5.54170D+00 1.23406D-06 -5.59474D-07 5.76968D-01 3.35178D-07 6.31559D-07 1.17724D+01 + 10 1.76215D+00 -3.07983D+00 4.33347D-08 -2.21710D+01 1.15482D+01 -1.47401D-07 -6.72971D-01 2.26139D+00 -8.42372D-09 6.86234D+01 + 11 -9.06115D+00 -1.31683D+00 -5.20297D-08 4.45989D+00 -1.74173D+01 6.67262D-08 2.26135D+00 -6.38028D+00 -1.52812D-07 4.62150D+00 + 12 1.19232D-06 -1.15414D-06 5.76968D-01 1.19386D-06 -7.88471D-07 -5.54170D+00 2.21273D-07 9.40863D-07 -5.93996D-01 1.38331D-07 + 13 5.11164D+00 8.53580D-01 -7.28730D-08 -2.64810D+01 -8.05844D+00 -8.06882D-08 -1.28547D+01 1.13602D+00 -4.03930D-07 -4.97423D+00 + 14 6.70455D+00 -4.60705D+00 7.58910D-07 -1.29283D+00 -1.28896D+01 -3.28315D-07 -7.41492D+00 -3.14767D+01 -1.33341D-07 -4.90013D-01 + 15 -1.10104D-06 8.98260D-07 5.85685D-01 -1.15158D-06 5.03822D-07 -5.64443D+00 9.70834D-08 -8.20697D-07 -5.20665D+00 9.83955D-08 + 16 -2.64810D+01 -8.05844D+00 4.58772D-08 5.11164D+00 8.53581D-01 3.35059D-08 -4.97423D+00 4.43995D+00 -1.38413D-06 -1.28547D+01 + 17 -1.29282D+00 -1.28896D+01 9.05560D-07 6.70455D+00 -4.60705D+00 -2.03739D-07 -4.90009D-01 6.23028D+00 -1.29357D-06 -7.41492D+00 + 18 -1.14937D-06 9.29281D-07 -5.64443D+00 -1.23186D-06 5.35165D-07 5.85685D-01 3.62843D-08 -6.87251D-07 5.41926D-01 -8.90805D-09 + 19 -4.19777D+00 -3.86542D+00 -1.72269D-06 3.50794D-01 1.08461D-02 5.27722D-07 -1.05255D+02 -3.16198D+01 -4.67978D-06 3.00815D-01 + 20 6.72975D+00 2.87405D+00 -6.84384D-07 4.28059D-01 -1.50702D+00 8.92156D-07 -3.16231D+01 -3.05534D+01 -7.80733D-07 1.70019D-01 + 21 1.19551D-07 -2.28089D-08 6.89399D-01 2.59285D-07 2.91939D-07 2.53588D+00 -1.57740D-07 -6.71620D-08 -1.14742D+01 2.14513D-07 + 22 3.50794D-01 1.08350D-02 -1.99386D-06 -4.19777D+00 -3.86541D+00 2.69250D-07 3.00813D-01 2.26101D-01 1.92071D-06 -1.05255D+02 + 23 4.28065D-01 -1.50702D+00 -7.17653D-07 6.72974D+00 2.87405D+00 8.03888D-07 1.70030D-01 -1.43385D-01 2.94908D-06 -3.16231D+01 + 24 9.07622D-08 2.18698D-07 2.53588D+00 3.18594D-07 4.35029D-07 6.89399D-01 1.60442D-08 -3.96727D-07 -2.54245D-01 2.09538D-07 + 25 4.26049D-02 -5.24627D-01 -1.19939D-07 -4.33515D+00 6.47337D+00 -8.60508D-07 2.61319D+00 -3.26107D+00 2.45579D-06 -1.07151D+00 + 26 -9.72426D-01 -1.15666D+00 1.70149D-07 -4.02041D+00 3.68295D+00 6.01535D-07 8.13642D+00 -3.85873D+00 -1.37578D-06 -7.37179D-01 + 27 -6.04427D-07 -6.30792D-08 2.54157D+00 -8.98043D-07 9.93446D-08 8.14849D-01 4.06752D-07 8.86839D-08 1.04761D+00 6.08181D-07 + 28 -4.33516D+00 6.47337D+00 6.60075D-08 4.26065D-02 -5.24622D-01 -7.45456D-07 -1.07151D+00 -1.17331D+00 -8.41913D-07 2.61319D+00 + 29 -4.02041D+00 3.68295D+00 4.16719D-08 -9.72434D-01 -1.15666D+00 4.33461D-07 -7.37170D-01 -4.41825D-01 4.04293D-07 8.13641D+00 + 30 -5.11704D-07 4.14174D-08 8.14849D-01 -7.81630D-07 2.31453D-07 2.54157D+00 5.94111D-07 -8.15930D-08 2.21632D+00 6.34149D-07 + 31 -1.89709D-02 1.29506D-01 -3.63957D-07 -1.02954D+01 -4.67931D+00 9.84025D-08 -5.34068D-01 -7.18393D-02 -3.93597D-07 5.38176D-01 + 32 -2.82611D-02 -5.03064D-01 1.12251D-07 -2.21571D+00 -1.97813D+01 -2.95608D-08 -1.40687D-01 8.43299D-01 3.23575D-07 5.46841D-01 + 33 -1.11714D-06 9.08035D-07 -8.24666D-02 -1.22160D-06 9.83261D-07 -5.28424D+00 -5.38828D-07 -4.26751D-07 5.74203D-01 -3.43558D-07 + 34 -1.02954D+01 -4.67931D+00 -2.74423D-07 -1.89711D-02 1.29510D-01 3.60828D-07 5.38177D-01 2.66578D+00 -1.18594D-06 -5.34067D-01 + 35 -2.21570D+00 -1.97813D+01 -3.48768D-08 -2.82643D-02 -5.03065D-01 -3.20099D-07 5.46842D-01 -3.70754D+00 2.02456D-06 -1.40692D-01 + 36 -1.27399D-06 1.01717D-06 -5.28424D+00 -1.24318D-06 1.07392D-06 -8.24667D-02 -7.08896D-07 -5.78321D-08 3.30983D-01 -4.65981D-07 + 37 5.02923D-02 1.64667D-02 2.55027D-07 -6.97916D-01 1.08082D+00 -1.02326D-06 -4.22772D-02 4.66565D-02 -6.44773D-07 4.25616D-01 + 38 2.24023D-02 4.71733D-02 -4.23488D-08 -9.13499D+00 -1.91338D+00 4.30981D-07 -4.91628D-01 7.79936D-02 5.22105D-07 -6.40128D-01 + 39 4.17078D-07 -7.16231D-08 2.89412D-02 3.37766D-07 9.92098D-08 6.69913D-01 2.50182D-08 2.03851D-07 8.06695D-03 1.09666D-07 + 40 -6.97917D-01 1.08082D+00 -1.48035D-07 5.02929D-02 1.64741D-02 -1.44306D-06 4.25619D-01 7.03268D-01 1.91458D-06 -4.22739D-02 + 41 -9.13498D+00 -1.91338D+00 1.40423D-07 2.23953D-02 4.71725D-02 6.55686D-07 -6.40121D-01 5.12735D-01 -7.63294D-07 -4.91639D-01 + 42 5.52161D-07 -2.46200D-07 6.69913D-01 4.32236D-07 -5.38026D-08 2.89413D-02 1.64644D-07 5.40221D-08 -2.57827D-01 3.09208D-07 + 43 6.32286D-03 -1.62341D-01 -6.59042D-08 1.44702D+00 1.09114D+00 -1.83316D-07 -5.11170D-02 2.46788D-01 5.68184D-07 8.51115D-02 + 44 7.74291D-02 1.51864D-01 2.46702D-07 1.79276D+00 -4.01801D+00 -1.62925D-08 1.20666D-01 -1.41698D-01 -2.98395D-07 -5.87886D-01 + 45 5.17074D-07 -4.15376D-07 -4.13261D-03 4.50027D-07 -5.45682D-07 4.58898D-01 2.21747D-07 2.41061D-07 -3.70405D-02 3.46964D-08 + 46 1.44702D+00 1.09115D+00 -1.02233D-07 6.32312D-03 -1.62338D-01 -1.16716D-07 8.51126D-02 -5.92836D-01 9.52414D-07 -5.11160D-02 + 47 1.79276D+00 -4.01801D+00 2.44299D-07 7.74249D-02 1.51864D-01 9.75862D-09 -5.87885D-01 2.41097D-01 -1.84625D-07 1.20662D-01 + 48 4.93394D-07 -3.08279D-07 4.58898D-01 5.16817D-07 -4.32008D-07 -4.13252D-03 1.80137D-07 1.90904D-07 1.18712D-01 3.95624D-08 + 49 -2.50924D-02 -3.57353D-02 5.68290D-07 1.39490D-01 -3.98699D-01 -8.68317D-07 1.15622D-01 -1.06195D-02 -1.03992D-06 -3.44737D-02 + 50 -1.64808D-03 -1.31644D-02 9.44636D-08 -4.34221D-01 4.60339D-01 3.16842D-07 -7.03413D-02 4.94805D-02 -4.39333D-07 -1.86236D-02 + 51 -3.94725D-08 -1.10319D-07 -2.67494D-02 2.00205D-07 -3.38984D-07 -2.35981D+00 2.23881D-07 3.32217D-07 4.27924D-02 1.45072D-07 + 52 1.39490D-01 -3.98704D-01 4.66399D-07 -2.50920D-02 -3.57269D-02 -1.14577D-06 -3.44711D-02 -4.34068D-02 -4.14050D-07 1.15627D-01 + 53 -4.34214D-01 4.60339D-01 1.14561D-07 -1.65381D-03 -1.31633D-02 2.59152D-07 -1.86133D-02 4.48201D-03 4.36805D-07 -7.03481D-02 + 54 1.12388D-07 -2.22016D-07 -2.35981D+00 1.57545D-07 -4.29737D-07 -2.67495D-02 2.85558D-07 5.23239D-08 6.87322D-03 1.02650D-07 + 55 1.43119D-02 -1.91401D-02 -3.14583D-07 -9.66968D-01 3.57497D-01 -1.92331D-07 6.57800D-02 -4.79952D-03 -1.04519D-06 2.23759D-01 + 56 4.52575D-02 3.47911D-02 -5.68102D-07 7.92027D-01 -1.03850D-02 8.00752D-07 -6.62619D-02 4.15949D-03 5.95876D-07 -1.42905D-01 + 57 -7.42833D-07 7.53496D-07 4.09975D-02 -9.08726D-07 8.83787D-07 3.71298D+00 -3.88971D-07 5.22839D-08 -8.71579D-02 -1.25949D-07 + 58 -9.66968D-01 3.57493D-01 -3.03681D-07 1.43119D-02 -1.91283D-02 -2.70266D-07 2.23764D-01 2.66691D-01 -8.47506D-07 6.57853D-02 + 59 7.92033D-01 -1.03865D-02 -4.70124D-07 4.52474D-02 3.47920D-02 9.93964D-07 -1.42897D-01 -1.13270D-01 3.63372D-07 -6.62739D-02 + 60 -6.62403D-07 5.53405D-07 3.71298D+00 -8.17854D-07 7.42005D-07 4.09976D-02 -2.88171D-07 -9.52016D-08 1.55565D-03 -6.78050D-08 11 12 13 14 15 16 17 18 19 20 ----- ----- ----- ----- ----- - 11 6.31121D+01 - 12 -1.72364D-07 1.17720D+01 - 13 4.43996D+00 -1.69666D-08 6.51308D+01 - 14 6.23037D+00 2.31889D-08 -5.68246D+00 6.65657D+01 - 15 1.69858D-07 5.41713D-01 1.92881D-07 2.72986D-08 1.17872D+01 - 16 1.13599D+00 -1.72794D-08 -2.66828D+00 -3.53287D+00 4.06474D-08 6.51308D+01 - 17 -3.14760D+01 -2.54587D-09 -3.53287D+00 -4.23502D+00 -1.31137D-07 -5.68246D+00 6.65657D+01 - 18 1.64328D-07 -5.20672D+00 2.50462D-07 2.33340D-08 -5.34551D-01 5.33727D-08 8.43207D-08 1.17872D+01 - 19 2.26210D-01 -4.50916D-08 4.79577D-01 1.79676D+00 4.37584D-07 -4.42316D-01 1.15826D+00 -3.85232D-07 3.73229D+02 - 20 -1.43407D-01 -1.45574D-07 -9.54696D+00 -1.69562D+00 2.27464D-07 7.09915D-01 -1.04051D+00 -5.29855D-08 1.13653D+02 1.06905D+02 - 21 -2.15016D-07 -2.54207D-01 -2.22663D-07 9.26764D-10 9.56865D-01 4.62802D-08 -3.62330D-09 2.14176D+00 -3.20099D-07 -1.59452D-07 - 22 -3.16204D+01 -7.73206D-08 -4.42316D-01 1.15826D+00 5.05249D-07 4.79577D-01 1.79676D+00 -3.09559D-07 -1.93610D-01 -1.70106D-01 - 23 -3.05532D+01 -1.92103D-08 7.09915D-01 -1.04051D+00 2.44074D-07 -9.54696D+00 -1.69562D+00 -6.61948D-08 -1.70119D-01 1.19967D-01 - 24 -1.91625D-08 -1.14737D+01 -2.69584D-07 -5.86855D-08 2.14176D+00 2.93591D-08 -1.78301D-07 9.56865D-01 3.04702D-07 -1.17174D-08 - 25 -1.17322D+00 -1.61240D-07 -7.85170D+01 4.84345D+01 9.49092D-08 1.28125D-01 -2.98513D-01 2.07730D-07 1.16149D+00 1.57788D-02 - 26 -4.41820D-01 2.91746D-08 4.81985D+01 -5.80326D+01 -1.56187D-07 -2.75203D-01 2.19816D-02 2.73910D-10 1.88554D-01 1.86026D+00 - 27 -5.57912D-08 2.21631D+00 -5.91496D-08 7.13128D-09 -1.15805D+01 4.94869D-08 6.45225D-08 -2.59436D-01 -2.01237D-07 9.56575D-08 - 28 -3.26054D+00 1.46390D-07 1.28125D-01 -2.98514D-01 -3.11817D-07 -7.85170D+01 4.84345D+01 -2.09931D-07 -7.95660D-01 1.12278D+00 - 29 -3.85917D+00 -1.02797D-07 -2.75203D-01 2.19819D-02 1.24662D-07 4.81985D+01 -5.80326D+01 2.71249D-07 -6.72926D-01 6.03012D-01 - 30 -1.52550D-08 1.04766D+00 -8.31068D-08 -3.22836D-08 -2.59436D-01 3.16416D-08 -1.04768D-07 -1.15805D+01 3.81576D-07 2.09804D-07 - 31 2.66579D+00 -3.77078D-08 1.04045D-01 -2.78332D+00 7.41479D-08 -4.12610D-01 7.86789D-02 -4.68176D-08 2.31112D-02 -4.43190D-01 - 32 -3.70750D+00 -6.66679D-08 -1.77405D+00 -2.09791D+00 9.38016D-08 5.21423D-01 5.69986D-01 -2.47572D-09 2.37113D-02 5.88415D-02 - 33 -2.11050D-08 3.30790D-01 -1.22645D-08 -2.35632D-08 2.33328D-01 -3.34615D-09 4.46450D-08 6.16209D-01 2.09312D-08 4.19795D-08 - 34 -7.18491D-02 -3.84316D-09 -4.12610D-01 7.86790D-02 5.52295D-08 1.04045D-01 -2.78332D+00 -7.23966D-08 4.47292D-01 5.82592D-01 - 35 8.43311D-01 9.78018D-09 5.21423D-01 5.69985D-01 -9.10749D-09 -1.77405D+00 -2.09791D+00 -1.00243D-07 -5.98265D-01 4.39616D-01 - 36 -6.92429D-08 5.74229D-01 1.35853D-08 -1.97877D-09 6.16209D-01 2.58779D-08 6.22301D-08 2.33328D-01 2.66555D-08 2.67158D-08 - 37 7.03113D-01 -9.30438D-08 1.99777D-01 2.69337D-02 -1.09222D-07 -3.35633D-02 -5.88482D-03 2.65740D-07 3.12776D-02 -5.08945D-02 - 38 5.12786D-01 -3.23527D-08 5.21477D-01 -1.52946D+00 1.21012D-07 3.62233D-02 4.48791D-02 2.35089D-08 1.58154D-02 -4.62606D-01 - 39 -1.80166D-08 -2.57783D-01 -1.42394D-07 -1.66667D-08 7.12769D-01 4.94390D-08 -7.05990D-08 -1.85565D-02 1.21675D-07 8.27152D-08 - 40 4.66748D-02 1.17511D-07 -3.35633D-02 -5.88499D-03 -4.49579D-07 1.99777D-01 2.69338D-02 -9.91984D-08 8.13171D-02 -4.00806D-01 - 41 7.80052D-02 -7.06741D-08 3.62233D-02 4.48792D-02 8.93704D-08 5.21477D-01 -1.52946D+00 1.82740D-08 5.12163D-01 -1.03144D-01 - 42 -1.15555D-07 8.07212D-03 -1.84256D-07 -2.18052D-08 -1.85565D-02 -2.28170D-08 -1.60427D-09 7.12769D-01 -1.04904D-07 -9.73185D-08 - 43 -5.92801D-01 -1.70247D-08 -4.20937D-01 -4.30098D-01 -3.22257D-09 1.64422D-01 1.25539D-01 -4.47718D-08 -1.97082D-03 -7.01384D-03 - 44 2.41085D-01 -2.65978D-08 5.28365D-01 3.25531D-01 -3.18394D-08 -7.33026D-02 -2.66596D-01 7.42838D-08 -4.10033D-03 1.63591D-02 - 45 -5.37183D-08 1.18652D-01 2.48510D-09 -1.98565D-09 3.63839D-02 1.09423D-08 4.10571D-08 -8.63559D-03 4.14706D-08 -2.00994D-09 - 46 2.46804D-01 3.66780D-09 1.64422D-01 1.25539D-01 3.59353D-08 -4.20937D-01 -4.30098D-01 -8.32270D-09 4.85884D-02 -8.46650D-02 - 47 -1.41700D-01 7.27293D-09 -7.33026D-02 -2.66596D-01 -6.43722D-08 5.28365D-01 3.25531D-01 5.88380D-08 -2.88758D-02 -1.86662D-02 - 48 -7.68533D-10 -3.69306D-02 -5.34171D-08 -3.58340D-08 -8.63558D-03 -3.90744D-08 -1.54103D-09 3.63840D-02 2.95165D-08 4.10977D-08 - 49 -4.34156D-02 -6.79330D-08 1.44255D-01 -3.12564D-01 -3.00072D-07 -5.14936D-02 1.27627D-02 2.86610D-07 -1.01533D-03 -2.54724D-02 - 50 4.50757D-03 -2.91392D-08 3.79830D-01 -3.85841D-01 -8.13196D-08 -3.79512D-02 1.58755D-02 1.22157D-07 -2.42362D-02 -3.63292D-02 - 51 -9.41842D-09 6.99762D-03 -2.55105D-08 -1.32278D-08 4.39793D-02 5.24532D-09 5.06770D-08 8.28573D-02 -2.41139D-07 9.39990D-08 - 52 -1.06144D-02 7.97898D-08 -5.14935D-02 1.27629D-02 -4.60400D-07 1.44255D-01 -3.12564D-01 9.64072D-08 -3.56587D-02 -2.79879D-02 - 53 4.95082D-02 -3.46513D-08 -3.79511D-02 1.58757D-02 -3.00867D-08 3.79830D-01 -3.85841D-01 1.67012D-07 -7.66802D-02 8.44663D-02 - 54 2.77148D-08 4.25682D-02 3.11657D-08 -4.07891D-08 8.28574D-02 5.92601D-08 -6.67984D-08 4.39792D-02 3.24457D-07 3.04279D-07 - 55 2.66675D-01 -1.15347D-07 -1.59040D-01 -5.00179D-02 1.35910D-07 -7.66074D-02 2.12974D-02 8.10952D-08 5.99516D-03 4.39813D-02 - 56 -1.13255D-01 -6.37736D-08 6.37248D-02 1.36144D-01 2.88892D-07 1.21669D-01 -5.72785D-02 -9.95257D-08 1.12212D-02 -1.43974D-02 - 57 6.94917D-09 1.55794D-03 -4.12899D-08 -5.32112D-08 -1.25478D-01 1.14989D-08 5.10500D-08 -2.59534D-01 -5.92716D-08 1.17176D-07 - 58 -4.83023D-03 1.12725D-07 -7.66074D-02 2.12974D-02 -1.38318D-07 -1.59040D-01 -5.00179D-02 -2.50557D-07 3.78156D-02 4.78901D-03 - 59 4.17268D-03 -5.52210D-08 1.21669D-01 -5.72786D-02 2.44677D-07 6.37247D-02 1.36144D-01 -1.38320D-07 9.02817D-02 -2.31328D-02 - 60 -3.27802D-08 -8.72514D-02 -2.90664D-08 -2.61485D-08 -2.59534D-01 5.45550D-08 1.46732D-08 -1.25478D-01 1.75953D-07 1.89065D-07 + 11 6.31128D+01 + 12 -1.59109D-07 1.17724D+01 + 13 4.43995D+00 -5.39574D-07 6.51309D+01 + 14 6.23029D+00 1.33308D-06 -5.68191D+00 6.65657D+01 + 15 8.97394D-09 5.41927D-01 2.41837D-07 1.21183D-08 1.17873D+01 + 16 1.13602D+00 -1.38554D-06 -2.66795D+00 -3.53288D+00 1.72119D-06 6.51309D+01 + 17 -3.14767D+01 2.64541D-07 -3.53291D+00 -4.23496D+00 9.76946D-07 -5.68191D+00 6.65657D+01 + 18 2.13614D-07 -5.20665D+00 1.48204D-07 -2.55513D-07 -5.34477D-01 1.89743D-07 -2.78487D-07 1.17873D+01 + 19 2.26102D-01 -8.04228D-06 4.79269D-01 1.79750D+00 5.65920D-06 -4.41824D-01 1.15822D+00 7.35772D-06 3.73229D+02 + 20 -1.43389D-01 -3.06543D-06 -9.54760D+00 -1.69531D+00 1.54217D-06 7.09865D-01 -1.04056D+00 2.37748D-06 1.13653D+02 1.06907D+02 + 21 -3.32858D-07 -2.54247D-01 6.07371D-07 1.86016D-07 9.56855D-01 2.55349D-08 5.86945D-07 2.14173D+00 -1.40248D-06 -5.11921D-07 + 22 -3.16198D+01 -1.69933D-06 -4.41825D-01 1.15822D+00 -7.88198D-07 4.79268D-01 1.79751D+00 8.12244D-07 -1.93512D-01 -1.70122D-01 + 23 -3.05534D+01 4.26484D-07 7.09871D-01 -1.04056D+00 -1.94306D-06 -9.54760D+00 -1.69532D+00 -9.08027D-07 -1.70098D-01 1.19937D-01 + 24 -5.43596D-07 -1.14742D+01 7.78194D-07 -2.56762D-07 2.14173D+00 9.16293D-07 5.08311D-07 9.56854D-01 -1.14545D-06 1.15299D-06 + 25 -1.17330D+00 3.94685D-06 -7.85161D+01 4.84336D+01 -3.76839D-06 1.27809D-01 -2.98267D-01 -3.00476D-06 1.16144D+00 1.61992D-02 + 26 -4.41828D-01 -2.22918D-06 4.81977D+01 -5.80317D+01 2.22653D-06 -2.75124D-01 2.19761D-02 1.71351D-06 1.88303D-01 1.85993D+00 + 27 -2.65129D-07 2.21632D+00 -7.25449D-08 7.61595D-07 -1.15803D+01 -2.75133D-07 3.34135D-07 -2.59550D-01 -1.52310D-06 -5.29518D-07 + 28 -3.26105D+00 6.62058D-07 1.27811D-01 -2.98269D-01 -5.36155D-07 -7.85161D+01 4.84336D+01 3.50364D-07 -7.96364D-01 1.12272D+00 + 29 -3.85873D+00 -5.59130D-07 -2.75119D-01 2.19719D-02 3.03770D-07 4.81976D+01 -5.80317D+01 -1.24944D-08 -6.72845D-01 6.03027D-01 + 30 -2.56661D-07 1.04761D+00 9.24792D-08 5.21514D-08 -2.59551D-01 6.24960D-07 1.61042D-07 -1.15803D+01 -3.36082D-08 2.19818D-07 + 31 2.66578D+00 -1.09475D-06 1.03899D-01 -2.78325D+00 5.27833D-07 -4.12631D-01 7.86510D-02 9.37355D-07 2.30227D-02 -4.43222D-01 + 32 -3.70754D+00 6.30612D-07 -1.77429D+00 -2.09767D+00 -6.68855D-07 5.21324D-01 5.70053D-01 -4.09922D-07 2.36522D-02 5.90075D-02 + 33 4.09088D-07 3.30983D-01 2.43177D-07 -9.67603D-07 2.33583D-01 -1.17042D-07 -6.30849D-07 6.16250D-01 2.34246D-06 4.58000D-07 + 34 -7.18360D-02 -1.70102D-06 -4.12631D-01 7.86502D-02 1.46498D-06 1.03900D-01 -2.78324D+00 1.95466D-06 4.47101D-01 5.82676D-01 + 35 8.43301D-01 2.18846D-06 5.21323D-01 5.70053D-01 -2.56999D-06 -1.77430D+00 -2.09767D+00 -2.32017D-06 -5.98818D-01 4.39544D-01 + 36 6.52881D-07 5.74204D-01 1.17216D-07 -9.20819D-07 6.16249D-01 -2.99031D-07 -6.89272D-07 2.33582D-01 2.56204D-06 9.93647D-07 + 37 7.03278D-01 1.11955D-06 2.00075D-01 2.67896D-02 -1.56536D-07 -3.36386D-02 -5.76660D-03 -5.09160D-07 3.12395D-02 -5.08873D-02 + 38 5.12734D-01 -3.36057D-07 5.21698D-01 -1.52954D+00 -2.17670D-07 3.63345D-02 4.47870D-02 2.09248D-07 1.57402D-02 -4.62684D-01 + 39 -2.81386D-07 -2.57827D-01 2.69444D-07 -2.89983D-07 7.12711D-01 5.19535D-07 4.76077D-08 -1.85604D-02 -8.28080D-07 6.18518D-08 + 40 4.66675D-02 3.70510D-06 -3.36371D-02 -5.77505D-03 -3.34641D-06 2.00076D-01 2.67909D-02 -3.29673D-06 8.13335D-02 -4.01137D-01 + 41 7.79927D-02 -1.58541D-06 3.63386D-02 4.47896D-02 1.44204D-06 5.21691D-01 -1.52954D+00 1.66403D-06 5.12794D-01 -1.03009D-01 + 42 -4.61515D-07 8.06644D-03 3.09252D-07 3.36713D-07 -1.85607D-02 3.36752D-07 4.87320D-07 7.12712D-01 -2.24168D-06 -1.14169D-06 + 43 -5.92835D-01 8.14757D-07 -4.20982D-01 -4.30155D-01 -8.14137D-07 1.64487D-01 1.25466D-01 -6.86530D-07 -1.96895D-03 -7.02369D-03 + 44 2.41098D-01 -7.07587D-09 5.28553D-01 3.25459D-01 2.18477D-07 -7.33202D-02 -2.66559D-01 9.45707D-08 -4.10609D-03 1.62777D-02 + 45 -1.47785D-07 1.18712D-01 -2.06197D-07 1.55003D-07 3.65236D-02 1.25350D-07 4.54285D-08 -8.69864D-03 -5.95549D-07 -1.05743D-06 + 46 2.46793D-01 1.16487D-06 1.64487D-01 1.25465D-01 -1.11145D-06 -4.20982D-01 -4.30154D-01 -9.70838D-07 4.87593D-02 -8.45809D-02 + 47 -1.41697D-01 1.04803D-07 -7.33206D-02 -2.66559D-01 1.85133D-07 5.28551D-01 3.25459D-01 4.52488D-08 -2.87248D-02 -1.87210D-02 + 48 -2.59243D-07 -3.70410D-02 -1.65545D-07 2.90971D-07 -8.69863D-03 2.15384D-07 2.14307D-07 3.65240D-02 -1.39845D-06 -5.07100D-07 + 49 -4.33964D-02 1.01283D-06 1.44361D-01 -3.12445D-01 9.20552D-07 -5.15772D-02 1.29361D-02 -6.54426D-07 -1.15717D-03 -2.53631D-02 + 50 4.48027D-03 -8.67772D-07 3.79902D-01 -3.85837D-01 7.43859D-07 -3.79070D-02 1.59006D-02 3.61678D-07 -2.42346D-02 -3.62523D-02 + 51 -2.22713D-07 6.87433D-03 -9.99972D-08 8.83283D-07 4.36910D-02 -1.64616D-07 6.17131D-07 8.28654D-02 -2.42254D-06 9.78546D-08 + 52 -1.06111D-02 1.67472D-06 -5.15746D-02 1.29258D-02 -7.55191D-08 1.44363D-01 -3.12444D-01 -1.20031D-06 -3.58649D-02 -2.80596D-02 + 53 4.94788D-02 5.38750D-09 -3.79000D-02 1.58990D-02 -1.46861D-07 3.79897D-01 -3.85839D-01 -3.57309D-07 -7.68012D-02 8.44739D-02 + 54 -2.58939D-07 4.27909D-02 -7.95836D-08 -9.64529D-08 8.28663D-02 6.38183D-07 2.32960D-07 4.36927D-02 -5.65917D-07 -5.87456D-07 + 55 2.66698D-01 -1.27220D-06 -1.59163D-01 -4.99705D-02 1.28291D-06 -7.66512D-02 2.12485D-02 1.41023D-06 6.05650D-03 4.39711D-02 + 56 -1.13271D-01 -1.57513D-06 6.35964D-02 1.36042D-01 2.17382D-08 1.21815D-01 -5.75094D-02 9.99826D-07 1.13545D-02 -1.45147D-02 + 57 3.60114D-07 1.55561D-03 2.94896D-07 -5.01200D-07 -1.25621D-01 -6.06634D-08 -2.64350D-07 -2.59486D-01 1.20209D-06 8.22725D-07 + 58 -4.78997D-03 -1.12290D-06 -7.66482D-02 2.12396D-02 9.01322D-07 -1.59162D-01 -4.99687D-02 1.43063D-06 3.78528D-02 4.75185D-03 + 59 4.15915D-03 -1.78567D-06 1.21818D-01 -5.75104D-02 3.60837D-07 6.35892D-02 1.36042D-01 1.31384D-06 9.06688D-02 -2.30195D-02 + 60 2.60263D-07 -8.71579D-02 3.79323D-07 -8.83834D-07 -2.59486D-01 3.88348D-07 -3.33145D-07 -1.25621D-01 2.02367D-06 -1.65641D-07 21 22 23 24 25 26 27 28 29 30 ----- ----- ----- ----- ----- - 21 2.81954D+01 - 22 -2.39313D-07 3.73229D+02 - 23 -3.44628D-08 1.13653D+02 1.06905D+02 - 24 -1.06884D+00 4.51152D-07 1.72113D-07 2.81954D+01 - 25 5.61826D-08 -7.95661D-01 1.12278D+00 5.77532D-08 2.76991D+02 - 26 6.08830D-08 -6.72927D-01 6.03012D-01 4.45873D-08 -1.73687D+02 2.07220D+02 - 27 -5.03806D+00 -2.77561D-07 -1.09592D-07 1.20721D-01 1.06982D-07 5.55758D-08 2.74437D+01 - 28 1.85548D-07 1.16149D+00 1.57794D-02 1.13283D-07 -5.32531D-02 2.33621D-01 -3.63269D-07 2.76991D+02 - 29 -6.81161D-08 1.88554D-01 1.86026D+00 2.22963D-08 2.33619D-01 -2.63546D-02 5.11819D-07 -1.73687D+02 2.07220D+02 - 30 1.20721D-01 2.95997D-07 2.12672D-08 -5.03806D+00 4.54046D-08 -1.47522D-07 -1.20445D+00 -2.60225D-07 -1.69842D-08 2.74437D+01 - 31 -4.67850D-08 4.47292D-01 5.82592D-01 -5.18765D-08 3.57260D-01 3.21431D-01 -8.63605D-08 1.36522D-01 3.94606D-01 8.28489D-08 - 32 -4.34560D-08 -5.98265D-01 4.39617D-01 -3.77360D-08 4.85929D-01 -1.20294D-02 -1.11856D-07 -6.70953D-02 -9.51081D-02 1.29924D-07 - 33 3.84393D-02 -1.43975D-08 2.43259D-10 -1.10640D+00 -1.86038D-08 2.57551D-08 -1.13012D+00 -2.88263D-09 4.93818D-08 1.66460D-02 - 34 -1.25306D-09 2.31115D-02 -4.43189D-01 4.99646D-09 1.36522D-01 3.94606D-01 -2.25221D-08 3.57260D-01 3.21432D-01 9.89774D-08 - 35 1.04206D-08 2.37103D-02 5.88418D-02 2.76430D-08 -6.70959D-02 -9.51085D-02 -2.30721D-07 4.85929D-01 -1.20291D-02 3.44965D-08 - 36 -1.10640D+00 3.99335D-08 1.69791D-08 3.84392D-02 2.09357D-09 -3.81989D-08 1.66460D-02 7.00161D-09 3.34968D-09 -1.13012D+00 - 37 2.05283D-07 8.13162D-02 -4.00805D-01 8.03684D-08 1.17214D-01 4.78822D-02 3.32049D-07 1.29557D-02 2.27439D-02 1.19058D-07 - 38 1.09494D-07 5.12163D-01 -1.03144D-01 5.70790D-08 5.78499D-03 -5.69111D-03 1.13048D-07 1.25235D-02 -8.53310D-04 1.33665D-07 - 39 -2.15067D-01 2.09199D-07 9.81602D-08 -6.36018D-02 6.24418D-08 -3.49317D-08 -8.46173D-02 -1.08796D-07 1.36997D-08 3.52183D-02 - 40 7.20701D-08 3.12777D-02 -5.08936D-02 -6.63086D-08 1.29556D-02 2.27436D-02 -1.25618D-07 1.17214D-01 4.78825D-02 -3.60111D-07 - 41 -4.83465D-08 1.58144D-02 -4.62607D-01 -3.02147D-08 1.25236D-02 -8.53059D-04 -3.22180D-08 5.78478D-03 -5.69114D-03 -3.90885D-08 - 42 -6.36018D-02 -4.16471D-08 -5.55974D-08 -2.15067D-01 1.61022D-07 7.09888D-08 3.52183D-02 1.50074D-08 1.77307D-08 -8.46173D-02 - 43 2.08287D-08 4.85882D-02 -8.46650D-02 3.39419D-08 1.15799D-02 -5.88992D-01 -2.17081D-08 -2.18500D-02 -8.93701D-02 3.34250D-09 - 44 4.39581D-08 -2.88760D-02 -1.86663D-02 -7.03127D-09 1.08852D-01 -2.98785D-01 1.05089D-07 -3.64269D-02 -1.01148D-01 3.55049D-09 - 45 8.24695D-03 1.46725D-08 -1.28115D-08 3.45088D-02 4.48597D-08 2.39757D-09 6.88294D-02 6.63046D-08 -3.85291D-08 -3.27863D-02 - 46 1.27423D-08 -1.97062D-03 -7.01366D-03 2.20620D-08 -2.18499D-02 -8.93701D-02 3.25906D-08 1.15797D-02 -5.88992D-01 9.98272D-08 - 47 6.32523D-08 -4.10085D-03 1.63593D-02 3.16655D-09 -3.64271D-02 -1.01148D-01 2.16168D-08 1.08851D-01 -2.98785D-01 -4.02447D-08 - 48 3.45088D-02 -2.51896D-08 2.09226D-09 8.24696D-03 -2.07645D-08 5.47350D-08 -3.27863D-02 3.36193D-09 4.55250D-08 6.88294D-02 - 49 1.72282D-07 -3.56597D-02 -2.79868D-02 9.03684D-09 5.18814D-01 -2.74656D-01 3.29405D-07 -2.68610D-04 -1.74618D-02 -2.72360D-07 - 50 7.18535D-08 -7.66814D-02 8.44664D-02 -2.11026D-08 -7.23555D-01 -1.66406D+00 9.43493D-08 5.89044D-03 -5.97400D-03 -3.08238D-07 - 51 9.79163D-03 -2.96069D-07 -2.10573D-07 -8.40107D-02 1.85236D-08 -2.68456D-08 3.37327D-01 -1.02535D-07 1.73085D-08 -1.95657D-02 - 52 1.80224D-07 -1.01461D-03 -2.54711D-02 -6.59308D-08 -2.68638D-04 -1.74624D-02 2.42743D-07 5.18815D-01 -2.74656D-01 -3.88707D-07 - 53 4.96478D-08 -2.42364D-02 -3.63290D-02 -9.14287D-09 5.89074D-03 -5.97395D-03 2.76039D-07 -7.23555D-01 -1.66406D+00 -6.45360D-08 - 54 -8.40108D-02 2.90593D-07 -2.02020D-08 9.79174D-03 -6.89135D-08 -1.33142D-07 -1.95658D-02 -2.68539D-07 -2.23810D-08 3.37327D-01 - 55 -7.71907D-08 3.78146D-02 4.78901D-03 -8.96581D-09 3.23489D-01 2.53976D-01 6.73964D-08 4.04710D-02 1.06339D-01 1.34893D-07 - 56 -1.63198D-07 9.02814D-02 -2.31325D-02 1.83827D-08 3.14471D-02 1.24392D-01 -1.46307D-07 -3.81355D-02 -5.95735D-02 1.97815D-07 - 57 4.14889D-03 -1.18016D-07 -1.28796D-07 3.25700D-01 1.22327D-09 -1.12874D-08 1.25430D-01 -1.31922D-07 -2.18539D-08 1.38597D-02 - 58 -2.56889D-08 5.99628D-03 4.39826D-02 2.48123D-08 4.04710D-02 1.06339D-01 -1.02525D-07 3.23489D-01 2.53976D-01 -8.25145D-09 - 59 -1.32168D-07 1.12202D-02 -1.43971D-02 2.10601D-08 -3.81362D-02 -5.95736D-02 -1.30015D-07 3.14468D-02 1.24392D-01 2.28181D-07 - 60 3.25700D-01 8.63131D-08 -2.86214D-08 4.14895D-03 -3.63383D-08 -9.85468D-09 1.38597D-02 -1.80597D-07 1.42226D-08 1.25430D-01 + 21 2.81961D+01 + 22 -3.85697D-06 3.73229D+02 + 23 -1.87516D-06 1.13653D+02 1.06907D+02 + 24 -1.06880D+00 -1.09896D-06 7.89304D-07 2.81961D+01 + 25 -1.54363D-06 -7.96362D-01 1.12271D+00 -4.30416D-06 2.76988D+02 + 26 1.00298D-06 -6.72836D-01 6.03031D-01 2.92119D-06 -1.73685D+02 2.07218D+02 + 27 -5.03818D+00 -1.05368D-06 -3.48507D-07 1.20608D-01 1.35019D-06 -1.53911D-06 2.74429D+01 + 28 1.35492D-06 1.16143D+00 1.61929D-02 -1.85842D-06 -5.31212D-02 2.33573D-01 9.71077D-07 2.76988D+02 + 29 -1.75930D-07 1.88304D-01 1.85993D+00 1.10962D-06 2.33651D-01 -2.64173D-02 -1.46293D-06 -1.73685D+02 2.07218D+02 + 30 1.20606D-01 -3.53417D-07 -9.84964D-08 -5.03818D+00 9.87118D-07 -9.90698D-07 -1.20434D+00 4.20875D-07 -4.45099D-07 2.74429D+01 + 31 -1.02575D-08 4.47104D-01 5.82674D-01 9.64294D-07 3.57393D-01 3.21283D-01 -5.94185D-07 1.36512D-01 3.94727D-01 -9.29065D-07 + 32 2.34853D-08 -5.98814D-01 4.39545D-01 -6.59420D-07 4.86147D-01 -1.22356D-02 5.65178D-07 -6.70173D-02 -9.50459D-02 1.20973D-07 + 33 3.84166D-02 1.86591D-06 -4.60886D-07 -1.10633D+00 8.85102D-07 -1.02810D-06 -1.13012D+00 9.50907D-07 -3.30583D-07 1.65281D-02 + 34 6.47479D-07 2.30234D-02 -4.43217D-01 2.67811D-06 1.36511D-01 3.94731D-01 -9.50038D-07 3.57392D-01 3.21286D-01 -1.15609D-06 + 35 -1.42768D-06 2.36453D-02 5.90084D-02 -2.95175D-06 -6.70254D-02 -9.50478D-02 1.63110D-06 4.86144D-01 -1.22327D-02 1.16196D-06 + 36 -1.10633D+00 2.47258D-06 -4.59722D-07 3.84161D-02 1.47549D-06 -4.27674D-07 1.65276D-02 1.08390D-06 -2.99837D-07 -1.13012D+00 + 37 8.32944D-07 8.13340D-02 -4.01135D-01 -1.86899D-06 1.17070D-01 4.78759D-02 5.76282D-07 1.29290D-02 2.27398D-02 2.95486D-07 + 38 -4.65430D-08 5.12798D-01 -1.03016D-01 5.63367D-07 5.57839D-03 -5.55430D-03 -4.80639D-07 1.25033D-02 -8.22230D-04 -3.14643D-07 + 39 -2.14984D-01 -5.47429D-07 1.88722D-07 -6.38083D-02 -6.27848D-07 7.52935D-07 -8.47782D-02 -1.21205D-06 3.60750D-07 3.52267D-02 + 40 -1.87672D-06 3.12357D-02 -5.08967D-02 -4.78684D-06 1.29254D-02 2.27420D-02 1.46357D-06 1.17065D-01 4.78683D-02 1.55150D-06 + 41 1.34799D-06 1.57430D-02 -4.62683D-01 2.19558D-06 1.25029D-02 -8.17432D-04 -9.14909D-07 5.58137D-03 -5.55544D-03 -8.42618D-07 + 42 -6.38083D-02 -1.39252D-06 4.37728D-07 -2.14984D-01 -9.13924D-07 -1.89233D-07 3.52269D-02 -1.06950D-06 2.27735D-07 -8.47788D-02 + 43 -5.17697D-07 4.87599D-02 -8.45856D-02 -7.39870D-07 1.14401D-02 -5.88803D-01 7.76972D-07 -2.18566D-02 -8.94084D-02 4.63142D-07 + 44 5.31469D-07 -2.87210D-02 -1.87176D-02 -1.70090D-07 1.08719D-01 -2.98880D-01 -2.13694D-07 -3.64150D-02 -1.01195D-01 -1.50632D-08 + 45 8.38545D-03 -2.41023D-07 5.43216D-08 3.43218D-02 1.49868D-07 -2.37665D-07 6.87732D-02 8.65838D-08 1.74513D-08 -3.27507D-02 + 46 -4.47448D-07 -1.96939D-03 -7.02252D-03 -9.90250D-07 -2.18574D-02 -8.94026D-02 1.37758D-06 1.14386D-02 -5.88801D-01 3.57912D-07 + 47 6.08374D-07 -4.11383D-03 1.62808D-02 -1.39818D-07 -3.64246D-02 -1.01198D-01 -2.41365D-09 1.08717D-01 -2.98877D-01 2.13445D-08 + 48 3.43223D-02 -9.24626D-07 2.01773D-07 8.38528D-03 -5.50679D-07 2.81169D-07 -3.27498D-02 -9.01555D-07 1.92077D-07 6.87720D-02 + 49 1.30958D-06 -3.58595D-02 -2.80531D-02 -7.22437D-07 5.18780D-01 -2.74637D-01 7.79640D-07 -4.31980D-04 -1.74685D-02 3.56867D-07 + 50 1.34404D-07 -7.67975D-02 8.44715D-02 8.07292D-07 -7.23796D-01 -1.66381D+00 -1.35297D-06 5.84046D-03 -6.00743D-03 -7.50794D-07 + 51 9.81445D-03 -9.88829D-07 5.46144D-07 -8.39680D-02 3.08851D-07 4.39739D-07 3.37720D-01 -6.82587D-07 -7.62835D-08 -1.96936D-02 + 52 9.97592D-07 -1.16278D-03 -2.53748D-02 -1.65572D-06 -4.37504D-04 -1.74691D-02 1.77670D-07 5.18770D-01 -2.74648D-01 4.92829D-07 + 53 -1.61895D-07 -2.42299D-02 -3.62611D-02 2.46701D-07 5.84053D-03 -6.00405D-03 -8.05749D-07 -7.23797D-01 -1.66382D+00 -3.31472D-08 + 54 -8.39673D-02 -5.46579D-08 4.20023D-07 9.81570D-03 7.43076D-08 -3.46557D-07 -1.96950D-02 -1.29822D-07 -1.53805D-07 3.37719D-01 + 55 4.75808D-07 3.78611D-02 4.75449D-03 1.68634D-06 3.23829D-01 2.53862D-01 -7.99422D-07 4.05341D-02 1.06343D-01 -4.86060D-07 + 56 -7.21004D-07 9.06757D-02 -2.30136D-02 1.60994D-06 3.14878D-02 1.24593D-01 -1.45758D-06 -3.80226D-02 -5.95170D-02 -8.26960D-07 + 57 3.83270D-03 1.38691D-06 1.04380D-07 3.26081D-01 1.28415D-06 -9.15581D-08 1.25379D-01 4.62237D-07 9.83534D-08 1.39346D-02 + 58 1.15345D-06 6.05410D-03 4.39661D-02 1.11808D-06 4.05271D-02 1.06349D-01 -1.16623D-06 3.23820D-01 2.53856D-01 -1.12070D-06 + 59 -2.96304D-07 1.13522D-02 -1.45100D-02 2.25514D-06 -3.80350D-02 -5.95200D-02 -1.23817D-06 3.14906D-02 1.24595D-01 -8.75985D-07 + 60 3.26082D-01 2.11534D-06 2.15082D-08 3.83305D-03 1.28414D-06 -9.05506D-07 1.39343D-02 1.14029D-06 -1.40377D-07 1.25379D-01 31 32 33 34 35 36 37 38 39 40 ----- ----- ----- ----- ----- - 31 7.32544D+01 - 32 -1.18227D+01 6.42679D+01 - 33 6.66427D-08 -2.94515D-08 1.15292D+01 - 34 -1.45542D-02 -7.58427D-02 4.99564D-09 7.32544D+01 - 35 -7.58399D-02 2.73106D-01 -4.87012D-08 -1.18227D+01 6.42679D+01 - 36 1.18904D-08 -4.65266D-09 -8.41917D-02 -5.84657D-08 4.86427D-08 1.15292D+01 - 37 -1.09713D+02 -2.12667D+01 -7.40740D-09 1.19711D-02 3.16959D-03 1.23806D-07 3.92883D+02 - 38 -2.21071D+01 -2.37588D+01 4.81316D-08 4.03130D-02 8.19716D-03 2.43866D-08 7.49283D+01 8.59853D+01 - 39 3.39356D-08 5.72892D-08 -1.27666D+01 1.06243D-08 -3.32698D-08 -5.08195D-03 1.45539D-08 9.55557D-09 2.99927D+01 - 40 1.19713D-02 3.17071D-03 -8.12427D-08 -1.09713D+02 -2.12667D+01 2.22668D-08 1.83047D-03 -4.18388D-03 -8.05897D-08 3.92883D+02 - 41 4.03123D-02 8.19684D-03 4.59784D-09 -2.21071D+01 -2.37588D+01 -2.50745D-08 -4.18331D-03 2.71731D-03 5.49141D-08 7.49283D+01 - 42 -5.18301D-09 7.01707D-08 -5.08196D-03 -3.02174D-08 -8.25273D-08 -1.27666D+01 9.03413D-08 -1.00932D-07 2.11400D-02 -4.61917D-10 - 43 -3.08022D+01 1.93767D+01 -1.09854D-08 4.92209D-04 1.00156D-01 -2.95881D-09 -4.52030D+00 9.25866D+00 8.62840D-08 -2.10832D-03 - 44 2.12256D+01 -3.26591D+01 9.61035D-09 3.89319D-02 -8.43460D-02 6.26184D-09 -2.77514D+00 2.37422D+00 -8.83547D-09 -5.60436D-03 - 45 -4.20843D-09 -1.80062D-08 -4.37985D+00 -4.73237D-09 3.92671D-08 7.21580D-03 6.87251D-08 -1.97374D-08 1.64758D+00 3.57270D-08 - 46 4.92190D-04 1.00156D-01 8.35014D-09 -3.08022D+01 1.93767D+01 3.65832D-08 -2.10811D-03 -9.48102D-03 6.22086D-08 -4.52030D+00 - 47 3.89317D-02 -8.43459D-02 -5.08270D-09 2.12256D+01 -3.26591D+01 1.29791D-08 -5.60454D-03 -1.90078D-02 -5.86920D-08 -2.77514D+00 - 48 4.26536D-09 -3.63759D-08 7.21579D-03 6.89061D-09 1.22901D-08 -4.37985D+00 -2.90500D-08 3.58876D-08 1.34985D-03 -2.52264D-08 - 49 -3.93643D+00 -2.31287D+00 -1.85838D-08 5.06813D-02 2.47828D-02 3.73044D-08 -5.74204D-01 2.24390D+00 -7.03425D-08 -5.92179D-03 - 50 8.58387D+00 3.32970D+00 -1.35529D-08 -8.69631D-03 4.14707D-03 -2.84114D-08 2.11913D+00 -3.71529D+00 -6.39119D-08 2.62896D-03 - 51 2.44661D-08 1.35208D-07 1.37884D+00 3.60714D-08 8.24900D-08 1.78449D-02 -2.10639D-07 -1.87018D-07 1.39445D+01 4.23448D-07 - 52 5.06816D-02 2.47839D-02 -5.27120D-08 -3.93643D+00 -2.31287D+00 1.41610D-08 -5.92213D-03 -2.65077D-02 -3.78618D-08 -5.74203D-01 - 53 -8.69664D-03 4.14730D-03 5.04504D-08 8.58387D+00 3.32970D+00 4.56923D-08 2.62907D-03 -6.84038D-03 1.24861D-07 2.11913D+00 - 54 7.54132D-08 1.07686D-07 1.78448D-02 1.17316D-07 1.09401D-08 1.37884D+00 -3.99955D-07 -1.44114D-07 1.96185D-03 1.60407D-07 - 55 2.84552D+00 8.23539D+00 2.66680D-08 -1.92351D-02 -1.25961D-02 -7.08971D-08 1.91448D+00 -5.08634D-02 -6.01079D-08 1.54736D-02 - 56 -3.57276D+00 -4.53337D+00 4.26154D-08 -2.93037D-02 -1.54388D-02 1.21330D-08 -1.41067D-01 1.64625D+00 4.03936D-08 1.35501D-03 - 57 -4.45106D-08 1.35841D-07 1.61676D+00 5.04069D-09 4.33440D-09 -4.00933D-03 -1.54517D-07 -1.53444D-07 -9.21244D+00 2.94341D-07 - 58 -1.92350D-02 -1.25947D-02 6.37337D-08 2.84552D+00 8.23540D+00 -3.50492D-08 1.54736D-02 1.43644D-02 -1.59343D-08 1.91448D+00 - 59 -2.93047D-02 -1.54389D-02 -5.00293D-09 -3.57276D+00 -4.53337D+00 -2.23185D-08 1.35401D-03 1.19749D-02 6.32442D-08 -1.41067D-01 - 60 5.36394D-08 1.29967D-07 -4.00939D-03 1.14571D-07 -5.17844D-08 1.61676D+00 -3.40207D-07 -1.69524D-07 1.65193D-02 1.54165D-07 + 31 7.32549D+01 + 32 -1.18227D+01 6.42685D+01 + 33 8.49161D-07 -1.08428D-07 1.15300D+01 + 34 -1.46470D-02 -7.57683D-02 -1.98747D-06 7.32549D+01 + 35 -7.57426D-02 2.73118D-01 2.11424D-06 -1.18227D+01 6.42685D+01 + 36 8.84168D-07 9.59496D-08 -8.41887D-02 6.56417D-07 3.96933D-07 1.15300D+01 + 37 -1.09713D+02 -2.12666D+01 5.68074D-07 1.20757D-02 3.18983D-03 -1.02561D-06 3.92884D+02 + 38 -2.21070D+01 -2.37594D+01 -1.99537D-07 4.02468D-02 8.25088D-03 -1.06812D-07 7.49281D+01 8.59877D+01 + 39 -1.66102D-07 -5.49854D-08 -1.27675D+01 1.01025D-06 -1.00553D-06 -4.96151D-03 -5.86108D-07 4.24599D-07 2.99943D+01 + 40 1.20763D-02 3.19885D-03 3.83825D-06 -1.09713D+02 -2.12666D+01 1.18337D-06 2.00496D-03 -4.19242D-03 -3.70101D-06 3.92884D+02 + 41 4.02421D-02 8.24914D-03 -1.71774D-06 -2.21070D+01 -2.37594D+01 -1.16687D-06 -4.15598D-03 2.75706D-03 1.43453D-06 7.49281D+01 + 42 -5.14534D-08 -4.51403D-07 -4.96125D-03 -5.07977D-07 -1.35040D-07 -1.27675D+01 5.68203D-07 1.63968D-07 2.11275D-02 5.45508D-07 + 43 -3.08025D+01 1.93768D+01 4.65911D-07 5.00396D-04 1.00101D-01 4.67981D-07 -4.51976D+00 9.25893D+00 -4.23759D-07 -2.23447D-03 + 44 2.12261D+01 -3.26592D+01 -6.21320D-08 3.89186D-02 -8.43411D-02 -8.72983D-07 -2.77674D+00 2.37411D+00 -1.62286D-07 -5.50010D-03 + 45 -6.43024D-07 1.51308D-07 -4.37930D+00 1.19935D-07 -3.19515D-07 7.23455D-03 9.68225D-07 -2.30690D-07 1.64763D+00 4.76703D-07 + 46 5.00690D-04 1.00105D-01 1.06825D-06 -3.08025D+01 1.93768D+01 4.80925D-07 -2.23307D-03 -9.42301D-03 -1.23424D-07 -4.51976D+00 + 47 3.89142D-02 -8.43406D-02 1.22752D-07 2.12261D+01 -3.26592D+01 -7.66936D-07 -5.51198D-03 -1.90124D-02 -3.29522D-08 -2.77674D+00 + 48 -5.44902D-07 2.89320D-08 7.23492D-03 -3.77667D-07 -8.17076D-08 -4.37930D+00 1.13832D-06 9.93344D-09 1.27797D-03 4.04103D-08 + 49 -3.93663D+00 -2.31343D+00 8.70991D-07 5.07819D-02 2.47331D-02 -1.49743D-06 -5.74623D-01 2.24439D+00 -3.67407D-08 -5.84811D-03 + 50 8.58377D+00 3.32944D+00 -8.57610D-07 -8.68973D-03 4.15723D-03 -7.71435D-07 2.12014D+00 -3.71502D+00 2.98128D-07 2.60743D-03 + 51 -4.77605D-07 -6.00958D-10 1.37786D+00 5.20731D-07 -7.22665D-07 1.79133D-02 8.57790D-07 -7.25327D-08 1.39451D+01 -1.28964D-06 + 52 5.07832D-02 2.47405D-02 1.81455D-06 -3.93663D+00 -2.31344D+00 -1.50676D-06 -5.85126D-03 -2.64575D-02 -1.03564D-06 -5.74624D-01 + 53 -8.69180D-03 4.15814D-03 2.27927D-07 8.58377D+00 3.32945D+00 -6.37499D-08 2.61431D-03 -6.80624D-03 -1.22190D-07 2.12013D+00 + 54 -6.43218D-07 7.59149D-08 1.79120D-02 -3.33051D-07 -9.38644D-08 1.37786D+00 7.74124D-07 -3.26551D-07 2.13215D-03 -4.96983D-08 + 55 2.84549D+00 8.23571D+00 -2.15206D-06 -1.92890D-02 -1.25324D-02 5.89122D-07 1.91406D+00 -5.13150D-02 9.37030D-07 1.56245D-02 + 56 -3.57307D+00 -4.53312D+00 -1.93888D-06 -2.94184D-02 -1.53450D-02 1.50974D-06 -1.40544D-01 1.64588D+00 6.03704D-07 1.35720D-03 + 57 5.33395D-07 3.29062D-09 1.61596D+00 1.62078D-06 -7.33992D-07 -4.04399D-03 -2.54272D-06 2.38306D-07 -9.21242D+00 -1.80829D-06 + 58 -1.92879D-02 -1.25213D-02 -1.67044D-06 2.84549D+00 8.23571D+00 -5.59771D-07 1.56259D-02 1.42903D-02 8.21250D-07 1.91405D+00 + 59 -2.94269D-02 -1.53443D-02 -2.23263D-06 -3.57307D+00 -4.53312D+00 1.03766D-06 1.34671D-03 1.19205D-02 1.33879D-06 -1.40546D-01 + 60 4.88471D-07 -5.67376D-08 -4.04456D-03 -1.84157D-07 5.58255D-07 1.61596D+00 -1.28747D-06 -2.84430D-07 1.63979D-02 -1.38598D-07 41 42 43 44 45 46 47 48 49 50 ----- ----- ----- ----- ----- - 41 8.59853D+01 - 42 -1.83658D-08 2.99927D+01 - 43 -9.48101D-03 3.28730D-08 7.25693D+01 - 44 -1.90079D-02 1.90090D-08 -8.85222D+00 7.42922D+01 - 45 6.51174D-09 1.34983D-03 -7.25564D-08 4.87420D-08 9.49652D+00 - 46 9.25866D+00 3.63756D-08 2.22313D-02 -4.09558D-02 5.26401D-09 7.25693D+01 - 47 2.37422D+00 4.12729D-08 -4.09555D-02 1.72749D-02 -1.12636D-08 -8.85222D+00 7.42922D+01 - 48 4.40342D-08 1.64758D+00 9.36428D-09 1.86801D-08 8.63972D-04 3.40054D-08 -1.38593D-07 9.49652D+00 - 49 -2.65077D-02 -7.18525D-08 -1.15043D+02 -1.70496D+01 6.46452D-08 -2.14104D-02 -2.96528D-02 -2.90996D-08 4.10725D+02 - 50 -6.84030D-03 -1.84112D-07 -1.76173D+01 -2.32523D+01 -1.09912D-08 -4.93789D-04 1.52015D-03 3.00330D-08 6.01956D+01 7.17942D+01 - 51 1.46950D-09 1.96191D-03 8.76865D-08 -5.78166D-08 -1.11483D+01 -1.86912D-07 3.91116D-08 -2.98779D-03 1.42605D-07 1.77385D-07 - 52 2.24390D+00 -8.57196D-08 -2.14105D-02 -2.96530D-02 3.30080D-08 -1.15043D+02 -1.70496D+01 -4.84548D-08 -6.55246D-02 -5.10505D-03 - 53 -3.71529D+00 4.22346D-09 -4.93764D-04 1.51987D-03 -1.65284D-08 -1.76173D+01 -2.32523D+01 4.85524D-08 -5.10628D-03 -3.53313D-03 - 54 6.87033D-08 1.39445D+01 2.73969D-08 -8.49662D-08 -2.98778D-03 -2.42323D-07 1.14142D-07 -1.11483D+01 -9.59651D-08 1.43061D-07 - 55 1.43641D-02 8.34752D-08 -2.89086D+01 -2.92938D+01 6.13385D-08 1.07987D-02 1.30936D-02 2.24505D-08 -1.13419D+00 -2.96591D+01 - 56 1.19747D-02 4.23809D-08 -2.83534D+01 -1.09348D+02 -1.16131D-08 1.09888D-02 1.33374D-02 3.23068D-08 7.45815D+00 1.82230D+00 - 57 7.15958D-08 1.65193D-02 1.23485D-07 -9.05742D-08 -1.02034D+01 -1.14882D-07 1.98281D-08 -2.84369D-03 3.76878D-08 1.68161D-07 - 58 -5.08631D-02 1.57681D-07 1.07986D-02 1.30938D-02 -2.32994D-08 -2.89086D+01 -2.92938D+01 4.33589D-08 2.99913D-02 -3.46844D-04 - 59 1.64625D+00 1.08270D-07 1.09884D-02 1.33373D-02 1.08342D-08 -2.83534D+01 -1.09348D+02 7.21677D-08 3.00167D-02 3.82887D-03 - 60 6.31370D-08 -9.21244D+00 -1.98969D-08 -6.45650D-08 -2.84366D-03 -1.86741D-07 1.10016D-07 -1.02034D+01 5.95393D-08 1.75935D-07 + 41 8.59877D+01 + 42 1.92313D-07 2.99943D+01 + 43 -9.42642D-03 -3.08167D-07 7.25687D+01 + 44 -1.90151D-02 6.29263D-07 -8.85207D+00 7.42911D+01 + 45 -3.42708D-07 1.27814D-03 -1.98338D-07 2.74632D-07 9.49458D+00 + 46 9.25894D+00 -5.04456D-07 2.22920D-02 -4.09686D-02 -1.20270D-06 7.25687D+01 + 47 2.37411D+00 5.98297D-07 -4.09418D-02 1.72861D-02 -2.27524D-07 -8.85207D+00 7.42911D+01 + 48 1.69698D-07 1.64763D+00 -2.19218D-07 4.73844D-07 7.75353D-04 1.60824D-07 2.46046D-07 9.49458D+00 + 49 -2.64525D-02 4.49780D-07 -1.15041D+02 -1.70499D+01 -1.63267D-06 -2.14511D-02 -2.96672D-02 1.65711D-06 4.10720D+02 + 50 -6.79957D-03 -4.17346D-07 -1.76173D+01 -2.32515D+01 4.31111D-07 -5.08290D-04 1.49916D-03 1.37443D-06 6.01946D+01 7.17922D+01 + 51 8.70554D-07 2.13175D-03 4.45770D-08 3.48958D-07 -1.11463D+01 7.47779D-07 2.99284D-07 -3.00395D-03 2.49744D-06 1.23152D-07 + 52 2.24438D+00 7.42899D-07 -2.14511D-02 -2.96568D-02 -2.01695D-06 -1.15041D+02 -1.70499D+01 8.41565D-07 -6.56829D-02 -5.16637D-03 + 53 -3.71502D+00 -3.23972D-07 -5.10599D-04 1.50161D-03 -6.74887D-07 -1.76173D+01 -2.32515D+01 4.74053D-08 -5.18592D-03 -3.55036D-03 + 54 1.91805D-08 1.39451D+01 -6.47532D-08 4.40170D-07 -3.00238D-03 -3.44938D-07 2.23768D-07 -1.11463D+01 -4.58084D-07 -1.03078D-06 + 55 1.42905D-02 -4.76099D-08 -2.89080D+01 -2.92937D+01 1.95148D-06 1.07542D-02 1.31029D-02 -7.24047D-07 -1.13385D+00 -2.96588D+01 + 56 1.19194D-02 -9.02130D-07 -2.83534D+01 -1.09346D+02 1.88180D-06 1.10168D-02 1.32928D-02 -1.85967D-06 7.45945D+00 1.82223D+00 + 57 8.73202D-07 1.63974D-02 1.21362D-07 -9.09099D-07 -1.02012D+01 3.26761D-08 -3.95900D-07 -2.76773D-03 1.58358D-07 1.01700D-06 + 58 -5.13161D-02 8.32296D-07 1.07523D-02 1.31190D-02 3.54975D-06 -2.89080D+01 -2.92937D+01 -2.09049D-07 3.01357D-02 -3.94891D-04 + 59 1.64588D+00 -6.61753D-07 1.10068D-02 1.32934D-02 2.87934D-06 -2.83533D+01 -1.09346D+02 -1.16494D-06 3.03136D-02 3.91042D-03 + 60 1.44161D-08 -9.21242D+00 1.32704D-07 -6.56811D-07 -2.76780D-03 -1.22118D-06 -4.17246D-07 -1.02012D+01 -2.04666D-06 -1.60851D-07 51 52 53 54 55 56 57 58 59 60 ----- ----- ----- ----- ----- - 51 2.48999D+01 - 52 2.28013D-07 4.10725D+02 - 53 4.80712D-08 6.01956D+01 7.17942D+01 - 54 8.08829D-03 1.74936D-07 -1.82272D-07 2.48999D+01 - 55 -3.88355D-08 2.99912D-02 -3.46893D-04 7.37587D-08 9.18355D+01 - 56 -9.54793D-08 3.00177D-02 3.82905D-03 6.61662D-08 9.99973D+01 3.89500D+02 - 57 2.21100D+00 3.01886D-07 -1.85609D-07 -2.25627D-02 8.70757D-08 5.79367D-10 2.48221D+01 - 58 3.50152D-08 -1.13419D+00 -2.96591D+01 7.17444D-08 -4.50989D-03 -1.94538D-02 6.65005D-08 9.18355D+01 - 59 -1.17396D-07 7.45815D+00 1.82230D+00 1.01794D-07 -1.94468D-02 -2.26033D-02 1.00800D-07 9.99973D+01 3.89500D+02 - 60 -2.25627D-02 1.93744D-07 -1.46880D-07 2.21100D+00 1.70337D-07 3.59233D-08 4.02774D-02 -4.97856D-08 -3.29244D-08 2.48221D+01 + 51 2.48962D+01 + 52 3.26534D-06 4.10720D+02 + 53 7.45859D-07 6.01946D+01 7.17922D+01 + 54 8.00309D-03 -3.22370D-07 -3.41766D-07 2.48962D+01 + 55 -1.81999D-06 3.01342D-02 -3.87525D-04 8.22523D-07 9.18335D+01 + 56 -3.14022D-06 3.03214D-02 3.91289D-03 1.69695D-06 9.99960D+01 3.89495D+02 + 57 2.21001D+00 1.48811D-06 8.98851D-07 -2.25796D-02 1.92282D-07 1.42616D-06 2.48180D+01 + 58 -3.52345D-06 -1.13386D+00 -2.96588D+01 4.93508D-07 -4.54683D-03 -1.95691D-02 -3.12047D-06 9.18335D+01 + 59 -3.28023D-06 7.45945D+00 1.82223D+00 9.12561D-07 -1.94564D-02 -2.27523D-02 -2.79403D-06 9.99960D+01 3.89495D+02 + 60 -2.25796D-02 1.23961D-06 4.20318D-07 2.21001D+00 6.49416D-07 2.16683D-06 3.99542D-02 1.41331D-06 1.69155D-07 2.48180D+01 center of mass -------------- @@ -4591,9 +1977,9 @@ Iterative solution of linear equations moments of inertia (a.u.) ------------------ - 2631.731379210398 -0.000000000000 0.000000000000 - -0.000000000000 390.819001468288 0.000000000000 - 0.000000000000 0.000000000000 3022.550380678686 + 2631.731379210404 0.000000000000 0.000000000000 + 0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678692 Rotational Constants -------------------- @@ -4605,16 +1991,16 @@ Iterative solution of linear equations Temperature = 298.15K frequency scaling parameter = 1.0000 - Zero-Point correction to Energy = 111.089 kcal/mol ( 0.177031 au) - Thermal correction to Energy = 116.660 kcal/mol ( 0.185909 au) + Zero-Point correction to Energy = 111.088 kcal/mol ( 0.177030 au) + Thermal correction to Energy = 116.659 kcal/mol ( 0.185909 au) Thermal correction to Enthalpy = 117.252 kcal/mol ( 0.186853 au) - Total Entropy = 91.888 cal/mol-K + Total Entropy = 91.893 cal/mol-K - Translational = 40.484 cal/mol-K (mol. weight = 130.0782) - Rotational = 28.131 cal/mol-K (symmetry # = 2) - - Vibrational = 23.274 cal/mol-K + - Vibrational = 23.279 cal/mol-K - Cv (constant volume heat capacity) = 33.522 cal/mol-K + Cv (constant volume heat capacity) = 33.523 cal/mol-K - Translational = 2.979 cal/mol-K - Rotational = 2.979 cal/mol-K - Vibrational = 27.564 cal/mol-K @@ -4628,653 +2014,653 @@ Iterative solution of linear equations 1 2 3 4 5 6 - P.Frequency -0.00 -0.00 -0.00 -0.00 0.00 0.00 - - 1 -0.10019 -0.00094 -0.00000 -0.00000 -0.00000 0.00340 - 2 0.00294 0.08783 0.00000 0.00000 0.00000 -0.00554 - 3 0.00000 -0.00000 -0.08657 0.05045 0.02956 0.00000 - 4 -0.05598 0.00113 0.00000 0.00000 0.00000 -0.08316 - 5 -0.00447 0.08749 -0.00000 -0.00000 -0.00000 0.00895 - 6 0.00000 -0.00000 -0.00138 0.10121 -0.02584 0.00000 - 7 -0.08573 -0.00027 -0.00000 -0.00000 -0.00000 -0.02492 - 8 0.01982 0.08862 0.00000 0.00000 0.00000 -0.03859 - 9 0.00000 -0.00000 -0.04730 0.07079 0.12887 0.00000 - 10 -0.07044 0.00045 0.00000 0.00000 0.00000 -0.05485 - 11 -0.02135 0.08670 -0.00000 -0.00000 -0.00000 0.04200 - 12 0.00000 -0.00000 -0.04065 0.08087 -0.12515 -0.00000 - 13 -0.06410 0.00075 0.00000 0.00000 0.00000 -0.06726 - 14 0.01622 0.08845 0.00000 0.00000 0.00000 -0.03156 - 15 0.00000 -0.00000 -0.00561 0.09563 0.10193 -0.00000 - 16 -0.09207 -0.00056 -0.00000 -0.00000 -0.00000 -0.01251 - 17 -0.01776 0.08687 -0.00000 -0.00000 -0.00000 0.03496 - 18 0.00000 -0.00000 -0.08234 0.05604 -0.09821 -0.00000 - 19 -0.09166 -0.00054 -0.00000 -0.00000 -0.00000 -0.01330 - 20 0.03594 0.08938 0.00000 0.00000 0.00000 -0.07015 - 21 0.00000 -0.00000 -0.04980 0.06690 0.22830 0.00000 - 22 -0.06450 0.00073 0.00000 0.00000 0.00000 -0.06647 - 23 -0.03747 0.08594 -0.00000 -0.00000 -0.00000 0.07355 - 24 0.00000 -0.00000 -0.03815 0.08476 -0.22459 0.00000 - 25 -0.05328 0.00125 0.00000 0.00000 0.00000 -0.08845 - 26 0.02952 0.08908 0.00000 0.00000 0.00000 -0.05760 - 27 0.00000 -0.00000 0.02418 0.11098 0.18030 -0.00000 - 28 -0.10289 -0.00107 -0.00000 -0.00000 -0.00000 0.00868 - 29 -0.03106 0.08624 -0.00000 -0.00000 -0.00000 0.06100 - 30 0.00000 -0.00000 -0.11213 0.04068 -0.17659 0.00000 - 31 -0.03303 0.00220 0.00000 0.00000 0.00000 -0.12809 - 32 -0.00912 0.08727 -0.00000 -0.00000 -0.00000 0.01806 - 33 0.00000 0.00000 0.04236 0.12740 -0.05953 -0.00000 - 34 -0.12314 -0.00202 -0.00000 -0.00000 -0.00000 0.04832 - 35 0.00759 0.08805 0.00000 0.00000 0.00000 -0.01466 - 36 -0.00000 0.00000 -0.13031 0.02426 0.06324 -0.00000 - 37 -0.02911 0.00238 0.00000 0.00000 0.00000 -0.13576 - 38 -0.02588 0.08649 0.00000 0.00000 0.00000 0.05087 - 39 -0.00000 0.00000 0.04040 0.12879 -0.16239 -0.00000 - 40 -0.12706 -0.00220 -0.00000 -0.00000 -0.00000 0.05599 - 41 0.02435 0.08883 -0.00000 -0.00000 -0.00000 -0.04746 - 42 -0.00000 0.00000 -0.12835 0.02287 0.16611 0.00000 - 43 -0.01740 0.00293 -0.00000 -0.00000 -0.00000 -0.15868 - 44 0.00493 0.08793 -0.00000 -0.00000 -0.00000 -0.00944 - 45 -0.00000 0.00000 0.08232 0.14857 0.02227 0.00000 - 46 -0.13876 -0.00275 0.00000 0.00000 0.00000 0.07891 - 47 -0.00646 0.08739 0.00000 0.00000 0.00000 0.01285 - 48 -0.00000 0.00000 -0.17027 0.00309 -0.01855 0.00000 - 49 -0.02022 0.00280 -0.00000 -0.00000 -0.00000 -0.15316 - 50 0.02183 0.08872 -0.00000 -0.00000 -0.00000 -0.04253 - 51 -0.00000 -0.00000 0.08659 0.14851 0.12573 -0.00000 - 52 -0.13595 -0.00261 0.00000 0.00000 0.00000 0.07339 - 53 -0.02336 0.08660 0.00000 0.00000 0.00000 0.04593 - 54 -0.00000 -0.00000 -0.17454 0.00315 -0.12202 -0.00000 - 55 -0.00099 0.00370 -0.00000 -0.00000 -0.00000 -0.19082 - 56 -0.00001 0.08769 -0.00000 -0.00000 -0.00000 0.00023 - 57 0.00000 0.00000 0.11266 0.16700 -0.01163 -0.00000 - 58 -0.15518 -0.00351 0.00000 0.00000 0.00000 0.11105 - 59 -0.00152 0.08762 0.00000 0.00000 0.00000 0.00318 - 60 0.00000 0.00000 -0.20061 -0.01533 0.01535 0.00000 + P.Frequency -0.00 0.00 0.00 0.00 0.00 0.00 + + 1 0.01221 -0.00000 -0.00000 -0.00000 0.09949 -0.00171 + 2 -0.00025 0.00000 0.00000 0.00000 -0.00244 0.08802 + 3 0.00000 -0.05089 0.02062 -0.08888 0.00000 -0.00000 + 4 -0.07763 0.00000 -0.00000 0.00000 0.06315 0.00603 + 5 0.01480 -0.00000 -0.00000 -0.00000 0.00365 0.08673 + 6 0.00000 -0.07238 0.07484 0.00860 -0.00000 0.00000 + 7 -0.01717 -0.00000 -0.00000 -0.00000 0.08760 0.00082 + 8 -0.03455 0.00000 0.00000 0.00000 -0.01631 0.09098 + 9 -0.00000 -0.12324 -0.05878 -0.07219 -0.00000 0.00000 + 10 -0.04824 0.00000 0.00000 -0.00000 0.07504 0.00350 + 11 0.04910 -0.00000 -0.00000 0.00000 0.01752 0.08377 + 12 -0.00000 -0.00003 0.15424 -0.00809 0.00000 0.00000 + 13 -0.06112 0.00000 0.00000 0.00000 0.06983 0.00461 + 14 -0.02724 0.00000 0.00000 -0.00000 -0.01336 0.09035 + 15 0.00000 -0.13385 -0.03240 -0.02453 0.00000 -0.00000 + 16 -0.00430 -0.00000 -0.00000 0.00000 0.09281 -0.00029 + 17 0.04180 -0.00000 -0.00000 0.00000 0.01457 0.08440 + 18 0.00000 0.01058 0.12785 -0.05575 -0.00000 -0.00000 + 19 -0.00512 -0.00000 0.00000 0.00000 0.09248 -0.00021 + 20 -0.06730 0.00000 0.00000 0.00000 -0.02956 0.09379 + 21 0.00000 -0.17153 -0.14216 -0.09718 -0.00000 0.00000 + 22 -0.06030 0.00000 0.00000 -0.00000 0.07016 0.00454 + 23 0.08185 -0.00000 -0.00000 0.00000 0.03077 0.08096 + 24 0.00000 0.04827 0.23762 0.01691 0.00000 0.00000 + 25 -0.08311 0.00000 0.00000 -0.00000 0.06093 0.00650 + 26 -0.05427 0.00000 0.00000 0.00000 -0.02429 0.09267 + 27 -0.00000 -0.19025 -0.09517 -0.01256 0.00000 -0.00000 + 28 0.01770 -0.00000 -0.00000 -0.00000 0.10171 -0.00218 + 29 0.06882 -0.00000 -0.00000 0.00000 0.02550 0.08208 + 30 -0.00000 0.06698 0.19063 -0.06771 -0.00000 -0.00000 + 31 -0.12425 0.00000 -0.00000 0.00000 0.04429 0.01004 + 32 0.02425 -0.00000 -0.00000 0.00000 0.00747 0.08591 + 33 -0.00000 -0.08079 0.10706 0.05984 -0.00000 -0.00000 + 34 0.05884 -0.00000 0.00000 0.00000 0.11835 -0.00572 + 35 -0.00970 0.00000 -0.00000 -0.00000 -0.00626 0.08884 + 36 -0.00000 -0.04247 -0.01160 -0.14011 0.00000 -0.00000 + 37 -0.13222 0.00000 0.00000 -0.00000 0.04107 0.01073 + 38 0.05831 0.00000 -0.00000 -0.00000 0.02125 0.08298 + 39 0.00000 -0.02821 0.19289 0.08116 0.00000 -0.00000 + 40 0.06680 -0.00000 0.00000 -0.00000 0.12157 -0.00641 + 41 -0.04375 -0.00000 -0.00000 0.00000 -0.02004 0.09177 + 42 0.00000 -0.09506 -0.09744 -0.16143 -0.00000 -0.00000 + 43 -0.15601 -0.00000 0.00000 0.00000 0.03145 0.01277 + 44 -0.00429 -0.00000 0.00000 -0.00000 -0.00407 0.08837 + 45 0.00000 -0.14479 0.04236 0.08117 0.00000 0.00000 + 46 0.09059 0.00000 0.00000 -0.00000 0.13119 -0.00845 + 47 0.01884 0.00000 0.00000 0.00000 0.00528 0.08638 + 48 0.00000 0.02152 0.05309 -0.16144 -0.00000 0.00000 + 49 -0.15028 -0.00000 -0.00000 0.00000 0.03377 0.01228 + 50 -0.03863 -0.00000 0.00000 -0.00000 -0.01796 0.09133 + 51 -0.00000 -0.19900 -0.04376 0.06202 -0.00000 0.00000 + 52 0.08486 0.00000 0.00000 0.00000 0.12888 -0.00796 + 53 0.05318 0.00000 0.00000 -0.00000 0.01917 0.08342 + 54 -0.00000 0.07574 0.13921 -0.14230 0.00000 0.00000 + 55 -0.18936 -0.00000 0.00000 -0.00000 0.01796 0.01565 + 56 0.00575 -0.00000 0.00000 -0.00000 -0.00001 0.08751 + 57 -0.00000 -0.14535 0.07352 0.11909 0.00000 -0.00000 + 58 0.12395 0.00000 0.00000 -0.00000 0.14469 -0.01132 + 59 0.00881 0.00000 0.00000 0.00000 0.00122 0.08724 + 60 -0.00000 0.02208 0.02193 -0.19936 -0.00000 0.00000 7 8 9 10 11 12 - P.Frequency 49.04 81.58 151.71 181.04 265.73 300.97 - - 1 -0.00000 -0.00000 -0.00000 0.05680 -0.06713 0.00000 - 2 0.00000 -0.00000 -0.00000 0.01059 0.02425 0.00000 - 3 -0.04456 -0.05431 0.02075 0.00000 0.00000 -0.11865 - 4 0.00000 -0.00000 -0.00000 0.05680 0.06713 0.00000 - 5 -0.00000 -0.00000 -0.00000 0.01059 -0.02425 -0.00000 - 6 -0.04456 0.05431 0.02075 0.00000 -0.00000 0.11865 - 7 -0.00000 -0.00000 -0.00000 0.06200 -0.03561 0.00000 - 8 0.00000 -0.00000 -0.00000 0.01370 0.05532 0.00000 - 9 -0.05719 0.02641 0.05683 0.00000 -0.00000 -0.07809 - 10 0.00000 -0.00000 -0.00000 0.06200 0.03561 0.00000 - 11 -0.00000 -0.00000 -0.00000 0.01370 -0.05532 0.00000 - 12 -0.05719 -0.02641 0.05683 0.00000 -0.00000 0.07809 - 13 0.00000 -0.00000 -0.00000 0.06101 0.04507 0.00000 + P.Frequency 48.96 81.54 151.68 181.03 265.73 300.96 + + 1 -0.00000 0.00000 -0.00000 0.05680 -0.06713 -0.00000 + 2 0.00000 0.00000 0.00000 0.01059 0.02425 0.00000 + 3 -0.04456 0.05431 0.02076 -0.00000 0.00000 -0.11865 + 4 0.00000 0.00000 0.00000 0.05680 0.06713 0.00000 + 5 0.00000 -0.00000 0.00000 0.01059 -0.02425 -0.00000 + 6 -0.04456 -0.05431 0.02076 0.00000 -0.00000 0.11865 + 7 0.00000 0.00000 -0.00000 0.06200 -0.03561 -0.00000 + 8 0.00000 -0.00000 0.00000 0.01370 0.05532 0.00000 + 9 -0.05717 -0.02641 0.05684 0.00000 -0.00000 -0.07809 + 10 0.00000 0.00000 -0.00000 0.06200 0.03561 0.00000 + 11 -0.00000 -0.00000 -0.00000 0.01370 -0.05532 -0.00000 + 12 -0.05717 0.02641 0.05684 0.00000 -0.00000 0.07809 + 13 0.00000 0.00000 0.00000 0.06101 0.04507 0.00000 14 0.00000 -0.00000 -0.00000 0.00650 0.03728 0.00000 - 15 -0.05326 0.08381 0.06572 0.00000 0.00000 0.06449 - 16 -0.00000 -0.00000 -0.00000 0.06101 -0.04507 0.00000 - 17 -0.00000 -0.00000 -0.00000 0.00650 -0.03728 0.00000 - 18 -0.05326 -0.08381 0.06572 0.00000 0.00000 -0.06449 - 19 -0.00000 -0.00000 -0.00000 0.06246 -0.05345 -0.00000 - 20 0.00000 -0.00000 -0.00000 0.01388 0.10416 0.00000 - 21 -0.06187 0.05251 0.04388 0.00000 -0.00000 -0.11937 - 22 0.00000 -0.00000 -0.00000 0.06246 0.05345 0.00000 + 15 -0.05324 -0.08381 0.06573 0.00000 0.00000 0.06450 + 16 -0.00000 0.00000 -0.00000 0.06101 -0.04507 -0.00000 + 17 -0.00000 -0.00000 -0.00000 0.00650 -0.03728 -0.00000 + 18 -0.05324 0.08381 0.06573 -0.00000 0.00000 -0.06450 + 19 -0.00000 0.00000 -0.00000 0.06246 -0.05344 -0.00000 + 20 0.00000 -0.00000 0.00000 0.01388 0.10416 0.00000 + 21 -0.06186 -0.05251 0.04389 0.00000 -0.00000 -0.11936 + 22 0.00000 0.00000 0.00000 0.06246 0.05344 0.00000 23 -0.00000 -0.00000 -0.00000 0.01388 -0.10416 -0.00000 - 24 -0.06187 -0.05251 0.04388 0.00000 -0.00000 0.11937 - 25 0.00000 -0.00000 -0.00000 0.05943 0.08285 0.00000 - 26 0.00000 0.00000 0.00000 0.00257 0.08107 0.00000 - 27 -0.05764 0.15824 0.05763 0.00000 0.00000 0.08254 - 28 -0.00000 -0.00000 -0.00000 0.05943 -0.08285 0.00000 + 24 -0.06186 0.05252 0.04389 0.00000 -0.00000 0.11936 + 25 0.00000 0.00000 0.00000 0.05943 0.08285 0.00000 + 26 0.00000 -0.00000 0.00000 0.00257 0.08107 0.00000 + 27 -0.05763 -0.15824 0.05764 0.00000 0.00000 0.08255 + 28 -0.00000 0.00000 -0.00000 0.05943 -0.08285 -0.00000 29 -0.00000 -0.00000 -0.00000 0.00257 -0.08107 -0.00000 - 30 -0.05764 -0.15824 0.05763 0.00000 0.00000 -0.08254 - 31 0.00000 0.00000 0.00000 -0.03067 0.03035 -0.00000 + 30 -0.05763 0.15824 0.05764 -0.00000 0.00000 -0.08255 + 31 0.00000 -0.00000 0.00000 -0.03066 0.03035 0.00000 32 -0.00000 -0.00000 -0.00000 0.02877 -0.02383 -0.00000 - 33 -0.01336 0.08796 -0.12600 -0.00000 0.00000 -0.03584 - 34 -0.00000 0.00000 0.00000 -0.03067 -0.03035 -0.00000 - 35 0.00000 -0.00000 -0.00000 0.02877 0.02383 0.00000 - 36 -0.01336 -0.08796 -0.12600 -0.00000 0.00000 0.03584 - 37 0.00000 0.00000 0.00000 -0.05164 0.01294 -0.00000 - 38 0.00000 -0.00000 -0.00000 0.11825 0.04829 0.00000 - 39 -0.11912 0.24970 -0.35625 -0.00000 0.00000 -0.25915 - 40 -0.00000 0.00000 0.00000 -0.05164 -0.01294 -0.00000 - 41 -0.00000 -0.00000 -0.00000 0.11825 -0.04829 0.00000 - 42 -0.11912 -0.24970 -0.35625 -0.00000 0.00000 0.25915 - 43 -0.00000 0.00000 0.00000 -0.12652 -0.06653 -0.00000 - 44 -0.00000 0.00000 0.00000 -0.05551 -0.11205 -0.00000 - 45 0.15097 -0.09310 -0.00427 -0.00000 -0.00000 -0.02058 - 46 0.00000 0.00000 0.00000 -0.12652 0.06653 -0.00000 + 33 -0.01339 -0.08796 -0.12599 0.00000 0.00000 -0.03582 + 34 -0.00000 -0.00000 0.00000 -0.03066 -0.03035 -0.00000 + 35 0.00000 0.00000 0.00000 0.02877 0.02383 0.00000 + 36 -0.01338 0.08796 -0.12599 -0.00000 0.00000 0.03582 + 37 0.00000 -0.00000 0.00000 -0.05163 0.01294 -0.00000 + 38 0.00000 0.00000 -0.00000 0.11824 0.04829 0.00000 + 39 -0.11920 -0.24972 -0.35623 -0.00000 0.00000 -0.25913 + 40 -0.00000 -0.00000 0.00000 -0.05163 -0.01294 -0.00000 + 41 0.00000 0.00000 -0.00000 0.11824 -0.04828 -0.00000 + 42 -0.11920 0.24972 -0.35623 -0.00000 0.00000 0.25913 + 43 -0.00000 -0.00000 0.00000 -0.12652 -0.06653 -0.00000 + 44 -0.00000 -0.00000 -0.00000 -0.05551 -0.11205 -0.00000 + 45 0.15097 0.09310 -0.00431 -0.00000 -0.00000 -0.02059 + 46 -0.00000 -0.00000 0.00000 -0.12652 0.06653 0.00000 47 0.00000 0.00000 0.00000 -0.05551 0.11205 0.00000 - 48 0.15097 0.09310 -0.00427 0.00000 -0.00000 0.02058 - 49 -0.00000 0.00000 0.00000 -0.10885 -0.04627 -0.00000 - 50 -0.00000 0.00000 0.00000 -0.15868 -0.22733 -0.00000 - 51 0.27573 -0.28205 0.24308 0.00000 -0.00000 0.20810 - 52 -0.00000 0.00000 0.00000 -0.10885 0.04627 -0.00000 - 53 0.00000 0.00000 0.00000 -0.15868 0.22733 -0.00000 - 54 0.27573 0.28205 0.24308 0.00000 -0.00000 -0.20810 - 55 -0.00000 0.00000 0.00000 -0.23085 -0.18384 -0.00000 - 56 -0.00000 0.00000 0.00000 -0.02427 -0.07745 -0.00000 - 57 0.16997 -0.06336 -0.14357 -0.00000 0.00000 -0.23346 - 58 0.00000 0.00000 0.00000 -0.23085 0.18384 -0.00000 + 48 0.15097 -0.09310 -0.00431 -0.00000 -0.00000 0.02059 + 49 -0.00000 -0.00000 0.00000 -0.10885 -0.04627 -0.00000 + 50 -0.00000 -0.00000 -0.00000 -0.15869 -0.22734 -0.00000 + 51 0.27579 0.28207 0.24304 -0.00000 -0.00000 0.20810 + 52 -0.00000 -0.00000 0.00000 -0.10885 0.04627 0.00000 + 53 0.00000 0.00000 0.00000 -0.15869 0.22734 0.00000 + 54 0.27579 -0.28207 0.24304 0.00000 -0.00000 -0.20810 + 55 -0.00000 -0.00000 -0.00000 -0.23086 -0.18384 -0.00000 + 56 -0.00000 -0.00000 -0.00000 -0.02427 -0.07745 -0.00000 + 57 0.16993 0.06332 -0.14365 -0.00000 0.00000 -0.23349 + 58 -0.00000 -0.00000 0.00000 -0.23086 0.18384 0.00000 59 0.00000 0.00000 0.00000 -0.02427 0.07745 0.00000 - 60 0.16997 0.06336 -0.14357 -0.00000 -0.00000 0.23346 + 60 0.16993 -0.06332 -0.14365 -0.00000 -0.00000 0.23349 13 14 15 16 17 18 - P.Frequency 407.91 424.40 468.98 487.92 578.84 657.33 - - 1 0.06234 0.00000 0.00000 -0.02307 0.03795 -0.00000 - 2 0.06103 0.00000 0.00000 0.03328 -0.06914 0.00000 - 3 0.00000 0.01085 -0.13222 0.00000 0.00000 0.02719 - 4 -0.06234 -0.00000 -0.00000 -0.02307 -0.03795 0.00000 - 5 -0.06103 -0.00000 0.00000 0.03328 0.06914 -0.00000 - 6 0.00000 0.01085 -0.13222 0.00000 0.00000 -0.02719 - 7 0.00251 -0.00000 -0.00000 -0.04171 0.07929 -0.00000 - 8 -0.02401 -0.00000 -0.00000 0.04784 -0.03827 -0.00000 - 9 -0.00000 0.12087 0.06190 0.00000 -0.00000 -0.08217 - 10 -0.00251 0.00000 -0.00000 -0.04171 -0.07929 0.00000 - 11 0.02401 0.00000 0.00000 0.04784 0.03827 0.00000 - 12 -0.00000 0.12087 0.06190 0.00000 -0.00000 0.08217 - 13 -0.07035 -0.00000 -0.00000 -0.04286 -0.01391 0.00000 - 14 -0.02928 -0.00000 -0.00000 0.05699 -0.01300 -0.00000 - 15 0.00000 -0.12494 0.03988 -0.00000 0.00000 0.07876 - 16 0.07035 0.00000 -0.00000 -0.04286 0.01391 -0.00000 - 17 0.02928 0.00000 0.00000 0.05699 0.01300 0.00000 - 18 0.00000 -0.12494 0.03988 -0.00000 0.00000 -0.07876 - 19 0.03778 0.00000 -0.00000 -0.04590 0.08496 -0.00000 - 20 -0.11569 -0.00000 -0.00000 0.05445 -0.05175 -0.00000 - 21 -0.00000 0.23241 0.22744 0.00000 -0.00000 -0.11223 - 22 -0.03778 0.00000 -0.00000 -0.04590 -0.08496 0.00000 - 23 0.11569 0.00000 0.00000 0.05445 0.05175 0.00000 - 24 -0.00000 0.23241 0.22744 0.00000 -0.00000 0.11223 - 25 -0.07247 0.00000 -0.00000 -0.04413 -0.09395 0.00000 - 26 -0.03305 -0.00000 -0.00000 0.05565 -0.11017 -0.00000 - 27 0.00000 -0.28134 0.19194 -0.00000 0.00000 0.13548 - 28 0.07247 0.00000 0.00000 -0.04413 0.09395 -0.00000 - 29 0.03305 0.00000 0.00000 0.05565 0.11017 0.00000 - 30 0.00000 -0.28134 0.19194 -0.00000 0.00000 -0.13548 - 31 0.00239 0.00000 0.00000 0.09736 0.10221 0.00000 + P.Frequency 407.91 424.39 468.98 487.91 578.83 657.32 + + 1 0.06234 0.00000 0.00000 -0.02307 0.03795 0.00000 + 2 0.06103 0.00000 0.00000 0.03328 -0.06914 -0.00000 + 3 -0.00000 -0.01086 0.13220 0.00000 0.00000 -0.02718 + 4 -0.06234 -0.00000 0.00000 -0.02307 -0.03795 -0.00000 + 5 -0.06103 -0.00000 -0.00000 0.03328 0.06914 0.00000 + 6 0.00000 -0.01086 0.13220 0.00000 0.00000 0.02718 + 7 0.00251 -0.00000 0.00000 -0.04171 0.07928 0.00000 + 8 -0.02401 -0.00000 -0.00000 0.04783 -0.03827 0.00000 + 9 0.00000 -0.12086 -0.06191 -0.00000 -0.00000 0.08217 + 10 -0.00251 0.00000 0.00000 -0.04171 -0.07928 -0.00000 + 11 0.02401 0.00000 -0.00000 0.04783 0.03827 -0.00000 + 12 0.00000 -0.12086 -0.06191 -0.00000 -0.00000 -0.08217 + 13 -0.07035 -0.00000 0.00000 -0.04286 -0.01391 -0.00000 + 14 -0.02928 -0.00000 -0.00000 0.05698 -0.01300 0.00000 + 15 -0.00000 0.12494 -0.03987 -0.00000 0.00000 -0.07876 + 16 0.07035 0.00000 0.00000 -0.04286 0.01391 0.00000 + 17 0.02928 0.00000 -0.00000 0.05698 0.01300 -0.00000 + 18 -0.00000 0.12494 -0.03987 0.00000 -0.00000 0.07876 + 19 0.03778 -0.00000 0.00000 -0.04590 0.08496 0.00000 + 20 -0.11569 -0.00000 -0.00000 0.05444 -0.05176 0.00000 + 21 0.00000 -0.23239 -0.22746 -0.00000 -0.00000 0.11222 + 22 -0.03778 -0.00000 0.00000 -0.04590 -0.08496 -0.00000 + 23 0.11569 0.00000 -0.00000 0.05444 0.05176 0.00000 + 24 0.00000 -0.23239 -0.22746 -0.00000 -0.00000 -0.11222 + 25 -0.07247 -0.00000 0.00000 -0.04413 -0.09395 -0.00000 + 26 -0.03305 -0.00000 -0.00000 0.05564 -0.11017 0.00000 + 27 -0.00000 0.28136 -0.19193 -0.00000 0.00000 -0.13548 + 28 0.07247 0.00000 0.00000 -0.04413 0.09395 0.00000 + 29 0.03305 0.00000 -0.00000 0.05564 0.11017 0.00000 + 30 -0.00000 0.28136 -0.19193 -0.00000 0.00000 0.13548 + 31 0.00239 -0.00000 -0.00000 0.09736 0.10221 0.00000 32 -0.11048 -0.00000 -0.00000 -0.01406 0.05564 -0.00000 - 33 0.00000 -0.00253 -0.04259 0.00000 -0.00000 -0.09673 - 34 -0.00239 -0.00000 0.00000 0.09736 -0.10221 -0.00000 - 35 0.11048 0.00000 0.00000 -0.01406 -0.05564 0.00000 - 36 0.00000 -0.00253 -0.04259 0.00000 0.00000 0.09673 - 37 0.01264 0.00000 0.00000 0.09900 0.10805 0.00000 - 38 -0.16284 -0.00000 -0.00000 -0.02943 0.02986 -0.00000 - 39 -0.00000 -0.01386 0.13641 -0.00000 0.00000 0.13035 - 40 -0.01264 -0.00000 0.00000 0.09900 -0.10805 -0.00000 - 41 0.16284 0.00000 0.00000 -0.02943 -0.02986 -0.00000 - 42 -0.00000 -0.01386 0.13641 -0.00000 0.00000 -0.13035 - 43 0.03927 0.00000 0.00000 0.01769 0.01308 -0.00000 - 44 -0.09044 -0.00000 -0.00000 -0.10303 -0.03510 -0.00000 - 45 0.00000 0.00074 0.01871 -0.00000 -0.00000 0.01618 + 33 -0.00000 0.00252 0.04261 -0.00000 -0.00000 0.09674 + 34 -0.00239 0.00000 -0.00000 0.09736 -0.10221 -0.00000 + 35 0.11048 0.00000 0.00000 -0.01406 -0.05564 -0.00000 + 36 -0.00000 0.00252 0.04261 0.00000 0.00000 -0.09674 + 37 0.01264 -0.00000 -0.00000 0.09900 0.10805 0.00000 + 38 -0.16284 -0.00000 0.00000 -0.02943 0.02985 -0.00000 + 39 0.00000 0.01387 -0.13639 -0.00000 0.00000 -0.13032 + 40 -0.01264 0.00000 -0.00000 0.09900 -0.10805 -0.00000 + 41 0.16284 0.00000 0.00000 -0.02943 -0.02985 -0.00000 + 42 -0.00000 0.01387 -0.13639 0.00000 -0.00000 0.13032 + 43 0.03927 0.00000 -0.00000 0.01769 0.01308 -0.00000 + 44 -0.09044 -0.00000 0.00000 -0.10303 -0.03510 -0.00000 + 45 -0.00000 -0.00074 -0.01871 0.00000 -0.00000 -0.01618 46 -0.03927 -0.00000 -0.00000 0.01769 -0.01308 -0.00000 - 47 0.09044 0.00000 -0.00000 -0.10303 0.03510 0.00000 - 48 -0.00000 0.00074 0.01871 -0.00000 -0.00000 -0.01618 - 49 0.03607 0.00000 0.00000 0.04794 0.04996 0.00000 - 50 -0.06588 -0.00000 -0.00000 -0.27470 -0.25313 -0.00000 - 51 0.00000 0.02872 -0.16235 0.00000 -0.00000 -0.20776 - 52 -0.03607 -0.00000 0.00000 0.04794 -0.04996 -0.00000 - 53 0.06588 0.00000 -0.00000 -0.27470 0.25313 0.00000 - 54 -0.00000 0.02872 -0.16235 0.00000 -0.00000 0.20776 - 55 0.06840 0.00000 -0.00000 -0.14510 -0.19196 0.00000 - 56 -0.10052 -0.00000 -0.00000 -0.05617 0.02535 -0.00000 - 57 -0.00000 -0.02540 0.25320 -0.00000 0.00000 0.35697 - 58 -0.06840 0.00000 -0.00000 -0.14510 0.19196 0.00000 - 59 0.10052 0.00000 -0.00000 -0.05617 -0.02535 -0.00000 - 60 -0.00000 -0.02540 0.25320 -0.00000 0.00000 -0.35697 + 47 0.09044 0.00000 0.00000 -0.10302 0.03510 0.00000 + 48 0.00000 -0.00074 -0.01871 -0.00000 -0.00000 0.01618 + 49 0.03607 0.00000 -0.00000 0.04794 0.04997 -0.00000 + 50 -0.06588 0.00000 0.00000 -0.27471 -0.25313 -0.00000 + 51 -0.00000 -0.02873 0.16236 -0.00000 -0.00000 0.20776 + 52 -0.03607 -0.00000 -0.00000 0.04794 -0.04997 -0.00000 + 53 0.06588 -0.00000 0.00000 -0.27471 0.25313 0.00000 + 54 0.00000 -0.02873 0.16236 -0.00000 0.00000 -0.20776 + 55 0.06840 0.00000 0.00000 -0.14510 -0.19197 -0.00000 + 56 -0.10051 -0.00000 -0.00000 -0.05617 0.02535 -0.00000 + 57 0.00000 0.02542 -0.25324 -0.00000 0.00000 -0.35699 + 58 -0.06840 -0.00000 0.00000 -0.14510 0.19197 0.00000 + 59 0.10051 0.00000 0.00000 -0.05617 -0.02535 -0.00000 + 60 -0.00000 0.02542 -0.25324 0.00000 -0.00000 0.35699 19 20 21 22 23 24 - P.Frequency 673.47 707.33 735.11 810.68 862.52 895.31 - - 1 -0.04041 0.00000 0.00161 0.00000 -0.00735 -0.00000 - 2 -0.00025 -0.00000 0.01016 -0.00000 -0.03625 -0.00000 - 3 0.00000 -0.06850 0.00000 0.14259 0.00000 -0.00191 - 4 0.04041 -0.00000 0.00161 -0.00000 0.00735 -0.00000 - 5 0.00025 0.00000 0.01016 0.00000 0.03625 0.00000 - 6 0.00000 -0.06850 -0.00000 -0.14259 0.00000 0.00191 - 7 -0.08896 0.00000 -0.03820 0.00000 0.11600 0.00000 - 8 -0.09853 0.00000 -0.07522 0.00000 0.00186 0.00000 - 9 -0.00000 -0.01327 -0.00000 -0.05830 -0.00000 -0.06380 - 10 0.08896 -0.00000 -0.03820 -0.00000 -0.11600 -0.00000 - 11 0.09853 -0.00000 -0.07522 0.00000 -0.00186 0.00000 - 12 -0.00000 -0.01327 0.00000 0.05830 -0.00000 0.06380 - 13 0.06162 -0.00000 -0.01409 0.00000 0.11778 0.00000 - 14 -0.12263 0.00000 -0.07362 0.00000 -0.03435 -0.00000 - 15 0.00000 -0.01708 -0.00000 0.05701 -0.00000 -0.07017 - 16 -0.06162 0.00000 -0.01409 0.00000 -0.11778 -0.00000 - 17 0.12263 -0.00000 -0.07362 0.00000 0.03435 0.00000 - 18 0.00000 -0.01708 0.00000 -0.05701 -0.00000 0.07017 - 19 -0.10493 0.00000 -0.01932 0.00000 0.08784 0.00000 - 20 -0.05681 -0.00000 -0.12590 0.00000 0.09836 0.00000 - 21 0.00000 0.25587 -0.00000 -0.15555 0.00000 0.43360 - 22 0.10493 -0.00000 -0.01932 -0.00000 -0.08784 0.00000 - 23 0.05681 -0.00000 -0.12590 0.00000 -0.09836 -0.00000 - 24 -0.00000 0.25587 -0.00000 0.15555 0.00000 -0.43360 - 25 0.08401 -0.00000 -0.04802 0.00000 0.07285 -0.00000 - 26 -0.09554 -0.00000 -0.11192 0.00000 -0.10068 -0.00000 - 27 0.00000 0.25282 0.00000 0.15436 0.00000 0.44777 - 28 -0.08401 0.00000 -0.04802 0.00000 -0.07285 -0.00000 - 29 0.09554 -0.00000 -0.11192 0.00000 0.10068 -0.00000 - 30 0.00000 0.25282 -0.00000 -0.15436 0.00000 -0.44777 - 31 0.02094 0.00000 0.07198 -0.00000 -0.03706 -0.00000 - 32 0.00440 0.00000 0.10255 -0.00000 -0.05192 -0.00000 - 33 0.00000 0.09532 0.00000 0.06770 -0.00000 -0.00045 - 34 -0.02094 -0.00000 0.07198 -0.00000 0.03706 0.00000 - 35 -0.00440 0.00000 0.10255 -0.00000 0.05192 -0.00000 - 36 -0.00000 0.09532 -0.00000 -0.06770 -0.00000 0.00045 - 37 0.02190 0.00000 0.07556 -0.00000 -0.04010 -0.00000 - 38 0.00029 -0.00000 0.10591 -0.00000 -0.05475 -0.00000 - 39 -0.00000 -0.14975 -0.00000 -0.08849 0.00000 -0.00156 - 40 -0.02190 -0.00000 0.07555 -0.00000 0.04010 -0.00000 - 41 -0.00029 0.00000 0.10591 -0.00000 0.05475 -0.00000 - 42 -0.00000 -0.14975 0.00000 0.08849 0.00000 0.00156 - 43 0.01523 -0.00000 -0.00669 0.00000 0.00137 0.00000 - 44 -0.00832 -0.00000 0.05020 -0.00000 -0.03528 -0.00000 - 45 -0.00000 -0.01415 0.00000 -0.00629 0.00000 0.00160 - 46 -0.01523 0.00000 -0.00669 0.00000 -0.00137 0.00000 - 47 0.00832 0.00000 0.05020 -0.00000 0.03528 0.00000 - 48 -0.00000 -0.01415 0.00000 0.00629 0.00000 -0.00160 - 49 0.02125 0.00000 0.02470 -0.00000 -0.02022 -0.00000 - 50 -0.04484 -0.00000 -0.14774 0.00000 0.09894 0.00000 - 51 0.00000 0.20972 0.00000 0.11568 -0.00000 0.01149 - 52 -0.02125 0.00000 0.02470 0.00000 0.02022 0.00000 - 53 0.04484 0.00000 -0.14774 0.00000 -0.09894 -0.00000 - 54 0.00000 0.20972 -0.00000 -0.11568 -0.00000 -0.01149 - 55 -0.01397 -0.00000 -0.20681 0.00000 0.15092 0.00000 - 56 0.00016 0.00000 0.11208 -0.00000 -0.08153 -0.00000 - 57 -0.00000 -0.35821 -0.00000 -0.22488 0.00000 -0.01746 - 58 0.01397 0.00000 -0.20681 0.00000 -0.15092 -0.00000 - 59 -0.00016 0.00000 0.11208 -0.00000 0.08153 0.00000 - 60 0.00000 -0.35821 0.00000 0.22488 0.00000 0.01746 + P.Frequency 673.47 707.32 735.11 810.71 862.52 895.31 + + 1 -0.04041 0.00000 -0.00161 -0.00000 -0.00735 -0.00000 + 2 -0.00025 -0.00000 -0.01016 -0.00000 -0.03626 -0.00000 + 3 -0.00000 -0.06851 0.00000 0.14260 -0.00000 -0.00190 + 4 0.04041 -0.00000 -0.00161 -0.00000 0.00735 0.00000 + 5 0.00025 -0.00000 -0.01016 0.00000 0.03626 0.00000 + 6 0.00000 -0.06851 0.00000 -0.14260 0.00000 0.00190 + 7 -0.08896 0.00000 0.03820 0.00000 0.11600 0.00000 + 8 -0.09853 0.00000 0.07522 0.00000 0.00186 -0.00000 + 9 0.00000 -0.01327 -0.00000 -0.05829 0.00000 -0.06379 + 10 0.08896 0.00000 0.03820 -0.00000 -0.11600 -0.00000 + 11 0.09853 0.00000 0.07522 0.00000 -0.00186 -0.00000 + 12 -0.00000 -0.01327 0.00000 0.05829 -0.00000 0.06379 + 13 0.06162 -0.00000 0.01409 0.00000 0.11778 0.00000 + 14 -0.12263 0.00000 0.07362 -0.00000 -0.03435 -0.00000 + 15 -0.00000 -0.01708 0.00000 0.05701 -0.00000 -0.07018 + 16 -0.06162 -0.00000 0.01409 -0.00000 -0.11778 -0.00000 + 17 0.12263 0.00000 0.07362 0.00000 0.03435 -0.00000 + 18 -0.00000 -0.01708 0.00000 -0.05701 0.00000 0.07018 + 19 -0.10493 0.00000 0.01932 0.00000 0.08784 0.00000 + 20 -0.05681 0.00000 0.12590 0.00000 0.09836 0.00000 + 21 0.00000 0.25589 -0.00000 -0.15559 0.00000 0.43354 + 22 0.10493 -0.00000 0.01932 -0.00000 -0.08784 -0.00000 + 23 0.05681 0.00000 0.12590 0.00000 -0.09836 -0.00000 + 24 0.00000 0.25589 -0.00000 0.15559 0.00000 -0.43355 + 25 0.08401 0.00000 0.04802 0.00000 0.07285 -0.00000 + 26 -0.09553 0.00000 0.11192 -0.00000 -0.10068 -0.00000 + 27 -0.00000 0.25286 -0.00000 0.15438 -0.00000 0.44782 + 28 -0.08401 0.00000 0.04802 -0.00000 -0.07285 -0.00000 + 29 0.09553 0.00000 0.11192 0.00000 0.10068 -0.00000 + 30 -0.00000 0.25286 -0.00000 -0.15438 0.00000 -0.44782 + 31 0.02093 -0.00000 -0.07198 0.00000 -0.03706 0.00000 + 32 0.00439 -0.00000 -0.10255 -0.00000 -0.05192 0.00000 + 33 0.00000 0.09532 -0.00000 0.06769 -0.00000 -0.00045 + 34 -0.02093 -0.00000 -0.07198 0.00000 0.03706 0.00000 + 35 -0.00439 -0.00000 -0.10255 0.00000 0.05192 0.00000 + 36 -0.00000 0.09532 -0.00000 -0.06769 0.00000 0.00045 + 37 0.02190 -0.00000 -0.07555 -0.00000 -0.04010 0.00000 + 38 0.00029 -0.00000 -0.10591 0.00000 -0.05475 0.00000 + 39 -0.00000 -0.14968 0.00000 -0.08843 0.00000 -0.00158 + 40 -0.02190 -0.00000 -0.07555 -0.00000 0.04010 0.00000 + 41 -0.00029 -0.00000 -0.10591 0.00000 0.05475 0.00000 + 42 0.00000 -0.14968 0.00000 0.08843 0.00000 0.00158 + 43 0.01523 0.00000 0.00669 0.00000 0.00137 -0.00000 + 44 -0.00832 -0.00000 -0.05021 -0.00000 -0.03528 -0.00000 + 45 -0.00000 -0.01414 0.00000 -0.00629 0.00000 0.00159 + 46 -0.01523 0.00000 0.00669 0.00000 -0.00137 0.00000 + 47 0.00832 -0.00000 -0.05021 0.00000 0.03528 0.00000 + 48 0.00000 -0.01414 0.00000 0.00629 -0.00000 -0.00159 + 49 0.02125 -0.00000 -0.02470 -0.00000 -0.02022 -0.00000 + 50 -0.04483 0.00000 0.14774 0.00000 0.09895 0.00000 + 51 0.00000 0.20970 -0.00000 0.11566 -0.00000 0.01150 + 52 -0.02125 -0.00000 -0.02470 -0.00000 0.02022 0.00000 + 53 0.04483 0.00000 0.14774 0.00000 -0.09895 0.00000 + 54 -0.00000 0.20970 -0.00000 -0.11566 0.00000 -0.01149 + 55 -0.01396 0.00000 0.20681 0.00000 0.15092 0.00000 + 56 0.00015 -0.00000 -0.11208 -0.00000 -0.08153 -0.00000 + 57 -0.00000 -0.35820 0.00000 -0.22487 -0.00000 -0.01746 + 58 0.01396 0.00000 0.20681 -0.00000 -0.15092 -0.00000 + 59 -0.00015 -0.00000 -0.11208 0.00000 0.08153 0.00000 + 60 0.00000 -0.35820 0.00000 0.22487 -0.00000 0.01745 25 26 27 28 29 30 - P.Frequency 896.43 980.92 980.99 1017.72 1036.47 1073.56 - - 1 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00791 - 2 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.02569 - 3 -0.09617 -0.00357 -0.00464 -0.01789 0.00052 0.00000 - 4 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00791 - 5 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.02569 - 6 -0.09617 0.00357 -0.00464 0.01789 0.00052 0.00000 - 7 0.00000 -0.00000 0.00000 0.00000 0.00000 0.12357 - 8 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00035 - 9 0.05632 0.00024 -0.00041 0.06691 -0.07537 0.00000 - 10 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.12357 - 11 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00035 - 12 0.05632 -0.00024 -0.00041 -0.06691 -0.07537 0.00000 - 13 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.11039 - 14 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.03538 - 15 0.06224 0.00057 0.00351 -0.06498 0.07373 0.00000 - 16 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.11039 - 17 0.00000 -0.00000 0.00000 0.00000 0.00000 0.03538 - 18 0.06224 -0.00057 0.00351 0.06498 0.07373 -0.00000 - 19 0.00000 -0.00000 0.00000 0.00000 0.00000 0.18868 - 20 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.15966 - 21 -0.34859 -0.00051 0.00597 -0.44982 0.43577 -0.00000 - 22 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.18868 - 23 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.15966 - 24 -0.34859 0.00051 0.00597 0.44982 0.43577 -0.00000 - 25 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.23833 - 26 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.11370 - 27 -0.35799 -0.00833 -0.01854 0.42840 -0.41636 -0.00000 - 28 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.23833 - 29 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.11370 - 30 -0.35799 0.00833 -0.01854 -0.42840 -0.41636 0.00000 - 31 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00307 - 32 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00131 - 33 0.04810 -0.03558 0.03601 -0.00977 -0.00064 0.00000 - 34 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00307 - 35 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00131 - 36 0.04810 0.03558 0.03601 0.00977 -0.00064 0.00000 - 37 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00224 - 38 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.02111 - 39 -0.02855 0.01387 -0.01385 -0.02008 -0.00305 -0.00000 - 40 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00224 - 41 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.02111 - 42 -0.02855 -0.01387 -0.01385 0.02008 -0.00305 -0.00000 - 43 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00627 - 44 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.01723 - 45 -0.00157 0.10290 -0.10289 0.00109 0.00247 0.00000 - 46 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00627 - 47 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.01723 - 48 -0.00157 -0.10289 -0.10289 -0.00109 0.00247 -0.00000 - 49 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.01793 - 50 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.05610 - 51 0.05827 -0.42483 0.42434 -0.02240 -0.01922 -0.00000 - 52 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.01793 - 53 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.05610 - 54 0.05827 0.42483 0.42435 0.02240 -0.01922 0.00000 - 55 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.07143 - 56 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.04150 - 57 -0.14367 -0.41723 0.41663 0.02849 -0.00556 0.00000 - 58 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.07143 - 59 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.04150 - 60 -0.14367 0.41723 0.41664 -0.02849 -0.00556 0.00000 + P.Frequency 896.45 980.83 980.90 1017.72 1036.48 1073.56 + + 1 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00791 + 2 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.02569 + 3 -0.09619 0.00358 -0.00464 0.01789 -0.00053 0.00000 + 4 0.00000 0.00000 0.00000 0.00000 0.00000 0.00791 + 5 0.00000 0.00000 -0.00000 0.00000 0.00000 0.02569 + 6 -0.09619 -0.00358 -0.00464 -0.01789 -0.00053 0.00000 + 7 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.12357 + 8 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00035 + 9 0.05631 -0.00026 -0.00040 -0.06692 0.07538 -0.00000 + 10 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.12357 + 11 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00035 + 12 0.05631 0.00026 -0.00040 0.06692 0.07538 0.00000 + 13 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.11039 + 14 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.03538 + 15 0.06225 -0.00055 0.00351 0.06497 -0.07372 -0.00000 + 16 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.11039 + 17 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.03538 + 18 0.06225 0.00055 0.00351 -0.06497 -0.07372 -0.00000 + 19 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.18867 + 20 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.15964 + 21 -0.34853 0.00063 0.00596 0.44986 -0.43580 0.00000 + 22 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.18868 + 23 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.15964 + 24 -0.34853 -0.00063 0.00596 -0.44986 -0.43580 -0.00000 + 25 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.23833 + 26 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.11371 + 27 -0.35800 0.00820 -0.01855 -0.42834 0.41633 -0.00000 + 28 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.23833 + 29 0.00000 0.00000 0.00000 -0.00000 0.00000 0.11371 + 30 -0.35799 -0.00821 -0.01854 0.42834 0.41633 0.00000 + 31 0.00000 0.00000 0.00000 0.00000 0.00000 0.00307 + 32 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00132 + 33 0.04810 0.03559 0.03601 0.00976 0.00065 0.00000 + 34 0.00000 0.00000 0.00000 0.00000 0.00000 0.00307 + 35 0.00000 0.00000 0.00000 0.00000 0.00000 0.00132 + 36 0.04810 -0.03558 0.03602 -0.00976 0.00065 -0.00000 + 37 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00224 + 38 0.00000 -0.00000 0.00000 0.00000 0.00000 0.02112 + 39 -0.02850 -0.01388 -0.01387 0.02008 0.00304 -0.00000 + 40 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00224 + 41 0.00000 0.00000 0.00000 0.00000 0.00000 0.02112 + 42 -0.02850 0.01387 -0.01387 -0.02008 0.00304 0.00000 + 43 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00628 + 44 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.01723 + 45 -0.00156 -0.10291 -0.10288 -0.00106 -0.00247 -0.00000 + 46 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00628 + 47 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.01723 + 48 -0.00156 0.10288 -0.10290 0.00106 -0.00247 -0.00000 + 49 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.01794 + 50 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.05612 + 51 0.05826 0.42488 0.42430 0.02228 0.01921 -0.00000 + 52 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.01794 + 53 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.05612 + 54 0.05826 -0.42479 0.42439 -0.02228 0.01921 0.00000 + 55 0.00000 0.00000 0.00000 0.00000 0.00000 0.07145 + 56 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.04152 + 57 -0.14370 0.41727 0.41658 -0.02862 0.00556 0.00000 + 58 -0.00000 0.00000 0.00000 0.00000 0.00000 0.07145 + 59 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.04152 + 60 -0.14370 -0.41717 0.41667 0.02862 0.00556 0.00000 31 32 33 34 35 36 - P.Frequency 1102.04 1107.65 1107.68 1110.62 1203.73 1260.96 + P.Frequency 1102.04 1107.67 1107.69 1110.62 1203.74 1260.97 - 1 0.04695 0.00000 0.00000 0.01906 0.02863 -0.00339 - 2 0.02535 0.00000 0.00000 0.05342 -0.04213 -0.06554 - 3 0.00000 -0.00193 0.00088 -0.00000 0.00000 -0.00000 - 4 0.04695 -0.00000 -0.00000 -0.01906 0.02863 0.00339 - 5 0.02535 -0.00000 -0.00000 -0.05342 -0.04213 0.06554 - 6 0.00000 0.00193 0.00088 -0.00000 0.00000 -0.00000 - 7 -0.02100 0.00000 0.00000 0.01975 -0.02729 -0.03671 + 1 0.04694 -0.00000 -0.00000 0.01906 0.02863 -0.00340 + 2 0.02535 -0.00000 0.00000 0.05342 -0.04214 -0.06554 + 3 -0.00000 -0.00192 0.00087 0.00000 0.00000 0.00000 + 4 0.04694 -0.00000 -0.00000 -0.01906 0.02863 0.00340 + 5 0.02535 -0.00000 -0.00000 -0.05342 -0.04214 0.06554 + 6 0.00000 0.00192 0.00087 -0.00000 -0.00000 0.00000 + 7 -0.02099 0.00000 0.00000 0.01976 -0.02729 -0.03671 8 -0.01934 0.00000 0.00000 0.02743 -0.04693 0.02371 - 9 0.00000 -0.00248 0.00297 0.00000 -0.00000 0.00000 - 10 -0.02100 -0.00000 -0.00000 -0.01975 -0.02729 0.03671 - 11 -0.01934 -0.00000 -0.00000 -0.02743 -0.04693 -0.02371 - 12 0.00000 0.00248 0.00297 -0.00000 -0.00000 -0.00000 - 13 -0.04803 0.00000 0.00000 0.03976 -0.01628 -0.03141 - 14 0.00570 -0.00000 -0.00000 -0.01821 0.07108 -0.00829 - 15 -0.00000 -0.00234 -0.00308 0.00000 -0.00000 -0.00000 - 16 -0.04803 -0.00000 -0.00000 -0.03976 -0.01628 0.03141 - 17 0.00570 0.00000 0.00000 0.01821 0.07108 0.00829 - 18 -0.00000 0.00234 -0.00308 -0.00000 0.00000 -0.00000 - 19 0.03415 0.00000 0.00000 0.01347 0.06976 -0.18958 - 20 -0.17695 0.00000 0.00000 0.05636 -0.33444 0.42659 - 21 0.00000 0.02424 -0.00462 -0.00000 0.00000 -0.00000 - 22 0.03415 -0.00000 -0.00000 -0.01347 0.06976 0.18958 - 23 -0.17695 -0.00000 -0.00000 -0.05636 -0.33444 -0.42659 - 24 -0.00000 -0.02424 -0.00462 -0.00000 0.00000 -0.00000 - 25 -0.05562 0.00000 0.00000 0.08427 0.24896 -0.27150 - 26 0.00505 0.00000 0.00000 0.02712 0.40593 -0.29732 - 27 0.00000 -0.01630 -0.00364 0.00000 0.00000 0.00000 - 28 -0.05562 -0.00000 -0.00000 -0.08427 0.24896 0.27150 - 29 0.00505 -0.00000 -0.00000 -0.02712 0.40593 0.29732 - 30 0.00000 0.01630 -0.00364 0.00000 -0.00000 0.00000 - 31 0.04505 -0.00000 -0.00000 -0.04317 -0.00748 -0.02482 - 32 0.02723 -0.00000 -0.00000 -0.02355 -0.00840 -0.02167 - 33 0.00000 0.05883 0.05838 -0.00000 0.00000 0.00000 - 34 0.04505 0.00000 0.00000 0.04317 -0.00748 0.02482 - 35 0.02723 0.00000 0.00000 0.02355 -0.00840 0.02167 - 36 0.00000 -0.05883 0.05838 -0.00000 -0.00000 0.00000 - 37 -0.01471 0.00000 0.00000 0.01432 -0.00167 -0.00829 - 38 0.29026 -0.00000 -0.00000 -0.27114 -0.02885 -0.11124 - 39 -0.00000 -0.55162 -0.55235 0.00000 -0.00000 0.00000 - 40 -0.01471 -0.00000 -0.00000 -0.01432 -0.00167 0.00829 - 41 0.29026 0.00000 0.00000 0.27114 -0.02885 0.11123 - 42 -0.00000 0.55162 -0.55234 0.00000 0.00000 -0.00000 - 43 -0.03774 0.00000 0.00000 0.03463 0.00347 0.00807 + 9 -0.00000 -0.00248 0.00297 -0.00000 -0.00000 -0.00000 + 10 -0.02099 0.00000 -0.00000 -0.01976 -0.02729 0.03671 + 11 -0.01934 0.00000 -0.00000 -0.02743 -0.04693 -0.02371 + 12 -0.00000 0.00248 0.00297 -0.00000 0.00000 -0.00000 + 13 -0.04804 0.00000 0.00000 0.03976 -0.01629 -0.03141 + 14 0.00570 -0.00000 -0.00000 -0.01821 0.07107 -0.00829 + 15 0.00000 -0.00234 -0.00308 0.00000 0.00000 0.00000 + 16 -0.04804 0.00000 -0.00000 -0.03976 -0.01629 0.03141 + 17 0.00570 -0.00000 0.00000 0.01821 0.07107 0.00829 + 18 0.00000 0.00234 -0.00308 0.00000 -0.00000 0.00000 + 19 0.03416 -0.00000 -0.00000 0.01348 0.06975 -0.18957 + 20 -0.17696 0.00000 0.00000 0.05635 -0.33442 0.42657 + 21 0.00000 0.02423 -0.00462 0.00000 0.00000 0.00000 + 22 0.03416 -0.00000 -0.00000 -0.01348 0.06975 0.18957 + 23 -0.17696 0.00000 0.00000 -0.05635 -0.33442 -0.42657 + 24 0.00000 -0.02423 -0.00461 0.00000 -0.00000 0.00000 + 25 -0.05564 0.00000 0.00000 0.08428 0.24896 -0.27152 + 26 0.00503 -0.00000 0.00000 0.02712 0.40594 -0.29734 + 27 -0.00000 -0.01630 -0.00365 -0.00000 -0.00000 -0.00000 + 28 -0.05564 0.00000 -0.00000 -0.08428 0.24896 0.27151 + 29 0.00503 -0.00000 -0.00000 -0.02712 0.40594 0.29734 + 30 -0.00000 0.01630 -0.00365 -0.00000 0.00000 -0.00000 + 31 0.04505 -0.00000 -0.00000 -0.04318 -0.00748 -0.02482 + 32 0.02723 -0.00000 -0.00000 -0.02355 -0.00840 -0.02168 + 33 0.00000 0.05885 0.05838 -0.00000 -0.00000 0.00000 + 34 0.04505 -0.00000 0.00000 0.04318 -0.00748 0.02482 + 35 0.02723 -0.00000 0.00000 0.02355 -0.00840 0.02168 + 36 -0.00000 -0.05883 0.05840 -0.00000 -0.00000 0.00000 + 37 -0.01470 0.00000 0.00000 0.01431 -0.00167 -0.00830 + 38 0.29025 -0.00000 -0.00000 -0.27112 -0.02883 -0.11123 + 39 -0.00000 -0.55173 -0.55228 0.00000 -0.00000 -0.00000 + 40 -0.01470 0.00000 -0.00000 -0.01431 -0.00167 0.00830 + 41 0.29025 -0.00000 0.00000 0.27112 -0.02883 0.11123 + 42 0.00000 0.55155 -0.55245 0.00000 0.00000 -0.00000 + 43 -0.03775 0.00000 0.00000 0.03463 0.00346 0.00807 44 -0.05944 0.00000 0.00000 0.07151 0.02145 -0.00126 - 45 -0.00000 -0.00488 -0.00480 0.00000 0.00000 -0.00000 - 46 -0.03774 -0.00000 -0.00000 -0.03463 0.00347 -0.00807 - 47 -0.05944 -0.00000 -0.00000 -0.07151 0.02145 0.00126 - 48 0.00000 0.00488 -0.00480 0.00000 0.00000 -0.00000 + 45 0.00000 -0.00488 -0.00480 0.00000 0.00000 -0.00000 + 46 -0.03775 0.00000 -0.00000 -0.03463 0.00346 -0.00807 + 47 -0.05944 0.00000 -0.00000 -0.07151 0.02145 0.00126 + 48 0.00000 0.00488 -0.00480 -0.00000 0.00000 -0.00000 49 -0.09351 0.00000 0.00000 0.09075 0.01215 0.01809 - 50 0.28921 -0.00000 -0.00000 -0.28509 -0.03882 -0.05448 - 51 -0.00000 -0.31293 -0.31355 0.00000 -0.00000 0.00000 - 52 -0.09351 -0.00000 -0.00000 -0.09075 0.01215 -0.01809 - 53 0.28921 0.00000 0.00000 0.28509 -0.03882 0.05448 - 54 -0.00000 0.31293 -0.31355 0.00000 -0.00000 0.00000 - 55 0.30574 -0.00000 -0.00000 -0.33076 -0.10350 0.00609 - 56 -0.16346 0.00000 0.00000 0.18343 0.05502 -0.00224 - 57 0.00000 0.22667 0.22716 -0.00000 -0.00000 0.00000 - 58 0.30574 0.00000 0.00000 0.33076 -0.10350 -0.00609 - 59 -0.16346 -0.00000 -0.00000 -0.18342 0.05502 0.00224 - 60 0.00000 -0.22667 0.22716 -0.00000 -0.00000 0.00000 + 50 0.28920 -0.00000 -0.00000 -0.28508 -0.03881 -0.05449 + 51 -0.00000 -0.31296 -0.31349 0.00000 0.00000 -0.00000 + 52 -0.09351 0.00000 -0.00000 -0.09075 0.01215 -0.01809 + 53 0.28920 -0.00000 0.00000 0.28508 -0.03881 0.05449 + 54 0.00000 0.31286 -0.31359 0.00000 -0.00000 -0.00000 + 55 0.30573 -0.00000 -0.00000 -0.33075 -0.10350 0.00609 + 56 -0.16345 0.00000 0.00000 0.18342 0.05501 -0.00223 + 57 0.00000 0.22667 0.22707 -0.00000 -0.00000 0.00000 + 58 0.30573 -0.00000 0.00000 0.33075 -0.10350 -0.00609 + 59 -0.16345 0.00000 -0.00000 -0.18342 0.05501 0.00223 + 60 -0.00000 -0.22660 0.22714 -0.00000 -0.00000 0.00000 37 38 39 40 41 42 - P.Frequency 1284.26 1296.18 1350.01 1398.53 1422.10 1427.47 - - 1 -0.04118 0.00127 0.12418 -0.07790 0.01964 0.04521 - 2 0.12978 -0.12799 0.03519 -0.01094 -0.01047 -0.00155 - 3 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 4 -0.04118 -0.00127 0.12418 0.07790 0.01964 -0.04521 - 5 0.12978 0.12799 0.03519 0.01094 -0.01047 0.00155 - 6 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 7 0.00046 -0.03751 -0.05352 -0.00609 0.00048 0.01031 - 8 -0.04828 -0.05691 0.08213 0.01241 0.02855 -0.01866 - 9 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 10 0.00046 0.03751 -0.05352 0.00609 0.00048 -0.01031 - 11 -0.04828 0.05691 0.08213 -0.01241 0.02855 0.01866 - 12 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 13 0.05548 0.00314 -0.04647 0.01121 -0.01628 -0.01266 - 14 0.01802 0.07016 -0.06651 0.03346 -0.02300 -0.01385 - 15 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 16 0.05548 -0.00314 -0.04647 -0.01121 -0.01628 0.01266 - 17 0.01802 -0.07016 -0.06651 -0.03346 -0.02300 0.01385 - 18 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 19 0.10587 -0.03050 0.03563 0.12096 0.01548 -0.07904 - 20 -0.32499 -0.11312 -0.16307 -0.33189 -0.00676 0.22499 - 21 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 22 0.10587 0.03050 0.03563 -0.12096 0.01548 0.07904 - 23 -0.32499 0.11312 -0.16307 0.33189 -0.00676 -0.22499 - 24 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 25 -0.06396 0.12513 -0.03793 -0.23085 0.02576 0.14535 - 26 -0.12725 0.23429 -0.05324 -0.25696 0.02696 0.17774 - 27 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 28 -0.06396 -0.12513 -0.03793 0.23085 0.02576 -0.14535 - 29 -0.12725 -0.23429 -0.05324 0.25696 0.02696 -0.17774 - 30 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 31 -0.02904 -0.04527 -0.04595 -0.05239 0.06164 -0.04602 - 32 -0.01723 -0.03075 -0.03338 -0.02821 0.01096 -0.00034 - 33 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 34 -0.02904 0.04527 -0.04595 0.05239 0.06164 0.04602 - 35 -0.01723 0.03075 -0.03338 0.02821 0.01096 0.00034 - 36 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 37 0.00840 -0.00837 -0.04728 -0.11369 0.18734 -0.15725 - 38 -0.21089 -0.22651 -0.04886 0.21177 -0.48959 0.44331 - 39 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 40 0.00840 0.00837 -0.04728 0.11369 0.18734 0.15725 - 41 -0.21089 0.22651 -0.04886 -0.21177 -0.48959 -0.44331 - 42 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 43 0.00426 0.01681 0.02584 0.04337 -0.07098 0.06147 - 44 -0.01942 -0.01485 0.01210 0.00813 0.01040 -0.01493 - 45 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 46 0.00426 -0.01681 0.02584 -0.04337 -0.07098 -0.06147 - 47 -0.01942 0.01485 0.01210 -0.00813 0.01040 0.01493 - 48 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 49 0.01092 0.03261 0.04981 0.07922 -0.12421 0.10438 - 50 -0.04586 -0.09138 -0.11905 -0.17634 0.26382 -0.21404 - 51 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 52 0.01092 -0.03261 0.04981 -0.07922 -0.12421 -0.10438 - 53 -0.04586 0.09138 -0.11905 0.17634 0.26382 0.21404 - 54 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 55 0.05820 0.00434 -0.04881 -0.01602 -0.03894 0.03851 - 56 -0.03966 -0.01588 0.03266 0.02237 0.00980 -0.01630 - 57 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 58 0.05820 -0.00434 -0.04881 0.01602 -0.03894 -0.03851 - 59 -0.03966 0.01588 0.03266 -0.02237 0.00980 0.01630 - 60 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + P.Frequency 1284.28 1296.19 1350.02 1398.54 1422.12 1427.49 + + 1 0.04119 0.00127 -0.12418 -0.07790 0.01964 0.04521 + 2 -0.12977 -0.12799 -0.03519 -0.01093 -0.01047 -0.00155 + 3 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 4 0.04119 -0.00127 -0.12418 0.07790 0.01964 -0.04521 + 5 -0.12977 0.12799 -0.03519 0.01093 -0.01047 0.00155 + 6 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 7 -0.00046 -0.03751 0.05352 -0.00609 0.00048 0.01031 + 8 0.04828 -0.05691 -0.08213 0.01241 0.02855 -0.01866 + 9 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 10 -0.00046 0.03751 0.05352 0.00609 0.00048 -0.01031 + 11 0.04828 0.05691 -0.08213 -0.01241 0.02855 0.01866 + 12 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 13 -0.05548 0.00314 0.04647 0.01121 -0.01628 -0.01266 + 14 -0.01803 0.07015 0.06651 0.03346 -0.02300 -0.01385 + 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 16 -0.05548 -0.00314 0.04647 -0.01121 -0.01628 0.01266 + 17 -0.01803 -0.07015 0.06651 -0.03346 -0.02300 0.01385 + 18 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 19 -0.10587 -0.03050 -0.03563 0.12097 0.01549 -0.07904 + 20 0.32501 -0.11311 0.16306 -0.33192 -0.00678 0.22500 + 21 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 22 -0.10587 0.03051 -0.03563 -0.12097 0.01549 0.07904 + 23 0.32501 0.11311 0.16306 0.33192 -0.00678 -0.22500 + 24 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 25 0.06394 0.12513 0.03793 -0.23084 0.02576 0.14533 + 26 0.12721 0.23430 0.05325 -0.25695 0.02695 0.17772 + 27 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 28 0.06394 -0.12513 0.03793 0.23084 0.02576 -0.14533 + 29 0.12721 -0.23430 0.05325 0.25695 0.02695 -0.17772 + 30 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 31 0.02904 -0.04528 0.04595 -0.05239 0.06164 -0.04602 + 32 0.01723 -0.03076 0.03338 -0.02821 0.01096 -0.00034 + 33 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 34 0.02904 0.04528 0.04595 0.05239 0.06164 0.04602 + 35 0.01723 0.03076 0.03338 0.02821 0.01096 0.00034 + 36 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 37 -0.00840 -0.00838 0.04729 -0.11368 0.18734 -0.15725 + 38 0.21089 -0.22650 0.04885 0.21177 -0.48959 0.44331 + 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 40 -0.00840 0.00838 0.04729 0.11368 0.18734 0.15725 + 41 0.21089 0.22650 0.04885 -0.21177 -0.48959 -0.44331 + 42 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 43 -0.00426 0.01681 -0.02584 0.04336 -0.07098 0.06146 + 44 0.01941 -0.01485 -0.01210 0.00813 0.01040 -0.01493 + 45 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 46 -0.00426 -0.01681 -0.02584 -0.04336 -0.07098 -0.06146 + 47 0.01941 0.01485 -0.01210 -0.00813 0.01040 0.01493 + 48 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 49 -0.01092 0.03261 -0.04981 0.07921 -0.12421 0.10438 + 50 0.04587 -0.09139 0.11906 -0.17634 0.26383 -0.21406 + 51 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 52 -0.01092 -0.03261 -0.04981 -0.07921 -0.12421 -0.10438 + 53 0.04587 0.09139 0.11906 0.17634 0.26383 0.21405 + 54 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 55 -0.05819 0.00434 0.04880 -0.01601 -0.03897 0.03853 + 56 0.03965 -0.01588 -0.03265 0.02236 0.00981 -0.01631 + 57 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 58 -0.05819 -0.00434 0.04880 0.01601 -0.03897 -0.03853 + 59 0.03965 0.01588 -0.03265 -0.02236 0.00981 0.01631 + 60 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 43 44 45 46 47 48 - P.Frequency 1514.54 1565.41 1575.25 1639.65 1690.93 1738.51 - - 1 0.08527 0.01922 0.03915 0.02451 -0.13386 -0.00458 - 2 -0.00349 0.02695 -0.01786 0.10214 0.01397 -0.08068 - 3 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 4 0.08527 -0.01922 0.03915 0.02451 0.13386 0.00458 - 5 -0.00349 -0.02695 -0.01786 0.10214 -0.01397 0.08068 - 6 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 7 -0.04359 -0.01122 -0.00023 0.05014 0.07415 -0.01529 - 8 -0.07879 0.02449 -0.03520 -0.07384 -0.05244 0.12505 - 9 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 10 -0.04359 0.01122 -0.00023 0.05014 -0.07415 0.01529 - 11 -0.07879 -0.02449 -0.03520 -0.07384 0.05244 -0.12505 - 12 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 13 0.00985 0.01487 -0.02099 -0.07262 -0.09007 -0.04487 - 14 0.09862 -0.00334 0.02236 -0.04321 -0.02878 -0.11057 - 15 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 16 0.00985 -0.01487 -0.02099 -0.07262 0.09007 0.04487 - 17 0.09862 0.00334 0.02236 -0.04321 0.02878 0.11057 - 18 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 19 -0.14081 0.01375 -0.06084 -0.07316 0.01800 0.08716 - 20 0.14095 -0.04299 0.11829 0.28372 0.12921 -0.13555 - 21 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 22 -0.14081 -0.01375 -0.06084 -0.07316 -0.01800 -0.08716 - 23 0.14095 0.04299 0.11829 0.28372 -0.12921 0.13555 - 24 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 25 -0.24353 -0.00270 -0.01874 0.14394 0.03698 0.12757 - 26 -0.19037 -0.02963 0.03545 0.23625 0.14249 0.08870 - 27 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 28 -0.24353 0.00270 -0.01874 0.14394 -0.03698 -0.12757 - 29 -0.19037 0.02963 0.03545 0.23625 -0.14249 -0.08870 - 30 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 31 0.00043 -0.02441 -0.02828 -0.01305 -0.00315 0.00495 - 32 -0.04377 0.08496 0.06811 -0.02166 -0.01479 -0.02290 - 33 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 34 0.00043 0.02441 -0.02828 -0.01305 0.00315 -0.00495 - 35 -0.04377 -0.08496 0.06811 -0.02166 0.01479 0.02290 - 36 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 37 0.00014 0.03395 0.03509 -0.01750 0.01293 -0.00561 - 38 -0.03127 -0.17965 -0.21581 -0.01814 -0.07353 0.02444 - 39 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 40 0.00014 -0.03395 0.03509 -0.01750 -0.01293 0.00561 - 41 -0.03127 0.17965 -0.21581 -0.01814 0.07353 -0.02444 - 42 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 43 -0.00641 -0.01998 -0.02356 0.01332 -0.01811 -0.00650 - 44 0.02123 -0.00061 0.00871 -0.01177 0.02547 0.00948 - 45 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 46 -0.00641 0.01998 -0.02356 0.01332 0.01811 0.00650 - 47 0.02123 0.00061 0.00871 -0.01177 -0.02547 -0.00948 - 48 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 49 -0.02288 0.05069 0.04686 0.00221 0.00195 -0.00214 - 50 0.08856 -0.36161 -0.35913 0.05795 -0.10371 -0.02694 - 51 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 52 -0.02288 -0.05069 0.04686 0.00221 -0.00195 0.00214 - 53 0.08856 0.36161 -0.35913 0.05795 0.10371 0.02694 - 54 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 55 -0.13518 0.42766 0.40142 -0.08293 0.07997 0.01543 - 56 0.06597 -0.14591 -0.12814 0.01580 -0.00179 0.00410 - 57 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 58 -0.13518 -0.42766 0.40142 -0.08293 -0.07997 -0.01543 - 59 0.06597 0.14591 -0.12814 0.01580 0.00179 -0.00410 - 60 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + P.Frequency 1514.54 1565.41 1575.24 1639.66 1690.93 1738.52 + + 1 0.08527 0.01922 -0.03915 0.02451 -0.13386 -0.00458 + 2 -0.00349 0.02695 0.01787 0.10213 0.01396 -0.08068 + 3 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 4 0.08527 -0.01922 -0.03915 0.02451 0.13386 0.00458 + 5 -0.00349 -0.02695 0.01787 0.10213 -0.01396 0.08068 + 6 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 7 -0.04360 -0.01122 0.00023 0.05014 0.07415 -0.01530 + 8 -0.07879 0.02449 0.03519 -0.07384 -0.05243 0.12505 + 9 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 10 -0.04360 0.01122 0.00023 0.05014 -0.07415 0.01530 + 11 -0.07879 -0.02449 0.03519 -0.07384 0.05243 -0.12505 + 12 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 13 0.00986 0.01487 0.02099 -0.07262 -0.09008 -0.04487 + 14 0.09862 -0.00334 -0.02237 -0.04321 -0.02878 -0.11057 + 15 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 16 0.00985 -0.01487 0.02099 -0.07262 0.09008 0.04487 + 17 0.09862 0.00334 -0.02237 -0.04321 0.02878 0.11057 + 18 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 19 -0.14081 0.01375 0.06084 -0.07316 0.01800 0.08716 + 20 0.14094 -0.04299 -0.11828 0.28375 0.12921 -0.13556 + 21 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 22 -0.14081 -0.01375 0.06084 -0.07316 -0.01800 -0.08716 + 23 0.14094 0.04299 -0.11828 0.28375 -0.12921 0.13556 + 24 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 25 -0.24353 -0.00270 0.01876 0.14393 0.03698 0.12756 + 26 -0.19038 -0.02963 -0.03543 0.23625 0.14250 0.08869 + 27 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 28 -0.24353 0.00270 0.01876 0.14393 -0.03698 -0.12756 + 29 -0.19038 0.02963 -0.03543 0.23625 -0.14250 -0.08869 + 30 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 31 0.00043 -0.02441 0.02827 -0.01305 -0.00315 0.00495 + 32 -0.04377 0.08495 -0.06811 -0.02165 -0.01480 -0.02290 + 33 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 34 0.00043 0.02441 0.02827 -0.01305 0.00315 -0.00495 + 35 -0.04377 -0.08495 -0.06811 -0.02165 0.01480 0.02290 + 36 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 37 0.00014 0.03396 -0.03511 -0.01750 0.01293 -0.00561 + 38 -0.03126 -0.17967 0.21584 -0.01816 -0.07352 0.02444 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 0.00014 -0.03396 -0.03511 -0.01750 -0.01293 0.00561 + 41 -0.03126 0.17967 0.21584 -0.01816 0.07352 -0.02444 + 42 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 43 -0.00641 -0.01999 0.02357 0.01332 -0.01811 -0.00650 + 44 0.02123 -0.00061 -0.00872 -0.01177 0.02548 0.00948 + 45 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 46 -0.00641 0.01999 0.02357 0.01332 0.01811 0.00650 + 47 0.02123 0.00061 -0.00872 -0.01177 -0.02548 -0.00948 + 48 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 49 -0.02288 0.05068 -0.04684 0.00222 0.00195 -0.00215 + 50 0.08857 -0.36161 0.35913 0.05792 -0.10371 -0.02693 + 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 -0.02288 -0.05068 -0.04684 0.00222 -0.00195 0.00215 + 53 0.08857 0.36161 0.35913 0.05792 0.10371 0.02693 + 54 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 55 -0.13520 0.42767 -0.40143 -0.08290 0.07997 0.01542 + 56 0.06598 -0.14591 0.12814 0.01579 -0.00179 0.00410 + 57 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 58 -0.13520 -0.42767 -0.40143 -0.08290 -0.07997 -0.01542 + 59 0.06598 0.14591 0.12814 0.01579 0.00179 -0.00410 + 60 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 49 50 51 52 53 54 - P.Frequency 1814.82 1815.80 3394.05 3394.78 3432.82 3432.82 + P.Frequency 1814.82 1815.79 3394.02 3394.76 3432.82 3432.82 - 1 -0.03129 0.01449 -0.00016 0.00015 0.00037 0.00033 - 2 0.00993 -0.02488 -0.00002 0.00004 0.00160 0.00159 - 3 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 4 0.03129 0.01449 -0.00016 -0.00015 0.00037 -0.00033 - 5 -0.00993 -0.02488 -0.00002 -0.00004 0.00160 -0.00159 - 6 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 7 0.01075 -0.00476 -0.00077 0.00027 -0.00151 -0.00199 + 1 -0.03130 0.01449 -0.00016 0.00015 0.00037 0.00033 + 2 0.00994 -0.02488 -0.00002 0.00004 0.00161 0.00159 + 3 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 4 0.03130 0.01449 -0.00016 -0.00015 0.00037 -0.00033 + 5 -0.00994 -0.02488 -0.00002 -0.00004 0.00160 -0.00159 + 6 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 7 0.01075 -0.00476 -0.00077 0.00028 -0.00151 -0.00199 8 0.01758 -0.00541 -0.00008 -0.00012 -0.00056 -0.00075 - 9 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 10 -0.01075 -0.00476 -0.00077 -0.00027 -0.00151 0.00199 - 11 -0.01758 -0.00541 -0.00008 0.00012 -0.00056 0.00075 - 12 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 13 -0.02264 -0.00002 0.00110 0.00096 0.00037 0.00045 + 9 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 10 -0.01075 -0.00476 -0.00077 -0.00028 -0.00150 0.00199 + 11 -0.01758 -0.00541 -0.00008 0.00012 -0.00055 0.00075 + 12 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 13 -0.02265 -0.00002 0.00110 0.00096 0.00037 0.00045 14 -0.02175 0.01020 -0.00077 -0.00050 0.00018 -0.00057 - 15 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 15 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 16 0.02264 -0.00002 0.00110 -0.00096 0.00037 -0.00045 17 0.02175 0.01020 -0.00077 0.00050 0.00018 0.00057 - 18 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 19 0.02205 -0.01127 0.00878 -0.00189 0.01762 0.02363 - 20 -0.00276 0.00594 0.00287 -0.00053 0.00536 0.00773 - 21 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 22 -0.02205 -0.01127 0.00878 0.00189 0.01762 -0.02364 - 23 0.00276 0.00594 0.00287 0.00053 0.00536 -0.00773 - 24 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 25 0.00664 -0.02766 -0.01020 -0.00702 -0.00245 -0.00511 - 26 0.01604 -0.01927 0.00767 0.00510 0.00178 0.00385 - 27 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 28 -0.00664 -0.02766 -0.01020 0.00702 -0.00245 0.00511 - 29 -0.01604 -0.01927 0.00767 -0.00510 0.00178 -0.00385 - 30 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 31 -0.07193 -0.07136 -0.01098 -0.01091 -0.05773 0.05777 - 32 0.10892 0.11364 -0.00791 -0.00787 -0.00949 0.00952 - 33 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 34 0.07193 -0.07136 -0.01098 0.01091 -0.05775 -0.05775 - 35 -0.10892 0.11364 -0.00791 0.00787 -0.00949 -0.00952 - 36 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 37 -0.03015 -0.02931 0.17474 0.17305 0.63073 -0.63122 - 38 -0.14277 -0.13894 0.03970 0.03942 0.14646 -0.14660 - 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 40 0.03015 -0.02931 0.17474 -0.17305 0.63093 0.63102 - 41 0.14277 -0.13893 0.03970 -0.03942 0.14650 0.14655 - 42 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 43 0.07693 0.07771 -0.02954 -0.02950 0.01393 -0.01385 - 44 -0.09225 -0.09393 0.03603 0.03607 -0.01032 0.01020 - 45 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 46 -0.07693 0.07771 -0.02954 0.02950 0.01394 0.01384 - 47 0.09225 -0.09393 0.03603 -0.03607 -0.01032 -0.01019 - 48 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 49 0.04825 0.04843 0.44961 0.45001 -0.14525 0.14387 - 50 0.19163 0.19577 0.08010 0.08015 -0.02806 0.02783 - 51 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 52 -0.04825 0.04843 0.44961 -0.45001 -0.14530 -0.14383 - 53 -0.19163 0.19577 0.08010 -0.08015 -0.02807 -0.02782 - 54 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 55 -0.17115 -0.17149 -0.14249 -0.14273 0.02993 -0.02946 - 56 -0.03740 -0.03904 -0.45480 -0.45520 0.09575 -0.09440 - 57 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 58 0.17115 -0.17149 -0.14249 0.14273 0.02993 0.02945 - 59 0.03740 -0.03904 -0.45479 0.45520 0.09578 0.09437 - 60 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 18 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 19 0.02205 -0.01127 0.00879 -0.00190 0.01761 0.02360 + 20 -0.00276 0.00595 0.00287 -0.00053 0.00535 0.00772 + 21 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 22 -0.02205 -0.01127 0.00879 0.00190 0.01754 -0.02365 + 23 0.00276 0.00595 0.00287 0.00053 0.00533 -0.00773 + 24 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 25 0.00664 -0.02766 -0.01020 -0.00702 -0.00243 -0.00512 + 26 0.01605 -0.01927 0.00767 0.00510 0.00177 0.00386 + 27 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 28 -0.00664 -0.02766 -0.01020 0.00702 -0.00242 0.00513 + 29 -0.01605 -0.01927 0.00767 -0.00510 0.00176 -0.00386 + 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 31 -0.07194 -0.07136 -0.01097 -0.01090 -0.05765 0.05785 + 32 0.10892 0.11364 -0.00791 -0.00787 -0.00948 0.00954 + 33 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 34 0.07194 -0.07136 -0.01097 0.01090 -0.05782 -0.05768 + 35 -0.10892 0.11364 -0.00791 0.00787 -0.00951 -0.00951 + 36 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 37 -0.03015 -0.02931 0.17464 0.17297 0.62993 -0.63206 + 38 -0.14279 -0.13895 0.03968 0.03940 0.14627 -0.14679 + 39 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 40 0.03015 -0.02931 0.17464 -0.17298 0.63178 0.63022 + 41 0.14279 -0.13895 0.03968 -0.03940 0.14670 0.14637 + 42 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 43 0.07693 0.07771 -0.02954 -0.02951 0.01391 -0.01387 + 44 -0.09225 -0.09392 0.03603 0.03607 -0.01030 0.01021 + 45 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 46 -0.07693 0.07771 -0.02954 0.02951 0.01395 0.01382 + 47 0.09225 -0.09392 0.03603 -0.03607 -0.01033 -0.01018 + 48 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 49 0.04826 0.04843 0.44963 0.45002 -0.14501 0.14401 + 50 0.19161 0.19575 0.08010 0.08015 -0.02801 0.02786 + 51 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 52 -0.04826 0.04843 0.44962 -0.45003 -0.14543 -0.14359 + 53 -0.19161 0.19575 0.08010 -0.08015 -0.02809 -0.02778 + 54 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 55 -0.17113 -0.17146 -0.14250 -0.14273 0.02986 -0.02948 + 56 -0.03741 -0.03905 -0.45482 -0.45521 0.09555 -0.09446 + 57 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 58 0.17113 -0.17146 -0.14250 0.14273 0.02995 0.02939 + 59 0.03741 -0.03905 -0.45481 0.45522 0.09583 0.09418 + 60 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 55 56 57 58 59 60 - P.Frequency 3447.87 3451.34 3471.33 3474.29 3546.61 3546.66 - - 1 0.00118 0.00257 0.00372 -0.00146 0.00015 -0.00016 - 2 -0.00216 -0.00161 -0.00002 -0.00203 -0.00032 0.00032 - 3 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 4 0.00118 -0.00257 0.00372 0.00146 0.00015 0.00016 - 5 -0.00216 0.00161 -0.00002 0.00203 -0.00032 -0.00032 - 6 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 7 -0.05177 -0.05188 -0.02223 -0.02228 -0.00003 0.00008 - 8 -0.01792 -0.01832 -0.01128 -0.01081 0.00003 0.00007 - 9 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 10 -0.05177 0.05188 -0.02223 0.02228 -0.00003 -0.00008 - 11 -0.01792 0.01832 -0.01128 0.01081 0.00003 -0.00007 - 12 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 13 0.01904 0.01825 -0.04225 -0.04266 0.00032 0.00039 - 14 -0.01192 -0.01191 0.03626 0.03640 -0.00026 -0.00034 - 15 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 16 0.01904 -0.01825 -0.04225 0.04266 0.00032 -0.00039 - 17 -0.01192 0.01191 0.03626 -0.03640 -0.00026 0.00034 - 18 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 19 0.58129 0.58292 0.24577 0.24107 -0.00016 -0.00055 - 20 0.21357 0.21460 0.09203 0.08960 0.00005 -0.00023 - 21 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 22 0.58129 -0.58292 0.24577 -0.24107 -0.00016 0.00055 - 23 0.21357 -0.21460 0.09203 -0.08960 0.00005 0.00023 - 24 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 25 -0.20606 -0.20188 0.47837 0.47998 -0.00500 -0.00579 - 26 0.16661 0.16428 -0.39217 -0.39321 0.00366 0.00433 + P.Frequency 3447.87 3451.33 3471.31 3474.27 3546.60 3546.64 + + 1 0.00118 0.00257 -0.00372 -0.00145 -0.00015 -0.00016 + 2 -0.00216 -0.00161 0.00002 -0.00203 0.00032 0.00032 + 3 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 4 0.00118 -0.00257 -0.00372 0.00145 -0.00015 0.00016 + 5 -0.00216 0.00161 0.00002 0.00203 0.00032 -0.00032 + 6 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 7 -0.05177 -0.05187 0.02225 -0.02231 0.00003 0.00008 + 8 -0.01792 -0.01831 0.01128 -0.01082 -0.00003 0.00007 + 9 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 10 -0.05177 0.05187 0.02225 0.02231 0.00003 -0.00008 + 11 -0.01792 0.01832 0.01128 0.01082 -0.00003 -0.00007 + 12 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 13 0.01905 0.01827 0.04224 -0.04265 -0.00032 0.00039 + 14 -0.01193 -0.01192 -0.03625 0.03639 0.00026 -0.00034 + 15 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 16 0.01905 -0.01827 0.04224 0.04265 -0.00032 -0.00039 + 17 -0.01193 0.01192 -0.03625 -0.03639 0.00026 0.00034 + 18 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 19 0.58122 0.58280 -0.24596 0.24135 0.00016 -0.00055 + 20 0.21355 0.21455 -0.09210 0.08970 -0.00005 -0.00023 + 21 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 22 0.58121 -0.58281 -0.24596 -0.24135 0.00016 0.00055 + 23 0.21354 -0.21456 -0.09210 -0.08970 -0.00005 0.00023 + 24 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 25 -0.20621 -0.20211 -0.47830 0.47989 0.00500 -0.00580 + 26 0.16674 0.16447 0.39212 -0.39313 -0.00366 0.00433 27 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 28 -0.20606 0.20189 0.47837 -0.47998 -0.00500 0.00579 - 29 0.16661 -0.16428 -0.39217 0.39321 0.00366 -0.00433 - 30 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 31 0.00192 -0.00209 -0.00005 -0.00069 0.00316 0.00316 - 32 0.00028 -0.00041 0.00015 -0.00003 0.00067 0.00067 - 33 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 34 0.00192 0.00209 -0.00005 0.00069 0.00316 -0.00316 - 35 0.00028 0.00041 0.00015 0.00003 0.00067 -0.00067 - 36 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 37 -0.02038 0.02367 -0.00257 0.00519 -0.03651 -0.03647 - 38 -0.00350 0.00486 -0.00116 -0.00008 -0.00653 -0.00653 - 39 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 40 -0.02038 -0.02367 -0.00257 -0.00519 -0.03651 0.03647 - 41 -0.00350 -0.00486 -0.00116 0.00008 -0.00653 0.00653 - 42 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 43 -0.00006 0.00030 0.00022 0.00039 0.05034 0.05034 - 44 -0.00053 -0.00071 0.00095 0.00089 0.04415 0.04414 - 45 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 46 -0.00006 -0.00030 0.00022 -0.00039 0.05034 -0.05034 - 47 -0.00053 0.00071 0.00095 -0.00089 0.04415 -0.04414 - 48 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 49 -0.00361 -0.00515 0.00292 0.00074 -0.46701 -0.46710 - 50 -0.00087 -0.00110 0.00091 0.00053 -0.07798 -0.07800 - 51 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 52 -0.00361 0.00515 0.00292 -0.00074 -0.46698 0.46713 - 53 -0.00087 0.00110 0.00091 -0.00053 -0.07798 0.07800 - 54 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 55 0.00232 0.00193 -0.00304 -0.00291 -0.13352 -0.13347 - 56 0.00822 0.00589 -0.00990 -0.01015 -0.44634 -0.44619 - 57 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 58 0.00232 -0.00193 -0.00304 0.00291 -0.13351 0.13348 - 59 0.00822 -0.00589 -0.00990 0.01015 -0.44630 0.44622 - 60 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 28 -0.20621 0.20212 -0.47831 -0.47989 0.00500 0.00579 + 29 0.16673 -0.16447 0.39212 0.39313 -0.00366 -0.00433 + 30 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 31 0.00191 -0.00209 0.00005 -0.00069 -0.00316 0.00316 + 32 0.00028 -0.00041 -0.00015 -0.00003 -0.00067 0.00067 + 33 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 34 0.00191 0.00209 0.00005 0.00069 -0.00316 -0.00316 + 35 0.00028 0.00041 -0.00015 0.00003 -0.00067 -0.00067 + 36 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 37 -0.02033 0.02367 0.00258 0.00518 0.03651 -0.03649 + 38 -0.00348 0.00486 0.00116 -0.00009 0.00653 -0.00653 + 39 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 40 -0.02033 -0.02367 0.00258 -0.00518 0.03653 0.03647 + 41 -0.00348 -0.00486 0.00116 0.00009 0.00653 0.00653 + 42 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 43 -0.00005 0.00030 -0.00022 0.00039 -0.05033 0.05035 + 44 -0.00053 -0.00071 -0.00095 0.00089 -0.04414 0.04415 + 45 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 46 -0.00005 -0.00030 -0.00022 -0.00039 -0.05035 -0.05033 + 47 -0.00053 0.00071 -0.00095 -0.00089 -0.04416 -0.04413 + 48 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 49 -0.00363 -0.00514 -0.00291 0.00074 0.46688 -0.46724 + 50 -0.00087 -0.00110 -0.00091 0.00053 0.07796 -0.07802 + 51 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 52 -0.00363 0.00514 -0.00291 -0.00074 0.46712 0.46700 + 53 -0.00087 0.00110 -0.00091 -0.00053 0.07800 0.07798 + 54 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 55 0.00232 0.00193 0.00303 -0.00291 0.13348 -0.13350 + 56 0.00824 0.00589 0.00989 -0.01015 0.44620 -0.44631 + 57 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 58 0.00232 -0.00193 0.00303 0.00291 0.13355 0.13344 + 59 0.00824 -0.00589 0.00989 0.01015 0.44643 0.44608 + 60 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 @@ -5282,66 +2668,66 @@ Iterative solution of linear equations Normal Eigenvalue || Projected Derivative Dipole Moments (debye/angs) Mode [cm**-1] || [d/dqX] [d/dqY] [d/dqZ] ------ ---------- || ------------------ ------------------ ----------------- - 1 -0.000 || 0.000 -0.000 0.000 - 2 -0.000 || 0.000 0.000 -0.000 - 3 -0.000 || 0.000 0.000 -0.000 - 4 -0.000 || -0.000 -0.000 -0.000 + 1 -0.000 || 0.000 -0.000 -0.000 + 2 0.000 || 0.000 -0.000 0.000 + 3 0.000 || 0.000 0.000 0.000 + 4 0.000 || -0.000 -0.000 0.000 5 0.000 || -0.000 0.000 -0.000 - 6 0.000 || 0.000 -0.000 0.000 - 7 49.036 || 0.000 0.000 0.027 - 8 81.584 || -0.000 -0.000 -0.000 - 9 151.709 || 0.000 -0.000 -0.091 - 10 181.038 || 0.031 -0.073 0.000 - 11 265.733 || 0.000 -0.000 0.000 - 12 300.973 || 0.000 -0.000 -0.000 + 6 0.000 || 0.000 0.000 0.000 + 7 48.959 || 0.000 0.000 0.026 + 8 81.538 || -0.000 -0.000 0.000 + 9 151.678 || -0.000 0.000 -0.091 + 10 181.035 || 0.031 -0.073 -0.000 + 11 265.730 || -0.000 -0.000 -0.000 + 12 300.962 || 0.000 -0.000 -0.000 13 407.914 || 0.000 -0.000 -0.000 - 14 424.395 || 0.000 -0.000 -0.049 - 15 468.980 || 0.000 -0.000 0.372 - 16 487.915 || 0.018 -0.214 0.000 - 17 578.840 || -0.000 0.000 0.000 - 18 657.329 || -0.000 -0.000 0.000 - 19 673.468 || 0.000 -0.000 0.000 - 20 707.330 || 0.000 0.000 -0.105 - 21 735.109 || -0.024 0.319 -0.000 - 22 810.677 || -0.000 -0.000 -0.000 - 23 862.517 || -0.000 0.000 0.000 - 24 895.307 || -0.000 -0.000 -0.000 - 25 896.426 || -0.000 -0.000 0.788 - 26 980.919 || -0.000 0.000 -0.000 - 27 980.994 || 0.000 -0.000 0.930 - 28 1017.723 || 0.000 -0.000 0.000 - 29 1036.472 || 0.000 0.000 -0.013 - 30 1073.555 || 0.014 -0.107 0.000 - 31 1102.043 || 0.034 0.456 -0.000 - 32 1107.654 || 0.000 0.000 0.000 - 33 1107.676 || -0.000 -0.000 -0.558 - 34 1110.622 || -0.000 -0.000 0.000 - 35 1203.733 || 0.090 -0.165 -0.000 - 36 1260.957 || 0.000 0.000 0.000 - 37 1284.262 || 0.024 0.025 -0.000 - 38 1296.184 || 0.000 0.000 0.000 - 39 1350.008 || -0.050 -0.460 -0.000 - 40 1398.535 || 0.000 0.000 -0.000 - 41 1422.101 || -0.086 0.440 0.000 - 42 1427.475 || 0.000 -0.000 0.000 - 43 1514.543 || -0.648 -0.167 0.000 - 44 1565.414 || 0.000 -0.000 -0.000 - 45 1575.248 || 0.082 0.084 0.000 - 46 1639.648 || -0.039 0.601 -0.000 - 47 1690.931 || -0.000 -0.000 0.000 - 48 1738.511 || -0.000 -0.000 -0.000 - 49 1814.824 || 0.000 -0.000 0.000 - 50 1815.797 || -0.188 -0.009 0.000 - 51 3394.052 || 0.362 -1.487 0.000 - 52 3394.781 || -0.000 0.000 -0.000 - 53 3432.815 || 0.068 -0.287 0.000 - 54 3432.819 || -0.000 0.000 0.000 - 55 3447.869 || 0.173 0.028 -0.000 - 56 3451.342 || -0.000 0.000 0.000 - 57 3471.326 || 0.347 -0.112 -0.000 - 58 3474.289 || -0.000 0.000 -0.000 - 59 3546.613 || 0.012 -0.020 0.000 - 60 3546.660 || 0.000 -0.000 0.000 + 14 424.393 || 0.000 -0.000 0.049 + 15 468.981 || 0.000 -0.000 0.372 + 16 487.911 || -0.018 0.214 -0.000 + 17 578.834 || -0.000 -0.000 -0.000 + 18 657.318 || -0.000 -0.000 -0.000 + 19 673.472 || -0.000 0.000 0.000 + 20 707.323 || -0.000 0.000 -0.105 + 21 735.107 || 0.024 -0.318 0.000 + 22 810.711 || -0.000 0.000 0.000 + 23 862.516 || -0.000 -0.000 -0.000 + 24 895.306 || 0.000 0.000 -0.000 + 25 896.448 || -0.000 -0.000 0.788 + 26 980.828 || -0.000 0.000 0.000 + 27 980.897 || 0.000 -0.000 0.931 + 28 1017.725 || 0.000 0.000 0.000 + 29 1036.477 || -0.000 0.000 0.013 + 30 1073.559 || -0.014 0.107 -0.000 + 31 1102.038 || 0.034 0.456 0.000 + 32 1107.666 || -0.000 -0.000 -0.000 + 33 1107.689 || 0.000 -0.000 -0.558 + 34 1110.616 || -0.000 0.000 0.000 + 35 1203.736 || 0.090 -0.165 0.000 + 36 1260.965 || -0.000 -0.000 0.000 + 37 1284.275 || -0.024 -0.026 -0.000 + 38 1296.189 || 0.000 -0.000 -0.000 + 39 1350.023 || 0.050 0.459 0.000 + 40 1398.543 || -0.000 -0.000 0.000 + 41 1422.117 || -0.086 0.439 -0.000 + 42 1427.488 || 0.000 -0.000 -0.000 + 43 1514.545 || -0.648 -0.166 0.000 + 44 1565.407 || 0.000 0.000 0.000 + 45 1575.245 || -0.082 -0.083 0.000 + 46 1639.656 || -0.039 0.600 -0.000 + 47 1690.934 || -0.000 0.000 0.000 + 48 1738.521 || 0.000 0.000 -0.000 + 49 1814.823 || -0.000 0.000 0.000 + 50 1815.793 || -0.188 -0.009 -0.000 + 51 3394.024 || -0.361 1.489 0.000 + 52 3394.756 || -0.000 0.000 0.000 + 53 3432.817 || 0.067 -0.289 -0.000 + 54 3432.821 || -0.000 0.000 -0.000 + 55 3447.865 || 0.172 0.028 0.000 + 56 3451.333 || -0.000 -0.000 0.000 + 57 3471.309 || -0.346 0.112 0.000 + 58 3474.273 || 0.000 -0.000 -0.000 + 59 3546.597 || 0.012 -0.020 0.000 + 60 3546.642 || -0.000 0.000 -0.000 ---------------------------------------------------------------------------- @@ -5353,78 +2739,72 @@ Iterative solution of linear equations Mode [cm**-1] || [atomic units] [(debye/angs)**2] [(KM/mol)] [arbitrary] ------ ---------- || -------------- ----------------- ---------- ----------- 1 -0.000 || 0.000000 0.000 0.000 0.000 - 2 -0.000 || 0.000000 0.000 0.000 0.000 - 3 -0.000 || 0.000000 0.000 0.000 0.000 - 4 -0.000 || 0.000000 0.000 0.000 0.000 + 2 0.000 || 0.000000 0.000 0.000 0.000 + 3 0.000 || 0.000000 0.000 0.000 0.000 + 4 0.000 || 0.000000 0.000 0.000 0.000 5 0.000 || 0.000000 0.000 0.000 0.000 6 0.000 || 0.000000 0.000 0.000 0.000 - 7 49.036 || 0.000031 0.001 0.030 0.068 - 8 81.584 || 0.000000 0.000 0.000 0.000 - 9 151.709 || 0.000359 0.008 0.350 0.796 - 10 181.038 || 0.000273 0.006 0.266 0.607 - 11 265.733 || 0.000000 0.000 0.000 0.000 - 12 300.973 || 0.000000 0.000 0.000 0.000 + 7 48.959 || 0.000030 0.001 0.029 0.066 + 8 81.538 || 0.000000 0.000 0.000 0.000 + 9 151.678 || 0.000361 0.008 0.352 0.801 + 10 181.035 || 0.000273 0.006 0.266 0.606 + 11 265.730 || 0.000000 0.000 0.000 0.000 + 12 300.962 || 0.000000 0.000 0.000 0.000 13 407.914 || 0.000000 0.000 0.000 0.000 - 14 424.395 || 0.000104 0.002 0.101 0.230 - 15 468.980 || 0.006013 0.139 5.862 13.348 - 16 487.915 || 0.001991 0.046 1.941 4.420 - 17 578.840 || 0.000000 0.000 0.000 0.000 - 18 657.329 || 0.000000 0.000 0.000 0.000 - 19 673.468 || 0.000000 0.000 0.000 0.000 - 20 707.330 || 0.000476 0.011 0.464 1.057 - 21 735.109 || 0.004426 0.102 4.315 9.825 - 22 810.677 || 0.000000 0.000 0.000 0.000 - 23 862.517 || 0.000000 0.000 0.000 0.000 - 24 895.307 || 0.000000 0.000 0.000 0.000 - 25 896.426 || 0.026922 0.621 26.245 59.762 - 26 980.919 || 0.000000 0.000 0.000 0.000 - 27 980.994 || 0.037510 0.865 36.566 83.265 - 28 1017.723 || 0.000000 0.000 0.000 0.000 - 29 1036.472 || 0.000007 0.000 0.007 0.016 - 30 1073.555 || 0.000500 0.012 0.487 1.110 - 31 1102.043 || 0.009062 0.209 8.834 20.117 - 32 1107.654 || 0.000000 0.000 0.000 0.000 - 33 1107.676 || 0.013505 0.312 13.165 29.979 - 34 1110.622 || 0.000000 0.000 0.000 0.000 - 35 1203.733 || 0.001529 0.035 1.491 3.394 - 36 1260.957 || 0.000000 0.000 0.000 0.000 - 37 1284.262 || 0.000053 0.001 0.052 0.119 - 38 1296.184 || 0.000000 0.000 0.000 0.000 - 39 1350.008 || 0.009261 0.214 9.028 20.559 - 40 1398.535 || 0.000000 0.000 0.000 0.000 - 41 1422.101 || 0.008709 0.201 8.490 19.332 - 42 1427.475 || 0.000000 0.000 0.000 0.000 - 43 1514.543 || 0.019390 0.447 18.903 43.043 - 44 1565.414 || 0.000000 0.000 0.000 0.000 - 45 1575.248 || 0.000597 0.014 0.582 1.324 - 46 1639.648 || 0.015699 0.362 15.305 34.850 - 47 1690.931 || 0.000000 0.000 0.000 0.000 - 48 1738.511 || 0.000000 0.000 0.000 0.000 - 49 1814.824 || 0.000000 0.000 0.000 0.000 - 50 1815.797 || 0.001538 0.035 1.500 3.415 - 51 3394.052 || 0.101457 2.341 98.905 225.216 - 52 3394.781 || 0.000000 0.000 0.000 0.000 - 53 3432.815 || 0.003765 0.087 3.671 8.359 - 54 3432.819 || 0.000000 0.000 0.000 0.000 - 55 3447.869 || 0.001332 0.031 1.298 2.956 - 56 3451.342 || 0.000000 0.000 0.000 0.000 - 57 3471.326 || 0.005759 0.133 5.614 12.783 - 58 3474.289 || 0.000000 0.000 0.000 0.000 - 59 3546.613 || 0.000023 0.001 0.023 0.052 - 60 3546.660 || 0.000000 0.000 0.000 0.000 + 14 424.393 || 0.000104 0.002 0.102 0.231 + 15 468.981 || 0.006007 0.139 5.856 13.320 + 16 487.911 || 0.001998 0.046 1.948 4.431 + 17 578.834 || 0.000000 0.000 0.000 0.000 + 18 657.318 || 0.000000 0.000 0.000 0.000 + 19 673.472 || 0.000000 0.000 0.000 0.000 + 20 707.323 || 0.000480 0.011 0.468 1.064 + 21 735.107 || 0.004420 0.102 4.309 9.802 + 22 810.711 || 0.000000 0.000 0.000 0.000 + 23 862.516 || 0.000000 0.000 0.000 0.000 + 24 895.306 || 0.000000 0.000 0.000 0.000 + 25 896.448 || 0.026921 0.621 26.244 59.697 + 26 980.828 || 0.000000 0.000 0.000 0.000 + 27 980.897 || 0.037599 0.867 36.653 83.373 + 28 1017.725 || 0.000000 0.000 0.000 0.000 + 29 1036.477 || 0.000007 0.000 0.007 0.016 + 30 1073.559 || 0.000505 0.012 0.492 1.119 + 31 1102.038 || 0.009064 0.209 8.836 20.100 + 32 1107.666 || 0.000000 0.000 0.000 0.000 + 33 1107.689 || 0.013480 0.311 13.141 29.891 + 34 1110.616 || 0.000000 0.000 0.000 0.000 + 35 1203.736 || 0.001536 0.035 1.497 3.406 + 36 1260.965 || 0.000000 0.000 0.000 0.000 + 37 1284.275 || 0.000056 0.001 0.054 0.124 + 38 1296.189 || 0.000000 0.000 0.000 0.000 + 39 1350.023 || 0.009256 0.214 9.023 20.525 + 40 1398.543 || 0.000000 0.000 0.000 0.000 + 41 1422.117 || 0.008675 0.200 8.456 19.235 + 42 1427.488 || 0.000000 0.000 0.000 0.000 + 43 1514.545 || 0.019376 0.447 18.889 42.965 + 44 1565.407 || 0.000000 0.000 0.000 0.000 + 45 1575.245 || 0.000588 0.014 0.573 1.304 + 46 1639.656 || 0.015691 0.362 15.296 34.793 + 47 1690.934 || 0.000000 0.000 0.000 0.000 + 48 1738.521 || 0.000000 0.000 0.000 0.000 + 49 1814.823 || 0.000000 0.000 0.000 0.000 + 50 1815.793 || 0.001535 0.035 1.497 3.404 + 51 3394.024 || 0.101752 2.348 99.193 225.630 + 52 3394.756 || 0.000000 0.000 0.000 0.000 + 53 3432.817 || 0.003802 0.088 3.706 8.430 + 54 3432.821 || 0.000000 0.000 0.000 0.000 + 55 3447.865 || 0.001314 0.030 1.281 2.913 + 56 3451.333 || 0.000000 0.000 0.000 0.000 + 57 3471.309 || 0.005728 0.132 5.584 12.701 + 58 3474.273 || 0.000000 0.000 0.000 0.000 + 59 3546.597 || 0.000024 0.001 0.023 0.053 + 60 3546.642 || 0.000000 0.000 0.000 0.000 ---------------------------------------------------------------------------- vib:animation F - Task times cpu: 214.3s wall: 226.7s - - - NWChem Input Module - ------------------- - - + Task times cpu: 304.5s wall: 304.9s Summary of allocated global arrays ----------------------------------- No active global arrays @@ -5435,40 +2815,70 @@ Iterative solution of linear equations ------------------------------ create destroy get put acc scatter gather read&inc -calls: 7087 7087 3.09e+06 6.64e+04 2.40e+06 1304 0 5700 -number of processes/call 2.57e+12 5.31e+13 9.90e+10 0.00e+00 0.00e+00 -bytes total: 4.07e+08 5.09e+07 3.34e+08 0.00e+00 0.00e+00 4.56e+04 -bytes remote: 2.73e+08 1.94e+07 2.48e+08 -3.00e+03 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 4761304 bytes - +calls: 6378 6378 1.36e+07 2.40e+05 1.03e+07 1262 0 6912 +number of processes/call 1.69e+11 -3.80e+13 -8.61e+11 0.00e+00 0.00e+00 +bytes total: 1.41e+09 1.68e+08 1.25e+09 7.00e+03 0.00e+00 5.53e+04 +bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 19036800 bytes MA_summarize_allocated_blocks: starting scan ... -MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +heap block 'gridpts', handle 103, address 0x56043b181718: + type of elements: double precision + number of elements: 53628253 + address of client space: 0x56043b181780 + index for client space: 9382713 + total number of bytes: 429026136 +MA_summarize_allocated_blocks: scan completed: 1 heap block, 0 stack blocks MA usage statistics: allocation statistics: heap stack ---- ----- - current number of blocks 0 0 - maximum number of blocks 25 57 - current total bytes 0 0 - maximum total bytes 6909880 67349672 - maximum total K-bytes 6910 67350 - maximum total M-bytes 7 68 - - + current number of blocks 1 0 + maximum number of blocks 26 54 + current total bytes 429026136 0 + maximum total bytes 456188312 67349688 + maximum total K-bytes 456189 67350 + maximum total M-bytes 457 68 + + + NWChem Input Module + ------------------- + + + + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, - T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, - E. Apra, T.L. Windus, W.A. de Jong - "NWChem: a comprehensive and scalable open-source - solution for large scale molecular simulations" - Comput. Phys. Commun. 181, 1477 (2010) - doi:10.1016/j.cpc.2010.04.018 - + + E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, + V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, + J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, + J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, + C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, + K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, + J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, + V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, + B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, + S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, + A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, + D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, + J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, + A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, + R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, + D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, + V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, + Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, + D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, + A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, + and R. J. Harrison + "NWChem: Past, present, and future + J. Chem. Phys. 152, 184102 (2020) + doi:10.1063/5.0004997 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -5491,22 +2901,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 219.1s wall: 231.8s -============================================================================ - JOB STATISTICS -============================================================================ - SubmitTime: 2021-08-02T10:34:34 - EndTime: 2021-08-02T15:34:35 - RunTime: 00:03:53 - JobId: 13495 - TRES: cpu=4,mem=50G,node=1 - Partition: kjordan - NodeList: smp-n17 - Command: /ihome/kjordan/shu8/projects/code_tests/cclib/nwchem/h2o.slurm - StdOut: /ihome/kjordan/shu8/projects/code_tests/cclib/nwchem/slurm.out -More information: - - `sacct -M invest -j 13495 -S 2021-08-02T10:34:34 -E 2021-08-02T15:34:35` - Print control: - - List of all possible fields: `sacct --helpformat` - - Add `--format=` with fields of interest -============================================================================ + Total times cpu: 304.6s wall: 304.9s diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_hf.out b/data/NWChem/basicNWChem7.0/dvb_sp_hf.out index e15d6ad45..6394be36e 100644 --- a/data/NWChem/basicNWChem7.0/dvb_sp_hf.out +++ b/data/NWChem/basicNWChem7.0/dvb_sp_hf.out @@ -1,17 +1,17 @@ - argument 1 = dvb_sp_hf.nw + argument 1 = dvb_sp_hf.in - Northwest Computational Chemistry Package (NWChem) 6.5 - ------------------------------------------------------ + Northwest Computational Chemistry Package (NWChem) 7.0.2 + -------------------------------------------------------- Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - Copyright (c) 1994-2014 + Copyright (c) 1994-2020 Pacific Northwest National Laboratory Battelle Memorial Institute @@ -36,16 +36,17 @@ Job information --------------- - hostname = boman - program = /usr/lib64/mpich/bin/nwchem_mpich - date = Wed Jan 21 23:10:22 2015 - - compiled = Sat_Dec_06_13:02:58_2014 - source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 - nwchem branch = 6.5 - nwchem revision = 26243 - ga revision = 10506 - input = dvb_sp_hf.nw + hostname = osmium + program = nwchem + date = Sat Jun 4 13:33:11 2022 + + compiled = Fri_Jul_02_16:33:00_2021 + source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src + nwchem branch = 7.0.2 + nwchem revision = b9985dfa + ga revision = 5.7.2 + use scalapack = T + input = dvb_sp_hf.in prefix = dvb. data base = ./dvb.db status = startup @@ -89,6 +90,8 @@ ------ auto-z ------ + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 Geometry "geometry" -> "" @@ -345,7 +348,7 @@ library name resolved from: environment - library file name is: + library file name is: @@ -442,12 +445,12 @@ ----------- ----------- ----------- ----------- ----------- ----------- 1 1.00000 0.24836 -0.00000 -0.00000 0.00000 0.00000 2 0.24836 1.00000 0.00000 -0.00000 0.00000 0.00030 - 3 -0.00000 0.00000 1.00000 0.00000 0.00000 -0.00014 + 3 0.00000 0.00000 1.00000 0.00000 0.00000 -0.00014 4 -0.00000 -0.00000 0.00000 1.00000 0.00000 -0.00081 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 6 0.00000 0.00030 -0.00014 -0.00081 0.00000 1.00000 7 0.00030 0.02187 -0.00590 -0.03524 0.00000 0.24836 - 8 0.00014 0.00590 0.00661 -0.01021 0.00000 0.00000 + 8 0.00014 0.00590 0.00661 -0.01021 0.00000 -0.00000 9 0.00081 0.03524 -0.01021 -0.05268 0.00000 0.00000 10 0.00000 0.00000 0.00000 0.00000 0.00832 0.00000 11 0.00000 0.03557 0.04482 -0.03839 0.00000 0.00000 @@ -649,7 +652,7 @@ 18 0.00000 0.00000 0.00390 0.08539 -0.11288 0.02316 19 1.00000 0.00000 -0.00066 -0.01441 0.02316 0.02049 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 - 21 -0.00066 0.00000 1.00000 0.24836 -0.00000 -0.00000 + 21 -0.00066 0.00000 1.00000 0.24836 -0.00000 0.00000 22 -0.01441 0.00000 0.24836 1.00000 0.00000 -0.00000 23 0.02316 0.00000 -0.00000 0.00000 1.00000 0.00000 24 0.02049 0.00000 -0.00000 -0.00000 0.00000 1.00000 @@ -717,7 +720,7 @@ 23 0.00000 -0.00078 -0.03098 -0.03207 0.03425 0.00000 24 0.00000 0.00065 0.02550 0.03425 -0.01864 0.00000 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.00954 - 26 0.00000 1.00000 0.24836 0.00000 0.00000 0.00000 + 26 0.00000 1.00000 0.24836 0.00000 -0.00000 0.00000 27 0.00000 0.24836 1.00000 0.00000 0.00000 0.00000 28 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 29 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 @@ -852,12 +855,12 @@ 32 -0.03181 0.03532 0.00000 0.00000 0.00015 -0.00019 33 0.03596 0.01884 0.00000 0.00000 0.00017 0.00011 34 -0.00011 0.00034 0.00000 0.00087 0.02741 -0.03596 - 35 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 35 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 36 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 37 1.00000 0.00000 0.00000 0.00000 0.00000 0.00000 38 0.00000 1.00000 0.00000 0.00000 0.00000 -0.00000 39 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 40 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 40 0.00000 0.00000 0.00000 1.00000 0.24836 -0.00000 41 0.00000 0.00000 0.00000 0.24836 1.00000 0.00000 42 0.00000 -0.00000 0.00000 0.00000 0.00000 1.00000 43 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 @@ -920,7 +923,7 @@ 37 -0.00000 0.00000 -0.45129 0.00000 0.04749 0.27266 38 -0.00000 0.00000 -0.10556 0.00000 -0.05283 -0.30328 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 40 0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 + 40 -0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 41 0.00000 0.00000 0.00000 0.48445 0.00000 0.00000 42 0.00000 0.00000 -0.00000 0.45129 -0.00000 -0.00000 43 1.00000 0.00000 -0.00000 0.10556 -0.00000 -0.00000 @@ -990,12 +993,12 @@ 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 45 -0.12645 0.04805 0.00000 0.00000 0.00000 -0.00000 46 0.00000 0.00000 0.00000 0.00611 0.10604 0.12645 - 47 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 47 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 48 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 49 1.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 50 -0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 51 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 52 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 52 0.00000 0.00000 0.00000 1.00000 0.24836 -0.00000 53 -0.00000 0.00000 0.00000 0.24836 1.00000 -0.00000 54 0.00000 0.00000 0.00000 0.00000 -0.00000 1.00000 55 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 @@ -1058,7 +1061,7 @@ 49 0.00000 0.00000 0.45887 -0.00000 -0.13400 -0.00000 50 -0.00000 0.00000 0.07655 0.00000 -0.44525 0.00000 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 52 0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 + 52 -0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 53 0.00000 0.00000 0.00000 0.48732 0.00000 0.48692 54 -0.00000 0.00000 0.00000 -0.45887 0.00000 0.13400 55 1.00000 0.00000 -0.00000 -0.07655 -0.00000 0.44525 @@ -1068,7 +1071,7 @@ 59 -0.00000 0.00000 0.14897 0.00000 1.00000 0.00000 60 0.44525 0.00000 0.00000 0.14897 0.00000 1.00000 - Forming initial guess at 1.5s + Forming initial guess at 0.0s Superposition of Atomic Density Guess @@ -1082,12 +1085,12 @@ ----------- ----------- ----------- ----------- ----------- ----------- 1 1.00000 0.24836 -0.00000 -0.00000 0.00000 0.00000 2 0.24836 1.00000 0.00000 -0.00000 0.00000 0.00030 - 3 -0.00000 0.00000 1.00000 0.00000 0.00000 -0.00014 + 3 0.00000 0.00000 1.00000 0.00000 0.00000 -0.00014 4 -0.00000 -0.00000 0.00000 1.00000 0.00000 -0.00081 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 6 0.00000 0.00030 -0.00014 -0.00081 0.00000 1.00000 7 0.00030 0.02187 -0.00590 -0.03524 0.00000 0.24836 - 8 0.00014 0.00590 0.00661 -0.01021 0.00000 0.00000 + 8 0.00014 0.00590 0.00661 -0.01021 0.00000 -0.00000 9 0.00081 0.03524 -0.01021 -0.05268 0.00000 0.00000 10 0.00000 0.00000 0.00000 0.00000 0.00832 0.00000 11 0.00000 0.03557 0.04482 -0.03839 0.00000 0.00000 @@ -1289,7 +1292,7 @@ 18 0.00000 0.00000 0.00390 0.08539 -0.11288 0.02316 19 1.00000 0.00000 -0.00066 -0.01441 0.02316 0.02049 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 - 21 -0.00066 0.00000 1.00000 0.24836 -0.00000 -0.00000 + 21 -0.00066 0.00000 1.00000 0.24836 -0.00000 0.00000 22 -0.01441 0.00000 0.24836 1.00000 0.00000 -0.00000 23 0.02316 0.00000 -0.00000 0.00000 1.00000 0.00000 24 0.02049 0.00000 -0.00000 -0.00000 0.00000 1.00000 @@ -1357,7 +1360,7 @@ 23 0.00000 -0.00078 -0.03098 -0.03207 0.03425 0.00000 24 0.00000 0.00065 0.02550 0.03425 -0.01864 0.00000 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.00954 - 26 0.00000 1.00000 0.24836 0.00000 0.00000 0.00000 + 26 0.00000 1.00000 0.24836 0.00000 -0.00000 0.00000 27 0.00000 0.24836 1.00000 0.00000 0.00000 0.00000 28 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 29 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 @@ -1492,12 +1495,12 @@ 32 -0.03181 0.03532 0.00000 0.00000 0.00015 -0.00019 33 0.03596 0.01884 0.00000 0.00000 0.00017 0.00011 34 -0.00011 0.00034 0.00000 0.00087 0.02741 -0.03596 - 35 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 35 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 36 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 37 1.00000 0.00000 0.00000 0.00000 0.00000 0.00000 38 0.00000 1.00000 0.00000 0.00000 0.00000 -0.00000 39 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 40 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 40 0.00000 0.00000 0.00000 1.00000 0.24836 -0.00000 41 0.00000 0.00000 0.00000 0.24836 1.00000 0.00000 42 0.00000 -0.00000 0.00000 0.00000 0.00000 1.00000 43 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 @@ -1560,7 +1563,7 @@ 37 -0.00000 0.00000 -0.45129 0.00000 0.04749 0.27266 38 -0.00000 0.00000 -0.10556 0.00000 -0.05283 -0.30328 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 40 0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 + 40 -0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 41 0.00000 0.00000 0.00000 0.48445 0.00000 0.00000 42 0.00000 0.00000 -0.00000 0.45129 -0.00000 -0.00000 43 1.00000 0.00000 -0.00000 0.10556 -0.00000 -0.00000 @@ -1630,12 +1633,12 @@ 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 45 -0.12645 0.04805 0.00000 0.00000 0.00000 -0.00000 46 0.00000 0.00000 0.00000 0.00611 0.10604 0.12645 - 47 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 47 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 48 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 49 1.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 50 -0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 51 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 52 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 52 0.00000 0.00000 0.00000 1.00000 0.24836 -0.00000 53 -0.00000 0.00000 0.00000 0.24836 1.00000 -0.00000 54 0.00000 0.00000 0.00000 0.00000 -0.00000 1.00000 55 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 @@ -1698,7 +1701,7 @@ 49 0.00000 0.00000 0.45887 -0.00000 -0.13400 -0.00000 50 -0.00000 0.00000 0.07655 0.00000 -0.44525 0.00000 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 52 0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 + 52 -0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 53 0.00000 0.00000 0.00000 0.48732 0.00000 0.48692 54 -0.00000 0.00000 0.00000 -0.45887 0.00000 0.13400 55 1.00000 0.00000 -0.00000 -0.07655 -0.00000 0.44525 @@ -1738,7 +1741,7 @@ 41 ag 42 bu 43 bu 44 ag 45 bu - Starting SCF solution at 2.3s + Starting SCF solution at 0.2s @@ -1751,32 +1754,23 @@ ---------------------------------------------- - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% - - iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7024515658 7.56D-01 1.81D-01 2.4 - 2 -379.7670218883 1.53D-01 4.40D-02 2.4 - 3 -379.7689554257 6.43D-03 2.31D-03 2.5 - 4 -379.7689624910 3.37D-05 9.25D-06 2.6 + 1 -379.7024485570 7.56D-01 1.81D-01 0.5 + 2 -379.7670205711 1.53D-01 4.40D-02 1.3 + 3 -379.7689540267 6.43D-03 2.31D-03 2.2 + 4 -379.7689610929 3.38D-05 9.25D-06 3.8 Final RHF results ------------------ - Total SCF energy = -379.768962491035 - One-electron energy = -1400.222183962455 - Two-electron energy = 574.516209303975 + Total SCF energy = -379.768961092935 + One-electron energy = -1400.222176091991 + Two-electron energy = 574.516202831610 Nuclear repulsion energy = 445.937012167446 - Time for solution = 1.9s + Time for solution = 3.6s @@ -1853,226 +1847,226 @@ ------------------------------------- Vector 1 Occ=2.000000D+00 E=-1.104059D+01 Symmetry=bu - MO Center= -2.9D-14, -2.5D-13, 7.4D-20, r^2= 2.1D+00 + MO Center= 9.7D-12, 5.8D-11, 2.4D-21, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 1 0.701483 1 C s 6 -0.701483 2 C s + 1 0.701484 1 C s 6 -0.701484 2 C s Vector 2 Occ=2.000000D+00 E=-1.104052D+01 Symmetry=ag - MO Center= 3.3D-14, 1.5D-13, 6.2D-19, r^2= 2.1D+00 + MO Center= -9.7D-12, -5.8D-11, -8.1D-19, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.701542 1 C s 6 0.701542 2 C s Vector 3 Occ=2.000000D+00 E=-1.103159D+01 Symmetry=bu - MO Center= 2.1D-14, 1.0D-13, -8.9D-33, r^2= 8.6D+00 + MO Center= -3.8D-12, -2.3D-11, -7.1D-21, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.701357 11 C s 40 -0.701357 12 C s + 35 0.701358 11 C s 40 -0.701358 12 C s Vector 4 Occ=2.000000D+00 E=-1.103159D+01 Symmetry=ag - MO Center= -1.5D-12, 1.7D-12, 4.7D-18, r^2= 8.6D+00 + MO Center= 4.2D-12, 2.3D-11, -6.0D-32, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.701320 11 C s 40 0.701320 12 C s Vector 5 Occ=2.000000D+00 E=-1.102896D+01 Symmetry=bu - MO Center= -8.9D-15, 7.6D-16, -3.8D-33, r^2= 2.0D+00 + MO Center= -2.1D-13, -3.4D-14, -1.8D-22, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.594681 5 C s 26 -0.594681 6 C s - 11 0.372717 3 C s 16 -0.372717 4 C s + 21 0.594536 5 C s 26 -0.594536 6 C s + 11 0.372948 3 C s 16 -0.372948 4 C s Vector 6 Occ=2.000000D+00 E=-1.102883D+01 Symmetry=ag - MO Center= -5.5D-15, 9.9D-17, -1.8D-32, r^2= 2.0D+00 + MO Center= 1.1D-13, -6.0D-14, -2.6D-34, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.636098 5 C s 26 0.636098 6 C s - 11 0.296533 3 C s 16 0.296533 4 C s + 21 0.635983 5 C s 26 0.635983 6 C s + 11 0.296780 3 C s 16 0.296780 4 C s Vector 7 Occ=2.000000D+00 E=-1.102861D+01 Symmetry=bu - MO Center= 5.9D-15, -2.6D-14, -4.4D-32, r^2= 2.0D+00 + MO Center= 1.3D-16, 9.6D-15, -5.5D-31, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.594365 3 C s 16 -0.594365 4 C s - 21 -0.372219 5 C s 26 0.372219 6 C s + 11 0.594220 3 C s 16 -0.594220 4 C s + 21 -0.372451 5 C s 26 0.372451 6 C s Vector 8 Occ=2.000000D+00 E=-1.102859D+01 Symmetry=ag - MO Center= -2.3D-15, 1.9D-15, -9.1D-19, r^2= 2.0D+00 + MO Center= 1.1D-13, 1.0D-13, -5.5D-18, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.635860 3 C s 16 0.635860 4 C s - 21 -0.296035 5 C s 26 -0.296035 6 C s + 11 0.635745 3 C s 16 0.635745 4 C s + 21 -0.296283 5 C s 26 -0.296283 6 C s Vector 9 Occ=2.000000D+00 E=-1.101748D+01 Symmetry=bu - MO Center= 6.1D-11, -6.4D-10, -4.1D-18, r^2= 1.5D+01 + MO Center= -1.8D-17, 9.0D-17, -9.4D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.701435 15 C s 52 -0.701435 16 C s Vector 10 Occ=2.000000D+00 E=-1.101748D+01 Symmetry=ag - MO Center= -6.0D-11, 6.4D-10, 7.0D-30, r^2= 1.5D+01 + MO Center= -4.5D-13, 4.9D-13, 1.3D-31, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.701435 15 C s 52 0.701435 16 C s Vector 11 Occ=2.000000D+00 E=-1.090299D+00 Symmetry=ag - MO Center= 3.8D-16, -5.7D-16, -3.2D-30, r^2= 3.0D+00 + MO Center= 2.4D-17, -4.4D-17, 2.8D-18, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.275368 1 C s 7 0.275368 2 C s 12 0.247273 3 C s 17 0.247273 4 C s - 22 0.247126 5 C s 27 0.247126 6 C s + 22 0.247125 5 C s 27 0.247125 6 C s Vector 12 Occ=2.000000D+00 E=-1.020254D+00 Symmetry=bu - MO Center= -6.8D-16, -1.8D-14, 5.5D-17, r^2= 7.9D+00 + MO Center= 1.6D-16, 7.1D-16, -8.2D-20, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.298699 11 C s 41 -0.298699 12 C s - 2 -0.270806 1 C s 7 0.270806 2 C s + 2 -0.270807 1 C s 7 0.270807 2 C s 48 0.213652 15 C s 53 -0.213652 16 C s - Vector 13 Occ=2.000000D+00 E=-9.749254D-01 Symmetry=ag - MO Center= 3.5D-15, 3.7D-15, -5.6D-18, r^2= 1.1D+01 + Vector 13 Occ=2.000000D+00 E=-9.749253D-01 Symmetry=ag + MO Center= -3.8D-16, 4.5D-16, -4.9D-34, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.314473 11 C s 41 0.314473 12 C s 48 0.310076 15 C s 53 0.310076 16 C s - Vector 14 Occ=2.000000D+00 E=-9.503033D-01 Symmetry=bu - MO Center= 1.3D-15, -5.7D-15, -1.2D-16, r^2= 3.1D+00 + Vector 14 Occ=2.000000D+00 E=-9.503037D-01 Symmetry=bu + MO Center= -9.2D-17, -1.3D-17, -6.8D-34, r^2= 3.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.357133 3 C s 17 -0.357133 4 C s - 22 0.325008 5 C s 27 -0.325008 6 C s + 22 0.325009 5 C s 27 -0.325009 6 C s - Vector 15 Occ=2.000000D+00 E=-9.096345D-01 Symmetry=bu - MO Center= 3.5D-16, 7.5D-15, 2.3D-32, r^2= 8.8D+00 + Vector 15 Occ=2.000000D+00 E=-9.096351D-01 Symmetry=bu + MO Center= 2.1D-17, 3.0D-17, -7.7D-32, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.292220 15 C s 53 -0.292220 16 C s - 2 0.279079 1 C s 7 -0.279079 2 C s + 2 0.279080 1 C s 7 -0.279080 2 C s 22 -0.200698 5 C s 27 0.200698 6 C s - Vector 16 Occ=2.000000D+00 E=-7.998830D-01 Symmetry=ag - MO Center= -2.9D-15, 1.9D-15, 2.4D-17, r^2= 8.5D+00 + Vector 16 Occ=2.000000D+00 E=-7.998827D-01 Symmetry=ag + MO Center= -4.5D-16, -3.0D-16, -1.8D-33, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.239926 15 C s 53 0.239926 16 C s - 22 0.229429 5 C s 27 0.229429 6 C s - 2 -0.212930 1 C s 7 -0.212930 2 C s + 48 0.239928 15 C s 53 0.239928 16 C s + 22 0.229428 5 C s 27 0.229428 6 C s + 2 -0.212931 1 C s 7 -0.212931 2 C s 14 -0.159170 3 C py 19 0.159170 4 C py 36 -0.159504 11 C s 41 -0.159504 12 C s - Vector 17 Occ=2.000000D+00 E=-7.628268D-01 Symmetry=ag - MO Center= 3.7D-15, 2.4D-15, -2.0D-18, r^2= 5.0D+00 + Vector 17 Occ=2.000000D+00 E=-7.628266D-01 Symmetry=ag + MO Center= 5.0D-16, 9.4D-17, 3.7D-33, r^2= 5.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.324855 3 C s 17 0.324855 4 C s - 3 0.189935 1 C px 8 -0.189935 2 C px - 22 -0.180804 5 C s 27 -0.180804 6 C s + 3 0.189937 1 C px 8 -0.189937 2 C px + 22 -0.180806 5 C s 27 -0.180806 6 C s 31 0.173636 7 H s 32 0.173636 8 H s 24 0.169743 5 C py 29 -0.169743 6 C py Vector 18 Occ=2.000000D+00 E=-7.276317D-01 Symmetry=bu - MO Center= -8.5D-17, 2.4D-15, -9.9D-18, r^2= 1.2D+01 + MO Center= -7.2D-17, 4.9D-17, 1.3D-32, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.297522 11 C s 41 -0.297522 12 C s - 48 -0.248206 15 C s 53 0.248206 16 C s + 48 -0.248205 15 C s 53 0.248205 16 C s 45 0.174840 13 H s 46 -0.174840 14 H s 57 -0.163892 17 H s 58 0.163892 18 H s Vector 19 Occ=2.000000D+00 E=-6.967772D-01 Symmetry=ag - MO Center= -9.3D-16, 0.0D+00, -1.1D-17, r^2= 7.9D+00 + MO Center= 1.8D-16, 1.9D-16, -4.1D-34, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.194626 5 C px 28 -0.194626 6 C px - 36 0.187351 11 C s 41 0.187351 12 C s - 13 0.174310 3 C px 18 -0.174310 4 C px + 36 0.187352 11 C s 41 0.187352 12 C s + 13 0.174309 3 C px 18 -0.174309 4 C px 2 -0.170808 1 C s 7 -0.170808 2 C s - 33 0.168856 9 H s 34 0.168856 10 H s + 33 0.168855 9 H s 34 0.168855 10 H s - Vector 20 Occ=2.000000D+00 E=-6.280522D-01 Symmetry=ag - MO Center= 5.1D-15, -3.5D-14, 7.8D-17, r^2= 9.3D+00 + Vector 20 Occ=2.000000D+00 E=-6.280524D-01 Symmetry=ag + MO Center= 3.0D-16, -2.2D-15, 5.5D-18, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.204700 15 C px 54 -0.204700 16 C px - 38 0.183205 11 C py 43 -0.183205 12 C py - 57 0.178852 17 H s 58 0.178852 18 H s + 49 0.204699 15 C px 54 -0.204699 16 C px + 38 0.183206 11 C py 43 -0.183206 12 C py + 57 0.178851 17 H s 58 0.178851 18 H s 45 -0.152733 13 H s 46 -0.152733 14 H s - Vector 21 Occ=2.000000D+00 E=-6.056780D-01 Symmetry=bu - MO Center= -1.9D-15, 5.6D-14, -3.4D-18, r^2= 1.0D+01 + Vector 21 Occ=2.000000D+00 E=-6.056785D-01 Symmetry=bu + MO Center= -1.6D-16, 5.0D-15, -6.5D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.215048 11 C px 42 0.215048 12 C px - 50 0.201798 15 C py 55 0.201798 16 C py + 37 0.215047 11 C px 42 0.215047 12 C px + 50 0.201796 15 C py 55 0.201796 16 C py 14 0.181913 3 C py 19 0.181913 4 C py - 59 -0.179094 19 H s 60 0.179094 20 H s - 45 -0.165299 13 H s 46 0.165299 14 H s + 59 -0.179093 19 H s 60 0.179093 20 H s + 45 -0.165300 13 H s 46 0.165300 14 H s - Vector 22 Occ=2.000000D+00 E=-5.729426D-01 Symmetry=bu - MO Center= -1.0D-15, 2.1D-15, 1.3D-32, r^2= 7.0D+00 + Vector 22 Occ=2.000000D+00 E=-5.729431D-01 Symmetry=bu + MO Center= -2.1D-16, 3.2D-16, 4.7D-32, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.234899 9 H s 34 -0.234899 10 H s + 33 0.234898 9 H s 34 -0.234898 10 H s 31 -0.225759 7 H s 32 0.225759 8 H s - 2 0.223491 1 C s 7 -0.223491 2 C s - 13 -0.220802 3 C px 18 -0.220802 4 C px - 24 -0.179464 5 C py 29 -0.179464 6 C py + 2 0.223487 1 C s 7 -0.223487 2 C s + 13 -0.220803 3 C px 18 -0.220803 4 C px + 24 -0.179466 5 C py 29 -0.179466 6 C py Vector 23 Occ=2.000000D+00 E=-5.536035D-01 Symmetry=bu - MO Center= -2.3D-17, 1.9D-15, -4.2D-33, r^2= 8.9D+00 + MO Center= 4.0D-16, -2.8D-15, 2.2D-32, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.252837 15 C px 54 0.252837 16 C px - 23 0.248952 5 C px 28 0.248952 6 C px + 49 0.252836 15 C px 54 0.252836 16 C px + 23 0.248954 5 C px 28 0.248954 6 C px 3 -0.221990 1 C px 8 -0.221990 2 C px - 57 0.222772 17 H s 58 -0.222772 18 H s - 38 0.178895 11 C py 43 0.178895 12 C py + 57 0.222771 17 H s 58 -0.222771 18 H s + 38 0.178894 11 C py 43 0.178894 12 C py - Vector 24 Occ=2.000000D+00 E=-5.531658D-01 Symmetry=ag - MO Center= -5.5D-16, -2.7D-14, -1.5D-18, r^2= 1.5D+01 + Vector 24 Occ=2.000000D+00 E=-5.531660D-01 Symmetry=ag + MO Center= -1.1D-16, -9.9D-17, -2.5D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.336239 15 C py 55 -0.336239 16 C py - 59 -0.268357 19 H s 60 -0.268357 20 H s + 59 -0.268358 19 H s 60 -0.268358 20 H s 37 0.248998 11 C px 42 -0.248998 12 C px 45 -0.151363 13 H s 46 -0.151363 14 H s - Vector 25 Occ=2.000000D+00 E=-5.253606D-01 Symmetry=bu - MO Center= -5.8D-16, -9.2D-16, 8.6D-34, r^2= 4.4D+00 + Vector 25 Occ=2.000000D+00 E=-5.253611D-01 Symmetry=bu + MO Center= 3.8D-16, -4.8D-16, -1.3D-18, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.299404 3 C px 18 0.299404 4 C px + 13 0.299403 3 C px 18 0.299403 4 C px 31 0.258504 7 H s 32 -0.258504 8 H s 24 -0.232845 5 C py 29 -0.232845 6 C py - 33 0.223596 9 H s 34 -0.223596 10 H s - 23 0.179046 5 C px 28 0.179046 6 C px + 33 0.223597 9 H s 34 -0.223597 10 H s + 23 0.179045 5 C px 28 0.179045 6 C px Vector 26 Occ=2.000000D+00 E=-4.966990D-01 Symmetry=bu - MO Center= 3.3D-15, 1.0D-14, 2.3D-17, r^2= 8.9D+00 + MO Center= 3.5D-16, -5.2D-16, 3.0D-33, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 -0.238942 15 C py 55 -0.238942 16 C py - 14 0.222972 3 C py 19 0.222972 4 C py - 37 -0.201999 11 C px 42 -0.201999 12 C px - 38 0.188759 11 C py 43 0.188759 12 C py + 50 -0.238943 15 C py 55 -0.238943 16 C py + 14 0.222971 3 C py 19 0.222971 4 C py + 37 -0.201997 11 C px 42 -0.201997 12 C px + 38 0.188761 11 C py 43 0.188761 12 C py 24 -0.184876 5 C py 29 -0.184876 6 C py - Vector 27 Occ=2.000000D+00 E=-4.925280D-01 Symmetry=ag - MO Center= -5.2D-15, -1.4D-14, -4.3D-30, r^2= 1.2D+01 + Vector 27 Occ=2.000000D+00 E=-4.925284D-01 Symmetry=ag + MO Center= -7.3D-16, 1.5D-16, 2.0D-36, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.296131 15 C px 54 -0.296131 16 C px + 49 0.296132 15 C px 54 -0.296132 16 C px 57 0.273185 17 H s 58 0.273185 18 H s 37 -0.209362 11 C px 42 0.209362 12 C px 45 0.202959 13 H s 46 0.202959 14 H s - 31 -0.156851 7 H s 32 -0.156851 8 H s + 31 -0.156849 7 H s 32 -0.156849 8 H s - Vector 28 Occ=2.000000D+00 E=-4.637308D-01 Symmetry=au - MO Center= 5.8D-16, 8.3D-17, -7.4D-17, r^2= 3.6D+00 + Vector 28 Occ=2.000000D+00 E=-4.637309D-01 Symmetry=au + MO Center= -9.0D-16, 3.1D-15, -7.2D-17, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.331504 1 C pz 10 0.331504 2 C pz @@ -2080,46 +2074,46 @@ 25 0.301868 5 C pz 30 0.301868 6 C pz 39 0.165577 11 C pz 44 0.165577 12 C pz - Vector 29 Occ=2.000000D+00 E=-4.464302D-01 Symmetry=bu - MO Center= -6.8D-16, -7.8D-16, -4.5D-17, r^2= 1.2D+01 + Vector 29 Occ=2.000000D+00 E=-4.464301D-01 Symmetry=bu + MO Center= -2.5D-16, -4.6D-18, 4.0D-34, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.257252 13 H s 46 -0.257252 14 H s - 4 0.243719 1 C py 9 0.243719 2 C py - 57 0.226298 17 H s 58 -0.226298 18 H s - 37 -0.214534 11 C px 42 -0.214534 12 C px + 45 0.257253 13 H s 46 -0.257253 14 H s + 4 0.243717 1 C py 9 0.243717 2 C py + 57 0.226299 17 H s 58 -0.226299 18 H s + 37 -0.214535 11 C px 42 -0.214535 12 C px 59 -0.211967 19 H s 60 0.211967 20 H s - Vector 30 Occ=2.000000D+00 E=-4.216550D-01 Symmetry=ag - MO Center= 3.3D-15, 8.0D-15, 4.6D-19, r^2= 5.7D+00 + Vector 30 Occ=2.000000D+00 E=-4.216541D-01 Symmetry=ag + MO Center= 2.3D-16, -4.0D-16, -1.8D-16, r^2= 5.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 -0.268212 3 C py 19 0.268212 4 C py - 4 0.260257 1 C py 9 -0.260257 2 C py - 33 -0.253899 9 H s 34 -0.253899 10 H s - 38 0.232935 11 C py 43 -0.232935 12 C py - 24 0.223473 5 C py 29 -0.223473 6 C py - - Vector 31 Occ=2.000000D+00 E=-4.156220D-01 Symmetry=ag - MO Center= 5.1D-16, -1.8D-15, 3.4D-18, r^2= 6.3D+00 + 14 -0.268211 3 C py 19 0.268211 4 C py + 4 0.260254 1 C py 9 -0.260254 2 C py + 33 -0.253901 9 H s 34 -0.253901 10 H s + 38 0.232931 11 C py 43 -0.232931 12 C py + 24 0.223472 5 C py 29 -0.223472 6 C py + + Vector 31 Occ=2.000000D+00 E=-4.156211D-01 Symmetry=ag + MO Center= 1.5D-16, 1.9D-16, 1.4D-16, r^2= 6.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 3 0.278853 1 C px 8 -0.278853 2 C px - 23 0.269038 5 C px 28 -0.269038 6 C px + 3 0.278851 1 C px 8 -0.278851 2 C px + 23 0.269036 5 C px 28 -0.269036 6 C px 31 -0.251625 7 H s 32 -0.251625 8 H s - 13 -0.210356 3 C px 18 0.210356 4 C px + 13 -0.210354 3 C px 18 0.210354 4 C px 45 -0.183775 13 H s 46 -0.183775 14 H s - Vector 32 Occ=2.000000D+00 E=-3.769631D-01 Symmetry=bg - MO Center= -1.1D-16, 1.8D-14, 3.1D-17, r^2= 8.6D+00 + Vector 32 Occ=2.000000D+00 E=-3.769632D-01 Symmetry=bg + MO Center= -3.3D-16, -2.9D-15, 1.7D-19, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.383213 11 C pz 44 -0.383213 12 C pz - 5 -0.318675 1 C pz 10 0.318675 2 C pz - 51 0.306666 15 C pz 56 -0.306666 16 C pz + 5 -0.318676 1 C pz 10 0.318676 2 C pz + 51 0.306665 15 C pz 56 -0.306665 16 C pz - Vector 33 Occ=2.000000D+00 E=-3.151268D-01 Symmetry=au - MO Center= 2.5D-14, -1.7D-14, -1.9D-17, r^2= 1.1D+01 + Vector 33 Occ=2.000000D+00 E=-3.151269D-01 Symmetry=au + MO Center= -2.9D-16, 7.9D-16, 3.7D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.426295 15 C pz 56 0.426295 16 C pz @@ -2127,61 +2121,61 @@ 15 -0.164508 3 C pz 20 -0.164508 4 C pz 25 -0.164934 5 C pz 30 -0.164934 6 C pz - Vector 34 Occ=2.000000D+00 E=-2.783651D-01 Symmetry=bg - MO Center= -2.6D-14, 3.6D-15, 4.0D-17, r^2= 2.7D+00 + Vector 34 Occ=2.000000D+00 E=-2.783652D-01 Symmetry=bg + MO Center= 1.3D-15, -2.5D-16, -3.1D-19, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.459816 3 C pz 20 -0.459816 4 C pz + 15 0.459817 3 C pz 20 -0.459817 4 C pz 25 0.461493 5 C pz 30 -0.461493 6 C pz - Vector 35 Occ=2.000000D+00 E=-2.221904D-01 Symmetry=bg - MO Center= -3.5D-17, -3.9D-15, 1.2D-17, r^2= 7.2D+00 + Vector 35 Occ=2.000000D+00 E=-2.221905D-01 Symmetry=bg + MO Center= -2.0D-17, -6.3D-16, 1.2D-18, r^2= 7.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.417993 1 C pz 10 -0.417993 2 C pz 51 0.358184 15 C pz 56 -0.358184 16 C pz - 15 0.231889 3 C pz 20 -0.231889 4 C pz + 15 0.231888 3 C pz 20 -0.231888 4 C pz 25 -0.232000 5 C pz 30 0.232000 6 C pz - 39 0.218349 11 C pz 44 -0.218349 12 C pz + 39 0.218350 11 C pz 44 -0.218350 12 C pz - Vector 36 Occ=0.000000D+00 E= 1.989924D-01 Symmetry=au - MO Center= -1.1D-16, -5.3D-14, 1.3D-16, r^2= 7.3D+00 + Vector 36 Occ=0.000000D+00 E= 1.989923D-01 Symmetry=au + MO Center= -8.2D-17, 2.3D-14, 1.9D-17, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.471534 1 C pz 10 0.471534 2 C pz 51 -0.414928 15 C pz 56 -0.414928 16 C pz 25 -0.278569 5 C pz 30 -0.278569 6 C pz - 15 -0.249973 3 C pz 20 -0.249973 4 C pz + 15 -0.249974 3 C pz 20 -0.249974 4 C pz 39 0.246934 11 C pz 44 0.246934 12 C pz - Vector 37 Occ=0.000000D+00 E= 2.685138D-01 Symmetry=au - MO Center= 2.3D-16, -2.0D-16, 2.1D-19, r^2= 2.7D+00 + Vector 37 Occ=0.000000D+00 E= 2.685137D-01 Symmetry=au + MO Center= -8.1D-17, -1.6D-16, 2.2D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.578558 3 C pz 20 0.578558 4 C pz - 25 -0.558106 5 C pz 30 -0.558106 6 C pz + 25 -0.558107 5 C pz 30 -0.558107 6 C pz - Vector 38 Occ=0.000000D+00 E= 3.088252D-01 Symmetry=bg - MO Center= 1.7D-16, 5.5D-14, 1.9D-17, r^2= 1.1D+01 + Vector 38 Occ=0.000000D+00 E= 3.088251D-01 Symmetry=bg + MO Center= 1.4D-16, -2.4D-14, -5.4D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.531237 15 C pz 56 0.531237 16 C pz - 39 0.524391 11 C pz 44 -0.524391 12 C pz + 39 0.524390 11 C pz 44 -0.524390 12 C pz 15 0.225543 3 C pz 20 -0.225543 4 C pz 25 -0.220434 5 C pz 30 0.220434 6 C pz - Vector 39 Occ=0.000000D+00 E= 3.970770D-01 Symmetry=au - MO Center= 4.2D-17, -2.7D-15, 5.5D-18, r^2= 8.4D+00 + Vector 39 Occ=0.000000D+00 E= 3.970769D-01 Symmetry=au + MO Center= -7.1D-16, -7.5D-15, 1.1D-15, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.535070 11 C pz 44 0.535070 12 C pz 5 -0.473494 1 C pz 10 -0.473494 2 C pz 51 -0.407351 15 C pz 56 -0.407351 16 C pz 25 0.186775 5 C pz 30 0.186775 6 C pz - 15 0.161862 3 C pz 20 0.161862 4 C pz + 15 0.161861 3 C pz 20 0.161861 4 C pz - Vector 40 Occ=0.000000D+00 E= 5.217566D-01 Symmetry=bg - MO Center= 9.7D-17, 1.8D-16, 2.6D-17, r^2= 3.8D+00 + Vector 40 Occ=0.000000D+00 E= 5.217565D-01 Symmetry=bg + MO Center= 8.0D-16, 7.0D-15, -2.6D-19, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.538711 1 C pz 10 -0.538711 2 C pz @@ -2190,205 +2184,205 @@ 39 0.278750 11 C pz 44 -0.278750 12 C pz 51 -0.158475 15 C pz 56 0.158475 16 C pz - Vector 41 Occ=0.000000D+00 E= 5.650160D-01 Symmetry=ag - MO Center= 3.8D-15, -4.1D-14, 1.8D-17, r^2= 8.7D+00 + Vector 41 Occ=0.000000D+00 E= 5.650142D-01 Symmetry=ag + MO Center= 3.9D-17, -4.0D-16, -4.7D-16, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.434798 9 H s 34 0.434798 10 H s - 31 0.420942 7 H s 32 0.420942 8 H s - 2 -0.380055 1 C s 7 -0.380055 2 C s - 59 0.353828 19 H s 60 0.353828 20 H s - 38 0.323940 11 C py 43 -0.323940 12 C py - - Vector 42 Occ=0.000000D+00 E= 5.755620D-01 Symmetry=bu - MO Center= 3.3D-15, 5.1D-15, -3.4D-17, r^2= 1.0D+01 + 33 0.434809 9 H s 34 0.434809 10 H s + 31 0.420950 7 H s 32 0.420950 8 H s + 2 -0.380042 1 C s 7 -0.380042 2 C s + 59 0.353825 19 H s 60 0.353825 20 H s + 38 0.323933 11 C py 43 -0.323933 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.755623D-01 Symmetry=bu + MO Center= -1.1D-15, -2.4D-14, 3.6D-20, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.448702 13 H s 46 -0.448702 14 H s - 13 0.355546 3 C px 18 0.355546 4 C px - 37 0.350909 11 C px 42 0.350909 12 C px - 57 -0.321562 17 H s 58 0.321562 18 H s - 31 -0.318904 7 H s 32 0.318904 8 H s - - Vector 43 Occ=0.000000D+00 E= 6.215596D-01 Symmetry=ag - MO Center= 5.3D-15, -1.2D-15, -4.4D-17, r^2= 1.2D+01 + 45 0.448708 13 H s 46 -0.448708 14 H s + 13 0.355539 3 C px 18 0.355539 4 C px + 37 0.350908 11 C px 42 0.350908 12 C px + 57 -0.321571 17 H s 58 0.321571 18 H s + 31 -0.318891 7 H s 32 0.318891 8 H s + + Vector 43 Occ=0.000000D+00 E= 6.215603D-01 Symmetry=ag + MO Center= -1.4D-14, -5.6D-16, 5.2D-16, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.589566 13 H s 46 0.589566 14 H s - 12 0.397886 3 C s 17 0.397886 4 C s - 36 -0.394579 11 C s 41 -0.394579 12 C s - 57 -0.381363 17 H s 58 -0.381363 18 H s - 37 0.350692 11 C px 42 -0.350692 12 C px + 12 0.397895 3 C s 17 0.397895 4 C s + 36 -0.394565 11 C s 41 -0.394565 12 C s + 57 -0.381368 17 H s 58 -0.381368 18 H s + 37 0.350696 11 C px 42 -0.350696 12 C px - Vector 44 Occ=0.000000D+00 E= 6.258003D-01 Symmetry=bu - MO Center= -8.2D-15, 2.4D-14, 7.5D-17, r^2= 8.4D+00 + Vector 44 Occ=0.000000D+00 E= 6.258005D-01 Symmetry=bu + MO Center= 4.6D-16, -3.9D-17, 2.0D-19, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.529760 11 C s 41 -0.529760 12 C s - 4 0.453566 1 C py 9 0.453566 2 C py - 33 0.408895 9 H s 34 -0.408895 10 H s - 59 0.389457 19 H s 60 -0.389457 20 H s - 48 -0.337620 15 C s 53 0.337620 16 C s - - Vector 45 Occ=0.000000D+00 E= 6.582325D-01 Symmetry=ag - MO Center= -8.6D-16, 6.2D-15, -8.0D-17, r^2= 1.2D+01 + 36 0.529790 11 C s 41 -0.529790 12 C s + 4 0.453569 1 C py 9 0.453569 2 C py + 33 0.408877 9 H s 34 -0.408877 10 H s + 59 0.389453 19 H s 60 -0.389453 20 H s + 48 -0.337623 15 C s 53 0.337623 16 C s + + Vector 45 Occ=0.000000D+00 E= 6.582334D-01 Symmetry=ag + MO Center= -1.2D-15, 1.6D-15, -4.0D-17, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.683576 15 C s 53 0.683576 16 C s - 22 0.582877 5 C s 27 0.582877 6 C s - 57 -0.541814 17 H s 58 -0.541814 18 H s - 12 -0.457382 3 C s 17 -0.457382 4 C s - 59 -0.330810 19 H s 60 -0.330810 20 H s - - Vector 46 Occ=0.000000D+00 E= 6.593956D-01 Symmetry=bu - MO Center= -1.2D-14, 5.9D-15, 1.6D-18, r^2= 1.0D+01 + 48 0.683572 15 C s 53 0.683572 16 C s + 22 0.582873 5 C s 27 0.582873 6 C s + 57 -0.541817 17 H s 58 -0.541817 18 H s + 12 -0.457375 3 C s 17 -0.457375 4 C s + 59 -0.330802 19 H s 60 -0.330802 20 H s + + Vector 46 Occ=0.000000D+00 E= 6.593933D-01 Symmetry=bu + MO Center= 3.9D-15, 8.2D-16, 7.5D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.611116 5 C s 27 -0.611116 6 C s - 48 0.533506 15 C s 53 -0.533506 16 C s - 2 0.492301 1 C s 7 -0.492301 2 C s - 12 -0.461393 3 C s 17 0.461393 4 C s - 57 -0.460445 17 H s 58 0.460445 18 H s - - Vector 47 Occ=0.000000D+00 E= 6.771779D-01 Symmetry=bu - MO Center= 1.4D-14, 3.7D-14, 2.4D-17, r^2= 9.1D+00 + 22 0.611134 5 C s 27 -0.611134 6 C s + 48 0.533491 15 C s 53 -0.533491 16 C s + 2 0.492298 1 C s 7 -0.492298 2 C s + 12 -0.461405 3 C s 17 0.461405 4 C s + 57 -0.460423 17 H s 58 0.460423 18 H s + + Vector 47 Occ=0.000000D+00 E= 6.771759D-01 Symmetry=bu + MO Center= 8.0D-15, 1.8D-14, -6.7D-20, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 0.598268 7 H s 32 -0.598268 8 H s - 36 -0.467282 11 C s 41 0.467282 12 C s - 45 0.438025 13 H s 46 -0.438025 14 H s + 31 0.598273 7 H s 32 -0.598273 8 H s + 36 -0.467284 11 C s 41 0.467284 12 C s + 45 0.438024 13 H s 46 -0.438024 14 H s 12 -0.361066 3 C s 17 0.361066 4 C s - 59 0.328681 19 H s 60 -0.328681 20 H s + 59 0.328675 19 H s 60 -0.328675 20 H s - Vector 48 Occ=0.000000D+00 E= 6.941860D-01 Symmetry=ag - MO Center= -2.4D-16, -3.9D-16, -1.5D-17, r^2= 7.3D+00 + Vector 48 Occ=0.000000D+00 E= 6.941884D-01 Symmetry=ag + MO Center= 4.6D-15, 2.6D-15, -8.6D-16, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.796664 1 C s 7 0.796664 2 C s - 36 -0.570541 11 C s 41 -0.570541 12 C s - 22 -0.469182 5 C s 27 -0.469182 6 C s - 12 -0.444286 3 C s 17 -0.444286 4 C s - 48 0.390409 15 C s 53 0.390409 16 C s - - Vector 49 Occ=0.000000D+00 E= 7.067096D-01 Symmetry=bu - MO Center= -3.6D-15, -3.8D-14, -5.3D-19, r^2= 1.1D+01 + 2 0.796666 1 C s 7 0.796666 2 C s + 36 -0.570540 11 C s 41 -0.570540 12 C s + 22 -0.469181 5 C s 27 -0.469181 6 C s + 12 -0.444282 3 C s 17 -0.444282 4 C s + 48 0.390419 15 C s 53 0.390419 16 C s + + Vector 49 Occ=0.000000D+00 E= 7.067053D-01 Symmetry=bu + MO Center= 1.3D-14, -1.5D-14, 4.4D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.702329 15 C s 53 -0.702329 16 C s - 57 -0.514860 17 H s 58 0.514860 18 H s - 33 0.488194 9 H s 34 -0.488194 10 H s - 36 -0.430466 11 C s 41 0.430466 12 C s - 22 -0.425207 5 C s 27 0.425207 6 C s - - Vector 50 Occ=0.000000D+00 E= 7.401371D-01 Symmetry=ag - MO Center= 1.3D-15, -2.1D-15, 1.8D-17, r^2= 1.0D+01 + 48 0.702342 15 C s 53 -0.702342 16 C s + 57 -0.514873 17 H s 58 0.514873 18 H s + 33 0.488189 9 H s 34 -0.488189 10 H s + 36 -0.430439 11 C s 41 0.430439 12 C s + 22 -0.425186 5 C s 27 0.425186 6 C s + + Vector 50 Occ=0.000000D+00 E= 7.401383D-01 Symmetry=ag + MO Center= -1.1D-14, 1.4D-14, -2.7D-17, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.727765 3 C s 17 0.727765 4 C s - 22 -0.614468 5 C s 27 -0.614468 6 C s - 59 -0.456852 19 H s 60 -0.456852 20 H s - 48 0.397621 15 C s 53 0.397621 16 C s - 50 -0.372517 15 C py 55 0.372517 16 C py - - Vector 51 Occ=0.000000D+00 E= 8.022252D-01 Symmetry=ag - MO Center= 4.7D-16, 8.6D-16, -1.7D-17, r^2= 6.8D+00 + 12 0.727766 3 C s 17 0.727766 4 C s + 22 -0.614467 5 C s 27 -0.614467 6 C s + 59 -0.456854 19 H s 60 -0.456854 20 H s + 48 0.397618 15 C s 53 0.397618 16 C s + 50 -0.372518 15 C py 55 0.372518 16 C py + + Vector 51 Occ=0.000000D+00 E= 8.022234D-01 Symmetry=ag + MO Center= -1.1D-15, -3.8D-16, -2.2D-16, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.586839 1 C py 9 -0.586839 2 C py - 36 -0.485996 11 C s 41 -0.485996 12 C s - 2 -0.462721 1 C s 7 -0.462721 2 C s - 13 -0.446670 3 C px 18 0.446670 4 C px - 49 -0.358149 15 C px 54 0.358149 16 C px - - Vector 52 Occ=0.000000D+00 E= 8.256549D-01 Symmetry=bu - MO Center= 3.1D-15, -5.8D-15, -1.6D-17, r^2= 7.8D+00 + 4 0.586840 1 C py 9 -0.586840 2 C py + 36 -0.486011 11 C s 41 -0.486011 12 C s + 2 -0.462710 1 C s 7 -0.462710 2 C s + 13 -0.446667 3 C px 18 0.446667 4 C px + 49 -0.358156 15 C px 54 0.358156 16 C px + + Vector 52 Occ=0.000000D+00 E= 8.256536D-01 Symmetry=bu + MO Center= 2.5D-15, 1.2D-15, -6.9D-20, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.642782 3 C s 17 -0.642782 4 C s - 3 -0.555346 1 C px 8 -0.555346 2 C px - 50 0.490164 15 C py 55 0.490164 16 C py - 24 -0.479529 5 C py 29 -0.479529 6 C py - 59 0.356459 19 H s 60 -0.356459 20 H s - - Vector 53 Occ=0.000000D+00 E= 8.606143D-01 Symmetry=ag - MO Center= -5.7D-16, -2.7D-15, -3.3D-18, r^2= 5.6D+00 + 12 0.642780 3 C s 17 -0.642780 4 C s + 3 -0.555350 1 C px 8 -0.555350 2 C px + 50 0.490161 15 C py 55 0.490161 16 C py + 24 -0.479534 5 C py 29 -0.479534 6 C py + 59 0.356457 19 H s 60 -0.356457 20 H s + + Vector 53 Occ=0.000000D+00 E= 8.606141D-01 Symmetry=ag + MO Center= -2.2D-15, 3.2D-15, -7.8D-17, r^2= 5.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.531368 3 C px 18 -0.531368 4 C px - 23 -0.518376 5 C px 28 0.518376 6 C px - 33 0.509444 9 H s 34 0.509444 10 H s - 31 -0.441690 7 H s 32 -0.441690 8 H s - 24 0.395281 5 C py 29 -0.395281 6 C py - - Vector 54 Occ=0.000000D+00 E= 8.877568D-01 Symmetry=bu - MO Center= -1.2D-15, -5.2D-16, -2.0D-17, r^2= 5.2D+00 + 13 0.531365 3 C px 18 -0.531365 4 C px + 23 -0.518377 5 C px 28 0.518377 6 C px + 33 0.509445 9 H s 34 0.509445 10 H s + 31 -0.441685 7 H s 32 -0.441685 8 H s + 24 0.395280 5 C py 29 -0.395280 6 C py + + Vector 54 Occ=0.000000D+00 E= 8.877581D-01 Symmetry=bu + MO Center= -1.4D-15, -2.0D-15, 1.3D-20, r^2= 5.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 0.716776 3 C py 19 0.716776 4 C py - 22 0.610590 5 C s 27 -0.610590 6 C s - 36 -0.434047 11 C s 41 0.434047 12 C s - 24 0.382161 5 C py 29 0.382161 6 C py - 2 -0.361718 1 C s 7 0.361718 2 C s - - Vector 55 Occ=0.000000D+00 E= 9.210085D-01 Symmetry=bu - MO Center= -1.3D-15, 1.4D-15, -1.7D-17, r^2= 1.0D+01 + 14 0.716782 3 C py 19 0.716782 4 C py + 22 0.610585 5 C s 27 -0.610585 6 C s + 36 -0.434038 11 C s 41 0.434038 12 C s + 24 0.382165 5 C py 29 0.382165 6 C py + 2 -0.361723 1 C s 7 0.361723 2 C s + + Vector 55 Occ=0.000000D+00 E= 9.210115D-01 Symmetry=bu + MO Center= -3.9D-16, 8.1D-16, 2.4D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.648636 1 C s 7 -0.648636 2 C s + 2 0.648634 1 C s 7 -0.648634 2 C s 49 -0.507370 15 C px 54 -0.507370 16 C px - 38 0.482570 11 C py 43 0.482570 12 C py - 23 -0.393564 5 C px 28 -0.393564 6 C px - 57 0.345389 17 H s 58 -0.345389 18 H s + 38 0.482571 11 C py 43 0.482571 12 C py + 23 -0.393556 5 C px 28 -0.393556 6 C px + 57 0.345392 17 H s 58 -0.345392 18 H s - Vector 56 Occ=0.000000D+00 E= 9.399496D-01 Symmetry=ag - MO Center= 1.4D-17, 3.7D-15, -5.4D-18, r^2= 9.1D+00 + Vector 56 Occ=0.000000D+00 E= 9.399484D-01 Symmetry=ag + MO Center= 5.7D-18, -2.3D-15, -1.6D-18, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.556681 11 C px 42 -0.556681 12 C px + 37 0.556683 11 C px 42 -0.556683 12 C px 50 -0.539847 15 C py 55 0.539847 16 C py - 14 0.392199 3 C py 19 -0.392199 4 C py - 4 -0.359948 1 C py 9 0.359948 2 C py - 24 0.326779 5 C py 29 -0.326779 6 C py + 14 0.392204 3 C py 19 -0.392204 4 C py + 4 -0.359940 1 C py 9 0.359940 2 C py + 24 0.326787 5 C py 29 -0.326787 6 C py - Vector 57 Occ=0.000000D+00 E= 9.902851D-01 Symmetry=ag - MO Center= -2.0D-15, -1.7D-14, -1.5D-19, r^2= 9.4D+00 + Vector 57 Occ=0.000000D+00 E= 9.902841D-01 Symmetry=ag + MO Center= -1.2D-15, 4.5D-15, 1.0D-16, r^2= 9.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 38 0.680160 11 C py 43 -0.680160 12 C py + 38 0.680163 11 C py 43 -0.680163 12 C py 49 -0.583682 15 C px 54 0.583682 16 C px - 24 -0.429950 5 C py 29 0.429950 6 C py - 4 -0.411894 1 C py 9 0.411894 2 C py - 14 -0.365147 3 C py 19 0.365147 4 C py + 24 -0.429944 5 C py 29 0.429944 6 C py + 4 -0.411901 1 C py 9 0.411901 2 C py + 14 -0.365141 3 C py 19 0.365141 4 C py Vector 58 Occ=0.000000D+00 E= 1.027265D+00 Symmetry=bu - MO Center= 1.3D-15, 1.7D-14, -4.6D-17, r^2= 9.5D+00 + MO Center= -2.1D-16, 5.3D-16, -3.3D-21, r^2= 9.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.608350 11 C px 42 0.608350 12 C px + 37 0.608349 11 C px 42 0.608349 12 C px 50 -0.536814 15 C py 55 -0.536814 16 C py - 48 -0.526962 15 C s 53 0.526962 16 C s - 3 -0.468612 1 C px 8 -0.468612 2 C px - 38 -0.458225 11 C py 43 -0.458225 12 C py + 48 -0.526963 15 C s 53 0.526963 16 C s + 3 -0.468609 1 C px 8 -0.468609 2 C px + 38 -0.458231 11 C py 43 -0.458231 12 C py - Vector 59 Occ=0.000000D+00 E= 1.107700D+00 Symmetry=ag - MO Center= -2.8D-16, 1.8D-15, -1.8D-18, r^2= 5.1D+00 + Vector 59 Occ=0.000000D+00 E= 1.107699D+00 Symmetry=ag + MO Center= 8.5D-17, -2.4D-16, -1.4D-17, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.712025 1 C px 8 -0.712025 2 C px - 14 -0.548009 3 C py 19 0.548009 4 C py - 23 -0.444243 5 C px 28 0.444243 6 C px - 24 -0.423224 5 C py 29 0.423224 6 C py - 37 0.414788 11 C px 42 -0.414788 12 C px + 14 -0.548010 3 C py 19 0.548010 4 C py + 23 -0.444244 5 C px 28 0.444244 6 C px + 24 -0.423225 5 C py 29 0.423225 6 C py + 37 0.414787 11 C px 42 -0.414787 12 C px - Vector 60 Occ=0.000000D+00 E= 1.124935D+00 Symmetry=bu - MO Center= -1.7D-16, 8.1D-16, 4.6D-18, r^2= 3.4D+00 + Vector 60 Occ=0.000000D+00 E= 1.124938D+00 Symmetry=bu + MO Center= 3.9D-16, -4.4D-15, 2.6D-19, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.662430 1 C py 9 0.662430 2 C py - 13 -0.566300 3 C px 18 -0.566300 4 C px - 23 0.494107 5 C px 28 0.494107 6 C px - 22 -0.411545 5 C s 27 0.411545 6 C s - 24 -0.394345 5 C py 29 -0.394345 6 C py + 4 0.662429 1 C py 9 0.662429 2 C py + 13 -0.566303 3 C px 18 -0.566303 4 C px + 23 0.494108 5 C px 28 0.494108 6 C px + 22 -0.411544 5 C s 27 0.411544 6 C s + 24 -0.394347 5 C py 29 -0.394347 6 C py Final MO vectors @@ -2399,62 +2393,62 @@ 1 2 3 4 5 6 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.70148 0.70154 -0.00965 0.00998 0.00164 -0.00338 - 2 0.02526 0.02518 0.00379 -0.00374 0.00165 -0.00632 + 1 0.70148 0.70154 -0.00960 0.00993 0.00164 -0.00337 + 2 0.02526 0.02518 0.00379 -0.00374 0.00164 -0.00633 3 -0.00000 0.00004 0.00047 -0.00047 -0.00361 0.00164 4 -0.00066 -0.00045 0.00294 -0.00293 0.00008 0.00193 - 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 6 -0.70148 0.70154 0.00965 0.00998 -0.00164 -0.00338 - 7 -0.02526 0.02518 -0.00379 -0.00374 -0.00165 -0.00632 + 5 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 6 -0.70148 0.70154 0.00960 0.00993 -0.00164 -0.00337 + 7 -0.02526 0.02518 -0.00379 -0.00374 -0.00164 -0.00633 8 -0.00000 -0.00004 0.00047 0.00047 -0.00361 -0.00164 9 -0.00066 0.00045 0.00294 0.00293 0.00008 -0.00193 - 10 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 11 0.00581 0.00321 0.00369 -0.00628 0.37272 0.29653 - 12 -0.00477 -0.00461 0.00007 -0.00019 0.00915 0.00633 + 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 11 0.00581 0.00321 0.00369 -0.00630 0.37295 0.29678 + 12 -0.00477 -0.00461 0.00007 -0.00019 0.00916 0.00634 13 0.00242 0.00243 -0.00000 0.00006 0.00007 0.00034 14 -0.00200 -0.00203 0.00003 -0.00001 0.00237 0.00275 - 15 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 16 -0.00581 0.00321 -0.00369 -0.00628 -0.37272 0.29653 - 17 0.00477 -0.00461 -0.00007 -0.00019 -0.00915 0.00633 + 15 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 16 -0.00581 0.00321 -0.00369 -0.00630 -0.37295 0.29678 + 17 0.00477 -0.00461 -0.00007 -0.00019 -0.00916 0.00634 18 0.00242 -0.00243 -0.00000 -0.00006 0.00007 -0.00034 19 -0.00200 0.00203 0.00003 0.00001 0.00237 -0.00275 - 20 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 21 -0.00580 0.00327 -0.00243 -0.00515 0.59468 0.63610 - 22 0.00473 -0.00456 0.00002 -0.00009 0.01884 0.02091 - 23 -0.00291 0.00292 0.00002 0.00007 -0.00077 -0.00054 + 20 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 21 -0.00579 0.00327 -0.00243 -0.00517 0.59454 0.63598 + 22 0.00473 -0.00456 0.00002 -0.00009 0.01884 0.02090 + 23 -0.00291 0.00292 0.00002 0.00006 -0.00077 -0.00054 24 -0.00110 0.00113 -0.00000 -0.00002 -0.00110 -0.00094 - 25 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 26 0.00580 0.00327 0.00243 -0.00515 -0.59468 0.63610 - 27 -0.00473 -0.00456 -0.00002 -0.00009 -0.01884 0.02091 - 28 -0.00291 -0.00292 0.00002 -0.00007 -0.00077 0.00054 + 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 26 0.00579 0.00327 0.00243 -0.00517 -0.59454 0.63598 + 27 -0.00473 -0.00456 -0.00002 -0.00009 -0.01884 0.02090 + 28 -0.00291 -0.00292 0.00002 -0.00006 -0.00077 0.00054 29 -0.00110 -0.00113 -0.00000 0.00002 -0.00110 0.00094 - 30 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 31 0.00006 -0.00002 -0.00001 0.00001 -0.00239 -0.00203 32 -0.00006 -0.00002 0.00001 0.00001 0.00239 -0.00203 33 -0.00005 -0.00003 -0.00009 -0.00009 -0.00393 -0.00436 34 0.00005 -0.00003 0.00009 -0.00009 0.00393 -0.00436 - 35 0.00891 -0.00924 0.70136 0.70132 0.00014 0.00744 - 36 0.00449 -0.00455 0.02500 0.02499 0.00007 0.00041 + 35 0.00886 -0.00919 0.70136 0.70132 0.00014 0.00746 + 36 0.00449 -0.00455 0.02501 0.02499 0.00007 0.00041 37 0.00063 -0.00064 0.00051 0.00051 -0.00003 0.00004 - 38 0.00288 -0.00292 -0.00065 -0.00065 0.00005 -0.00002 - 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 40 -0.00891 -0.00924 -0.70136 0.70132 -0.00014 0.00744 - 41 -0.00449 -0.00455 -0.02500 0.02499 -0.00007 0.00041 + 38 0.00289 -0.00292 -0.00064 -0.00065 0.00005 -0.00002 + 39 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 40 -0.00886 -0.00919 -0.70136 0.70132 -0.00014 0.00746 + 41 -0.00449 -0.00455 -0.02501 0.02499 -0.00007 0.00041 42 0.00063 0.00064 0.00051 -0.00051 -0.00003 -0.00004 - 43 0.00288 0.00292 -0.00065 0.00065 0.00005 0.00002 - 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 43 0.00289 0.00292 -0.00064 0.00065 0.00005 0.00002 + 44 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 45 -0.00009 0.00009 -0.00478 -0.00478 -0.00000 -0.00013 46 0.00009 0.00009 0.00478 -0.00478 0.00000 -0.00013 - 47 0.00052 -0.00049 0.01784 0.01784 -0.00075 -0.00094 + 47 0.00051 -0.00049 0.01783 0.01783 -0.00075 -0.00094 48 -0.00018 0.00019 -0.00474 -0.00474 -0.00004 -0.00017 49 -0.00004 0.00004 0.00211 0.00211 -0.00004 -0.00001 50 -0.00010 0.00010 -0.00239 -0.00239 -0.00003 -0.00011 - 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 52 -0.00052 -0.00049 -0.01784 0.01784 0.00075 -0.00094 + 51 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 52 -0.00051 -0.00049 -0.01783 0.01783 0.00075 -0.00094 53 0.00018 0.00019 0.00474 -0.00474 0.00004 -0.00017 54 -0.00004 -0.00004 0.00211 -0.00211 -0.00004 0.00001 55 -0.00010 -0.00010 -0.00239 0.00239 -0.00003 0.00011 - 56 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 56 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 57 0.00010 -0.00010 -0.00006 -0.00006 0.00009 0.00010 58 -0.00010 -0.00010 0.00006 -0.00006 -0.00009 0.00010 59 0.00002 -0.00002 -0.00004 -0.00004 -0.00001 -0.00001 @@ -2462,62 +2456,62 @@ 7 8 9 10 11 12 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00716 -0.00117 -0.00027 0.00024 -0.10669 0.10127 + 1 -0.00715 -0.00117 -0.00027 0.00024 -0.10669 0.10127 2 -0.00713 -0.00230 -0.00027 0.00027 0.27537 -0.27081 - 3 -0.00043 -0.00336 -0.00005 0.00005 -0.00529 -0.00407 + 3 -0.00042 -0.00337 -0.00005 0.00005 -0.00529 -0.00407 4 0.00237 0.00137 -0.00012 0.00012 -0.03821 -0.03177 - 5 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 6 0.00716 -0.00117 0.00027 0.00024 -0.10669 -0.10127 + 5 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 6 0.00715 -0.00117 0.00027 0.00024 -0.10669 -0.10127 7 0.00713 -0.00230 0.00027 0.00027 0.27537 0.27081 - 8 -0.00043 0.00336 -0.00005 -0.00005 0.00529 -0.00407 + 8 -0.00042 0.00337 -0.00005 -0.00005 0.00529 -0.00407 9 0.00237 -0.00137 -0.00012 -0.00012 0.03821 -0.03177 - 10 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 11 0.59436 0.63586 -0.00026 0.00041 -0.09665 0.03774 + 10 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 11 0.59422 0.63574 -0.00027 0.00041 -0.09665 0.03774 12 0.02429 0.02493 0.00001 -0.00007 0.24727 -0.10004 13 -0.00099 -0.00071 -0.00001 0.00002 -0.05226 0.02862 14 -0.00193 -0.00161 0.00006 -0.00002 -0.01452 -0.05673 - 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 16 -0.59436 0.63586 0.00026 0.00041 -0.09665 -0.03774 + 15 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 16 -0.59422 0.63574 0.00027 0.00041 -0.09665 -0.03774 17 -0.02429 0.02493 -0.00001 -0.00007 0.24727 0.10004 18 -0.00099 0.00071 -0.00001 -0.00002 0.05226 0.02862 19 -0.00193 0.00161 0.00006 0.00002 0.01452 -0.05673 - 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 21 -0.37222 -0.29604 0.00107 0.00108 -0.09646 -0.04167 - 22 -0.01788 -0.01502 0.00000 -0.00001 0.24713 0.11107 + 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 21 -0.37245 -0.29628 0.00107 0.00108 -0.09646 -0.04167 + 22 -0.01788 -0.01503 0.00000 -0.00001 0.24713 0.11107 23 -0.00002 -0.00025 0.00001 0.00000 -0.04467 -0.04526 24 -0.00292 -0.00308 0.00009 0.00008 0.03103 -0.04400 - 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 26 0.37222 -0.29604 -0.00107 0.00108 -0.09646 0.04167 - 27 0.01788 -0.01502 -0.00000 -0.00001 0.24713 -0.11107 + 25 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 26 0.37245 -0.29628 -0.00107 0.00108 -0.09646 0.04167 + 27 0.01788 -0.01503 -0.00000 -0.00001 0.24713 -0.11107 28 -0.00002 0.00025 0.00001 -0.00000 0.04467 -0.04526 29 -0.00292 0.00308 0.00009 -0.00008 -0.03103 -0.04400 - 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 31 -0.00405 -0.00433 0.00000 -0.00000 0.04417 -0.02580 - 32 0.00405 -0.00433 -0.00000 -0.00000 0.04417 0.02580 + 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 31 -0.00404 -0.00433 0.00000 -0.00000 0.04417 -0.02580 + 32 0.00404 -0.00433 -0.00000 -0.00000 0.04417 0.02580 33 0.00261 0.00202 0.00005 0.00006 0.04439 0.02948 34 -0.00261 0.00202 -0.00005 0.00006 0.04439 -0.02948 - 35 -0.00456 0.00356 -0.01740 -0.01739 -0.04969 -0.11307 + 35 -0.00456 0.00356 -0.01739 -0.01739 -0.04969 -0.11307 36 -0.00046 0.00018 -0.00604 -0.00604 0.12875 0.29870 37 -0.00007 0.00001 -0.00218 -0.00218 0.01431 0.03768 38 -0.00009 -0.00002 0.00239 0.00239 0.02732 0.00637 - 39 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 40 0.00456 0.00356 0.01740 -0.01739 -0.04969 0.11307 + 39 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 40 0.00456 0.00356 0.01739 -0.01739 -0.04969 0.11307 41 0.00046 0.00018 0.00604 -0.00604 0.12875 -0.29870 42 -0.00007 -0.00001 -0.00218 0.00218 -0.01431 0.03768 43 -0.00009 0.00002 0.00239 -0.00239 -0.02732 0.00637 - 44 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 44 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 45 0.00010 -0.00006 0.00017 0.00017 0.02537 0.06663 46 -0.00010 -0.00006 -0.00017 0.00017 0.02537 -0.06663 47 0.00066 0.00018 0.70143 0.70143 -0.02518 -0.08141 48 0.00014 -0.00004 0.02536 0.02536 0.06484 0.21365 49 0.00000 0.00003 -0.00077 -0.00077 -0.01330 -0.03922 - 50 0.00008 -0.00003 0.00082 0.00082 0.02040 0.05117 - 51 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 50 0.00008 -0.00003 0.00082 0.00082 0.02041 0.05117 + 51 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 52 -0.00066 0.00018 -0.70143 0.70143 -0.02518 0.08141 53 -0.00014 -0.00004 -0.02536 0.02536 0.06484 -0.21365 54 0.00000 -0.00003 -0.00077 0.00077 0.01330 -0.03922 - 55 0.00008 0.00003 0.00082 -0.00082 -0.02040 0.05117 - 56 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 55 0.00008 0.00003 0.00082 -0.00082 -0.02041 0.05117 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 57 -0.00007 -0.00006 -0.00473 -0.00473 0.01401 0.04892 58 0.00007 -0.00006 0.00473 -0.00473 0.01401 -0.04892 59 0.00001 -0.00000 -0.00475 -0.00475 0.01084 0.04446 @@ -2525,36 +2519,36 @@ 13 14 15 16 17 18 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00297 -0.01206 -0.10028 0.07233 0.05043 -0.01130 - 2 0.01021 0.03299 0.27908 -0.21293 -0.15131 0.03251 + 1 -0.00297 -0.01206 -0.10028 0.07233 0.05042 -0.01130 + 2 0.01021 0.03299 0.27908 -0.21293 -0.15130 0.03251 3 0.01072 0.12512 -0.01858 -0.11392 0.18994 -0.05062 4 0.09341 -0.02334 -0.05879 -0.07380 -0.06338 -0.13855 - 5 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 6 -0.00297 0.01206 0.10028 0.07233 0.05043 0.01130 - 7 0.01021 -0.03299 -0.27908 -0.21293 -0.15131 -0.03251 + 5 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 6 -0.00297 0.01206 0.10028 0.07233 0.05042 0.01130 + 7 0.01021 -0.03299 -0.27908 -0.21293 -0.15130 -0.03251 8 -0.01072 0.12512 -0.01858 0.11392 -0.18994 -0.05062 9 -0.09341 -0.02334 -0.05879 0.07380 0.06338 -0.13855 - 10 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 11 0.04598 -0.13091 -0.04228 -0.00068 -0.10905 -0.04827 12 -0.12241 0.35713 0.11798 0.00038 0.32485 0.14794 13 0.01557 -0.00206 -0.03981 0.03447 0.07474 -0.00499 14 0.03503 -0.05907 0.09190 -0.15917 0.04222 0.00882 - 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 15 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 16 0.04598 0.13091 0.04228 -0.00068 -0.10905 0.04827 17 -0.12241 -0.35713 -0.11798 0.00038 0.32485 -0.14794 18 -0.01557 -0.00206 -0.03981 -0.03447 -0.07474 -0.00499 19 -0.03503 -0.05907 0.09190 0.15917 -0.04222 0.00882 - 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 20 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 21 0.04178 -0.11920 0.07212 -0.07935 0.06026 0.03028 - 22 -0.11047 0.32501 -0.20070 0.22943 -0.18080 -0.09235 + 22 -0.11048 0.32501 -0.20070 0.22943 -0.18081 -0.09235 23 0.00187 0.03044 0.05768 0.06813 0.08309 0.03409 24 -0.04440 0.06952 0.04833 0.03027 0.16974 0.07638 - 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 25 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 26 0.04178 0.11920 -0.07212 -0.07935 0.06026 -0.03028 - 27 -0.11047 -0.32501 0.20070 0.22943 -0.18080 0.09235 + 27 -0.11048 -0.32501 0.20070 0.22943 -0.18081 0.09235 28 -0.00187 0.03044 0.05768 -0.06813 -0.08309 0.03409 29 0.04440 0.06952 0.04833 -0.03027 -0.16974 0.07638 - 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 30 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 31 -0.02382 0.09808 0.03404 -0.01381 0.17364 0.05184 32 -0.02382 -0.09808 -0.03404 -0.01381 0.17364 -0.05184 33 -0.01812 0.08988 -0.05447 0.10625 -0.09277 -0.05588 @@ -2563,26 +2557,26 @@ 36 0.31447 -0.00141 0.13620 -0.15950 -0.02294 0.29752 37 0.04856 0.01960 0.04017 0.07656 -0.04227 -0.11268 38 -0.05856 -0.01676 -0.12811 -0.13284 -0.07422 0.04537 - 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 40 -0.11765 -0.00033 0.05074 0.05255 0.00696 0.09654 41 0.31447 0.00141 -0.13620 -0.15950 -0.02294 -0.29752 42 -0.04856 0.01960 0.04017 -0.07656 0.04227 -0.11268 43 0.05856 -0.01676 -0.12811 0.13284 0.07422 0.04537 - 44 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 44 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 45 0.07614 -0.00904 0.03781 -0.08110 0.03153 0.17484 46 0.07614 0.00904 -0.03781 -0.08110 0.03153 -0.17484 47 -0.11635 -0.01271 -0.10674 -0.08250 -0.03462 0.08032 48 0.31008 0.03382 0.29222 0.23993 0.10374 -0.24821 49 -0.05070 0.00083 -0.03515 0.03354 -0.01185 -0.11853 50 0.05563 0.00584 0.02111 -0.03806 -0.04423 0.09244 - 51 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 51 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 52 -0.11635 0.01271 0.10674 -0.08250 -0.03462 -0.08032 53 0.31008 -0.03382 -0.29222 0.23993 0.10374 0.24821 54 0.05070 0.00083 -0.03515 -0.03354 0.01185 -0.11853 55 -0.05563 0.00584 0.02111 0.03806 0.04423 0.09244 - 56 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 57 0.07436 0.01269 0.07688 0.10484 0.02247 -0.16389 - 58 0.07436 -0.01269 -0.07688 0.10484 0.02247 0.16389 + 56 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 57 0.07436 0.01269 0.07688 0.10484 0.02248 -0.16389 + 58 0.07436 -0.01269 -0.07688 0.10484 0.02248 0.16389 59 0.07480 0.00781 0.08811 0.10145 0.06533 -0.13085 60 0.07480 -0.00781 -0.08811 0.10145 0.06533 0.13085 @@ -2590,442 +2584,442 @@ ----------- ----------- ----------- ----------- ----------- ----------- 1 0.05635 -0.02870 0.02569 -0.06597 -0.01971 0.01990 2 -0.17081 0.09582 -0.08867 0.22349 0.06676 -0.06515 - 3 -0.01908 0.04971 0.11788 0.10050 -0.22199 -0.01364 + 3 -0.01908 0.04971 0.11788 0.10051 -0.22199 -0.01364 4 0.13510 0.13632 -0.13269 -0.03061 -0.13927 -0.00811 - 5 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 6 0.05635 -0.02870 -0.02569 0.06597 0.01971 0.01990 7 -0.17081 0.09582 0.08867 -0.22349 -0.06676 -0.06515 - 8 0.01908 -0.04971 0.11788 0.10050 -0.22199 0.01364 + 8 0.01908 -0.04971 0.11788 0.10051 -0.22199 0.01364 9 -0.13510 -0.13632 -0.13269 -0.03061 -0.13927 0.00811 - 10 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 10 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 11 -0.00739 -0.01171 -0.02327 0.04508 -0.00178 -0.02313 12 0.02548 0.04483 0.07841 -0.15396 0.00340 0.07690 13 0.17431 0.14312 0.02854 -0.22080 0.00235 -0.00636 - 14 -0.09610 0.13702 0.18191 0.06810 -0.11758 -0.08071 - 15 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 14 -0.09611 0.13702 0.18191 0.06810 -0.11757 -0.08071 + 15 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 16 -0.00739 -0.01171 0.02327 -0.04508 0.00178 -0.02313 17 0.02548 0.04483 -0.07841 0.15396 -0.00340 0.07690 18 -0.17431 -0.14312 0.02854 -0.22080 0.00235 0.00636 - 19 0.09610 -0.13702 0.18191 0.06810 -0.11758 0.08071 - 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 19 0.09611 -0.13702 0.18191 0.06810 -0.11757 0.08071 + 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 21 -0.04991 0.01688 0.04175 -0.04083 0.01136 0.01619 - 22 0.15823 -0.04801 -0.13643 0.14102 -0.03587 -0.05945 + 22 0.15823 -0.04801 -0.13643 0.14101 -0.03587 -0.05945 23 0.19463 0.09267 -0.10371 0.11539 0.24895 -0.03894 - 24 -0.02349 -0.13871 -0.09327 -0.17946 0.06138 0.13432 - 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 24 -0.02349 -0.13872 -0.09327 -0.17947 0.06138 0.13432 + 25 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 26 -0.04991 0.01688 -0.04175 0.04083 -0.01136 0.01619 - 27 0.15823 -0.04801 0.13643 -0.14102 0.03587 -0.05945 + 27 0.15823 -0.04801 0.13643 -0.14101 0.03587 -0.05945 28 -0.19463 -0.09267 -0.10371 0.11539 0.24895 0.03894 - 29 0.02349 0.13871 -0.09327 -0.17946 0.06138 -0.13432 - 30 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 29 0.02349 0.13872 -0.09327 -0.17947 0.06138 -0.13432 + 30 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 31 0.09884 0.14691 0.11132 -0.22576 -0.03144 0.00351 32 0.09884 0.14691 -0.11132 0.22576 0.03144 0.00351 - 33 0.16886 0.10361 -0.07136 0.23490 0.12912 -0.11659 - 34 0.16886 0.10361 0.07136 -0.23490 -0.12912 -0.11659 + 33 0.16886 0.10361 -0.07136 0.23490 0.12913 -0.11659 + 34 0.16886 0.10361 0.07136 -0.23490 -0.12913 -0.11659 35 -0.06065 0.03501 -0.01410 -0.01560 -0.00245 -0.02553 - 36 0.18735 -0.11049 0.04410 0.04398 0.01483 0.07453 + 36 0.18735 -0.11049 0.04410 0.04397 0.01483 0.07452 37 -0.07122 0.11003 0.21505 0.04703 -0.04675 0.24900 - 38 -0.01009 0.18321 0.10305 -0.11921 0.17890 -0.08633 - 39 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 38 -0.01009 0.18321 0.10305 -0.11921 0.17889 -0.08633 + 39 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 40 -0.06065 0.03501 0.01410 0.01560 0.00245 -0.02553 - 41 0.18735 -0.11049 -0.04410 -0.04398 -0.01483 0.07453 + 41 0.18735 -0.11049 -0.04410 -0.04397 -0.01483 0.07452 42 0.07122 -0.11003 0.21505 0.04703 -0.04675 -0.24900 - 43 0.01009 -0.18321 0.10305 -0.11921 0.17890 0.08633 - 44 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 43 0.01009 -0.18321 0.10305 -0.11921 0.17889 0.08633 + 44 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 45 0.12516 -0.15273 -0.16530 0.01754 0.01423 -0.15136 46 0.12516 -0.15273 0.16530 -0.01754 -0.01423 -0.15136 - 47 0.05078 -0.01416 0.00664 0.01166 0.00119 -0.00364 - 48 -0.16147 0.05373 -0.02492 -0.04742 0.00610 -0.00095 + 47 0.05078 -0.01416 0.00664 0.01166 0.00119 -0.00365 + 48 -0.16147 0.05373 -0.02492 -0.04743 0.00610 -0.00094 49 -0.08644 0.20470 0.09073 -0.06668 0.25284 -0.01509 50 0.08198 0.01235 0.20180 0.14421 0.03561 0.33624 - 51 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 52 0.05078 -0.01416 -0.00664 -0.01166 -0.00119 -0.00364 - 53 -0.16147 0.05373 0.02492 0.04742 -0.00610 -0.00095 + 51 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 52 0.05078 -0.01416 -0.00664 -0.01166 -0.00119 -0.00365 + 53 -0.16147 0.05373 0.02492 0.04743 -0.00610 -0.00094 54 0.08644 -0.20470 0.09073 -0.06668 0.25284 0.01509 55 -0.08198 -0.01235 0.20180 0.14421 0.03561 -0.33624 - 56 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 57 -0.10616 0.17885 0.08017 -0.03906 0.22277 0.02576 58 -0.10616 0.17885 -0.08017 0.03906 -0.22277 0.02576 - 59 -0.10015 -0.02920 -0.17909 -0.11802 -0.09032 -0.26836 - 60 -0.10015 -0.02920 0.17909 0.11802 0.09032 -0.26836 + 59 -0.10015 -0.02919 -0.17909 -0.11802 -0.09032 -0.26836 + 60 -0.10015 -0.02919 0.17909 0.11802 0.09032 -0.26836 25 26 27 28 29 30 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00257 0.00260 0.02328 0.00000 -0.00983 -0.00210 - 2 -0.00864 -0.00952 -0.08354 -0.00000 0.04304 0.01635 - 3 -0.08356 0.17616 0.08391 -0.00000 0.09381 -0.16359 - 4 0.07383 -0.17697 0.00418 0.00000 0.24372 0.26026 - 5 -0.00000 0.00000 0.00000 0.33150 -0.00000 -0.00000 - 6 -0.00257 -0.00260 0.02328 0.00000 0.00983 -0.00210 - 7 0.00864 0.00952 -0.08354 -0.00000 -0.04304 0.01635 - 8 -0.08356 0.17616 -0.08391 -0.00000 0.09381 0.16359 - 9 0.07383 -0.17697 -0.00418 0.00000 0.24372 -0.26026 - 10 -0.00000 0.00000 0.00000 0.33150 0.00000 0.00000 + 1 0.00257 0.00260 0.02328 -0.00000 -0.00983 -0.00210 + 2 -0.00864 -0.00952 -0.08354 0.00000 0.04304 0.01635 + 3 -0.08356 0.17615 0.08391 -0.00000 0.09381 -0.16360 + 4 0.07383 -0.17697 0.00418 0.00000 0.24372 0.26025 + 5 -0.00000 0.00000 0.00000 0.33150 0.00000 -0.00000 + 6 -0.00257 -0.00260 0.02328 -0.00000 0.00983 -0.00210 + 7 0.00864 0.00952 -0.08354 0.00000 -0.04304 0.01635 + 8 -0.08356 0.17615 -0.08391 0.00000 0.09381 0.16360 + 9 0.07383 -0.17697 -0.00418 -0.00000 0.24372 -0.26025 + 10 -0.00000 -0.00000 0.00000 0.33150 0.00000 0.00000 11 0.02569 -0.01703 0.00423 0.00000 0.00744 0.00407 12 -0.08248 0.06113 -0.02149 -0.00000 -0.02348 -0.01323 13 0.29940 -0.11128 -0.12658 0.00000 0.06660 0.15890 14 0.15374 0.22297 -0.13207 -0.00000 0.03473 -0.26821 - 15 -0.00000 0.00000 0.00000 0.30283 -0.00000 -0.00000 - 16 -0.02569 0.01703 0.00423 -0.00000 -0.00744 0.00407 - 17 0.08248 -0.06113 -0.02149 0.00000 0.02348 -0.01323 - 18 0.29940 -0.11128 0.12658 0.00000 0.06660 -0.15890 - 19 0.15374 0.22297 0.13207 -0.00000 0.03473 0.26821 - 20 -0.00000 0.00000 0.00000 0.30283 -0.00000 0.00000 + 15 0.00000 0.00000 0.00000 0.30283 0.00000 0.00000 + 16 -0.02569 0.01703 0.00423 0.00000 -0.00744 0.00407 + 17 0.08248 -0.06113 -0.02149 -0.00000 0.02348 -0.01323 + 18 0.29940 -0.11128 0.12658 -0.00000 0.06660 -0.15890 + 19 0.15374 0.22297 0.13207 0.00000 0.03473 0.26821 + 20 -0.00000 0.00000 0.00000 0.30283 0.00000 -0.00000 21 0.01847 0.00605 -0.00713 -0.00000 -0.01378 -0.00966 - 22 -0.05932 -0.01702 0.02414 0.00000 0.04753 0.02840 - 23 0.17905 -0.07790 0.06229 0.00000 -0.14407 -0.11753 - 24 -0.23285 -0.18488 0.13677 0.00000 -0.01059 0.22347 - 25 -0.00000 0.00000 0.00000 0.30187 0.00000 0.00000 - 26 -0.01847 -0.00605 -0.00713 0.00000 0.01378 -0.00966 - 27 0.05932 0.01702 0.02414 -0.00000 -0.04753 0.02840 + 22 -0.05932 -0.01702 0.02414 0.00000 0.04752 0.02840 + 23 0.17905 -0.07790 0.06229 -0.00000 -0.14407 -0.11753 + 24 -0.23285 -0.18488 0.13677 -0.00000 -0.01059 0.22347 + 25 -0.00000 0.00000 -0.00000 0.30187 0.00000 0.00000 + 26 -0.01847 -0.00605 -0.00713 -0.00000 0.01378 -0.00966 + 27 0.05932 0.01702 0.02414 0.00000 -0.04752 0.02840 28 0.17905 -0.07790 -0.06229 0.00000 -0.14407 0.11753 29 -0.23285 -0.18488 -0.13677 0.00000 -0.01059 -0.22347 - 30 -0.00000 0.00000 0.00000 0.30187 0.00000 -0.00000 - 31 0.25850 -0.00250 -0.15685 -0.00000 0.04885 0.05277 - 32 -0.25850 0.00250 -0.15685 -0.00000 -0.04885 0.05277 + 30 0.00000 0.00000 -0.00000 0.30187 0.00000 -0.00000 + 31 0.25850 -0.00250 -0.15685 0.00000 0.04885 0.05278 + 32 -0.25850 0.00250 -0.15685 0.00000 -0.04885 0.05278 33 0.22360 0.03999 -0.00010 -0.00000 -0.05941 -0.25390 - 34 -0.22360 -0.03999 -0.00010 0.00000 0.05941 -0.25390 - 35 -0.00158 0.00086 -0.01510 -0.00000 0.00351 -0.01752 - 36 0.00361 0.01230 0.06315 0.00000 -0.01123 0.07388 - 37 -0.02371 -0.20200 -0.20936 0.00000 -0.21453 0.02592 + 34 -0.22360 -0.03999 -0.00010 -0.00000 0.05941 -0.25390 + 35 -0.00158 0.00086 -0.01510 0.00000 0.00351 -0.01752 + 36 0.00361 0.01230 0.06315 -0.00000 -0.01123 0.07387 + 37 -0.02371 -0.20200 -0.20936 -0.00000 -0.21453 0.02592 38 -0.05915 0.18876 0.08025 -0.00000 -0.17918 0.23293 - 39 -0.00000 0.00000 0.00000 0.16558 0.00000 0.00000 - 40 0.00158 -0.00086 -0.01510 -0.00000 -0.00351 -0.01752 - 41 -0.00361 -0.01230 0.06315 0.00000 0.01123 0.07388 + 39 0.00000 0.00000 0.00000 0.16558 0.00000 0.00000 + 40 0.00158 -0.00086 -0.01510 0.00000 -0.00351 -0.01752 + 41 -0.00361 -0.01230 0.06315 -0.00000 0.01123 0.07387 42 -0.02371 -0.20200 0.20936 0.00000 -0.21453 -0.02592 - 43 -0.05915 0.18876 -0.08025 -0.00000 -0.17918 -0.23293 - 44 -0.00000 -0.00000 -0.00000 0.16558 0.00000 -0.00000 - 45 0.02240 0.14844 0.20296 -0.00000 0.25725 -0.04644 + 43 -0.05915 0.18876 -0.08025 0.00000 -0.17918 -0.23293 + 44 0.00000 -0.00000 0.00000 0.16558 0.00000 -0.00000 + 45 0.02240 0.14844 0.20296 0.00000 0.25725 -0.04644 46 -0.02240 -0.14844 0.20296 0.00000 -0.25725 -0.04644 - 47 0.00434 0.01891 0.00989 -0.00000 0.00268 0.00872 - 48 -0.01686 -0.05201 -0.02602 0.00000 -0.01229 -0.02347 - 49 -0.07124 0.12590 0.29613 -0.00000 0.19454 0.03662 - 50 -0.01404 -0.23894 0.05034 0.00000 0.14136 -0.13811 - 51 -0.00000 0.00000 0.00000 0.09914 0.00000 0.00000 + 47 0.00434 0.01891 0.00989 0.00000 0.00268 0.00872 + 48 -0.01686 -0.05201 -0.02602 -0.00000 -0.01229 -0.02347 + 49 -0.07124 0.12590 0.29613 0.00000 0.19454 0.03662 + 50 -0.01404 -0.23894 0.05034 -0.00000 0.14136 -0.13811 + 51 -0.00000 -0.00000 0.00000 0.09914 0.00000 -0.00000 52 -0.00434 -0.01891 0.00989 0.00000 -0.00268 0.00872 53 0.01686 0.05201 -0.02602 -0.00000 0.01229 -0.02347 54 -0.07124 0.12590 -0.29613 -0.00000 0.19454 -0.03662 55 -0.01404 -0.23894 -0.05034 0.00000 0.14136 0.13811 - 56 -0.00000 -0.00000 -0.00000 0.09914 0.00000 -0.00000 - 57 -0.05652 0.05847 0.27318 -0.00000 0.22630 -0.03215 - 58 0.05652 -0.05847 0.27318 0.00000 -0.22630 -0.03215 - 59 0.02227 0.15354 -0.14587 -0.00000 -0.21197 0.12146 - 60 -0.02227 -0.15354 -0.14587 0.00000 0.21197 0.12146 + 56 -0.00000 -0.00000 0.00000 0.09914 0.00000 -0.00000 + 57 -0.05652 0.05847 0.27319 0.00000 0.22630 -0.03215 + 58 0.05652 -0.05847 0.27319 0.00000 -0.22630 -0.03215 + 59 0.02227 0.15355 -0.14587 -0.00000 -0.21197 0.12146 + 60 -0.02227 -0.15355 -0.14587 -0.00000 0.21197 0.12146 31 32 33 34 35 36 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00629 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 2 0.03168 0.00000 0.00000 0.00000 -0.00000 0.00000 - 3 0.27885 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 4 0.12972 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 5 -0.00000 -0.31868 -0.03965 -0.00225 0.41799 0.47153 - 6 -0.00629 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 7 0.03168 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 1 -0.00629 0.00000 -0.00000 0.00000 0.00000 0.00000 + 2 0.03168 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 3 0.27885 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 4 0.12973 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 5 0.00000 -0.31868 -0.03965 -0.00225 0.41799 0.47153 + 6 -0.00629 0.00000 -0.00000 0.00000 0.00000 0.00000 + 7 0.03168 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 8 -0.27885 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 9 -0.12972 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 9 -0.12973 0.00000 -0.00000 0.00000 0.00000 0.00000 10 0.00000 0.31868 -0.03965 0.00225 -0.41799 0.47153 - 11 -0.01149 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 12 0.03512 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 13 -0.21036 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 14 -0.08519 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 15 -0.00000 -0.12429 -0.16451 0.45982 0.23189 -0.24997 - 16 -0.01149 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 17 0.03512 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 18 0.21036 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 19 0.08519 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 11 -0.01149 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 12 0.03512 0.00000 0.00000 0.00000 0.00000 0.00000 + 13 -0.21035 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 14 -0.08520 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 15 0.00000 -0.12429 -0.16451 0.45982 0.23189 -0.24997 + 16 -0.01149 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 17 0.03512 0.00000 0.00000 0.00000 -0.00000 0.00000 + 18 0.21035 0.00000 -0.00000 0.00000 0.00000 0.00000 + 19 0.08520 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 20 0.00000 0.12429 -0.16451 -0.45982 -0.23189 -0.24997 - 21 0.00666 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 22 -0.02027 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 23 0.26904 -0.00000 0.00000 0.00000 0.00000 0.00000 - 24 0.12357 0.00000 -0.00000 0.00000 0.00000 0.00000 + 21 0.00666 0.00000 -0.00000 0.00000 0.00000 0.00000 + 22 -0.02026 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 23 0.26904 0.00000 -0.00000 0.00000 0.00000 0.00000 + 24 0.12358 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 25 0.00000 0.11940 -0.16493 0.46149 -0.23200 -0.27857 - 26 0.00666 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 27 -0.02027 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 28 -0.26904 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 29 -0.12357 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 30 -0.00000 -0.11940 -0.16493 -0.46149 0.23200 -0.27857 - 31 -0.25163 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 32 -0.25163 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 33 0.12318 0.00000 0.00000 -0.00000 0.00000 0.00000 - 34 0.12318 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 35 -0.01308 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 36 0.04729 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 37 0.14120 0.00000 0.00000 0.00000 0.00000 0.00000 - 38 0.14327 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 26 0.00666 0.00000 -0.00000 0.00000 0.00000 0.00000 + 27 -0.02026 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 28 -0.26904 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 29 -0.12358 0.00000 -0.00000 0.00000 0.00000 0.00000 + 30 0.00000 -0.11940 -0.16493 -0.46149 0.23200 -0.27857 + 31 -0.25162 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 32 -0.25162 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 33 0.12318 0.00000 -0.00000 0.00000 0.00000 0.00000 + 34 0.12318 0.00000 -0.00000 0.00000 0.00000 0.00000 + 35 -0.01308 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 36 0.04729 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 37 0.14120 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 38 0.14327 -0.00000 0.00000 -0.00000 -0.00000 0.00000 39 0.00000 0.38321 0.41518 0.00019 0.21835 0.24693 - 40 -0.01308 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 41 0.04729 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 42 -0.14120 0.00000 -0.00000 0.00000 0.00000 0.00000 - 43 -0.14327 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 44 -0.00000 -0.38321 0.41518 -0.00019 -0.21835 0.24693 - 45 -0.18377 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 46 -0.18377 0.00000 0.00000 0.00000 0.00000 0.00000 - 47 -0.00303 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 40 -0.01308 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 41 0.04729 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 42 -0.14120 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 43 -0.14327 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 44 0.00000 -0.38321 0.41518 -0.00019 -0.21835 0.24693 + 45 -0.18377 0.00000 -0.00000 0.00000 0.00000 0.00000 + 46 -0.18377 0.00000 -0.00000 0.00000 0.00000 0.00000 + 47 -0.00303 -0.00000 0.00000 -0.00000 -0.00000 0.00000 48 0.01380 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 49 -0.10128 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 50 -0.05574 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 49 -0.10128 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 50 -0.05574 0.00000 -0.00000 0.00000 0.00000 0.00000 51 0.00000 0.30667 0.42629 0.00262 0.35818 -0.41493 - 52 -0.00303 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 53 0.01380 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 54 0.10128 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 55 0.05574 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 56 -0.00000 -0.30667 0.42629 -0.00262 -0.35818 -0.41493 - 57 -0.11731 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 58 -0.11731 0.00000 0.00000 0.00000 0.00000 0.00000 - 59 0.10240 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 60 0.10240 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 52 -0.00303 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 53 0.01380 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 54 0.10128 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 55 0.05574 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 56 0.00000 -0.30667 0.42629 -0.00262 -0.35818 -0.41493 + 57 -0.11731 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 58 -0.11731 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 59 0.10240 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 60 0.10240 -0.00000 0.00000 -0.00000 -0.00000 0.00000 37 38 39 40 41 42 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 0.00000 0.00000 -0.00000 0.06347 -0.02959 - 2 0.00000 -0.00000 -0.00000 0.00000 -0.38006 0.17692 - 3 -0.00000 0.00000 -0.00000 -0.00000 -0.08842 0.28350 - 4 0.00000 -0.00000 -0.00000 0.00000 -0.26802 0.11184 + 1 -0.00000 0.00000 0.00000 0.00000 0.06347 -0.02959 + 2 0.00000 -0.00000 -0.00000 -0.00000 -0.38004 0.17692 + 3 0.00000 0.00000 -0.00000 -0.00000 -0.08842 0.28349 + 4 0.00000 -0.00000 -0.00000 0.00000 -0.26801 0.11184 5 -0.02229 -0.03791 -0.47349 0.53871 -0.00000 -0.00000 - 6 0.00000 -0.00000 -0.00000 0.00000 0.06347 0.02959 - 7 -0.00000 0.00000 0.00000 -0.00000 -0.38006 -0.17692 - 8 -0.00000 0.00000 -0.00000 -0.00000 0.08842 0.28350 - 9 0.00000 -0.00000 -0.00000 0.00000 0.26802 0.11184 - 10 -0.02229 0.03791 -0.47349 -0.53871 0.00000 0.00000 - 11 0.00000 0.00000 -0.00000 0.00000 0.02915 0.00433 - 12 -0.00000 -0.00000 0.00000 -0.00000 -0.18291 -0.02043 - 13 0.00000 -0.00000 -0.00000 0.00000 -0.30919 0.35555 - 14 -0.00000 -0.00000 -0.00000 -0.00000 -0.06525 0.00144 - 15 0.57856 0.22554 0.16186 -0.46948 -0.00000 0.00000 - 16 -0.00000 0.00000 0.00000 -0.00000 0.02915 -0.00433 - 17 0.00000 -0.00000 -0.00000 0.00000 -0.18291 0.02043 - 18 0.00000 -0.00000 -0.00000 0.00000 0.30919 0.35555 - 19 -0.00000 -0.00000 -0.00000 -0.00000 0.06525 0.00144 - 20 0.57856 -0.22554 0.16186 0.46948 0.00000 0.00000 - 21 -0.00000 0.00000 0.00000 -0.00000 0.04839 -0.01440 - 22 0.00000 0.00000 -0.00000 0.00000 -0.29828 0.08933 - 23 -0.00000 0.00000 0.00000 -0.00000 -0.20794 0.29130 - 24 0.00000 0.00000 0.00000 0.00000 0.13598 -0.00660 - 25 -0.55811 -0.22043 0.18678 0.47149 0.00000 0.00000 - 26 0.00000 -0.00000 -0.00000 0.00000 0.04839 0.01440 - 27 -0.00000 0.00000 0.00000 -0.00000 -0.29828 -0.08933 - 28 -0.00000 0.00000 0.00000 -0.00000 0.20794 0.29130 - 29 0.00000 -0.00000 0.00000 0.00000 -0.13598 -0.00660 - 30 -0.55811 0.22043 0.18678 -0.47149 -0.00000 0.00000 - 31 0.00000 0.00000 -0.00000 0.00000 0.42094 -0.31890 - 32 -0.00000 0.00000 0.00000 -0.00000 0.42094 0.31890 - 33 -0.00000 -0.00000 0.00000 -0.00000 0.43480 -0.27655 - 34 0.00000 0.00000 -0.00000 0.00000 0.43480 0.27655 - 35 0.00000 -0.00000 -0.00000 0.00000 -0.04826 0.01371 - 36 -0.00000 0.00000 0.00000 -0.00000 0.27669 -0.08345 - 37 -0.00000 0.00000 0.00000 0.00000 0.23991 0.35091 - 38 -0.00000 0.00000 0.00000 -0.00000 0.32394 0.19909 - 39 0.00330 0.52439 0.53507 0.27875 0.00000 0.00000 - 40 -0.00000 0.00000 0.00000 -0.00000 -0.04826 -0.01371 - 41 0.00000 -0.00000 -0.00000 0.00000 0.27669 0.08345 - 42 -0.00000 0.00000 0.00000 0.00000 -0.23991 0.35091 - 43 -0.00000 -0.00000 0.00000 -0.00000 -0.32394 0.19909 - 44 0.00330 -0.52439 0.53507 -0.27875 0.00000 -0.00000 - 45 0.00000 -0.00000 -0.00000 0.00000 0.14038 0.44870 - 46 -0.00000 0.00000 0.00000 -0.00000 0.14038 -0.44870 - 47 -0.00000 -0.00000 -0.00000 -0.00000 0.04112 0.00135 - 48 0.00000 0.00000 0.00000 0.00000 -0.24262 -0.01356 - 49 0.00000 0.00000 -0.00000 0.00000 0.13846 0.30201 - 50 0.00000 -0.00000 -0.00000 0.00000 0.15018 0.17216 - 51 0.00408 -0.53124 -0.40735 -0.15847 0.00000 0.00000 - 52 0.00000 0.00000 0.00000 0.00000 0.04112 -0.00135 - 53 -0.00000 0.00000 -0.00000 -0.00000 -0.24262 0.01356 - 54 0.00000 -0.00000 -0.00000 0.00000 -0.13846 0.30201 - 55 0.00000 -0.00000 -0.00000 0.00000 -0.15018 0.17216 - 56 0.00408 0.53124 -0.40735 0.15847 -0.00000 -0.00000 - 57 0.00000 -0.00000 -0.00000 0.00000 -0.09878 -0.32156 - 58 -0.00000 0.00000 0.00000 -0.00000 -0.09878 0.32156 - 59 -0.00000 -0.00000 0.00000 -0.00000 0.35383 0.27911 - 60 0.00000 0.00000 -0.00000 0.00000 0.35383 -0.27911 + 6 -0.00000 0.00000 0.00000 0.00000 0.06347 0.02959 + 7 0.00000 -0.00000 -0.00000 -0.00000 -0.38004 -0.17692 + 8 -0.00000 -0.00000 0.00000 0.00000 0.08842 0.28349 + 9 -0.00000 0.00000 -0.00000 -0.00000 0.26801 0.11184 + 10 -0.02229 0.03791 -0.47349 -0.53871 -0.00000 -0.00000 + 11 0.00000 0.00000 -0.00000 -0.00000 0.02915 0.00433 + 12 0.00000 0.00000 0.00000 -0.00000 -0.18292 -0.02044 + 13 0.00000 -0.00000 -0.00000 0.00000 -0.30919 0.35554 + 14 0.00000 0.00000 0.00000 -0.00000 -0.06526 0.00144 + 15 0.57856 0.22554 0.16186 -0.46948 0.00000 -0.00000 + 16 0.00000 0.00000 -0.00000 -0.00000 0.02915 -0.00433 + 17 0.00000 -0.00000 0.00000 -0.00000 -0.18292 0.02044 + 18 -0.00000 0.00000 0.00000 -0.00000 0.30919 0.35554 + 19 -0.00000 -0.00000 -0.00000 0.00000 0.06526 0.00144 + 20 0.57856 -0.22554 0.16186 0.46948 0.00000 -0.00000 + 21 -0.00000 -0.00000 -0.00000 0.00000 0.04840 -0.01440 + 22 -0.00000 -0.00000 0.00000 0.00000 -0.29830 0.08934 + 23 0.00000 0.00000 -0.00000 -0.00000 -0.20794 0.29129 + 24 -0.00000 -0.00000 -0.00000 0.00000 0.13599 -0.00661 + 25 -0.55811 -0.22043 0.18678 0.47149 0.00000 -0.00000 + 26 -0.00000 -0.00000 -0.00000 0.00000 0.04840 0.01440 + 27 -0.00000 -0.00000 0.00000 0.00000 -0.29830 -0.08934 + 28 -0.00000 -0.00000 -0.00000 0.00000 0.20794 0.29129 + 29 0.00000 0.00000 0.00000 -0.00000 -0.13599 -0.00661 + 30 -0.55811 0.22043 0.18678 -0.47149 0.00000 -0.00000 + 31 0.00000 -0.00000 -0.00000 0.00000 0.42095 -0.31889 + 32 0.00000 -0.00000 -0.00000 -0.00000 0.42095 0.31889 + 33 0.00000 0.00000 -0.00000 -0.00000 0.43481 -0.27655 + 34 0.00000 0.00000 -0.00000 -0.00000 0.43481 0.27655 + 35 0.00000 0.00000 0.00000 -0.00000 -0.04826 0.01372 + 36 -0.00000 -0.00000 -0.00000 0.00000 0.27669 -0.08346 + 37 0.00000 -0.00000 0.00000 0.00000 0.23991 0.35091 + 38 0.00000 -0.00000 0.00000 0.00000 0.32393 0.19910 + 39 0.00330 0.52439 0.53507 0.27875 -0.00000 0.00000 + 40 0.00000 0.00000 -0.00000 -0.00000 -0.04826 -0.01372 + 41 -0.00000 -0.00000 0.00000 0.00000 0.27669 0.08346 + 42 -0.00000 0.00000 -0.00000 -0.00000 -0.23991 0.35091 + 43 -0.00000 0.00000 -0.00000 -0.00000 -0.32393 0.19910 + 44 0.00330 -0.52439 0.53507 -0.27875 -0.00000 0.00000 + 45 -0.00000 0.00000 0.00000 0.00000 0.14038 0.44871 + 46 -0.00000 0.00000 0.00000 0.00000 0.14038 -0.44871 + 47 -0.00000 -0.00000 0.00000 0.00000 0.04113 0.00135 + 48 0.00000 0.00000 -0.00000 -0.00000 -0.24263 -0.01355 + 49 0.00000 -0.00000 0.00000 -0.00000 0.13844 0.30202 + 50 0.00000 0.00000 0.00000 -0.00000 0.15018 0.17217 + 51 0.00408 -0.53124 -0.40735 -0.15847 0.00000 -0.00000 + 52 -0.00000 -0.00000 0.00000 0.00000 0.04113 -0.00135 + 53 0.00000 0.00000 -0.00000 -0.00000 -0.24263 0.01355 + 54 -0.00000 0.00000 -0.00000 0.00000 -0.13844 0.30202 + 55 -0.00000 -0.00000 -0.00000 0.00000 -0.15018 0.17217 + 56 0.00408 0.53124 -0.40735 0.15847 0.00000 -0.00000 + 57 0.00000 -0.00000 -0.00000 -0.00000 -0.09876 -0.32157 + 58 0.00000 -0.00000 -0.00000 -0.00000 -0.09876 0.32157 + 59 -0.00000 -0.00000 0.00000 0.00000 0.35383 0.27912 + 60 -0.00000 -0.00000 0.00000 0.00000 0.35383 -0.27912 43 44 45 46 47 48 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.02013 -0.05520 0.04545 -0.08266 -0.01775 -0.12947 - 2 -0.12342 0.32508 -0.27865 0.49230 0.11409 0.79666 - 3 -0.11292 -0.08096 0.24740 -0.11636 -0.10657 -0.04376 - 4 0.07806 0.45357 -0.15053 0.03228 -0.25761 -0.01346 - 5 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 6 0.02013 0.05520 0.04545 0.08266 0.01775 -0.12947 - 7 -0.12342 -0.32508 -0.27865 -0.49230 -0.11409 0.79666 - 8 0.11292 -0.08096 -0.24740 -0.11636 -0.10657 0.04376 - 9 -0.07806 0.45357 0.15053 0.03228 -0.25761 0.01346 - 10 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 1 0.02013 -0.05521 0.04545 -0.08266 -0.01775 -0.12947 + 2 -0.12343 0.32510 -0.27867 0.49230 0.11409 0.79667 + 3 -0.11293 -0.08096 0.24740 -0.11636 -0.10658 -0.04376 + 4 0.07805 0.45357 -0.15053 0.03227 -0.25761 -0.01346 + 5 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 6 0.02013 0.05521 0.04545 0.08266 0.01775 -0.12947 + 7 -0.12343 -0.32510 -0.27867 -0.49230 -0.11409 0.79667 + 8 0.11293 -0.08096 -0.24740 -0.11636 -0.10658 0.04376 + 9 -0.07805 0.45357 0.15053 0.03227 -0.25761 0.01346 + 10 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 11 -0.06409 0.02329 0.07352 0.07623 0.05737 0.07005 - 12 0.39789 -0.14490 -0.45738 -0.46139 -0.36107 -0.44429 - 13 0.00442 -0.11705 -0.06012 -0.11270 -0.32214 -0.01333 - 14 0.11326 0.22045 0.14682 0.02798 -0.31927 -0.29602 - 15 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 12 0.39790 -0.14491 -0.45737 -0.46141 -0.36107 -0.44428 + 13 0.00441 -0.11705 -0.06013 -0.11270 -0.32214 -0.01333 + 14 0.11326 0.22045 0.14682 0.02798 -0.31926 -0.29602 + 15 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 16 -0.06409 -0.02329 0.07352 -0.07623 -0.05737 0.07005 - 17 0.39789 0.14490 -0.45738 0.46139 0.36107 -0.44429 - 18 -0.00442 -0.11705 0.06012 -0.11270 -0.32214 0.01333 - 19 -0.11326 0.22045 -0.14682 0.02798 -0.31927 0.29602 - 20 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 21 -0.01478 -0.00096 -0.09399 -0.09960 -0.00456 0.07402 - 22 0.09710 -0.00079 0.58288 0.61112 0.01637 -0.46918 - 23 0.17068 -0.26071 -0.02469 -0.00945 -0.20446 0.22673 - 24 -0.20090 0.32797 0.02348 -0.11109 -0.10993 0.23946 - 25 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 26 -0.01478 0.00096 -0.09399 0.09960 0.00456 0.07402 - 27 0.09710 0.00079 0.58288 -0.61112 -0.01637 -0.46918 - 28 -0.17068 -0.26071 0.02469 -0.00945 -0.20446 -0.22673 - 29 0.20090 0.32797 -0.02348 -0.11109 -0.10993 -0.23946 - 30 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 31 -0.28653 0.10132 0.24361 0.33817 0.59827 0.29547 - 32 -0.28653 -0.10132 0.24361 -0.33817 -0.59827 0.29547 - 33 -0.27463 0.40890 -0.20615 -0.32759 0.04960 0.22015 - 34 -0.27463 -0.40890 -0.20615 0.32759 -0.04960 0.22015 - 35 0.06458 -0.08931 -0.01632 -0.04073 0.07342 0.09307 - 36 -0.39458 0.52976 0.10814 0.26016 -0.46728 -0.57054 - 37 0.35069 0.07786 -0.12426 -0.14864 0.22392 0.11487 - 38 0.07394 0.31854 0.23556 0.19090 -0.06187 -0.09824 - 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 40 0.06458 0.08931 -0.01632 0.04073 -0.07342 0.09307 - 41 -0.39458 -0.52976 0.10814 -0.26016 0.46728 -0.57054 - 42 -0.35069 0.07786 0.12426 -0.14864 0.22392 -0.11487 - 43 -0.07394 0.31854 -0.23556 0.19090 -0.06187 0.09824 - 44 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 45 0.58957 -0.13077 -0.12647 -0.19585 0.43802 0.36479 - 46 0.58957 0.13077 -0.12647 0.19585 -0.43802 0.36479 - 47 -0.01775 0.05639 -0.10758 -0.08349 0.02086 -0.06336 - 48 0.09880 -0.33762 0.68358 0.53351 -0.14155 0.39041 - 49 0.29962 0.11191 0.24914 0.26319 0.03161 -0.02922 - 50 0.24406 0.16612 -0.07396 -0.11940 0.29095 -0.06522 - 51 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 52 -0.01775 -0.05639 -0.10758 0.08349 -0.02086 -0.06336 - 53 0.09880 0.33762 0.68358 -0.53351 0.14155 0.39041 - 54 -0.29962 0.11191 -0.24914 0.26319 0.03161 0.02922 - 55 -0.24406 0.16612 0.07396 -0.11940 0.29095 0.06522 - 56 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 57 -0.38136 -0.00205 -0.54181 -0.46045 -0.02785 -0.17333 - 58 -0.38136 0.00205 -0.54181 0.46045 0.02785 -0.17333 - 59 0.26202 0.38946 -0.33081 -0.29263 0.32868 -0.26736 - 60 0.26202 -0.38946 -0.33081 0.29263 -0.32868 -0.26736 + 17 0.39790 0.14491 -0.45737 0.46141 0.36107 -0.44428 + 18 -0.00441 -0.11705 0.06013 -0.11270 -0.32214 0.01333 + 19 -0.11326 0.22045 -0.14682 0.02798 -0.31926 0.29602 + 20 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 21 -0.01478 -0.00096 -0.09399 -0.09961 -0.00456 0.07402 + 22 0.09708 -0.00077 0.58287 0.61113 0.01636 -0.46918 + 23 0.17067 -0.26070 -0.02470 -0.00943 -0.20447 0.22673 + 24 -0.20090 0.32796 0.02348 -0.11110 -0.10992 0.23945 + 25 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 26 -0.01478 0.00096 -0.09399 0.09961 0.00456 0.07402 + 27 0.09708 0.00077 0.58287 -0.61113 -0.01636 -0.46918 + 28 -0.17067 -0.26070 0.02470 -0.00943 -0.20447 -0.22673 + 29 0.20090 0.32796 -0.02348 -0.11110 -0.10992 -0.23945 + 30 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 31 -0.28652 0.10132 0.24361 0.33817 0.59827 0.29547 + 32 -0.28652 -0.10132 0.24361 -0.33817 -0.59827 0.29547 + 33 -0.27461 0.40888 -0.20615 -0.32761 0.04963 0.22014 + 34 -0.27461 -0.40888 -0.20615 0.32761 -0.04963 0.22014 + 35 0.06458 -0.08932 -0.01632 -0.04073 0.07342 0.09307 + 36 -0.39457 0.52979 0.10815 0.26016 -0.46728 -0.57054 + 37 0.35070 0.07785 -0.12426 -0.14865 0.22392 0.11487 + 38 0.07394 0.31854 0.23556 0.19088 -0.06187 -0.09824 + 39 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 40 0.06458 0.08932 -0.01632 0.04073 -0.07342 0.09307 + 41 -0.39457 -0.52979 0.10815 -0.26016 0.46728 -0.57054 + 42 -0.35070 0.07785 0.12426 -0.14865 0.22392 -0.11487 + 43 -0.07394 0.31854 -0.23556 0.19088 -0.06187 0.09824 + 44 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 45 0.58957 -0.13079 -0.12647 -0.19586 0.43802 0.36479 + 46 0.58957 0.13079 -0.12647 0.19586 -0.43802 0.36479 + 47 -0.01775 0.05639 -0.10758 -0.08348 0.02086 -0.06337 + 48 0.09879 -0.33762 0.68357 0.53349 -0.14155 0.39042 + 49 0.29962 0.11192 0.24914 0.26318 0.03160 -0.02921 + 50 0.24406 0.16611 -0.07396 -0.11940 0.29094 -0.06523 + 51 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 52 -0.01775 -0.05639 -0.10758 0.08348 -0.02086 -0.06337 + 53 0.09879 0.33762 0.68357 -0.53349 0.14155 0.39042 + 54 -0.29962 0.11192 -0.24914 0.26318 0.03160 0.02921 + 55 -0.24406 0.16611 0.07396 -0.11940 0.29094 0.06523 + 56 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 57 -0.38137 -0.00206 -0.54182 -0.46042 -0.02784 -0.17333 + 58 -0.38137 0.00206 -0.54182 0.46042 0.02784 -0.17333 + 59 0.26202 0.38945 -0.33080 -0.29263 0.32867 -0.26737 + 60 0.26202 -0.38945 -0.33080 0.29263 -0.32867 -0.26737 49 50 51 52 53 54 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.06033 0.04020 0.06829 0.00273 -0.00046 0.05152 - 2 -0.36327 -0.25411 -0.46272 -0.00821 -0.00320 -0.36172 - 3 -0.13936 -0.34438 0.12169 -0.55535 0.21367 -0.26311 - 4 0.11475 0.04817 0.58684 0.05618 0.04558 0.00401 - 5 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 6 -0.06033 0.04020 0.06829 -0.00273 -0.00046 -0.05152 - 7 0.36327 -0.25411 -0.46272 0.00821 -0.00320 0.36172 - 8 -0.13936 0.34438 -0.12169 -0.55535 -0.21367 -0.26311 - 9 0.11475 -0.04817 -0.58684 0.05618 -0.04558 0.00401 - 10 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 1 0.06032 0.04020 0.06828 0.00273 -0.00046 0.05152 + 2 -0.36325 -0.25412 -0.46271 -0.00820 -0.00319 -0.36172 + 3 -0.13937 -0.34437 0.12169 -0.55535 0.21367 -0.26311 + 4 0.11476 0.04818 0.58684 0.05618 0.04559 0.00402 + 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 6 -0.06032 0.04020 0.06828 -0.00273 -0.00046 -0.05152 + 7 0.36325 -0.25412 -0.46271 0.00820 -0.00319 0.36172 + 8 -0.13937 0.34437 -0.12169 -0.55535 -0.21367 -0.26311 + 9 0.11476 -0.04818 -0.58684 0.05618 -0.04559 0.00402 + 10 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 11 -0.05816 -0.11353 -0.01377 -0.09440 0.00433 0.03473 - 12 0.35719 0.72776 0.09182 0.64278 -0.03563 -0.23914 - 13 -0.14747 -0.07672 -0.44667 0.01637 0.53137 -0.19353 - 14 0.12248 -0.10733 0.16074 0.09831 0.19721 0.71678 - 15 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 12 0.35719 0.72777 0.09181 0.64278 -0.03563 -0.23914 + 13 -0.14747 -0.07673 -0.44667 0.01638 0.53136 -0.19353 + 14 0.12249 -0.10733 0.16074 0.09830 0.19720 0.71678 + 15 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 16 0.05816 -0.11353 -0.01377 0.09440 0.00433 -0.03473 - 17 -0.35719 0.72776 0.09182 -0.64278 -0.03563 0.23914 - 18 -0.14747 0.07672 0.44667 0.01637 -0.53137 -0.19353 - 19 0.12248 0.10733 -0.16074 0.09831 -0.19721 0.71678 - 20 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 17 -0.35719 0.72777 0.09181 -0.64278 -0.03563 0.23914 + 18 -0.14747 0.07673 0.44667 0.01638 -0.53136 -0.19353 + 19 0.12249 0.10733 -0.16074 0.09830 -0.19720 0.71678 + 20 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 21 0.06824 0.09547 -0.04797 -0.03443 -0.00315 -0.08760 - 22 -0.42521 -0.61447 0.31578 0.24290 0.02893 0.61059 - 23 -0.18151 -0.15947 -0.32475 -0.19597 -0.51838 0.30197 + 22 -0.42519 -0.61447 0.31578 0.24291 0.02893 0.61058 + 23 -0.18152 -0.15948 -0.32474 -0.19598 -0.51838 0.30197 24 0.14947 -0.17955 0.01505 -0.47953 0.39528 0.38216 - 25 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 25 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 26 -0.06824 0.09547 -0.04797 0.03443 -0.00315 0.08760 - 27 0.42521 -0.61447 0.31578 -0.24290 0.02893 -0.61059 - 28 -0.18151 0.15947 0.32475 -0.19597 0.51838 0.30197 + 27 0.42519 -0.61447 0.31578 -0.24291 0.02893 -0.61058 + 28 -0.18152 0.15948 0.32474 -0.19598 0.51838 0.30197 29 0.14947 0.17955 -0.01505 -0.47953 -0.39528 0.38216 - 30 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 31 -0.07756 -0.24355 0.24171 -0.29864 -0.44169 0.06170 - 32 0.07756 -0.24355 0.24171 0.29864 -0.44169 -0.06170 - 33 0.48819 0.33971 0.05277 -0.20881 0.50944 -0.25391 - 34 -0.48819 0.33971 0.05277 0.20881 0.50944 0.25391 - 35 0.07002 -0.03282 0.07315 0.02688 0.05204 0.06209 - 36 -0.43047 0.23057 -0.48600 -0.19861 -0.36324 -0.43405 - 37 0.05929 -0.03730 0.15697 -0.27581 -0.14090 0.07786 - 38 0.12366 0.07466 0.02314 0.04918 0.16297 0.10502 - 39 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 40 -0.07002 -0.03282 0.07315 -0.02688 0.05204 -0.06209 - 41 0.43047 0.23057 -0.48600 0.19861 -0.36324 0.43405 - 42 0.05929 0.03730 -0.15697 -0.27581 0.14090 0.07786 - 43 0.12366 -0.07466 -0.02314 0.04918 -0.16297 0.10502 - 44 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 45 0.29662 -0.08716 0.31097 -0.15158 0.08064 0.25884 - 46 -0.29662 -0.08716 0.31097 0.15158 0.08064 -0.25884 + 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 31 -0.07755 -0.24355 0.24171 -0.29864 -0.44168 0.06169 + 32 0.07755 -0.24355 0.24171 0.29864 -0.44168 -0.06169 + 33 0.48819 0.33971 0.05276 -0.20881 0.50945 -0.25390 + 34 -0.48819 0.33971 0.05276 0.20881 0.50945 0.25390 + 35 0.07001 -0.03282 0.07316 0.02688 0.05205 0.06209 + 36 -0.43044 0.23057 -0.48601 -0.19861 -0.36325 -0.43404 + 37 0.05929 -0.03730 0.15697 -0.27580 -0.14090 0.07787 + 38 0.12368 0.07467 0.02313 0.04919 0.16297 0.10502 + 39 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 -0.07001 -0.03282 0.07316 -0.02688 0.05205 -0.06209 + 41 0.43044 0.23057 -0.48601 0.19861 -0.36325 0.43404 + 42 0.05929 0.03730 -0.15697 -0.27580 0.14090 0.07787 + 43 0.12368 -0.07467 -0.02313 0.04919 -0.16297 0.10502 + 44 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 0.29660 -0.08717 0.31098 -0.15158 0.08063 0.25884 + 46 -0.29660 -0.08717 0.31098 0.15158 0.08063 -0.25884 47 -0.11043 -0.06100 -0.01913 -0.00996 -0.04167 -0.00937 - 48 0.70233 0.39762 0.12122 0.07893 0.29027 0.06216 - 49 0.14091 0.13476 -0.35815 0.02242 -0.09607 -0.30666 - 50 -0.01939 -0.37252 -0.13206 0.49016 0.29204 0.09797 - 51 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 48 0.70234 0.39762 0.12122 0.07892 0.29027 0.06215 + 49 0.14092 0.13474 -0.35816 0.02242 -0.09607 -0.30665 + 50 -0.01940 -0.37252 -0.13205 0.49016 0.29205 0.09798 + 51 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 52 0.11043 -0.06100 -0.01913 0.00996 -0.04167 0.00937 - 53 -0.70233 0.39762 0.12122 -0.07893 0.29027 -0.06216 - 54 0.14091 -0.13476 0.35815 0.02242 0.09607 -0.30666 - 55 -0.01939 0.37252 0.13206 0.49016 -0.29204 0.09797 - 56 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 57 -0.51486 -0.28603 0.24499 -0.10535 -0.12843 0.22847 - 58 0.51486 -0.28603 0.24499 0.10535 -0.12843 -0.22847 - 59 -0.31645 -0.45685 -0.25488 0.35646 0.08062 -0.02831 - 60 0.31645 -0.45685 -0.25488 -0.35646 0.08062 0.02831 + 53 -0.70234 0.39762 0.12122 -0.07892 0.29027 -0.06215 + 54 0.14092 -0.13474 0.35816 0.02242 0.09607 -0.30665 + 55 -0.01940 0.37252 0.13205 0.49016 -0.29205 0.09798 + 56 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 57 -0.51487 -0.28602 0.24499 -0.10534 -0.12844 0.22847 + 58 0.51487 -0.28602 0.24499 0.10534 -0.12844 -0.22847 + 59 -0.31646 -0.45685 -0.25487 0.35646 0.08062 -0.02830 + 60 0.31646 -0.45685 -0.25487 -0.35646 0.08062 0.02830 55 56 57 58 59 60 ----------- ----------- ----------- ----------- ----------- ----------- 1 -0.09450 0.01420 0.01758 0.01953 -0.00474 0.04242 - 2 0.64864 -0.08483 -0.11210 -0.13942 0.03202 -0.32153 - 3 -0.18965 -0.10986 0.10062 -0.46861 0.71202 0.16190 - 4 0.05544 -0.35995 -0.41189 0.13349 -0.05426 0.66243 - 5 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 2 0.64863 -0.08483 -0.11210 -0.13942 0.03202 -0.32154 + 3 -0.18965 -0.10985 0.10062 -0.46861 0.71203 0.16190 + 4 0.05545 -0.35994 -0.41190 0.13349 -0.05426 0.66243 + 5 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 6 0.09450 0.01420 0.01758 -0.01953 -0.00474 -0.04242 - 7 -0.64864 -0.08483 -0.11210 0.13942 0.03202 0.32153 - 8 -0.18965 0.10986 -0.10062 -0.46861 -0.71202 0.16190 - 9 0.05544 0.35995 0.41189 0.13349 0.05426 0.66243 - 10 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 7 -0.64863 -0.08483 -0.11210 0.13942 0.03202 0.32154 + 8 -0.18965 0.10985 -0.10062 -0.46861 -0.71203 0.16190 + 9 0.05545 0.35994 0.41190 0.13349 0.05426 0.66243 + 10 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 11 -0.00878 0.02820 -0.01808 -0.04629 0.00719 -0.05089 - 12 0.07504 -0.20151 0.13189 0.33903 -0.04976 0.37542 - 13 0.27126 0.26937 0.11482 -0.19548 0.24459 -0.56630 - 14 -0.13846 0.39220 -0.36515 0.13846 -0.54801 -0.23999 - 15 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 12 0.07503 -0.20151 0.13188 0.33903 -0.04976 0.37542 + 13 0.27125 0.26938 0.11483 -0.19548 0.24459 -0.56630 + 14 -0.13845 0.39220 -0.36514 0.13846 -0.54801 -0.23999 + 15 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 16 0.00878 0.02820 -0.01808 0.04629 0.00719 0.05089 - 17 -0.07504 -0.20151 0.13189 -0.33903 -0.04976 -0.37542 - 18 0.27126 -0.26937 -0.11482 -0.19548 -0.24459 -0.56630 - 19 -0.13846 -0.39220 0.36515 0.13846 0.54801 -0.23999 - 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 17 -0.07503 -0.20151 0.13188 -0.33903 -0.04976 -0.37542 + 18 0.27125 -0.26938 -0.11483 -0.19548 -0.24459 -0.56630 + 19 -0.13845 -0.39220 0.36514 0.13846 0.54801 -0.23999 + 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 21 -0.02893 -0.03159 0.01601 -0.02227 -0.00734 0.05551 - 22 0.19142 0.22096 -0.11842 0.16775 0.04971 -0.41154 - 23 -0.39356 0.15680 0.05191 -0.05616 -0.44424 0.49411 - 24 -0.20793 0.32678 -0.42995 -0.21552 -0.42322 -0.39434 - 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 22 0.19142 0.22096 -0.11841 0.16775 0.04971 -0.41154 + 23 -0.39356 0.15679 0.05191 -0.05616 -0.44424 0.49411 + 24 -0.20792 0.32679 -0.42994 -0.21552 -0.42323 -0.39435 + 25 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 26 0.02893 -0.03159 0.01601 0.02227 -0.00734 -0.05551 - 27 -0.19142 0.22096 -0.11842 -0.16775 0.04971 0.41154 - 28 -0.39356 -0.15680 -0.05191 -0.05616 0.44424 0.49411 - 29 -0.20793 -0.32678 0.42995 -0.21552 0.42322 -0.39434 - 30 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 31 -0.14981 -0.21765 -0.04766 -0.02392 -0.00844 0.26961 - 32 0.14981 -0.21765 -0.04766 0.02392 -0.00844 -0.26961 - 33 0.02254 -0.03523 -0.20429 -0.10576 0.03848 -0.27726 - 34 -0.02254 -0.03523 -0.20429 0.10576 0.03848 0.27726 + 27 -0.19142 0.22096 -0.11841 -0.16775 0.04971 0.41154 + 28 -0.39356 -0.15679 -0.05191 -0.05616 0.44424 0.49411 + 29 -0.20792 -0.32679 0.42994 -0.21552 0.42323 -0.39435 + 30 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 31 -0.14981 -0.21765 -0.04767 -0.02392 -0.00844 0.26961 + 32 0.14981 -0.21765 -0.04767 0.02392 -0.00844 -0.26961 + 33 0.02253 -0.03522 -0.20429 -0.10576 0.03848 -0.27726 + 34 -0.02253 -0.03522 -0.20429 0.10576 0.03848 0.27726 35 0.01769 -0.04334 0.03640 -0.05834 -0.02416 -0.01409 - 36 -0.14423 0.30721 -0.29712 0.45190 0.19749 0.08798 - 37 0.29735 0.55668 -0.09970 0.60835 0.41479 0.02777 + 36 -0.14422 0.30720 -0.29712 0.45190 0.19749 0.08798 + 37 0.29736 0.55668 -0.09969 0.60835 0.41479 0.02777 38 0.48257 0.14504 0.68016 -0.45823 -0.30091 0.36504 - 39 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 39 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 40 -0.01769 -0.04334 0.03640 0.05834 -0.02416 0.01409 - 41 0.14423 0.30721 -0.29712 -0.45190 0.19749 -0.08798 - 42 0.29735 -0.55668 0.09970 0.60835 -0.41479 0.02777 + 41 0.14422 0.30720 -0.29712 -0.45190 0.19749 -0.08798 + 42 0.29736 -0.55668 0.09969 0.60835 -0.41479 0.02777 43 0.48257 -0.14504 -0.68016 -0.45823 0.30091 0.36504 - 44 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 45 0.32793 0.30837 0.14608 0.17887 0.15782 0.04879 - 46 -0.32793 0.30837 0.14608 -0.17887 0.15782 -0.04879 + 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 45 0.32793 0.30837 0.14608 0.17886 0.15782 0.04879 + 46 -0.32793 0.30837 0.14608 -0.17886 0.15782 -0.04879 47 -0.01772 0.03266 -0.04635 0.06846 0.03822 -0.00886 - 48 0.12954 -0.24177 0.35554 -0.52696 -0.30561 0.07838 - 49 -0.50737 -0.13252 -0.58368 0.38883 0.24000 -0.21693 - 50 -0.23524 -0.53985 0.18340 -0.53681 -0.30265 -0.00326 - 51 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 48 0.12954 -0.24177 0.35554 -0.52696 -0.30561 0.07837 + 49 -0.50737 -0.13251 -0.58368 0.38884 0.24000 -0.21692 + 50 -0.23525 -0.53985 0.18340 -0.53681 -0.30264 -0.00326 + 51 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 52 0.01772 0.03266 -0.04635 -0.06846 0.03822 0.00886 - 53 -0.12954 -0.24177 0.35554 0.52696 -0.30561 -0.07838 - 54 -0.50737 0.13252 0.58368 0.38883 -0.24000 -0.21693 - 55 -0.23524 0.53985 -0.18340 -0.53681 0.30265 -0.00326 - 56 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 57 0.34539 0.26547 0.27254 -0.01144 -0.03139 0.13677 - 58 -0.34539 0.26547 0.27254 0.01144 -0.03139 -0.13677 - 59 -0.33103 -0.32048 -0.12287 -0.09634 -0.04651 -0.06633 - 60 0.33103 -0.32048 -0.12287 0.09634 -0.04651 0.06633 + 53 -0.12954 -0.24177 0.35554 0.52696 -0.30561 -0.07837 + 54 -0.50737 0.13251 0.58368 0.38884 -0.24000 -0.21692 + 55 -0.23525 0.53985 -0.18340 -0.53681 0.30264 -0.00326 + 56 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.34539 0.26547 0.27254 -0.01145 -0.03139 0.13677 + 58 -0.34539 0.26547 0.27254 0.01145 -0.03139 -0.13677 + 59 -0.33103 -0.32049 -0.12287 -0.09633 -0.04651 -0.06632 + 60 0.33103 -0.32049 -0.12287 0.09633 -0.04651 0.06632 center of mass -------------- @@ -3074,15 +3068,12 @@ 1 0 1 0 -0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 - 2 2 0 0 -38.360869 0.000000 244.795872 - 2 1 1 0 0.065434 0.000000 -5.631027 - 2 1 0 1 0.000000 0.000000 0.000000 - 2 0 2 0 -39.006221 0.000000 1496.963300 + 2 2 0 0 -38.360884 0.000000 244.795872 + 2 1 1 0 0.065438 0.000000 -5.631027 + 2 1 0 1 -0.000000 0.000000 0.000000 + 2 0 2 0 -39.006243 0.000000 1496.963300 2 0 1 1 0.000000 0.000000 0.000000 - 2 0 0 2 -43.564269 0.000000 0.000000 - - - Parallel integral file used 8 records with 0 large values + 2 0 0 2 -43.564268 0.000000 0.000000 ------------- @@ -3093,14 +3084,14 @@ X = 0.0000000 Y = 0.0000000 Z = 0.0000000 Dipole moment 0.0000000000 A.U. - DMX 0.0000000000 DMXEFC 0.0000000000 + DMX -0.0000000000 DMXEFC 0.0000000000 DMY -0.0000000000 DMYEFC 0.0000000000 DMZ 0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 A.U. Total dipole 0.0000000000 A.U. Dipole moment 0.0000000000 Debye(s) - DMX 0.0000000000 DMXEFC 0.0000000000 + DMX -0.0000000000 DMXEFC 0.0000000000 DMY -0.0000000000 DMYEFC 0.0000000000 DMZ 0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 DEBYE(S) @@ -3122,44 +3113,44 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -38.3608685337 0.0000000000 -38.3608685337 - YY -39.0062210270 0.0000000000 -39.0062210270 - ZZ -43.5642691494 0.0000000000 -43.5642691494 - XY 0.0654337040 0.0000000000 0.0654337040 - XZ 0.0000000000 0.0000000000 0.0000000000 + XX -38.3608840749 0.0000000000 -38.3608840749 + YY -39.0062425075 0.0000000000 -39.0062425075 + ZZ -43.5642675472 0.0000000000 -43.5642675472 + XY 0.0654382568 0.0000000000 0.0654382568 + XZ -0.0000000000 0.0000000000 -0.0000000000 YZ 0.0000000000 0.0000000000 0.0000000000 Second moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -51.5919540605 0.0000000000 -51.5919540605 - YY -52.4598957277 0.0000000000 -52.4598957277 - ZZ -58.5900647861 0.0000000000 -58.5900647861 - XY 0.0880025082 0.0000000000 0.0880025082 - XZ 0.0000000000 0.0000000000 0.0000000000 + XX -51.5919749620 0.0000000000 -51.5919749620 + YY -52.4599246170 0.0000000000 -52.4599246170 + ZZ -58.5900626312 0.0000000000 -58.5900626312 + XY 0.0880086313 0.0000000000 0.0880086313 + XZ -0.0000000000 0.0000000000 -0.0000000000 YZ 0.0000000000 0.0000000000 0.0000000000 Quadrupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 2.9243765545 0.0000000000 2.9243765545 - YY 1.9563478145 0.0000000000 1.9563478145 - ZZ -4.8807243691 0.0000000000 -4.8807243691 - XY 0.0981505560 0.0000000000 0.0981505560 - XZ 0.0000000000 0.0000000000 0.0000000000 + XX 2.9243709525 0.0000000000 2.9243709525 + YY 1.9563333035 0.0000000000 1.9563333035 + ZZ -4.8807042560 0.0000000000 -4.8807042560 + XY 0.0981573851 0.0000000000 0.0981573851 + XZ -0.0000000000 0.0000000000 -0.0000000000 YZ 0.0000000000 0.0000000000 0.0000000000 Quadrupole moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 3.9330261963 0.0000000000 3.9330261963 - YY 2.6311136956 0.0000000000 2.6311136956 - ZZ -6.5641398919 0.0000000000 -6.5641398919 - XY 0.1320037624 0.0000000000 0.1320037624 - XZ 0.0000000000 0.0000000000 0.0000000000 + XX 3.9330186621 0.0000000000 3.9330186621 + YY 2.6310941796 0.0000000000 2.6310941796 + ZZ -6.5641128417 0.0000000000 -6.5641128417 + XY 0.1320129470 0.0000000000 0.1320129470 + XZ -0.0000000000 0.0000000000 -0.0000000000 YZ 0.0000000000 0.0000000000 0.0000000000 1 a.u. = 1.344911 Buckinghams = 1.344911 10**(-26) esu*cm**2 @@ -3175,61 +3166,61 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX 0.0000000000 0.0000000000 0.0000000000 - YYY 0.0000000000 0.0000000000 0.0000000000 + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 ZZZ 0.0000000000 0.0000000000 0.0000000000 XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ -0.0000000000 0.0000000000 -0.0000000000 - YYX 0.0000000000 0.0000000000 0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 ZZX 0.0000000000 0.0000000000 0.0000000000 ZZY -0.0000000000 0.0000000000 -0.0000000000 - XYZ -0.0000000000 0.0000000000 -0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 Third moments in 10**(-34) esu*cm**3 Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX 0.0000000000 0.0000000000 0.0000000000 - YYY 0.0000000000 0.0000000000 0.0000000000 + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 ZZZ 0.0000000000 0.0000000000 0.0000000000 XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ -0.0000000000 0.0000000000 -0.0000000000 - YYX 0.0000000000 0.0000000000 0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 ZZX 0.0000000000 0.0000000000 0.0000000000 ZZY -0.0000000000 0.0000000000 -0.0000000000 - XYZ -0.0000000000 0.0000000000 -0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 Octupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XXX 0.0000000000 0.0000000000 0.0000000000 - YYY 0.0000000000 0.0000000000 0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 - ZZX -0.0000000000 0.0000000000 -0.0000000000 - ZZY -0.0000000000 0.0000000000 -0.0000000000 - XYZ -0.0000000000 0.0000000000 -0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 Octupole moments in 10**(-34) esu*cm**3 Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XXX 0.0000000000 0.0000000000 0.0000000000 - YYY 0.0000000000 0.0000000000 0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 - ZZX -0.0000000000 0.0000000000 -0.0000000000 - ZZY -0.0000000000 0.0000000000 -0.0000000000 - XYZ -0.0000000000 0.0000000000 -0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 1 a.u. = 0.711688 10**(-34) esu*cm**3 @@ -3242,8 +3233,8 @@ -------------------------------- Atom S P -------------------------------------------------------------------------------------- - 1 C 3.13046 2.86772 - 2 C 3.13046 2.86772 + 1 C 3.13046 2.86773 + 2 C 3.13046 2.86773 3 C 3.14136 2.91829 4 C 3.14136 2.91829 5 C 3.13936 2.92108 @@ -3377,28 +3368,28 @@ Free electrons Valency Number of Sum of + Bond indices - Bond indices Valency Free electrons Bond indices =Mulliken charge = Net spin population - 1 C 3.97499 2.02320 3.97499 5.99819 0.00000 + 1 C 3.97499 2.02320 3.97499 5.99819 -0.00000 2 C 3.97499 2.02320 3.97499 5.99819 -0.00000 - 3 C 3.97333 2.08632 3.97333 6.05964 -0.00000 - 4 C 3.97333 2.08632 3.97333 6.05964 0.00000 + 3 C 3.97333 2.08631 3.97333 6.05964 -0.00000 + 4 C 3.97333 2.08631 3.97333 6.05964 -0.00000 5 C 3.97410 2.08634 3.97410 6.06044 -0.00000 6 C 3.97410 2.08634 3.97410 6.06044 0.00000 - 7 H 0.99655 -0.05526 0.99655 0.94130 0.00000 - 8 H 0.99655 -0.05526 0.99655 0.94130 0.00000 - 9 H 0.99633 -0.05693 0.99633 0.93940 0.00000 - 10 H 0.99633 -0.05693 0.99633 0.93940 0.00000 + 7 H 0.99655 -0.05526 0.99655 0.94130 -0.00000 + 8 H 0.99655 -0.05526 0.99655 0.94130 -0.00000 + 9 H 0.99633 -0.05693 0.99633 0.93940 -0.00000 + 10 H 0.99633 -0.05693 0.99633 0.93940 -0.00000 11 C 3.97218 2.08307 3.97218 6.05525 -0.00000 12 C 3.97218 2.08307 3.97218 6.05525 0.00000 13 H 0.99668 -0.05431 0.99668 0.94236 -0.00000 14 H 0.99668 -0.05431 0.99668 0.94236 -0.00000 - 15 C 3.97069 2.15320 3.97069 6.12388 0.00000 - 16 C 3.97069 2.15320 3.97069 6.12388 0.00000 + 15 C 3.97069 2.15320 3.97069 6.12388 -0.00000 + 16 C 3.97069 2.15320 3.97069 6.12388 -0.00000 17 H 0.99652 -0.05553 0.99652 0.94099 -0.00000 18 H 0.99652 -0.05553 0.99652 0.94099 -0.00000 19 H 0.99622 -0.05768 0.99622 0.93855 -0.00000 20 H 0.99622 -0.05768 0.99622 0.93855 -0.00000 - Task times cpu: 2.7s wall: 3.6s + Task times cpu: 3.8s wall: 3.8s Summary of allocated global arrays ----------------------------------- No active global arrays @@ -3409,9 +3400,9 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 749 749 3.09e+04 6043 3.18e+04 420 0 8127 -number of processes/call 1.00e+00 1.00e+00 1.00e+00 1.00e+00 0.00e+00 -bytes total: 1.26e+07 7.29e+06 3.97e+06 3.09e+04 0.00e+00 6.50e+04 +calls: 759 759 3.08e+04 6122 3.18e+04 420 0 8387 +number of processes/call -1.46e+14 6.48e+13 3.59e+12 0.00e+00 0.00e+00 +bytes total: 1.26e+07 7.31e+06 3.97e+06 8.00e+00 0.00e+00 6.71e+04 bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 Max memory consumed for GA by this process: 427200 bytes MA_summarize_allocated_blocks: starting scan ... @@ -3422,11 +3413,11 @@ MA usage statistics: heap stack ---- ----- current number of blocks 0 0 - maximum number of blocks 18 14 + maximum number of blocks 17 14 current total bytes 0 0 - maximum total bytes 9986520 22510808 - maximum total K-bytes 9987 22511 - maximum total M-bytes 10 23 + maximum total bytes 80152 22510808 + maximum total K-bytes 81 22511 + maximum total M-bytes 1 23 NWChem Input Module @@ -3441,32 +3432,52 @@ MA usage statistics: Please cite the following reference when publishing results obtained with NWChem: - M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, - T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, - E. Apra, T.L. Windus, W.A. de Jong - "NWChem: a comprehensive and scalable open-source - solution for large scale molecular simulations" - Comput. Phys. Commun. 181, 1477 (2010) - doi:10.1016/j.cpc.2010.04.018 + E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, + V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, + J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, + J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, + C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, + K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, + J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, + V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, + B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, + S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, + A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, + D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, + J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, + A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, + R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, + D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, + V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, + Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, + D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, + A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, + and R. J. Harrison + "NWChem: Past, present, and future + J. Chem. Phys. 152, 184102 (2020) + doi:10.1063/5.0004997 AUTHORS ------- - E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, - J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, - S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, - F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, + T. P. Straatsma, H. J. J. van Dam, D. Wang, T. L. Windus, N. P. Bauman, + A. Panyala, J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, + K. Lopata, S. A. Fischer, S. Krishnamoorthy, M. Jacquelin, W. Ma, M. Klemm, + O. Villa, Y. Chen, V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, + Eric Hermes, L. Jensen, J. E. Moore, J. C. Becca, V. Konjkov, + D. Mejia-Rodriguez, T. Risthaus, M. Malagoli, A. Marenich, A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, - P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, - D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, - A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, - A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, - H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, - K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, - H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, - A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, - R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, - K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, - A. T. Wong, Z. Zhang. - - Total times cpu: 2.8s wall: 5.5s + P.-D. Fan, A. Fonari, M. J. Williamson, R. J. Harrison, J. R. Rehr, + M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, V. Tipparaju, + M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, M. Swart, Q. Wu, + T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, + G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, + K. Tsemekhman, K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, + T. Clark, D. Clerc, H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, + E. Glendening, M. Gutowski, A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, + R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, X. Long, B. Meng, + T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, + M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. + + Total times cpu: 3.8s wall: 3.8s diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.out b/data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.out index 88d6c57ea..010c2d545 100644 --- a/data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.out +++ b/data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.out @@ -1,17 +1,17 @@ - argument 1 = dvb_sp_hf_overlaps.nw + argument 1 = dvb_sp_hf_overlaps.in - Northwest Computational Chemistry Package (NWChem) 6.5 - ------------------------------------------------------ + Northwest Computational Chemistry Package (NWChem) 7.0.2 + -------------------------------------------------------- Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - Copyright (c) 1994-2014 + Copyright (c) 1994-2020 Pacific Northwest National Laboratory Battelle Memorial Institute @@ -36,16 +36,17 @@ Job information --------------- - hostname = boman - program = /usr/lib64/mpich/bin/nwchem_mpich - date = Wed Jan 21 23:10:44 2015 - - compiled = Sat_Dec_06_13:02:58_2014 - source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 - nwchem branch = 6.5 - nwchem revision = 26243 - ga revision = 10506 - input = dvb_sp_hf_overlaps.nw + hostname = osmium + program = nwchem + date = Sat Jun 4 13:33:16 2022 + + compiled = Fri_Jul_02_16:33:00_2021 + source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src + nwchem branch = 7.0.2 + nwchem revision = b9985dfa + ga revision = 5.7.2 + use scalapack = T + input = dvb_sp_hf_overlaps.in prefix = dvb. data base = ./dvb.db status = startup @@ -89,6 +90,8 @@ ------ auto-z ------ + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 Geometry "geometry" -> "" @@ -345,7 +348,7 @@ library name resolved from: environment - library file name is: + library file name is: @@ -438,53 +441,93 @@ ==================================== Begin overlap 1-e integrals ==================================== +1eov 1 C s 1 C s 1.00000000 +1eov 2 C s 1 C s 0.24836239 1eov 7 C s 1 C s 0.00030276 1eov 8 C p 1 C s 0.00013634 1eov 9 C p 1 C s 0.00081417 +1eov 11 C s 1 C s 0.00000058 +1eov 12 C s 1 C s 0.03557117 +1eov 13 C p 1 C s -0.04481702 +1eov 14 C p 1 C s 0.03839337 1eov 17 C s 1 C s 0.00158642 1eov 18 C p 1 C s 0.00234748 1eov 19 C p 1 C s 0.00287577 +1eov 22 C s 1 C s 0.00156648 +1eov 23 C p 1 C s -0.00126819 +1eov 24 C p 1 C s 0.00344449 1eov 26 C s 1 C s 0.00000058 1eov 27 C s 1 C s 0.03557692 1eov 28 C p 1 C s 0.05494002 1eov 29 C p 1 C s 0.02157125 +1eov 31 H s 1 C s 0.00509264 1eov 32 H s 1 C s 0.00007985 +1eov 33 H s 1 C s 0.00007948 1eov 34 H s 1 C s 0.00508021 +1eov 36 C s 1 C s 0.00000008 +1eov 37 C p 1 C s 0.00000006 +1eov 38 C p 1 C s 0.00000035 1eov 40 C s 1 C s 0.00000014 1eov 41 C s 1 C s 0.02955008 1eov 42 C p 1 C s -0.00979645 1eov 43 C p 1 C s -0.04830601 +1eov 45 H s 1 C s 0.00000007 1eov 46 H s 1 C s 0.00486942 1eov 53 C s 1 C s 0.00115883 1eov 54 C p 1 C s 0.00066296 1eov 55 C p 1 C s -0.00272201 1eov 58 H s 1 C s 0.00074066 1eov 60 H s 1 C s 0.00005752 +1eov 1 C s 2 C s 0.24836239 +1eov 2 C s 2 C s 1.00000000 1eov 6 C s 2 C s 0.00030276 1eov 7 C s 2 C s 0.02186954 1eov 8 C p 2 C s 0.00590170 1eov 9 C p 2 C s 0.03524407 +1eov 11 C s 2 C s 0.03557117 +1eov 12 C s 2 C s 0.35371041 +1eov 13 C p 2 C s -0.28849089 +1eov 14 C p 2 C s 0.24714128 1eov 16 C s 2 C s 0.00158642 1eov 17 C s 2 C s 0.05618847 1eov 18 C p 2 C s 0.05279983 1eov 19 C p 2 C s 0.06468219 +1eov 21 C s 2 C s 0.00156648 +1eov 22 C s 2 C s 0.05577904 +1eov 23 C p 2 C s -0.02866212 +1eov 24 C p 2 C s 0.07784841 1eov 26 C s 2 C s 0.03557692 1eov 27 C s 2 C s 0.35374328 1eov 28 C p 2 C s 0.35361990 1eov 29 C p 2 C s 0.13884273 +1eov 31 H s 2 C s 0.09300775 1eov 32 H s 2 C s 0.00590154 +1eov 33 H s 2 C s 0.00588416 1eov 34 H s 2 C s 0.09284483 +1eov 35 C s 2 C s 0.00000008 +1eov 36 C s 2 C s 0.00025963 +1eov 37 C p 2 C s 0.00010165 +1eov 38 C p 2 C s 0.00056623 1eov 40 C s 2 C s 0.02955008 1eov 41 C s 2 C s 0.31760627 1eov 42 C p 2 C s -0.06995906 1eov 43 C p 2 C s -0.34496609 +1eov 45 H s 2 C s 0.00008155 1eov 46 H s 2 C s 0.09006704 +1eov 48 C s 2 C s 0.00000715 +1eov 49 C p 2 C s -0.00000046 +1eov 50 C p 2 C s 0.00001894 1eov 52 C s 2 C s 0.00115883 1eov 53 C s 2 C s 0.04688356 1eov 54 C p 2 C s 0.01682232 1eov 55 C p 2 C s -0.06907006 +1eov 57 H s 2 C s 0.00002394 1eov 58 H s 2 C s 0.02467969 +1eov 59 H s 2 C s 0.00000031 1eov 60 H s 2 C s 0.00480795 +1eov 3 C p 3 C p 1.00000000 +1eov 4 C p 4 C p 1.00000000 +1eov 5 C p 5 C p 1.00000000 1eov 6 C s 3 C p -0.00013634 1eov 6 C s 4 C p -0.00081417 1eov 7 C s 3 C p -0.00590170 @@ -494,6 +537,15 @@ 1eov 8 C p 4 C p -0.01021452 1eov 9 C p 4 C p -0.05268175 1eov 10 C p 5 C p 0.00831781 +1eov 11 C s 3 C p 0.04481702 +1eov 11 C s 4 C p -0.03839337 +1eov 12 C s 3 C p 0.28849089 +1eov 12 C s 4 C p -0.24714128 +1eov 13 C p 3 C p -0.10189816 +1eov 14 C p 3 C p 0.26261039 +1eov 13 C p 4 C p 0.26261039 +1eov 14 C p 4 C p -0.02032026 +1eov 15 C p 5 C p 0.20464999 1eov 16 C s 3 C p -0.00234748 1eov 16 C s 4 C p -0.00287577 1eov 17 C s 3 C p -0.05279983 @@ -503,6 +555,15 @@ 1eov 18 C p 4 C p -0.06690995 1eov 19 C p 4 C p -0.05866033 1eov 20 C p 5 C p 0.02330740 +1eov 21 C s 3 C p 0.00126819 +1eov 21 C s 4 C p -0.00344449 +1eov 22 C s 3 C p 0.02866212 +1eov 22 C s 4 C p -0.07784841 +1eov 23 C p 3 C p 0.00691013 +1eov 24 C p 3 C p 0.04402519 +1eov 23 C p 4 C p 0.04402519 +1eov 24 C p 4 C p -0.09645639 +1eov 25 C p 5 C p 0.02311926 1eov 26 C s 3 C p -0.05494002 1eov 26 C s 4 C p -0.02157125 1eov 27 C s 3 C p -0.35361990 @@ -512,10 +573,23 @@ 1eov 28 C p 4 C p -0.18082655 1eov 29 C p 4 C p 0.13367656 1eov 30 C p 5 C p 0.20467497 +1eov 31 H s 3 C p 0.11684634 +1eov 31 H s 4 C p -0.03019589 1eov 32 H s 3 C p -0.00737838 1eov 32 H s 4 C p -0.00651680 +1eov 33 H s 3 C p 0.00484048 +1eov 33 H s 4 C p -0.00854096 1eov 34 H s 3 C p -0.12012197 1eov 34 H s 4 C p 0.00954436 +1eov 35 C s 3 C p -0.00000006 +1eov 35 C s 4 C p -0.00000035 +1eov 36 C s 3 C p -0.00010165 +1eov 36 C s 4 C p -0.00056623 +1eov 37 C p 3 C p 0.00004318 +1eov 38 C p 3 C p -0.00022448 +1eov 37 C p 4 C p -0.00022448 +1eov 38 C p 4 C p -0.00116687 +1eov 39 C p 5 C p 0.00008348 1eov 40 C s 3 C p 0.00979645 1eov 40 C s 4 C p 0.04830601 1eov 41 C s 3 C p 0.06995906 @@ -525,8 +599,17 @@ 1eov 42 C p 4 C p -0.09696631 1eov 43 C p 4 C p -0.30023182 1eov 44 C p 5 C p 0.17790623 +1eov 45 H s 3 C p -0.00006594 +1eov 45 H s 4 C p -0.00016267 1eov 46 H s 3 C p 0.07313632 1eov 46 H s 4 C p 0.09176940 +1eov 48 C s 3 C p 0.00000046 +1eov 48 C s 4 C p -0.00001894 +1eov 49 C p 3 C p 0.00000222 +1eov 50 C p 3 C p 0.00000121 +1eov 49 C p 4 C p 0.00000121 +1eov 50 C p 4 C p -0.00004804 +1eov 51 C p 5 C p 0.00000225 1eov 52 C s 3 C p -0.00066296 1eov 52 C s 4 C p 0.00272201 1eov 53 C s 3 C p -0.01682232 @@ -536,49 +619,119 @@ 1eov 54 C p 4 C p 0.02712642 1eov 55 C p 4 C p -0.09229496 1eov 56 C p 5 C p 0.01908226 +1eov 57 H s 3 C p 0.00001260 +1eov 57 H s 4 C p -0.00005332 1eov 58 H s 3 C p -0.02185510 1eov 58 H s 4 C p 0.02971915 +1eov 59 H s 3 C p -0.00000003 +1eov 59 H s 4 C p -0.00000084 1eov 60 H s 3 C p -0.00065662 1eov 60 H s 4 C p 0.00810581 +1eov 2 C s 6 C s 0.00030276 +1eov 3 C p 6 C s -0.00013634 +1eov 4 C p 6 C s -0.00081417 1eov 6 C s 6 C s 1.00000000 1eov 7 C s 6 C s 0.24836239 +1eov 12 C s 6 C s 0.00158642 +1eov 13 C p 6 C s -0.00234748 +1eov 14 C p 6 C s -0.00287577 1eov 16 C s 6 C s 0.00000058 1eov 17 C s 6 C s 0.03557117 1eov 18 C p 6 C s 0.04481702 1eov 19 C p 6 C s -0.03839337 +1eov 21 C s 6 C s 0.00000058 +1eov 22 C s 6 C s 0.03557692 +1eov 23 C p 6 C s -0.05494002 +1eov 24 C p 6 C s -0.02157125 1eov 27 C s 6 C s 0.00156648 1eov 28 C p 6 C s 0.00126819 1eov 29 C p 6 C s -0.00344449 +1eov 31 H s 6 C s 0.00007985 1eov 32 H s 6 C s 0.00509264 +1eov 33 H s 6 C s 0.00508021 1eov 34 H s 6 C s 0.00007948 +1eov 35 C s 6 C s 0.00000014 +1eov 36 C s 6 C s 0.02955008 +1eov 37 C p 6 C s 0.00979645 +1eov 38 C p 6 C s 0.04830601 1eov 41 C s 6 C s 0.00000008 1eov 42 C p 6 C s -0.00000006 1eov 43 C p 6 C s -0.00000035 +1eov 45 H s 6 C s 0.00486942 1eov 46 H s 6 C s 0.00000007 +1eov 48 C s 6 C s 0.00115883 +1eov 49 C p 6 C s -0.00066296 +1eov 50 C p 6 C s 0.00272201 +1eov 57 H s 6 C s 0.00074066 +1eov 59 H s 6 C s 0.00005752 +1eov 1 C s 7 C s 0.00030276 +1eov 2 C s 7 C s 0.02186954 +1eov 3 C p 7 C s -0.00590170 +1eov 4 C p 7 C s -0.03524407 +1eov 6 C s 7 C s 0.24836239 1eov 7 C s 7 C s 1.00000000 +1eov 11 C s 7 C s 0.00158642 +1eov 12 C s 7 C s 0.05618847 +1eov 13 C p 7 C s -0.05279983 +1eov 14 C p 7 C s -0.06468219 1eov 16 C s 7 C s 0.03557117 1eov 17 C s 7 C s 0.35371041 1eov 18 C p 7 C s 0.28849089 1eov 19 C p 7 C s -0.24714128 +1eov 21 C s 7 C s 0.03557692 +1eov 22 C s 7 C s 0.35374328 +1eov 23 C p 7 C s -0.35361990 +1eov 24 C p 7 C s -0.13884273 1eov 26 C s 7 C s 0.00156648 1eov 27 C s 7 C s 0.05577904 1eov 28 C p 7 C s 0.02866212 1eov 29 C p 7 C s -0.07784841 +1eov 31 H s 7 C s 0.00590154 1eov 32 H s 7 C s 0.09300775 +1eov 33 H s 7 C s 0.09284483 1eov 34 H s 7 C s 0.00588416 +1eov 35 C s 7 C s 0.02955008 +1eov 36 C s 7 C s 0.31760627 +1eov 37 C p 7 C s 0.06995906 +1eov 38 C p 7 C s 0.34496609 1eov 40 C s 7 C s 0.00000008 1eov 41 C s 7 C s 0.00025963 1eov 42 C p 7 C s -0.00010165 1eov 43 C p 7 C s -0.00056623 +1eov 45 H s 7 C s 0.09006704 1eov 46 H s 7 C s 0.00008155 +1eov 47 C s 7 C s 0.00115883 +1eov 48 C s 7 C s 0.04688356 +1eov 49 C p 7 C s -0.01682232 +1eov 50 C p 7 C s 0.06907006 1eov 53 C s 7 C s 0.00000715 1eov 54 C p 7 C s 0.00000046 1eov 55 C p 7 C s -0.00001894 +1eov 57 H s 7 C s 0.02467969 1eov 58 H s 7 C s 0.00002394 +1eov 59 H s 7 C s 0.00480795 1eov 60 H s 7 C s 0.00000031 +1eov 1 C s 8 C p 0.00013634 +1eov 1 C s 9 C p 0.00081417 +1eov 2 C s 8 C p 0.00590170 +1eov 2 C s 9 C p 0.03524407 +1eov 3 C p 8 C p 0.00660737 +1eov 4 C p 8 C p -0.01021452 +1eov 3 C p 9 C p -0.01021452 +1eov 4 C p 9 C p -0.05268175 +1eov 5 C p 10 C p 0.00831781 1eov 8 C p 8 C p 1.00000000 1eov 9 C p 9 C p 1.00000000 1eov 10 C p 10 C p 1.00000000 +1eov 11 C s 8 C p 0.00234748 +1eov 11 C s 9 C p 0.00287577 +1eov 12 C s 8 C p 0.05279983 +1eov 12 C s 9 C p 0.06468219 +1eov 13 C p 8 C p -0.03131094 +1eov 14 C p 8 C p -0.06690995 +1eov 13 C p 9 C p -0.06690995 +1eov 14 C p 9 C p -0.05866033 +1eov 15 C p 10 C p 0.02330740 1eov 16 C s 8 C p -0.04481702 1eov 16 C s 9 C p 0.03839337 1eov 17 C s 8 C p -0.28849089 @@ -588,6 +741,15 @@ 1eov 18 C p 9 C p 0.26261039 1eov 19 C p 9 C p -0.02032026 1eov 20 C p 10 C p 0.20464999 +1eov 21 C s 8 C p 0.05494002 +1eov 21 C s 9 C p 0.02157125 +1eov 22 C s 8 C p 0.35361990 +1eov 22 C s 9 C p 0.13884273 +1eov 23 C p 8 C p -0.25587393 +1eov 24 C p 8 C p -0.18082655 +1eov 23 C p 9 C p -0.18082655 +1eov 24 C p 9 C p 0.13367656 +1eov 25 C p 10 C p 0.20467497 1eov 26 C s 8 C p -0.00126819 1eov 26 C s 9 C p 0.00344449 1eov 27 C s 8 C p -0.02866212 @@ -597,10 +759,23 @@ 1eov 28 C p 9 C p 0.04402519 1eov 29 C p 9 C p -0.09645639 1eov 30 C p 10 C p 0.02311926 +1eov 31 H s 8 C p 0.00737838 +1eov 31 H s 9 C p 0.00651680 1eov 32 H s 8 C p -0.11684634 1eov 32 H s 9 C p 0.03019589 +1eov 33 H s 8 C p 0.12012197 +1eov 33 H s 9 C p -0.00954436 1eov 34 H s 8 C p -0.00484048 1eov 34 H s 9 C p 0.00854096 +1eov 35 C s 8 C p -0.00979645 +1eov 35 C s 9 C p -0.04830601 +1eov 36 C s 8 C p -0.06995906 +1eov 36 C s 9 C p -0.34496609 +1eov 37 C p 8 C p 0.15824148 +1eov 38 C p 8 C p -0.09696631 +1eov 37 C p 9 C p -0.09696631 +1eov 38 C p 9 C p -0.30023182 +1eov 39 C p 10 C p 0.17790623 1eov 40 C s 8 C p 0.00000006 1eov 40 C s 9 C p 0.00000035 1eov 41 C s 8 C p 0.00010165 @@ -610,8 +785,19 @@ 1eov 42 C p 9 C p -0.00022448 1eov 43 C p 9 C p -0.00116687 1eov 44 C p 10 C p 0.00008348 +1eov 45 H s 8 C p -0.07313632 +1eov 45 H s 9 C p -0.09176940 1eov 46 H s 8 C p 0.00006594 1eov 46 H s 9 C p 0.00016267 +1eov 47 C s 8 C p 0.00066296 +1eov 47 C s 9 C p -0.00272201 +1eov 48 C s 8 C p 0.01682232 +1eov 48 C s 9 C p -0.06907006 +1eov 49 C p 8 C p 0.01247550 +1eov 50 C p 8 C p 0.02712642 +1eov 49 C p 9 C p 0.02712642 +1eov 50 C p 9 C p -0.09229496 +1eov 51 C p 10 C p 0.01908226 1eov 53 C s 8 C p -0.00000046 1eov 53 C s 9 C p 0.00001894 1eov 54 C p 8 C p 0.00000222 @@ -619,48 +805,123 @@ 1eov 54 C p 9 C p 0.00000121 1eov 55 C p 9 C p -0.00004804 1eov 56 C p 10 C p 0.00000225 +1eov 57 H s 8 C p 0.02185510 +1eov 57 H s 9 C p -0.02971915 1eov 58 H s 8 C p -0.00001260 1eov 58 H s 9 C p 0.00005332 +1eov 59 H s 8 C p 0.00065662 +1eov 59 H s 9 C p -0.00810581 1eov 60 H s 8 C p 0.00000003 1eov 60 H s 9 C p 0.00000084 +1eov 1 C s 11 C s 0.00000058 +1eov 2 C s 11 C s 0.03557117 +1eov 3 C p 11 C s 0.04481702 +1eov 4 C p 11 C s -0.03839337 +1eov 7 C s 11 C s 0.00158642 +1eov 8 C p 11 C s 0.00234748 +1eov 9 C p 11 C s 0.00287577 +1eov 11 C s 11 C s 1.00000000 +1eov 12 C s 11 C s 0.24836239 1eov 17 C s 11 C s 0.00038919 1eov 18 C p 11 C s 0.00097464 1eov 19 C p 11 C s 0.00036196 +1eov 21 C s 11 C s 0.00000082 +1eov 22 C s 11 C s 0.03728874 +1eov 23 C p 11 C s 0.01013759 +1eov 24 C p 11 C s 0.06099186 1eov 27 C s 11 C s 0.00170373 1eov 28 C p 11 C s 0.00390110 1eov 29 C p 11 C s -0.00065809 +1eov 31 H s 11 C s 0.06102076 1eov 32 H s 11 C s 0.00001119 +1eov 33 H s 11 C s 0.00527184 1eov 34 H s 11 C s 0.00008438 +1eov 36 C s 11 C s 0.00000212 +1eov 37 C p 11 C s 0.00000372 +1eov 38 C p 11 C s 0.00000677 1eov 41 C s 11 C s 0.00126083 1eov 42 C p 11 C s 0.00093897 1eov 43 C p 11 C s -0.00287258 +1eov 45 H s 11 C s 0.00000027 1eov 46 H s 11 C s 0.00131509 +1eov 48 C s 11 C s 0.00000004 +1eov 49 C p 11 C s 0.00000004 +1eov 50 C p 11 C s 0.00000017 1eov 53 C s 11 C s 0.00000298 1eov 54 C p 11 C s 0.00000476 1eov 55 C p 11 C s -0.00000960 +1eov 57 H s 11 C s 0.00000294 1eov 58 H s 11 C s 0.00000237 1eov 60 H s 11 C s 0.00000028 +1eov 1 C s 12 C s 0.03557117 +1eov 2 C s 12 C s 0.35371041 +1eov 3 C p 12 C s 0.28849089 +1eov 4 C p 12 C s -0.24714128 +1eov 6 C s 12 C s 0.00158642 +1eov 7 C s 12 C s 0.05618847 +1eov 8 C p 12 C s 0.05279983 +1eov 9 C p 12 C s 0.06468219 +1eov 11 C s 12 C s 0.24836239 +1eov 12 C s 12 C s 1.00000000 1eov 16 C s 12 C s 0.00038919 1eov 17 C s 12 C s 0.02519187 1eov 18 C p 12 C s 0.03809642 1eov 19 C p 12 C s 0.01414813 +1eov 21 C s 12 C s 0.03728874 +1eov 22 C s 12 C s 0.36341085 +1eov 23 C p 12 C s 0.06345323 +1eov 24 C p 12 C s 0.38176044 1eov 26 C s 12 C s 0.00170373 1eov 27 C s 12 C s 0.05855627 1eov 28 C p 12 C s 0.08539477 1eov 29 C p 12 C s -0.01440564 +1eov 31 H s 12 C s 0.48574945 1eov 32 H s 12 C s 0.00175463 +1eov 33 H s 12 C s 0.09534612 1eov 34 H s 12 C s 0.00610906 +1eov 35 C s 12 C s 0.00000212 +1eov 36 C s 12 C s 0.00144485 +1eov 37 C p 12 C s 0.00138894 +1eov 38 C p 12 C s 0.00252926 1eov 40 C s 12 C s 0.00126083 1eov 41 C s 12 C s 0.04921444 1eov 42 C p 12 C s 0.02306259 1eov 43 C p 12 C s -0.07055543 +1eov 45 H s 12 C s 0.00018766 1eov 46 H s 12 C s 0.03623781 +1eov 47 C s 12 C s 0.00000004 +1eov 48 C s 12 C s 0.00017692 +1eov 49 C p 12 C s 0.00008529 +1eov 50 C p 12 C s 0.00039134 1eov 52 C s 12 C s 0.00000298 1eov 53 C s 12 C s 0.00173815 1eov 54 C p 12 C s 0.00152273 1eov 55 C p 12 C s -0.00307343 +1eov 57 H s 12 C s 0.00077915 1eov 58 H s 12 C s 0.00068401 +1eov 59 H s 12 C s 0.00000753 1eov 60 H s 12 C s 0.00019170 +1eov 1 C s 13 C p -0.04481702 +1eov 1 C s 14 C p 0.03839337 +1eov 2 C s 13 C p -0.28849089 +1eov 2 C s 14 C p 0.24714128 +1eov 3 C p 13 C p -0.10189816 +1eov 4 C p 13 C p 0.26261039 +1eov 3 C p 14 C p 0.26261039 +1eov 4 C p 14 C p -0.02032026 +1eov 5 C p 15 C p 0.20464999 +1eov 6 C s 13 C p -0.00234748 +1eov 6 C s 14 C p -0.00287577 +1eov 7 C s 13 C p -0.05279983 +1eov 7 C s 14 C p -0.06468219 +1eov 8 C p 13 C p -0.03131094 +1eov 9 C p 13 C p -0.06690995 +1eov 8 C p 14 C p -0.06690995 +1eov 9 C p 14 C p -0.05866033 +1eov 10 C p 15 C p 0.02330740 +1eov 13 C p 13 C p 1.00000000 +1eov 14 C p 14 C p 1.00000000 +1eov 15 C p 15 C p 1.00000000 1eov 16 C s 13 C p -0.00097464 1eov 16 C s 14 C p -0.00036196 1eov 17 C s 13 C p -0.03809642 @@ -670,6 +931,15 @@ 1eov 18 C p 14 C p -0.02304990 1eov 19 C p 14 C p 0.00112989 1eov 20 C p 15 C p 0.00969008 +1eov 21 C s 13 C p -0.01013759 +1eov 21 C s 14 C p -0.06099186 +1eov 22 C s 13 C p -0.06345323 +1eov 22 C s 14 C p -0.38176044 +1eov 23 C p 13 C p 0.19755997 +1eov 24 C p 13 C p -0.08732635 +1eov 23 C p 14 C p -0.08732635 +1eov 24 C p 14 C p -0.31331614 +1eov 25 C p 15 C p 0.21207467 1eov 26 C s 13 C p -0.00390110 1eov 26 C s 14 C p 0.00065809 1eov 27 C s 13 C p -0.08539477 @@ -679,10 +949,23 @@ 1eov 28 C p 14 C p 0.02315912 1eov 29 C p 14 C p 0.02049256 1eov 30 C p 15 C p 0.02439938 +1eov 31 H s 13 C p 0.43567252 +1eov 31 H s 14 C p 0.16041073 1eov 32 H s 13 C p -0.00297023 1eov 32 H s 14 C p -0.00110041 +1eov 33 H s 13 C p 0.03533851 +1eov 33 H s 14 C p -0.11815431 1eov 34 H s 13 C p -0.00963282 1eov 34 H s 14 C p 0.00324981 +1eov 35 C s 13 C p -0.00000372 +1eov 35 C s 14 C p -0.00000677 +1eov 36 C s 13 C p -0.00138894 +1eov 36 C s 14 C p -0.00252926 +1eov 37 C p 13 C p -0.00089148 +1eov 38 C p 13 C p -0.00249775 +1eov 37 C p 14 C p -0.00249775 +1eov 38 C p 14 C p -0.00406824 +1eov 39 C p 15 C p 0.00048016 1eov 40 C s 13 C p -0.00093897 1eov 40 C s 14 C p 0.00287258 1eov 41 C s 13 C p -0.02306259 @@ -692,8 +975,19 @@ 1eov 42 C p 14 C p 0.03624265 1eov 43 C p 14 C p -0.09074670 1eov 44 C p 15 C p 0.02013053 +1eov 45 H s 13 C p -0.00024262 +1eov 45 H s 14 C p -0.00030060 1eov 46 H s 13 C p 0.00569515 1eov 46 H s 14 C p 0.05195639 +1eov 47 C s 13 C p -0.00000004 +1eov 47 C s 14 C p -0.00000017 +1eov 48 C s 13 C p -0.00008529 +1eov 48 C s 14 C p -0.00039134 +1eov 49 C p 13 C p 0.00001509 +1eov 50 C p 13 C p -0.00019062 +1eov 49 C p 14 C p -0.00019062 +1eov 50 C p 14 C p -0.00081804 +1eov 51 C p 15 C p 0.00005663 1eov 52 C s 13 C p -0.00000476 1eov 52 C s 14 C p 0.00000960 1eov 53 C s 13 C p -0.00152273 @@ -703,47 +997,141 @@ 1eov 54 C p 14 C p 0.00277198 1eov 55 C p 14 C p -0.00501418 1eov 56 C p 15 C p 0.00058071 +1eov 57 H s 13 C p 0.00004529 +1eov 57 H s 14 C p -0.00147734 1eov 58 H s 13 C p -0.00085251 1eov 58 H s 14 C p 0.00099155 +1eov 59 H s 13 C p -0.00000414 +1eov 59 H s 14 C p -0.00001769 1eov 60 H s 13 C p -0.00011575 1eov 60 H s 14 C p 0.00037677 +1eov 2 C s 16 C s 0.00158642 +1eov 3 C p 16 C s -0.00234748 +1eov 4 C p 16 C s -0.00287577 +1eov 6 C s 16 C s 0.00000058 +1eov 7 C s 16 C s 0.03557117 +1eov 8 C p 16 C s -0.04481702 +1eov 9 C p 16 C s 0.03839337 +1eov 12 C s 16 C s 0.00038919 +1eov 13 C p 16 C s -0.00097464 +1eov 14 C p 16 C s -0.00036196 1eov 16 C s 16 C s 1.00000000 1eov 17 C s 16 C s 0.24836239 +1eov 22 C s 16 C s 0.00170373 +1eov 23 C p 16 C s -0.00390110 +1eov 24 C p 16 C s 0.00065809 1eov 26 C s 16 C s 0.00000082 1eov 27 C s 16 C s 0.03728874 1eov 28 C p 16 C s -0.01013759 1eov 29 C p 16 C s -0.06099186 +1eov 31 H s 16 C s 0.00001119 1eov 32 H s 16 C s 0.06102076 +1eov 33 H s 16 C s 0.00008438 1eov 34 H s 16 C s 0.00527184 +1eov 36 C s 16 C s 0.00126083 +1eov 37 C p 16 C s -0.00093897 +1eov 38 C p 16 C s 0.00287258 1eov 41 C s 16 C s 0.00000212 1eov 42 C p 16 C s -0.00000372 1eov 43 C p 16 C s -0.00000677 +1eov 45 H s 16 C s 0.00131509 1eov 46 H s 16 C s 0.00000027 +1eov 48 C s 16 C s 0.00000298 +1eov 49 C p 16 C s -0.00000476 +1eov 50 C p 16 C s 0.00000960 1eov 53 C s 16 C s 0.00000004 1eov 54 C p 16 C s -0.00000004 1eov 55 C p 16 C s -0.00000017 +1eov 57 H s 16 C s 0.00000237 1eov 58 H s 16 C s 0.00000294 +1eov 59 H s 16 C s 0.00000028 +1eov 1 C s 17 C s 0.00158642 +1eov 2 C s 17 C s 0.05618847 +1eov 3 C p 17 C s -0.05279983 +1eov 4 C p 17 C s -0.06468219 +1eov 6 C s 17 C s 0.03557117 +1eov 7 C s 17 C s 0.35371041 +1eov 8 C p 17 C s -0.28849089 +1eov 9 C p 17 C s 0.24714128 +1eov 11 C s 17 C s 0.00038919 +1eov 12 C s 17 C s 0.02519187 +1eov 13 C p 17 C s -0.03809642 +1eov 14 C p 17 C s -0.01414813 +1eov 16 C s 17 C s 0.24836239 1eov 17 C s 17 C s 1.00000000 +1eov 21 C s 17 C s 0.00170373 +1eov 22 C s 17 C s 0.05855627 +1eov 23 C p 17 C s -0.08539477 +1eov 24 C p 17 C s 0.01440564 1eov 26 C s 17 C s 0.03728874 1eov 27 C s 17 C s 0.36341085 1eov 28 C p 17 C s -0.06345323 1eov 29 C p 17 C s -0.38176044 +1eov 31 H s 17 C s 0.00175463 1eov 32 H s 17 C s 0.48574945 +1eov 33 H s 17 C s 0.00610906 1eov 34 H s 17 C s 0.09534612 +1eov 35 C s 17 C s 0.00126083 +1eov 36 C s 17 C s 0.04921444 +1eov 37 C p 17 C s -0.02306259 +1eov 38 C p 17 C s 0.07055543 1eov 40 C s 17 C s 0.00000212 1eov 41 C s 17 C s 0.00144485 1eov 42 C p 17 C s -0.00138894 1eov 43 C p 17 C s -0.00252926 +1eov 45 H s 17 C s 0.03623781 1eov 46 H s 17 C s 0.00018766 +1eov 47 C s 17 C s 0.00000298 +1eov 48 C s 17 C s 0.00173815 +1eov 49 C p 17 C s -0.00152273 +1eov 50 C p 17 C s 0.00307343 1eov 52 C s 17 C s 0.00000004 1eov 53 C s 17 C s 0.00017692 1eov 54 C p 17 C s -0.00008529 1eov 55 C p 17 C s -0.00039134 +1eov 57 H s 17 C s 0.00068401 1eov 58 H s 17 C s 0.00077915 +1eov 59 H s 17 C s 0.00019170 1eov 60 H s 17 C s 0.00000753 +1eov 1 C s 18 C p 0.00234748 +1eov 1 C s 19 C p 0.00287577 +1eov 2 C s 18 C p 0.05279983 +1eov 2 C s 19 C p 0.06468219 +1eov 3 C p 18 C p -0.03131094 +1eov 4 C p 18 C p -0.06690995 +1eov 3 C p 19 C p -0.06690995 +1eov 4 C p 19 C p -0.05866033 +1eov 5 C p 20 C p 0.02330740 +1eov 6 C s 18 C p 0.04481702 +1eov 6 C s 19 C p -0.03839337 +1eov 7 C s 18 C p 0.28849089 +1eov 7 C s 19 C p -0.24714128 +1eov 8 C p 18 C p -0.10189816 +1eov 9 C p 18 C p 0.26261039 +1eov 8 C p 19 C p 0.26261039 +1eov 9 C p 19 C p -0.02032026 +1eov 10 C p 20 C p 0.20464999 +1eov 11 C s 18 C p 0.00097464 +1eov 11 C s 19 C p 0.00036196 +1eov 12 C s 18 C p 0.03809642 +1eov 12 C s 19 C p 0.01414813 +1eov 13 C p 18 C p -0.05237600 +1eov 14 C p 18 C p -0.02304990 +1eov 13 C p 19 C p -0.02304990 +1eov 14 C p 19 C p 0.00112989 +1eov 15 C p 20 C p 0.00969008 1eov 18 C p 18 C p 1.00000000 1eov 19 C p 19 C p 1.00000000 1eov 20 C p 20 C p 1.00000000 +1eov 21 C s 18 C p 0.00390110 +1eov 21 C s 19 C p -0.00065809 +1eov 22 C s 18 C p 0.08539477 +1eov 22 C s 19 C p -0.01440564 +1eov 23 C p 18 C p -0.11288491 +1eov 24 C p 18 C p 0.02315912 +1eov 23 C p 19 C p 0.02315912 +1eov 24 C p 19 C p 0.02049256 +1eov 25 C p 20 C p 0.02439938 1eov 26 C s 18 C p 0.01013759 1eov 26 C s 19 C p 0.06099186 1eov 27 C s 18 C p 0.06345323 @@ -753,10 +1141,23 @@ 1eov 28 C p 19 C p -0.08732635 1eov 29 C p 19 C p -0.31331614 1eov 30 C p 20 C p 0.21207467 +1eov 31 H s 18 C p 0.00297023 +1eov 31 H s 19 C p 0.00110041 1eov 32 H s 18 C p -0.43567252 1eov 32 H s 19 C p -0.16041073 +1eov 33 H s 18 C p 0.00963282 +1eov 33 H s 19 C p -0.00324981 1eov 34 H s 18 C p -0.03533851 1eov 34 H s 19 C p 0.11815431 +1eov 35 C s 18 C p 0.00093897 +1eov 35 C s 19 C p -0.00287258 +1eov 36 C s 18 C p 0.02306259 +1eov 36 C s 19 C p -0.07055543 +1eov 37 C p 18 C p 0.00828382 +1eov 38 C p 18 C p 0.03624265 +1eov 37 C p 19 C p 0.03624265 +1eov 38 C p 19 C p -0.09074670 +1eov 39 C p 20 C p 0.02013053 1eov 40 C s 18 C p 0.00000372 1eov 40 C s 19 C p 0.00000677 1eov 41 C s 18 C p 0.00138894 @@ -766,8 +1167,19 @@ 1eov 42 C p 19 C p -0.00249775 1eov 43 C p 19 C p -0.00406824 1eov 44 C p 20 C p 0.00048016 +1eov 45 H s 18 C p -0.00569515 +1eov 45 H s 19 C p -0.05195639 1eov 46 H s 18 C p 0.00024262 1eov 46 H s 19 C p 0.00030060 +1eov 47 C s 18 C p 0.00000476 +1eov 47 C s 19 C p -0.00000960 +1eov 48 C s 18 C p 0.00152273 +1eov 48 C s 19 C p -0.00307343 +1eov 49 C p 18 C p -0.00079266 +1eov 50 C p 18 C p 0.00277198 +1eov 49 C p 19 C p 0.00277198 +1eov 50 C p 19 C p -0.00501418 +1eov 51 C p 20 C p 0.00058071 1eov 52 C s 18 C p 0.00000004 1eov 52 C s 19 C p 0.00000017 1eov 53 C s 18 C p 0.00008529 @@ -777,35 +1189,136 @@ 1eov 54 C p 19 C p -0.00019062 1eov 55 C p 19 C p -0.00081804 1eov 56 C p 20 C p 0.00005663 +1eov 57 H s 18 C p 0.00085251 +1eov 57 H s 19 C p -0.00099155 1eov 58 H s 18 C p -0.00004529 1eov 58 H s 19 C p 0.00147734 +1eov 59 H s 18 C p 0.00011575 +1eov 59 H s 19 C p -0.00037677 1eov 60 H s 18 C p 0.00000414 1eov 60 H s 19 C p 0.00001769 +1eov 2 C s 21 C s 0.00156648 +1eov 3 C p 21 C s 0.00126819 +1eov 4 C p 21 C s -0.00344449 +1eov 6 C s 21 C s 0.00000058 +1eov 7 C s 21 C s 0.03557692 +1eov 8 C p 21 C s 0.05494002 +1eov 9 C p 21 C s 0.02157125 +1eov 11 C s 21 C s 0.00000082 +1eov 12 C s 21 C s 0.03728874 +1eov 13 C p 21 C s -0.01013759 +1eov 14 C p 21 C s -0.06099186 +1eov 17 C s 21 C s 0.00170373 +1eov 18 C p 21 C s 0.00390110 +1eov 19 C p 21 C s -0.00065809 +1eov 21 C s 21 C s 1.00000000 +1eov 22 C s 21 C s 0.24836239 1eov 27 C s 21 C s 0.00037959 1eov 28 C p 21 C s 0.00078457 1eov 29 C p 21 C s -0.00064573 +1eov 31 H s 21 C s 0.00526064 1eov 32 H s 21 C s 0.00008435 +1eov 33 H s 21 C s 0.06126406 1eov 34 H s 21 C s 0.00001099 +1eov 36 C s 21 C s 0.00105093 +1eov 37 C p 21 C s 0.00162169 +1eov 38 C p 21 C s 0.00198813 1eov 41 C s 21 C s 0.00000250 1eov 42 C p 21 C s 0.00000131 1eov 43 C p 21 C s -0.00000898 +1eov 45 H s 21 C s 0.00006428 1eov 46 H s 21 C s 0.00000552 +1eov 48 C s 21 C s 0.00012010 +1eov 49 C p 21 C s 0.00008248 +1eov 50 C p 21 C s 0.00034098 +1eov 57 H s 21 C s 0.00076401 +1eov 59 H s 21 C s 0.00000329 +1eov 1 C s 22 C s 0.00156648 +1eov 2 C s 22 C s 0.05577904 +1eov 3 C p 22 C s 0.02866212 +1eov 4 C p 22 C s -0.07784841 +1eov 6 C s 22 C s 0.03557692 +1eov 7 C s 22 C s 0.35374328 +1eov 8 C p 22 C s 0.35361990 +1eov 9 C p 22 C s 0.13884273 +1eov 11 C s 22 C s 0.03728874 +1eov 12 C s 22 C s 0.36341085 +1eov 13 C p 22 C s -0.06345323 +1eov 14 C p 22 C s -0.38176044 +1eov 16 C s 22 C s 0.00170373 +1eov 17 C s 22 C s 0.05855627 +1eov 18 C p 22 C s 0.08539477 +1eov 19 C p 22 C s -0.01440564 +1eov 21 C s 22 C s 0.24836239 +1eov 22 C s 22 C s 1.00000000 1eov 26 C s 22 C s 0.00037959 1eov 27 C s 22 C s 0.02483931 1eov 28 C p 22 C s 0.03097885 1eov 29 C p 22 C s -0.02549677 +1eov 31 H s 22 C s 0.09520044 1eov 32 H s 22 C s 0.00610765 +1eov 33 H s 22 C s 0.48672623 1eov 34 H s 22 C s 0.00173453 +1eov 35 C s 22 C s 0.00105093 +1eov 36 C s 22 C s 0.04432484 +1eov 37 C p 22 C s 0.04273885 +1eov 38 C p 22 C s 0.05239599 1eov 40 C s 22 C s 0.00000250 1eov 41 C s 22 C s 0.00158230 1eov 42 C p 22 C s 0.00045458 1eov 43 C p 22 C s -0.00310848 +1eov 45 H s 22 C s 0.00515280 1eov 46 H s 22 C s 0.00114126 +1eov 47 C s 22 C s 0.00012010 +1eov 48 C s 22 C s 0.01304826 +1eov 49 C p 22 C s 0.00523759 +1eov 50 C p 22 C s 0.02165256 1eov 53 C s 22 C s 0.00002499 1eov 54 C p 22 C s 0.00001818 1eov 55 C p 22 C s -0.00005985 +1eov 57 H s 22 C s 0.02519238 1eov 58 H s 22 C s 0.00002475 +1eov 59 H s 22 C s 0.00083477 1eov 60 H s 22 C s 0.00000176 +1eov 1 C s 23 C p -0.00126819 +1eov 1 C s 24 C p 0.00344449 +1eov 2 C s 23 C p -0.02866212 +1eov 2 C s 24 C p 0.07784841 +1eov 3 C p 23 C p 0.00691013 +1eov 4 C p 23 C p 0.04402519 +1eov 3 C p 24 C p 0.04402519 +1eov 4 C p 24 C p -0.09645639 +1eov 5 C p 25 C p 0.02311926 +1eov 6 C s 23 C p -0.05494002 +1eov 6 C s 24 C p -0.02157125 +1eov 7 C s 23 C p -0.35361990 +1eov 7 C s 24 C p -0.13884273 +1eov 8 C p 23 C p -0.25587393 +1eov 9 C p 23 C p -0.18082655 +1eov 8 C p 24 C p -0.18082655 +1eov 9 C p 24 C p 0.13367656 +1eov 10 C p 25 C p 0.20467497 +1eov 11 C s 23 C p 0.01013759 +1eov 11 C s 24 C p 0.06099186 +1eov 12 C s 23 C p 0.06345323 +1eov 12 C s 24 C p 0.38176044 +1eov 13 C p 23 C p 0.19755997 +1eov 14 C p 23 C p -0.08732635 +1eov 13 C p 24 C p -0.08732635 +1eov 14 C p 24 C p -0.31331614 +1eov 15 C p 25 C p 0.21207467 +1eov 16 C s 23 C p -0.00390110 +1eov 16 C s 24 C p 0.00065809 +1eov 17 C s 23 C p -0.08539477 +1eov 17 C s 24 C p 0.01440564 +1eov 18 C p 23 C p -0.11288491 +1eov 19 C p 23 C p 0.02315912 +1eov 18 C p 24 C p 0.02315912 +1eov 19 C p 24 C p 0.02049256 +1eov 20 C p 25 C p 0.02439938 +1eov 23 C p 23 C p 1.00000000 +1eov 24 C p 24 C p 1.00000000 +1eov 25 C p 25 C p 1.00000000 1eov 26 C s 23 C p -0.00078457 1eov 26 C s 24 C p 0.00064573 1eov 27 C s 23 C p -0.03097885 @@ -815,10 +1328,23 @@ 1eov 28 C p 24 C p 0.03424679 1eov 29 C p 24 C p -0.01864290 1eov 30 C p 25 C p 0.00954351 +1eov 31 H s 23 C p 0.07164787 +1eov 31 H s 24 C p 0.10017665 1eov 32 H s 23 C p -0.01016378 1eov 32 H s 24 C p 0.00007647 +1eov 33 H s 23 C p 0.36054241 +1eov 33 H s 24 C p -0.29342885 1eov 34 H s 23 C p -0.00242249 1eov 34 H s 24 C p 0.00198754 +1eov 35 C s 23 C p -0.00162169 +1eov 35 C s 24 C p -0.00198813 +1eov 36 C s 23 C p -0.04273885 +1eov 36 C s 24 C p -0.05239599 +1eov 37 C p 23 C p -0.02709252 +1eov 38 C p 23 C p -0.05520745 +1eov 37 C p 24 C p -0.05520745 +1eov 38 C p 24 C p -0.04974235 +1eov 39 C p 25 C p 0.01793961 1eov 40 C s 23 C p -0.00000131 1eov 40 C s 24 C p 0.00000898 1eov 41 C s 23 C p -0.00045458 @@ -828,8 +1354,19 @@ 1eov 42 C p 24 C p 0.00091838 1eov 43 C p 24 C p -0.00575278 1eov 44 C p 25 C p 0.00052719 +1eov 45 H s 23 C p -0.00667173 +1eov 45 H s 24 C p -0.00554480 1eov 46 H s 23 C p 0.00027079 1eov 46 H s 24 C p 0.00209825 +1eov 47 C s 23 C p -0.00008248 +1eov 47 C s 24 C p -0.00034098 +1eov 48 C s 23 C p -0.00523759 +1eov 48 C s 24 C p -0.02165256 +1eov 49 C p 23 C p 0.00254866 +1eov 50 C p 23 C p -0.00923685 +1eov 49 C p 24 C p -0.00923685 +1eov 50 C p 24 C p -0.03340281 +1eov 51 C p 25 C p 0.00478298 1eov 53 C s 23 C p -0.00001818 1eov 53 C s 24 C p 0.00005985 1eov 54 C p 23 C p -0.00000539 @@ -837,44 +1374,162 @@ 1eov 54 C p 24 C p 0.00004373 1eov 55 C p 24 C p -0.00013604 1eov 56 C p 25 C p 0.00000789 +1eov 57 H s 23 C p 0.00476106 +1eov 57 H s 24 C p -0.03728513 1eov 58 H s 23 C p -0.00002728 1eov 58 H s 24 C p 0.00004952 +1eov 59 H s 23 C p -0.00039290 +1eov 59 H s 24 C p -0.00152729 1eov 60 H s 23 C p -0.00000086 1eov 60 H s 24 C p 0.00000442 +1eov 1 C s 26 C s 0.00000058 +1eov 2 C s 26 C s 0.03557692 +1eov 3 C p 26 C s -0.05494002 +1eov 4 C p 26 C s -0.02157125 +1eov 7 C s 26 C s 0.00156648 +1eov 8 C p 26 C s -0.00126819 +1eov 9 C p 26 C s 0.00344449 +1eov 12 C s 26 C s 0.00170373 +1eov 13 C p 26 C s -0.00390110 +1eov 14 C p 26 C s 0.00065809 +1eov 16 C s 26 C s 0.00000082 +1eov 17 C s 26 C s 0.03728874 +1eov 18 C p 26 C s 0.01013759 +1eov 19 C p 26 C s 0.06099186 +1eov 22 C s 26 C s 0.00037959 +1eov 23 C p 26 C s -0.00078457 +1eov 24 C p 26 C s 0.00064573 1eov 26 C s 26 C s 1.00000000 1eov 27 C s 26 C s 0.24836239 +1eov 31 H s 26 C s 0.00008435 1eov 32 H s 26 C s 0.00526064 +1eov 33 H s 26 C s 0.00001099 1eov 34 H s 26 C s 0.06126406 +1eov 36 C s 26 C s 0.00000250 +1eov 37 C p 26 C s -0.00000131 +1eov 38 C p 26 C s 0.00000898 1eov 41 C s 26 C s 0.00105093 1eov 42 C p 26 C s -0.00162169 1eov 43 C p 26 C s -0.00198813 +1eov 45 H s 26 C s 0.00000552 1eov 46 H s 26 C s 0.00006428 1eov 53 C s 26 C s 0.00012010 1eov 54 C p 26 C s -0.00008248 1eov 55 C p 26 C s -0.00034098 1eov 58 H s 26 C s 0.00076401 1eov 60 H s 26 C s 0.00000329 +1eov 1 C s 27 C s 0.03557692 +1eov 2 C s 27 C s 0.35374328 +1eov 3 C p 27 C s -0.35361990 +1eov 4 C p 27 C s -0.13884273 +1eov 6 C s 27 C s 0.00156648 +1eov 7 C s 27 C s 0.05577904 +1eov 8 C p 27 C s -0.02866212 +1eov 9 C p 27 C s 0.07784841 +1eov 11 C s 27 C s 0.00170373 +1eov 12 C s 27 C s 0.05855627 +1eov 13 C p 27 C s -0.08539477 +1eov 14 C p 27 C s 0.01440564 +1eov 16 C s 27 C s 0.03728874 +1eov 17 C s 27 C s 0.36341085 +1eov 18 C p 27 C s 0.06345323 +1eov 19 C p 27 C s 0.38176044 +1eov 21 C s 27 C s 0.00037959 +1eov 22 C s 27 C s 0.02483931 +1eov 23 C p 27 C s -0.03097885 +1eov 24 C p 27 C s 0.02549677 +1eov 26 C s 27 C s 0.24836239 1eov 27 C s 27 C s 1.00000000 +1eov 31 H s 27 C s 0.00610765 1eov 32 H s 27 C s 0.09520044 +1eov 33 H s 27 C s 0.00173453 1eov 34 H s 27 C s 0.48672623 +1eov 35 C s 27 C s 0.00000250 +1eov 36 C s 27 C s 0.00158230 +1eov 37 C p 27 C s -0.00045458 +1eov 38 C p 27 C s 0.00310848 1eov 40 C s 27 C s 0.00105093 1eov 41 C s 27 C s 0.04432484 1eov 42 C p 27 C s -0.04273885 1eov 43 C p 27 C s -0.05239599 +1eov 45 H s 27 C s 0.00114126 1eov 46 H s 27 C s 0.00515280 +1eov 48 C s 27 C s 0.00002499 +1eov 49 C p 27 C s -0.00001818 +1eov 50 C p 27 C s 0.00005985 1eov 52 C s 27 C s 0.00012010 1eov 53 C s 27 C s 0.01304826 1eov 54 C p 27 C s -0.00523759 1eov 55 C p 27 C s -0.02165256 +1eov 57 H s 27 C s 0.00002475 1eov 58 H s 27 C s 0.02519238 +1eov 59 H s 27 C s 0.00000176 1eov 60 H s 27 C s 0.00083477 +1eov 1 C s 28 C p 0.05494002 +1eov 1 C s 29 C p 0.02157125 +1eov 2 C s 28 C p 0.35361990 +1eov 2 C s 29 C p 0.13884273 +1eov 3 C p 28 C p -0.25587393 +1eov 4 C p 28 C p -0.18082655 +1eov 3 C p 29 C p -0.18082655 +1eov 4 C p 29 C p 0.13367656 +1eov 5 C p 30 C p 0.20467497 +1eov 6 C s 28 C p 0.00126819 +1eov 6 C s 29 C p -0.00344449 +1eov 7 C s 28 C p 0.02866212 +1eov 7 C s 29 C p -0.07784841 +1eov 8 C p 28 C p 0.00691013 +1eov 9 C p 28 C p 0.04402519 +1eov 8 C p 29 C p 0.04402519 +1eov 9 C p 29 C p -0.09645639 +1eov 10 C p 30 C p 0.02311926 +1eov 11 C s 28 C p 0.00390110 +1eov 11 C s 29 C p -0.00065809 +1eov 12 C s 28 C p 0.08539477 +1eov 12 C s 29 C p -0.01440564 +1eov 13 C p 28 C p -0.11288491 +1eov 14 C p 28 C p 0.02315912 +1eov 13 C p 29 C p 0.02315912 +1eov 14 C p 29 C p 0.02049256 +1eov 15 C p 30 C p 0.02439938 +1eov 16 C s 28 C p -0.01013759 +1eov 16 C s 29 C p -0.06099186 +1eov 17 C s 28 C p -0.06345323 +1eov 17 C s 29 C p -0.38176044 +1eov 18 C p 28 C p 0.19755997 +1eov 19 C p 28 C p -0.08732635 +1eov 18 C p 29 C p -0.08732635 +1eov 19 C p 29 C p -0.31331614 +1eov 20 C p 30 C p 0.21207467 +1eov 21 C s 28 C p 0.00078457 +1eov 21 C s 29 C p -0.00064573 +1eov 22 C s 28 C p 0.03097885 +1eov 22 C s 29 C p -0.02549677 +1eov 23 C p 28 C p -0.03206671 +1eov 24 C p 28 C p 0.03424679 +1eov 23 C p 29 C p 0.03424679 +1eov 24 C p 29 C p -0.01864290 +1eov 25 C p 30 C p 0.00954351 1eov 28 C p 28 C p 1.00000000 1eov 29 C p 29 C p 1.00000000 1eov 30 C p 30 C p 1.00000000 +1eov 31 H s 28 C p 0.01016378 +1eov 31 H s 29 C p -0.00007647 1eov 32 H s 28 C p -0.07164787 1eov 32 H s 29 C p -0.10017665 +1eov 33 H s 28 C p 0.00242249 +1eov 33 H s 29 C p -0.00198754 1eov 34 H s 28 C p -0.36054241 1eov 34 H s 29 C p 0.29342885 +1eov 35 C s 28 C p 0.00000131 +1eov 35 C s 29 C p -0.00000898 +1eov 36 C s 28 C p 0.00045458 +1eov 36 C s 29 C p -0.00310848 +1eov 37 C p 28 C p 0.00039288 +1eov 38 C p 28 C p 0.00091838 +1eov 37 C p 29 C p 0.00091838 +1eov 38 C p 29 C p -0.00575278 +1eov 39 C p 30 C p 0.00052719 1eov 40 C s 28 C p 0.00162169 1eov 40 C s 29 C p 0.00198813 1eov 41 C s 28 C p 0.04273885 @@ -884,8 +1539,17 @@ 1eov 42 C p 29 C p -0.05520745 1eov 43 C p 29 C p -0.04974235 1eov 44 C p 30 C p 0.01793961 +1eov 45 H s 28 C p -0.00027079 +1eov 45 H s 29 C p -0.00209825 1eov 46 H s 28 C p 0.00667173 1eov 46 H s 29 C p 0.00554480 +1eov 48 C s 28 C p 0.00001818 +1eov 48 C s 29 C p -0.00005985 +1eov 49 C p 28 C p -0.00000539 +1eov 50 C p 28 C p 0.00004373 +1eov 49 C p 29 C p 0.00004373 +1eov 50 C p 29 C p -0.00013604 +1eov 51 C p 30 C p 0.00000789 1eov 52 C s 28 C p 0.00008248 1eov 52 C s 29 C p 0.00034098 1eov 53 C s 28 C p 0.00523759 @@ -895,65 +1559,352 @@ 1eov 54 C p 29 C p -0.00923685 1eov 55 C p 29 C p -0.03340281 1eov 56 C p 30 C p 0.00478298 +1eov 57 H s 28 C p 0.00002728 +1eov 57 H s 29 C p -0.00004952 1eov 58 H s 28 C p -0.00476106 1eov 58 H s 29 C p 0.03728513 +1eov 59 H s 28 C p 0.00000086 +1eov 59 H s 29 C p -0.00000442 1eov 60 H s 28 C p 0.00039290 1eov 60 H s 29 C p 0.00152729 +1eov 1 C s 31 H s 0.00509264 +1eov 2 C s 31 H s 0.09300775 +1eov 3 C p 31 H s 0.11684634 +1eov 4 C p 31 H s -0.03019589 +1eov 6 C s 31 H s 0.00007985 +1eov 7 C s 31 H s 0.00590154 +1eov 8 C p 31 H s 0.00737838 +1eov 9 C p 31 H s 0.00651680 +1eov 11 C s 31 H s 0.06102076 +1eov 12 C s 31 H s 0.48574945 +1eov 13 C p 31 H s 0.43567252 +1eov 14 C p 31 H s 0.16041073 +1eov 16 C s 31 H s 0.00001119 +1eov 17 C s 31 H s 0.00175463 +1eov 18 C p 31 H s 0.00297023 +1eov 19 C p 31 H s 0.00110041 +1eov 21 C s 31 H s 0.00526064 +1eov 22 C s 31 H s 0.09520044 +1eov 23 C p 31 H s 0.07164787 +1eov 24 C p 31 H s 0.10017665 +1eov 26 C s 31 H s 0.00008435 +1eov 27 C s 31 H s 0.00610765 +1eov 28 C p 31 H s 0.01016378 +1eov 29 C p 31 H s -0.00007647 +1eov 31 H s 31 H s 1.00000000 1eov 32 H s 31 H s 0.00010566 +1eov 33 H s 31 H s 0.05049356 1eov 34 H s 31 H s 0.00071247 +1eov 35 C s 31 H s 0.00000018 +1eov 36 C s 31 H s 0.00014665 +1eov 37 C p 31 H s 0.00018643 +1eov 38 C p 31 H s 0.00024260 1eov 40 C s 31 H s 0.00112513 1eov 41 C s 31 H s 0.03261996 1eov 42 C p 31 H s 0.03180630 1eov 43 C p 31 H s -0.03531792 +1eov 45 H s 31 H s 0.00001429 1eov 46 H s 31 H s 0.06152635 +1eov 47 C s 31 H s 0.00000002 +1eov 48 C s 31 H s 0.00003531 +1eov 49 C p 31 H s 0.00003055 +1eov 50 C p 31 H s 0.00007317 1eov 52 C s 31 H s 0.00000570 1eov 53 C s 31 H s 0.00116395 1eov 54 C p 31 H s 0.00144175 1eov 55 C p 31 H s -0.00160185 +1eov 57 H s 31 H s 0.00029688 1eov 58 H s 31 H s 0.00023842 +1eov 59 H s 31 H s 0.00000158 1eov 60 H s 31 H s 0.00025053 +1eov 1 C s 32 H s 0.00007985 +1eov 2 C s 32 H s 0.00590154 +1eov 3 C p 32 H s -0.00737838 +1eov 4 C p 32 H s -0.00651680 +1eov 6 C s 32 H s 0.00509264 +1eov 7 C s 32 H s 0.09300775 +1eov 8 C p 32 H s -0.11684634 +1eov 9 C p 32 H s 0.03019589 +1eov 11 C s 32 H s 0.00001119 +1eov 12 C s 32 H s 0.00175463 +1eov 13 C p 32 H s -0.00297023 +1eov 14 C p 32 H s -0.00110041 +1eov 16 C s 32 H s 0.06102076 +1eov 17 C s 32 H s 0.48574945 +1eov 18 C p 32 H s -0.43567252 +1eov 19 C p 32 H s -0.16041073 +1eov 21 C s 32 H s 0.00008435 +1eov 22 C s 32 H s 0.00610765 +1eov 23 C p 32 H s -0.01016378 +1eov 24 C p 32 H s 0.00007647 +1eov 26 C s 32 H s 0.00526064 +1eov 27 C s 32 H s 0.09520044 +1eov 28 C p 32 H s -0.07164787 +1eov 29 C p 32 H s -0.10017665 +1eov 31 H s 32 H s 0.00010566 1eov 32 H s 32 H s 1.00000000 +1eov 33 H s 32 H s 0.00071247 1eov 34 H s 32 H s 0.05049356 +1eov 35 C s 32 H s 0.00112513 +1eov 36 C s 32 H s 0.03261996 +1eov 37 C p 32 H s -0.03180630 +1eov 38 C p 32 H s 0.03531792 1eov 40 C s 32 H s 0.00000018 1eov 41 C s 32 H s 0.00014665 1eov 42 C p 32 H s -0.00018643 1eov 43 C p 32 H s -0.00024260 +1eov 45 H s 32 H s 0.06152635 1eov 46 H s 32 H s 0.00001429 +1eov 47 C s 32 H s 0.00000570 +1eov 48 C s 32 H s 0.00116395 +1eov 49 C p 32 H s -0.00144175 +1eov 50 C p 32 H s 0.00160185 1eov 52 C s 32 H s 0.00000002 1eov 53 C s 32 H s 0.00003531 1eov 54 C p 32 H s -0.00003055 1eov 55 C p 32 H s -0.00007317 +1eov 57 H s 32 H s 0.00023842 1eov 58 H s 32 H s 0.00029688 +1eov 59 H s 32 H s 0.00025053 1eov 60 H s 32 H s 0.00000158 +1eov 1 C s 33 H s 0.00007948 +1eov 2 C s 33 H s 0.00588416 +1eov 3 C p 33 H s 0.00484048 +1eov 4 C p 33 H s -0.00854096 +1eov 6 C s 33 H s 0.00508021 +1eov 7 C s 33 H s 0.09284483 +1eov 8 C p 33 H s 0.12012197 +1eov 9 C p 33 H s -0.00954436 +1eov 11 C s 33 H s 0.00527184 +1eov 12 C s 33 H s 0.09534612 +1eov 13 C p 33 H s 0.03533851 +1eov 14 C p 33 H s -0.11815431 +1eov 16 C s 33 H s 0.00008438 +1eov 17 C s 33 H s 0.00610906 +1eov 18 C p 33 H s 0.00963282 +1eov 19 C p 33 H s -0.00324981 +1eov 21 C s 33 H s 0.06126406 +1eov 22 C s 33 H s 0.48672623 +1eov 23 C p 33 H s 0.36054241 +1eov 24 C p 33 H s -0.29342885 +1eov 26 C s 33 H s 0.00001099 +1eov 27 C s 33 H s 0.00173453 +1eov 28 C p 33 H s 0.00242249 +1eov 29 C p 33 H s -0.00198754 +1eov 31 H s 33 H s 0.05049356 +1eov 32 H s 33 H s 0.00071247 +1eov 33 H s 33 H s 1.00000000 1eov 34 H s 33 H s 0.00010487 +1eov 35 C s 33 H s 0.00086755 +1eov 36 C s 33 H s 0.02741238 +1eov 37 C p 33 H s 0.03595560 +1eov 38 C p 33 H s 0.01883758 1eov 40 C s 33 H s 0.00000023 1eov 41 C s 33 H s 0.00017046 1eov 42 C p 33 H s 0.00010566 1eov 43 C p 33 H s -0.00033655 +1eov 45 H s 33 H s 0.00247869 1eov 46 H s 33 H s 0.00024029 +1eov 47 C s 33 H s 0.00089160 +1eov 48 C s 33 H s 0.02791634 +1eov 49 C p 33 H s 0.02333733 +1eov 50 C p 33 H s 0.03403698 1eov 53 C s 33 H s 0.00000177 1eov 54 C p 33 H s 0.00000176 1eov 55 C p 33 H s -0.00000419 +1eov 57 H s 33 H s 0.08943587 1eov 58 H s 33 H s 0.00000137 +1eov 59 H s 33 H s 0.00263748 1eov 60 H s 33 H s 0.00000016 +1eov 1 C s 34 H s 0.00508021 +1eov 2 C s 34 H s 0.09284483 +1eov 3 C p 34 H s -0.12012197 +1eov 4 C p 34 H s 0.00954436 +1eov 6 C s 34 H s 0.00007948 +1eov 7 C s 34 H s 0.00588416 +1eov 8 C p 34 H s -0.00484048 +1eov 9 C p 34 H s 0.00854096 +1eov 11 C s 34 H s 0.00008438 +1eov 12 C s 34 H s 0.00610906 +1eov 13 C p 34 H s -0.00963282 +1eov 14 C p 34 H s 0.00324981 +1eov 16 C s 34 H s 0.00527184 +1eov 17 C s 34 H s 0.09534612 +1eov 18 C p 34 H s -0.03533851 +1eov 19 C p 34 H s 0.11815431 +1eov 21 C s 34 H s 0.00001099 +1eov 22 C s 34 H s 0.00173453 +1eov 23 C p 34 H s -0.00242249 +1eov 24 C p 34 H s 0.00198754 +1eov 26 C s 34 H s 0.06126406 +1eov 27 C s 34 H s 0.48672623 +1eov 28 C p 34 H s -0.36054241 +1eov 29 C p 34 H s 0.29342885 +1eov 31 H s 34 H s 0.00071247 +1eov 32 H s 34 H s 0.05049356 +1eov 33 H s 34 H s 0.00010487 1eov 34 H s 34 H s 1.00000000 +1eov 35 C s 34 H s 0.00000023 +1eov 36 C s 34 H s 0.00017046 +1eov 37 C p 34 H s -0.00010566 +1eov 38 C p 34 H s 0.00033655 1eov 40 C s 34 H s 0.00086755 1eov 41 C s 34 H s 0.02741238 1eov 42 C p 34 H s -0.03595560 1eov 43 C p 34 H s -0.01883758 +1eov 45 H s 34 H s 0.00024029 1eov 46 H s 34 H s 0.00247869 +1eov 48 C s 34 H s 0.00000177 +1eov 49 C p 34 H s -0.00000176 +1eov 50 C p 34 H s 0.00000419 1eov 52 C s 34 H s 0.00089160 1eov 53 C s 34 H s 0.02791634 1eov 54 C p 34 H s -0.02333733 1eov 55 C p 34 H s -0.03403698 +1eov 57 H s 34 H s 0.00000137 1eov 58 H s 34 H s 0.08943587 +1eov 59 H s 34 H s 0.00000016 1eov 60 H s 34 H s 0.00263748 +1eov 2 C s 35 C s 0.00000008 +1eov 3 C p 35 C s -0.00000006 +1eov 4 C p 35 C s -0.00000035 +1eov 6 C s 35 C s 0.00000014 +1eov 7 C s 35 C s 0.02955008 +1eov 8 C p 35 C s -0.00979645 +1eov 9 C p 35 C s -0.04830601 +1eov 12 C s 35 C s 0.00000212 +1eov 13 C p 35 C s -0.00000372 +1eov 14 C p 35 C s -0.00000677 +1eov 17 C s 35 C s 0.00126083 +1eov 18 C p 35 C s 0.00093897 +1eov 19 C p 35 C s -0.00287258 +1eov 22 C s 35 C s 0.00105093 +1eov 23 C p 35 C s -0.00162169 +1eov 24 C p 35 C s -0.00198813 +1eov 27 C s 35 C s 0.00000250 +1eov 28 C p 35 C s 0.00000131 +1eov 29 C p 35 C s -0.00000898 +1eov 31 H s 35 C s 0.00000018 +1eov 32 H s 35 C s 0.00112513 +1eov 33 H s 35 C s 0.00086755 +1eov 34 H s 35 C s 0.00000023 +1eov 35 C s 35 C s 1.00000000 +1eov 36 C s 35 C s 0.24836239 +1eov 45 H s 35 C s 0.06069832 +1eov 47 C s 35 C s 0.00000224 +1eov 48 C s 35 C s 0.04283572 +1eov 49 C p 35 C s -0.04749158 +1eov 50 C p 35 C s 0.05282630 +1eov 57 H s 35 C s 0.00560597 +1eov 59 H s 35 C s 0.00577180 +1eov 1 C s 36 C s 0.00000008 +1eov 2 C s 36 C s 0.00025963 +1eov 3 C p 36 C s -0.00010165 +1eov 4 C p 36 C s -0.00056623 +1eov 6 C s 36 C s 0.02955008 +1eov 7 C s 36 C s 0.31760627 +1eov 8 C p 36 C s -0.06995906 +1eov 9 C p 36 C s -0.34496609 +1eov 11 C s 36 C s 0.00000212 +1eov 12 C s 36 C s 0.00144485 +1eov 13 C p 36 C s -0.00138894 +1eov 14 C p 36 C s -0.00252926 +1eov 16 C s 36 C s 0.00126083 +1eov 17 C s 36 C s 0.04921444 +1eov 18 C p 36 C s 0.02306259 +1eov 19 C p 36 C s -0.07055543 +1eov 21 C s 36 C s 0.00105093 +1eov 22 C s 36 C s 0.04432484 +1eov 23 C p 36 C s -0.04273885 +1eov 24 C p 36 C s -0.05239599 +1eov 26 C s 36 C s 0.00000250 +1eov 27 C s 36 C s 0.00158230 +1eov 28 C p 36 C s 0.00045458 +1eov 29 C p 36 C s -0.00310848 +1eov 31 H s 36 C s 0.00014665 +1eov 32 H s 36 C s 0.03261996 +1eov 33 H s 36 C s 0.02741238 +1eov 34 H s 36 C s 0.00017046 +1eov 35 C s 36 C s 0.24836239 +1eov 36 C s 36 C s 1.00000000 1eov 41 C s 36 C s 0.00000058 1eov 42 C p 36 C s -0.00000031 1eov 43 C p 36 C s -0.00000168 +1eov 45 H s 36 C s 0.48445018 1eov 46 H s 36 C s 0.00000026 +1eov 47 C s 36 C s 0.04283572 +1eov 48 C s 36 C s 0.39315379 +1eov 49 C p 36 C s -0.27265559 +1eov 50 C p 36 C s 0.30328297 1eov 55 C p 36 C s -0.00000002 +1eov 57 H s 36 C s 0.09965606 1eov 58 H s 36 C s 0.00000008 +1eov 59 H s 36 C s 0.10177202 +1eov 1 C s 37 C p 0.00000006 +1eov 1 C s 38 C p 0.00000035 +1eov 2 C s 37 C p 0.00010165 +1eov 2 C s 38 C p 0.00056623 +1eov 3 C p 37 C p 0.00004318 +1eov 4 C p 37 C p -0.00022448 +1eov 3 C p 38 C p -0.00022448 +1eov 4 C p 38 C p -0.00116687 +1eov 5 C p 39 C p 0.00008348 +1eov 6 C s 37 C p 0.00979645 +1eov 6 C s 38 C p 0.04830601 +1eov 7 C s 37 C p 0.06995906 +1eov 7 C s 38 C p 0.34496609 +1eov 8 C p 37 C p 0.15824148 +1eov 9 C p 37 C p -0.09696631 +1eov 8 C p 38 C p -0.09696631 +1eov 9 C p 38 C p -0.30023182 +1eov 10 C p 39 C p 0.17790623 +1eov 11 C s 37 C p 0.00000372 +1eov 11 C s 38 C p 0.00000677 +1eov 12 C s 37 C p 0.00138894 +1eov 12 C s 38 C p 0.00252926 +1eov 13 C p 37 C p -0.00089148 +1eov 14 C p 37 C p -0.00249775 +1eov 13 C p 38 C p -0.00249775 +1eov 14 C p 38 C p -0.00406824 +1eov 15 C p 39 C p 0.00048016 +1eov 16 C s 37 C p -0.00093897 +1eov 16 C s 38 C p 0.00287258 +1eov 17 C s 37 C p -0.02306259 +1eov 17 C s 38 C p 0.07055543 +1eov 18 C p 37 C p 0.00828382 +1eov 19 C p 37 C p 0.03624265 +1eov 18 C p 38 C p 0.03624265 +1eov 19 C p 38 C p -0.09074670 +1eov 20 C p 39 C p 0.02013053 +1eov 21 C s 37 C p 0.00162169 +1eov 21 C s 38 C p 0.00198813 +1eov 22 C s 37 C p 0.04273885 +1eov 22 C s 38 C p 0.05239599 +1eov 23 C p 37 C p -0.02709252 +1eov 24 C p 37 C p -0.05520745 +1eov 23 C p 38 C p -0.05520745 +1eov 24 C p 38 C p -0.04974235 +1eov 25 C p 39 C p 0.01793961 +1eov 26 C s 37 C p -0.00000131 +1eov 26 C s 38 C p 0.00000898 +1eov 27 C s 37 C p -0.00045458 +1eov 27 C s 38 C p 0.00310848 +1eov 28 C p 37 C p 0.00039288 +1eov 29 C p 37 C p 0.00091838 +1eov 28 C p 38 C p 0.00091838 +1eov 29 C p 38 C p -0.00575278 +1eov 30 C p 39 C p 0.00052719 +1eov 31 H s 37 C p 0.00018643 +1eov 31 H s 38 C p 0.00024260 +1eov 32 H s 37 C p -0.03180630 +1eov 32 H s 38 C p 0.03531792 +1eov 33 H s 37 C p 0.03595560 +1eov 33 H s 38 C p 0.01883758 +1eov 34 H s 37 C p -0.00010566 +1eov 34 H s 38 C p 0.00033655 +1eov 37 C p 37 C p 1.00000000 +1eov 38 C p 38 C p 1.00000000 +1eov 39 C p 39 C p 1.00000000 1eov 41 C s 37 C p 0.00000031 1eov 41 C s 38 C p 0.00000168 1eov 42 C p 37 C p 0.00000002 @@ -961,12 +1912,50 @@ 1eov 42 C p 38 C p -0.00000090 1eov 43 C p 38 C p -0.00000465 1eov 44 C p 39 C p 0.00000018 +1eov 45 H s 37 C p -0.45129445 +1eov 45 H s 38 C p -0.10556299 1eov 46 H s 37 C p 0.00000024 1eov 46 H s 38 C p 0.00000068 +1eov 47 C s 37 C p 0.04749158 +1eov 47 C s 38 C p -0.05282630 +1eov 48 C s 37 C p 0.27265559 +1eov 48 C s 38 C p -0.30328297 +1eov 49 C p 37 C p -0.01649701 +1eov 50 C p 37 C p 0.28028940 +1eov 49 C p 38 C p 0.28028940 +1eov 50 C p 38 C p -0.07628724 +1eov 51 C p 39 C p 0.23548705 1eov 53 C s 38 C p 0.00000002 1eov 55 C p 38 C p -0.00000007 +1eov 57 H s 37 C p 0.11842404 +1eov 57 H s 38 C p -0.04900979 1eov 58 H s 37 C p -0.00000003 1eov 58 H s 38 C p 0.00000023 +1eov 59 H s 37 C p 0.03568903 +1eov 59 H s 38 C p -0.12555351 +1eov 1 C s 40 C s 0.00000014 +1eov 2 C s 40 C s 0.02955008 +1eov 3 C p 40 C s 0.00979645 +1eov 4 C p 40 C s 0.04830601 +1eov 7 C s 40 C s 0.00000008 +1eov 8 C p 40 C s 0.00000006 +1eov 9 C p 40 C s 0.00000035 +1eov 12 C s 40 C s 0.00126083 +1eov 13 C p 40 C s -0.00093897 +1eov 14 C p 40 C s 0.00287258 +1eov 17 C s 40 C s 0.00000212 +1eov 18 C p 40 C s 0.00000372 +1eov 19 C p 40 C s 0.00000677 +1eov 22 C s 40 C s 0.00000250 +1eov 23 C p 40 C s -0.00000131 +1eov 24 C p 40 C s 0.00000898 +1eov 27 C s 40 C s 0.00105093 +1eov 28 C p 40 C s 0.00162169 +1eov 29 C p 40 C s 0.00198813 +1eov 31 H s 40 C s 0.00112513 +1eov 32 H s 40 C s 0.00000018 +1eov 33 H s 40 C s 0.00000023 +1eov 34 H s 40 C s 0.00086755 1eov 40 C s 40 C s 1.00000000 1eov 41 C s 40 C s 0.24836239 1eov 46 H s 40 C s 0.06069832 @@ -976,19 +1965,127 @@ 1eov 55 C p 40 C s -0.05282630 1eov 58 H s 40 C s 0.00560597 1eov 60 H s 40 C s 0.00577180 +1eov 1 C s 41 C s 0.02955008 +1eov 2 C s 41 C s 0.31760627 +1eov 3 C p 41 C s 0.06995906 +1eov 4 C p 41 C s 0.34496609 +1eov 6 C s 41 C s 0.00000008 +1eov 7 C s 41 C s 0.00025963 +1eov 8 C p 41 C s 0.00010165 +1eov 9 C p 41 C s 0.00056623 +1eov 11 C s 41 C s 0.00126083 +1eov 12 C s 41 C s 0.04921444 +1eov 13 C p 41 C s -0.02306259 +1eov 14 C p 41 C s 0.07055543 +1eov 16 C s 41 C s 0.00000212 +1eov 17 C s 41 C s 0.00144485 +1eov 18 C p 41 C s 0.00138894 +1eov 19 C p 41 C s 0.00252926 +1eov 21 C s 41 C s 0.00000250 +1eov 22 C s 41 C s 0.00158230 +1eov 23 C p 41 C s -0.00045458 +1eov 24 C p 41 C s 0.00310848 +1eov 26 C s 41 C s 0.00105093 +1eov 27 C s 41 C s 0.04432484 +1eov 28 C p 41 C s 0.04273885 +1eov 29 C p 41 C s 0.05239599 +1eov 31 H s 41 C s 0.03261996 +1eov 32 H s 41 C s 0.00014665 +1eov 33 H s 41 C s 0.00017046 +1eov 34 H s 41 C s 0.02741238 +1eov 36 C s 41 C s 0.00000058 +1eov 37 C p 41 C s 0.00000031 +1eov 38 C p 41 C s 0.00000168 +1eov 40 C s 41 C s 0.24836239 1eov 41 C s 41 C s 1.00000000 +1eov 45 H s 41 C s 0.00000026 1eov 46 H s 41 C s 0.48445018 +1eov 50 C p 41 C s 0.00000002 1eov 52 C s 41 C s 0.04283572 1eov 53 C s 41 C s 0.39315379 1eov 54 C p 41 C s 0.27265559 1eov 55 C p 41 C s -0.30328297 +1eov 57 H s 41 C s 0.00000008 1eov 58 H s 41 C s 0.09965606 1eov 60 H s 41 C s 0.10177202 +1eov 1 C s 42 C p -0.00979645 +1eov 1 C s 43 C p -0.04830601 +1eov 2 C s 42 C p -0.06995906 +1eov 2 C s 43 C p -0.34496609 +1eov 3 C p 42 C p 0.15824148 +1eov 4 C p 42 C p -0.09696631 +1eov 3 C p 43 C p -0.09696631 +1eov 4 C p 43 C p -0.30023182 +1eov 5 C p 44 C p 0.17790623 +1eov 6 C s 42 C p -0.00000006 +1eov 6 C s 43 C p -0.00000035 +1eov 7 C s 42 C p -0.00010165 +1eov 7 C s 43 C p -0.00056623 +1eov 8 C p 42 C p 0.00004318 +1eov 9 C p 42 C p -0.00022448 +1eov 8 C p 43 C p -0.00022448 +1eov 9 C p 43 C p -0.00116687 +1eov 10 C p 44 C p 0.00008348 +1eov 11 C s 42 C p 0.00093897 +1eov 11 C s 43 C p -0.00287258 +1eov 12 C s 42 C p 0.02306259 +1eov 12 C s 43 C p -0.07055543 +1eov 13 C p 42 C p 0.00828382 +1eov 14 C p 42 C p 0.03624265 +1eov 13 C p 43 C p 0.03624265 +1eov 14 C p 43 C p -0.09074670 +1eov 15 C p 44 C p 0.02013053 +1eov 16 C s 42 C p -0.00000372 +1eov 16 C s 43 C p -0.00000677 +1eov 17 C s 42 C p -0.00138894 +1eov 17 C s 43 C p -0.00252926 +1eov 18 C p 42 C p -0.00089148 +1eov 19 C p 42 C p -0.00249775 +1eov 18 C p 43 C p -0.00249775 +1eov 19 C p 43 C p -0.00406824 +1eov 20 C p 44 C p 0.00048016 +1eov 21 C s 42 C p 0.00000131 +1eov 21 C s 43 C p -0.00000898 +1eov 22 C s 42 C p 0.00045458 +1eov 22 C s 43 C p -0.00310848 +1eov 23 C p 42 C p 0.00039288 +1eov 24 C p 42 C p 0.00091838 +1eov 23 C p 43 C p 0.00091838 +1eov 24 C p 43 C p -0.00575278 +1eov 25 C p 44 C p 0.00052719 +1eov 26 C s 42 C p -0.00162169 +1eov 26 C s 43 C p -0.00198813 +1eov 27 C s 42 C p -0.04273885 +1eov 27 C s 43 C p -0.05239599 +1eov 28 C p 42 C p -0.02709252 +1eov 29 C p 42 C p -0.05520745 +1eov 28 C p 43 C p -0.05520745 +1eov 29 C p 43 C p -0.04974235 +1eov 30 C p 44 C p 0.01793961 +1eov 31 H s 42 C p 0.03180630 +1eov 31 H s 43 C p -0.03531792 +1eov 32 H s 42 C p -0.00018643 +1eov 32 H s 43 C p -0.00024260 +1eov 33 H s 42 C p 0.00010566 +1eov 33 H s 43 C p -0.00033655 +1eov 34 H s 42 C p -0.03595560 +1eov 34 H s 43 C p -0.01883758 +1eov 36 C s 42 C p -0.00000031 +1eov 36 C s 43 C p -0.00000168 +1eov 37 C p 42 C p 0.00000002 +1eov 38 C p 42 C p -0.00000090 +1eov 37 C p 43 C p -0.00000090 +1eov 38 C p 43 C p -0.00000465 +1eov 39 C p 44 C p 0.00000018 1eov 42 C p 42 C p 1.00000000 1eov 43 C p 43 C p 1.00000000 1eov 44 C p 44 C p 1.00000000 +1eov 45 H s 42 C p -0.00000024 +1eov 45 H s 43 C p -0.00000068 1eov 46 H s 42 C p 0.45129445 1eov 46 H s 43 C p 0.10556299 +1eov 48 C s 43 C p -0.00000002 +1eov 50 C p 43 C p -0.00000007 1eov 52 C s 42 C p -0.04749158 1eov 52 C s 43 C p 0.05282630 1eov 53 C s 42 C p -0.27265559 @@ -998,27 +2095,373 @@ 1eov 54 C p 43 C p 0.28028940 1eov 55 C p 43 C p -0.07628724 1eov 56 C p 44 C p 0.23548705 +1eov 57 H s 42 C p 0.00000003 +1eov 57 H s 43 C p -0.00000023 1eov 58 H s 42 C p -0.11842404 1eov 58 H s 43 C p 0.04900979 1eov 60 H s 42 C p -0.03568903 1eov 60 H s 43 C p 0.12555351 +1eov 1 C s 45 H s 0.00000007 +1eov 2 C s 45 H s 0.00008155 +1eov 3 C p 45 H s -0.00006594 +1eov 4 C p 45 H s -0.00016267 +1eov 6 C s 45 H s 0.00486942 +1eov 7 C s 45 H s 0.09006704 +1eov 8 C p 45 H s -0.07313632 +1eov 9 C p 45 H s -0.09176940 +1eov 11 C s 45 H s 0.00000027 +1eov 12 C s 45 H s 0.00018766 +1eov 13 C p 45 H s -0.00024262 +1eov 14 C p 45 H s -0.00030060 +1eov 16 C s 45 H s 0.00131509 +1eov 17 C s 45 H s 0.03623781 +1eov 18 C p 45 H s -0.00569515 +1eov 19 C p 45 H s -0.05195639 +1eov 21 C s 45 H s 0.00006428 +1eov 22 C s 45 H s 0.00515280 +1eov 23 C p 45 H s -0.00667173 +1eov 24 C p 45 H s -0.00554480 +1eov 26 C s 45 H s 0.00000552 +1eov 27 C s 45 H s 0.00114126 +1eov 28 C p 45 H s -0.00027079 +1eov 29 C p 45 H s -0.00209825 +1eov 31 H s 45 H s 0.00001429 +1eov 32 H s 45 H s 0.06152635 +1eov 33 H s 45 H s 0.00247869 +1eov 34 H s 45 H s 0.00024029 +1eov 35 C s 45 H s 0.06069832 +1eov 36 C s 45 H s 0.48445018 +1eov 37 C p 45 H s -0.45129445 +1eov 38 C p 45 H s -0.10556299 +1eov 41 C s 45 H s 0.00000026 +1eov 42 C p 45 H s -0.00000024 +1eov 43 C p 45 H s -0.00000068 +1eov 45 H s 45 H s 1.00000000 1eov 46 H s 45 H s 0.00000006 +1eov 47 C s 45 H s 0.00610975 +1eov 48 C s 45 H s 0.10603987 +1eov 49 C p 45 H s -0.12644547 +1eov 50 C p 45 H s 0.04804938 1eov 55 C p 45 H s -0.00000003 +1eov 57 H s 45 H s 0.01461637 1eov 58 H s 45 H s 0.00000015 +1eov 59 H s 45 H s 0.05493265 +1eov 1 C s 46 H s 0.00486942 +1eov 2 C s 46 H s 0.09006704 +1eov 3 C p 46 H s 0.07313632 +1eov 4 C p 46 H s 0.09176940 +1eov 6 C s 46 H s 0.00000007 +1eov 7 C s 46 H s 0.00008155 +1eov 8 C p 46 H s 0.00006594 +1eov 9 C p 46 H s 0.00016267 +1eov 11 C s 46 H s 0.00131509 +1eov 12 C s 46 H s 0.03623781 +1eov 13 C p 46 H s 0.00569515 +1eov 14 C p 46 H s 0.05195639 +1eov 16 C s 46 H s 0.00000027 +1eov 17 C s 46 H s 0.00018766 +1eov 18 C p 46 H s 0.00024262 +1eov 19 C p 46 H s 0.00030060 +1eov 21 C s 46 H s 0.00000552 +1eov 22 C s 46 H s 0.00114126 +1eov 23 C p 46 H s 0.00027079 +1eov 24 C p 46 H s 0.00209825 +1eov 26 C s 46 H s 0.00006428 +1eov 27 C s 46 H s 0.00515280 +1eov 28 C p 46 H s 0.00667173 +1eov 29 C p 46 H s 0.00554480 +1eov 31 H s 46 H s 0.06152635 +1eov 32 H s 46 H s 0.00001429 +1eov 33 H s 46 H s 0.00024029 +1eov 34 H s 46 H s 0.00247869 +1eov 36 C s 46 H s 0.00000026 +1eov 37 C p 46 H s 0.00000024 +1eov 38 C p 46 H s 0.00000068 +1eov 40 C s 46 H s 0.06069832 +1eov 41 C s 46 H s 0.48445018 +1eov 42 C p 46 H s 0.45129445 +1eov 43 C p 46 H s 0.10556299 +1eov 45 H s 46 H s 0.00000006 1eov 46 H s 46 H s 1.00000000 +1eov 50 C p 46 H s 0.00000003 1eov 52 C s 46 H s 0.00610975 1eov 53 C s 46 H s 0.10603987 1eov 54 C p 46 H s 0.12644547 1eov 55 C p 46 H s -0.04804938 +1eov 57 H s 46 H s 0.00000015 1eov 58 H s 46 H s 0.01461637 1eov 60 H s 46 H s 0.05493265 +1eov 7 C s 47 C s 0.00115883 +1eov 8 C p 47 C s 0.00066296 +1eov 9 C p 47 C s -0.00272201 +1eov 12 C s 47 C s 0.00000004 +1eov 13 C p 47 C s -0.00000004 +1eov 14 C p 47 C s -0.00000017 +1eov 17 C s 47 C s 0.00000298 +1eov 18 C p 47 C s 0.00000476 +1eov 19 C p 47 C s -0.00000960 +1eov 22 C s 47 C s 0.00012010 +1eov 23 C p 47 C s -0.00008248 +1eov 24 C p 47 C s -0.00034098 +1eov 31 H s 47 C s 0.00000002 +1eov 32 H s 47 C s 0.00000570 +1eov 33 H s 47 C s 0.00089160 +1eov 35 C s 47 C s 0.00000224 +1eov 36 C s 47 C s 0.04283572 +1eov 37 C p 47 C s 0.04749158 +1eov 38 C p 47 C s -0.05282630 +1eov 45 H s 47 C s 0.00610975 +1eov 47 C s 47 C s 1.00000000 +1eov 48 C s 47 C s 0.24836239 +1eov 57 H s 47 C s 0.06141276 +1eov 59 H s 47 C s 0.06131344 +1eov 2 C s 48 C s 0.00000715 +1eov 3 C p 48 C s 0.00000046 +1eov 4 C p 48 C s -0.00001894 +1eov 6 C s 48 C s 0.00115883 +1eov 7 C s 48 C s 0.04688356 +1eov 8 C p 48 C s 0.01682232 +1eov 9 C p 48 C s -0.06907006 +1eov 11 C s 48 C s 0.00000004 +1eov 12 C s 48 C s 0.00017692 +1eov 13 C p 48 C s -0.00008529 +1eov 14 C p 48 C s -0.00039134 +1eov 16 C s 48 C s 0.00000298 +1eov 17 C s 48 C s 0.00173815 +1eov 18 C p 48 C s 0.00152273 +1eov 19 C p 48 C s -0.00307343 +1eov 21 C s 48 C s 0.00012010 +1eov 22 C s 48 C s 0.01304826 +1eov 23 C p 48 C s -0.00523759 +1eov 24 C p 48 C s -0.02165256 +1eov 27 C s 48 C s 0.00002499 +1eov 28 C p 48 C s 0.00001818 +1eov 29 C p 48 C s -0.00005985 +1eov 31 H s 48 C s 0.00003531 +1eov 32 H s 48 C s 0.00116395 +1eov 33 H s 48 C s 0.02791634 +1eov 34 H s 48 C s 0.00000177 +1eov 35 C s 48 C s 0.04283572 +1eov 36 C s 48 C s 0.39315379 +1eov 37 C p 48 C s 0.27265559 +1eov 38 C p 48 C s -0.30328297 +1eov 43 C p 48 C s -0.00000002 +1eov 45 H s 48 C s 0.10603987 +1eov 47 C s 48 C s 0.24836239 +1eov 48 C s 48 C s 1.00000000 +1eov 57 H s 48 C s 0.48732173 +1eov 59 H s 48 C s 0.48692411 +1eov 2 C s 49 C p -0.00000046 +1eov 2 C s 50 C p 0.00001894 +1eov 3 C p 49 C p 0.00000222 +1eov 4 C p 49 C p 0.00000121 +1eov 3 C p 50 C p 0.00000121 +1eov 4 C p 50 C p -0.00004804 +1eov 5 C p 51 C p 0.00000225 +1eov 6 C s 49 C p -0.00066296 +1eov 6 C s 50 C p 0.00272201 +1eov 7 C s 49 C p -0.01682232 +1eov 7 C s 50 C p 0.06907006 +1eov 8 C p 49 C p 0.01247550 +1eov 9 C p 49 C p 0.02712642 +1eov 8 C p 50 C p 0.02712642 +1eov 9 C p 50 C p -0.09229496 +1eov 10 C p 51 C p 0.01908226 +1eov 11 C s 49 C p 0.00000004 +1eov 11 C s 50 C p 0.00000017 +1eov 12 C s 49 C p 0.00008529 +1eov 12 C s 50 C p 0.00039134 +1eov 13 C p 49 C p 0.00001509 +1eov 14 C p 49 C p -0.00019062 +1eov 13 C p 50 C p -0.00019062 +1eov 14 C p 50 C p -0.00081804 +1eov 15 C p 51 C p 0.00005663 +1eov 16 C s 49 C p -0.00000476 +1eov 16 C s 50 C p 0.00000960 +1eov 17 C s 49 C p -0.00152273 +1eov 17 C s 50 C p 0.00307343 +1eov 18 C p 49 C p -0.00079266 +1eov 19 C p 49 C p 0.00277198 +1eov 18 C p 50 C p 0.00277198 +1eov 19 C p 50 C p -0.00501418 +1eov 20 C p 51 C p 0.00058071 +1eov 21 C s 49 C p 0.00008248 +1eov 21 C s 50 C p 0.00034098 +1eov 22 C s 49 C p 0.00523759 +1eov 22 C s 50 C p 0.02165256 +1eov 23 C p 49 C p 0.00254866 +1eov 24 C p 49 C p -0.00923685 +1eov 23 C p 50 C p -0.00923685 +1eov 24 C p 50 C p -0.03340281 +1eov 25 C p 51 C p 0.00478298 +1eov 27 C s 49 C p -0.00001818 +1eov 27 C s 50 C p 0.00005985 +1eov 28 C p 49 C p -0.00000539 +1eov 29 C p 49 C p 0.00004373 +1eov 28 C p 50 C p 0.00004373 +1eov 29 C p 50 C p -0.00013604 +1eov 30 C p 51 C p 0.00000789 +1eov 31 H s 49 C p 0.00003055 +1eov 31 H s 50 C p 0.00007317 +1eov 32 H s 49 C p -0.00144175 +1eov 32 H s 50 C p 0.00160185 +1eov 33 H s 49 C p 0.02333733 +1eov 33 H s 50 C p 0.03403698 +1eov 34 H s 49 C p -0.00000176 +1eov 34 H s 50 C p 0.00000419 +1eov 35 C s 49 C p -0.04749158 +1eov 35 C s 50 C p 0.05282630 +1eov 36 C s 49 C p -0.27265559 +1eov 36 C s 50 C p 0.30328297 +1eov 37 C p 49 C p -0.01649701 +1eov 38 C p 49 C p 0.28028940 +1eov 37 C p 50 C p 0.28028940 +1eov 38 C p 50 C p -0.07628724 +1eov 39 C p 51 C p 0.23548705 +1eov 41 C s 50 C p 0.00000002 +1eov 43 C p 50 C p -0.00000007 +1eov 45 H s 49 C p -0.12644547 +1eov 45 H s 50 C p 0.04804938 +1eov 46 H s 50 C p 0.00000003 +1eov 49 C p 49 C p 1.00000000 +1eov 50 C p 50 C p 1.00000000 +1eov 51 C p 51 C p 1.00000000 +1eov 57 H s 49 C p 0.45887461 +1eov 57 H s 50 C p 0.07654896 +1eov 59 H s 49 C p -0.13399724 +1eov 59 H s 50 C p -0.44524958 +1eov 2 C s 52 C s 0.00115883 +1eov 3 C p 52 C s -0.00066296 +1eov 4 C p 52 C s 0.00272201 +1eov 12 C s 52 C s 0.00000298 +1eov 13 C p 52 C s -0.00000476 +1eov 14 C p 52 C s 0.00000960 +1eov 17 C s 52 C s 0.00000004 +1eov 18 C p 52 C s 0.00000004 +1eov 19 C p 52 C s 0.00000017 +1eov 27 C s 52 C s 0.00012010 +1eov 28 C p 52 C s 0.00008248 +1eov 29 C p 52 C s 0.00034098 +1eov 31 H s 52 C s 0.00000570 +1eov 32 H s 52 C s 0.00000002 +1eov 34 H s 52 C s 0.00089160 +1eov 40 C s 52 C s 0.00000224 +1eov 41 C s 52 C s 0.04283572 +1eov 42 C p 52 C s -0.04749158 +1eov 43 C p 52 C s 0.05282630 +1eov 46 H s 52 C s 0.00610975 1eov 52 C s 52 C s 1.00000000 1eov 53 C s 52 C s 0.24836239 1eov 58 H s 52 C s 0.06141276 1eov 60 H s 52 C s 0.06131344 +1eov 1 C s 53 C s 0.00115883 +1eov 2 C s 53 C s 0.04688356 +1eov 3 C p 53 C s -0.01682232 +1eov 4 C p 53 C s 0.06907006 +1eov 7 C s 53 C s 0.00000715 +1eov 8 C p 53 C s -0.00000046 +1eov 9 C p 53 C s 0.00001894 +1eov 11 C s 53 C s 0.00000298 +1eov 12 C s 53 C s 0.00173815 +1eov 13 C p 53 C s -0.00152273 +1eov 14 C p 53 C s 0.00307343 +1eov 16 C s 53 C s 0.00000004 +1eov 17 C s 53 C s 0.00017692 +1eov 18 C p 53 C s 0.00008529 +1eov 19 C p 53 C s 0.00039134 +1eov 22 C s 53 C s 0.00002499 +1eov 23 C p 53 C s -0.00001818 +1eov 24 C p 53 C s 0.00005985 +1eov 26 C s 53 C s 0.00012010 +1eov 27 C s 53 C s 0.01304826 +1eov 28 C p 53 C s 0.00523759 +1eov 29 C p 53 C s 0.02165256 +1eov 31 H s 53 C s 0.00116395 +1eov 32 H s 53 C s 0.00003531 +1eov 33 H s 53 C s 0.00000177 +1eov 34 H s 53 C s 0.02791634 +1eov 38 C p 53 C s 0.00000002 +1eov 40 C s 53 C s 0.04283572 +1eov 41 C s 53 C s 0.39315379 +1eov 42 C p 53 C s -0.27265559 +1eov 43 C p 53 C s 0.30328297 +1eov 46 H s 53 C s 0.10603987 +1eov 52 C s 53 C s 0.24836239 1eov 53 C s 53 C s 1.00000000 1eov 58 H s 53 C s 0.48732173 1eov 60 H s 53 C s 0.48692411 +1eov 1 C s 54 C p 0.00066296 +1eov 1 C s 55 C p -0.00272201 +1eov 2 C s 54 C p 0.01682232 +1eov 2 C s 55 C p -0.06907006 +1eov 3 C p 54 C p 0.01247550 +1eov 4 C p 54 C p 0.02712642 +1eov 3 C p 55 C p 0.02712642 +1eov 4 C p 55 C p -0.09229496 +1eov 5 C p 56 C p 0.01908226 +1eov 7 C s 54 C p 0.00000046 +1eov 7 C s 55 C p -0.00001894 +1eov 8 C p 54 C p 0.00000222 +1eov 9 C p 54 C p 0.00000121 +1eov 8 C p 55 C p 0.00000121 +1eov 9 C p 55 C p -0.00004804 +1eov 10 C p 56 C p 0.00000225 +1eov 11 C s 54 C p 0.00000476 +1eov 11 C s 55 C p -0.00000960 +1eov 12 C s 54 C p 0.00152273 +1eov 12 C s 55 C p -0.00307343 +1eov 13 C p 54 C p -0.00079266 +1eov 14 C p 54 C p 0.00277198 +1eov 13 C p 55 C p 0.00277198 +1eov 14 C p 55 C p -0.00501418 +1eov 15 C p 56 C p 0.00058071 +1eov 16 C s 54 C p -0.00000004 +1eov 16 C s 55 C p -0.00000017 +1eov 17 C s 54 C p -0.00008529 +1eov 17 C s 55 C p -0.00039134 +1eov 18 C p 54 C p 0.00001509 +1eov 19 C p 54 C p -0.00019062 +1eov 18 C p 55 C p -0.00019062 +1eov 19 C p 55 C p -0.00081804 +1eov 20 C p 56 C p 0.00005663 +1eov 22 C s 54 C p 0.00001818 +1eov 22 C s 55 C p -0.00005985 +1eov 23 C p 54 C p -0.00000539 +1eov 24 C p 54 C p 0.00004373 +1eov 23 C p 55 C p 0.00004373 +1eov 24 C p 55 C p -0.00013604 +1eov 25 C p 56 C p 0.00000789 +1eov 26 C s 54 C p -0.00008248 +1eov 26 C s 55 C p -0.00034098 +1eov 27 C s 54 C p -0.00523759 +1eov 27 C s 55 C p -0.02165256 +1eov 28 C p 54 C p 0.00254866 +1eov 29 C p 54 C p -0.00923685 +1eov 28 C p 55 C p -0.00923685 +1eov 29 C p 55 C p -0.03340281 +1eov 30 C p 56 C p 0.00478298 +1eov 31 H s 54 C p 0.00144175 +1eov 31 H s 55 C p -0.00160185 +1eov 32 H s 54 C p -0.00003055 +1eov 32 H s 55 C p -0.00007317 +1eov 33 H s 54 C p 0.00000176 +1eov 33 H s 55 C p -0.00000419 +1eov 34 H s 54 C p -0.02333733 +1eov 34 H s 55 C p -0.03403698 +1eov 36 C s 55 C p -0.00000002 +1eov 38 C p 55 C p -0.00000007 +1eov 40 C s 54 C p 0.04749158 +1eov 40 C s 55 C p -0.05282630 +1eov 41 C s 54 C p 0.27265559 +1eov 41 C s 55 C p -0.30328297 +1eov 42 C p 54 C p -0.01649701 +1eov 43 C p 54 C p 0.28028940 +1eov 42 C p 55 C p 0.28028940 +1eov 43 C p 55 C p -0.07628724 +1eov 44 C p 56 C p 0.23548705 +1eov 45 H s 55 C p -0.00000003 +1eov 46 H s 54 C p 0.12644547 +1eov 46 H s 55 C p -0.04804938 1eov 54 C p 54 C p 1.00000000 1eov 55 C p 55 C p 1.00000000 1eov 56 C p 56 C p 1.00000000 @@ -1026,14 +2469,165 @@ 1eov 58 H s 55 C p -0.07654896 1eov 60 H s 54 C p 0.13399724 1eov 60 H s 55 C p 0.44524958 +1eov 2 C s 57 H s 0.00002394 +1eov 3 C p 57 H s 0.00001260 +1eov 4 C p 57 H s -0.00005332 +1eov 6 C s 57 H s 0.00074066 +1eov 7 C s 57 H s 0.02467969 +1eov 8 C p 57 H s 0.02185510 +1eov 9 C p 57 H s -0.02971915 +1eov 11 C s 57 H s 0.00000294 +1eov 12 C s 57 H s 0.00077915 +1eov 13 C p 57 H s 0.00004529 +1eov 14 C p 57 H s -0.00147734 +1eov 16 C s 57 H s 0.00000237 +1eov 17 C s 57 H s 0.00068401 +1eov 18 C p 57 H s 0.00085251 +1eov 19 C p 57 H s -0.00099155 +1eov 21 C s 57 H s 0.00076401 +1eov 22 C s 57 H s 0.02519238 +1eov 23 C p 57 H s 0.00476106 +1eov 24 C p 57 H s -0.03728513 +1eov 27 C s 57 H s 0.00002475 +1eov 28 C p 57 H s 0.00002728 +1eov 29 C p 57 H s -0.00004952 +1eov 31 H s 57 H s 0.00029688 +1eov 32 H s 57 H s 0.00023842 +1eov 33 H s 57 H s 0.08943587 +1eov 34 H s 57 H s 0.00000137 +1eov 35 C s 57 H s 0.00560597 +1eov 36 C s 57 H s 0.09965606 +1eov 37 C p 57 H s 0.11842404 +1eov 38 C p 57 H s -0.04900979 +1eov 41 C s 57 H s 0.00000008 +1eov 42 C p 57 H s 0.00000003 +1eov 43 C p 57 H s -0.00000023 +1eov 45 H s 57 H s 0.01461637 +1eov 46 H s 57 H s 0.00000015 +1eov 47 C s 57 H s 0.06141276 +1eov 48 C s 57 H s 0.48732173 +1eov 49 C p 57 H s 0.45887461 +1eov 50 C p 57 H s 0.07654896 +1eov 57 H s 57 H s 1.00000000 +1eov 59 H s 57 H s 0.14896581 +1eov 1 C s 58 H s 0.00074066 +1eov 2 C s 58 H s 0.02467969 +1eov 3 C p 58 H s -0.02185510 +1eov 4 C p 58 H s 0.02971915 +1eov 7 C s 58 H s 0.00002394 +1eov 8 C p 58 H s -0.00001260 +1eov 9 C p 58 H s 0.00005332 +1eov 11 C s 58 H s 0.00000237 +1eov 12 C s 58 H s 0.00068401 +1eov 13 C p 58 H s -0.00085251 +1eov 14 C p 58 H s 0.00099155 +1eov 16 C s 58 H s 0.00000294 +1eov 17 C s 58 H s 0.00077915 +1eov 18 C p 58 H s -0.00004529 +1eov 19 C p 58 H s 0.00147734 +1eov 22 C s 58 H s 0.00002475 +1eov 23 C p 58 H s -0.00002728 +1eov 24 C p 58 H s 0.00004952 +1eov 26 C s 58 H s 0.00076401 +1eov 27 C s 58 H s 0.02519238 +1eov 28 C p 58 H s -0.00476106 +1eov 29 C p 58 H s 0.03728513 +1eov 31 H s 58 H s 0.00023842 +1eov 32 H s 58 H s 0.00029688 +1eov 33 H s 58 H s 0.00000137 +1eov 34 H s 58 H s 0.08943587 +1eov 36 C s 58 H s 0.00000008 +1eov 37 C p 58 H s -0.00000003 +1eov 38 C p 58 H s 0.00000023 +1eov 40 C s 58 H s 0.00560597 +1eov 41 C s 58 H s 0.09965606 +1eov 42 C p 58 H s -0.11842404 +1eov 43 C p 58 H s 0.04900979 +1eov 45 H s 58 H s 0.00000015 +1eov 46 H s 58 H s 0.01461637 +1eov 52 C s 58 H s 0.06141276 +1eov 53 C s 58 H s 0.48732173 +1eov 54 C p 58 H s -0.45887461 +1eov 55 C p 58 H s -0.07654896 1eov 58 H s 58 H s 1.00000000 1eov 60 H s 58 H s 0.14896581 +1eov 2 C s 59 H s 0.00000031 +1eov 3 C p 59 H s -0.00000003 +1eov 4 C p 59 H s -0.00000084 +1eov 6 C s 59 H s 0.00005752 +1eov 7 C s 59 H s 0.00480795 +1eov 8 C p 59 H s 0.00065662 +1eov 9 C p 59 H s -0.00810581 +1eov 12 C s 59 H s 0.00000753 +1eov 13 C p 59 H s -0.00000414 +1eov 14 C p 59 H s -0.00001769 +1eov 16 C s 59 H s 0.00000028 +1eov 17 C s 59 H s 0.00019170 +1eov 18 C p 59 H s 0.00011575 +1eov 19 C p 59 H s -0.00037677 +1eov 21 C s 59 H s 0.00000329 +1eov 22 C s 59 H s 0.00083477 +1eov 23 C p 59 H s -0.00039290 +1eov 24 C p 59 H s -0.00152729 +1eov 27 C s 59 H s 0.00000176 +1eov 28 C p 59 H s 0.00000086 +1eov 29 C p 59 H s -0.00000442 +1eov 31 H s 59 H s 0.00000158 +1eov 32 H s 59 H s 0.00025053 +1eov 33 H s 59 H s 0.00263748 +1eov 34 H s 59 H s 0.00000016 +1eov 35 C s 59 H s 0.00577180 +1eov 36 C s 59 H s 0.10177202 +1eov 37 C p 59 H s 0.03568903 +1eov 38 C p 59 H s -0.12555351 +1eov 45 H s 59 H s 0.05493265 +1eov 47 C s 59 H s 0.06131344 +1eov 48 C s 59 H s 0.48692411 +1eov 49 C p 59 H s -0.13399724 +1eov 50 C p 59 H s -0.44524958 +1eov 57 H s 59 H s 0.14896581 +1eov 59 H s 59 H s 1.00000000 +1eov 1 C s 60 H s 0.00005752 +1eov 2 C s 60 H s 0.00480795 +1eov 3 C p 60 H s -0.00065662 +1eov 4 C p 60 H s 0.00810581 +1eov 7 C s 60 H s 0.00000031 +1eov 8 C p 60 H s 0.00000003 +1eov 9 C p 60 H s 0.00000084 +1eov 11 C s 60 H s 0.00000028 +1eov 12 C s 60 H s 0.00019170 +1eov 13 C p 60 H s -0.00011575 +1eov 14 C p 60 H s 0.00037677 +1eov 17 C s 60 H s 0.00000753 +1eov 18 C p 60 H s 0.00000414 +1eov 19 C p 60 H s 0.00001769 +1eov 22 C s 60 H s 0.00000176 +1eov 23 C p 60 H s -0.00000086 +1eov 24 C p 60 H s 0.00000442 +1eov 26 C s 60 H s 0.00000329 +1eov 27 C s 60 H s 0.00083477 +1eov 28 C p 60 H s 0.00039290 +1eov 29 C p 60 H s 0.00152729 +1eov 31 H s 60 H s 0.00025053 +1eov 32 H s 60 H s 0.00000158 +1eov 33 H s 60 H s 0.00000016 +1eov 34 H s 60 H s 0.00263748 +1eov 40 C s 60 H s 0.00577180 +1eov 41 C s 60 H s 0.10177202 +1eov 42 C p 60 H s -0.03568903 +1eov 43 C p 60 H s 0.12555351 +1eov 46 H s 60 H s 0.05493265 +1eov 52 C s 60 H s 0.06131344 +1eov 53 C s 60 H s 0.48692411 +1eov 54 C p 60 H s 0.13399724 +1eov 55 C p 60 H s 0.44524958 +1eov 58 H s 60 H s 0.14896581 1eov 60 H s 60 H s 1.00000000 ==================================== End overlap 1-e integrals ==================================== - Forming initial guess at 0.6s + Forming initial guess at 0.0s Superposition of Atomic Density Guess @@ -1071,7 +2665,7 @@ 41 ag 42 bu 43 bu 44 ag 45 bu - Starting SCF solution at 1.2s + Starting SCF solution at 0.2s @@ -1084,32 +2678,23 @@ ---------------------------------------------- - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% - - iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7024515658 7.56D-01 1.81D-01 2.4 - 2 -379.7670218883 1.53D-01 4.40D-02 2.5 - 3 -379.7689554257 6.43D-03 2.31D-03 2.5 - 4 -379.7689624910 3.37D-05 9.25D-06 2.6 + 1 -379.7024485570 7.56D-01 1.81D-01 0.6 + 2 -379.7670205711 1.53D-01 4.40D-02 1.3 + 3 -379.7689540267 6.43D-03 2.31D-03 2.2 + 4 -379.7689610929 3.38D-05 9.25D-06 3.8 Final RHF results ------------------ - Total SCF energy = -379.768962491035 - One-electron energy = -1400.222183962455 - Two-electron energy = 574.516209303975 + Total SCF energy = -379.768961092935 + One-electron energy = -1400.222176091991 + Two-electron energy = 574.516202831610 Nuclear repulsion energy = 445.937012167446 - Time for solution = 1.9s + Time for solution = 3.6s @@ -1186,226 +2771,226 @@ ------------------------------------- Vector 1 Occ=2.000000D+00 E=-1.104059D+01 Symmetry=bu - MO Center= -2.9D-14, -2.5D-13, 7.4D-20, r^2= 2.1D+00 + MO Center= 9.7D-12, 5.8D-11, 2.4D-21, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 1 0.701483 1 C s 6 -0.701483 2 C s + 1 0.701484 1 C s 6 -0.701484 2 C s Vector 2 Occ=2.000000D+00 E=-1.104052D+01 Symmetry=ag - MO Center= 3.3D-14, 1.5D-13, 6.2D-19, r^2= 2.1D+00 + MO Center= -9.7D-12, -5.8D-11, -8.1D-19, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.701542 1 C s 6 0.701542 2 C s Vector 3 Occ=2.000000D+00 E=-1.103159D+01 Symmetry=bu - MO Center= 2.1D-14, 1.0D-13, -8.9D-33, r^2= 8.6D+00 + MO Center= -3.8D-12, -2.3D-11, -7.1D-21, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.701357 11 C s 40 -0.701357 12 C s + 35 0.701358 11 C s 40 -0.701358 12 C s Vector 4 Occ=2.000000D+00 E=-1.103159D+01 Symmetry=ag - MO Center= -1.5D-12, 1.7D-12, 4.7D-18, r^2= 8.6D+00 + MO Center= 4.2D-12, 2.3D-11, -6.0D-32, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.701320 11 C s 40 0.701320 12 C s Vector 5 Occ=2.000000D+00 E=-1.102896D+01 Symmetry=bu - MO Center= -8.9D-15, 7.6D-16, -3.8D-33, r^2= 2.0D+00 + MO Center= -2.1D-13, -3.4D-14, -1.8D-22, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.594681 5 C s 26 -0.594681 6 C s - 11 0.372717 3 C s 16 -0.372717 4 C s + 21 0.594536 5 C s 26 -0.594536 6 C s + 11 0.372948 3 C s 16 -0.372948 4 C s Vector 6 Occ=2.000000D+00 E=-1.102883D+01 Symmetry=ag - MO Center= -5.5D-15, 9.9D-17, -1.8D-32, r^2= 2.0D+00 + MO Center= 1.1D-13, -6.0D-14, -2.6D-34, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.636098 5 C s 26 0.636098 6 C s - 11 0.296533 3 C s 16 0.296533 4 C s + 21 0.635983 5 C s 26 0.635983 6 C s + 11 0.296780 3 C s 16 0.296780 4 C s Vector 7 Occ=2.000000D+00 E=-1.102861D+01 Symmetry=bu - MO Center= 5.9D-15, -2.6D-14, -4.4D-32, r^2= 2.0D+00 + MO Center= 1.3D-16, 9.6D-15, -5.5D-31, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.594365 3 C s 16 -0.594365 4 C s - 21 -0.372219 5 C s 26 0.372219 6 C s + 11 0.594220 3 C s 16 -0.594220 4 C s + 21 -0.372451 5 C s 26 0.372451 6 C s Vector 8 Occ=2.000000D+00 E=-1.102859D+01 Symmetry=ag - MO Center= -2.3D-15, 1.9D-15, -9.1D-19, r^2= 2.0D+00 + MO Center= 1.1D-13, 1.0D-13, -5.5D-18, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.635860 3 C s 16 0.635860 4 C s - 21 -0.296035 5 C s 26 -0.296035 6 C s + 11 0.635745 3 C s 16 0.635745 4 C s + 21 -0.296283 5 C s 26 -0.296283 6 C s Vector 9 Occ=2.000000D+00 E=-1.101748D+01 Symmetry=bu - MO Center= 6.1D-11, -6.4D-10, -4.1D-18, r^2= 1.5D+01 + MO Center= -1.8D-17, 9.0D-17, -9.4D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.701435 15 C s 52 -0.701435 16 C s Vector 10 Occ=2.000000D+00 E=-1.101748D+01 Symmetry=ag - MO Center= -6.0D-11, 6.4D-10, 7.0D-30, r^2= 1.5D+01 + MO Center= -4.5D-13, 4.9D-13, 1.3D-31, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.701435 15 C s 52 0.701435 16 C s Vector 11 Occ=2.000000D+00 E=-1.090299D+00 Symmetry=ag - MO Center= 3.8D-16, -5.7D-16, -3.2D-30, r^2= 3.0D+00 + MO Center= 2.4D-17, -4.4D-17, 2.8D-18, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.275368 1 C s 7 0.275368 2 C s 12 0.247273 3 C s 17 0.247273 4 C s - 22 0.247126 5 C s 27 0.247126 6 C s + 22 0.247125 5 C s 27 0.247125 6 C s Vector 12 Occ=2.000000D+00 E=-1.020254D+00 Symmetry=bu - MO Center= -6.8D-16, -1.8D-14, 5.5D-17, r^2= 7.9D+00 + MO Center= 1.6D-16, 7.1D-16, -8.2D-20, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.298699 11 C s 41 -0.298699 12 C s - 2 -0.270806 1 C s 7 0.270806 2 C s + 2 -0.270807 1 C s 7 0.270807 2 C s 48 0.213652 15 C s 53 -0.213652 16 C s - Vector 13 Occ=2.000000D+00 E=-9.749254D-01 Symmetry=ag - MO Center= 3.5D-15, 3.7D-15, -5.6D-18, r^2= 1.1D+01 + Vector 13 Occ=2.000000D+00 E=-9.749253D-01 Symmetry=ag + MO Center= -3.8D-16, 4.5D-16, -4.9D-34, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.314473 11 C s 41 0.314473 12 C s 48 0.310076 15 C s 53 0.310076 16 C s - Vector 14 Occ=2.000000D+00 E=-9.503033D-01 Symmetry=bu - MO Center= 1.3D-15, -5.7D-15, -1.2D-16, r^2= 3.1D+00 + Vector 14 Occ=2.000000D+00 E=-9.503037D-01 Symmetry=bu + MO Center= -9.2D-17, -1.3D-17, -6.8D-34, r^2= 3.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.357133 3 C s 17 -0.357133 4 C s - 22 0.325008 5 C s 27 -0.325008 6 C s + 22 0.325009 5 C s 27 -0.325009 6 C s - Vector 15 Occ=2.000000D+00 E=-9.096345D-01 Symmetry=bu - MO Center= 3.5D-16, 7.5D-15, 2.3D-32, r^2= 8.8D+00 + Vector 15 Occ=2.000000D+00 E=-9.096351D-01 Symmetry=bu + MO Center= 2.1D-17, 3.0D-17, -7.7D-32, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.292220 15 C s 53 -0.292220 16 C s - 2 0.279079 1 C s 7 -0.279079 2 C s + 2 0.279080 1 C s 7 -0.279080 2 C s 22 -0.200698 5 C s 27 0.200698 6 C s - Vector 16 Occ=2.000000D+00 E=-7.998830D-01 Symmetry=ag - MO Center= -2.9D-15, 1.9D-15, 2.4D-17, r^2= 8.5D+00 + Vector 16 Occ=2.000000D+00 E=-7.998827D-01 Symmetry=ag + MO Center= -4.5D-16, -3.0D-16, -1.8D-33, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.239926 15 C s 53 0.239926 16 C s - 22 0.229429 5 C s 27 0.229429 6 C s - 2 -0.212930 1 C s 7 -0.212930 2 C s + 48 0.239928 15 C s 53 0.239928 16 C s + 22 0.229428 5 C s 27 0.229428 6 C s + 2 -0.212931 1 C s 7 -0.212931 2 C s 14 -0.159170 3 C py 19 0.159170 4 C py 36 -0.159504 11 C s 41 -0.159504 12 C s - Vector 17 Occ=2.000000D+00 E=-7.628268D-01 Symmetry=ag - MO Center= 3.7D-15, 2.4D-15, -2.0D-18, r^2= 5.0D+00 + Vector 17 Occ=2.000000D+00 E=-7.628266D-01 Symmetry=ag + MO Center= 5.0D-16, 9.4D-17, 3.7D-33, r^2= 5.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.324855 3 C s 17 0.324855 4 C s - 3 0.189935 1 C px 8 -0.189935 2 C px - 22 -0.180804 5 C s 27 -0.180804 6 C s + 3 0.189937 1 C px 8 -0.189937 2 C px + 22 -0.180806 5 C s 27 -0.180806 6 C s 31 0.173636 7 H s 32 0.173636 8 H s 24 0.169743 5 C py 29 -0.169743 6 C py Vector 18 Occ=2.000000D+00 E=-7.276317D-01 Symmetry=bu - MO Center= -8.5D-17, 2.4D-15, -9.9D-18, r^2= 1.2D+01 + MO Center= -7.2D-17, 4.9D-17, 1.3D-32, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.297522 11 C s 41 -0.297522 12 C s - 48 -0.248206 15 C s 53 0.248206 16 C s + 48 -0.248205 15 C s 53 0.248205 16 C s 45 0.174840 13 H s 46 -0.174840 14 H s 57 -0.163892 17 H s 58 0.163892 18 H s Vector 19 Occ=2.000000D+00 E=-6.967772D-01 Symmetry=ag - MO Center= -9.3D-16, 0.0D+00, -1.1D-17, r^2= 7.9D+00 + MO Center= 1.8D-16, 1.9D-16, -4.1D-34, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.194626 5 C px 28 -0.194626 6 C px - 36 0.187351 11 C s 41 0.187351 12 C s - 13 0.174310 3 C px 18 -0.174310 4 C px + 36 0.187352 11 C s 41 0.187352 12 C s + 13 0.174309 3 C px 18 -0.174309 4 C px 2 -0.170808 1 C s 7 -0.170808 2 C s - 33 0.168856 9 H s 34 0.168856 10 H s + 33 0.168855 9 H s 34 0.168855 10 H s - Vector 20 Occ=2.000000D+00 E=-6.280522D-01 Symmetry=ag - MO Center= 5.1D-15, -3.5D-14, 7.8D-17, r^2= 9.3D+00 + Vector 20 Occ=2.000000D+00 E=-6.280524D-01 Symmetry=ag + MO Center= 3.0D-16, -2.2D-15, 5.5D-18, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.204700 15 C px 54 -0.204700 16 C px - 38 0.183205 11 C py 43 -0.183205 12 C py - 57 0.178852 17 H s 58 0.178852 18 H s + 49 0.204699 15 C px 54 -0.204699 16 C px + 38 0.183206 11 C py 43 -0.183206 12 C py + 57 0.178851 17 H s 58 0.178851 18 H s 45 -0.152733 13 H s 46 -0.152733 14 H s - Vector 21 Occ=2.000000D+00 E=-6.056780D-01 Symmetry=bu - MO Center= -1.9D-15, 5.6D-14, -3.4D-18, r^2= 1.0D+01 + Vector 21 Occ=2.000000D+00 E=-6.056785D-01 Symmetry=bu + MO Center= -1.6D-16, 5.0D-15, -6.5D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.215048 11 C px 42 0.215048 12 C px - 50 0.201798 15 C py 55 0.201798 16 C py + 37 0.215047 11 C px 42 0.215047 12 C px + 50 0.201796 15 C py 55 0.201796 16 C py 14 0.181913 3 C py 19 0.181913 4 C py - 59 -0.179094 19 H s 60 0.179094 20 H s - 45 -0.165299 13 H s 46 0.165299 14 H s + 59 -0.179093 19 H s 60 0.179093 20 H s + 45 -0.165300 13 H s 46 0.165300 14 H s - Vector 22 Occ=2.000000D+00 E=-5.729426D-01 Symmetry=bu - MO Center= -1.0D-15, 2.1D-15, 1.3D-32, r^2= 7.0D+00 + Vector 22 Occ=2.000000D+00 E=-5.729431D-01 Symmetry=bu + MO Center= -2.1D-16, 3.2D-16, 4.7D-32, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.234899 9 H s 34 -0.234899 10 H s + 33 0.234898 9 H s 34 -0.234898 10 H s 31 -0.225759 7 H s 32 0.225759 8 H s - 2 0.223491 1 C s 7 -0.223491 2 C s - 13 -0.220802 3 C px 18 -0.220802 4 C px - 24 -0.179464 5 C py 29 -0.179464 6 C py + 2 0.223487 1 C s 7 -0.223487 2 C s + 13 -0.220803 3 C px 18 -0.220803 4 C px + 24 -0.179466 5 C py 29 -0.179466 6 C py Vector 23 Occ=2.000000D+00 E=-5.536035D-01 Symmetry=bu - MO Center= -2.3D-17, 1.9D-15, -4.2D-33, r^2= 8.9D+00 + MO Center= 4.0D-16, -2.8D-15, 2.2D-32, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.252837 15 C px 54 0.252837 16 C px - 23 0.248952 5 C px 28 0.248952 6 C px + 49 0.252836 15 C px 54 0.252836 16 C px + 23 0.248954 5 C px 28 0.248954 6 C px 3 -0.221990 1 C px 8 -0.221990 2 C px - 57 0.222772 17 H s 58 -0.222772 18 H s - 38 0.178895 11 C py 43 0.178895 12 C py + 57 0.222771 17 H s 58 -0.222771 18 H s + 38 0.178894 11 C py 43 0.178894 12 C py - Vector 24 Occ=2.000000D+00 E=-5.531658D-01 Symmetry=ag - MO Center= -5.5D-16, -2.7D-14, -1.5D-18, r^2= 1.5D+01 + Vector 24 Occ=2.000000D+00 E=-5.531660D-01 Symmetry=ag + MO Center= -1.1D-16, -9.9D-17, -2.5D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.336239 15 C py 55 -0.336239 16 C py - 59 -0.268357 19 H s 60 -0.268357 20 H s + 59 -0.268358 19 H s 60 -0.268358 20 H s 37 0.248998 11 C px 42 -0.248998 12 C px 45 -0.151363 13 H s 46 -0.151363 14 H s - Vector 25 Occ=2.000000D+00 E=-5.253606D-01 Symmetry=bu - MO Center= -5.8D-16, -9.2D-16, 8.6D-34, r^2= 4.4D+00 + Vector 25 Occ=2.000000D+00 E=-5.253611D-01 Symmetry=bu + MO Center= 3.8D-16, -4.8D-16, -1.3D-18, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.299404 3 C px 18 0.299404 4 C px + 13 0.299403 3 C px 18 0.299403 4 C px 31 0.258504 7 H s 32 -0.258504 8 H s 24 -0.232845 5 C py 29 -0.232845 6 C py - 33 0.223596 9 H s 34 -0.223596 10 H s - 23 0.179046 5 C px 28 0.179046 6 C px + 33 0.223597 9 H s 34 -0.223597 10 H s + 23 0.179045 5 C px 28 0.179045 6 C px Vector 26 Occ=2.000000D+00 E=-4.966990D-01 Symmetry=bu - MO Center= 3.3D-15, 1.0D-14, 2.3D-17, r^2= 8.9D+00 + MO Center= 3.5D-16, -5.2D-16, 3.0D-33, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 -0.238942 15 C py 55 -0.238942 16 C py - 14 0.222972 3 C py 19 0.222972 4 C py - 37 -0.201999 11 C px 42 -0.201999 12 C px - 38 0.188759 11 C py 43 0.188759 12 C py + 50 -0.238943 15 C py 55 -0.238943 16 C py + 14 0.222971 3 C py 19 0.222971 4 C py + 37 -0.201997 11 C px 42 -0.201997 12 C px + 38 0.188761 11 C py 43 0.188761 12 C py 24 -0.184876 5 C py 29 -0.184876 6 C py - Vector 27 Occ=2.000000D+00 E=-4.925280D-01 Symmetry=ag - MO Center= -5.2D-15, -1.4D-14, -4.3D-30, r^2= 1.2D+01 + Vector 27 Occ=2.000000D+00 E=-4.925284D-01 Symmetry=ag + MO Center= -7.3D-16, 1.5D-16, 2.0D-36, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.296131 15 C px 54 -0.296131 16 C px + 49 0.296132 15 C px 54 -0.296132 16 C px 57 0.273185 17 H s 58 0.273185 18 H s 37 -0.209362 11 C px 42 0.209362 12 C px 45 0.202959 13 H s 46 0.202959 14 H s - 31 -0.156851 7 H s 32 -0.156851 8 H s + 31 -0.156849 7 H s 32 -0.156849 8 H s - Vector 28 Occ=2.000000D+00 E=-4.637308D-01 Symmetry=au - MO Center= 5.8D-16, 8.3D-17, -7.4D-17, r^2= 3.6D+00 + Vector 28 Occ=2.000000D+00 E=-4.637309D-01 Symmetry=au + MO Center= -9.0D-16, 3.1D-15, -7.2D-17, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.331504 1 C pz 10 0.331504 2 C pz @@ -1413,46 +2998,46 @@ 25 0.301868 5 C pz 30 0.301868 6 C pz 39 0.165577 11 C pz 44 0.165577 12 C pz - Vector 29 Occ=2.000000D+00 E=-4.464302D-01 Symmetry=bu - MO Center= -6.8D-16, -7.8D-16, -4.5D-17, r^2= 1.2D+01 + Vector 29 Occ=2.000000D+00 E=-4.464301D-01 Symmetry=bu + MO Center= -2.5D-16, -4.6D-18, 4.0D-34, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.257252 13 H s 46 -0.257252 14 H s - 4 0.243719 1 C py 9 0.243719 2 C py - 57 0.226298 17 H s 58 -0.226298 18 H s - 37 -0.214534 11 C px 42 -0.214534 12 C px + 45 0.257253 13 H s 46 -0.257253 14 H s + 4 0.243717 1 C py 9 0.243717 2 C py + 57 0.226299 17 H s 58 -0.226299 18 H s + 37 -0.214535 11 C px 42 -0.214535 12 C px 59 -0.211967 19 H s 60 0.211967 20 H s - Vector 30 Occ=2.000000D+00 E=-4.216550D-01 Symmetry=ag - MO Center= 3.3D-15, 8.0D-15, 4.6D-19, r^2= 5.7D+00 + Vector 30 Occ=2.000000D+00 E=-4.216541D-01 Symmetry=ag + MO Center= 2.3D-16, -4.0D-16, -1.8D-16, r^2= 5.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 -0.268212 3 C py 19 0.268212 4 C py - 4 0.260257 1 C py 9 -0.260257 2 C py - 33 -0.253899 9 H s 34 -0.253899 10 H s - 38 0.232935 11 C py 43 -0.232935 12 C py - 24 0.223473 5 C py 29 -0.223473 6 C py - - Vector 31 Occ=2.000000D+00 E=-4.156220D-01 Symmetry=ag - MO Center= 5.1D-16, -1.8D-15, 3.4D-18, r^2= 6.3D+00 + 14 -0.268211 3 C py 19 0.268211 4 C py + 4 0.260254 1 C py 9 -0.260254 2 C py + 33 -0.253901 9 H s 34 -0.253901 10 H s + 38 0.232931 11 C py 43 -0.232931 12 C py + 24 0.223472 5 C py 29 -0.223472 6 C py + + Vector 31 Occ=2.000000D+00 E=-4.156211D-01 Symmetry=ag + MO Center= 1.5D-16, 1.9D-16, 1.4D-16, r^2= 6.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 3 0.278853 1 C px 8 -0.278853 2 C px - 23 0.269038 5 C px 28 -0.269038 6 C px + 3 0.278851 1 C px 8 -0.278851 2 C px + 23 0.269036 5 C px 28 -0.269036 6 C px 31 -0.251625 7 H s 32 -0.251625 8 H s - 13 -0.210356 3 C px 18 0.210356 4 C px + 13 -0.210354 3 C px 18 0.210354 4 C px 45 -0.183775 13 H s 46 -0.183775 14 H s - Vector 32 Occ=2.000000D+00 E=-3.769631D-01 Symmetry=bg - MO Center= -1.1D-16, 1.8D-14, 3.1D-17, r^2= 8.6D+00 + Vector 32 Occ=2.000000D+00 E=-3.769632D-01 Symmetry=bg + MO Center= -3.3D-16, -2.9D-15, 1.7D-19, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.383213 11 C pz 44 -0.383213 12 C pz - 5 -0.318675 1 C pz 10 0.318675 2 C pz - 51 0.306666 15 C pz 56 -0.306666 16 C pz + 5 -0.318676 1 C pz 10 0.318676 2 C pz + 51 0.306665 15 C pz 56 -0.306665 16 C pz - Vector 33 Occ=2.000000D+00 E=-3.151268D-01 Symmetry=au - MO Center= 2.5D-14, -1.7D-14, -1.9D-17, r^2= 1.1D+01 + Vector 33 Occ=2.000000D+00 E=-3.151269D-01 Symmetry=au + MO Center= -2.9D-16, 7.9D-16, 3.7D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.426295 15 C pz 56 0.426295 16 C pz @@ -1460,61 +3045,61 @@ 15 -0.164508 3 C pz 20 -0.164508 4 C pz 25 -0.164934 5 C pz 30 -0.164934 6 C pz - Vector 34 Occ=2.000000D+00 E=-2.783651D-01 Symmetry=bg - MO Center= -2.6D-14, 3.6D-15, 4.0D-17, r^2= 2.7D+00 + Vector 34 Occ=2.000000D+00 E=-2.783652D-01 Symmetry=bg + MO Center= 1.3D-15, -2.5D-16, -3.1D-19, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.459816 3 C pz 20 -0.459816 4 C pz + 15 0.459817 3 C pz 20 -0.459817 4 C pz 25 0.461493 5 C pz 30 -0.461493 6 C pz - Vector 35 Occ=2.000000D+00 E=-2.221904D-01 Symmetry=bg - MO Center= -3.5D-17, -3.9D-15, 1.2D-17, r^2= 7.2D+00 + Vector 35 Occ=2.000000D+00 E=-2.221905D-01 Symmetry=bg + MO Center= -2.0D-17, -6.3D-16, 1.2D-18, r^2= 7.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.417993 1 C pz 10 -0.417993 2 C pz 51 0.358184 15 C pz 56 -0.358184 16 C pz - 15 0.231889 3 C pz 20 -0.231889 4 C pz + 15 0.231888 3 C pz 20 -0.231888 4 C pz 25 -0.232000 5 C pz 30 0.232000 6 C pz - 39 0.218349 11 C pz 44 -0.218349 12 C pz + 39 0.218350 11 C pz 44 -0.218350 12 C pz - Vector 36 Occ=0.000000D+00 E= 1.989924D-01 Symmetry=au - MO Center= -1.1D-16, -5.3D-14, 1.3D-16, r^2= 7.3D+00 + Vector 36 Occ=0.000000D+00 E= 1.989923D-01 Symmetry=au + MO Center= -8.2D-17, 2.3D-14, 1.9D-17, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.471534 1 C pz 10 0.471534 2 C pz 51 -0.414928 15 C pz 56 -0.414928 16 C pz 25 -0.278569 5 C pz 30 -0.278569 6 C pz - 15 -0.249973 3 C pz 20 -0.249973 4 C pz + 15 -0.249974 3 C pz 20 -0.249974 4 C pz 39 0.246934 11 C pz 44 0.246934 12 C pz - Vector 37 Occ=0.000000D+00 E= 2.685138D-01 Symmetry=au - MO Center= 2.3D-16, -2.0D-16, 2.1D-19, r^2= 2.7D+00 + Vector 37 Occ=0.000000D+00 E= 2.685137D-01 Symmetry=au + MO Center= -8.1D-17, -1.6D-16, 2.2D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.578558 3 C pz 20 0.578558 4 C pz - 25 -0.558106 5 C pz 30 -0.558106 6 C pz + 25 -0.558107 5 C pz 30 -0.558107 6 C pz - Vector 38 Occ=0.000000D+00 E= 3.088252D-01 Symmetry=bg - MO Center= 1.7D-16, 5.5D-14, 1.9D-17, r^2= 1.1D+01 + Vector 38 Occ=0.000000D+00 E= 3.088251D-01 Symmetry=bg + MO Center= 1.4D-16, -2.4D-14, -5.4D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.531237 15 C pz 56 0.531237 16 C pz - 39 0.524391 11 C pz 44 -0.524391 12 C pz + 39 0.524390 11 C pz 44 -0.524390 12 C pz 15 0.225543 3 C pz 20 -0.225543 4 C pz 25 -0.220434 5 C pz 30 0.220434 6 C pz - Vector 39 Occ=0.000000D+00 E= 3.970770D-01 Symmetry=au - MO Center= 4.2D-17, -2.7D-15, 5.5D-18, r^2= 8.4D+00 + Vector 39 Occ=0.000000D+00 E= 3.970769D-01 Symmetry=au + MO Center= -7.1D-16, -7.5D-15, 1.1D-15, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.535070 11 C pz 44 0.535070 12 C pz 5 -0.473494 1 C pz 10 -0.473494 2 C pz 51 -0.407351 15 C pz 56 -0.407351 16 C pz 25 0.186775 5 C pz 30 0.186775 6 C pz - 15 0.161862 3 C pz 20 0.161862 4 C pz + 15 0.161861 3 C pz 20 0.161861 4 C pz - Vector 40 Occ=0.000000D+00 E= 5.217566D-01 Symmetry=bg - MO Center= 9.7D-17, 1.8D-16, 2.6D-17, r^2= 3.8D+00 + Vector 40 Occ=0.000000D+00 E= 5.217565D-01 Symmetry=bg + MO Center= 8.0D-16, 7.0D-15, -2.6D-19, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.538711 1 C pz 10 -0.538711 2 C pz @@ -1523,205 +3108,205 @@ 39 0.278750 11 C pz 44 -0.278750 12 C pz 51 -0.158475 15 C pz 56 0.158475 16 C pz - Vector 41 Occ=0.000000D+00 E= 5.650160D-01 Symmetry=ag - MO Center= 3.8D-15, -4.1D-14, 1.8D-17, r^2= 8.7D+00 + Vector 41 Occ=0.000000D+00 E= 5.650142D-01 Symmetry=ag + MO Center= 3.9D-17, -4.0D-16, -4.7D-16, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.434798 9 H s 34 0.434798 10 H s - 31 0.420942 7 H s 32 0.420942 8 H s - 2 -0.380055 1 C s 7 -0.380055 2 C s - 59 0.353828 19 H s 60 0.353828 20 H s - 38 0.323940 11 C py 43 -0.323940 12 C py - - Vector 42 Occ=0.000000D+00 E= 5.755620D-01 Symmetry=bu - MO Center= 3.3D-15, 5.1D-15, -3.4D-17, r^2= 1.0D+01 + 33 0.434809 9 H s 34 0.434809 10 H s + 31 0.420950 7 H s 32 0.420950 8 H s + 2 -0.380042 1 C s 7 -0.380042 2 C s + 59 0.353825 19 H s 60 0.353825 20 H s + 38 0.323933 11 C py 43 -0.323933 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.755623D-01 Symmetry=bu + MO Center= -1.1D-15, -2.4D-14, 3.6D-20, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.448702 13 H s 46 -0.448702 14 H s - 13 0.355546 3 C px 18 0.355546 4 C px - 37 0.350909 11 C px 42 0.350909 12 C px - 57 -0.321562 17 H s 58 0.321562 18 H s - 31 -0.318904 7 H s 32 0.318904 8 H s - - Vector 43 Occ=0.000000D+00 E= 6.215596D-01 Symmetry=ag - MO Center= 5.3D-15, -1.2D-15, -4.4D-17, r^2= 1.2D+01 + 45 0.448708 13 H s 46 -0.448708 14 H s + 13 0.355539 3 C px 18 0.355539 4 C px + 37 0.350908 11 C px 42 0.350908 12 C px + 57 -0.321571 17 H s 58 0.321571 18 H s + 31 -0.318891 7 H s 32 0.318891 8 H s + + Vector 43 Occ=0.000000D+00 E= 6.215603D-01 Symmetry=ag + MO Center= -1.4D-14, -5.6D-16, 5.2D-16, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.589566 13 H s 46 0.589566 14 H s - 12 0.397886 3 C s 17 0.397886 4 C s - 36 -0.394579 11 C s 41 -0.394579 12 C s - 57 -0.381363 17 H s 58 -0.381363 18 H s - 37 0.350692 11 C px 42 -0.350692 12 C px + 12 0.397895 3 C s 17 0.397895 4 C s + 36 -0.394565 11 C s 41 -0.394565 12 C s + 57 -0.381368 17 H s 58 -0.381368 18 H s + 37 0.350696 11 C px 42 -0.350696 12 C px - Vector 44 Occ=0.000000D+00 E= 6.258003D-01 Symmetry=bu - MO Center= -8.2D-15, 2.4D-14, 7.5D-17, r^2= 8.4D+00 + Vector 44 Occ=0.000000D+00 E= 6.258005D-01 Symmetry=bu + MO Center= 4.6D-16, -3.9D-17, 2.0D-19, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.529760 11 C s 41 -0.529760 12 C s - 4 0.453566 1 C py 9 0.453566 2 C py - 33 0.408895 9 H s 34 -0.408895 10 H s - 59 0.389457 19 H s 60 -0.389457 20 H s - 48 -0.337620 15 C s 53 0.337620 16 C s - - Vector 45 Occ=0.000000D+00 E= 6.582325D-01 Symmetry=ag - MO Center= -8.6D-16, 6.2D-15, -8.0D-17, r^2= 1.2D+01 + 36 0.529790 11 C s 41 -0.529790 12 C s + 4 0.453569 1 C py 9 0.453569 2 C py + 33 0.408877 9 H s 34 -0.408877 10 H s + 59 0.389453 19 H s 60 -0.389453 20 H s + 48 -0.337623 15 C s 53 0.337623 16 C s + + Vector 45 Occ=0.000000D+00 E= 6.582334D-01 Symmetry=ag + MO Center= -1.2D-15, 1.6D-15, -4.0D-17, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.683576 15 C s 53 0.683576 16 C s - 22 0.582877 5 C s 27 0.582877 6 C s - 57 -0.541814 17 H s 58 -0.541814 18 H s - 12 -0.457382 3 C s 17 -0.457382 4 C s - 59 -0.330810 19 H s 60 -0.330810 20 H s - - Vector 46 Occ=0.000000D+00 E= 6.593956D-01 Symmetry=bu - MO Center= -1.2D-14, 5.9D-15, 1.6D-18, r^2= 1.0D+01 + 48 0.683572 15 C s 53 0.683572 16 C s + 22 0.582873 5 C s 27 0.582873 6 C s + 57 -0.541817 17 H s 58 -0.541817 18 H s + 12 -0.457375 3 C s 17 -0.457375 4 C s + 59 -0.330802 19 H s 60 -0.330802 20 H s + + Vector 46 Occ=0.000000D+00 E= 6.593933D-01 Symmetry=bu + MO Center= 3.9D-15, 8.2D-16, 7.5D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.611116 5 C s 27 -0.611116 6 C s - 48 0.533506 15 C s 53 -0.533506 16 C s - 2 0.492301 1 C s 7 -0.492301 2 C s - 12 -0.461393 3 C s 17 0.461393 4 C s - 57 -0.460445 17 H s 58 0.460445 18 H s - - Vector 47 Occ=0.000000D+00 E= 6.771779D-01 Symmetry=bu - MO Center= 1.4D-14, 3.7D-14, 2.4D-17, r^2= 9.1D+00 + 22 0.611134 5 C s 27 -0.611134 6 C s + 48 0.533491 15 C s 53 -0.533491 16 C s + 2 0.492298 1 C s 7 -0.492298 2 C s + 12 -0.461405 3 C s 17 0.461405 4 C s + 57 -0.460423 17 H s 58 0.460423 18 H s + + Vector 47 Occ=0.000000D+00 E= 6.771759D-01 Symmetry=bu + MO Center= 8.0D-15, 1.8D-14, -6.7D-20, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 0.598268 7 H s 32 -0.598268 8 H s - 36 -0.467282 11 C s 41 0.467282 12 C s - 45 0.438025 13 H s 46 -0.438025 14 H s + 31 0.598273 7 H s 32 -0.598273 8 H s + 36 -0.467284 11 C s 41 0.467284 12 C s + 45 0.438024 13 H s 46 -0.438024 14 H s 12 -0.361066 3 C s 17 0.361066 4 C s - 59 0.328681 19 H s 60 -0.328681 20 H s + 59 0.328675 19 H s 60 -0.328675 20 H s - Vector 48 Occ=0.000000D+00 E= 6.941860D-01 Symmetry=ag - MO Center= -2.4D-16, -3.9D-16, -1.5D-17, r^2= 7.3D+00 + Vector 48 Occ=0.000000D+00 E= 6.941884D-01 Symmetry=ag + MO Center= 4.6D-15, 2.6D-15, -8.6D-16, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.796664 1 C s 7 0.796664 2 C s - 36 -0.570541 11 C s 41 -0.570541 12 C s - 22 -0.469182 5 C s 27 -0.469182 6 C s - 12 -0.444286 3 C s 17 -0.444286 4 C s - 48 0.390409 15 C s 53 0.390409 16 C s - - Vector 49 Occ=0.000000D+00 E= 7.067096D-01 Symmetry=bu - MO Center= -3.6D-15, -3.8D-14, -5.3D-19, r^2= 1.1D+01 + 2 0.796666 1 C s 7 0.796666 2 C s + 36 -0.570540 11 C s 41 -0.570540 12 C s + 22 -0.469181 5 C s 27 -0.469181 6 C s + 12 -0.444282 3 C s 17 -0.444282 4 C s + 48 0.390419 15 C s 53 0.390419 16 C s + + Vector 49 Occ=0.000000D+00 E= 7.067053D-01 Symmetry=bu + MO Center= 1.3D-14, -1.5D-14, 4.4D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.702329 15 C s 53 -0.702329 16 C s - 57 -0.514860 17 H s 58 0.514860 18 H s - 33 0.488194 9 H s 34 -0.488194 10 H s - 36 -0.430466 11 C s 41 0.430466 12 C s - 22 -0.425207 5 C s 27 0.425207 6 C s - - Vector 50 Occ=0.000000D+00 E= 7.401371D-01 Symmetry=ag - MO Center= 1.3D-15, -2.1D-15, 1.8D-17, r^2= 1.0D+01 + 48 0.702342 15 C s 53 -0.702342 16 C s + 57 -0.514873 17 H s 58 0.514873 18 H s + 33 0.488189 9 H s 34 -0.488189 10 H s + 36 -0.430439 11 C s 41 0.430439 12 C s + 22 -0.425186 5 C s 27 0.425186 6 C s + + Vector 50 Occ=0.000000D+00 E= 7.401383D-01 Symmetry=ag + MO Center= -1.1D-14, 1.4D-14, -2.7D-17, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.727765 3 C s 17 0.727765 4 C s - 22 -0.614468 5 C s 27 -0.614468 6 C s - 59 -0.456852 19 H s 60 -0.456852 20 H s - 48 0.397621 15 C s 53 0.397621 16 C s - 50 -0.372517 15 C py 55 0.372517 16 C py - - Vector 51 Occ=0.000000D+00 E= 8.022252D-01 Symmetry=ag - MO Center= 4.7D-16, 8.6D-16, -1.7D-17, r^2= 6.8D+00 + 12 0.727766 3 C s 17 0.727766 4 C s + 22 -0.614467 5 C s 27 -0.614467 6 C s + 59 -0.456854 19 H s 60 -0.456854 20 H s + 48 0.397618 15 C s 53 0.397618 16 C s + 50 -0.372518 15 C py 55 0.372518 16 C py + + Vector 51 Occ=0.000000D+00 E= 8.022234D-01 Symmetry=ag + MO Center= -1.1D-15, -3.8D-16, -2.2D-16, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.586839 1 C py 9 -0.586839 2 C py - 36 -0.485996 11 C s 41 -0.485996 12 C s - 2 -0.462721 1 C s 7 -0.462721 2 C s - 13 -0.446670 3 C px 18 0.446670 4 C px - 49 -0.358149 15 C px 54 0.358149 16 C px - - Vector 52 Occ=0.000000D+00 E= 8.256549D-01 Symmetry=bu - MO Center= 3.1D-15, -5.8D-15, -1.6D-17, r^2= 7.8D+00 + 4 0.586840 1 C py 9 -0.586840 2 C py + 36 -0.486011 11 C s 41 -0.486011 12 C s + 2 -0.462710 1 C s 7 -0.462710 2 C s + 13 -0.446667 3 C px 18 0.446667 4 C px + 49 -0.358156 15 C px 54 0.358156 16 C px + + Vector 52 Occ=0.000000D+00 E= 8.256536D-01 Symmetry=bu + MO Center= 2.5D-15, 1.2D-15, -6.9D-20, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.642782 3 C s 17 -0.642782 4 C s - 3 -0.555346 1 C px 8 -0.555346 2 C px - 50 0.490164 15 C py 55 0.490164 16 C py - 24 -0.479529 5 C py 29 -0.479529 6 C py - 59 0.356459 19 H s 60 -0.356459 20 H s - - Vector 53 Occ=0.000000D+00 E= 8.606143D-01 Symmetry=ag - MO Center= -5.7D-16, -2.7D-15, -3.3D-18, r^2= 5.6D+00 + 12 0.642780 3 C s 17 -0.642780 4 C s + 3 -0.555350 1 C px 8 -0.555350 2 C px + 50 0.490161 15 C py 55 0.490161 16 C py + 24 -0.479534 5 C py 29 -0.479534 6 C py + 59 0.356457 19 H s 60 -0.356457 20 H s + + Vector 53 Occ=0.000000D+00 E= 8.606141D-01 Symmetry=ag + MO Center= -2.2D-15, 3.2D-15, -7.8D-17, r^2= 5.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.531368 3 C px 18 -0.531368 4 C px - 23 -0.518376 5 C px 28 0.518376 6 C px - 33 0.509444 9 H s 34 0.509444 10 H s - 31 -0.441690 7 H s 32 -0.441690 8 H s - 24 0.395281 5 C py 29 -0.395281 6 C py - - Vector 54 Occ=0.000000D+00 E= 8.877568D-01 Symmetry=bu - MO Center= -1.2D-15, -5.2D-16, -2.0D-17, r^2= 5.2D+00 + 13 0.531365 3 C px 18 -0.531365 4 C px + 23 -0.518377 5 C px 28 0.518377 6 C px + 33 0.509445 9 H s 34 0.509445 10 H s + 31 -0.441685 7 H s 32 -0.441685 8 H s + 24 0.395280 5 C py 29 -0.395280 6 C py + + Vector 54 Occ=0.000000D+00 E= 8.877581D-01 Symmetry=bu + MO Center= -1.4D-15, -2.0D-15, 1.3D-20, r^2= 5.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 0.716776 3 C py 19 0.716776 4 C py - 22 0.610590 5 C s 27 -0.610590 6 C s - 36 -0.434047 11 C s 41 0.434047 12 C s - 24 0.382161 5 C py 29 0.382161 6 C py - 2 -0.361718 1 C s 7 0.361718 2 C s - - Vector 55 Occ=0.000000D+00 E= 9.210085D-01 Symmetry=bu - MO Center= -1.3D-15, 1.4D-15, -1.7D-17, r^2= 1.0D+01 + 14 0.716782 3 C py 19 0.716782 4 C py + 22 0.610585 5 C s 27 -0.610585 6 C s + 36 -0.434038 11 C s 41 0.434038 12 C s + 24 0.382165 5 C py 29 0.382165 6 C py + 2 -0.361723 1 C s 7 0.361723 2 C s + + Vector 55 Occ=0.000000D+00 E= 9.210115D-01 Symmetry=bu + MO Center= -3.9D-16, 8.1D-16, 2.4D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.648636 1 C s 7 -0.648636 2 C s + 2 0.648634 1 C s 7 -0.648634 2 C s 49 -0.507370 15 C px 54 -0.507370 16 C px - 38 0.482570 11 C py 43 0.482570 12 C py - 23 -0.393564 5 C px 28 -0.393564 6 C px - 57 0.345389 17 H s 58 -0.345389 18 H s + 38 0.482571 11 C py 43 0.482571 12 C py + 23 -0.393556 5 C px 28 -0.393556 6 C px + 57 0.345392 17 H s 58 -0.345392 18 H s - Vector 56 Occ=0.000000D+00 E= 9.399496D-01 Symmetry=ag - MO Center= 1.4D-17, 3.7D-15, -5.4D-18, r^2= 9.1D+00 + Vector 56 Occ=0.000000D+00 E= 9.399484D-01 Symmetry=ag + MO Center= 5.7D-18, -2.3D-15, -1.6D-18, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.556681 11 C px 42 -0.556681 12 C px + 37 0.556683 11 C px 42 -0.556683 12 C px 50 -0.539847 15 C py 55 0.539847 16 C py - 14 0.392199 3 C py 19 -0.392199 4 C py - 4 -0.359948 1 C py 9 0.359948 2 C py - 24 0.326779 5 C py 29 -0.326779 6 C py + 14 0.392204 3 C py 19 -0.392204 4 C py + 4 -0.359940 1 C py 9 0.359940 2 C py + 24 0.326787 5 C py 29 -0.326787 6 C py - Vector 57 Occ=0.000000D+00 E= 9.902851D-01 Symmetry=ag - MO Center= -2.0D-15, -1.7D-14, -1.5D-19, r^2= 9.4D+00 + Vector 57 Occ=0.000000D+00 E= 9.902841D-01 Symmetry=ag + MO Center= -1.2D-15, 4.5D-15, 1.0D-16, r^2= 9.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 38 0.680160 11 C py 43 -0.680160 12 C py + 38 0.680163 11 C py 43 -0.680163 12 C py 49 -0.583682 15 C px 54 0.583682 16 C px - 24 -0.429950 5 C py 29 0.429950 6 C py - 4 -0.411894 1 C py 9 0.411894 2 C py - 14 -0.365147 3 C py 19 0.365147 4 C py + 24 -0.429944 5 C py 29 0.429944 6 C py + 4 -0.411901 1 C py 9 0.411901 2 C py + 14 -0.365141 3 C py 19 0.365141 4 C py Vector 58 Occ=0.000000D+00 E= 1.027265D+00 Symmetry=bu - MO Center= 1.3D-15, 1.7D-14, -4.6D-17, r^2= 9.5D+00 + MO Center= -2.1D-16, 5.3D-16, -3.3D-21, r^2= 9.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.608350 11 C px 42 0.608350 12 C px + 37 0.608349 11 C px 42 0.608349 12 C px 50 -0.536814 15 C py 55 -0.536814 16 C py - 48 -0.526962 15 C s 53 0.526962 16 C s - 3 -0.468612 1 C px 8 -0.468612 2 C px - 38 -0.458225 11 C py 43 -0.458225 12 C py + 48 -0.526963 15 C s 53 0.526963 16 C s + 3 -0.468609 1 C px 8 -0.468609 2 C px + 38 -0.458231 11 C py 43 -0.458231 12 C py - Vector 59 Occ=0.000000D+00 E= 1.107700D+00 Symmetry=ag - MO Center= -2.8D-16, 1.8D-15, -1.8D-18, r^2= 5.1D+00 + Vector 59 Occ=0.000000D+00 E= 1.107699D+00 Symmetry=ag + MO Center= 8.5D-17, -2.4D-16, -1.4D-17, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.712025 1 C px 8 -0.712025 2 C px - 14 -0.548009 3 C py 19 0.548009 4 C py - 23 -0.444243 5 C px 28 0.444243 6 C px - 24 -0.423224 5 C py 29 0.423224 6 C py - 37 0.414788 11 C px 42 -0.414788 12 C px + 14 -0.548010 3 C py 19 0.548010 4 C py + 23 -0.444244 5 C px 28 0.444244 6 C px + 24 -0.423225 5 C py 29 0.423225 6 C py + 37 0.414787 11 C px 42 -0.414787 12 C px - Vector 60 Occ=0.000000D+00 E= 1.124935D+00 Symmetry=bu - MO Center= -1.7D-16, 8.1D-16, 4.6D-18, r^2= 3.4D+00 + Vector 60 Occ=0.000000D+00 E= 1.124938D+00 Symmetry=bu + MO Center= 3.9D-16, -4.4D-15, 2.6D-19, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.662430 1 C py 9 0.662430 2 C py - 13 -0.566300 3 C px 18 -0.566300 4 C px - 23 0.494107 5 C px 28 0.494107 6 C px - 22 -0.411545 5 C s 27 0.411545 6 C s - 24 -0.394345 5 C py 29 -0.394345 6 C py + 4 0.662429 1 C py 9 0.662429 2 C py + 13 -0.566303 3 C px 18 -0.566303 4 C px + 23 0.494108 5 C px 28 0.494108 6 C px + 22 -0.411544 5 C s 27 0.411544 6 C s + 24 -0.394347 5 C py 29 -0.394347 6 C py Final MO vectors @@ -1732,62 +3317,62 @@ 1 2 3 4 5 6 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.70148 0.70154 -0.00965 0.00998 0.00164 -0.00338 - 2 0.02526 0.02518 0.00379 -0.00374 0.00165 -0.00632 + 1 0.70148 0.70154 -0.00960 0.00993 0.00164 -0.00337 + 2 0.02526 0.02518 0.00379 -0.00374 0.00164 -0.00633 3 -0.00000 0.00004 0.00047 -0.00047 -0.00361 0.00164 4 -0.00066 -0.00045 0.00294 -0.00293 0.00008 0.00193 - 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 6 -0.70148 0.70154 0.00965 0.00998 -0.00164 -0.00338 - 7 -0.02526 0.02518 -0.00379 -0.00374 -0.00165 -0.00632 + 5 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 6 -0.70148 0.70154 0.00960 0.00993 -0.00164 -0.00337 + 7 -0.02526 0.02518 -0.00379 -0.00374 -0.00164 -0.00633 8 -0.00000 -0.00004 0.00047 0.00047 -0.00361 -0.00164 9 -0.00066 0.00045 0.00294 0.00293 0.00008 -0.00193 - 10 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 11 0.00581 0.00321 0.00369 -0.00628 0.37272 0.29653 - 12 -0.00477 -0.00461 0.00007 -0.00019 0.00915 0.00633 + 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 11 0.00581 0.00321 0.00369 -0.00630 0.37295 0.29678 + 12 -0.00477 -0.00461 0.00007 -0.00019 0.00916 0.00634 13 0.00242 0.00243 -0.00000 0.00006 0.00007 0.00034 14 -0.00200 -0.00203 0.00003 -0.00001 0.00237 0.00275 - 15 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 16 -0.00581 0.00321 -0.00369 -0.00628 -0.37272 0.29653 - 17 0.00477 -0.00461 -0.00007 -0.00019 -0.00915 0.00633 + 15 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 16 -0.00581 0.00321 -0.00369 -0.00630 -0.37295 0.29678 + 17 0.00477 -0.00461 -0.00007 -0.00019 -0.00916 0.00634 18 0.00242 -0.00243 -0.00000 -0.00006 0.00007 -0.00034 19 -0.00200 0.00203 0.00003 0.00001 0.00237 -0.00275 - 20 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 21 -0.00580 0.00327 -0.00243 -0.00515 0.59468 0.63610 - 22 0.00473 -0.00456 0.00002 -0.00009 0.01884 0.02091 - 23 -0.00291 0.00292 0.00002 0.00007 -0.00077 -0.00054 + 20 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 21 -0.00579 0.00327 -0.00243 -0.00517 0.59454 0.63598 + 22 0.00473 -0.00456 0.00002 -0.00009 0.01884 0.02090 + 23 -0.00291 0.00292 0.00002 0.00006 -0.00077 -0.00054 24 -0.00110 0.00113 -0.00000 -0.00002 -0.00110 -0.00094 - 25 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 26 0.00580 0.00327 0.00243 -0.00515 -0.59468 0.63610 - 27 -0.00473 -0.00456 -0.00002 -0.00009 -0.01884 0.02091 - 28 -0.00291 -0.00292 0.00002 -0.00007 -0.00077 0.00054 + 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 26 0.00579 0.00327 0.00243 -0.00517 -0.59454 0.63598 + 27 -0.00473 -0.00456 -0.00002 -0.00009 -0.01884 0.02090 + 28 -0.00291 -0.00292 0.00002 -0.00006 -0.00077 0.00054 29 -0.00110 -0.00113 -0.00000 0.00002 -0.00110 0.00094 - 30 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 31 0.00006 -0.00002 -0.00001 0.00001 -0.00239 -0.00203 32 -0.00006 -0.00002 0.00001 0.00001 0.00239 -0.00203 33 -0.00005 -0.00003 -0.00009 -0.00009 -0.00393 -0.00436 34 0.00005 -0.00003 0.00009 -0.00009 0.00393 -0.00436 - 35 0.00891 -0.00924 0.70136 0.70132 0.00014 0.00744 - 36 0.00449 -0.00455 0.02500 0.02499 0.00007 0.00041 + 35 0.00886 -0.00919 0.70136 0.70132 0.00014 0.00746 + 36 0.00449 -0.00455 0.02501 0.02499 0.00007 0.00041 37 0.00063 -0.00064 0.00051 0.00051 -0.00003 0.00004 - 38 0.00288 -0.00292 -0.00065 -0.00065 0.00005 -0.00002 - 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 40 -0.00891 -0.00924 -0.70136 0.70132 -0.00014 0.00744 - 41 -0.00449 -0.00455 -0.02500 0.02499 -0.00007 0.00041 + 38 0.00289 -0.00292 -0.00064 -0.00065 0.00005 -0.00002 + 39 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 40 -0.00886 -0.00919 -0.70136 0.70132 -0.00014 0.00746 + 41 -0.00449 -0.00455 -0.02501 0.02499 -0.00007 0.00041 42 0.00063 0.00064 0.00051 -0.00051 -0.00003 -0.00004 - 43 0.00288 0.00292 -0.00065 0.00065 0.00005 0.00002 - 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 43 0.00289 0.00292 -0.00064 0.00065 0.00005 0.00002 + 44 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 45 -0.00009 0.00009 -0.00478 -0.00478 -0.00000 -0.00013 46 0.00009 0.00009 0.00478 -0.00478 0.00000 -0.00013 - 47 0.00052 -0.00049 0.01784 0.01784 -0.00075 -0.00094 + 47 0.00051 -0.00049 0.01783 0.01783 -0.00075 -0.00094 48 -0.00018 0.00019 -0.00474 -0.00474 -0.00004 -0.00017 49 -0.00004 0.00004 0.00211 0.00211 -0.00004 -0.00001 50 -0.00010 0.00010 -0.00239 -0.00239 -0.00003 -0.00011 - 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 52 -0.00052 -0.00049 -0.01784 0.01784 0.00075 -0.00094 + 51 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 52 -0.00051 -0.00049 -0.01783 0.01783 0.00075 -0.00094 53 0.00018 0.00019 0.00474 -0.00474 0.00004 -0.00017 54 -0.00004 -0.00004 0.00211 -0.00211 -0.00004 0.00001 55 -0.00010 -0.00010 -0.00239 0.00239 -0.00003 0.00011 - 56 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 56 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 57 0.00010 -0.00010 -0.00006 -0.00006 0.00009 0.00010 58 -0.00010 -0.00010 0.00006 -0.00006 -0.00009 0.00010 59 0.00002 -0.00002 -0.00004 -0.00004 -0.00001 -0.00001 @@ -1795,62 +3380,62 @@ 7 8 9 10 11 12 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00716 -0.00117 -0.00027 0.00024 -0.10669 0.10127 + 1 -0.00715 -0.00117 -0.00027 0.00024 -0.10669 0.10127 2 -0.00713 -0.00230 -0.00027 0.00027 0.27537 -0.27081 - 3 -0.00043 -0.00336 -0.00005 0.00005 -0.00529 -0.00407 + 3 -0.00042 -0.00337 -0.00005 0.00005 -0.00529 -0.00407 4 0.00237 0.00137 -0.00012 0.00012 -0.03821 -0.03177 - 5 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 6 0.00716 -0.00117 0.00027 0.00024 -0.10669 -0.10127 + 5 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 6 0.00715 -0.00117 0.00027 0.00024 -0.10669 -0.10127 7 0.00713 -0.00230 0.00027 0.00027 0.27537 0.27081 - 8 -0.00043 0.00336 -0.00005 -0.00005 0.00529 -0.00407 + 8 -0.00042 0.00337 -0.00005 -0.00005 0.00529 -0.00407 9 0.00237 -0.00137 -0.00012 -0.00012 0.03821 -0.03177 - 10 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 11 0.59436 0.63586 -0.00026 0.00041 -0.09665 0.03774 + 10 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 11 0.59422 0.63574 -0.00027 0.00041 -0.09665 0.03774 12 0.02429 0.02493 0.00001 -0.00007 0.24727 -0.10004 13 -0.00099 -0.00071 -0.00001 0.00002 -0.05226 0.02862 14 -0.00193 -0.00161 0.00006 -0.00002 -0.01452 -0.05673 - 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 16 -0.59436 0.63586 0.00026 0.00041 -0.09665 -0.03774 + 15 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 16 -0.59422 0.63574 0.00027 0.00041 -0.09665 -0.03774 17 -0.02429 0.02493 -0.00001 -0.00007 0.24727 0.10004 18 -0.00099 0.00071 -0.00001 -0.00002 0.05226 0.02862 19 -0.00193 0.00161 0.00006 0.00002 0.01452 -0.05673 - 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 21 -0.37222 -0.29604 0.00107 0.00108 -0.09646 -0.04167 - 22 -0.01788 -0.01502 0.00000 -0.00001 0.24713 0.11107 + 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 21 -0.37245 -0.29628 0.00107 0.00108 -0.09646 -0.04167 + 22 -0.01788 -0.01503 0.00000 -0.00001 0.24713 0.11107 23 -0.00002 -0.00025 0.00001 0.00000 -0.04467 -0.04526 24 -0.00292 -0.00308 0.00009 0.00008 0.03103 -0.04400 - 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 26 0.37222 -0.29604 -0.00107 0.00108 -0.09646 0.04167 - 27 0.01788 -0.01502 -0.00000 -0.00001 0.24713 -0.11107 + 25 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 26 0.37245 -0.29628 -0.00107 0.00108 -0.09646 0.04167 + 27 0.01788 -0.01503 -0.00000 -0.00001 0.24713 -0.11107 28 -0.00002 0.00025 0.00001 -0.00000 0.04467 -0.04526 29 -0.00292 0.00308 0.00009 -0.00008 -0.03103 -0.04400 - 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 31 -0.00405 -0.00433 0.00000 -0.00000 0.04417 -0.02580 - 32 0.00405 -0.00433 -0.00000 -0.00000 0.04417 0.02580 + 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 31 -0.00404 -0.00433 0.00000 -0.00000 0.04417 -0.02580 + 32 0.00404 -0.00433 -0.00000 -0.00000 0.04417 0.02580 33 0.00261 0.00202 0.00005 0.00006 0.04439 0.02948 34 -0.00261 0.00202 -0.00005 0.00006 0.04439 -0.02948 - 35 -0.00456 0.00356 -0.01740 -0.01739 -0.04969 -0.11307 + 35 -0.00456 0.00356 -0.01739 -0.01739 -0.04969 -0.11307 36 -0.00046 0.00018 -0.00604 -0.00604 0.12875 0.29870 37 -0.00007 0.00001 -0.00218 -0.00218 0.01431 0.03768 38 -0.00009 -0.00002 0.00239 0.00239 0.02732 0.00637 - 39 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 40 0.00456 0.00356 0.01740 -0.01739 -0.04969 0.11307 + 39 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 40 0.00456 0.00356 0.01739 -0.01739 -0.04969 0.11307 41 0.00046 0.00018 0.00604 -0.00604 0.12875 -0.29870 42 -0.00007 -0.00001 -0.00218 0.00218 -0.01431 0.03768 43 -0.00009 0.00002 0.00239 -0.00239 -0.02732 0.00637 - 44 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 44 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 45 0.00010 -0.00006 0.00017 0.00017 0.02537 0.06663 46 -0.00010 -0.00006 -0.00017 0.00017 0.02537 -0.06663 47 0.00066 0.00018 0.70143 0.70143 -0.02518 -0.08141 48 0.00014 -0.00004 0.02536 0.02536 0.06484 0.21365 49 0.00000 0.00003 -0.00077 -0.00077 -0.01330 -0.03922 - 50 0.00008 -0.00003 0.00082 0.00082 0.02040 0.05117 - 51 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 50 0.00008 -0.00003 0.00082 0.00082 0.02041 0.05117 + 51 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 52 -0.00066 0.00018 -0.70143 0.70143 -0.02518 0.08141 53 -0.00014 -0.00004 -0.02536 0.02536 0.06484 -0.21365 54 0.00000 -0.00003 -0.00077 0.00077 0.01330 -0.03922 - 55 0.00008 0.00003 0.00082 -0.00082 -0.02040 0.05117 - 56 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 55 0.00008 0.00003 0.00082 -0.00082 -0.02041 0.05117 + 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 57 -0.00007 -0.00006 -0.00473 -0.00473 0.01401 0.04892 58 0.00007 -0.00006 0.00473 -0.00473 0.01401 -0.04892 59 0.00001 -0.00000 -0.00475 -0.00475 0.01084 0.04446 @@ -1858,36 +3443,36 @@ 13 14 15 16 17 18 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00297 -0.01206 -0.10028 0.07233 0.05043 -0.01130 - 2 0.01021 0.03299 0.27908 -0.21293 -0.15131 0.03251 + 1 -0.00297 -0.01206 -0.10028 0.07233 0.05042 -0.01130 + 2 0.01021 0.03299 0.27908 -0.21293 -0.15130 0.03251 3 0.01072 0.12512 -0.01858 -0.11392 0.18994 -0.05062 4 0.09341 -0.02334 -0.05879 -0.07380 -0.06338 -0.13855 - 5 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 6 -0.00297 0.01206 0.10028 0.07233 0.05043 0.01130 - 7 0.01021 -0.03299 -0.27908 -0.21293 -0.15131 -0.03251 + 5 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 6 -0.00297 0.01206 0.10028 0.07233 0.05042 0.01130 + 7 0.01021 -0.03299 -0.27908 -0.21293 -0.15130 -0.03251 8 -0.01072 0.12512 -0.01858 0.11392 -0.18994 -0.05062 9 -0.09341 -0.02334 -0.05879 0.07380 0.06338 -0.13855 - 10 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 11 0.04598 -0.13091 -0.04228 -0.00068 -0.10905 -0.04827 12 -0.12241 0.35713 0.11798 0.00038 0.32485 0.14794 13 0.01557 -0.00206 -0.03981 0.03447 0.07474 -0.00499 14 0.03503 -0.05907 0.09190 -0.15917 0.04222 0.00882 - 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 15 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 16 0.04598 0.13091 0.04228 -0.00068 -0.10905 0.04827 17 -0.12241 -0.35713 -0.11798 0.00038 0.32485 -0.14794 18 -0.01557 -0.00206 -0.03981 -0.03447 -0.07474 -0.00499 19 -0.03503 -0.05907 0.09190 0.15917 -0.04222 0.00882 - 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 20 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 21 0.04178 -0.11920 0.07212 -0.07935 0.06026 0.03028 - 22 -0.11047 0.32501 -0.20070 0.22943 -0.18080 -0.09235 + 22 -0.11048 0.32501 -0.20070 0.22943 -0.18081 -0.09235 23 0.00187 0.03044 0.05768 0.06813 0.08309 0.03409 24 -0.04440 0.06952 0.04833 0.03027 0.16974 0.07638 - 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 25 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 26 0.04178 0.11920 -0.07212 -0.07935 0.06026 -0.03028 - 27 -0.11047 -0.32501 0.20070 0.22943 -0.18080 0.09235 + 27 -0.11048 -0.32501 0.20070 0.22943 -0.18081 0.09235 28 -0.00187 0.03044 0.05768 -0.06813 -0.08309 0.03409 29 0.04440 0.06952 0.04833 -0.03027 -0.16974 0.07638 - 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 30 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 31 -0.02382 0.09808 0.03404 -0.01381 0.17364 0.05184 32 -0.02382 -0.09808 -0.03404 -0.01381 0.17364 -0.05184 33 -0.01812 0.08988 -0.05447 0.10625 -0.09277 -0.05588 @@ -1896,26 +3481,26 @@ 36 0.31447 -0.00141 0.13620 -0.15950 -0.02294 0.29752 37 0.04856 0.01960 0.04017 0.07656 -0.04227 -0.11268 38 -0.05856 -0.01676 -0.12811 -0.13284 -0.07422 0.04537 - 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 40 -0.11765 -0.00033 0.05074 0.05255 0.00696 0.09654 41 0.31447 0.00141 -0.13620 -0.15950 -0.02294 -0.29752 42 -0.04856 0.01960 0.04017 -0.07656 0.04227 -0.11268 43 0.05856 -0.01676 -0.12811 0.13284 0.07422 0.04537 - 44 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 44 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 45 0.07614 -0.00904 0.03781 -0.08110 0.03153 0.17484 46 0.07614 0.00904 -0.03781 -0.08110 0.03153 -0.17484 47 -0.11635 -0.01271 -0.10674 -0.08250 -0.03462 0.08032 48 0.31008 0.03382 0.29222 0.23993 0.10374 -0.24821 49 -0.05070 0.00083 -0.03515 0.03354 -0.01185 -0.11853 50 0.05563 0.00584 0.02111 -0.03806 -0.04423 0.09244 - 51 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 51 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 52 -0.11635 0.01271 0.10674 -0.08250 -0.03462 -0.08032 53 0.31008 -0.03382 -0.29222 0.23993 0.10374 0.24821 54 0.05070 0.00083 -0.03515 -0.03354 0.01185 -0.11853 55 -0.05563 0.00584 0.02111 0.03806 0.04423 0.09244 - 56 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 57 0.07436 0.01269 0.07688 0.10484 0.02247 -0.16389 - 58 0.07436 -0.01269 -0.07688 0.10484 0.02247 0.16389 + 56 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 57 0.07436 0.01269 0.07688 0.10484 0.02248 -0.16389 + 58 0.07436 -0.01269 -0.07688 0.10484 0.02248 0.16389 59 0.07480 0.00781 0.08811 0.10145 0.06533 -0.13085 60 0.07480 -0.00781 -0.08811 0.10145 0.06533 0.13085 @@ -1923,442 +3508,442 @@ ----------- ----------- ----------- ----------- ----------- ----------- 1 0.05635 -0.02870 0.02569 -0.06597 -0.01971 0.01990 2 -0.17081 0.09582 -0.08867 0.22349 0.06676 -0.06515 - 3 -0.01908 0.04971 0.11788 0.10050 -0.22199 -0.01364 + 3 -0.01908 0.04971 0.11788 0.10051 -0.22199 -0.01364 4 0.13510 0.13632 -0.13269 -0.03061 -0.13927 -0.00811 - 5 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 6 0.05635 -0.02870 -0.02569 0.06597 0.01971 0.01990 7 -0.17081 0.09582 0.08867 -0.22349 -0.06676 -0.06515 - 8 0.01908 -0.04971 0.11788 0.10050 -0.22199 0.01364 + 8 0.01908 -0.04971 0.11788 0.10051 -0.22199 0.01364 9 -0.13510 -0.13632 -0.13269 -0.03061 -0.13927 0.00811 - 10 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 10 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 11 -0.00739 -0.01171 -0.02327 0.04508 -0.00178 -0.02313 12 0.02548 0.04483 0.07841 -0.15396 0.00340 0.07690 13 0.17431 0.14312 0.02854 -0.22080 0.00235 -0.00636 - 14 -0.09610 0.13702 0.18191 0.06810 -0.11758 -0.08071 - 15 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 14 -0.09611 0.13702 0.18191 0.06810 -0.11757 -0.08071 + 15 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 16 -0.00739 -0.01171 0.02327 -0.04508 0.00178 -0.02313 17 0.02548 0.04483 -0.07841 0.15396 -0.00340 0.07690 18 -0.17431 -0.14312 0.02854 -0.22080 0.00235 0.00636 - 19 0.09610 -0.13702 0.18191 0.06810 -0.11758 0.08071 - 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 19 0.09611 -0.13702 0.18191 0.06810 -0.11757 0.08071 + 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 21 -0.04991 0.01688 0.04175 -0.04083 0.01136 0.01619 - 22 0.15823 -0.04801 -0.13643 0.14102 -0.03587 -0.05945 + 22 0.15823 -0.04801 -0.13643 0.14101 -0.03587 -0.05945 23 0.19463 0.09267 -0.10371 0.11539 0.24895 -0.03894 - 24 -0.02349 -0.13871 -0.09327 -0.17946 0.06138 0.13432 - 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 24 -0.02349 -0.13872 -0.09327 -0.17947 0.06138 0.13432 + 25 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 26 -0.04991 0.01688 -0.04175 0.04083 -0.01136 0.01619 - 27 0.15823 -0.04801 0.13643 -0.14102 0.03587 -0.05945 + 27 0.15823 -0.04801 0.13643 -0.14101 0.03587 -0.05945 28 -0.19463 -0.09267 -0.10371 0.11539 0.24895 0.03894 - 29 0.02349 0.13871 -0.09327 -0.17946 0.06138 -0.13432 - 30 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 29 0.02349 0.13872 -0.09327 -0.17947 0.06138 -0.13432 + 30 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 31 0.09884 0.14691 0.11132 -0.22576 -0.03144 0.00351 32 0.09884 0.14691 -0.11132 0.22576 0.03144 0.00351 - 33 0.16886 0.10361 -0.07136 0.23490 0.12912 -0.11659 - 34 0.16886 0.10361 0.07136 -0.23490 -0.12912 -0.11659 + 33 0.16886 0.10361 -0.07136 0.23490 0.12913 -0.11659 + 34 0.16886 0.10361 0.07136 -0.23490 -0.12913 -0.11659 35 -0.06065 0.03501 -0.01410 -0.01560 -0.00245 -0.02553 - 36 0.18735 -0.11049 0.04410 0.04398 0.01483 0.07453 + 36 0.18735 -0.11049 0.04410 0.04397 0.01483 0.07452 37 -0.07122 0.11003 0.21505 0.04703 -0.04675 0.24900 - 38 -0.01009 0.18321 0.10305 -0.11921 0.17890 -0.08633 - 39 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 38 -0.01009 0.18321 0.10305 -0.11921 0.17889 -0.08633 + 39 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 40 -0.06065 0.03501 0.01410 0.01560 0.00245 -0.02553 - 41 0.18735 -0.11049 -0.04410 -0.04398 -0.01483 0.07453 + 41 0.18735 -0.11049 -0.04410 -0.04397 -0.01483 0.07452 42 0.07122 -0.11003 0.21505 0.04703 -0.04675 -0.24900 - 43 0.01009 -0.18321 0.10305 -0.11921 0.17890 0.08633 - 44 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 43 0.01009 -0.18321 0.10305 -0.11921 0.17889 0.08633 + 44 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 45 0.12516 -0.15273 -0.16530 0.01754 0.01423 -0.15136 46 0.12516 -0.15273 0.16530 -0.01754 -0.01423 -0.15136 - 47 0.05078 -0.01416 0.00664 0.01166 0.00119 -0.00364 - 48 -0.16147 0.05373 -0.02492 -0.04742 0.00610 -0.00095 + 47 0.05078 -0.01416 0.00664 0.01166 0.00119 -0.00365 + 48 -0.16147 0.05373 -0.02492 -0.04743 0.00610 -0.00094 49 -0.08644 0.20470 0.09073 -0.06668 0.25284 -0.01509 50 0.08198 0.01235 0.20180 0.14421 0.03561 0.33624 - 51 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 52 0.05078 -0.01416 -0.00664 -0.01166 -0.00119 -0.00364 - 53 -0.16147 0.05373 0.02492 0.04742 -0.00610 -0.00095 + 51 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 52 0.05078 -0.01416 -0.00664 -0.01166 -0.00119 -0.00365 + 53 -0.16147 0.05373 0.02492 0.04743 -0.00610 -0.00094 54 0.08644 -0.20470 0.09073 -0.06668 0.25284 0.01509 55 -0.08198 -0.01235 0.20180 0.14421 0.03561 -0.33624 - 56 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 57 -0.10616 0.17885 0.08017 -0.03906 0.22277 0.02576 58 -0.10616 0.17885 -0.08017 0.03906 -0.22277 0.02576 - 59 -0.10015 -0.02920 -0.17909 -0.11802 -0.09032 -0.26836 - 60 -0.10015 -0.02920 0.17909 0.11802 0.09032 -0.26836 + 59 -0.10015 -0.02919 -0.17909 -0.11802 -0.09032 -0.26836 + 60 -0.10015 -0.02919 0.17909 0.11802 0.09032 -0.26836 25 26 27 28 29 30 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00257 0.00260 0.02328 0.00000 -0.00983 -0.00210 - 2 -0.00864 -0.00952 -0.08354 -0.00000 0.04304 0.01635 - 3 -0.08356 0.17616 0.08391 -0.00000 0.09381 -0.16359 - 4 0.07383 -0.17697 0.00418 0.00000 0.24372 0.26026 - 5 -0.00000 0.00000 0.00000 0.33150 -0.00000 -0.00000 - 6 -0.00257 -0.00260 0.02328 0.00000 0.00983 -0.00210 - 7 0.00864 0.00952 -0.08354 -0.00000 -0.04304 0.01635 - 8 -0.08356 0.17616 -0.08391 -0.00000 0.09381 0.16359 - 9 0.07383 -0.17697 -0.00418 0.00000 0.24372 -0.26026 - 10 -0.00000 0.00000 0.00000 0.33150 0.00000 0.00000 + 1 0.00257 0.00260 0.02328 -0.00000 -0.00983 -0.00210 + 2 -0.00864 -0.00952 -0.08354 0.00000 0.04304 0.01635 + 3 -0.08356 0.17615 0.08391 -0.00000 0.09381 -0.16360 + 4 0.07383 -0.17697 0.00418 0.00000 0.24372 0.26025 + 5 -0.00000 0.00000 0.00000 0.33150 0.00000 -0.00000 + 6 -0.00257 -0.00260 0.02328 -0.00000 0.00983 -0.00210 + 7 0.00864 0.00952 -0.08354 0.00000 -0.04304 0.01635 + 8 -0.08356 0.17615 -0.08391 0.00000 0.09381 0.16360 + 9 0.07383 -0.17697 -0.00418 -0.00000 0.24372 -0.26025 + 10 -0.00000 -0.00000 0.00000 0.33150 0.00000 0.00000 11 0.02569 -0.01703 0.00423 0.00000 0.00744 0.00407 12 -0.08248 0.06113 -0.02149 -0.00000 -0.02348 -0.01323 13 0.29940 -0.11128 -0.12658 0.00000 0.06660 0.15890 14 0.15374 0.22297 -0.13207 -0.00000 0.03473 -0.26821 - 15 -0.00000 0.00000 0.00000 0.30283 -0.00000 -0.00000 - 16 -0.02569 0.01703 0.00423 -0.00000 -0.00744 0.00407 - 17 0.08248 -0.06113 -0.02149 0.00000 0.02348 -0.01323 - 18 0.29940 -0.11128 0.12658 0.00000 0.06660 -0.15890 - 19 0.15374 0.22297 0.13207 -0.00000 0.03473 0.26821 - 20 -0.00000 0.00000 0.00000 0.30283 -0.00000 0.00000 + 15 0.00000 0.00000 0.00000 0.30283 0.00000 0.00000 + 16 -0.02569 0.01703 0.00423 0.00000 -0.00744 0.00407 + 17 0.08248 -0.06113 -0.02149 -0.00000 0.02348 -0.01323 + 18 0.29940 -0.11128 0.12658 -0.00000 0.06660 -0.15890 + 19 0.15374 0.22297 0.13207 0.00000 0.03473 0.26821 + 20 -0.00000 0.00000 0.00000 0.30283 0.00000 -0.00000 21 0.01847 0.00605 -0.00713 -0.00000 -0.01378 -0.00966 - 22 -0.05932 -0.01702 0.02414 0.00000 0.04753 0.02840 - 23 0.17905 -0.07790 0.06229 0.00000 -0.14407 -0.11753 - 24 -0.23285 -0.18488 0.13677 0.00000 -0.01059 0.22347 - 25 -0.00000 0.00000 0.00000 0.30187 0.00000 0.00000 - 26 -0.01847 -0.00605 -0.00713 0.00000 0.01378 -0.00966 - 27 0.05932 0.01702 0.02414 -0.00000 -0.04753 0.02840 + 22 -0.05932 -0.01702 0.02414 0.00000 0.04752 0.02840 + 23 0.17905 -0.07790 0.06229 -0.00000 -0.14407 -0.11753 + 24 -0.23285 -0.18488 0.13677 -0.00000 -0.01059 0.22347 + 25 -0.00000 0.00000 -0.00000 0.30187 0.00000 0.00000 + 26 -0.01847 -0.00605 -0.00713 -0.00000 0.01378 -0.00966 + 27 0.05932 0.01702 0.02414 0.00000 -0.04752 0.02840 28 0.17905 -0.07790 -0.06229 0.00000 -0.14407 0.11753 29 -0.23285 -0.18488 -0.13677 0.00000 -0.01059 -0.22347 - 30 -0.00000 0.00000 0.00000 0.30187 0.00000 -0.00000 - 31 0.25850 -0.00250 -0.15685 -0.00000 0.04885 0.05277 - 32 -0.25850 0.00250 -0.15685 -0.00000 -0.04885 0.05277 + 30 0.00000 0.00000 -0.00000 0.30187 0.00000 -0.00000 + 31 0.25850 -0.00250 -0.15685 0.00000 0.04885 0.05278 + 32 -0.25850 0.00250 -0.15685 0.00000 -0.04885 0.05278 33 0.22360 0.03999 -0.00010 -0.00000 -0.05941 -0.25390 - 34 -0.22360 -0.03999 -0.00010 0.00000 0.05941 -0.25390 - 35 -0.00158 0.00086 -0.01510 -0.00000 0.00351 -0.01752 - 36 0.00361 0.01230 0.06315 0.00000 -0.01123 0.07388 - 37 -0.02371 -0.20200 -0.20936 0.00000 -0.21453 0.02592 + 34 -0.22360 -0.03999 -0.00010 -0.00000 0.05941 -0.25390 + 35 -0.00158 0.00086 -0.01510 0.00000 0.00351 -0.01752 + 36 0.00361 0.01230 0.06315 -0.00000 -0.01123 0.07387 + 37 -0.02371 -0.20200 -0.20936 -0.00000 -0.21453 0.02592 38 -0.05915 0.18876 0.08025 -0.00000 -0.17918 0.23293 - 39 -0.00000 0.00000 0.00000 0.16558 0.00000 0.00000 - 40 0.00158 -0.00086 -0.01510 -0.00000 -0.00351 -0.01752 - 41 -0.00361 -0.01230 0.06315 0.00000 0.01123 0.07388 + 39 0.00000 0.00000 0.00000 0.16558 0.00000 0.00000 + 40 0.00158 -0.00086 -0.01510 0.00000 -0.00351 -0.01752 + 41 -0.00361 -0.01230 0.06315 -0.00000 0.01123 0.07387 42 -0.02371 -0.20200 0.20936 0.00000 -0.21453 -0.02592 - 43 -0.05915 0.18876 -0.08025 -0.00000 -0.17918 -0.23293 - 44 -0.00000 -0.00000 -0.00000 0.16558 0.00000 -0.00000 - 45 0.02240 0.14844 0.20296 -0.00000 0.25725 -0.04644 + 43 -0.05915 0.18876 -0.08025 0.00000 -0.17918 -0.23293 + 44 0.00000 -0.00000 0.00000 0.16558 0.00000 -0.00000 + 45 0.02240 0.14844 0.20296 0.00000 0.25725 -0.04644 46 -0.02240 -0.14844 0.20296 0.00000 -0.25725 -0.04644 - 47 0.00434 0.01891 0.00989 -0.00000 0.00268 0.00872 - 48 -0.01686 -0.05201 -0.02602 0.00000 -0.01229 -0.02347 - 49 -0.07124 0.12590 0.29613 -0.00000 0.19454 0.03662 - 50 -0.01404 -0.23894 0.05034 0.00000 0.14136 -0.13811 - 51 -0.00000 0.00000 0.00000 0.09914 0.00000 0.00000 + 47 0.00434 0.01891 0.00989 0.00000 0.00268 0.00872 + 48 -0.01686 -0.05201 -0.02602 -0.00000 -0.01229 -0.02347 + 49 -0.07124 0.12590 0.29613 0.00000 0.19454 0.03662 + 50 -0.01404 -0.23894 0.05034 -0.00000 0.14136 -0.13811 + 51 -0.00000 -0.00000 0.00000 0.09914 0.00000 -0.00000 52 -0.00434 -0.01891 0.00989 0.00000 -0.00268 0.00872 53 0.01686 0.05201 -0.02602 -0.00000 0.01229 -0.02347 54 -0.07124 0.12590 -0.29613 -0.00000 0.19454 -0.03662 55 -0.01404 -0.23894 -0.05034 0.00000 0.14136 0.13811 - 56 -0.00000 -0.00000 -0.00000 0.09914 0.00000 -0.00000 - 57 -0.05652 0.05847 0.27318 -0.00000 0.22630 -0.03215 - 58 0.05652 -0.05847 0.27318 0.00000 -0.22630 -0.03215 - 59 0.02227 0.15354 -0.14587 -0.00000 -0.21197 0.12146 - 60 -0.02227 -0.15354 -0.14587 0.00000 0.21197 0.12146 + 56 -0.00000 -0.00000 0.00000 0.09914 0.00000 -0.00000 + 57 -0.05652 0.05847 0.27319 0.00000 0.22630 -0.03215 + 58 0.05652 -0.05847 0.27319 0.00000 -0.22630 -0.03215 + 59 0.02227 0.15355 -0.14587 -0.00000 -0.21197 0.12146 + 60 -0.02227 -0.15355 -0.14587 -0.00000 0.21197 0.12146 31 32 33 34 35 36 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00629 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 2 0.03168 0.00000 0.00000 0.00000 -0.00000 0.00000 - 3 0.27885 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 4 0.12972 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 5 -0.00000 -0.31868 -0.03965 -0.00225 0.41799 0.47153 - 6 -0.00629 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 7 0.03168 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 1 -0.00629 0.00000 -0.00000 0.00000 0.00000 0.00000 + 2 0.03168 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 3 0.27885 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 4 0.12973 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 5 0.00000 -0.31868 -0.03965 -0.00225 0.41799 0.47153 + 6 -0.00629 0.00000 -0.00000 0.00000 0.00000 0.00000 + 7 0.03168 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 8 -0.27885 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 9 -0.12972 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 9 -0.12973 0.00000 -0.00000 0.00000 0.00000 0.00000 10 0.00000 0.31868 -0.03965 0.00225 -0.41799 0.47153 - 11 -0.01149 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 12 0.03512 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 13 -0.21036 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 14 -0.08519 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 15 -0.00000 -0.12429 -0.16451 0.45982 0.23189 -0.24997 - 16 -0.01149 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 17 0.03512 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 18 0.21036 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 19 0.08519 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 11 -0.01149 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 12 0.03512 0.00000 0.00000 0.00000 0.00000 0.00000 + 13 -0.21035 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 14 -0.08520 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 15 0.00000 -0.12429 -0.16451 0.45982 0.23189 -0.24997 + 16 -0.01149 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 17 0.03512 0.00000 0.00000 0.00000 -0.00000 0.00000 + 18 0.21035 0.00000 -0.00000 0.00000 0.00000 0.00000 + 19 0.08520 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 20 0.00000 0.12429 -0.16451 -0.45982 -0.23189 -0.24997 - 21 0.00666 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 22 -0.02027 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 23 0.26904 -0.00000 0.00000 0.00000 0.00000 0.00000 - 24 0.12357 0.00000 -0.00000 0.00000 0.00000 0.00000 + 21 0.00666 0.00000 -0.00000 0.00000 0.00000 0.00000 + 22 -0.02026 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 23 0.26904 0.00000 -0.00000 0.00000 0.00000 0.00000 + 24 0.12358 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 25 0.00000 0.11940 -0.16493 0.46149 -0.23200 -0.27857 - 26 0.00666 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 27 -0.02027 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 28 -0.26904 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 29 -0.12357 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 30 -0.00000 -0.11940 -0.16493 -0.46149 0.23200 -0.27857 - 31 -0.25163 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 32 -0.25163 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 33 0.12318 0.00000 0.00000 -0.00000 0.00000 0.00000 - 34 0.12318 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 35 -0.01308 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 36 0.04729 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 37 0.14120 0.00000 0.00000 0.00000 0.00000 0.00000 - 38 0.14327 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 26 0.00666 0.00000 -0.00000 0.00000 0.00000 0.00000 + 27 -0.02026 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 28 -0.26904 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 29 -0.12358 0.00000 -0.00000 0.00000 0.00000 0.00000 + 30 0.00000 -0.11940 -0.16493 -0.46149 0.23200 -0.27857 + 31 -0.25162 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 32 -0.25162 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 33 0.12318 0.00000 -0.00000 0.00000 0.00000 0.00000 + 34 0.12318 0.00000 -0.00000 0.00000 0.00000 0.00000 + 35 -0.01308 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 36 0.04729 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 37 0.14120 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 38 0.14327 -0.00000 0.00000 -0.00000 -0.00000 0.00000 39 0.00000 0.38321 0.41518 0.00019 0.21835 0.24693 - 40 -0.01308 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 41 0.04729 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 42 -0.14120 0.00000 -0.00000 0.00000 0.00000 0.00000 - 43 -0.14327 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 44 -0.00000 -0.38321 0.41518 -0.00019 -0.21835 0.24693 - 45 -0.18377 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 46 -0.18377 0.00000 0.00000 0.00000 0.00000 0.00000 - 47 -0.00303 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 40 -0.01308 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 41 0.04729 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 42 -0.14120 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 43 -0.14327 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 44 0.00000 -0.38321 0.41518 -0.00019 -0.21835 0.24693 + 45 -0.18377 0.00000 -0.00000 0.00000 0.00000 0.00000 + 46 -0.18377 0.00000 -0.00000 0.00000 0.00000 0.00000 + 47 -0.00303 -0.00000 0.00000 -0.00000 -0.00000 0.00000 48 0.01380 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 49 -0.10128 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 50 -0.05574 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 49 -0.10128 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 50 -0.05574 0.00000 -0.00000 0.00000 0.00000 0.00000 51 0.00000 0.30667 0.42629 0.00262 0.35818 -0.41493 - 52 -0.00303 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 53 0.01380 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 54 0.10128 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 55 0.05574 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 56 -0.00000 -0.30667 0.42629 -0.00262 -0.35818 -0.41493 - 57 -0.11731 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 58 -0.11731 0.00000 0.00000 0.00000 0.00000 0.00000 - 59 0.10240 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 60 0.10240 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 52 -0.00303 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 53 0.01380 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 54 0.10128 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 55 0.05574 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 56 0.00000 -0.30667 0.42629 -0.00262 -0.35818 -0.41493 + 57 -0.11731 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 58 -0.11731 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 59 0.10240 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 60 0.10240 -0.00000 0.00000 -0.00000 -0.00000 0.00000 37 38 39 40 41 42 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 0.00000 0.00000 -0.00000 0.06347 -0.02959 - 2 0.00000 -0.00000 -0.00000 0.00000 -0.38006 0.17692 - 3 -0.00000 0.00000 -0.00000 -0.00000 -0.08842 0.28350 - 4 0.00000 -0.00000 -0.00000 0.00000 -0.26802 0.11184 + 1 -0.00000 0.00000 0.00000 0.00000 0.06347 -0.02959 + 2 0.00000 -0.00000 -0.00000 -0.00000 -0.38004 0.17692 + 3 0.00000 0.00000 -0.00000 -0.00000 -0.08842 0.28349 + 4 0.00000 -0.00000 -0.00000 0.00000 -0.26801 0.11184 5 -0.02229 -0.03791 -0.47349 0.53871 -0.00000 -0.00000 - 6 0.00000 -0.00000 -0.00000 0.00000 0.06347 0.02959 - 7 -0.00000 0.00000 0.00000 -0.00000 -0.38006 -0.17692 - 8 -0.00000 0.00000 -0.00000 -0.00000 0.08842 0.28350 - 9 0.00000 -0.00000 -0.00000 0.00000 0.26802 0.11184 - 10 -0.02229 0.03791 -0.47349 -0.53871 0.00000 0.00000 - 11 0.00000 0.00000 -0.00000 0.00000 0.02915 0.00433 - 12 -0.00000 -0.00000 0.00000 -0.00000 -0.18291 -0.02043 - 13 0.00000 -0.00000 -0.00000 0.00000 -0.30919 0.35555 - 14 -0.00000 -0.00000 -0.00000 -0.00000 -0.06525 0.00144 - 15 0.57856 0.22554 0.16186 -0.46948 -0.00000 0.00000 - 16 -0.00000 0.00000 0.00000 -0.00000 0.02915 -0.00433 - 17 0.00000 -0.00000 -0.00000 0.00000 -0.18291 0.02043 - 18 0.00000 -0.00000 -0.00000 0.00000 0.30919 0.35555 - 19 -0.00000 -0.00000 -0.00000 -0.00000 0.06525 0.00144 - 20 0.57856 -0.22554 0.16186 0.46948 0.00000 0.00000 - 21 -0.00000 0.00000 0.00000 -0.00000 0.04839 -0.01440 - 22 0.00000 0.00000 -0.00000 0.00000 -0.29828 0.08933 - 23 -0.00000 0.00000 0.00000 -0.00000 -0.20794 0.29130 - 24 0.00000 0.00000 0.00000 0.00000 0.13598 -0.00660 - 25 -0.55811 -0.22043 0.18678 0.47149 0.00000 0.00000 - 26 0.00000 -0.00000 -0.00000 0.00000 0.04839 0.01440 - 27 -0.00000 0.00000 0.00000 -0.00000 -0.29828 -0.08933 - 28 -0.00000 0.00000 0.00000 -0.00000 0.20794 0.29130 - 29 0.00000 -0.00000 0.00000 0.00000 -0.13598 -0.00660 - 30 -0.55811 0.22043 0.18678 -0.47149 -0.00000 0.00000 - 31 0.00000 0.00000 -0.00000 0.00000 0.42094 -0.31890 - 32 -0.00000 0.00000 0.00000 -0.00000 0.42094 0.31890 - 33 -0.00000 -0.00000 0.00000 -0.00000 0.43480 -0.27655 - 34 0.00000 0.00000 -0.00000 0.00000 0.43480 0.27655 - 35 0.00000 -0.00000 -0.00000 0.00000 -0.04826 0.01371 - 36 -0.00000 0.00000 0.00000 -0.00000 0.27669 -0.08345 - 37 -0.00000 0.00000 0.00000 0.00000 0.23991 0.35091 - 38 -0.00000 0.00000 0.00000 -0.00000 0.32394 0.19909 - 39 0.00330 0.52439 0.53507 0.27875 0.00000 0.00000 - 40 -0.00000 0.00000 0.00000 -0.00000 -0.04826 -0.01371 - 41 0.00000 -0.00000 -0.00000 0.00000 0.27669 0.08345 - 42 -0.00000 0.00000 0.00000 0.00000 -0.23991 0.35091 - 43 -0.00000 -0.00000 0.00000 -0.00000 -0.32394 0.19909 - 44 0.00330 -0.52439 0.53507 -0.27875 0.00000 -0.00000 - 45 0.00000 -0.00000 -0.00000 0.00000 0.14038 0.44870 - 46 -0.00000 0.00000 0.00000 -0.00000 0.14038 -0.44870 - 47 -0.00000 -0.00000 -0.00000 -0.00000 0.04112 0.00135 - 48 0.00000 0.00000 0.00000 0.00000 -0.24262 -0.01356 - 49 0.00000 0.00000 -0.00000 0.00000 0.13846 0.30201 - 50 0.00000 -0.00000 -0.00000 0.00000 0.15018 0.17216 - 51 0.00408 -0.53124 -0.40735 -0.15847 0.00000 0.00000 - 52 0.00000 0.00000 0.00000 0.00000 0.04112 -0.00135 - 53 -0.00000 0.00000 -0.00000 -0.00000 -0.24262 0.01356 - 54 0.00000 -0.00000 -0.00000 0.00000 -0.13846 0.30201 - 55 0.00000 -0.00000 -0.00000 0.00000 -0.15018 0.17216 - 56 0.00408 0.53124 -0.40735 0.15847 -0.00000 -0.00000 - 57 0.00000 -0.00000 -0.00000 0.00000 -0.09878 -0.32156 - 58 -0.00000 0.00000 0.00000 -0.00000 -0.09878 0.32156 - 59 -0.00000 -0.00000 0.00000 -0.00000 0.35383 0.27911 - 60 0.00000 0.00000 -0.00000 0.00000 0.35383 -0.27911 + 6 -0.00000 0.00000 0.00000 0.00000 0.06347 0.02959 + 7 0.00000 -0.00000 -0.00000 -0.00000 -0.38004 -0.17692 + 8 -0.00000 -0.00000 0.00000 0.00000 0.08842 0.28349 + 9 -0.00000 0.00000 -0.00000 -0.00000 0.26801 0.11184 + 10 -0.02229 0.03791 -0.47349 -0.53871 -0.00000 -0.00000 + 11 0.00000 0.00000 -0.00000 -0.00000 0.02915 0.00433 + 12 0.00000 0.00000 0.00000 -0.00000 -0.18292 -0.02044 + 13 0.00000 -0.00000 -0.00000 0.00000 -0.30919 0.35554 + 14 0.00000 0.00000 0.00000 -0.00000 -0.06526 0.00144 + 15 0.57856 0.22554 0.16186 -0.46948 0.00000 -0.00000 + 16 0.00000 0.00000 -0.00000 -0.00000 0.02915 -0.00433 + 17 0.00000 -0.00000 0.00000 -0.00000 -0.18292 0.02044 + 18 -0.00000 0.00000 0.00000 -0.00000 0.30919 0.35554 + 19 -0.00000 -0.00000 -0.00000 0.00000 0.06526 0.00144 + 20 0.57856 -0.22554 0.16186 0.46948 0.00000 -0.00000 + 21 -0.00000 -0.00000 -0.00000 0.00000 0.04840 -0.01440 + 22 -0.00000 -0.00000 0.00000 0.00000 -0.29830 0.08934 + 23 0.00000 0.00000 -0.00000 -0.00000 -0.20794 0.29129 + 24 -0.00000 -0.00000 -0.00000 0.00000 0.13599 -0.00661 + 25 -0.55811 -0.22043 0.18678 0.47149 0.00000 -0.00000 + 26 -0.00000 -0.00000 -0.00000 0.00000 0.04840 0.01440 + 27 -0.00000 -0.00000 0.00000 0.00000 -0.29830 -0.08934 + 28 -0.00000 -0.00000 -0.00000 0.00000 0.20794 0.29129 + 29 0.00000 0.00000 0.00000 -0.00000 -0.13599 -0.00661 + 30 -0.55811 0.22043 0.18678 -0.47149 0.00000 -0.00000 + 31 0.00000 -0.00000 -0.00000 0.00000 0.42095 -0.31889 + 32 0.00000 -0.00000 -0.00000 -0.00000 0.42095 0.31889 + 33 0.00000 0.00000 -0.00000 -0.00000 0.43481 -0.27655 + 34 0.00000 0.00000 -0.00000 -0.00000 0.43481 0.27655 + 35 0.00000 0.00000 0.00000 -0.00000 -0.04826 0.01372 + 36 -0.00000 -0.00000 -0.00000 0.00000 0.27669 -0.08346 + 37 0.00000 -0.00000 0.00000 0.00000 0.23991 0.35091 + 38 0.00000 -0.00000 0.00000 0.00000 0.32393 0.19910 + 39 0.00330 0.52439 0.53507 0.27875 -0.00000 0.00000 + 40 0.00000 0.00000 -0.00000 -0.00000 -0.04826 -0.01372 + 41 -0.00000 -0.00000 0.00000 0.00000 0.27669 0.08346 + 42 -0.00000 0.00000 -0.00000 -0.00000 -0.23991 0.35091 + 43 -0.00000 0.00000 -0.00000 -0.00000 -0.32393 0.19910 + 44 0.00330 -0.52439 0.53507 -0.27875 -0.00000 0.00000 + 45 -0.00000 0.00000 0.00000 0.00000 0.14038 0.44871 + 46 -0.00000 0.00000 0.00000 0.00000 0.14038 -0.44871 + 47 -0.00000 -0.00000 0.00000 0.00000 0.04113 0.00135 + 48 0.00000 0.00000 -0.00000 -0.00000 -0.24263 -0.01355 + 49 0.00000 -0.00000 0.00000 -0.00000 0.13844 0.30202 + 50 0.00000 0.00000 0.00000 -0.00000 0.15018 0.17217 + 51 0.00408 -0.53124 -0.40735 -0.15847 0.00000 -0.00000 + 52 -0.00000 -0.00000 0.00000 0.00000 0.04113 -0.00135 + 53 0.00000 0.00000 -0.00000 -0.00000 -0.24263 0.01355 + 54 -0.00000 0.00000 -0.00000 0.00000 -0.13844 0.30202 + 55 -0.00000 -0.00000 -0.00000 0.00000 -0.15018 0.17217 + 56 0.00408 0.53124 -0.40735 0.15847 0.00000 -0.00000 + 57 0.00000 -0.00000 -0.00000 -0.00000 -0.09876 -0.32157 + 58 0.00000 -0.00000 -0.00000 -0.00000 -0.09876 0.32157 + 59 -0.00000 -0.00000 0.00000 0.00000 0.35383 0.27912 + 60 -0.00000 -0.00000 0.00000 0.00000 0.35383 -0.27912 43 44 45 46 47 48 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.02013 -0.05520 0.04545 -0.08266 -0.01775 -0.12947 - 2 -0.12342 0.32508 -0.27865 0.49230 0.11409 0.79666 - 3 -0.11292 -0.08096 0.24740 -0.11636 -0.10657 -0.04376 - 4 0.07806 0.45357 -0.15053 0.03228 -0.25761 -0.01346 - 5 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 6 0.02013 0.05520 0.04545 0.08266 0.01775 -0.12947 - 7 -0.12342 -0.32508 -0.27865 -0.49230 -0.11409 0.79666 - 8 0.11292 -0.08096 -0.24740 -0.11636 -0.10657 0.04376 - 9 -0.07806 0.45357 0.15053 0.03228 -0.25761 0.01346 - 10 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 1 0.02013 -0.05521 0.04545 -0.08266 -0.01775 -0.12947 + 2 -0.12343 0.32510 -0.27867 0.49230 0.11409 0.79667 + 3 -0.11293 -0.08096 0.24740 -0.11636 -0.10658 -0.04376 + 4 0.07805 0.45357 -0.15053 0.03227 -0.25761 -0.01346 + 5 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 6 0.02013 0.05521 0.04545 0.08266 0.01775 -0.12947 + 7 -0.12343 -0.32510 -0.27867 -0.49230 -0.11409 0.79667 + 8 0.11293 -0.08096 -0.24740 -0.11636 -0.10658 0.04376 + 9 -0.07805 0.45357 0.15053 0.03227 -0.25761 0.01346 + 10 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 11 -0.06409 0.02329 0.07352 0.07623 0.05737 0.07005 - 12 0.39789 -0.14490 -0.45738 -0.46139 -0.36107 -0.44429 - 13 0.00442 -0.11705 -0.06012 -0.11270 -0.32214 -0.01333 - 14 0.11326 0.22045 0.14682 0.02798 -0.31927 -0.29602 - 15 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 12 0.39790 -0.14491 -0.45737 -0.46141 -0.36107 -0.44428 + 13 0.00441 -0.11705 -0.06013 -0.11270 -0.32214 -0.01333 + 14 0.11326 0.22045 0.14682 0.02798 -0.31926 -0.29602 + 15 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 16 -0.06409 -0.02329 0.07352 -0.07623 -0.05737 0.07005 - 17 0.39789 0.14490 -0.45738 0.46139 0.36107 -0.44429 - 18 -0.00442 -0.11705 0.06012 -0.11270 -0.32214 0.01333 - 19 -0.11326 0.22045 -0.14682 0.02798 -0.31927 0.29602 - 20 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 21 -0.01478 -0.00096 -0.09399 -0.09960 -0.00456 0.07402 - 22 0.09710 -0.00079 0.58288 0.61112 0.01637 -0.46918 - 23 0.17068 -0.26071 -0.02469 -0.00945 -0.20446 0.22673 - 24 -0.20090 0.32797 0.02348 -0.11109 -0.10993 0.23946 - 25 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 26 -0.01478 0.00096 -0.09399 0.09960 0.00456 0.07402 - 27 0.09710 0.00079 0.58288 -0.61112 -0.01637 -0.46918 - 28 -0.17068 -0.26071 0.02469 -0.00945 -0.20446 -0.22673 - 29 0.20090 0.32797 -0.02348 -0.11109 -0.10993 -0.23946 - 30 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 31 -0.28653 0.10132 0.24361 0.33817 0.59827 0.29547 - 32 -0.28653 -0.10132 0.24361 -0.33817 -0.59827 0.29547 - 33 -0.27463 0.40890 -0.20615 -0.32759 0.04960 0.22015 - 34 -0.27463 -0.40890 -0.20615 0.32759 -0.04960 0.22015 - 35 0.06458 -0.08931 -0.01632 -0.04073 0.07342 0.09307 - 36 -0.39458 0.52976 0.10814 0.26016 -0.46728 -0.57054 - 37 0.35069 0.07786 -0.12426 -0.14864 0.22392 0.11487 - 38 0.07394 0.31854 0.23556 0.19090 -0.06187 -0.09824 - 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 40 0.06458 0.08931 -0.01632 0.04073 -0.07342 0.09307 - 41 -0.39458 -0.52976 0.10814 -0.26016 0.46728 -0.57054 - 42 -0.35069 0.07786 0.12426 -0.14864 0.22392 -0.11487 - 43 -0.07394 0.31854 -0.23556 0.19090 -0.06187 0.09824 - 44 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 45 0.58957 -0.13077 -0.12647 -0.19585 0.43802 0.36479 - 46 0.58957 0.13077 -0.12647 0.19585 -0.43802 0.36479 - 47 -0.01775 0.05639 -0.10758 -0.08349 0.02086 -0.06336 - 48 0.09880 -0.33762 0.68358 0.53351 -0.14155 0.39041 - 49 0.29962 0.11191 0.24914 0.26319 0.03161 -0.02922 - 50 0.24406 0.16612 -0.07396 -0.11940 0.29095 -0.06522 - 51 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 52 -0.01775 -0.05639 -0.10758 0.08349 -0.02086 -0.06336 - 53 0.09880 0.33762 0.68358 -0.53351 0.14155 0.39041 - 54 -0.29962 0.11191 -0.24914 0.26319 0.03161 0.02922 - 55 -0.24406 0.16612 0.07396 -0.11940 0.29095 0.06522 - 56 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 57 -0.38136 -0.00205 -0.54181 -0.46045 -0.02785 -0.17333 - 58 -0.38136 0.00205 -0.54181 0.46045 0.02785 -0.17333 - 59 0.26202 0.38946 -0.33081 -0.29263 0.32868 -0.26736 - 60 0.26202 -0.38946 -0.33081 0.29263 -0.32868 -0.26736 + 17 0.39790 0.14491 -0.45737 0.46141 0.36107 -0.44428 + 18 -0.00441 -0.11705 0.06013 -0.11270 -0.32214 0.01333 + 19 -0.11326 0.22045 -0.14682 0.02798 -0.31926 0.29602 + 20 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 21 -0.01478 -0.00096 -0.09399 -0.09961 -0.00456 0.07402 + 22 0.09708 -0.00077 0.58287 0.61113 0.01636 -0.46918 + 23 0.17067 -0.26070 -0.02470 -0.00943 -0.20447 0.22673 + 24 -0.20090 0.32796 0.02348 -0.11110 -0.10992 0.23945 + 25 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 26 -0.01478 0.00096 -0.09399 0.09961 0.00456 0.07402 + 27 0.09708 0.00077 0.58287 -0.61113 -0.01636 -0.46918 + 28 -0.17067 -0.26070 0.02470 -0.00943 -0.20447 -0.22673 + 29 0.20090 0.32796 -0.02348 -0.11110 -0.10992 -0.23945 + 30 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 31 -0.28652 0.10132 0.24361 0.33817 0.59827 0.29547 + 32 -0.28652 -0.10132 0.24361 -0.33817 -0.59827 0.29547 + 33 -0.27461 0.40888 -0.20615 -0.32761 0.04963 0.22014 + 34 -0.27461 -0.40888 -0.20615 0.32761 -0.04963 0.22014 + 35 0.06458 -0.08932 -0.01632 -0.04073 0.07342 0.09307 + 36 -0.39457 0.52979 0.10815 0.26016 -0.46728 -0.57054 + 37 0.35070 0.07785 -0.12426 -0.14865 0.22392 0.11487 + 38 0.07394 0.31854 0.23556 0.19088 -0.06187 -0.09824 + 39 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 40 0.06458 0.08932 -0.01632 0.04073 -0.07342 0.09307 + 41 -0.39457 -0.52979 0.10815 -0.26016 0.46728 -0.57054 + 42 -0.35070 0.07785 0.12426 -0.14865 0.22392 -0.11487 + 43 -0.07394 0.31854 -0.23556 0.19088 -0.06187 0.09824 + 44 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 45 0.58957 -0.13079 -0.12647 -0.19586 0.43802 0.36479 + 46 0.58957 0.13079 -0.12647 0.19586 -0.43802 0.36479 + 47 -0.01775 0.05639 -0.10758 -0.08348 0.02086 -0.06337 + 48 0.09879 -0.33762 0.68357 0.53349 -0.14155 0.39042 + 49 0.29962 0.11192 0.24914 0.26318 0.03160 -0.02921 + 50 0.24406 0.16611 -0.07396 -0.11940 0.29094 -0.06523 + 51 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 52 -0.01775 -0.05639 -0.10758 0.08348 -0.02086 -0.06337 + 53 0.09879 0.33762 0.68357 -0.53349 0.14155 0.39042 + 54 -0.29962 0.11192 -0.24914 0.26318 0.03160 0.02921 + 55 -0.24406 0.16611 0.07396 -0.11940 0.29094 0.06523 + 56 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 57 -0.38137 -0.00206 -0.54182 -0.46042 -0.02784 -0.17333 + 58 -0.38137 0.00206 -0.54182 0.46042 0.02784 -0.17333 + 59 0.26202 0.38945 -0.33080 -0.29263 0.32867 -0.26737 + 60 0.26202 -0.38945 -0.33080 0.29263 -0.32867 -0.26737 49 50 51 52 53 54 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.06033 0.04020 0.06829 0.00273 -0.00046 0.05152 - 2 -0.36327 -0.25411 -0.46272 -0.00821 -0.00320 -0.36172 - 3 -0.13936 -0.34438 0.12169 -0.55535 0.21367 -0.26311 - 4 0.11475 0.04817 0.58684 0.05618 0.04558 0.00401 - 5 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 6 -0.06033 0.04020 0.06829 -0.00273 -0.00046 -0.05152 - 7 0.36327 -0.25411 -0.46272 0.00821 -0.00320 0.36172 - 8 -0.13936 0.34438 -0.12169 -0.55535 -0.21367 -0.26311 - 9 0.11475 -0.04817 -0.58684 0.05618 -0.04558 0.00401 - 10 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 1 0.06032 0.04020 0.06828 0.00273 -0.00046 0.05152 + 2 -0.36325 -0.25412 -0.46271 -0.00820 -0.00319 -0.36172 + 3 -0.13937 -0.34437 0.12169 -0.55535 0.21367 -0.26311 + 4 0.11476 0.04818 0.58684 0.05618 0.04559 0.00402 + 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 6 -0.06032 0.04020 0.06828 -0.00273 -0.00046 -0.05152 + 7 0.36325 -0.25412 -0.46271 0.00820 -0.00319 0.36172 + 8 -0.13937 0.34437 -0.12169 -0.55535 -0.21367 -0.26311 + 9 0.11476 -0.04818 -0.58684 0.05618 -0.04559 0.00402 + 10 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 11 -0.05816 -0.11353 -0.01377 -0.09440 0.00433 0.03473 - 12 0.35719 0.72776 0.09182 0.64278 -0.03563 -0.23914 - 13 -0.14747 -0.07672 -0.44667 0.01637 0.53137 -0.19353 - 14 0.12248 -0.10733 0.16074 0.09831 0.19721 0.71678 - 15 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 12 0.35719 0.72777 0.09181 0.64278 -0.03563 -0.23914 + 13 -0.14747 -0.07673 -0.44667 0.01638 0.53136 -0.19353 + 14 0.12249 -0.10733 0.16074 0.09830 0.19720 0.71678 + 15 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 16 0.05816 -0.11353 -0.01377 0.09440 0.00433 -0.03473 - 17 -0.35719 0.72776 0.09182 -0.64278 -0.03563 0.23914 - 18 -0.14747 0.07672 0.44667 0.01637 -0.53137 -0.19353 - 19 0.12248 0.10733 -0.16074 0.09831 -0.19721 0.71678 - 20 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 17 -0.35719 0.72777 0.09181 -0.64278 -0.03563 0.23914 + 18 -0.14747 0.07673 0.44667 0.01638 -0.53136 -0.19353 + 19 0.12249 0.10733 -0.16074 0.09830 -0.19720 0.71678 + 20 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 21 0.06824 0.09547 -0.04797 -0.03443 -0.00315 -0.08760 - 22 -0.42521 -0.61447 0.31578 0.24290 0.02893 0.61059 - 23 -0.18151 -0.15947 -0.32475 -0.19597 -0.51838 0.30197 + 22 -0.42519 -0.61447 0.31578 0.24291 0.02893 0.61058 + 23 -0.18152 -0.15948 -0.32474 -0.19598 -0.51838 0.30197 24 0.14947 -0.17955 0.01505 -0.47953 0.39528 0.38216 - 25 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 25 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 26 -0.06824 0.09547 -0.04797 0.03443 -0.00315 0.08760 - 27 0.42521 -0.61447 0.31578 -0.24290 0.02893 -0.61059 - 28 -0.18151 0.15947 0.32475 -0.19597 0.51838 0.30197 + 27 0.42519 -0.61447 0.31578 -0.24291 0.02893 -0.61058 + 28 -0.18152 0.15948 0.32474 -0.19598 0.51838 0.30197 29 0.14947 0.17955 -0.01505 -0.47953 -0.39528 0.38216 - 30 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 31 -0.07756 -0.24355 0.24171 -0.29864 -0.44169 0.06170 - 32 0.07756 -0.24355 0.24171 0.29864 -0.44169 -0.06170 - 33 0.48819 0.33971 0.05277 -0.20881 0.50944 -0.25391 - 34 -0.48819 0.33971 0.05277 0.20881 0.50944 0.25391 - 35 0.07002 -0.03282 0.07315 0.02688 0.05204 0.06209 - 36 -0.43047 0.23057 -0.48600 -0.19861 -0.36324 -0.43405 - 37 0.05929 -0.03730 0.15697 -0.27581 -0.14090 0.07786 - 38 0.12366 0.07466 0.02314 0.04918 0.16297 0.10502 - 39 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 40 -0.07002 -0.03282 0.07315 -0.02688 0.05204 -0.06209 - 41 0.43047 0.23057 -0.48600 0.19861 -0.36324 0.43405 - 42 0.05929 0.03730 -0.15697 -0.27581 0.14090 0.07786 - 43 0.12366 -0.07466 -0.02314 0.04918 -0.16297 0.10502 - 44 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 45 0.29662 -0.08716 0.31097 -0.15158 0.08064 0.25884 - 46 -0.29662 -0.08716 0.31097 0.15158 0.08064 -0.25884 + 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 31 -0.07755 -0.24355 0.24171 -0.29864 -0.44168 0.06169 + 32 0.07755 -0.24355 0.24171 0.29864 -0.44168 -0.06169 + 33 0.48819 0.33971 0.05276 -0.20881 0.50945 -0.25390 + 34 -0.48819 0.33971 0.05276 0.20881 0.50945 0.25390 + 35 0.07001 -0.03282 0.07316 0.02688 0.05205 0.06209 + 36 -0.43044 0.23057 -0.48601 -0.19861 -0.36325 -0.43404 + 37 0.05929 -0.03730 0.15697 -0.27580 -0.14090 0.07787 + 38 0.12368 0.07467 0.02313 0.04919 0.16297 0.10502 + 39 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 -0.07001 -0.03282 0.07316 -0.02688 0.05205 -0.06209 + 41 0.43044 0.23057 -0.48601 0.19861 -0.36325 0.43404 + 42 0.05929 0.03730 -0.15697 -0.27580 0.14090 0.07787 + 43 0.12368 -0.07467 -0.02313 0.04919 -0.16297 0.10502 + 44 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 0.29660 -0.08717 0.31098 -0.15158 0.08063 0.25884 + 46 -0.29660 -0.08717 0.31098 0.15158 0.08063 -0.25884 47 -0.11043 -0.06100 -0.01913 -0.00996 -0.04167 -0.00937 - 48 0.70233 0.39762 0.12122 0.07893 0.29027 0.06216 - 49 0.14091 0.13476 -0.35815 0.02242 -0.09607 -0.30666 - 50 -0.01939 -0.37252 -0.13206 0.49016 0.29204 0.09797 - 51 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 48 0.70234 0.39762 0.12122 0.07892 0.29027 0.06215 + 49 0.14092 0.13474 -0.35816 0.02242 -0.09607 -0.30665 + 50 -0.01940 -0.37252 -0.13205 0.49016 0.29205 0.09798 + 51 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 52 0.11043 -0.06100 -0.01913 0.00996 -0.04167 0.00937 - 53 -0.70233 0.39762 0.12122 -0.07893 0.29027 -0.06216 - 54 0.14091 -0.13476 0.35815 0.02242 0.09607 -0.30666 - 55 -0.01939 0.37252 0.13206 0.49016 -0.29204 0.09797 - 56 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 57 -0.51486 -0.28603 0.24499 -0.10535 -0.12843 0.22847 - 58 0.51486 -0.28603 0.24499 0.10535 -0.12843 -0.22847 - 59 -0.31645 -0.45685 -0.25488 0.35646 0.08062 -0.02831 - 60 0.31645 -0.45685 -0.25488 -0.35646 0.08062 0.02831 + 53 -0.70234 0.39762 0.12122 -0.07892 0.29027 -0.06215 + 54 0.14092 -0.13474 0.35816 0.02242 0.09607 -0.30665 + 55 -0.01940 0.37252 0.13205 0.49016 -0.29205 0.09798 + 56 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 57 -0.51487 -0.28602 0.24499 -0.10534 -0.12844 0.22847 + 58 0.51487 -0.28602 0.24499 0.10534 -0.12844 -0.22847 + 59 -0.31646 -0.45685 -0.25487 0.35646 0.08062 -0.02830 + 60 0.31646 -0.45685 -0.25487 -0.35646 0.08062 0.02830 55 56 57 58 59 60 ----------- ----------- ----------- ----------- ----------- ----------- 1 -0.09450 0.01420 0.01758 0.01953 -0.00474 0.04242 - 2 0.64864 -0.08483 -0.11210 -0.13942 0.03202 -0.32153 - 3 -0.18965 -0.10986 0.10062 -0.46861 0.71202 0.16190 - 4 0.05544 -0.35995 -0.41189 0.13349 -0.05426 0.66243 - 5 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 2 0.64863 -0.08483 -0.11210 -0.13942 0.03202 -0.32154 + 3 -0.18965 -0.10985 0.10062 -0.46861 0.71203 0.16190 + 4 0.05545 -0.35994 -0.41190 0.13349 -0.05426 0.66243 + 5 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 6 0.09450 0.01420 0.01758 -0.01953 -0.00474 -0.04242 - 7 -0.64864 -0.08483 -0.11210 0.13942 0.03202 0.32153 - 8 -0.18965 0.10986 -0.10062 -0.46861 -0.71202 0.16190 - 9 0.05544 0.35995 0.41189 0.13349 0.05426 0.66243 - 10 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 7 -0.64863 -0.08483 -0.11210 0.13942 0.03202 0.32154 + 8 -0.18965 0.10985 -0.10062 -0.46861 -0.71203 0.16190 + 9 0.05545 0.35994 0.41190 0.13349 0.05426 0.66243 + 10 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 11 -0.00878 0.02820 -0.01808 -0.04629 0.00719 -0.05089 - 12 0.07504 -0.20151 0.13189 0.33903 -0.04976 0.37542 - 13 0.27126 0.26937 0.11482 -0.19548 0.24459 -0.56630 - 14 -0.13846 0.39220 -0.36515 0.13846 -0.54801 -0.23999 - 15 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 12 0.07503 -0.20151 0.13188 0.33903 -0.04976 0.37542 + 13 0.27125 0.26938 0.11483 -0.19548 0.24459 -0.56630 + 14 -0.13845 0.39220 -0.36514 0.13846 -0.54801 -0.23999 + 15 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 16 0.00878 0.02820 -0.01808 0.04629 0.00719 0.05089 - 17 -0.07504 -0.20151 0.13189 -0.33903 -0.04976 -0.37542 - 18 0.27126 -0.26937 -0.11482 -0.19548 -0.24459 -0.56630 - 19 -0.13846 -0.39220 0.36515 0.13846 0.54801 -0.23999 - 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 17 -0.07503 -0.20151 0.13188 -0.33903 -0.04976 -0.37542 + 18 0.27125 -0.26938 -0.11483 -0.19548 -0.24459 -0.56630 + 19 -0.13845 -0.39220 0.36514 0.13846 0.54801 -0.23999 + 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 21 -0.02893 -0.03159 0.01601 -0.02227 -0.00734 0.05551 - 22 0.19142 0.22096 -0.11842 0.16775 0.04971 -0.41154 - 23 -0.39356 0.15680 0.05191 -0.05616 -0.44424 0.49411 - 24 -0.20793 0.32678 -0.42995 -0.21552 -0.42322 -0.39434 - 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 22 0.19142 0.22096 -0.11841 0.16775 0.04971 -0.41154 + 23 -0.39356 0.15679 0.05191 -0.05616 -0.44424 0.49411 + 24 -0.20792 0.32679 -0.42994 -0.21552 -0.42323 -0.39435 + 25 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 26 0.02893 -0.03159 0.01601 0.02227 -0.00734 -0.05551 - 27 -0.19142 0.22096 -0.11842 -0.16775 0.04971 0.41154 - 28 -0.39356 -0.15680 -0.05191 -0.05616 0.44424 0.49411 - 29 -0.20793 -0.32678 0.42995 -0.21552 0.42322 -0.39434 - 30 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 31 -0.14981 -0.21765 -0.04766 -0.02392 -0.00844 0.26961 - 32 0.14981 -0.21765 -0.04766 0.02392 -0.00844 -0.26961 - 33 0.02254 -0.03523 -0.20429 -0.10576 0.03848 -0.27726 - 34 -0.02254 -0.03523 -0.20429 0.10576 0.03848 0.27726 + 27 -0.19142 0.22096 -0.11841 -0.16775 0.04971 0.41154 + 28 -0.39356 -0.15679 -0.05191 -0.05616 0.44424 0.49411 + 29 -0.20792 -0.32679 0.42994 -0.21552 0.42323 -0.39435 + 30 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 31 -0.14981 -0.21765 -0.04767 -0.02392 -0.00844 0.26961 + 32 0.14981 -0.21765 -0.04767 0.02392 -0.00844 -0.26961 + 33 0.02253 -0.03522 -0.20429 -0.10576 0.03848 -0.27726 + 34 -0.02253 -0.03522 -0.20429 0.10576 0.03848 0.27726 35 0.01769 -0.04334 0.03640 -0.05834 -0.02416 -0.01409 - 36 -0.14423 0.30721 -0.29712 0.45190 0.19749 0.08798 - 37 0.29735 0.55668 -0.09970 0.60835 0.41479 0.02777 + 36 -0.14422 0.30720 -0.29712 0.45190 0.19749 0.08798 + 37 0.29736 0.55668 -0.09969 0.60835 0.41479 0.02777 38 0.48257 0.14504 0.68016 -0.45823 -0.30091 0.36504 - 39 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 39 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 40 -0.01769 -0.04334 0.03640 0.05834 -0.02416 0.01409 - 41 0.14423 0.30721 -0.29712 -0.45190 0.19749 -0.08798 - 42 0.29735 -0.55668 0.09970 0.60835 -0.41479 0.02777 + 41 0.14422 0.30720 -0.29712 -0.45190 0.19749 -0.08798 + 42 0.29736 -0.55668 0.09969 0.60835 -0.41479 0.02777 43 0.48257 -0.14504 -0.68016 -0.45823 0.30091 0.36504 - 44 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 45 0.32793 0.30837 0.14608 0.17887 0.15782 0.04879 - 46 -0.32793 0.30837 0.14608 -0.17887 0.15782 -0.04879 + 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 45 0.32793 0.30837 0.14608 0.17886 0.15782 0.04879 + 46 -0.32793 0.30837 0.14608 -0.17886 0.15782 -0.04879 47 -0.01772 0.03266 -0.04635 0.06846 0.03822 -0.00886 - 48 0.12954 -0.24177 0.35554 -0.52696 -0.30561 0.07838 - 49 -0.50737 -0.13252 -0.58368 0.38883 0.24000 -0.21693 - 50 -0.23524 -0.53985 0.18340 -0.53681 -0.30265 -0.00326 - 51 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 48 0.12954 -0.24177 0.35554 -0.52696 -0.30561 0.07837 + 49 -0.50737 -0.13251 -0.58368 0.38884 0.24000 -0.21692 + 50 -0.23525 -0.53985 0.18340 -0.53681 -0.30264 -0.00326 + 51 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 52 0.01772 0.03266 -0.04635 -0.06846 0.03822 0.00886 - 53 -0.12954 -0.24177 0.35554 0.52696 -0.30561 -0.07838 - 54 -0.50737 0.13252 0.58368 0.38883 -0.24000 -0.21693 - 55 -0.23524 0.53985 -0.18340 -0.53681 0.30265 -0.00326 - 56 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 57 0.34539 0.26547 0.27254 -0.01144 -0.03139 0.13677 - 58 -0.34539 0.26547 0.27254 0.01144 -0.03139 -0.13677 - 59 -0.33103 -0.32048 -0.12287 -0.09634 -0.04651 -0.06633 - 60 0.33103 -0.32048 -0.12287 0.09634 -0.04651 0.06633 + 53 -0.12954 -0.24177 0.35554 0.52696 -0.30561 -0.07837 + 54 -0.50737 0.13251 0.58368 0.38884 -0.24000 -0.21692 + 55 -0.23525 0.53985 -0.18340 -0.53681 0.30264 -0.00326 + 56 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 57 0.34539 0.26547 0.27254 -0.01145 -0.03139 0.13677 + 58 -0.34539 0.26547 0.27254 0.01145 -0.03139 -0.13677 + 59 -0.33103 -0.32049 -0.12287 -0.09633 -0.04651 -0.06632 + 60 0.33103 -0.32049 -0.12287 0.09633 -0.04651 0.06632 center of mass -------------- @@ -2407,15 +3992,12 @@ 1 0 1 0 -0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 - 2 2 0 0 -38.360869 0.000000 244.795872 - 2 1 1 0 0.065434 0.000000 -5.631027 - 2 1 0 1 0.000000 0.000000 0.000000 - 2 0 2 0 -39.006221 0.000000 1496.963300 + 2 2 0 0 -38.360884 0.000000 244.795872 + 2 1 1 0 0.065438 0.000000 -5.631027 + 2 1 0 1 -0.000000 0.000000 0.000000 + 2 0 2 0 -39.006243 0.000000 1496.963300 2 0 1 1 0.000000 0.000000 0.000000 - 2 0 0 2 -43.564269 0.000000 0.000000 - - - Parallel integral file used 8 records with 0 large values + 2 0 0 2 -43.564268 0.000000 0.000000 ------------- @@ -2426,14 +4008,14 @@ X = 0.0000000 Y = 0.0000000 Z = 0.0000000 Dipole moment 0.0000000000 A.U. - DMX 0.0000000000 DMXEFC 0.0000000000 + DMX -0.0000000000 DMXEFC 0.0000000000 DMY -0.0000000000 DMYEFC 0.0000000000 DMZ 0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 A.U. Total dipole 0.0000000000 A.U. Dipole moment 0.0000000000 Debye(s) - DMX 0.0000000000 DMXEFC 0.0000000000 + DMX -0.0000000000 DMXEFC 0.0000000000 DMY -0.0000000000 DMYEFC 0.0000000000 DMZ 0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 DEBYE(S) @@ -2455,44 +4037,44 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -38.3608685337 0.0000000000 -38.3608685337 - YY -39.0062210270 0.0000000000 -39.0062210270 - ZZ -43.5642691494 0.0000000000 -43.5642691494 - XY 0.0654337040 0.0000000000 0.0654337040 - XZ 0.0000000000 0.0000000000 0.0000000000 + XX -38.3608840749 0.0000000000 -38.3608840749 + YY -39.0062425075 0.0000000000 -39.0062425075 + ZZ -43.5642675472 0.0000000000 -43.5642675472 + XY 0.0654382568 0.0000000000 0.0654382568 + XZ -0.0000000000 0.0000000000 -0.0000000000 YZ 0.0000000000 0.0000000000 0.0000000000 Second moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -51.5919540605 0.0000000000 -51.5919540605 - YY -52.4598957277 0.0000000000 -52.4598957277 - ZZ -58.5900647861 0.0000000000 -58.5900647861 - XY 0.0880025082 0.0000000000 0.0880025082 - XZ 0.0000000000 0.0000000000 0.0000000000 + XX -51.5919749620 0.0000000000 -51.5919749620 + YY -52.4599246170 0.0000000000 -52.4599246170 + ZZ -58.5900626312 0.0000000000 -58.5900626312 + XY 0.0880086313 0.0000000000 0.0880086313 + XZ -0.0000000000 0.0000000000 -0.0000000000 YZ 0.0000000000 0.0000000000 0.0000000000 Quadrupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 2.9243765545 0.0000000000 2.9243765545 - YY 1.9563478145 0.0000000000 1.9563478145 - ZZ -4.8807243691 0.0000000000 -4.8807243691 - XY 0.0981505560 0.0000000000 0.0981505560 - XZ 0.0000000000 0.0000000000 0.0000000000 + XX 2.9243709525 0.0000000000 2.9243709525 + YY 1.9563333035 0.0000000000 1.9563333035 + ZZ -4.8807042560 0.0000000000 -4.8807042560 + XY 0.0981573851 0.0000000000 0.0981573851 + XZ -0.0000000000 0.0000000000 -0.0000000000 YZ 0.0000000000 0.0000000000 0.0000000000 Quadrupole moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 3.9330261963 0.0000000000 3.9330261963 - YY 2.6311136956 0.0000000000 2.6311136956 - ZZ -6.5641398919 0.0000000000 -6.5641398919 - XY 0.1320037624 0.0000000000 0.1320037624 - XZ 0.0000000000 0.0000000000 0.0000000000 + XX 3.9330186621 0.0000000000 3.9330186621 + YY 2.6310941796 0.0000000000 2.6310941796 + ZZ -6.5641128417 0.0000000000 -6.5641128417 + XY 0.1320129470 0.0000000000 0.1320129470 + XZ -0.0000000000 0.0000000000 -0.0000000000 YZ 0.0000000000 0.0000000000 0.0000000000 1 a.u. = 1.344911 Buckinghams = 1.344911 10**(-26) esu*cm**2 @@ -2508,61 +4090,61 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX 0.0000000000 0.0000000000 0.0000000000 - YYY 0.0000000000 0.0000000000 0.0000000000 + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 ZZZ 0.0000000000 0.0000000000 0.0000000000 XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ -0.0000000000 0.0000000000 -0.0000000000 - YYX 0.0000000000 0.0000000000 0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 ZZX 0.0000000000 0.0000000000 0.0000000000 ZZY -0.0000000000 0.0000000000 -0.0000000000 - XYZ -0.0000000000 0.0000000000 -0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 Third moments in 10**(-34) esu*cm**3 Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX 0.0000000000 0.0000000000 0.0000000000 - YYY 0.0000000000 0.0000000000 0.0000000000 + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 ZZZ 0.0000000000 0.0000000000 0.0000000000 XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ -0.0000000000 0.0000000000 -0.0000000000 - YYX 0.0000000000 0.0000000000 0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 ZZX 0.0000000000 0.0000000000 0.0000000000 ZZY -0.0000000000 0.0000000000 -0.0000000000 - XYZ -0.0000000000 0.0000000000 -0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 Octupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XXX 0.0000000000 0.0000000000 0.0000000000 - YYY 0.0000000000 0.0000000000 0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 - ZZX -0.0000000000 0.0000000000 -0.0000000000 - ZZY -0.0000000000 0.0000000000 -0.0000000000 - XYZ -0.0000000000 0.0000000000 -0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 Octupole moments in 10**(-34) esu*cm**3 Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XXX 0.0000000000 0.0000000000 0.0000000000 - YYY 0.0000000000 0.0000000000 0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYY -0.0000000000 0.0000000000 -0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 - ZZX -0.0000000000 0.0000000000 -0.0000000000 - ZZY -0.0000000000 0.0000000000 -0.0000000000 - XYZ -0.0000000000 0.0000000000 -0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 1 a.u. = 0.711688 10**(-34) esu*cm**3 @@ -2575,8 +4157,8 @@ -------------------------------- Atom S P -------------------------------------------------------------------------------------- - 1 C 3.13046 2.86772 - 2 C 3.13046 2.86772 + 1 C 3.13046 2.86773 + 2 C 3.13046 2.86773 3 C 3.14136 2.91829 4 C 3.14136 2.91829 5 C 3.13936 2.92108 @@ -2710,28 +4292,28 @@ Free electrons Valency Number of Sum of + Bond indices - Bond indices Valency Free electrons Bond indices =Mulliken charge = Net spin population - 1 C 3.97499 2.02320 3.97499 5.99819 0.00000 + 1 C 3.97499 2.02320 3.97499 5.99819 -0.00000 2 C 3.97499 2.02320 3.97499 5.99819 -0.00000 - 3 C 3.97333 2.08632 3.97333 6.05964 -0.00000 - 4 C 3.97333 2.08632 3.97333 6.05964 0.00000 + 3 C 3.97333 2.08631 3.97333 6.05964 -0.00000 + 4 C 3.97333 2.08631 3.97333 6.05964 -0.00000 5 C 3.97410 2.08634 3.97410 6.06044 -0.00000 6 C 3.97410 2.08634 3.97410 6.06044 0.00000 - 7 H 0.99655 -0.05526 0.99655 0.94130 0.00000 - 8 H 0.99655 -0.05526 0.99655 0.94130 0.00000 - 9 H 0.99633 -0.05693 0.99633 0.93940 0.00000 - 10 H 0.99633 -0.05693 0.99633 0.93940 0.00000 + 7 H 0.99655 -0.05526 0.99655 0.94130 -0.00000 + 8 H 0.99655 -0.05526 0.99655 0.94130 -0.00000 + 9 H 0.99633 -0.05693 0.99633 0.93940 -0.00000 + 10 H 0.99633 -0.05693 0.99633 0.93940 -0.00000 11 C 3.97218 2.08307 3.97218 6.05525 -0.00000 12 C 3.97218 2.08307 3.97218 6.05525 0.00000 13 H 0.99668 -0.05431 0.99668 0.94236 -0.00000 14 H 0.99668 -0.05431 0.99668 0.94236 -0.00000 - 15 C 3.97069 2.15320 3.97069 6.12388 0.00000 - 16 C 3.97069 2.15320 3.97069 6.12388 0.00000 + 15 C 3.97069 2.15320 3.97069 6.12388 -0.00000 + 16 C 3.97069 2.15320 3.97069 6.12388 -0.00000 17 H 0.99652 -0.05553 0.99652 0.94099 -0.00000 18 H 0.99652 -0.05553 0.99652 0.94099 -0.00000 19 H 0.99622 -0.05768 0.99622 0.93855 -0.00000 20 H 0.99622 -0.05768 0.99622 0.93855 -0.00000 - Task times cpu: 2.7s wall: 2.9s + Task times cpu: 3.8s wall: 3.8s Summary of allocated global arrays ----------------------------------- No active global arrays @@ -2742,9 +4324,9 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 749 749 3.07e+04 6043 3.18e+04 420 0 8127 -number of processes/call 1.00e+00 1.00e+00 1.00e+00 1.00e+00 0.00e+00 -bytes total: 1.25e+07 7.29e+06 3.97e+06 3.09e+04 0.00e+00 6.50e+04 +calls: 759 759 3.06e+04 6122 3.18e+04 420 0 8387 +number of processes/call -1.47e+14 6.43e+13 1.07e+14 0.00e+00 0.00e+00 +bytes total: 1.25e+07 7.31e+06 3.97e+06 8.00e+00 0.00e+00 6.71e+04 bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 Max memory consumed for GA by this process: 427200 bytes MA_summarize_allocated_blocks: starting scan ... @@ -2755,11 +4337,11 @@ MA usage statistics: heap stack ---- ----- current number of blocks 0 0 - maximum number of blocks 18 14 + maximum number of blocks 17 14 current total bytes 0 0 - maximum total bytes 9986520 22510808 - maximum total K-bytes 9987 22511 - maximum total M-bytes 10 23 + maximum total bytes 80152 22510808 + maximum total K-bytes 81 22511 + maximum total M-bytes 1 23 NWChem Input Module @@ -2774,32 +4356,52 @@ MA usage statistics: Please cite the following reference when publishing results obtained with NWChem: - M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, - T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, - E. Apra, T.L. Windus, W.A. de Jong - "NWChem: a comprehensive and scalable open-source - solution for large scale molecular simulations" - Comput. Phys. Commun. 181, 1477 (2010) - doi:10.1016/j.cpc.2010.04.018 + E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, + V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, + J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, + J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, + C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, + K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, + J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, + V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, + B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, + S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, + A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, + D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, + J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, + A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, + R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, + D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, + V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, + Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, + D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, + A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, + and R. J. Harrison + "NWChem: Past, present, and future + J. Chem. Phys. 152, 184102 (2020) + doi:10.1063/5.0004997 AUTHORS ------- - E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, - J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, - S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, - F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, + T. P. Straatsma, H. J. J. van Dam, D. Wang, T. L. Windus, N. P. Bauman, + A. Panyala, J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, + K. Lopata, S. A. Fischer, S. Krishnamoorthy, M. Jacquelin, W. Ma, M. Klemm, + O. Villa, Y. Chen, V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, + Eric Hermes, L. Jensen, J. E. Moore, J. C. Becca, V. Konjkov, + D. Mejia-Rodriguez, T. Risthaus, M. Malagoli, A. Marenich, A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, - P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, - D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, - A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, - A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, - H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, - K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, - H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, - A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, - R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, - K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, - A. T. Wong, Z. Zhang. - - Total times cpu: 2.8s wall: 4.2s + P.-D. Fan, A. Fonari, M. J. Williamson, R. J. Harrison, J. R. Rehr, + M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, V. Tipparaju, + M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, M. Swart, Q. Wu, + T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, + G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, + K. Tsemekhman, K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, + T. Clark, D. Clerc, H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, + E. Glendening, M. Gutowski, A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, + R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, X. Long, B. Meng, + T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, + M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. + + Total times cpu: 3.8s wall: 3.9s diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_ks.out b/data/NWChem/basicNWChem7.0/dvb_sp_ks.out index 324cbead5..f3b77be9a 100644 --- a/data/NWChem/basicNWChem7.0/dvb_sp_ks.out +++ b/data/NWChem/basicNWChem7.0/dvb_sp_ks.out @@ -1,17 +1,17 @@ - argument 1 = dvb_sp_ks.nw + argument 1 = dvb_sp_ks.in - Northwest Computational Chemistry Package (NWChem) 6.5 - ------------------------------------------------------ + Northwest Computational Chemistry Package (NWChem) 7.0.2 + -------------------------------------------------------- Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - Copyright (c) 1994-2014 + Copyright (c) 1994-2020 Pacific Northwest National Laboratory Battelle Memorial Institute @@ -36,16 +36,17 @@ Job information --------------- - hostname = boman - program = /usr/lib64/mpich/bin/nwchem_mpich - date = Thu Jan 22 19:53:54 2015 - - compiled = Sat_Dec_06_13:02:58_2014 - source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 - nwchem branch = 6.5 - nwchem revision = 26243 - ga revision = 10506 - input = dvb_sp_ks.nw + hostname = osmium + program = nwchem + date = Sat Jun 4 13:33:20 2022 + + compiled = Fri_Jul_02_16:33:00_2021 + source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src + nwchem branch = 7.0.2 + nwchem revision = b9985dfa + ga revision = 5.7.2 + use scalapack = T + input = dvb_sp_ks.in prefix = dvb. data base = ./dvb.db status = startup @@ -57,8 +58,8 @@ Memory information ------------------ - heap = 13107194 doubles = 100.0 Mbytes - stack = 13107199 doubles = 100.0 Mbytes + heap = 13107198 doubles = 100.0 Mbytes + stack = 13107195 doubles = 100.0 Mbytes global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) total = 52428793 doubles = 400.0 Mbytes verify = yes @@ -89,6 +90,8 @@ ------ auto-z ------ + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 Geometry "geometry" -> "" @@ -345,7 +348,7 @@ library name resolved from: environment - library file name is: + library file name is: @@ -444,9 +447,9 @@ Maximum number of iterations: 30 AO basis - number of functions: 60 number of shells: 40 - Convergence on energy requested: 1.00D-07 - Convergence on density requested: 1.00D-05 - Convergence on gradient requested: 5.00D-04 + Convergence on energy requested: 1.00D-07 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 XC Information -------------- @@ -475,7 +478,7 @@ Convergence aids based upon iterative change in total energy or number of iterations. Levelshifting, if invoked, occurs when the - HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 DIIS, if invoked, will attempt to extrapolate using up to (NFOCK): 10 stored Fock matrices. @@ -487,11 +490,11 @@ Screening Tolerance Information ------------------------------- - Density screening/tol_rho: 1.00D-11 + Density screening/tol_rho: 1.00D-11 AO Gaussian exp screening on grid/accAOfunc: 16 CD Gaussian exp screening on grid/accCDfunc: 20 XC Gaussian exp screening on grid/accXCfunc: 20 - Schwarz screening/accCoul: 1.00D-08 + Schwarz screening/accCoul: 1.00D-08 global array: Temp Over[1:60,1:60], handle: -989 @@ -500,12 +503,12 @@ ----------- ----------- ----------- ----------- ----------- ----------- 1 1.00000 0.24836 -0.00000 -0.00000 0.00000 0.00000 2 0.24836 1.00000 0.00000 -0.00000 0.00000 0.00030 - 3 -0.00000 0.00000 1.00000 0.00000 0.00000 -0.00014 + 3 0.00000 0.00000 1.00000 0.00000 0.00000 -0.00014 4 -0.00000 -0.00000 0.00000 1.00000 0.00000 -0.00081 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 6 0.00000 0.00030 -0.00014 -0.00081 0.00000 1.00000 7 0.00030 0.02187 -0.00590 -0.03524 0.00000 0.24836 - 8 0.00014 0.00590 0.00661 -0.01021 0.00000 0.00000 + 8 0.00014 0.00590 0.00661 -0.01021 0.00000 -0.00000 9 0.00081 0.03524 -0.01021 -0.05268 0.00000 0.00000 10 0.00000 0.00000 0.00000 0.00000 0.00832 0.00000 11 0.00000 0.03557 0.04482 -0.03839 0.00000 0.00000 @@ -707,7 +710,7 @@ 18 0.00000 0.00000 0.00390 0.08539 -0.11288 0.02316 19 1.00000 0.00000 -0.00066 -0.01441 0.02316 0.02049 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 - 21 -0.00066 0.00000 1.00000 0.24836 -0.00000 -0.00000 + 21 -0.00066 0.00000 1.00000 0.24836 -0.00000 0.00000 22 -0.01441 0.00000 0.24836 1.00000 0.00000 -0.00000 23 0.02316 0.00000 -0.00000 0.00000 1.00000 0.00000 24 0.02049 0.00000 -0.00000 -0.00000 0.00000 1.00000 @@ -775,7 +778,7 @@ 23 0.00000 -0.00078 -0.03098 -0.03207 0.03425 0.00000 24 0.00000 0.00065 0.02550 0.03425 -0.01864 0.00000 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.00954 - 26 0.00000 1.00000 0.24836 0.00000 0.00000 0.00000 + 26 0.00000 1.00000 0.24836 0.00000 -0.00000 0.00000 27 0.00000 0.24836 1.00000 0.00000 0.00000 0.00000 28 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 29 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 @@ -910,12 +913,12 @@ 32 -0.03181 0.03532 0.00000 0.00000 0.00015 -0.00019 33 0.03596 0.01884 0.00000 0.00000 0.00017 0.00011 34 -0.00011 0.00034 0.00000 0.00087 0.02741 -0.03596 - 35 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 35 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 36 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 37 1.00000 0.00000 0.00000 0.00000 0.00000 0.00000 38 0.00000 1.00000 0.00000 0.00000 0.00000 -0.00000 39 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 40 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 40 0.00000 0.00000 0.00000 1.00000 0.24836 -0.00000 41 0.00000 0.00000 0.00000 0.24836 1.00000 0.00000 42 0.00000 -0.00000 0.00000 0.00000 0.00000 1.00000 43 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 @@ -978,7 +981,7 @@ 37 -0.00000 0.00000 -0.45129 0.00000 0.04749 0.27266 38 -0.00000 0.00000 -0.10556 0.00000 -0.05283 -0.30328 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 40 0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 + 40 -0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 41 0.00000 0.00000 0.00000 0.48445 0.00000 0.00000 42 0.00000 0.00000 -0.00000 0.45129 -0.00000 -0.00000 43 1.00000 0.00000 -0.00000 0.10556 -0.00000 -0.00000 @@ -1048,12 +1051,12 @@ 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 45 -0.12645 0.04805 0.00000 0.00000 0.00000 -0.00000 46 0.00000 0.00000 0.00000 0.00611 0.10604 0.12645 - 47 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 47 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 48 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 49 1.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 50 -0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 51 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 52 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 52 0.00000 0.00000 0.00000 1.00000 0.24836 -0.00000 53 -0.00000 0.00000 0.00000 0.24836 1.00000 -0.00000 54 0.00000 0.00000 0.00000 0.00000 -0.00000 1.00000 55 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 @@ -1116,7 +1119,7 @@ 49 0.00000 0.00000 0.45887 -0.00000 -0.13400 -0.00000 50 -0.00000 0.00000 0.07655 0.00000 -0.44525 0.00000 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 52 0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 + 52 -0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 53 0.00000 0.00000 0.00000 0.48732 0.00000 0.48692 54 -0.00000 0.00000 0.00000 -0.45887 0.00000 0.13400 55 1.00000 0.00000 -0.00000 -0.07655 -0.00000 0.44525 @@ -1137,12 +1140,12 @@ ----------- ----------- ----------- ----------- ----------- ----------- 1 1.00000 0.24836 -0.00000 -0.00000 0.00000 0.00000 2 0.24836 1.00000 0.00000 -0.00000 0.00000 0.00030 - 3 -0.00000 0.00000 1.00000 0.00000 0.00000 -0.00014 + 3 0.00000 0.00000 1.00000 0.00000 0.00000 -0.00014 4 -0.00000 -0.00000 0.00000 1.00000 0.00000 -0.00081 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 6 0.00000 0.00030 -0.00014 -0.00081 0.00000 1.00000 7 0.00030 0.02187 -0.00590 -0.03524 0.00000 0.24836 - 8 0.00014 0.00590 0.00661 -0.01021 0.00000 0.00000 + 8 0.00014 0.00590 0.00661 -0.01021 0.00000 -0.00000 9 0.00081 0.03524 -0.01021 -0.05268 0.00000 0.00000 10 0.00000 0.00000 0.00000 0.00000 0.00832 0.00000 11 0.00000 0.03557 0.04482 -0.03839 0.00000 0.00000 @@ -1344,7 +1347,7 @@ 18 0.00000 0.00000 0.00390 0.08539 -0.11288 0.02316 19 1.00000 0.00000 -0.00066 -0.01441 0.02316 0.02049 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 - 21 -0.00066 0.00000 1.00000 0.24836 -0.00000 -0.00000 + 21 -0.00066 0.00000 1.00000 0.24836 -0.00000 0.00000 22 -0.01441 0.00000 0.24836 1.00000 0.00000 -0.00000 23 0.02316 0.00000 -0.00000 0.00000 1.00000 0.00000 24 0.02049 0.00000 -0.00000 -0.00000 0.00000 1.00000 @@ -1412,7 +1415,7 @@ 23 0.00000 -0.00078 -0.03098 -0.03207 0.03425 0.00000 24 0.00000 0.00065 0.02550 0.03425 -0.01864 0.00000 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.00954 - 26 0.00000 1.00000 0.24836 0.00000 0.00000 0.00000 + 26 0.00000 1.00000 0.24836 0.00000 -0.00000 0.00000 27 0.00000 0.24836 1.00000 0.00000 0.00000 0.00000 28 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 29 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 @@ -1547,12 +1550,12 @@ 32 -0.03181 0.03532 0.00000 0.00000 0.00015 -0.00019 33 0.03596 0.01884 0.00000 0.00000 0.00017 0.00011 34 -0.00011 0.00034 0.00000 0.00087 0.02741 -0.03596 - 35 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 35 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 36 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 37 1.00000 0.00000 0.00000 0.00000 0.00000 0.00000 38 0.00000 1.00000 0.00000 0.00000 0.00000 -0.00000 39 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 40 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 40 0.00000 0.00000 0.00000 1.00000 0.24836 -0.00000 41 0.00000 0.00000 0.00000 0.24836 1.00000 0.00000 42 0.00000 -0.00000 0.00000 0.00000 0.00000 1.00000 43 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 @@ -1615,7 +1618,7 @@ 37 -0.00000 0.00000 -0.45129 0.00000 0.04749 0.27266 38 -0.00000 0.00000 -0.10556 0.00000 -0.05283 -0.30328 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 40 0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 + 40 -0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 41 0.00000 0.00000 0.00000 0.48445 0.00000 0.00000 42 0.00000 0.00000 -0.00000 0.45129 -0.00000 -0.00000 43 1.00000 0.00000 -0.00000 0.10556 -0.00000 -0.00000 @@ -1685,12 +1688,12 @@ 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 45 -0.12645 0.04805 0.00000 0.00000 0.00000 -0.00000 46 0.00000 0.00000 0.00000 0.00611 0.10604 0.12645 - 47 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 47 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 48 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 49 1.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 50 -0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 51 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 52 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 52 0.00000 0.00000 0.00000 1.00000 0.24836 -0.00000 53 -0.00000 0.00000 0.00000 0.24836 1.00000 -0.00000 54 0.00000 0.00000 0.00000 0.00000 -0.00000 1.00000 55 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 @@ -1753,7 +1756,7 @@ 49 0.00000 0.00000 0.45887 -0.00000 -0.13400 -0.00000 50 -0.00000 0.00000 0.07655 0.00000 -0.44525 0.00000 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 52 0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 + 52 -0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 53 0.00000 0.00000 0.00000 0.48732 0.00000 0.48692 54 -0.00000 0.00000 0.00000 -0.45887 0.00000 0.13400 55 1.00000 0.00000 -0.00000 -0.07655 -0.00000 0.44525 @@ -1792,17 +1795,8 @@ 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 bu - Time after variat. SCF: 0.8 - Time prior to 1st pass: 0.8 - - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% - + Time after variat. SCF: 0.2 + Time prior to 1st pass: 0.2 Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 @@ -1810,31 +1804,31 @@ Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 5.44 5443610 - Stack Space remaining (MW): 13.11 13106284 + Heap Space remaining (MW): 0.00 242 + Stack Space remaining (MW): 13.11 13106276 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.2544334264 -8.28D+02 1.42D-02 3.78D-01 10.5 - d= 0,ls=0.0,diis 2 -382.3017299251 -4.73D-02 6.99D-03 3.82D-02 14.6 - d= 0,ls=0.0,diis 3 -382.2954336496 6.30D-03 4.21D-03 7.95D-02 20.3 - d= 0,ls=0.0,diis 4 -382.3080990402 -1.27D-02 5.17D-04 8.80D-04 25.9 - d= 0,ls=0.0,diis 5 -382.3082353907 -1.36D-04 1.18D-04 4.46D-05 31.5 + d= 0,ls=0.0,diis 1 -382.2544333294 -8.28D+02 1.42D-02 3.78D-01 2.2 + d= 0,ls=0.0,diis 2 -382.3017297979 -4.73D-02 6.99D-03 3.82D-02 3.3 + d= 0,ls=0.0,diis 3 -382.2954334686 6.30D-03 4.21D-03 7.95D-02 4.7 + d= 0,ls=0.0,diis 4 -382.3080988923 -1.27D-02 5.17D-04 8.80D-04 6.2 + d= 0,ls=0.0,diis 5 -382.3082352456 -1.36D-04 1.18D-04 4.46D-05 7.7 Resetting Diis - d= 0,ls=0.0,diis 6 -382.3082415300 -6.14D-06 3.19D-05 3.09D-06 37.1 - d= 0,ls=0.0,diis 7 -382.3082420068 -4.77D-07 1.42D-05 1.61D-07 42.7 - d= 0,ls=0.0,diis 8 -382.3082420043 2.55D-09 7.54D-06 1.77D-07 48.3 + d= 0,ls=0.0,diis 6 -382.3082413843 -6.14D-06 3.19D-05 3.09D-06 9.1 + d= 0,ls=0.0,diis 7 -382.3082418611 -4.77D-07 1.42D-05 1.61D-07 10.6 + d= 0,ls=0.0,diis 8 -382.3082418585 2.53D-09 7.54D-06 1.77D-07 12.1 - Total DFT energy = -382.308242004251 - One electron energy = -1400.645115169374 - Coulomb energy = 630.242754939282 - Exchange-Corr. energy = -57.842893941605 + Total DFT energy = -382.308241858533 + One electron energy = -1400.645115531840 + Coulomb energy = 630.242755452145 + Exchange-Corr. energy = -57.842893946284 Nuclear repulsion energy = 445.937012167446 - Numeric. integr. density = 70.000000232072 + Numeric. integr. density = 70.000000232069 - Total iterative time = 47.5s + Total iterative time = 11.9s @@ -1853,129 +1847,155 @@ ------------------------------------ Vector 1 Occ=2.000000D+00 E=-1.002024D+01 Symmetry=bu - MO Center= 4.7D-11, 2.8D-10, 4.2D-27, r^2= 2.1D+00 + MO Center= 2.0D-11, 1.2D-10, -2.6D-34, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.699304 1 C s 6 -0.699304 2 C s + 2 0.031560 1 C s 7 -0.031560 2 C s + 35 0.026964 11 C s 40 -0.026964 12 C s Vector 2 Occ=2.000000D+00 E=-1.002019D+01 Symmetry=ag - MO Center= -4.7D-11, -2.8D-10, 1.1D-34, r^2= 2.1D+00 + MO Center= -2.0D-11, -1.2D-10, 2.3D-23, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.699301 1 C s 6 0.699301 2 C s + 2 0.031352 1 C s 7 0.031352 2 C s + 35 -0.027327 11 C s 40 -0.027327 12 C s Vector 3 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=bu - MO Center= -1.9D-09, -1.0D-08, 1.1D-24, r^2= 8.6D+00 + MO Center= -4.6D-11, -2.5D-10, 9.8D-33, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.699780 11 C s 40 -0.699780 12 C s + 36 0.030781 11 C s 41 -0.030781 12 C s + 1 -0.027417 1 C s 6 0.027417 2 C s Vector 4 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=ag - MO Center= 1.9D-09, 1.0D-08, -5.1D-34, r^2= 8.6D+00 + MO Center= 4.6D-11, 2.5D-10, 2.8D-18, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.699695 11 C s 40 0.699695 12 C s + 36 0.030762 11 C s 41 0.030762 12 C s + 1 0.027650 1 C s 6 0.027650 2 C s Vector 5 Occ=2.000000D+00 E=-1.000689D+01 Symmetry=ag - MO Center= 2.3D-15, -3.7D-16, 7.8D-35, r^2= 2.0D+00 + MO Center= -5.9D-09, 1.9D-09, 1.8D-18, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.546412 5 C s 26 0.546412 6 C s - 11 -0.437513 3 C s 16 -0.437513 4 C s + 21 0.546406 5 C s 26 0.546406 6 C s + 11 -0.437520 3 C s 16 -0.437520 4 C s + 22 0.028151 5 C s 27 0.028151 6 C s Vector 6 Occ=2.000000D+00 E=-1.000688D+01 Symmetry=bu - MO Center= 4.7D-13, 3.8D-12, 9.8D-24, r^2= 2.0D+00 + MO Center= 5.9D-09, -1.9D-09, -6.5D-27, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.555878 5 C s 26 -0.555878 6 C s - 11 -0.424322 3 C s 16 0.424322 4 C s + 21 0.555875 5 C s 26 -0.555875 6 C s + 11 -0.424325 3 C s 16 0.424325 4 C s + 1 -0.028677 1 C s 6 0.028677 2 C s + 22 0.028651 5 C s 27 -0.028651 6 C s Vector 7 Occ=2.000000D+00 E=-1.000624D+01 Symmetry=bu - MO Center= -4.7D-11, 1.3D-12, 5.5D-26, r^2= 2.0D+00 + MO Center= 1.4D-11, -3.8D-12, 5.0D-30, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.556849 3 C s 16 -0.556849 4 C s - 21 0.425633 5 C s 26 -0.425633 6 C s + 11 0.556847 3 C s 16 -0.556847 4 C s + 21 0.425636 5 C s 26 -0.425636 6 C s Vector 8 Occ=2.000000D+00 E=-1.000609D+01 Symmetry=ag - MO Center= 4.6D-11, -5.1D-12, 8.5D-19, r^2= 2.0D+00 + MO Center= -1.5D-11, 4.0D-13, 5.2D-33, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.546521 3 C s 16 0.546521 4 C s - 21 0.437747 5 C s 26 0.437747 6 C s + 11 0.546516 3 C s 16 0.546516 4 C s + 21 0.437754 5 C s 26 0.437754 6 C s + 1 0.029442 1 C s 6 0.029442 2 C s Vector 9 Occ=2.000000D+00 E=-9.992163D+00 Symmetry=bu - MO Center= -8.4D-17, 3.8D-16, 1.8D-34, r^2= 1.5D+01 + MO Center= 1.2D-10, -1.2D-09, -4.8D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700479 15 C s 52 -0.700479 16 C s + 48 0.030860 15 C s 53 -0.030860 16 C s Vector 10 Occ=2.000000D+00 E=-9.992163D+00 Symmetry=ag - MO Center= 7.8D-17, -7.8D-16, -8.6D-34, r^2= 1.5D+01 + MO Center= -1.2D-10, 1.2D-09, 6.8D-18, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700478 15 C s 52 0.700478 16 C s + 48 0.030860 15 C s 53 0.030860 16 C s - Vector 11 Occ=2.000000D+00 E=-8.094667D-01 Symmetry=ag - MO Center= 1.8D-15, -6.7D-15, -5.8D-18, r^2= 3.0D+00 + Vector 11 Occ=2.000000D+00 E=-8.094669D-01 Symmetry=ag + MO Center= 2.3D-17, 5.4D-18, -3.4D-32, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.274702 1 C s 7 0.274702 2 C s 12 0.247017 3 C s 17 0.247017 4 C s 22 0.246689 5 C s 27 0.246689 6 C s + 36 0.127806 11 C s 41 0.127806 12 C s + 1 -0.107859 1 C s 6 -0.107859 2 C s Vector 12 Occ=2.000000D+00 E=-7.539346D-01 Symmetry=bu - MO Center= 1.1D-15, 1.5D-14, -1.4D-21, r^2= 7.8D+00 + MO Center= 5.6D-15, 1.0D-13, -1.3D-25, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 -0.297169 11 C s 41 0.297169 12 C s 2 0.273786 1 C s 7 -0.273786 2 C s 48 -0.209313 15 C s 53 0.209313 16 C s + 35 0.113817 11 C s 40 -0.113817 12 C s + 22 -0.112555 5 C s 27 0.112555 6 C s - Vector 13 Occ=2.000000D+00 E=-7.178616D-01 Symmetry=ag - MO Center= -9.1D-16, -7.6D-15, 2.2D-16, r^2= 1.1D+01 + Vector 13 Occ=2.000000D+00 E=-7.178615D-01 Symmetry=ag + MO Center= 2.5D-14, -1.8D-13, -3.2D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.314817 11 C s 41 0.314817 12 C s 48 0.309767 15 C s 53 0.309767 16 C s + 12 -0.121455 3 C s 17 -0.121455 4 C s + 35 -0.119239 11 C s 40 -0.119239 12 C s + 47 -0.117464 15 C s 52 -0.117464 16 C s Vector 14 Occ=2.000000D+00 E=-6.999224D-01 Symmetry=bu - MO Center= -3.7D-15, -1.6D-16, 1.4D-20, r^2= 3.2D+00 + MO Center= -2.5D-14, -1.4D-14, 9.4D-30, r^2= 3.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.357134 3 C s 17 -0.357134 4 C s 22 0.323905 5 C s 27 -0.323905 6 C s + 11 -0.132324 3 C s 16 0.132324 4 C s + 3 0.124986 1 C px 8 0.124986 2 C px + 21 -0.120093 5 C s 26 0.120093 6 C s Vector 15 Occ=2.000000D+00 E=-6.673150D-01 Symmetry=bu - MO Center= -1.7D-18, -2.1D-15, -1.2D-19, r^2= 9.1D+00 + MO Center= -1.9D-15, 8.4D-14, -2.0D-25, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.299508 15 C s 53 -0.299508 16 C s 2 0.274066 1 C s 7 -0.274066 2 C s 22 -0.202279 5 C s 27 0.202279 6 C s + 36 0.136845 11 C s 41 -0.136845 12 C s + 38 -0.129054 11 C py 43 -0.129054 12 C py Vector 16 Occ=2.000000D+00 E=-5.885094D-01 Symmetry=ag - MO Center= -8.4D-16, -1.7D-15, -1.2D-16, r^2= 8.4D+00 + MO Center= 7.8D-16, -1.3D-16, 4.0D-17, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.241406 15 C s 53 0.241406 16 C s + 48 0.241407 15 C s 53 0.241407 16 C s 22 0.233815 5 C s 27 0.233815 6 C s 2 -0.206378 1 C s 7 -0.206378 2 C s 14 -0.160007 3 C py 19 0.160007 4 C py 36 -0.159613 11 C s 41 -0.159613 12 C s Vector 17 Occ=2.000000D+00 E=-5.591516D-01 Symmetry=ag - MO Center= -5.4D-17, 4.5D-16, 2.2D-32, r^2= 5.1D+00 + MO Center= 2.2D-15, 5.1D-15, -4.8D-17, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.326033 3 C s 17 0.326033 4 C s - 3 0.184864 1 C px 8 -0.184864 2 C px + 3 0.184865 1 C px 8 -0.184865 2 C px 22 -0.170744 5 C s 24 0.170444 5 C py 27 -0.170744 6 C s 29 -0.170444 6 C py 31 0.169234 7 H s 32 0.169234 8 H s - Vector 18 Occ=2.000000D+00 E=-5.314208D-01 Symmetry=bu - MO Center= -7.0D-16, -4.3D-15, -1.3D-17, r^2= 1.2D+01 + Vector 18 Occ=2.000000D+00 E=-5.314209D-01 Symmetry=bu + MO Center= -3.7D-17, 2.7D-15, -9.3D-24, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.302767 11 C s 41 -0.302767 12 C s @@ -1985,84 +2005,87 @@ 12 0.154466 3 C s 17 -0.154466 4 C s Vector 19 Occ=2.000000D+00 E=-5.099375D-01 Symmetry=ag - MO Center= 4.2D-16, 4.9D-15, 2.0D-32, r^2= 7.5D+00 + MO Center= 1.7D-15, -7.5D-16, -2.7D-19, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.201895 5 C px 28 -0.201895 6 C px - 13 0.184492 3 C px 18 -0.184492 4 C px + 13 0.184493 3 C px 18 -0.184493 4 C px 36 0.180759 11 C s 41 0.180759 12 C s 33 0.169279 9 H s 34 0.169279 10 H s 22 0.166024 5 C s 27 0.166024 6 C s - Vector 20 Occ=2.000000D+00 E=-4.575996D-01 Symmetry=ag - MO Center= -2.4D-16, 1.0D-15, 1.1D-32, r^2= 9.5D+00 + Vector 20 Occ=2.000000D+00 E=-4.575997D-01 Symmetry=ag + MO Center= 1.5D-14, -2.0D-14, -5.2D-17, r^2= 9.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.212730 15 C px 54 -0.212730 16 C px 38 0.184649 11 C py 43 -0.184649 12 C py 57 0.179111 17 H s 58 0.179111 18 H s 45 -0.153094 13 H s 46 -0.153094 14 H s + 14 0.141385 3 C py 19 -0.141385 4 C py - Vector 21 Occ=2.000000D+00 E=-4.391971D-01 Symmetry=bu - MO Center= 1.5D-15, 2.4D-15, -1.9D-17, r^2= 1.0D+01 + Vector 21 Occ=2.000000D+00 E=-4.391972D-01 Symmetry=bu + MO Center= -2.7D-15, 6.2D-15, 1.1D-22, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.219233 11 C px 42 0.219233 12 C px 50 0.210291 15 C py 55 0.210291 16 C py - 14 0.184960 3 C py 19 0.184960 4 C py + 14 0.184961 3 C py 19 0.184961 4 C py 59 -0.178127 19 H s 60 0.178127 20 H s 45 -0.155495 13 H s 46 0.155495 14 H s Vector 22 Occ=2.000000D+00 E=-4.110182D-01 Symmetry=bu - MO Center= 3.4D-16, 2.3D-15, -1.4D-17, r^2= 6.8D+00 + MO Center= 3.9D-15, 2.4D-14, 4.2D-22, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.235310 1 C s 7 -0.235310 2 C s - 33 0.230467 9 H s 34 -0.230467 10 H s - 31 -0.226658 7 H s 32 0.226658 8 H s - 13 -0.222261 3 C px 18 -0.222261 4 C px + 33 0.230466 9 H s 34 -0.230466 10 H s + 31 -0.226657 7 H s 32 0.226657 8 H s + 13 -0.222260 3 C px 18 -0.222260 4 C px 24 -0.177972 5 C py 29 -0.177972 6 C py - Vector 23 Occ=2.000000D+00 E=-3.976933D-01 Symmetry=bu - MO Center= 1.2D-15, 3.2D-15, -2.2D-17, r^2= 8.7D+00 + Vector 23 Occ=2.000000D+00 E=-3.976932D-01 Symmetry=bu + MO Center= 1.5D-14, -1.1D-13, 2.7D-22, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.251236 5 C px 28 0.251236 6 C px 49 0.250511 15 C px 54 0.250511 16 C px - 3 -0.220827 1 C px 8 -0.220827 2 C px + 3 -0.220826 1 C px 8 -0.220826 2 C px 57 0.215415 17 H s 58 -0.215415 18 H s 38 0.181486 11 C py 43 0.181486 12 C py Vector 24 Occ=2.000000D+00 E=-3.959385D-01 Symmetry=ag - MO Center= 8.8D-17, -1.1D-15, 1.7D-17, r^2= 1.5D+01 + MO Center= -2.4D-14, 1.0D-13, 4.1D-30, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.338998 15 C py 55 -0.338998 16 C py 59 -0.262596 19 H s 60 -0.262596 20 H s 37 0.251492 11 C px 42 -0.251492 12 C px + 45 -0.145063 13 H s 46 -0.145063 14 H s + 24 0.136713 5 C py 29 -0.136713 6 C py - Vector 25 Occ=2.000000D+00 E=-3.744297D-01 Symmetry=bu - MO Center= -1.4D-15, 2.7D-16, 5.0D-18, r^2= 4.4D+00 + Vector 25 Occ=2.000000D+00 E=-3.744295D-01 Symmetry=bu + MO Center= -1.3D-14, -7.4D-15, 6.0D-23, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 13 0.307585 3 C px 18 0.307585 4 C px 31 0.252268 7 H s 32 -0.252268 8 H s - 24 -0.226088 5 C py 29 -0.226088 6 C py - 33 0.218183 9 H s 34 -0.218183 10 H s - 23 0.188062 5 C px 28 0.188062 6 C px + 24 -0.226087 5 C py 29 -0.226087 6 C py + 33 0.218182 9 H s 34 -0.218182 10 H s + 23 0.188063 5 C px 28 0.188063 6 C px - Vector 26 Occ=2.000000D+00 E=-3.509367D-01 Symmetry=bu - MO Center= -2.4D-15, -7.3D-15, -4.4D-17, r^2= 9.0D+00 + Vector 26 Occ=2.000000D+00 E=-3.509366D-01 Symmetry=bu + MO Center= -2.2D-15, -1.2D-15, 7.0D-23, r^2= 9.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.245677 15 C py 55 -0.245677 16 C py - 14 0.224344 3 C py 19 0.224344 4 C py - 37 -0.201678 11 C px 42 -0.201678 12 C px - 24 -0.193257 5 C py 29 -0.193257 6 C py - 38 0.187745 11 C py 43 0.187745 12 C py + 14 0.224345 3 C py 19 0.224345 4 C py + 37 -0.201679 11 C px 42 -0.201679 12 C px + 24 -0.193258 5 C py 29 -0.193258 6 C py + 38 0.187744 11 C py 43 0.187744 12 C py Vector 27 Occ=2.000000D+00 E=-3.470152D-01 Symmetry=ag - MO Center= 3.6D-15, 7.5D-16, -9.0D-17, r^2= 1.2D+01 + MO Center= 8.8D-17, 7.5D-15, -2.4D-16, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.295189 15 C px 54 -0.295189 16 C px @@ -2072,36 +2095,37 @@ 31 -0.156471 7 H s 32 -0.156471 8 H s Vector 28 Occ=2.000000D+00 E=-3.244706D-01 Symmetry=au - MO Center= -5.1D-17, 6.9D-15, -5.8D-17, r^2= 3.6D+00 + MO Center= -1.7D-15, 4.4D-15, 1.5D-15, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.337608 1 C pz 10 0.337608 2 C pz 15 0.297979 3 C pz 20 0.297979 4 C pz 25 0.297170 5 C pz 30 0.297170 6 C pz 39 0.173946 11 C pz 44 0.173946 12 C pz + 51 0.092442 15 C pz 56 0.092442 16 C pz - Vector 29 Occ=2.000000D+00 E=-3.110645D-01 Symmetry=bu - MO Center= -1.5D-15, -5.6D-16, 1.1D-17, r^2= 1.2D+01 + Vector 29 Occ=2.000000D+00 E=-3.110644D-01 Symmetry=bu + MO Center= -4.1D-16, 5.9D-15, -1.5D-24, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.259102 13 H s 46 -0.259102 14 H s - 4 0.241973 1 C py 9 0.241973 2 C py + 4 0.241974 1 C py 9 0.241974 2 C py 57 0.231029 17 H s 58 -0.231029 18 H s 37 -0.217251 11 C px 42 -0.217251 12 C px 59 -0.212334 19 H s 60 0.212334 20 H s Vector 30 Occ=2.000000D+00 E=-2.929833D-01 Symmetry=ag - MO Center= 1.2D-15, 2.7D-15, 2.0D-16, r^2= 6.1D+00 + MO Center= -7.3D-17, -3.4D-15, -1.1D-15, r^2= 6.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 -0.278184 3 C py 19 0.278184 4 C py 4 0.268398 1 C py 9 -0.268398 2 C py - 38 0.248142 11 C py 43 -0.248142 12 C py + 38 0.248141 11 C py 43 -0.248141 12 C py 33 -0.240411 9 H s 34 -0.240411 10 H s 24 0.234450 5 C py 29 -0.234450 6 C py - Vector 31 Occ=2.000000D+00 E=-2.874965D-01 Symmetry=ag - MO Center= -5.9D-16, -2.1D-16, -1.3D-16, r^2= 6.2D+00 + Vector 31 Occ=2.000000D+00 E=-2.874966D-01 Symmetry=ag + MO Center= 8.4D-16, -3.6D-15, 4.6D-17, r^2= 6.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.295855 1 C px 8 -0.295855 2 C px @@ -2111,15 +2135,17 @@ 45 -0.182739 13 H s 46 -0.182739 14 H s Vector 32 Occ=2.000000D+00 E=-2.634557D-01 Symmetry=bg - MO Center= 4.3D-15, 1.4D-13, -1.1D-21, r^2= 7.8D+00 + MO Center= -4.7D-16, -3.7D-15, 7.3D-25, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.376480 11 C pz 44 0.376480 12 C pz 5 0.348964 1 C pz 10 -0.348964 2 C pz 51 -0.271399 15 C pz 56 0.271399 16 C pz + 15 0.131646 3 C pz 20 -0.131646 4 C pz + 25 -0.132107 5 C pz 30 0.132107 6 C pz Vector 33 Occ=2.000000D+00 E=-2.123365D-01 Symmetry=au - MO Center= -1.5D-14, -1.9D-13, -3.1D-16, r^2= 1.1D+01 + MO Center= -1.8D-14, 8.3D-15, 2.2D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.417961 15 C pz 56 0.417961 16 C pz @@ -2128,14 +2154,14 @@ 25 -0.176633 5 C pz 30 -0.176633 6 C pz Vector 34 Occ=2.000000D+00 E=-1.951682D-01 Symmetry=bg - MO Center= 9.4D-15, -1.2D-15, -3.0D-18, r^2= 2.7D+00 + MO Center= 2.1D-14, -2.6D-15, -2.8D-22, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.463626 3 C pz 20 -0.463626 4 C pz 25 0.457537 5 C pz 30 -0.457537 6 C pz Vector 35 Occ=2.000000D+00 E=-1.529965D-01 Symmetry=bg - MO Center= 1.2D-15, 3.7D-14, 3.3D-17, r^2= 8.1D+00 + MO Center= -9.8D-17, -7.2D-15, 5.5D-23, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.397371 15 C pz 56 -0.397371 16 C pz @@ -2145,7 +2171,7 @@ 15 0.215069 3 C pz 20 -0.215069 4 C pz Vector 36 Occ=0.000000D+00 E= 3.750921D-02 Symmetry=au - MO Center= 9.7D-17, 2.7D-14, 2.6D-16, r^2= 8.0D+00 + MO Center= -1.1D-15, 8.1D-15, 5.0D-17, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.449614 15 C pz 56 -0.449614 16 C pz @@ -2154,15 +2180,16 @@ 39 0.256133 11 C pz 44 0.256133 12 C pz 15 -0.232265 3 C pz 20 -0.232265 4 C pz - Vector 37 Occ=0.000000D+00 E= 9.011734D-02 Symmetry=au - MO Center= 1.2D-15, 2.6D-16, -7.4D-18, r^2= 2.7D+00 + Vector 37 Occ=0.000000D+00 E= 9.011735D-02 Symmetry=au + MO Center= -1.2D-16, 6.0D-16, -2.1D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.582692 3 C pz 20 0.582692 4 C pz 25 -0.553237 5 C pz 30 -0.553237 6 C pz + 5 -0.031922 1 C pz 10 -0.031922 2 C pz Vector 38 Occ=0.000000D+00 E= 1.107280D-01 Symmetry=bg - MO Center= 2.5D-15, -3.0D-14, 7.0D-17, r^2= 1.1D+01 + MO Center= -1.0D-15, -1.4D-14, -1.2D-22, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.522167 11 C pz 44 -0.522167 12 C pz @@ -2171,7 +2198,7 @@ 25 -0.232246 5 C pz 30 0.232246 6 C pz Vector 39 Occ=0.000000D+00 E= 1.822016D-01 Symmetry=au - MO Center= 6.9D-18, 6.1D-15, 3.6D-16, r^2= 7.9D+00 + MO Center= 4.3D-16, 6.8D-15, -9.1D-17, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.529134 11 C pz 44 -0.529134 12 C pz @@ -2181,7 +2208,7 @@ 15 -0.166739 3 C pz 20 -0.166739 4 C pz Vector 40 Occ=0.000000D+00 E= 2.723015D-01 Symmetry=bg - MO Center= -3.8D-15, -5.8D-15, 6.3D-17, r^2= 3.8D+00 + MO Center= 9.1D-16, -1.2D-15, -2.7D-23, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.543477 1 C pz 10 -0.543477 2 C pz @@ -2190,202 +2217,202 @@ 39 0.287731 11 C pz 44 -0.287731 12 C pz 51 -0.156154 15 C pz 56 0.156154 16 C pz - Vector 41 Occ=0.000000D+00 E= 3.324847D-01 Symmetry=ag - MO Center= 1.2D-16, -2.2D-16, -8.7D-17, r^2= 8.8D+00 + Vector 41 Occ=0.000000D+00 E= 3.324845D-01 Symmetry=ag + MO Center= -3.8D-15, -3.3D-15, -1.5D-18, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 -0.423790 9 H s 34 -0.423790 10 H s + 33 -0.423791 9 H s 34 -0.423791 10 H s 31 -0.413781 7 H s 32 -0.413781 8 H s - 2 0.401569 1 C s 7 0.401569 2 C s + 2 0.401567 1 C s 7 0.401567 2 C s 59 -0.358542 19 H s 60 -0.358542 20 H s - 38 -0.338105 11 C py 43 0.338105 12 C py + 38 -0.338104 11 C py 43 0.338104 12 C py - Vector 42 Occ=0.000000D+00 E= 3.406450D-01 Symmetry=bu - MO Center= 2.0D-15, 2.5D-15, -1.1D-17, r^2= 1.0D+01 + Vector 42 Occ=0.000000D+00 E= 3.406449D-01 Symmetry=bu + MO Center= -3.3D-16, 7.8D-15, -2.2D-23, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.433827 13 H s 46 -0.433827 14 H s + 45 0.433826 13 H s 46 -0.433826 14 H s 13 0.355437 3 C px 18 0.355437 4 C px - 37 0.344559 11 C px 42 0.344559 12 C px + 37 0.344558 11 C px 42 0.344558 12 C px 31 -0.321888 7 H s 32 0.321888 8 H s - 57 -0.323133 17 H s 58 0.323133 18 H s + 57 -0.323132 17 H s 58 0.323132 18 H s - Vector 43 Occ=0.000000D+00 E= 3.795219D-01 Symmetry=bu - MO Center= -2.0D-16, -3.9D-16, 1.0D-16, r^2= 7.8D+00 + Vector 43 Occ=0.000000D+00 E= 3.795217D-01 Symmetry=bu + MO Center= 6.0D-15, 1.9D-15, -1.2D-23, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.546115 11 C s 41 -0.546115 12 C s + 36 0.546122 11 C s 41 -0.546122 12 C s 4 0.461528 1 C py 9 0.461528 2 C py - 33 0.405572 9 H s 34 -0.405572 10 H s - 59 0.351697 19 H s 60 -0.351697 20 H s - 2 0.338376 1 C s 7 -0.338376 2 C s + 33 0.405565 9 H s 34 -0.405565 10 H s + 59 0.351695 19 H s 60 -0.351695 20 H s + 2 0.338384 1 C s 7 -0.338384 2 C s - Vector 44 Occ=0.000000D+00 E= 3.812902D-01 Symmetry=ag - MO Center= -3.5D-15, -1.4D-14, 7.3D-17, r^2= 1.2D+01 + Vector 44 Occ=0.000000D+00 E= 3.812896D-01 Symmetry=ag + MO Center= -6.9D-15, -5.1D-15, -8.5D-17, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.579606 13 H s 46 0.579606 14 H s - 12 0.393525 3 C s 17 0.393525 4 C s - 57 -0.391441 17 H s 58 -0.391441 18 H s + 12 0.393532 3 C s 17 0.393532 4 C s + 57 -0.391438 17 H s 58 -0.391438 18 H s 36 -0.382166 11 C s 41 -0.382166 12 C s 37 0.338369 11 C px 42 -0.338369 12 C px - Vector 45 Occ=0.000000D+00 E= 4.103420D-01 Symmetry=ag - MO Center= -4.5D-13, 1.3D-12, 6.1D-17, r^2= 1.1D+01 + Vector 45 Occ=0.000000D+00 E= 4.103422D-01 Symmetry=ag + MO Center= -2.9D-13, 8.4D-13, -3.5D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.647348 15 C s 53 0.647348 16 C s - 22 0.620079 5 C s 27 0.620079 6 C s - 57 -0.513314 17 H s 58 -0.513314 18 H s - 12 -0.443652 3 C s 17 -0.443652 4 C s - 59 -0.320794 19 H s 60 -0.320794 20 H s - - Vector 46 Occ=0.000000D+00 E= 4.112339D-01 Symmetry=bu - MO Center= 4.4D-13, -1.3D-12, -2.0D-16, r^2= 1.1D+01 + 48 0.647347 15 C s 53 0.647347 16 C s + 22 0.620081 5 C s 27 0.620081 6 C s + 57 -0.513316 17 H s 58 -0.513316 18 H s + 12 -0.443647 3 C s 17 -0.443647 4 C s + 59 -0.320790 19 H s 60 -0.320790 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.112340D-01 Symmetry=bu + MO Center= 3.0D-13, -8.5D-13, -5.9D-22, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.613158 5 C s 27 -0.613158 6 C s - 48 0.539738 15 C s 53 -0.539738 16 C s - 2 0.476220 1 C s 7 -0.476220 2 C s - 57 -0.447816 17 H s 58 0.447816 18 H s - 12 -0.440665 3 C s 17 0.440665 4 C s - - Vector 47 Occ=0.000000D+00 E= 4.258026D-01 Symmetry=bu - MO Center= 2.0D-15, 1.5D-14, 4.5D-18, r^2= 9.2D+00 + 22 0.613159 5 C s 27 -0.613159 6 C s + 48 0.539736 15 C s 53 -0.539736 16 C s + 2 0.476219 1 C s 7 -0.476219 2 C s + 57 -0.447812 17 H s 58 0.447812 18 H s + 12 -0.440664 3 C s 17 0.440664 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.258028D-01 Symmetry=bu + MO Center= 6.5D-15, 4.1D-15, 6.1D-23, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 0.603108 7 H s 32 -0.603108 8 H s - 36 -0.446800 11 C s 41 0.446800 12 C s + 31 0.603109 7 H s 32 -0.603109 8 H s + 36 -0.446799 11 C s 41 0.446799 12 C s 45 0.437140 13 H s 46 -0.437140 14 H s 12 -0.368677 3 C s 17 0.368677 4 C s - 59 0.337702 19 H s 60 -0.337702 20 H s + 59 0.337700 19 H s 60 -0.337700 20 H s - Vector 48 Occ=0.000000D+00 E= 4.393595D-01 Symmetry=ag - MO Center= 3.3D-15, 5.1D-14, -9.6D-17, r^2= 7.5D+00 + Vector 48 Occ=0.000000D+00 E= 4.393598D-01 Symmetry=ag + MO Center= -5.4D-15, 1.2D-14, 1.1D-16, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.782305 1 C s 7 0.782305 2 C s - 36 -0.556792 11 C s 41 -0.556792 12 C s - 12 -0.499660 3 C s 17 -0.499660 4 C s - 22 -0.411568 5 C s 27 -0.411568 6 C s - 48 0.409886 15 C s 53 0.409886 16 C s - - Vector 49 Occ=0.000000D+00 E= 4.537212D-01 Symmetry=bu - MO Center= 1.1D-14, -6.9D-14, 3.8D-17, r^2= 1.2D+01 + 2 0.782303 1 C s 7 0.782303 2 C s + 36 -0.556788 11 C s 41 -0.556788 12 C s + 12 -0.499654 3 C s 17 -0.499654 4 C s + 22 -0.411571 5 C s 27 -0.411571 6 C s + 48 0.409893 15 C s 53 0.409893 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.537210D-01 Symmetry=bu + MO Center= -5.0D-15, -9.1D-16, -2.3D-23, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.706721 15 C s 53 -0.706721 16 C s - 57 -0.525555 17 H s 58 0.525555 18 H s - 33 0.477113 9 H s 34 -0.477113 10 H s - 36 -0.429001 11 C s 41 0.429001 12 C s - 22 -0.407169 5 C s 27 0.407169 6 C s - - Vector 50 Occ=0.000000D+00 E= 4.783353D-01 Symmetry=ag - MO Center= -8.0D-15, 1.4D-14, -9.9D-17, r^2= 1.1D+01 + 48 0.706723 15 C s 53 -0.706723 16 C s + 57 -0.525560 17 H s 58 0.525560 18 H s + 33 0.477112 9 H s 34 -0.477112 10 H s + 36 -0.428994 11 C s 41 0.428994 12 C s + 22 -0.407164 5 C s 27 0.407164 6 C s + + Vector 50 Occ=0.000000D+00 E= 4.783352D-01 Symmetry=ag + MO Center= 3.9D-15, -9.1D-15, 3.0D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.706217 3 C s 17 0.706217 4 C s - 22 -0.619402 5 C s 27 -0.619402 6 C s - 59 -0.475187 19 H s 60 -0.475187 20 H s - 48 0.415041 15 C s 53 0.415041 16 C s - 50 -0.382621 15 C py 55 0.382621 16 C py - - Vector 51 Occ=0.000000D+00 E= 5.255619D-01 Symmetry=ag - MO Center= 1.0D-15, -3.2D-15, -1.4D-17, r^2= 6.5D+00 + 12 0.706221 3 C s 17 0.706221 4 C s + 22 -0.619400 5 C s 27 -0.619400 6 C s + 59 -0.475184 19 H s 60 -0.475184 20 H s + 48 0.415039 15 C s 53 0.415039 16 C s + 50 -0.382619 15 C py 55 0.382619 16 C py + + Vector 51 Occ=0.000000D+00 E= 5.255621D-01 Symmetry=ag + MO Center= 3.6D-16, 1.0D-15, 1.6D-17, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.601873 1 C py 9 -0.601873 2 C py - 36 -0.491669 11 C s 41 -0.491669 12 C s + 4 0.601872 1 C py 9 -0.601872 2 C py + 36 -0.491670 11 C s 41 -0.491670 12 C s 13 -0.452502 3 C px 18 0.452502 4 C px - 2 -0.448702 1 C s 7 -0.448702 2 C s + 2 -0.448701 1 C s 7 -0.448701 2 C s 49 -0.342028 15 C px 54 0.342028 16 C px - Vector 52 Occ=0.000000D+00 E= 5.463507D-01 Symmetry=bu - MO Center= 5.7D-15, -1.3D-14, -5.2D-18, r^2= 7.7D+00 + Vector 52 Occ=0.000000D+00 E= 5.463505D-01 Symmetry=bu + MO Center= 1.9D-15, -3.3D-15, 1.3D-22, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.647801 3 C s 17 -0.647801 4 C s - 3 -0.560732 1 C px 8 -0.560732 2 C px - 50 0.483439 15 C py 55 0.483439 16 C py + 12 0.647799 3 C s 17 -0.647799 4 C s + 3 -0.560730 1 C px 8 -0.560730 2 C px + 50 0.483440 15 C py 55 0.483440 16 C py 24 -0.478220 5 C py 29 -0.478220 6 C py - 59 0.356004 19 H s 60 -0.356004 20 H s + 59 0.356006 19 H s 60 -0.356006 20 H s - Vector 53 Occ=0.000000D+00 E= 5.764358D-01 Symmetry=ag - MO Center= -2.1D-15, 9.2D-16, -2.0D-17, r^2= 5.4D+00 + Vector 53 Occ=0.000000D+00 E= 5.764362D-01 Symmetry=ag + MO Center= -1.2D-15, -3.8D-15, 2.4D-17, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.537125 3 C px 18 -0.537125 4 C px + 13 0.537124 3 C px 18 -0.537124 4 C px 23 -0.522141 5 C px 28 0.522141 6 C px - 33 0.519104 9 H s 34 0.519104 10 H s - 31 -0.448313 7 H s 32 -0.448313 8 H s - 24 0.400194 5 C py 29 -0.400194 6 C py + 33 0.519103 9 H s 34 0.519103 10 H s + 31 -0.448310 7 H s 32 -0.448310 8 H s + 24 0.400193 5 C py 29 -0.400193 6 C py - Vector 54 Occ=0.000000D+00 E= 5.984381D-01 Symmetry=bu - MO Center= -5.4D-15, 1.7D-15, 4.6D-18, r^2= 4.8D+00 + Vector 54 Occ=0.000000D+00 E= 5.984383D-01 Symmetry=bu + MO Center= -2.9D-15, 2.5D-15, -1.3D-22, r^2= 4.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 0.723029 3 C py 19 0.723029 4 C py - 22 0.599919 5 C s 27 -0.599919 6 C s + 22 0.599921 5 C s 27 -0.599921 6 C s 36 -0.415408 11 C s 41 0.415408 12 C s - 2 -0.405912 1 C s 7 0.405912 2 C s - 24 0.394227 5 C py 29 0.394227 6 C py + 2 -0.405910 1 C s 7 0.405910 2 C s + 24 0.394225 5 C py 29 0.394225 6 C py - Vector 55 Occ=0.000000D+00 E= 6.248973D-01 Symmetry=bu - MO Center= 1.9D-15, -3.1D-16, -1.2D-18, r^2= 1.1D+01 + Vector 55 Occ=0.000000D+00 E= 6.248975D-01 Symmetry=bu + MO Center= 1.8D-15, 1.3D-14, 3.0D-23, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.608534 1 C s 7 -0.608534 2 C s - 49 -0.528892 15 C px 54 -0.528892 16 C px - 38 0.480661 11 C py 43 0.480661 12 C py - 23 -0.365994 5 C px 28 -0.365994 6 C px - 57 0.363289 17 H s 58 -0.363289 18 H s + 49 -0.528890 15 C px 54 -0.528890 16 C px + 38 0.480660 11 C py 43 0.480660 12 C py + 23 -0.365995 5 C px 28 -0.365995 6 C px + 57 0.363288 17 H s 58 -0.363288 18 H s - Vector 56 Occ=0.000000D+00 E= 6.398334D-01 Symmetry=ag - MO Center= 4.8D-16, 6.7D-15, -9.9D-17, r^2= 9.4D+00 + Vector 56 Occ=0.000000D+00 E= 6.398339D-01 Symmetry=ag + MO Center= 2.5D-15, -1.8D-14, 1.3D-17, r^2= 9.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.549269 11 C px 42 -0.549269 12 C px 50 -0.534300 15 C py 55 0.534300 16 C py - 14 0.383477 3 C py 19 -0.383477 4 C py - 4 -0.364576 1 C py 9 0.364576 2 C py + 14 0.383479 3 C py 19 -0.383479 4 C py + 4 -0.364575 1 C py 9 0.364575 2 C py 59 -0.330751 19 H s 60 -0.330751 20 H s Vector 57 Occ=0.000000D+00 E= 6.828368D-01 Symmetry=ag - MO Center= -5.8D-16, -1.3D-15, 1.7D-18, r^2= 9.3D+00 + MO Center= -3.8D-16, 7.8D-15, -7.3D-18, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 38 0.663093 11 C py 43 -0.663093 12 C py - 49 -0.580412 15 C px 54 0.580412 16 C px - 24 -0.449231 5 C py 29 0.449231 6 C py + 38 0.663092 11 C py 43 -0.663092 12 C py + 49 -0.580411 15 C px 54 0.580411 16 C px + 24 -0.449232 5 C py 29 0.449232 6 C py 14 -0.392088 3 C py 19 0.392088 4 C py - 4 -0.381669 1 C py 9 0.381669 2 C py + 4 -0.381671 1 C py 9 0.381671 2 C py - Vector 58 Occ=0.000000D+00 E= 7.173570D-01 Symmetry=bu - MO Center= 2.3D-15, 2.9D-14, -5.9D-20, r^2= 9.6D+00 + Vector 58 Occ=0.000000D+00 E= 7.173572D-01 Symmetry=bu + MO Center= 5.5D-17, -5.0D-16, 3.2D-24, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.608025 11 C px 42 0.608025 12 C px - 48 -0.538017 15 C s 50 -0.540484 15 C py - 53 0.538017 16 C s 55 -0.540484 16 C py - 36 0.466540 11 C s 38 -0.464867 11 C py - 41 -0.466540 12 C s 43 -0.464867 12 C py - - Vector 59 Occ=0.000000D+00 E= 7.790413D-01 Symmetry=ag - MO Center= -2.3D-15, -2.5D-14, -5.2D-17, r^2= 5.4D+00 + 37 0.608023 11 C px 42 0.608023 12 C px + 48 -0.538019 15 C s 50 -0.540483 15 C py + 53 0.538019 16 C s 55 -0.540483 16 C py + 36 0.466541 11 C s 38 -0.464871 11 C py + 41 -0.466541 12 C s 43 -0.464871 12 C py + + Vector 59 Occ=0.000000D+00 E= 7.790414D-01 Symmetry=ag + MO Center= 1.9D-16, 1.3D-15, 1.7D-17, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.702431 1 C px 8 -0.702431 2 C px - 14 -0.534059 3 C py 19 0.534059 4 C py - 23 -0.435986 5 C px 28 0.435986 6 C px + 14 -0.534058 3 C py 19 0.534058 4 C py + 23 -0.435987 5 C px 28 0.435987 6 C px 37 0.429836 11 C px 42 -0.429836 12 C px 24 -0.411037 5 C py 29 0.411037 6 C py - Vector 60 Occ=0.000000D+00 E= 7.942624D-01 Symmetry=bu - MO Center= -2.7D-16, -4.1D-15, 3.1D-23, r^2= 3.4D+00 + Vector 60 Occ=0.000000D+00 E= 7.942619D-01 Symmetry=bu + MO Center= -5.9D-16, 5.5D-16, -1.8D-26, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.657693 1 C py 9 0.657693 2 C py - 13 -0.568325 3 C px 18 -0.568325 4 C px + 4 0.657694 1 C py 9 0.657694 2 C py + 13 -0.568326 3 C px 18 -0.568326 4 C px 23 0.496519 5 C px 28 0.496519 6 C px 22 -0.413797 5 C s 27 0.413797 6 C s 24 -0.395895 5 C py 29 -0.395895 6 C py @@ -2402,58 +2429,58 @@ 2 0.03156 0.03135 0.00410 -0.00406 -0.00081 0.00816 3 -0.00002 0.00003 0.00067 -0.00065 0.00525 -0.00123 4 -0.00091 -0.00063 0.00416 -0.00413 -0.00054 -0.00308 - 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 5 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 6 -0.69930 0.69930 0.02742 0.02765 0.00327 0.02868 7 -0.03156 0.03135 -0.00410 -0.00406 -0.00081 -0.00816 8 -0.00002 -0.00003 0.00067 0.00065 -0.00525 -0.00123 9 -0.00091 0.00063 0.00416 0.00413 0.00054 -0.00308 - 10 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 11 -0.01887 -0.01934 0.01179 -0.01473 -0.43751 -0.42432 + 10 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 11 -0.01887 -0.01934 0.01179 -0.01473 -0.43752 -0.42433 12 -0.00774 -0.00693 0.00068 -0.00068 -0.02438 -0.02407 13 0.00353 0.00332 -0.00013 0.00019 0.00102 0.00115 14 -0.00263 -0.00300 -0.00002 -0.00006 0.00367 0.00385 - 15 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 16 0.01887 -0.01934 -0.01179 -0.01473 -0.43751 0.42432 + 15 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 16 0.01887 -0.01934 -0.01179 -0.01473 -0.43752 0.42433 17 0.00774 -0.00693 -0.00068 -0.00068 -0.02438 0.02407 18 0.00353 -0.00332 -0.00013 -0.00019 -0.00102 0.00115 19 -0.00263 0.00300 -0.00002 0.00006 -0.00367 0.00385 - 20 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 20 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 21 0.01918 -0.01952 -0.00968 -0.01107 0.54641 0.55588 22 0.00771 -0.00687 -0.00055 -0.00042 0.02815 0.02865 23 -0.00417 0.00407 0.00013 0.00021 0.00007 -0.00009 24 -0.00132 0.00175 -0.00010 0.00001 0.00323 0.00334 - 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 25 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 26 -0.01918 -0.01952 0.00968 -0.01107 0.54641 -0.55588 27 -0.00771 -0.00687 0.00055 -0.00042 0.02815 -0.02865 28 -0.00417 -0.00407 0.00013 -0.00021 -0.00007 -0.00009 29 -0.00132 -0.00175 -0.00010 -0.00001 -0.00323 0.00334 - 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 30 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 31 0.00034 0.00022 -0.00010 0.00011 0.00405 0.00398 32 -0.00034 0.00022 0.00010 0.00011 0.00405 -0.00398 33 -0.00033 0.00022 -0.00004 -0.00006 -0.00506 -0.00515 34 0.00033 0.00022 0.00004 -0.00006 -0.00506 0.00515 - 35 0.02696 -0.02733 0.69978 0.69970 -0.00070 0.01381 + 35 0.02696 -0.02733 0.69978 0.69970 -0.00070 0.01382 36 0.00670 -0.00677 0.03078 0.03076 -0.00004 0.00073 37 0.00090 -0.00091 0.00075 0.00075 0.00011 0.00006 38 0.00397 -0.00401 -0.00108 -0.00109 -0.00003 -0.00005 - 39 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 40 -0.02696 -0.02733 -0.69978 0.69970 -0.00070 -0.01381 + 39 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 40 -0.02696 -0.02733 -0.69978 0.69970 -0.00070 -0.01382 41 -0.00670 -0.00677 -0.03078 0.03076 -0.00004 -0.00073 42 0.00090 0.00091 0.00075 -0.00075 -0.00011 0.00006 43 0.00397 0.00401 -0.00108 0.00109 0.00003 -0.00005 - 44 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 44 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 45 -0.00032 0.00033 -0.00642 -0.00642 -0.00001 -0.00018 46 0.00032 0.00033 0.00642 -0.00642 -0.00001 0.00018 47 -0.00018 0.00019 -0.00811 -0.00810 -0.00029 -0.00093 48 -0.00047 0.00047 -0.00762 -0.00762 -0.00005 -0.00028 49 -0.00001 0.00001 0.00305 0.00305 -0.00003 0.00003 50 -0.00028 0.00029 -0.00344 -0.00344 -0.00001 -0.00014 - 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 51 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 52 0.00018 0.00019 0.00811 -0.00810 -0.00029 0.00093 53 0.00047 0.00047 0.00762 -0.00762 -0.00005 0.00028 54 -0.00001 -0.00001 0.00305 -0.00305 0.00003 0.00003 55 -0.00028 -0.00029 -0.00344 0.00344 0.00001 -0.00014 - 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 56 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 57 0.00015 -0.00014 0.00019 0.00019 0.00016 0.00015 58 -0.00015 -0.00014 -0.00019 0.00019 0.00016 -0.00015 59 0.00003 -0.00003 0.00022 0.00022 -0.00000 -0.00001 @@ -2465,58 +2492,58 @@ 2 -0.00110 -0.00749 -0.00016 0.00016 0.27470 0.27379 3 -0.00500 -0.00006 0.00002 -0.00002 -0.00550 0.00446 4 0.00128 0.00308 -0.00005 0.00005 -0.04073 0.03298 - 5 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 5 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 6 -0.00367 0.02944 0.00018 0.00018 -0.10786 0.10355 7 0.00110 -0.00749 0.00016 0.00016 0.27470 -0.27379 8 -0.00500 0.00006 0.00002 0.00002 0.00550 0.00446 9 0.00128 -0.00308 -0.00005 -0.00005 0.04073 0.03298 - 10 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 10 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 11 0.55685 0.54652 -0.00028 0.00057 -0.09784 -0.03906 12 0.02059 0.01990 0.00000 -0.00006 0.24702 0.10222 13 -0.00024 0.00013 -0.00001 0.00002 -0.05337 -0.02738 14 0.00222 0.00233 0.00008 -0.00003 -0.01450 0.05896 - 15 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 15 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 16 -0.55685 0.54652 0.00028 0.00057 -0.09784 0.03906 17 -0.02059 0.01990 -0.00000 -0.00006 0.24702 -0.10222 18 -0.00024 -0.00013 -0.00001 -0.00002 0.05337 -0.02738 19 0.00222 -0.00233 0.00008 0.00003 0.01450 0.05896 - 20 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 21 0.42563 0.43775 0.00079 0.00085 -0.09757 0.04279 + 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 21 0.42564 0.43775 0.00079 0.00085 -0.09757 0.04279 22 0.01354 0.01412 -0.00002 -0.00004 0.24669 -0.11256 23 -0.00095 -0.00067 0.00001 0.00000 -0.04576 0.04462 24 -0.00301 -0.00302 0.00011 0.00009 0.03144 0.04668 - 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 26 -0.42563 0.43775 -0.00079 0.00085 -0.09757 -0.04279 + 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 26 -0.42564 0.43775 -0.00079 0.00085 -0.09757 -0.04279 27 -0.01354 0.01412 0.00002 -0.00004 0.24669 0.11256 28 -0.00095 0.00067 0.00001 -0.00000 0.04576 0.04462 29 -0.00301 0.00302 0.00011 -0.00009 -0.03144 0.04668 - 30 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 30 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 31 -0.00491 -0.00498 0.00001 -0.00002 0.04495 0.02686 32 0.00491 -0.00498 -0.00001 -0.00002 0.04495 -0.02686 33 -0.00371 -0.00400 0.00010 0.00010 0.04519 -0.03076 34 0.00371 -0.00400 -0.00010 0.00010 0.04519 0.03076 - 35 -0.00338 0.01736 0.00900 0.00901 -0.04972 0.11382 + 35 -0.00337 0.01736 0.00900 0.00901 -0.04972 0.11382 36 -0.00018 0.00075 -0.00689 -0.00689 0.12781 -0.29717 37 0.00001 0.00002 -0.00308 -0.00308 0.01290 -0.03419 38 0.00002 -0.00019 0.00338 0.00338 0.02845 -0.00850 - 39 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 40 0.00338 0.01736 -0.00900 0.00901 -0.04972 -0.11382 + 39 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 40 0.00337 0.01736 -0.00900 0.00901 -0.04972 -0.11382 41 0.00018 0.00075 0.00689 -0.00689 0.12781 0.29717 42 0.00001 -0.00002 -0.00308 0.00308 -0.01290 -0.03419 43 0.00002 0.00019 0.00338 -0.00338 -0.02845 -0.00850 - 44 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 44 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 45 0.00005 -0.00025 0.00004 0.00004 0.02560 -0.06702 46 -0.00005 -0.00025 -0.00004 0.00004 0.02560 0.06702 47 -0.00021 -0.00115 0.70048 0.70048 -0.02467 0.08073 48 0.00003 -0.00033 0.03086 0.03086 0.06268 -0.20931 49 -0.00005 0.00005 -0.00089 -0.00089 -0.01240 0.03729 50 0.00001 -0.00018 0.00094 0.00094 0.02035 -0.04990 - 51 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 51 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 52 0.00021 -0.00115 -0.70048 0.70048 -0.02467 -0.08073 53 -0.00003 -0.00033 -0.03086 0.03086 0.06268 0.20931 54 -0.00005 -0.00005 -0.00089 0.00089 0.01240 0.03729 55 0.00001 0.00018 0.00094 -0.00094 -0.02035 -0.04990 - 56 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 56 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 57 0.00009 0.00010 -0.00636 -0.00636 0.01412 -0.04858 58 -0.00009 0.00010 0.00636 -0.00636 0.01412 0.04858 59 -0.00001 -0.00001 -0.00637 -0.00637 0.01058 -0.04369 @@ -2528,32 +2555,32 @@ 2 0.01483 0.03409 0.27407 -0.20638 -0.16079 0.03709 3 0.01037 0.12499 -0.01781 -0.12106 0.18486 -0.05359 4 0.09615 -0.02299 -0.05622 -0.07212 -0.06394 -0.13493 - 5 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 6 -0.00453 0.01260 0.09965 0.07098 0.05432 0.01303 7 0.01483 -0.03409 -0.27407 -0.20638 -0.16079 -0.03709 8 -0.01037 0.12499 -0.01781 0.12106 -0.18486 -0.05359 9 -0.09615 -0.02299 -0.05622 0.07212 0.06394 -0.13493 - 10 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 10 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 11 0.04631 -0.13232 -0.04077 0.00302 -0.11045 -0.05067 12 -0.12146 0.35713 0.11268 -0.01004 0.32603 0.15447 13 0.01614 0.00350 -0.03788 0.02993 0.08167 -0.00524 14 0.03704 -0.05621 0.09142 -0.16001 0.03652 0.00483 - 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 15 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 16 0.04631 0.13232 0.04077 0.00302 -0.11045 0.05067 17 -0.12146 -0.35713 -0.11268 -0.01004 0.32603 -0.15447 18 -0.01614 0.00350 -0.03788 -0.02993 -0.08167 -0.00524 19 -0.03704 -0.05621 0.09142 0.16001 -0.03652 0.00483 - 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 21 0.04173 -0.12009 0.07330 -0.08191 0.05747 0.03036 22 -0.10894 0.32390 -0.20228 0.23381 -0.17074 -0.09205 23 0.00204 0.03465 0.05406 0.06548 0.08653 0.03583 24 -0.04735 0.06563 0.04697 0.02290 0.17044 0.07857 - 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 26 0.04173 0.12009 -0.07330 -0.08191 0.05747 -0.03036 27 -0.10894 -0.32390 0.20228 0.23381 -0.17074 0.09205 28 -0.00204 0.03465 0.05406 -0.06548 -0.08653 0.03583 29 0.04735 0.06563 0.04697 -0.02290 -0.17044 0.07857 - 30 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 31 -0.02335 0.09831 0.03218 -0.01929 0.16923 0.05033 32 -0.02335 -0.09831 -0.03218 -0.01929 0.16923 -0.05033 33 -0.01660 0.08999 -0.05346 0.10642 -0.08383 -0.05580 @@ -2562,24 +2589,24 @@ 36 0.31482 -0.00128 0.13685 -0.15961 -0.02451 0.30277 37 0.04535 0.02295 0.03919 0.08128 -0.04660 -0.11605 38 -0.05748 -0.01848 -0.12905 -0.12925 -0.07792 0.04107 - 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 39 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 40 -0.11924 -0.00020 0.05162 0.05306 0.00758 0.09885 41 0.31482 0.00128 -0.13685 -0.15961 -0.02451 -0.30277 42 -0.04535 0.02295 0.03919 -0.08128 0.04660 -0.11605 43 0.05748 -0.01848 -0.12905 0.12925 0.07792 0.04107 - 44 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 44 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 45 0.07653 -0.00984 0.03763 -0.08003 0.03216 0.17052 46 0.07653 0.00984 -0.03763 -0.08003 0.03216 -0.17052 47 -0.11746 -0.01450 -0.11027 -0.08371 -0.03787 0.08074 48 0.30977 0.03791 0.29951 0.24141 0.11347 -0.24917 49 -0.04908 0.00157 -0.03453 0.03560 -0.01390 -0.12315 50 0.05279 0.00637 0.01637 -0.03827 -0.04943 0.09128 - 51 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 51 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 52 -0.11746 0.01450 0.11027 -0.08371 -0.03787 -0.08074 53 0.30977 -0.03791 -0.29951 0.24141 0.11347 0.24917 54 0.04908 0.00157 -0.03453 -0.03560 0.01390 -0.12315 55 -0.05279 0.00637 0.01637 0.03827 0.04943 0.09128 - 56 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 56 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 57 0.07420 0.01478 0.07740 0.10354 0.02278 -0.16063 58 0.07420 -0.01478 -0.07740 0.10354 0.02278 0.16063 59 0.07484 0.00894 0.08996 0.09775 0.06787 -0.12474 @@ -2587,36 +2614,36 @@ 19 20 21 22 23 24 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.05454 -0.03229 0.02275 -0.06946 -0.02277 0.02167 + 1 0.05454 -0.03229 0.02275 -0.06946 -0.02278 0.02167 2 -0.16217 0.10634 -0.07804 0.23531 0.07752 -0.07158 3 -0.01948 0.05143 0.12484 0.10107 -0.22083 -0.01574 4 0.14256 0.13227 -0.13509 -0.02739 -0.14330 -0.01021 - 5 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 6 0.05454 -0.03229 -0.02275 0.06946 0.02277 0.02167 + 5 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 6 0.05454 -0.03229 -0.02275 0.06946 0.02278 0.02167 7 -0.16217 0.10634 0.07804 -0.23531 -0.07752 -0.07158 8 0.01948 -0.05143 0.12484 0.10107 -0.22083 0.01574 9 -0.14256 -0.13227 -0.13509 -0.02739 -0.14330 0.01021 - 10 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 11 -0.00697 -0.01336 -0.02216 0.04738 -0.00126 -0.02514 - 12 0.02556 0.05158 0.07459 -0.16297 0.00150 0.08397 + 12 0.02556 0.05157 0.07459 -0.16297 0.00150 0.08397 13 0.18449 0.13690 0.01857 -0.22226 -0.00314 -0.00635 - 14 -0.08790 0.14138 0.18496 0.06158 -0.12066 -0.08210 - 15 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 14 -0.08790 0.14139 0.18496 0.06158 -0.12066 -0.08210 + 15 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 16 -0.00697 -0.01336 0.02216 -0.04738 0.00126 -0.02514 - 17 0.02556 0.05158 -0.07459 0.16297 -0.00150 0.08397 + 17 0.02556 0.05157 -0.07459 0.16297 -0.00150 0.08397 18 -0.18449 -0.13690 0.01857 -0.22226 -0.00314 0.00635 - 19 0.08790 -0.14138 0.18496 0.06158 -0.12066 0.08210 - 20 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 19 0.08790 -0.14139 0.18496 0.06158 -0.12066 0.08210 + 20 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 21 -0.05224 0.01978 0.04259 -0.04406 0.01174 0.01824 22 0.16602 -0.05620 -0.13897 0.15292 -0.03666 -0.06801 23 0.20190 0.08463 -0.09670 0.11282 0.25124 -0.03712 24 -0.03731 -0.13600 -0.10148 -0.17797 0.05674 0.13671 - 25 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 26 -0.05224 0.01978 -0.04259 0.04406 -0.01174 0.01824 27 0.16602 -0.05620 0.13897 -0.15292 0.03666 -0.06801 28 -0.20190 -0.08463 -0.09670 0.11282 0.25124 0.03712 29 0.03731 0.13600 -0.10148 -0.17797 0.05674 -0.13671 - 30 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 30 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 31 0.09946 0.13601 0.10020 -0.22666 -0.03672 0.00607 32 0.09946 0.13601 -0.10020 0.22666 0.03672 0.00607 33 0.16928 0.09041 -0.05988 0.23047 0.13275 -0.11408 @@ -2625,24 +2652,24 @@ 36 0.18076 -0.12770 0.05160 0.04227 0.01492 0.08059 37 -0.06455 0.11482 0.21923 0.03807 -0.04290 0.25149 38 -0.00149 0.18465 0.10104 -0.12528 0.18149 -0.08173 - 39 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 39 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 40 -0.05912 0.04018 0.01690 0.01529 0.00257 -0.02765 41 0.18076 -0.12770 -0.05160 -0.04227 -0.01492 0.08059 42 0.06455 -0.11482 0.21923 0.03807 -0.04290 -0.25149 43 0.00149 -0.18465 0.10104 -0.12528 0.18149 0.08173 - 44 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 44 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 45 0.11251 -0.15309 -0.15549 0.02806 0.01234 -0.14506 46 0.11251 -0.15309 0.15549 -0.02806 -0.01234 -0.14506 47 0.05155 -0.01689 0.00814 0.01223 0.00106 -0.00444 48 -0.16347 0.06337 -0.03136 -0.05077 0.00750 -0.00010 49 -0.07915 0.21273 0.09058 -0.07563 0.25051 -0.01131 50 0.08165 0.00913 0.21029 0.13356 0.03810 0.33900 - 51 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 51 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 52 0.05155 -0.01689 -0.00814 -0.01223 -0.00106 -0.00444 53 -0.16347 0.06337 0.03136 0.05077 -0.00750 -0.00010 54 0.07915 -0.21273 0.09058 -0.07563 0.25051 0.01131 55 -0.08165 -0.00913 0.21029 0.13356 0.03810 -0.33900 - 56 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 56 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 57 -0.09475 0.17911 0.07306 -0.04231 0.21542 0.02497 58 -0.09475 0.17911 -0.07306 0.04231 -0.21542 0.02497 59 -0.09719 -0.02141 -0.17813 -0.10503 -0.08716 -0.26260 @@ -2650,36 +2677,36 @@ 25 26 27 28 29 30 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00257 0.00315 0.02506 0.00000 -0.01028 -0.00342 - 2 -0.00882 -0.01168 -0.09024 -0.00000 0.04486 0.02281 - 3 -0.08496 0.16711 0.08893 -0.00000 0.09215 -0.13094 - 4 0.07881 -0.17820 0.00082 -0.00000 0.24197 0.26840 - 5 -0.00000 -0.00000 -0.00000 0.33761 0.00000 0.00000 - 6 -0.00257 -0.00315 0.02506 0.00000 0.01028 -0.00342 - 7 0.00882 0.01168 -0.09024 -0.00000 -0.04486 0.02281 - 8 -0.08496 0.16711 -0.08893 0.00000 0.09215 0.13094 - 9 0.07881 -0.17820 -0.00082 0.00000 0.24197 -0.26840 - 10 -0.00000 0.00000 0.00000 0.33761 -0.00000 -0.00000 - 11 0.02849 -0.01759 0.00530 0.00000 0.00685 0.00271 - 12 -0.09067 0.06357 -0.02695 -0.00000 -0.02118 -0.00884 - 13 0.30758 -0.10066 -0.12838 0.00000 0.06490 0.13268 - 14 0.14541 0.22434 -0.13363 0.00000 0.04102 -0.27818 - 15 -0.00000 -0.00000 0.00000 0.29798 -0.00000 -0.00000 - 16 -0.02849 0.01759 0.00530 0.00000 -0.00685 0.00271 - 17 0.09067 -0.06357 -0.02695 -0.00000 0.02118 -0.00884 - 18 0.30758 -0.10066 0.12838 -0.00000 0.06490 -0.13268 - 19 0.14541 0.22434 0.13363 -0.00000 0.04102 0.27818 + 1 0.00257 0.00315 0.02505 -0.00000 -0.01028 -0.00342 + 2 -0.00882 -0.01168 -0.09024 0.00000 0.04486 0.02281 + 3 -0.08497 0.16711 0.08893 -0.00000 0.09215 -0.13094 + 4 0.07881 -0.17820 0.00082 0.00000 0.24197 0.26840 + 5 0.00000 0.00000 0.00000 0.33761 0.00000 -0.00000 + 6 -0.00257 -0.00315 0.02505 -0.00000 0.01028 -0.00342 + 7 0.00882 0.01168 -0.09024 0.00000 -0.04486 0.02281 + 8 -0.08497 0.16711 -0.08893 0.00000 0.09215 0.13094 + 9 0.07881 -0.17820 -0.00082 -0.00000 0.24197 -0.26840 + 10 0.00000 0.00000 0.00000 0.33761 0.00000 -0.00000 + 11 0.02849 -0.01759 0.00530 -0.00000 0.00685 0.00271 + 12 -0.09067 0.06357 -0.02695 0.00000 -0.02118 -0.00884 + 13 0.30759 -0.10066 -0.12838 0.00000 0.06490 0.13268 + 14 0.14541 0.22434 -0.13363 -0.00000 0.04102 -0.27818 + 15 0.00000 0.00000 0.00000 0.29798 0.00000 -0.00000 + 16 -0.02849 0.01759 0.00530 -0.00000 -0.00685 0.00271 + 17 0.09067 -0.06357 -0.02695 0.00000 0.02118 -0.00884 + 18 0.30759 -0.10066 0.12838 -0.00000 0.06490 -0.13268 + 19 0.14541 0.22434 0.13363 0.00000 0.04102 0.27818 20 0.00000 0.00000 0.00000 0.29798 0.00000 -0.00000 21 0.01970 0.00712 -0.00754 -0.00000 -0.01375 -0.00888 - 22 -0.06220 -0.02043 0.02538 0.00000 0.04725 0.02465 + 22 -0.06220 -0.02043 0.02537 0.00000 0.04725 0.02465 23 0.18806 -0.07066 0.06386 -0.00000 -0.14449 -0.08055 - 24 -0.22609 -0.19326 0.13981 0.00000 -0.00790 0.23445 - 25 0.00000 0.00000 0.00000 0.29717 -0.00000 -0.00000 + 24 -0.22609 -0.19326 0.13980 0.00000 -0.00790 0.23445 + 25 0.00000 0.00000 0.00000 0.29717 0.00000 -0.00000 26 -0.01970 -0.00712 -0.00754 -0.00000 0.01375 -0.00888 - 27 0.06220 0.02043 0.02538 0.00000 -0.04725 0.02465 + 27 0.06220 0.02043 0.02537 0.00000 -0.04725 0.02465 28 0.18806 -0.07066 -0.06386 0.00000 -0.14449 0.08055 - 29 -0.22609 -0.19326 -0.13981 -0.00000 -0.00790 -0.23445 - 30 0.00000 0.00000 -0.00000 0.29717 -0.00000 -0.00000 + 29 -0.22609 -0.19326 -0.13980 -0.00000 -0.00790 -0.23445 + 30 0.00000 0.00000 0.00000 0.29717 0.00000 -0.00000 31 0.25227 0.00752 -0.15647 0.00000 0.04671 0.02034 32 -0.25227 -0.00752 -0.15647 0.00000 -0.04671 0.02034 33 0.21818 0.04690 0.00782 -0.00000 -0.05383 -0.24041 @@ -2687,340 +2714,340 @@ 35 -0.00193 0.00109 -0.01690 -0.00000 0.00273 -0.01988 36 0.00461 0.01245 0.07134 0.00000 -0.00655 0.08279 37 -0.01859 -0.20168 -0.20888 0.00000 -0.21725 0.04337 - 38 -0.06686 0.18774 0.08750 -0.00000 -0.16914 0.24814 - 39 -0.00000 -0.00000 -0.00000 0.17395 0.00000 -0.00000 + 38 -0.06686 0.18774 0.08750 0.00000 -0.16914 0.24814 + 39 0.00000 0.00000 0.00000 0.17395 0.00000 -0.00000 40 0.00193 -0.00109 -0.01690 -0.00000 -0.00273 -0.01988 41 -0.00461 -0.01245 0.07134 0.00000 0.00655 0.08279 42 -0.01859 -0.20168 0.20888 -0.00000 -0.21725 -0.04337 - 43 -0.06686 0.18774 -0.08750 0.00000 -0.16914 -0.24814 - 44 0.00000 0.00000 -0.00000 0.17395 -0.00000 0.00000 - 45 0.01673 0.14559 0.20023 0.00000 0.25910 -0.06640 - 46 -0.01673 -0.14559 0.20023 0.00000 -0.25910 -0.06640 + 43 -0.06686 0.18774 -0.08750 -0.00000 -0.16914 -0.24814 + 44 0.00000 0.00000 0.00000 0.17395 0.00000 -0.00000 + 45 0.01673 0.14559 0.20023 -0.00000 0.25910 -0.06640 + 46 -0.01673 -0.14559 0.20023 -0.00000 -0.25910 -0.06640 47 0.00445 0.02052 0.01051 -0.00000 0.00350 0.00833 48 -0.01850 -0.05651 -0.02704 0.00000 -0.01441 -0.02127 - 49 -0.07653 0.12000 0.29519 0.00000 0.19964 0.02772 - 50 -0.00552 -0.24568 0.04849 0.00000 0.13688 -0.14507 - 51 0.00000 0.00000 -0.00000 0.09244 -0.00000 0.00000 + 49 -0.07653 0.12000 0.29519 -0.00000 0.19964 0.02772 + 50 -0.00552 -0.24568 0.04849 -0.00000 0.13688 -0.14507 + 51 0.00000 0.00000 0.00000 0.09244 0.00000 -0.00000 52 -0.00445 -0.02052 0.01051 -0.00000 -0.00350 0.00833 53 0.01850 0.05651 -0.02704 0.00000 0.01441 -0.02127 - 54 -0.07653 0.12000 -0.29519 -0.00000 0.19964 -0.02772 - 55 -0.00552 -0.24568 -0.04849 -0.00000 0.13688 0.14507 - 56 0.00000 0.00000 -0.00000 0.09244 -0.00000 0.00000 - 57 -0.05395 0.05142 0.26801 0.00000 0.23103 -0.05231 - 58 0.05395 -0.05142 0.26801 0.00000 -0.23103 -0.05231 - 59 0.01519 0.15786 -0.14304 -0.00000 -0.21233 0.13552 - 60 -0.01519 -0.15786 -0.14304 -0.00000 0.21233 0.13552 + 54 -0.07653 0.12000 -0.29519 0.00000 0.19964 -0.02772 + 55 -0.00552 -0.24568 -0.04849 0.00000 0.13688 0.14507 + 56 0.00000 0.00000 0.00000 0.09244 0.00000 -0.00000 + 57 -0.05395 0.05142 0.26801 -0.00000 0.23103 -0.05231 + 58 0.05395 -0.05142 0.26801 -0.00000 -0.23103 -0.05231 + 59 0.01519 0.15786 -0.14304 0.00000 -0.21233 0.13552 + 60 -0.01519 -0.15786 -0.14304 0.00000 0.21233 0.13552 31 32 33 34 35 36 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00699 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 2 0.03378 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 3 0.29586 0.00000 0.00000 0.00000 0.00000 0.00000 - 4 0.09493 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 5 -0.00000 0.34896 -0.01801 0.00575 0.38755 0.44267 - 6 -0.00699 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 7 0.03378 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 8 -0.29586 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 9 -0.09493 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 1 -0.00699 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 2 0.03378 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 3 0.29585 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 4 0.09493 -0.00000 0.00000 0.00000 0.00000 0.00000 + 5 0.00000 0.34896 -0.01801 0.00575 0.38755 0.44267 + 6 -0.00699 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 7 0.03378 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 8 -0.29585 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 9 -0.09493 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 10 0.00000 -0.34896 -0.01801 -0.00575 -0.38755 0.44267 - 11 -0.01201 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 12 0.03558 0.00000 0.00000 0.00000 0.00000 -0.00000 - 13 -0.22212 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 14 -0.04919 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 11 -0.01201 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 12 0.03558 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 13 -0.22212 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 14 -0.04919 0.00000 0.00000 -0.00000 -0.00000 0.00000 15 0.00000 0.13165 -0.17920 0.46363 0.21507 -0.23227 - 16 -0.01201 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 17 0.03558 0.00000 0.00000 0.00000 0.00000 -0.00000 - 18 0.22212 0.00000 0.00000 0.00000 0.00000 -0.00000 - 19 0.04919 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 16 -0.01201 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 17 0.03558 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 18 0.22212 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 19 0.04919 -0.00000 -0.00000 0.00000 0.00000 -0.00000 20 0.00000 -0.13165 -0.17920 -0.46363 -0.21507 -0.23227 - 21 0.00761 0.00000 0.00000 0.00000 0.00000 -0.00000 - 22 -0.02194 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 23 0.28060 0.00000 0.00000 0.00000 0.00000 0.00000 - 24 0.09600 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 21 0.00761 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 22 -0.02194 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 23 0.28060 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 24 0.09600 -0.00000 -0.00000 0.00000 0.00000 0.00000 25 0.00000 -0.13211 -0.17663 0.45754 -0.23074 -0.27755 - 26 0.00761 0.00000 0.00000 0.00000 0.00000 -0.00000 - 27 -0.02194 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 28 -0.28060 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 29 -0.09600 0.00000 0.00000 0.00000 -0.00000 0.00000 + 26 0.00761 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 27 -0.02194 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 28 -0.28060 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 29 -0.09600 0.00000 0.00000 -0.00000 -0.00000 -0.00000 30 0.00000 0.13211 -0.17663 -0.45754 0.23074 -0.27755 - 31 -0.25807 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 32 -0.25807 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 33 0.15131 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 34 0.15131 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 35 -0.01113 0.00000 0.00000 0.00000 0.00000 -0.00000 - 36 0.03843 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 37 0.13689 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 38 0.11202 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 31 -0.25807 -0.00000 0.00000 0.00000 0.00000 0.00000 + 32 -0.25807 -0.00000 0.00000 0.00000 0.00000 0.00000 + 33 0.15131 0.00000 -0.00000 0.00000 0.00000 0.00000 + 34 0.15131 0.00000 -0.00000 0.00000 0.00000 0.00000 + 35 -0.01113 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 36 0.03843 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 37 0.13689 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 38 0.11202 0.00000 0.00000 0.00000 0.00000 0.00000 39 0.00000 -0.37648 0.41378 -0.00037 0.22367 0.25613 - 40 -0.01113 0.00000 0.00000 0.00000 0.00000 -0.00000 - 41 0.03843 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 42 -0.13689 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 43 -0.11202 0.00000 0.00000 0.00000 0.00000 0.00000 - 44 -0.00000 0.37648 0.41378 0.00037 -0.22367 0.25613 - 45 -0.18274 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 46 -0.18274 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 47 -0.00467 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 48 0.01837 0.00000 0.00000 0.00000 0.00000 -0.00000 - 49 -0.10958 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 50 -0.03768 0.00000 0.00000 0.00000 0.00000 0.00000 - 51 -0.00000 -0.27140 0.41796 0.00954 0.39737 -0.44961 - 52 -0.00467 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 53 0.01837 0.00000 0.00000 0.00000 0.00000 -0.00000 - 54 0.10958 0.00000 0.00000 -0.00000 0.00000 0.00000 - 55 0.03768 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 56 -0.00000 0.27140 0.41796 -0.00954 -0.39737 -0.44961 - 57 -0.11595 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 58 -0.11595 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 59 0.08985 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 60 0.08985 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 40 -0.01113 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 41 0.03843 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 42 -0.13689 0.00000 -0.00000 0.00000 0.00000 0.00000 + 43 -0.11202 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 44 0.00000 0.37648 0.41378 0.00037 -0.22367 0.25613 + 45 -0.18274 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 46 -0.18274 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 47 -0.00467 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 48 0.01837 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 49 -0.10958 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 50 -0.03768 0.00000 0.00000 0.00000 0.00000 -0.00000 + 51 0.00000 -0.27140 0.41796 0.00954 0.39737 -0.44961 + 52 -0.00467 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 53 0.01837 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 54 0.10958 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 55 0.03768 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 56 0.00000 0.27140 0.41796 -0.00954 -0.39737 -0.44961 + 57 -0.11595 0.00000 -0.00000 0.00000 0.00000 0.00000 + 58 -0.11595 0.00000 -0.00000 0.00000 0.00000 0.00000 + 59 0.08985 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 60 0.08985 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 37 38 39 40 41 42 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 0.00000 -0.00000 -0.00000 -0.06824 -0.03374 - 2 0.00000 -0.00000 0.00000 0.00000 0.40157 0.19824 - 3 0.00000 0.00000 0.00000 -0.00000 0.08710 0.28506 - 4 -0.00000 -0.00000 0.00000 0.00000 0.27371 0.13577 - 5 -0.03192 -0.02345 0.49722 0.54348 -0.00000 -0.00000 - 6 -0.00000 0.00000 -0.00000 -0.00000 -0.06824 0.03374 - 7 0.00000 -0.00000 0.00000 0.00000 0.40157 -0.19824 - 8 0.00000 0.00000 -0.00000 0.00000 -0.08710 0.28506 - 9 -0.00000 -0.00000 -0.00000 -0.00000 -0.27371 0.13577 - 10 -0.03192 0.02345 0.49722 -0.54348 0.00000 0.00000 - 11 0.00000 0.00000 -0.00000 -0.00000 -0.02814 0.00595 - 12 -0.00000 -0.00000 0.00000 0.00000 0.17347 -0.02878 - 13 0.00000 -0.00000 -0.00000 0.00000 0.30451 0.35544 - 14 -0.00000 0.00000 -0.00000 -0.00000 0.05353 0.01074 + 1 0.00000 0.00000 0.00000 0.00000 -0.06824 -0.03375 + 2 0.00000 -0.00000 -0.00000 -0.00000 0.40157 0.19824 + 3 0.00000 -0.00000 -0.00000 -0.00000 0.08710 0.28506 + 4 -0.00000 0.00000 0.00000 0.00000 0.27371 0.13577 + 5 -0.03192 -0.02345 0.49722 0.54348 0.00000 -0.00000 + 6 0.00000 0.00000 0.00000 0.00000 -0.06824 0.03375 + 7 0.00000 -0.00000 -0.00000 -0.00000 0.40157 -0.19824 + 8 -0.00000 0.00000 0.00000 0.00000 -0.08710 0.28506 + 9 0.00000 -0.00000 -0.00000 -0.00000 -0.27371 0.13577 + 10 -0.03192 0.02345 0.49722 -0.54348 0.00000 -0.00000 + 11 -0.00000 -0.00000 -0.00000 -0.00000 -0.02814 0.00595 + 12 -0.00000 0.00000 0.00000 0.00000 0.17347 -0.02878 + 13 0.00000 0.00000 -0.00000 0.00000 0.30451 0.35544 + 14 -0.00000 0.00000 0.00000 0.00000 0.05353 0.01074 15 0.58269 0.24069 -0.16674 -0.46418 0.00000 0.00000 - 16 -0.00000 0.00000 -0.00000 -0.00000 -0.02814 -0.00595 - 17 0.00000 -0.00000 0.00000 0.00000 0.17347 0.02878 + 16 -0.00000 -0.00000 -0.00000 -0.00000 -0.02814 -0.00595 + 17 -0.00000 0.00000 0.00000 0.00000 0.17347 0.02878 18 -0.00000 -0.00000 0.00000 -0.00000 -0.30451 0.35544 - 19 -0.00000 0.00000 0.00000 0.00000 -0.05353 0.01074 - 20 0.58269 -0.24069 -0.16674 0.46418 -0.00000 -0.00000 - 21 -0.00000 -0.00000 0.00000 0.00000 -0.04649 -0.01586 - 22 0.00000 0.00000 -0.00000 0.00000 0.28090 0.09658 - 23 0.00000 0.00000 -0.00000 0.00000 0.20264 0.28597 - 24 -0.00000 -0.00000 -0.00000 -0.00000 -0.12426 0.00564 - 25 -0.55324 -0.23225 -0.19920 0.46688 -0.00000 -0.00000 - 26 0.00000 -0.00000 0.00000 0.00000 -0.04649 0.01586 - 27 -0.00000 0.00000 -0.00000 -0.00000 0.28090 -0.09658 - 28 -0.00000 -0.00000 0.00000 -0.00000 -0.20264 0.28597 - 29 -0.00000 -0.00000 0.00000 0.00000 0.12426 0.00564 - 30 -0.55324 0.23225 -0.19920 -0.46688 0.00000 0.00000 - 31 0.00000 -0.00000 -0.00000 -0.00000 -0.41378 -0.32189 + 19 0.00000 -0.00000 -0.00000 -0.00000 -0.05353 0.01074 + 20 0.58269 -0.24069 -0.16674 0.46418 -0.00000 0.00000 + 21 0.00000 -0.00000 -0.00000 -0.00000 -0.04649 -0.01586 + 22 -0.00000 -0.00000 0.00000 0.00000 0.28090 0.09658 + 23 0.00000 -0.00000 0.00000 0.00000 0.20264 0.28597 + 24 -0.00000 0.00000 -0.00000 -0.00000 -0.12426 0.00564 + 25 -0.55324 -0.23225 -0.19920 0.46688 -0.00000 0.00000 + 26 0.00000 -0.00000 -0.00000 -0.00000 -0.04649 0.01586 + 27 -0.00000 -0.00000 0.00000 0.00000 0.28090 -0.09658 + 28 -0.00000 0.00000 -0.00000 -0.00000 -0.20264 0.28597 + 29 0.00000 -0.00000 0.00000 0.00000 0.12426 0.00564 + 30 -0.55324 0.23225 -0.19920 -0.46688 -0.00000 0.00000 + 31 -0.00000 -0.00000 -0.00000 -0.00000 -0.41378 -0.32189 32 -0.00000 -0.00000 -0.00000 -0.00000 -0.41378 0.32189 - 33 -0.00000 0.00000 0.00000 -0.00000 -0.42379 -0.27080 - 34 -0.00000 0.00000 0.00000 -0.00000 -0.42379 0.27080 - 35 0.00000 -0.00000 0.00000 0.00000 0.05002 0.00767 - 36 -0.00000 0.00000 -0.00000 -0.00000 -0.28213 -0.04685 - 37 -0.00000 0.00000 -0.00000 -0.00000 -0.24477 0.34456 - 38 -0.00000 -0.00000 -0.00000 -0.00000 -0.33810 0.21676 - 39 0.00380 0.52217 -0.52913 0.28773 -0.00000 -0.00000 - 40 0.00000 -0.00000 0.00000 0.00000 0.05002 -0.00767 - 41 -0.00000 -0.00000 -0.00000 -0.00000 -0.28213 0.04685 - 42 0.00000 -0.00000 0.00000 0.00000 0.24477 0.34456 - 43 0.00000 0.00000 0.00000 0.00000 0.33810 0.21676 - 44 0.00380 -0.52217 -0.52913 -0.28773 0.00000 0.00000 - 45 -0.00000 -0.00000 -0.00000 -0.00000 -0.14441 0.43383 - 46 -0.00000 -0.00000 -0.00000 -0.00000 -0.14441 -0.43383 - 47 -0.00000 -0.00000 0.00000 -0.00000 -0.04092 0.00256 - 48 0.00000 0.00000 0.00000 0.00000 0.23693 -0.01934 - 49 -0.00000 -0.00000 -0.00000 -0.00000 -0.13832 0.30324 - 50 -0.00000 -0.00000 -0.00000 -0.00000 -0.14825 0.16644 - 51 0.01077 -0.52310 0.37969 -0.15615 0.00000 0.00000 - 52 0.00000 -0.00000 -0.00000 -0.00000 -0.04092 -0.00256 - 53 -0.00000 0.00000 0.00000 0.00000 0.23693 0.01934 - 54 0.00000 0.00000 0.00000 0.00000 0.13832 0.30324 - 55 0.00000 -0.00000 0.00000 0.00000 0.14825 0.16644 + 33 0.00000 0.00000 -0.00000 -0.00000 -0.42379 -0.27080 + 34 0.00000 0.00000 -0.00000 -0.00000 -0.42379 0.27080 + 35 -0.00000 -0.00000 0.00000 0.00000 0.05002 0.00767 + 36 0.00000 -0.00000 -0.00000 -0.00000 -0.28213 -0.04685 + 37 0.00000 0.00000 0.00000 0.00000 -0.24477 0.34456 + 38 -0.00000 0.00000 0.00000 0.00000 -0.33810 0.21676 + 39 0.00380 0.52217 -0.52913 0.28773 0.00000 -0.00000 + 40 -0.00000 -0.00000 0.00000 0.00000 0.05002 -0.00767 + 41 0.00000 -0.00000 -0.00000 -0.00000 -0.28213 0.04685 + 42 -0.00000 -0.00000 -0.00000 -0.00000 0.24477 0.34456 + 43 0.00000 -0.00000 -0.00000 -0.00000 0.33810 0.21676 + 44 0.00380 -0.52217 -0.52913 -0.28773 -0.00000 -0.00000 + 45 0.00000 0.00000 0.00000 0.00000 -0.14441 0.43383 + 46 0.00000 0.00000 0.00000 0.00000 -0.14441 -0.43383 + 47 0.00000 -0.00000 0.00000 0.00000 -0.04092 0.00256 + 48 -0.00000 0.00000 -0.00000 -0.00000 0.23693 -0.01935 + 49 0.00000 0.00000 0.00000 0.00000 -0.13832 0.30324 + 50 -0.00000 0.00000 0.00000 0.00000 -0.14825 0.16644 + 51 0.01077 -0.52310 0.37969 -0.15615 -0.00000 -0.00000 + 52 0.00000 -0.00000 0.00000 0.00000 -0.04092 -0.00256 + 53 -0.00000 0.00000 -0.00000 -0.00000 0.23693 0.01935 + 54 -0.00000 -0.00000 -0.00000 -0.00000 0.13832 0.30324 + 55 0.00000 -0.00000 -0.00000 -0.00000 0.14825 0.16644 56 0.01077 0.52310 0.37969 0.15615 -0.00000 -0.00000 - 57 -0.00000 -0.00000 0.00000 0.00000 0.10790 -0.32313 - 58 0.00000 0.00000 0.00000 0.00000 0.10790 0.32313 - 59 -0.00000 0.00000 -0.00000 -0.00000 -0.35854 0.28381 - 60 -0.00000 -0.00000 -0.00000 -0.00000 -0.35854 -0.28381 + 57 0.00000 -0.00000 -0.00000 -0.00000 0.10790 -0.32313 + 58 0.00000 -0.00000 -0.00000 -0.00000 0.10790 0.32313 + 59 -0.00000 0.00000 0.00000 0.00000 -0.35854 0.28381 + 60 -0.00000 0.00000 0.00000 0.00000 -0.35854 -0.28381 43 44 45 46 47 48 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.05834 0.02268 0.05278 -0.08118 -0.02216 -0.12893 - 2 0.33838 -0.13703 -0.31847 0.47622 0.13839 0.78231 - 3 -0.09823 -0.10366 0.25896 -0.11474 -0.11098 -0.01962 + 1 -0.05834 0.02268 0.05279 -0.08118 -0.02216 -0.12893 + 2 0.33838 -0.13703 -0.31848 0.47622 0.13840 0.78230 + 3 -0.09823 -0.10366 0.25896 -0.11473 -0.11098 -0.01962 4 0.46153 0.07568 -0.15525 0.01704 -0.24323 -0.03427 - 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 6 0.05834 0.02268 0.05278 0.08118 0.02216 -0.12893 - 7 -0.33838 -0.13703 -0.31847 -0.47622 -0.13839 0.78231 - 8 -0.09823 0.10366 -0.25896 -0.11474 -0.11098 0.01962 + 5 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 6 0.05834 0.02268 0.05279 0.08118 0.02216 -0.12893 + 7 -0.33838 -0.13703 -0.31848 -0.47622 -0.13840 0.78230 + 8 -0.09823 0.10366 -0.25896 -0.11473 -0.11098 0.01962 9 0.46153 -0.07568 0.15525 0.01704 -0.24323 0.03427 - 10 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 11 0.02504 -0.06444 0.07255 0.07415 0.05951 0.08004 - 12 -0.15222 0.39352 -0.44365 -0.44067 -0.36868 -0.49966 + 12 -0.15223 0.39353 -0.44365 -0.44066 -0.36868 -0.49965 13 -0.13061 0.00225 -0.04821 -0.10021 -0.31643 -0.01875 - 14 0.22995 0.12425 0.16486 0.02279 -0.31506 -0.28291 - 15 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 14 0.22995 0.12424 0.16486 0.02279 -0.31506 -0.28291 + 15 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 16 -0.02504 -0.06444 0.07255 -0.07415 -0.05951 0.08004 - 17 0.15222 0.39352 -0.44365 0.44067 0.36868 -0.49966 + 17 0.15223 0.39353 -0.44365 0.44066 0.36868 -0.49965 18 -0.13061 -0.00225 0.04821 -0.10021 -0.31643 0.01875 - 19 0.22995 -0.12425 -0.16486 0.02279 -0.31506 0.28291 - 20 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 19 0.22995 -0.12424 -0.16486 0.02279 -0.31506 0.28291 + 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 21 -0.00510 -0.01994 -0.10148 -0.10140 -0.00736 0.06591 - 22 0.02329 0.12752 0.62008 0.61316 0.03300 -0.41157 - 23 -0.26631 0.17399 -0.03870 0.00523 -0.20946 0.23962 + 22 0.02330 0.12751 0.62008 0.61316 0.03300 -0.41157 + 23 -0.26631 0.17399 -0.03870 0.00524 -0.20946 0.23962 24 0.32178 -0.20676 0.01016 -0.13338 -0.11033 0.24482 - 25 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 25 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 26 0.00510 -0.01994 -0.10148 0.10140 0.00736 0.06591 - 27 -0.02329 0.12752 0.62008 -0.61316 -0.03300 -0.41157 - 28 -0.26631 -0.17399 0.03870 0.00523 -0.20946 -0.23962 + 27 -0.02330 0.12751 0.62008 -0.61316 -0.03300 -0.41157 + 28 -0.26631 -0.17399 0.03870 0.00524 -0.20946 -0.23962 29 0.32178 0.20676 -0.01016 -0.13338 -0.11033 -0.24482 - 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 31 0.11582 -0.29164 0.22670 0.32244 0.60311 0.32408 - 32 -0.11582 -0.29164 0.22670 -0.32244 -0.60311 0.32408 - 33 0.40557 -0.29497 -0.22356 -0.35429 0.04475 0.19253 - 34 -0.40557 -0.29497 -0.22356 0.35429 -0.04475 0.19253 + 30 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 31 0.11582 -0.29164 0.22670 0.32243 0.60311 0.32408 + 32 -0.11582 -0.29164 0.22670 -0.32243 -0.60311 0.32408 + 33 0.40556 -0.29496 -0.22356 -0.35430 0.04475 0.19253 + 34 -0.40556 -0.29496 -0.22356 0.35430 -0.04475 0.19253 35 -0.09347 0.06358 -0.02475 -0.04071 0.07124 0.09223 - 36 0.54611 -0.38217 0.15743 0.25682 -0.44680 -0.55679 + 36 0.54612 -0.38217 0.15743 0.25682 -0.44680 -0.55679 37 0.05807 0.33837 -0.13928 -0.16191 0.22490 0.11605 - 38 0.33241 0.07223 0.23434 0.17329 -0.05088 -0.08498 - 39 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 38 0.33241 0.07222 0.23435 0.17328 -0.05088 -0.08498 + 39 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 40 0.09347 0.06358 -0.02475 0.04071 -0.07124 0.09223 - 41 -0.54611 -0.38217 0.15743 -0.25682 0.44680 -0.55679 + 41 -0.54612 -0.38217 0.15743 -0.25682 0.44680 -0.55679 42 0.05807 -0.33837 0.13928 -0.16191 0.22490 -0.11605 - 43 0.33241 -0.07223 -0.23434 0.17329 -0.05088 0.08498 - 44 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 43 0.33241 -0.07222 -0.23435 0.17328 -0.05088 0.08498 + 44 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 45 -0.15904 0.57961 -0.16935 -0.21129 0.43714 0.36453 46 0.15904 0.57961 -0.16935 0.21129 -0.43714 0.36453 - 47 0.05085 -0.01992 -0.10343 -0.08588 0.02025 -0.06749 - 48 -0.29723 0.11077 0.64735 0.53974 -0.13545 0.40989 - 49 0.10140 0.30436 0.23779 0.25100 0.05170 -0.00024 - 50 0.14226 0.23774 -0.07679 -0.13570 0.29542 -0.05131 - 51 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 52 -0.05085 -0.01992 -0.10343 0.08588 -0.02025 -0.06749 - 53 0.29723 0.11077 0.64735 -0.53974 0.13545 0.40989 - 54 0.10140 -0.30436 -0.23779 0.25100 0.05170 0.00024 - 55 0.14226 -0.23774 0.07679 -0.13570 0.29542 0.05131 - 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 57 -0.01079 -0.39144 -0.51331 -0.44782 -0.05131 -0.21179 - 58 0.01079 -0.39144 -0.51331 0.44782 0.05131 -0.21179 - 59 0.35170 0.25248 -0.32079 -0.31773 0.33770 -0.25941 - 60 -0.35170 0.25248 -0.32079 0.31773 -0.33770 -0.25941 + 47 0.05085 -0.01992 -0.10343 -0.08588 0.02024 -0.06749 + 48 -0.29723 0.11077 0.64735 0.53974 -0.13544 0.40989 + 49 0.10140 0.30436 0.23779 0.25100 0.05171 -0.00023 + 50 0.14225 0.23774 -0.07679 -0.13571 0.29542 -0.05131 + 51 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 52 -0.05085 -0.01992 -0.10343 0.08588 -0.02024 -0.06749 + 53 0.29723 0.11077 0.64735 -0.53974 0.13544 0.40989 + 54 0.10140 -0.30436 -0.23779 0.25100 0.05171 0.00023 + 55 0.14225 -0.23774 0.07679 -0.13571 0.29542 0.05131 + 56 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 57 -0.01079 -0.39144 -0.51332 -0.44781 -0.05131 -0.21180 + 58 0.01079 -0.39144 -0.51332 0.44781 0.05131 -0.21180 + 59 0.35169 0.25249 -0.32079 -0.31773 0.33770 -0.25942 + 60 -0.35169 0.25249 -0.32079 0.31773 -0.33770 -0.25942 49 50 51 52 53 54 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.06085 0.03721 0.06722 0.00317 -0.00053 0.05880 - 2 -0.36184 -0.23260 -0.44870 -0.01124 -0.00248 -0.40591 + 1 0.06085 0.03722 0.06722 0.00317 -0.00053 0.05880 + 2 -0.36183 -0.23260 -0.44870 -0.01124 -0.00248 -0.40591 3 -0.14570 -0.34787 0.12771 -0.56073 0.20695 -0.24957 - 4 0.11217 0.04893 0.60187 0.05941 0.04403 -0.00633 - 5 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 6 -0.06085 0.03721 0.06722 -0.00317 -0.00053 -0.05880 - 7 0.36184 -0.23260 -0.44870 0.01124 -0.00248 0.40591 + 4 0.11217 0.04892 0.60187 0.05942 0.04403 -0.00632 + 5 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 6 -0.06085 0.03722 0.06722 -0.00317 -0.00053 -0.05880 + 7 0.36183 -0.23260 -0.44870 0.01124 -0.00248 0.40591 8 -0.14570 0.34787 -0.12771 -0.56073 -0.20695 -0.24957 - 9 0.11217 -0.04893 -0.60187 0.05941 -0.04403 -0.00633 - 10 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 9 0.11217 -0.04892 -0.60187 0.05942 -0.04403 -0.00632 + 10 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 11 -0.05838 -0.11175 -0.01185 -0.09661 0.00390 0.03680 - 12 0.35368 0.70622 0.07742 0.64780 -0.03140 -0.25015 - 13 -0.14824 -0.09324 -0.45250 0.02122 0.53712 -0.21473 - 14 0.12936 -0.11737 0.15653 0.10781 0.19812 0.72303 - 15 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 12 0.35368 0.70622 0.07742 0.64780 -0.03141 -0.25015 + 13 -0.14824 -0.09323 -0.45250 0.02122 0.53712 -0.21473 + 14 0.12936 -0.11736 0.15653 0.10781 0.19812 0.72303 + 15 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 16 0.05838 -0.11175 -0.01185 0.09661 0.00390 -0.03680 - 17 -0.35368 0.70622 0.07742 -0.64780 -0.03140 0.25015 - 18 -0.14824 0.09324 0.45250 0.02122 -0.53712 -0.21473 - 19 0.12936 0.11737 -0.15653 0.10781 -0.19812 0.72303 - 20 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 17 -0.35368 0.70622 0.07742 -0.64780 -0.03141 0.25015 + 18 -0.14824 0.09323 0.45250 0.02122 -0.53712 -0.21473 + 19 0.12936 0.11736 -0.15653 0.10781 -0.19812 0.72303 + 20 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 21 0.06637 0.09765 -0.04908 -0.03554 -0.00213 -0.08728 - 22 -0.40717 -0.61940 0.31762 0.24771 0.02086 0.59992 - 23 -0.17253 -0.13923 -0.32414 -0.19436 -0.52214 0.33345 - 24 0.14291 -0.18027 0.02623 -0.47822 0.40019 0.39423 - 25 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 22 -0.40716 -0.61940 0.31761 0.24771 0.02086 0.59992 + 23 -0.17253 -0.13924 -0.32414 -0.19436 -0.52214 0.33345 + 24 0.14290 -0.18027 0.02622 -0.47822 0.40019 0.39422 + 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 26 -0.06637 0.09765 -0.04908 0.03554 -0.00213 0.08728 - 27 0.40717 -0.61940 0.31762 -0.24771 0.02086 -0.59992 - 28 -0.17253 0.13923 0.32414 -0.19436 0.52214 0.33345 - 29 0.14291 0.18027 -0.02623 -0.47822 -0.40019 0.39423 - 30 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 27 0.40716 -0.61940 0.31761 -0.24771 0.02086 -0.59992 + 28 -0.17253 0.13924 0.32414 -0.19436 0.52214 0.33345 + 29 0.14290 0.18027 -0.02622 -0.47822 -0.40019 0.39422 + 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 31 -0.07743 -0.21967 0.25325 -0.30688 -0.44831 0.07820 32 0.07743 -0.21967 0.25325 0.30688 -0.44831 -0.07820 - 33 0.47711 0.33385 0.05619 -0.21014 0.51910 -0.26110 - 34 -0.47711 0.33385 0.05619 0.21014 0.51910 0.26110 + 33 0.47711 0.33385 0.05619 -0.21014 0.51910 -0.26111 + 34 -0.47711 0.33385 0.05619 0.21014 0.51910 0.26111 35 0.07086 -0.03056 0.07526 0.02689 0.05143 0.06052 - 36 -0.42900 0.21351 -0.49167 -0.19440 -0.35148 -0.41541 - 37 0.06306 -0.03074 0.15321 -0.26589 -0.12018 0.06499 - 38 0.11911 0.07453 0.00857 0.04267 0.15464 0.06260 - 39 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 36 -0.42899 0.21352 -0.49167 -0.19439 -0.35148 -0.41541 + 37 0.06306 -0.03075 0.15321 -0.26590 -0.12018 0.06499 + 38 0.11911 0.07453 0.00857 0.04267 0.15465 0.06260 + 39 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 40 -0.07086 -0.03056 0.07526 -0.02689 0.05143 -0.06052 - 41 0.42900 0.21351 -0.49167 0.19440 -0.35148 0.41541 - 42 0.06306 0.03074 -0.15321 -0.26589 0.12018 0.06499 - 43 0.11911 -0.07453 -0.00857 0.04267 -0.15464 0.06260 - 44 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 45 0.30082 -0.07193 0.30774 -0.14862 0.09225 0.23756 - 46 -0.30082 -0.07193 0.30774 0.14862 0.09225 -0.23756 + 41 0.42899 0.21352 -0.49167 0.19439 -0.35148 0.41541 + 42 0.06306 0.03075 -0.15321 -0.26590 0.12018 0.06499 + 43 0.11911 -0.07453 -0.00857 0.04267 -0.15465 0.06260 + 44 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 45 0.30081 -0.07193 0.30774 -0.14863 0.09225 0.23757 + 46 -0.30081 -0.07193 0.30774 0.14863 0.09225 -0.23757 47 -0.11287 -0.06460 -0.01973 -0.00897 -0.04267 -0.00685 48 0.70672 0.41504 0.12260 0.06945 0.29014 0.04268 - 49 0.14598 0.13302 -0.34203 0.02326 -0.08284 -0.26189 - 50 -0.02460 -0.38262 -0.12479 0.48344 0.26719 0.10776 - 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 49 0.14599 0.13302 -0.34203 0.02326 -0.08284 -0.26189 + 50 -0.02460 -0.38262 -0.12479 0.48344 0.26719 0.10775 + 51 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 52 0.11287 -0.06460 -0.01973 0.00897 -0.04267 0.00685 53 -0.70672 0.41504 0.12260 -0.06945 0.29014 -0.04268 - 54 0.14598 -0.13302 0.34203 0.02326 0.08284 -0.26189 - 55 -0.02460 0.38262 0.12479 0.48344 -0.26719 0.10776 - 56 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 57 -0.52556 -0.29507 0.23009 -0.10029 -0.14004 0.20420 - 58 0.52556 -0.29507 0.23009 0.10029 -0.14004 -0.20420 - 59 -0.32347 -0.47519 -0.24776 0.35600 0.06441 -0.00414 - 60 0.32347 -0.47519 -0.24776 -0.35600 0.06441 0.00414 + 54 0.14599 -0.13302 0.34203 0.02326 0.08284 -0.26189 + 55 -0.02460 0.38262 0.12479 0.48344 -0.26719 0.10775 + 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 57 -0.52556 -0.29507 0.23009 -0.10029 -0.14003 0.20420 + 58 0.52556 -0.29507 0.23009 0.10029 -0.14003 -0.20420 + 59 -0.32347 -0.47518 -0.24776 0.35601 0.06441 -0.00414 + 60 0.32347 -0.47518 -0.24776 -0.35601 0.06441 0.00414 55 56 57 58 59 60 ----------- ----------- ----------- ----------- ----------- ----------- 1 -0.08989 0.01510 0.01661 0.02005 -0.00499 0.04414 2 0.60853 -0.09062 -0.10600 -0.14140 0.03340 -0.32847 3 -0.21224 -0.11872 0.13200 -0.45433 0.70243 0.16278 - 4 0.05256 -0.36458 -0.38167 0.13629 -0.05065 0.65769 - 5 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 4 0.05257 -0.36457 -0.38167 0.13629 -0.05065 0.65769 + 5 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 6 0.08989 0.01510 0.01661 -0.02005 -0.00499 -0.04414 7 -0.60853 -0.09062 -0.10600 0.14140 0.03340 0.32847 8 -0.21224 0.11872 -0.13200 -0.45433 -0.70243 0.16278 - 9 0.05256 0.36458 0.38167 0.13629 0.05065 0.65769 - 10 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 11 -0.00731 0.02725 -0.01909 -0.04609 0.00745 -0.05196 - 12 0.06373 -0.19115 0.13760 0.33349 -0.05183 0.37682 + 9 0.05257 0.36457 0.38167 0.13629 0.05065 0.65769 + 10 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 11 -0.00731 0.02725 -0.01909 -0.04610 0.00745 -0.05196 + 12 0.06374 -0.19115 0.13760 0.33350 -0.05183 0.37682 13 0.25124 0.25479 0.11127 -0.19457 0.23943 -0.56833 - 14 -0.08785 0.38348 -0.39209 0.12836 -0.53406 -0.24121 - 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 16 0.00731 0.02725 -0.01909 0.04609 0.00745 0.05196 - 17 -0.06373 -0.19115 0.13760 -0.33349 -0.05183 -0.37682 + 14 -0.08785 0.38348 -0.39209 0.12835 -0.53406 -0.24121 + 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 16 0.00731 0.02725 -0.01909 0.04610 0.00745 0.05196 + 17 -0.06374 -0.19115 0.13760 -0.33350 -0.05183 -0.37682 18 0.25124 -0.25479 -0.11127 -0.19457 -0.23943 -0.56833 - 19 -0.08785 -0.38348 0.39209 0.12836 0.53406 -0.24121 - 20 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 19 -0.08785 -0.38348 0.39209 0.12835 0.53406 -0.24121 + 20 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 21 -0.03521 -0.03182 0.01657 -0.02074 -0.00758 0.05675 22 0.23245 0.21889 -0.12012 0.15486 0.05144 -0.41380 - 23 -0.36599 0.17276 0.02185 -0.04663 -0.43599 0.49652 - 24 -0.18562 0.30524 -0.44923 -0.21409 -0.41104 -0.39589 - 25 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 23 -0.36600 0.17276 0.02185 -0.04663 -0.43599 0.49652 + 24 -0.18562 0.30524 -0.44923 -0.21409 -0.41104 -0.39590 + 25 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 26 0.03521 -0.03182 0.01657 0.02074 -0.00758 -0.05675 27 -0.23245 0.21889 -0.12012 -0.15486 0.05144 0.41380 - 28 -0.36599 -0.17276 -0.02185 -0.04663 0.43599 0.49652 - 29 -0.18562 -0.30524 0.44923 -0.21409 0.41104 -0.39589 - 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 31 -0.14093 -0.20985 -0.04154 -0.02084 -0.00735 0.26969 - 32 0.14093 -0.20985 -0.04154 0.02084 -0.00735 -0.26969 - 33 -0.00222 -0.05708 -0.19612 -0.10449 0.03922 -0.27789 - 34 0.00222 -0.05708 -0.19612 0.10449 0.03922 0.27789 + 28 -0.36600 -0.17276 -0.02185 -0.04663 0.43599 0.49652 + 29 -0.18562 -0.30524 0.44923 -0.21409 0.41104 -0.39590 + 30 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 31 -0.14094 -0.20985 -0.04154 -0.02084 -0.00735 0.26969 + 32 0.14094 -0.20985 -0.04154 0.02084 -0.00735 -0.26969 + 33 -0.00222 -0.05707 -0.19612 -0.10449 0.03922 -0.27789 + 34 0.00222 -0.05707 -0.19612 0.10449 0.03922 0.27789 35 0.02328 -0.04109 0.04186 -0.06153 -0.02738 -0.01273 - 36 -0.17902 0.28523 -0.32807 0.46654 0.21757 0.07838 + 36 -0.17901 0.28523 -0.32807 0.46654 0.21757 0.07838 37 0.31030 0.54927 -0.11106 0.60802 0.42984 0.02170 38 0.48066 0.17254 0.66309 -0.46487 -0.31930 0.36053 - 39 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 39 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 40 -0.02328 -0.04109 0.04186 0.06153 -0.02738 0.01273 - 41 0.17902 0.28523 -0.32807 -0.46654 0.21757 -0.07838 + 41 0.17901 0.28523 -0.32807 -0.46654 0.21757 -0.07838 42 0.31030 -0.54927 0.11106 0.60802 -0.42984 0.02170 43 0.48066 -0.17254 -0.66309 -0.46487 0.31930 0.36053 - 44 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 45 0.35066 0.31504 0.14736 0.17100 0.15757 0.04812 46 -0.35066 0.31504 0.14736 -0.17100 0.15757 -0.04812 47 -0.01851 0.03133 -0.04902 0.07130 0.04167 -0.00960 48 0.13135 -0.22709 0.36667 -0.53802 -0.32571 0.08189 - 49 -0.52889 -0.17006 -0.58041 0.39452 0.25502 -0.21909 - 50 -0.23694 -0.53430 0.19950 -0.54048 -0.31984 0.00187 - 51 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 49 -0.52889 -0.17005 -0.58041 0.39453 0.25502 -0.21909 + 50 -0.23694 -0.53430 0.19950 -0.54048 -0.31984 0.00186 + 51 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 52 0.01851 0.03133 -0.04902 -0.07130 0.04167 0.00960 53 -0.13135 -0.22709 0.36667 0.53802 -0.32571 -0.08189 - 54 -0.52889 0.17006 0.58041 0.39452 -0.25502 -0.21909 - 55 -0.23694 0.53430 -0.19950 -0.54048 0.31984 0.00187 - 56 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 54 -0.52889 0.17005 0.58041 0.39453 -0.25502 -0.21909 + 55 -0.23694 0.53430 -0.19950 -0.54048 0.31984 0.00186 + 56 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 57 0.36329 0.28938 0.26297 -0.01006 -0.03248 0.13722 58 -0.36329 0.28938 0.26297 0.01006 -0.03248 -0.13722 59 -0.33886 -0.33075 -0.11581 -0.09330 -0.04790 -0.06477 @@ -3048,14 +3075,11 @@ 1 0 0 1 0.000000 0.000000 0.000000 0.000000 2 2 0 0 -37.347169 -141.071520 -141.071520 244.795872 - 2 1 1 0 0.066522 2.848775 2.848775 -5.631027 - 2 1 0 1 -0.000000 -0.000000 -0.000000 0.000000 - 2 0 2 0 -37.714763 -767.339031 -767.339031 1496.963300 + 2 1 1 0 0.066524 2.848776 2.848776 -5.631027 + 2 1 0 1 0.000000 0.000000 0.000000 0.000000 + 2 0 2 0 -37.714760 -767.339030 -767.339030 1496.963300 2 0 1 1 0.000000 0.000000 0.000000 0.000000 - 2 0 0 2 -43.587345 -21.793672 -21.793672 0.000000 - - - Parallel integral file used 8 records with 0 large values + 2 0 0 2 -43.587344 -21.793672 -21.793672 0.000000 ------------- @@ -3068,14 +3092,14 @@ Dipole moment 0.0000000000 A.U. DMX -0.0000000000 DMXEFC 0.0000000000 DMY 0.0000000000 DMYEFC 0.0000000000 - DMZ 0.0000000000 DMZEFC 0.0000000000 + DMZ -0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 A.U. Total dipole 0.0000000000 A.U. Dipole moment 0.0000000000 Debye(s) DMX -0.0000000000 DMXEFC 0.0000000000 DMY 0.0000000000 DMYEFC 0.0000000000 - DMZ 0.0000000000 DMZEFC 0.0000000000 + DMZ -0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 DEBYE(S) Total dipole 0.0000000000 DEBYE(S) @@ -3095,45 +3119,45 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -37.3471685133 0.0000000000 -37.3471685133 - YY -37.7147628233 0.0000000000 -37.7147628233 - ZZ -43.5873445806 0.0000000000 -43.5873445806 - XY 0.0665220953 0.0000000000 0.0665220953 - XZ -0.0000000000 0.0000000000 -0.0000000000 - YZ 0.0000000000 0.0000000000 0.0000000000 + XX -37.3471685931 0.0000000000 -37.3471685931 + YY -37.7147598234 0.0000000000 -37.7147598234 + ZZ -43.5873441825 0.0000000000 -43.5873441825 + XY 0.0665237349 0.0000000000 0.0665237349 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ -0.0000000000 0.0000000000 -0.0000000000 Second moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -50.2286177524 0.0000000000 -50.2286177524 - YY -50.7229993834 0.0000000000 -50.7229993834 - ZZ -58.6210991872 0.0000000000 -58.6210991872 - XY 0.0894662977 0.0000000000 0.0894662977 - XZ -0.0000000000 0.0000000000 -0.0000000000 - YZ 0.0000000000 0.0000000000 0.0000000000 + XX -50.2286178597 0.0000000000 -50.2286178597 + YY -50.7229953489 0.0000000000 -50.7229953489 + ZZ -58.6210986518 0.0000000000 -58.6210986518 + XY 0.0894685028 0.0000000000 0.0894685028 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ -0.0000000000 0.0000000000 -0.0000000000 Quadrupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 3.3038851887 0.0000000000 3.3038851887 - YY 2.7524937236 0.0000000000 2.7524937236 - ZZ -6.0563789123 0.0000000000 -6.0563789123 - XY 0.0997831429 0.0000000000 0.0997831429 - XZ -0.0000000000 0.0000000000 -0.0000000000 - YZ 0.0000000000 0.0000000000 0.0000000000 + XX 3.3038834099 0.0000000000 3.3038834099 + YY 2.7524965643 0.0000000000 2.7524965643 + ZZ -6.0563799742 0.0000000000 -6.0563799742 + XY 0.0997856024 0.0000000000 0.0997856024 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ -0.0000000000 0.0000000000 -0.0000000000 Quadrupole moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 4.4434315330 0.0000000000 4.4434315330 - YY 3.7018590864 0.0000000000 3.7018590864 - ZZ -8.1452906193 0.0000000000 -8.1452906193 - XY 0.1341994465 0.0000000000 0.1341994465 - XZ -0.0000000000 0.0000000000 -0.0000000000 - YZ 0.0000000000 0.0000000000 0.0000000000 + XX 4.4434291406 0.0000000000 4.4434291406 + YY 3.7018629068 0.0000000000 3.7018629068 + ZZ -8.1452920475 0.0000000000 -8.1452920475 + XY 0.1342027543 0.0000000000 0.1342027543 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ -0.0000000000 0.0000000000 -0.0000000000 1 a.u. = 1.344911 Buckinghams = 1.344911 10**(-26) esu*cm**2 @@ -3149,14 +3173,14 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XXX -0.0000000000 0.0000000000 -0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 - YYX 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 YYZ -0.0000000000 0.0000000000 -0.0000000000 - ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY 0.0000000000 0.0000000000 0.0000000000 + ZZX -0.0000000000 0.0000000000 -0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 XYZ 0.0000000000 0.0000000000 0.0000000000 Third moments in 10**(-34) esu*cm**3 @@ -3164,44 +3188,44 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XXX -0.0000000000 0.0000000000 -0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 - YYX 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 YYZ -0.0000000000 0.0000000000 -0.0000000000 - ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY 0.0000000000 0.0000000000 0.0000000000 + ZZX -0.0000000000 0.0000000000 -0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 XYZ 0.0000000000 0.0000000000 0.0000000000 Octupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX -0.0000000000 0.0000000000 -0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 + XXX 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 XXZ 0.0000000000 0.0000000000 0.0000000000 - YYX 0.0000000000 0.0000000000 0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 YYZ -0.0000000000 0.0000000000 -0.0000000000 ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY 0.0000000000 0.0000000000 0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 XYZ 0.0000000000 0.0000000000 0.0000000000 Octupole moments in 10**(-34) esu*cm**3 Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX -0.0000000000 0.0000000000 -0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 + XXX 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 XXZ 0.0000000000 0.0000000000 0.0000000000 - YYX 0.0000000000 0.0000000000 0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 YYZ -0.0000000000 0.0000000000 -0.0000000000 ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY 0.0000000000 0.0000000000 0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 XYZ 0.0000000000 0.0000000000 0.0000000000 1 a.u. = 0.711688 10**(-34) esu*cm**3 @@ -3248,8 +3272,8 @@ 8 H 1.0 0.92201 9 H 1.0 0.92068 10 H 1.0 0.92068 - 11 C 6.0 6.07633 - 12 C 6.0 6.07633 + 11 C 6.0 6.07634 + 12 C 6.0 6.07634 13 H 1.0 0.92331 14 H 1.0 0.92331 15 C 6.0 6.15483 @@ -3348,28 +3372,28 @@ Free electrons Valency Number of Sum of + Bond indices - Bond indices Valency Free electrons Bond indices =Mulliken charge = Net spin population - 1 C 3.97306 2.03135 3.97306 6.00441 0.00000 + 1 C 3.97306 2.03135 3.97306 6.00441 -0.00000 2 C 3.97306 2.03135 3.97306 6.00441 -0.00000 3 C 3.96923 2.10747 3.96923 6.07670 -0.00000 4 C 3.96923 2.10747 3.96923 6.07670 -0.00000 5 C 3.97007 2.10706 3.97007 6.07713 -0.00000 6 C 3.97007 2.10706 3.97007 6.07713 -0.00000 - 7 H 0.99392 -0.07191 0.99392 0.92201 -0.00000 + 7 H 0.99392 -0.07191 0.99392 0.92201 0.00000 8 H 0.99392 -0.07191 0.99392 0.92201 -0.00000 9 H 0.99371 -0.07303 0.99371 0.92068 -0.00000 10 H 0.99371 -0.07303 0.99371 0.92068 -0.00000 - 11 C 3.96810 2.10823 3.96810 6.07633 0.00000 - 12 C 3.96810 2.10823 3.96810 6.07633 0.00000 + 11 C 3.96810 2.10823 3.96810 6.07634 -0.00000 + 12 C 3.96810 2.10823 3.96810 6.07634 -0.00000 13 H 0.99412 -0.07081 0.99412 0.92331 -0.00000 - 14 H 0.99412 -0.07081 0.99412 0.92331 0.00000 + 14 H 0.99412 -0.07081 0.99412 0.92331 -0.00000 15 C 3.96478 2.19006 3.96478 6.15483 -0.00000 16 C 3.96478 2.19006 3.96478 6.15483 -0.00000 17 H 0.99421 -0.07032 0.99421 0.92389 -0.00000 - 18 H 0.99421 -0.07032 0.99421 0.92389 -0.00000 - 19 H 0.99371 -0.07301 0.99371 0.92070 0.00000 - 20 H 0.99371 -0.07301 0.99371 0.92070 -0.00000 + 18 H 0.99421 -0.07032 0.99421 0.92389 0.00000 + 19 H 0.99371 -0.07301 0.99371 0.92070 -0.00000 + 20 H 0.99371 -0.07301 0.99371 0.92070 0.00000 - Task times cpu: 48.4s wall: 49.2s + Task times cpu: 12.1s wall: 12.1s Summary of allocated global arrays ----------------------------------- No active global arrays @@ -3380,24 +3404,30 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 668 668 2.18e+05 4760 1.54e+05 420 0 8364 -number of processes/call 1.00e+00 1.00e+00 1.00e+00 1.00e+00 0.00e+00 -bytes total: 3.09e+07 6.60e+06 1.62e+07 3.09e+04 0.00e+00 6.69e+04 +calls: 691 691 2.22e+05 4999 1.73e+05 420 0 1.18e+04 +number of processes/call 9.73e+12 4.44e+13 2.92e+13 0.00e+00 0.00e+00 +bytes total: 3.11e+07 7.08e+06 1.76e+07 8.00e+00 0.00e+00 9.40e+04 bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 Max memory consumed for GA by this process: 1123200 bytes MA_summarize_allocated_blocks: starting scan ... -MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +heap block 'gridpts', handle 96, address 0x559ba62c16d8: + type of elements: double precision + number of elements: 17448000 + address of client space: 0x559ba62c1740 + index for client space: 8972081 + total number of bytes: 139584112 +MA_summarize_allocated_blocks: scan completed: 1 heap block, 0 stack blocks MA usage statistics: allocation statistics: heap stack ---- ----- - current number of blocks 0 0 - maximum number of blocks 24 54 - current total bytes 0 0 - maximum total bytes 61308712 22516376 - maximum total K-bytes 61309 22517 - maximum total M-bytes 62 23 + current number of blocks 1 0 + maximum number of blocks 22 57 + current total bytes 139584112 0 + maximum total bytes 190930952 22516408 + maximum total K-bytes 190931 22517 + maximum total M-bytes 191 23 NWChem Input Module @@ -3412,32 +3442,52 @@ MA usage statistics: Please cite the following reference when publishing results obtained with NWChem: - M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, - T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, - E. Apra, T.L. Windus, W.A. de Jong - "NWChem: a comprehensive and scalable open-source - solution for large scale molecular simulations" - Comput. Phys. Commun. 181, 1477 (2010) - doi:10.1016/j.cpc.2010.04.018 + E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, + V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, + J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, + J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, + C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, + K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, + J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, + V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, + B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, + S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, + A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, + D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, + J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, + A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, + R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, + D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, + V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, + Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, + D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, + A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, + and R. J. Harrison + "NWChem: Past, present, and future + J. Chem. Phys. 152, 184102 (2020) + doi:10.1063/5.0004997 AUTHORS ------- - E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, - J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, - S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, - F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, + T. P. Straatsma, H. J. J. van Dam, D. Wang, T. L. Windus, N. P. Bauman, + A. Panyala, J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, + K. Lopata, S. A. Fischer, S. Krishnamoorthy, M. Jacquelin, W. Ma, M. Klemm, + O. Villa, Y. Chen, V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, + Eric Hermes, L. Jensen, J. E. Moore, J. C. Becca, V. Konjkov, + D. Mejia-Rodriguez, T. Risthaus, M. Malagoli, A. Marenich, A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, - P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, - D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, - A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, - A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, - H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, - K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, - H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, - A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, - R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, - K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, - A. T. Wong, Z. Zhang. - - Total times cpu: 48.5s wall: 51.1s + P.-D. Fan, A. Fonari, M. J. Williamson, R. J. Harrison, J. R. Rehr, + M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, V. Tipparaju, + M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, M. Swart, Q. Wu, + T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, + G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, + K. Tsemekhman, K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, + T. Clark, D. Clerc, H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, + E. Glendening, M. Gutowski, A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, + R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, X. Long, B. Meng, + T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, + M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. + + Total times cpu: 12.1s wall: 12.1s diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.out b/data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.out index c0f71933e..f544a306c 100644 --- a/data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.out +++ b/data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.out @@ -1,17 +1,17 @@ - argument 1 = dvb_sp_ks_overlaps.nw + argument 1 = dvb_sp_ks_overlaps.in - Northwest Computational Chemistry Package (NWChem) 6.5 - ------------------------------------------------------ + Northwest Computational Chemistry Package (NWChem) 7.0.2 + -------------------------------------------------------- Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - Copyright (c) 1994-2014 + Copyright (c) 1994-2020 Pacific Northwest National Laboratory Battelle Memorial Institute @@ -36,16 +36,17 @@ Job information --------------- - hostname = boman - program = /usr/lib64/mpich/bin/nwchem_mpich - date = Thu Jan 22 19:57:31 2015 - - compiled = Sat_Dec_06_13:02:58_2014 - source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 - nwchem branch = 6.5 - nwchem revision = 26243 - ga revision = 10506 - input = dvb_sp_ks_overlaps.nw + hostname = osmium + program = nwchem + date = Sat Jun 4 13:33:32 2022 + + compiled = Fri_Jul_02_16:33:00_2021 + source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src + nwchem branch = 7.0.2 + nwchem revision = b9985dfa + ga revision = 5.7.2 + use scalapack = T + input = dvb_sp_ks_overlaps.in prefix = dvb. data base = ./dvb.db status = startup @@ -57,8 +58,8 @@ Memory information ------------------ - heap = 13107194 doubles = 100.0 Mbytes - stack = 13107199 doubles = 100.0 Mbytes + heap = 13107198 doubles = 100.0 Mbytes + stack = 13107195 doubles = 100.0 Mbytes global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) total = 52428793 doubles = 400.0 Mbytes verify = yes @@ -89,6 +90,8 @@ ------ auto-z ------ + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 Geometry "geometry" -> "" @@ -345,7 +348,7 @@ library name resolved from: environment - library file name is: + library file name is: @@ -429,53 +432,93 @@ ==================================== Begin overlap 1-e integrals ==================================== +1eov 1 C s 1 C s 1.00000000 +1eov 2 C s 1 C s 0.24836239 1eov 7 C s 1 C s 0.00030276 1eov 8 C p 1 C s 0.00013634 1eov 9 C p 1 C s 0.00081417 +1eov 11 C s 1 C s 0.00000058 +1eov 12 C s 1 C s 0.03557117 +1eov 13 C p 1 C s -0.04481702 +1eov 14 C p 1 C s 0.03839337 1eov 17 C s 1 C s 0.00158642 1eov 18 C p 1 C s 0.00234748 1eov 19 C p 1 C s 0.00287577 +1eov 22 C s 1 C s 0.00156648 +1eov 23 C p 1 C s -0.00126819 +1eov 24 C p 1 C s 0.00344449 1eov 26 C s 1 C s 0.00000058 1eov 27 C s 1 C s 0.03557692 1eov 28 C p 1 C s 0.05494002 1eov 29 C p 1 C s 0.02157125 +1eov 31 H s 1 C s 0.00509264 1eov 32 H s 1 C s 0.00007985 +1eov 33 H s 1 C s 0.00007948 1eov 34 H s 1 C s 0.00508021 +1eov 36 C s 1 C s 0.00000008 +1eov 37 C p 1 C s 0.00000006 +1eov 38 C p 1 C s 0.00000035 1eov 40 C s 1 C s 0.00000014 1eov 41 C s 1 C s 0.02955008 1eov 42 C p 1 C s -0.00979645 1eov 43 C p 1 C s -0.04830601 +1eov 45 H s 1 C s 0.00000007 1eov 46 H s 1 C s 0.00486942 1eov 53 C s 1 C s 0.00115883 1eov 54 C p 1 C s 0.00066296 1eov 55 C p 1 C s -0.00272201 1eov 58 H s 1 C s 0.00074066 1eov 60 H s 1 C s 0.00005752 +1eov 1 C s 2 C s 0.24836239 +1eov 2 C s 2 C s 1.00000000 1eov 6 C s 2 C s 0.00030276 1eov 7 C s 2 C s 0.02186954 1eov 8 C p 2 C s 0.00590170 1eov 9 C p 2 C s 0.03524407 +1eov 11 C s 2 C s 0.03557117 +1eov 12 C s 2 C s 0.35371041 +1eov 13 C p 2 C s -0.28849089 +1eov 14 C p 2 C s 0.24714128 1eov 16 C s 2 C s 0.00158642 1eov 17 C s 2 C s 0.05618847 1eov 18 C p 2 C s 0.05279983 1eov 19 C p 2 C s 0.06468219 +1eov 21 C s 2 C s 0.00156648 +1eov 22 C s 2 C s 0.05577904 +1eov 23 C p 2 C s -0.02866212 +1eov 24 C p 2 C s 0.07784841 1eov 26 C s 2 C s 0.03557692 1eov 27 C s 2 C s 0.35374328 1eov 28 C p 2 C s 0.35361990 1eov 29 C p 2 C s 0.13884273 +1eov 31 H s 2 C s 0.09300775 1eov 32 H s 2 C s 0.00590154 +1eov 33 H s 2 C s 0.00588416 1eov 34 H s 2 C s 0.09284483 +1eov 35 C s 2 C s 0.00000008 +1eov 36 C s 2 C s 0.00025963 +1eov 37 C p 2 C s 0.00010165 +1eov 38 C p 2 C s 0.00056623 1eov 40 C s 2 C s 0.02955008 1eov 41 C s 2 C s 0.31760627 1eov 42 C p 2 C s -0.06995906 1eov 43 C p 2 C s -0.34496609 +1eov 45 H s 2 C s 0.00008155 1eov 46 H s 2 C s 0.09006704 +1eov 48 C s 2 C s 0.00000715 +1eov 49 C p 2 C s -0.00000046 +1eov 50 C p 2 C s 0.00001894 1eov 52 C s 2 C s 0.00115883 1eov 53 C s 2 C s 0.04688356 1eov 54 C p 2 C s 0.01682232 1eov 55 C p 2 C s -0.06907006 +1eov 57 H s 2 C s 0.00002394 1eov 58 H s 2 C s 0.02467969 +1eov 59 H s 2 C s 0.00000031 1eov 60 H s 2 C s 0.00480795 +1eov 3 C p 3 C p 1.00000000 +1eov 4 C p 4 C p 1.00000000 +1eov 5 C p 5 C p 1.00000000 1eov 6 C s 3 C p -0.00013634 1eov 6 C s 4 C p -0.00081417 1eov 7 C s 3 C p -0.00590170 @@ -485,6 +528,15 @@ 1eov 8 C p 4 C p -0.01021452 1eov 9 C p 4 C p -0.05268175 1eov 10 C p 5 C p 0.00831781 +1eov 11 C s 3 C p 0.04481702 +1eov 11 C s 4 C p -0.03839337 +1eov 12 C s 3 C p 0.28849089 +1eov 12 C s 4 C p -0.24714128 +1eov 13 C p 3 C p -0.10189816 +1eov 14 C p 3 C p 0.26261039 +1eov 13 C p 4 C p 0.26261039 +1eov 14 C p 4 C p -0.02032026 +1eov 15 C p 5 C p 0.20464999 1eov 16 C s 3 C p -0.00234748 1eov 16 C s 4 C p -0.00287577 1eov 17 C s 3 C p -0.05279983 @@ -494,6 +546,15 @@ 1eov 18 C p 4 C p -0.06690995 1eov 19 C p 4 C p -0.05866033 1eov 20 C p 5 C p 0.02330740 +1eov 21 C s 3 C p 0.00126819 +1eov 21 C s 4 C p -0.00344449 +1eov 22 C s 3 C p 0.02866212 +1eov 22 C s 4 C p -0.07784841 +1eov 23 C p 3 C p 0.00691013 +1eov 24 C p 3 C p 0.04402519 +1eov 23 C p 4 C p 0.04402519 +1eov 24 C p 4 C p -0.09645639 +1eov 25 C p 5 C p 0.02311926 1eov 26 C s 3 C p -0.05494002 1eov 26 C s 4 C p -0.02157125 1eov 27 C s 3 C p -0.35361990 @@ -503,10 +564,23 @@ 1eov 28 C p 4 C p -0.18082655 1eov 29 C p 4 C p 0.13367656 1eov 30 C p 5 C p 0.20467497 +1eov 31 H s 3 C p 0.11684634 +1eov 31 H s 4 C p -0.03019589 1eov 32 H s 3 C p -0.00737838 1eov 32 H s 4 C p -0.00651680 +1eov 33 H s 3 C p 0.00484048 +1eov 33 H s 4 C p -0.00854096 1eov 34 H s 3 C p -0.12012197 1eov 34 H s 4 C p 0.00954436 +1eov 35 C s 3 C p -0.00000006 +1eov 35 C s 4 C p -0.00000035 +1eov 36 C s 3 C p -0.00010165 +1eov 36 C s 4 C p -0.00056623 +1eov 37 C p 3 C p 0.00004318 +1eov 38 C p 3 C p -0.00022448 +1eov 37 C p 4 C p -0.00022448 +1eov 38 C p 4 C p -0.00116687 +1eov 39 C p 5 C p 0.00008348 1eov 40 C s 3 C p 0.00979645 1eov 40 C s 4 C p 0.04830601 1eov 41 C s 3 C p 0.06995906 @@ -516,8 +590,17 @@ 1eov 42 C p 4 C p -0.09696631 1eov 43 C p 4 C p -0.30023182 1eov 44 C p 5 C p 0.17790623 +1eov 45 H s 3 C p -0.00006594 +1eov 45 H s 4 C p -0.00016267 1eov 46 H s 3 C p 0.07313632 1eov 46 H s 4 C p 0.09176940 +1eov 48 C s 3 C p 0.00000046 +1eov 48 C s 4 C p -0.00001894 +1eov 49 C p 3 C p 0.00000222 +1eov 50 C p 3 C p 0.00000121 +1eov 49 C p 4 C p 0.00000121 +1eov 50 C p 4 C p -0.00004804 +1eov 51 C p 5 C p 0.00000225 1eov 52 C s 3 C p -0.00066296 1eov 52 C s 4 C p 0.00272201 1eov 53 C s 3 C p -0.01682232 @@ -527,49 +610,119 @@ 1eov 54 C p 4 C p 0.02712642 1eov 55 C p 4 C p -0.09229496 1eov 56 C p 5 C p 0.01908226 +1eov 57 H s 3 C p 0.00001260 +1eov 57 H s 4 C p -0.00005332 1eov 58 H s 3 C p -0.02185510 1eov 58 H s 4 C p 0.02971915 +1eov 59 H s 3 C p -0.00000003 +1eov 59 H s 4 C p -0.00000084 1eov 60 H s 3 C p -0.00065662 1eov 60 H s 4 C p 0.00810581 +1eov 2 C s 6 C s 0.00030276 +1eov 3 C p 6 C s -0.00013634 +1eov 4 C p 6 C s -0.00081417 1eov 6 C s 6 C s 1.00000000 1eov 7 C s 6 C s 0.24836239 +1eov 12 C s 6 C s 0.00158642 +1eov 13 C p 6 C s -0.00234748 +1eov 14 C p 6 C s -0.00287577 1eov 16 C s 6 C s 0.00000058 1eov 17 C s 6 C s 0.03557117 1eov 18 C p 6 C s 0.04481702 1eov 19 C p 6 C s -0.03839337 +1eov 21 C s 6 C s 0.00000058 +1eov 22 C s 6 C s 0.03557692 +1eov 23 C p 6 C s -0.05494002 +1eov 24 C p 6 C s -0.02157125 1eov 27 C s 6 C s 0.00156648 1eov 28 C p 6 C s 0.00126819 1eov 29 C p 6 C s -0.00344449 +1eov 31 H s 6 C s 0.00007985 1eov 32 H s 6 C s 0.00509264 +1eov 33 H s 6 C s 0.00508021 1eov 34 H s 6 C s 0.00007948 +1eov 35 C s 6 C s 0.00000014 +1eov 36 C s 6 C s 0.02955008 +1eov 37 C p 6 C s 0.00979645 +1eov 38 C p 6 C s 0.04830601 1eov 41 C s 6 C s 0.00000008 1eov 42 C p 6 C s -0.00000006 1eov 43 C p 6 C s -0.00000035 +1eov 45 H s 6 C s 0.00486942 1eov 46 H s 6 C s 0.00000007 +1eov 48 C s 6 C s 0.00115883 +1eov 49 C p 6 C s -0.00066296 +1eov 50 C p 6 C s 0.00272201 +1eov 57 H s 6 C s 0.00074066 +1eov 59 H s 6 C s 0.00005752 +1eov 1 C s 7 C s 0.00030276 +1eov 2 C s 7 C s 0.02186954 +1eov 3 C p 7 C s -0.00590170 +1eov 4 C p 7 C s -0.03524407 +1eov 6 C s 7 C s 0.24836239 1eov 7 C s 7 C s 1.00000000 +1eov 11 C s 7 C s 0.00158642 +1eov 12 C s 7 C s 0.05618847 +1eov 13 C p 7 C s -0.05279983 +1eov 14 C p 7 C s -0.06468219 1eov 16 C s 7 C s 0.03557117 1eov 17 C s 7 C s 0.35371041 1eov 18 C p 7 C s 0.28849089 1eov 19 C p 7 C s -0.24714128 +1eov 21 C s 7 C s 0.03557692 +1eov 22 C s 7 C s 0.35374328 +1eov 23 C p 7 C s -0.35361990 +1eov 24 C p 7 C s -0.13884273 1eov 26 C s 7 C s 0.00156648 1eov 27 C s 7 C s 0.05577904 1eov 28 C p 7 C s 0.02866212 1eov 29 C p 7 C s -0.07784841 +1eov 31 H s 7 C s 0.00590154 1eov 32 H s 7 C s 0.09300775 +1eov 33 H s 7 C s 0.09284483 1eov 34 H s 7 C s 0.00588416 +1eov 35 C s 7 C s 0.02955008 +1eov 36 C s 7 C s 0.31760627 +1eov 37 C p 7 C s 0.06995906 +1eov 38 C p 7 C s 0.34496609 1eov 40 C s 7 C s 0.00000008 1eov 41 C s 7 C s 0.00025963 1eov 42 C p 7 C s -0.00010165 1eov 43 C p 7 C s -0.00056623 +1eov 45 H s 7 C s 0.09006704 1eov 46 H s 7 C s 0.00008155 +1eov 47 C s 7 C s 0.00115883 +1eov 48 C s 7 C s 0.04688356 +1eov 49 C p 7 C s -0.01682232 +1eov 50 C p 7 C s 0.06907006 1eov 53 C s 7 C s 0.00000715 1eov 54 C p 7 C s 0.00000046 1eov 55 C p 7 C s -0.00001894 +1eov 57 H s 7 C s 0.02467969 1eov 58 H s 7 C s 0.00002394 +1eov 59 H s 7 C s 0.00480795 1eov 60 H s 7 C s 0.00000031 +1eov 1 C s 8 C p 0.00013634 +1eov 1 C s 9 C p 0.00081417 +1eov 2 C s 8 C p 0.00590170 +1eov 2 C s 9 C p 0.03524407 +1eov 3 C p 8 C p 0.00660737 +1eov 4 C p 8 C p -0.01021452 +1eov 3 C p 9 C p -0.01021452 +1eov 4 C p 9 C p -0.05268175 +1eov 5 C p 10 C p 0.00831781 1eov 8 C p 8 C p 1.00000000 1eov 9 C p 9 C p 1.00000000 1eov 10 C p 10 C p 1.00000000 +1eov 11 C s 8 C p 0.00234748 +1eov 11 C s 9 C p 0.00287577 +1eov 12 C s 8 C p 0.05279983 +1eov 12 C s 9 C p 0.06468219 +1eov 13 C p 8 C p -0.03131094 +1eov 14 C p 8 C p -0.06690995 +1eov 13 C p 9 C p -0.06690995 +1eov 14 C p 9 C p -0.05866033 +1eov 15 C p 10 C p 0.02330740 1eov 16 C s 8 C p -0.04481702 1eov 16 C s 9 C p 0.03839337 1eov 17 C s 8 C p -0.28849089 @@ -579,6 +732,15 @@ 1eov 18 C p 9 C p 0.26261039 1eov 19 C p 9 C p -0.02032026 1eov 20 C p 10 C p 0.20464999 +1eov 21 C s 8 C p 0.05494002 +1eov 21 C s 9 C p 0.02157125 +1eov 22 C s 8 C p 0.35361990 +1eov 22 C s 9 C p 0.13884273 +1eov 23 C p 8 C p -0.25587393 +1eov 24 C p 8 C p -0.18082655 +1eov 23 C p 9 C p -0.18082655 +1eov 24 C p 9 C p 0.13367656 +1eov 25 C p 10 C p 0.20467497 1eov 26 C s 8 C p -0.00126819 1eov 26 C s 9 C p 0.00344449 1eov 27 C s 8 C p -0.02866212 @@ -588,10 +750,23 @@ 1eov 28 C p 9 C p 0.04402519 1eov 29 C p 9 C p -0.09645639 1eov 30 C p 10 C p 0.02311926 +1eov 31 H s 8 C p 0.00737838 +1eov 31 H s 9 C p 0.00651680 1eov 32 H s 8 C p -0.11684634 1eov 32 H s 9 C p 0.03019589 +1eov 33 H s 8 C p 0.12012197 +1eov 33 H s 9 C p -0.00954436 1eov 34 H s 8 C p -0.00484048 1eov 34 H s 9 C p 0.00854096 +1eov 35 C s 8 C p -0.00979645 +1eov 35 C s 9 C p -0.04830601 +1eov 36 C s 8 C p -0.06995906 +1eov 36 C s 9 C p -0.34496609 +1eov 37 C p 8 C p 0.15824148 +1eov 38 C p 8 C p -0.09696631 +1eov 37 C p 9 C p -0.09696631 +1eov 38 C p 9 C p -0.30023182 +1eov 39 C p 10 C p 0.17790623 1eov 40 C s 8 C p 0.00000006 1eov 40 C s 9 C p 0.00000035 1eov 41 C s 8 C p 0.00010165 @@ -601,8 +776,19 @@ 1eov 42 C p 9 C p -0.00022448 1eov 43 C p 9 C p -0.00116687 1eov 44 C p 10 C p 0.00008348 +1eov 45 H s 8 C p -0.07313632 +1eov 45 H s 9 C p -0.09176940 1eov 46 H s 8 C p 0.00006594 1eov 46 H s 9 C p 0.00016267 +1eov 47 C s 8 C p 0.00066296 +1eov 47 C s 9 C p -0.00272201 +1eov 48 C s 8 C p 0.01682232 +1eov 48 C s 9 C p -0.06907006 +1eov 49 C p 8 C p 0.01247550 +1eov 50 C p 8 C p 0.02712642 +1eov 49 C p 9 C p 0.02712642 +1eov 50 C p 9 C p -0.09229496 +1eov 51 C p 10 C p 0.01908226 1eov 53 C s 8 C p -0.00000046 1eov 53 C s 9 C p 0.00001894 1eov 54 C p 8 C p 0.00000222 @@ -610,48 +796,123 @@ 1eov 54 C p 9 C p 0.00000121 1eov 55 C p 9 C p -0.00004804 1eov 56 C p 10 C p 0.00000225 +1eov 57 H s 8 C p 0.02185510 +1eov 57 H s 9 C p -0.02971915 1eov 58 H s 8 C p -0.00001260 1eov 58 H s 9 C p 0.00005332 +1eov 59 H s 8 C p 0.00065662 +1eov 59 H s 9 C p -0.00810581 1eov 60 H s 8 C p 0.00000003 1eov 60 H s 9 C p 0.00000084 +1eov 1 C s 11 C s 0.00000058 +1eov 2 C s 11 C s 0.03557117 +1eov 3 C p 11 C s 0.04481702 +1eov 4 C p 11 C s -0.03839337 +1eov 7 C s 11 C s 0.00158642 +1eov 8 C p 11 C s 0.00234748 +1eov 9 C p 11 C s 0.00287577 +1eov 11 C s 11 C s 1.00000000 +1eov 12 C s 11 C s 0.24836239 1eov 17 C s 11 C s 0.00038919 1eov 18 C p 11 C s 0.00097464 1eov 19 C p 11 C s 0.00036196 +1eov 21 C s 11 C s 0.00000082 +1eov 22 C s 11 C s 0.03728874 +1eov 23 C p 11 C s 0.01013759 +1eov 24 C p 11 C s 0.06099186 1eov 27 C s 11 C s 0.00170373 1eov 28 C p 11 C s 0.00390110 1eov 29 C p 11 C s -0.00065809 +1eov 31 H s 11 C s 0.06102076 1eov 32 H s 11 C s 0.00001119 +1eov 33 H s 11 C s 0.00527184 1eov 34 H s 11 C s 0.00008438 +1eov 36 C s 11 C s 0.00000212 +1eov 37 C p 11 C s 0.00000372 +1eov 38 C p 11 C s 0.00000677 1eov 41 C s 11 C s 0.00126083 1eov 42 C p 11 C s 0.00093897 1eov 43 C p 11 C s -0.00287258 +1eov 45 H s 11 C s 0.00000027 1eov 46 H s 11 C s 0.00131509 +1eov 48 C s 11 C s 0.00000004 +1eov 49 C p 11 C s 0.00000004 +1eov 50 C p 11 C s 0.00000017 1eov 53 C s 11 C s 0.00000298 1eov 54 C p 11 C s 0.00000476 1eov 55 C p 11 C s -0.00000960 +1eov 57 H s 11 C s 0.00000294 1eov 58 H s 11 C s 0.00000237 1eov 60 H s 11 C s 0.00000028 +1eov 1 C s 12 C s 0.03557117 +1eov 2 C s 12 C s 0.35371041 +1eov 3 C p 12 C s 0.28849089 +1eov 4 C p 12 C s -0.24714128 +1eov 6 C s 12 C s 0.00158642 +1eov 7 C s 12 C s 0.05618847 +1eov 8 C p 12 C s 0.05279983 +1eov 9 C p 12 C s 0.06468219 +1eov 11 C s 12 C s 0.24836239 +1eov 12 C s 12 C s 1.00000000 1eov 16 C s 12 C s 0.00038919 1eov 17 C s 12 C s 0.02519187 1eov 18 C p 12 C s 0.03809642 1eov 19 C p 12 C s 0.01414813 +1eov 21 C s 12 C s 0.03728874 +1eov 22 C s 12 C s 0.36341085 +1eov 23 C p 12 C s 0.06345323 +1eov 24 C p 12 C s 0.38176044 1eov 26 C s 12 C s 0.00170373 1eov 27 C s 12 C s 0.05855627 1eov 28 C p 12 C s 0.08539477 1eov 29 C p 12 C s -0.01440564 +1eov 31 H s 12 C s 0.48574945 1eov 32 H s 12 C s 0.00175463 +1eov 33 H s 12 C s 0.09534612 1eov 34 H s 12 C s 0.00610906 +1eov 35 C s 12 C s 0.00000212 +1eov 36 C s 12 C s 0.00144485 +1eov 37 C p 12 C s 0.00138894 +1eov 38 C p 12 C s 0.00252926 1eov 40 C s 12 C s 0.00126083 1eov 41 C s 12 C s 0.04921444 1eov 42 C p 12 C s 0.02306259 1eov 43 C p 12 C s -0.07055543 +1eov 45 H s 12 C s 0.00018766 1eov 46 H s 12 C s 0.03623781 +1eov 47 C s 12 C s 0.00000004 +1eov 48 C s 12 C s 0.00017692 +1eov 49 C p 12 C s 0.00008529 +1eov 50 C p 12 C s 0.00039134 1eov 52 C s 12 C s 0.00000298 1eov 53 C s 12 C s 0.00173815 1eov 54 C p 12 C s 0.00152273 1eov 55 C p 12 C s -0.00307343 +1eov 57 H s 12 C s 0.00077915 1eov 58 H s 12 C s 0.00068401 +1eov 59 H s 12 C s 0.00000753 1eov 60 H s 12 C s 0.00019170 +1eov 1 C s 13 C p -0.04481702 +1eov 1 C s 14 C p 0.03839337 +1eov 2 C s 13 C p -0.28849089 +1eov 2 C s 14 C p 0.24714128 +1eov 3 C p 13 C p -0.10189816 +1eov 4 C p 13 C p 0.26261039 +1eov 3 C p 14 C p 0.26261039 +1eov 4 C p 14 C p -0.02032026 +1eov 5 C p 15 C p 0.20464999 +1eov 6 C s 13 C p -0.00234748 +1eov 6 C s 14 C p -0.00287577 +1eov 7 C s 13 C p -0.05279983 +1eov 7 C s 14 C p -0.06468219 +1eov 8 C p 13 C p -0.03131094 +1eov 9 C p 13 C p -0.06690995 +1eov 8 C p 14 C p -0.06690995 +1eov 9 C p 14 C p -0.05866033 +1eov 10 C p 15 C p 0.02330740 +1eov 13 C p 13 C p 1.00000000 +1eov 14 C p 14 C p 1.00000000 +1eov 15 C p 15 C p 1.00000000 1eov 16 C s 13 C p -0.00097464 1eov 16 C s 14 C p -0.00036196 1eov 17 C s 13 C p -0.03809642 @@ -661,6 +922,15 @@ 1eov 18 C p 14 C p -0.02304990 1eov 19 C p 14 C p 0.00112989 1eov 20 C p 15 C p 0.00969008 +1eov 21 C s 13 C p -0.01013759 +1eov 21 C s 14 C p -0.06099186 +1eov 22 C s 13 C p -0.06345323 +1eov 22 C s 14 C p -0.38176044 +1eov 23 C p 13 C p 0.19755997 +1eov 24 C p 13 C p -0.08732635 +1eov 23 C p 14 C p -0.08732635 +1eov 24 C p 14 C p -0.31331614 +1eov 25 C p 15 C p 0.21207467 1eov 26 C s 13 C p -0.00390110 1eov 26 C s 14 C p 0.00065809 1eov 27 C s 13 C p -0.08539477 @@ -670,10 +940,23 @@ 1eov 28 C p 14 C p 0.02315912 1eov 29 C p 14 C p 0.02049256 1eov 30 C p 15 C p 0.02439938 +1eov 31 H s 13 C p 0.43567252 +1eov 31 H s 14 C p 0.16041073 1eov 32 H s 13 C p -0.00297023 1eov 32 H s 14 C p -0.00110041 +1eov 33 H s 13 C p 0.03533851 +1eov 33 H s 14 C p -0.11815431 1eov 34 H s 13 C p -0.00963282 1eov 34 H s 14 C p 0.00324981 +1eov 35 C s 13 C p -0.00000372 +1eov 35 C s 14 C p -0.00000677 +1eov 36 C s 13 C p -0.00138894 +1eov 36 C s 14 C p -0.00252926 +1eov 37 C p 13 C p -0.00089148 +1eov 38 C p 13 C p -0.00249775 +1eov 37 C p 14 C p -0.00249775 +1eov 38 C p 14 C p -0.00406824 +1eov 39 C p 15 C p 0.00048016 1eov 40 C s 13 C p -0.00093897 1eov 40 C s 14 C p 0.00287258 1eov 41 C s 13 C p -0.02306259 @@ -683,8 +966,19 @@ 1eov 42 C p 14 C p 0.03624265 1eov 43 C p 14 C p -0.09074670 1eov 44 C p 15 C p 0.02013053 +1eov 45 H s 13 C p -0.00024262 +1eov 45 H s 14 C p -0.00030060 1eov 46 H s 13 C p 0.00569515 1eov 46 H s 14 C p 0.05195639 +1eov 47 C s 13 C p -0.00000004 +1eov 47 C s 14 C p -0.00000017 +1eov 48 C s 13 C p -0.00008529 +1eov 48 C s 14 C p -0.00039134 +1eov 49 C p 13 C p 0.00001509 +1eov 50 C p 13 C p -0.00019062 +1eov 49 C p 14 C p -0.00019062 +1eov 50 C p 14 C p -0.00081804 +1eov 51 C p 15 C p 0.00005663 1eov 52 C s 13 C p -0.00000476 1eov 52 C s 14 C p 0.00000960 1eov 53 C s 13 C p -0.00152273 @@ -694,47 +988,141 @@ 1eov 54 C p 14 C p 0.00277198 1eov 55 C p 14 C p -0.00501418 1eov 56 C p 15 C p 0.00058071 +1eov 57 H s 13 C p 0.00004529 +1eov 57 H s 14 C p -0.00147734 1eov 58 H s 13 C p -0.00085251 1eov 58 H s 14 C p 0.00099155 +1eov 59 H s 13 C p -0.00000414 +1eov 59 H s 14 C p -0.00001769 1eov 60 H s 13 C p -0.00011575 1eov 60 H s 14 C p 0.00037677 +1eov 2 C s 16 C s 0.00158642 +1eov 3 C p 16 C s -0.00234748 +1eov 4 C p 16 C s -0.00287577 +1eov 6 C s 16 C s 0.00000058 +1eov 7 C s 16 C s 0.03557117 +1eov 8 C p 16 C s -0.04481702 +1eov 9 C p 16 C s 0.03839337 +1eov 12 C s 16 C s 0.00038919 +1eov 13 C p 16 C s -0.00097464 +1eov 14 C p 16 C s -0.00036196 1eov 16 C s 16 C s 1.00000000 1eov 17 C s 16 C s 0.24836239 +1eov 22 C s 16 C s 0.00170373 +1eov 23 C p 16 C s -0.00390110 +1eov 24 C p 16 C s 0.00065809 1eov 26 C s 16 C s 0.00000082 1eov 27 C s 16 C s 0.03728874 1eov 28 C p 16 C s -0.01013759 1eov 29 C p 16 C s -0.06099186 +1eov 31 H s 16 C s 0.00001119 1eov 32 H s 16 C s 0.06102076 +1eov 33 H s 16 C s 0.00008438 1eov 34 H s 16 C s 0.00527184 +1eov 36 C s 16 C s 0.00126083 +1eov 37 C p 16 C s -0.00093897 +1eov 38 C p 16 C s 0.00287258 1eov 41 C s 16 C s 0.00000212 1eov 42 C p 16 C s -0.00000372 1eov 43 C p 16 C s -0.00000677 +1eov 45 H s 16 C s 0.00131509 1eov 46 H s 16 C s 0.00000027 +1eov 48 C s 16 C s 0.00000298 +1eov 49 C p 16 C s -0.00000476 +1eov 50 C p 16 C s 0.00000960 1eov 53 C s 16 C s 0.00000004 1eov 54 C p 16 C s -0.00000004 1eov 55 C p 16 C s -0.00000017 +1eov 57 H s 16 C s 0.00000237 1eov 58 H s 16 C s 0.00000294 +1eov 59 H s 16 C s 0.00000028 +1eov 1 C s 17 C s 0.00158642 +1eov 2 C s 17 C s 0.05618847 +1eov 3 C p 17 C s -0.05279983 +1eov 4 C p 17 C s -0.06468219 +1eov 6 C s 17 C s 0.03557117 +1eov 7 C s 17 C s 0.35371041 +1eov 8 C p 17 C s -0.28849089 +1eov 9 C p 17 C s 0.24714128 +1eov 11 C s 17 C s 0.00038919 +1eov 12 C s 17 C s 0.02519187 +1eov 13 C p 17 C s -0.03809642 +1eov 14 C p 17 C s -0.01414813 +1eov 16 C s 17 C s 0.24836239 1eov 17 C s 17 C s 1.00000000 +1eov 21 C s 17 C s 0.00170373 +1eov 22 C s 17 C s 0.05855627 +1eov 23 C p 17 C s -0.08539477 +1eov 24 C p 17 C s 0.01440564 1eov 26 C s 17 C s 0.03728874 1eov 27 C s 17 C s 0.36341085 1eov 28 C p 17 C s -0.06345323 1eov 29 C p 17 C s -0.38176044 +1eov 31 H s 17 C s 0.00175463 1eov 32 H s 17 C s 0.48574945 +1eov 33 H s 17 C s 0.00610906 1eov 34 H s 17 C s 0.09534612 +1eov 35 C s 17 C s 0.00126083 +1eov 36 C s 17 C s 0.04921444 +1eov 37 C p 17 C s -0.02306259 +1eov 38 C p 17 C s 0.07055543 1eov 40 C s 17 C s 0.00000212 1eov 41 C s 17 C s 0.00144485 1eov 42 C p 17 C s -0.00138894 1eov 43 C p 17 C s -0.00252926 +1eov 45 H s 17 C s 0.03623781 1eov 46 H s 17 C s 0.00018766 +1eov 47 C s 17 C s 0.00000298 +1eov 48 C s 17 C s 0.00173815 +1eov 49 C p 17 C s -0.00152273 +1eov 50 C p 17 C s 0.00307343 1eov 52 C s 17 C s 0.00000004 1eov 53 C s 17 C s 0.00017692 1eov 54 C p 17 C s -0.00008529 1eov 55 C p 17 C s -0.00039134 +1eov 57 H s 17 C s 0.00068401 1eov 58 H s 17 C s 0.00077915 +1eov 59 H s 17 C s 0.00019170 1eov 60 H s 17 C s 0.00000753 +1eov 1 C s 18 C p 0.00234748 +1eov 1 C s 19 C p 0.00287577 +1eov 2 C s 18 C p 0.05279983 +1eov 2 C s 19 C p 0.06468219 +1eov 3 C p 18 C p -0.03131094 +1eov 4 C p 18 C p -0.06690995 +1eov 3 C p 19 C p -0.06690995 +1eov 4 C p 19 C p -0.05866033 +1eov 5 C p 20 C p 0.02330740 +1eov 6 C s 18 C p 0.04481702 +1eov 6 C s 19 C p -0.03839337 +1eov 7 C s 18 C p 0.28849089 +1eov 7 C s 19 C p -0.24714128 +1eov 8 C p 18 C p -0.10189816 +1eov 9 C p 18 C p 0.26261039 +1eov 8 C p 19 C p 0.26261039 +1eov 9 C p 19 C p -0.02032026 +1eov 10 C p 20 C p 0.20464999 +1eov 11 C s 18 C p 0.00097464 +1eov 11 C s 19 C p 0.00036196 +1eov 12 C s 18 C p 0.03809642 +1eov 12 C s 19 C p 0.01414813 +1eov 13 C p 18 C p -0.05237600 +1eov 14 C p 18 C p -0.02304990 +1eov 13 C p 19 C p -0.02304990 +1eov 14 C p 19 C p 0.00112989 +1eov 15 C p 20 C p 0.00969008 1eov 18 C p 18 C p 1.00000000 1eov 19 C p 19 C p 1.00000000 1eov 20 C p 20 C p 1.00000000 +1eov 21 C s 18 C p 0.00390110 +1eov 21 C s 19 C p -0.00065809 +1eov 22 C s 18 C p 0.08539477 +1eov 22 C s 19 C p -0.01440564 +1eov 23 C p 18 C p -0.11288491 +1eov 24 C p 18 C p 0.02315912 +1eov 23 C p 19 C p 0.02315912 +1eov 24 C p 19 C p 0.02049256 +1eov 25 C p 20 C p 0.02439938 1eov 26 C s 18 C p 0.01013759 1eov 26 C s 19 C p 0.06099186 1eov 27 C s 18 C p 0.06345323 @@ -744,10 +1132,23 @@ 1eov 28 C p 19 C p -0.08732635 1eov 29 C p 19 C p -0.31331614 1eov 30 C p 20 C p 0.21207467 +1eov 31 H s 18 C p 0.00297023 +1eov 31 H s 19 C p 0.00110041 1eov 32 H s 18 C p -0.43567252 1eov 32 H s 19 C p -0.16041073 +1eov 33 H s 18 C p 0.00963282 +1eov 33 H s 19 C p -0.00324981 1eov 34 H s 18 C p -0.03533851 1eov 34 H s 19 C p 0.11815431 +1eov 35 C s 18 C p 0.00093897 +1eov 35 C s 19 C p -0.00287258 +1eov 36 C s 18 C p 0.02306259 +1eov 36 C s 19 C p -0.07055543 +1eov 37 C p 18 C p 0.00828382 +1eov 38 C p 18 C p 0.03624265 +1eov 37 C p 19 C p 0.03624265 +1eov 38 C p 19 C p -0.09074670 +1eov 39 C p 20 C p 0.02013053 1eov 40 C s 18 C p 0.00000372 1eov 40 C s 19 C p 0.00000677 1eov 41 C s 18 C p 0.00138894 @@ -757,8 +1158,19 @@ 1eov 42 C p 19 C p -0.00249775 1eov 43 C p 19 C p -0.00406824 1eov 44 C p 20 C p 0.00048016 +1eov 45 H s 18 C p -0.00569515 +1eov 45 H s 19 C p -0.05195639 1eov 46 H s 18 C p 0.00024262 1eov 46 H s 19 C p 0.00030060 +1eov 47 C s 18 C p 0.00000476 +1eov 47 C s 19 C p -0.00000960 +1eov 48 C s 18 C p 0.00152273 +1eov 48 C s 19 C p -0.00307343 +1eov 49 C p 18 C p -0.00079266 +1eov 50 C p 18 C p 0.00277198 +1eov 49 C p 19 C p 0.00277198 +1eov 50 C p 19 C p -0.00501418 +1eov 51 C p 20 C p 0.00058071 1eov 52 C s 18 C p 0.00000004 1eov 52 C s 19 C p 0.00000017 1eov 53 C s 18 C p 0.00008529 @@ -768,35 +1180,136 @@ 1eov 54 C p 19 C p -0.00019062 1eov 55 C p 19 C p -0.00081804 1eov 56 C p 20 C p 0.00005663 +1eov 57 H s 18 C p 0.00085251 +1eov 57 H s 19 C p -0.00099155 1eov 58 H s 18 C p -0.00004529 1eov 58 H s 19 C p 0.00147734 +1eov 59 H s 18 C p 0.00011575 +1eov 59 H s 19 C p -0.00037677 1eov 60 H s 18 C p 0.00000414 1eov 60 H s 19 C p 0.00001769 +1eov 2 C s 21 C s 0.00156648 +1eov 3 C p 21 C s 0.00126819 +1eov 4 C p 21 C s -0.00344449 +1eov 6 C s 21 C s 0.00000058 +1eov 7 C s 21 C s 0.03557692 +1eov 8 C p 21 C s 0.05494002 +1eov 9 C p 21 C s 0.02157125 +1eov 11 C s 21 C s 0.00000082 +1eov 12 C s 21 C s 0.03728874 +1eov 13 C p 21 C s -0.01013759 +1eov 14 C p 21 C s -0.06099186 +1eov 17 C s 21 C s 0.00170373 +1eov 18 C p 21 C s 0.00390110 +1eov 19 C p 21 C s -0.00065809 +1eov 21 C s 21 C s 1.00000000 +1eov 22 C s 21 C s 0.24836239 1eov 27 C s 21 C s 0.00037959 1eov 28 C p 21 C s 0.00078457 1eov 29 C p 21 C s -0.00064573 +1eov 31 H s 21 C s 0.00526064 1eov 32 H s 21 C s 0.00008435 +1eov 33 H s 21 C s 0.06126406 1eov 34 H s 21 C s 0.00001099 +1eov 36 C s 21 C s 0.00105093 +1eov 37 C p 21 C s 0.00162169 +1eov 38 C p 21 C s 0.00198813 1eov 41 C s 21 C s 0.00000250 1eov 42 C p 21 C s 0.00000131 1eov 43 C p 21 C s -0.00000898 +1eov 45 H s 21 C s 0.00006428 1eov 46 H s 21 C s 0.00000552 +1eov 48 C s 21 C s 0.00012010 +1eov 49 C p 21 C s 0.00008248 +1eov 50 C p 21 C s 0.00034098 +1eov 57 H s 21 C s 0.00076401 +1eov 59 H s 21 C s 0.00000329 +1eov 1 C s 22 C s 0.00156648 +1eov 2 C s 22 C s 0.05577904 +1eov 3 C p 22 C s 0.02866212 +1eov 4 C p 22 C s -0.07784841 +1eov 6 C s 22 C s 0.03557692 +1eov 7 C s 22 C s 0.35374328 +1eov 8 C p 22 C s 0.35361990 +1eov 9 C p 22 C s 0.13884273 +1eov 11 C s 22 C s 0.03728874 +1eov 12 C s 22 C s 0.36341085 +1eov 13 C p 22 C s -0.06345323 +1eov 14 C p 22 C s -0.38176044 +1eov 16 C s 22 C s 0.00170373 +1eov 17 C s 22 C s 0.05855627 +1eov 18 C p 22 C s 0.08539477 +1eov 19 C p 22 C s -0.01440564 +1eov 21 C s 22 C s 0.24836239 +1eov 22 C s 22 C s 1.00000000 1eov 26 C s 22 C s 0.00037959 1eov 27 C s 22 C s 0.02483931 1eov 28 C p 22 C s 0.03097885 1eov 29 C p 22 C s -0.02549677 +1eov 31 H s 22 C s 0.09520044 1eov 32 H s 22 C s 0.00610765 +1eov 33 H s 22 C s 0.48672623 1eov 34 H s 22 C s 0.00173453 +1eov 35 C s 22 C s 0.00105093 +1eov 36 C s 22 C s 0.04432484 +1eov 37 C p 22 C s 0.04273885 +1eov 38 C p 22 C s 0.05239599 1eov 40 C s 22 C s 0.00000250 1eov 41 C s 22 C s 0.00158230 1eov 42 C p 22 C s 0.00045458 1eov 43 C p 22 C s -0.00310848 +1eov 45 H s 22 C s 0.00515280 1eov 46 H s 22 C s 0.00114126 +1eov 47 C s 22 C s 0.00012010 +1eov 48 C s 22 C s 0.01304826 +1eov 49 C p 22 C s 0.00523759 +1eov 50 C p 22 C s 0.02165256 1eov 53 C s 22 C s 0.00002499 1eov 54 C p 22 C s 0.00001818 1eov 55 C p 22 C s -0.00005985 +1eov 57 H s 22 C s 0.02519238 1eov 58 H s 22 C s 0.00002475 +1eov 59 H s 22 C s 0.00083477 1eov 60 H s 22 C s 0.00000176 +1eov 1 C s 23 C p -0.00126819 +1eov 1 C s 24 C p 0.00344449 +1eov 2 C s 23 C p -0.02866212 +1eov 2 C s 24 C p 0.07784841 +1eov 3 C p 23 C p 0.00691013 +1eov 4 C p 23 C p 0.04402519 +1eov 3 C p 24 C p 0.04402519 +1eov 4 C p 24 C p -0.09645639 +1eov 5 C p 25 C p 0.02311926 +1eov 6 C s 23 C p -0.05494002 +1eov 6 C s 24 C p -0.02157125 +1eov 7 C s 23 C p -0.35361990 +1eov 7 C s 24 C p -0.13884273 +1eov 8 C p 23 C p -0.25587393 +1eov 9 C p 23 C p -0.18082655 +1eov 8 C p 24 C p -0.18082655 +1eov 9 C p 24 C p 0.13367656 +1eov 10 C p 25 C p 0.20467497 +1eov 11 C s 23 C p 0.01013759 +1eov 11 C s 24 C p 0.06099186 +1eov 12 C s 23 C p 0.06345323 +1eov 12 C s 24 C p 0.38176044 +1eov 13 C p 23 C p 0.19755997 +1eov 14 C p 23 C p -0.08732635 +1eov 13 C p 24 C p -0.08732635 +1eov 14 C p 24 C p -0.31331614 +1eov 15 C p 25 C p 0.21207467 +1eov 16 C s 23 C p -0.00390110 +1eov 16 C s 24 C p 0.00065809 +1eov 17 C s 23 C p -0.08539477 +1eov 17 C s 24 C p 0.01440564 +1eov 18 C p 23 C p -0.11288491 +1eov 19 C p 23 C p 0.02315912 +1eov 18 C p 24 C p 0.02315912 +1eov 19 C p 24 C p 0.02049256 +1eov 20 C p 25 C p 0.02439938 +1eov 23 C p 23 C p 1.00000000 +1eov 24 C p 24 C p 1.00000000 +1eov 25 C p 25 C p 1.00000000 1eov 26 C s 23 C p -0.00078457 1eov 26 C s 24 C p 0.00064573 1eov 27 C s 23 C p -0.03097885 @@ -806,10 +1319,23 @@ 1eov 28 C p 24 C p 0.03424679 1eov 29 C p 24 C p -0.01864290 1eov 30 C p 25 C p 0.00954351 +1eov 31 H s 23 C p 0.07164787 +1eov 31 H s 24 C p 0.10017665 1eov 32 H s 23 C p -0.01016378 1eov 32 H s 24 C p 0.00007647 +1eov 33 H s 23 C p 0.36054241 +1eov 33 H s 24 C p -0.29342885 1eov 34 H s 23 C p -0.00242249 1eov 34 H s 24 C p 0.00198754 +1eov 35 C s 23 C p -0.00162169 +1eov 35 C s 24 C p -0.00198813 +1eov 36 C s 23 C p -0.04273885 +1eov 36 C s 24 C p -0.05239599 +1eov 37 C p 23 C p -0.02709252 +1eov 38 C p 23 C p -0.05520745 +1eov 37 C p 24 C p -0.05520745 +1eov 38 C p 24 C p -0.04974235 +1eov 39 C p 25 C p 0.01793961 1eov 40 C s 23 C p -0.00000131 1eov 40 C s 24 C p 0.00000898 1eov 41 C s 23 C p -0.00045458 @@ -819,8 +1345,19 @@ 1eov 42 C p 24 C p 0.00091838 1eov 43 C p 24 C p -0.00575278 1eov 44 C p 25 C p 0.00052719 +1eov 45 H s 23 C p -0.00667173 +1eov 45 H s 24 C p -0.00554480 1eov 46 H s 23 C p 0.00027079 1eov 46 H s 24 C p 0.00209825 +1eov 47 C s 23 C p -0.00008248 +1eov 47 C s 24 C p -0.00034098 +1eov 48 C s 23 C p -0.00523759 +1eov 48 C s 24 C p -0.02165256 +1eov 49 C p 23 C p 0.00254866 +1eov 50 C p 23 C p -0.00923685 +1eov 49 C p 24 C p -0.00923685 +1eov 50 C p 24 C p -0.03340281 +1eov 51 C p 25 C p 0.00478298 1eov 53 C s 23 C p -0.00001818 1eov 53 C s 24 C p 0.00005985 1eov 54 C p 23 C p -0.00000539 @@ -828,44 +1365,162 @@ 1eov 54 C p 24 C p 0.00004373 1eov 55 C p 24 C p -0.00013604 1eov 56 C p 25 C p 0.00000789 +1eov 57 H s 23 C p 0.00476106 +1eov 57 H s 24 C p -0.03728513 1eov 58 H s 23 C p -0.00002728 1eov 58 H s 24 C p 0.00004952 +1eov 59 H s 23 C p -0.00039290 +1eov 59 H s 24 C p -0.00152729 1eov 60 H s 23 C p -0.00000086 1eov 60 H s 24 C p 0.00000442 +1eov 1 C s 26 C s 0.00000058 +1eov 2 C s 26 C s 0.03557692 +1eov 3 C p 26 C s -0.05494002 +1eov 4 C p 26 C s -0.02157125 +1eov 7 C s 26 C s 0.00156648 +1eov 8 C p 26 C s -0.00126819 +1eov 9 C p 26 C s 0.00344449 +1eov 12 C s 26 C s 0.00170373 +1eov 13 C p 26 C s -0.00390110 +1eov 14 C p 26 C s 0.00065809 +1eov 16 C s 26 C s 0.00000082 +1eov 17 C s 26 C s 0.03728874 +1eov 18 C p 26 C s 0.01013759 +1eov 19 C p 26 C s 0.06099186 +1eov 22 C s 26 C s 0.00037959 +1eov 23 C p 26 C s -0.00078457 +1eov 24 C p 26 C s 0.00064573 1eov 26 C s 26 C s 1.00000000 1eov 27 C s 26 C s 0.24836239 +1eov 31 H s 26 C s 0.00008435 1eov 32 H s 26 C s 0.00526064 +1eov 33 H s 26 C s 0.00001099 1eov 34 H s 26 C s 0.06126406 +1eov 36 C s 26 C s 0.00000250 +1eov 37 C p 26 C s -0.00000131 +1eov 38 C p 26 C s 0.00000898 1eov 41 C s 26 C s 0.00105093 1eov 42 C p 26 C s -0.00162169 1eov 43 C p 26 C s -0.00198813 +1eov 45 H s 26 C s 0.00000552 1eov 46 H s 26 C s 0.00006428 1eov 53 C s 26 C s 0.00012010 1eov 54 C p 26 C s -0.00008248 1eov 55 C p 26 C s -0.00034098 1eov 58 H s 26 C s 0.00076401 1eov 60 H s 26 C s 0.00000329 +1eov 1 C s 27 C s 0.03557692 +1eov 2 C s 27 C s 0.35374328 +1eov 3 C p 27 C s -0.35361990 +1eov 4 C p 27 C s -0.13884273 +1eov 6 C s 27 C s 0.00156648 +1eov 7 C s 27 C s 0.05577904 +1eov 8 C p 27 C s -0.02866212 +1eov 9 C p 27 C s 0.07784841 +1eov 11 C s 27 C s 0.00170373 +1eov 12 C s 27 C s 0.05855627 +1eov 13 C p 27 C s -0.08539477 +1eov 14 C p 27 C s 0.01440564 +1eov 16 C s 27 C s 0.03728874 +1eov 17 C s 27 C s 0.36341085 +1eov 18 C p 27 C s 0.06345323 +1eov 19 C p 27 C s 0.38176044 +1eov 21 C s 27 C s 0.00037959 +1eov 22 C s 27 C s 0.02483931 +1eov 23 C p 27 C s -0.03097885 +1eov 24 C p 27 C s 0.02549677 +1eov 26 C s 27 C s 0.24836239 1eov 27 C s 27 C s 1.00000000 +1eov 31 H s 27 C s 0.00610765 1eov 32 H s 27 C s 0.09520044 +1eov 33 H s 27 C s 0.00173453 1eov 34 H s 27 C s 0.48672623 +1eov 35 C s 27 C s 0.00000250 +1eov 36 C s 27 C s 0.00158230 +1eov 37 C p 27 C s -0.00045458 +1eov 38 C p 27 C s 0.00310848 1eov 40 C s 27 C s 0.00105093 1eov 41 C s 27 C s 0.04432484 1eov 42 C p 27 C s -0.04273885 1eov 43 C p 27 C s -0.05239599 +1eov 45 H s 27 C s 0.00114126 1eov 46 H s 27 C s 0.00515280 +1eov 48 C s 27 C s 0.00002499 +1eov 49 C p 27 C s -0.00001818 +1eov 50 C p 27 C s 0.00005985 1eov 52 C s 27 C s 0.00012010 1eov 53 C s 27 C s 0.01304826 1eov 54 C p 27 C s -0.00523759 1eov 55 C p 27 C s -0.02165256 +1eov 57 H s 27 C s 0.00002475 1eov 58 H s 27 C s 0.02519238 +1eov 59 H s 27 C s 0.00000176 1eov 60 H s 27 C s 0.00083477 +1eov 1 C s 28 C p 0.05494002 +1eov 1 C s 29 C p 0.02157125 +1eov 2 C s 28 C p 0.35361990 +1eov 2 C s 29 C p 0.13884273 +1eov 3 C p 28 C p -0.25587393 +1eov 4 C p 28 C p -0.18082655 +1eov 3 C p 29 C p -0.18082655 +1eov 4 C p 29 C p 0.13367656 +1eov 5 C p 30 C p 0.20467497 +1eov 6 C s 28 C p 0.00126819 +1eov 6 C s 29 C p -0.00344449 +1eov 7 C s 28 C p 0.02866212 +1eov 7 C s 29 C p -0.07784841 +1eov 8 C p 28 C p 0.00691013 +1eov 9 C p 28 C p 0.04402519 +1eov 8 C p 29 C p 0.04402519 +1eov 9 C p 29 C p -0.09645639 +1eov 10 C p 30 C p 0.02311926 +1eov 11 C s 28 C p 0.00390110 +1eov 11 C s 29 C p -0.00065809 +1eov 12 C s 28 C p 0.08539477 +1eov 12 C s 29 C p -0.01440564 +1eov 13 C p 28 C p -0.11288491 +1eov 14 C p 28 C p 0.02315912 +1eov 13 C p 29 C p 0.02315912 +1eov 14 C p 29 C p 0.02049256 +1eov 15 C p 30 C p 0.02439938 +1eov 16 C s 28 C p -0.01013759 +1eov 16 C s 29 C p -0.06099186 +1eov 17 C s 28 C p -0.06345323 +1eov 17 C s 29 C p -0.38176044 +1eov 18 C p 28 C p 0.19755997 +1eov 19 C p 28 C p -0.08732635 +1eov 18 C p 29 C p -0.08732635 +1eov 19 C p 29 C p -0.31331614 +1eov 20 C p 30 C p 0.21207467 +1eov 21 C s 28 C p 0.00078457 +1eov 21 C s 29 C p -0.00064573 +1eov 22 C s 28 C p 0.03097885 +1eov 22 C s 29 C p -0.02549677 +1eov 23 C p 28 C p -0.03206671 +1eov 24 C p 28 C p 0.03424679 +1eov 23 C p 29 C p 0.03424679 +1eov 24 C p 29 C p -0.01864290 +1eov 25 C p 30 C p 0.00954351 1eov 28 C p 28 C p 1.00000000 1eov 29 C p 29 C p 1.00000000 1eov 30 C p 30 C p 1.00000000 +1eov 31 H s 28 C p 0.01016378 +1eov 31 H s 29 C p -0.00007647 1eov 32 H s 28 C p -0.07164787 1eov 32 H s 29 C p -0.10017665 +1eov 33 H s 28 C p 0.00242249 +1eov 33 H s 29 C p -0.00198754 1eov 34 H s 28 C p -0.36054241 1eov 34 H s 29 C p 0.29342885 +1eov 35 C s 28 C p 0.00000131 +1eov 35 C s 29 C p -0.00000898 +1eov 36 C s 28 C p 0.00045458 +1eov 36 C s 29 C p -0.00310848 +1eov 37 C p 28 C p 0.00039288 +1eov 38 C p 28 C p 0.00091838 +1eov 37 C p 29 C p 0.00091838 +1eov 38 C p 29 C p -0.00575278 +1eov 39 C p 30 C p 0.00052719 1eov 40 C s 28 C p 0.00162169 1eov 40 C s 29 C p 0.00198813 1eov 41 C s 28 C p 0.04273885 @@ -875,8 +1530,17 @@ 1eov 42 C p 29 C p -0.05520745 1eov 43 C p 29 C p -0.04974235 1eov 44 C p 30 C p 0.01793961 +1eov 45 H s 28 C p -0.00027079 +1eov 45 H s 29 C p -0.00209825 1eov 46 H s 28 C p 0.00667173 1eov 46 H s 29 C p 0.00554480 +1eov 48 C s 28 C p 0.00001818 +1eov 48 C s 29 C p -0.00005985 +1eov 49 C p 28 C p -0.00000539 +1eov 50 C p 28 C p 0.00004373 +1eov 49 C p 29 C p 0.00004373 +1eov 50 C p 29 C p -0.00013604 +1eov 51 C p 30 C p 0.00000789 1eov 52 C s 28 C p 0.00008248 1eov 52 C s 29 C p 0.00034098 1eov 53 C s 28 C p 0.00523759 @@ -886,65 +1550,352 @@ 1eov 54 C p 29 C p -0.00923685 1eov 55 C p 29 C p -0.03340281 1eov 56 C p 30 C p 0.00478298 +1eov 57 H s 28 C p 0.00002728 +1eov 57 H s 29 C p -0.00004952 1eov 58 H s 28 C p -0.00476106 1eov 58 H s 29 C p 0.03728513 +1eov 59 H s 28 C p 0.00000086 +1eov 59 H s 29 C p -0.00000442 1eov 60 H s 28 C p 0.00039290 1eov 60 H s 29 C p 0.00152729 +1eov 1 C s 31 H s 0.00509264 +1eov 2 C s 31 H s 0.09300775 +1eov 3 C p 31 H s 0.11684634 +1eov 4 C p 31 H s -0.03019589 +1eov 6 C s 31 H s 0.00007985 +1eov 7 C s 31 H s 0.00590154 +1eov 8 C p 31 H s 0.00737838 +1eov 9 C p 31 H s 0.00651680 +1eov 11 C s 31 H s 0.06102076 +1eov 12 C s 31 H s 0.48574945 +1eov 13 C p 31 H s 0.43567252 +1eov 14 C p 31 H s 0.16041073 +1eov 16 C s 31 H s 0.00001119 +1eov 17 C s 31 H s 0.00175463 +1eov 18 C p 31 H s 0.00297023 +1eov 19 C p 31 H s 0.00110041 +1eov 21 C s 31 H s 0.00526064 +1eov 22 C s 31 H s 0.09520044 +1eov 23 C p 31 H s 0.07164787 +1eov 24 C p 31 H s 0.10017665 +1eov 26 C s 31 H s 0.00008435 +1eov 27 C s 31 H s 0.00610765 +1eov 28 C p 31 H s 0.01016378 +1eov 29 C p 31 H s -0.00007647 +1eov 31 H s 31 H s 1.00000000 1eov 32 H s 31 H s 0.00010566 +1eov 33 H s 31 H s 0.05049356 1eov 34 H s 31 H s 0.00071247 +1eov 35 C s 31 H s 0.00000018 +1eov 36 C s 31 H s 0.00014665 +1eov 37 C p 31 H s 0.00018643 +1eov 38 C p 31 H s 0.00024260 1eov 40 C s 31 H s 0.00112513 1eov 41 C s 31 H s 0.03261996 1eov 42 C p 31 H s 0.03180630 1eov 43 C p 31 H s -0.03531792 +1eov 45 H s 31 H s 0.00001429 1eov 46 H s 31 H s 0.06152635 +1eov 47 C s 31 H s 0.00000002 +1eov 48 C s 31 H s 0.00003531 +1eov 49 C p 31 H s 0.00003055 +1eov 50 C p 31 H s 0.00007317 1eov 52 C s 31 H s 0.00000570 1eov 53 C s 31 H s 0.00116395 1eov 54 C p 31 H s 0.00144175 1eov 55 C p 31 H s -0.00160185 +1eov 57 H s 31 H s 0.00029688 1eov 58 H s 31 H s 0.00023842 +1eov 59 H s 31 H s 0.00000158 1eov 60 H s 31 H s 0.00025053 +1eov 1 C s 32 H s 0.00007985 +1eov 2 C s 32 H s 0.00590154 +1eov 3 C p 32 H s -0.00737838 +1eov 4 C p 32 H s -0.00651680 +1eov 6 C s 32 H s 0.00509264 +1eov 7 C s 32 H s 0.09300775 +1eov 8 C p 32 H s -0.11684634 +1eov 9 C p 32 H s 0.03019589 +1eov 11 C s 32 H s 0.00001119 +1eov 12 C s 32 H s 0.00175463 +1eov 13 C p 32 H s -0.00297023 +1eov 14 C p 32 H s -0.00110041 +1eov 16 C s 32 H s 0.06102076 +1eov 17 C s 32 H s 0.48574945 +1eov 18 C p 32 H s -0.43567252 +1eov 19 C p 32 H s -0.16041073 +1eov 21 C s 32 H s 0.00008435 +1eov 22 C s 32 H s 0.00610765 +1eov 23 C p 32 H s -0.01016378 +1eov 24 C p 32 H s 0.00007647 +1eov 26 C s 32 H s 0.00526064 +1eov 27 C s 32 H s 0.09520044 +1eov 28 C p 32 H s -0.07164787 +1eov 29 C p 32 H s -0.10017665 +1eov 31 H s 32 H s 0.00010566 1eov 32 H s 32 H s 1.00000000 +1eov 33 H s 32 H s 0.00071247 1eov 34 H s 32 H s 0.05049356 +1eov 35 C s 32 H s 0.00112513 +1eov 36 C s 32 H s 0.03261996 +1eov 37 C p 32 H s -0.03180630 +1eov 38 C p 32 H s 0.03531792 1eov 40 C s 32 H s 0.00000018 1eov 41 C s 32 H s 0.00014665 1eov 42 C p 32 H s -0.00018643 1eov 43 C p 32 H s -0.00024260 +1eov 45 H s 32 H s 0.06152635 1eov 46 H s 32 H s 0.00001429 +1eov 47 C s 32 H s 0.00000570 +1eov 48 C s 32 H s 0.00116395 +1eov 49 C p 32 H s -0.00144175 +1eov 50 C p 32 H s 0.00160185 1eov 52 C s 32 H s 0.00000002 1eov 53 C s 32 H s 0.00003531 1eov 54 C p 32 H s -0.00003055 1eov 55 C p 32 H s -0.00007317 +1eov 57 H s 32 H s 0.00023842 1eov 58 H s 32 H s 0.00029688 +1eov 59 H s 32 H s 0.00025053 1eov 60 H s 32 H s 0.00000158 +1eov 1 C s 33 H s 0.00007948 +1eov 2 C s 33 H s 0.00588416 +1eov 3 C p 33 H s 0.00484048 +1eov 4 C p 33 H s -0.00854096 +1eov 6 C s 33 H s 0.00508021 +1eov 7 C s 33 H s 0.09284483 +1eov 8 C p 33 H s 0.12012197 +1eov 9 C p 33 H s -0.00954436 +1eov 11 C s 33 H s 0.00527184 +1eov 12 C s 33 H s 0.09534612 +1eov 13 C p 33 H s 0.03533851 +1eov 14 C p 33 H s -0.11815431 +1eov 16 C s 33 H s 0.00008438 +1eov 17 C s 33 H s 0.00610906 +1eov 18 C p 33 H s 0.00963282 +1eov 19 C p 33 H s -0.00324981 +1eov 21 C s 33 H s 0.06126406 +1eov 22 C s 33 H s 0.48672623 +1eov 23 C p 33 H s 0.36054241 +1eov 24 C p 33 H s -0.29342885 +1eov 26 C s 33 H s 0.00001099 +1eov 27 C s 33 H s 0.00173453 +1eov 28 C p 33 H s 0.00242249 +1eov 29 C p 33 H s -0.00198754 +1eov 31 H s 33 H s 0.05049356 +1eov 32 H s 33 H s 0.00071247 +1eov 33 H s 33 H s 1.00000000 1eov 34 H s 33 H s 0.00010487 +1eov 35 C s 33 H s 0.00086755 +1eov 36 C s 33 H s 0.02741238 +1eov 37 C p 33 H s 0.03595560 +1eov 38 C p 33 H s 0.01883758 1eov 40 C s 33 H s 0.00000023 1eov 41 C s 33 H s 0.00017046 1eov 42 C p 33 H s 0.00010566 1eov 43 C p 33 H s -0.00033655 +1eov 45 H s 33 H s 0.00247869 1eov 46 H s 33 H s 0.00024029 +1eov 47 C s 33 H s 0.00089160 +1eov 48 C s 33 H s 0.02791634 +1eov 49 C p 33 H s 0.02333733 +1eov 50 C p 33 H s 0.03403698 1eov 53 C s 33 H s 0.00000177 1eov 54 C p 33 H s 0.00000176 1eov 55 C p 33 H s -0.00000419 +1eov 57 H s 33 H s 0.08943587 1eov 58 H s 33 H s 0.00000137 +1eov 59 H s 33 H s 0.00263748 1eov 60 H s 33 H s 0.00000016 +1eov 1 C s 34 H s 0.00508021 +1eov 2 C s 34 H s 0.09284483 +1eov 3 C p 34 H s -0.12012197 +1eov 4 C p 34 H s 0.00954436 +1eov 6 C s 34 H s 0.00007948 +1eov 7 C s 34 H s 0.00588416 +1eov 8 C p 34 H s -0.00484048 +1eov 9 C p 34 H s 0.00854096 +1eov 11 C s 34 H s 0.00008438 +1eov 12 C s 34 H s 0.00610906 +1eov 13 C p 34 H s -0.00963282 +1eov 14 C p 34 H s 0.00324981 +1eov 16 C s 34 H s 0.00527184 +1eov 17 C s 34 H s 0.09534612 +1eov 18 C p 34 H s -0.03533851 +1eov 19 C p 34 H s 0.11815431 +1eov 21 C s 34 H s 0.00001099 +1eov 22 C s 34 H s 0.00173453 +1eov 23 C p 34 H s -0.00242249 +1eov 24 C p 34 H s 0.00198754 +1eov 26 C s 34 H s 0.06126406 +1eov 27 C s 34 H s 0.48672623 +1eov 28 C p 34 H s -0.36054241 +1eov 29 C p 34 H s 0.29342885 +1eov 31 H s 34 H s 0.00071247 +1eov 32 H s 34 H s 0.05049356 +1eov 33 H s 34 H s 0.00010487 1eov 34 H s 34 H s 1.00000000 +1eov 35 C s 34 H s 0.00000023 +1eov 36 C s 34 H s 0.00017046 +1eov 37 C p 34 H s -0.00010566 +1eov 38 C p 34 H s 0.00033655 1eov 40 C s 34 H s 0.00086755 1eov 41 C s 34 H s 0.02741238 1eov 42 C p 34 H s -0.03595560 1eov 43 C p 34 H s -0.01883758 +1eov 45 H s 34 H s 0.00024029 1eov 46 H s 34 H s 0.00247869 +1eov 48 C s 34 H s 0.00000177 +1eov 49 C p 34 H s -0.00000176 +1eov 50 C p 34 H s 0.00000419 1eov 52 C s 34 H s 0.00089160 1eov 53 C s 34 H s 0.02791634 1eov 54 C p 34 H s -0.02333733 1eov 55 C p 34 H s -0.03403698 +1eov 57 H s 34 H s 0.00000137 1eov 58 H s 34 H s 0.08943587 +1eov 59 H s 34 H s 0.00000016 1eov 60 H s 34 H s 0.00263748 +1eov 2 C s 35 C s 0.00000008 +1eov 3 C p 35 C s -0.00000006 +1eov 4 C p 35 C s -0.00000035 +1eov 6 C s 35 C s 0.00000014 +1eov 7 C s 35 C s 0.02955008 +1eov 8 C p 35 C s -0.00979645 +1eov 9 C p 35 C s -0.04830601 +1eov 12 C s 35 C s 0.00000212 +1eov 13 C p 35 C s -0.00000372 +1eov 14 C p 35 C s -0.00000677 +1eov 17 C s 35 C s 0.00126083 +1eov 18 C p 35 C s 0.00093897 +1eov 19 C p 35 C s -0.00287258 +1eov 22 C s 35 C s 0.00105093 +1eov 23 C p 35 C s -0.00162169 +1eov 24 C p 35 C s -0.00198813 +1eov 27 C s 35 C s 0.00000250 +1eov 28 C p 35 C s 0.00000131 +1eov 29 C p 35 C s -0.00000898 +1eov 31 H s 35 C s 0.00000018 +1eov 32 H s 35 C s 0.00112513 +1eov 33 H s 35 C s 0.00086755 +1eov 34 H s 35 C s 0.00000023 +1eov 35 C s 35 C s 1.00000000 +1eov 36 C s 35 C s 0.24836239 +1eov 45 H s 35 C s 0.06069832 +1eov 47 C s 35 C s 0.00000224 +1eov 48 C s 35 C s 0.04283572 +1eov 49 C p 35 C s -0.04749158 +1eov 50 C p 35 C s 0.05282630 +1eov 57 H s 35 C s 0.00560597 +1eov 59 H s 35 C s 0.00577180 +1eov 1 C s 36 C s 0.00000008 +1eov 2 C s 36 C s 0.00025963 +1eov 3 C p 36 C s -0.00010165 +1eov 4 C p 36 C s -0.00056623 +1eov 6 C s 36 C s 0.02955008 +1eov 7 C s 36 C s 0.31760627 +1eov 8 C p 36 C s -0.06995906 +1eov 9 C p 36 C s -0.34496609 +1eov 11 C s 36 C s 0.00000212 +1eov 12 C s 36 C s 0.00144485 +1eov 13 C p 36 C s -0.00138894 +1eov 14 C p 36 C s -0.00252926 +1eov 16 C s 36 C s 0.00126083 +1eov 17 C s 36 C s 0.04921444 +1eov 18 C p 36 C s 0.02306259 +1eov 19 C p 36 C s -0.07055543 +1eov 21 C s 36 C s 0.00105093 +1eov 22 C s 36 C s 0.04432484 +1eov 23 C p 36 C s -0.04273885 +1eov 24 C p 36 C s -0.05239599 +1eov 26 C s 36 C s 0.00000250 +1eov 27 C s 36 C s 0.00158230 +1eov 28 C p 36 C s 0.00045458 +1eov 29 C p 36 C s -0.00310848 +1eov 31 H s 36 C s 0.00014665 +1eov 32 H s 36 C s 0.03261996 +1eov 33 H s 36 C s 0.02741238 +1eov 34 H s 36 C s 0.00017046 +1eov 35 C s 36 C s 0.24836239 +1eov 36 C s 36 C s 1.00000000 1eov 41 C s 36 C s 0.00000058 1eov 42 C p 36 C s -0.00000031 1eov 43 C p 36 C s -0.00000168 +1eov 45 H s 36 C s 0.48445018 1eov 46 H s 36 C s 0.00000026 +1eov 47 C s 36 C s 0.04283572 +1eov 48 C s 36 C s 0.39315379 +1eov 49 C p 36 C s -0.27265559 +1eov 50 C p 36 C s 0.30328297 1eov 55 C p 36 C s -0.00000002 +1eov 57 H s 36 C s 0.09965606 1eov 58 H s 36 C s 0.00000008 +1eov 59 H s 36 C s 0.10177202 +1eov 1 C s 37 C p 0.00000006 +1eov 1 C s 38 C p 0.00000035 +1eov 2 C s 37 C p 0.00010165 +1eov 2 C s 38 C p 0.00056623 +1eov 3 C p 37 C p 0.00004318 +1eov 4 C p 37 C p -0.00022448 +1eov 3 C p 38 C p -0.00022448 +1eov 4 C p 38 C p -0.00116687 +1eov 5 C p 39 C p 0.00008348 +1eov 6 C s 37 C p 0.00979645 +1eov 6 C s 38 C p 0.04830601 +1eov 7 C s 37 C p 0.06995906 +1eov 7 C s 38 C p 0.34496609 +1eov 8 C p 37 C p 0.15824148 +1eov 9 C p 37 C p -0.09696631 +1eov 8 C p 38 C p -0.09696631 +1eov 9 C p 38 C p -0.30023182 +1eov 10 C p 39 C p 0.17790623 +1eov 11 C s 37 C p 0.00000372 +1eov 11 C s 38 C p 0.00000677 +1eov 12 C s 37 C p 0.00138894 +1eov 12 C s 38 C p 0.00252926 +1eov 13 C p 37 C p -0.00089148 +1eov 14 C p 37 C p -0.00249775 +1eov 13 C p 38 C p -0.00249775 +1eov 14 C p 38 C p -0.00406824 +1eov 15 C p 39 C p 0.00048016 +1eov 16 C s 37 C p -0.00093897 +1eov 16 C s 38 C p 0.00287258 +1eov 17 C s 37 C p -0.02306259 +1eov 17 C s 38 C p 0.07055543 +1eov 18 C p 37 C p 0.00828382 +1eov 19 C p 37 C p 0.03624265 +1eov 18 C p 38 C p 0.03624265 +1eov 19 C p 38 C p -0.09074670 +1eov 20 C p 39 C p 0.02013053 +1eov 21 C s 37 C p 0.00162169 +1eov 21 C s 38 C p 0.00198813 +1eov 22 C s 37 C p 0.04273885 +1eov 22 C s 38 C p 0.05239599 +1eov 23 C p 37 C p -0.02709252 +1eov 24 C p 37 C p -0.05520745 +1eov 23 C p 38 C p -0.05520745 +1eov 24 C p 38 C p -0.04974235 +1eov 25 C p 39 C p 0.01793961 +1eov 26 C s 37 C p -0.00000131 +1eov 26 C s 38 C p 0.00000898 +1eov 27 C s 37 C p -0.00045458 +1eov 27 C s 38 C p 0.00310848 +1eov 28 C p 37 C p 0.00039288 +1eov 29 C p 37 C p 0.00091838 +1eov 28 C p 38 C p 0.00091838 +1eov 29 C p 38 C p -0.00575278 +1eov 30 C p 39 C p 0.00052719 +1eov 31 H s 37 C p 0.00018643 +1eov 31 H s 38 C p 0.00024260 +1eov 32 H s 37 C p -0.03180630 +1eov 32 H s 38 C p 0.03531792 +1eov 33 H s 37 C p 0.03595560 +1eov 33 H s 38 C p 0.01883758 +1eov 34 H s 37 C p -0.00010566 +1eov 34 H s 38 C p 0.00033655 +1eov 37 C p 37 C p 1.00000000 +1eov 38 C p 38 C p 1.00000000 +1eov 39 C p 39 C p 1.00000000 1eov 41 C s 37 C p 0.00000031 1eov 41 C s 38 C p 0.00000168 1eov 42 C p 37 C p 0.00000002 @@ -952,12 +1903,50 @@ 1eov 42 C p 38 C p -0.00000090 1eov 43 C p 38 C p -0.00000465 1eov 44 C p 39 C p 0.00000018 +1eov 45 H s 37 C p -0.45129445 +1eov 45 H s 38 C p -0.10556299 1eov 46 H s 37 C p 0.00000024 1eov 46 H s 38 C p 0.00000068 +1eov 47 C s 37 C p 0.04749158 +1eov 47 C s 38 C p -0.05282630 +1eov 48 C s 37 C p 0.27265559 +1eov 48 C s 38 C p -0.30328297 +1eov 49 C p 37 C p -0.01649701 +1eov 50 C p 37 C p 0.28028940 +1eov 49 C p 38 C p 0.28028940 +1eov 50 C p 38 C p -0.07628724 +1eov 51 C p 39 C p 0.23548705 1eov 53 C s 38 C p 0.00000002 1eov 55 C p 38 C p -0.00000007 +1eov 57 H s 37 C p 0.11842404 +1eov 57 H s 38 C p -0.04900979 1eov 58 H s 37 C p -0.00000003 1eov 58 H s 38 C p 0.00000023 +1eov 59 H s 37 C p 0.03568903 +1eov 59 H s 38 C p -0.12555351 +1eov 1 C s 40 C s 0.00000014 +1eov 2 C s 40 C s 0.02955008 +1eov 3 C p 40 C s 0.00979645 +1eov 4 C p 40 C s 0.04830601 +1eov 7 C s 40 C s 0.00000008 +1eov 8 C p 40 C s 0.00000006 +1eov 9 C p 40 C s 0.00000035 +1eov 12 C s 40 C s 0.00126083 +1eov 13 C p 40 C s -0.00093897 +1eov 14 C p 40 C s 0.00287258 +1eov 17 C s 40 C s 0.00000212 +1eov 18 C p 40 C s 0.00000372 +1eov 19 C p 40 C s 0.00000677 +1eov 22 C s 40 C s 0.00000250 +1eov 23 C p 40 C s -0.00000131 +1eov 24 C p 40 C s 0.00000898 +1eov 27 C s 40 C s 0.00105093 +1eov 28 C p 40 C s 0.00162169 +1eov 29 C p 40 C s 0.00198813 +1eov 31 H s 40 C s 0.00112513 +1eov 32 H s 40 C s 0.00000018 +1eov 33 H s 40 C s 0.00000023 +1eov 34 H s 40 C s 0.00086755 1eov 40 C s 40 C s 1.00000000 1eov 41 C s 40 C s 0.24836239 1eov 46 H s 40 C s 0.06069832 @@ -967,19 +1956,127 @@ 1eov 55 C p 40 C s -0.05282630 1eov 58 H s 40 C s 0.00560597 1eov 60 H s 40 C s 0.00577180 +1eov 1 C s 41 C s 0.02955008 +1eov 2 C s 41 C s 0.31760627 +1eov 3 C p 41 C s 0.06995906 +1eov 4 C p 41 C s 0.34496609 +1eov 6 C s 41 C s 0.00000008 +1eov 7 C s 41 C s 0.00025963 +1eov 8 C p 41 C s 0.00010165 +1eov 9 C p 41 C s 0.00056623 +1eov 11 C s 41 C s 0.00126083 +1eov 12 C s 41 C s 0.04921444 +1eov 13 C p 41 C s -0.02306259 +1eov 14 C p 41 C s 0.07055543 +1eov 16 C s 41 C s 0.00000212 +1eov 17 C s 41 C s 0.00144485 +1eov 18 C p 41 C s 0.00138894 +1eov 19 C p 41 C s 0.00252926 +1eov 21 C s 41 C s 0.00000250 +1eov 22 C s 41 C s 0.00158230 +1eov 23 C p 41 C s -0.00045458 +1eov 24 C p 41 C s 0.00310848 +1eov 26 C s 41 C s 0.00105093 +1eov 27 C s 41 C s 0.04432484 +1eov 28 C p 41 C s 0.04273885 +1eov 29 C p 41 C s 0.05239599 +1eov 31 H s 41 C s 0.03261996 +1eov 32 H s 41 C s 0.00014665 +1eov 33 H s 41 C s 0.00017046 +1eov 34 H s 41 C s 0.02741238 +1eov 36 C s 41 C s 0.00000058 +1eov 37 C p 41 C s 0.00000031 +1eov 38 C p 41 C s 0.00000168 +1eov 40 C s 41 C s 0.24836239 1eov 41 C s 41 C s 1.00000000 +1eov 45 H s 41 C s 0.00000026 1eov 46 H s 41 C s 0.48445018 +1eov 50 C p 41 C s 0.00000002 1eov 52 C s 41 C s 0.04283572 1eov 53 C s 41 C s 0.39315379 1eov 54 C p 41 C s 0.27265559 1eov 55 C p 41 C s -0.30328297 +1eov 57 H s 41 C s 0.00000008 1eov 58 H s 41 C s 0.09965606 1eov 60 H s 41 C s 0.10177202 +1eov 1 C s 42 C p -0.00979645 +1eov 1 C s 43 C p -0.04830601 +1eov 2 C s 42 C p -0.06995906 +1eov 2 C s 43 C p -0.34496609 +1eov 3 C p 42 C p 0.15824148 +1eov 4 C p 42 C p -0.09696631 +1eov 3 C p 43 C p -0.09696631 +1eov 4 C p 43 C p -0.30023182 +1eov 5 C p 44 C p 0.17790623 +1eov 6 C s 42 C p -0.00000006 +1eov 6 C s 43 C p -0.00000035 +1eov 7 C s 42 C p -0.00010165 +1eov 7 C s 43 C p -0.00056623 +1eov 8 C p 42 C p 0.00004318 +1eov 9 C p 42 C p -0.00022448 +1eov 8 C p 43 C p -0.00022448 +1eov 9 C p 43 C p -0.00116687 +1eov 10 C p 44 C p 0.00008348 +1eov 11 C s 42 C p 0.00093897 +1eov 11 C s 43 C p -0.00287258 +1eov 12 C s 42 C p 0.02306259 +1eov 12 C s 43 C p -0.07055543 +1eov 13 C p 42 C p 0.00828382 +1eov 14 C p 42 C p 0.03624265 +1eov 13 C p 43 C p 0.03624265 +1eov 14 C p 43 C p -0.09074670 +1eov 15 C p 44 C p 0.02013053 +1eov 16 C s 42 C p -0.00000372 +1eov 16 C s 43 C p -0.00000677 +1eov 17 C s 42 C p -0.00138894 +1eov 17 C s 43 C p -0.00252926 +1eov 18 C p 42 C p -0.00089148 +1eov 19 C p 42 C p -0.00249775 +1eov 18 C p 43 C p -0.00249775 +1eov 19 C p 43 C p -0.00406824 +1eov 20 C p 44 C p 0.00048016 +1eov 21 C s 42 C p 0.00000131 +1eov 21 C s 43 C p -0.00000898 +1eov 22 C s 42 C p 0.00045458 +1eov 22 C s 43 C p -0.00310848 +1eov 23 C p 42 C p 0.00039288 +1eov 24 C p 42 C p 0.00091838 +1eov 23 C p 43 C p 0.00091838 +1eov 24 C p 43 C p -0.00575278 +1eov 25 C p 44 C p 0.00052719 +1eov 26 C s 42 C p -0.00162169 +1eov 26 C s 43 C p -0.00198813 +1eov 27 C s 42 C p -0.04273885 +1eov 27 C s 43 C p -0.05239599 +1eov 28 C p 42 C p -0.02709252 +1eov 29 C p 42 C p -0.05520745 +1eov 28 C p 43 C p -0.05520745 +1eov 29 C p 43 C p -0.04974235 +1eov 30 C p 44 C p 0.01793961 +1eov 31 H s 42 C p 0.03180630 +1eov 31 H s 43 C p -0.03531792 +1eov 32 H s 42 C p -0.00018643 +1eov 32 H s 43 C p -0.00024260 +1eov 33 H s 42 C p 0.00010566 +1eov 33 H s 43 C p -0.00033655 +1eov 34 H s 42 C p -0.03595560 +1eov 34 H s 43 C p -0.01883758 +1eov 36 C s 42 C p -0.00000031 +1eov 36 C s 43 C p -0.00000168 +1eov 37 C p 42 C p 0.00000002 +1eov 38 C p 42 C p -0.00000090 +1eov 37 C p 43 C p -0.00000090 +1eov 38 C p 43 C p -0.00000465 +1eov 39 C p 44 C p 0.00000018 1eov 42 C p 42 C p 1.00000000 1eov 43 C p 43 C p 1.00000000 1eov 44 C p 44 C p 1.00000000 +1eov 45 H s 42 C p -0.00000024 +1eov 45 H s 43 C p -0.00000068 1eov 46 H s 42 C p 0.45129445 1eov 46 H s 43 C p 0.10556299 +1eov 48 C s 43 C p -0.00000002 +1eov 50 C p 43 C p -0.00000007 1eov 52 C s 42 C p -0.04749158 1eov 52 C s 43 C p 0.05282630 1eov 53 C s 42 C p -0.27265559 @@ -989,27 +2086,373 @@ 1eov 54 C p 43 C p 0.28028940 1eov 55 C p 43 C p -0.07628724 1eov 56 C p 44 C p 0.23548705 +1eov 57 H s 42 C p 0.00000003 +1eov 57 H s 43 C p -0.00000023 1eov 58 H s 42 C p -0.11842404 1eov 58 H s 43 C p 0.04900979 1eov 60 H s 42 C p -0.03568903 1eov 60 H s 43 C p 0.12555351 +1eov 1 C s 45 H s 0.00000007 +1eov 2 C s 45 H s 0.00008155 +1eov 3 C p 45 H s -0.00006594 +1eov 4 C p 45 H s -0.00016267 +1eov 6 C s 45 H s 0.00486942 +1eov 7 C s 45 H s 0.09006704 +1eov 8 C p 45 H s -0.07313632 +1eov 9 C p 45 H s -0.09176940 +1eov 11 C s 45 H s 0.00000027 +1eov 12 C s 45 H s 0.00018766 +1eov 13 C p 45 H s -0.00024262 +1eov 14 C p 45 H s -0.00030060 +1eov 16 C s 45 H s 0.00131509 +1eov 17 C s 45 H s 0.03623781 +1eov 18 C p 45 H s -0.00569515 +1eov 19 C p 45 H s -0.05195639 +1eov 21 C s 45 H s 0.00006428 +1eov 22 C s 45 H s 0.00515280 +1eov 23 C p 45 H s -0.00667173 +1eov 24 C p 45 H s -0.00554480 +1eov 26 C s 45 H s 0.00000552 +1eov 27 C s 45 H s 0.00114126 +1eov 28 C p 45 H s -0.00027079 +1eov 29 C p 45 H s -0.00209825 +1eov 31 H s 45 H s 0.00001429 +1eov 32 H s 45 H s 0.06152635 +1eov 33 H s 45 H s 0.00247869 +1eov 34 H s 45 H s 0.00024029 +1eov 35 C s 45 H s 0.06069832 +1eov 36 C s 45 H s 0.48445018 +1eov 37 C p 45 H s -0.45129445 +1eov 38 C p 45 H s -0.10556299 +1eov 41 C s 45 H s 0.00000026 +1eov 42 C p 45 H s -0.00000024 +1eov 43 C p 45 H s -0.00000068 +1eov 45 H s 45 H s 1.00000000 1eov 46 H s 45 H s 0.00000006 +1eov 47 C s 45 H s 0.00610975 +1eov 48 C s 45 H s 0.10603987 +1eov 49 C p 45 H s -0.12644547 +1eov 50 C p 45 H s 0.04804938 1eov 55 C p 45 H s -0.00000003 +1eov 57 H s 45 H s 0.01461637 1eov 58 H s 45 H s 0.00000015 +1eov 59 H s 45 H s 0.05493265 +1eov 1 C s 46 H s 0.00486942 +1eov 2 C s 46 H s 0.09006704 +1eov 3 C p 46 H s 0.07313632 +1eov 4 C p 46 H s 0.09176940 +1eov 6 C s 46 H s 0.00000007 +1eov 7 C s 46 H s 0.00008155 +1eov 8 C p 46 H s 0.00006594 +1eov 9 C p 46 H s 0.00016267 +1eov 11 C s 46 H s 0.00131509 +1eov 12 C s 46 H s 0.03623781 +1eov 13 C p 46 H s 0.00569515 +1eov 14 C p 46 H s 0.05195639 +1eov 16 C s 46 H s 0.00000027 +1eov 17 C s 46 H s 0.00018766 +1eov 18 C p 46 H s 0.00024262 +1eov 19 C p 46 H s 0.00030060 +1eov 21 C s 46 H s 0.00000552 +1eov 22 C s 46 H s 0.00114126 +1eov 23 C p 46 H s 0.00027079 +1eov 24 C p 46 H s 0.00209825 +1eov 26 C s 46 H s 0.00006428 +1eov 27 C s 46 H s 0.00515280 +1eov 28 C p 46 H s 0.00667173 +1eov 29 C p 46 H s 0.00554480 +1eov 31 H s 46 H s 0.06152635 +1eov 32 H s 46 H s 0.00001429 +1eov 33 H s 46 H s 0.00024029 +1eov 34 H s 46 H s 0.00247869 +1eov 36 C s 46 H s 0.00000026 +1eov 37 C p 46 H s 0.00000024 +1eov 38 C p 46 H s 0.00000068 +1eov 40 C s 46 H s 0.06069832 +1eov 41 C s 46 H s 0.48445018 +1eov 42 C p 46 H s 0.45129445 +1eov 43 C p 46 H s 0.10556299 +1eov 45 H s 46 H s 0.00000006 1eov 46 H s 46 H s 1.00000000 +1eov 50 C p 46 H s 0.00000003 1eov 52 C s 46 H s 0.00610975 1eov 53 C s 46 H s 0.10603987 1eov 54 C p 46 H s 0.12644547 1eov 55 C p 46 H s -0.04804938 +1eov 57 H s 46 H s 0.00000015 1eov 58 H s 46 H s 0.01461637 1eov 60 H s 46 H s 0.05493265 +1eov 7 C s 47 C s 0.00115883 +1eov 8 C p 47 C s 0.00066296 +1eov 9 C p 47 C s -0.00272201 +1eov 12 C s 47 C s 0.00000004 +1eov 13 C p 47 C s -0.00000004 +1eov 14 C p 47 C s -0.00000017 +1eov 17 C s 47 C s 0.00000298 +1eov 18 C p 47 C s 0.00000476 +1eov 19 C p 47 C s -0.00000960 +1eov 22 C s 47 C s 0.00012010 +1eov 23 C p 47 C s -0.00008248 +1eov 24 C p 47 C s -0.00034098 +1eov 31 H s 47 C s 0.00000002 +1eov 32 H s 47 C s 0.00000570 +1eov 33 H s 47 C s 0.00089160 +1eov 35 C s 47 C s 0.00000224 +1eov 36 C s 47 C s 0.04283572 +1eov 37 C p 47 C s 0.04749158 +1eov 38 C p 47 C s -0.05282630 +1eov 45 H s 47 C s 0.00610975 +1eov 47 C s 47 C s 1.00000000 +1eov 48 C s 47 C s 0.24836239 +1eov 57 H s 47 C s 0.06141276 +1eov 59 H s 47 C s 0.06131344 +1eov 2 C s 48 C s 0.00000715 +1eov 3 C p 48 C s 0.00000046 +1eov 4 C p 48 C s -0.00001894 +1eov 6 C s 48 C s 0.00115883 +1eov 7 C s 48 C s 0.04688356 +1eov 8 C p 48 C s 0.01682232 +1eov 9 C p 48 C s -0.06907006 +1eov 11 C s 48 C s 0.00000004 +1eov 12 C s 48 C s 0.00017692 +1eov 13 C p 48 C s -0.00008529 +1eov 14 C p 48 C s -0.00039134 +1eov 16 C s 48 C s 0.00000298 +1eov 17 C s 48 C s 0.00173815 +1eov 18 C p 48 C s 0.00152273 +1eov 19 C p 48 C s -0.00307343 +1eov 21 C s 48 C s 0.00012010 +1eov 22 C s 48 C s 0.01304826 +1eov 23 C p 48 C s -0.00523759 +1eov 24 C p 48 C s -0.02165256 +1eov 27 C s 48 C s 0.00002499 +1eov 28 C p 48 C s 0.00001818 +1eov 29 C p 48 C s -0.00005985 +1eov 31 H s 48 C s 0.00003531 +1eov 32 H s 48 C s 0.00116395 +1eov 33 H s 48 C s 0.02791634 +1eov 34 H s 48 C s 0.00000177 +1eov 35 C s 48 C s 0.04283572 +1eov 36 C s 48 C s 0.39315379 +1eov 37 C p 48 C s 0.27265559 +1eov 38 C p 48 C s -0.30328297 +1eov 43 C p 48 C s -0.00000002 +1eov 45 H s 48 C s 0.10603987 +1eov 47 C s 48 C s 0.24836239 +1eov 48 C s 48 C s 1.00000000 +1eov 57 H s 48 C s 0.48732173 +1eov 59 H s 48 C s 0.48692411 +1eov 2 C s 49 C p -0.00000046 +1eov 2 C s 50 C p 0.00001894 +1eov 3 C p 49 C p 0.00000222 +1eov 4 C p 49 C p 0.00000121 +1eov 3 C p 50 C p 0.00000121 +1eov 4 C p 50 C p -0.00004804 +1eov 5 C p 51 C p 0.00000225 +1eov 6 C s 49 C p -0.00066296 +1eov 6 C s 50 C p 0.00272201 +1eov 7 C s 49 C p -0.01682232 +1eov 7 C s 50 C p 0.06907006 +1eov 8 C p 49 C p 0.01247550 +1eov 9 C p 49 C p 0.02712642 +1eov 8 C p 50 C p 0.02712642 +1eov 9 C p 50 C p -0.09229496 +1eov 10 C p 51 C p 0.01908226 +1eov 11 C s 49 C p 0.00000004 +1eov 11 C s 50 C p 0.00000017 +1eov 12 C s 49 C p 0.00008529 +1eov 12 C s 50 C p 0.00039134 +1eov 13 C p 49 C p 0.00001509 +1eov 14 C p 49 C p -0.00019062 +1eov 13 C p 50 C p -0.00019062 +1eov 14 C p 50 C p -0.00081804 +1eov 15 C p 51 C p 0.00005663 +1eov 16 C s 49 C p -0.00000476 +1eov 16 C s 50 C p 0.00000960 +1eov 17 C s 49 C p -0.00152273 +1eov 17 C s 50 C p 0.00307343 +1eov 18 C p 49 C p -0.00079266 +1eov 19 C p 49 C p 0.00277198 +1eov 18 C p 50 C p 0.00277198 +1eov 19 C p 50 C p -0.00501418 +1eov 20 C p 51 C p 0.00058071 +1eov 21 C s 49 C p 0.00008248 +1eov 21 C s 50 C p 0.00034098 +1eov 22 C s 49 C p 0.00523759 +1eov 22 C s 50 C p 0.02165256 +1eov 23 C p 49 C p 0.00254866 +1eov 24 C p 49 C p -0.00923685 +1eov 23 C p 50 C p -0.00923685 +1eov 24 C p 50 C p -0.03340281 +1eov 25 C p 51 C p 0.00478298 +1eov 27 C s 49 C p -0.00001818 +1eov 27 C s 50 C p 0.00005985 +1eov 28 C p 49 C p -0.00000539 +1eov 29 C p 49 C p 0.00004373 +1eov 28 C p 50 C p 0.00004373 +1eov 29 C p 50 C p -0.00013604 +1eov 30 C p 51 C p 0.00000789 +1eov 31 H s 49 C p 0.00003055 +1eov 31 H s 50 C p 0.00007317 +1eov 32 H s 49 C p -0.00144175 +1eov 32 H s 50 C p 0.00160185 +1eov 33 H s 49 C p 0.02333733 +1eov 33 H s 50 C p 0.03403698 +1eov 34 H s 49 C p -0.00000176 +1eov 34 H s 50 C p 0.00000419 +1eov 35 C s 49 C p -0.04749158 +1eov 35 C s 50 C p 0.05282630 +1eov 36 C s 49 C p -0.27265559 +1eov 36 C s 50 C p 0.30328297 +1eov 37 C p 49 C p -0.01649701 +1eov 38 C p 49 C p 0.28028940 +1eov 37 C p 50 C p 0.28028940 +1eov 38 C p 50 C p -0.07628724 +1eov 39 C p 51 C p 0.23548705 +1eov 41 C s 50 C p 0.00000002 +1eov 43 C p 50 C p -0.00000007 +1eov 45 H s 49 C p -0.12644547 +1eov 45 H s 50 C p 0.04804938 +1eov 46 H s 50 C p 0.00000003 +1eov 49 C p 49 C p 1.00000000 +1eov 50 C p 50 C p 1.00000000 +1eov 51 C p 51 C p 1.00000000 +1eov 57 H s 49 C p 0.45887461 +1eov 57 H s 50 C p 0.07654896 +1eov 59 H s 49 C p -0.13399724 +1eov 59 H s 50 C p -0.44524958 +1eov 2 C s 52 C s 0.00115883 +1eov 3 C p 52 C s -0.00066296 +1eov 4 C p 52 C s 0.00272201 +1eov 12 C s 52 C s 0.00000298 +1eov 13 C p 52 C s -0.00000476 +1eov 14 C p 52 C s 0.00000960 +1eov 17 C s 52 C s 0.00000004 +1eov 18 C p 52 C s 0.00000004 +1eov 19 C p 52 C s 0.00000017 +1eov 27 C s 52 C s 0.00012010 +1eov 28 C p 52 C s 0.00008248 +1eov 29 C p 52 C s 0.00034098 +1eov 31 H s 52 C s 0.00000570 +1eov 32 H s 52 C s 0.00000002 +1eov 34 H s 52 C s 0.00089160 +1eov 40 C s 52 C s 0.00000224 +1eov 41 C s 52 C s 0.04283572 +1eov 42 C p 52 C s -0.04749158 +1eov 43 C p 52 C s 0.05282630 +1eov 46 H s 52 C s 0.00610975 1eov 52 C s 52 C s 1.00000000 1eov 53 C s 52 C s 0.24836239 1eov 58 H s 52 C s 0.06141276 1eov 60 H s 52 C s 0.06131344 +1eov 1 C s 53 C s 0.00115883 +1eov 2 C s 53 C s 0.04688356 +1eov 3 C p 53 C s -0.01682232 +1eov 4 C p 53 C s 0.06907006 +1eov 7 C s 53 C s 0.00000715 +1eov 8 C p 53 C s -0.00000046 +1eov 9 C p 53 C s 0.00001894 +1eov 11 C s 53 C s 0.00000298 +1eov 12 C s 53 C s 0.00173815 +1eov 13 C p 53 C s -0.00152273 +1eov 14 C p 53 C s 0.00307343 +1eov 16 C s 53 C s 0.00000004 +1eov 17 C s 53 C s 0.00017692 +1eov 18 C p 53 C s 0.00008529 +1eov 19 C p 53 C s 0.00039134 +1eov 22 C s 53 C s 0.00002499 +1eov 23 C p 53 C s -0.00001818 +1eov 24 C p 53 C s 0.00005985 +1eov 26 C s 53 C s 0.00012010 +1eov 27 C s 53 C s 0.01304826 +1eov 28 C p 53 C s 0.00523759 +1eov 29 C p 53 C s 0.02165256 +1eov 31 H s 53 C s 0.00116395 +1eov 32 H s 53 C s 0.00003531 +1eov 33 H s 53 C s 0.00000177 +1eov 34 H s 53 C s 0.02791634 +1eov 38 C p 53 C s 0.00000002 +1eov 40 C s 53 C s 0.04283572 +1eov 41 C s 53 C s 0.39315379 +1eov 42 C p 53 C s -0.27265559 +1eov 43 C p 53 C s 0.30328297 +1eov 46 H s 53 C s 0.10603987 +1eov 52 C s 53 C s 0.24836239 1eov 53 C s 53 C s 1.00000000 1eov 58 H s 53 C s 0.48732173 1eov 60 H s 53 C s 0.48692411 +1eov 1 C s 54 C p 0.00066296 +1eov 1 C s 55 C p -0.00272201 +1eov 2 C s 54 C p 0.01682232 +1eov 2 C s 55 C p -0.06907006 +1eov 3 C p 54 C p 0.01247550 +1eov 4 C p 54 C p 0.02712642 +1eov 3 C p 55 C p 0.02712642 +1eov 4 C p 55 C p -0.09229496 +1eov 5 C p 56 C p 0.01908226 +1eov 7 C s 54 C p 0.00000046 +1eov 7 C s 55 C p -0.00001894 +1eov 8 C p 54 C p 0.00000222 +1eov 9 C p 54 C p 0.00000121 +1eov 8 C p 55 C p 0.00000121 +1eov 9 C p 55 C p -0.00004804 +1eov 10 C p 56 C p 0.00000225 +1eov 11 C s 54 C p 0.00000476 +1eov 11 C s 55 C p -0.00000960 +1eov 12 C s 54 C p 0.00152273 +1eov 12 C s 55 C p -0.00307343 +1eov 13 C p 54 C p -0.00079266 +1eov 14 C p 54 C p 0.00277198 +1eov 13 C p 55 C p 0.00277198 +1eov 14 C p 55 C p -0.00501418 +1eov 15 C p 56 C p 0.00058071 +1eov 16 C s 54 C p -0.00000004 +1eov 16 C s 55 C p -0.00000017 +1eov 17 C s 54 C p -0.00008529 +1eov 17 C s 55 C p -0.00039134 +1eov 18 C p 54 C p 0.00001509 +1eov 19 C p 54 C p -0.00019062 +1eov 18 C p 55 C p -0.00019062 +1eov 19 C p 55 C p -0.00081804 +1eov 20 C p 56 C p 0.00005663 +1eov 22 C s 54 C p 0.00001818 +1eov 22 C s 55 C p -0.00005985 +1eov 23 C p 54 C p -0.00000539 +1eov 24 C p 54 C p 0.00004373 +1eov 23 C p 55 C p 0.00004373 +1eov 24 C p 55 C p -0.00013604 +1eov 25 C p 56 C p 0.00000789 +1eov 26 C s 54 C p -0.00008248 +1eov 26 C s 55 C p -0.00034098 +1eov 27 C s 54 C p -0.00523759 +1eov 27 C s 55 C p -0.02165256 +1eov 28 C p 54 C p 0.00254866 +1eov 29 C p 54 C p -0.00923685 +1eov 28 C p 55 C p -0.00923685 +1eov 29 C p 55 C p -0.03340281 +1eov 30 C p 56 C p 0.00478298 +1eov 31 H s 54 C p 0.00144175 +1eov 31 H s 55 C p -0.00160185 +1eov 32 H s 54 C p -0.00003055 +1eov 32 H s 55 C p -0.00007317 +1eov 33 H s 54 C p 0.00000176 +1eov 33 H s 55 C p -0.00000419 +1eov 34 H s 54 C p -0.02333733 +1eov 34 H s 55 C p -0.03403698 +1eov 36 C s 55 C p -0.00000002 +1eov 38 C p 55 C p -0.00000007 +1eov 40 C s 54 C p 0.04749158 +1eov 40 C s 55 C p -0.05282630 +1eov 41 C s 54 C p 0.27265559 +1eov 41 C s 55 C p -0.30328297 +1eov 42 C p 54 C p -0.01649701 +1eov 43 C p 54 C p 0.28028940 +1eov 42 C p 55 C p 0.28028940 +1eov 43 C p 55 C p -0.07628724 +1eov 44 C p 56 C p 0.23548705 +1eov 45 H s 55 C p -0.00000003 +1eov 46 H s 54 C p 0.12644547 +1eov 46 H s 55 C p -0.04804938 1eov 54 C p 54 C p 1.00000000 1eov 55 C p 55 C p 1.00000000 1eov 56 C p 56 C p 1.00000000 @@ -1017,8 +2460,159 @@ 1eov 58 H s 55 C p -0.07654896 1eov 60 H s 54 C p 0.13399724 1eov 60 H s 55 C p 0.44524958 +1eov 2 C s 57 H s 0.00002394 +1eov 3 C p 57 H s 0.00001260 +1eov 4 C p 57 H s -0.00005332 +1eov 6 C s 57 H s 0.00074066 +1eov 7 C s 57 H s 0.02467969 +1eov 8 C p 57 H s 0.02185510 +1eov 9 C p 57 H s -0.02971915 +1eov 11 C s 57 H s 0.00000294 +1eov 12 C s 57 H s 0.00077915 +1eov 13 C p 57 H s 0.00004529 +1eov 14 C p 57 H s -0.00147734 +1eov 16 C s 57 H s 0.00000237 +1eov 17 C s 57 H s 0.00068401 +1eov 18 C p 57 H s 0.00085251 +1eov 19 C p 57 H s -0.00099155 +1eov 21 C s 57 H s 0.00076401 +1eov 22 C s 57 H s 0.02519238 +1eov 23 C p 57 H s 0.00476106 +1eov 24 C p 57 H s -0.03728513 +1eov 27 C s 57 H s 0.00002475 +1eov 28 C p 57 H s 0.00002728 +1eov 29 C p 57 H s -0.00004952 +1eov 31 H s 57 H s 0.00029688 +1eov 32 H s 57 H s 0.00023842 +1eov 33 H s 57 H s 0.08943587 +1eov 34 H s 57 H s 0.00000137 +1eov 35 C s 57 H s 0.00560597 +1eov 36 C s 57 H s 0.09965606 +1eov 37 C p 57 H s 0.11842404 +1eov 38 C p 57 H s -0.04900979 +1eov 41 C s 57 H s 0.00000008 +1eov 42 C p 57 H s 0.00000003 +1eov 43 C p 57 H s -0.00000023 +1eov 45 H s 57 H s 0.01461637 +1eov 46 H s 57 H s 0.00000015 +1eov 47 C s 57 H s 0.06141276 +1eov 48 C s 57 H s 0.48732173 +1eov 49 C p 57 H s 0.45887461 +1eov 50 C p 57 H s 0.07654896 +1eov 57 H s 57 H s 1.00000000 +1eov 59 H s 57 H s 0.14896581 +1eov 1 C s 58 H s 0.00074066 +1eov 2 C s 58 H s 0.02467969 +1eov 3 C p 58 H s -0.02185510 +1eov 4 C p 58 H s 0.02971915 +1eov 7 C s 58 H s 0.00002394 +1eov 8 C p 58 H s -0.00001260 +1eov 9 C p 58 H s 0.00005332 +1eov 11 C s 58 H s 0.00000237 +1eov 12 C s 58 H s 0.00068401 +1eov 13 C p 58 H s -0.00085251 +1eov 14 C p 58 H s 0.00099155 +1eov 16 C s 58 H s 0.00000294 +1eov 17 C s 58 H s 0.00077915 +1eov 18 C p 58 H s -0.00004529 +1eov 19 C p 58 H s 0.00147734 +1eov 22 C s 58 H s 0.00002475 +1eov 23 C p 58 H s -0.00002728 +1eov 24 C p 58 H s 0.00004952 +1eov 26 C s 58 H s 0.00076401 +1eov 27 C s 58 H s 0.02519238 +1eov 28 C p 58 H s -0.00476106 +1eov 29 C p 58 H s 0.03728513 +1eov 31 H s 58 H s 0.00023842 +1eov 32 H s 58 H s 0.00029688 +1eov 33 H s 58 H s 0.00000137 +1eov 34 H s 58 H s 0.08943587 +1eov 36 C s 58 H s 0.00000008 +1eov 37 C p 58 H s -0.00000003 +1eov 38 C p 58 H s 0.00000023 +1eov 40 C s 58 H s 0.00560597 +1eov 41 C s 58 H s 0.09965606 +1eov 42 C p 58 H s -0.11842404 +1eov 43 C p 58 H s 0.04900979 +1eov 45 H s 58 H s 0.00000015 +1eov 46 H s 58 H s 0.01461637 +1eov 52 C s 58 H s 0.06141276 +1eov 53 C s 58 H s 0.48732173 +1eov 54 C p 58 H s -0.45887461 +1eov 55 C p 58 H s -0.07654896 1eov 58 H s 58 H s 1.00000000 1eov 60 H s 58 H s 0.14896581 +1eov 2 C s 59 H s 0.00000031 +1eov 3 C p 59 H s -0.00000003 +1eov 4 C p 59 H s -0.00000084 +1eov 6 C s 59 H s 0.00005752 +1eov 7 C s 59 H s 0.00480795 +1eov 8 C p 59 H s 0.00065662 +1eov 9 C p 59 H s -0.00810581 +1eov 12 C s 59 H s 0.00000753 +1eov 13 C p 59 H s -0.00000414 +1eov 14 C p 59 H s -0.00001769 +1eov 16 C s 59 H s 0.00000028 +1eov 17 C s 59 H s 0.00019170 +1eov 18 C p 59 H s 0.00011575 +1eov 19 C p 59 H s -0.00037677 +1eov 21 C s 59 H s 0.00000329 +1eov 22 C s 59 H s 0.00083477 +1eov 23 C p 59 H s -0.00039290 +1eov 24 C p 59 H s -0.00152729 +1eov 27 C s 59 H s 0.00000176 +1eov 28 C p 59 H s 0.00000086 +1eov 29 C p 59 H s -0.00000442 +1eov 31 H s 59 H s 0.00000158 +1eov 32 H s 59 H s 0.00025053 +1eov 33 H s 59 H s 0.00263748 +1eov 34 H s 59 H s 0.00000016 +1eov 35 C s 59 H s 0.00577180 +1eov 36 C s 59 H s 0.10177202 +1eov 37 C p 59 H s 0.03568903 +1eov 38 C p 59 H s -0.12555351 +1eov 45 H s 59 H s 0.05493265 +1eov 47 C s 59 H s 0.06131344 +1eov 48 C s 59 H s 0.48692411 +1eov 49 C p 59 H s -0.13399724 +1eov 50 C p 59 H s -0.44524958 +1eov 57 H s 59 H s 0.14896581 +1eov 59 H s 59 H s 1.00000000 +1eov 1 C s 60 H s 0.00005752 +1eov 2 C s 60 H s 0.00480795 +1eov 3 C p 60 H s -0.00065662 +1eov 4 C p 60 H s 0.00810581 +1eov 7 C s 60 H s 0.00000031 +1eov 8 C p 60 H s 0.00000003 +1eov 9 C p 60 H s 0.00000084 +1eov 11 C s 60 H s 0.00000028 +1eov 12 C s 60 H s 0.00019170 +1eov 13 C p 60 H s -0.00011575 +1eov 14 C p 60 H s 0.00037677 +1eov 17 C s 60 H s 0.00000753 +1eov 18 C p 60 H s 0.00000414 +1eov 19 C p 60 H s 0.00001769 +1eov 22 C s 60 H s 0.00000176 +1eov 23 C p 60 H s -0.00000086 +1eov 24 C p 60 H s 0.00000442 +1eov 26 C s 60 H s 0.00000329 +1eov 27 C s 60 H s 0.00083477 +1eov 28 C p 60 H s 0.00039290 +1eov 29 C p 60 H s 0.00152729 +1eov 31 H s 60 H s 0.00025053 +1eov 32 H s 60 H s 0.00000158 +1eov 33 H s 60 H s 0.00000016 +1eov 34 H s 60 H s 0.00263748 +1eov 40 C s 60 H s 0.00577180 +1eov 41 C s 60 H s 0.10177202 +1eov 42 C p 60 H s -0.03568903 +1eov 43 C p 60 H s 0.12555351 +1eov 46 H s 60 H s 0.05493265 +1eov 52 C s 60 H s 0.06131344 +1eov 53 C s 60 H s 0.48692411 +1eov 54 C p 60 H s 0.13399724 +1eov 55 C p 60 H s 0.44524958 +1eov 58 H s 60 H s 0.14896581 1eov 60 H s 60 H s 1.00000000 ==================================== End overlap 1-e integrals @@ -1041,9 +2635,9 @@ Maximum number of iterations: 30 AO basis - number of functions: 60 number of shells: 40 - Convergence on energy requested: 1.00D-07 - Convergence on density requested: 1.00D-05 - Convergence on gradient requested: 5.00D-04 + Convergence on energy requested: 1.00D-07 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 XC Information -------------- @@ -1072,7 +2666,7 @@ Convergence aids based upon iterative change in total energy or number of iterations. Levelshifting, if invoked, occurs when the - HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 DIIS, if invoked, will attempt to extrapolate using up to (NFOCK): 10 stored Fock matrices. @@ -1084,11 +2678,11 @@ Screening Tolerance Information ------------------------------- - Density screening/tol_rho: 1.00D-11 + Density screening/tol_rho: 1.00D-11 AO Gaussian exp screening on grid/accAOfunc: 16 CD Gaussian exp screening on grid/accCDfunc: 20 XC Gaussian exp screening on grid/accXCfunc: 20 - Schwarz screening/accCoul: 1.00D-08 + Schwarz screening/accCoul: 1.00D-08 Superposition of Atomic Density Guess @@ -1125,17 +2719,8 @@ 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 bu - Time after variat. SCF: 0.8 - Time prior to 1st pass: 0.8 - - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% - + Time after variat. SCF: 0.2 + Time prior to 1st pass: 0.2 Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 @@ -1143,31 +2728,31 @@ Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 5.44 5443610 - Stack Space remaining (MW): 13.11 13106284 + Heap Space remaining (MW): 0.00 242 + Stack Space remaining (MW): 13.11 13106276 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.2544334264 -8.28D+02 1.42D-02 3.78D-01 10.4 - d= 0,ls=0.0,diis 2 -382.3017299251 -4.73D-02 6.99D-03 3.82D-02 14.4 - d= 0,ls=0.0,diis 3 -382.2954336496 6.30D-03 4.21D-03 7.95D-02 20.0 - d= 0,ls=0.0,diis 4 -382.3080990402 -1.27D-02 5.17D-04 8.80D-04 25.6 - d= 0,ls=0.0,diis 5 -382.3082353907 -1.36D-04 1.18D-04 4.46D-05 31.2 + d= 0,ls=0.0,diis 1 -382.2544333294 -8.28D+02 1.42D-02 3.78D-01 2.2 + d= 0,ls=0.0,diis 2 -382.3017297979 -4.73D-02 6.99D-03 3.82D-02 3.3 + d= 0,ls=0.0,diis 3 -382.2954334686 6.30D-03 4.21D-03 7.95D-02 4.8 + d= 0,ls=0.0,diis 4 -382.3080988923 -1.27D-02 5.17D-04 8.80D-04 6.2 + d= 0,ls=0.0,diis 5 -382.3082352456 -1.36D-04 1.18D-04 4.46D-05 7.7 Resetting Diis - d= 0,ls=0.0,diis 6 -382.3082415300 -6.14D-06 3.19D-05 3.09D-06 36.8 - d= 0,ls=0.0,diis 7 -382.3082420068 -4.77D-07 1.42D-05 1.61D-07 42.4 - d= 0,ls=0.0,diis 8 -382.3082420043 2.55D-09 7.54D-06 1.77D-07 47.9 + d= 0,ls=0.0,diis 6 -382.3082413843 -6.14D-06 3.19D-05 3.09D-06 9.1 + d= 0,ls=0.0,diis 7 -382.3082418611 -4.77D-07 1.42D-05 1.61D-07 10.6 + d= 0,ls=0.0,diis 8 -382.3082418585 2.53D-09 7.54D-06 1.77D-07 12.1 - Total DFT energy = -382.308242004251 - One electron energy = -1400.645115169374 - Coulomb energy = 630.242754939282 - Exchange-Corr. energy = -57.842893941605 + Total DFT energy = -382.308241858533 + One electron energy = -1400.645115531840 + Coulomb energy = 630.242755452145 + Exchange-Corr. energy = -57.842893946284 Nuclear repulsion energy = 445.937012167446 - Numeric. integr. density = 70.000000232072 + Numeric. integr. density = 70.000000232069 - Total iterative time = 47.2s + Total iterative time = 11.9s @@ -1186,129 +2771,155 @@ ------------------------------------ Vector 1 Occ=2.000000D+00 E=-1.002024D+01 Symmetry=bu - MO Center= 4.7D-11, 2.8D-10, 4.2D-27, r^2= 2.1D+00 + MO Center= 2.0D-11, 1.2D-10, -2.6D-34, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.699304 1 C s 6 -0.699304 2 C s + 2 0.031560 1 C s 7 -0.031560 2 C s + 35 0.026964 11 C s 40 -0.026964 12 C s Vector 2 Occ=2.000000D+00 E=-1.002019D+01 Symmetry=ag - MO Center= -4.7D-11, -2.8D-10, 1.1D-34, r^2= 2.1D+00 + MO Center= -2.0D-11, -1.2D-10, 2.3D-23, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.699301 1 C s 6 0.699301 2 C s + 2 0.031352 1 C s 7 0.031352 2 C s + 35 -0.027327 11 C s 40 -0.027327 12 C s Vector 3 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=bu - MO Center= -1.9D-09, -1.0D-08, 1.1D-24, r^2= 8.6D+00 + MO Center= -4.6D-11, -2.5D-10, 9.8D-33, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.699780 11 C s 40 -0.699780 12 C s + 36 0.030781 11 C s 41 -0.030781 12 C s + 1 -0.027417 1 C s 6 0.027417 2 C s Vector 4 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=ag - MO Center= 1.9D-09, 1.0D-08, -5.1D-34, r^2= 8.6D+00 + MO Center= 4.6D-11, 2.5D-10, 2.8D-18, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.699695 11 C s 40 0.699695 12 C s + 36 0.030762 11 C s 41 0.030762 12 C s + 1 0.027650 1 C s 6 0.027650 2 C s Vector 5 Occ=2.000000D+00 E=-1.000689D+01 Symmetry=ag - MO Center= 2.3D-15, -3.7D-16, 7.8D-35, r^2= 2.0D+00 + MO Center= -5.9D-09, 1.9D-09, 1.8D-18, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.546412 5 C s 26 0.546412 6 C s - 11 -0.437513 3 C s 16 -0.437513 4 C s + 21 0.546406 5 C s 26 0.546406 6 C s + 11 -0.437520 3 C s 16 -0.437520 4 C s + 22 0.028151 5 C s 27 0.028151 6 C s Vector 6 Occ=2.000000D+00 E=-1.000688D+01 Symmetry=bu - MO Center= 4.7D-13, 3.8D-12, 9.8D-24, r^2= 2.0D+00 + MO Center= 5.9D-09, -1.9D-09, -6.5D-27, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.555878 5 C s 26 -0.555878 6 C s - 11 -0.424322 3 C s 16 0.424322 4 C s + 21 0.555875 5 C s 26 -0.555875 6 C s + 11 -0.424325 3 C s 16 0.424325 4 C s + 1 -0.028677 1 C s 6 0.028677 2 C s + 22 0.028651 5 C s 27 -0.028651 6 C s Vector 7 Occ=2.000000D+00 E=-1.000624D+01 Symmetry=bu - MO Center= -4.7D-11, 1.3D-12, 5.5D-26, r^2= 2.0D+00 + MO Center= 1.4D-11, -3.8D-12, 5.0D-30, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.556849 3 C s 16 -0.556849 4 C s - 21 0.425633 5 C s 26 -0.425633 6 C s + 11 0.556847 3 C s 16 -0.556847 4 C s + 21 0.425636 5 C s 26 -0.425636 6 C s Vector 8 Occ=2.000000D+00 E=-1.000609D+01 Symmetry=ag - MO Center= 4.6D-11, -5.1D-12, 8.5D-19, r^2= 2.0D+00 + MO Center= -1.5D-11, 4.0D-13, 5.2D-33, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.546521 3 C s 16 0.546521 4 C s - 21 0.437747 5 C s 26 0.437747 6 C s + 11 0.546516 3 C s 16 0.546516 4 C s + 21 0.437754 5 C s 26 0.437754 6 C s + 1 0.029442 1 C s 6 0.029442 2 C s Vector 9 Occ=2.000000D+00 E=-9.992163D+00 Symmetry=bu - MO Center= -8.4D-17, 3.8D-16, 1.8D-34, r^2= 1.5D+01 + MO Center= 1.2D-10, -1.2D-09, -4.8D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700479 15 C s 52 -0.700479 16 C s + 48 0.030860 15 C s 53 -0.030860 16 C s Vector 10 Occ=2.000000D+00 E=-9.992163D+00 Symmetry=ag - MO Center= 7.8D-17, -7.8D-16, -8.6D-34, r^2= 1.5D+01 + MO Center= -1.2D-10, 1.2D-09, 6.8D-18, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700478 15 C s 52 0.700478 16 C s + 48 0.030860 15 C s 53 0.030860 16 C s - Vector 11 Occ=2.000000D+00 E=-8.094667D-01 Symmetry=ag - MO Center= 1.8D-15, -6.7D-15, -5.8D-18, r^2= 3.0D+00 + Vector 11 Occ=2.000000D+00 E=-8.094669D-01 Symmetry=ag + MO Center= 2.3D-17, 5.4D-18, -3.4D-32, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.274702 1 C s 7 0.274702 2 C s 12 0.247017 3 C s 17 0.247017 4 C s 22 0.246689 5 C s 27 0.246689 6 C s + 36 0.127806 11 C s 41 0.127806 12 C s + 1 -0.107859 1 C s 6 -0.107859 2 C s Vector 12 Occ=2.000000D+00 E=-7.539346D-01 Symmetry=bu - MO Center= 1.1D-15, 1.5D-14, -1.4D-21, r^2= 7.8D+00 + MO Center= 5.6D-15, 1.0D-13, -1.3D-25, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 -0.297169 11 C s 41 0.297169 12 C s 2 0.273786 1 C s 7 -0.273786 2 C s 48 -0.209313 15 C s 53 0.209313 16 C s + 35 0.113817 11 C s 40 -0.113817 12 C s + 22 -0.112555 5 C s 27 0.112555 6 C s - Vector 13 Occ=2.000000D+00 E=-7.178616D-01 Symmetry=ag - MO Center= -9.1D-16, -7.6D-15, 2.2D-16, r^2= 1.1D+01 + Vector 13 Occ=2.000000D+00 E=-7.178615D-01 Symmetry=ag + MO Center= 2.5D-14, -1.8D-13, -3.2D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.314817 11 C s 41 0.314817 12 C s 48 0.309767 15 C s 53 0.309767 16 C s + 12 -0.121455 3 C s 17 -0.121455 4 C s + 35 -0.119239 11 C s 40 -0.119239 12 C s + 47 -0.117464 15 C s 52 -0.117464 16 C s Vector 14 Occ=2.000000D+00 E=-6.999224D-01 Symmetry=bu - MO Center= -3.7D-15, -1.6D-16, 1.4D-20, r^2= 3.2D+00 + MO Center= -2.5D-14, -1.4D-14, 9.4D-30, r^2= 3.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.357134 3 C s 17 -0.357134 4 C s 22 0.323905 5 C s 27 -0.323905 6 C s + 11 -0.132324 3 C s 16 0.132324 4 C s + 3 0.124986 1 C px 8 0.124986 2 C px + 21 -0.120093 5 C s 26 0.120093 6 C s Vector 15 Occ=2.000000D+00 E=-6.673150D-01 Symmetry=bu - MO Center= -1.7D-18, -2.1D-15, -1.2D-19, r^2= 9.1D+00 + MO Center= -1.9D-15, 8.4D-14, -2.0D-25, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.299508 15 C s 53 -0.299508 16 C s 2 0.274066 1 C s 7 -0.274066 2 C s 22 -0.202279 5 C s 27 0.202279 6 C s + 36 0.136845 11 C s 41 -0.136845 12 C s + 38 -0.129054 11 C py 43 -0.129054 12 C py Vector 16 Occ=2.000000D+00 E=-5.885094D-01 Symmetry=ag - MO Center= -8.4D-16, -1.7D-15, -1.2D-16, r^2= 8.4D+00 + MO Center= 7.8D-16, -1.3D-16, 4.0D-17, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.241406 15 C s 53 0.241406 16 C s + 48 0.241407 15 C s 53 0.241407 16 C s 22 0.233815 5 C s 27 0.233815 6 C s 2 -0.206378 1 C s 7 -0.206378 2 C s 14 -0.160007 3 C py 19 0.160007 4 C py 36 -0.159613 11 C s 41 -0.159613 12 C s Vector 17 Occ=2.000000D+00 E=-5.591516D-01 Symmetry=ag - MO Center= -5.4D-17, 4.5D-16, 2.2D-32, r^2= 5.1D+00 + MO Center= 2.2D-15, 5.1D-15, -4.8D-17, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.326033 3 C s 17 0.326033 4 C s - 3 0.184864 1 C px 8 -0.184864 2 C px + 3 0.184865 1 C px 8 -0.184865 2 C px 22 -0.170744 5 C s 24 0.170444 5 C py 27 -0.170744 6 C s 29 -0.170444 6 C py 31 0.169234 7 H s 32 0.169234 8 H s - Vector 18 Occ=2.000000D+00 E=-5.314208D-01 Symmetry=bu - MO Center= -7.0D-16, -4.3D-15, -1.3D-17, r^2= 1.2D+01 + Vector 18 Occ=2.000000D+00 E=-5.314209D-01 Symmetry=bu + MO Center= -3.7D-17, 2.7D-15, -9.3D-24, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.302767 11 C s 41 -0.302767 12 C s @@ -1318,84 +2929,87 @@ 12 0.154466 3 C s 17 -0.154466 4 C s Vector 19 Occ=2.000000D+00 E=-5.099375D-01 Symmetry=ag - MO Center= 4.2D-16, 4.9D-15, 2.0D-32, r^2= 7.5D+00 + MO Center= 1.7D-15, -7.5D-16, -2.7D-19, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.201895 5 C px 28 -0.201895 6 C px - 13 0.184492 3 C px 18 -0.184492 4 C px + 13 0.184493 3 C px 18 -0.184493 4 C px 36 0.180759 11 C s 41 0.180759 12 C s 33 0.169279 9 H s 34 0.169279 10 H s 22 0.166024 5 C s 27 0.166024 6 C s - Vector 20 Occ=2.000000D+00 E=-4.575996D-01 Symmetry=ag - MO Center= -2.4D-16, 1.0D-15, 1.1D-32, r^2= 9.5D+00 + Vector 20 Occ=2.000000D+00 E=-4.575997D-01 Symmetry=ag + MO Center= 1.5D-14, -2.0D-14, -5.2D-17, r^2= 9.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.212730 15 C px 54 -0.212730 16 C px 38 0.184649 11 C py 43 -0.184649 12 C py 57 0.179111 17 H s 58 0.179111 18 H s 45 -0.153094 13 H s 46 -0.153094 14 H s + 14 0.141385 3 C py 19 -0.141385 4 C py - Vector 21 Occ=2.000000D+00 E=-4.391971D-01 Symmetry=bu - MO Center= 1.5D-15, 2.4D-15, -1.9D-17, r^2= 1.0D+01 + Vector 21 Occ=2.000000D+00 E=-4.391972D-01 Symmetry=bu + MO Center= -2.7D-15, 6.2D-15, 1.1D-22, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.219233 11 C px 42 0.219233 12 C px 50 0.210291 15 C py 55 0.210291 16 C py - 14 0.184960 3 C py 19 0.184960 4 C py + 14 0.184961 3 C py 19 0.184961 4 C py 59 -0.178127 19 H s 60 0.178127 20 H s 45 -0.155495 13 H s 46 0.155495 14 H s Vector 22 Occ=2.000000D+00 E=-4.110182D-01 Symmetry=bu - MO Center= 3.4D-16, 2.3D-15, -1.4D-17, r^2= 6.8D+00 + MO Center= 3.9D-15, 2.4D-14, 4.2D-22, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.235310 1 C s 7 -0.235310 2 C s - 33 0.230467 9 H s 34 -0.230467 10 H s - 31 -0.226658 7 H s 32 0.226658 8 H s - 13 -0.222261 3 C px 18 -0.222261 4 C px + 33 0.230466 9 H s 34 -0.230466 10 H s + 31 -0.226657 7 H s 32 0.226657 8 H s + 13 -0.222260 3 C px 18 -0.222260 4 C px 24 -0.177972 5 C py 29 -0.177972 6 C py - Vector 23 Occ=2.000000D+00 E=-3.976933D-01 Symmetry=bu - MO Center= 1.2D-15, 3.2D-15, -2.2D-17, r^2= 8.7D+00 + Vector 23 Occ=2.000000D+00 E=-3.976932D-01 Symmetry=bu + MO Center= 1.5D-14, -1.1D-13, 2.7D-22, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.251236 5 C px 28 0.251236 6 C px 49 0.250511 15 C px 54 0.250511 16 C px - 3 -0.220827 1 C px 8 -0.220827 2 C px + 3 -0.220826 1 C px 8 -0.220826 2 C px 57 0.215415 17 H s 58 -0.215415 18 H s 38 0.181486 11 C py 43 0.181486 12 C py Vector 24 Occ=2.000000D+00 E=-3.959385D-01 Symmetry=ag - MO Center= 8.8D-17, -1.1D-15, 1.7D-17, r^2= 1.5D+01 + MO Center= -2.4D-14, 1.0D-13, 4.1D-30, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.338998 15 C py 55 -0.338998 16 C py 59 -0.262596 19 H s 60 -0.262596 20 H s 37 0.251492 11 C px 42 -0.251492 12 C px + 45 -0.145063 13 H s 46 -0.145063 14 H s + 24 0.136713 5 C py 29 -0.136713 6 C py - Vector 25 Occ=2.000000D+00 E=-3.744297D-01 Symmetry=bu - MO Center= -1.4D-15, 2.7D-16, 5.0D-18, r^2= 4.4D+00 + Vector 25 Occ=2.000000D+00 E=-3.744295D-01 Symmetry=bu + MO Center= -1.3D-14, -7.4D-15, 6.0D-23, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 13 0.307585 3 C px 18 0.307585 4 C px 31 0.252268 7 H s 32 -0.252268 8 H s - 24 -0.226088 5 C py 29 -0.226088 6 C py - 33 0.218183 9 H s 34 -0.218183 10 H s - 23 0.188062 5 C px 28 0.188062 6 C px + 24 -0.226087 5 C py 29 -0.226087 6 C py + 33 0.218182 9 H s 34 -0.218182 10 H s + 23 0.188063 5 C px 28 0.188063 6 C px - Vector 26 Occ=2.000000D+00 E=-3.509367D-01 Symmetry=bu - MO Center= -2.4D-15, -7.3D-15, -4.4D-17, r^2= 9.0D+00 + Vector 26 Occ=2.000000D+00 E=-3.509366D-01 Symmetry=bu + MO Center= -2.2D-15, -1.2D-15, 7.0D-23, r^2= 9.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.245677 15 C py 55 -0.245677 16 C py - 14 0.224344 3 C py 19 0.224344 4 C py - 37 -0.201678 11 C px 42 -0.201678 12 C px - 24 -0.193257 5 C py 29 -0.193257 6 C py - 38 0.187745 11 C py 43 0.187745 12 C py + 14 0.224345 3 C py 19 0.224345 4 C py + 37 -0.201679 11 C px 42 -0.201679 12 C px + 24 -0.193258 5 C py 29 -0.193258 6 C py + 38 0.187744 11 C py 43 0.187744 12 C py Vector 27 Occ=2.000000D+00 E=-3.470152D-01 Symmetry=ag - MO Center= 3.6D-15, 7.5D-16, -9.0D-17, r^2= 1.2D+01 + MO Center= 8.8D-17, 7.5D-15, -2.4D-16, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.295189 15 C px 54 -0.295189 16 C px @@ -1405,36 +3019,37 @@ 31 -0.156471 7 H s 32 -0.156471 8 H s Vector 28 Occ=2.000000D+00 E=-3.244706D-01 Symmetry=au - MO Center= -5.1D-17, 6.9D-15, -5.8D-17, r^2= 3.6D+00 + MO Center= -1.7D-15, 4.4D-15, 1.5D-15, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.337608 1 C pz 10 0.337608 2 C pz 15 0.297979 3 C pz 20 0.297979 4 C pz 25 0.297170 5 C pz 30 0.297170 6 C pz 39 0.173946 11 C pz 44 0.173946 12 C pz + 51 0.092442 15 C pz 56 0.092442 16 C pz - Vector 29 Occ=2.000000D+00 E=-3.110645D-01 Symmetry=bu - MO Center= -1.5D-15, -5.6D-16, 1.1D-17, r^2= 1.2D+01 + Vector 29 Occ=2.000000D+00 E=-3.110644D-01 Symmetry=bu + MO Center= -4.1D-16, 5.9D-15, -1.5D-24, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.259102 13 H s 46 -0.259102 14 H s - 4 0.241973 1 C py 9 0.241973 2 C py + 4 0.241974 1 C py 9 0.241974 2 C py 57 0.231029 17 H s 58 -0.231029 18 H s 37 -0.217251 11 C px 42 -0.217251 12 C px 59 -0.212334 19 H s 60 0.212334 20 H s Vector 30 Occ=2.000000D+00 E=-2.929833D-01 Symmetry=ag - MO Center= 1.2D-15, 2.7D-15, 2.0D-16, r^2= 6.1D+00 + MO Center= -7.3D-17, -3.4D-15, -1.1D-15, r^2= 6.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 -0.278184 3 C py 19 0.278184 4 C py 4 0.268398 1 C py 9 -0.268398 2 C py - 38 0.248142 11 C py 43 -0.248142 12 C py + 38 0.248141 11 C py 43 -0.248141 12 C py 33 -0.240411 9 H s 34 -0.240411 10 H s 24 0.234450 5 C py 29 -0.234450 6 C py - Vector 31 Occ=2.000000D+00 E=-2.874965D-01 Symmetry=ag - MO Center= -5.9D-16, -2.1D-16, -1.3D-16, r^2= 6.2D+00 + Vector 31 Occ=2.000000D+00 E=-2.874966D-01 Symmetry=ag + MO Center= 8.4D-16, -3.6D-15, 4.6D-17, r^2= 6.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.295855 1 C px 8 -0.295855 2 C px @@ -1444,15 +3059,17 @@ 45 -0.182739 13 H s 46 -0.182739 14 H s Vector 32 Occ=2.000000D+00 E=-2.634557D-01 Symmetry=bg - MO Center= 4.3D-15, 1.4D-13, -1.1D-21, r^2= 7.8D+00 + MO Center= -4.7D-16, -3.7D-15, 7.3D-25, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.376480 11 C pz 44 0.376480 12 C pz 5 0.348964 1 C pz 10 -0.348964 2 C pz 51 -0.271399 15 C pz 56 0.271399 16 C pz + 15 0.131646 3 C pz 20 -0.131646 4 C pz + 25 -0.132107 5 C pz 30 0.132107 6 C pz Vector 33 Occ=2.000000D+00 E=-2.123365D-01 Symmetry=au - MO Center= -1.5D-14, -1.9D-13, -3.1D-16, r^2= 1.1D+01 + MO Center= -1.8D-14, 8.3D-15, 2.2D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.417961 15 C pz 56 0.417961 16 C pz @@ -1461,14 +3078,14 @@ 25 -0.176633 5 C pz 30 -0.176633 6 C pz Vector 34 Occ=2.000000D+00 E=-1.951682D-01 Symmetry=bg - MO Center= 9.4D-15, -1.2D-15, -3.0D-18, r^2= 2.7D+00 + MO Center= 2.1D-14, -2.6D-15, -2.8D-22, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.463626 3 C pz 20 -0.463626 4 C pz 25 0.457537 5 C pz 30 -0.457537 6 C pz Vector 35 Occ=2.000000D+00 E=-1.529965D-01 Symmetry=bg - MO Center= 1.2D-15, 3.7D-14, 3.3D-17, r^2= 8.1D+00 + MO Center= -9.8D-17, -7.2D-15, 5.5D-23, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.397371 15 C pz 56 -0.397371 16 C pz @@ -1478,7 +3095,7 @@ 15 0.215069 3 C pz 20 -0.215069 4 C pz Vector 36 Occ=0.000000D+00 E= 3.750921D-02 Symmetry=au - MO Center= 9.7D-17, 2.7D-14, 2.6D-16, r^2= 8.0D+00 + MO Center= -1.1D-15, 8.1D-15, 5.0D-17, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.449614 15 C pz 56 -0.449614 16 C pz @@ -1487,15 +3104,16 @@ 39 0.256133 11 C pz 44 0.256133 12 C pz 15 -0.232265 3 C pz 20 -0.232265 4 C pz - Vector 37 Occ=0.000000D+00 E= 9.011734D-02 Symmetry=au - MO Center= 1.2D-15, 2.6D-16, -7.4D-18, r^2= 2.7D+00 + Vector 37 Occ=0.000000D+00 E= 9.011735D-02 Symmetry=au + MO Center= -1.2D-16, 6.0D-16, -2.1D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.582692 3 C pz 20 0.582692 4 C pz 25 -0.553237 5 C pz 30 -0.553237 6 C pz + 5 -0.031922 1 C pz 10 -0.031922 2 C pz Vector 38 Occ=0.000000D+00 E= 1.107280D-01 Symmetry=bg - MO Center= 2.5D-15, -3.0D-14, 7.0D-17, r^2= 1.1D+01 + MO Center= -1.0D-15, -1.4D-14, -1.2D-22, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.522167 11 C pz 44 -0.522167 12 C pz @@ -1504,7 +3122,7 @@ 25 -0.232246 5 C pz 30 0.232246 6 C pz Vector 39 Occ=0.000000D+00 E= 1.822016D-01 Symmetry=au - MO Center= 6.9D-18, 6.1D-15, 3.6D-16, r^2= 7.9D+00 + MO Center= 4.3D-16, 6.8D-15, -9.1D-17, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.529134 11 C pz 44 -0.529134 12 C pz @@ -1514,7 +3132,7 @@ 15 -0.166739 3 C pz 20 -0.166739 4 C pz Vector 40 Occ=0.000000D+00 E= 2.723015D-01 Symmetry=bg - MO Center= -3.8D-15, -5.8D-15, 6.3D-17, r^2= 3.8D+00 + MO Center= 9.1D-16, -1.2D-15, -2.7D-23, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.543477 1 C pz 10 -0.543477 2 C pz @@ -1523,202 +3141,202 @@ 39 0.287731 11 C pz 44 -0.287731 12 C pz 51 -0.156154 15 C pz 56 0.156154 16 C pz - Vector 41 Occ=0.000000D+00 E= 3.324847D-01 Symmetry=ag - MO Center= 1.2D-16, -2.2D-16, -8.7D-17, r^2= 8.8D+00 + Vector 41 Occ=0.000000D+00 E= 3.324845D-01 Symmetry=ag + MO Center= -3.8D-15, -3.3D-15, -1.5D-18, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 -0.423790 9 H s 34 -0.423790 10 H s + 33 -0.423791 9 H s 34 -0.423791 10 H s 31 -0.413781 7 H s 32 -0.413781 8 H s - 2 0.401569 1 C s 7 0.401569 2 C s + 2 0.401567 1 C s 7 0.401567 2 C s 59 -0.358542 19 H s 60 -0.358542 20 H s - 38 -0.338105 11 C py 43 0.338105 12 C py + 38 -0.338104 11 C py 43 0.338104 12 C py - Vector 42 Occ=0.000000D+00 E= 3.406450D-01 Symmetry=bu - MO Center= 2.0D-15, 2.5D-15, -1.1D-17, r^2= 1.0D+01 + Vector 42 Occ=0.000000D+00 E= 3.406449D-01 Symmetry=bu + MO Center= -3.3D-16, 7.8D-15, -2.2D-23, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.433827 13 H s 46 -0.433827 14 H s + 45 0.433826 13 H s 46 -0.433826 14 H s 13 0.355437 3 C px 18 0.355437 4 C px - 37 0.344559 11 C px 42 0.344559 12 C px + 37 0.344558 11 C px 42 0.344558 12 C px 31 -0.321888 7 H s 32 0.321888 8 H s - 57 -0.323133 17 H s 58 0.323133 18 H s + 57 -0.323132 17 H s 58 0.323132 18 H s - Vector 43 Occ=0.000000D+00 E= 3.795219D-01 Symmetry=bu - MO Center= -2.0D-16, -3.9D-16, 1.0D-16, r^2= 7.8D+00 + Vector 43 Occ=0.000000D+00 E= 3.795217D-01 Symmetry=bu + MO Center= 6.0D-15, 1.9D-15, -1.2D-23, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.546115 11 C s 41 -0.546115 12 C s + 36 0.546122 11 C s 41 -0.546122 12 C s 4 0.461528 1 C py 9 0.461528 2 C py - 33 0.405572 9 H s 34 -0.405572 10 H s - 59 0.351697 19 H s 60 -0.351697 20 H s - 2 0.338376 1 C s 7 -0.338376 2 C s + 33 0.405565 9 H s 34 -0.405565 10 H s + 59 0.351695 19 H s 60 -0.351695 20 H s + 2 0.338384 1 C s 7 -0.338384 2 C s - Vector 44 Occ=0.000000D+00 E= 3.812902D-01 Symmetry=ag - MO Center= -3.5D-15, -1.4D-14, 7.3D-17, r^2= 1.2D+01 + Vector 44 Occ=0.000000D+00 E= 3.812896D-01 Symmetry=ag + MO Center= -6.9D-15, -5.1D-15, -8.5D-17, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.579606 13 H s 46 0.579606 14 H s - 12 0.393525 3 C s 17 0.393525 4 C s - 57 -0.391441 17 H s 58 -0.391441 18 H s + 12 0.393532 3 C s 17 0.393532 4 C s + 57 -0.391438 17 H s 58 -0.391438 18 H s 36 -0.382166 11 C s 41 -0.382166 12 C s 37 0.338369 11 C px 42 -0.338369 12 C px - Vector 45 Occ=0.000000D+00 E= 4.103420D-01 Symmetry=ag - MO Center= -4.5D-13, 1.3D-12, 6.1D-17, r^2= 1.1D+01 + Vector 45 Occ=0.000000D+00 E= 4.103422D-01 Symmetry=ag + MO Center= -2.9D-13, 8.4D-13, -3.5D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.647348 15 C s 53 0.647348 16 C s - 22 0.620079 5 C s 27 0.620079 6 C s - 57 -0.513314 17 H s 58 -0.513314 18 H s - 12 -0.443652 3 C s 17 -0.443652 4 C s - 59 -0.320794 19 H s 60 -0.320794 20 H s - - Vector 46 Occ=0.000000D+00 E= 4.112339D-01 Symmetry=bu - MO Center= 4.4D-13, -1.3D-12, -2.0D-16, r^2= 1.1D+01 + 48 0.647347 15 C s 53 0.647347 16 C s + 22 0.620081 5 C s 27 0.620081 6 C s + 57 -0.513316 17 H s 58 -0.513316 18 H s + 12 -0.443647 3 C s 17 -0.443647 4 C s + 59 -0.320790 19 H s 60 -0.320790 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.112340D-01 Symmetry=bu + MO Center= 3.0D-13, -8.5D-13, -5.9D-22, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.613158 5 C s 27 -0.613158 6 C s - 48 0.539738 15 C s 53 -0.539738 16 C s - 2 0.476220 1 C s 7 -0.476220 2 C s - 57 -0.447816 17 H s 58 0.447816 18 H s - 12 -0.440665 3 C s 17 0.440665 4 C s - - Vector 47 Occ=0.000000D+00 E= 4.258026D-01 Symmetry=bu - MO Center= 2.0D-15, 1.5D-14, 4.5D-18, r^2= 9.2D+00 + 22 0.613159 5 C s 27 -0.613159 6 C s + 48 0.539736 15 C s 53 -0.539736 16 C s + 2 0.476219 1 C s 7 -0.476219 2 C s + 57 -0.447812 17 H s 58 0.447812 18 H s + 12 -0.440664 3 C s 17 0.440664 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.258028D-01 Symmetry=bu + MO Center= 6.5D-15, 4.1D-15, 6.1D-23, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 0.603108 7 H s 32 -0.603108 8 H s - 36 -0.446800 11 C s 41 0.446800 12 C s + 31 0.603109 7 H s 32 -0.603109 8 H s + 36 -0.446799 11 C s 41 0.446799 12 C s 45 0.437140 13 H s 46 -0.437140 14 H s 12 -0.368677 3 C s 17 0.368677 4 C s - 59 0.337702 19 H s 60 -0.337702 20 H s + 59 0.337700 19 H s 60 -0.337700 20 H s - Vector 48 Occ=0.000000D+00 E= 4.393595D-01 Symmetry=ag - MO Center= 3.3D-15, 5.1D-14, -9.6D-17, r^2= 7.5D+00 + Vector 48 Occ=0.000000D+00 E= 4.393598D-01 Symmetry=ag + MO Center= -5.4D-15, 1.2D-14, 1.1D-16, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.782305 1 C s 7 0.782305 2 C s - 36 -0.556792 11 C s 41 -0.556792 12 C s - 12 -0.499660 3 C s 17 -0.499660 4 C s - 22 -0.411568 5 C s 27 -0.411568 6 C s - 48 0.409886 15 C s 53 0.409886 16 C s - - Vector 49 Occ=0.000000D+00 E= 4.537212D-01 Symmetry=bu - MO Center= 1.1D-14, -6.9D-14, 3.8D-17, r^2= 1.2D+01 + 2 0.782303 1 C s 7 0.782303 2 C s + 36 -0.556788 11 C s 41 -0.556788 12 C s + 12 -0.499654 3 C s 17 -0.499654 4 C s + 22 -0.411571 5 C s 27 -0.411571 6 C s + 48 0.409893 15 C s 53 0.409893 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.537210D-01 Symmetry=bu + MO Center= -5.0D-15, -9.1D-16, -2.3D-23, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.706721 15 C s 53 -0.706721 16 C s - 57 -0.525555 17 H s 58 0.525555 18 H s - 33 0.477113 9 H s 34 -0.477113 10 H s - 36 -0.429001 11 C s 41 0.429001 12 C s - 22 -0.407169 5 C s 27 0.407169 6 C s - - Vector 50 Occ=0.000000D+00 E= 4.783353D-01 Symmetry=ag - MO Center= -8.0D-15, 1.4D-14, -9.9D-17, r^2= 1.1D+01 + 48 0.706723 15 C s 53 -0.706723 16 C s + 57 -0.525560 17 H s 58 0.525560 18 H s + 33 0.477112 9 H s 34 -0.477112 10 H s + 36 -0.428994 11 C s 41 0.428994 12 C s + 22 -0.407164 5 C s 27 0.407164 6 C s + + Vector 50 Occ=0.000000D+00 E= 4.783352D-01 Symmetry=ag + MO Center= 3.9D-15, -9.1D-15, 3.0D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.706217 3 C s 17 0.706217 4 C s - 22 -0.619402 5 C s 27 -0.619402 6 C s - 59 -0.475187 19 H s 60 -0.475187 20 H s - 48 0.415041 15 C s 53 0.415041 16 C s - 50 -0.382621 15 C py 55 0.382621 16 C py - - Vector 51 Occ=0.000000D+00 E= 5.255619D-01 Symmetry=ag - MO Center= 1.0D-15, -3.2D-15, -1.4D-17, r^2= 6.5D+00 + 12 0.706221 3 C s 17 0.706221 4 C s + 22 -0.619400 5 C s 27 -0.619400 6 C s + 59 -0.475184 19 H s 60 -0.475184 20 H s + 48 0.415039 15 C s 53 0.415039 16 C s + 50 -0.382619 15 C py 55 0.382619 16 C py + + Vector 51 Occ=0.000000D+00 E= 5.255621D-01 Symmetry=ag + MO Center= 3.6D-16, 1.0D-15, 1.6D-17, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.601873 1 C py 9 -0.601873 2 C py - 36 -0.491669 11 C s 41 -0.491669 12 C s + 4 0.601872 1 C py 9 -0.601872 2 C py + 36 -0.491670 11 C s 41 -0.491670 12 C s 13 -0.452502 3 C px 18 0.452502 4 C px - 2 -0.448702 1 C s 7 -0.448702 2 C s + 2 -0.448701 1 C s 7 -0.448701 2 C s 49 -0.342028 15 C px 54 0.342028 16 C px - Vector 52 Occ=0.000000D+00 E= 5.463507D-01 Symmetry=bu - MO Center= 5.7D-15, -1.3D-14, -5.2D-18, r^2= 7.7D+00 + Vector 52 Occ=0.000000D+00 E= 5.463505D-01 Symmetry=bu + MO Center= 1.9D-15, -3.3D-15, 1.3D-22, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.647801 3 C s 17 -0.647801 4 C s - 3 -0.560732 1 C px 8 -0.560732 2 C px - 50 0.483439 15 C py 55 0.483439 16 C py + 12 0.647799 3 C s 17 -0.647799 4 C s + 3 -0.560730 1 C px 8 -0.560730 2 C px + 50 0.483440 15 C py 55 0.483440 16 C py 24 -0.478220 5 C py 29 -0.478220 6 C py - 59 0.356004 19 H s 60 -0.356004 20 H s + 59 0.356006 19 H s 60 -0.356006 20 H s - Vector 53 Occ=0.000000D+00 E= 5.764358D-01 Symmetry=ag - MO Center= -2.1D-15, 9.2D-16, -2.0D-17, r^2= 5.4D+00 + Vector 53 Occ=0.000000D+00 E= 5.764362D-01 Symmetry=ag + MO Center= -1.2D-15, -3.8D-15, 2.4D-17, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.537125 3 C px 18 -0.537125 4 C px + 13 0.537124 3 C px 18 -0.537124 4 C px 23 -0.522141 5 C px 28 0.522141 6 C px - 33 0.519104 9 H s 34 0.519104 10 H s - 31 -0.448313 7 H s 32 -0.448313 8 H s - 24 0.400194 5 C py 29 -0.400194 6 C py + 33 0.519103 9 H s 34 0.519103 10 H s + 31 -0.448310 7 H s 32 -0.448310 8 H s + 24 0.400193 5 C py 29 -0.400193 6 C py - Vector 54 Occ=0.000000D+00 E= 5.984381D-01 Symmetry=bu - MO Center= -5.4D-15, 1.7D-15, 4.6D-18, r^2= 4.8D+00 + Vector 54 Occ=0.000000D+00 E= 5.984383D-01 Symmetry=bu + MO Center= -2.9D-15, 2.5D-15, -1.3D-22, r^2= 4.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 0.723029 3 C py 19 0.723029 4 C py - 22 0.599919 5 C s 27 -0.599919 6 C s + 22 0.599921 5 C s 27 -0.599921 6 C s 36 -0.415408 11 C s 41 0.415408 12 C s - 2 -0.405912 1 C s 7 0.405912 2 C s - 24 0.394227 5 C py 29 0.394227 6 C py + 2 -0.405910 1 C s 7 0.405910 2 C s + 24 0.394225 5 C py 29 0.394225 6 C py - Vector 55 Occ=0.000000D+00 E= 6.248973D-01 Symmetry=bu - MO Center= 1.9D-15, -3.1D-16, -1.2D-18, r^2= 1.1D+01 + Vector 55 Occ=0.000000D+00 E= 6.248975D-01 Symmetry=bu + MO Center= 1.8D-15, 1.3D-14, 3.0D-23, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.608534 1 C s 7 -0.608534 2 C s - 49 -0.528892 15 C px 54 -0.528892 16 C px - 38 0.480661 11 C py 43 0.480661 12 C py - 23 -0.365994 5 C px 28 -0.365994 6 C px - 57 0.363289 17 H s 58 -0.363289 18 H s + 49 -0.528890 15 C px 54 -0.528890 16 C px + 38 0.480660 11 C py 43 0.480660 12 C py + 23 -0.365995 5 C px 28 -0.365995 6 C px + 57 0.363288 17 H s 58 -0.363288 18 H s - Vector 56 Occ=0.000000D+00 E= 6.398334D-01 Symmetry=ag - MO Center= 4.8D-16, 6.7D-15, -9.9D-17, r^2= 9.4D+00 + Vector 56 Occ=0.000000D+00 E= 6.398339D-01 Symmetry=ag + MO Center= 2.5D-15, -1.8D-14, 1.3D-17, r^2= 9.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.549269 11 C px 42 -0.549269 12 C px 50 -0.534300 15 C py 55 0.534300 16 C py - 14 0.383477 3 C py 19 -0.383477 4 C py - 4 -0.364576 1 C py 9 0.364576 2 C py + 14 0.383479 3 C py 19 -0.383479 4 C py + 4 -0.364575 1 C py 9 0.364575 2 C py 59 -0.330751 19 H s 60 -0.330751 20 H s Vector 57 Occ=0.000000D+00 E= 6.828368D-01 Symmetry=ag - MO Center= -5.8D-16, -1.3D-15, 1.7D-18, r^2= 9.3D+00 + MO Center= -3.8D-16, 7.8D-15, -7.3D-18, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 38 0.663093 11 C py 43 -0.663093 12 C py - 49 -0.580412 15 C px 54 0.580412 16 C px - 24 -0.449231 5 C py 29 0.449231 6 C py + 38 0.663092 11 C py 43 -0.663092 12 C py + 49 -0.580411 15 C px 54 0.580411 16 C px + 24 -0.449232 5 C py 29 0.449232 6 C py 14 -0.392088 3 C py 19 0.392088 4 C py - 4 -0.381669 1 C py 9 0.381669 2 C py + 4 -0.381671 1 C py 9 0.381671 2 C py - Vector 58 Occ=0.000000D+00 E= 7.173570D-01 Symmetry=bu - MO Center= 2.3D-15, 2.9D-14, -5.9D-20, r^2= 9.6D+00 + Vector 58 Occ=0.000000D+00 E= 7.173572D-01 Symmetry=bu + MO Center= 5.5D-17, -5.0D-16, 3.2D-24, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.608025 11 C px 42 0.608025 12 C px - 48 -0.538017 15 C s 50 -0.540484 15 C py - 53 0.538017 16 C s 55 -0.540484 16 C py - 36 0.466540 11 C s 38 -0.464867 11 C py - 41 -0.466540 12 C s 43 -0.464867 12 C py - - Vector 59 Occ=0.000000D+00 E= 7.790413D-01 Symmetry=ag - MO Center= -2.3D-15, -2.5D-14, -5.2D-17, r^2= 5.4D+00 + 37 0.608023 11 C px 42 0.608023 12 C px + 48 -0.538019 15 C s 50 -0.540483 15 C py + 53 0.538019 16 C s 55 -0.540483 16 C py + 36 0.466541 11 C s 38 -0.464871 11 C py + 41 -0.466541 12 C s 43 -0.464871 12 C py + + Vector 59 Occ=0.000000D+00 E= 7.790414D-01 Symmetry=ag + MO Center= 1.9D-16, 1.3D-15, 1.7D-17, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.702431 1 C px 8 -0.702431 2 C px - 14 -0.534059 3 C py 19 0.534059 4 C py - 23 -0.435986 5 C px 28 0.435986 6 C px + 14 -0.534058 3 C py 19 0.534058 4 C py + 23 -0.435987 5 C px 28 0.435987 6 C px 37 0.429836 11 C px 42 -0.429836 12 C px 24 -0.411037 5 C py 29 0.411037 6 C py - Vector 60 Occ=0.000000D+00 E= 7.942624D-01 Symmetry=bu - MO Center= -2.7D-16, -4.1D-15, 3.1D-23, r^2= 3.4D+00 + Vector 60 Occ=0.000000D+00 E= 7.942619D-01 Symmetry=bu + MO Center= -5.9D-16, 5.5D-16, -1.8D-26, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.657693 1 C py 9 0.657693 2 C py - 13 -0.568325 3 C px 18 -0.568325 4 C px + 4 0.657694 1 C py 9 0.657694 2 C py + 13 -0.568326 3 C px 18 -0.568326 4 C px 23 0.496519 5 C px 28 0.496519 6 C px 22 -0.413797 5 C s 27 0.413797 6 C s 24 -0.395895 5 C py 29 -0.395895 6 C py @@ -1735,58 +3353,58 @@ 2 0.03156 0.03135 0.00410 -0.00406 -0.00081 0.00816 3 -0.00002 0.00003 0.00067 -0.00065 0.00525 -0.00123 4 -0.00091 -0.00063 0.00416 -0.00413 -0.00054 -0.00308 - 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 5 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 6 -0.69930 0.69930 0.02742 0.02765 0.00327 0.02868 7 -0.03156 0.03135 -0.00410 -0.00406 -0.00081 -0.00816 8 -0.00002 -0.00003 0.00067 0.00065 -0.00525 -0.00123 9 -0.00091 0.00063 0.00416 0.00413 0.00054 -0.00308 - 10 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 11 -0.01887 -0.01934 0.01179 -0.01473 -0.43751 -0.42432 + 10 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 11 -0.01887 -0.01934 0.01179 -0.01473 -0.43752 -0.42433 12 -0.00774 -0.00693 0.00068 -0.00068 -0.02438 -0.02407 13 0.00353 0.00332 -0.00013 0.00019 0.00102 0.00115 14 -0.00263 -0.00300 -0.00002 -0.00006 0.00367 0.00385 - 15 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 16 0.01887 -0.01934 -0.01179 -0.01473 -0.43751 0.42432 + 15 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 16 0.01887 -0.01934 -0.01179 -0.01473 -0.43752 0.42433 17 0.00774 -0.00693 -0.00068 -0.00068 -0.02438 0.02407 18 0.00353 -0.00332 -0.00013 -0.00019 -0.00102 0.00115 19 -0.00263 0.00300 -0.00002 0.00006 -0.00367 0.00385 - 20 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 20 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 21 0.01918 -0.01952 -0.00968 -0.01107 0.54641 0.55588 22 0.00771 -0.00687 -0.00055 -0.00042 0.02815 0.02865 23 -0.00417 0.00407 0.00013 0.00021 0.00007 -0.00009 24 -0.00132 0.00175 -0.00010 0.00001 0.00323 0.00334 - 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 25 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 26 -0.01918 -0.01952 0.00968 -0.01107 0.54641 -0.55588 27 -0.00771 -0.00687 0.00055 -0.00042 0.02815 -0.02865 28 -0.00417 -0.00407 0.00013 -0.00021 -0.00007 -0.00009 29 -0.00132 -0.00175 -0.00010 -0.00001 -0.00323 0.00334 - 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 30 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 31 0.00034 0.00022 -0.00010 0.00011 0.00405 0.00398 32 -0.00034 0.00022 0.00010 0.00011 0.00405 -0.00398 33 -0.00033 0.00022 -0.00004 -0.00006 -0.00506 -0.00515 34 0.00033 0.00022 0.00004 -0.00006 -0.00506 0.00515 - 35 0.02696 -0.02733 0.69978 0.69970 -0.00070 0.01381 + 35 0.02696 -0.02733 0.69978 0.69970 -0.00070 0.01382 36 0.00670 -0.00677 0.03078 0.03076 -0.00004 0.00073 37 0.00090 -0.00091 0.00075 0.00075 0.00011 0.00006 38 0.00397 -0.00401 -0.00108 -0.00109 -0.00003 -0.00005 - 39 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 40 -0.02696 -0.02733 -0.69978 0.69970 -0.00070 -0.01381 + 39 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 40 -0.02696 -0.02733 -0.69978 0.69970 -0.00070 -0.01382 41 -0.00670 -0.00677 -0.03078 0.03076 -0.00004 -0.00073 42 0.00090 0.00091 0.00075 -0.00075 -0.00011 0.00006 43 0.00397 0.00401 -0.00108 0.00109 0.00003 -0.00005 - 44 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 44 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 45 -0.00032 0.00033 -0.00642 -0.00642 -0.00001 -0.00018 46 0.00032 0.00033 0.00642 -0.00642 -0.00001 0.00018 47 -0.00018 0.00019 -0.00811 -0.00810 -0.00029 -0.00093 48 -0.00047 0.00047 -0.00762 -0.00762 -0.00005 -0.00028 49 -0.00001 0.00001 0.00305 0.00305 -0.00003 0.00003 50 -0.00028 0.00029 -0.00344 -0.00344 -0.00001 -0.00014 - 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 51 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 52 0.00018 0.00019 0.00811 -0.00810 -0.00029 0.00093 53 0.00047 0.00047 0.00762 -0.00762 -0.00005 0.00028 54 -0.00001 -0.00001 0.00305 -0.00305 0.00003 0.00003 55 -0.00028 -0.00029 -0.00344 0.00344 0.00001 -0.00014 - 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 56 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 57 0.00015 -0.00014 0.00019 0.00019 0.00016 0.00015 58 -0.00015 -0.00014 -0.00019 0.00019 0.00016 -0.00015 59 0.00003 -0.00003 0.00022 0.00022 -0.00000 -0.00001 @@ -1798,58 +3416,58 @@ 2 -0.00110 -0.00749 -0.00016 0.00016 0.27470 0.27379 3 -0.00500 -0.00006 0.00002 -0.00002 -0.00550 0.00446 4 0.00128 0.00308 -0.00005 0.00005 -0.04073 0.03298 - 5 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 5 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 6 -0.00367 0.02944 0.00018 0.00018 -0.10786 0.10355 7 0.00110 -0.00749 0.00016 0.00016 0.27470 -0.27379 8 -0.00500 0.00006 0.00002 0.00002 0.00550 0.00446 9 0.00128 -0.00308 -0.00005 -0.00005 0.04073 0.03298 - 10 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 10 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 11 0.55685 0.54652 -0.00028 0.00057 -0.09784 -0.03906 12 0.02059 0.01990 0.00000 -0.00006 0.24702 0.10222 13 -0.00024 0.00013 -0.00001 0.00002 -0.05337 -0.02738 14 0.00222 0.00233 0.00008 -0.00003 -0.01450 0.05896 - 15 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 15 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 16 -0.55685 0.54652 0.00028 0.00057 -0.09784 0.03906 17 -0.02059 0.01990 -0.00000 -0.00006 0.24702 -0.10222 18 -0.00024 -0.00013 -0.00001 -0.00002 0.05337 -0.02738 19 0.00222 -0.00233 0.00008 0.00003 0.01450 0.05896 - 20 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 21 0.42563 0.43775 0.00079 0.00085 -0.09757 0.04279 + 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 21 0.42564 0.43775 0.00079 0.00085 -0.09757 0.04279 22 0.01354 0.01412 -0.00002 -0.00004 0.24669 -0.11256 23 -0.00095 -0.00067 0.00001 0.00000 -0.04576 0.04462 24 -0.00301 -0.00302 0.00011 0.00009 0.03144 0.04668 - 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 26 -0.42563 0.43775 -0.00079 0.00085 -0.09757 -0.04279 + 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 26 -0.42564 0.43775 -0.00079 0.00085 -0.09757 -0.04279 27 -0.01354 0.01412 0.00002 -0.00004 0.24669 0.11256 28 -0.00095 0.00067 0.00001 -0.00000 0.04576 0.04462 29 -0.00301 0.00302 0.00011 -0.00009 -0.03144 0.04668 - 30 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 30 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 31 -0.00491 -0.00498 0.00001 -0.00002 0.04495 0.02686 32 0.00491 -0.00498 -0.00001 -0.00002 0.04495 -0.02686 33 -0.00371 -0.00400 0.00010 0.00010 0.04519 -0.03076 34 0.00371 -0.00400 -0.00010 0.00010 0.04519 0.03076 - 35 -0.00338 0.01736 0.00900 0.00901 -0.04972 0.11382 + 35 -0.00337 0.01736 0.00900 0.00901 -0.04972 0.11382 36 -0.00018 0.00075 -0.00689 -0.00689 0.12781 -0.29717 37 0.00001 0.00002 -0.00308 -0.00308 0.01290 -0.03419 38 0.00002 -0.00019 0.00338 0.00338 0.02845 -0.00850 - 39 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 40 0.00338 0.01736 -0.00900 0.00901 -0.04972 -0.11382 + 39 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 40 0.00337 0.01736 -0.00900 0.00901 -0.04972 -0.11382 41 0.00018 0.00075 0.00689 -0.00689 0.12781 0.29717 42 0.00001 -0.00002 -0.00308 0.00308 -0.01290 -0.03419 43 0.00002 0.00019 0.00338 -0.00338 -0.02845 -0.00850 - 44 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 44 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 45 0.00005 -0.00025 0.00004 0.00004 0.02560 -0.06702 46 -0.00005 -0.00025 -0.00004 0.00004 0.02560 0.06702 47 -0.00021 -0.00115 0.70048 0.70048 -0.02467 0.08073 48 0.00003 -0.00033 0.03086 0.03086 0.06268 -0.20931 49 -0.00005 0.00005 -0.00089 -0.00089 -0.01240 0.03729 50 0.00001 -0.00018 0.00094 0.00094 0.02035 -0.04990 - 51 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 51 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 52 0.00021 -0.00115 -0.70048 0.70048 -0.02467 -0.08073 53 -0.00003 -0.00033 -0.03086 0.03086 0.06268 0.20931 54 -0.00005 -0.00005 -0.00089 0.00089 0.01240 0.03729 55 0.00001 0.00018 0.00094 -0.00094 -0.02035 -0.04990 - 56 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 56 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 57 0.00009 0.00010 -0.00636 -0.00636 0.01412 -0.04858 58 -0.00009 0.00010 0.00636 -0.00636 0.01412 0.04858 59 -0.00001 -0.00001 -0.00637 -0.00637 0.01058 -0.04369 @@ -1861,32 +3479,32 @@ 2 0.01483 0.03409 0.27407 -0.20638 -0.16079 0.03709 3 0.01037 0.12499 -0.01781 -0.12106 0.18486 -0.05359 4 0.09615 -0.02299 -0.05622 -0.07212 -0.06394 -0.13493 - 5 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 6 -0.00453 0.01260 0.09965 0.07098 0.05432 0.01303 7 0.01483 -0.03409 -0.27407 -0.20638 -0.16079 -0.03709 8 -0.01037 0.12499 -0.01781 0.12106 -0.18486 -0.05359 9 -0.09615 -0.02299 -0.05622 0.07212 0.06394 -0.13493 - 10 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 10 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 11 0.04631 -0.13232 -0.04077 0.00302 -0.11045 -0.05067 12 -0.12146 0.35713 0.11268 -0.01004 0.32603 0.15447 13 0.01614 0.00350 -0.03788 0.02993 0.08167 -0.00524 14 0.03704 -0.05621 0.09142 -0.16001 0.03652 0.00483 - 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 15 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 16 0.04631 0.13232 0.04077 0.00302 -0.11045 0.05067 17 -0.12146 -0.35713 -0.11268 -0.01004 0.32603 -0.15447 18 -0.01614 0.00350 -0.03788 -0.02993 -0.08167 -0.00524 19 -0.03704 -0.05621 0.09142 0.16001 -0.03652 0.00483 - 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 21 0.04173 -0.12009 0.07330 -0.08191 0.05747 0.03036 22 -0.10894 0.32390 -0.20228 0.23381 -0.17074 -0.09205 23 0.00204 0.03465 0.05406 0.06548 0.08653 0.03583 24 -0.04735 0.06563 0.04697 0.02290 0.17044 0.07857 - 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 26 0.04173 0.12009 -0.07330 -0.08191 0.05747 -0.03036 27 -0.10894 -0.32390 0.20228 0.23381 -0.17074 0.09205 28 -0.00204 0.03465 0.05406 -0.06548 -0.08653 0.03583 29 0.04735 0.06563 0.04697 -0.02290 -0.17044 0.07857 - 30 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 31 -0.02335 0.09831 0.03218 -0.01929 0.16923 0.05033 32 -0.02335 -0.09831 -0.03218 -0.01929 0.16923 -0.05033 33 -0.01660 0.08999 -0.05346 0.10642 -0.08383 -0.05580 @@ -1895,24 +3513,24 @@ 36 0.31482 -0.00128 0.13685 -0.15961 -0.02451 0.30277 37 0.04535 0.02295 0.03919 0.08128 -0.04660 -0.11605 38 -0.05748 -0.01848 -0.12905 -0.12925 -0.07792 0.04107 - 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 39 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 40 -0.11924 -0.00020 0.05162 0.05306 0.00758 0.09885 41 0.31482 0.00128 -0.13685 -0.15961 -0.02451 -0.30277 42 -0.04535 0.02295 0.03919 -0.08128 0.04660 -0.11605 43 0.05748 -0.01848 -0.12905 0.12925 0.07792 0.04107 - 44 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 44 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 45 0.07653 -0.00984 0.03763 -0.08003 0.03216 0.17052 46 0.07653 0.00984 -0.03763 -0.08003 0.03216 -0.17052 47 -0.11746 -0.01450 -0.11027 -0.08371 -0.03787 0.08074 48 0.30977 0.03791 0.29951 0.24141 0.11347 -0.24917 49 -0.04908 0.00157 -0.03453 0.03560 -0.01390 -0.12315 50 0.05279 0.00637 0.01637 -0.03827 -0.04943 0.09128 - 51 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 51 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 52 -0.11746 0.01450 0.11027 -0.08371 -0.03787 -0.08074 53 0.30977 -0.03791 -0.29951 0.24141 0.11347 0.24917 54 0.04908 0.00157 -0.03453 -0.03560 0.01390 -0.12315 55 -0.05279 0.00637 0.01637 0.03827 0.04943 0.09128 - 56 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 56 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 57 0.07420 0.01478 0.07740 0.10354 0.02278 -0.16063 58 0.07420 -0.01478 -0.07740 0.10354 0.02278 0.16063 59 0.07484 0.00894 0.08996 0.09775 0.06787 -0.12474 @@ -1920,36 +3538,36 @@ 19 20 21 22 23 24 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.05454 -0.03229 0.02275 -0.06946 -0.02277 0.02167 + 1 0.05454 -0.03229 0.02275 -0.06946 -0.02278 0.02167 2 -0.16217 0.10634 -0.07804 0.23531 0.07752 -0.07158 3 -0.01948 0.05143 0.12484 0.10107 -0.22083 -0.01574 4 0.14256 0.13227 -0.13509 -0.02739 -0.14330 -0.01021 - 5 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 6 0.05454 -0.03229 -0.02275 0.06946 0.02277 0.02167 + 5 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 6 0.05454 -0.03229 -0.02275 0.06946 0.02278 0.02167 7 -0.16217 0.10634 0.07804 -0.23531 -0.07752 -0.07158 8 0.01948 -0.05143 0.12484 0.10107 -0.22083 0.01574 9 -0.14256 -0.13227 -0.13509 -0.02739 -0.14330 0.01021 - 10 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 11 -0.00697 -0.01336 -0.02216 0.04738 -0.00126 -0.02514 - 12 0.02556 0.05158 0.07459 -0.16297 0.00150 0.08397 + 12 0.02556 0.05157 0.07459 -0.16297 0.00150 0.08397 13 0.18449 0.13690 0.01857 -0.22226 -0.00314 -0.00635 - 14 -0.08790 0.14138 0.18496 0.06158 -0.12066 -0.08210 - 15 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 14 -0.08790 0.14139 0.18496 0.06158 -0.12066 -0.08210 + 15 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 16 -0.00697 -0.01336 0.02216 -0.04738 0.00126 -0.02514 - 17 0.02556 0.05158 -0.07459 0.16297 -0.00150 0.08397 + 17 0.02556 0.05157 -0.07459 0.16297 -0.00150 0.08397 18 -0.18449 -0.13690 0.01857 -0.22226 -0.00314 0.00635 - 19 0.08790 -0.14138 0.18496 0.06158 -0.12066 0.08210 - 20 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 19 0.08790 -0.14139 0.18496 0.06158 -0.12066 0.08210 + 20 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 21 -0.05224 0.01978 0.04259 -0.04406 0.01174 0.01824 22 0.16602 -0.05620 -0.13897 0.15292 -0.03666 -0.06801 23 0.20190 0.08463 -0.09670 0.11282 0.25124 -0.03712 24 -0.03731 -0.13600 -0.10148 -0.17797 0.05674 0.13671 - 25 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 26 -0.05224 0.01978 -0.04259 0.04406 -0.01174 0.01824 27 0.16602 -0.05620 0.13897 -0.15292 0.03666 -0.06801 28 -0.20190 -0.08463 -0.09670 0.11282 0.25124 0.03712 29 0.03731 0.13600 -0.10148 -0.17797 0.05674 -0.13671 - 30 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 30 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 31 0.09946 0.13601 0.10020 -0.22666 -0.03672 0.00607 32 0.09946 0.13601 -0.10020 0.22666 0.03672 0.00607 33 0.16928 0.09041 -0.05988 0.23047 0.13275 -0.11408 @@ -1958,24 +3576,24 @@ 36 0.18076 -0.12770 0.05160 0.04227 0.01492 0.08059 37 -0.06455 0.11482 0.21923 0.03807 -0.04290 0.25149 38 -0.00149 0.18465 0.10104 -0.12528 0.18149 -0.08173 - 39 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 39 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 40 -0.05912 0.04018 0.01690 0.01529 0.00257 -0.02765 41 0.18076 -0.12770 -0.05160 -0.04227 -0.01492 0.08059 42 0.06455 -0.11482 0.21923 0.03807 -0.04290 -0.25149 43 0.00149 -0.18465 0.10104 -0.12528 0.18149 0.08173 - 44 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 44 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 45 0.11251 -0.15309 -0.15549 0.02806 0.01234 -0.14506 46 0.11251 -0.15309 0.15549 -0.02806 -0.01234 -0.14506 47 0.05155 -0.01689 0.00814 0.01223 0.00106 -0.00444 48 -0.16347 0.06337 -0.03136 -0.05077 0.00750 -0.00010 49 -0.07915 0.21273 0.09058 -0.07563 0.25051 -0.01131 50 0.08165 0.00913 0.21029 0.13356 0.03810 0.33900 - 51 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 51 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 52 0.05155 -0.01689 -0.00814 -0.01223 -0.00106 -0.00444 53 -0.16347 0.06337 0.03136 0.05077 -0.00750 -0.00010 54 0.07915 -0.21273 0.09058 -0.07563 0.25051 0.01131 55 -0.08165 -0.00913 0.21029 0.13356 0.03810 -0.33900 - 56 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 56 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 57 -0.09475 0.17911 0.07306 -0.04231 0.21542 0.02497 58 -0.09475 0.17911 -0.07306 0.04231 -0.21542 0.02497 59 -0.09719 -0.02141 -0.17813 -0.10503 -0.08716 -0.26260 @@ -1983,36 +3601,36 @@ 25 26 27 28 29 30 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00257 0.00315 0.02506 0.00000 -0.01028 -0.00342 - 2 -0.00882 -0.01168 -0.09024 -0.00000 0.04486 0.02281 - 3 -0.08496 0.16711 0.08893 -0.00000 0.09215 -0.13094 - 4 0.07881 -0.17820 0.00082 -0.00000 0.24197 0.26840 - 5 -0.00000 -0.00000 -0.00000 0.33761 0.00000 0.00000 - 6 -0.00257 -0.00315 0.02506 0.00000 0.01028 -0.00342 - 7 0.00882 0.01168 -0.09024 -0.00000 -0.04486 0.02281 - 8 -0.08496 0.16711 -0.08893 0.00000 0.09215 0.13094 - 9 0.07881 -0.17820 -0.00082 0.00000 0.24197 -0.26840 - 10 -0.00000 0.00000 0.00000 0.33761 -0.00000 -0.00000 - 11 0.02849 -0.01759 0.00530 0.00000 0.00685 0.00271 - 12 -0.09067 0.06357 -0.02695 -0.00000 -0.02118 -0.00884 - 13 0.30758 -0.10066 -0.12838 0.00000 0.06490 0.13268 - 14 0.14541 0.22434 -0.13363 0.00000 0.04102 -0.27818 - 15 -0.00000 -0.00000 0.00000 0.29798 -0.00000 -0.00000 - 16 -0.02849 0.01759 0.00530 0.00000 -0.00685 0.00271 - 17 0.09067 -0.06357 -0.02695 -0.00000 0.02118 -0.00884 - 18 0.30758 -0.10066 0.12838 -0.00000 0.06490 -0.13268 - 19 0.14541 0.22434 0.13363 -0.00000 0.04102 0.27818 + 1 0.00257 0.00315 0.02505 -0.00000 -0.01028 -0.00342 + 2 -0.00882 -0.01168 -0.09024 0.00000 0.04486 0.02281 + 3 -0.08497 0.16711 0.08893 -0.00000 0.09215 -0.13094 + 4 0.07881 -0.17820 0.00082 0.00000 0.24197 0.26840 + 5 0.00000 0.00000 0.00000 0.33761 0.00000 -0.00000 + 6 -0.00257 -0.00315 0.02505 -0.00000 0.01028 -0.00342 + 7 0.00882 0.01168 -0.09024 0.00000 -0.04486 0.02281 + 8 -0.08497 0.16711 -0.08893 0.00000 0.09215 0.13094 + 9 0.07881 -0.17820 -0.00082 -0.00000 0.24197 -0.26840 + 10 0.00000 0.00000 0.00000 0.33761 0.00000 -0.00000 + 11 0.02849 -0.01759 0.00530 -0.00000 0.00685 0.00271 + 12 -0.09067 0.06357 -0.02695 0.00000 -0.02118 -0.00884 + 13 0.30759 -0.10066 -0.12838 0.00000 0.06490 0.13268 + 14 0.14541 0.22434 -0.13363 -0.00000 0.04102 -0.27818 + 15 0.00000 0.00000 0.00000 0.29798 0.00000 -0.00000 + 16 -0.02849 0.01759 0.00530 -0.00000 -0.00685 0.00271 + 17 0.09067 -0.06357 -0.02695 0.00000 0.02118 -0.00884 + 18 0.30759 -0.10066 0.12838 -0.00000 0.06490 -0.13268 + 19 0.14541 0.22434 0.13363 0.00000 0.04102 0.27818 20 0.00000 0.00000 0.00000 0.29798 0.00000 -0.00000 21 0.01970 0.00712 -0.00754 -0.00000 -0.01375 -0.00888 - 22 -0.06220 -0.02043 0.02538 0.00000 0.04725 0.02465 + 22 -0.06220 -0.02043 0.02537 0.00000 0.04725 0.02465 23 0.18806 -0.07066 0.06386 -0.00000 -0.14449 -0.08055 - 24 -0.22609 -0.19326 0.13981 0.00000 -0.00790 0.23445 - 25 0.00000 0.00000 0.00000 0.29717 -0.00000 -0.00000 + 24 -0.22609 -0.19326 0.13980 0.00000 -0.00790 0.23445 + 25 0.00000 0.00000 0.00000 0.29717 0.00000 -0.00000 26 -0.01970 -0.00712 -0.00754 -0.00000 0.01375 -0.00888 - 27 0.06220 0.02043 0.02538 0.00000 -0.04725 0.02465 + 27 0.06220 0.02043 0.02537 0.00000 -0.04725 0.02465 28 0.18806 -0.07066 -0.06386 0.00000 -0.14449 0.08055 - 29 -0.22609 -0.19326 -0.13981 -0.00000 -0.00790 -0.23445 - 30 0.00000 0.00000 -0.00000 0.29717 -0.00000 -0.00000 + 29 -0.22609 -0.19326 -0.13980 -0.00000 -0.00790 -0.23445 + 30 0.00000 0.00000 0.00000 0.29717 0.00000 -0.00000 31 0.25227 0.00752 -0.15647 0.00000 0.04671 0.02034 32 -0.25227 -0.00752 -0.15647 0.00000 -0.04671 0.02034 33 0.21818 0.04690 0.00782 -0.00000 -0.05383 -0.24041 @@ -2020,340 +3638,340 @@ 35 -0.00193 0.00109 -0.01690 -0.00000 0.00273 -0.01988 36 0.00461 0.01245 0.07134 0.00000 -0.00655 0.08279 37 -0.01859 -0.20168 -0.20888 0.00000 -0.21725 0.04337 - 38 -0.06686 0.18774 0.08750 -0.00000 -0.16914 0.24814 - 39 -0.00000 -0.00000 -0.00000 0.17395 0.00000 -0.00000 + 38 -0.06686 0.18774 0.08750 0.00000 -0.16914 0.24814 + 39 0.00000 0.00000 0.00000 0.17395 0.00000 -0.00000 40 0.00193 -0.00109 -0.01690 -0.00000 -0.00273 -0.01988 41 -0.00461 -0.01245 0.07134 0.00000 0.00655 0.08279 42 -0.01859 -0.20168 0.20888 -0.00000 -0.21725 -0.04337 - 43 -0.06686 0.18774 -0.08750 0.00000 -0.16914 -0.24814 - 44 0.00000 0.00000 -0.00000 0.17395 -0.00000 0.00000 - 45 0.01673 0.14559 0.20023 0.00000 0.25910 -0.06640 - 46 -0.01673 -0.14559 0.20023 0.00000 -0.25910 -0.06640 + 43 -0.06686 0.18774 -0.08750 -0.00000 -0.16914 -0.24814 + 44 0.00000 0.00000 0.00000 0.17395 0.00000 -0.00000 + 45 0.01673 0.14559 0.20023 -0.00000 0.25910 -0.06640 + 46 -0.01673 -0.14559 0.20023 -0.00000 -0.25910 -0.06640 47 0.00445 0.02052 0.01051 -0.00000 0.00350 0.00833 48 -0.01850 -0.05651 -0.02704 0.00000 -0.01441 -0.02127 - 49 -0.07653 0.12000 0.29519 0.00000 0.19964 0.02772 - 50 -0.00552 -0.24568 0.04849 0.00000 0.13688 -0.14507 - 51 0.00000 0.00000 -0.00000 0.09244 -0.00000 0.00000 + 49 -0.07653 0.12000 0.29519 -0.00000 0.19964 0.02772 + 50 -0.00552 -0.24568 0.04849 -0.00000 0.13688 -0.14507 + 51 0.00000 0.00000 0.00000 0.09244 0.00000 -0.00000 52 -0.00445 -0.02052 0.01051 -0.00000 -0.00350 0.00833 53 0.01850 0.05651 -0.02704 0.00000 0.01441 -0.02127 - 54 -0.07653 0.12000 -0.29519 -0.00000 0.19964 -0.02772 - 55 -0.00552 -0.24568 -0.04849 -0.00000 0.13688 0.14507 - 56 0.00000 0.00000 -0.00000 0.09244 -0.00000 0.00000 - 57 -0.05395 0.05142 0.26801 0.00000 0.23103 -0.05231 - 58 0.05395 -0.05142 0.26801 0.00000 -0.23103 -0.05231 - 59 0.01519 0.15786 -0.14304 -0.00000 -0.21233 0.13552 - 60 -0.01519 -0.15786 -0.14304 -0.00000 0.21233 0.13552 + 54 -0.07653 0.12000 -0.29519 0.00000 0.19964 -0.02772 + 55 -0.00552 -0.24568 -0.04849 0.00000 0.13688 0.14507 + 56 0.00000 0.00000 0.00000 0.09244 0.00000 -0.00000 + 57 -0.05395 0.05142 0.26801 -0.00000 0.23103 -0.05231 + 58 0.05395 -0.05142 0.26801 -0.00000 -0.23103 -0.05231 + 59 0.01519 0.15786 -0.14304 0.00000 -0.21233 0.13552 + 60 -0.01519 -0.15786 -0.14304 0.00000 0.21233 0.13552 31 32 33 34 35 36 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00699 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 2 0.03378 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 3 0.29586 0.00000 0.00000 0.00000 0.00000 0.00000 - 4 0.09493 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 5 -0.00000 0.34896 -0.01801 0.00575 0.38755 0.44267 - 6 -0.00699 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 7 0.03378 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 8 -0.29586 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 9 -0.09493 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 1 -0.00699 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 2 0.03378 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 3 0.29585 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 4 0.09493 -0.00000 0.00000 0.00000 0.00000 0.00000 + 5 0.00000 0.34896 -0.01801 0.00575 0.38755 0.44267 + 6 -0.00699 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 7 0.03378 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 8 -0.29585 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 9 -0.09493 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 10 0.00000 -0.34896 -0.01801 -0.00575 -0.38755 0.44267 - 11 -0.01201 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 12 0.03558 0.00000 0.00000 0.00000 0.00000 -0.00000 - 13 -0.22212 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 14 -0.04919 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 11 -0.01201 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 12 0.03558 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 13 -0.22212 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 14 -0.04919 0.00000 0.00000 -0.00000 -0.00000 0.00000 15 0.00000 0.13165 -0.17920 0.46363 0.21507 -0.23227 - 16 -0.01201 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 17 0.03558 0.00000 0.00000 0.00000 0.00000 -0.00000 - 18 0.22212 0.00000 0.00000 0.00000 0.00000 -0.00000 - 19 0.04919 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 16 -0.01201 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 17 0.03558 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 18 0.22212 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 19 0.04919 -0.00000 -0.00000 0.00000 0.00000 -0.00000 20 0.00000 -0.13165 -0.17920 -0.46363 -0.21507 -0.23227 - 21 0.00761 0.00000 0.00000 0.00000 0.00000 -0.00000 - 22 -0.02194 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 23 0.28060 0.00000 0.00000 0.00000 0.00000 0.00000 - 24 0.09600 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 21 0.00761 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 22 -0.02194 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 23 0.28060 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 24 0.09600 -0.00000 -0.00000 0.00000 0.00000 0.00000 25 0.00000 -0.13211 -0.17663 0.45754 -0.23074 -0.27755 - 26 0.00761 0.00000 0.00000 0.00000 0.00000 -0.00000 - 27 -0.02194 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 28 -0.28060 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 29 -0.09600 0.00000 0.00000 0.00000 -0.00000 0.00000 + 26 0.00761 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 27 -0.02194 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 28 -0.28060 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 29 -0.09600 0.00000 0.00000 -0.00000 -0.00000 -0.00000 30 0.00000 0.13211 -0.17663 -0.45754 0.23074 -0.27755 - 31 -0.25807 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 32 -0.25807 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 33 0.15131 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 34 0.15131 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 35 -0.01113 0.00000 0.00000 0.00000 0.00000 -0.00000 - 36 0.03843 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 37 0.13689 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 38 0.11202 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 31 -0.25807 -0.00000 0.00000 0.00000 0.00000 0.00000 + 32 -0.25807 -0.00000 0.00000 0.00000 0.00000 0.00000 + 33 0.15131 0.00000 -0.00000 0.00000 0.00000 0.00000 + 34 0.15131 0.00000 -0.00000 0.00000 0.00000 0.00000 + 35 -0.01113 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 36 0.03843 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 37 0.13689 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 38 0.11202 0.00000 0.00000 0.00000 0.00000 0.00000 39 0.00000 -0.37648 0.41378 -0.00037 0.22367 0.25613 - 40 -0.01113 0.00000 0.00000 0.00000 0.00000 -0.00000 - 41 0.03843 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 42 -0.13689 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 43 -0.11202 0.00000 0.00000 0.00000 0.00000 0.00000 - 44 -0.00000 0.37648 0.41378 0.00037 -0.22367 0.25613 - 45 -0.18274 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 46 -0.18274 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 47 -0.00467 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 48 0.01837 0.00000 0.00000 0.00000 0.00000 -0.00000 - 49 -0.10958 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 50 -0.03768 0.00000 0.00000 0.00000 0.00000 0.00000 - 51 -0.00000 -0.27140 0.41796 0.00954 0.39737 -0.44961 - 52 -0.00467 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 53 0.01837 0.00000 0.00000 0.00000 0.00000 -0.00000 - 54 0.10958 0.00000 0.00000 -0.00000 0.00000 0.00000 - 55 0.03768 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 56 -0.00000 0.27140 0.41796 -0.00954 -0.39737 -0.44961 - 57 -0.11595 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 58 -0.11595 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 59 0.08985 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 60 0.08985 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 40 -0.01113 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 41 0.03843 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 42 -0.13689 0.00000 -0.00000 0.00000 0.00000 0.00000 + 43 -0.11202 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 44 0.00000 0.37648 0.41378 0.00037 -0.22367 0.25613 + 45 -0.18274 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 46 -0.18274 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 47 -0.00467 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 48 0.01837 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 49 -0.10958 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 50 -0.03768 0.00000 0.00000 0.00000 0.00000 -0.00000 + 51 0.00000 -0.27140 0.41796 0.00954 0.39737 -0.44961 + 52 -0.00467 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 53 0.01837 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 54 0.10958 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 55 0.03768 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 56 0.00000 0.27140 0.41796 -0.00954 -0.39737 -0.44961 + 57 -0.11595 0.00000 -0.00000 0.00000 0.00000 0.00000 + 58 -0.11595 0.00000 -0.00000 0.00000 0.00000 0.00000 + 59 0.08985 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 60 0.08985 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 37 38 39 40 41 42 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 0.00000 -0.00000 -0.00000 -0.06824 -0.03374 - 2 0.00000 -0.00000 0.00000 0.00000 0.40157 0.19824 - 3 0.00000 0.00000 0.00000 -0.00000 0.08710 0.28506 - 4 -0.00000 -0.00000 0.00000 0.00000 0.27371 0.13577 - 5 -0.03192 -0.02345 0.49722 0.54348 -0.00000 -0.00000 - 6 -0.00000 0.00000 -0.00000 -0.00000 -0.06824 0.03374 - 7 0.00000 -0.00000 0.00000 0.00000 0.40157 -0.19824 - 8 0.00000 0.00000 -0.00000 0.00000 -0.08710 0.28506 - 9 -0.00000 -0.00000 -0.00000 -0.00000 -0.27371 0.13577 - 10 -0.03192 0.02345 0.49722 -0.54348 0.00000 0.00000 - 11 0.00000 0.00000 -0.00000 -0.00000 -0.02814 0.00595 - 12 -0.00000 -0.00000 0.00000 0.00000 0.17347 -0.02878 - 13 0.00000 -0.00000 -0.00000 0.00000 0.30451 0.35544 - 14 -0.00000 0.00000 -0.00000 -0.00000 0.05353 0.01074 + 1 0.00000 0.00000 0.00000 0.00000 -0.06824 -0.03375 + 2 0.00000 -0.00000 -0.00000 -0.00000 0.40157 0.19824 + 3 0.00000 -0.00000 -0.00000 -0.00000 0.08710 0.28506 + 4 -0.00000 0.00000 0.00000 0.00000 0.27371 0.13577 + 5 -0.03192 -0.02345 0.49722 0.54348 0.00000 -0.00000 + 6 0.00000 0.00000 0.00000 0.00000 -0.06824 0.03375 + 7 0.00000 -0.00000 -0.00000 -0.00000 0.40157 -0.19824 + 8 -0.00000 0.00000 0.00000 0.00000 -0.08710 0.28506 + 9 0.00000 -0.00000 -0.00000 -0.00000 -0.27371 0.13577 + 10 -0.03192 0.02345 0.49722 -0.54348 0.00000 -0.00000 + 11 -0.00000 -0.00000 -0.00000 -0.00000 -0.02814 0.00595 + 12 -0.00000 0.00000 0.00000 0.00000 0.17347 -0.02878 + 13 0.00000 0.00000 -0.00000 0.00000 0.30451 0.35544 + 14 -0.00000 0.00000 0.00000 0.00000 0.05353 0.01074 15 0.58269 0.24069 -0.16674 -0.46418 0.00000 0.00000 - 16 -0.00000 0.00000 -0.00000 -0.00000 -0.02814 -0.00595 - 17 0.00000 -0.00000 0.00000 0.00000 0.17347 0.02878 + 16 -0.00000 -0.00000 -0.00000 -0.00000 -0.02814 -0.00595 + 17 -0.00000 0.00000 0.00000 0.00000 0.17347 0.02878 18 -0.00000 -0.00000 0.00000 -0.00000 -0.30451 0.35544 - 19 -0.00000 0.00000 0.00000 0.00000 -0.05353 0.01074 - 20 0.58269 -0.24069 -0.16674 0.46418 -0.00000 -0.00000 - 21 -0.00000 -0.00000 0.00000 0.00000 -0.04649 -0.01586 - 22 0.00000 0.00000 -0.00000 0.00000 0.28090 0.09658 - 23 0.00000 0.00000 -0.00000 0.00000 0.20264 0.28597 - 24 -0.00000 -0.00000 -0.00000 -0.00000 -0.12426 0.00564 - 25 -0.55324 -0.23225 -0.19920 0.46688 -0.00000 -0.00000 - 26 0.00000 -0.00000 0.00000 0.00000 -0.04649 0.01586 - 27 -0.00000 0.00000 -0.00000 -0.00000 0.28090 -0.09658 - 28 -0.00000 -0.00000 0.00000 -0.00000 -0.20264 0.28597 - 29 -0.00000 -0.00000 0.00000 0.00000 0.12426 0.00564 - 30 -0.55324 0.23225 -0.19920 -0.46688 0.00000 0.00000 - 31 0.00000 -0.00000 -0.00000 -0.00000 -0.41378 -0.32189 + 19 0.00000 -0.00000 -0.00000 -0.00000 -0.05353 0.01074 + 20 0.58269 -0.24069 -0.16674 0.46418 -0.00000 0.00000 + 21 0.00000 -0.00000 -0.00000 -0.00000 -0.04649 -0.01586 + 22 -0.00000 -0.00000 0.00000 0.00000 0.28090 0.09658 + 23 0.00000 -0.00000 0.00000 0.00000 0.20264 0.28597 + 24 -0.00000 0.00000 -0.00000 -0.00000 -0.12426 0.00564 + 25 -0.55324 -0.23225 -0.19920 0.46688 -0.00000 0.00000 + 26 0.00000 -0.00000 -0.00000 -0.00000 -0.04649 0.01586 + 27 -0.00000 -0.00000 0.00000 0.00000 0.28090 -0.09658 + 28 -0.00000 0.00000 -0.00000 -0.00000 -0.20264 0.28597 + 29 0.00000 -0.00000 0.00000 0.00000 0.12426 0.00564 + 30 -0.55324 0.23225 -0.19920 -0.46688 -0.00000 0.00000 + 31 -0.00000 -0.00000 -0.00000 -0.00000 -0.41378 -0.32189 32 -0.00000 -0.00000 -0.00000 -0.00000 -0.41378 0.32189 - 33 -0.00000 0.00000 0.00000 -0.00000 -0.42379 -0.27080 - 34 -0.00000 0.00000 0.00000 -0.00000 -0.42379 0.27080 - 35 0.00000 -0.00000 0.00000 0.00000 0.05002 0.00767 - 36 -0.00000 0.00000 -0.00000 -0.00000 -0.28213 -0.04685 - 37 -0.00000 0.00000 -0.00000 -0.00000 -0.24477 0.34456 - 38 -0.00000 -0.00000 -0.00000 -0.00000 -0.33810 0.21676 - 39 0.00380 0.52217 -0.52913 0.28773 -0.00000 -0.00000 - 40 0.00000 -0.00000 0.00000 0.00000 0.05002 -0.00767 - 41 -0.00000 -0.00000 -0.00000 -0.00000 -0.28213 0.04685 - 42 0.00000 -0.00000 0.00000 0.00000 0.24477 0.34456 - 43 0.00000 0.00000 0.00000 0.00000 0.33810 0.21676 - 44 0.00380 -0.52217 -0.52913 -0.28773 0.00000 0.00000 - 45 -0.00000 -0.00000 -0.00000 -0.00000 -0.14441 0.43383 - 46 -0.00000 -0.00000 -0.00000 -0.00000 -0.14441 -0.43383 - 47 -0.00000 -0.00000 0.00000 -0.00000 -0.04092 0.00256 - 48 0.00000 0.00000 0.00000 0.00000 0.23693 -0.01934 - 49 -0.00000 -0.00000 -0.00000 -0.00000 -0.13832 0.30324 - 50 -0.00000 -0.00000 -0.00000 -0.00000 -0.14825 0.16644 - 51 0.01077 -0.52310 0.37969 -0.15615 0.00000 0.00000 - 52 0.00000 -0.00000 -0.00000 -0.00000 -0.04092 -0.00256 - 53 -0.00000 0.00000 0.00000 0.00000 0.23693 0.01934 - 54 0.00000 0.00000 0.00000 0.00000 0.13832 0.30324 - 55 0.00000 -0.00000 0.00000 0.00000 0.14825 0.16644 + 33 0.00000 0.00000 -0.00000 -0.00000 -0.42379 -0.27080 + 34 0.00000 0.00000 -0.00000 -0.00000 -0.42379 0.27080 + 35 -0.00000 -0.00000 0.00000 0.00000 0.05002 0.00767 + 36 0.00000 -0.00000 -0.00000 -0.00000 -0.28213 -0.04685 + 37 0.00000 0.00000 0.00000 0.00000 -0.24477 0.34456 + 38 -0.00000 0.00000 0.00000 0.00000 -0.33810 0.21676 + 39 0.00380 0.52217 -0.52913 0.28773 0.00000 -0.00000 + 40 -0.00000 -0.00000 0.00000 0.00000 0.05002 -0.00767 + 41 0.00000 -0.00000 -0.00000 -0.00000 -0.28213 0.04685 + 42 -0.00000 -0.00000 -0.00000 -0.00000 0.24477 0.34456 + 43 0.00000 -0.00000 -0.00000 -0.00000 0.33810 0.21676 + 44 0.00380 -0.52217 -0.52913 -0.28773 -0.00000 -0.00000 + 45 0.00000 0.00000 0.00000 0.00000 -0.14441 0.43383 + 46 0.00000 0.00000 0.00000 0.00000 -0.14441 -0.43383 + 47 0.00000 -0.00000 0.00000 0.00000 -0.04092 0.00256 + 48 -0.00000 0.00000 -0.00000 -0.00000 0.23693 -0.01935 + 49 0.00000 0.00000 0.00000 0.00000 -0.13832 0.30324 + 50 -0.00000 0.00000 0.00000 0.00000 -0.14825 0.16644 + 51 0.01077 -0.52310 0.37969 -0.15615 -0.00000 -0.00000 + 52 0.00000 -0.00000 0.00000 0.00000 -0.04092 -0.00256 + 53 -0.00000 0.00000 -0.00000 -0.00000 0.23693 0.01935 + 54 -0.00000 -0.00000 -0.00000 -0.00000 0.13832 0.30324 + 55 0.00000 -0.00000 -0.00000 -0.00000 0.14825 0.16644 56 0.01077 0.52310 0.37969 0.15615 -0.00000 -0.00000 - 57 -0.00000 -0.00000 0.00000 0.00000 0.10790 -0.32313 - 58 0.00000 0.00000 0.00000 0.00000 0.10790 0.32313 - 59 -0.00000 0.00000 -0.00000 -0.00000 -0.35854 0.28381 - 60 -0.00000 -0.00000 -0.00000 -0.00000 -0.35854 -0.28381 + 57 0.00000 -0.00000 -0.00000 -0.00000 0.10790 -0.32313 + 58 0.00000 -0.00000 -0.00000 -0.00000 0.10790 0.32313 + 59 -0.00000 0.00000 0.00000 0.00000 -0.35854 0.28381 + 60 -0.00000 0.00000 0.00000 0.00000 -0.35854 -0.28381 43 44 45 46 47 48 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.05834 0.02268 0.05278 -0.08118 -0.02216 -0.12893 - 2 0.33838 -0.13703 -0.31847 0.47622 0.13839 0.78231 - 3 -0.09823 -0.10366 0.25896 -0.11474 -0.11098 -0.01962 + 1 -0.05834 0.02268 0.05279 -0.08118 -0.02216 -0.12893 + 2 0.33838 -0.13703 -0.31848 0.47622 0.13840 0.78230 + 3 -0.09823 -0.10366 0.25896 -0.11473 -0.11098 -0.01962 4 0.46153 0.07568 -0.15525 0.01704 -0.24323 -0.03427 - 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 6 0.05834 0.02268 0.05278 0.08118 0.02216 -0.12893 - 7 -0.33838 -0.13703 -0.31847 -0.47622 -0.13839 0.78231 - 8 -0.09823 0.10366 -0.25896 -0.11474 -0.11098 0.01962 + 5 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 6 0.05834 0.02268 0.05279 0.08118 0.02216 -0.12893 + 7 -0.33838 -0.13703 -0.31848 -0.47622 -0.13840 0.78230 + 8 -0.09823 0.10366 -0.25896 -0.11473 -0.11098 0.01962 9 0.46153 -0.07568 0.15525 0.01704 -0.24323 0.03427 - 10 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 11 0.02504 -0.06444 0.07255 0.07415 0.05951 0.08004 - 12 -0.15222 0.39352 -0.44365 -0.44067 -0.36868 -0.49966 + 12 -0.15223 0.39353 -0.44365 -0.44066 -0.36868 -0.49965 13 -0.13061 0.00225 -0.04821 -0.10021 -0.31643 -0.01875 - 14 0.22995 0.12425 0.16486 0.02279 -0.31506 -0.28291 - 15 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 14 0.22995 0.12424 0.16486 0.02279 -0.31506 -0.28291 + 15 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 16 -0.02504 -0.06444 0.07255 -0.07415 -0.05951 0.08004 - 17 0.15222 0.39352 -0.44365 0.44067 0.36868 -0.49966 + 17 0.15223 0.39353 -0.44365 0.44066 0.36868 -0.49965 18 -0.13061 -0.00225 0.04821 -0.10021 -0.31643 0.01875 - 19 0.22995 -0.12425 -0.16486 0.02279 -0.31506 0.28291 - 20 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 19 0.22995 -0.12424 -0.16486 0.02279 -0.31506 0.28291 + 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 21 -0.00510 -0.01994 -0.10148 -0.10140 -0.00736 0.06591 - 22 0.02329 0.12752 0.62008 0.61316 0.03300 -0.41157 - 23 -0.26631 0.17399 -0.03870 0.00523 -0.20946 0.23962 + 22 0.02330 0.12751 0.62008 0.61316 0.03300 -0.41157 + 23 -0.26631 0.17399 -0.03870 0.00524 -0.20946 0.23962 24 0.32178 -0.20676 0.01016 -0.13338 -0.11033 0.24482 - 25 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 25 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 26 0.00510 -0.01994 -0.10148 0.10140 0.00736 0.06591 - 27 -0.02329 0.12752 0.62008 -0.61316 -0.03300 -0.41157 - 28 -0.26631 -0.17399 0.03870 0.00523 -0.20946 -0.23962 + 27 -0.02330 0.12751 0.62008 -0.61316 -0.03300 -0.41157 + 28 -0.26631 -0.17399 0.03870 0.00524 -0.20946 -0.23962 29 0.32178 0.20676 -0.01016 -0.13338 -0.11033 -0.24482 - 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 31 0.11582 -0.29164 0.22670 0.32244 0.60311 0.32408 - 32 -0.11582 -0.29164 0.22670 -0.32244 -0.60311 0.32408 - 33 0.40557 -0.29497 -0.22356 -0.35429 0.04475 0.19253 - 34 -0.40557 -0.29497 -0.22356 0.35429 -0.04475 0.19253 + 30 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 31 0.11582 -0.29164 0.22670 0.32243 0.60311 0.32408 + 32 -0.11582 -0.29164 0.22670 -0.32243 -0.60311 0.32408 + 33 0.40556 -0.29496 -0.22356 -0.35430 0.04475 0.19253 + 34 -0.40556 -0.29496 -0.22356 0.35430 -0.04475 0.19253 35 -0.09347 0.06358 -0.02475 -0.04071 0.07124 0.09223 - 36 0.54611 -0.38217 0.15743 0.25682 -0.44680 -0.55679 + 36 0.54612 -0.38217 0.15743 0.25682 -0.44680 -0.55679 37 0.05807 0.33837 -0.13928 -0.16191 0.22490 0.11605 - 38 0.33241 0.07223 0.23434 0.17329 -0.05088 -0.08498 - 39 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 38 0.33241 0.07222 0.23435 0.17328 -0.05088 -0.08498 + 39 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 40 0.09347 0.06358 -0.02475 0.04071 -0.07124 0.09223 - 41 -0.54611 -0.38217 0.15743 -0.25682 0.44680 -0.55679 + 41 -0.54612 -0.38217 0.15743 -0.25682 0.44680 -0.55679 42 0.05807 -0.33837 0.13928 -0.16191 0.22490 -0.11605 - 43 0.33241 -0.07223 -0.23434 0.17329 -0.05088 0.08498 - 44 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 43 0.33241 -0.07222 -0.23435 0.17328 -0.05088 0.08498 + 44 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 45 -0.15904 0.57961 -0.16935 -0.21129 0.43714 0.36453 46 0.15904 0.57961 -0.16935 0.21129 -0.43714 0.36453 - 47 0.05085 -0.01992 -0.10343 -0.08588 0.02025 -0.06749 - 48 -0.29723 0.11077 0.64735 0.53974 -0.13545 0.40989 - 49 0.10140 0.30436 0.23779 0.25100 0.05170 -0.00024 - 50 0.14226 0.23774 -0.07679 -0.13570 0.29542 -0.05131 - 51 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 52 -0.05085 -0.01992 -0.10343 0.08588 -0.02025 -0.06749 - 53 0.29723 0.11077 0.64735 -0.53974 0.13545 0.40989 - 54 0.10140 -0.30436 -0.23779 0.25100 0.05170 0.00024 - 55 0.14226 -0.23774 0.07679 -0.13570 0.29542 0.05131 - 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 57 -0.01079 -0.39144 -0.51331 -0.44782 -0.05131 -0.21179 - 58 0.01079 -0.39144 -0.51331 0.44782 0.05131 -0.21179 - 59 0.35170 0.25248 -0.32079 -0.31773 0.33770 -0.25941 - 60 -0.35170 0.25248 -0.32079 0.31773 -0.33770 -0.25941 + 47 0.05085 -0.01992 -0.10343 -0.08588 0.02024 -0.06749 + 48 -0.29723 0.11077 0.64735 0.53974 -0.13544 0.40989 + 49 0.10140 0.30436 0.23779 0.25100 0.05171 -0.00023 + 50 0.14225 0.23774 -0.07679 -0.13571 0.29542 -0.05131 + 51 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 52 -0.05085 -0.01992 -0.10343 0.08588 -0.02024 -0.06749 + 53 0.29723 0.11077 0.64735 -0.53974 0.13544 0.40989 + 54 0.10140 -0.30436 -0.23779 0.25100 0.05171 0.00023 + 55 0.14225 -0.23774 0.07679 -0.13571 0.29542 0.05131 + 56 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 57 -0.01079 -0.39144 -0.51332 -0.44781 -0.05131 -0.21180 + 58 0.01079 -0.39144 -0.51332 0.44781 0.05131 -0.21180 + 59 0.35169 0.25249 -0.32079 -0.31773 0.33770 -0.25942 + 60 -0.35169 0.25249 -0.32079 0.31773 -0.33770 -0.25942 49 50 51 52 53 54 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.06085 0.03721 0.06722 0.00317 -0.00053 0.05880 - 2 -0.36184 -0.23260 -0.44870 -0.01124 -0.00248 -0.40591 + 1 0.06085 0.03722 0.06722 0.00317 -0.00053 0.05880 + 2 -0.36183 -0.23260 -0.44870 -0.01124 -0.00248 -0.40591 3 -0.14570 -0.34787 0.12771 -0.56073 0.20695 -0.24957 - 4 0.11217 0.04893 0.60187 0.05941 0.04403 -0.00633 - 5 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 6 -0.06085 0.03721 0.06722 -0.00317 -0.00053 -0.05880 - 7 0.36184 -0.23260 -0.44870 0.01124 -0.00248 0.40591 + 4 0.11217 0.04892 0.60187 0.05942 0.04403 -0.00632 + 5 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 6 -0.06085 0.03722 0.06722 -0.00317 -0.00053 -0.05880 + 7 0.36183 -0.23260 -0.44870 0.01124 -0.00248 0.40591 8 -0.14570 0.34787 -0.12771 -0.56073 -0.20695 -0.24957 - 9 0.11217 -0.04893 -0.60187 0.05941 -0.04403 -0.00633 - 10 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 9 0.11217 -0.04892 -0.60187 0.05942 -0.04403 -0.00632 + 10 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 11 -0.05838 -0.11175 -0.01185 -0.09661 0.00390 0.03680 - 12 0.35368 0.70622 0.07742 0.64780 -0.03140 -0.25015 - 13 -0.14824 -0.09324 -0.45250 0.02122 0.53712 -0.21473 - 14 0.12936 -0.11737 0.15653 0.10781 0.19812 0.72303 - 15 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 12 0.35368 0.70622 0.07742 0.64780 -0.03141 -0.25015 + 13 -0.14824 -0.09323 -0.45250 0.02122 0.53712 -0.21473 + 14 0.12936 -0.11736 0.15653 0.10781 0.19812 0.72303 + 15 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 16 0.05838 -0.11175 -0.01185 0.09661 0.00390 -0.03680 - 17 -0.35368 0.70622 0.07742 -0.64780 -0.03140 0.25015 - 18 -0.14824 0.09324 0.45250 0.02122 -0.53712 -0.21473 - 19 0.12936 0.11737 -0.15653 0.10781 -0.19812 0.72303 - 20 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 17 -0.35368 0.70622 0.07742 -0.64780 -0.03141 0.25015 + 18 -0.14824 0.09323 0.45250 0.02122 -0.53712 -0.21473 + 19 0.12936 0.11736 -0.15653 0.10781 -0.19812 0.72303 + 20 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 21 0.06637 0.09765 -0.04908 -0.03554 -0.00213 -0.08728 - 22 -0.40717 -0.61940 0.31762 0.24771 0.02086 0.59992 - 23 -0.17253 -0.13923 -0.32414 -0.19436 -0.52214 0.33345 - 24 0.14291 -0.18027 0.02623 -0.47822 0.40019 0.39423 - 25 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 22 -0.40716 -0.61940 0.31761 0.24771 0.02086 0.59992 + 23 -0.17253 -0.13924 -0.32414 -0.19436 -0.52214 0.33345 + 24 0.14290 -0.18027 0.02622 -0.47822 0.40019 0.39422 + 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 26 -0.06637 0.09765 -0.04908 0.03554 -0.00213 0.08728 - 27 0.40717 -0.61940 0.31762 -0.24771 0.02086 -0.59992 - 28 -0.17253 0.13923 0.32414 -0.19436 0.52214 0.33345 - 29 0.14291 0.18027 -0.02623 -0.47822 -0.40019 0.39423 - 30 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 27 0.40716 -0.61940 0.31761 -0.24771 0.02086 -0.59992 + 28 -0.17253 0.13924 0.32414 -0.19436 0.52214 0.33345 + 29 0.14290 0.18027 -0.02622 -0.47822 -0.40019 0.39422 + 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 31 -0.07743 -0.21967 0.25325 -0.30688 -0.44831 0.07820 32 0.07743 -0.21967 0.25325 0.30688 -0.44831 -0.07820 - 33 0.47711 0.33385 0.05619 -0.21014 0.51910 -0.26110 - 34 -0.47711 0.33385 0.05619 0.21014 0.51910 0.26110 + 33 0.47711 0.33385 0.05619 -0.21014 0.51910 -0.26111 + 34 -0.47711 0.33385 0.05619 0.21014 0.51910 0.26111 35 0.07086 -0.03056 0.07526 0.02689 0.05143 0.06052 - 36 -0.42900 0.21351 -0.49167 -0.19440 -0.35148 -0.41541 - 37 0.06306 -0.03074 0.15321 -0.26589 -0.12018 0.06499 - 38 0.11911 0.07453 0.00857 0.04267 0.15464 0.06260 - 39 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 36 -0.42899 0.21352 -0.49167 -0.19439 -0.35148 -0.41541 + 37 0.06306 -0.03075 0.15321 -0.26590 -0.12018 0.06499 + 38 0.11911 0.07453 0.00857 0.04267 0.15465 0.06260 + 39 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 40 -0.07086 -0.03056 0.07526 -0.02689 0.05143 -0.06052 - 41 0.42900 0.21351 -0.49167 0.19440 -0.35148 0.41541 - 42 0.06306 0.03074 -0.15321 -0.26589 0.12018 0.06499 - 43 0.11911 -0.07453 -0.00857 0.04267 -0.15464 0.06260 - 44 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 45 0.30082 -0.07193 0.30774 -0.14862 0.09225 0.23756 - 46 -0.30082 -0.07193 0.30774 0.14862 0.09225 -0.23756 + 41 0.42899 0.21352 -0.49167 0.19439 -0.35148 0.41541 + 42 0.06306 0.03075 -0.15321 -0.26590 0.12018 0.06499 + 43 0.11911 -0.07453 -0.00857 0.04267 -0.15465 0.06260 + 44 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 45 0.30081 -0.07193 0.30774 -0.14863 0.09225 0.23757 + 46 -0.30081 -0.07193 0.30774 0.14863 0.09225 -0.23757 47 -0.11287 -0.06460 -0.01973 -0.00897 -0.04267 -0.00685 48 0.70672 0.41504 0.12260 0.06945 0.29014 0.04268 - 49 0.14598 0.13302 -0.34203 0.02326 -0.08284 -0.26189 - 50 -0.02460 -0.38262 -0.12479 0.48344 0.26719 0.10776 - 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 49 0.14599 0.13302 -0.34203 0.02326 -0.08284 -0.26189 + 50 -0.02460 -0.38262 -0.12479 0.48344 0.26719 0.10775 + 51 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 52 0.11287 -0.06460 -0.01973 0.00897 -0.04267 0.00685 53 -0.70672 0.41504 0.12260 -0.06945 0.29014 -0.04268 - 54 0.14598 -0.13302 0.34203 0.02326 0.08284 -0.26189 - 55 -0.02460 0.38262 0.12479 0.48344 -0.26719 0.10776 - 56 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 57 -0.52556 -0.29507 0.23009 -0.10029 -0.14004 0.20420 - 58 0.52556 -0.29507 0.23009 0.10029 -0.14004 -0.20420 - 59 -0.32347 -0.47519 -0.24776 0.35600 0.06441 -0.00414 - 60 0.32347 -0.47519 -0.24776 -0.35600 0.06441 0.00414 + 54 0.14599 -0.13302 0.34203 0.02326 0.08284 -0.26189 + 55 -0.02460 0.38262 0.12479 0.48344 -0.26719 0.10775 + 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 57 -0.52556 -0.29507 0.23009 -0.10029 -0.14003 0.20420 + 58 0.52556 -0.29507 0.23009 0.10029 -0.14003 -0.20420 + 59 -0.32347 -0.47518 -0.24776 0.35601 0.06441 -0.00414 + 60 0.32347 -0.47518 -0.24776 -0.35601 0.06441 0.00414 55 56 57 58 59 60 ----------- ----------- ----------- ----------- ----------- ----------- 1 -0.08989 0.01510 0.01661 0.02005 -0.00499 0.04414 2 0.60853 -0.09062 -0.10600 -0.14140 0.03340 -0.32847 3 -0.21224 -0.11872 0.13200 -0.45433 0.70243 0.16278 - 4 0.05256 -0.36458 -0.38167 0.13629 -0.05065 0.65769 - 5 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 4 0.05257 -0.36457 -0.38167 0.13629 -0.05065 0.65769 + 5 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 6 0.08989 0.01510 0.01661 -0.02005 -0.00499 -0.04414 7 -0.60853 -0.09062 -0.10600 0.14140 0.03340 0.32847 8 -0.21224 0.11872 -0.13200 -0.45433 -0.70243 0.16278 - 9 0.05256 0.36458 0.38167 0.13629 0.05065 0.65769 - 10 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 11 -0.00731 0.02725 -0.01909 -0.04609 0.00745 -0.05196 - 12 0.06373 -0.19115 0.13760 0.33349 -0.05183 0.37682 + 9 0.05257 0.36457 0.38167 0.13629 0.05065 0.65769 + 10 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 11 -0.00731 0.02725 -0.01909 -0.04610 0.00745 -0.05196 + 12 0.06374 -0.19115 0.13760 0.33350 -0.05183 0.37682 13 0.25124 0.25479 0.11127 -0.19457 0.23943 -0.56833 - 14 -0.08785 0.38348 -0.39209 0.12836 -0.53406 -0.24121 - 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 16 0.00731 0.02725 -0.01909 0.04609 0.00745 0.05196 - 17 -0.06373 -0.19115 0.13760 -0.33349 -0.05183 -0.37682 + 14 -0.08785 0.38348 -0.39209 0.12835 -0.53406 -0.24121 + 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 16 0.00731 0.02725 -0.01909 0.04610 0.00745 0.05196 + 17 -0.06374 -0.19115 0.13760 -0.33350 -0.05183 -0.37682 18 0.25124 -0.25479 -0.11127 -0.19457 -0.23943 -0.56833 - 19 -0.08785 -0.38348 0.39209 0.12836 0.53406 -0.24121 - 20 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 19 -0.08785 -0.38348 0.39209 0.12835 0.53406 -0.24121 + 20 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 21 -0.03521 -0.03182 0.01657 -0.02074 -0.00758 0.05675 22 0.23245 0.21889 -0.12012 0.15486 0.05144 -0.41380 - 23 -0.36599 0.17276 0.02185 -0.04663 -0.43599 0.49652 - 24 -0.18562 0.30524 -0.44923 -0.21409 -0.41104 -0.39589 - 25 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 23 -0.36600 0.17276 0.02185 -0.04663 -0.43599 0.49652 + 24 -0.18562 0.30524 -0.44923 -0.21409 -0.41104 -0.39590 + 25 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 26 0.03521 -0.03182 0.01657 0.02074 -0.00758 -0.05675 27 -0.23245 0.21889 -0.12012 -0.15486 0.05144 0.41380 - 28 -0.36599 -0.17276 -0.02185 -0.04663 0.43599 0.49652 - 29 -0.18562 -0.30524 0.44923 -0.21409 0.41104 -0.39589 - 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 31 -0.14093 -0.20985 -0.04154 -0.02084 -0.00735 0.26969 - 32 0.14093 -0.20985 -0.04154 0.02084 -0.00735 -0.26969 - 33 -0.00222 -0.05708 -0.19612 -0.10449 0.03922 -0.27789 - 34 0.00222 -0.05708 -0.19612 0.10449 0.03922 0.27789 + 28 -0.36600 -0.17276 -0.02185 -0.04663 0.43599 0.49652 + 29 -0.18562 -0.30524 0.44923 -0.21409 0.41104 -0.39590 + 30 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 31 -0.14094 -0.20985 -0.04154 -0.02084 -0.00735 0.26969 + 32 0.14094 -0.20985 -0.04154 0.02084 -0.00735 -0.26969 + 33 -0.00222 -0.05707 -0.19612 -0.10449 0.03922 -0.27789 + 34 0.00222 -0.05707 -0.19612 0.10449 0.03922 0.27789 35 0.02328 -0.04109 0.04186 -0.06153 -0.02738 -0.01273 - 36 -0.17902 0.28523 -0.32807 0.46654 0.21757 0.07838 + 36 -0.17901 0.28523 -0.32807 0.46654 0.21757 0.07838 37 0.31030 0.54927 -0.11106 0.60802 0.42984 0.02170 38 0.48066 0.17254 0.66309 -0.46487 -0.31930 0.36053 - 39 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 39 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 40 -0.02328 -0.04109 0.04186 0.06153 -0.02738 0.01273 - 41 0.17902 0.28523 -0.32807 -0.46654 0.21757 -0.07838 + 41 0.17901 0.28523 -0.32807 -0.46654 0.21757 -0.07838 42 0.31030 -0.54927 0.11106 0.60802 -0.42984 0.02170 43 0.48066 -0.17254 -0.66309 -0.46487 0.31930 0.36053 - 44 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 45 0.35066 0.31504 0.14736 0.17100 0.15757 0.04812 46 -0.35066 0.31504 0.14736 -0.17100 0.15757 -0.04812 47 -0.01851 0.03133 -0.04902 0.07130 0.04167 -0.00960 48 0.13135 -0.22709 0.36667 -0.53802 -0.32571 0.08189 - 49 -0.52889 -0.17006 -0.58041 0.39452 0.25502 -0.21909 - 50 -0.23694 -0.53430 0.19950 -0.54048 -0.31984 0.00187 - 51 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 49 -0.52889 -0.17005 -0.58041 0.39453 0.25502 -0.21909 + 50 -0.23694 -0.53430 0.19950 -0.54048 -0.31984 0.00186 + 51 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 52 0.01851 0.03133 -0.04902 -0.07130 0.04167 0.00960 53 -0.13135 -0.22709 0.36667 0.53802 -0.32571 -0.08189 - 54 -0.52889 0.17006 0.58041 0.39452 -0.25502 -0.21909 - 55 -0.23694 0.53430 -0.19950 -0.54048 0.31984 0.00187 - 56 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 54 -0.52889 0.17005 0.58041 0.39453 -0.25502 -0.21909 + 55 -0.23694 0.53430 -0.19950 -0.54048 0.31984 0.00186 + 56 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 57 0.36329 0.28938 0.26297 -0.01006 -0.03248 0.13722 58 -0.36329 0.28938 0.26297 0.01006 -0.03248 -0.13722 59 -0.33886 -0.33075 -0.11581 -0.09330 -0.04790 -0.06477 @@ -2381,14 +3999,11 @@ 1 0 0 1 0.000000 0.000000 0.000000 0.000000 2 2 0 0 -37.347169 -141.071520 -141.071520 244.795872 - 2 1 1 0 0.066522 2.848775 2.848775 -5.631027 - 2 1 0 1 -0.000000 -0.000000 -0.000000 0.000000 - 2 0 2 0 -37.714763 -767.339031 -767.339031 1496.963300 + 2 1 1 0 0.066524 2.848776 2.848776 -5.631027 + 2 1 0 1 0.000000 0.000000 0.000000 0.000000 + 2 0 2 0 -37.714760 -767.339030 -767.339030 1496.963300 2 0 1 1 0.000000 0.000000 0.000000 0.000000 - 2 0 0 2 -43.587345 -21.793672 -21.793672 0.000000 - - - Parallel integral file used 8 records with 0 large values + 2 0 0 2 -43.587344 -21.793672 -21.793672 0.000000 ------------- @@ -2401,14 +4016,14 @@ Dipole moment 0.0000000000 A.U. DMX -0.0000000000 DMXEFC 0.0000000000 DMY 0.0000000000 DMYEFC 0.0000000000 - DMZ 0.0000000000 DMZEFC 0.0000000000 + DMZ -0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 A.U. Total dipole 0.0000000000 A.U. Dipole moment 0.0000000000 Debye(s) DMX -0.0000000000 DMXEFC 0.0000000000 DMY 0.0000000000 DMYEFC 0.0000000000 - DMZ 0.0000000000 DMZEFC 0.0000000000 + DMZ -0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 DEBYE(S) Total dipole 0.0000000000 DEBYE(S) @@ -2428,45 +4043,45 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -37.3471685133 0.0000000000 -37.3471685133 - YY -37.7147628233 0.0000000000 -37.7147628233 - ZZ -43.5873445806 0.0000000000 -43.5873445806 - XY 0.0665220953 0.0000000000 0.0665220953 - XZ -0.0000000000 0.0000000000 -0.0000000000 - YZ 0.0000000000 0.0000000000 0.0000000000 + XX -37.3471685931 0.0000000000 -37.3471685931 + YY -37.7147598234 0.0000000000 -37.7147598234 + ZZ -43.5873441825 0.0000000000 -43.5873441825 + XY 0.0665237349 0.0000000000 0.0665237349 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ -0.0000000000 0.0000000000 -0.0000000000 Second moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -50.2286177524 0.0000000000 -50.2286177524 - YY -50.7229993834 0.0000000000 -50.7229993834 - ZZ -58.6210991872 0.0000000000 -58.6210991872 - XY 0.0894662977 0.0000000000 0.0894662977 - XZ -0.0000000000 0.0000000000 -0.0000000000 - YZ 0.0000000000 0.0000000000 0.0000000000 + XX -50.2286178597 0.0000000000 -50.2286178597 + YY -50.7229953489 0.0000000000 -50.7229953489 + ZZ -58.6210986518 0.0000000000 -58.6210986518 + XY 0.0894685028 0.0000000000 0.0894685028 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ -0.0000000000 0.0000000000 -0.0000000000 Quadrupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 3.3038851887 0.0000000000 3.3038851887 - YY 2.7524937236 0.0000000000 2.7524937236 - ZZ -6.0563789123 0.0000000000 -6.0563789123 - XY 0.0997831429 0.0000000000 0.0997831429 - XZ -0.0000000000 0.0000000000 -0.0000000000 - YZ 0.0000000000 0.0000000000 0.0000000000 + XX 3.3038834099 0.0000000000 3.3038834099 + YY 2.7524965643 0.0000000000 2.7524965643 + ZZ -6.0563799742 0.0000000000 -6.0563799742 + XY 0.0997856024 0.0000000000 0.0997856024 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ -0.0000000000 0.0000000000 -0.0000000000 Quadrupole moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 4.4434315330 0.0000000000 4.4434315330 - YY 3.7018590864 0.0000000000 3.7018590864 - ZZ -8.1452906193 0.0000000000 -8.1452906193 - XY 0.1341994465 0.0000000000 0.1341994465 - XZ -0.0000000000 0.0000000000 -0.0000000000 - YZ 0.0000000000 0.0000000000 0.0000000000 + XX 4.4434291406 0.0000000000 4.4434291406 + YY 3.7018629068 0.0000000000 3.7018629068 + ZZ -8.1452920475 0.0000000000 -8.1452920475 + XY 0.1342027543 0.0000000000 0.1342027543 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ -0.0000000000 0.0000000000 -0.0000000000 1 a.u. = 1.344911 Buckinghams = 1.344911 10**(-26) esu*cm**2 @@ -2482,14 +4097,14 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XXX -0.0000000000 0.0000000000 -0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 - YYX 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 YYZ -0.0000000000 0.0000000000 -0.0000000000 - ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY 0.0000000000 0.0000000000 0.0000000000 + ZZX -0.0000000000 0.0000000000 -0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 XYZ 0.0000000000 0.0000000000 0.0000000000 Third moments in 10**(-34) esu*cm**3 @@ -2497,44 +4112,44 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XXX -0.0000000000 0.0000000000 -0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 - YYX 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 YYZ -0.0000000000 0.0000000000 -0.0000000000 - ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY 0.0000000000 0.0000000000 0.0000000000 + ZZX -0.0000000000 0.0000000000 -0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 XYZ 0.0000000000 0.0000000000 0.0000000000 Octupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX -0.0000000000 0.0000000000 -0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 + XXX 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 XXZ 0.0000000000 0.0000000000 0.0000000000 - YYX 0.0000000000 0.0000000000 0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 YYZ -0.0000000000 0.0000000000 -0.0000000000 ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY 0.0000000000 0.0000000000 0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 XYZ 0.0000000000 0.0000000000 0.0000000000 Octupole moments in 10**(-34) esu*cm**3 Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX -0.0000000000 0.0000000000 -0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 + XXX 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 XXZ 0.0000000000 0.0000000000 0.0000000000 - YYX 0.0000000000 0.0000000000 0.0000000000 + YYX -0.0000000000 0.0000000000 -0.0000000000 YYZ -0.0000000000 0.0000000000 -0.0000000000 ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY 0.0000000000 0.0000000000 0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 XYZ 0.0000000000 0.0000000000 0.0000000000 1 a.u. = 0.711688 10**(-34) esu*cm**3 @@ -2581,8 +4196,8 @@ 8 H 1.0 0.92201 9 H 1.0 0.92068 10 H 1.0 0.92068 - 11 C 6.0 6.07633 - 12 C 6.0 6.07633 + 11 C 6.0 6.07634 + 12 C 6.0 6.07634 13 H 1.0 0.92331 14 H 1.0 0.92331 15 C 6.0 6.15483 @@ -2681,28 +4296,28 @@ Free electrons Valency Number of Sum of + Bond indices - Bond indices Valency Free electrons Bond indices =Mulliken charge = Net spin population - 1 C 3.97306 2.03135 3.97306 6.00441 0.00000 + 1 C 3.97306 2.03135 3.97306 6.00441 -0.00000 2 C 3.97306 2.03135 3.97306 6.00441 -0.00000 3 C 3.96923 2.10747 3.96923 6.07670 -0.00000 4 C 3.96923 2.10747 3.96923 6.07670 -0.00000 5 C 3.97007 2.10706 3.97007 6.07713 -0.00000 6 C 3.97007 2.10706 3.97007 6.07713 -0.00000 - 7 H 0.99392 -0.07191 0.99392 0.92201 -0.00000 + 7 H 0.99392 -0.07191 0.99392 0.92201 0.00000 8 H 0.99392 -0.07191 0.99392 0.92201 -0.00000 9 H 0.99371 -0.07303 0.99371 0.92068 -0.00000 10 H 0.99371 -0.07303 0.99371 0.92068 -0.00000 - 11 C 3.96810 2.10823 3.96810 6.07633 0.00000 - 12 C 3.96810 2.10823 3.96810 6.07633 0.00000 + 11 C 3.96810 2.10823 3.96810 6.07634 -0.00000 + 12 C 3.96810 2.10823 3.96810 6.07634 -0.00000 13 H 0.99412 -0.07081 0.99412 0.92331 -0.00000 - 14 H 0.99412 -0.07081 0.99412 0.92331 0.00000 + 14 H 0.99412 -0.07081 0.99412 0.92331 -0.00000 15 C 3.96478 2.19006 3.96478 6.15483 -0.00000 16 C 3.96478 2.19006 3.96478 6.15483 -0.00000 17 H 0.99421 -0.07032 0.99421 0.92389 -0.00000 - 18 H 0.99421 -0.07032 0.99421 0.92389 -0.00000 - 19 H 0.99371 -0.07301 0.99371 0.92070 0.00000 - 20 H 0.99371 -0.07301 0.99371 0.92070 -0.00000 + 18 H 0.99421 -0.07032 0.99421 0.92389 0.00000 + 19 H 0.99371 -0.07301 0.99371 0.92070 -0.00000 + 20 H 0.99371 -0.07301 0.99371 0.92070 0.00000 - Task times cpu: 48.0s wall: 48.5s + Task times cpu: 12.1s wall: 12.1s Summary of allocated global arrays ----------------------------------- No active global arrays @@ -2713,24 +4328,30 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 668 668 2.18e+05 4760 1.54e+05 420 0 8364 -number of processes/call 1.00e+00 1.00e+00 1.00e+00 1.00e+00 0.00e+00 -bytes total: 3.08e+07 6.60e+06 1.62e+07 3.09e+04 0.00e+00 6.69e+04 +calls: 691 691 2.22e+05 4999 1.73e+05 420 0 1.18e+04 +number of processes/call 2.13e+13 4.49e+13 -1.16e+13 0.00e+00 0.00e+00 +bytes total: 3.11e+07 7.08e+06 1.76e+07 8.00e+00 0.00e+00 9.40e+04 bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 Max memory consumed for GA by this process: 1123200 bytes MA_summarize_allocated_blocks: starting scan ... -MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +heap block 'gridpts', handle 96, address 0x55e612dab6d8: + type of elements: double precision + number of elements: 17448000 + address of client space: 0x55e612dab740 + index for client space: 9758001 + total number of bytes: 139584112 +MA_summarize_allocated_blocks: scan completed: 1 heap block, 0 stack blocks MA usage statistics: allocation statistics: heap stack ---- ----- - current number of blocks 0 0 - maximum number of blocks 24 54 - current total bytes 0 0 - maximum total bytes 61308712 22516376 - maximum total K-bytes 61309 22517 - maximum total M-bytes 62 23 + current number of blocks 1 0 + maximum number of blocks 22 57 + current total bytes 139584112 0 + maximum total bytes 190930952 22516408 + maximum total K-bytes 190931 22517 + maximum total M-bytes 191 23 NWChem Input Module @@ -2745,32 +4366,52 @@ MA usage statistics: Please cite the following reference when publishing results obtained with NWChem: - M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, - T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, - E. Apra, T.L. Windus, W.A. de Jong - "NWChem: a comprehensive and scalable open-source - solution for large scale molecular simulations" - Comput. Phys. Commun. 181, 1477 (2010) - doi:10.1016/j.cpc.2010.04.018 + E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, + V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, + J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, + J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, + C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, + K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, + J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, + V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, + B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, + S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, + A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, + D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, + J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, + A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, + R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, + D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, + V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, + Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, + D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, + A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, + and R. J. Harrison + "NWChem: Past, present, and future + J. Chem. Phys. 152, 184102 (2020) + doi:10.1063/5.0004997 AUTHORS ------- - E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, - J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, - S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, - F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, + T. P. Straatsma, H. J. J. van Dam, D. Wang, T. L. Windus, N. P. Bauman, + A. Panyala, J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, + K. Lopata, S. A. Fischer, S. Krishnamoorthy, M. Jacquelin, W. Ma, M. Klemm, + O. Villa, Y. Chen, V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, + Eric Hermes, L. Jensen, J. E. Moore, J. C. Becca, V. Konjkov, + D. Mejia-Rodriguez, T. Risthaus, M. Malagoli, A. Marenich, A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, - P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, - D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, - A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, - A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, - H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, - K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, - H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, - A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, - R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, - K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, - A. T. Wong, Z. Zhang. - - Total times cpu: 48.2s wall: 50.5s + P.-D. Fan, A. Fonari, M. J. Williamson, R. J. Harrison, J. R. Rehr, + M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, V. Tipparaju, + M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, M. Swart, Q. Wu, + T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, + G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, + K. Tsemekhman, K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, + T. Clark, D. Clerc, H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, + E. Glendening, M. Gutowski, A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, + R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, X. Long, B. Meng, + T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, + M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. + + Total times cpu: 12.1s wall: 12.1s diff --git a/data/NWChem/basicNWChem7.0/dvb_td.out b/data/NWChem/basicNWChem7.0/dvb_td.out index 7632c46d0..967b91daf 100644 --- a/data/NWChem/basicNWChem7.0/dvb_td.out +++ b/data/NWChem/basicNWChem7.0/dvb_td.out @@ -1,26 +1,26 @@ - argument 1 = dvb_td.nw + argument 1 = dvb_td.in - - - Northwest Computational Chemistry Package (NWChem) 7.0.0 + + + Northwest Computational Chemistry Package (NWChem) 7.0.2 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2019 + + Copyright (c) 1994-2020 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = smp-n17.sam.pitt.edu - program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem - date = Sun Aug 8 13:10:14 2021 - - compiled = Wed_May_13_13:33:26_2020 - source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 - nwchem branch = 7.0.0 - nwchem revision = N/A - ga revision = 5.7.1 - use scalapack = F - input = dvb_td.nw + hostname = osmium + program = nwchem + date = Sat Jun 4 13:56:21 2022 + + compiled = Fri_Jul_02_16:33:00_2021 + source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src + nwchem branch = 7.0.2 + nwchem revision = b9985dfa + ga revision = 5.7.2 + use scalapack = T + input = dvb_td.in prefix = dvb. data base = ./dvb.db status = startup - nproc = 4 + nproc = 1 time left = -1s @@ -58,27 +58,27 @@ Memory information ------------------ - heap = 13107196 doubles = 100.0 Mbytes - stack = 13107201 doubles = 100.0 Mbytes - global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) - total = 52428797 doubles = 400.0 Mbytes + heap = 134217726 doubles = 1024.0 Mbytes + stack = 134217723 doubles = 1024.0 Mbytes + global = 268435456 doubles = 2048.0 Mbytes (distinct from heap & stack) + total = 536870905 doubles = 4096.0 Mbytes verify = yes hardfail = no Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + Divinylbenzene in STO-3G basis set ---------------------------------- @@ -90,15 +90,15 @@ ------ auto-z ------ - no constraints, skipping 0.000000000000000E+000 - no constraints, skipping 0.000000000000000E+000 - - + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 C 6.0000 0.23680554 1.41416660 0.00000000 @@ -121,13 +121,13 @@ 18 H 1.0000 -1.44522900 3.70144241 0.00000000 19 H 1.0000 0.04815351 -4.93192286 0.00000000 20 H 1.0000 -0.04815351 4.93192286 0.00000000 - + Atomic Mass ----------- - + C 12.000000 H 1.007825 - + Effective nuclear repulsion energy (a.u.) 445.9370121674 @@ -136,26 +136,26 @@ X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - + Z-matrix (autoz) -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value ----------- -------- ----- ----- ----- ----- ----- ---------- 1 Stretch 1 3 1.42204 @@ -228,7 +228,7 @@ 68 Torsion 4 2 11 13 0.00000 69 Torsion 4 2 11 15 180.00000 70 Torsion 4 6 1 12 180.00000 - 71 Torsion 5 2 4 6 0.00000 + 71 Torsion 5 2 4 6 -0.00000 72 Torsion 5 2 4 8 180.00000 73 Torsion 5 2 11 13 180.00000 74 Torsion 5 2 11 15 0.00000 @@ -238,18 +238,18 @@ 78 Torsion 6 1 12 14 180.00000 79 Torsion 6 1 12 16 0.00000 80 Torsion 6 4 2 11 180.00000 - 81 Torsion 7 3 1 12 0.00000 + 81 Torsion 7 3 1 12 -0.00000 82 Torsion 7 3 5 9 0.00000 - 83 Torsion 8 4 2 11 0.00000 + 83 Torsion 8 4 2 11 -0.00000 84 Torsion 8 4 6 10 0.00000 85 Torsion 9 5 2 11 0.00000 86 Torsion 10 6 1 12 0.00000 87 Torsion 13 11 15 17 180.00000 - 88 Torsion 13 11 15 19 0.00000 + 88 Torsion 13 11 15 19 -0.00000 89 Torsion 14 12 16 18 180.00000 - 90 Torsion 14 12 16 20 0.00000 - - + 90 Torsion 14 12 16 20 -0.00000 + + XYZ format geometry ------------------- 20 @@ -274,7 +274,7 @@ H -1.44522900 3.70144241 0.00000000 H 0.04815351 -4.93192286 0.00000000 H -0.04815351 4.93192286 0.00000000 - + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -347,6 +347,9 @@ + library name resolved from: environment + library file name is: + Summary of "ao basis" -> "" (cartesian) @@ -356,14 +359,14 @@ * sto-3g on all atoms - + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + Basis "ao basis" -> "ao basis" (cartesian) ----- C (Carbon) @@ -373,15 +376,15 @@ 1 S 7.16168370E+01 0.154329 1 S 1.30450960E+01 0.535328 1 S 3.53051220E+00 0.444635 - + 2 S 2.94124940E+00 -0.099967 2 S 6.83483100E-01 0.399513 2 S 2.22289900E-01 0.700115 - + 3 P 2.94124940E+00 0.155916 3 P 6.83483100E-01 0.607684 3 P 2.22289900E-01 0.391957 - + H (Hydrogen) ------------ Exponent Coefficients @@ -389,7 +392,7 @@ 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + Summary of "ao basis" -> "ao basis" (cartesian) @@ -412,14 +415,14 @@ Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 - + Caching 1-el integrals - + General Information ------------------- SCF calculation type: DFT @@ -438,7 +441,7 @@ Convergence on energy requested: 1.00D-06 Convergence on density requested: 1.00D-05 Convergence on gradient requested: 5.00D-04 - + XC Information -------------- B3LYP Method XC Potential @@ -447,7 +450,7 @@ Becke 1988 Exchange Functional 0.720 non-local Lee-Yang-Parr Correlation Functional 0.810 VWN I RPA Correlation Functional 0.190 local - + Grid Information ---------------- Grid used for XC integration: fine @@ -460,7 +463,7 @@ Grid pruning is: on Number of quadrature shells: 1300 Spatial weights used: Erf1 - + Convergence Information ----------------------- Convergence aids based upon iterative change in @@ -475,7 +478,7 @@ dE on: start ASAP start dE off: 2 iters 120 iters 120 iters - + Screening Tolerance Information ------------------------------- Density screening/tol_rho: 1.00D-10 @@ -484,12 +487,12 @@ XC Gaussian exp screening on grid/accXCfunc: 20 Schwarz screening/accCoul: 1.00D-08 - + Superposition of Atomic Density Guess ------------------------------------- - + Sum of atomic energies: -376.44825176 - + Non-variational initial energy ------------------------------ @@ -498,17 +501,17 @@ 2-e energy = 576.084617 HOMO = -0.037644 LUMO = 0.163723 - - + + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 ag 2 bu 3 ag 4 bu 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -518,189 +521,192 @@ 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 bu - - Time after variat. SCF: 0.2 - Time prior to 1st pass: 0.2 + + Time after variat. SCF: 0.3 + Time prior to 1st pass: 0.3 Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 - Max. records in memory = 70 Max. recs in file = 2708490 + Max. records in memory = 276 Max. recs in file = ********* - Grid integrated density: 69.999985662047 + Grid integrated density: 69.999985751215 Requested integration accuracy: 0.10E-06 - !! scf_movecs_sym_adapt: 2 vectors were symmetry contaminated + !! scf_movecs_sym_adapt: 4 vectors were symmetry contaminated Symmetry fudging + !! scf_movecs_sym_adapt: 2 vectors were symmetry contaminated + + Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 12.24 12243468 - Stack Space remaining (MW): 13.11 13106284 + Heap Space remaining (MW): 77.19 77194198 + Stack Space remaining (MW): 134.22 134216804 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.2544158113 -8.28D+02 1.42D-02 3.78D-01 1.6 - Grid integrated density: 69.999985483763 + d= 0,ls=0.0,diis 1 -382.2544158248 -8.28D+02 1.42D-02 3.78D-01 2.9 + Grid integrated density: 69.999985700462 Requested integration accuracy: 0.10E-06 - !! scf_movecs_sym_adapt: 2 vectors were symmetry contaminated + !! scf_movecs_sym_adapt: 6 vectors were symmetry contaminated Symmetry fudging !! scf_movecs_sym_adapt: 2 vectors were symmetry contaminated - d= 0,ls=0.0,diis 2 -382.3017143269 -4.73D-02 6.99D-03 3.82D-02 2.4 - Grid integrated density: 69.999985779548 + d= 0,ls=0.0,diis 2 -382.3017145178 -4.73D-02 6.99D-03 3.82D-02 4.4 + Grid integrated density: 69.999985777698 Requested integration accuracy: 0.10E-06 - !! scf_movecs_sym_adapt: 6 vectors were symmetry contaminated + !! scf_movecs_sym_adapt: 10 vectors were symmetry contaminated Symmetry fudging - d= 0,ls=0.0,diis 3 -382.2954321328 6.28D-03 4.21D-03 7.96D-02 3.4 - Grid integrated density: 69.999985850857 + d= 0,ls=0.0,diis 3 -382.2954321414 6.28D-03 4.21D-03 7.96D-02 6.3 + Grid integrated density: 69.999985849043 Requested integration accuracy: 0.10E-06 !! scf_movecs_sym_adapt: 4 vectors were symmetry contaminated Symmetry fudging - d= 0,ls=0.0,diis 4 -382.3080978125 -1.27D-02 5.18D-04 8.80D-04 4.4 - Grid integrated density: 69.999985853216 + d= 0,ls=0.0,diis 4 -382.3080978098 -1.27D-02 5.18D-04 8.80D-04 8.3 + Grid integrated density: 69.999985851411 Requested integration accuracy: 0.10E-06 !! scf_movecs_sym_adapt: 4 vectors were symmetry contaminated Symmetry fudging - d= 0,ls=0.0,diis 5 -382.3082341550 -1.36D-04 1.18D-04 4.46D-05 5.4 - Grid integrated density: 69.999985849749 + d= 0,ls=0.0,diis 5 -382.3082341544 -1.36D-04 1.18D-04 4.46D-05 10.2 + Grid integrated density: 69.999985847947 Requested integration accuracy: 0.10E-06 - !! scf_movecs_sym_adapt: 4 vectors were symmetry contaminated + !! scf_movecs_sym_adapt: 2 vectors were symmetry contaminated Symmetry fudging Resetting Diis - d= 0,ls=0.0,diis 6 -382.3082402928 -6.14D-06 3.19D-05 3.09D-06 6.4 - Grid integrated density: 69.999985850170 + d= 0,ls=0.0,diis 6 -382.3082402919 -6.14D-06 3.19D-05 3.09D-06 12.1 + Grid integrated density: 69.999985848368 Requested integration accuracy: 0.10E-06 - !! scf_movecs_sym_adapt: 6 vectors were symmetry contaminated + !! scf_movecs_sym_adapt: 2 vectors were symmetry contaminated Symmetry fudging - d= 0,ls=0.0,diis 7 -382.3082407700 -4.77D-07 1.42D-05 1.61D-07 7.3 - Grid integrated density: 69.999985850270 + d= 0,ls=0.0,diis 7 -382.3082407689 -4.77D-07 1.42D-05 1.61D-07 14.0 + Grid integrated density: 69.999985848469 Requested integration accuracy: 0.10E-06 - !! scf_movecs_sym_adapt: 2 vectors were symmetry contaminated + !! scf_movecs_sym_adapt: 4 vectors were symmetry contaminated Symmetry fudging - d= 0,ls=0.0,diis 8 -382.3082407674 2.58D-09 7.55D-06 1.77D-07 8.3 + d= 0,ls=0.0,diis 8 -382.3082407664 2.58D-09 7.55D-06 1.77D-07 16.0 - Total DFT energy = -382.308240767378 - One electron energy = -1400.645116377057 - Coulomb energy = 630.242756469571 - Exchange-Corr. energy = -57.842893027338 + Total DFT energy = -382.308240766357 + One electron energy = -1400.645116381690 + Coulomb energy = 630.242756473936 + Exchange-Corr. energy = -57.842893026049 Nuclear repulsion energy = 445.937012167446 - Numeric. integr. density = 69.999985850270 + Numeric. integr. density = 69.999985848469 + + Total iterative time = 15.7s - Total iterative time = 8.1s - Occupations of the irreducible representations ---------------------------------------------- - + irrep alpha beta -------- -------- -------- ag 15.0 15.0 au 2.0 2.0 bg 3.0 3.0 bu 15.0 15.0 - - + + DFT Final Molecular Orbital Analysis ------------------------------------ - + Vector 1 Occ=2.000000D+00 E=-1.002024D+01 Symmetry=bu - MO Center= -9.8D-10, -5.8D-09, -8.7D-16, r^2= 2.1D+00 + MO Center= -9.3D-18, -2.9D-17, 7.0D-33, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.699304 1 C s 6 -0.699304 2 C s 2 0.031560 1 C s 7 -0.031560 2 C s 35 0.026964 11 C s 40 -0.026964 12 C s - + Vector 2 Occ=2.000000D+00 E=-1.002019D+01 Symmetry=ag - MO Center= 9.8D-10, 5.8D-09, 1.1D-24, r^2= 2.1D+00 + MO Center= 8.8D-17, 4.8D-16, 1.4D-32, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.699301 1 C s 6 0.699301 2 C s 2 0.031352 1 C s 7 0.031352 2 C s 35 -0.027327 11 C s 40 -0.027327 12 C s - + Vector 3 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=bu - MO Center= -4.2D-19, 5.4D-17, -3.5D-32, r^2= 8.6D+00 + MO Center= 3.5D-17, -1.9D-16, -6.1D-33, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.699780 11 C s 40 -0.699780 12 C s 36 0.030781 11 C s 41 -0.030781 12 C s 1 -0.027417 1 C s 6 0.027417 2 C s - + Vector 4 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=ag - MO Center= -9.0D-14, -4.5D-13, -2.2D-28, r^2= 8.6D+00 + MO Center= 1.9D-16, 8.3D-16, -1.3D-32, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.699695 11 C s 40 0.699695 12 C s 36 0.030762 11 C s 41 0.030762 12 C s 1 0.027650 1 C s 6 0.027650 2 C s - + Vector 5 Occ=2.000000D+00 E=-1.000689D+01 Symmetry=ag - MO Center= -2.2D-12, 2.1D-13, -5.2D-27, r^2= 2.0D+00 + MO Center= 2.4D-17, -2.1D-17, -1.2D-31, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 21 0.546480 5 C s 26 0.546480 6 C s 11 -0.437428 3 C s 16 -0.437428 4 C s 22 0.028154 5 C s 27 0.028154 6 C s - + Vector 6 Occ=2.000000D+00 E=-1.000688D+01 Symmetry=bu - MO Center= -1.1D-16, -5.0D-17, 2.2D-32, r^2= 2.0D+00 + MO Center= 1.2D-17, 1.4D-16, -2.4D-32, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 21 0.555962 5 C s 26 -0.555962 6 C s - 11 -0.424211 3 C s 16 0.424211 4 C s + 11 -0.424212 3 C s 16 0.424212 4 C s 1 -0.028679 1 C s 6 0.028679 2 C s 22 0.028654 5 C s 27 -0.028654 6 C s - + Vector 7 Occ=2.000000D+00 E=-1.000624D+01 Symmetry=bu - MO Center= -2.2D-08, 6.3D-10, -5.4D-15, r^2= 2.0D+00 + MO Center= 4.6D-18, -1.5D-16, 9.4D-32, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.556934 3 C s 16 -0.556934 4 C s - 21 0.425522 5 C s 26 -0.425522 6 C s - + 11 0.556933 3 C s 16 -0.556933 4 C s + 21 0.425523 5 C s 26 -0.425523 6 C s + Vector 8 Occ=2.000000D+00 E=-1.000609D+01 Symmetry=ag - MO Center= 2.2D-08, -6.3D-10, -3.4D-15, r^2= 2.0D+00 + MO Center= -3.5D-14, 2.4D-13, 4.2D-15, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.546590 3 C s 16 0.546590 4 C s + 11 0.546589 3 C s 16 0.546589 4 C s 21 0.437662 5 C s 26 0.437662 6 C s 1 0.029445 1 C s 6 0.029445 2 C s - + Vector 9 Occ=2.000000D+00 E=-9.992164D+00 Symmetry=bu - MO Center= 3.1D-15, -3.5D-14, -1.8D-27, r^2= 1.5D+01 + MO Center= 2.0D-14, -2.3D-13, 2.2D-26, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700479 15 C s 52 -0.700479 16 C s 48 0.030860 15 C s 53 -0.030860 16 C s - + Vector 10 Occ=2.000000D+00 E=-9.992164D+00 Symmetry=ag - MO Center= -1.8D-15, -2.4D-15, 1.6D-28, r^2= 1.5D+01 + MO Center= -1.2D-16, 1.2D-15, 1.2D-31, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700478 15 C s 52 0.700478 16 C s 48 0.030860 15 C s 53 0.030860 16 C s - + Vector 11 Occ=2.000000D+00 E=-8.094663D-01 Symmetry=ag - MO Center= -1.4D-09, -7.4D-11, -7.4D-10, r^2= 3.0D+00 + MO Center= -1.4D-09, -5.8D-09, 3.3D-11, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.274703 1 C s 7 0.274703 2 C s @@ -708,9 +714,9 @@ 22 0.246688 5 C s 27 0.246688 6 C s 36 0.127807 11 C s 41 0.127807 12 C s 1 -0.107859 1 C s 6 -0.107859 2 C s - + Vector 12 Occ=2.000000D+00 E=-7.539346D-01 Symmetry=bu - MO Center= 7.0D-11, 6.1D-10, -2.4D-20, r^2= 7.8D+00 + MO Center= 1.7D-09, 1.1D-08, 9.9D-11, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 -0.297168 11 C s 41 0.297168 12 C s @@ -718,9 +724,9 @@ 48 -0.209313 15 C s 53 0.209313 16 C s 35 0.113817 11 C s 40 -0.113817 12 C s 22 -0.112556 5 C s 27 0.112556 6 C s - + Vector 13 Occ=2.000000D+00 E=-7.178615D-01 Symmetry=ag - MO Center= 8.8D-11, 4.7D-11, 1.1D-11, r^2= 1.1D+01 + MO Center= -8.1D-11, -4.8D-09, 1.1D-12, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.314817 11 C s 41 0.314817 12 C s @@ -728,9 +734,9 @@ 12 -0.121456 3 C s 17 -0.121456 4 C s 35 -0.119239 11 C s 40 -0.119239 12 C s 47 -0.117464 15 C s 52 -0.117464 16 C s - + Vector 14 Occ=2.000000D+00 E=-6.999225D-01 Symmetry=bu - MO Center= 1.2D-09, -2.3D-10, 7.2D-13, r^2= 3.2D+00 + MO Center= 4.7D-10, -1.1D-10, -1.3D-13, r^2= 3.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.357134 3 C s 17 -0.357134 4 C s @@ -738,9 +744,9 @@ 11 -0.132324 3 C s 16 0.132324 4 C s 3 0.124986 1 C px 8 0.124986 2 C px 21 -0.120093 5 C s 26 0.120093 6 C s - + Vector 15 Occ=2.000000D+00 E=-6.673151D-01 Symmetry=bu - MO Center= -2.7D-09, -2.5D-09, -7.7D-10, r^2= 9.1D+00 + MO Center= -7.6D-10, -5.8D-09, -3.0D-11, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.299507 15 C s 53 -0.299507 16 C s @@ -748,9 +754,9 @@ 22 -0.202280 5 C s 27 0.202280 6 C s 36 0.136846 11 C s 41 -0.136846 12 C s 38 -0.129054 11 C py 43 -0.129054 12 C py - + Vector 16 Occ=2.000000D+00 E=-5.885092D-01 Symmetry=ag - MO Center= 9.3D-10, 2.6D-08, -4.6D-10, r^2= 8.4D+00 + MO Center= 5.3D-10, 2.8D-09, 3.4D-20, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.241408 15 C s 53 0.241408 16 C s @@ -758,9 +764,9 @@ 2 -0.206379 1 C s 7 -0.206379 2 C s 14 -0.160007 3 C py 19 0.160007 4 C py 36 -0.159613 11 C s 41 -0.159613 12 C s - + Vector 17 Occ=2.000000D+00 E=-5.591515D-01 Symmetry=ag - MO Center= 1.3D-09, -3.2D-09, -2.5D-12, r^2= 5.1D+00 + MO Center= 2.0D-09, -4.9D-10, -1.1D-11, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.326033 3 C s 17 0.326033 4 C s @@ -768,9 +774,9 @@ 22 -0.170746 5 C s 24 0.170444 5 C py 27 -0.170746 6 C s 29 -0.170444 6 C py 31 0.169234 7 H s 32 0.169234 8 H s - + Vector 18 Occ=2.000000D+00 E=-5.314211D-01 Symmetry=bu - MO Center= 6.0D-10, -2.1D-08, 2.8D-19, r^2= 1.2D+01 + MO Center= -1.5D-09, -2.6D-09, 1.6D-13, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.302767 11 C s 41 -0.302767 12 C s @@ -778,9 +784,9 @@ 45 0.170519 13 H s 46 -0.170519 14 H s 57 -0.160626 17 H s 58 0.160626 18 H s 12 0.154466 3 C s 17 -0.154466 4 C s - + Vector 19 Occ=2.000000D+00 E=-5.099374D-01 Symmetry=ag - MO Center= 1.1D-10, -1.8D-10, 2.5D-12, r^2= 7.5D+00 + MO Center= -6.6D-10, 6.2D-10, 1.0D-20, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.201895 5 C px 28 -0.201895 6 C px @@ -788,9 +794,9 @@ 36 0.180760 11 C s 41 0.180760 12 C s 33 0.169279 9 H s 34 0.169279 10 H s 22 0.166022 5 C s 27 0.166022 6 C s - + Vector 20 Occ=2.000000D+00 E=-4.575995D-01 Symmetry=ag - MO Center= 3.1D-09, 1.6D-09, 1.6D-12, r^2= 9.5D+00 + MO Center= 1.3D-09, 1.6D-09, -5.7D-14, r^2= 9.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.212730 15 C px 54 -0.212730 16 C px @@ -798,9 +804,9 @@ 57 0.179111 17 H s 58 0.179111 18 H s 45 -0.153095 13 H s 46 -0.153095 14 H s 14 0.141384 3 C py 19 -0.141384 4 C py - + Vector 21 Occ=2.000000D+00 E=-4.391975D-01 Symmetry=bu - MO Center= 6.6D-10, -3.7D-09, 4.5D-20, r^2= 1.0D+01 + MO Center= 1.1D-09, 3.9D-09, -1.4D-13, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.219233 11 C px 42 0.219233 12 C px @@ -808,9 +814,9 @@ 14 0.184960 3 C py 19 0.184960 4 C py 59 -0.178126 19 H s 60 0.178126 20 H s 45 -0.155496 13 H s 46 0.155496 14 H s - + Vector 22 Occ=2.000000D+00 E=-4.110180D-01 Symmetry=bu - MO Center= -1.4D-10, -6.4D-11, -1.3D-12, r^2= 6.8D+00 + MO Center= -2.4D-09, 5.3D-10, -1.9D-13, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.235308 1 C s 7 -0.235308 2 C s @@ -818,9 +824,9 @@ 31 -0.226657 7 H s 32 0.226657 8 H s 13 -0.222260 3 C px 18 -0.222260 4 C px 24 -0.177973 5 C py 29 -0.177973 6 C py - + Vector 23 Occ=2.000000D+00 E=-3.976932D-01 Symmetry=bu - MO Center= -1.4D-09, 2.3D-09, -5.4D-13, r^2= 8.7D+00 + MO Center= 2.0D-11, -6.6D-11, -2.1D-13, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.251236 5 C px 28 0.251236 6 C px @@ -828,9 +834,9 @@ 3 -0.220826 1 C px 8 -0.220826 2 C px 57 0.215415 17 H s 58 -0.215415 18 H s 38 0.181486 11 C py 43 0.181486 12 C py - + Vector 24 Occ=2.000000D+00 E=-3.959386D-01 Symmetry=ag - MO Center= 2.8D-10, 6.7D-10, -8.1D-21, r^2= 1.5D+01 + MO Center= 7.6D-11, -1.7D-10, 3.7D-13, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.338998 15 C py 55 -0.338998 16 C py @@ -838,9 +844,9 @@ 37 0.251492 11 C px 42 -0.251492 12 C px 45 -0.145063 13 H s 46 -0.145063 14 H s 24 0.136713 5 C py 29 -0.136713 6 C py - + Vector 25 Occ=2.000000D+00 E=-3.744295D-01 Symmetry=bu - MO Center= -2.3D-09, -1.0D-09, 2.5D-20, r^2= 4.4D+00 + MO Center= -3.6D-10, -2.8D-10, 8.8D-14, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 13 0.307586 3 C px 18 0.307586 4 C px @@ -848,9 +854,9 @@ 24 -0.226085 5 C py 29 -0.226085 6 C py 33 0.218183 9 H s 34 -0.218183 10 H s 23 0.188064 5 C px 28 0.188064 6 C px - + Vector 26 Occ=2.000000D+00 E=-3.509365D-01 Symmetry=bu - MO Center= -8.7D-10, 6.8D-10, 5.6D-13, r^2= 9.0D+00 + MO Center= 3.0D-10, -1.2D-10, -9.6D-14, r^2= 9.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.245677 15 C py 55 -0.245677 16 C py @@ -858,9 +864,9 @@ 37 -0.201679 11 C px 42 -0.201679 12 C px 24 -0.193259 5 C py 29 -0.193259 6 C py 38 0.187744 11 C py 43 0.187744 12 C py - + Vector 27 Occ=2.000000D+00 E=-3.470152D-01 Symmetry=ag - MO Center= -6.5D-11, 2.2D-11, -2.3D-22, r^2= 1.2D+01 + MO Center= -1.4D-10, -2.2D-10, 3.4D-21, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.295189 15 C px 54 -0.295189 16 C px @@ -868,9 +874,9 @@ 37 -0.208878 11 C px 42 0.208878 12 C px 45 0.200234 13 H s 46 0.200234 14 H s 31 -0.156471 7 H s 32 -0.156471 8 H s - + Vector 28 Occ=2.000000D+00 E=-3.244703D-01 Symmetry=au - MO Center= -6.6D-12, -7.1D-13, 8.4D-10, r^2= 3.6D+00 + MO Center= 4.0D-17, 5.7D-17, -3.3D-11, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.337608 1 C pz 10 0.337608 2 C pz @@ -878,9 +884,9 @@ 25 0.297169 5 C pz 30 0.297169 6 C pz 39 0.173946 11 C pz 44 0.173946 12 C pz 51 0.092442 15 C pz 56 0.092442 16 C pz - + Vector 29 Occ=2.000000D+00 E=-3.110643D-01 Symmetry=bu - MO Center= 3.6D-10, 5.0D-11, -1.7D-20, r^2= 1.2D+01 + MO Center= -9.4D-12, -3.0D-11, 1.5D-21, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.259101 13 H s 46 -0.259101 14 H s @@ -888,9 +894,9 @@ 57 0.231029 17 H s 58 -0.231029 18 H s 37 -0.217250 11 C px 42 -0.217250 12 C px 59 -0.212335 19 H s 60 0.212335 20 H s - + Vector 30 Occ=2.000000D+00 E=-2.929832D-01 Symmetry=ag - MO Center= 3.2D-10, 1.4D-09, -3.5D-11, r^2= 6.1D+00 + MO Center= -2.2D-11, 8.8D-11, -8.4D-14, r^2= 6.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 -0.278184 3 C py 19 0.278184 4 C py @@ -898,9 +904,9 @@ 38 0.248140 11 C py 43 -0.248140 12 C py 33 -0.240413 9 H s 34 -0.240413 10 H s 24 0.234450 5 C py 29 -0.234450 6 C py - + Vector 31 Occ=2.000000D+00 E=-2.874967D-01 Symmetry=ag - MO Center= -7.9D-11, -5.7D-10, 2.7D-11, r^2= 6.2D+00 + MO Center= -1.2D-11, -5.0D-12, 2.5D-22, r^2= 6.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.295853 1 C px 8 -0.295853 2 C px @@ -908,9 +914,9 @@ 31 -0.258071 7 H s 32 -0.258071 8 H s 13 -0.222114 3 C px 18 0.222114 4 C px 45 -0.182740 13 H s 46 -0.182740 14 H s - + Vector 32 Occ=2.000000D+00 E=-2.634558D-01 Symmetry=bg - MO Center= 1.2D-13, -5.6D-12, 3.1D-12, r^2= 7.8D+00 + MO Center= -1.5D-10, -4.9D-09, -1.3D-10, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.376480 11 C pz 44 0.376480 12 C pz @@ -918,25 +924,25 @@ 51 -0.271399 15 C pz 56 0.271399 16 C pz 15 0.131647 3 C pz 20 -0.131647 4 C pz 25 -0.132107 5 C pz 30 0.132107 6 C pz - + Vector 33 Occ=2.000000D+00 E=-2.123364D-01 Symmetry=au - MO Center= -3.1D-12, -1.5D-11, -1.2D-11, r^2= 1.1D+01 + MO Center= 1.3D-10, 5.6D-10, 3.2D-11, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.417961 15 C pz 56 0.417961 16 C pz 39 0.413781 11 C pz 44 0.413781 12 C pz 15 -0.179205 3 C pz 20 -0.179205 4 C pz 25 -0.176633 5 C pz 30 -0.176633 6 C pz - + Vector 34 Occ=2.000000D+00 E=-1.951683D-01 Symmetry=bg - MO Center= -1.5D-10, 8.0D-11, 5.0D-11, r^2= 2.7D+00 + MO Center= 2.7D-11, -7.3D-11, 2.9D-11, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.463626 3 C pz 20 -0.463626 4 C pz 25 0.457537 5 C pz 30 -0.457537 6 C pz - + Vector 35 Occ=2.000000D+00 E=-1.529966D-01 Symmetry=bg - MO Center= -9.8D-13, 1.8D-11, 7.2D-10, r^2= 8.1D+00 + MO Center= -4.3D-11, 4.6D-09, 5.8D-11, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.397372 15 C pz 56 -0.397372 16 C pz @@ -944,9 +950,9 @@ 25 -0.230744 5 C pz 30 0.230744 6 C pz 39 0.223675 11 C pz 44 -0.223675 12 C pz 15 0.215068 3 C pz 20 -0.215068 4 C pz - + Vector 36 Occ=0.000000D+00 E= 3.750915D-02 Symmetry=au - MO Center= 1.5D-10, -2.2D-09, -6.0D-10, r^2= 8.0D+00 + MO Center= -7.3D-11, -1.9D-09, -1.8D-10, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.449614 15 C pz 56 -0.449614 16 C pz @@ -954,26 +960,26 @@ 25 -0.277553 5 C pz 30 -0.277553 6 C pz 39 0.256133 11 C pz 44 0.256133 12 C pz 15 -0.232265 3 C pz 20 -0.232265 4 C pz - + Vector 37 Occ=0.000000D+00 E= 9.011731D-02 Symmetry=au - MO Center= -1.7D-09, 1.2D-10, 9.0D-11, r^2= 2.7D+00 + MO Center= -8.0D-11, 7.5D-11, -1.7D-12, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.582692 3 C pz 20 0.582692 4 C pz 25 -0.553237 5 C pz 30 -0.553237 6 C pz 5 -0.031922 1 C pz 10 -0.031922 2 C pz - + Vector 38 Occ=0.000000D+00 E= 1.107279D-01 Symmetry=bg - MO Center= 1.3D-09, 2.1D-09, 1.0D-11, r^2= 1.1D+01 + MO Center= 8.0D-11, 1.6D-09, -5.6D-12, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.522167 11 C pz 44 -0.522167 12 C pz 51 -0.523103 15 C pz 56 0.523103 16 C pz 15 0.240693 3 C pz 20 -0.240693 4 C pz 25 -0.232246 5 C pz 30 0.232246 6 C pz - + Vector 39 Occ=0.000000D+00 E= 1.822016D-01 Symmetry=au - MO Center= 2.9D-11, 6.2D-12, -4.6D-11, r^2= 7.9D+00 + MO Center= -1.4D-10, -2.2D-09, 7.7D-11, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.529134 11 C pz 44 -0.529134 12 C pz @@ -981,9 +987,9 @@ 51 0.379694 15 C pz 56 0.379694 16 C pz 25 -0.199198 5 C pz 30 -0.199198 6 C pz 15 -0.166739 3 C pz 20 -0.166739 4 C pz - + Vector 40 Occ=0.000000D+00 E= 2.723015D-01 Symmetry=bg - MO Center= 3.1D-10, -3.5D-11, -3.1D-12, r^2= 3.8D+00 + MO Center= 2.4D-10, 2.2D-09, 1.5D-10, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.543477 1 C pz 10 -0.543477 2 C pz @@ -991,9 +997,9 @@ 15 -0.464184 3 C pz 20 0.464184 4 C pz 39 0.287732 11 C pz 44 -0.287732 12 C pz 51 -0.156154 15 C pz 56 0.156154 16 C pz - + Vector 41 Occ=0.000000D+00 E= 3.324841D-01 Symmetry=ag - MO Center= 1.6D-10, 1.3D-10, 1.9D-10, r^2= 8.8D+00 + MO Center= 1.1D-12, -6.3D-12, 3.3D-11, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 33 -0.423792 9 H s 34 -0.423792 10 H s @@ -1001,9 +1007,9 @@ 2 0.401565 1 C s 7 0.401565 2 C s 59 -0.358543 19 H s 60 -0.358543 20 H s 38 -0.338104 11 C py 43 0.338104 12 C py - + Vector 42 Occ=0.000000D+00 E= 3.406448D-01 Symmetry=bu - MO Center= -5.0D-10, -3.4D-10, 2.8D-12, r^2= 1.0D+01 + MO Center= 4.1D-12, -2.9D-10, 1.7D-11, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.433824 13 H s 46 -0.433824 14 H s @@ -1011,9 +1017,9 @@ 37 0.344558 11 C px 42 0.344558 12 C px 31 -0.321888 7 H s 32 0.321888 8 H s 57 -0.323132 17 H s 58 0.323132 18 H s - + Vector 43 Occ=0.000000D+00 E= 3.795213D-01 Symmetry=bu - MO Center= -3.2D-10, 5.0D-10, -3.8D-11, r^2= 7.8D+00 + MO Center= 8.5D-12, -1.6D-11, 1.4D-10, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.546135 11 C s 41 -0.546135 12 C s @@ -1021,9 +1027,9 @@ 33 0.405552 9 H s 34 -0.405552 10 H s 59 0.351688 19 H s 60 -0.351688 20 H s 2 0.338399 1 C s 7 -0.338399 2 C s - + Vector 44 Occ=0.000000D+00 E= 3.812886D-01 Symmetry=ag - MO Center= -3.7D-10, 7.8D-10, 7.1D-10, r^2= 1.2D+01 + MO Center= -8.9D-11, 2.1D-10, 2.6D-11, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.579606 13 H s 46 0.579606 14 H s @@ -1031,9 +1037,9 @@ 57 -0.391437 17 H s 58 -0.391437 18 H s 36 -0.382165 11 C s 41 -0.382165 12 C s 37 0.338368 11 C px 42 -0.338368 12 C px - + Vector 45 Occ=0.000000D+00 E= 4.103439D-01 Symmetry=ag - MO Center= 1.5D-11, -5.1D-11, 2.7D-10, r^2= 1.1D+01 + MO Center= 1.2D-08, -3.4D-08, 8.8D-11, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.647345 15 C s 53 0.647345 16 C s @@ -1041,9 +1047,9 @@ 57 -0.513320 17 H s 58 -0.513320 18 H s 12 -0.443645 3 C s 17 -0.443645 4 C s 59 -0.320784 19 H s 60 -0.320784 20 H s - + Vector 46 Occ=0.000000D+00 E= 4.112335D-01 Symmetry=bu - MO Center= 4.3D-10, -3.8D-10, -7.2D-11, r^2= 1.1D+01 + MO Center= -1.2D-08, 3.4D-08, -3.7D-10, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 22 0.613161 5 C s 27 -0.613161 6 C s @@ -1051,9 +1057,9 @@ 2 0.476211 1 C s 7 -0.476211 2 C s 57 -0.447801 17 H s 58 0.447801 18 H s 12 -0.440648 3 C s 17 0.440648 4 C s - + Vector 47 Occ=0.000000D+00 E= 4.258029D-01 Symmetry=bu - MO Center= -7.1D-10, -1.0D-09, -1.1D-10, r^2= 9.2D+00 + MO Center= 2.7D-10, 1.1D-09, -6.9D-11, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 31 0.603123 7 H s 32 -0.603123 8 H s @@ -1061,9 +1067,9 @@ 45 0.437132 13 H s 46 -0.437132 14 H s 12 -0.368693 3 C s 17 0.368693 4 C s 59 0.337686 19 H s 60 -0.337686 20 H s - + Vector 48 Occ=0.000000D+00 E= 4.393602D-01 Symmetry=ag - MO Center= 1.9D-10, 3.9D-10, 4.3D-10, r^2= 7.5D+00 + MO Center= -1.1D-10, -5.0D-11, -1.0D-10, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.782293 1 C s 7 0.782293 2 C s @@ -1071,9 +1077,9 @@ 12 -0.499630 3 C s 17 -0.499630 4 C s 22 -0.411591 5 C s 27 -0.411591 6 C s 48 0.409908 15 C s 53 0.409908 16 C s - + Vector 49 Occ=0.000000D+00 E= 4.537204D-01 Symmetry=bu - MO Center= 7.5D-10, -7.6D-10, 1.7D-11, r^2= 1.2D+01 + MO Center= -2.3D-11, 2.4D-10, 1.3D-11, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.706729 15 C s 53 -0.706729 16 C s @@ -1081,9 +1087,9 @@ 33 0.477108 9 H s 34 -0.477108 10 H s 36 -0.428984 11 C s 41 0.428984 12 C s 22 -0.407156 5 C s 27 0.407156 6 C s - + Vector 50 Occ=0.000000D+00 E= 4.783349D-01 Symmetry=ag - MO Center= 8.3D-11, 2.3D-10, -1.1D-09, r^2= 1.1D+01 + MO Center= 1.0D-10, -2.0D-10, 3.5D-11, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.706236 3 C s 17 0.706236 4 C s @@ -1091,9 +1097,9 @@ 59 -0.475172 19 H s 60 -0.475172 20 H s 48 0.415029 15 C s 53 0.415029 16 C s 50 -0.382611 15 C py 55 0.382611 16 C py - + Vector 51 Occ=0.000000D+00 E= 5.255624D-01 Symmetry=ag - MO Center= -5.9D-10, 1.0D-08, 7.9D-11, r^2= 6.5D+00 + MO Center= -5.4D-11, -2.8D-10, -2.4D-11, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.601873 1 C py 9 -0.601873 2 C py @@ -1101,9 +1107,9 @@ 13 -0.452504 3 C px 18 0.452504 4 C px 2 -0.448703 1 C s 7 -0.448703 2 C s 49 -0.342028 15 C px 54 0.342028 16 C px - + Vector 52 Occ=0.000000D+00 E= 5.463497D-01 Symmetry=bu - MO Center= 8.5D-10, -7.3D-09, 3.1D-10, r^2= 7.7D+00 + MO Center= -1.0D-10, -6.5D-10, 4.2D-11, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.647791 3 C s 17 -0.647791 4 C s @@ -1111,9 +1117,9 @@ 50 0.483445 15 C py 55 0.483445 16 C py 24 -0.478218 5 C py 29 -0.478218 6 C py 59 0.356012 19 H s 60 -0.356012 20 H s - + Vector 53 Occ=0.000000D+00 E= 5.764358D-01 Symmetry=ag - MO Center= 1.9D-10, -1.9D-11, -4.5D-12, r^2= 5.4D+00 + MO Center= 6.0D-11, 2.3D-10, 1.1D-11, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 13 0.537122 3 C px 18 -0.537122 4 C px @@ -1121,9 +1127,9 @@ 33 0.519101 9 H s 34 0.519101 10 H s 31 -0.448305 7 H s 32 -0.448305 8 H s 24 0.400192 5 C py 29 -0.400192 6 C py - + Vector 54 Occ=0.000000D+00 E= 5.984386D-01 Symmetry=bu - MO Center= 1.8D-11, 6.0D-11, -1.9D-11, r^2= 4.8D+00 + MO Center= -1.0D-10, -5.3D-11, -4.1D-11, r^2= 4.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 0.723027 3 C py 19 0.723027 4 C py @@ -1131,9 +1137,9 @@ 36 -0.415409 11 C s 41 0.415409 12 C s 2 -0.405908 1 C s 7 0.405908 2 C s 24 0.394225 5 C py 29 0.394225 6 C py - + Vector 55 Occ=0.000000D+00 E= 6.248977D-01 Symmetry=bu - MO Center= -4.4D-10, -4.2D-09, -1.1D-10, r^2= 1.1D+01 + MO Center= 7.5D-13, 2.3D-10, 2.3D-11, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.608531 1 C s 7 -0.608531 2 C s @@ -1141,9 +1147,9 @@ 38 0.480656 11 C py 43 0.480656 12 C py 23 -0.365997 5 C px 28 -0.365997 6 C px 57 0.363287 17 H s 58 -0.363287 18 H s - + Vector 56 Occ=0.000000D+00 E= 6.398348D-01 Symmetry=ag - MO Center= -1.9D-10, 7.0D-11, 2.9D-10, r^2= 9.4D+00 + MO Center= 2.4D-11, 4.9D-10, 1.4D-11, r^2= 9.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.549269 11 C px 42 -0.549269 12 C px @@ -1151,9 +1157,9 @@ 14 0.383484 3 C py 19 -0.383484 4 C py 4 -0.364568 1 C py 9 0.364568 2 C py 59 -0.330753 19 H s 60 -0.330753 20 H s - + Vector 57 Occ=0.000000D+00 E= 6.828364D-01 Symmetry=ag - MO Center= 1.5D-12, -2.5D-10, 5.7D-11, r^2= 9.3D+00 + MO Center= 1.3D-11, -3.4D-10, 2.5D-12, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 38 0.663091 11 C py 43 -0.663091 12 C py @@ -1161,9 +1167,9 @@ 24 -0.449233 5 C py 29 0.449233 6 C py 14 -0.392087 3 C py 19 0.392087 4 C py 4 -0.381675 1 C py 9 0.381675 2 C py - + Vector 58 Occ=0.000000D+00 E= 7.173582D-01 Symmetry=bu - MO Center= 1.0D-10, 6.9D-10, 1.1D-11, r^2= 9.6D+00 + MO Center= 2.0D-09, 2.3D-08, 3.7D-11, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.608018 11 C px 42 0.608018 12 C px @@ -1171,9 +1177,9 @@ 53 0.538021 16 C s 55 -0.540479 16 C py 36 0.466541 11 C s 38 -0.464879 11 C py 41 -0.466541 12 C s 43 -0.464879 12 C py - + Vector 59 Occ=0.000000D+00 E= 7.790413D-01 Symmetry=ag - MO Center= -2.5D-11, -1.4D-10, -8.9D-12, r^2= 5.4D+00 + MO Center= -2.0D-09, -2.4D-08, 4.4D-12, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.702431 1 C px 8 -0.702431 2 C px @@ -1181,9 +1187,9 @@ 23 -0.435988 5 C px 28 0.435988 6 C px 37 0.429836 11 C px 42 -0.429836 12 C px 24 -0.411035 5 C py 29 0.411035 6 C py - + Vector 60 Occ=0.000000D+00 E= 7.942613D-01 Symmetry=bu - MO Center= 2.1D-10, 4.0D-10, 3.9D-12, r^2= 3.4D+00 + MO Center= 4.1D-12, 2.8D-10, 3.8D-11, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.657696 1 C py 9 0.657696 2 C py @@ -1191,7 +1197,7 @@ 23 0.496519 5 C px 28 0.496519 6 C px 22 -0.413799 5 C s 27 0.413799 6 C s 24 -0.395898 5 C py 29 -0.395898 6 C py - + center of mass -------------- @@ -1199,35 +1205,35 @@ moments of inertia (a.u.) ------------------ - 2631.731379210398 -0.000000000000 0.000000000000 - -0.000000000000 390.819001468288 0.000000000000 - 0.000000000000 0.000000000000 3022.550380678686 - + 2631.731379210404 0.000000000000 0.000000000000 + 0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678692 + Multipole analysis of the density --------------------------------- - + L x y z total alpha beta nuclear - - - - ----- ----- ---- ------- 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 - - 1 1 0 0 0.000000 0.000000 0.000000 0.000000 + + 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 1 0 1 0 -0.000000 -0.000000 -0.000000 0.000000 - 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - + 1 0 0 1 -0.000000 -0.000000 -0.000000 0.000000 + 2 2 0 0 -37.347178 -141.071525 -141.071525 244.795872 - 2 1 1 0 0.066532 2.848779 2.848779 -5.631027 + 2 1 1 0 0.066532 2.848780 2.848780 -5.631027 2 1 0 1 0.000000 0.000000 0.000000 0.000000 - 2 0 2 0 -37.714771 -767.339035 -767.339035 1496.963300 - 2 0 1 1 0.000000 0.000000 0.000000 0.000000 + 2 0 2 0 -37.714771 -767.339036 -767.339036 1496.963300 + 2 0 1 1 -0.000000 -0.000000 -0.000000 0.000000 2 0 0 2 -43.587344 -21.793672 -21.793672 0.000000 - + NWChem TDDFT Module ------------------- - - + + Divinylbenzene in STO-3G basis set - - + + General Information ------------------- No. of orbitals : 120 @@ -1242,7 +1248,7 @@ Use of symmetry is : off Symmetry adaption is : on Schwarz screening : 0.10D-07 - + XC Information -------------- B3LYP Method XC Potential @@ -1251,7 +1257,7 @@ Becke 1988 Exchange Functional 0.72 non-local Lee-Yang-Parr Correlation Functional 0.81 VWN I RPA Correlation Functional 0.19 local - + TDDFT Information ----------------- Calculation type : TDDFT @@ -1267,16 +1273,16 @@ Symmetry restriction : off Algorithm : Optimal Davidson threshold : 0.10D-03 - + Memory Information ------------------ - Available GA space size is 104854000 doubles - Available MA space size is 26211076 doubles + Available GA space size is 268431856 doubles + Available MA space size is 214803492 doubles Length of a trial vector is 875 Algorithm : Incore multiple tensor contraction Estimated peak GA usage is 17667150 doubles Estimated peak MA usage is 18000 doubles - + 5 smallest eigenvalue differences (eV) -------------------------------------------------------- No. Spin Occ Vir Irrep E(Occ) E(Vir) E(Diff) @@ -1293,64 +1299,64 @@ Iter NTrls NConv DeltaV DeltaE Time ---- ------ ------ --------- --------- --------- - 1 5 0 0.33E+00 0.10+100 7.7 - 2 15 0 0.17E+00 0.36E-01 15.0 - 3 25 0 0.46E-01 0.11E-01 15.5 - 4 35 0 0.27E-01 0.18E-02 15.5 - 5 45 0 0.73E-02 0.10E-02 15.5 - 6 55 3 0.95E-03 0.45E-04 15.4 - 7 59 3 0.30E-03 0.55E-06 7.6 - 8 63 5 0.89E-04 0.18E-07 7.6 + 1 5 0 0.33E+00 0.10+100 9.0 + 2 15 0 0.17E+00 0.36E-01 19.7 + 3 25 0 0.46E-01 0.11E-01 20.5 + 4 35 0 0.27E-01 0.18E-02 20.5 + 5 45 0 0.73E-02 0.10E-02 20.5 + 6 55 3 0.95E-03 0.45E-04 20.5 + 7 59 3 0.30E-03 0.55E-06 10.1 + 8 63 5 0.89E-04 0.18E-07 10.1 ---- ------ ------ --------- --------- --------- Convergence criterion met - - Ground state ag -382.308240767378 a.u. - + + Ground state ag -382.308240766357 a.u. + ---------------------------------------------------------------------------- Root 1 singlet bu 0.196071264 a.u. 5.3354 eV ---------------------------------------------------------------------------- - Transition Moments X 0.13039 Y -1.10260 Z -0.00000 - Transition Moments XX 0.00000 XY -0.00000 XZ -0.00000 - Transition Moments YY 0.00000 YZ -0.00000 ZZ 0.00000 - Dipole Oscillator Strength 0.1611342058 + Transition Moments X -0.13039 Y 1.10260 Z 0.00000 + Transition Moments XX 0.00000 XY 0.00000 XZ 0.00000 + Transition Moments YY 0.00000 YZ 0.00000 ZZ -0.00000 + Dipole Oscillator Strength 0.1611341267 Electric Quadrupole 0.0000000000 Magnetic Dipole 0.0000000000 - Total Oscillator Strength 0.1611342058 - - Occ. 32 bg --- Virt. 37 au 0.06291 X - Occ. 34 bg --- Virt. 36 au 0.68291 X - Occ. 34 bg --- Virt. 37 au -0.05094 X - Occ. 35 bg --- Virt. 36 au 0.42702 X - Occ. 35 bg --- Virt. 36 au -0.05129 Y - Occ. 35 bg --- Virt. 37 au 0.58684 X + Total Oscillator Strength 0.1611341267 + + Occ. 32 bg --- Virt. 37 au -0.06291 X + Occ. 34 bg --- Virt. 36 au -0.68291 X + Occ. 34 bg --- Virt. 37 au 0.05094 X + Occ. 35 bg --- Virt. 36 au -0.42702 X + Occ. 35 bg --- Virt. 36 au 0.05129 Y + Occ. 35 bg --- Virt. 37 au -0.58684 X ---------------------------------------------------------------------------- - Root 2 singlet bu 0.197401493 a.u. 5.3716 eV + Root 2 singlet bu 0.197401492 a.u. 5.3716 eV ---------------------------------------------------------------------------- - Transition Moments X 0.01643 Y -2.27751 Z 0.00000 - Transition Moments XX -0.00000 XY -0.00000 XZ -0.00000 + Transition Moments X -0.01643 Y 2.27751 Z -0.00000 + Transition Moments XX -0.00000 XY -0.00000 XZ 0.00000 Transition Moments YY 0.00000 YZ -0.00000 ZZ 0.00000 - Dipole Oscillator Strength 0.6826580992 + Dipole Oscillator Strength 0.6826581795 Electric Quadrupole 0.0000000000 Magnetic Dipole 0.0000000000 - Total Oscillator Strength 0.6826580992 - - Occ. 33 au --- Virt. 38 bg -0.05681 X - Occ. 34 bg --- Virt. 36 au -0.35724 X - Occ. 34 bg --- Virt. 37 au -0.08539 X - Occ. 35 bg --- Virt. 36 au 0.89990 X - Occ. 35 bg --- Virt. 36 au -0.11195 Y - Occ. 35 bg --- Virt. 37 au -0.23965 X + Total Oscillator Strength 0.6826581795 + + Occ. 33 au --- Virt. 38 bg 0.05681 X + Occ. 34 bg --- Virt. 36 au 0.35724 X + Occ. 34 bg --- Virt. 37 au 0.08539 X + Occ. 35 bg --- Virt. 36 au -0.89990 X + Occ. 35 bg --- Virt. 36 au 0.11195 Y + Occ. 35 bg --- Virt. 37 au 0.23965 X ---------------------------------------------------------------------------- Root 3 singlet ag 0.228384872 a.u. 6.2147 eV ---------------------------------------------------------------------------- Transition Moments X -0.00000 Y 0.00000 Z -0.00000 - Transition Moments XX 0.37780 XY 0.32829 XZ 0.00000 - Transition Moments YY -2.74411 YZ 0.00000 ZZ 0.01485 + Transition Moments XX 0.37780 XY 0.32829 XZ -0.00000 + Transition Moments YY -2.74412 YZ 0.00000 ZZ 0.01485 Dipole Oscillator Strength 0.0000000000 Electric Quadrupole 0.0000001918 Magnetic Dipole 0.0000000332 Total Oscillator Strength 0.0000002249 - + Occ. 33 au --- Virt. 36 au -0.79844 X Occ. 33 au --- Virt. 39 au -0.06557 X Occ. 35 bg --- Virt. 38 bg 0.59714 X @@ -1358,13 +1364,13 @@ Root 4 singlet bu 0.248809285 a.u. 6.7704 eV ---------------------------------------------------------------------------- Transition Moments X -0.95961 Y 0.41584 Z -0.00000 - Transition Moments XX 0.00000 XY 0.00000 XZ 0.00000 - Transition Moments YY -0.00000 YZ 0.00000 ZZ -0.00000 - Dipole Oscillator Strength 0.1814287079 + Transition Moments XX -0.00000 XY -0.00000 XZ 0.00000 + Transition Moments YY 0.00000 YZ 0.00000 ZZ -0.00000 + Dipole Oscillator Strength 0.1814287067 Electric Quadrupole 0.0000000000 Magnetic Dipole 0.0000000000 - Total Oscillator Strength 0.1814287079 - + Total Oscillator Strength 0.1814287067 + Occ. 32 bg --- Virt. 37 au -0.20772 X Occ. 34 bg --- Virt. 36 au -0.60664 X Occ. 34 bg --- Virt. 36 au 0.07805 Y @@ -1374,35 +1380,29 @@ ---------------------------------------------------------------------------- Root 5 singlet ag 0.272216910 a.u. 7.4074 eV ---------------------------------------------------------------------------- - Transition Moments X -0.00000 Y 0.00000 Z 0.00000 - Transition Moments XX -0.68297 XY -0.78041 XZ 0.00000 + Transition Moments X -0.00000 Y 0.00000 Z -0.00000 + Transition Moments XX -0.68297 XY -0.78041 XZ -0.00000 Transition Moments YY 6.45311 YZ -0.00000 ZZ 0.00806 Dipole Oscillator Strength 0.0000000000 Electric Quadrupole 0.0000017293 Magnetic Dipole 0.0000007104 Total Oscillator Strength 0.0000024397 - + Occ. 32 bg --- Virt. 38 bg 0.06275 X Occ. 33 au --- Virt. 36 au 0.22049 X Occ. 33 au --- Virt. 37 au 0.80456 X Occ. 34 bg --- Virt. 38 bg 0.45998 X Occ. 35 bg --- Virt. 38 bg 0.29319 X - + Target root = 1 Target symmetry = none - Ground state energy = -382.308240767378 - Excitation energy = 0.196071263518 - Excited state energy = -382.112169503860 - - stored tddft:energy -382.112169503860 - - Task times cpu: 102.7s wall: 108.4s - - - NWChem Input Module - ------------------- - - + Ground state energy = -382.308240766357 + Excitation energy = 0.196071263856 + Excited state energy = -382.112169502501 + + stored tddft:energy -382.11216950250122 + + Task times cpu: 146.8s wall: 147.0s Summary of allocated global arrays ----------------------------------- No active global arrays @@ -1413,40 +1413,70 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 986 986 1.47e+06 6.62e+04 1.23e+06 345 0 901 -number of processes/call 1.93e+12 6.28e+13 1.19e+11 0.00e+00 0.00e+00 -bytes total: 2.19e+08 3.23e+07 1.40e+08 7.20e+03 0.00e+00 7.21e+03 -bytes remote: 1.17e+08 4.51e+06 1.03e+08 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 26844720 bytes - +calls: 986 986 6.38e+06 2.29e+05 4.93e+06 345 0 4439 +number of processes/call 4.27e+11 3.02e+13 -1.80e+11 0.00e+00 0.00e+00 +bytes total: 8.10e+08 1.26e+08 5.19e+08 2.88e+04 0.00e+00 3.55e+04 +bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 107258800 bytes MA_summarize_allocated_blocks: starting scan ... -MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +heap block 'gridpts', handle 104, address 0x557af34316d8: + type of elements: double precision + number of elements: 53628255 + address of client space: 0x557af3431740 + index for client space: 10421041 + total number of bytes: 429026152 +MA_summarize_allocated_blocks: scan completed: 1 heap block, 0 stack blocks MA usage statistics: allocation statistics: heap stack ---- ----- - current number of blocks 0 0 - maximum number of blocks 21 53 - current total bytes 0 0 - maximum total bytes 6909816 22516392 - maximum total K-bytes 6910 22517 - maximum total M-bytes 7 23 - - + current number of blocks 1 0 + maximum number of blocks 22 53 + current total bytes 429026152 0 + maximum total bytes 456188248 22516408 + maximum total K-bytes 456189 22517 + maximum total M-bytes 457 23 + + + NWChem Input Module + ------------------- + + + + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, - T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, - E. Apra, T.L. Windus, W.A. de Jong - "NWChem: a comprehensive and scalable open-source - solution for large scale molecular simulations" - Comput. Phys. Commun. 181, 1477 (2010) - doi:10.1016/j.cpc.2010.04.018 - + + E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, + V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, + J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, + J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, + C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, + K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, + J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, + V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, + B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, + S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, + A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, + D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, + J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, + A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, + R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, + D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, + V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, + Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, + D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, + A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, + and R. J. Harrison + "NWChem: Past, present, and future + J. Chem. Phys. 152, 184102 (2020) + doi:10.1063/5.0004997 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -1469,22 +1499,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 102.7s wall: 108.5s -============================================================================ - JOB STATISTICS -============================================================================ - SubmitTime: 2021-08-08T13:10:12 - EndTime: 2021-08-08T18:10:13 - RunTime: 00:01:50 - JobId: 13644 - TRES: cpu=4,mem=50G,node=1 - Partition: kjordan - NodeList: smp-n17 - Command: /ihome/kjordan/shu8/projects/code_tests/cclib/nwchem/td/h2o.slurm - StdOut: /ihome/kjordan/shu8/projects/code_tests/cclib/nwchem/td/slurm.out -More information: - - `sacct -M invest -j 13644 -S 2021-08-08T13:10:12 -E 2021-08-08T18:10:13` - Print control: - - List of all possible fields: `sacct --helpformat` - - Add `--format=` with fields of interest -============================================================================ + Total times cpu: 146.8s wall: 147.0s diff --git a/data/NWChem/basicNWChem7.0/dvb_un_sp_ks.out b/data/NWChem/basicNWChem7.0/dvb_un_sp_ks.out index eff9330b1..db39dfbde 100644 --- a/data/NWChem/basicNWChem7.0/dvb_un_sp_ks.out +++ b/data/NWChem/basicNWChem7.0/dvb_un_sp_ks.out @@ -1,17 +1,17 @@ - argument 1 = dvb_un_sp_ks.nw + argument 1 = dvb_un_sp_ks.in - Northwest Computational Chemistry Package (NWChem) 6.5 - ------------------------------------------------------ + Northwest Computational Chemistry Package (NWChem) 7.0.2 + -------------------------------------------------------- Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - Copyright (c) 1994-2014 + Copyright (c) 1994-2020 Pacific Northwest National Laboratory Battelle Memorial Institute @@ -36,16 +36,17 @@ Job information --------------- - hostname = boman - program = /usr/lib64/mpich/bin/nwchem_mpich - date = Sat Jan 17 16:30:55 2015 - - compiled = Sat_Dec_06_13:02:58_2014 - source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 - nwchem branch = 6.5 - nwchem revision = 26243 - ga revision = 10506 - input = dvb_un_sp_ks.nw + hostname = osmium + program = nwchem + date = Sat Jun 4 13:33:47 2022 + + compiled = Fri_Jul_02_16:33:00_2021 + source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src + nwchem branch = 7.0.2 + nwchem revision = b9985dfa + ga revision = 5.7.2 + use scalapack = T + input = dvb_un_sp_ks.in prefix = dvb. data base = ./dvb.db status = startup @@ -57,8 +58,8 @@ Memory information ------------------ - heap = 13107194 doubles = 100.0 Mbytes - stack = 13107199 doubles = 100.0 Mbytes + heap = 13107198 doubles = 100.0 Mbytes + stack = 13107195 doubles = 100.0 Mbytes global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) total = 52428793 doubles = 400.0 Mbytes verify = yes @@ -89,6 +90,8 @@ ------ auto-z ------ + no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.0000000000000000 Geometry "geometry" -> "" @@ -344,8 +347,8 @@ - library name resolved from: .nwchemrc - library file name is: + library name resolved from: environment + library file name is: @@ -444,9 +447,9 @@ Maximum number of iterations: 30 AO basis - number of functions: 60 number of shells: 40 - Convergence on energy requested: 1.00D-07 - Convergence on density requested: 1.00D-05 - Convergence on gradient requested: 5.00D-04 + Convergence on energy requested: 1.00D-07 + Convergence on density requested: 1.00D-05 + Convergence on gradient requested: 5.00D-04 XC Information -------------- @@ -475,7 +478,7 @@ Convergence aids based upon iterative change in total energy or number of iterations. Levelshifting, if invoked, occurs when the - HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 + HOMO/LUMO gap drops below (HL_TOL): 1.00D-02 DIIS, if invoked, will attempt to extrapolate using up to (NFOCK): 10 stored Fock matrices. @@ -487,11 +490,11 @@ Screening Tolerance Information ------------------------------- - Density screening/tol_rho: 1.00D-11 + Density screening/tol_rho: 1.00D-11 AO Gaussian exp screening on grid/accAOfunc: 16 CD Gaussian exp screening on grid/accCDfunc: 20 XC Gaussian exp screening on grid/accXCfunc: 20 - Schwarz screening/accCoul: 1.00D-08 + Schwarz screening/accCoul: 1.00D-08 Superposition of Atomic Density Guess @@ -550,17 +553,8 @@ 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag - Time after variat. SCF: 0.7 - Time prior to 1st pass: 0.7 - - Integral file = ./dvb.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 19 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - - #quartets = 1.086D+05 #integrals = 3.268D+05 #direct = 0.0% #cached =100.0% - + Time after variat. SCF: 0.2 + Time prior to 1st pass: 0.2 Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 @@ -568,45 +562,45 @@ Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 5.44 5443586 - Stack Space remaining (MW): 13.11 13105692 + Heap Space remaining (MW): 0.00 242 + Stack Space remaining (MW): 13.11 13105684 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.0243207793 -8.28D+02 7.77D-03 1.04D-01 12.5 + d= 0,ls=0.0,diis 1 -382.0243205268 -8.28D+02 7.77D-03 1.04D-01 2.7 7.68D-03 1.02D-01 - d= 0,ls=0.0,diis 2 -382.0647499189 -4.04D-02 4.64D-03 1.95D-02 18.9 + d= 0,ls=0.0,diis 2 -382.0647495759 -4.04D-02 4.64D-03 1.95D-02 4.4 5.39D-03 2.36D-02 - d= 0,ls=0.0,diis 3 -382.0625001693 2.25D-03 2.83D-03 2.67D-02 28.1 + d= 0,ls=0.0,diis 3 -382.0625000284 2.25D-03 2.83D-03 2.67D-02 6.7 2.64D-03 2.26D-02 - d= 0,ls=0.0,diis 4 -382.0809247663 -1.84D-02 3.84D-04 5.13D-04 37.4 + d= 0,ls=0.0,diis 4 -382.0809245910 -1.84D-02 3.84D-04 5.13D-04 9.1 3.93D-04 5.30D-04 - d= 0,ls=0.0,diis 5 -382.0812990147 -3.74D-04 2.64D-04 2.82D-05 46.7 + d= 0,ls=0.0,diis 5 -382.0812988451 -3.74D-04 2.64D-04 2.82D-05 11.5 2.73D-04 3.75D-05 Resetting Diis - d= 0,ls=0.0,diis 6 -382.0813980745 -9.91D-05 1.70D-04 7.53D-06 56.0 + d= 0,ls=0.0,diis 6 -382.0813979058 -9.91D-05 1.70D-04 7.53D-06 13.8 1.78D-04 1.25D-05 - d= 0,ls=0.0,diis 7 -382.0814285795 -3.05D-05 7.49D-05 4.37D-06 65.3 + d= 0,ls=0.0,diis 7 -382.0814284117 -3.05D-05 7.49D-05 4.37D-06 16.2 1.08D-04 5.77D-06 - d= 0,ls=0.0,diis 8 -382.0814301365 -1.56D-06 4.83D-05 1.07D-05 74.6 + d= 0,ls=0.0,diis 8 -382.0814299696 -1.56D-06 4.83D-05 1.07D-05 18.6 5.20D-05 8.93D-06 - d= 0,ls=0.0,diis 9 -382.0814368255 -6.69D-06 6.54D-05 2.84D-07 83.8 + d= 0,ls=0.0,diis 9 -382.0814366578 -6.69D-06 6.54D-05 2.84D-07 20.9 7.05D-05 4.73D-07 - d= 0,ls=0.0,diis 10 -382.0814390543 -2.23D-06 7.31D-06 4.27D-08 93.1 + d= 0,ls=0.0,diis 10 -382.0814388867 -2.23D-06 7.30D-06 4.27D-08 23.3 3.38D-06 2.29D-08 - d= 0,ls=0.0,diis 11 -382.0814390856 -3.13D-08 6.92D-07 2.68D-09 102.4 + d= 0,ls=0.0,diis 11 -382.0814389180 -3.13D-08 6.92D-07 2.68D-09 25.6 1.65D-06 3.12D-09 - Total DFT energy = -382.081439085639 - One electron energy = -1386.634813660123 - Coulomb energy = 615.977982897230 - Exchange-Corr. energy = -57.361620490192 + Total DFT energy = -382.081438918032 + One electron energy = -1386.634814583803 + Coulomb energy = 615.977983924957 + Exchange-Corr. energy = -57.361620426633 Nuclear repulsion energy = 445.937012167446 - Numeric. integr. density = 69.000000234960 + Numeric. integr. density = 69.000000234949 - Total iterative time = 101.6s + Total iterative time = 25.4s @@ -625,129 +619,157 @@ ------------------------------------------ Vector 1 Occ=1.000000D+00 E=-1.025361D+01 Symmetry=bu - MO Center= 2.5D-11, 1.5D-10, -4.2D-27, r^2= 2.1D+00 + MO Center= -7.6D-12, -4.5D-11, 3.3D-33, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.700267 1 C s 6 -0.700267 2 C s + 2 0.031271 1 C s 7 -0.031271 2 C s Vector 2 Occ=1.000000D+00 E=-1.025356D+01 Symmetry=ag - MO Center= -2.5D-11, -1.5D-10, 6.5D-19, r^2= 2.1D+00 + MO Center= 7.6D-12, 4.5D-11, 7.4D-29, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.700290 1 C s 6 0.700290 2 C s + 2 0.031077 1 C s 7 0.031077 2 C s Vector 3 Occ=1.000000D+00 E=-1.021954D+01 Symmetry=bu - MO Center= 3.2D-11, -2.3D-11, -1.6D-24, r^2= 2.0D+00 + MO Center= 3.6D-10, -2.7D-10, 3.1D-33, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.682809 5 C s 26 -0.682809 6 C s - 11 -0.155052 3 C s 16 0.155052 4 C s + 21 0.682810 5 C s 26 -0.682810 6 C s + 11 -0.155046 3 C s 16 0.155046 4 C s + 22 0.031787 5 C s 27 -0.031787 6 C s Vector 4 Occ=1.000000D+00 E=-1.021949D+01 Symmetry=ag - MO Center= -3.2D-11, 2.3D-11, 9.8D-19, r^2= 2.0D+00 + MO Center= -3.6D-10, 2.7D-10, -1.2D-34, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 21 0.676841 5 C s 26 0.676841 6 C s - 11 -0.179416 3 C s 16 -0.179416 4 C s + 11 -0.179417 3 C s 16 -0.179417 4 C s + 22 0.031481 5 C s 27 0.031481 6 C s Vector 5 Occ=1.000000D+00 E=-1.021807D+01 Symmetry=bu - MO Center= 1.2D-11, 3.7D-12, -5.0D-24, r^2= 2.0D+00 + MO Center= 1.2D-15, -7.8D-16, -4.7D-44, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.682912 3 C s 16 -0.682912 4 C s - 21 0.156049 5 C s 26 -0.156049 6 C s + 11 0.682914 3 C s 16 -0.682914 4 C s + 21 0.156043 5 C s 26 -0.156043 6 C s + 12 0.028759 3 C s 17 -0.028759 4 C s Vector 6 Occ=1.000000D+00 E=-1.021797D+01 Symmetry=ag - MO Center= -1.2D-11, -3.9D-12, 3.0D-18, r^2= 2.0D+00 + MO Center= 8.2D-14, 1.7D-12, 8.5D-18, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.674981 3 C s 16 0.674981 4 C s + 11 0.674979 3 C s 16 0.674979 4 C s 21 0.179432 5 C s 26 0.179432 6 C s + 35 -0.056579 11 C s 40 -0.056579 12 C s + 12 0.028054 3 C s 17 0.028054 4 C s Vector 7 Occ=1.000000D+00 E=-1.021759D+01 Symmetry=bu - MO Center= -9.9D-10, -5.4D-09, 1.9D-21, r^2= 8.7D+00 + MO Center= -9.1D-10, -5.0D-09, -1.1D-28, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.697690 11 C s 40 -0.697690 12 C s + 35 0.697689 11 C s 40 -0.697689 12 C s + 47 -0.059939 15 C s 52 0.059939 16 C s + 36 0.031277 11 C s 41 -0.031277 12 C s Vector 8 Occ=1.000000D+00 E=-1.021759D+01 Symmetry=ag - MO Center= 9.9D-10, 5.4D-09, 3.6D-32, r^2= 8.6D+00 + MO Center= 9.1D-10, 5.0D-09, 3.7D-34, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.695510 11 C s 40 0.695510 12 C s + 35 0.695508 11 C s 40 0.695508 12 C s + 47 -0.060206 15 C s 52 -0.060206 16 C s + 11 0.053480 3 C s 16 0.053480 4 C s + 36 0.031175 11 C s 41 0.031175 12 C s Vector 9 Occ=1.000000D+00 E=-1.021526D+01 Symmetry=bu - MO Center= 1.9D-17, 2.2D-16, -7.0D-32, r^2= 1.5D+01 + MO Center= 7.1D-15, 4.4D-14, -1.2D-30, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.697939 15 C s 52 -0.697939 16 C s + 35 0.060809 11 C s 40 -0.060809 12 C s + 48 0.030282 15 C s 53 -0.030282 16 C s Vector 10 Occ=1.000000D+00 E=-1.021526D+01 Symmetry=ag - MO Center= -3.0D-16, 1.2D-16, 2.2D-33, r^2= 1.5D+01 + MO Center= -4.2D-14, 4.3D-14, 1.9D-19, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.697918 15 C s 52 0.697918 16 C s + 35 0.060910 11 C s 40 0.060910 12 C s + 48 0.030280 15 C s 53 0.030280 16 C s Vector 11 Occ=1.000000D+00 E=-1.020756D+00 Symmetry=ag - MO Center= 6.5D-15, -8.9D-15, 3.5D-17, r^2= 2.8D+00 + MO Center= 1.4D-14, 1.9D-15, 4.3D-17, r^2= 2.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.290615 1 C s 7 0.290615 2 C s 22 0.241187 5 C s 27 0.241187 6 C s 12 0.239205 3 C s 17 0.239205 4 C s + 36 0.118064 11 C s 41 0.118064 12 C s + 1 -0.112361 1 C s 6 -0.112361 2 C s Vector 12 Occ=1.000000D+00 E=-9.619173D-01 Symmetry=bu - MO Center= 2.1D-15, 2.0D-14, 1.1D-20, r^2= 7.1D+00 + MO Center= -1.6D-16, 3.5D-15, 9.2D-27, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.302134 1 C s 7 -0.302134 2 C s + 2 0.302133 1 C s 7 -0.302133 2 C s 36 -0.278925 11 C s 41 0.278925 12 C s - 48 -0.200892 15 C s 53 0.200892 16 C s + 48 -0.200893 15 C s 53 0.200893 16 C s + 22 -0.121834 5 C s 27 0.121834 6 C s + 1 -0.112295 1 C s 6 0.112295 2 C s Vector 13 Occ=1.000000D+00 E=-9.216166D-01 Symmetry=ag - MO Center= -4.1D-16, -1.2D-14, 4.0D-32, r^2= 1.1D+01 + MO Center= -4.1D-15, -1.5D-15, 3.6D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.322501 15 C s 53 0.322501 16 C s 36 0.312363 11 C s 41 0.312363 12 C s + 47 -0.120140 15 C s 52 -0.120140 16 C s + 35 -0.119491 11 C s 40 -0.119491 12 C s + 12 -0.114765 3 C s 17 -0.114765 4 C s Vector 14 Occ=1.000000D+00 E=-8.992434D-01 Symmetry=bu - MO Center= -7.0D-15, 2.7D-15, -6.9D-20, r^2= 3.1D+00 + MO Center= -9.0D-15, 2.7D-16, -4.7D-25, r^2= 3.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.363920 3 C s 17 -0.363920 4 C s - 22 0.320446 5 C s 27 -0.320446 6 C s + 22 0.320445 5 C s 27 -0.320445 6 C s + 3 0.135155 1 C px 8 0.135155 2 C px + 11 -0.134559 3 C s 16 0.134559 4 C s + 21 -0.118283 5 C s 26 0.118283 6 C s Vector 15 Occ=1.000000D+00 E=-8.767202D-01 Symmetry=bu - MO Center= 7.1D-17, 2.1D-15, -1.0D-19, r^2= 9.2D+00 + MO Center= 7.4D-16, -8.9D-15, 1.0D-24, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.313565 15 C s 53 -0.313565 16 C s + 48 0.313564 15 C s 53 -0.313564 16 C s 2 0.266881 1 C s 7 -0.266881 2 C s - 22 -0.205247 5 C s 27 0.205247 6 C s + 22 -0.205248 5 C s 27 0.205248 6 C s 36 0.162233 11 C s 41 -0.162233 12 C s + 38 -0.124273 11 C py 43 -0.124273 12 C py - Vector 16 Occ=1.000000D+00 E=-7.871090D-01 Symmetry=ag - MO Center= -8.0D-16, -2.8D-15, -5.2D-17, r^2= 7.6D+00 + Vector 16 Occ=1.000000D+00 E=-7.871089D-01 Symmetry=ag + MO Center= -1.1D-15, 8.4D-16, -1.3D-17, r^2= 7.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 22 0.249081 5 C s 27 0.249081 6 C s 48 0.238948 15 C s 53 0.238948 16 C s 2 -0.224049 1 C s 7 -0.224049 2 C s 14 -0.170958 3 C py 19 0.170958 4 C py + 36 -0.148185 11 C s 41 -0.148185 12 C s Vector 17 Occ=1.000000D+00 E=-7.598629D-01 Symmetry=ag - MO Center= -1.4D-15, 2.2D-15, 1.4D-16, r^2= 4.9D+00 + MO Center= 2.1D-15, 8.5D-15, -2.2D-16, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.334339 3 C s 17 0.334339 4 C s 3 0.203987 1 C px 8 -0.203987 2 C px 24 0.178445 5 C py 29 -0.178445 6 C py - 22 -0.169852 5 C s 27 -0.169852 6 C s - 2 -0.160170 1 C s 7 -0.160170 2 C s + 22 -0.169853 5 C s 27 -0.169853 6 C s + 2 -0.160169 1 C s 7 -0.160169 2 C s Vector 18 Occ=1.000000D+00 E=-7.224938D-01 Symmetry=bu - MO Center= -6.0D-16, -8.0D-16, -3.0D-32, r^2= 1.2D+01 + MO Center= 2.8D-16, -8.1D-14, 6.4D-23, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.309254 11 C s 41 -0.309254 12 C s @@ -756,27 +778,28 @@ 12 0.153598 3 C s 17 -0.153598 4 C s 45 0.152835 13 H s 46 -0.152835 14 H s - Vector 19 Occ=1.000000D+00 E=-7.035946D-01 Symmetry=ag - MO Center= 2.0D-16, -3.2D-16, 1.7D-32, r^2= 7.3D+00 + Vector 19 Occ=1.000000D+00 E=-7.035947D-01 Symmetry=ag + MO Center= -7.4D-16, 9.1D-14, -1.2D-16, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.203402 5 C px 28 -0.203402 6 C px - 13 0.190090 3 C px 18 -0.190090 4 C px + 23 0.203403 5 C px 28 -0.203403 6 C px + 13 0.190091 3 C px 18 -0.190091 4 C px 36 0.185525 11 C s 41 0.185525 12 C s 48 -0.177455 15 C s 53 -0.177455 16 C s 22 0.170730 5 C s 27 0.170730 6 C s Vector 20 Occ=1.000000D+00 E=-6.504762D-01 Symmetry=ag - MO Center= -1.1D-16, 5.8D-17, 3.4D-33, r^2= 1.0D+01 + MO Center= -3.3D-15, 1.5D-14, -4.2D-16, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.228211 15 C px 54 -0.228211 16 C px 38 0.181709 11 C py 43 -0.181709 12 C py 57 0.177943 17 H s 58 0.177943 18 H s 36 -0.158069 11 C s 41 -0.158069 12 C s + 45 -0.145889 13 H s 46 -0.145889 14 H s - Vector 21 Occ=1.000000D+00 E=-6.349759D-01 Symmetry=bu - MO Center= 2.9D-16, -2.1D-15, 3.5D-17, r^2= 9.2D+00 + Vector 21 Occ=1.000000D+00 E=-6.349760D-01 Symmetry=bu + MO Center= -7.2D-15, 5.5D-15, -1.1D-21, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 0.215130 3 C py 19 0.215130 4 C py @@ -786,7 +809,7 @@ 59 -0.151328 19 H s 60 0.151328 20 H s Vector 22 Occ=1.000000D+00 E=-6.039889D-01 Symmetry=bu - MO Center= 7.1D-16, -2.0D-16, -7.6D-17, r^2= 7.9D+00 + MO Center= 4.6D-15, -1.9D-14, -1.5D-21, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 38 0.208675 11 C py 43 0.208675 12 C py @@ -795,47 +818,48 @@ 3 -0.181829 1 C px 8 -0.181829 2 C px 24 0.179965 5 C py 29 0.179965 6 C py - Vector 23 Occ=1.000000D+00 E=-5.960837D-01 Symmetry=bu - MO Center= 7.5D-16, -2.8D-16, -6.8D-32, r^2= 7.2D+00 + Vector 23 Occ=1.000000D+00 E=-5.960836D-01 Symmetry=bu + MO Center= 2.3D-15, -2.2D-14, 9.2D-31, r^2= 7.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.283932 5 C px 28 0.283932 6 C px - 33 0.234053 9 H s 34 -0.234053 10 H s + 33 0.234054 9 H s 34 -0.234054 10 H s 49 0.175613 15 C px 54 0.175613 16 C px 2 0.173244 1 C s 7 -0.173244 2 C s 4 -0.154219 1 C py 9 -0.154219 2 C py - Vector 24 Occ=1.000000D+00 E=-5.878168D-01 Symmetry=ag - MO Center= -9.0D-16, 1.8D-15, -4.7D-17, r^2= 1.5D+01 + Vector 24 Occ=1.000000D+00 E=-5.878167D-01 Symmetry=ag + MO Center= -6.0D-15, 7.7D-15, -2.7D-16, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.350754 15 C py 55 -0.350754 16 C py 37 0.265660 11 C px 42 -0.265660 12 C px 59 -0.246184 19 H s 60 -0.246184 20 H s 45 -0.150427 13 H s 46 -0.150427 14 H s + 24 0.128949 5 C py 29 -0.128949 6 C py Vector 25 Occ=1.000000D+00 E=-5.688461D-01 Symmetry=bu - MO Center= -8.3D-16, 6.7D-16, -9.1D-19, r^2= 4.6D+00 + MO Center= 6.6D-15, -1.2D-16, -6.1D-31, r^2= 4.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 13 0.335087 3 C px 18 0.335087 4 C px 31 0.248253 7 H s 32 -0.248253 8 H s 23 0.195219 5 C px 28 0.195219 6 C px - 24 -0.193761 5 C py 29 -0.193761 6 C py - 33 0.190865 9 H s 34 -0.190865 10 H s + 24 -0.193760 5 C py 29 -0.193760 6 C py + 33 0.190864 9 H s 34 -0.190864 10 H s - Vector 26 Occ=1.000000D+00 E=-5.522412D-01 Symmetry=bu - MO Center= 2.9D-15, 1.6D-15, 1.5D-17, r^2= 1.0D+01 + Vector 26 Occ=1.000000D+00 E=-5.522411D-01 Symmetry=bu + MO Center= 5.9D-16, -2.2D-15, -9.0D-22, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.283994 15 C py 55 0.283994 16 C py 14 -0.220296 3 C py 19 -0.220296 4 C py 37 0.215469 11 C px 42 0.215469 12 C px - 24 0.210473 5 C py 29 0.210473 6 C py + 24 0.210474 5 C py 29 0.210474 6 C py 59 -0.178274 19 H s 60 0.178274 20 H s - Vector 27 Occ=1.000000D+00 E=-5.371004D-01 Symmetry=ag - MO Center= -2.1D-15, -2.3D-15, 4.3D-32, r^2= 1.1D+01 + Vector 27 Occ=1.000000D+00 E=-5.371003D-01 Symmetry=ag + MO Center= -1.1D-15, 1.8D-15, -1.4D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.294646 15 C px 54 -0.294646 16 C px @@ -845,26 +869,27 @@ 14 -0.170018 3 C py 19 0.170018 4 C py Vector 28 Occ=1.000000D+00 E=-5.336331D-01 Symmetry=au - MO Center= -2.3D-15, -5.8D-15, 3.6D-17, r^2= 3.5D+00 + MO Center= -4.7D-17, -2.7D-17, 9.8D-16, r^2= 3.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.362047 1 C pz 10 0.362047 2 C pz 25 0.287484 5 C pz 30 0.287484 6 C pz 15 0.285426 3 C pz 20 0.285426 4 C pz - 39 0.163596 11 C pz 44 0.163596 12 C pz + 39 0.163597 11 C pz 44 0.163597 12 C pz + 51 0.092637 15 C pz 56 0.092637 16 C pz Vector 29 Occ=1.000000D+00 E=-5.010516D-01 Symmetry=bu - MO Center= -2.4D-15, -3.0D-14, -1.1D-17, r^2= 1.3D+01 + MO Center= 2.0D-15, -4.2D-15, -1.5D-22, r^2= 1.3D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.260437 13 H s 46 -0.260437 14 H s 37 -0.236132 11 C px 42 -0.236132 12 C px 49 0.234565 15 C px 54 0.234565 16 C px - 57 0.235371 17 H s 58 -0.235371 18 H s + 57 0.235370 17 H s 58 -0.235370 18 H s 4 0.218695 1 C py 9 0.218695 2 C py Vector 30 Occ=1.000000D+00 E=-4.932961D-01 Symmetry=ag - MO Center= 1.9D-15, 1.9D-14, 2.3D-17, r^2= 6.1D+00 + MO Center= -2.4D-16, 2.9D-15, -1.5D-17, r^2= 6.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 33 -0.259644 9 H s 34 -0.259644 10 H s @@ -874,7 +899,7 @@ 38 0.210706 11 C py 43 -0.210706 12 C py Vector 31 Occ=1.000000D+00 E=-4.827093D-01 Symmetry=ag - MO Center= 1.0D-15, 9.1D-15, -1.9D-16, r^2= 7.5D+00 + MO Center= 8.1D-16, 7.8D-16, -2.2D-18, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.257457 1 C px 8 -0.257457 2 C px @@ -884,31 +909,34 @@ 45 -0.200740 13 H s 46 -0.200740 14 H s Vector 32 Occ=1.000000D+00 E=-4.736159D-01 Symmetry=bg - MO Center= 7.9D-16, -8.2D-15, -1.3D-19, r^2= 7.3D+00 + MO Center= 2.9D-16, 9.6D-15, 1.2D-17, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.383761 1 C pz 10 -0.383761 2 C pz 39 -0.342924 11 C pz 44 0.342924 12 C pz 51 -0.265433 15 C pz 56 0.265433 16 C pz + 25 -0.140191 5 C pz 30 0.140191 6 C pz + 15 0.134236 3 C pz 20 -0.134236 4 C pz Vector 33 Occ=1.000000D+00 E=-4.179075D-01 Symmetry=au - MO Center= 4.4D-16, 1.4D-14, 1.7D-16, r^2= 1.2D+01 + MO Center= -3.0D-16, -9.8D-15, -3.9D-16, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.447522 15 C pz 56 0.447522 16 C pz 39 0.389910 11 C pz 44 0.389910 12 C pz 15 -0.169005 3 C pz 20 -0.169005 4 C pz 25 -0.167861 5 C pz 30 -0.167861 6 C pz + 5 -0.028632 1 C pz 10 -0.028632 2 C pz - Vector 34 Occ=1.000000D+00 E=-3.943442D-01 Symmetry=bg - MO Center= 1.3D-15, 3.9D-16, -1.3D-18, r^2= 2.7D+00 + Vector 34 Occ=1.000000D+00 E=-3.943441D-01 Symmetry=bg + MO Center= 2.1D-17, 3.8D-18, 7.9D-23, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.460831 3 C pz 20 -0.460831 4 C pz 25 0.460407 5 C pz 30 -0.460407 6 C pz Vector 35 Occ=1.000000D+00 E=-3.697074D-01 Symmetry=bg - MO Center= 2.4D-16, 1.0D-15, 7.3D-18, r^2= 8.9D+00 + MO Center= 3.8D-16, -4.5D-17, -9.4D-22, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.429422 15 C pz 56 -0.429422 16 C pz @@ -918,7 +946,7 @@ 15 0.194046 3 C pz 20 -0.194046 4 C pz Vector 36 Occ=0.000000D+00 E=-1.774527D-01 Symmetry=au - MO Center= 5.0D-16, 1.4D-15, 1.0D-16, r^2= 7.3D+00 + MO Center= 6.3D-17, -8.8D-15, 4.6D-17, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.454603 1 C pz 10 0.454603 2 C pz @@ -928,14 +956,15 @@ 39 0.248042 11 C pz 44 0.248042 12 C pz Vector 37 Occ=0.000000D+00 E=-1.115335D-01 Symmetry=au - MO Center= -6.1D-16, -4.9D-16, -1.0D-16, r^2= 2.7D+00 + MO Center= -5.4D-16, 1.7D-16, 8.2D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.583595 3 C pz 20 0.583595 4 C pz 25 -0.552467 5 C pz 30 -0.552467 6 C pz + 5 -0.029265 1 C pz 10 -0.029265 2 C pz - Vector 38 Occ=0.000000D+00 E=-9.436260D-02 Symmetry=bg - MO Center= 3.9D-16, 4.9D-15, -4.9D-17, r^2= 1.1D+01 + Vector 38 Occ=0.000000D+00 E=-9.436259D-02 Symmetry=bg + MO Center= -8.3D-17, 7.4D-15, 4.0D-21, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.540550 11 C pz 44 -0.540550 12 C pz @@ -943,8 +972,8 @@ 15 0.245368 3 C pz 20 -0.245368 4 C pz 25 -0.235394 5 C pz 30 0.235394 6 C pz - Vector 39 Occ=0.000000D+00 E=-2.962792D-02 Symmetry=au - MO Center= -3.5D-16, -4.3D-15, -8.5D-16, r^2= 8.3D+00 + Vector 39 Occ=0.000000D+00 E=-2.962791D-02 Symmetry=au + MO Center= -3.3D-16, -2.1D-15, -1.3D-16, r^2= 8.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.553828 11 C pz 44 0.553828 12 C pz @@ -953,8 +982,8 @@ 25 0.192075 5 C pz 30 0.192075 6 C pz 15 0.159669 3 C pz 20 0.159669 4 C pz - Vector 40 Occ=0.000000D+00 E= 5.994919D-02 Symmetry=bg - MO Center= -6.2D-16, -3.6D-15, 3.9D-17, r^2= 3.9D+00 + Vector 40 Occ=0.000000D+00 E= 5.994920D-02 Symmetry=bg + MO Center= 4.2D-16, 4.1D-15, 5.4D-22, r^2= 3.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.526875 1 C pz 10 -0.526875 2 C pz @@ -964,187 +993,187 @@ 51 -0.155709 15 C pz 56 0.155709 16 C pz Vector 41 Occ=0.000000D+00 E= 1.397083D-01 Symmetry=ag - MO Center= -2.8D-15, -4.0D-14, -5.6D-17, r^2= 8.7D+00 + MO Center= 5.1D-15, 2.0D-14, 4.1D-18, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.488096 1 C s 7 0.488096 2 C s - 33 -0.390580 9 H s 34 -0.390580 10 H s - 31 -0.378081 7 H s 32 -0.378081 8 H s - 38 -0.371423 11 C py 43 0.371423 12 C py - 36 -0.347602 11 C s 41 -0.347602 12 C s + 2 0.488092 1 C s 7 0.488092 2 C s + 33 -0.390582 9 H s 34 -0.390582 10 H s + 31 -0.378082 7 H s 32 -0.378082 8 H s + 38 -0.371422 11 C py 43 0.371422 12 C py + 36 -0.347601 11 C s 41 -0.347601 12 C s - Vector 42 Occ=0.000000D+00 E= 1.490003D-01 Symmetry=bu - MO Center= 9.9D-15, 2.5D-14, -1.5D-18, r^2= 9.8D+00 + Vector 42 Occ=0.000000D+00 E= 1.490001D-01 Symmetry=bu + MO Center= -7.3D-15, -1.4D-14, -2.6D-19, r^2= 9.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.353761 13 H s 46 -0.353761 14 H s + 45 0.353759 13 H s 46 -0.353759 14 H s 13 0.340063 3 C px 18 0.340063 4 C px - 37 0.328670 11 C px 42 0.328670 12 C px - 57 -0.322957 17 H s 58 0.322957 18 H s + 37 0.328669 11 C px 42 0.328669 12 C px + 57 -0.322956 17 H s 58 0.322956 18 H s 49 0.314370 15 C px 54 0.314370 16 C px - Vector 43 Occ=0.000000D+00 E= 1.792466D-01 Symmetry=bu - MO Center= -6.5D-15, 1.8D-14, -4.9D-17, r^2= 6.4D+00 + Vector 43 Occ=0.000000D+00 E= 1.792464D-01 Symmetry=bu + MO Center= 4.5D-16, -8.4D-15, 1.1D-18, r^2= 6.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.587200 11 C s 41 -0.587200 12 C s - 4 0.447578 1 C py 9 0.447578 2 C py - 33 0.400056 9 H s 34 -0.400056 10 H s - 2 0.343313 1 C s 7 -0.343313 2 C s + 36 0.587204 11 C s 41 -0.587204 12 C s + 4 0.447576 1 C py 9 0.447576 2 C py + 33 0.400049 9 H s 34 -0.400049 10 H s + 2 0.343320 1 C s 7 -0.343320 2 C s 38 0.325332 11 C py 43 0.325332 12 C py - Vector 44 Occ=0.000000D+00 E= 1.964587D-01 Symmetry=ag - MO Center= 2.9D-15, 5.3D-16, -2.9D-17, r^2= 1.1D+01 + Vector 44 Occ=0.000000D+00 E= 1.964583D-01 Symmetry=ag + MO Center= 1.1D-15, -2.1D-17, -4.2D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.520762 13 H s 46 0.520762 14 H s - 12 0.467458 3 C s 17 0.467458 4 C s - 57 -0.403044 17 H s 58 -0.403044 18 H s - 33 -0.332563 9 H s 34 -0.332563 10 H s + 45 0.520764 13 H s 46 0.520764 14 H s + 12 0.467462 3 C s 17 0.467462 4 C s + 57 -0.403043 17 H s 58 -0.403043 18 H s + 33 -0.332558 9 H s 34 -0.332558 10 H s 31 -0.321891 7 H s 32 -0.321891 8 H s - Vector 45 Occ=0.000000D+00 E= 2.146793D-01 Symmetry=ag - MO Center= 5.3D-14, -1.6D-13, 9.5D-17, r^2= 8.5D+00 + Vector 45 Occ=0.000000D+00 E= 2.146796D-01 Symmetry=ag + MO Center= 2.2D-15, 1.2D-15, 1.2D-16, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.771047 5 C s 27 0.771047 6 C s - 48 0.518815 15 C s 53 0.518815 16 C s - 2 -0.433732 1 C s 7 -0.433732 2 C s - 12 -0.405912 3 C s 17 -0.405912 4 C s - 57 -0.386663 17 H s 58 -0.386663 18 H s + 22 0.771048 5 C s 27 0.771048 6 C s + 48 0.518813 15 C s 53 0.518813 16 C s + 2 -0.433738 1 C s 7 -0.433738 2 C s + 12 -0.405907 3 C s 17 -0.405907 4 C s + 57 -0.386665 17 H s 58 -0.386665 18 H s - Vector 46 Occ=0.000000D+00 E= 2.203576D-01 Symmetry=bu - MO Center= -5.1D-14, 1.3D-13, 8.8D-17, r^2= 8.9D+00 + Vector 46 Occ=0.000000D+00 E= 2.203578D-01 Symmetry=bu + MO Center= -5.3D-15, 1.2D-15, -3.2D-18, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 22 0.643368 5 C s 27 -0.643368 6 C s - 2 0.505156 1 C s 7 -0.505156 2 C s - 12 -0.484304 3 C s 17 0.484304 4 C s - 48 0.481526 15 C s 53 -0.481526 16 C s - 31 0.412727 7 H s 32 -0.412727 8 H s + 2 0.505154 1 C s 7 -0.505154 2 C s + 12 -0.484303 3 C s 17 0.484303 4 C s + 48 0.481523 15 C s 53 -0.481523 16 C s + 31 0.412725 7 H s 32 -0.412725 8 H s - Vector 47 Occ=0.000000D+00 E= 2.396756D-01 Symmetry=ag - MO Center= -1.0D-15, -1.5D-15, 8.7D-16, r^2= 7.5D+00 + Vector 47 Occ=0.000000D+00 E= 2.396762D-01 Symmetry=ag + MO Center= 7.4D-15, 2.4D-15, 1.4D-16, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.724224 1 C s 7 0.724224 2 C s - 12 -0.638843 3 C s 17 -0.638843 4 C s - 36 -0.483207 11 C s 41 -0.483207 12 C s - 48 0.460729 15 C s 53 0.460729 16 C s - 57 -0.356579 17 H s 58 -0.356579 18 H s + 2 0.724223 1 C s 7 0.724223 2 C s + 12 -0.638841 3 C s 17 -0.638841 4 C s + 36 -0.483204 11 C s 41 -0.483204 12 C s + 48 0.460733 15 C s 53 0.460733 16 C s + 57 -0.356582 17 H s 58 -0.356582 18 H s - Vector 48 Occ=0.000000D+00 E= 2.405820D-01 Symmetry=bu - MO Center= 1.5D-15, 1.6D-14, -3.4D-17, r^2= 1.2D+01 + Vector 48 Occ=0.000000D+00 E= 2.405822D-01 Symmetry=bu + MO Center= -3.4D-16, -6.8D-15, -5.6D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 31 0.510048 7 H s 32 -0.510048 8 H s - 59 0.462241 19 H s 60 -0.462241 20 H s - 45 0.458356 13 H s 46 -0.458356 14 H s - 36 -0.419598 11 C s 41 0.419598 12 C s - 50 0.340596 15 C py 55 0.340596 16 C py + 59 0.462242 19 H s 60 -0.462242 20 H s + 45 0.458355 13 H s 46 -0.458355 14 H s + 36 -0.419595 11 C s 41 0.419595 12 C s + 50 0.340595 15 C py 55 0.340595 16 C py - Vector 49 Occ=0.000000D+00 E= 2.630187D-01 Symmetry=bu - MO Center= -2.4D-15, 1.0D-14, 3.1D-17, r^2= 1.2D+01 + Vector 49 Occ=0.000000D+00 E= 2.630183D-01 Symmetry=bu + MO Center= -2.8D-16, 3.2D-15, -1.6D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.738193 15 C s 53 -0.738193 16 C s - 57 -0.576719 17 H s 58 0.576719 18 H s - 36 -0.469359 11 C s 41 0.469359 12 C s - 33 0.400675 9 H s 34 -0.400675 10 H s - 12 0.361314 3 C s 17 -0.361314 4 C s + 48 0.738194 15 C s 53 -0.738194 16 C s + 57 -0.576723 17 H s 58 0.576723 18 H s + 36 -0.469356 11 C s 41 0.469356 12 C s + 33 0.400674 9 H s 34 -0.400674 10 H s + 12 0.361311 3 C s 17 -0.361311 4 C s Vector 50 Occ=0.000000D+00 E= 2.853155D-01 Symmetry=ag - MO Center= 1.8D-15, 1.1D-14, -2.3D-17, r^2= 1.3D+01 + MO Center= 4.6D-16, -3.1D-15, 2.1D-17, r^2= 1.3D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.573676 3 C s 17 0.573676 4 C s + 12 0.573679 3 C s 17 0.573679 4 C s 22 -0.574431 5 C s 27 -0.574431 6 C s - 59 -0.569861 19 H s 60 -0.569861 20 H s - 48 0.524629 15 C s 53 0.524629 16 C s - 50 -0.408424 15 C py 55 0.408424 16 C py + 59 -0.569859 19 H s 60 -0.569859 20 H s + 48 0.524628 15 C s 53 0.524628 16 C s + 50 -0.408423 15 C py 55 0.408423 16 C py - Vector 51 Occ=0.000000D+00 E= 3.197839D-01 Symmetry=ag - MO Center= -2.0D-15, -1.2D-15, -4.5D-18, r^2= 6.7D+00 + Vector 51 Occ=0.000000D+00 E= 3.197840D-01 Symmetry=ag + MO Center= -1.1D-15, 3.0D-17, -5.7D-18, r^2= 6.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.612787 1 C py 9 -0.612787 2 C py - 36 -0.600273 11 C s 41 -0.600273 12 C s - 13 -0.439477 3 C px 18 0.439477 4 C px - 45 0.343476 13 H s 46 0.343476 14 H s - 23 -0.335430 5 C px 28 0.335430 6 C px + 4 0.612786 1 C py 9 -0.612786 2 C py + 36 -0.600274 11 C s 41 -0.600274 12 C s + 13 -0.439478 3 C px 18 0.439478 4 C px + 45 0.343477 13 H s 46 0.343477 14 H s + 23 -0.335428 5 C px 28 0.335428 6 C px Vector 52 Occ=0.000000D+00 E= 3.442773D-01 Symmetry=bu - MO Center= -6.2D-15, -2.5D-14, 3.1D-18, r^2= 8.0D+00 + MO Center= -2.5D-16, 5.7D-15, -1.7D-18, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.640599 3 C s 17 -0.640599 4 C s - 3 -0.549538 1 C px 8 -0.549538 2 C px + 12 0.640597 3 C s 17 -0.640597 4 C s + 3 -0.549537 1 C px 8 -0.549537 2 C px 24 -0.469978 5 C py 29 -0.469978 6 C py 50 0.459269 15 C py 55 0.459269 16 C py - 59 0.377578 19 H s 60 -0.377578 20 H s + 59 0.377579 19 H s 60 -0.377579 20 H s - Vector 53 Occ=0.000000D+00 E= 3.799999D-01 Symmetry=ag - MO Center= -5.2D-15, -4.2D-15, -9.4D-17, r^2= 5.8D+00 + Vector 53 Occ=0.000000D+00 E= 3.799998D-01 Symmetry=ag + MO Center= 4.2D-15, 1.2D-16, -1.2D-17, r^2= 5.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.550017 9 H s 34 0.550017 10 H s + 33 0.550016 9 H s 34 0.550016 10 H s 13 0.544691 3 C px 18 -0.544691 4 C px 23 -0.506688 5 C px 28 0.506688 6 C px - 31 -0.498441 7 H s 32 -0.498441 8 H s - 24 0.355721 5 C py 29 -0.355721 6 C py + 31 -0.498439 7 H s 32 -0.498439 8 H s + 24 0.355720 5 C py 29 -0.355720 6 C py - Vector 54 Occ=0.000000D+00 E= 3.978255D-01 Symmetry=bu - MO Center= 7.7D-15, 1.1D-14, 7.3D-18, r^2= 4.4D+00 + Vector 54 Occ=0.000000D+00 E= 3.978256D-01 Symmetry=bu + MO Center= -8.4D-15, 1.6D-16, 2.2D-18, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 0.707963 3 C py 19 0.707963 4 C py - 22 0.585164 5 C s 27 -0.585164 6 C s - 2 -0.439525 1 C s 7 0.439525 2 C s - 24 0.431297 5 C py 29 0.431297 6 C py - 23 0.381887 5 C px 28 0.381887 6 C px + 22 0.585166 5 C s 27 -0.585166 6 C s + 2 -0.439523 1 C s 7 0.439523 2 C s + 24 0.431295 5 C py 29 0.431295 6 C py + 23 0.381886 5 C px 28 0.381886 6 C px - Vector 55 Occ=0.000000D+00 E= 4.254715D-01 Symmetry=bu - MO Center= -2.4D-15, -8.0D-14, -2.0D-20, r^2= 1.2D+01 + Vector 55 Occ=0.000000D+00 E= 4.254717D-01 Symmetry=bu + MO Center= -1.2D-16, -1.1D-14, -3.0D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 -0.559554 15 C px 54 -0.559554 16 C px - 2 0.529227 1 C s 7 -0.529227 2 C s - 38 0.469562 11 C py 43 0.469562 12 C py + 49 -0.559552 15 C px 54 -0.559552 16 C px + 2 0.529228 1 C s 7 -0.529228 2 C s + 38 0.469561 11 C py 43 0.469561 12 C py 45 0.401483 13 H s 46 -0.401483 14 H s - 57 0.390968 17 H s 58 -0.390968 18 H s + 57 0.390967 17 H s 58 -0.390967 18 H s - Vector 56 Occ=0.000000D+00 E= 4.381710D-01 Symmetry=ag - MO Center= 5.7D-15, 1.0D-13, -8.7D-19, r^2= 9.7D+00 + Vector 56 Occ=0.000000D+00 E= 4.381712D-01 Symmetry=ag + MO Center= 7.5D-16, 7.8D-15, -9.1D-18, r^2= 9.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.562812 11 C px 42 -0.562812 12 C px 50 -0.552022 15 C py 55 0.552022 16 C py - 14 0.425467 3 C py 19 -0.425467 4 C py - 24 0.352005 5 C py 29 -0.352005 6 C py + 14 0.425469 3 C py 19 -0.425469 4 C py + 24 0.352006 5 C py 29 -0.352006 6 C py 59 -0.353031 19 H s 60 -0.353031 20 H s - Vector 57 Occ=0.000000D+00 E= 4.777506D-01 Symmetry=ag - MO Center= -5.0D-15, -1.9D-14, -3.2D-17, r^2= 9.9D+00 + Vector 57 Occ=0.000000D+00 E= 4.777504D-01 Symmetry=ag + MO Center= 5.5D-16, 6.4D-15, 5.5D-18, r^2= 9.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 38 0.670259 11 C py 43 -0.670259 12 C py - 49 -0.605869 15 C px 54 0.605869 16 C px + 49 -0.605870 15 C px 54 0.605870 16 C px 24 -0.424187 5 C py 29 0.424187 6 C py - 4 -0.383778 1 C py 9 0.383778 2 C py - 14 -0.351071 3 C py 19 0.351071 4 C py + 4 -0.383779 1 C py 9 0.383779 2 C py + 14 -0.351070 3 C py 19 0.351070 4 C py - Vector 58 Occ=0.000000D+00 E= 5.060414D-01 Symmetry=bu - MO Center= 1.9D-15, 3.0D-14, -2.6D-18, r^2= 9.7D+00 + Vector 58 Occ=0.000000D+00 E= 5.060417D-01 Symmetry=bu + MO Center= -5.8D-16, -8.7D-15, 1.4D-19, r^2= 9.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.622376 11 C px 42 0.622376 12 C px - 50 -0.552727 15 C py 55 -0.552727 16 C py - 48 -0.518285 15 C s 53 0.518285 16 C s - 38 -0.456094 11 C py 43 -0.456094 12 C py - 36 0.447959 11 C s 41 -0.447959 12 C s + 37 0.622375 11 C px 42 0.622375 12 C px + 50 -0.552726 15 C py 55 -0.552726 16 C py + 48 -0.518286 15 C s 53 0.518286 16 C s + 38 -0.456096 11 C py 43 -0.456096 12 C py + 36 0.447960 11 C s 41 -0.447960 12 C s - Vector 59 Occ=0.000000D+00 E= 5.676000D-01 Symmetry=ag - MO Center= 2.7D-16, -2.3D-14, -2.4D-19, r^2= 5.4D+00 + Vector 59 Occ=0.000000D+00 E= 5.676001D-01 Symmetry=ag + MO Center= 1.6D-15, 1.1D-14, -1.8D-17, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.691283 1 C px 8 -0.691283 2 C px @@ -1153,144 +1182,168 @@ 37 0.433546 11 C px 42 -0.433546 12 C px 24 -0.417703 5 C py 29 0.417703 6 C py - Vector 60 Occ=0.000000D+00 E= 5.817448D-01 Symmetry=bu - MO Center= -7.2D-16, -3.9D-15, 8.1D-24, r^2= 3.7D+00 + Vector 60 Occ=0.000000D+00 E= 5.817446D-01 Symmetry=bu + MO Center= 8.0D-16, -5.5D-15, -1.1D-20, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.642938 1 C py 9 0.642938 2 C py 13 -0.568423 3 C px 18 -0.568423 4 C px 23 0.495542 5 C px 28 0.495542 6 C px 24 -0.397652 5 C py 29 -0.397652 6 C py - 22 -0.383109 5 C s 27 0.383109 6 C s + 22 -0.383110 5 C s 27 0.383110 6 C s DFT Final Beta Molecular Orbital Analysis ----------------------------------------- Vector 1 Occ=1.000000D+00 E=-1.025063D+01 Symmetry=bu - MO Center= 5.9D-12, 3.5D-11, 2.0D-26, r^2= 2.1D+00 + MO Center= 2.8D-11, 1.7D-10, 1.1D-33, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.700307 1 C s 6 -0.700307 2 C s + 2 0.030969 1 C s 7 -0.030969 2 C s Vector 2 Occ=1.000000D+00 E=-1.025058D+01 Symmetry=ag - MO Center= -5.9D-12, -3.5D-11, -7.5D-19, r^2= 2.1D+00 + MO Center= -2.8D-11, -1.7D-10, 4.5D-43, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.700330 1 C s 6 0.700330 2 C s + 2 0.030779 1 C s 7 0.030779 2 C s Vector 3 Occ=1.000000D+00 E=-1.021921D+01 Symmetry=bu - MO Center= 1.7D-11, -1.3D-11, 1.7D-23, r^2= 2.0D+00 + MO Center= 1.6D-10, -1.1D-10, -4.2D-32, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.680255 5 C s 26 -0.680255 6 C s - 11 -0.165809 3 C s 16 0.165809 4 C s + 21 0.680257 5 C s 26 -0.680257 6 C s + 11 -0.165802 3 C s 16 0.165802 4 C s + 22 0.031722 5 C s 27 -0.031722 6 C s Vector 4 Occ=1.000000D+00 E=-1.021917D+01 Symmetry=ag - MO Center= -1.7D-11, 1.3D-11, -2.0D-18, r^2= 2.0D+00 + MO Center= -1.6D-10, 1.2D-10, 6.0D-36, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.673247 5 C s 26 0.673247 6 C s - 11 -0.192215 3 C s 16 -0.192215 4 C s + 21 0.673246 5 C s 26 0.673246 6 C s + 11 -0.192217 3 C s 16 -0.192217 4 C s + 22 0.031390 5 C s 27 0.031390 6 C s Vector 5 Occ=1.000000D+00 E=-1.021844D+01 Symmetry=ag - MO Center= -2.1D-16, -1.4D-16, 7.7D-35, r^2= 8.6D+00 + MO Center= 1.7D-10, 9.4D-10, -1.6D-17, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.699342 11 C s 40 0.699342 12 C s + 35 0.699341 11 C s 40 0.699341 12 C s + 11 -0.034389 3 C s 16 -0.034389 4 C s + 36 0.030948 11 C s 41 0.030948 12 C s Vector 6 Occ=1.000000D+00 E=-1.021844D+01 Symmetry=bu - MO Center= -1.6D-15, -3.8D-15, -6.3D-31, r^2= 8.6D+00 + MO Center= -1.7D-10, -9.4D-10, -2.1D-28, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.700085 11 C s 40 -0.700085 12 C s + 36 0.030999 11 C s 41 -0.030999 12 C s Vector 7 Occ=1.000000D+00 E=-1.021786D+01 Symmetry=bu - MO Center= -1.5D-13, -4.9D-13, 3.2D-31, r^2= 2.0D+00 + MO Center= 8.5D-12, 2.6D-12, 1.1D-28, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.680448 3 C s 16 -0.680448 4 C s - 21 0.166736 5 C s 26 -0.166736 6 C s + 11 0.680450 3 C s 16 -0.680450 4 C s + 21 0.166729 5 C s 26 -0.166729 6 C s + 12 0.028517 3 C s 17 -0.028517 4 C s Vector 8 Occ=1.000000D+00 E=-1.021776D+01 Symmetry=ag - MO Center= -2.1D-16, -1.7D-14, 2.4D-18, r^2= 2.0D+00 + MO Center= -8.5D-12, -3.0D-12, 7.3D-18, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.672703 3 C s 16 0.672703 4 C s - 21 0.193363 5 C s 26 0.193363 6 C s + 11 0.672702 3 C s 16 0.672702 4 C s + 21 0.193364 5 C s 26 0.193364 6 C s + 35 0.032702 11 C s 40 0.032702 12 C s + 12 0.027795 3 C s 17 0.027795 4 C s Vector 9 Occ=1.000000D+00 E=-1.021079D+01 Symmetry=ag - MO Center= -9.4D-10, 1.0D-08, 2.2D-17, r^2= 1.5D+01 + MO Center= -1.8D-10, 1.9D-09, 6.0D-18, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700374 15 C s 52 0.700374 16 C s + 48 0.030341 15 C s 53 0.030341 16 C s Vector 10 Occ=1.000000D+00 E=-1.021079D+01 Symmetry=bu - MO Center= 9.4D-10, -1.0D-08, -1.3D-25, r^2= 1.5D+01 + MO Center= 1.8D-10, -1.9D-09, -1.7D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700375 15 C s 52 -0.700375 16 C s + 48 0.030342 15 C s 53 -0.030342 16 C s Vector 11 Occ=1.000000D+00 E=-1.014702D+00 Symmetry=ag - MO Center= -6.5D-16, 3.5D-15, -2.5D-17, r^2= 2.8D+00 + MO Center= -1.8D-17, 6.1D-17, 3.5D-33, r^2= 2.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.279929 1 C s 7 0.279929 2 C s 22 0.245657 5 C s 27 0.245657 6 C s 12 0.244408 3 C s 17 0.244408 4 C s + 36 0.121458 11 C s 41 0.121458 12 C s + 1 -0.109751 1 C s 6 -0.109751 2 C s Vector 12 Occ=1.000000D+00 E=-9.544807D-01 Symmetry=bu - MO Center= -3.0D-16, -4.3D-15, 4.1D-21, r^2= 7.1D+00 + MO Center= -5.2D-16, -4.8D-15, 6.9D-26, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.294364 1 C s 7 -0.294364 2 C s 36 -0.292082 11 C s 41 0.292082 12 C s 48 -0.187106 15 C s 53 0.187106 16 C s + 22 -0.122021 5 C s 27 0.122021 6 C s + 1 -0.110745 1 C s 6 0.110745 2 C s Vector 13 Occ=1.000000D+00 E=-9.137413D-01 Symmetry=ag - MO Center= 6.4D-17, 1.0D-15, 1.9D-32, r^2= 1.1D+01 + MO Center= 2.5D-16, 4.9D-15, -6.9D-33, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.329689 11 C s 41 0.329689 12 C s 48 0.296717 15 C s 53 0.296717 16 C s + 35 -0.124035 11 C s 40 -0.124035 12 C s + 12 -0.118131 3 C s 17 -0.118131 4 C s + 47 -0.113224 15 C s 52 -0.113224 16 C s - Vector 14 Occ=1.000000D+00 E=-8.975952D-01 Symmetry=bu - MO Center= 1.5D-15, 6.7D-17, -6.9D-19, r^2= 3.0D+00 + Vector 14 Occ=1.000000D+00 E=-8.975951D-01 Symmetry=bu + MO Center= 3.9D-15, 3.4D-15, -4.6D-25, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.359673 3 C s 17 -0.359673 4 C s 22 0.329999 5 C s 27 -0.329999 6 C s + 3 0.133580 1 C px 8 0.133580 2 C px + 11 -0.132860 3 C s 16 0.132860 4 C s + 21 -0.121868 5 C s 26 0.121868 6 C s - Vector 15 Occ=1.000000D+00 E=-8.645220D-01 Symmetry=bu - MO Center= 7.7D-16, 5.5D-15, -2.4D-18, r^2= 9.1D+00 + Vector 15 Occ=1.000000D+00 E=-8.645219D-01 Symmetry=bu + MO Center= -5.4D-16, -2.5D-15, 1.7D-24, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.299589 15 C s 53 -0.299589 16 C s - 2 0.262762 1 C s 7 -0.262762 2 C s - 22 -0.193859 5 C s 27 0.193859 6 C s + 2 0.262763 1 C s 7 -0.262763 2 C s + 22 -0.193860 5 C s 27 0.193860 6 C s 36 0.173277 11 C s 41 -0.173277 12 C s + 38 -0.127957 11 C py 43 -0.127957 12 C py Vector 16 Occ=1.000000D+00 E=-7.818207D-01 Symmetry=ag - MO Center= -9.7D-16, -4.6D-15, -3.6D-33, r^2= 7.6D+00 + MO Center= -1.3D-15, -1.6D-15, 7.8D-17, r^2= 7.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 22 0.252823 5 C s 27 0.252823 6 C s - 48 0.235222 15 C s 53 0.235222 16 C s + 48 0.235223 15 C s 53 0.235223 16 C s 2 -0.210254 1 C s 7 -0.210254 2 C s 14 -0.172862 3 C py 19 0.172862 4 C py + 3 -0.143054 1 C px 8 0.143054 2 C px Vector 17 Occ=1.000000D+00 E=-7.558002D-01 Symmetry=ag - MO Center= 2.7D-15, -7.1D-16, 2.9D-16, r^2= 5.2D+00 + MO Center= 4.8D-15, 1.1D-14, 1.3D-16, r^2= 5.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.329210 3 C s 17 0.329210 4 C s 3 0.192358 1 C px 8 -0.192358 2 C px 24 0.179530 5 C py 29 -0.179530 6 C py - 2 -0.173327 1 C s 7 -0.173327 2 C s + 2 -0.173326 1 C s 7 -0.173326 2 C s 22 -0.156903 5 C s 27 -0.156903 6 C s Vector 18 Occ=1.000000D+00 E=-7.185973D-01 Symmetry=bu - MO Center= 6.1D-16, 1.0D-15, -1.1D-31, r^2= 1.2D+01 + MO Center= -4.2D-15, -1.1D-13, 2.1D-22, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.298324 11 C s 41 -0.298324 12 C s @@ -1300,7 +1353,7 @@ 57 -0.154081 17 H s 58 0.154081 18 H s Vector 19 Occ=1.000000D+00 E=-7.004621D-01 Symmetry=ag - MO Center= -3.2D-16, 1.7D-15, 3.3D-16, r^2= 7.3D+00 + MO Center= -6.8D-15, 1.2D-13, -1.7D-16, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.206098 5 C px 28 -0.206098 6 C px @@ -1309,8 +1362,8 @@ 36 0.176046 11 C s 41 0.176046 12 C s 22 0.167712 5 C s 27 0.167712 6 C s - Vector 20 Occ=1.000000D+00 E=-6.482774D-01 Symmetry=ag - MO Center= -1.9D-16, 4.4D-15, -4.9D-17, r^2= 1.0D+01 + Vector 20 Occ=1.000000D+00 E=-6.482775D-01 Symmetry=ag + MO Center= 4.5D-17, -1.5D-15, -3.7D-32, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.222212 15 C px 54 -0.222212 16 C px @@ -1319,28 +1372,28 @@ 36 -0.160006 11 C s 41 -0.160006 12 C s 45 -0.150901 13 H s 46 -0.150901 14 H s - Vector 21 Occ=1.000000D+00 E=-6.329042D-01 Symmetry=bu - MO Center= -7.9D-17, -5.9D-15, -6.3D-17, r^2= 9.2D+00 + Vector 21 Occ=1.000000D+00 E=-6.329043D-01 Symmetry=bu + MO Center= -3.6D-15, -1.5D-14, 7.4D-32, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 0.215331 3 C py 19 0.215331 4 C py 37 0.213660 11 C px 42 0.213660 12 C px 50 0.194026 15 C py 55 0.194026 16 C py - 3 0.168547 1 C px 8 0.168547 2 C px + 3 0.168546 1 C px 8 0.168546 2 C px 59 -0.153677 19 H s 60 0.153677 20 H s Vector 22 Occ=1.000000D+00 E=-6.012788D-01 Symmetry=bu - MO Center= -3.1D-15, -1.4D-15, -8.3D-18, r^2= 7.7D+00 + MO Center= 2.8D-15, 1.4D-14, -9.9D-23, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 38 0.203630 11 C py 43 0.203630 12 C py - 13 0.190532 3 C px 18 0.190532 4 C px - 49 0.190415 15 C px 54 0.190415 16 C px + 13 0.190531 3 C px 18 0.190531 4 C px + 49 0.190416 15 C px 54 0.190416 16 C px 24 0.184533 5 C py 29 0.184533 6 C py 2 -0.180455 1 C s 7 0.180455 2 C s Vector 23 Occ=1.000000D+00 E=-5.932512D-01 Symmetry=bu - MO Center= -2.5D-15, -1.6D-15, -6.4D-18, r^2= 7.3D+00 + MO Center= -1.6D-14, -5.8D-14, 7.9D-21, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.288739 5 C px 28 0.288739 6 C px @@ -1350,65 +1403,67 @@ 4 -0.158181 1 C py 9 -0.158181 2 C py Vector 24 Occ=1.000000D+00 E=-5.849175D-01 Symmetry=ag - MO Center= 9.3D-16, -4.7D-15, -3.0D-17, r^2= 1.5D+01 + MO Center= 7.2D-15, 4.8D-14, 2.3D-16, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.343394 15 C py 55 -0.343394 16 C py 37 0.269256 11 C px 42 -0.269256 12 C px 59 -0.248478 19 H s 60 -0.248478 20 H s 45 -0.151276 13 H s 46 -0.151276 14 H s + 24 0.132024 5 C py 29 -0.132024 6 C py - Vector 25 Occ=1.000000D+00 E=-5.681424D-01 Symmetry=bu - MO Center= 1.2D-15, 2.3D-16, 4.6D-17, r^2= 4.5D+00 + Vector 25 Occ=1.000000D+00 E=-5.681423D-01 Symmetry=bu + MO Center= 1.4D-14, -3.7D-15, -3.4D-31, r^2= 4.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.334305 3 C px 18 0.334305 4 C px + 13 0.334306 3 C px 18 0.334306 4 C px 31 0.251506 7 H s 32 -0.251506 8 H s - 24 -0.203061 5 C py 29 -0.203061 6 C py - 33 0.192304 9 H s 34 -0.192304 10 H s + 24 -0.203060 5 C py 29 -0.203060 6 C py + 33 0.192303 9 H s 34 -0.192303 10 H s 23 0.190748 5 C px 28 0.190748 6 C px - Vector 26 Occ=1.000000D+00 E=-5.492919D-01 Symmetry=bu - MO Center= 3.8D-15, 1.6D-14, 6.4D-17, r^2= 1.0D+01 + Vector 26 Occ=1.000000D+00 E=-5.492918D-01 Symmetry=bu + MO Center= -5.1D-16, 3.3D-18, -2.5D-32, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.281360 15 C py 55 0.281360 16 C py - 37 0.220771 11 C px 42 0.220771 12 C px + 37 0.220772 11 C px 42 0.220772 12 C px 14 -0.214298 3 C py 19 -0.214298 4 C py 24 0.198267 5 C py 29 0.198267 6 C py 59 -0.180313 19 H s 60 0.180313 20 H s Vector 27 Occ=1.000000D+00 E=-5.351484D-01 Symmetry=ag - MO Center= -3.9D-15, -2.1D-15, 2.7D-16, r^2= 1.1D+01 + MO Center= 5.4D-16, -8.7D-16, -7.1D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.292081 15 C px 54 -0.292081 16 C px 57 0.242951 17 H s 58 0.242951 18 H s 37 -0.189598 11 C px 42 0.189598 12 C px 14 -0.171016 3 C py 19 0.171016 4 C py - 24 0.170663 5 C py 29 -0.170663 6 C py + 24 0.170662 5 C py 29 -0.170662 6 C py Vector 28 Occ=1.000000D+00 E=-5.173619D-01 Symmetry=au - MO Center= -1.1D-15, -7.5D-15, -1.6D-16, r^2= 3.6D+00 + MO Center= -6.1D-16, -6.2D-15, 3.5D-16, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.335760 1 C pz 10 0.335760 2 C pz 15 0.298615 3 C pz 20 0.298615 4 C pz 25 0.299101 5 C pz 30 0.299101 6 C pz 39 0.178320 11 C pz 44 0.178320 12 C pz + 51 0.082253 15 C pz 56 0.082253 16 C pz - Vector 29 Occ=1.000000D+00 E=-4.994339D-01 Symmetry=bu - MO Center= 1.0D-15, 1.9D-15, -4.9D-19, r^2= 1.3D+01 + Vector 29 Occ=1.000000D+00 E=-4.994338D-01 Symmetry=bu + MO Center= -1.2D-15, -1.6D-14, 4.1D-22, r^2= 1.3D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.256239 13 H s 46 -0.256239 14 H s 57 0.240764 17 H s 58 -0.240764 18 H s 37 -0.233080 11 C px 42 -0.233080 12 C px - 49 0.232064 15 C px 54 0.232064 16 C px + 49 0.232063 15 C px 54 0.232063 16 C px 4 0.215955 1 C py 9 0.215955 2 C py Vector 30 Occ=1.000000D+00 E=-4.917913D-01 Symmetry=ag - MO Center= -2.1D-15, -1.3D-14, -1.6D-17, r^2= 6.5D+00 + MO Center= 4.8D-16, 5.3D-15, -8.2D-16, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.254333 1 C py 9 -0.254333 2 C py @@ -1418,7 +1473,7 @@ 24 0.221300 5 C py 29 -0.221300 6 C py Vector 31 Occ=1.000000D+00 E=-4.811398D-01 Symmetry=ag - MO Center= 6.4D-16, 3.8D-15, -2.5D-17, r^2= 7.3D+00 + MO Center= 7.5D-17, 9.3D-15, 4.0D-16, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.268469 1 C px 8 -0.268469 2 C px @@ -1428,22 +1483,24 @@ 45 -0.195861 13 H s 46 -0.195861 14 H s Vector 32 Occ=1.000000D+00 E=-4.507965D-01 Symmetry=bg - MO Center= 5.1D-15, 6.5D-14, -2.4D-20, r^2= 7.4D+00 + MO Center= -1.4D-15, -1.8D-14, 8.0D-18, r^2= 7.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.390136 11 C pz 44 0.390136 12 C pz 5 0.360528 1 C pz 10 -0.360528 2 C pz 51 -0.236386 15 C pz 56 0.236386 16 C pz + 25 -0.132973 5 C pz 30 0.132973 6 C pz + 15 0.130020 3 C pz 20 -0.130020 4 C pz Vector 33 Occ=1.000000D+00 E=-3.911602D-01 Symmetry=bg - MO Center= 9.9D-14, -1.5D-14, -1.7D-20, r^2= 2.7D+00 + MO Center= -1.2D-14, 2.5D-15, -1.6D-18, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.462059 3 C pz 20 -0.462059 4 C pz 25 0.459179 5 C pz 30 -0.459179 6 C pz Vector 34 Occ=1.000000D+00 E=-3.887383D-01 Symmetry=au - MO Center= -1.0D-13, -4.3D-14, 7.7D-17, r^2= 1.0D+01 + MO Center= 1.3D-14, -1.1D-14, 2.9D-16, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.446267 11 C pz 44 0.446267 12 C pz @@ -1452,7 +1509,7 @@ 25 -0.192201 5 C pz 30 -0.192201 6 C pz Vector 35 Occ=0.000000D+00 E=-3.004760D-01 Symmetry=bg - MO Center= 9.7D-17, -1.2D-15, -3.7D-18, r^2= 8.1D+00 + MO Center= 5.9D-16, 3.5D-14, 3.0D-21, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.382526 15 C pz 56 -0.382526 16 C pz @@ -1462,7 +1519,7 @@ 15 0.221571 3 C pz 20 -0.221571 4 C pz Vector 36 Occ=0.000000D+00 E=-1.470203D-01 Symmetry=au - MO Center= -3.5D-16, 1.1D-16, -1.3D-16, r^2= 8.3D+00 + MO Center= 3.8D-16, -1.8D-15, -3.0D-17, r^2= 8.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.465917 15 C pz 56 -0.465917 16 C pz @@ -1472,33 +1529,35 @@ 39 0.193667 11 C pz 44 0.193667 12 C pz Vector 37 Occ=0.000000D+00 E=-1.034293D-01 Symmetry=au - MO Center= -2.5D-16, 1.5D-15, -2.4D-16, r^2= 2.7D+00 + MO Center= -4.1D-16, -7.4D-16, -1.4D-16, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.586902 3 C pz 20 0.586902 4 C pz 25 -0.547895 5 C pz 30 -0.547895 6 C pz + 5 -0.041553 1 C pz 10 -0.041553 2 C pz - Vector 38 Occ=0.000000D+00 E=-7.365342D-02 Symmetry=bg - MO Center= -3.2D-16, -8.8D-15, 4.5D-17, r^2= 1.1D+01 + Vector 38 Occ=0.000000D+00 E=-7.365341D-02 Symmetry=bg + MO Center= -1.3D-17, 1.3D-16, -6.1D-20, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.546329 15 C pz 56 -0.546329 16 C pz 39 -0.490628 11 C pz 44 0.490628 12 C pz 15 -0.246423 3 C pz 20 0.246423 4 C pz 25 0.237312 5 C pz 30 -0.237312 6 C pz + 5 0.036317 1 C pz 10 -0.036317 2 C pz - Vector 39 Occ=0.000000D+00 E=-8.263563D-03 Symmetry=au - MO Center= -7.5D-16, -3.9D-15, 5.2D-17, r^2= 8.4D+00 + Vector 39 Occ=0.000000D+00 E=-8.263554D-03 Symmetry=au + MO Center= 9.2D-17, -1.9D-15, -2.2D-16, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.527822 11 C pz 44 -0.527822 12 C pz 5 0.479886 1 C pz 10 0.479886 2 C pz - 51 0.410510 15 C pz 56 0.410510 16 C pz + 51 0.410509 15 C pz 56 0.410509 16 C pz 25 -0.189866 5 C pz 30 -0.189866 6 C pz 15 -0.154920 3 C pz 20 -0.154920 4 C pz - Vector 40 Occ=0.000000D+00 E= 7.613877D-02 Symmetry=bg - MO Center= 1.3D-15, 1.2D-14, -3.6D-17, r^2= 4.0D+00 + Vector 40 Occ=0.000000D+00 E= 7.613878D-02 Symmetry=bg + MO Center= 1.8D-16, 9.5D-16, -3.1D-21, r^2= 4.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.542343 1 C pz 10 -0.542343 2 C pz @@ -1507,205 +1566,205 @@ 39 0.295326 11 C pz 44 -0.295326 12 C pz 51 -0.170149 15 C pz 56 0.170149 16 C pz - Vector 41 Occ=0.000000D+00 E= 1.421613D-01 Symmetry=ag - MO Center= 7.2D-15, 6.6D-15, -6.8D-16, r^2= 8.6D+00 + Vector 41 Occ=0.000000D+00 E= 1.421612D-01 Symmetry=ag + MO Center= 1.1D-14, 3.5D-14, -1.1D-17, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.466417 1 C s 7 0.466417 2 C s - 33 -0.401077 9 H s 34 -0.401077 10 H s - 31 -0.391553 7 H s 32 -0.391553 8 H s - 38 -0.369960 11 C py 43 0.369960 12 C py - 36 -0.334157 11 C s 41 -0.334157 12 C s + 2 0.466414 1 C s 7 0.466414 2 C s + 33 -0.401079 9 H s 34 -0.401079 10 H s + 31 -0.391554 7 H s 32 -0.391554 8 H s + 38 -0.369959 11 C py 43 0.369959 12 C py + 36 -0.334156 11 C s 41 -0.334156 12 C s - Vector 42 Occ=0.000000D+00 E= 1.508757D-01 Symmetry=bu - MO Center= -6.5D-15, 1.8D-15, -2.2D-18, r^2= 9.7D+00 + Vector 42 Occ=0.000000D+00 E= 1.508755D-01 Symmetry=bu + MO Center= -1.3D-14, -2.7D-14, -2.7D-19, r^2= 9.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.369374 13 H s 46 -0.369374 14 H s + 45 0.369373 13 H s 46 -0.369373 14 H s 13 0.345945 3 C px 18 0.345945 4 C px 37 0.331162 11 C px 42 0.331162 12 C px - 57 -0.318134 17 H s 58 0.318134 18 H s - 31 -0.308970 7 H s 32 0.308970 8 H s + 57 -0.318133 17 H s 58 0.318133 18 H s + 31 -0.308968 7 H s 32 0.308968 8 H s - Vector 43 Occ=0.000000D+00 E= 1.811463D-01 Symmetry=bu - MO Center= -6.1D-15, 2.4D-14, 1.2D-17, r^2= 6.3D+00 + Vector 43 Occ=0.000000D+00 E= 1.811461D-01 Symmetry=bu + MO Center= 6.8D-16, -7.3D-15, -3.6D-19, r^2= 6.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.585780 11 C s 41 -0.585780 12 C s - 4 0.460901 1 C py 9 0.460901 2 C py - 33 0.400004 9 H s 34 -0.400004 10 H s - 2 0.342347 1 C s 7 -0.342347 2 C s + 36 0.585785 11 C s 41 -0.585785 12 C s + 4 0.460899 1 C py 9 0.460899 2 C py + 33 0.399998 9 H s 34 -0.399998 10 H s + 2 0.342354 1 C s 7 -0.342354 2 C s 38 0.336102 11 C py 43 0.336102 12 C py - Vector 44 Occ=0.000000D+00 E= 1.979357D-01 Symmetry=ag - MO Center= 9.1D-15, -2.0D-14, -1.2D-17, r^2= 1.1D+01 + Vector 44 Occ=0.000000D+00 E= 1.979354D-01 Symmetry=ag + MO Center= 6.5D-15, 3.6D-15, -1.0D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.553933 13 H s 46 0.553933 14 H s - 12 0.473527 3 C s 17 0.473527 4 C s - 57 -0.374127 17 H s 58 -0.374127 18 H s + 45 0.553934 13 H s 46 0.553934 14 H s + 12 0.473530 3 C s 17 0.473530 4 C s + 57 -0.374126 17 H s 58 -0.374126 18 H s 36 -0.346216 11 C s 41 -0.346216 12 C s 31 -0.317813 7 H s 32 -0.317813 8 H s - Vector 45 Occ=0.000000D+00 E= 2.203487D-01 Symmetry=ag - MO Center= -3.5D-14, 7.0D-14, -1.4D-16, r^2= 8.1D+00 + Vector 45 Occ=0.000000D+00 E= 2.203490D-01 Symmetry=ag + MO Center= 1.1D-15, 1.4D-15, -6.5D-17, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.798708 5 C s 27 0.798708 6 C s - 48 0.499362 15 C s 53 0.499362 16 C s - 2 -0.453588 1 C s 7 -0.453588 2 C s - 57 -0.402268 17 H s 58 -0.402268 18 H s - 12 -0.378189 3 C s 17 -0.378189 4 C s + 22 0.798709 5 C s 27 0.798709 6 C s + 48 0.499360 15 C s 53 0.499360 16 C s + 2 -0.453593 1 C s 7 -0.453593 2 C s + 57 -0.402269 17 H s 58 -0.402269 18 H s + 12 -0.378186 3 C s 17 -0.378186 4 C s - Vector 46 Occ=0.000000D+00 E= 2.257456D-01 Symmetry=bu - MO Center= 5.1D-14, -8.8D-14, -9.5D-18, r^2= 8.3D+00 + Vector 46 Occ=0.000000D+00 E= 2.257458D-01 Symmetry=bu + MO Center= 9.7D-15, 7.5D-16, -2.8D-18, r^2= 8.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 22 0.657299 5 C s 27 -0.657299 6 C s - 2 0.519662 1 C s 7 -0.519662 2 C s - 12 -0.509279 3 C s 17 0.509279 4 C s - 48 0.437550 15 C s 53 -0.437550 16 C s - 31 0.428914 7 H s 32 -0.428914 8 H s + 2 0.519661 1 C s 7 -0.519661 2 C s + 12 -0.509278 3 C s 17 0.509278 4 C s + 48 0.437546 15 C s 53 -0.437546 16 C s + 31 0.428912 7 H s 32 -0.428912 8 H s - Vector 47 Occ=0.000000D+00 E= 2.420308D-01 Symmetry=bu - MO Center= 1.6D-14, 1.4D-14, 7.8D-18, r^2= 1.1D+01 + Vector 47 Occ=0.000000D+00 E= 2.420309D-01 Symmetry=bu + MO Center= -1.2D-14, -7.2D-15, 4.4D-20, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 0.497941 7 H s 32 -0.497941 8 H s - 45 0.490064 13 H s 46 -0.490064 14 H s - 36 -0.454628 11 C s 41 0.454628 12 C s + 31 0.497942 7 H s 32 -0.497942 8 H s + 45 0.490063 13 H s 46 -0.490063 14 H s + 36 -0.454626 11 C s 41 0.454626 12 C s 59 0.434459 19 H s 60 -0.434459 20 H s - 50 0.340887 15 C py 55 0.340887 16 C py + 50 0.340886 15 C py 55 0.340886 16 C py - Vector 48 Occ=0.000000D+00 E= 2.463279D-01 Symmetry=ag - MO Center= -4.2D-14, 1.8D-14, 6.8D-16, r^2= 7.3D+00 + Vector 48 Occ=0.000000D+00 E= 2.463285D-01 Symmetry=ag + MO Center= 8.7D-16, 4.7D-14, -9.7D-17, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.733977 1 C s 7 0.733977 2 C s - 12 -0.670197 3 C s 17 -0.670197 4 C s - 36 -0.496803 11 C s 41 -0.496803 12 C s - 48 0.458166 15 C s 53 0.458166 16 C s - 31 0.352715 7 H s 32 0.352715 8 H s + 12 -0.670195 3 C s 17 -0.670195 4 C s + 36 -0.496800 11 C s 41 -0.496800 12 C s + 48 0.458169 15 C s 53 0.458169 16 C s + 31 0.352713 7 H s 32 0.352713 8 H s - Vector 49 Occ=0.000000D+00 E= 2.700333D-01 Symmetry=bu - MO Center= 4.5D-16, -1.9D-14, -2.7D-17, r^2= 1.3D+01 + Vector 49 Occ=0.000000D+00 E= 2.700329D-01 Symmetry=bu + MO Center= 3.0D-15, -6.6D-14, -2.0D-18, r^2= 1.3D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.788397 15 C s 53 -0.788397 16 C s - 57 -0.590008 17 H s 58 0.590008 18 H s - 36 -0.426799 11 C s 41 0.426799 12 C s - 12 0.364525 3 C s 17 -0.364525 4 C s - 33 0.363951 9 H s 34 -0.363951 10 H s + 48 0.788399 15 C s 53 -0.788399 16 C s + 57 -0.590012 17 H s 58 0.590012 18 H s + 36 -0.426794 11 C s 41 0.426794 12 C s + 12 0.364523 3 C s 17 -0.364523 4 C s + 33 0.363948 9 H s 34 -0.363948 10 H s Vector 50 Occ=0.000000D+00 E= 2.904648D-01 Symmetry=ag - MO Center= 1.2D-15, -7.1D-15, -2.7D-17, r^2= 1.4D+01 + MO Center= -6.6D-15, 2.0D-14, 2.5D-17, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 59 -0.570234 19 H s 60 -0.570234 20 H s + 59 -0.570232 19 H s 60 -0.570232 20 H s 22 -0.562454 5 C s 27 -0.562454 6 C s - 12 0.548632 3 C s 17 0.548632 4 C s - 48 0.548598 15 C s 53 0.548598 16 C s - 50 -0.407962 15 C py 55 0.407962 16 C py + 12 0.548634 3 C s 17 0.548634 4 C s + 48 0.548597 15 C s 53 0.548597 16 C s + 50 -0.407961 15 C py 55 0.407961 16 C py - Vector 51 Occ=0.000000D+00 E= 3.235116D-01 Symmetry=ag - MO Center= 1.5D-14, -2.7D-14, 7.6D-17, r^2= 6.6D+00 + Vector 51 Occ=0.000000D+00 E= 3.235117D-01 Symmetry=ag + MO Center= 9.2D-16, 1.7D-15, 4.7D-17, r^2= 6.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.618627 1 C py 9 -0.618627 2 C py - 36 -0.569430 11 C s 41 -0.569430 12 C s + 4 0.618626 1 C py 9 -0.618626 2 C py + 36 -0.569431 11 C s 41 -0.569431 12 C s 13 -0.448367 3 C px 18 0.448367 4 C px - 2 -0.350555 1 C s 7 -0.350555 2 C s - 23 -0.341530 5 C px 28 0.341530 6 C px + 2 -0.350553 1 C s 7 -0.350553 2 C s + 23 -0.341528 5 C px 28 0.341528 6 C px Vector 52 Occ=0.000000D+00 E= 3.477299D-01 Symmetry=bu - MO Center= -1.3D-14, 4.8D-14, -4.9D-19, r^2= 8.0D+00 + MO Center= -1.5D-15, 7.8D-16, 1.2D-18, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.643811 3 C s 17 -0.643811 4 C s - 3 -0.550307 1 C px 8 -0.550307 2 C px + 12 0.643809 3 C s 17 -0.643809 4 C s + 3 -0.550306 1 C px 8 -0.550306 2 C px 24 -0.475389 5 C py 29 -0.475389 6 C py 50 0.464002 15 C py 55 0.464002 16 C py - 59 0.379363 19 H s 60 -0.379363 20 H s + 59 0.379364 19 H s 60 -0.379364 20 H s Vector 53 Occ=0.000000D+00 E= 3.814970D-01 Symmetry=ag - MO Center= 6.5D-15, -2.8D-15, 1.3D-16, r^2= 5.7D+00 + MO Center= 9.1D-16, -7.5D-16, -1.4D-17, r^2= 5.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.551267 9 H s 34 0.551267 10 H s + 33 0.551266 9 H s 34 0.551266 10 H s 13 0.545245 3 C px 18 -0.545245 4 C px 23 -0.507240 5 C px 28 0.507240 6 C px - 31 -0.496936 7 H s 32 -0.496936 8 H s + 31 -0.496934 7 H s 32 -0.496934 8 H s 24 0.368056 5 C py 29 -0.368056 6 C py - Vector 54 Occ=0.000000D+00 E= 4.000063D-01 Symmetry=bu - MO Center= -6.5D-15, -9.8D-15, 3.5D-18, r^2= 4.5D+00 + Vector 54 Occ=0.000000D+00 E= 4.000064D-01 Symmetry=bu + MO Center= -1.1D-15, -2.5D-15, 2.8D-18, r^2= 4.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 0.711182 3 C py 19 0.711182 4 C py - 22 0.591264 5 C s 27 -0.591264 6 C s - 2 -0.433875 1 C s 7 0.433875 2 C s - 24 0.422807 5 C py 29 0.422807 6 C py - 36 -0.397282 11 C s 41 0.397282 12 C s + 14 0.711181 3 C py 19 0.711181 4 C py + 22 0.591265 5 C s 27 -0.591265 6 C s + 2 -0.433873 1 C s 7 0.433873 2 C s + 24 0.422805 5 C py 29 0.422805 6 C py + 36 -0.397283 11 C s 41 0.397283 12 C s - Vector 55 Occ=0.000000D+00 E= 4.297925D-01 Symmetry=bu - MO Center= 4.3D-15, -5.7D-14, 2.8D-18, r^2= 1.2D+01 + Vector 55 Occ=0.000000D+00 E= 4.297927D-01 Symmetry=bu + MO Center= -2.1D-16, -2.3D-15, -5.2D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 -0.550856 15 C px 54 -0.550856 16 C px - 2 0.546773 1 C s 7 -0.546773 2 C s - 38 0.463785 11 C py 43 0.463785 12 C py + 49 -0.550854 15 C px 54 -0.550854 16 C px + 2 0.546774 1 C s 7 -0.546774 2 C s + 38 0.463784 11 C py 43 0.463784 12 C py 45 0.391558 13 H s 46 -0.391558 14 H s - 57 0.385223 17 H s 58 -0.385223 18 H s + 57 0.385222 17 H s 58 -0.385222 18 H s - Vector 56 Occ=0.000000D+00 E= 4.407378D-01 Symmetry=ag - MO Center= -6.0D-16, -5.8D-14, -6.7D-17, r^2= 9.8D+00 + Vector 56 Occ=0.000000D+00 E= 4.407381D-01 Symmetry=ag + MO Center= 4.3D-16, 9.9D-15, 1.4D-17, r^2= 9.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.559364 11 C px 42 -0.559364 12 C px - 50 -0.558669 15 C py 55 0.558669 16 C py - 14 0.422104 3 C py 19 -0.422104 4 C py + 50 -0.558668 15 C py 55 0.558668 16 C py + 14 0.422106 3 C py 19 -0.422106 4 C py 59 -0.353220 19 H s 60 -0.353220 20 H s - 24 0.343087 5 C py 29 -0.343087 6 C py + 24 0.343089 5 C py 29 -0.343089 6 C py - Vector 57 Occ=0.000000D+00 E= 4.815299D-01 Symmetry=ag - MO Center= 8.8D-15, 1.8D-13, -3.5D-16, r^2= 9.8D+00 + Vector 57 Occ=0.000000D+00 E= 4.815296D-01 Symmetry=ag + MO Center= 4.3D-16, -2.1D-14, -4.1D-17, r^2= 9.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 38 0.665726 11 C py 43 -0.665726 12 C py 49 -0.604996 15 C px 54 0.604996 16 C px 24 -0.426644 5 C py 29 0.426644 6 C py - 4 -0.381073 1 C py 9 0.381073 2 C py - 14 -0.358411 3 C py 19 0.358411 4 C py + 4 -0.381074 1 C py 9 0.381074 2 C py + 14 -0.358409 3 C py 19 0.358409 4 C py - Vector 58 Occ=0.000000D+00 E= 5.114574D-01 Symmetry=bu - MO Center= -3.8D-15, -6.8D-14, -2.0D-17, r^2= 9.7D+00 + Vector 58 Occ=0.000000D+00 E= 5.114577D-01 Symmetry=bu + MO Center= 3.2D-16, 1.5D-14, 2.8D-19, r^2= 9.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.615897 11 C px 42 0.615897 12 C px - 50 -0.550172 15 C py 55 -0.550172 16 C py - 48 -0.532023 15 C s 53 0.532023 16 C s - 38 -0.460166 11 C py 43 -0.460166 12 C py - 36 0.457095 11 C s 41 -0.457095 12 C s + 37 0.615896 11 C px 42 0.615896 12 C px + 50 -0.550171 15 C py 55 -0.550171 16 C py + 48 -0.532024 15 C s 53 0.532024 16 C s + 38 -0.460168 11 C py 43 -0.460168 12 C py + 36 0.457097 11 C s 41 -0.457097 12 C s - Vector 59 Occ=0.000000D+00 E= 5.713391D-01 Symmetry=ag - MO Center= -2.0D-15, -1.5D-14, 2.1D-17, r^2= 5.5D+00 + Vector 59 Occ=0.000000D+00 E= 5.713392D-01 Symmetry=ag + MO Center= 1.2D-16, -3.2D-16, 2.2D-16, r^2= 5.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.690790 1 C px 8 -0.690790 2 C px - 14 -0.535771 3 C py 19 0.535771 4 C py + 14 -0.535772 3 C py 19 0.535772 4 C py 23 -0.434504 5 C px 28 0.434504 6 C px 37 0.436310 11 C px 42 -0.436310 12 C px 24 -0.410491 5 C py 29 0.410491 6 C py - Vector 60 Occ=0.000000D+00 E= 5.848855D-01 Symmetry=bu - MO Center= -2.0D-15, 3.5D-15, 5.4D-23, r^2= 3.7D+00 + Vector 60 Occ=0.000000D+00 E= 5.848853D-01 Symmetry=bu + MO Center= -9.7D-16, 3.4D-16, -1.5D-20, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.644413 1 C py 9 0.644413 2 C py 13 -0.568080 3 C px 18 -0.568080 4 C px 23 0.497669 5 C px 28 0.497669 6 C px - 24 -0.392913 5 C py 29 -0.392913 6 C py - 22 -0.387322 5 C s 27 0.387322 6 C s + 24 -0.392914 5 C py 29 -0.392914 6 C py + 22 -0.387323 5 C s 27 0.387323 6 C s Final MO vectors ---------------- @@ -1719,58 +1778,58 @@ 2 0.03127 0.03108 0.00758 -0.00410 -0.00467 -0.00669 3 -0.00005 0.00000 -0.00323 0.00483 -0.00404 -0.00211 4 -0.00102 -0.00075 -0.00239 0.00083 0.00261 0.00349 - 5 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 5 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 6 -0.70027 0.70029 0.00991 0.00623 -0.00578 0.00961 7 -0.03127 0.03108 -0.00758 -0.00410 0.00467 -0.00669 8 -0.00005 -0.00000 -0.00323 -0.00483 -0.00404 0.00211 9 -0.00102 0.00075 -0.00239 -0.00083 0.00261 -0.00349 - 10 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 10 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 11 -0.00703 -0.00745 -0.15505 -0.17942 0.68291 0.67498 12 -0.00713 -0.00653 -0.01347 -0.01415 0.02876 0.02805 13 0.00353 0.00335 0.00108 0.00101 -0.00090 -0.00053 14 -0.00271 -0.00293 0.00435 0.00432 0.00048 0.00073 - 15 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 15 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 16 0.00703 -0.00745 0.15505 -0.17942 -0.68291 0.67498 17 0.00713 -0.00653 0.01347 -0.01415 -0.02876 0.02805 18 0.00353 -0.00335 0.00108 -0.00101 -0.00090 0.00053 19 -0.00271 0.00293 0.00435 -0.00432 0.00048 -0.00073 - 20 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 21 0.00735 -0.00773 0.68281 0.67684 0.15605 0.17943 + 20 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 21 0.00735 -0.00773 0.68281 0.67684 0.15604 0.17943 22 0.00710 -0.00649 0.03179 0.03148 0.00032 0.00167 23 -0.00420 0.00408 -0.00073 -0.00042 -0.00078 -0.00075 24 -0.00141 0.00169 0.00177 0.00172 -0.00410 -0.00407 - 25 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 26 -0.00735 -0.00773 -0.68281 0.67684 -0.15605 0.17943 + 25 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 26 -0.00735 -0.00773 -0.68281 0.67684 -0.15604 0.17943 27 -0.00710 -0.00649 -0.03179 0.03148 -0.00032 0.00167 28 -0.00420 -0.00408 -0.00073 0.00042 -0.00078 0.00075 29 -0.00141 -0.00169 0.00177 -0.00172 -0.00410 0.00407 - 30 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 30 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 31 0.00022 0.00011 0.00156 0.00166 -0.00604 -0.00610 32 -0.00022 0.00011 -0.00156 0.00166 0.00604 -0.00610 33 -0.00022 0.00011 -0.00616 -0.00617 -0.00122 -0.00158 34 0.00022 0.00011 0.00616 -0.00617 0.00122 -0.00158 - 35 0.00884 -0.00895 -0.00172 -0.00403 0.01371 -0.05656 + 35 0.00884 -0.00895 -0.00172 -0.00404 0.01370 -0.05658 36 0.00588 -0.00594 0.00016 -0.00011 0.00046 -0.00239 37 0.00088 -0.00089 0.00007 0.00012 0.00001 -0.00010 38 0.00398 -0.00403 0.00005 -0.00005 -0.00004 0.00003 - 39 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 40 -0.00884 -0.00895 0.00172 -0.00403 -0.01371 -0.05656 + 39 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 40 -0.00884 -0.00895 0.00172 -0.00404 -0.01370 -0.05658 41 -0.00588 -0.00594 -0.00016 -0.00011 -0.00046 -0.00239 42 0.00088 0.00089 0.00007 -0.00012 0.00001 0.00010 43 0.00398 0.00403 0.00005 0.00005 -0.00004 -0.00003 - 44 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 44 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 45 -0.00015 0.00016 -0.00003 -0.00001 -0.00008 0.00043 46 0.00015 0.00016 0.00003 -0.00001 0.00008 0.00043 47 -0.00004 0.00004 -0.00272 -0.00204 -0.00045 0.00041 48 -0.00027 0.00027 -0.00019 -0.00013 -0.00012 0.00054 49 -0.00008 0.00008 -0.00005 -0.00005 0.00004 -0.00026 50 -0.00019 0.00019 -0.00007 -0.00004 -0.00004 0.00019 - 51 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 51 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 52 0.00004 0.00004 0.00272 -0.00204 0.00045 0.00041 53 0.00027 0.00027 0.00019 -0.00013 0.00012 0.00054 54 -0.00008 -0.00008 -0.00005 0.00005 0.00004 0.00026 55 -0.00019 -0.00019 -0.00007 0.00004 -0.00004 -0.00019 - 56 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 56 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 57 0.00014 -0.00013 0.00019 0.00019 0.00003 0.00000 58 -0.00014 -0.00013 -0.00019 0.00019 -0.00003 0.00000 59 0.00002 -0.00002 0.00000 0.00000 0.00000 -0.00003 @@ -1782,58 +1841,58 @@ 2 0.00518 -0.00564 0.00025 -0.00027 0.29061 0.30213 3 0.00072 -0.00078 0.00007 -0.00007 -0.00782 0.00093 4 0.00401 -0.00375 0.00024 -0.00023 -0.04781 0.02549 - 5 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 5 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 6 0.01000 0.01082 0.00086 0.00090 -0.11236 0.11230 7 -0.00518 -0.00564 -0.00025 -0.00027 0.29061 -0.30213 8 0.00072 0.00078 0.00007 0.00007 0.00782 0.00093 9 0.00401 0.00375 0.00024 0.00023 0.04781 0.02549 - 10 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 11 -0.01360 0.05346 -0.00134 0.00371 -0.09563 -0.04081 + 10 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 11 -0.01360 0.05348 -0.00134 0.00371 -0.09563 -0.04081 12 -0.00069 0.00221 -0.00007 0.00006 0.23920 0.10575 - 13 0.00000 0.00007 -0.00000 0.00002 -0.06120 -0.03319 + 13 0.00000 0.00007 -0.00000 0.00002 -0.06119 -0.03319 14 -0.00003 0.00016 0.00009 -0.00001 -0.01194 0.06227 - 15 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 16 0.01360 0.05346 0.00134 0.00371 -0.09563 0.04081 + 15 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 16 0.01360 0.05348 0.00134 0.00371 -0.09563 0.04081 17 0.00069 0.00221 0.00007 0.00006 0.23920 -0.10575 - 18 0.00000 -0.00007 -0.00000 -0.00002 0.06120 -0.03319 + 18 0.00000 -0.00007 -0.00000 -0.00002 0.06119 -0.03319 19 -0.00003 -0.00016 0.00009 0.00001 0.01194 0.06227 - 20 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 21 -0.00171 0.01813 0.00264 0.00346 -0.09616 0.04670 + 20 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 21 -0.00171 0.01814 0.00264 0.00346 -0.09616 0.04670 22 0.00022 0.00040 0.00009 0.00006 0.24119 -0.12183 23 0.00003 0.00002 0.00001 0.00000 -0.05422 0.05174 24 0.00003 -0.00044 0.00011 0.00006 0.03047 0.04807 - 25 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 26 0.00171 0.01813 -0.00264 0.00346 -0.09616 -0.04670 + 25 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 26 0.00171 0.01814 -0.00264 0.00346 -0.09616 -0.04670 27 -0.00022 0.00040 -0.00009 0.00006 0.24119 0.12183 28 0.00003 -0.00002 0.00001 -0.00000 0.05422 0.05174 29 0.00003 0.00044 0.00011 -0.00006 -0.03047 0.04807 - 30 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 30 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 31 0.00013 -0.00051 0.00002 -0.00005 0.03738 0.02352 32 -0.00013 -0.00051 -0.00002 -0.00005 0.03738 -0.02352 - 33 -0.00013 -0.00033 0.00007 0.00007 0.03860 -0.02855 - 34 0.00013 -0.00033 -0.00007 0.00007 0.03860 0.02855 + 33 -0.00014 -0.00033 0.00007 0.00007 0.03860 -0.02855 + 34 0.00014 -0.00033 -0.00007 0.00007 0.03860 0.02855 35 0.69769 0.69551 0.06081 0.06091 -0.04655 0.10813 36 0.03128 0.03118 -0.00469 -0.00468 0.11806 -0.27892 37 0.00116 0.00115 -0.00306 -0.00306 0.01486 -0.04006 38 -0.00124 -0.00125 0.00335 0.00334 0.02893 -0.01300 - 39 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 39 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 40 -0.69769 0.69551 -0.06081 0.06091 -0.04655 -0.10813 41 -0.03128 0.03118 0.00469 -0.00468 0.11806 0.27892 42 0.00116 -0.00115 -0.00306 0.00306 -0.01486 -0.04006 43 -0.00124 0.00125 0.00335 -0.00334 -0.02893 -0.01300 - 44 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 44 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 45 -0.00632 -0.00631 -0.00042 -0.00043 0.02036 -0.05423 46 0.00632 -0.00631 0.00042 -0.00043 0.02036 0.05423 - 47 -0.05994 -0.06020 0.69794 0.69792 -0.02279 0.07625 + 47 -0.05994 -0.06021 0.69794 0.69792 -0.02279 0.07625 48 -0.00992 -0.00992 0.03028 0.03028 0.05880 -0.20089 49 0.00311 0.00310 -0.00076 -0.00076 -0.01203 0.03716 50 -0.00355 -0.00354 0.00084 0.00084 0.02047 -0.05355 - 51 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 52 0.05994 -0.06020 -0.69794 0.69792 -0.02279 -0.07625 + 51 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.05994 -0.06021 -0.69794 0.69792 -0.02279 -0.07625 53 0.00992 -0.00992 -0.03028 0.03028 0.05880 0.20089 54 0.00311 -0.00310 -0.00076 0.00076 0.01203 0.03716 55 -0.00355 0.00354 0.00084 -0.00084 -0.02047 -0.05355 - 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 56 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 57 0.00067 0.00067 -0.00632 -0.00632 0.01119 -0.04003 58 -0.00067 0.00067 0.00632 -0.00632 0.01119 0.04003 59 0.00068 0.00068 -0.00630 -0.00630 0.00801 -0.03386 @@ -1845,32 +1904,32 @@ 2 0.01734 0.04829 0.26688 -0.22405 -0.16017 0.02484 3 0.00948 0.13516 -0.02702 -0.13282 0.20399 -0.06319 4 0.10047 -0.02838 -0.06693 -0.07933 -0.07416 -0.16101 - 5 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 5 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 6 -0.00527 0.01741 0.09541 0.07503 0.05280 0.00878 7 0.01734 -0.04829 -0.26688 -0.22405 -0.16017 -0.02484 8 -0.00948 0.13516 -0.02702 0.13282 -0.20399 -0.06319 9 -0.10047 -0.02838 -0.06693 0.07933 0.07416 -0.16101 - 10 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 10 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 11 0.04392 -0.13456 -0.03234 0.00059 -0.11307 -0.05004 12 -0.11476 0.36392 0.08827 -0.00291 0.33434 0.15360 13 0.02018 -0.01164 -0.04027 0.02991 0.05770 -0.01295 14 0.03445 -0.05118 0.08767 -0.17096 0.03671 -0.00052 - 15 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 15 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 16 0.04392 0.13456 0.03234 0.00059 -0.11307 0.05004 17 -0.11476 -0.36392 -0.08827 -0.00291 0.33434 -0.15360 18 -0.02018 -0.01164 -0.04027 -0.02991 -0.05770 -0.01295 19 -0.03445 -0.05118 0.08767 0.17096 -0.03671 -0.00052 - 20 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 21 0.03885 -0.11828 0.07489 -0.08665 0.05701 0.02988 - 22 -0.10118 0.32045 -0.20525 0.24908 -0.16985 -0.09149 + 22 -0.10118 0.32045 -0.20525 0.24908 -0.16985 -0.09148 23 0.00586 0.02601 0.05754 0.05761 0.08949 0.04360 24 -0.04691 0.06912 0.03893 0.03189 0.17844 0.07850 - 25 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 26 0.03885 0.11828 -0.07489 -0.08665 0.05701 -0.02988 - 27 -0.10118 -0.32045 0.20525 0.24908 -0.16985 0.09149 + 27 -0.10118 -0.32045 0.20525 0.24908 -0.16985 0.09148 28 -0.00586 0.02601 0.05754 -0.05761 -0.08949 0.04360 29 0.04691 0.06912 0.03893 -0.03189 -0.17844 0.07850 - 30 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 30 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 31 -0.01911 0.08699 0.02090 -0.01581 0.14424 0.04207 32 -0.01911 -0.08699 -0.02090 -0.01581 0.14424 -0.04207 33 -0.01299 0.07881 -0.04695 0.09666 -0.07714 -0.04755 @@ -1879,24 +1938,24 @@ 36 0.31236 0.00514 0.16223 -0.14818 -0.01747 0.30925 37 0.05597 0.02457 0.04600 0.07525 -0.04283 -0.10950 38 -0.05817 -0.02337 -0.12427 -0.13724 -0.08097 0.06228 - 39 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 39 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 40 -0.11949 0.00229 0.06156 0.04912 0.00526 0.10004 41 0.31236 -0.00514 -0.16223 -0.14818 -0.01747 -0.30925 42 -0.05597 0.02457 0.04600 -0.07525 0.04283 -0.10950 43 0.05817 -0.02337 -0.12427 0.13724 0.08097 0.06228 - 44 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 44 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 45 0.06568 -0.00705 0.03802 -0.06568 0.02806 0.15284 46 0.06568 0.00705 -0.03802 -0.06568 0.02806 -0.15284 47 -0.12014 -0.01850 -0.11386 -0.08132 -0.04025 0.08497 48 0.32250 0.04960 0.31356 0.23895 0.12255 -0.26836 49 -0.05334 -0.00089 -0.04239 0.02495 -0.01713 -0.11702 50 0.06386 0.00901 0.03327 -0.02656 -0.04155 0.08840 - 51 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 51 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 52 -0.12014 0.01850 0.11386 -0.08132 -0.04025 -0.08497 53 0.32250 -0.04960 -0.31356 0.23895 0.12255 0.26836 54 0.05334 -0.00089 -0.04239 -0.02495 0.01713 -0.11702 55 -0.06386 0.00901 0.03327 0.02656 0.04155 0.08840 - 56 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 56 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 57 0.06692 0.01495 0.06906 0.08613 0.02223 -0.14725 58 0.06692 -0.01495 -0.06906 0.08613 0.02223 0.14725 59 0.06354 0.00999 0.07439 0.07958 0.05739 -0.11450 @@ -1908,58 +1967,58 @@ 2 -0.15079 0.10373 -0.05653 -0.17516 0.17324 -0.06013 3 -0.00915 0.05371 0.17323 -0.18183 -0.14515 -0.01084 4 0.16233 0.12631 -0.14838 -0.07141 -0.15422 -0.00207 - 5 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 5 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 6 0.04941 -0.03074 -0.01605 -0.05016 0.04943 0.01762 7 -0.15079 0.10373 0.05653 0.17516 -0.17324 -0.06013 8 0.00915 -0.05371 0.17323 -0.18183 -0.14515 0.01084 9 -0.16233 -0.12631 -0.14838 -0.07141 -0.15422 0.00207 - 10 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 10 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 11 -0.01586 -0.01651 -0.01592 -0.04851 0.02675 -0.02456 - 12 0.05459 0.06225 0.05440 0.16655 -0.09606 0.08309 + 12 0.05459 0.06225 0.05440 0.16655 -0.09606 0.08308 13 0.19009 0.13276 -0.02291 0.18307 -0.11531 -0.00726 14 -0.08542 0.13516 0.21513 -0.09029 -0.07937 -0.07063 - 15 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 15 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 16 -0.01586 -0.01651 0.01592 0.04851 -0.02675 -0.02456 - 17 0.05459 0.06225 -0.05440 -0.16655 0.09606 0.08309 + 17 0.05459 0.06225 -0.05440 -0.16655 0.09606 0.08308 18 -0.19009 -0.13276 -0.02291 0.18307 -0.11531 0.00726 19 0.08542 -0.13516 0.21513 -0.09029 -0.07937 0.07063 - 20 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 21 -0.05288 0.01534 0.03687 0.04863 -0.01828 0.02054 - 22 0.17073 -0.04215 -0.12036 -0.16822 0.06860 -0.07627 + 22 0.17073 -0.04215 -0.12037 -0.16822 0.06860 -0.07627 23 0.20340 0.09105 -0.10515 0.01483 0.28393 -0.03491 24 -0.02973 -0.13194 -0.14106 0.17996 -0.05903 0.12895 25 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 26 -0.05288 0.01534 -0.03687 -0.04863 0.01828 0.02054 - 27 0.17073 -0.04215 0.12036 0.16822 -0.06860 -0.07627 + 27 0.17073 -0.04215 0.12037 0.16822 -0.06860 -0.07627 28 -0.20340 -0.09105 -0.10515 0.01483 0.28393 0.03491 29 0.02973 0.13194 -0.14106 0.17996 -0.05903 -0.12895 - 30 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 30 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 31 0.10239 0.12236 0.06143 0.17430 -0.14024 0.00806 32 0.10239 0.12236 -0.06143 -0.17430 0.14024 0.00806 - 33 0.15481 0.08835 -0.03786 -0.13734 0.23405 -0.10320 - 34 0.15481 0.08835 0.03786 0.13734 -0.23405 -0.10320 + 33 0.15481 0.08835 -0.03786 -0.13733 0.23405 -0.10320 + 34 0.15481 0.08835 0.03786 0.13733 -0.23405 -0.10320 35 -0.06006 0.04912 -0.01220 0.01247 -0.00535 -0.02207 - 36 0.18553 -0.15807 0.03574 -0.03359 0.01882 0.06214 + 36 0.18552 -0.15807 0.03574 -0.03359 0.01882 0.06214 37 -0.06093 0.10901 0.21189 -0.00347 -0.00099 0.26566 38 0.01733 0.18171 0.09557 0.20868 0.10718 -0.05973 - 39 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 39 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 40 -0.06006 0.04912 0.01220 -0.01247 0.00535 -0.02207 - 41 0.18553 -0.15807 -0.03574 0.03359 -0.01882 0.06214 + 41 0.18552 -0.15807 -0.03574 0.03359 -0.01882 0.06214 42 0.06093 -0.10901 0.21189 -0.00347 -0.00099 -0.26566 43 -0.01733 -0.18171 0.09557 0.20868 0.10718 0.05973 - 44 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 44 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 45 0.09990 -0.14589 -0.13652 -0.05392 0.00272 -0.15043 46 0.09990 -0.14589 0.13652 0.05392 -0.00272 -0.15043 47 0.05498 -0.02459 0.01442 -0.01490 0.00497 0.00284 48 -0.17745 0.09124 -0.05335 0.06396 -0.01168 -0.02489 49 -0.07380 0.22821 0.08196 0.20292 0.17561 0.00194 50 0.07802 -0.01439 0.19916 -0.06608 0.08506 0.35075 - 51 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 51 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 52 0.05498 -0.02459 -0.01442 0.01490 -0.00497 0.00284 53 -0.17745 0.09124 0.05335 -0.06396 0.01168 -0.02489 54 0.07380 -0.22821 0.08196 0.20292 0.17561 -0.00194 55 -0.07802 0.01439 0.19916 -0.06608 0.08506 -0.35075 - 56 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 56 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 57 -0.08778 0.17794 0.05131 0.14401 0.14368 0.02154 58 -0.08778 0.17794 -0.05131 -0.14401 -0.14368 0.02154 59 -0.08796 0.00375 -0.15133 0.02776 -0.09551 -0.24618 @@ -1970,61 +2029,61 @@ 1 0.00365 -0.00542 0.02328 -0.00000 -0.01407 -0.00516 2 -0.01307 0.02017 -0.08530 0.00000 0.05893 0.02700 3 -0.10159 -0.13438 0.09473 0.00000 0.08370 -0.18108 - 4 0.10401 0.16393 0.03656 -0.00000 0.21869 0.24799 - 5 0.00000 0.00000 -0.00000 0.36205 0.00000 0.00000 + 4 0.10401 0.16393 0.03656 0.00000 0.21870 0.24799 + 5 -0.00000 -0.00000 0.00000 0.36205 0.00000 -0.00000 6 -0.00365 0.00542 0.02328 -0.00000 0.01407 -0.00516 7 0.01307 -0.02017 -0.08530 0.00000 -0.05893 0.02700 8 -0.10159 -0.13438 -0.09473 -0.00000 0.08370 0.18108 - 9 0.10401 0.16393 -0.03656 0.00000 0.21869 -0.24799 - 10 -0.00000 -0.00000 0.00000 0.36205 0.00000 -0.00000 - 11 0.02130 0.01217 0.00874 0.00000 0.00378 -0.00039 - 12 -0.06569 -0.04602 -0.04036 -0.00000 -0.01046 0.00381 - 13 0.33509 0.04131 -0.14242 -0.00000 0.05454 0.17154 + 9 0.10401 0.16393 -0.03656 -0.00000 0.21870 -0.24799 + 10 -0.00000 -0.00000 0.00000 0.36205 -0.00000 0.00000 + 11 0.02130 0.01217 0.00874 -0.00000 0.00378 -0.00039 + 12 -0.06569 -0.04602 -0.04036 0.00000 -0.01046 0.00381 + 13 0.33509 0.04131 -0.14242 0.00000 0.05454 0.17154 14 0.11820 -0.22030 -0.17002 0.00000 0.04671 -0.24538 - 15 -0.00000 -0.00000 -0.00000 0.28543 -0.00000 0.00000 - 16 -0.02130 -0.01217 0.00874 0.00000 -0.00378 -0.00039 - 17 0.06569 0.04602 -0.04036 -0.00000 0.01046 0.00381 - 18 0.33509 0.04131 0.14242 0.00000 0.05454 -0.17154 + 15 -0.00000 -0.00000 0.00000 0.28543 -0.00000 -0.00000 + 16 -0.02130 -0.01217 0.00874 -0.00000 -0.00378 -0.00039 + 17 0.06569 0.04602 -0.04036 0.00000 0.01046 0.00381 + 18 0.33509 0.04131 0.14242 -0.00000 0.05454 -0.17154 19 0.11820 -0.22030 0.17002 -0.00000 0.04671 0.24538 - 20 0.00000 0.00000 -0.00000 0.28543 -0.00000 -0.00000 + 20 -0.00000 -0.00000 0.00000 0.28543 -0.00000 0.00000 21 0.01638 -0.00903 -0.00919 0.00000 -0.01018 -0.00368 22 -0.05156 0.02619 0.03088 -0.00000 0.03583 0.00411 23 0.19522 0.02656 0.06872 0.00000 -0.12660 -0.14232 24 -0.19376 0.21047 0.16890 -0.00000 -0.00925 0.21804 - 25 0.00000 0.00000 -0.00000 0.28748 -0.00000 0.00000 + 25 -0.00000 -0.00000 0.00000 0.28748 0.00000 0.00000 26 -0.01638 0.00903 -0.00919 0.00000 0.01018 -0.00368 27 0.05156 -0.02619 0.03088 -0.00000 -0.03583 0.00411 28 0.19522 0.02656 -0.06872 -0.00000 -0.12660 0.14232 29 -0.19376 0.21047 -0.16890 0.00000 -0.00925 -0.21804 - 30 -0.00000 -0.00000 0.00000 0.28748 -0.00000 0.00000 - 31 0.24825 -0.04301 -0.17017 -0.00000 0.03941 0.07447 - 32 -0.24825 0.04301 -0.17017 -0.00000 -0.03941 0.07447 + 30 -0.00000 -0.00000 0.00000 0.28748 0.00000 -0.00000 + 31 0.24825 -0.04301 -0.17017 0.00000 0.03941 0.07447 + 32 -0.24825 0.04301 -0.17017 0.00000 -0.03941 0.07447 33 0.19086 -0.07288 -0.00437 0.00000 -0.04045 -0.25964 34 -0.19086 0.07288 -0.00437 0.00000 0.04045 -0.25964 35 -0.00369 -0.00083 -0.02363 0.00000 -0.00528 -0.01392 36 0.00855 -0.01326 0.09675 -0.00000 0.02546 0.05940 - 37 0.01719 0.21547 -0.19264 -0.00000 -0.23613 0.04020 - 38 -0.08854 -0.16872 0.11896 -0.00000 -0.13816 0.21071 - 39 0.00000 0.00000 -0.00000 0.16360 -0.00000 -0.00000 + 37 0.01719 0.21547 -0.19264 0.00000 -0.23613 0.04020 + 38 -0.08854 -0.16872 0.11896 0.00000 -0.13816 0.21071 + 39 0.00000 -0.00000 0.00000 0.16360 -0.00000 0.00000 40 0.00369 0.00083 -0.02363 0.00000 0.00528 -0.01392 41 -0.00855 0.01326 0.09675 -0.00000 -0.02546 0.05940 - 42 0.01719 0.21547 0.19264 0.00000 -0.23613 -0.04020 - 43 -0.08854 -0.16872 -0.11896 0.00000 -0.13816 -0.21071 - 44 0.00000 -0.00000 0.00000 0.16360 -0.00000 0.00000 - 45 -0.00604 -0.13920 0.17274 0.00000 0.26044 -0.05348 - 46 0.00604 0.13920 0.17274 0.00000 -0.26044 -0.05348 + 42 0.01719 0.21547 0.19264 -0.00000 -0.23613 -0.04020 + 43 -0.08854 -0.16872 -0.11896 -0.00000 -0.13816 -0.21071 + 44 -0.00000 -0.00000 0.00000 0.16360 0.00000 -0.00000 + 45 -0.00604 -0.13920 0.17274 -0.00000 0.26044 -0.05348 + 46 0.00604 0.13920 0.17274 -0.00000 -0.26044 -0.05348 47 0.00357 -0.01288 0.00970 -0.00000 0.00670 0.00468 48 -0.01812 0.02994 -0.02399 0.00000 -0.02457 -0.00970 49 -0.08868 -0.09005 0.29465 -0.00000 0.23457 0.01392 50 0.04248 0.28399 0.04103 -0.00000 0.14752 -0.15209 - 51 -0.00000 -0.00000 0.00000 0.09264 0.00000 -0.00000 + 51 0.00000 -0.00000 0.00000 0.09264 0.00000 0.00000 52 -0.00357 0.01288 0.00970 -0.00000 -0.00670 0.00468 53 0.01812 -0.02994 -0.02399 0.00000 0.02457 -0.00970 54 -0.08868 -0.09005 -0.29465 0.00000 0.23457 -0.01392 55 0.04248 0.28399 -0.04103 0.00000 0.14752 0.15209 - 56 -0.00000 0.00000 -0.00000 0.09264 0.00000 0.00000 - 57 -0.05386 -0.03163 0.23766 0.00000 0.23537 -0.05164 - 58 0.05386 0.03163 0.23766 0.00000 -0.23537 -0.05164 + 56 -0.00000 -0.00000 0.00000 0.09264 -0.00000 -0.00000 + 57 -0.05386 -0.03163 0.23766 -0.00000 0.23537 -0.05164 + 58 0.05386 0.03163 0.23766 -0.00000 -0.23537 -0.05164 59 -0.01882 -0.17827 -0.11462 0.00000 -0.20488 0.12789 60 0.01882 0.17827 -0.11462 0.00000 0.20488 0.12789 @@ -2032,312 +2091,312 @@ ----------- ----------- ----------- ----------- ----------- ----------- 1 -0.01131 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 2 0.05090 0.00000 0.00000 0.00000 0.00000 0.00000 - 3 0.25746 0.00000 0.00000 0.00000 0.00000 0.00000 - 4 0.13519 0.00000 0.00000 -0.00000 0.00000 0.00000 - 5 -0.00000 0.38376 -0.02863 0.00545 0.37782 0.45460 + 3 0.25746 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 4 0.13519 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 5 0.00000 0.38376 -0.02863 0.00545 0.37782 0.45460 6 -0.01131 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 7 0.05090 0.00000 0.00000 0.00000 0.00000 0.00000 - 8 -0.25746 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 9 -0.13519 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 10 0.00000 -0.38376 -0.02863 -0.00545 -0.37782 0.45460 - 11 -0.00573 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 12 0.01313 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 13 -0.20238 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 14 -0.08769 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 15 -0.00000 0.13424 -0.16901 0.46083 0.19405 -0.25705 - 16 -0.00573 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 17 0.01313 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 18 0.20238 0.00000 0.00000 0.00000 0.00000 -0.00000 - 19 0.08769 -0.00000 0.00000 0.00000 0.00000 0.00000 - 20 0.00000 -0.13424 -0.16901 -0.46083 -0.19405 -0.25705 - 21 0.00221 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 22 -0.00445 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 23 0.25193 0.00000 0.00000 0.00000 0.00000 0.00000 - 24 0.10901 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 25 0.00000 -0.14019 -0.16786 0.46041 -0.20111 -0.29893 - 26 0.00221 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 27 -0.00445 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 28 -0.25193 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 29 -0.10901 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 30 -0.00000 0.14019 -0.16786 -0.46041 0.20111 -0.29893 - 31 -0.23450 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 32 -0.23450 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 33 0.11058 0.00000 0.00000 0.00000 0.00000 -0.00000 - 34 0.11058 0.00000 0.00000 0.00000 0.00000 -0.00000 - 35 -0.00764 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 36 0.02488 0.00000 0.00000 0.00000 0.00000 -0.00000 - 37 0.16612 0.00000 0.00000 0.00000 -0.00000 0.00000 - 38 0.13719 0.00000 0.00000 -0.00000 0.00000 0.00000 - 39 0.00000 -0.34292 0.38991 -0.00493 0.22827 0.24804 - 40 -0.00764 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 41 0.02488 0.00000 0.00000 0.00000 0.00000 -0.00000 - 42 -0.16612 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 43 -0.13719 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 44 -0.00000 0.34292 0.38991 0.00493 -0.22827 0.24804 - 45 -0.20074 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 46 -0.20074 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 47 -0.00481 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 48 0.01940 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 49 -0.13819 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 50 -0.07790 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 51 0.00000 -0.26543 0.44752 0.00480 0.42942 -0.41410 - 52 -0.00481 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 53 0.01940 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 54 0.13819 0.00000 0.00000 0.00000 0.00000 0.00000 - 55 0.07790 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 56 -0.00000 0.26543 0.44752 -0.00480 -0.42942 -0.41410 - 57 -0.14119 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 58 -0.14119 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 59 0.12135 0.00000 0.00000 0.00000 0.00000 0.00000 - 60 0.12135 0.00000 0.00000 0.00000 0.00000 0.00000 + 8 -0.25746 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 9 -0.13519 -0.00000 0.00000 0.00000 0.00000 0.00000 + 10 -0.00000 -0.38376 -0.02863 -0.00545 -0.37782 0.45460 + 11 -0.00573 0.00000 -0.00000 0.00000 0.00000 0.00000 + 12 0.01313 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 13 -0.20238 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 14 -0.08769 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 15 0.00000 0.13424 -0.16901 0.46083 0.19405 -0.25705 + 16 -0.00573 0.00000 -0.00000 0.00000 0.00000 0.00000 + 17 0.01313 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 18 0.20238 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 19 0.08769 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 20 -0.00000 -0.13424 -0.16901 -0.46083 -0.19405 -0.25705 + 21 0.00221 -0.00000 0.00000 0.00000 0.00000 0.00000 + 22 -0.00445 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 23 0.25193 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 24 0.10901 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 25 -0.00000 -0.14019 -0.16786 0.46041 -0.20111 -0.29893 + 26 0.00221 0.00000 0.00000 0.00000 0.00000 0.00000 + 27 -0.00445 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 28 -0.25193 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 29 -0.10901 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 30 0.00000 0.14019 -0.16786 -0.46041 0.20111 -0.29893 + 31 -0.23450 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 32 -0.23450 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 33 0.11057 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 34 0.11057 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 35 -0.00764 -0.00000 0.00000 0.00000 0.00000 0.00000 + 36 0.02488 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 37 0.16612 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 38 0.13719 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 39 -0.00000 -0.34292 0.38991 -0.00493 0.22827 0.24804 + 40 -0.00764 -0.00000 0.00000 0.00000 0.00000 0.00000 + 41 0.02488 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 42 -0.16612 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 43 -0.13719 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 44 0.00000 0.34292 0.38991 0.00493 -0.22827 0.24804 + 45 -0.20074 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 46 -0.20074 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 47 -0.00481 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 48 0.01940 -0.00000 0.00000 0.00000 0.00000 0.00000 + 49 -0.13819 0.00000 0.00000 0.00000 -0.00000 0.00000 + 50 -0.07790 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 51 -0.00000 -0.26543 0.44752 0.00480 0.42942 -0.41410 + 52 -0.00481 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 53 0.01940 -0.00000 0.00000 0.00000 0.00000 0.00000 + 54 0.13819 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 55 0.07790 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 56 0.00000 0.26543 0.44752 -0.00480 -0.42942 -0.41410 + 57 -0.14119 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 58 -0.14119 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 59 0.12135 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 60 0.12135 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 37 38 39 40 41 42 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 0.00000 -0.00000 -0.00000 -0.08213 -0.04998 - 2 0.00000 0.00000 0.00000 0.00000 0.48810 0.29399 - 3 0.00000 0.00000 -0.00000 0.00000 0.09388 0.30043 - 4 -0.00000 0.00000 0.00000 -0.00000 0.29342 0.22118 - 5 -0.02927 -0.01675 -0.46807 0.52687 -0.00000 0.00000 - 6 -0.00000 0.00000 -0.00000 -0.00000 -0.08213 0.04998 - 7 0.00000 -0.00000 0.00000 0.00000 0.48810 -0.29399 - 8 0.00000 -0.00000 0.00000 0.00000 -0.09388 0.30043 - 9 -0.00000 0.00000 -0.00000 0.00000 -0.29342 0.22118 - 10 -0.02927 0.01675 -0.46807 -0.52687 0.00000 0.00000 - 11 0.00000 -0.00000 0.00000 -0.00000 -0.01935 0.01715 - 12 -0.00000 -0.00000 -0.00000 0.00000 0.11907 -0.09840 - 13 -0.00000 0.00000 -0.00000 0.00000 0.29526 0.34006 - 14 0.00000 0.00000 -0.00000 -0.00000 0.01715 0.04222 - 15 0.58359 0.24537 0.15967 -0.47296 0.00000 0.00000 - 16 0.00000 -0.00000 0.00000 0.00000 -0.01935 -0.01715 - 17 -0.00000 0.00000 -0.00000 -0.00000 0.11907 0.09840 - 18 0.00000 -0.00000 0.00000 -0.00000 -0.29526 0.34006 - 19 0.00000 0.00000 0.00000 0.00000 -0.01715 0.04222 - 20 0.58359 -0.24537 0.15967 0.47296 -0.00000 -0.00000 + 1 0.00000 0.00000 -0.00000 0.00000 -0.08213 -0.04998 + 2 -0.00000 -0.00000 0.00000 -0.00000 0.48809 0.29399 + 3 -0.00000 -0.00000 0.00000 0.00000 0.09389 0.30043 + 4 -0.00000 0.00000 -0.00000 -0.00000 0.29342 0.22118 + 5 -0.02927 -0.01675 -0.46807 0.52687 0.00000 -0.00000 + 6 0.00000 0.00000 -0.00000 0.00000 -0.08213 0.04998 + 7 -0.00000 -0.00000 0.00000 -0.00000 0.48809 -0.29399 + 8 0.00000 0.00000 -0.00000 -0.00000 -0.09389 0.30043 + 9 0.00000 -0.00000 0.00000 0.00000 -0.29342 0.22118 + 10 -0.02927 0.01675 -0.46807 -0.52687 -0.00000 0.00000 + 11 -0.00000 -0.00000 -0.00000 0.00000 -0.01935 0.01715 + 12 0.00000 0.00000 -0.00000 -0.00000 0.11908 -0.09841 + 13 0.00000 -0.00000 0.00000 -0.00000 0.29526 0.34006 + 14 -0.00000 0.00000 -0.00000 -0.00000 0.01715 0.04222 + 15 0.58359 0.24537 0.15967 -0.47296 -0.00000 -0.00000 + 16 -0.00000 -0.00000 -0.00000 0.00000 -0.01935 -0.01715 + 17 0.00000 0.00000 -0.00000 -0.00000 0.11908 0.09841 + 18 -0.00000 0.00000 -0.00000 0.00000 -0.29526 0.34006 + 19 0.00000 -0.00000 0.00000 0.00000 -0.01715 0.04222 + 20 0.58359 -0.24537 0.15967 0.47296 0.00000 0.00000 21 0.00000 -0.00000 0.00000 0.00000 -0.03834 -0.02097 22 -0.00000 0.00000 -0.00000 -0.00000 0.23200 0.12333 - 23 0.00000 -0.00000 0.00000 0.00000 0.20717 0.25631 - 24 -0.00000 -0.00000 0.00000 -0.00000 -0.08486 0.07153 - 25 -0.55247 -0.23539 0.19207 0.47377 -0.00000 -0.00000 - 26 -0.00000 0.00000 0.00000 0.00000 -0.03834 0.02097 - 27 0.00000 -0.00000 -0.00000 -0.00000 0.23200 -0.12333 - 28 -0.00000 0.00000 -0.00000 -0.00000 -0.20717 0.25631 + 23 -0.00000 0.00000 -0.00000 -0.00000 0.20717 0.25631 + 24 0.00000 0.00000 0.00000 0.00000 -0.08486 0.07153 + 25 -0.55247 -0.23539 0.19207 0.47377 0.00000 0.00000 + 26 0.00000 -0.00000 0.00000 0.00000 -0.03834 0.02097 + 27 -0.00000 0.00000 -0.00000 -0.00000 0.23200 -0.12333 + 28 0.00000 -0.00000 0.00000 0.00000 -0.20717 0.25631 29 -0.00000 -0.00000 -0.00000 -0.00000 0.08486 0.07153 - 30 -0.55247 0.23539 0.19207 -0.47377 0.00000 0.00000 - 31 -0.00000 -0.00000 0.00000 -0.00000 -0.37808 -0.29551 - 32 -0.00000 -0.00000 0.00000 -0.00000 -0.37808 0.29551 - 33 0.00000 0.00000 0.00000 -0.00000 -0.39058 -0.22313 - 34 0.00000 -0.00000 0.00000 -0.00000 -0.39058 0.22313 - 35 -0.00000 -0.00000 0.00000 -0.00000 0.06050 -0.02027 - 36 0.00000 0.00000 -0.00000 0.00000 -0.34760 0.11954 - 37 0.00000 -0.00000 0.00000 -0.00000 -0.24702 0.32867 - 38 0.00000 0.00000 -0.00000 0.00000 -0.37142 0.28378 - 39 0.00542 0.54055 0.55383 0.29205 -0.00000 0.00000 - 40 -0.00000 0.00000 0.00000 -0.00000 0.06050 0.02027 - 41 0.00000 -0.00000 -0.00000 0.00000 -0.34760 -0.11954 - 42 -0.00000 -0.00000 -0.00000 0.00000 0.24702 0.32867 - 43 0.00000 0.00000 0.00000 0.00000 0.37142 0.28378 - 44 0.00542 -0.54055 0.55383 -0.29205 0.00000 -0.00000 - 45 -0.00000 -0.00000 0.00000 -0.00000 -0.12260 0.35376 - 46 -0.00000 0.00000 0.00000 -0.00000 -0.12260 -0.35376 - 47 0.00000 -0.00000 -0.00000 0.00000 -0.03836 0.00978 - 48 -0.00000 0.00000 0.00000 -0.00000 0.22213 -0.05941 - 49 0.00000 -0.00000 0.00000 -0.00000 -0.15556 0.31437 - 50 -0.00000 -0.00000 -0.00000 -0.00000 -0.11857 0.13819 - 51 0.00767 -0.50055 -0.38637 -0.15571 0.00000 -0.00000 - 52 0.00000 0.00000 -0.00000 0.00000 -0.03836 -0.00978 - 53 -0.00000 -0.00000 0.00000 -0.00000 0.22213 0.05941 - 54 0.00000 0.00000 -0.00000 0.00000 0.15556 0.31437 - 55 0.00000 -0.00000 0.00000 -0.00000 0.11857 0.13819 - 56 0.00767 0.50055 -0.38637 0.15571 -0.00000 0.00000 - 57 -0.00000 -0.00000 -0.00000 0.00000 0.13245 -0.32296 - 58 -0.00000 0.00000 -0.00000 0.00000 0.13245 0.32296 - 59 0.00000 -0.00000 0.00000 -0.00000 -0.34743 0.30474 - 60 0.00000 0.00000 0.00000 -0.00000 -0.34743 -0.30474 + 30 -0.55247 0.23539 0.19207 -0.47377 -0.00000 -0.00000 + 31 0.00000 -0.00000 0.00000 0.00000 -0.37808 -0.29551 + 32 0.00000 -0.00000 0.00000 0.00000 -0.37808 0.29551 + 33 -0.00000 -0.00000 -0.00000 0.00000 -0.39058 -0.22314 + 34 -0.00000 -0.00000 -0.00000 0.00000 -0.39058 0.22314 + 35 0.00000 0.00000 0.00000 -0.00000 0.06050 -0.02027 + 36 -0.00000 -0.00000 -0.00000 0.00000 -0.34760 0.11954 + 37 -0.00000 -0.00000 0.00000 -0.00000 -0.24702 0.32867 + 38 -0.00000 0.00000 -0.00000 0.00000 -0.37142 0.28378 + 39 0.00542 0.54055 0.55383 0.29205 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 -0.00000 0.06050 0.02027 + 41 -0.00000 -0.00000 -0.00000 0.00000 -0.34760 -0.11954 + 42 0.00000 0.00000 -0.00000 0.00000 0.24702 0.32867 + 43 0.00000 -0.00000 0.00000 -0.00000 0.37142 0.28378 + 44 0.00542 -0.54055 0.55383 -0.29205 -0.00000 -0.00000 + 45 0.00000 -0.00000 0.00000 -0.00000 -0.12260 0.35376 + 46 0.00000 -0.00000 0.00000 -0.00000 -0.12260 -0.35376 + 47 -0.00000 0.00000 -0.00000 -0.00000 -0.03836 0.00978 + 48 0.00000 -0.00000 0.00000 0.00000 0.22213 -0.05941 + 49 0.00000 -0.00000 0.00000 0.00000 -0.15556 0.31437 + 50 0.00000 0.00000 -0.00000 -0.00000 -0.11857 0.13819 + 51 0.00767 -0.50055 -0.38637 -0.15571 0.00000 0.00000 + 52 -0.00000 0.00000 -0.00000 -0.00000 -0.03836 -0.00978 + 53 0.00000 -0.00000 0.00000 0.00000 0.22213 0.05941 + 54 -0.00000 0.00000 -0.00000 -0.00000 0.15556 0.31437 + 55 -0.00000 -0.00000 0.00000 0.00000 0.11857 0.13819 + 56 0.00767 0.50055 -0.38637 0.15571 0.00000 -0.00000 + 57 0.00000 0.00000 0.00000 -0.00000 0.13244 -0.32296 + 58 0.00000 0.00000 0.00000 -0.00000 0.13244 0.32296 + 59 -0.00000 0.00000 -0.00000 -0.00000 -0.34743 0.30474 + 60 -0.00000 0.00000 -0.00000 -0.00000 -0.34743 -0.30474 43 44 45 46 47 48 ----------- ----------- ----------- ----------- ----------- ----------- 1 -0.05890 0.03827 0.07098 -0.08394 -0.11739 -0.01705 - 2 0.34331 -0.23458 -0.43373 0.50516 0.72422 0.11283 - 3 -0.18170 -0.11012 0.32733 -0.14922 0.04493 -0.09182 - 4 0.44758 0.10801 -0.11576 -0.10777 -0.17319 -0.19632 - 5 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 2 0.34332 -0.23458 -0.43374 0.50515 0.72422 0.11283 + 3 -0.18170 -0.11013 0.32733 -0.14922 0.04493 -0.09182 + 4 0.44758 0.10801 -0.11576 -0.10778 -0.17319 -0.19632 + 5 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 6 0.05890 0.03827 0.07098 0.08394 -0.11739 0.01705 - 7 -0.34331 -0.23458 -0.43373 -0.50516 0.72422 -0.11283 - 8 -0.18170 0.11012 -0.32733 -0.14922 -0.04493 -0.09182 - 9 0.44758 -0.10801 0.11576 -0.10777 0.17319 -0.19632 - 10 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 7 -0.34332 -0.23458 -0.43374 -0.50515 0.72422 -0.11283 + 8 -0.18170 0.11013 -0.32733 -0.14922 -0.04493 -0.09182 + 9 0.44758 -0.10801 0.11576 -0.10778 0.17319 -0.19632 + 10 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 11 0.02561 -0.07584 0.06628 0.08109 0.10219 0.04412 - 12 -0.15326 0.46746 -0.40591 -0.48430 -0.63884 -0.27563 - 13 -0.18818 -0.02323 0.00823 -0.11120 0.04374 -0.25818 - 14 0.25975 0.15429 0.23491 -0.08022 -0.23212 -0.30206 - 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 12 -0.15327 0.46746 -0.40591 -0.48430 -0.63884 -0.27564 + 13 -0.18818 -0.02323 0.00822 -0.11119 0.04374 -0.25818 + 14 0.25975 0.15429 0.23491 -0.08023 -0.23212 -0.30206 + 15 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 16 -0.02561 -0.07584 0.06628 -0.08109 0.10219 -0.04412 - 17 0.15326 0.46746 -0.40591 0.48430 -0.63884 0.27563 - 18 -0.18818 0.02323 -0.00823 -0.11120 -0.04374 -0.25818 - 19 0.25975 -0.15429 -0.23491 -0.08022 0.23212 -0.30206 - 20 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 21 -0.01553 -0.02865 -0.12523 -0.10583 0.03701 0.00979 - 22 0.08946 0.18054 0.77105 0.64337 -0.23438 -0.07061 - 23 -0.30339 0.14855 -0.12383 -0.04525 0.28055 -0.23825 + 17 0.15327 0.46746 -0.40591 0.48430 -0.63884 0.27564 + 18 -0.18818 0.02323 -0.00822 -0.11119 -0.04374 -0.25818 + 19 0.25975 -0.15429 -0.23491 -0.08023 0.23212 -0.30206 + 20 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 21 -0.01554 -0.02864 -0.12523 -0.10583 0.03701 0.00979 + 22 0.08946 0.18053 0.77105 0.64337 -0.23438 -0.07061 + 23 -0.30339 0.14855 -0.12383 -0.04524 0.28055 -0.23825 24 0.28968 -0.24822 -0.00251 -0.21929 0.24514 -0.07739 - 25 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 26 0.01553 -0.02865 -0.12523 0.10583 0.03701 -0.00979 - 27 -0.08946 0.18054 0.77105 -0.64337 -0.23438 0.07061 - 28 -0.30339 -0.14855 0.12383 -0.04525 -0.28055 -0.23825 + 25 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 26 0.01554 -0.02864 -0.12523 0.10583 0.03701 -0.00979 + 27 -0.08946 0.18053 0.77105 -0.64337 -0.23438 0.07061 + 28 -0.30339 -0.14855 0.12383 -0.04524 -0.28055 -0.23825 29 0.28968 0.24822 0.00251 -0.21929 -0.24514 -0.07739 - 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 31 0.16705 -0.32189 0.14727 0.41273 0.34003 0.51005 - 32 -0.16705 -0.32189 0.14727 -0.41273 0.34003 -0.51005 - 33 0.40006 -0.33256 -0.27021 -0.40972 0.09239 0.13146 - 34 -0.40006 -0.33256 -0.27021 0.40972 0.09239 -0.13146 + 30 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 31 0.16706 -0.32189 0.14727 0.41273 0.34003 0.51005 + 32 -0.16706 -0.32189 0.14727 -0.41273 0.34003 -0.51005 + 33 0.40005 -0.33256 -0.27021 -0.40973 0.09239 0.13145 + 34 -0.40005 -0.33256 -0.27021 0.40973 0.09239 -0.13145 35 -0.09990 0.05372 -0.03571 -0.01805 0.07988 0.06611 - 36 0.58720 -0.32288 0.21753 0.11502 -0.48321 -0.41960 + 36 0.58720 -0.32288 0.21754 0.11502 -0.48320 -0.41960 37 -0.01500 0.29450 -0.18171 -0.13468 0.09978 0.25865 - 38 0.32533 0.07476 0.22807 0.11992 0.00048 -0.04562 - 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 38 0.32533 0.07476 0.22807 0.11991 0.00048 -0.04562 + 39 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 40 0.09990 0.05372 -0.03571 0.01805 0.07988 -0.06611 - 41 -0.58720 -0.32288 0.21753 -0.11502 -0.48321 0.41960 + 41 -0.58720 -0.32288 0.21754 -0.11502 -0.48320 0.41960 42 -0.01500 -0.29450 0.18171 -0.13468 -0.09978 0.25865 - 43 0.32533 -0.07476 -0.22807 0.11992 -0.00048 -0.04562 - 44 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 45 -0.26786 0.52076 -0.25865 -0.13180 0.34666 0.45836 - 46 0.26786 0.52076 -0.25865 0.13180 0.34666 -0.45836 + 43 0.32533 -0.07476 -0.22807 0.11991 -0.00048 -0.04562 + 44 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 45 -0.26786 0.52076 -0.25865 -0.13180 0.34666 0.45835 + 46 0.26786 0.52076 -0.25865 0.13180 0.34666 -0.45835 47 0.03527 -0.02222 -0.08171 -0.07626 -0.07467 0.04394 - 48 -0.20157 0.12898 0.51881 0.48153 0.46073 -0.28435 - 49 0.05532 0.30668 0.16114 0.20705 0.11192 0.02643 - 50 0.05559 0.20897 -0.04237 -0.07315 0.05118 0.34060 - 51 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 48 -0.20157 0.12898 0.51881 0.48152 0.46073 -0.28435 + 49 0.05532 0.30668 0.16114 0.20705 0.11193 0.02643 + 50 0.05558 0.20898 -0.04237 -0.07316 0.05118 0.34060 + 51 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 52 -0.03527 -0.02222 -0.08171 0.07626 -0.07467 -0.04394 - 53 0.20157 0.12898 0.51881 -0.48153 0.46073 0.28435 - 54 0.05532 -0.30668 -0.16114 0.20705 -0.11192 0.02643 - 55 0.05559 -0.20897 0.04237 -0.07315 -0.05118 0.34060 - 56 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 57 0.00235 -0.40304 -0.38666 -0.39554 -0.35658 0.02855 - 58 -0.00235 -0.40304 -0.38666 0.39554 -0.35658 -0.02855 - 59 0.21759 0.22625 -0.25676 -0.25855 -0.16648 0.46224 - 60 -0.21759 0.22625 -0.25676 0.25855 -0.16648 -0.46224 + 53 0.20157 0.12898 0.51881 -0.48152 0.46073 0.28435 + 54 0.05532 -0.30668 -0.16114 0.20705 -0.11193 0.02643 + 55 0.05558 -0.20898 0.04237 -0.07316 -0.05118 0.34060 + 56 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 57 0.00235 -0.40304 -0.38667 -0.39553 -0.35658 0.02855 + 58 -0.00235 -0.40304 -0.38667 0.39553 -0.35658 -0.02855 + 59 0.21759 0.22625 -0.25675 -0.25855 -0.16648 0.46224 + 60 -0.21759 0.22625 -0.25675 0.25855 -0.16648 -0.46224 49 50 51 52 53 54 ----------- ----------- ----------- ----------- ----------- ----------- 1 0.05831 0.02569 0.04558 -0.00034 -0.00169 0.06301 - 2 -0.35376 -0.16334 -0.31753 0.01021 0.00631 -0.43953 + 2 -0.35376 -0.16335 -0.31752 0.01021 0.00631 -0.43952 3 -0.19196 -0.32615 0.14021 -0.54954 0.15495 -0.18441 4 0.11670 0.03797 0.61279 0.07112 0.01701 -0.03904 - 5 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 5 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 6 -0.05831 0.02569 0.04558 0.00034 -0.00169 -0.06301 - 7 0.35376 -0.16334 -0.31753 -0.01021 0.00631 0.43953 + 7 0.35376 -0.16335 -0.31752 -0.01021 0.00631 0.43952 8 -0.19196 0.32615 -0.14021 -0.54954 -0.15495 -0.18441 9 0.11670 -0.03797 -0.61279 0.07112 -0.01701 -0.03904 - 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 10 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 11 -0.05864 -0.09014 0.00199 -0.09529 -0.01181 0.04816 - 12 0.36131 0.57368 -0.00944 0.64060 0.06955 -0.32654 - 13 -0.17180 -0.14924 -0.43948 0.06032 0.54469 -0.23101 - 14 0.15234 -0.14224 0.11204 0.14373 0.15727 0.70796 - 15 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 12 0.36131 0.57368 -0.00944 0.64060 0.06954 -0.32654 + 13 -0.17181 -0.14923 -0.43948 0.06032 0.54469 -0.23101 + 14 0.15234 -0.14224 0.11203 0.14373 0.15727 0.70796 + 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 16 0.05864 -0.09014 0.00199 0.09529 -0.01181 -0.04816 - 17 -0.36131 0.57368 -0.00944 -0.64060 0.06955 0.32654 - 18 -0.17180 0.14924 0.43948 0.06032 -0.54469 -0.23101 - 19 0.15234 0.14224 -0.11204 0.14373 -0.15727 0.70796 - 20 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 17 -0.36131 0.57368 -0.00944 -0.64060 0.06954 0.32654 + 18 -0.17181 0.14923 0.43948 0.06032 -0.54469 -0.23101 + 19 0.15234 0.14224 -0.11203 0.14373 -0.15727 0.70796 + 20 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 21 0.05300 0.08993 -0.03636 -0.04413 0.01505 -0.08535 - 22 -0.32369 -0.57443 0.23759 0.30544 -0.09007 0.58516 - 23 -0.14480 -0.06867 -0.33543 -0.15723 -0.50669 0.38189 + 22 -0.32368 -0.57443 0.23759 0.30544 -0.09007 0.58517 + 23 -0.14481 -0.06867 -0.33543 -0.15723 -0.50669 0.38189 24 0.09049 -0.17492 0.08597 -0.46998 0.35572 0.43130 - 25 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 25 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 26 -0.05300 0.08993 -0.03636 0.04413 0.01505 0.08535 - 27 0.32369 -0.57443 0.23759 -0.30544 -0.09007 -0.58516 - 28 -0.14480 0.06867 0.33543 -0.15723 0.50669 0.38189 + 27 0.32368 -0.57443 0.23759 -0.30544 -0.09007 -0.58517 + 28 -0.14481 0.06867 0.33543 -0.15723 0.50669 0.38189 29 0.09049 0.17492 -0.08597 -0.46998 -0.35572 0.43130 - 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 31 -0.06620 -0.10721 0.30340 -0.35590 -0.49844 0.12462 - 32 0.06620 -0.10721 0.30340 0.35590 -0.49844 -0.12462 - 33 0.40068 0.27951 0.13808 -0.27116 0.55002 -0.27282 - 34 -0.40068 0.27951 0.13808 0.27116 0.55002 0.27282 + 30 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 31 -0.06619 -0.10721 0.30340 -0.35590 -0.49844 0.12462 + 32 0.06619 -0.10721 0.30340 0.35590 -0.49844 -0.12462 + 33 0.40067 0.27952 0.13808 -0.27116 0.55002 -0.27282 + 34 -0.40067 0.27952 0.13808 0.27116 0.55002 0.27282 35 0.07657 -0.02595 0.09257 0.02264 0.04617 0.05615 - 36 -0.46936 0.18631 -0.60027 -0.16972 -0.31717 -0.38313 + 36 -0.46936 0.18631 -0.60027 -0.16972 -0.31718 -0.38313 37 0.03747 -0.06437 0.12428 -0.22424 -0.13694 0.04128 - 38 0.13732 0.07194 -0.01913 0.05946 0.16445 -0.00237 - 39 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 38 0.13733 0.07194 -0.01913 0.05946 0.16445 -0.00237 + 39 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 40 -0.07657 -0.02595 0.09257 -0.02264 0.04617 -0.05615 - 41 0.46936 0.18631 -0.60027 0.16972 -0.31717 0.38313 + 41 0.46936 0.18631 -0.60027 0.16972 -0.31718 0.38313 42 0.03747 0.06437 -0.12428 -0.22424 0.13694 0.04128 - 43 0.13732 -0.07194 0.01913 0.05946 -0.16445 -0.00237 - 44 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 43 0.13733 -0.07194 0.01913 0.05946 -0.16445 -0.00237 + 44 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 45 0.31193 -0.09499 0.34348 -0.13232 0.07474 0.20739 46 -0.31193 -0.09499 0.34348 0.13232 0.07474 -0.20739 47 -0.11650 -0.08147 -0.02906 0.00423 -0.04257 -0.00055 - 48 0.73819 0.52463 0.18353 -0.01526 0.29424 0.00035 - 49 0.16734 0.13581 -0.31700 -0.02901 -0.06230 -0.19487 - 50 0.04715 -0.40842 -0.06063 0.45927 0.26601 0.12481 - 51 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 48 0.73819 0.52463 0.18354 -0.01526 0.29424 0.00035 + 49 0.16735 0.13581 -0.31700 -0.02902 -0.06230 -0.19487 + 50 0.04715 -0.40842 -0.06063 0.45927 0.26602 0.12481 + 51 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 52 0.11650 -0.08147 -0.02906 -0.00423 -0.04257 0.00055 - 53 -0.73819 0.52463 0.18353 0.01526 0.29424 -0.00035 - 54 0.16734 -0.13581 0.31700 -0.02901 0.06230 -0.19487 - 55 0.04715 0.40842 0.06063 0.45927 -0.26601 0.12481 - 56 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 57 -0.57672 -0.34451 0.17329 -0.01305 -0.16513 0.17493 - 58 0.57672 -0.34451 0.17329 0.01305 -0.16513 -0.17493 - 59 -0.28037 -0.56986 -0.23030 0.37758 0.07035 0.04195 - 60 0.28037 -0.56986 -0.23030 -0.37758 0.07035 -0.04195 + 53 -0.73819 0.52463 0.18354 0.01526 0.29424 -0.00035 + 54 0.16735 -0.13581 0.31700 -0.02902 0.06230 -0.19487 + 55 0.04715 0.40842 0.06063 0.45927 -0.26602 0.12481 + 56 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 57 -0.57672 -0.34451 0.17329 -0.01304 -0.16513 0.17493 + 58 0.57672 -0.34451 0.17329 0.01304 -0.16513 -0.17493 + 59 -0.28037 -0.56986 -0.23030 0.37758 0.07035 0.04194 + 60 0.28037 -0.56986 -0.23030 -0.37758 0.07035 -0.04194 55 56 57 58 59 60 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.07726 0.01471 0.01892 0.01985 -0.00551 0.04011 + 1 -0.07726 0.01472 0.01892 0.01985 -0.00551 0.04011 2 0.52923 -0.09067 -0.12166 -0.14082 0.03670 -0.30348 3 -0.19308 -0.12058 0.11221 -0.44383 0.69128 0.16038 4 0.02006 -0.27775 -0.38378 0.13538 -0.04906 0.64294 5 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 6 0.07726 0.01471 0.01892 -0.01985 -0.00551 -0.04011 + 6 0.07726 0.01472 0.01892 -0.01985 -0.00551 -0.04011 7 -0.52923 -0.09067 -0.12166 0.14082 0.03670 0.30348 8 -0.19308 0.12058 -0.11221 -0.44383 -0.69128 0.16038 9 0.02006 0.27775 0.38378 0.13538 0.04906 0.64294 - 10 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 10 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 11 -0.00029 0.02578 -0.01873 -0.04485 0.00481 -0.04736 - 12 0.01196 -0.18288 0.13397 0.32497 -0.03416 0.34585 + 12 0.01196 -0.18288 0.13397 0.32498 -0.03416 0.34585 13 0.24851 0.23313 0.11252 -0.19550 0.23925 -0.56842 14 -0.00850 0.42547 -0.35107 0.12647 -0.54357 -0.24361 - 15 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 15 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 16 0.00029 0.02578 -0.01873 0.04485 0.00481 0.04736 - 17 -0.01196 -0.18288 0.13397 -0.32497 -0.03416 -0.34585 + 17 -0.01196 -0.18288 0.13397 -0.32498 -0.03416 -0.34585 18 0.24851 -0.23313 -0.11252 -0.19550 -0.23925 -0.56842 19 -0.00850 -0.42547 0.35107 0.12647 0.54357 -0.24361 - 20 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 20 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 21 -0.03836 -0.03426 0.01247 -0.02107 -0.00432 0.05217 - 22 0.25820 0.23635 -0.09201 0.15671 0.02976 -0.38311 + 22 0.25820 0.23635 -0.09200 0.15671 0.02976 -0.38311 23 -0.31856 0.14297 0.04138 -0.03754 -0.43755 0.49554 - 24 -0.09578 0.35200 -0.42419 -0.21381 -0.41770 -0.39765 - 25 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 24 -0.09578 0.35201 -0.42419 -0.21381 -0.41770 -0.39765 + 25 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 26 0.03836 -0.03426 0.01247 0.02107 -0.00432 -0.05217 - 27 -0.25820 0.23635 -0.09201 -0.15671 0.02976 0.38311 + 27 -0.25820 0.23635 -0.09200 -0.15671 0.02976 0.38311 28 -0.31856 -0.14297 -0.04138 -0.03754 0.43755 0.49554 - 29 -0.09578 -0.35200 0.42419 -0.21381 0.41770 -0.39765 - 30 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 31 -0.14284 -0.21597 -0.05398 -0.01662 -0.01208 0.29065 - 32 0.14284 -0.21597 -0.05398 0.01662 -0.01208 -0.29065 - 33 0.00032 -0.02344 -0.21481 -0.11392 0.04609 -0.29850 - 34 -0.00032 -0.02344 -0.21481 0.11392 0.04609 0.29850 + 29 -0.09578 -0.35201 0.42419 -0.21381 0.41770 -0.39765 + 30 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 31 -0.14284 -0.21597 -0.05398 -0.01662 -0.01209 0.29065 + 32 0.14284 -0.21597 -0.05398 0.01662 -0.01209 -0.29065 + 33 0.00032 -0.02343 -0.21481 -0.11392 0.04609 -0.29849 + 34 -0.00032 -0.02343 -0.21481 0.11392 0.04609 0.29849 35 0.03549 -0.03476 0.04093 -0.05874 -0.02532 -0.01108 36 -0.25925 0.24848 -0.32043 0.44796 0.20386 0.06537 - 37 0.31971 0.56281 -0.06038 0.62238 0.43355 0.02357 - 38 0.46956 0.10839 0.67026 -0.45609 -0.31475 0.37379 - 39 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 37 0.31971 0.56281 -0.06038 0.62237 0.43355 0.02357 + 38 0.46956 0.10839 0.67026 -0.45610 -0.31475 0.37379 + 39 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 40 -0.03549 -0.03476 0.04093 0.05874 -0.02532 0.01108 41 0.25925 0.24848 -0.32043 -0.44796 0.20386 -0.06537 - 42 0.31971 -0.56281 0.06038 0.62238 -0.43355 0.02357 - 43 0.46956 -0.10839 -0.67026 -0.45609 0.31475 0.37379 - 44 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 42 0.31971 -0.56281 0.06038 0.62237 -0.43355 0.02357 + 43 0.46956 -0.10839 -0.67026 -0.45610 0.31475 0.37379 + 44 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 45 0.40148 0.33902 0.18605 0.19579 0.17140 0.05739 46 -0.40148 0.33902 0.18605 -0.19579 0.17140 -0.05739 47 -0.02121 0.02963 -0.04422 0.06792 0.03939 -0.00990 48 0.14950 -0.22160 0.33503 -0.51829 -0.31147 0.08499 49 -0.55955 -0.13644 -0.60587 0.38397 0.25194 -0.23846 - 50 -0.23759 -0.55202 0.15069 -0.55273 -0.32186 0.00159 - 51 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 50 -0.23760 -0.55202 0.15069 -0.55273 -0.32186 0.00159 + 51 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 52 0.02121 0.02963 -0.04422 -0.06792 0.03939 0.00990 53 -0.14950 -0.22160 0.33503 0.51829 -0.31147 -0.08499 54 -0.55955 0.13644 0.60587 0.38397 -0.25194 -0.23846 - 55 -0.23759 0.55202 -0.15069 -0.55273 0.32186 0.00159 - 56 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 55 -0.23760 0.55202 -0.15069 -0.55273 0.32186 0.00159 + 56 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 57 0.39097 0.26887 0.30933 -0.00831 -0.03714 0.15474 58 -0.39097 0.26887 0.30933 0.00831 -0.03714 -0.15474 59 -0.36799 -0.35303 -0.14874 -0.11604 -0.05708 -0.07237 @@ -2351,42 +2410,42 @@ 2 0.03097 0.03078 0.00759 -0.00390 -0.00475 0.00502 3 -0.00005 0.00000 -0.00316 0.00487 -0.00047 0.00057 4 -0.00101 -0.00074 -0.00244 0.00081 -0.00418 0.00410 - 5 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 5 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 6 -0.70031 0.70033 0.01084 0.00641 0.01038 0.01065 7 -0.03097 0.03078 -0.00759 -0.00390 -0.00475 -0.00502 8 -0.00005 -0.00000 -0.00316 -0.00487 0.00047 0.00057 9 -0.00101 0.00074 -0.00244 -0.00081 0.00418 0.00410 - 10 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 11 -0.00774 -0.00812 -0.16581 -0.19222 -0.03438 0.00968 + 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 11 -0.00774 -0.00812 -0.16580 -0.19222 -0.03439 0.00968 12 -0.00710 -0.00649 -0.01389 -0.01466 -0.00151 0.00027 13 0.00349 0.00331 0.00109 0.00102 0.00015 -0.00003 14 -0.00267 -0.00290 0.00434 0.00429 0.00009 0.00001 - 15 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 16 0.00774 -0.00812 0.16581 -0.19222 -0.03438 -0.00968 + 15 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 16 0.00774 -0.00812 0.16580 -0.19222 -0.03439 -0.00968 17 0.00710 -0.00649 0.01389 -0.01466 -0.00151 -0.00027 18 0.00349 -0.00331 0.00109 -0.00102 -0.00015 -0.00003 19 -0.00267 0.00290 0.00434 -0.00429 -0.00009 0.00001 - 20 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 20 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 21 0.00809 -0.00842 0.68026 0.67325 0.00070 0.00648 22 0.00707 -0.00645 0.03172 0.03139 0.00043 0.00035 23 -0.00414 0.00403 -0.00072 -0.00040 0.00012 0.00001 24 -0.00138 0.00167 0.00184 0.00180 0.00010 -0.00010 - 25 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 25 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 26 -0.00809 -0.00842 -0.68026 0.67325 0.00070 -0.00648 27 -0.00707 -0.00645 -0.03172 0.03139 0.00043 -0.00035 28 -0.00414 -0.00403 -0.00072 0.00040 -0.00012 0.00001 29 -0.00138 -0.00167 0.00184 -0.00180 -0.00010 -0.00010 - 30 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 30 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 31 0.00023 0.00012 0.00166 0.00178 0.00028 -0.00007 32 -0.00023 0.00012 -0.00166 0.00178 0.00028 0.00007 33 -0.00023 0.00012 -0.00613 -0.00613 -0.00017 -0.00020 34 0.00023 0.00012 0.00613 -0.00613 -0.00017 0.00020 - 35 0.00965 -0.00978 -0.00416 -0.01026 0.69934 0.70008 + 35 0.00965 -0.00978 -0.00417 -0.01026 0.69934 0.70008 36 0.00585 -0.00592 0.00003 -0.00040 0.03095 0.03100 37 0.00088 -0.00088 0.00006 0.00010 0.00098 0.00098 38 0.00393 -0.00397 0.00006 -0.00004 -0.00104 -0.00104 - 39 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 40 -0.00965 -0.00978 0.00416 -0.01026 0.69934 -0.70008 + 39 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 40 -0.00965 -0.00978 0.00417 -0.01026 0.69934 -0.70008 41 -0.00585 -0.00592 -0.00003 -0.00040 0.03095 -0.03100 42 0.00088 0.00088 0.00006 -0.00010 -0.00098 0.00098 43 0.00393 0.00397 0.00006 0.00004 0.00104 -0.00104 @@ -2394,15 +2453,15 @@ 45 -0.00016 0.00017 -0.00001 0.00005 -0.00634 -0.00635 46 0.00016 0.00017 0.00001 0.00005 -0.00634 0.00635 47 -0.00010 0.00009 -0.00119 -0.00078 -0.01827 -0.01835 - 48 -0.00029 0.00029 -0.00010 -0.00001 -0.00810 -0.00811 + 48 -0.00029 0.00028 -0.00010 -0.00001 -0.00810 -0.00811 49 -0.00008 0.00008 -0.00006 -0.00008 0.00306 0.00306 50 -0.00019 0.00020 -0.00005 -0.00000 -0.00349 -0.00350 - 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 51 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 52 0.00010 0.00009 0.00119 -0.00078 -0.01827 0.01835 - 53 0.00029 0.00029 0.00010 -0.00001 -0.00810 0.00811 + 53 0.00029 0.00028 0.00010 -0.00001 -0.00810 0.00811 54 -0.00008 -0.00008 -0.00006 0.00008 -0.00306 0.00306 55 -0.00019 -0.00020 -0.00005 0.00000 0.00349 -0.00350 - 56 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 56 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 57 0.00014 -0.00013 0.00018 0.00018 0.00029 0.00029 58 -0.00014 -0.00013 -0.00018 0.00018 0.00029 -0.00029 59 0.00002 -0.00002 -0.00001 -0.00001 0.00030 0.00030 @@ -2414,58 +2473,58 @@ 2 -0.00471 -0.00740 0.00007 -0.00008 0.27993 0.29436 3 -0.00410 -0.00210 -0.00003 0.00003 -0.00759 0.00190 4 0.00243 0.00300 -0.00001 0.00001 -0.04705 0.02922 - 5 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 6 -0.00650 0.01189 0.00022 0.00020 -0.10975 0.11075 7 0.00471 -0.00740 0.00007 0.00008 0.27993 -0.29436 8 -0.00410 0.00210 0.00003 0.00003 0.00759 0.00190 9 0.00243 -0.00300 0.00001 0.00001 0.04705 0.02922 - 10 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 10 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 11 0.68045 0.67270 0.00117 -0.00047 -0.09705 -0.04082 12 0.02852 0.02779 -0.00004 -0.00001 0.24441 0.10681 13 -0.00089 -0.00050 0.00002 -0.00001 -0.06142 -0.03276 14 0.00054 0.00082 -0.00002 0.00008 -0.01416 0.06295 - 15 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 15 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 16 -0.68045 0.67270 0.00117 0.00047 -0.09705 0.04082 17 -0.02852 0.02779 -0.00004 0.00001 0.24441 -0.10681 18 -0.00089 0.00050 -0.00002 -0.00001 0.06142 -0.03276 19 0.00054 -0.00082 0.00002 0.00008 0.01416 0.06295 - 20 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 21 0.16674 0.19336 0.00144 0.00124 -0.09739 0.04639 + 20 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 21 0.16673 0.19336 0.00144 0.00124 -0.09739 0.04639 22 0.00081 0.00231 -0.00001 0.00001 0.24566 -0.12202 23 -0.00079 -0.00075 0.00000 0.00001 -0.05361 0.05140 24 -0.00406 -0.00405 0.00008 0.00011 0.03271 0.04878 - 25 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 26 -0.16674 0.19336 0.00144 -0.00124 -0.09739 -0.04639 + 25 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 26 -0.16673 0.19336 0.00144 -0.00124 -0.09739 -0.04639 27 -0.00081 0.00231 -0.00001 -0.00001 0.24566 0.12202 28 -0.00079 0.00075 -0.00000 0.00001 0.05361 0.05140 29 -0.00406 0.00405 -0.00008 0.00011 -0.03271 0.04878 - 30 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 30 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 31 -0.00601 -0.00607 -0.00002 0.00001 0.03876 0.02439 32 0.00601 -0.00607 -0.00002 -0.00001 0.03876 -0.02439 33 -0.00131 -0.00173 0.00009 0.00009 0.03995 -0.02936 34 0.00131 -0.00173 0.00009 -0.00009 0.03995 0.02936 - 35 -0.01086 0.03269 0.01922 0.01922 -0.04698 0.11129 + 35 -0.01085 0.03270 0.01922 0.01922 -0.04698 0.11129 36 -0.00062 0.00156 -0.00642 -0.00642 0.12146 -0.29208 37 -0.00003 0.00003 -0.00306 -0.00306 0.01460 -0.03927 38 -0.00000 -0.00011 0.00335 0.00335 0.03003 -0.01622 - 39 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 40 0.01086 0.03269 0.01922 -0.01922 -0.04698 -0.11129 + 39 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 40 0.01085 0.03270 0.01922 -0.01922 -0.04698 -0.11129 41 0.00062 0.00156 -0.00642 0.00642 0.12146 0.29208 42 -0.00003 -0.00003 0.00306 -0.00306 -0.01460 -0.03927 43 -0.00000 0.00011 -0.00335 0.00335 -0.03003 -0.01622 - 44 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 44 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 45 0.00014 -0.00038 -0.00005 -0.00005 0.02088 -0.05715 46 -0.00014 -0.00038 -0.00005 0.00005 0.02088 0.05715 47 0.00044 -0.00236 0.70037 0.70037 -0.02161 0.07280 48 0.00017 -0.00052 0.03034 0.03034 0.05436 -0.18711 49 -0.00007 0.00013 -0.00092 -0.00092 -0.01184 0.03738 50 0.00008 -0.00025 0.00103 0.00103 0.02024 -0.05396 - 51 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 51 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 52 -0.00044 -0.00236 0.70037 -0.70037 -0.02161 -0.07280 53 -0.00017 -0.00052 0.03034 -0.03034 0.05436 0.18711 54 -0.00007 -0.00013 0.00092 -0.00092 0.01184 0.03738 55 0.00008 0.00025 -0.00103 0.00103 -0.02024 -0.05396 - 56 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 56 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 57 0.00002 0.00005 -0.00624 -0.00624 0.01124 -0.04022 58 -0.00002 0.00005 -0.00624 0.00624 0.01124 0.04022 59 -0.00001 0.00001 -0.00622 -0.00622 0.00793 -0.03379 @@ -2475,34 +2534,34 @@ ----------- ----------- ----------- ----------- ----------- ----------- 1 -0.00908 -0.01204 -0.09487 0.07135 0.05790 -0.00837 2 0.02770 0.03286 0.26276 -0.21025 -0.17333 0.02318 - 3 0.01083 0.13358 -0.01981 -0.14305 0.19236 -0.06490 + 3 0.01083 0.13358 -0.01982 -0.14305 0.19236 -0.06490 4 0.10531 -0.02485 -0.07112 -0.06814 -0.07398 -0.15557 - 5 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 5 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 6 -0.00908 0.01204 0.09487 0.07135 0.05790 0.00837 7 0.02770 -0.03286 -0.26276 -0.21025 -0.17333 -0.02318 - 8 -0.01083 0.13358 -0.01981 0.14305 -0.19236 -0.06490 + 8 -0.01083 0.13358 -0.01982 0.14305 -0.19236 -0.06490 9 -0.10531 -0.02485 -0.07112 0.06814 0.07398 -0.15557 - 10 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 11 0.04501 -0.13286 -0.04084 0.00993 -0.11128 -0.05019 12 -0.11813 0.35967 0.11294 -0.03021 0.32921 0.15442 13 0.01962 -0.00893 -0.04111 0.02946 0.06473 -0.01113 14 0.03897 -0.05722 0.08797 -0.17286 0.02516 -0.00309 - 15 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 16 0.04501 0.13286 0.04084 0.00993 -0.11128 0.05019 17 -0.11813 -0.35967 -0.11294 -0.03021 0.32921 -0.15442 18 -0.01962 -0.00893 -0.04111 -0.02946 -0.06473 -0.01113 19 -0.03897 -0.05722 0.08797 0.17286 -0.02516 -0.00309 - 20 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 20 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 21 0.04013 -0.12187 0.07009 -0.08786 0.05246 0.02981 22 -0.10487 0.33000 -0.19386 0.25282 -0.15690 -0.09147 23 0.00398 0.02407 0.05951 0.05584 0.09573 0.04297 24 -0.05068 0.06856 0.04444 0.01848 0.17953 0.08230 - 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 25 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 26 0.04013 0.12187 -0.07009 -0.08786 0.05246 -0.02981 27 -0.10487 -0.33000 0.19386 0.25282 -0.15690 0.09147 28 -0.00398 0.02407 0.05951 -0.05584 -0.09573 0.04297 29 0.05068 0.06856 0.04444 -0.01848 -0.17953 0.08230 - 30 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 30 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 31 -0.01985 0.08660 0.02803 -0.02557 0.14536 0.04322 32 -0.01985 -0.08660 -0.02803 -0.02557 0.14536 -0.04322 33 -0.01387 0.08154 -0.04544 0.10274 -0.07145 -0.05023 @@ -2511,24 +2570,24 @@ 36 0.32969 -0.00151 0.17328 -0.13292 -0.01867 0.29832 37 0.05395 0.02244 0.04661 0.08178 -0.03857 -0.11667 38 -0.05243 -0.01737 -0.12796 -0.13892 -0.09348 0.06874 - 39 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 39 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 40 -0.12403 -0.00030 0.06457 0.04348 0.00542 0.09591 41 0.32969 0.00151 -0.17328 -0.13292 -0.01867 -0.29832 42 -0.05395 0.02244 0.04661 -0.08178 0.03857 -0.11667 43 0.05243 -0.01737 -0.12796 0.13892 0.09348 0.06874 - 44 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 44 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 45 0.07025 -0.00849 0.04141 -0.06377 0.02743 0.15181 46 0.07025 0.00849 -0.04141 -0.06377 0.02743 -0.15181 47 -0.11322 -0.01257 -0.11106 -0.08193 -0.04588 0.08751 48 0.29672 0.03260 0.29959 0.23522 0.13619 -0.27013 49 -0.05379 0.00093 -0.04390 0.02218 -0.01761 -0.11164 50 0.06472 0.00740 0.03442 -0.02021 -0.04091 0.08150 - 51 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 51 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 52 -0.11322 0.01257 0.11106 -0.08193 -0.04588 -0.08751 53 0.29672 -0.03260 -0.29959 0.23522 0.13619 0.27013 54 0.05379 0.00093 -0.04390 -0.02218 0.01761 -0.11164 55 -0.06472 0.00740 0.03442 0.02021 0.04091 0.08150 - 56 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 56 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 57 0.06605 0.01184 0.07124 0.09046 0.02929 -0.15408 58 0.06605 -0.01184 -0.07124 0.09046 0.02929 0.15408 59 0.06258 0.00661 0.07724 0.08181 0.06526 -0.11963 @@ -2536,36 +2595,36 @@ 19 20 21 22 23 24 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.04802 -0.03184 0.01711 0.05232 -0.04770 0.01801 + 1 0.04802 -0.03184 0.01711 0.05231 -0.04770 0.01801 2 -0.14425 0.10602 -0.05961 -0.18046 0.16482 -0.06045 3 -0.00928 0.05329 0.16855 -0.17693 -0.15263 -0.01264 4 0.16321 0.12113 -0.14936 -0.05852 -0.15818 0.00202 - 5 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 6 0.04802 -0.03184 -0.01711 -0.05232 0.04770 0.01801 + 5 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 6 0.04802 -0.03184 -0.01711 -0.05231 0.04770 0.01801 7 -0.14425 0.10602 0.05961 0.18046 -0.16482 -0.06045 8 0.00928 -0.05329 0.16855 -0.17693 -0.15263 0.01264 9 -0.16321 -0.12113 -0.14936 -0.05852 -0.15818 -0.00202 - 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 10 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 11 -0.01393 -0.01692 -0.01757 -0.04764 0.02361 -0.02448 12 0.04834 0.06357 0.05985 0.16345 -0.08486 0.08280 13 0.19351 0.12955 -0.01752 0.19053 -0.10497 -0.00406 14 -0.08238 0.13938 0.21533 -0.09270 -0.07850 -0.07488 - 15 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 15 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 16 -0.01393 -0.01692 0.01757 0.04764 -0.02361 -0.02448 17 0.04834 0.06357 -0.05985 -0.16345 0.08486 0.08280 18 -0.19351 -0.12955 -0.01752 0.19053 -0.10497 0.00406 19 0.08238 -0.13938 0.21533 -0.09270 -0.07850 0.07488 - 20 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 20 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 21 -0.05200 0.01673 0.03742 0.04834 -0.01399 0.02036 - 22 0.16771 -0.04674 -0.12204 -0.16723 0.05337 -0.07580 + 22 0.16771 -0.04674 -0.12204 -0.16723 0.05338 -0.07580 23 0.20610 0.08551 -0.10453 0.00239 0.28874 -0.03405 24 -0.03544 -0.13215 -0.13907 0.18453 -0.05240 0.13202 - 25 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 25 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 26 -0.05200 0.01673 -0.03742 -0.04834 0.01399 0.02036 - 27 0.16771 -0.04674 0.12204 0.16723 -0.05337 -0.07580 + 27 0.16771 -0.04674 0.12204 0.16723 -0.05338 -0.07580 28 -0.20610 -0.08551 -0.10453 0.00239 0.28874 0.03405 29 0.03544 0.13215 -0.13907 0.18453 -0.05240 -0.13202 - 30 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 30 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 31 0.10314 0.12278 0.06778 0.17897 -0.12927 0.00899 32 0.10314 0.12278 -0.06778 -0.17897 0.12927 0.00899 33 0.15818 0.08486 -0.03953 -0.14813 0.22971 -0.10571 @@ -2574,24 +2633,24 @@ 36 0.17605 -0.16001 0.03874 -0.03698 0.01713 0.06739 37 -0.06308 0.11598 0.21366 -0.00322 -0.00060 0.26926 38 0.02487 0.18084 0.10088 0.20363 0.11792 -0.06053 - 39 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 39 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 40 -0.05680 0.04962 0.01287 -0.01359 0.00476 -0.02343 41 0.17605 -0.16001 -0.03874 0.03698 -0.01713 0.06739 42 0.06308 -0.11598 0.21366 -0.00322 -0.00060 -0.26926 43 -0.02487 -0.18084 0.10088 0.20363 0.11792 0.06053 - 44 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 45 0.09671 -0.15090 -0.13798 -0.05564 -0.00089 -0.15128 - 46 0.09671 -0.15090 0.13798 0.05564 0.00089 -0.15128 + 44 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 45 0.09671 -0.15090 -0.13798 -0.05563 -0.00089 -0.15128 + 46 0.09671 -0.15090 0.13798 0.05563 0.00089 -0.15128 47 0.05661 -0.02594 0.01521 -0.01598 0.00460 0.00296 48 -0.17835 0.09374 -0.05480 0.06631 -0.00957 -0.02532 49 -0.06706 0.22221 0.07901 0.19042 0.18046 -0.00402 50 0.07346 -0.01309 0.19403 -0.07165 0.08047 0.34339 - 51 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 51 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 52 0.05661 -0.02594 -0.01521 0.01598 -0.00460 0.00296 53 -0.17835 0.09374 0.05480 -0.06631 0.00957 -0.02532 54 0.06706 -0.22221 0.07901 0.19042 0.18046 0.00402 55 -0.07346 0.01309 0.19403 -0.07165 0.08047 -0.34339 - 56 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 56 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 57 -0.08974 0.18159 0.04894 0.14037 0.15135 0.01653 58 -0.08974 0.18159 -0.04894 -0.14037 -0.15135 0.01653 59 -0.09199 0.00609 -0.15368 0.03650 -0.09603 -0.24848 @@ -2601,375 +2660,375 @@ ----------- ----------- ----------- ----------- ----------- ----------- 1 0.00445 -0.00539 0.02328 0.00000 -0.01352 -0.00587 2 -0.01559 0.01984 -0.08409 -0.00000 0.05647 0.03014 - 3 -0.09299 -0.13928 0.09578 0.00000 0.08226 -0.16228 + 3 -0.09299 -0.13928 0.09578 -0.00000 0.08226 -0.16228 4 0.09741 0.16444 0.03905 0.00000 0.21595 0.25433 - 5 0.00000 0.00000 -0.00000 0.33576 -0.00000 -0.00000 + 5 0.00000 -0.00000 0.00000 0.33576 -0.00000 -0.00000 6 -0.00445 0.00539 0.02328 0.00000 0.01352 -0.00587 7 0.01559 -0.01984 -0.08409 -0.00000 -0.05647 0.03014 - 8 -0.09299 -0.13928 -0.09578 -0.00000 0.08226 0.16228 + 8 -0.09299 -0.13928 -0.09578 0.00000 0.08226 0.16228 9 0.09741 0.16444 -0.03905 -0.00000 0.21595 -0.25433 - 10 -0.00000 0.00000 -0.00000 0.33576 0.00000 0.00000 - 11 0.02081 0.01408 0.00833 0.00000 0.00369 0.00027 - 12 -0.06411 -0.05242 -0.03887 -0.00000 -0.01022 0.00079 - 13 0.33431 0.05833 -0.14050 -0.00000 0.05368 0.15870 + 10 0.00000 0.00000 0.00000 0.33576 -0.00000 -0.00000 + 11 0.02081 0.01408 0.00833 -0.00000 0.00369 0.00027 + 12 -0.06411 -0.05242 -0.03887 0.00000 -0.01022 0.00079 + 13 0.33431 0.05832 -0.14050 0.00000 0.05368 0.15870 14 0.12863 -0.21430 -0.17102 -0.00000 0.04469 -0.25040 - 15 0.00000 -0.00000 -0.00000 0.29861 0.00000 -0.00000 - 16 -0.02081 -0.01408 0.00833 0.00000 -0.00369 0.00027 - 17 0.06411 0.05242 -0.03887 -0.00000 0.01022 0.00079 - 18 0.33431 0.05833 0.14050 0.00000 0.05368 -0.15870 + 15 0.00000 -0.00000 0.00000 0.29861 -0.00000 -0.00000 + 16 -0.02081 -0.01408 0.00833 -0.00000 -0.00369 0.00027 + 17 0.06411 0.05242 -0.03887 0.00000 0.01022 0.00079 + 18 0.33431 0.05832 0.14050 -0.00000 0.05368 -0.15870 19 0.12863 -0.21430 0.17102 0.00000 0.04469 0.25040 - 20 -0.00000 0.00000 -0.00000 0.29861 -0.00000 0.00000 + 20 0.00000 0.00000 0.00000 0.29861 -0.00000 -0.00000 21 0.01678 -0.00780 -0.00840 -0.00000 -0.01023 -0.00416 - 22 -0.05283 0.02225 0.02793 0.00000 0.03595 0.00642 - 23 0.19075 0.04054 0.07196 0.00000 -0.12729 -0.12364 + 22 -0.05283 0.02225 0.02793 -0.00000 0.03595 0.00642 + 23 0.19075 0.04054 0.07196 -0.00000 -0.12729 -0.12364 24 -0.20306 0.19827 0.17066 0.00000 -0.00755 0.22130 - 25 -0.00000 0.00000 -0.00000 0.29910 -0.00000 0.00000 + 25 0.00000 0.00000 0.00000 0.29910 -0.00000 -0.00000 26 -0.01678 0.00780 -0.00840 -0.00000 0.01023 -0.00416 - 27 0.05283 -0.02225 0.02793 0.00000 -0.03595 0.00642 - 28 0.19075 0.04054 -0.07196 -0.00000 -0.12729 0.12364 + 27 0.05283 -0.02225 0.02793 -0.00000 -0.03595 0.00642 + 28 0.19075 0.04054 -0.07196 0.00000 -0.12729 0.12364 29 -0.20306 0.19827 -0.17066 -0.00000 -0.00755 -0.22130 - 30 0.00000 -0.00000 -0.00000 0.29910 0.00000 -0.00000 - 31 0.25151 -0.03168 -0.17004 -0.00000 0.03876 0.05819 - 32 -0.25151 0.03168 -0.17004 -0.00000 -0.03876 0.05819 + 30 0.00000 -0.00000 0.00000 0.29910 -0.00000 -0.00000 + 31 0.25151 -0.03168 -0.17004 0.00000 0.03876 0.05819 + 32 -0.25151 0.03168 -0.17004 0.00000 -0.03876 0.05819 33 0.19230 -0.06065 -0.00451 -0.00000 -0.04159 -0.24949 34 -0.19230 0.06065 -0.00451 -0.00000 0.04159 -0.24949 35 -0.00379 -0.00221 -0.02240 -0.00000 -0.00447 -0.01385 36 0.00980 -0.00854 0.09226 0.00000 0.02157 0.05963 - 37 0.00209 0.22077 -0.18960 -0.00000 -0.23308 0.04933 + 37 0.00209 0.22077 -0.18960 0.00000 -0.23308 0.04933 38 -0.08217 -0.17597 0.12322 0.00000 -0.13942 0.22325 - 39 0.00000 -0.00000 -0.00000 0.17832 0.00000 0.00000 + 39 0.00000 0.00000 0.00000 0.17832 -0.00000 -0.00000 40 0.00379 0.00221 -0.02240 -0.00000 0.00447 -0.01385 41 -0.00980 0.00854 0.09226 0.00000 -0.02157 0.05963 - 42 0.00209 0.22077 0.18960 0.00000 -0.23308 -0.04933 + 42 0.00209 0.22077 0.18960 -0.00000 -0.23308 -0.04933 43 -0.08217 -0.17597 -0.12322 -0.00000 -0.13942 -0.22325 - 44 -0.00000 0.00000 -0.00000 0.17832 -0.00000 -0.00000 + 44 0.00000 -0.00000 -0.00000 0.17832 -0.00000 -0.00000 45 0.00444 -0.14072 0.16692 0.00000 0.25624 -0.06667 - 46 -0.00444 0.14072 0.16692 0.00000 -0.25624 -0.06667 + 46 -0.00444 0.14072 0.16692 -0.00000 -0.25624 -0.06667 47 0.00433 -0.01306 0.00959 0.00000 0.00648 0.00452 48 -0.01958 0.02921 -0.02286 -0.00000 -0.02339 -0.00856 49 -0.08439 -0.09741 0.29208 0.00000 0.23206 0.00383 50 0.02469 0.28136 0.04144 -0.00000 0.14961 -0.15968 - 51 -0.00000 0.00000 -0.00000 0.08225 -0.00000 0.00000 + 51 0.00000 0.00000 -0.00000 0.08225 -0.00000 -0.00000 52 -0.00433 0.01306 0.00959 0.00000 -0.00648 0.00452 53 0.01958 -0.02921 -0.02286 -0.00000 0.02339 -0.00856 54 -0.08439 -0.09741 -0.29208 -0.00000 0.23206 -0.00383 55 0.02469 0.28136 -0.04144 0.00000 0.14961 0.15968 - 56 0.00000 -0.00000 -0.00000 0.08225 0.00000 -0.00000 + 56 0.00000 -0.00000 -0.00000 0.08225 -0.00000 -0.00000 57 -0.05497 -0.03747 0.24295 0.00000 0.24076 -0.06353 - 58 0.05497 0.03747 0.24295 0.00000 -0.24076 -0.06353 - 59 -0.00815 -0.18031 -0.11801 -0.00000 -0.21235 0.14208 - 60 0.00815 0.18031 -0.11801 -0.00000 0.21235 0.14208 + 58 0.05497 0.03747 0.24295 -0.00000 -0.24076 -0.06353 + 59 -0.00815 -0.18031 -0.11801 0.00000 -0.21235 0.14208 + 60 0.00815 0.18031 -0.11801 0.00000 0.21235 0.14208 31 32 33 34 35 36 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.01067 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 2 0.04755 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 3 0.26847 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 4 0.11497 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 1 -0.01067 0.00000 0.00000 -0.00000 0.00000 0.00000 + 2 0.04755 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 3 0.26847 0.00000 0.00000 0.00000 0.00000 0.00000 + 4 0.11497 -0.00000 -0.00000 0.00000 0.00000 0.00000 5 0.00000 0.36053 0.00438 0.01239 0.37745 0.46217 - 6 -0.01067 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 7 0.04755 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 8 -0.26847 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 9 -0.11497 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 10 -0.00000 -0.36053 -0.00438 0.01239 -0.37745 0.46217 - 11 -0.00633 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 12 0.01543 0.00000 0.00000 -0.00000 0.00000 0.00000 - 13 -0.21343 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 14 -0.06710 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 15 -0.00000 0.13002 0.46206 -0.19522 0.22157 -0.21552 - 16 -0.00633 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 17 0.01543 0.00000 0.00000 -0.00000 0.00000 0.00000 - 18 0.21343 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 19 0.06710 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 20 -0.00000 -0.13002 -0.46206 -0.19522 -0.22157 -0.21552 - 21 0.00326 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 22 -0.00767 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 23 0.26225 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 24 0.09272 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 25 -0.00000 -0.13297 0.45918 -0.19220 -0.23092 -0.28223 - 26 0.00326 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 27 -0.00767 0.00000 0.00000 0.00000 -0.00000 0.00000 - 28 -0.26225 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 29 -0.09272 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 6 -0.01067 0.00000 0.00000 -0.00000 0.00000 0.00000 + 7 0.04755 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 8 -0.26847 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 9 -0.11497 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 10 0.00000 -0.36053 -0.00438 0.01239 -0.37745 0.46217 + 11 -0.00633 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 12 0.01543 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 13 -0.21343 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 14 -0.06710 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 15 0.00000 0.13002 0.46206 -0.19522 0.22157 -0.21552 + 16 -0.00633 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 17 0.01543 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 18 0.21343 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 19 0.06710 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 20 0.00000 -0.13002 -0.46206 -0.19522 -0.22157 -0.21552 + 21 0.00326 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 22 -0.00767 0.00000 -0.00000 0.00000 0.00000 0.00000 + 23 0.26225 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 24 0.09272 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 25 0.00000 -0.13297 0.45918 -0.19220 -0.23092 -0.28223 + 26 0.00326 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 27 -0.00767 0.00000 -0.00000 0.00000 0.00000 0.00000 + 28 -0.26225 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 29 -0.09272 0.00000 0.00000 -0.00000 0.00000 0.00000 30 0.00000 0.13297 -0.45918 -0.19220 0.23092 -0.28223 - 31 -0.23795 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 32 -0.23795 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 33 0.12909 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 34 0.12909 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 35 -0.00695 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 36 0.02252 0.00000 0.00000 0.00000 0.00000 -0.00000 - 37 0.16303 0.00000 0.00000 -0.00000 0.00000 0.00000 - 38 0.12220 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 39 -0.00000 -0.39014 -0.00255 0.44627 0.25898 0.19367 - 40 -0.00695 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 41 0.02252 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 42 -0.16303 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 43 -0.12220 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 44 -0.00000 0.39014 0.00255 0.44627 -0.25898 0.19367 - 45 -0.19586 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 46 -0.19586 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 47 -0.00520 0.00000 -0.00000 0.00000 0.00000 0.00000 - 48 0.01990 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 49 -0.13861 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 50 -0.06792 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 51 -0.00000 -0.23639 0.00660 0.37009 0.38253 -0.46592 - 52 -0.00520 0.00000 -0.00000 0.00000 0.00000 0.00000 - 53 0.01990 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 54 0.13861 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 55 0.06792 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 31 -0.23795 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 32 -0.23795 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 33 0.12909 0.00000 0.00000 -0.00000 0.00000 0.00000 + 34 0.12909 0.00000 0.00000 -0.00000 0.00000 0.00000 + 35 -0.00695 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 36 0.02252 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 37 0.16303 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 38 0.12220 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 39 0.00000 -0.39014 -0.00255 0.44627 0.25898 0.19367 + 40 -0.00695 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 41 0.02252 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 42 -0.16303 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 43 -0.12220 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 44 0.00000 0.39014 0.00255 0.44627 -0.25898 0.19367 + 45 -0.19586 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 46 -0.19586 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 47 -0.00520 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 48 0.01990 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 49 -0.13861 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 50 -0.06792 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 51 0.00000 -0.23639 0.00660 0.37009 0.38253 -0.46592 + 52 -0.00520 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 53 0.01990 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 54 0.13861 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 55 0.06792 0.00000 -0.00000 0.00000 0.00000 0.00000 56 0.00000 0.23639 -0.00660 0.37009 -0.38253 -0.46592 - 57 -0.14106 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 58 -0.14106 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 59 0.11639 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 60 0.11639 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 57 -0.14106 0.00000 0.00000 0.00000 0.00000 0.00000 + 58 -0.14106 0.00000 0.00000 0.00000 0.00000 0.00000 + 59 0.11639 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 60 0.11639 0.00000 -0.00000 -0.00000 0.00000 0.00000 37 38 39 40 41 42 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 0.00000 -0.00000 0.00000 -0.07895 -0.04667 - 2 0.00000 -0.00000 0.00000 -0.00000 0.46642 0.27307 - 3 0.00000 -0.00000 -0.00000 0.00000 0.09304 0.30472 - 4 0.00000 0.00000 -0.00000 -0.00000 0.29930 0.21038 - 5 -0.04155 0.03632 0.47989 0.54234 -0.00000 0.00000 - 6 -0.00000 0.00000 -0.00000 0.00000 -0.07895 0.04667 - 7 0.00000 -0.00000 0.00000 0.00000 0.46642 -0.27307 - 8 -0.00000 0.00000 0.00000 0.00000 -0.09304 0.30472 - 9 -0.00000 0.00000 0.00000 -0.00000 -0.29930 0.21038 + 1 -0.00000 0.00000 0.00000 -0.00000 -0.07895 -0.04667 + 2 0.00000 -0.00000 0.00000 0.00000 0.46641 0.27307 + 3 -0.00000 0.00000 0.00000 -0.00000 0.09304 0.30472 + 4 -0.00000 -0.00000 -0.00000 -0.00000 0.29930 0.21038 + 5 -0.04155 0.03632 0.47989 0.54234 0.00000 -0.00000 + 6 -0.00000 0.00000 0.00000 -0.00000 -0.07895 0.04667 + 7 0.00000 -0.00000 0.00000 0.00000 0.46641 -0.27307 + 8 0.00000 -0.00000 -0.00000 0.00000 -0.09304 0.30472 + 9 0.00000 0.00000 0.00000 0.00000 -0.29930 0.21038 10 -0.04155 -0.03632 0.47989 -0.54234 -0.00000 0.00000 11 0.00000 -0.00000 -0.00000 0.00000 -0.02282 0.01451 - 12 -0.00000 0.00000 0.00000 0.00000 0.14030 -0.08274 - 13 -0.00000 0.00000 0.00000 -0.00000 0.29415 0.34594 - 14 0.00000 0.00000 -0.00000 0.00000 0.02776 0.04082 + 12 -0.00000 0.00000 0.00000 -0.00000 0.14030 -0.08274 + 13 -0.00000 0.00000 0.00000 0.00000 0.29415 0.34594 + 14 -0.00000 -0.00000 -0.00000 0.00000 0.02776 0.04082 15 0.58690 -0.24642 -0.15492 -0.46012 0.00000 -0.00000 16 0.00000 -0.00000 -0.00000 0.00000 -0.02282 -0.01451 - 17 -0.00000 0.00000 0.00000 0.00000 0.14030 0.08274 - 18 0.00000 0.00000 -0.00000 -0.00000 -0.29415 0.34594 - 19 -0.00000 0.00000 0.00000 0.00000 -0.02776 0.04082 - 20 0.58690 0.24642 -0.15492 0.46012 0.00000 0.00000 - 21 -0.00000 0.00000 0.00000 0.00000 -0.04060 -0.01934 - 22 0.00000 -0.00000 -0.00000 -0.00000 0.24602 0.11403 - 23 0.00000 0.00000 0.00000 -0.00000 0.20276 0.26717 + 17 -0.00000 0.00000 0.00000 -0.00000 0.14030 0.08274 + 18 0.00000 -0.00000 -0.00000 -0.00000 -0.29415 0.34594 + 19 0.00000 0.00000 0.00000 -0.00000 -0.02776 0.04082 + 20 0.58690 0.24642 -0.15492 0.46012 -0.00000 -0.00000 + 21 -0.00000 -0.00000 0.00000 -0.00000 -0.04060 -0.01934 + 22 0.00000 0.00000 -0.00000 0.00000 0.24602 0.11403 + 23 -0.00000 -0.00000 -0.00000 0.00000 0.20276 0.26717 24 -0.00000 -0.00000 -0.00000 0.00000 -0.09531 0.06571 - 25 -0.54790 0.23731 -0.18987 0.46236 0.00000 0.00000 - 26 -0.00000 0.00000 0.00000 0.00000 -0.04060 0.01934 - 27 0.00000 -0.00000 -0.00000 -0.00000 0.24602 -0.11403 - 28 -0.00000 0.00000 -0.00000 -0.00000 -0.20276 0.26717 - 29 0.00000 -0.00000 0.00000 -0.00000 0.09531 0.06571 + 25 -0.54790 0.23731 -0.18987 0.46236 -0.00000 0.00000 + 26 -0.00000 -0.00000 0.00000 -0.00000 -0.04060 0.01934 + 27 0.00000 0.00000 -0.00000 0.00000 0.24602 -0.11403 + 28 0.00000 0.00000 0.00000 -0.00000 -0.20276 0.26717 + 29 0.00000 0.00000 0.00000 -0.00000 0.09531 0.06571 30 -0.54790 -0.23731 -0.18987 -0.46236 0.00000 -0.00000 - 31 -0.00000 0.00000 -0.00000 0.00000 -0.39155 -0.30897 + 31 -0.00000 -0.00000 -0.00000 0.00000 -0.39155 -0.30897 32 -0.00000 -0.00000 -0.00000 0.00000 -0.39155 0.30897 - 33 0.00000 0.00000 -0.00000 -0.00000 -0.40108 -0.23050 - 34 0.00000 0.00000 -0.00000 0.00000 -0.40108 0.23050 - 35 -0.00000 0.00000 0.00000 0.00000 0.05809 -0.01552 - 36 0.00000 0.00000 -0.00000 -0.00000 -0.33416 0.09189 - 37 0.00000 0.00000 -0.00000 -0.00000 -0.24389 0.33116 - 38 0.00000 0.00000 0.00000 0.00000 -0.36996 0.27297 - 39 0.00421 -0.49063 -0.52782 0.29533 0.00000 -0.00000 - 40 -0.00000 -0.00000 0.00000 0.00000 0.05809 0.01552 - 41 -0.00000 -0.00000 -0.00000 -0.00000 -0.33416 -0.09189 - 42 -0.00000 -0.00000 0.00000 0.00000 0.24389 0.33116 - 43 -0.00000 -0.00000 -0.00000 -0.00000 0.36996 0.27297 - 44 0.00421 0.49063 -0.52782 -0.29533 0.00000 0.00000 - 45 -0.00000 0.00000 -0.00000 0.00000 -0.12733 0.36937 - 46 -0.00000 0.00000 -0.00000 0.00000 -0.12733 -0.36937 - 47 -0.00000 0.00000 -0.00000 0.00000 -0.03649 0.00857 - 48 0.00000 -0.00000 0.00000 0.00000 0.20887 -0.05219 - 49 -0.00000 -0.00000 -0.00000 0.00000 -0.15353 0.30964 - 50 0.00000 -0.00000 -0.00000 -0.00000 -0.11806 0.13760 + 33 -0.00000 -0.00000 0.00000 -0.00000 -0.40108 -0.23050 + 34 -0.00000 -0.00000 0.00000 -0.00000 -0.40108 0.23050 + 35 0.00000 -0.00000 -0.00000 0.00000 0.05809 -0.01552 + 36 -0.00000 0.00000 0.00000 -0.00000 -0.33416 0.09189 + 37 0.00000 0.00000 0.00000 0.00000 -0.24389 0.33116 + 38 -0.00000 -0.00000 -0.00000 0.00000 -0.36996 0.27297 + 39 0.00421 -0.49063 -0.52782 0.29533 -0.00000 0.00000 + 40 0.00000 -0.00000 -0.00000 0.00000 0.05809 0.01552 + 41 -0.00000 0.00000 0.00000 -0.00000 -0.33416 -0.09189 + 42 -0.00000 -0.00000 -0.00000 -0.00000 0.24389 0.33116 + 43 0.00000 0.00000 0.00000 -0.00000 0.36996 0.27297 + 44 0.00421 0.49063 -0.52782 -0.29533 0.00000 -0.00000 + 45 -0.00000 0.00000 0.00000 0.00000 -0.12733 0.36937 + 46 -0.00000 0.00000 0.00000 0.00000 -0.12733 -0.36937 + 47 -0.00000 0.00000 0.00000 -0.00000 -0.03649 0.00857 + 48 0.00000 -0.00000 -0.00000 0.00000 0.20887 -0.05219 + 49 -0.00000 0.00000 0.00000 0.00000 -0.15353 0.30964 + 50 -0.00000 -0.00000 -0.00000 0.00000 -0.11806 0.13760 51 0.01858 0.54633 0.41051 -0.17015 -0.00000 0.00000 - 52 -0.00000 0.00000 -0.00000 0.00000 -0.03649 -0.00857 - 53 0.00000 -0.00000 0.00000 0.00000 0.20887 0.05219 - 54 0.00000 0.00000 0.00000 -0.00000 0.15353 0.30964 - 55 -0.00000 -0.00000 0.00000 0.00000 0.11806 0.13760 + 52 -0.00000 0.00000 0.00000 -0.00000 -0.03649 -0.00857 + 53 0.00000 -0.00000 -0.00000 0.00000 0.20887 0.05219 + 54 0.00000 -0.00000 -0.00000 -0.00000 0.15353 0.30964 + 55 0.00000 0.00000 0.00000 -0.00000 0.11806 0.13760 56 0.01858 -0.54633 0.41051 0.17015 -0.00000 -0.00000 - 57 -0.00000 0.00000 0.00000 0.00000 0.13628 -0.31813 - 58 -0.00000 0.00000 0.00000 0.00000 0.13628 0.31813 - 59 0.00000 0.00000 -0.00000 -0.00000 -0.33511 0.29438 - 60 0.00000 0.00000 -0.00000 0.00000 -0.33511 -0.29438 + 57 -0.00000 0.00000 -0.00000 -0.00000 0.13627 -0.31813 + 58 -0.00000 0.00000 -0.00000 -0.00000 0.13627 0.31813 + 59 0.00000 -0.00000 -0.00000 -0.00000 -0.33511 0.29438 + 60 0.00000 -0.00000 -0.00000 -0.00000 -0.33511 -0.29438 43 44 45 46 47 48 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.05912 0.03107 0.07466 -0.08689 -0.01067 -0.11957 + 1 -0.05912 0.03107 0.07466 -0.08689 -0.01068 -0.11957 2 0.34235 -0.18965 -0.45359 0.51966 0.07378 0.73398 - 3 -0.16822 -0.13099 0.32112 -0.13953 -0.10301 0.06772 - 4 0.46090 0.10603 -0.11826 -0.10946 -0.17476 -0.15322 - 5 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 6 0.05912 0.03107 0.07466 0.08689 0.01067 -0.11957 + 3 -0.16823 -0.13099 0.32112 -0.13953 -0.10301 0.06772 + 4 0.46090 0.10603 -0.11826 -0.10947 -0.17476 -0.15323 + 5 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 6 0.05912 0.03107 0.07466 0.08689 0.01068 -0.11957 7 -0.34235 -0.18965 -0.45359 -0.51966 -0.07378 0.73398 - 8 -0.16822 0.13099 -0.32112 -0.13953 -0.10301 -0.06772 - 9 0.46090 -0.10603 0.11826 -0.10946 -0.17476 0.15322 - 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 8 -0.16823 0.13099 -0.32112 -0.13953 -0.10301 -0.06772 + 9 0.46090 -0.10603 0.11826 -0.10947 -0.17476 0.15323 + 10 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 11 0.02505 -0.07692 0.06167 0.08510 0.03787 0.10710 - 12 -0.15001 0.47353 -0.37819 -0.50928 -0.23783 -0.67020 + 12 -0.15002 0.47353 -0.37819 -0.50928 -0.23783 -0.67019 13 -0.17610 -0.02401 0.01192 -0.11554 -0.27443 0.04051 - 14 0.26919 0.13100 0.25304 -0.08853 -0.28244 -0.22157 - 15 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 14 0.26919 0.13100 0.25304 -0.08854 -0.28244 -0.22157 + 15 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 16 -0.02505 -0.07692 0.06167 -0.08510 -0.03787 0.10710 - 17 0.15001 0.47353 -0.37819 0.50928 0.23783 -0.67020 + 17 0.15002 0.47353 -0.37819 0.50928 0.23783 -0.67019 18 -0.17610 0.02401 -0.01192 -0.11554 -0.27443 -0.04051 - 19 0.26919 -0.13100 -0.25304 -0.08853 -0.28244 0.22157 - 20 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 19 0.26919 -0.13100 -0.25304 -0.08854 -0.28244 0.22157 + 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 21 -0.01485 -0.01858 -0.12951 -0.10810 0.01737 0.03053 - 22 0.08524 0.11886 0.79871 0.65730 -0.11696 -0.19368 - 23 -0.28980 0.16266 -0.10239 -0.03249 -0.25092 0.27695 - 24 0.30068 -0.23862 -0.02058 -0.22081 -0.05532 0.25449 - 25 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 22 0.08525 0.11885 0.79871 0.65730 -0.11696 -0.19368 + 23 -0.28980 0.16266 -0.10239 -0.03248 -0.25092 0.27695 + 24 0.30068 -0.23862 -0.02059 -0.22081 -0.05532 0.25449 + 25 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 26 0.01485 -0.01858 -0.12951 0.10810 -0.01737 0.03053 - 27 -0.08524 0.11886 0.79871 -0.65730 0.11696 -0.19368 - 28 -0.28980 -0.16266 0.10239 -0.03249 -0.25092 -0.27695 - 29 0.30068 0.23862 0.02058 -0.22081 -0.05532 -0.25449 - 30 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 31 0.14896 -0.31781 0.12023 0.42891 0.49794 0.35272 - 32 -0.14896 -0.31781 0.12023 -0.42891 -0.49794 0.35272 - 33 0.40000 -0.30708 -0.30878 -0.42842 0.18498 0.07581 - 34 -0.40000 -0.30708 -0.30878 0.42842 -0.18498 0.07581 + 27 -0.08525 0.11885 0.79871 -0.65730 0.11696 -0.19368 + 28 -0.28980 -0.16266 0.10239 -0.03248 -0.25092 -0.27695 + 29 0.30068 0.23862 0.02059 -0.22081 -0.05532 -0.25449 + 30 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 31 0.14897 -0.31781 0.12022 0.42891 0.49794 0.35271 + 32 -0.14897 -0.31781 0.12022 -0.42891 -0.49794 0.35271 + 33 0.40000 -0.30708 -0.30878 -0.42843 0.18498 0.07581 + 34 -0.40000 -0.30708 -0.30878 0.42843 -0.18498 0.07581 35 -0.09943 0.05744 -0.03439 -0.02074 0.07170 0.08184 36 0.58578 -0.34622 0.21034 0.13167 -0.45463 -0.49680 37 -0.00933 0.31828 -0.15556 -0.12426 0.26895 0.09540 - 38 0.33610 0.06246 0.22740 0.11143 -0.02791 -0.01503 - 39 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 38 0.33610 0.06246 0.22740 0.11142 -0.02791 -0.01503 + 39 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 40 0.09943 0.05744 -0.03439 0.02074 -0.07170 0.08184 41 -0.58578 -0.34622 0.21034 -0.13167 0.45463 -0.49680 42 -0.00933 -0.31828 0.15556 -0.12426 0.26895 -0.09540 - 43 0.33610 -0.06246 -0.22740 0.11143 -0.02791 0.01503 - 44 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 45 -0.25672 0.55393 -0.22589 -0.13131 0.49006 0.33992 - 46 0.25672 0.55393 -0.22589 0.13131 -0.49006 0.33992 - 47 0.03316 -0.01629 -0.07943 -0.06990 0.03517 -0.07492 + 43 0.33610 -0.06246 -0.22740 0.11142 -0.02791 0.01503 + 44 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 45 -0.25673 0.55393 -0.22589 -0.13131 0.49006 0.33992 + 46 0.25673 0.55393 -0.22589 0.13131 -0.49006 0.33992 + 47 0.03316 -0.01628 -0.07943 -0.06990 0.03517 -0.07492 48 -0.18680 0.09039 0.49936 0.43755 -0.22692 0.45817 - 49 0.06781 0.29619 0.18916 0.21051 0.03743 0.09301 - 50 0.05796 0.21542 -0.01774 -0.06424 0.34089 0.04390 - 51 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 52 -0.03316 -0.01629 -0.07943 0.06990 -0.03517 -0.07492 + 49 0.06781 0.29619 0.18916 0.21051 0.03744 0.09301 + 50 0.05796 0.21542 -0.01774 -0.06425 0.34089 0.04390 + 51 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 52 -0.03316 -0.01628 -0.07943 0.06990 -0.03517 -0.07492 53 0.18680 0.09039 0.49936 -0.43755 0.22692 0.45817 - 54 0.06781 -0.29619 -0.18916 0.21051 0.03743 -0.09301 - 55 0.05796 -0.21542 0.01774 -0.06424 0.34089 -0.04390 - 56 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 54 0.06781 -0.29619 -0.18916 0.21051 0.03744 -0.09301 + 55 0.05796 -0.21542 0.01774 -0.06425 0.34089 -0.04390 + 56 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 57 -0.01828 -0.37413 -0.40227 -0.37268 -0.01664 -0.33080 58 0.01828 -0.37413 -0.40227 0.37268 0.01664 -0.33080 - 59 0.21500 0.24742 -0.21369 -0.22470 0.43446 -0.17764 - 60 -0.21500 0.24742 -0.21369 0.22470 -0.43446 -0.17764 + 59 0.21499 0.24743 -0.21368 -0.22470 0.43446 -0.17764 + 60 -0.21499 0.24743 -0.21368 0.22470 -0.43446 -0.17764 49 50 51 52 53 54 ----------- ----------- ----------- ----------- ----------- ----------- 1 0.05669 0.02296 0.05109 -0.00141 -0.00151 0.06265 - 2 -0.34303 -0.14465 -0.35055 0.01740 0.00496 -0.43387 - 3 -0.18986 -0.31777 0.13407 -0.55031 0.15748 -0.20117 + 2 -0.34302 -0.14465 -0.35055 0.01740 0.00496 -0.43387 + 3 -0.18987 -0.31777 0.13407 -0.55031 0.15748 -0.20117 4 0.11767 0.01443 0.61863 0.07288 0.01967 -0.03991 - 5 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 5 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 6 -0.05669 0.02296 0.05109 0.00141 -0.00151 -0.06265 - 7 0.34303 -0.14465 -0.35055 -0.01740 0.00496 0.43387 - 8 -0.18986 0.31777 -0.13407 -0.55031 -0.15748 -0.20117 + 7 0.34302 -0.14465 -0.35055 -0.01740 0.00496 0.43387 + 8 -0.18987 0.31777 -0.13407 -0.55031 -0.15748 -0.20117 9 0.11767 -0.01443 -0.61863 0.07288 -0.01967 -0.03991 - 10 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 10 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 11 -0.05892 -0.08610 -0.00214 -0.09572 -0.01017 0.04562 - 12 0.36453 0.54863 0.01709 0.64381 0.05848 -0.30950 - 13 -0.14726 -0.13430 -0.44837 0.05813 0.54525 -0.22223 + 12 0.36452 0.54863 0.01709 0.64381 0.05848 -0.30950 + 13 -0.14726 -0.13430 -0.44837 0.05813 0.54524 -0.22223 14 0.16724 -0.14752 0.11844 0.13042 0.16929 0.71118 - 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 15 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 16 0.05892 -0.08610 -0.00214 0.09572 -0.01017 -0.04562 - 17 -0.36453 0.54863 0.01709 -0.64381 0.05848 0.30950 - 18 -0.14726 0.13430 0.44837 0.05813 -0.54525 -0.22223 + 17 -0.36452 0.54863 0.01709 -0.64381 0.05848 0.30950 + 18 -0.14726 0.13430 0.44837 0.05813 -0.54524 -0.22223 19 0.16724 0.14752 -0.11844 0.13042 -0.16929 0.71118 - 20 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 20 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 21 0.04740 0.08791 -0.03727 -0.04223 0.01331 -0.08617 - 22 -0.28840 -0.56245 0.24328 0.29275 -0.07833 0.59126 + 22 -0.28839 -0.56245 0.24327 0.29275 -0.07833 0.59127 23 -0.12595 -0.05138 -0.34153 -0.16778 -0.50724 0.36764 24 0.08126 -0.17703 0.07284 -0.47539 0.36806 0.42281 - 25 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 25 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 26 -0.04740 0.08791 -0.03727 0.04223 0.01331 0.08617 - 27 0.28840 -0.56245 0.24328 -0.29275 -0.07833 -0.59126 + 27 0.28839 -0.56245 0.24327 -0.29275 -0.07833 -0.59127 28 -0.12595 0.05138 0.34153 -0.16778 0.50724 0.36764 29 0.08126 0.17703 -0.07284 -0.47539 -0.36806 0.42281 - 30 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 31 -0.09496 -0.10483 0.29620 -0.35020 -0.49694 0.11116 - 32 0.09496 -0.10483 0.29620 0.35020 -0.49694 -0.11116 - 33 0.36395 0.26185 0.13358 -0.26005 0.55127 -0.27099 - 34 -0.36395 0.26185 0.13358 0.26005 0.55127 0.27099 + 30 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 31 -0.09495 -0.10484 0.29620 -0.35020 -0.49693 0.11116 + 32 0.09495 -0.10484 0.29620 0.35020 -0.49693 -0.11116 + 33 0.36395 0.26186 0.13358 -0.26006 0.55127 -0.27099 + 34 -0.36395 0.26186 0.13358 0.26006 0.55127 0.27099 35 0.06992 -0.02689 0.08763 0.02227 0.04597 0.05809 - 36 -0.42680 0.19422 -0.56943 -0.16778 -0.31511 -0.39728 + 36 -0.42679 0.19423 -0.56943 -0.16778 -0.31512 -0.39728 37 0.01336 -0.06614 0.12132 -0.22316 -0.12106 0.04644 - 38 0.13327 0.07280 -0.01885 0.06096 0.15838 0.00738 - 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 38 0.13328 0.07280 -0.01885 0.06096 0.15838 0.00738 + 39 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 40 -0.06992 -0.02689 0.08763 -0.02227 0.04597 -0.05809 - 41 0.42680 0.19422 -0.56943 0.16778 -0.31511 0.39728 + 41 0.42679 0.19423 -0.56943 0.16778 -0.31512 0.39728 42 0.01336 0.06614 -0.12132 -0.22316 0.12106 0.04644 - 43 0.13327 -0.07280 0.01885 0.06096 -0.15838 0.00738 - 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 45 0.26533 -0.09841 0.32565 -0.13155 0.08489 0.21688 - 46 -0.26533 -0.09841 0.32565 0.13155 0.08489 -0.21688 + 43 0.13328 -0.07280 0.01885 0.06096 -0.15838 0.00738 + 44 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 45 0.26533 -0.09841 0.32565 -0.13156 0.08489 0.21688 + 46 -0.26533 -0.09841 0.32565 0.13156 0.08489 -0.21688 47 -0.12533 -0.08598 -0.03056 0.00387 -0.04390 -0.00128 48 0.78840 0.54860 0.19172 -0.01271 0.29934 0.00550 - 49 0.17469 0.16067 -0.30921 -0.02338 -0.05668 -0.21232 + 49 0.17470 0.16067 -0.30921 -0.02338 -0.05668 -0.21232 50 -0.00162 -0.40796 -0.08294 0.46400 0.24904 0.12473 - 51 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 51 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 52 0.12533 -0.08598 -0.03056 -0.00387 -0.04390 0.00128 53 -0.78840 0.54860 0.19172 0.01271 0.29934 -0.00550 - 54 0.17469 -0.16067 0.30921 -0.02338 0.05668 -0.21232 + 54 0.17470 -0.16067 0.30921 -0.02338 0.05668 -0.21232 55 -0.00162 0.40796 0.08294 0.46400 -0.24904 0.12473 - 56 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 57 -0.59001 -0.37429 0.16475 -0.02079 -0.16965 0.18513 - 58 0.59001 -0.37429 0.16475 0.02079 -0.16965 -0.18513 - 59 -0.34519 -0.57023 -0.24898 0.37936 0.05481 0.03538 - 60 0.34519 -0.57023 -0.24898 -0.37936 0.05481 -0.03538 + 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 57 -0.59001 -0.37429 0.16475 -0.02079 -0.16964 0.18513 + 58 0.59001 -0.37429 0.16475 0.02079 -0.16964 -0.18513 + 59 -0.34518 -0.57023 -0.24898 0.37936 0.05481 0.03538 + 60 0.34518 -0.57023 -0.24898 -0.37936 0.05481 -0.03538 55 56 57 58 59 60 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.08025 0.01525 0.01897 0.02107 -0.00570 0.04148 + 1 -0.08025 0.01525 0.01897 0.02108 -0.00570 0.04148 2 0.54677 -0.09361 -0.12172 -0.14885 0.03784 -0.31154 3 -0.19672 -0.12952 0.12700 -0.43949 0.69079 0.16309 4 0.02494 -0.28225 -0.38107 0.13957 -0.04690 0.64441 - 5 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 6 0.08025 0.01525 0.01897 -0.02107 -0.00570 -0.04148 + 5 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 6 0.08025 0.01525 0.01897 -0.02108 -0.00570 -0.04148 7 -0.54677 -0.09361 -0.12172 0.14885 0.03784 0.31154 8 -0.19672 0.12952 -0.12700 -0.43949 -0.69079 0.16309 9 0.02494 0.28225 0.38107 0.13957 0.04690 0.64441 - 10 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 11 -0.00153 0.02528 -0.01839 -0.04504 0.00563 -0.04761 - 12 0.02119 -0.17944 0.13173 0.32652 -0.04002 0.34748 - 13 0.24845 0.22177 0.11856 -0.20031 0.23764 -0.56808 - 14 -0.02656 0.42210 -0.35841 0.12487 -0.53577 -0.24010 - 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 16 0.00153 0.02528 -0.01839 0.04504 0.00563 0.04761 - 17 -0.02119 -0.17944 0.13173 -0.32652 -0.04002 -0.34748 - 18 0.24845 -0.22177 -0.11856 -0.20031 -0.23764 -0.56808 - 19 -0.02656 -0.42210 0.35841 0.12487 0.53577 -0.24010 - 20 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 10 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 11 -0.00154 0.02528 -0.01839 -0.04504 0.00563 -0.04761 + 12 0.02119 -0.17944 0.13173 0.32652 -0.04001 0.34748 + 13 0.24845 0.22178 0.11856 -0.20031 0.23764 -0.56808 + 14 -0.02656 0.42211 -0.35841 0.12487 -0.53577 -0.24010 + 15 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 16 0.00154 0.02528 -0.01839 0.04504 0.00563 0.04761 + 17 -0.02119 -0.17944 0.13173 -0.32652 -0.04001 -0.34748 + 18 0.24845 -0.22178 -0.11856 -0.20031 -0.23764 -0.56808 + 19 -0.02656 -0.42211 0.35841 0.12487 0.53577 -0.24010 + 20 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 21 -0.03757 -0.03388 0.01232 -0.02016 -0.00515 0.05278 22 0.25226 0.23346 -0.09102 0.15041 0.03565 -0.38732 23 -0.32791 0.15496 0.02682 -0.03057 -0.43450 0.49767 24 -0.11443 0.34309 -0.42664 -0.21385 -0.41049 -0.39291 - 25 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 26 0.03757 -0.03388 0.01232 0.02016 -0.00515 -0.05278 27 -0.25226 0.23346 -0.09102 -0.15041 0.03565 0.38732 28 -0.32791 -0.15496 -0.02682 -0.03057 0.43450 0.49767 29 -0.11443 -0.34309 0.42664 -0.21385 0.41049 -0.39291 - 30 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 31 -0.14147 -0.20731 -0.05529 -0.01417 -0.01057 0.28810 32 0.14147 -0.20731 -0.05529 0.01417 -0.01057 -0.28810 - 33 0.00011 -0.03411 -0.20663 -0.11500 0.04545 -0.29513 - 34 -0.00011 -0.03411 -0.20663 0.11500 0.04545 0.29513 + 33 0.00011 -0.03410 -0.20663 -0.11500 0.04545 -0.29513 + 34 -0.00011 -0.03410 -0.20663 0.11500 0.04545 0.29513 35 0.03194 -0.03636 0.04163 -0.05991 -0.02661 -0.01036 - 36 -0.23533 0.25961 -0.32547 0.45710 0.21378 0.06060 + 36 -0.23532 0.25961 -0.32547 0.45710 0.21378 0.06061 37 0.32338 0.55936 -0.05909 0.61590 0.43631 0.01940 - 38 0.46379 0.10984 0.66573 -0.46017 -0.32364 0.37370 - 39 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 38 0.46378 0.10984 0.66573 -0.46017 -0.32364 0.37370 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 40 -0.03194 -0.03636 0.04163 0.05991 -0.02661 0.01036 - 41 0.23533 0.25961 -0.32547 -0.45710 0.21378 -0.06060 + 41 0.23532 0.25961 -0.32547 -0.45710 0.21378 -0.06061 42 0.32338 -0.55936 0.05909 0.61590 -0.43631 0.01940 - 43 0.46379 -0.10984 -0.66573 -0.46017 0.32364 0.37370 - 44 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 43 0.46378 -0.10984 -0.66573 -0.46017 0.32364 0.37370 + 44 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 45 0.39156 0.33133 0.18744 0.18679 0.16786 0.05627 46 -0.39156 0.33133 0.18744 -0.18679 0.16786 -0.05627 47 -0.02068 0.03125 -0.04593 0.07045 0.04153 -0.01064 48 0.14430 -0.23060 0.34380 -0.53202 -0.32480 0.08974 - 49 -0.55086 -0.14182 -0.60500 0.38891 0.25982 -0.24067 + 49 -0.55085 -0.14181 -0.60500 0.38891 0.25982 -0.24067 50 -0.25138 -0.55867 0.15010 -0.55017 -0.32711 0.00482 - 51 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 52 0.02068 0.03125 -0.04593 -0.07045 0.04153 0.01064 53 -0.14430 -0.23060 0.34380 0.53202 -0.32480 -0.08974 - 54 -0.55086 0.14182 0.60500 0.38891 -0.25982 -0.24067 + 54 -0.55085 0.14181 0.60500 0.38891 -0.25982 -0.24067 55 -0.25138 0.55867 -0.15010 -0.55017 0.32711 0.00482 - 56 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 56 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 57 0.38522 0.27781 0.30222 -0.00557 -0.03612 0.15326 58 -0.38522 0.27781 0.30222 0.00557 -0.03612 -0.15326 59 -0.37195 -0.35322 -0.15246 -0.10611 -0.05337 -0.07228 @@ -3032,21 +3091,18 @@ - - - - ----- ----- ---- ------- 0 0 0 0 1.000000 -35.000000 -34.000000 70.000000 - 1 1 0 0 0.000000 -0.000000 0.000000 0.000000 - 1 0 1 0 -0.000000 -0.000000 -0.000000 0.000000 + 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 + 1 0 1 0 -0.000000 -0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - 2 2 0 0 -32.088307 -138.903464 -137.980714 244.795872 - 2 1 1 0 -0.672812 3.818258 1.139957 -5.631027 + 2 2 0 0 -32.088305 -138.903463 -137.980714 244.795872 + 2 1 1 0 -0.672811 3.818259 1.139958 -5.631027 2 1 0 1 0.000000 0.000000 0.000000 0.000000 - 2 0 2 0 -6.463658 -767.762440 -735.664518 1496.963300 + 2 0 2 0 -6.463658 -767.762439 -735.664519 1496.963300 2 0 1 1 0.000000 0.000000 0.000000 0.000000 2 0 0 2 -42.019876 -21.786617 -20.233259 0.000000 - Parallel integral file used 8 records with 0 large values - - ---------------------------- Mulliken population analysis @@ -3328,7 +3384,7 @@ 19 H 0.97992 -0.12140 0.97970 0.85830 0.00022 20 H 0.97992 -0.12140 0.97970 0.85830 0.00022 - Task times cpu: 102.4s wall: 103.0s + Task times cpu: 25.6s wall: 25.7s Summary of allocated global arrays ----------------------------------- No active global arrays @@ -3339,24 +3395,30 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 1431 1431 5.97e+05 1.03e+04 4.63e+05 840 0 2.32e+04 -number of processes/call 1.00e+00 1.00e+00 1.00e+00 1.00e+00 0.00e+00 -bytes total: 8.30e+07 1.80e+07 4.86e+07 6.18e+04 0.00e+00 1.85e+05 +calls: 1441 1441 5.91e+05 1.08e+04 4.80e+05 840 0 2.34e+04 +number of processes/call 1.04e+11 4.21e+13 1.89e+13 0.00e+00 0.00e+00 +bytes total: 8.26e+07 1.83e+07 4.99e+07 8.00e+00 0.00e+00 1.87e+05 bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 Max memory consumed for GA by this process: 1872000 bytes MA_summarize_allocated_blocks: starting scan ... -MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks +heap block 'gridpts', handle 96, address 0x55a35b946798: + type of elements: double precision + number of elements: 17448000 + address of client space: 0x55a35b946800 + index for client space: 12015945 + total number of bytes: 139584112 +MA_summarize_allocated_blocks: scan completed: 1 heap block, 0 stack blocks MA usage statistics: allocation statistics: heap stack ---- ----- - current number of blocks 0 0 - maximum number of blocks 24 54 - current total bytes 0 0 - maximum total bytes 61308904 22521112 - maximum total K-bytes 61309 22522 - maximum total M-bytes 62 23 + current number of blocks 1 0 + maximum number of blocks 22 57 + current total bytes 139584112 0 + maximum total bytes 190931144 22521144 + maximum total K-bytes 190932 22522 + maximum total M-bytes 191 23 NWChem Input Module @@ -3371,32 +3433,52 @@ MA usage statistics: Please cite the following reference when publishing results obtained with NWChem: - M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, - T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, - E. Apra, T.L. Windus, W.A. de Jong - "NWChem: a comprehensive and scalable open-source - solution for large scale molecular simulations" - Comput. Phys. Commun. 181, 1477 (2010) - doi:10.1016/j.cpc.2010.04.018 + E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, + V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, + J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, + J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, + C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, + K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, + J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, + V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, + B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, + S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, + A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, + D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, + J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, + A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, + R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, + D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, + V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, + Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, + D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, + A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, + and R. J. Harrison + "NWChem: Past, present, and future + J. Chem. Phys. 152, 184102 (2020) + doi:10.1063/5.0004997 AUTHORS ------- - E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, - J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, - S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, - F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, + T. P. Straatsma, H. J. J. van Dam, D. Wang, T. L. Windus, N. P. Bauman, + A. Panyala, J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, + K. Lopata, S. A. Fischer, S. Krishnamoorthy, M. Jacquelin, W. Ma, M. Klemm, + O. Villa, Y. Chen, V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, + Eric Hermes, L. Jensen, J. E. Moore, J. C. Becca, V. Konjkov, + D. Mejia-Rodriguez, T. Risthaus, M. Malagoli, A. Marenich, A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, - P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, - D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, - A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, - A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, - H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, - K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, - H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, - A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, - R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, - K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, - A. T. Wong, Z. Zhang. - - Total times cpu: 102.6s wall: 105.2s + P.-D. Fan, A. Fonari, M. J. Williamson, R. J. Harrison, J. R. Rehr, + M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, V. Tipparaju, + M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, M. Swart, Q. Wu, + T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, + G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, + K. Tsemekhman, K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, + T. Clark, D. Clerc, H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, + E. Glendening, M. Gutowski, A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, + R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, X. Long, B. Meng, + T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, + M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. + + Total times cpu: 25.6s wall: 25.7s diff --git a/data/NWChem/basicNWChem7.0/water_ccsd(t).out b/data/NWChem/basicNWChem7.0/water_ccsd(t).out index 0a9f4ab42..1bd1049dc 100644 --- a/data/NWChem/basicNWChem7.0/water_ccsd(t).out +++ b/data/NWChem/basicNWChem7.0/water_ccsd(t).out @@ -1,17 +1,17 @@ - argument 1 = water_ccsd(t).nw + argument 1 = water_ccsd(t).in - Northwest Computational Chemistry Package (NWChem) 6.5 - ------------------------------------------------------ + Northwest Computational Chemistry Package (NWChem) 7.0.2 + -------------------------------------------------------- Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - Copyright (c) 1994-2014 + Copyright (c) 1994-2020 Pacific Northwest National Laboratory Battelle Memorial Institute @@ -36,16 +36,17 @@ Job information --------------- - hostname = boman - program = /usr/lib64/mpich/bin/nwchem_mpich - date = Sat Jan 17 16:32:40 2015 - - compiled = Sat_Dec_06_13:02:58_2014 - source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 - nwchem branch = 6.5 - nwchem revision = 26243 - ga revision = 10506 - input = water_ccsd(t).nw + hostname = osmium + program = nwchem + date = Sat Jun 4 13:36:23 2022 + + compiled = Fri_Jul_02_16:33:00_2021 + source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src + nwchem branch = 7.0.2 + nwchem revision = b9985dfa + ga revision = 5.7.2 + use scalapack = T + input = water_ccsd(t).in prefix = water. data base = ./water.db status = startup @@ -57,8 +58,8 @@ Memory information ------------------ - heap = 13107194 doubles = 100.0 Mbytes - stack = 13107199 doubles = 100.0 Mbytes + heap = 13107198 doubles = 100.0 Mbytes + stack = 13107195 doubles = 100.0 Mbytes global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) total = 52428793 doubles = 400.0 Mbytes verify = yes @@ -173,8 +174,8 @@ - library name resolved from: .nwchemrc - library file name is: + library name resolved from: environment + library file name is: @@ -267,7 +268,7 @@ a" 1 - Forming initial guess at 0.6s + Forming initial guess at 0.0s Superposition of Atomic Density Guess @@ -298,7 +299,7 @@ 6 a' 7 a' - Starting SCF solution at 0.6s + Starting SCF solution at 0.0s @@ -311,29 +312,20 @@ ---------------------------------------------- - #quartets = 1.200D+02 #integrals = 2.560D+02 #direct = 0.0% #cached =100.0% - - - Integral file = ./water.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 2 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -74.9231294979 6.62D-01 5.58D-01 0.1 - 2 -74.9634153745 1.36D-01 9.86D-02 0.1 - 3 -74.9643271715 3.30D-03 3.07D-03 0.1 - 4 -74.9643287681 1.06D-05 9.13D-06 0.1 + 1 -74.9231294979 6.62D-01 5.58D-01 0.0 + 2 -74.9634153745 1.36D-01 9.86D-02 0.0 + 3 -74.9643271715 3.30D-03 3.07D-03 0.0 + 4 -74.9643287681 1.06D-05 9.13D-06 0.0 Final RHF results ------------------ - Total SCF energy = -74.964328768146 - One-electron energy = -121.840171203713 - Two-electron energy = 37.988835531048 + Total SCF energy = -74.964328768144 + One-electron energy = -121.840171203717 + Two-electron energy = 37.988835531054 Nuclear repulsion energy = 8.887006904519 Time for solution = 0.0s @@ -368,41 +360,41 @@ ------------------------------------- Vector 2 Occ=2.000000D+00 E=-1.250645D+00 Symmetry=a' - MO Center= 5.9D-02, -2.3D-16, 1.8D-18, r^2= 5.4D-01 + MO Center= 5.9D-02, -9.2D-14, 3.7D-17, r^2= 5.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.845881 1 O s 1 -0.234218 1 O s 6 0.156450 2 H s 7 0.156450 3 H s Vector 3 Occ=2.000000D+00 E=-6.031664D-01 Symmetry=a' - MO Center= 1.5D-01, 9.8D-15, -7.4D-31, r^2= 8.6D-01 + MO Center= 1.5D-01, 3.8D-13, -4.6D-31, r^2= 8.6D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.603305 1 O py 6 -0.446376 2 H s 7 0.446376 3 H s Vector 4 Occ=2.000000D+00 E=-4.454698D-01 Symmetry=a' - MO Center= -1.4D-01, 9.0D-15, 1.1D-17, r^2= 6.4D-01 + MO Center= -1.4D-01, 2.9D-13, -2.1D-16, r^2= 6.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.774267 1 O px 2 -0.521395 1 O s 6 0.289063 2 H s 7 0.289063 3 H s Vector 5 Occ=2.000000D+00 E=-3.882145D-01 Symmetry=a" - MO Center= -1.2D-01, 7.3D-18, -1.0D-18, r^2= 4.2D-01 + MO Center= -1.2D-01, 7.3D-18, 1.7D-16, r^2= 4.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 1.000000 1 O pz Vector 6 Occ=0.000000D+00 E= 5.707483D-01 Symmetry=a' - MO Center= 3.9D-01, 1.2D-13, -1.2D-17, r^2= 1.1D+00 + MO Center= 3.9D-01, 3.2D-12, 3.2D-18, r^2= 1.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.832527 1 O s 6 -0.775801 2 H s 7 -0.775801 3 H s 3 0.732626 1 O px Vector 7 Occ=0.000000D+00 E= 7.085917D-01 Symmetry=a' - MO Center= 2.3D-01, -1.3D-13, 8.0D-31, r^2= 1.0D+00 + MO Center= 2.3D-01, -3.8D-12, -1.6D-29, r^2= 1.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.976484 1 O py 6 0.808916 2 H s @@ -437,18 +429,15 @@ 1 1 0 0 0.658406 0.000000 0.000000 1 0 1 0 -0.000000 0.000000 0.000000 - 1 0 0 1 -0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 2 2 0 0 -4.027790 0.000000 2.028215 2 1 1 0 -0.000000 0.000000 0.000000 - 2 1 0 1 -0.000000 0.000000 0.000000 + 2 1 0 1 0.000000 0.000000 0.000000 2 0 2 0 -3.193229 0.000000 4.464731 - 2 0 1 1 -0.000000 0.000000 0.000000 + 2 0 1 1 0.000000 0.000000 0.000000 2 0 0 2 -4.551067 0.000000 0.000000 - - Parallel integral file used 1 records with 0 large values - NWChem Extensible Many-Electron Theory Module --------------------------------------------- @@ -500,8 +489,8 @@ T(I) DIIS level shift : 0.00D+00 CC-T/L Amplitude update : 5-th order DIIS I/O scheme : Global Array Library - L-threshold : 0.10D-06 - EOM-threshold : 0.10D-06 + L-threshold : 0.10D-06 + EOM-threshold : 0.10D-06 no EOMCCSD initial starts read in TCE RESTART OPTIONS READ_INT: F @@ -514,6 +503,13 @@ WRITE_IN3: F SLICE: F D4D5: F + quantumc: F + qrotation: F + pwtce: F + qducc: F + nacto: 0 + nrotv: 0 + nrot: 0 Memory Information ------------------ @@ -537,18 +533,9 @@ Parallel file system coherency ......... OK - #quartets = 1.200D+02 #integrals = 2.560D+02 #direct = 0.0% #cached =100.0% - - - Integral file = ./water.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 2 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - Fock matrix recomputed 1-e file size = 37 - 1-e file name = ./water.f1 + 1-e file name = ./water.f1 Cpu & wall time / sec 0.0 0.0 tce_ao2e: fast2e=1 @@ -562,65 +549,64 @@ 2-e integrals stored in memory 2-e file size = 2390 - 2-e file name = ./water.v2 + 2-e file name = ./water.v2 Cpu & wall time / sec 0.0 0.0 - do_pt = F - do_lam_pt = F - do_cr_pt = F - do_lcr_pt = F - do_2t_pt = F T1-number-of-tasks 1 t1 file size = 8 - t1 file name = ./water.t1 + t1 file name = ./water.t1 t1 file handle = -999 T2-number-of-boxes 4 t2 file size = 136 - t2 file name = ./water.t2 + t2 file name = ./water.t2 t2 file handle = -996 - - CCSD iterations - ----------------------------------------------------------------- - Iter Residuum Correlation Cpu Wall V2*C2 - ----------------------------------------------------------------- - 1 0.0920495746753 -0.0380400906888 0.0 0.0 0.0 - 2 0.0327809448013 -0.0483582016482 0.0 0.0 0.0 - 3 0.0130397422560 -0.0515376251745 0.0 0.0 0.0 - 4 0.0055100075130 -0.0526698899679 0.0 0.0 0.0 - 5 0.0024425799129 -0.0531093782101 0.0 0.0 0.0 +CCSD iterations + --------------------------------------------------------- + Iter Residuum Correlation Cpu Wall + --------------------------------------------------------- +NEW TASK SCHEDULING +CCSD_T1_NTS --- OK +CCSD_T2_NTS --- OK + 1 0.0920495746757 -0.0380400906890 0.0 0.0 + 2 0.0327809448015 -0.0483582016484 0.0 0.0 + 3 0.0130397422561 -0.0515376251747 0.0 0.0 + 4 0.0055100075130 -0.0526698899683 0.0 0.0 + 5 0.0024425799129 -0.0531093782104 0.0 0.0 MICROCYCLE DIIS UPDATE: 5 5 - 6 0.0000746366811 -0.0534292411166 0.0 0.0 0.0 - 7 0.0000248085446 -0.0534287715874 0.0 0.0 0.0 - 8 0.0000119958916 -0.0534290587485 0.0 0.0 0.0 - 9 0.0000060344303 -0.0534292081292 0.0 0.0 0.0 - 10 0.0000030784218 -0.0534292874613 0.0 0.0 0.0 + 6 0.0000746366811 -0.0534292411169 0.0 0.0 + 7 0.0000248085446 -0.0534287715877 0.0 0.0 + 8 0.0000119958916 -0.0534290587488 0.0 0.0 + 9 0.0000060344303 -0.0534292081296 0.0 0.0 + 10 0.0000030784218 -0.0534292874616 0.0 0.0 MICROCYCLE DIIS UPDATE: 10 5 - 11 0.0000002285216 -0.0534293712898 0.0 0.0 0.0 - 12 0.0000000797694 -0.0534293880032 0.0 0.0 0.0 + 11 0.0000002285216 -0.0534293712901 0.0 0.0 + 12 0.0000000797694 -0.0534293880035 0.0 0.0 ----------------------------------------------------------------- Iterations converged - CCSD correlation energy / hartree = -0.053429388003210 - CCSD total energy / hartree = -75.017758156149029 + CCSD correlation energy / hartree = -0.053429388003519 + CCSD total energy / hartree = -75.017758156147252 Singles contributions Doubles contributions CCSD(T) Using plain CCSD(T) code - - CCSD[T] correction energy / hartree = -0.000088830388398 - CCSD[T] correlation energy / hartree = -0.053518218391608 - CCSD[T] total energy / hartree = -75.017846986537421 - CCSD(T) correction energy / hartree = -0.000076702788768 - CCSD(T) correlation energy / hartree = -0.053506090791978 - CCSD(T) total energy / hartree = -75.017834858937803 + total no. of tasks 5 + total no. of tasks / no. procs 5 + wl_min 32 1.8 + wl_max 512 2.8 + thresh for no. of tasks 5 + + CCSD[T] correction energy / hartree = -0.000088830388399 + CCSD[T] correlation energy / hartree = -0.053518218391919 + CCSD[T] total energy / hartree = -75.017846986535645 + CCSD(T) correction energy / hartree = -0.000076702788769 + CCSD(T) correlation energy / hartree = -0.053506090792288 + CCSD(T) total energy / hartree = -75.017834858936027 Cpu & wall time / sec 0.0 0.0 - Parallel integral file used 1 records with 0 large values - - - Task times cpu: 0.2s wall: 0.5s + Task times cpu: 0.1s wall: 0.1s Summary of allocated global arrays ----------------------------------- No active global arrays @@ -631,11 +617,11 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 1547 1547 8961 2028 5808 0 0 7298 -number of processes/call 1.00e+00 1.00e+00 1.00e+00 0.00e+00 0.00e+00 -bytes total: 2.25e+06 2.44e+05 1.59e+06 0.00e+00 0.00e+00 5.84e+04 +calls: 849 849 8931 1188 5808 0 0 7188 +number of processes/call 2.77e+14 4.02e+13 -7.77e+14 0.00e+00 0.00e+00 +bytes total: 2.23e+06 2.18e+05 1.59e+06 0.00e+00 0.00e+00 5.75e+04 bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 66464 bytes +Max memory consumed for GA by this process: 66520 bytes MA_summarize_allocated_blocks: starting scan ... MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: @@ -644,11 +630,11 @@ MA usage statistics: heap stack ---- ----- current number of blocks 0 0 - maximum number of blocks 18 27 + maximum number of blocks 17 36 current total bytes 0 0 - maximum total bytes 1054168 22509208 - maximum total K-bytes 1055 22510 - maximum total M-bytes 2 23 + maximum total bytes 80120 22509240 + maximum total K-bytes 81 22510 + maximum total M-bytes 1 23 NWChem Input Module @@ -663,32 +649,52 @@ MA usage statistics: Please cite the following reference when publishing results obtained with NWChem: - M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, - T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, - E. Apra, T.L. Windus, W.A. de Jong - "NWChem: a comprehensive and scalable open-source - solution for large scale molecular simulations" - Comput. Phys. Commun. 181, 1477 (2010) - doi:10.1016/j.cpc.2010.04.018 + E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, + V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, + J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, + J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, + C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, + K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, + J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, + V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, + B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, + S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, + A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, + D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, + J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, + A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, + R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, + D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, + V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, + Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, + D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, + A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, + and R. J. Harrison + "NWChem: Past, present, and future + J. Chem. Phys. 152, 184102 (2020) + doi:10.1063/5.0004997 AUTHORS ------- - E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, - J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, - S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, - F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, + T. P. Straatsma, H. J. J. van Dam, D. Wang, T. L. Windus, N. P. Bauman, + A. Panyala, J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, + K. Lopata, S. A. Fischer, S. Krishnamoorthy, M. Jacquelin, W. Ma, M. Klemm, + O. Villa, Y. Chen, V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, + Eric Hermes, L. Jensen, J. E. Moore, J. C. Becca, V. Konjkov, + D. Mejia-Rodriguez, T. Risthaus, M. Malagoli, A. Marenich, A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, - P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, - D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, - A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, - A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, - H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, - K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, - H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, - A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, - R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, - K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, - A. T. Wong, Z. Zhang. - - Total times cpu: 0.3s wall: 2.3s + P.-D. Fan, A. Fonari, M. J. Williamson, R. J. Harrison, J. R. Rehr, + M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, V. Tipparaju, + M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, M. Swart, Q. Wu, + T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, + G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, + K. Tsemekhman, K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, + T. Clark, D. Clerc, H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, + E. Glendening, M. Gutowski, A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, + R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, X. Long, B. Meng, + T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, + M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. + + Total times cpu: 0.1s wall: 0.1s diff --git a/data/NWChem/basicNWChem7.0/water_mp2.out b/data/NWChem/basicNWChem7.0/water_mp2.out index 8f463b1e3..047964607 100644 --- a/data/NWChem/basicNWChem7.0/water_mp2.out +++ b/data/NWChem/basicNWChem7.0/water_mp2.out @@ -1,17 +1,17 @@ - argument 1 = water_mp2.nw + argument 1 = water_mp2.in - Northwest Computational Chemistry Package (NWChem) 6.5 - ------------------------------------------------------ + Northwest Computational Chemistry Package (NWChem) 7.0.2 + -------------------------------------------------------- Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - Copyright (c) 1994-2014 + Copyright (c) 1994-2020 Pacific Northwest National Laboratory Battelle Memorial Institute @@ -36,16 +36,17 @@ Job information --------------- - hostname = boman - program = /usr/lib64/mpich/bin/nwchem_mpich - date = Sat Jan 17 16:32:42 2015 - - compiled = Sat_Dec_06_13:02:58_2014 - source = /builddir/build/BUILD/Nwchem-6.5.revision26243-src.2014-09-10 - nwchem branch = 6.5 - nwchem revision = 26243 - ga revision = 10506 - input = water_mp2.nw + hostname = osmium + program = nwchem + date = Sat Jun 4 13:36:23 2022 + + compiled = Fri_Jul_02_16:33:00_2021 + source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src + nwchem branch = 7.0.2 + nwchem revision = b9985dfa + ga revision = 5.7.2 + use scalapack = T + input = water_mp2.in prefix = water. data base = ./water.db status = startup @@ -57,8 +58,8 @@ Memory information ------------------ - heap = 13107194 doubles = 100.0 Mbytes - stack = 13107199 doubles = 100.0 Mbytes + heap = 13107198 doubles = 100.0 Mbytes + stack = 13107195 doubles = 100.0 Mbytes global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) total = 52428793 doubles = 400.0 Mbytes verify = yes @@ -173,8 +174,8 @@ - library name resolved from: .nwchemrc - library file name is: + library name resolved from: environment + library file name is: @@ -267,7 +268,7 @@ a" 1 - Forming initial guess at 0.4s + Forming initial guess at 0.0s Superposition of Atomic Density Guess @@ -298,7 +299,7 @@ 6 a' 7 a' - Starting SCF solution at 0.4s + Starting SCF solution at 0.0s @@ -311,30 +312,21 @@ ---------------------------------------------- - #quartets = 1.200D+02 #integrals = 2.560D+02 #direct = 0.0% #cached =100.0% - - - Integral file = ./water.aoints.0 - Record size in doubles = 65536 No. of integs per rec = 43688 - Max. records in memory = 2 Max. records in file = ******** - No. of bits per label = 8 No. of bits per value = 64 - - iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -74.9231294979 6.62D-01 5.58D-01 0.1 - 2 -74.9634153745 1.36D-01 9.86D-02 0.1 - 3 -74.9643271715 3.30D-03 3.07D-03 0.1 - 4 -74.9643287681 1.06D-05 9.13D-06 0.1 - 5 -74.9643287681 1.42D-08 1.22D-08 0.1 + 1 -74.9231294979 6.62D-01 5.58D-01 0.0 + 2 -74.9634153745 1.36D-01 9.86D-02 0.0 + 3 -74.9643271715 3.30D-03 3.07D-03 0.0 + 4 -74.9643287681 1.06D-05 9.13D-06 0.0 + 5 -74.9643287681 1.42D-08 1.22D-08 0.0 Final RHF results ------------------ - Total SCF energy = -74.964328768150 - One-electron energy = -121.840170361009 - Two-electron energy = 37.988834688340 + Total SCF energy = -74.964328768148 + One-electron energy = -121.840170361013 + Two-electron energy = 37.988834688346 Nuclear repulsion energy = 8.887006904519 Time for solution = 0.0s @@ -369,41 +361,41 @@ ------------------------------------- Vector 2 Occ=2.000000D+00 E=-1.250645D+00 Symmetry=a' - MO Center= 5.9D-02, -1.7D-15, 1.8D-18, r^2= 5.4D-01 + MO Center= 5.9D-02, -9.2D-14, 3.7D-17, r^2= 5.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.845882 1 O s 1 -0.234218 1 O s 6 0.156449 2 H s 7 0.156449 3 H s Vector 3 Occ=2.000000D+00 E=-6.031663D-01 Symmetry=a' - MO Center= 1.5D-01, 1.1D-14, 5.5D-32, r^2= 8.6D-01 + MO Center= 1.5D-01, 3.8D-13, -4.6D-31, r^2= 8.6D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.603305 1 O py 6 -0.446377 2 H s 7 0.446377 3 H s Vector 4 Occ=2.000000D+00 E=-4.454699D-01 Symmetry=a' - MO Center= -1.4D-01, 8.9D-15, 1.1D-17, r^2= 6.4D-01 + MO Center= -1.4D-01, 2.9D-13, -2.1D-16, r^2= 6.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.774267 1 O px 2 -0.521395 1 O s 6 0.289064 2 H s 7 0.289064 3 H s Vector 5 Occ=2.000000D+00 E=-3.882146D-01 Symmetry=a" - MO Center= -1.2D-01, 7.3D-18, -1.0D-18, r^2= 4.2D-01 + MO Center= -1.2D-01, 7.3D-18, 1.7D-16, r^2= 4.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 1.000000 1 O pz Vector 6 Occ=0.000000D+00 E= 5.707483D-01 Symmetry=a' - MO Center= 3.9D-01, 1.2D-13, -1.2D-17, r^2= 1.1D+00 + MO Center= 3.9D-01, 3.2D-12, 3.2D-18, r^2= 1.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.832525 1 O s 6 -0.775801 2 H s 7 -0.775801 3 H s 3 0.732626 1 O px Vector 7 Occ=0.000000D+00 E= 7.085916D-01 Symmetry=a' - MO Center= 2.3D-01, -1.3D-13, 8.0D-31, r^2= 1.0D+00 + MO Center= 2.3D-01, -3.8D-12, -1.6D-29, r^2= 1.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.976485 1 O py 6 0.808916 2 H s @@ -438,18 +430,15 @@ 1 1 0 0 0.658404 0.000000 0.000000 1 0 1 0 -0.000000 0.000000 0.000000 - 1 0 0 1 -0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 2 2 0 0 -4.027790 0.000000 2.028215 2 1 1 0 -0.000000 0.000000 0.000000 - 2 1 0 1 -0.000000 0.000000 0.000000 + 2 1 0 1 0.000000 0.000000 0.000000 2 0 2 0 -3.193231 0.000000 4.464731 - 2 0 1 1 -0.000000 0.000000 0.000000 + 2 0 1 1 0.000000 0.000000 0.000000 2 0 0 2 -4.551067 0.000000 0.000000 - - Parallel integral file used 1 records with 0 large values - NWChem MP2 Semi-direct Energy/Gradient Module --------------------------------------------- @@ -473,24 +462,34 @@ GA uses MA = F GA memory limited = T Available: - local mem= 2.62D+07 + local mem= 2.29D+07 global mem= 2.62D+07 - local disk= 1.31D+13 - 1 passes of 5: 142678 191 316. - - Semi-direct pass number 1 of 1 for RHF alpha+beta at 0.5s -Node 0 wrote 0.0 Mb in 0.0 s Agg I/O rate: 0.0 Mb/s - Done moints_semi at 0.5s - Done maket at 0.5s - Done multipass loop at 0.5s + local disk= 0.00D+00 + mp2_memr nvloc 2 + nvloc new 2 + 1 passes of 5: 2097152 191 1054. + 1 passes of 5: M 22936854 G 26214302 F 20839702. + + Semi-direct pass number 1 of 1 for RHF alpha+beta at 0.0s + vrange nnbf 28 + mp2_eaftype 10 avail_ma_in_mb 199 + EAF : mp2_eaftype filesize 10 527. + mp2_eaf for mointskh 10 +Node 0 wrote 0.0 Mb in 0.0 s Agg I/O rate: 203.6 Mb/s + Done moints_semi at 0.0s + mp2_eaftype 10 avail_ma_in_mb 189 + EAF : mp2_eaftype filesize 10 527. + mp2_eaf for kh 10 + Done maket at 0.0s + Done multipass loop at 0.0s ------------------------------------------- - SCF energy -74.964328768150 + SCF energy -74.964328768148 Correlation energy -0.038049932200 Singlet pairs -0.034770106144 Triplet pairs -0.003279826056 - Total MP2 energy -75.002378700349 + Total MP2 energy -75.002378700347 ------------------------------------------- @@ -501,28 +500,28 @@ Node 0 wrote 0.0 Mb in 0.0 s Agg I/O rate: 0.0 Mb/s Same spin scaling factor 0.333333333333 Opposite spin pairs -0.035863381496 Opposite spin scaling fact. 1.200000000000 - SCS-MP2 correlation energy -0.043764908029 - Total SCS-MP2 energy -75.008093676179 + SCS-MP2 correlation energy -0.043764908030 + Total SCS-MP2 energy -75.008093676177 --------------------------------------------------- ----------------------- Performance information ----------------------- - Timer overhead = 8.00D-07 seconds/call + Timer overhead = 2.80D-07 seconds/call Nr. of calls CPU time (s) Wall time (s) GFlops --------------- ------------------- ------------------------------ ------------------- Name Min Avg Max Min Avg Max Min Avg Max Mx/calls Min Max Sum -mp2: moin 1 1 1 1.40E-2 1.40E-2 1.40E-2 1.63E-2 1.63E-2 1.63E-2 1.63E-2 0.0 0.0 0.0 -mp2: make 1 1 1 0.0 0.0 0.0 1.50E-4 1.50E-4 1.50E-4 1.50E-4 0.0 0.0 0.0 -mp2: tota 1 1 1 3.20E-2 3.20E-2 3.20E-2 6.36E-2 6.36E-2 6.36E-2 6.36E-2 0.0 0.0 0.0 +mp2: moin 1 1 1 3.46E-3 3.46E-3 3.46E-3 3.69E-3 3.69E-3 3.69E-3 3.69E-3 0.0 0.0 0.0 +mp2: make 1 1 1 7.30E-5 7.30E-5 7.30E-5 7.29E-5 7.29E-5 7.29E-5 7.29E-5 0.0 0.0 0.0 +mp2: tota 1 1 1 6.68E-3 6.68E-3 6.68E-3 6.91E-3 6.91E-3 6.91E-3 6.91E-3 0.0 0.0 0.0 The average no. of pstat calls per process was 3.00D+00 - with a timing overhead of 2.40D-06s + with a timing overhead of 8.39D-07s - Task times cpu: 0.1s wall: 0.3s + Task times cpu: 0.0s wall: 0.0s Summary of allocated global arrays ----------------------------------- No active global arrays @@ -533,11 +532,11 @@ mp2: tota 1 1 1 3.20E-2 3.20E-2 3.20E-2 6.36E-2 6.36E-2 6.36E-2 6 ------------------------------ create destroy get put acc scatter gather read&inc -calls: 337 337 1716 906 910 0 0 287 -number of processes/call 1.00e+00 1.00e+00 1.00e+00 0.00e+00 0.00e+00 -bytes total: 1.71e+05 1.10e+05 4.58e+04 0.00e+00 0.00e+00 2.30e+03 +calls: 352 352 1698 912 900 0 0 352 +number of processes/call 2.78e+15 6.12e+13 5.17e+15 0.00e+00 0.00e+00 +bytes total: 1.71e+05 1.14e+05 4.58e+04 0.00e+00 0.00e+00 2.82e+03 bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 5448 bytes +Max memory consumed for GA by this process: 82704 bytes MA_summarize_allocated_blocks: starting scan ... MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: @@ -548,9 +547,9 @@ MA usage statistics: current number of blocks 0 0 maximum number of blocks 18 22 current total bytes 0 0 - maximum total bytes 1054168 22509208 - maximum total K-bytes 1055 22510 - maximum total M-bytes 2 23 + maximum total bytes 10491320 22509240 + maximum total K-bytes 10492 22510 + maximum total M-bytes 11 23 NWChem Input Module @@ -565,32 +564,52 @@ MA usage statistics: Please cite the following reference when publishing results obtained with NWChem: - M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, - T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, - E. Apra, T.L. Windus, W.A. de Jong - "NWChem: a comprehensive and scalable open-source - solution for large scale molecular simulations" - Comput. Phys. Commun. 181, 1477 (2010) - doi:10.1016/j.cpc.2010.04.018 + E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, + T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, + V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, + J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, + J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, + C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, + K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, + J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, + V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, + B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, + S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, + A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, + D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, + J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, + A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, + R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, + D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, + V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, + Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, + D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, + A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, + and R. J. Harrison + "NWChem: Past, present, and future + J. Chem. Phys. 152, 184102 (2020) + doi:10.1063/5.0004997 AUTHORS ------- - E. Apra, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, D. Wang, T. L. Windus, - J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, K. Lopata, - S. Krishnamoorthy, W. Ma, M. Klemm, O. Villa, Y. Chen, V. Anisimov, - F. Aquino, S. Hirata, M. T. Hackler, T. Risthaus, M. Malagoli, A. Marenich, + E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, + T. P. Straatsma, H. J. J. van Dam, D. Wang, T. L. Windus, N. P. Bauman, + A. Panyala, J. Hammond, J. Autschbach, K. Bhaskaran-Nair, J. Brabec, + K. Lopata, S. A. Fischer, S. Krishnamoorthy, M. Jacquelin, W. Ma, M. Klemm, + O. Villa, Y. Chen, V. Anisimov, F. Aquino, S. Hirata, M. T. Hackler, + Eric Hermes, L. Jensen, J. E. Moore, J. C. Becca, V. Konjkov, + D. Mejia-Rodriguez, T. Risthaus, M. Malagoli, A. Marenich, A. Otero-de-la-Roza, J. Mullin, P. Nichols, R. Peverati, J. Pittner, Y. Zhao, - P.-D. Fan, A. Fonari, R. J. Harrison, M. Dupuis, D. Silverstein, - D. M. A. Smith, J. Nieplocha, V. Tipparaju, M. Krishnan, B. E. Van Kuiken, - A. Vazquez-Mayagoitia, L. Jensen, M. Swart, Q. Wu, T. Van Voorhis, - A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, G. I. Fann, - H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, K. Tsemekhman, - K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, T. Clark, D. Clerc, - H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, E. Glendening, M. Gutowski, - A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, R. Kobayashi, R. Kutteh, Z. Lin, - R. Littlefield, X. Long, B. Meng, T. Nakajima, S. Niu, L. Pollack, M. Rosing, - K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, - A. T. Wong, Z. Zhang. - - Total times cpu: 0.1s wall: 1.3s + P.-D. Fan, A. Fonari, M. J. Williamson, R. J. Harrison, J. R. Rehr, + M. Dupuis, D. Silverstein, D. M. A. Smith, J. Nieplocha, V. Tipparaju, + M. Krishnan, B. E. Van Kuiken, A. Vazquez-Mayagoitia, M. Swart, Q. Wu, + T. Van Voorhis, A. A. Auer, M. Nooijen, L. D. Crosby, E. Brown, G. Cisneros, + G. I. Fann, H. Fruchtl, J. Garza, K. Hirao, R. A. Kendall, J. A. Nichols, + K. Tsemekhman, K. Wolinski, J. Anchell, D. E. Bernholdt, P. Borowski, + T. Clark, D. Clerc, H. Dachsel, M. J. O. Deegan, K. Dyall, D. Elwood, + E. Glendening, M. Gutowski, A. C. Hess, J. Jaffe, B. G. Johnson, J. Ju, + R. Kobayashi, R. Kutteh, Z. Lin, R. Littlefield, X. Long, B. Meng, + T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, + M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. + + Total times cpu: 0.0s wall: 0.1s From 1817e75a1b88a3d0cfa4d49289ed0a212d809e70 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sat, 2 Jul 2022 19:13:20 -0400 Subject: [PATCH 010/103] NWChem: SCF energy not needed to parse ZPVE --- cclib/parser/nwchemparser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cclib/parser/nwchemparser.py b/cclib/parser/nwchemparser.py index 19fbea35d..c92f5d5db 100644 --- a/cclib/parser/nwchemparser.py +++ b/cclib/parser/nwchemparser.py @@ -1145,8 +1145,8 @@ def extract(self, inputfile, line): utils.float(line.split()[8]) + utils.convertor(self.scfenergies[-1], "eV", "hartree"), ) - if line[1:32] == "Zero-Point correction to Energy" and hasattr(self, "scfenergies"): - self.set_attribute("zpve", utils.float(line.split()[8])) + if line[1:32] == "Zero-Point correction to Energy": + self.set_attribute("zpve", float(line.split()[8])) if line[1:29] == "Thermal correction to Energy" and hasattr(self, "scfenergies"): self.set_attribute( "electronic_thermal_energy", From ee9d8a993dd57d04ef57c6351848864742306e6b Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Mon, 4 Jul 2022 11:34:36 +0100 Subject: [PATCH 011/103] Added fine structure constant from scipy --- cclib/parser/turbomoleparser.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cclib/parser/turbomoleparser.py b/cclib/parser/turbomoleparser.py index 284ce6102..02618b469 100644 --- a/cclib/parser/turbomoleparser.py +++ b/cclib/parser/turbomoleparser.py @@ -5,6 +5,7 @@ # This file is part of cclib (http://cclib.github.io) and is distributed under # the terms of the BSD 3-Clause License. import collections +import scipy.constants """Parser for Turbomole output files.""" @@ -1011,7 +1012,7 @@ def extract(self, inputfile, line): # where a is the fine structure constant (~ 1/137) (Thanks to Uwe Huniar for this info). # Weirdly, this conversion does not seem to exactly match the bohr-magneton value # printed by turbomole... - self.append_attribute("etmagdips", [i / (0.5 * (1/137.036)) for i in (tmdm_x, tmdm_y, tmdm_z)]) + self.append_attribute("etmagdips", [i / (0.5 * scipy.constants.alpha) for i in (tmdm_x, tmdm_y, tmdm_z)]) From 5a3cf8be4356ae018a0a315c0ad612f3f074284c Mon Sep 17 00:00:00 2001 From: "Karol M. Langner" Date: Mon, 4 Jul 2022 10:21:20 -0700 Subject: [PATCH 012/103] Fixes pointed out by Eric --- ANNOUNCE | 4 +--- CHANGELOG | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/ANNOUNCE b/ANNOUNCE index d2aacd307..e2930d7db 100644 --- a/ANNOUNCE +++ b/ANNOUNCE @@ -1,6 +1,4 @@ -On behalf of the cclib development team, we are pleased to announce the release of cclib 1.7.2, which is now available for download from https://cclib.github.io. This is a major update to version 1.6.4 that drops support for Python 2, and includes several small improvements. - -WARNING: Support for Python 2 is dropped in this version. +On behalf of the cclib development team, we are pleased to announce the release of cclib 1.7.2, which is now available for download from https://cclib.github.io. This is a minor release with several small changes and improvements. cclib is an open source library, written in Python, for parsing and interpreting the results of computational chemistry packages. It currently parses output files from 15 different programs: ADF, DALTON, Firefly, GAMESS (US), GAMESS-UK, Gaussian, Jaguar, Molpro, MOLCAS, MOPAC, NWChem, ORCA, Psi, QChem and Turbomole. diff --git a/CHANGELOG b/CHANGELOG index d8cc0aa76..8f0fb3011 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,7 @@ Changes in cclib-1.7.2 Features: - * Support vibfreqs, vibirs, etenergies, etsyms, etoscs and etsecs for NWChem (BenoitDemota) + * Support vibfreqs, vibirs, etenergies, etsyms, etoscs and etsecs for NWChem (BenoitDamota) * Support temperature, pressure, enthalpy, entropy, zpve and electronic_thermal_energy for NWChem (BenoitDamota) * Better metadata support for point group detection * Updated code and test file versions to QChem 5.4 and ORCA 5.0 From e9743c2be875a090b53d45116e6f3976f1a5777d Mon Sep 17 00:00:00 2001 From: "Karol M. Langner" Date: Mon, 4 Jul 2022 22:10:16 -0700 Subject: [PATCH 013/103] Update THANKS file from 1.6.1 to 1.7.2 --- THANKS | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/THANKS b/THANKS index 4cc9a9158..97cac326a 100644 --- a/THANKS +++ b/THANKS @@ -1,12 +1,17 @@ Core developers: Eric J. Berquist +Minsik Cho +Amanda Dumi +Felipe S. Schneider Geoff Hutchison Karol M. Langner Noel M. O'Boyle (retired) Adam L. Tenderholt +Shiv Upadhyay Developers that have added at least ~1K SLOC: Sagar Gaur +Oliver Lee Sanjeed Schamnad Kunal Sharma Casper Steinmann @@ -17,31 +22,41 @@ Nuno Bandeira -- for bug reporting Björn Baumeier -- for bug reporting Dermot Brougham -- for bug reporting bwang2453 -- for patches and new features +Javier Cerezo -- for patches Avril Coghlan -- for designing the cclib logo Ramon Crehuet -- for new features +Michael D'Addario -- for fixes Björn Dahlgren -- for bug reporting Yafei Dai -- for bug reporting Abhishek Dey -- for bug reporting Matt Ernst -- for patches Clyde Fare -- for bug reporting and patches +Elliot Farrar -- for fixes +froessler -- for cleanups Christos Garoufalis -- for bug reporting Alessandro Genova - for patches and fixes -Sagar Gaur -- for patches glideht -- for bug reporting Edward Holland -- for patches Karen Hemelsoet -- for bug reporting Ian Hovell -- for bug reporting Julien Idé -- for bug reporting csjacky -- for bug reporting +Peter St. John -- for patches Russell Johnson -- for providing CCCBDB (NIST) logfiles Jerome Kieffer -- for bug reporting +kuriba -- for patches +Cyrille Lavigne - for documentation Greg Magoon -- for bug reporting and patches +Alex Maldonado -- for fixes Scott McKechnie -- for bug reporting mkrompiec -- for contributing test files mwykes -- for bug reporting and patches Alexis Otero-Calvis -- for bug reporting +Daniele Padula -- for patches Rob Paton -- for creating and running Jaguar test jobs Martin Peeks -- for patches +Waylon Peng -- for fixes and improvements +Mark Perri -- for patches Felix Plasser -- for fixes, patches and contributing files Martin Rahm -- for bug reporting Peter Reinholdt - for patches @@ -50,18 +65,24 @@ Jaime Rodríguez-Guerra - for patches Tamilmani S -- for bug reporting Melchor Sanchez -- for bug reporting Alex Schild -- for ideas and contributing test files -Felipe S. S. Schneider - for fixes Jen Schwartz -- for helping create and run Jaguar 6.0 test jobs +shijunang -- for patches +Chikashi Shinagawa -- for patches +simonaxelrod -- for fixes Tiago Silva -- for bug reporting +James E T Smith -- for fixes Pavel Solntsev -- for bug reporting +srtlg -- for fixes Ben Stein -- for patches Maxim Stolyarchuk - for patches Adam Swanson -- for bug reporting Joe Townsend -- for contributing multiple GAMESS files to test on -Shiv Upadhyay -- for patches and fixes Chengju Wang -- for bug reporting -Andrew Warden -- for bug reporting +Andrew Warden -- for bug reportint +Hubert Weißmann -- for fixes +Dustin Wheeler -- for fixes Samuel Wilson -- for bug reporting +Dave Z. -- for patches Fedor Zhuravlev -- for patches Please let us know if we have omitted someone from this list. From a270c80bd5b228b48831520b33ce4a061d797b13 Mon Sep 17 00:00:00 2001 From: "Karol M. Langner" Date: Mon, 4 Jul 2022 22:18:12 -0700 Subject: [PATCH 014/103] Updated with current core devs --- doc/sphinx/development.rst | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/doc/sphinx/development.rst b/doc/sphinx/development.rst index 06fbf9e4a..71edb8df9 100644 --- a/doc/sphinx/development.rst +++ b/doc/sphinx/development.rst @@ -161,18 +161,24 @@ Websites related to cclib Developers ========== -Besides input from a number of people `listed in the repository`_, the following developers have contributed code to cclib (in alphabetical order): +Besides input from a number of people `listed in the repository`_, the following are core developers (in alphabetical order): * `Eric Berquist`_ +* `Minsik Cho`_ +* `Amanda Dumi`_ +* `Geoff Hutchison`_ * `Karol M. Langner`_ -* `Noel O'Boyle`_ -* Christopher Rowley -* Adam Tenderholt +* `Noel O'Boyle`_ (retired) +* `Adam Tenderholt`_ * `Shiv Upadhyay`_ .. _`listed in the repository`: https://github.com/cclib/cclib/blob/master/THANKS .. _`Eric Berquist`: https://github.com/berquist +.. _`Minsik Cho`: https://github.com/mscho527 +.. _`Amanda Dumi`: https://github.com/amandadumi +.. _`Geoff Hutchison`: https://github.com/ghutchis .. _`Karol M. Langner`: https://github.com/langner -.. _`Noel O'Boyle`: https://noel.redbrick.dcu.ie/ +.. _`Noel O'Boyle`: https://github.com/baoilleach +.. _`Adam Tenderholt`: https://github.com/ATenderholt .. _`Shiv Upadhyay`: https://github.com/shivupa From c1f211e5b3743b74b7a44aebc60371ca29309caa Mon Sep 17 00:00:00 2001 From: Mark Payne Date: Wed, 21 Jul 2021 14:27:45 -0400 Subject: [PATCH 015/103] Extract rotational constants from Gaussian log files Convert to wavenumber units to standardize with mopac parser --- cclib/parser/gaussianparser.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index 6316bfc04..c5399b2ca 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -2254,5 +2254,22 @@ def extract_charges_spins(line,prop): except: pass + # Extract Rotational Constants + # Example: + # Rotational constants (GHZ): 3.13081 1.24272 0.88960 + # OR for linear molecules: + # Rotational constants (GHZ): ************ 12.73690 12.73690 + # Note: rotational constant will be converted to wavenumber units (1/cm) to standardize across parsers + if line[:27] == ' Rotational constants (GHZ)': + if not hasattr(self, "rotcons"): + self.rotcons = [] + splits = line.split() + + # Determine if the molecule is linear and only has two constants + if '*' in line: # linear molecule + self.rotcons.append([0.0]+[utils.float(splits[i])/29.9792458 for i in (-2, -1)]) + else: + self.rotcons.append([utils.float(splits[i])/29.9792458 for i in (-3, -2, -1)]) + if line[:31] == ' Normal termination of Gaussian': self.metadata['success'] = True From b22cdf55483724a26eabe1176fe61e0bcd2dbcd5 Mon Sep 17 00:00:00 2001 From: Mark Payne Date: Wed, 21 Jul 2021 12:57:23 -0400 Subject: [PATCH 016/103] Extract molecular mass from Gausian log files --- cclib/parser/gaussianparser.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index c5399b2ca..273efff1e 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -2271,5 +2271,12 @@ def extract_charges_spins(line,prop): else: self.rotcons.append([utils.float(splits[i])/29.9792458 for i in (-3, -2, -1)]) + # Extract Molecular Mass (in amu) + # Example: + # Molecular mass: 128.06260 amu. + if line[:16] == ' Molecular mass:': + splits = line.split() + self.molmass = utils.float(splits[2]) + if line[:31] == ' Normal termination of Gaussian': self.metadata['success'] = True From ec8290fbb996d28cc2c3e668aa642eb02f3044ef Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Mon, 4 Jul 2022 16:51:04 -0400 Subject: [PATCH 017/103] add new reference test for rotational constants method --- test/method/testnuclear.py | 33 +++++++++++++++++++++++++++++---- 1 file changed, 29 insertions(+), 4 deletions(-) diff --git a/test/method/testnuclear.py b/test/method/testnuclear.py index c2824cbc4..296bd46a9 100644 --- a/test/method/testnuclear.py +++ b/test/method/testnuclear.py @@ -19,6 +19,7 @@ from cclib.parser import ccData from cclib.parser import DALTON from cclib.parser import Gaussian +from cclib.parser import Molcas from cclib.parser import QChem from cclib.parser import utils @@ -44,7 +45,7 @@ def check(atomnos, formula, charge=0): check([], "") check([6, 1, 6, 1, 1, 1], "C2H4") check([1, 1, 1, 6, 1, 6], "C2H4") - + # Charges. check([8], "O", charge=0) check([8], "O(+1)", charge=1) @@ -106,7 +107,7 @@ def test_principal_moments_of_inertia_2(self): logfile where it is printed. This test was added as a follow-up to PR #790. - """ + """ data, _ = getdatafile(Gaussian, "basicGaussian16", ["dvb_ir.out"]) nuclear = Nuclear(data) nuclear.logger.setLevel(logging.ERROR) @@ -116,14 +117,17 @@ def test_principal_moments_of_inertia_2(self): np.testing.assert_allclose(pmoi, ref_pmoi, rtol=0, atol=1.0e-4) def test_rotational_constants(self): - """Testing rotational constants for two logfiles where they are - printed. + """Testing rotational constants for logfiles where they are printed. """ data, logfile = getdatafile(DALTON, "basicDALTON-2015", ["dvb_sp_hf.out"]) nuclear = Nuclear(data) nuclear.logger.setLevel(logging.ERROR) + ref_mhz = [0.0 for _ in range(3)] + ref_ghz = [0.0 for _ in range(3)] + ref_invcm = [0.0 for _ in range(3)] + with open(logfile.filename) as f: for line in f: if line.strip() == "Rotational constants": @@ -132,6 +136,7 @@ def test_rotational_constants(self): line = next(f) ref_mhz = [float(x) for x in next(f).split()[:-1]] ref_invcm = [float(x) for x in next(f).split()[:-1]] + break rotconsts_ghz = nuclear.rotational_constants('ghz') rotconsts_invcm = nuclear.rotational_constants('invcm') np.testing.assert_allclose(rotconsts_ghz * 1.0e3, ref_mhz, rtol=0, atol=1.0e-4) @@ -145,8 +150,28 @@ def test_rotational_constants(self): for line in f: if "Rotational constants (GHZ):" in line: ref_ghz = [float(x) for x in line.split()[3:]] + break rotconsts_ghz = nuclear.rotational_constants('ghz') np.testing.assert_allclose(rotconsts_ghz, ref_ghz, rtol=0, atol=1.0e-5) + data, logfile = getdatafile(Molcas, "basicOpenMolcas18.0", ["dvb_ir.out"]) + nuclear = Nuclear(data) + nuclear.logger.setLevel(logging.ERROR) + + with open(logfile.filename) as f: + for line in f: + if line.startswith(" Rotational Constants (cm-1)"): + # sort because they don't seem to come out in the same + # order, and a moment of inertia tensor isn't printed for + # comparison + ref_invcm = sorted([float(x) for x in line.split()[-3:]]) + line = next(f) + ref_ghz = sorted([float(x) for x in line.split()[-3:]]) + rotconsts_ghz = sorted(nuclear.rotational_constants('ghz')) + rotconsts_invcm = sorted(nuclear.rotational_constants('invcm')) + np.testing.assert_allclose(rotconsts_ghz, ref_ghz, rtol=0, atol=1.0e-4) + np.testing.assert_allclose(rotconsts_invcm, ref_invcm, rtol=0, atol=1.0e-4) + + if __name__ == "__main__": unittest.TextTestRunner(verbosity=2).run(unittest.makeSuite(NuclearTest)) From 04a201c736bee9d24387bd6c5a65e6e68521d433 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Mon, 4 Jul 2022 17:59:48 -0400 Subject: [PATCH 018/103] save rotational constants as "rotcons" --- cclib/parser/data.py | 2 ++ cclib/parser/gaussianparser.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/cclib/parser/data.py b/cclib/parser/data.py index 4502c780d..13a9efbcd 100644 --- a/cclib/parser/data.py +++ b/cclib/parser/data.py @@ -75,6 +75,7 @@ class ccData: optstatus -- optimization status for each set of atomic coordinates (array[1]) polarizabilities -- (dipole) polarizabilities, static or dynamic (list of arrays[2]) pressure -- pressure used for Thermochemistry (float, atm) + rotcons -- rotational constants (array[2], GHz) scancoords -- geometries of each scan step (array[3], angstroms) scanenergies -- energies of potential energy surface (list) scannames -- names of variables scanned (list of strings) @@ -157,6 +158,7 @@ class ccData: "optstatus": Attribute(numpy.ndarray, 'status', 'optimization'), "polarizabilities": Attribute(list, 'polarizabilities', 'N/A'), "pressure": Attribute(float, 'pressure', 'properties'), + "rotcons": Attribute(numpy.ndarray, 'rotational constants', 'atoms:coords:rotconsts'), "scancoords": Attribute(numpy.ndarray, 'step geometry', 'optimization:scan'), "scanenergies": Attribute(list, 'PES energies', 'optimization:scan'), "scannames": Attribute(list, 'variable names', 'optimization:scan'), diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index 273efff1e..bf2006f23 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -2267,9 +2267,9 @@ def extract_charges_spins(line,prop): # Determine if the molecule is linear and only has two constants if '*' in line: # linear molecule - self.rotcons.append([0.0]+[utils.float(splits[i])/29.9792458 for i in (-2, -1)]) + self.rotcons.append([0.0]+[float(splits[i]) for i in (-2, -1)]) else: - self.rotcons.append([utils.float(splits[i])/29.9792458 for i in (-3, -2, -1)]) + self.rotcons.append([float(splits[i]) for i in (-3, -2, -1)]) # Extract Molecular Mass (in amu) # Example: From ebff98a7d0dadc92b1c6c23a91210586ab2470aa Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Mon, 4 Jul 2022 18:03:40 -0400 Subject: [PATCH 019/103] change "rotcons" to "rotconsts" see https://github.com/cclib/cclib/issues/256#issuecomment-240615815 --- cclib/parser/data.py | 4 ++-- cclib/parser/gaussianparser.py | 8 ++++---- cclib/parser/mopacparser.py | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cclib/parser/data.py b/cclib/parser/data.py index 13a9efbcd..6d2b1409a 100644 --- a/cclib/parser/data.py +++ b/cclib/parser/data.py @@ -75,7 +75,7 @@ class ccData: optstatus -- optimization status for each set of atomic coordinates (array[1]) polarizabilities -- (dipole) polarizabilities, static or dynamic (list of arrays[2]) pressure -- pressure used for Thermochemistry (float, atm) - rotcons -- rotational constants (array[2], GHz) + rotconsts -- rotational constants (array[2], GHz) scancoords -- geometries of each scan step (array[3], angstroms) scanenergies -- energies of potential energy surface (list) scannames -- names of variables scanned (list of strings) @@ -158,7 +158,7 @@ class ccData: "optstatus": Attribute(numpy.ndarray, 'status', 'optimization'), "polarizabilities": Attribute(list, 'polarizabilities', 'N/A'), "pressure": Attribute(float, 'pressure', 'properties'), - "rotcons": Attribute(numpy.ndarray, 'rotational constants', 'atoms:coords:rotconsts'), + "rotconsts": Attribute(numpy.ndarray, 'rotational constants', 'atoms:coords:rotconsts'), "scancoords": Attribute(numpy.ndarray, 'step geometry', 'optimization:scan'), "scanenergies": Attribute(list, 'PES energies', 'optimization:scan'), "scannames": Attribute(list, 'variable names', 'optimization:scan'), diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index bf2006f23..125e9799d 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -2261,15 +2261,15 @@ def extract_charges_spins(line,prop): # Rotational constants (GHZ): ************ 12.73690 12.73690 # Note: rotational constant will be converted to wavenumber units (1/cm) to standardize across parsers if line[:27] == ' Rotational constants (GHZ)': - if not hasattr(self, "rotcons"): - self.rotcons = [] + if not hasattr(self, "rotconsts"): + self.rotconsts = [] splits = line.split() # Determine if the molecule is linear and only has two constants if '*' in line: # linear molecule - self.rotcons.append([0.0]+[float(splits[i]) for i in (-2, -1)]) + self.rotconsts.append([0.0]+[float(splits[i]) for i in (-2, -1)]) else: - self.rotcons.append([float(splits[i]) for i in (-3, -2, -1)]) + self.rotconsts.append([float(splits[i]) for i in (-3, -2, -1)]) # Extract Molecular Mass (in amu) # Example: diff --git a/cclib/parser/mopacparser.py b/cclib/parser/mopacparser.py index c22ddb059..80a89493c 100644 --- a/cclib/parser/mopacparser.py +++ b/cclib/parser/mopacparser.py @@ -172,14 +172,14 @@ def extract(self, inputfile, line): if line[0:40] == ' ROTATIONAL CONSTANTS IN CM(-1)': blankline = inputfile.next() rotinfo = inputfile.next() - if not hasattr(self, "rotcons"): - self.rotcons = [] + if not hasattr(self, "rotconsts"): + self.rotconsts = [] broken = rotinfo.split() # leave the rotational constants in Hz a = float(broken[2]) b = float(broken[5]) c = float(broken[8]) - self.rotcons.append([a, b, c]) + self.rotconsts.append([a, b, c]) # Start of the IR/Raman frequency section. # Example: From d6c204e9db9090997c6355febd6153b4d0a37c51 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Mon, 4 Jul 2022 18:05:16 -0400 Subject: [PATCH 020/103] rotconsts: tests --- cclib/parser/gaussianparser.py | 2 ++ test/data/testGeoOpt.py | 20 +++++++++++++++++++- test/data/testSP.py | 20 ++++++++++++++++++++ 3 files changed, 41 insertions(+), 1 deletion(-) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index 125e9799d..ea7c25356 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -139,6 +139,8 @@ def after_parsing(self): self.atomcoords = self.atomcoords[:last_point + 1] if hasattr(self, 'inputcoords'): self.inputcoords = self.inputcoords[:last_point + 1] + if hasattr(self, "rotconsts"): + self.rotconsts = self.rotconsts[:last_point + 1] # If we parsed high-precision vibrational displacements, overwrite # lower-precision displacements in self.vibdisps diff --git a/test/data/testGeoOpt.py b/test/data/testGeoOpt.py index 200ef20a3..0efd01fd3 100644 --- a/test/data/testGeoOpt.py +++ b/test/data/testGeoOpt.py @@ -14,7 +14,7 @@ from common import get_minimum_carbon_separation -from skip import skipForParser +from skip import skipForLogfile, skipForParser __filedir__ = os.path.realpath(os.path.dirname(__file__)) @@ -180,6 +180,24 @@ def testoptstatus(self): self.assertEqual(self.data.optstatus[i], self.data.OPT_UNKNOWN) self.assertEqual(self.data.optstatus[-1], self.data.OPT_DONE) + @skipForParser('ADF', 'Not implemented yet') + @skipForParser('DALTON', 'Not implemented yet') + @skipForParser('FChk', 'Rotational constants are never written to fchk files') + @skipForParser('GAMESS', 'Not implemented yet') + @skipForParser('GAMESSUK', 'Not implemented yet') + @skipForParser('Jaguar', 'Not implemented yet') + @skipForParser('Molcas', 'Not implemented yet') + @skipForParser('Molpro', 'Not implemented yet') + @skipForLogfile('MOPAC/basicMOPAC2016', 'Not present in this file') + @skipForParser('NWChem', 'Not implemented yet') + @skipForParser('ORCA', 'Not implemented yet') + @skipForParser('Psi4', 'Not implemented yet') + @skipForParser('QChem', 'Not implemented yet') + @skipForParser('Turbomole', 'Not implemented yet') + def testrotconsts(self): + """Each geometry leads to a row in the rotational constants entry.""" + self.assertEqual(self.data.rotconsts.shape, (len(self.data.atomcoords), 3)) + @skipForParser('Molcas', 'The parser is still being developed so we skip this test') def testmoenergies(self): """Are only the final MOs parsed?""" diff --git a/test/data/testSP.py b/test/data/testSP.py index 317438199..b79aa9f46 100644 --- a/test/data/testSP.py +++ b/test/data/testSP.py @@ -251,6 +251,26 @@ def testoptdone(self): """There should be no optdone attribute set.""" self.assertFalse(hasattr(self.data, 'optdone')) + @skipForParser('ADF', 'Not implemented yes') + @skipForParser('DALTON', 'Not implemented yes') + @skipForParser('FChk', 'Rotational constants are never written to fchk files') + @skipForParser('GAMESS', 'Not implemented yes') + @skipForParser('GAMESSUK', 'Not implemented yet') + @skipForParser('Jaguar', 'Not implemented yet') + @skipForParser('Molcas', 'Not implemented yes') + @skipForParser('Molpro', 'Not implemented yes') + @skipForParser('NWChem', 'Not implemented yes') + @skipForParser('ORCA', 'Not implemented yes') + @skipForParser('Psi4', 'Not implemented yes') + @skipForParser('QChem', 'Not implemented yes') + @skipForParser('Turbomole', 'Not implemented yes') + def testrotconsts(self): + """A single geometry leads to single set of rotational constants.""" + self.assertEqual(self.data.rotconsts.shape, (1, 3)) + # taken from Gaussian16/dvb_sp.out + ref = [4.6266363, 0.6849065, 0.5965900] + numpy.testing.assert_allclose(self.data.rotconsts[0], ref, rtol=0, atol=1.0e-3) + @skipForParser('FChk', 'The parser is still being developed so we skip this test') @skipForParser('Gaussian', 'Logfile needs to be updated') @skipForParser('Jaguar', 'No dipole moments in the logfile') From 85c2047bf05f2ebed73406e012ad8d59250c3030 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Mon, 4 Jul 2022 18:09:09 -0400 Subject: [PATCH 021/103] Gaussian: use append_attribute for rotconsts --- cclib/parser/gaussianparser.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index ea7c25356..fb85bd149 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -2263,15 +2263,13 @@ def extract_charges_spins(line,prop): # Rotational constants (GHZ): ************ 12.73690 12.73690 # Note: rotational constant will be converted to wavenumber units (1/cm) to standardize across parsers if line[:27] == ' Rotational constants (GHZ)': - if not hasattr(self, "rotconsts"): - self.rotconsts = [] splits = line.split() # Determine if the molecule is linear and only has two constants if '*' in line: # linear molecule - self.rotconsts.append([0.0]+[float(splits[i]) for i in (-2, -1)]) + self.append_attribute("rotconsts", [0.0]+[float(splits[i]) for i in (-2, -1)]) else: - self.rotconsts.append([float(splits[i]) for i in (-3, -2, -1)]) + self.append_attribute("rotconsts", [float(splits[i]) for i in (-3, -2, -1)]) # Extract Molecular Mass (in amu) # Example: From c4b41b7b8e2a0e76d50ab11756035e4a07c5c4a2 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Thu, 7 Jul 2022 22:44:47 -0400 Subject: [PATCH 022/103] Gaussian: handle no whitespace after 'Rotational constants (GHZ):' --- cclib/parser/gaussianparser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index fb85bd149..aea2ae5a4 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -2262,8 +2262,8 @@ def extract_charges_spins(line,prop): # OR for linear molecules: # Rotational constants (GHZ): ************ 12.73690 12.73690 # Note: rotational constant will be converted to wavenumber units (1/cm) to standardize across parsers - if line[:27] == ' Rotational constants (GHZ)': - splits = line.split() + if line[:28] == ' Rotational constants (GHZ):': + splits = line[28:].split() # Determine if the molecule is linear and only has two constants if '*' in line: # linear molecule From 9638d8d8b0f2e01c8e9656652bc1ba1bc8695b11 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sun, 10 Jul 2022 21:35:50 -0400 Subject: [PATCH 023/103] Gaussian: rotconsts never seems to contain asterisks --- cclib/parser/gaussianparser.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index aea2ae5a4..260b8c6a2 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -2264,12 +2264,7 @@ def extract_charges_spins(line,prop): # Note: rotational constant will be converted to wavenumber units (1/cm) to standardize across parsers if line[:28] == ' Rotational constants (GHZ):': splits = line[28:].split() - - # Determine if the molecule is linear and only has two constants - if '*' in line: # linear molecule - self.append_attribute("rotconsts", [0.0]+[float(splits[i]) for i in (-2, -1)]) - else: - self.append_attribute("rotconsts", [float(splits[i]) for i in (-3, -2, -1)]) + self.append_attribute("rotconsts", [float(splits[i]) for i in (-3, -2, -1)]) # Extract Molecular Mass (in amu) # Example: From 3d8028067703020f7ca90f262a0be8cce3653243 Mon Sep 17 00:00:00 2001 From: "Felix Plasser (lin)" Date: Tue, 30 Aug 2022 15:43:05 +0100 Subject: [PATCH 024/103] fix for symmetry detection in Gaussian with Ghost atoms --- cclib/parser/gaussianparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index 6316bfc04..63dcea9a9 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -573,7 +573,7 @@ def extract(self, inputfile, line): line = next(inputfile) # Symmetry: point group - if line.strip() == "Symmetry turned off by external request.": + if "Symmetry turned off" in line: self.set_attribute('uses_symmetry', False) if "Full point group" in line: point_group_detected = line.split()[3].lower() From c8ddb06746b2e70307ba930cb50df5587c1bee6a Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Thu, 1 Sep 2022 15:02:15 +0100 Subject: [PATCH 025/103] Added support for 'optstate' in gaussian parser --- cclib/parser/gaussianparser.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index 6316bfc04..c2e19964b 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -1487,6 +1487,11 @@ def extract(self, inputfile, line): CIScontrib.append([(fromMO, frommoindex), (toMO, tomoindex), percent]) line = next(inputfile) self.etsecs.append(CIScontrib) + + # Check if this state is our 'state of interest' (for optimisations etc). + if "This state for optimization and/or second-order correction" in line: + # Index to the current excited state. + self.metadata['opt_state'] = len(self.etenergies) -1 # Electronic transition transition-dipole data # From 2f548b49f4c4ec3ac0939ebdaf2d7c94adcfb319 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Thu, 1 Sep 2022 15:27:49 +0100 Subject: [PATCH 026/103] Added skip for de-excitations in the gaussian parser so the state-of-interest can still be processed --- cclib/parser/gaussianparser.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index c2e19964b..2eb6ed80c 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -1488,6 +1488,12 @@ def extract(self, inputfile, line): line = next(inputfile) self.etsecs.append(CIScontrib) + # Skip over 'de-excitation' contributions (these are typically hidden but can be revealed + # by iop(9/40=2)). + while line.find(" <-") >= 0: + # These are not processed atm. + line = next(inputfile) + # Check if this state is our 'state of interest' (for optimisations etc). if "This state for optimization and/or second-order correction" in line: # Index to the current excited state. From b3ca2ab60a14a364307ee9fe4eb3c146fa37d0c0 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Thu, 1 Sep 2022 15:28:13 +0100 Subject: [PATCH 027/103] Added test for optstate --- test/data/testTD.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/test/data/testTD.py b/test/data/testTD.py index f83fa476b..e67011cbf 100644 --- a/test/data/testTD.py +++ b/test/data/testTD.py @@ -81,6 +81,20 @@ def testsymsnumber(self): def testrotatsnumber(self): """Is the length of etrotats correct?""" self.assertEqual(len(self.data.etrotats), self.number) + + @skipForParser('ADF', 'optstate is not yet implemented') + @skipForParser('DALTON', 'optstate are not yet implemented') + @skipForParser('FChk', 'optstate are not yet implemented') + @skipForParser('GAMESS', 'optstate are not yet implemented') + @skipForParser('GAMESSUK', 'optstate are not yet implemented') + @skipForParser('Jaguar', 'optstate are not yet implemented') + @skipForParser('NWChem', 'optstate are not yet implemented') + @skipForParser('ORCA', 'optstate are not yet implemented') + @skipForParser('QChem', 'optstate are not yet implemented') + @skipForParser('Turbomole', 'optstate are not yet implemented') + def testoptstate(self): + # All our examples have a default state-of-interest of 1 (index 0). + self.assertEqual(self.data.metadata['opt_state'], 0) class ADFTDDFTTest(GenericTDTest): """Customized time-dependent DFT unittest""" From 7d5d4b7b345d30fd5de3eda035ccea453200e16c Mon Sep 17 00:00:00 2001 From: Shiv Upadhyay Date: Sun, 4 Sep 2022 12:10:22 -0400 Subject: [PATCH 028/103] Add regression test --- test/regression.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/regression.py b/test/regression.py index ca25ac3f1..8f686d3f6 100644 --- a/test/regression.py +++ b/test/regression.py @@ -1161,6 +1161,10 @@ def testGaussian_Gaussian09_benzene_excited_states_optimization_issue889_log(log assert len(logfile.data.etsecs) == 20 assert logfile.data.etveldips.shape == (20,3) +def testGaussian_Gaussian09_issue1150_log(logfile): + """ Symmetry parsing for Gaussian09 was broken""" + assert logfile.metadata['symmetry_detected'] == 'c1' + def testGaussian_Gaussian16_H3_natcharge_log(logfile): """A calculation with natural charges calculated. Test issue 1055 where only the beta set of charges was parsed rather than the spin independent""" From e5a156c7e2aa229a73debcc48b23414653b558fa Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sun, 5 Jun 2022 16:23:10 -0400 Subject: [PATCH 029/103] Tests: break apart atomcharges tests per type --- test/data/testSP.py | 39 ++++++++++++++++++++++++++++++++++----- 1 file changed, 34 insertions(+), 5 deletions(-) diff --git a/test/data/testSP.py b/test/data/testSP.py index b79aa9f46..3fbe1be30 100644 --- a/test/data/testSP.py +++ b/test/data/testSP.py @@ -68,11 +68,40 @@ def testatomnos(self): @skipForLogfile('Molpro/basicMolpro2006', "These tests were run a long time ago and since we don't have access to Molpro 2006 anymore, we can skip this test (it is tested in 2012)") @skipForParser('Turbomole','The parser is still being developed so we skip this test') def testatomcharges(self): - """Are atomcharges (at least Mulliken) consistent with natom and sum to zero?""" - for type in set(['mulliken'] + list(self.data.atomcharges.keys())): - charges = self.data.atomcharges[type] - self.assertEqual(len(charges), self.data.natom) - self.assertAlmostEqual(sum(charges), 0.0, delta=0.001) + """Are atomic charges consistent with natom?""" + for atomcharge_type in self.data.atomcharges: + charges = self.data.atomcharges[atomcharge_type] + natom = self.data.natom + self.assertEqual( + len(charges), + natom, + msg=f"len(atomcharges['{atomcharge_type}']) = {len(charges)}, natom = {natom}" + ) + + @skipForParser('DALTON', 'DALTON has a very low accuracy for the printed values of all populations (2 decimals rounded in a weird way), so let it slide for now') + @skipForParser('FChk', 'The parser is still being developed so we skip this test') + @skipForLogfile('Jaguar/basicJaguar7', 'We did not print the atomic partial charges in the unit tests for this version') + @skipForLogfile('Molpro/basicMolpro2006', "These tests were run a long time ago and since we don't have access to Molpro 2006 anymore, we can skip this test (it is tested in 2012)") + @skipForParser('Turbomole','The parser is still being developed so we skip this test') + def testatomcharges_mulliken(self): + """Do Mulliken atomic charges sum to zero?""" + charges = self.data.atomcharges["mulliken"] + self.assertAlmostEqual(sum(charges), 0.0, delta=0.001) + + @skipForParser('ADF', 'Lowdin charges not present by default') + @skipForParser('DALTON', 'DALTON has a very low accuracy for the printed values of all populations (2 decimals rounded in a weird way), so let it slide for now') + @skipForParser('FChk', 'The parser is still being developed so we skip this test') + @skipForParser('Gaussian', 'Lowdin charges not present by default') + @skipForParser('Jaguar', 'Lowdin charges not present by default') + @skipForParser('NWChem', 'Lowdin charges not present by default') + @skipForParser('Molcas', 'Lowdin charges not present by default') + @skipForParser('Molpro', 'Lowdin charges not present by default') + @skipForParser('QChem', 'Lowdin charges not present by default') + @skipForParser('Turbomole','The parser is still being developed so we skip this test') + def testatomcharges_lowdin(self): + """Do Lowdin atomic charges sum to zero?""" + charges = self.data.atomcharges["lowdin"] + self.assertAlmostEqual(sum(charges), 0.0, delta=0.001) def testatomcoords(self): """Are the dimensions of atomcoords 1 x natom x 3?""" From 48eb536a0fa36c563c81c8605266c2e0b69e40e0 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sun, 5 Jun 2022 16:38:48 -0400 Subject: [PATCH 030/103] Gaussian: remove pointless testatomnos in testSPun --- test/data/testSPun.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/data/testSPun.py b/test/data/testSPun.py index 7b71a70c5..2c31e841f 100644 --- a/test/data/testSPun.py +++ b/test/data/testSPun.py @@ -174,11 +174,6 @@ def testnooccnos(self): class GaussianSPunTest(GenericSPunTest): """Customized unrestricted single point unittest""" - def testatomnos(self): - """Does atomnos have the right dimension (20)?""" - size = len(self.data.atomnos) - self.assertEqual(size, 20) - def testatomcharges(self): """Are atomcharges (at least Mulliken) consistent with natom and sum to one?""" for type_ in set(['mulliken'] + list(self.data.atomcharges.keys())): From 59cf855672fe2bc09177c7019a1aaed9789507cf Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sun, 11 Sep 2022 16:00:21 -0400 Subject: [PATCH 031/103] Psi4: fix parsing non-Mulliken charges for older versions --- cclib/parser/psi4parser.py | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/cclib/parser/psi4parser.py b/cclib/parser/psi4parser.py index 1f30c4dcd..b2b3c7bfd 100644 --- a/cclib/parser/psi4parser.py +++ b/cclib/parser/psi4parser.py @@ -8,6 +8,7 @@ """Parser for Psi4 output files.""" from collections import namedtuple +import re import numpy @@ -44,6 +45,11 @@ def before_parsing(self): # with =>/<= rather than ==>/<==. self.subsection = None + # Regular expression for matching the start of an atomic charges + # section; the second format of the header (with square brackets) is + # for old Psi4 versions. + self.re_atomic_charges_header = re.compile(r"^\s*(\w+) Charges(:?: \(a\.u\.\)| \[a\.u\.\]:)") + def after_parsing(self): super(Psi4, self).after_parsing() @@ -650,22 +656,21 @@ def get_normalization_factor(exp, lx, ly, lz): # 1 C 2.99909 2.99909 0.00000 0.00182 # 2 C 2.99909 2.99909 0.00000 0.00182 # ... - for pop_type in ["Mulliken", "Lowdin"]: - if line.strip() == f"{pop_type} Charges: (a.u.)": - if not hasattr(self, 'atomcharges'): - self.atomcharges = {} - header = next(inputfile) + atomic_charges_header = self.re_atomic_charges_header.search(line) + if atomic_charges_header is not None: + if not hasattr(self, 'atomcharges'): + self.atomcharges = {} + while "Center Symbol Alpha" not in line: line = next(inputfile) - while not line.strip(): - line = next(inputfile) + line = next(inputfile) - charges = [] - while line.strip(): - ch = float(line.split()[-1]) - charges.append(ch) - line = next(inputfile) - self.atomcharges[pop_type.lower()] = charges + charges = [] + while line.strip(): + ch = float(line.split()[-1]) + charges.append(ch) + line = next(inputfile) + self.atomcharges[atomic_charges_header.groups()[0].lower()] = charges # This is for the older conventional MP2 code in 4.0b5. mp_trigger = "MP2 Total Energy (a.u.)" From b1ff2de8e04361fdb152b3d1e9dbc41b3324f8b7 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sun, 11 Sep 2022 16:13:00 -0400 Subject: [PATCH 032/103] Jaguar: atomcharges were not printed in old unit tests --- test/regression.py | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/test/regression.py b/test/regression.py index 8f686d3f6..80728f47b 100644 --- a/test/regression.py +++ b/test/regression.py @@ -2971,7 +2971,23 @@ class GaussianPolarTest(ReferencePolarTest): # Jaguar # -class JaguarSPTest_6_31gss(JaguarSPTest): +class JaguarSPTest_noatomcharges(JaguarSPTest): + """Atomic partial charges were not printed in old Jaguar unit tests.""" + + @unittest.skip("Cannot parse atomcharges from this file.") + def testatomcharges(self): + """Are atomic charges consistent with natom?""" + + @unittest.skip("Cannot parse atomcharges from this file.") + def testatomcharges_mulliken(self): + """Do Mulliken atomic charges sum to zero?""" + + @unittest.skip("Cannot parse atomcharges from this file.") + def testatomcharges_lowdin(self): + """Do Lowdin atomic charges sum to zero?""" + + +class JaguarSPTest_6_31gss(JaguarSPTest_noatomcharges): """AO counts and some values are different in 6-31G** compared to STO-3G.""" nbasisdict = {1: 5, 6: 15} b3lyp_energy = -10530 @@ -3021,7 +3037,7 @@ def testlengthmoenergies(self): self.assertEqual(len(self.data.moenergies[0]), 45) -class JaguarSPTest_nmo45(GenericSPTest): +class JaguarSPTest_nmo45(JaguarSPTest_noatomcharges): def testlengthmoenergies(self): """Without special options, Jaguar only print Homo+10 orbital energies.""" self.assertEqual(len(self.data.moenergies[0]), 45) From b95b90c2b6616d398dda150c782bc907f88c267a Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Wed, 14 Sep 2022 21:31:12 -0400 Subject: [PATCH 033/103] Psi4: be explicit about which types of atomcharges are parsed --- cclib/parser/psi4parser.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cclib/parser/psi4parser.py b/cclib/parser/psi4parser.py index b2b3c7bfd..e637153d5 100644 --- a/cclib/parser/psi4parser.py +++ b/cclib/parser/psi4parser.py @@ -48,7 +48,9 @@ def before_parsing(self): # Regular expression for matching the start of an atomic charges # section; the second format of the header (with square brackets) is # for old Psi4 versions. - self.re_atomic_charges_header = re.compile(r"^\s*(\w+) Charges(:?: \(a\.u\.\)| \[a\.u\.\]:)") + self.re_atomic_charges_header = re.compile( + r"^\s*(Mulliken|Lowdin|MBIS) Charges(:?: \(a\.u\.\)| \[a\.u\.\]:)" + ) def after_parsing(self): super(Psi4, self).after_parsing() From ee323b93d1774a4779e29a6ee4fb6420083a3aa6 Mon Sep 17 00:00:00 2001 From: Shiv Upadhyay Date: Tue, 20 Sep 2022 18:29:22 -0400 Subject: [PATCH 034/103] Add files to compare --- data/NWChem/basicNWChem7.0/C_bigbasis.out | 541 +- .../basicNWChem7.0/C_bigbasis_spherical.out | 5837 +++++++------- data/NWChem/basicNWChem7.0/Trp_polar.out | 415 +- data/NWChem/basicNWChem7.0/dvb_bomd_ks.out | 2409 +++--- .../dvb_dispersion_bp86_d3zero.out | 1277 ++- data/NWChem/basicNWChem7.0/dvb_gopt_hf.out | 5090 ++++++------ data/NWChem/basicNWChem7.0/dvb_gopt_ks.out | 6829 +++++++++-------- data/NWChem/basicNWChem7.0/dvb_ir.out | 4251 +++++----- data/NWChem/basicNWChem7.0/dvb_sp_hf.out | 2086 +++-- .../basicNWChem7.0/dvb_sp_hf_overlaps.out | 1882 +++-- data/NWChem/basicNWChem7.0/dvb_sp_ks.out | 1752 +++-- .../basicNWChem7.0/dvb_sp_ks_overlaps.out | 1582 ++-- data/NWChem/basicNWChem7.0/dvb_td.out | 767 +- data/NWChem/basicNWChem7.0/dvb_un_sp_ks.out | 2642 ++++--- data/NWChem/basicNWChem7.0/water_ccsd(t).out | 406 +- data/NWChem/basicNWChem7.0/water_mp2.out | 349 +- 16 files changed, 19036 insertions(+), 19079 deletions(-) diff --git a/data/NWChem/basicNWChem7.0/C_bigbasis.out b/data/NWChem/basicNWChem7.0/C_bigbasis.out index a96dce105..a85667ccc 100644 --- a/data/NWChem/basicNWChem7.0/C_bigbasis.out +++ b/data/NWChem/basicNWChem7.0/C_bigbasis.out @@ -1,26 +1,26 @@ argument 1 = C_bigbasis.in - - - Northwest Computational Chemistry Package (NWChem) 7.0.2 + + + Northwest Computational Chemistry Package (NWChem) 7.0.0 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2020 + + Copyright (c) 1994-2019 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = osmium - program = nwchem - date = Sat Jun 4 13:32:09 2022 + hostname = smp-n17.sam.pitt.edu + program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem + date = Tue Sep 20 18:17:37 2022 - compiled = Fri_Jul_02_16:33:00_2021 - source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src - nwchem branch = 7.0.2 - nwchem revision = b9985dfa - ga revision = 5.7.2 - use scalapack = T + compiled = Wed_May_13_13:33:26_2020 + source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 + nwchem branch = 7.0.0 + nwchem revision = N/A + ga revision = 5.7.1 + use scalapack = F input = C_bigbasis.in prefix = carbon. data base = ./carbon.db status = startup - nproc = 1 + nproc = 4 time left = -1s @@ -58,49 +58,49 @@ Memory information ------------------ - heap = 13107194 doubles = 100.0 Mbytes - stack = 13107199 doubles = 100.0 Mbytes + heap = 13107196 doubles = 100.0 Mbytes + stack = 13107201 doubles = 100.0 Mbytes global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) - total = 52428793 doubles = 400.0 Mbytes + total = 52428797 doubles = 400.0 Mbytes verify = yes hardfail = no Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + C atom ------ Scaling coordinates for geometry "geometry" by 1.889725989 (inverse scale = 0.529177249) - - + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.00000000 0.00000000 0.00000000 - + 1 C 6.0000 0.00000000 -0.00000000 0.00000000 + Atomic Mass ----------- - + C 12.000000 - + Effective nuclear repulsion energy (a.u.) 0.0000000000 @@ -108,18 +108,15 @@ ---------------------------- X Y Z ---------------- ---------------- ---------------- - 0.0000000000 0.0000000000 0.0000000000 - - + 0.0000000000 -0.0000000000 0.0000000000 + + XYZ format geometry ------------------- 1 geometry - C 0.00000000 0.00000000 0.00000000 - - library name resolved from: environment - library file name is: - + C 0.00000000 -0.00000000 0.00000000 + Summary of "ao basis" -> "" (cartesian) @@ -144,7 +141,7 @@ 1 S 1.47500000E+01 0.305631 1 S 6.03500000E+00 0.399345 1 S 2.53000000E+00 0.217051 - + 2 S 3.39800000E+04 -0.000019 2 S 5.08900000E+03 -0.000151 2 S 1.15700000E+03 -0.000785 @@ -154,45 +151,45 @@ 2 S 1.47500000E+01 -0.077173 2 S 6.03500000E+00 -0.141493 2 S 2.53000000E+00 -0.118019 - + 3 S 7.35500000E-01 1.000000 - + 4 S 2.90500000E-01 1.000000 - + 5 S 1.11100000E-01 1.000000 - + 6 S 4.14500000E-02 1.000000 - + 7 P 3.45100000E+01 0.005378 7 P 7.91500000E+00 0.036132 7 P 2.36800000E+00 0.142493 - + 8 P 8.13200000E-01 1.000000 - + 9 P 2.89000000E-01 1.000000 - + 10 P 1.00700000E-01 1.000000 - + 11 P 3.21800000E-02 1.000000 - + 12 D 1.84800000E+00 1.000000 - + 13 D 6.49000000E-01 1.000000 - + 14 D 2.28000000E-01 1.000000 - + 15 D 7.66000000E-02 1.000000 - + 16 F 1.41900000E+00 1.000000 - + 17 F 4.85000000E-01 1.000000 - + 18 F 1.87000000E-01 1.000000 - + 19 G 1.01100000E+00 1.000000 - + 20 G 4.24000000E-01 1.000000 - + Summary of "ao basis" -> "ao basis" (cartesian) @@ -204,11 +201,11 @@ NWChem SCF Module ----------------- - - + + C atom - - + + ao basis = "ao basis" functions = 105 @@ -233,12 +230,12 @@ Forming initial guess at 0.1s - + Superposition of Atomic Density Guess ------------------------------------- - + Sum of atomic energies: -37.67212527 - + Non-variational initial energy ------------------------------ @@ -247,7 +244,7 @@ 2-e energy = 13.106562 HOMO = -0.079258 LUMO = -0.079258 - + Starting SCF solution at 0.2s @@ -262,23 +259,35 @@ ---------------------------------------------- + Integral file = ./carbon.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 122 Max. records in file = 507882 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 2.216D+04 #integrals = 2.375D+06 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 3 moved= 8 time= 0.0 + + iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -37.5688058816 4.90D-01 1.69D-01 0.6 - 2 -37.6026156048 1.46D-01 6.13D-02 1.1 - 3 -37.6045955953 2.99D-03 1.16D-03 2.4 - 4 -37.6045963897 8.65D-06 4.01D-06 4.2 + 1 -37.5688058794 4.90D-01 1.78D-01 0.4 + 2 -37.6026156044 1.46D-01 6.13D-02 0.4 + 3 -37.6045955930 2.99D-03 1.16D-03 0.5 + 4 -37.6045963874 8.86D-06 4.00D-06 0.6 Final RHF results ------------------ - Total SCF energy = -37.604596389676 - One-electron energy = -50.311751329861 - Two-electron energy = 12.707154940185 + Total SCF energy = -37.604596387448 + One-electron energy = -50.311751325964 + Two-electron energy = 12.707154938516 Nuclear repulsion energy = 0.000000000000 - Time for solution = 4.0s + Time for solution = 0.4s Final eigenvalues @@ -298,220 +307,230 @@ 11 0.2193 12 0.2193 13 0.2278 - + ROHF Final Molecular Orbital Analysis ------------------------------------- - - Vector 2 Occ=2.000000D+00 E=-7.255322D-01 - MO Center= -5.0D-17, -2.9D-16, -3.0D-16, r^2= 8.4D-01 + + Vector 2 Occ=2.000000D+00 E=-7.255323D-01 + MO Center= 4.4D-16, -1.1D-15, -3.7D-16, r^2= 8.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.739754 1 C s 2 0.338013 1 C s - 3 0.220050 1 C s 5 0.188052 1 C s - + 4 0.739716 1 C s 2 0.338000 1 C s + 3 0.220047 1 C s 5 0.188087 1 C s + Vector 3 Occ=2.000000D+00 E=-3.583778D-01 - MO Center= -7.2D-16, 1.4D-15, 2.1D-15, r^2= 1.2D+00 + MO Center= -5.1D-15, 7.9D-15, 4.3D-15, r^2= 1.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.249426 1 C px 15 -0.247015 1 C pz - 10 0.234603 1 C px 12 -0.232335 1 C pz - 16 0.154970 1 C px 18 -0.153472 1 C pz - - Vector 4 Occ=0.000000D+00 E= 1.855934D-02 - MO Center= -1.6D-15, -7.2D-16, -1.7D-15, r^2= 5.1D+00 + 13 0.232791 1 C px 10 0.218958 1 C px + 15 -0.209468 1 C pz 12 -0.197020 1 C pz + 14 -0.195651 1 C py 11 -0.184025 1 C py + + Vector 4 Occ=0.000000D+00 E= 1.855930D-02 + MO Center= 2.3D-16, -2.3D-15, -4.7D-15, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.439324 1 C pz 19 0.428582 1 C px - 12 0.190600 1 C pz 10 0.185940 1 C px - 68 0.171607 1 C fxxz 71 0.168752 1 C fxzz - 73 0.158558 1 C fyyz 69 0.154000 1 C fxyy - - Vector 5 Occ=0.000000D+00 E= 1.855934D-02 - MO Center= 2.0D-14, -6.8D-14, -8.8D-15, r^2= 5.1D+00 + 20 0.449665 1 C py 21 -0.417974 1 C pz + 11 0.195101 1 C py 12 -0.181351 1 C pz + 74 0.170724 1 C fyzz 73 -0.161843 1 C fyyz + 72 0.157118 1 C fyyy 67 0.154123 1 C fxxy + + Vector 5 Occ=0.000000D+00 E= 1.855930D-02 + MO Center= -1.9D-14, -1.2D-14, -1.4D-14, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 20 0.583461 1 C py 11 0.253134 1 C py - 72 0.210124 1 C fyyy 67 0.201415 1 C fxxy - 74 0.201137 1 C fyzz 17 -0.160258 1 C py - - Vector 6 Occ=0.000000D+00 E= 4.854695D-02 - MO Center= -5.8D-14, -4.1D-14, 1.1D-13, r^2= 1.4D+01 + 19 0.476550 1 C px 21 0.284455 1 C pz + 20 0.262470 1 C py 10 0.206766 1 C px + 69 0.176760 1 C fxyy 71 0.177259 1 C fxzz + 66 0.163262 1 C fxxx + + Vector 6 Occ=0.000000D+00 E= 4.854699D-02 + MO Center= -3.0D-14, 2.3D-13, 8.8D-14, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 6 7.640970 1 C s 4 -3.364353 1 C s - 40 -2.244197 1 C dxx 45 -2.243634 1 C dzz - 43 -2.221085 1 C dyy 37 -1.392272 1 C dyy - 34 -1.376111 1 C dxx 39 -1.376505 1 C dzz - 5 0.995820 1 C s 94 0.706927 1 C gxxyy - - Vector 7 Occ=0.000000D+00 E= 7.943490D-02 - MO Center= 8.4D-14, 3.5D-14, -8.1D-14, r^2= 1.6D+01 + 6 7.640961 1 C s 4 -3.364332 1 C s + 40 -2.240417 1 C dxx 43 -2.232926 1 C dyy + 45 -2.235561 1 C dzz 34 -1.378742 1 C dxx + 37 -1.383980 1 C dyy 39 -1.382138 1 C dzz + 5 0.995798 1 C s 94 0.704190 1 C gxxyy + + Vector 7 Occ=0.000000D+00 E= 7.943320D-02 + MO Center= 1.0D-13, -9.8D-14, -9.0D-14, r^2= 1.6D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 16 1.724707 1 C px 18 -1.708035 1 C pz - 19 -1.061138 1 C px 21 1.050880 1 C pz - 17 0.791980 1 C py 66 -0.736885 1 C fxxx - 69 -0.738419 1 C fxyy 71 -0.728777 1 C fxzz - 73 0.731281 1 C fyyz 75 0.729841 1 C fzzz - - Vector 8 Occ=0.000000D+00 E= 9.506486D-02 - MO Center= -1.8D-14, 6.9D-14, 1.0D-14, r^2= 1.3D+01 + 16 1.609938 1 C px 18 -1.448637 1 C pz + 17 -1.353086 1 C py 19 -0.990401 1 C px + 21 0.891172 1 C pz 20 0.832391 1 C py + 66 -0.688399 1 C fxxx 69 -0.684601 1 C fxyy + 71 -0.683550 1 C fxzz 75 0.620009 1 C fzzz + + Vector 8 Occ=0.000000D+00 E= 9.506261D-02 + MO Center= -6.9D-15, -5.2D-14, 3.5D-14, r^2= 1.3D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 17 2.936583 1 C py 20 -1.432090 1 C py - 67 -1.172128 1 C fxxy 72 -1.169810 1 C fyyy - 74 -1.171813 1 C fyzz 14 1.089126 1 C py - 18 0.783566 1 C pz 57 -0.676654 1 C fxxy - 64 -0.676096 1 C fyzz 62 -0.672541 1 C fyyy - - Vector 9 Occ=0.000000D+00 E= 9.506486D-02 - MO Center= -3.0D-14, 3.4D-15, -3.0D-14, r^2= 1.3D+01 + 17 2.385818 1 C py 18 -1.953105 1 C pz + 20 -1.163363 1 C py 21 0.952365 1 C pz + 67 -0.952055 1 C fxxy 72 -0.951735 1 C fyyy + 74 -0.948684 1 C fyzz 14 0.885126 1 C py + 68 0.780269 1 C fxxz 75 0.779348 1 C fzzz + + Vector 9 Occ=0.000000D+00 E= 9.506261D-02 + MO Center= -3.8D-14, -2.7D-14, -2.5D-14, r^2= 1.3D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 16 2.207497 1 C px 18 2.161197 1 C pz - 19 -1.076535 1 C px 21 -1.053956 1 C pz - 66 -0.881627 1 C fxxx 69 -0.879199 1 C fxyy - 71 -0.876033 1 C fxzz 75 -0.863082 1 C fzzz - 68 -0.857478 1 C fxxz 73 -0.861101 1 C fyyz - - Vector 10 Occ=0.000000D+00 E= 2.075449D-01 - MO Center= 7.9D-15, -3.1D-15, 3.7D-15, r^2= 1.2D+01 + 16 2.388278 1 C px 18 1.635387 1 C pz + 19 -1.164563 1 C px 17 1.090764 1 C py + 66 -0.953507 1 C fxxx 69 -0.950650 1 C fxyy + 71 -0.949678 1 C fxzz 13 0.886039 1 C px + 21 -0.797441 1 C pz 73 -0.654238 1 C fyyz + + Vector 10 Occ=0.000000D+00 E= 2.075448D-01 + MO Center= 1.8D-14, 2.3D-13, -7.0D-15, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 6 10.898835 1 C s 4 -7.674258 1 C s - 5 6.413779 1 C s 43 -4.510884 1 C dyy - 40 -4.312013 1 C dxx 45 -4.316862 1 C dzz - 34 -3.403727 1 C dxx 39 -3.400278 1 C dzz - 37 -3.262261 1 C dyy 96 1.669320 1 C gxxzz - + 6 10.898838 1 C s 4 -7.674248 1 C s + 5 6.413767 1 C s 43 -4.408963 1 C dyy + 45 -4.386290 1 C dzz 40 -4.344507 1 C dxx + 34 -3.380608 1 C dxx 37 -3.334757 1 C dyy + 39 -3.350885 1 C dzz 94 1.625158 1 C gxxyy + Vector 11 Occ=0.000000D+00 E= 2.193480D-01 - MO Center= 2.3D-15, -3.9D-15, 1.8D-15, r^2= 7.7D+00 + MO Center= 1.0D-14, 1.7D-14, -6.3D-15, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 41 1.475806 1 C dxy 44 1.452580 1 C dyz - 35 -1.183329 1 C dxy 38 -1.164706 1 C dyz - 99 0.630521 1 C gxyzz 95 0.620724 1 C gxxyz - 97 0.621933 1 C gxyyy 92 0.616403 1 C gxxxy - 102 0.611698 1 C gyyyz 104 0.607107 1 C gyzzz - + 44 1.436317 1 C dyz 38 -1.151666 1 C dyz + 41 1.151837 1 C dxy 35 -0.923564 1 C dxy + 40 0.605007 1 C dxx 95 0.607829 1 C gxxyz + 102 0.602211 1 C gyyyz 104 0.604930 1 C gyzzz + 45 -0.521378 1 C dzz 99 0.488659 1 C gxyzz + Vector 12 Occ=0.000000D+00 E= 2.193480D-01 - MO Center= 1.3D-15, 2.3D-15, 6.2D-16, r^2= 7.7D+00 + MO Center= 5.2D-15, 1.1D-14, -4.9D-15, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 42 1.193991 1 C dxz 43 -0.984225 1 C dyy - 36 -0.957364 1 C dxz 37 0.789171 1 C dyy - 44 -0.512589 1 C dyz 93 0.503283 1 C gxxxz - 100 0.503227 1 C gxzzz 40 0.500241 1 C dxx - 98 0.496193 1 C gxyyz 45 0.483984 1 C dzz - + 42 1.367296 1 C dxz 36 -1.096324 1 C dxz + 41 -0.855924 1 C dxy 43 -0.779458 1 C dyy + 35 0.686296 1 C dxy 37 0.624984 1 C dyy + 98 0.576555 1 C gxyyz 100 0.576879 1 C gxzzz + 93 0.572944 1 C gxxxz 45 0.523989 1 C dzz + Vector 13 Occ=0.000000D+00 E= 2.278086D-01 - MO Center= -1.9D-15, -7.0D-16, 4.1D-16, r^2= 7.7D+00 + MO Center= 1.7D-15, 1.4D-14, -1.4D-14, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 41 1.273382 1 C dxy 44 -1.222634 1 C dyz - 35 -1.040933 1 C dxy 38 0.999448 1 C dyz - 42 0.645303 1 C dxz 43 0.644520 1 C dyy - 92 0.548813 1 C gxxxy 97 0.549740 1 C gxyyy - 99 0.538244 1 C gxyzz 36 -0.527506 1 C dxz - + 42 -0.972620 1 C dxz 41 0.966244 1 C dxy + 43 -0.898442 1 C dyy 36 0.795073 1 C dxz + 35 -0.789861 1 C dxy 45 0.776192 1 C dzz + 37 0.734436 1 C dyy 39 -0.634502 1 C dzz + 98 -0.438658 1 C gxyyz 99 0.429408 1 C gxyzz + Vector 14 Occ=0.000000D+00 E= 2.278086D-01 - MO Center= -3.5D-15, 3.9D-16, -2.4D-15, r^2= 7.7D+00 + MO Center= -1.4D-15, 7.3D-15, 8.7D-15, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 40 1.052000 1 C dxx 45 -1.026035 1 C dzz - 34 -0.859963 1 C dxx 39 0.838737 1 C dzz - 44 0.531748 1 C dyz 91 0.452092 1 C gxxxx - 103 -0.454077 1 C gyyzz 94 0.443599 1 C gxxyy - 105 -0.441054 1 C gzzzz 38 -0.434680 1 C dyz - + 40 1.063474 1 C dxx 44 -1.047792 1 C dyz + 34 -0.869343 1 C dxx 38 0.856523 1 C dyz + 45 -0.664695 1 C dzz 39 0.543358 1 C dzz + 95 -0.465558 1 C gxxyz 91 0.457857 1 C gxxxx + 102 -0.449541 1 C gyyyz 103 -0.450902 1 C gyyzz + Vector 15 Occ=0.000000D+00 E= 2.333995D-01 - MO Center= 8.1D-16, 3.2D-16, 6.3D-16, r^2= 8.1D+00 + MO Center= -4.9D-14, 4.3D-14, 4.5D-14, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 6 3.267231 1 C s 4 -2.491311 1 C s - 5 2.253160 1 C s 42 1.640090 1 C dxz - 40 -1.580023 1 C dxx 45 -1.564092 1 C dzz - 37 -1.457009 1 C dyy 36 -1.370165 1 C dxz - 39 -0.924416 1 C dzz 43 -0.926578 1 C dyy - - Vector 16 Occ=0.000000D+00 E= 3.090890D-01 - MO Center= -1.3D-15, 1.3D-15, 1.9D-15, r^2= 9.7D+00 + 6 3.267209 1 C s 4 -2.491286 1 C s + 5 2.253137 1 C s 40 -1.473249 1 C dxx + 45 -1.335957 1 C dzz 42 1.298037 1 C dxz + 43 -1.261458 1 C dyy 41 1.212420 1 C dxy + 37 -1.177223 1 C dyy 39 -1.114985 1 C dzz + + Vector 16 Occ=0.000000D+00 E= 3.090704D-01 + MO Center= 9.4D-14, -1.0D-13, -8.2D-14, r^2= 9.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 16 5.169025 1 C px 18 -5.119057 1 C pz - 71 -2.431580 1 C fxzz 68 2.409192 1 C fxxz - 66 -2.393604 1 C fxxx 69 -2.386420 1 C fxyy - 17 2.373599 1 C py 73 2.363351 1 C fyyz - 75 2.370093 1 C fzzz 13 1.464653 1 C px - - Vector 17 Occ=0.000000D+00 E= 3.237318D-01 - MO Center= -3.1D-15, 1.9D-15, -3.8D-15, r^2= 8.8D+00 + 16 4.824855 1 C px 18 -4.341449 1 C pz + 17 -4.055090 1 C py 69 -2.249826 1 C fxyy + 71 -2.254751 1 C fxzz 66 -2.232039 1 C fxxx + 68 2.037012 1 C fxxz 73 2.024414 1 C fyyz + 75 2.005687 1 C fzzz 67 1.902652 1 C fxxy + + Vector 17 Occ=0.000000D+00 E= 3.237123D-01 + MO Center= 1.9D-15, -1.1D-13, 1.1D-13, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 18 5.458353 1 C pz 16 5.344302 1 C px - 75 -2.603018 1 C fzzz 73 -2.589326 1 C fyyz - 68 -2.569830 1 C fxxz 66 -2.548955 1 C fxxx - 69 -2.535987 1 C fxyy 71 -2.514392 1 C fxzz - 15 1.509146 1 C pz 13 1.477613 1 C px - - Vector 18 Occ=0.000000D+00 E= 3.237318D-01 - MO Center= -8.2D-16, 6.7D-16, -1.8D-15, r^2= 8.8D+00 + 17 5.455972 1 C py 18 -5.344982 1 C pz + 67 -2.601208 1 C fxxy 72 -2.595752 1 C fyyy + 74 -2.575012 1 C fyzz 68 2.546164 1 C fxxz + 75 2.544470 1 C fzzz 73 2.520190 1 C fyyz + 14 1.509478 1 C py 15 -1.478771 1 C pz + + Vector 18 Occ=0.000000D+00 E= 3.237123D-01 + MO Center= -8.0D-14, -6.5D-14, -4.4D-14, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 17 7.262160 1 C py 67 -3.458489 1 C fxxy - 72 -3.445525 1 C fyyy 74 -3.458716 1 C fyzz - 14 2.007870 1 C py 57 -1.879590 1 C fxxy - 62 -1.886905 1 C fyyy 64 -1.879462 1 C fyzz - 16 -1.782361 1 C px 18 1.567551 1 C pz - - Vector 19 Occ=0.000000D+00 E= 5.318150D-01 - MO Center= 2.0D-14, -2.0D-15, -1.8D-14, r^2= 9.3D+00 + 16 5.927106 1 C px 17 3.496718 1 C py + 18 3.320993 1 C pz 66 -2.824700 1 C fxxx + 69 -2.803691 1 C fxyy 71 -2.805107 1 C fxzz + 74 -1.678459 1 C fyzz 72 -1.663611 1 C fyyy + 13 1.639824 1 C px 67 -1.638967 1 C fxxy + + Vector 19 Occ=0.000000D+00 E= 5.318156D-01 + MO Center= 7.6D-15, 4.8D-14, -4.8D-15, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 23.980974 1 C s 4 -19.361062 1 C s - 6 10.671027 1 C s 34 -8.087147 1 C dxx - 39 -8.082947 1 C dzz 37 -7.914901 1 C dyy - 43 -5.570492 1 C dyy 40 -5.520455 1 C dxx - 45 -5.521675 1 C dzz 96 3.709798 1 C gxxzz - + 5 23.980915 1 C s 4 -19.360999 1 C s + 6 10.671023 1 C s 34 -8.058977 1 C dxx + 37 -8.003149 1 C dyy 39 -8.022787 1 C dzz + 40 -5.528626 1 C dxx 43 -5.544844 1 C dyy + 45 -5.539139 1 C dzz 94 3.658993 1 C gxxyy + center of mass -------------- - x = 0.00000000 y = 0.00000000 z = 0.00000000 + x = 0.00000000 y = -0.00000000 z = 0.00000000 moments of inertia (a.u.) ------------------ 0.000000000000 0.000000000000 0.000000000000 0.000000000000 0.000000000000 0.000000000000 0.000000000000 0.000000000000 0.000000000000 - + Mulliken analysis of the total density -------------------------------------- Atom Charge Shell Charges ----------- ------ ------------------------------------------------------- 1 C 6 6.00 1.99 -0.03 0.37 1.39 0.33 0.00 0.18 0.59 0.69 0.34 0.02 0.01 -0.12 0.11 0.01 0.01 0.10 0.07 0.02 -0.08 - + Multipole analysis of the density wrt the origin ------------------------------------------------ - + L x y z total open nuclear - - - - ----- ---- ------- - 0 0 0 0 0.000000 0.000000 6.000000 - + 0 0 0 0 -0.000000 0.000000 6.000000 + 1 1 0 0 0.000000 0.000000 0.000000 - 1 0 1 0 -0.000000 0.000000 0.000000 + 1 0 1 0 -0.000000 0.000000 -0.000000 1 0 0 1 -0.000000 0.000000 0.000000 + + 2 2 0 0 -5.089069 0.000000 0.000000 + 2 1 1 0 1.108881 0.000000 0.000000 + 2 1 0 1 1.187187 0.000000 0.000000 + 2 0 2 0 -4.701661 0.000000 0.000000 + 2 0 1 1 -0.997781 0.000000 0.000000 + 2 0 0 2 -4.837934 0.000000 0.000000 + - 2 2 0 0 -5.284364 0.000000 0.000000 - 2 1 1 0 -0.695532 0.000000 0.000000 - 2 1 0 1 1.500029 0.000000 0.000000 - 2 0 2 0 -4.089079 0.000000 0.000000 - 2 0 1 1 0.688808 0.000000 0.000000 - 2 0 0 2 -5.255222 0.000000 0.000000 + Parallel integral file used 56 records with 0 large values - Task times cpu: 4.2s wall: 4.2s + Task times cpu: 0.7s wall: 0.8s + + + NWChem Input Module + ------------------- + + Summary of allocated global arrays ----------------------------------- No active global arrays @@ -522,11 +541,12 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 181 181 5187 3085 3125 0 0 262 -number of processes/call -1.34e+15 6.37e+13 1.23e+15 0.00e+00 0.00e+00 -bytes total: 2.11e+07 1.36e+07 2.55e+06 0.00e+00 0.00e+00 2.10e+03 -bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 1146600 bytes +calls: 173 173 2469 1340 1825 0 0 74 +number of processes/call 7.92e+14 1.65e+13 3.63e+12 0.00e+00 0.00e+00 +bytes total: 1.47e+07 6.02e+06 2.34e+06 0.00e+00 0.00e+00 5.92e+02 +bytes remote: 4.55e+06 3.90e+05 3.44e+05 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 697720 bytes + MA_summarize_allocated_blocks: starting scan ... MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: @@ -535,51 +555,26 @@ MA usage statistics: heap stack ---- ----- current number of blocks 0 0 - maximum number of blocks 16 14 + maximum number of blocks 17 14 current total bytes 0 0 - maximum total bytes 80152 38093528 - maximum total K-bytes 81 38094 - maximum total M-bytes 1 39 - - - NWChem Input Module - ------------------- - - - - - + maximum total bytes 63985376 38093480 + maximum total K-bytes 63986 38094 + maximum total M-bytes 64 39 + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, - V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, - J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, - J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, - C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, - K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, - J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, - V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, - B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, - S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, - A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, - D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, - J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, - A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, - R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, - D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, - V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, - Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, - D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, - A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, - and R. J. Harrison - "NWChem: Past, present, and future - J. Chem. Phys. 152, 184102 (2020) - doi:10.1063/5.0004997 - + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -602,4 +597,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 4.2s wall: 4.2s + Total times cpu: 0.7s wall: 0.9s diff --git a/data/NWChem/basicNWChem7.0/C_bigbasis_spherical.out b/data/NWChem/basicNWChem7.0/C_bigbasis_spherical.out index 5068f85b9..a650854ea 100644 --- a/data/NWChem/basicNWChem7.0/C_bigbasis_spherical.out +++ b/data/NWChem/basicNWChem7.0/C_bigbasis_spherical.out @@ -1,26 +1,26 @@ argument 1 = C_bigbasis_spherical.in - - - Northwest Computational Chemistry Package (NWChem) 7.0.2 + + + Northwest Computational Chemistry Package (NWChem) 7.0.0 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2020 + + Copyright (c) 1994-2019 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = osmium - program = nwchem - date = Sat Jun 4 13:32:14 2022 + hostname = smp-n17.sam.pitt.edu + program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem + date = Tue Sep 20 18:17:38 2022 - compiled = Fri_Jul_02_16:33:00_2021 - source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src - nwchem branch = 7.0.2 - nwchem revision = b9985dfa - ga revision = 5.7.2 - use scalapack = T + compiled = Wed_May_13_13:33:26_2020 + source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 + nwchem branch = 7.0.0 + nwchem revision = N/A + ga revision = 5.7.1 + use scalapack = F input = C_bigbasis_spherical.in prefix = carbon. data base = ./carbon.db status = startup - nproc = 1 + nproc = 4 time left = -1s @@ -68,39 +68,39 @@ Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + C atom ------ Scaling coordinates for geometry "geometry" by 1.889725989 (inverse scale = 0.529177249) - - + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.00000000 0.00000000 0.00000000 - + 1 C 6.0000 0.00000000 -0.00000000 0.00000000 + Atomic Mass ----------- - + C 12.000000 - + Effective nuclear repulsion energy (a.u.) 0.0000000000 @@ -108,18 +108,15 @@ ---------------------------- X Y Z ---------------- ---------------- ---------------- - 0.0000000000 0.0000000000 0.0000000000 - - + 0.0000000000 -0.0000000000 0.0000000000 + + XYZ format geometry ------------------- 1 geometry - C 0.00000000 0.00000000 0.00000000 - - library name resolved from: environment - library file name is: - + C 0.00000000 -0.00000000 0.00000000 + Summary of "ao basis" -> "" (spherical) @@ -144,7 +141,7 @@ 1 S 1.47500000E+01 0.305631 1 S 6.03500000E+00 0.399345 1 S 2.53000000E+00 0.217051 - + 2 S 3.39800000E+04 -0.000019 2 S 5.08900000E+03 -0.000151 2 S 1.15700000E+03 -0.000785 @@ -154,63 +151,63 @@ 2 S 1.47500000E+01 -0.077173 2 S 6.03500000E+00 -0.141493 2 S 2.53000000E+00 -0.118019 - + 3 S 7.35500000E-01 1.000000 - + 4 S 2.90500000E-01 1.000000 - + 5 S 1.11100000E-01 1.000000 - + 6 S 7.21600000E+00 1.000000 - + 7 S 1.95700000E+01 1.000000 - + 8 S 5.30730000E+01 1.000000 - + 9 S 4.14500000E-02 1.000000 - + 10 P 3.45100000E+01 0.005378 10 P 7.91500000E+00 0.036132 10 P 2.36800000E+00 0.142493 - + 11 P 8.13200000E-01 1.000000 - + 12 P 2.89000000E-01 1.000000 - + 13 P 1.00700000E-01 1.000000 - + 14 P 8.18200000E+00 1.000000 - + 15 P 2.41860000E+01 1.000000 - + 16 P 7.14940000E+01 1.000000 - + 17 P 3.21800000E-02 1.000000 - + 18 D 1.84800000E+00 1.000000 - + 19 D 6.49000000E-01 1.000000 - + 20 D 2.28000000E-01 1.000000 - + 21 D 8.65600000E+00 1.000000 - + 22 D 3.32130000E+01 1.000000 - + 23 D 7.66000000E-02 1.000000 - + 24 F 1.41900000E+00 1.000000 - + 25 F 4.85000000E-01 1.000000 - + 26 F 2.46940000E+01 1.000000 - + 27 F 1.87000000E-01 1.000000 - + 28 G 1.01100000E+00 1.000000 - + 29 G 4.24000000E-01 1.000000 - + Summary of "ao basis" -> "ao basis" (spherical) @@ -222,11 +219,11 @@ NWChem SCF Module ----------------- - - + + C atom - - + + ao basis = "ao basis" functions = 109 @@ -251,12 +248,12 @@ Forming initial guess at 0.1s - + Superposition of Atomic Density Guess ------------------------------------- - + Sum of atomic energies: -37.67213751 - + Non-variational initial energy ------------------------------ @@ -265,7 +262,7 @@ 2-e energy = 13.106606 HOMO = -0.079257 LUMO = -0.079257 - + Starting SCF solution at 0.3s @@ -280,23 +277,35 @@ ---------------------------------------------- + Integral file = ./carbon.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 141 Max. records in file = 507882 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 9.477D+04 #integrals = 1.842D+06 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 2 moved= 4 time= 0.0 + + iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -37.5687978054 4.94D-01 1.99D-01 0.4 - 2 -37.6026044584 1.47D-01 8.78D-02 1.0 - 3 -37.6045774816 3.03D-03 1.54D-03 2.8 - 4 -37.6045782756 9.17D-06 4.87D-06 6.0 + 1 -37.5687978054 4.94D-01 2.19D-01 0.7 + 2 -37.6026044580 1.47D-01 8.78D-02 0.8 + 3 -37.6045774813 3.03D-03 1.54D-03 0.8 + 4 -37.6045782752 9.14D-06 4.86D-06 0.9 Final RHF results ------------------ - Total SCF energy = -37.604578275565 - One-electron energy = -50.311163756844 - Two-electron energy = 12.706585481279 + Total SCF energy = -37.604578275160 + One-electron energy = -50.311163754186 + Two-electron energy = 12.706585479026 Nuclear repulsion energy = 0.000000000000 - Time for solution = 5.7s + Time for solution = 0.6s Final eigenvalues @@ -316,3029 +325,3032 @@ 11 0.2323 12 0.2416 13 0.2416 - + ROHF Final Molecular Orbital Analysis ------------------------------------- - + Vector 1 Occ=2.000000D+00 E=-1.136493D+01 - MO Center= -5.8D-18, 1.3D-18, 2.4D-17, r^2= 2.7D-02 + MO Center= -7.7D-18, -1.3D-17, -2.7D-18, r^2= 2.7D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.993702 1 C s - + Vector 2 Occ=2.000000D+00 E=-7.256175D-01 - MO Center= 2.1D-15, 2.7D-16, -3.2D-15, r^2= 8.4D-01 + MO Center= 2.7D-15, -7.3D-15, -2.1D-15, r^2= 8.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.591838 1 C s 2 0.344912 1 C s 3 0.281046 1 C s 5 0.271536 1 C s - + Vector 3 Occ=2.000000D+00 E=-3.584495D-01 - MO Center= 2.8D-14, 1.2D-14, -1.1D-14, r^2= 1.2D+00 + MO Center= -1.2D-14, 4.3D-14, 1.7D-14, r^2= 1.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 18 0.311536 1 C pz 16 0.305260 1 C px - 15 0.229462 1 C pz 13 0.224840 1 C px - 21 0.203722 1 C pz 19 0.199618 1 C px - - Vector 4 Occ=0.000000D+00 E= 1.886941D-02 - MO Center= -5.3D-15, -1.4D-14, 1.2D-14, r^2= 4.7D+00 + 17 0.389753 1 C py 14 0.287073 1 C py + 20 0.254870 1 C py 18 0.179650 1 C pz + + Vector 4 Occ=0.000000D+00 E= 1.886942D-02 + MO Center= 2.7D-14, -3.1D-15, 2.2D-15, r^2= 4.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 32 0.518536 1 C py 17 0.294613 1 C py - 20 0.233435 1 C py 14 0.180036 1 C py - - Vector 5 Occ=0.000000D+00 E= 1.886941D-02 - MO Center= 1.2D-14, 5.8D-16, -3.1D-14, r^2= 4.7D+00 + 31 0.509590 1 C px 16 0.289531 1 C px + 19 0.229408 1 C px 13 0.176930 1 C px + + Vector 5 Occ=0.000000D+00 E= 1.886942D-02 + MO Center= -2.6D-14, 2.3D-14, -9.7D-14, r^2= 4.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 -0.373849 1 C pz 31 0.369123 1 C px - 18 -0.212408 1 C pz 16 0.209723 1 C px - 21 -0.168299 1 C pz 19 0.166172 1 C px - - Vector 6 Occ=0.000000D+00 E= 8.316007D-02 - MO Center= 1.9D-12, 7.2D-13, 1.8D-12, r^2= 8.9D+00 + 33 0.482472 1 C pz 18 0.274124 1 C pz + 21 0.217200 1 C pz 32 -0.206615 1 C py + 15 0.167515 1 C pz + + Vector 6 Occ=0.000000D+00 E= 8.315941D-02 + MO Center= -7.9D-13, 1.7D-12, 1.1D-12, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 9 1.822071 1 C s 5 -1.382082 1 C s - 4 0.256979 1 C s 2 -0.200476 1 C s - 3 -0.201429 1 C s - - Vector 7 Occ=0.000000D+00 E= 8.983614D-02 - MO Center= -1.8D-12, -4.1D-13, -1.8D-12, r^2= 1.4D+01 + 9 1.822073 1 C s 5 -1.382087 1 C s + 4 0.256983 1 C s 2 -0.200476 1 C s + 3 -0.201430 1 C s + + Vector 7 Occ=0.000000D+00 E= 8.983622D-02 + MO Center= 5.3D-13, -2.0D-12, -9.0D-13, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.895029 1 C pz 31 0.876997 1 C px - 21 -0.376079 1 C pz 19 -0.368502 1 C px - 32 0.203055 1 C py - + 32 1.119743 1 C py 33 0.516127 1 C pz + 20 -0.470500 1 C py 31 -0.302028 1 C px + 21 -0.216869 1 C pz + Vector 8 Occ=0.000000D+00 E= 1.081510D-01 - MO Center= -2.7D-15, -3.0D-13, -5.6D-14, r^2= 1.1D+01 + MO Center= 2.4D-13, 1.1D-13, 4.0D-14, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 32 1.167316 1 C py 20 -0.796794 1 C py - 31 -0.225071 1 C px 14 -0.206091 1 C py - 19 0.153630 1 C px - + 31 1.155109 1 C px 19 -0.788463 1 C px + 32 0.269550 1 C py 13 -0.203936 1 C px + 20 -0.183991 1 C py + Vector 9 Occ=0.000000D+00 E= 1.081510D-01 - MO Center= -1.4D-13, 8.2D-14, 1.3D-13, r^2= 1.1D+01 + MO Center= 5.5D-14, 8.1D-14, -1.4D-13, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 -0.842458 1 C pz 31 0.830122 1 C px - 21 0.575051 1 C pz 19 -0.566630 1 C px - - Vector 10 Occ=0.000000D+00 E= 2.323429D-01 - MO Center= 1.5D-14, -9.8D-14, 3.3D-15, r^2= 7.0D+00 + 33 1.083042 1 C pz 21 -0.739270 1 C pz + 32 -0.491338 1 C py 20 0.335381 1 C py + 15 -0.191213 1 C pz + + Vector 10 Occ=0.000000D+00 E= 2.323427D-01 + MO Center= -4.1D-14, -1.7D-14, 7.2D-16, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 60 -0.763310 1 C d -1 59 0.708173 1 C d -2 - 63 -0.315328 1 C d 2 62 -0.157531 1 C d 1 - - Vector 11 Occ=0.000000D+00 E= 2.323429D-01 - MO Center= -7.7D-15, 2.7D-14, 2.9D-14, r^2= 7.0D+00 + 62 0.974866 1 C d 1 59 0.429485 1 C d -2 + 60 -0.200828 1 C d -1 47 -0.173000 1 C d 1 + + Vector 11 Occ=0.000000D+00 E= 2.323427D-01 + MO Center= 5.1D-15, -6.6D-15, 1.1D-14, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 63 0.750382 1 C d 2 62 0.541195 1 C d 1 - 61 0.478515 1 C d 0 59 0.337793 1 C d -2 - - Vector 12 Occ=0.000000D+00 E= 2.416051D-01 - MO Center= -1.6D-15, -7.1D-15, 1.1D-14, r^2= 7.0D+00 + 61 0.786092 1 C d 0 63 -0.580690 1 C d 2 + 60 -0.428431 1 C d -1 59 -0.261885 1 C d -2 + + Vector 12 Occ=0.000000D+00 E= 2.416048D-01 + MO Center= 4.6D-15, -3.8D-15, -7.2D-15, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 61 0.948696 1 C d 0 63 -0.522344 1 C d 2 - 59 -0.178700 1 C d -2 46 -0.169974 1 C d 0 - - Vector 13 Occ=0.000000D+00 E= 2.416051D-01 - MO Center= 6.9D-14, 3.0D-14, 7.7D-14, r^2= 7.0D+00 + 61 0.625394 1 C d 0 60 0.573730 1 C d -1 + 63 0.548473 1 C d 2 62 0.371415 1 C d 1 + 59 -0.224722 1 C d -2 + + Vector 13 Occ=0.000000D+00 E= 2.416048D-01 + MO Center= 1.3D-14, -7.3D-14, -3.6D-14, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 60 0.752354 1 C d -1 59 0.719194 1 C d -2 - 63 -0.297694 1 C d 2 62 0.174771 1 C d 1 - - Vector 14 Occ=0.000000D+00 E= 2.453718D-01 - MO Center= 5.7D-14, 8.0D-15, 6.4D-14, r^2= 7.0D+00 + 59 0.863712 1 C d -2 60 0.435434 1 C d -1 + 61 0.331023 1 C d 0 62 -0.291888 1 C d 1 + 63 -0.281389 1 C d 2 44 -0.154749 1 C d -2 + + Vector 14 Occ=0.000000D+00 E= 2.453715D-01 + MO Center= 4.2D-15, 2.8D-14, -1.5D-14, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 62 0.926608 1 C d 1 63 -0.429634 1 C d 2 - 61 -0.269826 1 C d 0 60 -0.214541 1 C d -1 - 59 -0.210219 1 C d -2 5 0.172653 1 C s - 47 -0.167080 1 C d 1 - + 63 -0.686219 1 C d 2 60 0.682237 1 C d -1 + 59 -0.399232 1 C d -2 61 -0.276803 1 C d 0 + 62 0.184019 1 C d 1 5 -0.172653 1 C s + Vector 15 Occ=0.000000D+00 E= 4.438319D-01 - MO Center= -1.1D-13, -2.9D-14, -1.4D-13, r^2= 5.8D+00 + MO Center= 1.8D-14, -7.3D-14, -3.2D-14, r^2= 5.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 1.331638 1 C pz 19 1.304811 1 C px - 18 -0.728887 1 C pz 16 -0.714203 1 C px - 33 -0.551861 1 C pz 31 -0.540743 1 C px - 20 0.302108 1 C py 17 -0.165362 1 C py - + 20 1.665972 1 C py 17 -0.911889 1 C py + 21 0.767902 1 C pz 32 -0.690416 1 C py + 19 -0.449362 1 C px 18 -0.420320 1 C pz + 33 -0.318236 1 C pz 16 0.245963 1 C px + 31 0.186226 1 C px + Vector 16 Occ=0.000000D+00 E= 4.625643D-01 - MO Center= -8.1D-14, 6.7D-14, 2.3D-14, r^2= 5.0D+00 + MO Center= -1.4D-13, -6.8D-14, 1.0D-13, r^2= 5.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 20 1.226368 1 C py 19 -1.080271 1 C px - 17 -0.784378 1 C py 21 0.780282 1 C pz - 16 0.690935 1 C px 18 -0.499064 1 C pz - 32 -0.495323 1 C py 31 0.436315 1 C px - 33 -0.315151 1 C pz - + 19 1.278573 1 C px 21 -0.998447 1 C pz + 16 -0.817768 1 C px 20 0.805086 1 C py + 18 0.638601 1 C pz 17 -0.514928 1 C py + 31 -0.516408 1 C px 33 0.403266 1 C pz + 32 -0.325169 1 C py + Vector 17 Occ=0.000000D+00 E= 4.625643D-01 - MO Center= -6.5D-14, -1.2D-13, 9.0D-14, r^2= 5.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 20 1.300733 1 C py 21 -1.020052 1 C pz - 17 -0.831941 1 C py 19 0.739860 1 C px - 18 0.652419 1 C pz 32 -0.525358 1 C py - 16 -0.473210 1 C px 33 0.411993 1 C pz - 31 -0.298825 1 C px - - Vector 18 Occ=0.000000D+00 E= 4.987103D-01 - MO Center= 1.6D-13, 5.6D-14, -1.1D-13, r^2= 4.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 5 3.787880 1 C s 4 -2.769079 1 C s - 9 -1.559982 1 C s 3 0.395360 1 C s - 1 0.283346 1 C s 2 0.265031 1 C s - - Vector 19 Occ=0.000000D+00 E= 7.441462D-01 - MO Center= 4.0D-14, 1.3D-13, -7.0D-14, r^2= 3.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 85 0.688291 1 C f -3 86 -0.687574 1 C f -2 - 87 0.489740 1 C f -1 88 -0.172217 1 C f 0 - - Vector 20 Occ=0.000000D+00 E= 7.441462D-01 - MO Center= -8.7D-14, 2.0D-14, 8.3D-14, r^2= 3.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 90 0.709079 1 C f 2 91 0.686121 1 C f 3 - 89 0.379039 1 C f 1 88 0.262952 1 C f 0 - 87 0.217541 1 C f -1 - - Vector 21 Occ=0.000000D+00 E= 7.622664D-01 - MO Center= 5.6D-14, 5.8D-14, 1.0D-13, r^2= 3.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 87 0.854451 1 C f -1 85 -0.617946 1 C f -3 - 91 -0.297723 1 C f 3 73 -0.168163 1 C f -1 - 88 -0.167685 1 C f 0 - - Vector 22 Occ=0.000000D+00 E= 7.622664D-01 - MO Center= 4.1D-13, 1.2D-13, 3.8D-13, r^2= 3.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 88 0.748207 1 C f 0 91 -0.644067 1 C f 3 - 89 0.335996 1 C f 1 85 0.330846 1 C f -3 - 90 0.168935 1 C f 2 - - Vector 23 Occ=0.000000D+00 E= 7.735615D-01 - MO Center= 8.6D-15, -1.1D-14, -1.5D-14, r^2= 3.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 86 0.765881 1 C f -2 87 0.422431 1 C f -1 - 90 -0.423469 1 C f 2 85 0.383322 1 C f -3 - 91 0.381906 1 C f 3 72 -0.152091 1 C f -2 - - Vector 24 Occ=0.000000D+00 E= 7.735615D-01 - MO Center= 2.1D-14, -2.4D-13, 3.2D-14, r^2= 3.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 88 0.713280 1 C f 0 89 -0.686032 1 C f 1 - 85 -0.299457 1 C f -3 86 -0.246681 1 C f -2 - 91 0.245728 1 C f 3 90 -0.218371 1 C f 2 - - Vector 25 Occ=0.000000D+00 E= 7.755698D-01 - MO Center= -1.0D-13, 2.3D-13, -8.3D-14, r^2= 3.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 -0.943671 1 C d -1 44 0.922220 1 C d -2 - 60 0.477675 1 C d -1 59 -0.466816 1 C d -2 - 48 -0.240139 1 C d 2 - - Vector 26 Occ=0.000000D+00 E= 7.755698D-01 - MO Center= -3.6D-13, -2.5D-13, -4.5D-13, r^2= 3.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.969124 1 C d 2 47 0.685728 1 C d 1 - 46 0.576861 1 C d 0 63 -0.490559 1 C d 2 - 62 -0.347107 1 C d 1 61 -0.292000 1 C d 0 - 44 0.275354 1 C d -2 - - Vector 27 Occ=0.000000D+00 E= 7.774150D-01 - MO Center= 1.3D-12, -1.2D-13, 4.8D-13, r^2= 3.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 89 0.701996 1 C f 1 90 -0.688852 1 C f 2 - 86 -0.337054 1 C f -2 91 0.244340 1 C f 3 - 88 0.202546 1 C f 0 85 -0.198631 1 C f -3 - 87 -0.162536 1 C f -1 - - Vector 28 Occ=0.000000D+00 E= 7.910503D-01 - MO Center= -4.5D-13, -2.2D-14, 4.5D-13, r^2= 3.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 46 1.141784 1 C d 0 48 -0.673347 1 C d 2 - 61 -0.579557 1 C d 0 63 0.341783 1 C d 2 - 45 0.180712 1 C d -1 - - Vector 29 Occ=0.000000D+00 E= 7.910503D-01 - MO Center= 2.5D-15, 2.6D-13, -4.4D-14, r^2= 3.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.905294 1 C d -1 44 0.897082 1 C d -2 - 60 -0.459517 1 C d -1 59 -0.455348 1 C d -2 - 48 -0.293886 1 C d 2 46 -0.225675 1 C d 0 - 47 0.211147 1 C d 1 - - Vector 30 Occ=0.000000D+00 E= 7.982765D-01 - MO Center= -8.6D-13, -2.0D-13, -9.0D-13, r^2= 3.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 47 1.131007 1 C d 1 62 -0.572969 1 C d 1 - 48 -0.524406 1 C d 2 46 -0.329346 1 C d 0 - 63 0.265665 1 C d 2 45 -0.261866 1 C d -1 - 44 -0.256591 1 C d -2 5 -0.212225 1 C s - 4 0.194624 1 C s 61 0.166847 1 C d 0 - + MO Center= 9.8D-14, -5.0D-15, 1.1D-13, r^2= 5.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 21 1.319365 1 C pz 19 1.208054 1 C px + 18 -0.843858 1 C pz 16 -0.772664 1 C px + 33 -0.532883 1 C pz 31 -0.487925 1 C px + 20 -0.282291 1 C py 17 0.180552 1 C py + + Vector 18 Occ=0.000000D+00 E= 4.987099D-01 + MO Center= 8.0D-15, 1.7D-13, -1.7D-13, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 3.787878 1 C s 4 -2.769078 1 C s + 9 -1.559979 1 C s 3 0.395359 1 C s + 1 0.283346 1 C s 2 0.265029 1 C s + + Vector 19 Occ=0.000000D+00 E= 7.441460D-01 + MO Center= -6.3D-15, -2.3D-14, 4.6D-14, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 89 0.862443 1 C f 1 86 0.522407 1 C f -2 + 91 -0.352412 1 C f 3 85 0.214969 1 C f -3 + 88 -0.185850 1 C f 0 75 -0.167054 1 C f 1 + + Vector 20 Occ=0.000000D+00 E= 7.441460D-01 + MO Center= -8.2D-15, -9.7D-15, 1.4D-14, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 90 -0.674326 1 C f 2 88 0.645960 1 C f 0 + 87 -0.404812 1 C f -1 85 0.324474 1 C f -3 + 86 -0.230058 1 C f -2 91 0.163861 1 C f 3 + + Vector 21 Occ=0.000000D+00 E= 7.622662D-01 + MO Center= 5.6D-15, -1.1D-15, 5.5D-15, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 89 -0.636717 1 C f 1 86 0.601557 1 C f -2 + 85 0.494261 1 C f -3 90 -0.388433 1 C f 2 + 88 -0.213177 1 C f 0 91 -0.191762 1 C f 3 + + Vector 22 Occ=0.000000D+00 E= 7.622662D-01 + MO Center= 8.8D-15, -3.3D-14, -1.6D-14, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 88 0.702269 1 C f 0 91 -0.598903 1 C f 3 + 87 0.425240 1 C f -1 85 -0.385298 1 C f -3 + 86 0.242745 1 C f -2 + + Vector 23 Occ=0.000000D+00 E= 7.735613D-01 + MO Center= 1.0D-13, -5.3D-14, 5.4D-14, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 91 0.655052 1 C f 3 87 0.587716 1 C f -1 + 90 -0.478427 1 C f 2 85 -0.327933 1 C f -3 + 86 0.305081 1 C f -2 89 0.197086 1 C f 1 + + Vector 24 Occ=0.000000D+00 E= 7.735613D-01 + MO Center= 1.2D-13, 4.5D-14, -1.4D-13, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 87 0.726015 1 C f -1 85 0.608824 1 C f -3 + 86 -0.519903 1 C f -2 91 -0.205764 1 C f 3 + 89 0.163740 1 C f 1 + + Vector 25 Occ=0.000000D+00 E= 7.755696D-01 + MO Center= -8.3D-14, -2.9D-14, 1.3D-13, r^2= 3.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.827753 1 C d 1 48 -0.647652 1 C d 2 + 46 0.626314 1 C d 0 45 -0.556619 1 C d -1 + 62 -0.418998 1 C d 1 63 0.327833 1 C d 2 + 61 -0.317032 1 C d 0 60 0.281753 1 C d -1 + + Vector 26 Occ=0.000000D+00 E= 7.755696D-01 + MO Center= -1.1D-13, 1.3D-14, -1.1D-13, r^2= 3.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 47 0.864244 1 C d 1 46 -0.747021 1 C d 0 + 44 0.607290 1 C d -2 62 -0.437469 1 C d 1 + 61 0.378133 1 C d 0 48 0.343304 1 C d 2 + 59 -0.307403 1 C d -2 63 -0.173776 1 C d 2 + 45 0.164482 1 C d -1 + + Vector 27 Occ=0.000000D+00 E= 7.774147D-01 + MO Center= -6.4D-18, 5.2D-15, 1.4D-14, r^2= 3.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 90 0.634468 1 C f 2 88 0.493507 1 C f 0 + 91 0.478507 1 C f 3 85 0.473764 1 C f -3 + 86 0.369124 1 C f -2 + + Vector 28 Occ=0.000000D+00 E= 7.910500D-01 + MO Center= -1.6D-14, 4.8D-14, 1.6D-14, r^2= 3.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.879996 1 C d -1 46 0.855762 1 C d 0 + 60 -0.446675 1 C d -1 61 -0.434375 1 C d 0 + 44 0.400493 1 C d -2 48 0.338606 1 C d 2 + 59 -0.203285 1 C d -2 63 -0.171872 1 C d 2 + 47 0.156285 1 C d 1 + + Vector 29 Occ=0.000000D+00 E= 7.910500D-01 + MO Center= -6.8D-15, 5.2D-14, 1.5D-14, r^2= 3.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 44 1.014394 1 C d -2 48 -0.672899 1 C d 2 + 47 -0.555693 1 C d 1 59 -0.514894 1 C d -2 + 63 0.341555 1 C d 2 62 0.282063 1 C d 1 + + Vector 30 Occ=0.000000D+00 E= 7.982763D-01 + MO Center= -3.2D-16, -5.1D-15, -1.3D-14, r^2= 3.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 -0.837590 1 C d 2 45 0.832731 1 C d -1 + 44 -0.487298 1 C d -2 63 0.424324 1 C d 2 + 60 -0.421862 1 C d -1 46 -0.337863 1 C d 0 + 59 0.246866 1 C d -2 47 0.224612 1 C d 1 + 5 0.212227 1 C s 4 -0.194625 1 C s + Vector 31 Occ=0.000000D+00 E= 1.573792D+00 - MO Center= 3.8D-17, 1.7D-16, 1.3D-15, r^2= 2.0D+00 + MO Center= -7.1D-17, 1.5D-15, 5.1D-17, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 16 1.453761 1 C px 18 -1.210355 1 C pz - 13 -0.996761 1 C px 17 -0.943796 1 C py - 15 0.829871 1 C pz 19 -0.817999 1 C px - 21 0.681040 1 C pz 14 0.647107 1 C py - 20 0.531053 1 C py 31 0.246895 1 C px - + 16 1.763337 1 C px 13 -1.209019 1 C px + 18 1.164492 1 C pz 19 -0.992189 1 C px + 15 -0.798426 1 C pz 21 -0.655233 1 C pz + 31 0.299471 1 C px 33 0.197768 1 C pz + Vector 32 Occ=0.000000D+00 E= 1.573792D+00 - MO Center= -4.3D-16, -7.2D-16, 5.2D-17, r^2= 2.0D+00 + MO Center= 2.2D-16, 2.4D-15, -2.6D-15, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 17 1.861191 1 C py 14 -1.276112 1 C py - 20 -1.047250 1 C py 18 -0.884576 1 C pz - 15 0.606503 1 C pz 21 0.497731 1 C pz - 16 0.471834 1 C px 13 -0.323509 1 C px - 32 0.316090 1 C py 19 -0.265490 1 C px - + 18 1.540875 1 C pz 15 -1.056490 1 C pz + 16 -1.052040 1 C px 17 -0.994007 1 C py + 21 -0.867016 1 C pz 13 0.721324 1 C px + 14 0.681534 1 C py 19 0.591959 1 C px + 20 0.559305 1 C py 33 0.261690 1 C pz + Vector 33 Occ=0.000000D+00 E= 1.591118D+00 - MO Center= 7.8D-15, 2.7D-15, 6.5D-15, r^2= 2.0D+00 + MO Center= -1.5D-16, -5.3D-16, -5.4D-16, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 18 1.516461 1 C pz 16 1.485910 1 C px - 15 -1.000691 1 C pz 13 -0.980531 1 C px - 21 -0.855003 1 C pz 19 -0.837778 1 C px - 17 0.344039 1 C py 33 0.257166 1 C pz - 31 0.251985 1 C px 14 -0.227026 1 C py - - Vector 34 Occ=0.000000D+00 E= 2.025892D+00 - MO Center= -3.7D-15, 1.1D-15, -8.7D-15, r^2= 1.8D+00 + 17 1.897198 1 C py 14 -1.251935 1 C py + 20 -1.069668 1 C py 18 0.874481 1 C pz + 15 -0.577058 1 C pz 16 -0.511730 1 C px + 21 -0.493045 1 C pz 13 0.337684 1 C px + 32 0.321733 1 C py 19 0.288521 1 C px + + Vector 34 Occ=0.000000D+00 E= 2.025893D+00 + MO Center= -1.4D-15, 4.9D-16, 2.3D-16, r^2= 1.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 4.720433 1 C s 3 -3.664895 1 C s - 2 -2.822875 1 C s 5 -2.748517 1 C s - 1 -1.454675 1 C s 9 0.806026 1 C s - 6 -0.540380 1 C s - + 4 4.720430 1 C s 3 -3.664892 1 C s + 2 -2.822864 1 C s 5 -2.748516 1 C s + 1 -1.454671 1 C s 9 0.806025 1 C s + 6 -0.540375 1 C s + Vector 35 Occ=0.000000D+00 E= 2.089992D+00 - MO Center= -8.8D-15, -8.8D-15, 1.1D-14, r^2= 2.0D+00 + MO Center= -4.6D-15, -1.9D-15, 1.4D-15, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 108 0.686358 1 C g 3 109 0.564995 1 C g 4 - 107 0.531862 1 C g 2 106 0.252092 1 C g 1 - 104 0.171271 1 C g -1 105 0.164563 1 C g 0 - 101 0.150134 1 C g -4 - + 106 0.657530 1 C g 1 103 0.558394 1 C g -2 + 108 -0.497209 1 C g 3 105 -0.344582 1 C g 0 + 101 -0.249941 1 C g -4 107 0.172939 1 C g 2 + Vector 36 Occ=0.000000D+00 E= 2.089992D+00 - MO Center= -4.4D-14, 2.4D-14, 3.8D-14, r^2= 2.0D+00 + MO Center= -2.9D-15, -3.1D-16, -1.1D-15, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 102 0.688029 1 C g -3 101 -0.564985 1 C g -4 - 103 -0.517521 1 C g -2 104 0.321550 1 C g -1 - + 107 0.641118 1 C g 2 102 -0.487432 1 C g -3 + 105 -0.454100 1 C g 0 106 -0.394047 1 C g 1 + 104 0.371045 1 C g -1 109 -0.247681 1 C g 4 + Vector 37 Occ=0.000000D+00 E= 2.118339D+00 - MO Center= -7.1D-14, -3.2D-14, -3.2D-14, r^2= 2.0D+00 + MO Center= -2.2D-16, -1.3D-15, 2.1D-15, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 104 0.733450 1 C g -1 109 -0.609958 1 C g 4 - 101 0.325304 1 C g -4 103 -0.280468 1 C g -2 - 107 0.235597 1 C g 2 106 0.233944 1 C g 1 - + 106 0.712795 1 C g 1 109 -0.504958 1 C g 4 + 103 -0.415839 1 C g -2 102 -0.380868 1 C g -3 + 107 0.207978 1 C g 2 101 0.164931 1 C g -4 + 105 0.165663 1 C g 0 108 0.161883 1 C g 3 + Vector 38 Occ=0.000000D+00 E= 2.118339D+00 - MO Center= -7.7D-15, -1.4D-15, 1.5D-14, r^2= 2.0D+00 + MO Center= 3.2D-15, -4.4D-15, -7.1D-16, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 101 0.605169 1 C g -4 105 -0.573569 1 C g 0 - 107 -0.428315 1 C g 2 106 -0.319189 1 C g 1 - 109 0.320034 1 C g 4 103 -0.278521 1 C g -2 - 104 0.211122 1 C g -1 - + 105 0.698568 1 C g 0 108 -0.522432 1 C g 3 + 101 -0.450273 1 C g -4 102 -0.388922 1 C g -3 + 104 0.239305 1 C g -1 107 -0.162297 1 C g 2 + Vector 39 Occ=0.000000D+00 E= 2.138632D+00 - MO Center= 2.6D-14, 7.0D-15, 3.4D-14, r^2= 2.0D+00 + MO Center= -1.1D-15, -6.7D-15, 1.2D-15, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 104 0.575838 1 C g -1 109 0.530026 1 C g 4 - 105 0.442699 1 C g 0 108 -0.415650 1 C g 3 - 103 0.401409 1 C g -2 107 -0.285778 1 C g 2 - + 103 0.748111 1 C g -2 107 -0.434357 1 C g 2 + 109 -0.434605 1 C g 4 102 -0.338358 1 C g -3 + 108 0.336242 1 C g 3 101 0.241418 1 C g -4 + Vector 40 Occ=0.000000D+00 E= 2.138632D+00 - MO Center= -6.9D-15, 3.2D-15, -8.9D-15, r^2= 2.0D+00 + MO Center= 1.3D-15, -3.3D-16, 2.1D-15, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 105 0.632421 1 C g 0 101 0.539475 1 C g -4 - 102 0.426704 1 C g -3 103 -0.356088 1 C g -2 - 104 -0.347020 1 C g -1 106 -0.251590 1 C g 1 - 108 -0.196767 1 C g 3 - - Vector 41 Occ=0.000000D+00 E= 2.150827D+00 - MO Center= -8.2D-15, -4.7D-16, 1.2D-15, r^2= 2.0D+00 + 104 0.798418 1 C g -1 101 0.621020 1 C g -4 + 109 0.349113 1 C g 4 106 0.214954 1 C g 1 + + Vector 41 Occ=0.000000D+00 E= 2.150826D+00 + MO Center= 2.8D-15, -8.6D-15, -1.9D-15, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 106 0.936313 1 C g 1 102 0.322067 1 C g -3 - 101 0.238807 1 C g -4 107 -0.228329 1 C g 2 - 105 -0.207434 1 C g 0 104 -0.201642 1 C g -1 - 108 -0.201592 1 C g 3 97 -0.168500 1 C g 1 - - Vector 42 Occ=0.000000D+00 E= 2.150827D+00 - MO Center= -2.7D-15, -2.7D-16, 1.5D-16, r^2= 2.0D+00 + 107 0.715177 1 C g 2 105 0.599243 1 C g 0 + 103 0.414926 1 C g -2 101 0.286111 1 C g -4 + 104 -0.185655 1 C g -1 102 0.155109 1 C g -3 + + Vector 42 Occ=0.000000D+00 E= 2.150826D+00 + MO Center= -3.5D-15, -7.4D-15, -1.8D-15, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 103 0.624875 1 C g -2 102 0.560875 1 C g -3 - 108 0.529876 1 C g 3 109 -0.313228 1 C g 4 - 107 -0.270032 1 C g 2 101 0.191479 1 C g -4 - - Vector 43 Occ=0.000000D+00 E= 2.154895D+00 - MO Center= 3.6D-15, -8.6D-16, 6.0D-15, r^2= 2.0D+00 + 109 0.689474 1 C g 4 102 -0.527308 1 C g -3 + 108 0.527252 1 C g 3 101 -0.385431 1 C g -4 + 106 0.199365 1 C g 1 + + Vector 43 Occ=0.000000D+00 E= 2.154894D+00 + MO Center= -4.9D-16, 3.6D-16, 9.0D-16, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 107 0.693502 1 C g 2 105 -0.451873 1 C g 0 - 108 -0.451952 1 C g 3 102 0.367405 1 C g -3 - 103 0.339329 1 C g -2 106 -0.204647 1 C g 1 - 101 0.163532 1 C g -4 - + 104 0.578668 1 C g -1 108 0.510395 1 C g 3 + 102 0.505336 1 C g -3 101 -0.496043 1 C g -4 + 109 -0.282015 1 C g 4 106 0.156084 1 C g 1 + Vector 44 Occ=0.000000D+00 E= 2.190629D+00 - MO Center= 2.8D-15, -1.8D-14, 2.7D-14, r^2= 1.4D+00 + MO Center= -3.6D-15, -4.3D-15, 3.2D-15, r^2= 1.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 0.789391 1 C d -2 43 0.713080 1 C d 2 - 44 -0.592751 1 C d -2 41 0.574496 1 C d 0 - 42 0.552800 1 C d 1 40 -0.536462 1 C d -1 - 48 -0.535449 1 C d 2 46 -0.431387 1 C d 0 - 47 -0.415096 1 C d 1 45 0.402828 1 C d -1 - + 41 1.032374 1 C d 0 46 -0.775206 1 C d 0 + 43 -0.744605 1 C d 2 48 0.559121 1 C d 2 + 40 -0.541695 1 C d -1 45 0.406756 1 C d -1 + 39 -0.374900 1 C d -2 44 0.281511 1 C d -2 + 61 0.260241 1 C d 0 63 -0.187700 1 C d 2 + Vector 45 Occ=0.000000D+00 E= 2.190629D+00 - MO Center= -8.6D-15, 3.7D-15, 2.0D-14, r^2= 1.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 40 0.848060 1 C d -1 43 0.786098 1 C d 2 - 39 -0.650819 1 C d -2 45 -0.636805 1 C d -1 - 48 -0.590278 1 C d 2 44 0.488698 1 C d -2 - 42 0.484354 1 C d 1 47 -0.363700 1 C d 1 - 41 0.244390 1 C d 0 60 0.213779 1 C d -1 - - Vector 46 Occ=0.000000D+00 E= 2.224677D+00 - MO Center= -1.3D-14, -1.2D-14, 1.6D-14, r^2= 1.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 41 1.238414 1 C d 0 46 -0.935938 1 C d 0 - 43 -0.659578 1 C d 2 48 0.498480 1 C d 2 - 61 0.312434 1 C d 0 39 -0.278812 1 C d -2 - 44 0.210714 1 C d -2 63 -0.166402 1 C d 2 - - Vector 47 Occ=0.000000D+00 E= 2.224677D+00 - MO Center= -2.7D-14, 3.0D-14, 2.4D-14, r^2= 1.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 40 0.982204 1 C d -1 39 0.923115 1 C d -2 - 45 -0.742306 1 C d -1 44 -0.697649 1 C d -2 - 43 -0.420713 1 C d 2 48 0.317956 1 C d 2 - 60 0.247796 1 C d -1 59 0.232889 1 C d -2 - 42 0.227743 1 C d 1 47 -0.172118 1 C d 1 - - Vector 48 Occ=0.000000D+00 E= 2.237432D+00 - MO Center= -1.1D-15, -1.9D-15, 8.6D-15, r^2= 1.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 42 1.205651 1 C d 1 47 -0.911942 1 C d 1 - 43 -0.559016 1 C d 2 48 0.422834 1 C d 2 - 41 -0.351083 1 C d 0 62 0.303750 1 C d 1 - 40 -0.279149 1 C d -1 39 -0.273526 1 C d -2 - 46 0.265555 1 C d 0 45 0.211146 1 C d -1 - + MO Center= -2.1D-14, -3.1D-15, -8.0D-15, r^2= 1.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 42 1.271768 1 C d 1 47 -0.954965 1 C d 1 + 39 0.538226 1 C d -2 44 -0.404152 1 C d -2 + 62 0.320587 1 C d 1 40 -0.295348 1 C d -1 + 43 -0.229584 1 C d 2 45 0.221776 1 C d -1 + 48 0.172394 1 C d 2 + + Vector 46 Occ=0.000000D+00 E= 2.224676D+00 + MO Center= -1.0D-15, -3.5D-15, 9.5D-17, r^2= 1.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 1.140020 1 C d -2 44 -0.861576 1 C d -2 + 43 -0.638363 1 C d 2 42 -0.551232 1 C d 1 + 48 0.482446 1 C d 2 47 0.416596 1 C d 1 + 59 0.287611 1 C d -2 40 0.188829 1 C d -1 + 63 -0.161050 1 C d 2 + + Vector 47 Occ=0.000000D+00 E= 2.224676D+00 + MO Center= 1.1D-15, -9.1D-16, 1.1D-15, r^2= 1.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 40 0.918007 1 C d -1 41 0.920001 1 C d 0 + 45 -0.693788 1 C d -1 46 -0.695295 1 C d 0 + 43 0.485719 1 C d 2 48 -0.367085 1 C d 2 + 42 0.271998 1 C d 1 60 0.231600 1 C d -1 + 61 0.232103 1 C d 0 39 0.221381 1 C d -2 + + Vector 48 Occ=0.000000D+00 E= 2.237431D+00 + MO Center= -8.6D-16, -4.6D-15, 4.7D-15, r^2= 1.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 43 -0.892870 1 C d 2 40 0.887690 1 C d -1 + 48 0.675357 1 C d 2 45 -0.671439 1 C d -1 + 39 -0.519459 1 C d -2 44 0.392913 1 C d -2 + 41 -0.360162 1 C d 0 46 0.272422 1 C d 0 + 42 0.239436 1 C d 1 63 -0.224948 1 C d 2 + Vector 49 Occ=0.000000D+00 E= 2.245171D+00 - MO Center= 1.3D-14, -3.8D-15, -1.2D-14, r^2= 1.6D+00 + MO Center= 2.5D-14, 1.2D-14, 2.0D-15, r^2= 1.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 76 0.820079 1 C f 2 77 0.707413 1 C f 3 - 75 0.460501 1 C f 1 71 -0.408839 1 C f -3 - 90 -0.398884 1 C f 2 74 0.369000 1 C f 0 - 91 -0.344084 1 C f 3 72 0.260074 1 C f -2 - 89 -0.223986 1 C f 1 85 0.198858 1 C f -3 - + 76 -0.794631 1 C f 2 74 0.779997 1 C f 0 + 73 -0.470762 1 C f -1 90 0.386506 1 C f 2 + 88 -0.379388 1 C f 0 71 0.369013 1 C f -3 + 72 -0.311516 1 C f -2 87 0.228977 1 C f -1 + 77 0.220425 1 C f 3 85 -0.179487 1 C f -3 + Vector 50 Occ=0.000000D+00 E= 2.245171D+00 - MO Center= 1.2D-13, 7.7D-15, -1.8D-14, r^2= 1.6D+00 + MO Center= 7.4D-15, 2.0D-15, 2.2D-15, r^2= 1.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 72 -0.779108 1 C f -2 71 0.713089 1 C f -3 - 73 0.636907 1 C f -1 77 0.415165 1 C f 3 - 86 0.378956 1 C f -2 85 -0.346844 1 C f -3 - 87 -0.309790 1 C f -1 76 0.231318 1 C f 2 - 91 -0.201935 1 C f 3 - + 75 1.034062 1 C f 1 72 0.602693 1 C f -2 + 89 -0.502965 1 C f 1 77 -0.405932 1 C f 3 + 86 -0.293148 1 C f -2 71 0.278986 1 C f -3 + 91 0.197444 1 C f 3 73 -0.181414 1 C f -1 + 74 -0.172717 1 C f 0 + Vector 51 Occ=0.000000D+00 E= 2.283145D+00 - MO Center= 6.2D-15, -2.0D-14, -3.5D-14, r^2= 1.6D+00 + MO Center= -2.5D-15, 7.0D-15, -2.5D-15, r^2= 1.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 74 0.897676 1 C f 0 77 -0.742619 1 C f 3 - 71 0.433982 1 C f -3 88 -0.434823 1 C f 0 - 75 0.389216 1 C f 1 91 0.359715 1 C f 3 - 85 -0.210215 1 C f -3 76 0.202880 1 C f 2 - 89 -0.188531 1 C f 1 - + 77 0.732700 1 C f 3 74 -0.610106 1 C f 0 + 72 -0.594809 1 C f -2 73 -0.470926 1 C f -1 + 75 0.448059 1 C f 1 91 -0.354910 1 C f 3 + 88 0.295527 1 C f 0 86 0.288118 1 C f -2 + 76 0.235992 1 C f 2 87 0.228110 1 C f -1 + Vector 52 Occ=0.000000D+00 E= 2.283145D+00 - MO Center= 2.4D-14, 2.0D-14, -8.1D-14, r^2= 1.6D+00 + MO Center= -1.8D-15, 7.4D-15, -1.7D-15, r^2= 1.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 73 1.020300 1 C f -1 71 -0.709423 1 C f -3 - 87 -0.494220 1 C f -1 77 -0.396527 1 C f 3 - 85 0.343635 1 C f -3 91 0.192072 1 C f 3 - 75 0.175427 1 C f 1 - + 71 0.733769 1 C f -3 74 -0.621280 1 C f 0 + 75 -0.616070 1 C f 1 72 0.488417 1 C f -2 + 76 -0.396230 1 C f 2 85 -0.355428 1 C f -3 + 88 0.300940 1 C f 0 89 0.298417 1 C f 1 + 86 -0.236583 1 C f -2 90 0.191929 1 C f 2 + Vector 53 Occ=0.000000D+00 E= 2.306622D+00 - MO Center= 1.3D-14, 6.1D-15, -1.1D-14, r^2= 1.6D+00 + MO Center= -1.0D-15, 1.8D-14, -3.4D-15, r^2= 1.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 74 0.848284 1 C f 0 75 -0.813183 1 C f 1 - 88 -0.409762 1 C f 0 89 0.392806 1 C f 1 - 71 -0.343977 1 C f -3 77 0.302122 1 C f 3 - 72 -0.270520 1 C f -2 76 -0.270883 1 C f 2 - 85 0.166158 1 C f -3 - + 73 1.080326 1 C f -1 87 -0.521849 1 C f -1 + 71 0.474786 1 C f -3 72 -0.392286 1 C f -2 + 76 -0.314215 1 C f 2 75 0.277550 1 C f 1 + 85 -0.229344 1 C f -3 86 0.189493 1 C f -2 + 90 0.151781 1 C f 2 + Vector 54 Occ=0.000000D+00 E= 2.306622D+00 - MO Center= 1.2D-15, 3.9D-15, -6.0D-15, r^2= 1.6D+00 + MO Center= -3.3D-15, 9.6D-15, 4.1D-15, r^2= 1.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 72 0.914738 1 C f -2 73 0.497852 1 C f -1 - 76 -0.495658 1 C f 2 71 0.462843 1 C f -3 - 77 0.445618 1 C f 3 86 -0.441862 1 C f -2 - 87 -0.240487 1 C f -1 90 0.239426 1 C f 2 - 85 -0.223575 1 C f -3 91 -0.215255 1 C f 3 - + 77 0.804267 1 C f 3 71 -0.668338 1 C f -3 + 72 0.597340 1 C f -2 76 -0.477377 1 C f 2 + 91 -0.388500 1 C f 3 85 0.322839 1 C f -3 + 86 -0.288544 1 C f -2 73 0.243239 1 C f -1 + 90 0.230596 1 C f 2 + Vector 55 Occ=0.000000D+00 E= 2.314600D+00 - MO Center= 1.1D-14, -3.6D-15, -1.5D-14, r^2= 1.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 75 0.832006 1 C f 1 76 -0.816428 1 C f 2 - 89 -0.401506 1 C f 1 72 -0.399477 1 C f -2 - 90 0.393988 1 C f 2 77 0.289592 1 C f 3 - 74 0.240057 1 C f 0 71 -0.235417 1 C f -3 - 73 -0.192638 1 C f -1 86 0.192778 1 C f -2 - - Vector 56 Occ=0.000000D+00 E= 5.167139D+00 - MO Center= 1.1D-15, 5.0D-17, -8.7D-16, r^2= 6.8D-01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 13 1.409567 1 C px 10 -1.270929 1 C px - 15 -1.149714 1 C pz 12 1.036634 1 C pz - 14 -1.020217 1 C py 11 0.919874 1 C py - 16 -0.897898 1 C px 18 0.732370 1 C pz - 17 0.649881 1 C py 19 0.394550 1 C px - - Vector 57 Occ=0.000000D+00 E= 5.167139D+00 - MO Center= 5.9D-16, 9.4D-16, -7.5D-16, r^2= 6.8D-01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 14 1.788136 1 C py 11 -1.612264 1 C py - 17 -1.139047 1 C py 15 -0.930303 1 C pz - 12 0.838803 1 C pz 18 0.592605 1 C pz - 13 0.535416 1 C px 20 0.500515 1 C py - 10 -0.482755 1 C px 16 -0.341061 1 C px - + MO Center= 9.1D-16, 4.7D-15, 1.8D-15, r^2= 1.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 76 0.751972 1 C f 2 74 0.584905 1 C f 0 + 77 0.567127 1 C f 3 71 0.561506 1 C f -3 + 72 0.437487 1 C f -2 90 -0.362883 1 C f 2 + 88 -0.282261 1 C f 0 91 -0.273682 1 C f 3 + 85 -0.270969 1 C f -3 86 -0.211120 1 C f -2 + + Vector 56 Occ=0.000000D+00 E= 5.167138D+00 + MO Center= 1.6D-16, 1.7D-16, 2.6D-16, r^2= 6.8D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 2.002126 1 C px 10 -1.805207 1 C px + 16 -1.275359 1 C px 19 0.560412 1 C px + 15 0.493241 1 C pz 12 -0.444728 1 C pz + 22 0.372920 1 C px 14 0.312681 1 C py + 18 -0.314195 1 C pz 11 -0.281928 1 C py + + Vector 57 Occ=0.000000D+00 E= 5.167138D+00 + MO Center= 3.9D-17, -1.1D-16, -3.3D-16, r^2= 6.8D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 1.840448 1 C pz 12 -1.659431 1 C pz + 18 -1.172370 1 C pz 14 -0.931387 1 C py + 11 0.839780 1 C py 17 0.593296 1 C py + 21 0.515157 1 C pz 24 0.342806 1 C pz + 13 -0.307951 1 C px 10 0.277663 1 C px + Vector 58 Occ=0.000000D+00 E= 5.224839D+00 - MO Center= -3.2D-15, -1.4D-15, -2.9D-15, r^2= 6.8D-01 + MO Center= -2.3D-16, -5.8D-16, 8.9D-17, r^2= 6.8D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 1.477641 1 C pz 13 1.447873 1 C px - 12 -1.321209 1 C pz 10 -1.294592 1 C px - 18 -0.940991 1 C pz 16 -0.922034 1 C px - 21 0.412256 1 C pz 19 0.403951 1 C px - 14 0.335232 1 C py 11 -0.299742 1 C py - + 14 1.848632 1 C py 11 -1.652925 1 C py + 17 -1.177245 1 C py 15 0.852096 1 C pz + 12 -0.761888 1 C pz 18 -0.542631 1 C pz + 20 0.515761 1 C py 13 -0.498630 1 C px + 10 0.445842 1 C px 23 0.339470 1 C py + Vector 59 Occ=0.000000D+00 E= 5.873904D+00 - MO Center= -2.9D-15, 3.7D-15, 2.0D-15, r^2= 8.6D-01 + MO Center= -8.1D-16, -7.0D-17, -3.9D-16, r^2= 8.6D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 99 0.644014 1 C g 3 100 0.613297 1 C g 4 - 93 0.428690 1 C g -3 94 -0.417192 1 C g -2 - 98 0.409773 1 C g 2 95 0.364746 1 C g -1 - 108 -0.307922 1 C g 3 109 -0.293235 1 C g 4 - 92 -0.228275 1 C g -4 102 -0.204969 1 C g -3 - + 98 0.743468 1 C g 2 96 -0.600788 1 C g 0 + 93 -0.485567 1 C g -3 95 0.404710 1 C g -1 + 107 -0.355474 1 C g 2 105 0.287254 1 C g 0 + 100 -0.232136 1 C g 4 102 0.232164 1 C g -3 + 94 0.213944 1 C g -2 92 -0.206581 1 C g -4 + Vector 60 Occ=0.000000D+00 E= 5.873904D+00 - MO Center= -1.7D-15, -4.9D-15, 2.8D-15, r^2= 8.6D-01 + MO Center= -8.2D-16, -6.0D-16, 7.7D-16, r^2= 8.6D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 93 -0.641066 1 C g -3 92 0.613965 1 C g -4 - 98 0.452652 1 C g 2 99 0.421281 1 C g 3 - 94 0.415175 1 C g -2 102 0.306513 1 C g -3 - 101 -0.293555 1 C g -4 97 0.243135 1 C g 1 - 100 0.229238 1 C g 4 96 0.221219 1 C g 0 - + 97 0.834887 1 C g 1 94 0.588660 1 C g -2 + 99 -0.520757 1 C g 3 106 -0.399184 1 C g 1 + 103 -0.281455 1 C g -2 93 0.277306 1 C g -3 + 108 0.248989 1 C g 3 92 -0.228874 1 C g -4 + 96 -0.216838 1 C g 0 100 0.187644 1 C g 4 + Vector 61 Occ=0.000000D+00 E= 5.921174D+00 - MO Center= 4.4D-15, -5.0D-15, -1.4D-15, r^2= 8.5D-01 + MO Center= 1.0D-16, 6.2D-17, -2.3D-18, r^2= 8.5D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 96 -0.651495 1 C g 0 92 0.620690 1 C g -4 - 98 -0.511433 1 C g 2 100 0.449332 1 C g 4 - 97 -0.390169 1 C g 1 105 0.310920 1 C g 0 - 101 -0.296219 1 C g -4 94 -0.265417 1 C g -2 - 107 0.244077 1 C g 2 109 -0.214439 1 C g 4 - + 97 0.742102 1 C g 1 99 0.466340 1 C g 3 + 92 0.425952 1 C g -4 94 -0.412908 1 C g -2 + 100 -0.409087 1 C g 4 106 -0.354161 1 C g 1 + 98 0.293971 1 C g 2 95 -0.278501 1 C g -1 + 96 -0.262255 1 C g 0 108 -0.222556 1 C g 3 + Vector 62 Occ=0.000000D+00 E= 5.921174D+00 - MO Center= -3.0D-16, -7.6D-16, 5.8D-16, r^2= 8.5D-01 + MO Center= 7.2D-16, 8.0D-16, 5.1D-17, r^2= 8.5D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 95 0.846002 1 C g -1 100 -0.626816 1 C g 4 - 92 0.454434 1 C g -4 104 -0.403747 1 C g -1 - 94 -0.354135 1 C g -2 109 0.299142 1 C g 4 - 101 -0.216874 1 C g -4 97 0.209991 1 C g 1 - 98 0.194926 1 C g 2 103 0.169008 1 C g -2 - + 96 0.759855 1 C g 0 93 -0.596124 1 C g -3 + 100 -0.410594 1 C g 4 99 -0.396902 1 C g 3 + 105 -0.362634 1 C g 0 92 -0.326845 1 C g -4 + 97 0.319993 1 C g 1 102 0.284495 1 C g -3 + 94 -0.218261 1 C g -2 109 0.195952 1 C g 4 + Vector 63 Occ=0.000000D+00 E= 5.954845D+00 - MO Center= 7.4D-16, -1.7D-17, -9.3D-16, r^2= 8.5D-01 + MO Center= 1.2D-15, 2.0D-15, -9.9D-18, r^2= 8.5D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 96 0.855021 1 C g 0 99 -0.479007 1 C g 3 - 100 0.440484 1 C g 4 92 0.431191 1 C g -4 - 105 -0.407504 1 C g 0 93 0.314904 1 C g -3 - 108 0.228295 1 C g 3 109 -0.209935 1 C g 4 - 101 -0.205506 1 C g -4 97 -0.194866 1 C g 1 - + 95 0.893559 1 C g -1 92 0.696804 1 C g -4 + 104 -0.425871 1 C g -1 100 0.387380 1 C g 4 + 101 -0.332098 1 C g -4 97 0.240126 1 C g 1 + 109 -0.184626 1 C g 4 + Vector 64 Occ=0.000000D+00 E= 5.954845D+00 - MO Center= 1.0D-15, -1.5D-15, 3.1D-15, r^2= 8.5D-01 + MO Center= -7.9D-16, -1.1D-15, -1.1D-16, r^2= 8.5D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 95 0.735552 1 C g -1 94 0.600250 1 C g -2 - 92 -0.422759 1 C g -4 100 0.400023 1 C g 4 - 93 -0.362215 1 C g -3 104 -0.350565 1 C g -1 - 103 -0.286080 1 C g -2 98 -0.268743 1 C g 2 - 97 0.203782 1 C g 1 101 0.201487 1 C g -4 - + 94 0.837575 1 C g -2 100 -0.489010 1 C g 4 + 98 -0.485330 1 C g 2 103 -0.399189 1 C g -2 + 93 -0.377950 1 C g -3 99 0.376950 1 C g 3 + 92 0.265443 1 C g -4 109 0.233063 1 C g 4 + 107 0.231309 1 C g 2 102 0.180131 1 C g -3 + Vector 65 Occ=0.000000D+00 E= 5.975011D+00 - MO Center= 4.7D-15, 1.6D-15, -5.5D-16, r^2= 8.5D-01 + MO Center= 1.7D-15, -3.7D-15, -1.4D-16, r^2= 8.5D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 97 1.052500 1 C g 1 106 -0.501214 1 C g 1 - 93 0.334682 1 C g -3 92 0.258307 1 C g -4 - 99 -0.249320 1 C g 3 98 -0.243041 1 C g 2 - 96 -0.233389 1 C g 0 95 -0.231050 1 C g -1 - 102 -0.159380 1 C g -3 - + 98 0.797906 1 C g 2 96 0.670054 1 C g 0 + 94 0.467019 1 C g -2 107 -0.379973 1 C g 2 + 105 -0.319088 1 C g 0 92 0.295318 1 C g -4 + 103 -0.222400 1 C g -2 95 -0.210998 1 C g -1 + 100 0.207129 1 C g 4 99 0.187209 1 C g 3 + Vector 66 Occ=0.000000D+00 E= 5.975011D+00 - MO Center= -7.7D-17, 1.2D-15, 3.1D-16, r^2= 8.5D-01 + MO Center= -6.8D-16, -4.7D-16, 4.2D-17, r^2= 8.5D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 94 0.698964 1 C g -2 93 0.641571 1 C g -3 - 99 0.583239 1 C g 3 100 -0.345102 1 C g 4 - 103 -0.332855 1 C g -2 98 -0.312196 1 C g 2 - 102 -0.305524 1 C g -3 108 -0.277746 1 C g 3 - 92 0.224854 1 C g -4 109 0.164342 1 C g 4 - + 100 0.760945 1 C g 4 93 -0.598801 1 C g -3 + 99 0.580282 1 C g 3 92 -0.448571 1 C g -4 + 109 -0.362372 1 C g 4 102 0.285157 1 C g -3 + 108 -0.276338 1 C g 3 97 0.226096 1 C g 1 + 101 0.213615 1 C g -4 + Vector 67 Occ=0.000000D+00 E= 5.981727D+00 - MO Center= 5.5D-15, 8.5D-16, -4.1D-15, r^2= 8.5D-01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 98 0.775854 1 C g 2 96 -0.505532 1 C g 0 - 99 -0.505621 1 C g 3 93 0.411033 1 C g -3 - 94 0.379624 1 C g -2 107 -0.369370 1 C g 2 - 105 0.240675 1 C g 0 108 0.240717 1 C g 3 - 97 -0.228949 1 C g 1 102 -0.195686 1 C g -3 - - Vector 68 Occ=0.000000D+00 E= 6.319865D+00 - MO Center= 1.5D-14, -2.2D-14, -1.9D-14, r^2= 5.4D-01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 34 0.819481 1 C d -2 39 -0.696074 1 C d -2 - 38 0.636287 1 C d 2 35 -0.587617 1 C d -1 - 36 0.542059 1 C d 0 43 -0.540468 1 C d 2 - 37 0.502731 1 C d 1 40 0.499127 1 C d -1 - 41 -0.460430 1 C d 0 42 -0.427024 1 C d 1 - - Vector 69 Occ=0.000000D+00 E= 6.319865D+00 - MO Center= 2.8D-15, 2.0D-14, -1.4D-14, r^2= 5.4D-01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 38 0.820979 1 C d 2 35 0.786882 1 C d -1 - 43 -0.697347 1 C d 2 40 -0.668385 1 C d -1 - 34 -0.575288 1 C d -2 37 0.514430 1 C d 1 - 39 0.488655 1 C d -2 42 -0.436962 1 C d 1 - 48 0.327199 1 C d 2 45 0.313609 1 C d -1 - - Vector 70 Occ=0.000000D+00 E= 6.374997D+00 - MO Center= 5.9D-16, -4.1D-15, -4.3D-15, r^2= 5.4D-01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 1.213915 1 C d 0 41 -1.034060 1 C d 0 - 38 -0.644514 1 C d 2 43 0.549022 1 C d 2 - 46 0.483878 1 C d 0 34 -0.277417 1 C d -2 - 48 -0.256910 1 C d 2 39 0.236314 1 C d -2 - 61 -0.151873 1 C d 0 - - Vector 71 Occ=0.000000D+00 E= 6.374997D+00 - MO Center= -1.8D-15, 2.7D-16, 1.3D-15, r^2= 5.4D-01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 35 0.962782 1 C d -1 34 0.903432 1 C d -2 - 40 -0.820135 1 C d -1 39 -0.769579 1 C d -2 - 38 -0.415296 1 C d 2 45 0.383774 1 C d -1 - 44 0.360117 1 C d -2 43 0.353765 1 C d 2 - 37 0.223201 1 C d 1 42 -0.190131 1 C d 1 - - Vector 72 Occ=0.000000D+00 E= 6.393612D+00 - MO Center= -6.4D-15, 2.4D-16, 4.2D-15, r^2= 5.4D-01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 1.183133 1 C d 1 42 -1.008624 1 C d 1 - 38 -0.548575 1 C d 2 47 0.471520 1 C d 1 - 43 0.467662 1 C d 2 36 -0.344525 1 C d 0 - 41 0.293709 1 C d 0 35 -0.273936 1 C d -1 - 34 -0.268417 1 C d -2 40 0.233531 1 C d -1 - + MO Center= -3.7D-16, 3.4D-15, 1.5D-15, r^2= 8.5D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 95 0.647384 1 C g -1 99 0.571003 1 C g 3 + 93 0.565344 1 C g -3 92 -0.554947 1 C g -4 + 100 -0.315504 1 C g 4 104 -0.308208 1 C g -1 + 108 -0.271845 1 C g 3 102 -0.269150 1 C g -3 + 101 0.264201 1 C g -4 97 0.174618 1 C g 1 + + Vector 68 Occ=0.000000D+00 E= 6.319864D+00 + MO Center= -2.5D-15, -3.2D-15, 2.4D-15, r^2= 5.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 1.012174 1 C d 0 41 -0.859750 1 C d 0 + 38 -0.723042 1 C d 2 43 0.614158 1 C d 2 + 35 -0.522957 1 C d -1 40 0.444204 1 C d -1 + 46 0.403399 1 C d 0 34 -0.379585 1 C d -2 + 39 0.322423 1 C d -2 48 -0.288166 1 C d 2 + + Vector 69 Occ=0.000000D+00 E= 6.319864D+00 + MO Center= -1.5D-15, -5.5D-16, 2.9D-15, r^2= 5.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 1.243575 1 C d 1 42 -1.056303 1 C d 1 + 34 0.517673 1 C d -2 47 0.495623 1 C d 1 + 39 -0.439716 1 C d -2 35 -0.301837 1 C d -1 + 40 0.256383 1 C d -1 38 -0.242319 1 C d 2 + 43 0.205828 1 C d 2 44 0.206317 1 C d -2 + + Vector 70 Occ=0.000000D+00 E= 6.374996D+00 + MO Center= -1.5D-14, -3.7D-15, -1.8D-15, r^2= 5.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 34 1.112135 1 C d -2 39 -0.947360 1 C d -2 + 38 -0.636143 1 C d 2 37 -0.546076 1 C d 1 + 43 0.541891 1 C d 2 42 0.465169 1 C d 1 + 44 0.443308 1 C d -2 48 -0.253573 1 C d 2 + 47 -0.217671 1 C d 1 35 0.164849 1 C d -1 + + Vector 71 Occ=0.000000D+00 E= 6.374996D+00 + MO Center= 3.9D-15, 1.0D-14, 9.1D-15, r^2= 5.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 35 0.903617 1 C d -1 36 0.902241 1 C d 0 + 40 -0.769736 1 C d -1 41 -0.768564 1 C d 0 + 38 0.461887 1 C d 2 43 -0.393453 1 C d 2 + 45 0.360190 1 C d -1 46 0.359642 1 C d 0 + 37 0.254396 1 C d 1 34 0.241954 1 C d -2 + + Vector 72 Occ=0.000000D+00 E= 6.393611D+00 + MO Center= 9.3D-15, 1.4D-14, -1.1D-14, r^2= 5.4D-01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 -0.876194 1 C d 2 35 0.871110 1 C d -1 + 43 0.746957 1 C d 2 40 -0.742623 1 C d -1 + 34 -0.509757 1 C d -2 39 0.434569 1 C d -2 + 36 -0.353435 1 C d 0 48 -0.349194 1 C d 2 + 45 0.347168 1 C d -1 41 0.301304 1 C d 0 + Vector 73 Occ=0.000000D+00 E= 6.418132D+00 - MO Center= -2.4D-14, 5.0D-15, 2.3D-14, r^2= 6.2D-01 + MO Center= 4.3D-15, 2.9D-15, -4.4D-15, r^2= 6.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 69 0.791779 1 C f 2 70 0.724887 1 C f 3 - 76 -0.498966 1 C f 2 77 -0.456812 1 C f 3 - 68 0.433847 1 C f 1 67 0.324705 1 C f 0 - 75 -0.273403 1 C f 1 64 -0.233808 1 C f -3 - 74 -0.204624 1 C f 0 90 0.185227 1 C f 2 - + 68 0.869298 1 C f 1 75 -0.547818 1 C f 1 + 69 -0.502277 1 C f 2 64 0.403468 1 C f -3 + 66 -0.377524 1 C f -1 65 0.318414 1 C f -2 + 76 0.316527 1 C f 2 67 0.253397 1 C f 0 + 71 -0.254259 1 C f -3 73 0.237910 1 C f -1 + Vector 74 Occ=0.000000D+00 E= 6.418132D+00 - MO Center= 1.7D-15, -1.5D-15, -1.7D-15, r^2= 6.2D-01 + MO Center= 7.7D-16, 1.0D-15, -1.8D-15, r^2= 6.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 65 -0.760052 1 C f -2 64 0.728827 1 C f -3 - 66 0.580635 1 C f -1 72 0.478973 1 C f -2 - 71 -0.459295 1 C f -3 73 -0.365907 1 C f -1 - 70 0.240672 1 C f 3 86 -0.177806 1 C f -2 - 85 0.170501 1 C f -3 77 -0.151668 1 C f 3 - + 67 0.699428 1 C f 0 69 -0.557619 1 C f 2 + 65 -0.545642 1 C f -2 74 -0.440769 1 C f 0 + 68 -0.427248 1 C f 1 70 0.375848 1 C f 3 + 76 0.351403 1 C f 2 72 0.343855 1 C f -2 + 66 -0.279604 1 C f -1 75 0.269245 1 C f 1 + Vector 75 Occ=0.000000D+00 E= 6.473027D+00 - MO Center= 4.3D-15, 7.6D-16, 9.4D-15, r^2= 6.2D-01 + MO Center= 1.0D-14, 3.0D-15, 8.1D-16, r^2= 6.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 67 0.844849 1 C f 0 70 -0.656109 1 C f 3 - 74 -0.531902 1 C f 0 64 0.461102 1 C f -3 - 77 0.413075 1 C f 3 68 0.346549 1 C f 1 - 71 -0.290302 1 C f -3 75 -0.218181 1 C f 1 - 88 0.197045 1 C f 0 69 0.191222 1 C f 2 - + 67 0.809456 1 C f 0 70 -0.594068 1 C f 3 + 64 -0.541315 1 C f -3 74 -0.509620 1 C f 0 + 66 0.444153 1 C f -1 77 0.374015 1 C f 3 + 71 0.340802 1 C f -3 73 -0.279631 1 C f -1 + 88 0.188791 1 C f 0 + Vector 76 Occ=0.000000D+00 E= 6.473027D+00 - MO Center= -1.9D-15, 1.0D-14, -4.4D-15, r^2= 6.2D-01 + MO Center= -7.1D-15, -3.1D-15, 2.4D-15, r^2= 6.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 66 0.953371 1 C f -1 64 -0.622225 1 C f -3 - 73 -0.600226 1 C f -1 70 -0.429100 1 C f 3 - 71 0.391742 1 C f -3 77 0.270154 1 C f 3 - 87 0.222356 1 C f -1 68 0.194845 1 C f 1 - + 65 0.708866 1 C f -2 68 -0.705390 1 C f 1 + 72 -0.446290 1 C f -2 75 0.444101 1 C f 1 + 64 0.431775 1 C f -3 69 -0.421087 1 C f 2 + 70 -0.360336 1 C f 3 71 -0.271838 1 C f -3 + 76 0.265109 1 C f 2 77 0.226861 1 C f 3 + Vector 77 Occ=0.000000D+00 E= 6.506281D+00 - MO Center= 8.4D-16, -2.0D-15, -2.3D-15, r^2= 6.2D-01 + MO Center= -1.3D-14, -1.6D-14, 2.2D-15, r^2= 6.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 65 0.771278 1 C f -2 69 -0.507433 1 C f 2 - 72 -0.485242 1 C f -2 66 0.478897 1 C f -1 - 70 0.468766 1 C f 3 64 0.345850 1 C f -3 - 76 0.319246 1 C f 2 73 -0.301293 1 C f -1 - 77 -0.294920 1 C f 3 67 0.273572 1 C f 0 - + 64 0.758073 1 C f -3 65 -0.657414 1 C f -2 + 66 0.510796 1 C f -1 70 -0.474832 1 C f 3 + 71 -0.476934 1 C f -3 72 0.413605 1 C f -2 + 73 -0.321362 1 C f -1 77 0.298736 1 C f 3 + 85 0.176457 1 C f -3 86 -0.153026 1 C f -2 + Vector 78 Occ=0.000000D+00 E= 6.506281D+00 - MO Center= 2.9D-15, 1.4D-15, -1.5D-16, r^2= 6.2D-01 + MO Center= 3.8D-15, 3.5D-16, 8.3D-15, r^2= 6.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 67 0.747350 1 C f 0 68 -0.740380 1 C f 1 - 74 -0.470188 1 C f 0 75 0.465803 1 C f 1 - 65 -0.441378 1 C f -2 64 -0.411081 1 C f -3 - 72 0.277688 1 C f -2 71 0.258628 1 C f -3 - 70 0.178351 1 C f 3 88 0.173961 1 C f 0 - + 66 0.896277 1 C f -1 70 0.591231 1 C f 3 + 73 -0.563883 1 C f -1 69 -0.515961 1 C f 2 + 77 -0.371967 1 C f 3 76 0.324612 1 C f 2 + 68 0.268532 1 C f 1 87 0.208627 1 C f -1 + 75 -0.168944 1 C f 1 + Vector 79 Occ=0.000000D+00 E= 6.517435D+00 - MO Center= -3.8D-15, -1.9D-15, 2.9D-15, r^2= 6.2D-01 + MO Center= 7.0D-15, -2.8D-15, -1.0D-14, r^2= 6.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 68 0.775251 1 C f 1 69 -0.760736 1 C f 2 - 75 -0.487615 1 C f 1 76 0.478485 1 C f 2 - 65 -0.372227 1 C f -2 70 0.269837 1 C f 3 - 72 0.234122 1 C f -2 67 0.223682 1 C f 0 - 64 -0.219358 1 C f -3 66 -0.179497 1 C f -1 - - Vector 80 Occ=0.000000D+00 E= 8.952256D+00 - MO Center= 6.0D-16, 2.1D-16, 3.0D-15, r^2= 4.8D-01 + 69 0.700676 1 C f 2 67 0.545006 1 C f 0 + 70 0.528441 1 C f 3 64 0.523203 1 C f -3 + 76 -0.440709 1 C f 2 65 0.407644 1 C f -2 + 74 -0.342796 1 C f 0 77 -0.332377 1 C f 3 + 71 -0.329082 1 C f -3 72 -0.256398 1 C f -2 + + Vector 80 Occ=0.000000D+00 E= 8.952275D+00 + MO Center= -6.7D-17, -2.2D-17, -2.4D-17, r^2= 4.8D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 15.465344 1 C s 1 10.092074 1 C s - 6 4.129193 1 C s 3 3.351479 1 C s - 4 -2.545547 1 C s 5 1.231570 1 C s - 9 -0.353824 1 C s 8 0.186935 1 C s - + 2 15.465343 1 C s 1 10.092079 1 C s + 6 4.129188 1 C s 3 3.351480 1 C s + 4 -2.545550 1 C s 5 1.231572 1 C s + 9 -0.353825 1 C s 8 0.186934 1 C s + Vector 81 Occ=0.000000D+00 E= 1.865905D+01 - MO Center= 7.5D-17, -7.4D-16, 1.3D-16, r^2= 2.0D-01 + MO Center= 9.1D-17, -6.4D-18, 1.4D-16, r^2= 2.0D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 1.715758 1 C py 23 -1.719299 1 C py - 14 -0.976334 1 C py 12 -0.861289 1 C pz - 24 0.863067 1 C pz 17 0.518509 1 C py - 15 0.490108 1 C pz 10 0.481741 1 C px - 22 -0.482735 1 C px 13 -0.274130 1 C px - + 12 1.408428 1 C pz 24 -1.411335 1 C pz + 10 1.361837 1 C px 22 -1.364648 1 C px + 15 -0.801451 1 C pz 13 -0.774939 1 C px + 18 0.425632 1 C pz 16 0.411552 1 C px + 11 -0.281863 1 C py 23 0.282445 1 C py + Vector 82 Occ=0.000000D+00 E= 1.865905D+01 - MO Center= 5.4D-16, 9.1D-17, -3.9D-16, r^2= 2.0D-01 + MO Center= -8.4D-17, -8.7D-17, 6.9D-17, r^2= 2.0D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 10 1.347496 1 C px 22 -1.350277 1 C px - 12 -1.108296 1 C pz 24 1.110584 1 C pz - 11 -0.934693 1 C py 23 0.936622 1 C py - 13 -0.766779 1 C px 15 0.630665 1 C pz - 14 0.531878 1 C py 16 0.407218 1 C px - + 10 1.356960 1 C px 22 -1.359761 1 C px + 12 -1.134199 1 C pz 24 1.136540 1 C pz + 11 0.888802 1 C py 23 -0.890637 1 C py + 13 -0.772164 1 C px 15 0.645404 1 C pz + 14 -0.505763 1 C py 16 0.410078 1 C px + Vector 83 Occ=0.000000D+00 E= 1.872025D+01 - MO Center= 4.2D-17, 7.3D-17, -4.8D-16, r^2= 2.0D-01 + MO Center= 5.6D-17, 1.5D-16, 4.2D-17, r^2= 2.0D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 1.398016 1 C pz 24 -1.398277 1 C pz - 10 1.369852 1 C px 22 -1.370108 1 C px - 15 -0.795871 1 C pz 13 -0.779838 1 C px - 18 0.422265 1 C pz 16 0.413758 1 C px - 11 0.317167 1 C py 23 -0.317227 1 C py - + 11 1.749016 1 C py 23 -1.749342 1 C py + 14 -0.995690 1 C py 12 0.806179 1 C pz + 24 -0.806330 1 C pz 17 0.528282 1 C py + 10 -0.471761 1 C px 22 0.471849 1 C px + 15 -0.458947 1 C pz 13 0.268567 1 C px + Vector 84 Occ=0.000000D+00 E= 2.637504D+01 - MO Center= -1.0D-16, 4.5D-16, -1.6D-17, r^2= 1.1D-01 + MO Center= 3.4D-17, -2.6D-17, 6.8D-17, r^2= 1.1D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 0.776642 1 C d -1 49 -0.681974 1 C d -2 - 35 -0.444588 1 C d -1 53 0.444429 1 C d 2 - 34 0.390395 1 C d -2 40 0.271654 1 C d -1 - 38 -0.254413 1 C d 2 52 0.248017 1 C d 1 - 39 -0.238541 1 C d -2 43 0.155453 1 C d 2 - + 52 1.018344 1 C d 1 37 -0.582950 1 C d 1 + 49 0.407968 1 C d -2 42 0.356197 1 C d 1 + 50 -0.271279 1 C d -1 34 -0.233541 1 C d -2 + 53 -0.231396 1 C d 2 47 -0.162690 1 C d 1 + 35 0.155293 1 C d -1 + Vector 85 Occ=0.000000D+00 E= 2.637504D+01 - MO Center= -3.4D-16, -3.2D-17, 2.4D-16, r^2= 1.1D-01 + MO Center= 1.1D-17, -2.2D-17, 5.7D-18, r^2= 1.1D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 53 0.729278 1 C d 2 52 0.536896 1 C d 1 - 51 0.499027 1 C d 0 49 0.461141 1 C d -2 - 38 -0.417475 1 C d 2 37 -0.307346 1 C d 1 - 36 -0.285668 1 C d 0 34 -0.263980 1 C d -2 - 43 0.255087 1 C d 2 50 -0.221036 1 C d -1 - + 51 0.833822 1 C d 0 53 -0.582736 1 C d 2 + 36 -0.477321 1 C d 0 50 -0.415797 1 C d -1 + 38 0.333587 1 C d 2 49 -0.334873 1 C d -2 + 41 0.291655 1 C d 0 35 0.238022 1 C d -1 + 43 -0.203830 1 C d 2 34 0.191698 1 C d -2 + Vector 86 Occ=0.000000D+00 E= 2.642040D+01 - MO Center= 3.4D-17, -3.0D-16, -2.1D-16, r^2= 1.1D-01 + MO Center= -1.7D-17, 2.3D-17, -5.7D-17, r^2= 1.1D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 0.792217 1 C d -1 49 0.738188 1 C d -2 - 35 -0.454173 1 C d -1 34 -0.423199 1 C d -2 - 53 -0.352264 1 C d 2 40 0.277412 1 C d -1 - 39 0.258492 1 C d -2 38 0.201951 1 C d 2 - 52 0.183520 1 C d 1 - + 50 0.743748 1 C d -1 51 0.742061 1 C d 0 + 35 -0.426386 1 C d -1 36 -0.425419 1 C d 0 + 53 0.377478 1 C d 2 40 0.260439 1 C d -1 + 41 0.259849 1 C d 0 38 -0.216406 1 C d 2 + 52 0.207174 1 C d 1 49 0.203137 1 C d -2 + Vector 87 Occ=0.000000D+00 E= 2.642040D+01 - MO Center= -2.8D-16, 1.8D-17, 1.4D-16, r^2= 1.1D-01 + MO Center= -1.1D-16, -5.7D-17, -3.2D-18, r^2= 1.1D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 0.998821 1 C d 0 36 -0.572618 1 C d 0 - 53 -0.522987 1 C d 2 41 0.349758 1 C d 0 - 38 0.299826 1 C d 2 49 -0.243231 1 C d -2 - 43 -0.183135 1 C d 2 46 -0.159653 1 C d 0 - + 49 0.913713 1 C d -2 34 -0.523826 1 C d -2 + 53 -0.524887 1 C d 2 52 -0.450041 1 C d 1 + 39 0.319956 1 C d -2 38 0.300915 1 C d 2 + 37 0.258006 1 C d 1 43 -0.183800 1 C d 2 + 42 -0.157592 1 C d 1 + Vector 88 Occ=0.000000D+00 E= 2.643532D+01 - MO Center= -4.0D-16, -2.9D-17, 3.0D-17, r^2= 1.1D-01 + MO Center= 2.7D-17, -7.0D-17, -2.1D-17, r^2= 1.1D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 52 0.973150 1 C d 1 37 -0.558162 1 C d 1 - 53 -0.451214 1 C d 2 42 0.340881 1 C d 1 - 51 -0.283379 1 C d 0 38 0.258799 1 C d 2 - 50 -0.225317 1 C d -1 49 -0.220778 1 C d -2 - 36 0.162535 1 C d 0 43 -0.158054 1 C d 2 - - Vector 89 Occ=0.000000D+00 E= 3.520176D+01 - MO Center= 4.4D-16, 4.5D-16, -3.7D-18, r^2= 1.4D-01 + 53 -0.720686 1 C d 2 50 0.716505 1 C d -1 + 49 -0.419285 1 C d -2 38 0.413358 1 C d 2 + 35 -0.410960 1 C d -1 51 -0.290707 1 C d 0 + 43 -0.252446 1 C d 2 40 0.250981 1 C d -1 + 34 0.240486 1 C d -2 52 0.193262 1 C d 1 + + Vector 89 Occ=0.000000D+00 E= 3.520177D+01 + MO Center= -6.1D-18, -6.3D-18, -7.1D-17, r^2= 1.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 10.107423 1 C s 6 6.793142 1 C s - 1 4.180134 1 C s 7 -1.860923 1 C s - 3 1.694532 1 C s 4 -1.183803 1 C s - 5 0.570960 1 C s 8 0.510410 1 C s + 2 10.107443 1 C s 6 6.793142 1 C s + 1 4.180155 1 C s 7 -1.860925 1 C s + 3 1.694535 1 C s 4 -1.183806 1 C s + 5 0.570961 1 C s 8 0.510409 1 C s 9 -0.166050 1 C s - - Vector 90 Occ=0.000000D+00 E= 6.630291D+01 - MO Center= -7.4D-17, -1.4D-16, 1.3D-16, r^2= 5.9D-02 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 1.667254 1 C py 26 -1.575707 1 C py - 11 -0.954688 1 C py 24 -0.636468 1 C pz - 27 0.601520 1 C pz 14 0.478365 1 C py - 12 0.364448 1 C pz 22 0.263528 1 C px - 17 -0.253725 1 C py 25 -0.249057 1 C px - - Vector 91 Occ=0.000000D+00 E= 6.630291D+01 - MO Center= 1.5D-16, -1.3D-16, -1.5D-16, r^2= 5.9D-02 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 22 1.277336 1 C px 25 -1.207198 1 C px - 24 -1.109692 1 C pz 27 1.048760 1 C pz - 10 -0.731416 1 C px 12 0.635422 1 C pz - 23 -0.625517 1 C py 26 0.591171 1 C py - 13 0.366490 1 C px 11 0.358178 1 C py - + + Vector 90 Occ=0.000000D+00 E= 6.630290D+01 + MO Center= -2.1D-17, -9.9D-17, 6.7D-17, r^2= 5.9D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 24 1.647571 1 C pz 27 -1.557104 1 C pz + 12 -0.943417 1 C pz 23 -0.695765 1 C py + 26 0.657561 1 C py 15 0.472717 1 C pz + 11 0.398403 1 C py 18 -0.250729 1 C pz + 22 0.235996 1 C px 25 -0.223038 1 C px + + Vector 91 Occ=0.000000D+00 E= 6.630290D+01 + MO Center= 4.8D-17, -1.9D-17, -8.3D-18, r^2= 5.9D-02 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 1.736191 1 C px 25 -1.640859 1 C px + 10 -0.994162 1 C px 13 0.498144 1 C px + 23 0.487951 1 C py 26 -0.461158 1 C py + 11 -0.279406 1 C py 16 -0.264215 1 C px + 28 0.166235 1 C px + Vector 92 Occ=0.000000D+00 E= 6.634334D+01 - MO Center= 1.7D-17, -2.4D-16, -3.1D-16, r^2= 5.9D-02 + MO Center= -4.5D-17, 1.1D-16, 7.2D-17, r^2= 5.9D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 24 1.272557 1 C pz 22 1.246920 1 C px - 27 -1.202005 1 C pz 25 -1.177790 1 C px - 12 -0.728927 1 C pz 10 -0.714242 1 C px - 15 0.365212 1 C pz 13 0.357854 1 C px - 23 0.288704 1 C py 26 -0.272698 1 C py - + 23 1.592057 1 C py 26 -1.503792 1 C py + 11 -0.911938 1 C py 24 0.733832 1 C pz + 27 -0.693148 1 C pz 14 0.456905 1 C py + 22 -0.429425 1 C px 12 -0.420342 1 C pz + 25 0.405617 1 C px 10 0.245977 1 C px + Vector 93 Occ=0.000000D+00 E= 9.865573D+01 - MO Center= -6.5D-17, -9.0D-17, 8.5D-17, r^2= 2.6D-02 + MO Center= 3.3D-17, 2.2D-19, -4.5D-17, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 83 0.579190 1 C f 2 84 0.471191 1 C f 3 - 78 -0.397965 1 C f -3 82 0.332539 1 C f 1 - 79 0.296069 1 C f -2 81 0.282030 1 C f 0 - + 82 0.757937 1 C f 1 79 0.486169 1 C f -2 + 84 -0.328699 1 C f 3 81 -0.220635 1 C f 0 + 78 0.164633 1 C f -3 + Vector 94 Occ=0.000000D+00 E= 9.865573D+01 - MO Center= 2.8D-19, 8.3D-17, -2.0D-17, r^2= 2.6D-02 + MO Center= 1.6D-18, -2.2D-17, -1.1D-17, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 79 0.544939 1 C f -2 78 -0.476244 1 C f -3 - 80 -0.473097 1 C f -1 84 -0.401919 1 C f 3 - 83 -0.280092 1 C f 2 - + 83 -0.608487 1 C f 2 81 0.561402 1 C f 0 + 80 -0.372458 1 C f -1 78 0.308057 1 C f -3 + 82 0.205880 1 C f 1 79 -0.161385 1 C f -2 + Vector 95 Occ=0.000000D+00 E= 9.867875D+01 - MO Center= -7.2D-17, -4.8D-18, 9.9D-17, r^2= 2.6D-02 + MO Center= 5.0D-18, -4.6D-17, -5.4D-18, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 80 0.767994 1 C f -1 78 -0.460976 1 C f -3 - 84 -0.403673 1 C f 3 82 0.187581 1 C f 1 - + 81 0.656377 1 C f 0 78 -0.477410 1 C f -3 + 84 -0.443638 1 C f 3 80 0.341960 1 C f -1 + Vector 96 Occ=0.000000D+00 E= 9.867875D+01 - MO Center= 1.4D-16, 8.4D-17, -1.4D-16, r^2= 2.6D-02 + MO Center= 1.2D-17, -4.3D-17, -3.0D-17, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 81 0.686573 1 C f 0 84 -0.491108 1 C f 3 - 78 0.426487 1 C f -3 82 0.262197 1 C f 1 - 83 0.155673 1 C f 2 - + 79 0.580941 1 C f -2 82 -0.560711 1 C f 1 + 84 -0.347314 1 C f 3 83 -0.330915 1 C f 2 + 78 0.295545 1 C f -3 80 0.173722 1 C f -1 + Vector 97 Occ=0.000000D+00 E= 9.869254D+01 - MO Center= -4.2D-17, 9.6D-18, -1.2D-17, r^2= 2.6D-02 + MO Center= -2.9D-18, -4.7D-17, -8.0D-18, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 79 0.678392 1 C f -2 83 -0.385557 1 C f 2 - 80 0.381086 1 C f -1 84 0.349154 1 C f 3 - 78 0.334344 1 C f -3 - + 84 -0.578892 1 C f 3 78 0.563597 1 C f -3 + 79 -0.499155 1 C f -2 83 0.309422 1 C f 2 + Vector 98 Occ=0.000000D+00 E= 9.869254D+01 - MO Center= 8.3D-17, 4.0D-17, -1.3D-16, r^2= 2.6D-02 + MO Center= 6.3D-19, -4.4D-17, -2.8D-18, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 81 0.635552 1 C f 0 82 -0.614061 1 C f 1 - 78 -0.279397 1 C f -3 79 -0.243431 1 C f -2 - 84 0.208729 1 C f 3 83 -0.183012 1 C f 2 - + 80 0.836285 1 C f -1 83 -0.301205 1 C f 2 + 78 0.257016 1 C f -3 82 0.223543 1 C f 1 + 84 0.207717 1 C f 3 79 -0.205921 1 C f -2 + Vector 99 Occ=0.000000D+00 E= 9.869713D+01 - MO Center= -4.6D-16, 1.7D-16, -4.4D-16, r^2= 2.6D-02 + MO Center= 2.4D-18, -1.3D-16, -6.6D-17, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 82 0.628848 1 C f 1 83 -0.617074 1 C f 2 - 79 -0.301933 1 C f -2 84 0.218880 1 C f 3 - 81 0.181440 1 C f 0 78 -0.177933 1 C f -3 - + 83 0.568356 1 C f 2 81 0.442084 1 C f 0 + 84 0.428647 1 C f 3 78 0.424398 1 C f -3 + 79 0.330662 1 C f -2 + Vector 100 Occ=0.000000D+00 E= 1.151039D+02 - MO Center= -6.5D-17, 7.6D-17, -8.3D-18, r^2= 2.6D-02 + MO Center= -4.6D-17, -4.9D-18, 6.7D-17, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 55 -0.806119 1 C d -1 54 0.761221 1 C d -2 - 50 0.399496 1 C d -1 49 -0.377245 1 C d -2 - 58 -0.290293 1 C d 2 35 -0.154410 1 C d -1 - + 57 1.008584 1 C d 1 52 -0.499833 1 C d 1 + 54 0.381480 1 C d -2 55 -0.302818 1 C d -1 + 58 -0.275856 1 C d 2 37 0.193191 1 C d 1 + 49 -0.189053 1 C d -2 50 0.150070 1 C d -1 + Vector 101 Occ=0.000000D+00 E= 1.151039D+02 - MO Center= 1.1D-16, -8.4D-17, -1.1D-16, r^2= 2.6D-02 + MO Center= 1.7D-17, -2.6D-17, 1.1D-17, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 58 0.804291 1 C d 2 57 0.576300 1 C d 1 - 56 0.501151 1 C d 0 53 -0.398590 1 C d 2 - 54 0.316142 1 C d -2 52 -0.285602 1 C d 1 - 51 -0.248360 1 C d 0 49 -0.156673 1 C d -2 - 38 0.154059 1 C d 2 - + 56 0.832864 1 C d 0 58 -0.563910 1 C d 2 + 51 -0.412750 1 C d 0 55 -0.394190 1 C d -1 + 54 -0.365698 1 C d -2 53 0.279462 1 C d 2 + 50 0.195352 1 C d -1 49 0.181232 1 C d -2 + 57 -0.182011 1 C d 1 36 0.159532 1 C d 0 + Vector 102 Occ=0.000000D+00 E= 1.151263D+02 - MO Center= -1.1D-16, 2.9D-17, -9.6D-17, r^2= 2.6D-02 + MO Center= 2.3D-17, -6.8D-18, 1.1D-17, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 55 0.792976 1 C d -1 54 0.742577 1 C d -2 - 50 -0.393081 1 C d -1 49 -0.368098 1 C d -2 - 58 -0.345129 1 C d 2 57 0.183794 1 C d 1 - 53 0.171082 1 C d 2 35 0.151956 1 C d -1 - + 54 0.875739 1 C d -2 58 -0.574807 1 C d 2 + 57 -0.475935 1 C d 1 49 -0.434107 1 C d -2 + 53 0.284934 1 C d 2 52 0.235923 1 C d 1 + 34 0.167816 1 C d -2 + Vector 103 Occ=0.000000D+00 E= 1.151263D+02 - MO Center= -1.2D-16, -1.3D-16, 2.2D-16, r^2= 2.6D-02 + MO Center= 5.7D-18, -4.3D-17, -1.2D-18, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 56 0.999805 1 C d 0 58 -0.528695 1 C d 2 - 51 -0.495607 1 C d 0 53 0.262076 1 C d 2 - 54 -0.232859 1 C d -2 36 0.191591 1 C d 0 - + 55 0.756030 1 C d -1 56 0.736625 1 C d 0 + 50 -0.374767 1 C d -1 51 -0.365148 1 C d 0 + 54 0.333886 1 C d -2 58 0.297779 1 C d 2 + 49 -0.165508 1 C d -2 + Vector 104 Occ=0.000000D+00 E= 1.151337D+02 - MO Center= 4.0D-16, -3.0D-17, 6.7D-16, r^2= 2.6D-02 + MO Center= 1.4D-17, 1.6D-17, 7.2D-18, r^2= 2.6D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 57 0.974428 1 C d 1 52 -0.483067 1 C d 1 - 58 -0.451806 1 C d 2 56 -0.283751 1 C d 0 - 55 -0.225613 1 C d -1 53 0.223980 1 C d 2 - 54 -0.221068 1 C d -2 37 0.186753 1 C d 1 - - Vector 105 Occ=0.000000D+00 E= 1.215483D+02 - MO Center= -1.5D-16, -3.4D-18, -1.0D-16, r^2= 4.3D-02 + 58 -0.721633 1 C d 2 55 0.717446 1 C d -1 + 54 -0.419836 1 C d -2 53 0.357745 1 C d 2 + 50 -0.355669 1 C d -1 56 -0.291089 1 C d 0 + 49 0.208131 1 C d -2 57 0.193516 1 C d 1 + + Vector 105 Occ=0.000000D+00 E= 1.215482D+02 + MO Center= -6.2D-18, -3.0D-17, 1.7D-18, r^2= 4.3D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 5.715567 1 C s 6 4.392566 1 C s - 7 -3.722976 1 C s 1 2.655238 1 C s - 8 2.664213 1 C s 3 0.847036 1 C s - 4 -0.593580 1 C s 5 0.288850 1 C s - + 2 5.715575 1 C s 6 4.392563 1 C s + 7 -3.722977 1 C s 1 2.655251 1 C s + 8 2.664212 1 C s 3 0.847036 1 C s + 4 -0.593581 1 C s 5 0.288850 1 C s + Vector 106 Occ=0.000000D+00 E= 2.248202D+02 - MO Center= 6.3D-18, 1.9D-17, 1.2D-17, r^2= 1.8D-02 + MO Center= -6.9D-18, -2.2D-17, 6.2D-18, r^2= 1.8D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 29 -1.351525 1 C py 26 1.334978 1 C py - 23 -0.808106 1 C py 30 0.721667 1 C pz - 27 -0.712832 1 C pz 24 0.431500 1 C pz - 28 -0.423580 1 C px 25 0.418395 1 C px - 11 0.414737 1 C py 22 -0.253268 1 C px - + 28 -1.513156 1 C px 25 1.494630 1 C px + 22 -0.904749 1 C px 10 0.464336 1 C px + 30 -0.442079 1 C pz 27 0.436667 1 C pz + 24 -0.264329 1 C pz 13 -0.233793 1 C px + 29 -0.204374 1 C py 26 0.201871 1 C py + Vector 107 Occ=0.000000D+00 E= 2.248202D+02 - MO Center= 1.4D-17, -2.2D-17, -5.3D-17, r^2= 1.8D-02 + MO Center= -2.7D-17, -5.7D-17, 2.5D-18, r^2= 1.8D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 28 -1.068354 1 C px 25 1.055274 1 C px - 30 0.865964 1 C pz 27 -0.855362 1 C pz - 29 0.797226 1 C py 26 -0.787466 1 C py - 22 -0.638792 1 C px 24 0.517779 1 C pz - 23 0.476679 1 C py 10 0.327842 1 C px - + 30 -1.383364 1 C pz 27 1.366427 1 C pz + 24 -0.827143 1 C pz 29 0.720407 1 C py + 26 -0.711587 1 C py 23 0.430747 1 C py + 12 0.424508 1 C pz 28 0.306858 1 C px + 25 -0.303101 1 C px 11 -0.221069 1 C py + Vector 108 Occ=0.000000D+00 E= 2.248392D+02 - MO Center= -1.3D-16, 2.1D-17, -8.2D-17, r^2= 1.8D-02 + MO Center= -1.3D-17, -1.0D-17, -3.1D-18, r^2= 1.8D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 30 -1.120792 1 C pz 27 1.107180 1 C pz - 28 -1.098213 1 C px 25 1.084875 1 C px - 24 -0.670291 1 C pz 22 -0.656788 1 C px - 12 0.344028 1 C pz 10 0.337097 1 C px - 29 -0.254274 1 C py 26 0.251186 1 C py - + 29 -1.402189 1 C py 26 1.385160 1 C py + 23 -0.838581 1 C py 30 -0.646315 1 C pz + 27 0.638466 1 C pz 11 0.430403 1 C py + 24 -0.386530 1 C pz 28 0.378212 1 C px + 25 -0.373618 1 C px 22 0.226190 1 C px + Vector 109 Occ=0.000000D+00 E= 5.084469D+02 - MO Center= 1.3D-17, -2.3D-17, 1.9D-17, r^2= 1.0D-02 + MO Center= -1.4D-17, -3.6D-17, 3.1D-18, r^2= 1.0D-02 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 1 68.411149 1 C s 2 43.112056 1 C s - 6 -13.880353 1 C s 7 -7.956734 1 C s - 8 -7.232810 1 C s 3 -0.260953 1 C s - 4 0.205741 1 C s - - + 1 68.411147 1 C s 2 43.112051 1 C s + 6 -13.880356 1 C s 7 -7.956733 1 C s + 8 -7.232811 1 C s 3 -0.260955 1 C s + 4 0.205742 1 C s + + Final MO vectors ---------------- - + global array: scf_init: MOs[1:109,1:109], handle: -1000 1 2 3 4 5 6 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.99370 0.00059 -0.00000 0.00000 -0.00000 -0.07328 - 2 0.00103 0.34491 -0.00000 0.00000 -0.00000 -0.20048 - 3 0.01599 0.28105 -0.00000 0.00000 -0.00000 -0.20143 - 4 -0.00368 0.59184 0.00000 0.00000 0.00000 0.25698 - 5 0.00171 0.27154 -0.00000 0.00000 -0.00000 -1.38208 - 6 0.00044 0.00026 -0.00000 0.00000 -0.00000 -0.02902 + 1 0.99370 0.00059 -0.00000 -0.00000 0.00000 -0.07328 + 2 0.00103 0.34491 -0.00000 -0.00000 0.00000 -0.20048 + 3 0.01599 0.28105 -0.00000 -0.00000 0.00000 -0.20143 + 4 -0.00368 0.59184 0.00000 0.00000 -0.00000 0.25698 + 5 0.00171 0.27154 -0.00000 -0.00000 0.00000 -1.38209 + 6 0.00044 0.00026 -0.00000 -0.00000 0.00000 -0.02902 7 -0.00002 -0.00008 0.00000 -0.00000 0.00000 0.00059 - 8 0.00005 0.00007 -0.00000 -0.00000 -0.00000 -0.00160 - 9 -0.00044 0.00291 0.00000 -0.00000 0.00000 1.82207 - 10 -0.00000 -0.00000 0.11504 -0.01785 0.06752 -0.00000 - 11 0.00000 0.00000 0.02664 0.09485 0.00981 -0.00000 - 12 0.00000 -0.00000 0.11740 -0.00403 -0.06838 -0.00000 - 13 0.00000 -0.00000 0.22484 -0.03389 0.12816 -0.00000 - 14 -0.00000 -0.00000 0.05206 0.18004 0.01861 -0.00000 - 15 -0.00000 0.00000 0.22946 -0.00764 -0.12980 -0.00000 - 16 -0.00000 0.00000 0.30526 -0.05545 0.20972 -0.00000 - 17 0.00000 0.00000 0.07068 0.29461 0.03046 -0.00000 - 18 -0.00000 -0.00000 0.31154 -0.01250 -0.21241 0.00000 - 19 -0.00000 0.00000 0.19962 -0.04394 0.16617 -0.00000 - 20 -0.00000 -0.00000 0.04622 0.23343 0.02413 -0.00000 - 21 0.00000 0.00000 0.20372 -0.00991 -0.16830 -0.00000 - 22 0.00000 -0.00000 0.00013 0.00000 -0.00000 -0.00000 - 23 -0.00000 -0.00000 0.00003 -0.00001 -0.00000 -0.00000 - 24 -0.00000 -0.00000 0.00013 0.00000 0.00000 -0.00000 - 25 -0.00000 -0.00000 -0.00023 0.00001 -0.00004 -0.00000 - 26 0.00000 -0.00000 -0.00005 -0.00005 -0.00001 0.00000 - 27 0.00000 0.00000 -0.00023 0.00000 0.00004 -0.00000 - 28 0.00000 0.00000 0.00017 -0.00003 0.00010 -0.00000 - 29 -0.00000 -0.00000 0.00004 0.00014 0.00001 -0.00000 - 30 -0.00000 -0.00000 0.00018 -0.00001 -0.00010 -0.00000 - 31 -0.00000 -0.00000 0.01643 -0.09760 0.36912 0.00000 - 32 0.00000 0.00000 0.00380 0.51854 0.05361 0.00000 - 33 -0.00000 0.00000 0.01676 -0.02201 -0.37385 0.00000 - 34 0.00002 0.00037 0.00000 -0.00000 -0.00000 0.00011 - 35 0.00002 0.00037 -0.00000 0.00000 0.00000 0.00011 - 36 0.00002 0.00047 -0.00000 0.00000 -0.00000 0.00014 - 37 -0.00007 -0.00162 -0.00000 0.00000 0.00000 -0.00049 - 38 0.00003 0.00075 -0.00000 0.00000 -0.00000 0.00023 - 39 0.00015 -0.00007 -0.00000 -0.00000 0.00000 -0.00001 - 40 0.00016 -0.00007 0.00000 0.00000 0.00000 -0.00001 - 41 0.00020 -0.00009 0.00000 0.00000 0.00000 -0.00001 - 42 -0.00068 0.00031 0.00000 -0.00000 -0.00000 0.00005 - 43 0.00031 -0.00014 0.00000 0.00000 0.00000 -0.00002 - 44 0.00000 0.00161 0.00000 -0.00000 -0.00000 0.00203 - 45 0.00000 0.00164 -0.00000 0.00000 -0.00000 0.00207 - 46 0.00000 0.00206 -0.00000 -0.00000 -0.00000 0.00260 - 47 -0.00001 -0.00709 -0.00000 0.00000 0.00000 -0.00894 - 48 0.00000 0.00329 -0.00000 0.00000 -0.00000 0.00414 - 49 -0.00010 0.00009 0.00000 -0.00000 -0.00000 -0.00003 - 50 -0.00010 0.00009 0.00000 0.00000 -0.00000 -0.00003 - 51 -0.00012 0.00012 0.00000 0.00000 0.00000 -0.00003 - 52 0.00042 -0.00041 -0.00000 -0.00000 -0.00000 0.00012 - 53 -0.00019 0.00019 0.00000 0.00000 -0.00000 -0.00005 - 54 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 55 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 56 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 57 0.00001 0.00001 0.00000 0.00000 0.00000 -0.00001 - 58 -0.00001 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 59 0.00001 0.00085 -0.00000 -0.00000 0.00000 -0.01187 - 60 0.00001 0.00087 0.00000 0.00000 0.00000 -0.01211 - 61 0.00001 0.00109 -0.00000 0.00000 0.00000 -0.01523 - 62 -0.00004 -0.00375 0.00000 0.00000 -0.00000 0.05231 - 63 0.00002 0.00174 0.00000 0.00000 0.00000 -0.02426 - 64 0.00000 0.00000 -0.00073 -0.00082 -0.00041 -0.00000 - 65 0.00000 0.00000 -0.00125 -0.00151 -0.00017 0.00000 - 66 -0.00000 0.00000 -0.00060 -0.00074 0.00034 -0.00000 - 67 -0.00000 -0.00000 0.00075 0.00008 0.00135 -0.00000 - 68 0.00000 0.00000 0.00260 -0.00025 -0.00127 -0.00000 - 69 0.00000 0.00000 -0.00255 0.00070 -0.00056 -0.00000 - 70 0.00000 0.00000 0.00090 -0.00061 0.00060 -0.00000 - 71 -0.00000 -0.00000 -0.00166 -0.00153 -0.00076 0.00000 - 72 -0.00000 -0.00000 -0.00282 -0.00280 -0.00031 -0.00000 - 73 -0.00000 -0.00000 -0.00136 -0.00138 0.00063 0.00000 - 74 0.00000 0.00000 0.00169 0.00015 0.00252 0.00000 - 75 -0.00000 -0.00000 0.00586 -0.00047 -0.00236 0.00000 - 76 -0.00000 -0.00000 -0.00575 0.00130 -0.00105 0.00000 - 77 -0.00000 -0.00000 0.00204 -0.00114 0.00111 -0.00000 - 78 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 79 -0.00000 0.00000 -0.00001 -0.00001 -0.00000 0.00000 - 80 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 81 0.00000 0.00000 0.00000 0.00000 0.00001 -0.00000 - 82 0.00000 0.00000 0.00002 -0.00000 -0.00001 -0.00000 - 83 0.00000 0.00000 -0.00002 0.00000 -0.00000 0.00000 - 84 0.00000 -0.00000 0.00001 -0.00000 0.00000 0.00000 - 85 0.00000 0.00000 -0.00138 -0.00460 -0.00229 -0.00000 - 86 0.00000 0.00000 -0.00234 -0.00845 -0.00093 0.00000 - 87 0.00000 0.00000 -0.00113 -0.00417 0.00191 -0.00000 - 88 -0.00000 -0.00000 0.00141 0.00045 0.00760 -0.00000 - 89 0.00000 0.00000 0.00488 -0.00141 -0.00711 -0.00000 - 90 0.00000 0.00000 -0.00479 0.00392 -0.00316 -0.00000 - 91 -0.00000 0.00000 0.00170 -0.00343 0.00335 -0.00000 - 92 -0.00000 -0.00001 -0.00000 0.00000 -0.00000 -0.00001 - 93 -0.00000 -0.00002 0.00000 -0.00000 0.00000 -0.00003 - 94 -0.00000 -0.00002 -0.00000 0.00000 -0.00000 -0.00003 - 95 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 96 0.00001 0.00003 -0.00000 0.00000 0.00000 0.00004 - 97 0.00000 0.00001 -0.00000 0.00000 -0.00000 0.00002 - 98 -0.00001 -0.00004 -0.00000 0.00000 0.00000 -0.00005 + 8 0.00005 0.00007 -0.00000 -0.00000 0.00000 -0.00160 + 9 -0.00044 0.00291 0.00000 0.00000 -0.00000 1.82207 + 10 -0.00000 0.00000 -0.03962 0.09321 0.01070 0.00000 + 11 -0.00000 -0.00000 0.14688 0.02535 -0.03779 -0.00000 + 12 -0.00000 -0.00000 0.06770 -0.00044 0.08825 -0.00000 + 13 0.00000 0.00000 -0.07743 0.17693 0.02030 0.00000 + 14 0.00000 -0.00000 0.28707 0.04811 -0.07174 -0.00000 + 15 -0.00000 -0.00000 0.13232 -0.00084 0.16751 -0.00000 + 16 -0.00000 0.00000 -0.10513 0.28953 0.03322 0.00000 + 17 -0.00000 -0.00000 0.38975 0.07873 -0.11739 -0.00000 + 18 0.00000 0.00000 0.17965 -0.00138 0.27412 0.00000 + 19 0.00000 -0.00000 -0.06875 0.22941 0.02633 0.00000 + 20 0.00000 0.00000 0.25487 0.06238 -0.09301 -0.00000 + 21 -0.00000 -0.00000 0.11748 -0.00109 0.21720 -0.00000 + 22 0.00000 -0.00000 -0.00004 -0.00001 -0.00000 0.00000 + 23 0.00000 -0.00000 0.00016 -0.00000 0.00000 -0.00000 + 24 0.00000 0.00000 0.00007 0.00000 -0.00001 -0.00000 + 25 -0.00000 -0.00000 0.00008 -0.00005 -0.00001 0.00000 + 26 -0.00000 0.00000 -0.00029 -0.00001 0.00002 0.00000 + 27 -0.00000 0.00000 -0.00013 0.00000 -0.00005 -0.00000 + 28 0.00000 0.00000 -0.00006 0.00014 0.00002 0.00000 + 29 0.00000 0.00000 0.00022 0.00004 -0.00006 -0.00000 + 30 0.00000 -0.00000 0.00010 -0.00000 0.00013 -0.00000 + 31 -0.00000 0.00000 -0.00566 0.50959 0.05848 -0.00000 + 32 -0.00000 -0.00000 0.02097 0.13857 -0.20661 0.00000 + 33 0.00000 -0.00000 0.00967 -0.00242 0.48247 0.00000 + 34 -0.00003 -0.00070 -0.00000 -0.00000 0.00000 -0.00021 + 35 0.00005 0.00119 -0.00000 0.00000 -0.00000 0.00036 + 36 -0.00002 -0.00048 -0.00000 -0.00000 0.00000 -0.00015 + 37 0.00001 0.00032 0.00000 0.00000 -0.00000 0.00010 + 38 -0.00005 -0.00120 -0.00000 -0.00000 0.00000 -0.00036 + 39 -0.00029 0.00013 0.00000 0.00000 -0.00000 0.00002 + 40 0.00050 -0.00023 0.00000 -0.00000 0.00000 -0.00004 + 41 -0.00020 0.00009 0.00000 0.00000 -0.00000 0.00001 + 42 0.00013 -0.00006 -0.00000 -0.00000 0.00000 -0.00001 + 43 -0.00050 0.00023 0.00000 0.00000 -0.00000 0.00004 + 44 -0.00000 -0.00305 -0.00000 -0.00000 0.00000 -0.00385 + 45 0.00001 0.00522 -0.00000 0.00000 -0.00000 0.00658 + 46 -0.00000 -0.00212 -0.00000 -0.00000 0.00000 -0.00267 + 47 0.00000 0.00141 0.00000 0.00000 -0.00000 0.00178 + 48 -0.00001 -0.00525 -0.00000 -0.00000 0.00000 -0.00662 + 49 0.00018 -0.00017 -0.00000 -0.00000 0.00000 0.00005 + 50 -0.00031 0.00030 0.00000 -0.00000 0.00000 -0.00009 + 51 0.00013 -0.00012 0.00000 0.00000 -0.00000 0.00003 + 52 -0.00008 0.00008 0.00000 -0.00000 0.00000 -0.00002 + 53 0.00031 -0.00030 -0.00000 0.00000 -0.00000 0.00009 + 54 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 55 -0.00001 -0.00001 -0.00000 -0.00000 0.00000 0.00001 + 56 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 57 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 58 0.00001 0.00001 0.00000 -0.00000 0.00000 -0.00001 + 59 -0.00002 -0.00161 0.00000 -0.00000 -0.00000 0.02254 + 60 0.00003 0.00276 0.00000 -0.00000 -0.00000 -0.03852 + 61 -0.00001 -0.00112 0.00000 0.00000 -0.00000 0.01563 + 62 0.00001 0.00074 -0.00000 -0.00000 0.00000 -0.01039 + 63 -0.00003 -0.00278 0.00000 0.00000 -0.00000 0.03874 + 64 0.00000 -0.00000 0.00175 0.00121 -0.00048 -0.00000 + 65 -0.00000 -0.00000 0.00136 -0.00107 0.00038 -0.00000 + 66 -0.00000 -0.00000 0.00039 0.00003 -0.00176 0.00000 + 67 -0.00000 -0.00000 0.00182 -0.00000 0.00020 -0.00000 + 68 -0.00000 -0.00000 0.00010 -0.00009 -0.00047 0.00000 + 69 -0.00000 0.00000 0.00235 0.00062 0.00067 -0.00000 + 70 -0.00000 -0.00000 0.00177 -0.00119 -0.00050 -0.00000 + 71 0.00000 0.00000 0.00396 0.00225 -0.00089 -0.00000 + 72 0.00000 0.00000 0.00308 -0.00199 0.00071 -0.00000 + 73 0.00000 0.00000 0.00087 0.00006 -0.00327 -0.00000 + 74 0.00000 0.00000 0.00412 -0.00000 0.00038 -0.00000 + 75 0.00000 0.00000 0.00024 -0.00016 -0.00088 -0.00000 + 76 -0.00000 -0.00000 0.00530 0.00115 0.00124 -0.00000 + 77 0.00000 0.00000 0.00400 -0.00222 -0.00093 -0.00000 + 78 0.00000 0.00000 0.00001 0.00001 -0.00000 -0.00000 + 79 0.00000 0.00000 0.00001 -0.00001 0.00000 0.00000 + 80 0.00000 -0.00000 0.00000 0.00000 -0.00001 -0.00000 + 81 0.00000 -0.00000 0.00001 -0.00000 0.00000 -0.00000 + 82 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 83 0.00000 -0.00000 0.00001 0.00000 0.00000 -0.00000 + 84 0.00000 -0.00000 0.00001 -0.00001 -0.00000 -0.00000 + 85 -0.00000 -0.00000 0.00329 0.00679 -0.00270 0.00000 + 86 -0.00000 -0.00000 0.00257 -0.00600 0.00213 0.00000 + 87 -0.00000 -0.00000 0.00073 0.00018 -0.00987 0.00000 + 88 -0.00000 -0.00000 0.00343 -0.00001 0.00115 0.00000 + 89 -0.00000 -0.00000 0.00020 -0.00048 -0.00267 0.00000 + 90 -0.00000 0.00000 0.00441 0.00347 0.00373 0.00000 + 91 -0.00000 -0.00000 0.00333 -0.00670 -0.00279 0.00000 + 92 -0.00001 -0.00003 -0.00000 -0.00000 0.00000 -0.00004 + 93 0.00001 0.00003 -0.00000 -0.00000 0.00000 0.00004 + 94 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 95 0.00001 0.00003 -0.00000 -0.00000 0.00000 0.00005 + 96 0.00000 0.00001 0.00000 -0.00000 0.00000 0.00001 + 97 0.00000 0.00001 -0.00000 -0.00000 -0.00000 0.00001 + 98 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00001 99 0.00001 0.00003 -0.00000 -0.00000 -0.00000 0.00004 - 100 -0.00000 -0.00001 -0.00000 0.00000 -0.00000 -0.00001 - 101 -0.00000 -0.00006 -0.00000 0.00000 0.00000 0.00004 - 102 -0.00000 -0.00013 -0.00000 -0.00000 -0.00000 0.00010 - 103 -0.00000 -0.00012 0.00000 -0.00000 0.00000 0.00009 - 104 -0.00000 -0.00002 0.00000 -0.00000 0.00000 0.00001 - 105 0.00000 0.00016 0.00000 0.00000 0.00000 -0.00012 - 106 0.00000 0.00007 -0.00000 -0.00000 0.00000 -0.00006 - 107 -0.00000 -0.00025 0.00000 -0.00000 -0.00000 0.00019 - 108 0.00000 0.00016 0.00000 0.00000 0.00000 -0.00012 - 109 -0.00000 -0.00005 -0.00000 -0.00000 -0.00000 0.00003 + 100 -0.00000 -0.00002 0.00000 -0.00000 0.00000 -0.00002 + 101 -0.00000 -0.00018 0.00000 0.00000 -0.00000 0.00014 + 102 0.00000 0.00018 0.00000 0.00000 -0.00000 -0.00014 + 103 0.00000 0.00001 0.00000 -0.00000 0.00000 -0.00001 + 104 0.00000 0.00021 0.00000 0.00000 -0.00000 -0.00016 + 105 0.00000 0.00005 -0.00000 0.00000 -0.00000 -0.00004 + 106 0.00000 0.00006 0.00000 -0.00000 0.00000 -0.00004 + 107 0.00000 0.00003 0.00000 0.00000 -0.00000 -0.00002 + 108 0.00000 0.00019 0.00000 0.00000 -0.00000 -0.00014 + 109 -0.00000 -0.00010 -0.00000 0.00000 -0.00000 0.00008 7 8 9 10 11 12 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 2 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 3 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 4 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 6 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 7 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 8 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 9 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 10 -0.01881 0.01372 -0.05060 0.00000 0.00000 0.00000 - 11 -0.00436 -0.07115 -0.00781 0.00000 0.00000 -0.00000 - 12 -0.01920 0.00270 0.05135 -0.00000 -0.00000 -0.00000 - 13 -0.07642 0.03974 -0.14656 0.00000 0.00000 0.00000 - 14 -0.01769 -0.20609 -0.02261 0.00000 0.00000 -0.00000 - 15 -0.07799 0.00782 0.14874 0.00000 -0.00000 0.00000 - 16 0.01772 0.02002 -0.07383 0.00000 0.00000 0.00000 - 17 0.00410 -0.10383 -0.01139 0.00000 -0.00000 -0.00000 - 18 0.01808 0.00394 0.07493 -0.00000 0.00000 -0.00000 - 19 -0.36850 0.15363 -0.56663 0.00000 0.00000 0.00000 - 20 -0.08532 -0.79679 -0.08743 0.00000 0.00000 -0.00000 - 21 -0.37608 0.03023 0.57505 -0.00000 0.00000 0.00000 - 22 -0.00275 0.00094 -0.00347 0.00000 -0.00000 0.00000 - 23 -0.00064 -0.00488 -0.00054 -0.00000 0.00000 -0.00000 - 24 -0.00281 0.00019 0.00352 0.00000 -0.00000 0.00000 - 25 0.00021 -0.00007 0.00024 0.00000 0.00000 -0.00000 - 26 0.00005 0.00034 0.00004 0.00000 -0.00000 -0.00000 - 27 0.00022 -0.00001 -0.00024 -0.00000 0.00000 0.00000 - 28 -0.00016 0.00007 -0.00025 -0.00000 -0.00000 0.00000 - 29 -0.00004 -0.00035 -0.00004 -0.00000 0.00000 0.00000 - 30 -0.00016 0.00001 0.00025 0.00000 -0.00000 0.00000 - 31 0.87700 -0.22507 0.83012 -0.00000 -0.00000 -0.00000 - 32 0.20305 1.16732 0.12809 -0.00000 -0.00000 0.00000 - 33 0.89503 -0.04429 -0.84246 0.00000 -0.00000 -0.00000 - 34 -0.00000 0.00000 -0.00000 -0.00654 -0.00312 0.00164 - 35 -0.00000 0.00000 0.00000 0.00705 0.00091 -0.00063 - 36 -0.00000 0.00000 -0.00000 -0.00015 -0.00442 -0.00872 - 37 0.00000 0.00000 -0.00000 0.00145 -0.00500 -0.00009 - 38 -0.00000 -0.00000 0.00000 0.00291 -0.00693 0.00480 - 39 0.00000 -0.00000 0.00000 0.04407 0.02102 -0.01180 - 40 0.00000 -0.00000 -0.00000 -0.04750 -0.00610 0.00451 - 41 0.00000 -0.00000 -0.00000 0.00101 0.02978 0.06266 - 42 -0.00000 -0.00000 0.00000 -0.00980 0.03368 0.00062 - 43 0.00000 0.00000 0.00000 -0.01962 0.04670 -0.03450 - 44 -0.00000 0.00000 -0.00000 -0.12567 -0.05994 0.03202 - 45 -0.00000 0.00000 0.00000 0.13546 0.01740 -0.01224 - 46 -0.00000 0.00000 -0.00000 -0.00289 -0.08492 -0.16997 - 47 0.00000 0.00000 0.00000 0.02796 -0.09604 -0.00167 - 48 -0.00000 -0.00000 0.00000 0.05596 -0.13316 0.09359 - 49 0.00000 -0.00000 -0.00000 0.00085 0.00040 -0.00023 - 50 0.00000 -0.00000 -0.00000 -0.00091 -0.00012 0.00009 - 51 0.00000 -0.00000 -0.00000 0.00002 0.00057 0.00121 - 52 -0.00000 -0.00000 -0.00000 -0.00019 0.00065 0.00001 - 53 0.00000 0.00000 0.00000 -0.00038 0.00090 -0.00066 - 54 -0.00000 0.00000 -0.00000 -0.00011 -0.00005 0.00003 - 55 -0.00000 0.00000 0.00000 0.00011 0.00001 -0.00001 - 56 -0.00000 0.00000 0.00000 -0.00000 -0.00007 -0.00015 - 57 0.00000 0.00000 0.00000 0.00002 -0.00008 -0.00000 - 58 -0.00000 -0.00000 0.00000 0.00005 -0.00011 0.00008 - 59 0.00000 -0.00000 0.00000 0.70817 0.33779 -0.17870 - 60 0.00000 -0.00000 -0.00000 -0.76331 -0.09807 0.06832 - 61 0.00000 -0.00000 -0.00000 0.01629 0.47851 0.94870 - 62 -0.00000 -0.00000 0.00000 -0.15753 0.54119 0.00934 - 63 0.00000 0.00000 -0.00000 -0.31533 0.75038 -0.52234 - 64 0.00011 0.00059 0.00030 -0.00000 0.00000 0.00000 - 65 0.00018 0.00109 0.00013 0.00000 -0.00000 0.00000 - 66 0.00009 0.00054 -0.00024 -0.00000 0.00000 0.00000 - 67 -0.00011 -0.00005 -0.00098 -0.00000 0.00000 -0.00000 - 68 -0.00038 0.00018 0.00092 -0.00000 0.00000 0.00000 - 69 0.00037 -0.00051 0.00040 0.00000 -0.00000 -0.00000 - 70 -0.00013 0.00045 -0.00043 -0.00000 -0.00000 0.00000 - 71 0.00075 0.00223 0.00113 0.00000 -0.00000 -0.00000 - 72 0.00128 0.00410 0.00048 -0.00000 0.00000 -0.00000 - 73 0.00062 0.00203 -0.00091 0.00000 -0.00000 -0.00000 - 74 -0.00077 -0.00019 -0.00369 0.00000 -0.00000 -0.00000 - 75 -0.00267 0.00066 0.00346 0.00000 -0.00000 -0.00000 - 76 0.00262 -0.00191 0.00152 -0.00000 0.00000 0.00000 - 77 -0.00093 0.00168 -0.00162 0.00000 -0.00000 -0.00000 - 78 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 79 0.00000 0.00001 0.00000 0.00000 0.00000 0.00000 - 80 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 81 -0.00000 -0.00000 -0.00001 -0.00000 0.00000 -0.00000 - 82 -0.00000 0.00000 0.00001 0.00000 -0.00000 -0.00000 - 83 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 84 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 85 -0.00114 0.00078 0.00040 -0.00000 0.00000 0.00000 - 86 -0.00194 0.00144 0.00017 0.00000 -0.00000 -0.00000 - 87 -0.00094 0.00071 -0.00032 -0.00000 0.00000 -0.00000 - 88 0.00117 -0.00007 -0.00130 -0.00000 0.00000 0.00000 - 89 0.00404 0.00023 0.00122 -0.00000 0.00000 0.00000 - 90 -0.00397 -0.00067 0.00054 0.00000 0.00000 -0.00000 - 91 0.00141 0.00059 -0.00057 -0.00000 -0.00000 0.00000 - 92 0.00000 -0.00000 0.00000 0.00021 0.00026 -0.00015 - 93 -0.00000 -0.00000 0.00000 0.00018 0.00020 -0.00015 - 94 -0.00000 -0.00000 0.00000 -0.00033 -0.00003 0.00012 - 95 -0.00000 -0.00000 -0.00000 -0.00042 0.00004 0.00019 - 96 -0.00000 -0.00000 -0.00000 0.00002 0.00048 0.00017 - 97 -0.00000 0.00000 -0.00000 -0.00010 -0.00012 -0.00078 - 98 0.00000 -0.00000 0.00000 0.00016 -0.00008 0.00013 - 99 -0.00000 -0.00000 -0.00000 0.00013 -0.00025 0.00027 - 100 -0.00000 0.00000 -0.00000 -0.00025 0.00022 -0.00015 - 101 -0.00000 -0.00000 0.00000 -0.00122 -0.00156 0.00097 - 102 0.00000 0.00000 0.00000 -0.00107 -0.00116 0.00092 - 103 0.00000 0.00000 0.00000 0.00196 0.00016 -0.00075 - 104 0.00000 0.00000 0.00000 0.00246 -0.00025 -0.00118 - 105 -0.00000 0.00000 -0.00000 -0.00010 -0.00283 -0.00110 - 106 0.00000 -0.00000 0.00000 0.00060 0.00071 0.00492 - 107 -0.00000 0.00000 0.00000 -0.00094 0.00049 -0.00081 - 108 0.00000 0.00000 0.00000 -0.00079 0.00150 -0.00170 - 109 0.00000 -0.00000 0.00000 0.00146 -0.00129 0.00097 + 1 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 2 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 3 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 4 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 5 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 6 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 7 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 8 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 9 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 10 0.00648 -0.07041 -0.00178 -0.00000 0.00000 -0.00000 + 11 -0.02402 -0.01643 0.02995 0.00000 0.00000 -0.00000 + 12 -0.01107 -0.00556 -0.06602 -0.00000 -0.00000 0.00000 + 13 0.02632 -0.20394 -0.00515 0.00000 -0.00000 -0.00000 + 14 -0.09757 -0.04759 0.08675 0.00000 0.00000 -0.00000 + 15 -0.04498 -0.01609 -0.19121 -0.00000 0.00000 0.00000 + 16 -0.00610 -0.10274 -0.00260 0.00000 0.00000 -0.00000 + 17 0.02262 -0.02397 0.04370 0.00000 0.00000 -0.00000 + 18 0.01043 -0.00811 -0.09633 -0.00000 -0.00000 0.00000 + 19 0.12691 -0.78846 -0.01992 -0.00000 -0.00000 0.00000 + 20 -0.47050 -0.18399 0.33538 0.00000 0.00000 0.00000 + 21 -0.21687 -0.06222 -0.73927 -0.00000 0.00000 -0.00000 + 22 0.00095 -0.00483 -0.00012 0.00000 -0.00000 0.00000 + 23 -0.00352 -0.00113 0.00205 0.00000 -0.00000 0.00000 + 24 -0.00162 -0.00038 -0.00453 0.00000 0.00000 -0.00000 + 25 -0.00007 0.00033 0.00001 -0.00000 -0.00000 -0.00000 + 26 0.00027 0.00008 -0.00014 -0.00000 -0.00000 -0.00000 + 27 0.00013 0.00003 0.00031 0.00000 0.00000 0.00000 + 28 0.00006 -0.00034 -0.00001 0.00000 -0.00000 0.00000 + 29 -0.00021 -0.00008 0.00015 0.00000 0.00000 -0.00000 + 30 -0.00009 -0.00003 -0.00032 -0.00000 0.00000 -0.00000 + 31 -0.30203 1.15511 0.02919 0.00000 -0.00000 0.00000 + 32 1.11974 0.26955 -0.49134 -0.00000 -0.00000 -0.00000 + 33 0.51613 0.09116 1.08304 0.00000 -0.00000 0.00000 + 34 0.00000 -0.00000 0.00000 -0.00397 0.00242 0.00207 + 35 -0.00000 -0.00000 -0.00000 0.00185 0.00396 -0.00527 + 36 0.00000 -0.00000 -0.00000 0.00108 -0.00726 -0.00575 + 37 -0.00000 0.00000 0.00000 -0.00900 -0.00034 -0.00341 + 38 0.00000 0.00000 -0.00000 0.00130 0.00536 -0.00504 + 39 0.00000 0.00000 -0.00000 0.02673 -0.01630 -0.01484 + 40 -0.00000 0.00000 0.00000 -0.01250 -0.02666 0.03790 + 41 0.00000 0.00000 0.00000 -0.00726 0.04892 0.04131 + 42 0.00000 -0.00000 -0.00000 0.06067 0.00232 0.02453 + 43 0.00000 -0.00000 0.00000 -0.00878 -0.03614 0.03623 + 44 0.00000 -0.00000 0.00000 -0.07622 0.04647 0.04026 + 45 -0.00000 -0.00000 0.00000 0.03564 0.07603 -0.10279 + 46 -0.00000 -0.00000 0.00000 0.02071 -0.13950 -0.11205 + 47 -0.00000 0.00000 0.00000 -0.17300 -0.00661 -0.06655 + 48 0.00000 0.00000 -0.00000 0.02503 0.10305 -0.09827 + 49 -0.00000 0.00000 0.00000 0.00051 -0.00031 -0.00029 + 50 0.00000 0.00000 0.00000 -0.00024 -0.00051 0.00073 + 51 -0.00000 0.00000 -0.00000 -0.00014 0.00094 0.00079 + 52 0.00000 -0.00000 -0.00000 0.00117 0.00004 0.00047 + 53 -0.00000 -0.00000 0.00000 -0.00017 -0.00070 0.00070 + 54 -0.00000 -0.00000 -0.00000 -0.00006 0.00004 0.00003 + 55 -0.00000 -0.00000 0.00000 0.00003 0.00006 -0.00009 + 56 0.00000 -0.00000 -0.00000 0.00002 -0.00012 -0.00010 + 57 -0.00000 0.00000 0.00000 -0.00015 -0.00001 -0.00006 + 58 -0.00000 0.00000 0.00000 0.00002 0.00009 -0.00009 + 59 -0.00000 0.00000 -0.00000 0.42949 -0.26189 -0.22472 + 60 0.00000 0.00000 0.00000 -0.20083 -0.42843 0.57373 + 61 -0.00000 0.00000 0.00000 -0.11672 0.78609 0.62539 + 62 0.00000 -0.00000 -0.00000 0.97487 0.03723 0.37141 + 63 -0.00000 -0.00000 0.00000 -0.14103 -0.58069 0.54847 + 64 -0.00026 -0.00084 0.00042 0.00000 0.00000 -0.00000 + 65 -0.00020 0.00075 -0.00034 0.00000 0.00000 0.00000 + 66 -0.00006 0.00009 0.00127 0.00000 -0.00000 -0.00000 + 67 -0.00027 -0.00001 -0.00015 -0.00000 -0.00000 0.00000 + 68 -0.00002 0.00009 0.00034 -0.00000 0.00000 0.00000 + 69 -0.00034 -0.00049 -0.00044 -0.00000 0.00000 0.00000 + 70 -0.00026 0.00089 0.00028 -0.00000 0.00000 0.00000 + 71 -0.00180 -0.00317 0.00160 -0.00000 -0.00000 0.00000 + 72 -0.00140 0.00281 -0.00129 -0.00000 -0.00000 -0.00000 + 73 -0.00040 0.00034 0.00478 0.00000 0.00000 0.00000 + 74 -0.00187 -0.00005 -0.00055 0.00000 0.00000 -0.00000 + 75 -0.00011 0.00035 0.00127 0.00000 0.00000 -0.00000 + 76 -0.00241 -0.00184 -0.00165 0.00000 -0.00000 -0.00000 + 77 -0.00182 0.00336 0.00106 0.00000 -0.00000 -0.00000 + 78 -0.00000 -0.00001 0.00000 -0.00000 -0.00000 -0.00000 + 79 -0.00000 0.00001 -0.00000 -0.00000 -0.00000 0.00000 + 80 -0.00000 0.00000 0.00001 -0.00000 0.00000 0.00000 + 81 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 82 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 83 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 84 -0.00000 0.00001 0.00000 -0.00000 -0.00000 -0.00000 + 85 0.00273 -0.00112 0.00056 0.00000 0.00000 -0.00000 + 86 0.00213 0.00099 -0.00045 0.00000 0.00000 0.00000 + 87 0.00060 0.00012 0.00168 0.00000 -0.00000 -0.00000 + 88 0.00284 -0.00002 -0.00020 0.00000 0.00000 0.00000 + 89 0.00016 0.00012 0.00045 -0.00000 -0.00000 0.00000 + 90 0.00365 -0.00065 -0.00058 -0.00000 0.00000 0.00000 + 91 0.00276 0.00118 0.00037 -0.00000 0.00000 0.00000 + 92 0.00000 -0.00000 -0.00000 -0.00021 0.00036 -0.00005 + 93 -0.00000 -0.00000 -0.00000 0.00022 -0.00002 0.00010 + 94 0.00000 -0.00000 -0.00000 -0.00046 -0.00010 -0.00033 + 95 -0.00000 -0.00000 -0.00000 -0.00008 0.00049 0.00016 + 96 -0.00000 -0.00000 0.00000 -0.00001 0.00005 -0.00044 + 97 -0.00000 0.00000 -0.00000 0.00001 0.00014 -0.00004 + 98 -0.00000 -0.00000 0.00000 0.00028 -0.00002 -0.00052 + 99 -0.00000 0.00000 -0.00000 -0.00020 -0.00009 -0.00031 + 100 -0.00000 -0.00000 0.00000 0.00023 0.00026 -0.00039 + 101 -0.00000 0.00000 0.00000 0.00123 -0.00212 0.00034 + 102 0.00000 0.00000 0.00000 -0.00128 0.00014 -0.00062 + 103 -0.00000 0.00000 0.00000 0.00269 0.00061 0.00204 + 104 0.00000 0.00000 0.00000 0.00048 -0.00289 -0.00100 + 105 -0.00000 0.00000 -0.00000 0.00004 -0.00030 0.00277 + 106 0.00000 -0.00000 0.00000 -0.00008 -0.00081 0.00026 + 107 0.00000 0.00000 0.00000 -0.00163 0.00011 0.00324 + 108 0.00000 -0.00000 0.00000 0.00117 0.00051 0.00197 + 109 0.00000 -0.00000 -0.00000 -0.00138 -0.00151 0.00242 13 14 15 16 17 18 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 0.01378 -0.00000 0.00000 -0.00000 0.28335 - 2 0.00000 0.02576 -0.00000 0.00000 -0.00000 0.26503 - 3 0.00000 0.02840 0.00000 0.00000 -0.00000 0.39536 - 4 -0.00000 -0.08084 0.00000 -0.00000 0.00000 -2.76908 - 5 0.00000 0.17265 -0.00000 0.00000 -0.00000 3.78788 - 6 0.00000 0.00568 0.00000 0.00000 -0.00000 0.12248 - 7 0.00000 -0.00013 0.00000 -0.00000 -0.00000 -0.00254 - 8 0.00000 0.00031 0.00000 0.00000 0.00000 0.00659 - 9 -0.00000 -0.14002 -0.00000 -0.00000 0.00000 -1.55998 - 10 -0.00000 0.00000 -0.11536 0.10925 -0.07482 -0.00000 - 11 -0.00000 0.00000 -0.02671 -0.12402 -0.13154 -0.00000 - 12 0.00000 0.00000 -0.11773 -0.07891 0.10316 0.00000 - 13 -0.00000 0.00000 -0.03756 0.05155 -0.03531 -0.00000 - 14 -0.00000 0.00000 -0.00870 -0.05852 -0.06207 -0.00000 - 15 -0.00000 0.00000 -0.03833 -0.03723 0.04868 -0.00000 - 16 0.00000 0.00000 -0.71420 0.69094 -0.47321 -0.00000 - 17 -0.00000 0.00000 -0.16536 -0.78438 -0.83194 -0.00000 - 18 0.00000 0.00000 -0.72889 -0.49906 0.65242 0.00000 - 19 -0.00000 -0.00000 1.30481 -1.08027 0.73986 0.00000 - 20 0.00000 -0.00000 0.30211 1.22637 1.30073 0.00000 - 21 0.00000 -0.00000 1.33164 0.78028 -1.02005 -0.00000 - 22 0.00000 -0.00000 0.01311 -0.01115 0.00764 0.00000 - 23 0.00000 -0.00000 0.00304 0.01266 0.01342 0.00000 - 24 -0.00000 -0.00000 0.01338 0.00805 -0.01053 -0.00000 - 25 -0.00000 0.00000 -0.00043 0.00041 -0.00028 -0.00000 - 26 0.00000 0.00000 -0.00010 -0.00047 -0.00050 -0.00000 - 27 0.00000 0.00000 -0.00044 -0.00030 0.00039 -0.00000 - 28 0.00000 0.00000 0.00047 -0.00038 0.00026 0.00000 - 29 -0.00000 -0.00000 0.00011 0.00043 0.00046 0.00000 - 30 -0.00000 0.00000 0.00048 0.00028 -0.00036 0.00000 - 31 0.00000 0.00000 -0.54074 0.43631 -0.29882 -0.00000 - 32 0.00000 0.00000 -0.12520 -0.49532 -0.52536 -0.00000 - 33 -0.00000 0.00000 -0.55186 -0.31515 0.41199 0.00000 - 34 -0.00661 0.00193 0.00000 0.00000 0.00000 -0.00065 - 35 -0.00691 0.00197 0.00000 0.00000 0.00000 -0.00066 - 36 0.00078 0.00248 0.00000 0.00000 0.00000 -0.00084 - 37 -0.00161 -0.00853 -0.00000 0.00000 -0.00000 0.00287 - 38 0.00274 0.00395 0.00000 -0.00000 -0.00000 -0.00133 - 39 0.04750 -0.01408 -0.00000 0.00000 -0.00000 0.00495 - 40 0.04969 -0.01437 -0.00000 -0.00000 -0.00000 0.00505 - 41 -0.00557 -0.01807 -0.00000 -0.00000 -0.00000 0.00635 - 42 0.01154 0.06206 0.00000 -0.00000 0.00000 -0.02181 - 43 -0.01966 -0.02878 -0.00000 0.00000 0.00000 0.01011 - 44 -0.12886 0.03791 0.00000 0.00000 0.00000 -0.01547 - 45 -0.13480 0.03868 0.00000 0.00000 0.00000 -0.01579 - 46 0.01511 0.04865 0.00000 0.00000 0.00000 -0.01985 - 47 -0.03131 -0.16708 -0.00000 0.00000 -0.00000 0.06818 - 48 0.05334 0.07747 0.00000 -0.00000 0.00000 -0.03161 - 49 0.00091 -0.00027 -0.00000 -0.00000 0.00000 0.00002 - 50 0.00096 -0.00028 -0.00000 -0.00000 -0.00000 0.00002 - 51 -0.00011 -0.00035 -0.00000 -0.00000 -0.00000 0.00003 - 52 0.00022 0.00119 0.00000 -0.00000 0.00000 -0.00010 - 53 -0.00038 -0.00055 -0.00000 0.00000 0.00000 0.00005 - 54 -0.00011 0.00003 0.00000 0.00000 0.00000 -0.00001 - 55 -0.00012 0.00003 0.00000 0.00000 0.00000 -0.00001 - 56 0.00001 0.00004 -0.00000 -0.00000 0.00000 -0.00001 - 57 -0.00003 -0.00015 -0.00000 0.00000 0.00000 0.00003 - 58 0.00005 0.00007 -0.00000 -0.00000 -0.00000 -0.00002 - 59 0.71919 -0.21022 -0.00000 -0.00000 -0.00000 0.01185 - 60 0.75235 -0.21454 -0.00000 -0.00000 -0.00000 0.01210 - 61 -0.08433 -0.26983 -0.00000 -0.00000 -0.00000 0.01522 - 62 0.17477 0.92661 0.00000 -0.00000 0.00000 -0.05225 - 63 -0.29769 -0.42963 -0.00000 0.00000 0.00000 0.02423 - 64 0.00000 0.00000 0.00028 0.00027 0.00064 -0.00000 - 65 0.00000 -0.00000 0.00047 0.00078 0.00084 0.00000 - 66 -0.00000 0.00000 0.00023 0.00059 0.00017 -0.00000 - 67 0.00000 0.00000 -0.00028 0.00062 -0.00081 0.00000 - 68 0.00000 0.00000 -0.00098 -0.00048 0.00085 0.00000 - 69 -0.00000 -0.00000 0.00096 -0.00067 -0.00002 -0.00000 - 70 -0.00000 -0.00000 -0.00034 0.00064 -0.00004 0.00000 - 71 0.00000 -0.00000 0.00275 0.00249 0.00594 0.00000 - 72 -0.00000 -0.00000 0.00466 0.00726 0.00781 -0.00000 - 73 0.00000 -0.00000 0.00225 0.00552 0.00160 0.00000 - 74 -0.00000 -0.00000 -0.00280 0.00580 -0.00758 -0.00000 - 75 -0.00000 -0.00000 -0.00971 -0.00449 0.00791 -0.00000 - 76 0.00000 -0.00000 0.00953 -0.00631 -0.00022 0.00000 - 77 0.00000 0.00000 -0.00338 0.00601 -0.00037 -0.00000 - 78 0.00000 0.00000 0.00000 0.00000 0.00001 0.00000 - 79 0.00000 -0.00000 0.00001 0.00001 0.00001 0.00000 - 80 -0.00000 0.00000 0.00000 0.00001 0.00000 -0.00000 - 81 -0.00000 0.00000 -0.00000 0.00001 -0.00001 -0.00000 - 82 0.00000 -0.00000 -0.00001 -0.00001 0.00001 0.00000 - 83 0.00000 0.00000 0.00001 -0.00001 -0.00000 0.00000 - 84 -0.00000 -0.00000 -0.00000 0.00001 -0.00000 0.00000 - 85 -0.00000 0.00000 -0.00932 -0.00706 -0.01683 -0.00000 - 86 -0.00000 -0.00000 -0.01582 -0.02055 -0.02211 0.00000 - 87 -0.00000 0.00000 -0.00763 -0.01563 -0.00452 -0.00000 - 88 0.00000 0.00000 0.00950 -0.01643 0.02147 -0.00000 - 89 0.00000 0.00000 0.03294 0.01270 -0.02239 0.00000 - 90 -0.00000 0.00000 -0.03233 0.01787 0.00061 -0.00000 - 91 -0.00000 -0.00000 0.01147 -0.01701 0.00105 0.00000 - 92 0.00020 -0.00015 -0.00000 -0.00000 0.00000 -0.00003 - 93 0.00052 -0.00033 0.00000 0.00000 -0.00000 -0.00006 - 94 0.00051 -0.00031 -0.00000 -0.00000 0.00000 -0.00006 - 95 0.00006 -0.00004 -0.00000 -0.00000 0.00000 -0.00001 - 96 -0.00002 0.00041 0.00000 -0.00000 0.00000 0.00008 - 97 0.00009 0.00018 0.00000 0.00000 -0.00000 0.00003 - 98 -0.00027 -0.00063 0.00000 0.00000 -0.00000 -0.00012 - 99 0.00039 0.00041 0.00000 0.00000 -0.00000 0.00008 - 100 -0.00023 -0.00011 -0.00000 -0.00000 0.00000 -0.00002 - 101 -0.00128 0.00094 -0.00000 0.00000 -0.00000 0.00014 - 102 -0.00326 0.00210 0.00000 -0.00000 0.00000 0.00031 - 103 -0.00318 0.00194 0.00000 0.00000 -0.00000 0.00029 - 104 -0.00037 0.00027 -0.00000 0.00000 -0.00000 0.00004 - 105 0.00010 -0.00259 -0.00000 0.00000 -0.00000 -0.00039 - 106 -0.00055 -0.00117 -0.00000 0.00000 -0.00000 -0.00017 - 107 0.00166 0.00397 0.00000 0.00000 -0.00000 0.00059 - 108 -0.00243 -0.00259 -0.00000 -0.00000 0.00000 -0.00039 - 109 0.00145 0.00073 0.00000 -0.00000 0.00000 0.00011 + 1 0.00000 -0.01378 -0.00000 -0.00000 0.00000 0.28335 + 2 -0.00000 -0.02575 -0.00000 -0.00000 0.00000 0.26503 + 3 -0.00000 -0.02840 -0.00000 -0.00000 0.00000 0.39536 + 4 0.00000 0.08084 0.00000 0.00000 -0.00000 -2.76908 + 5 -0.00000 -0.17265 -0.00000 -0.00000 0.00000 3.78788 + 6 -0.00000 -0.00568 -0.00000 -0.00000 0.00000 0.12248 + 7 -0.00000 0.00013 0.00000 0.00000 0.00000 -0.00254 + 8 -0.00000 -0.00031 -0.00000 -0.00000 0.00000 0.00659 + 9 0.00000 0.14002 0.00000 0.00000 -0.00000 -1.55998 + 10 0.00000 0.00000 0.03973 -0.12930 -0.12217 -0.00000 + 11 0.00000 0.00000 -0.14729 -0.08142 0.02855 -0.00000 + 12 0.00000 -0.00000 -0.06789 0.10097 -0.13343 0.00000 + 13 0.00000 0.00000 0.01293 -0.06101 -0.05765 -0.00000 + 14 -0.00000 0.00000 -0.04795 -0.03842 0.01347 -0.00000 + 15 0.00000 -0.00000 -0.02210 0.04765 -0.06296 0.00000 + 16 0.00000 0.00000 0.24596 -0.81777 -0.77266 -0.00000 + 17 0.00000 0.00000 -0.91189 -0.51493 0.18055 -0.00000 + 18 0.00000 -0.00000 -0.42032 0.63860 -0.84386 0.00000 + 19 -0.00000 -0.00000 -0.44936 1.27857 1.20805 0.00000 + 20 0.00000 -0.00000 1.66597 0.80509 -0.28229 0.00000 + 21 -0.00000 0.00000 0.76790 -0.99845 1.31937 -0.00000 + 22 -0.00000 -0.00000 -0.00451 0.01319 0.01247 0.00000 + 23 -0.00000 -0.00000 0.01674 0.00831 -0.00291 0.00000 + 24 -0.00000 0.00000 0.00771 -0.01030 0.01362 -0.00000 + 25 0.00000 0.00000 0.00015 -0.00049 -0.00046 0.00000 + 26 0.00000 0.00000 -0.00055 -0.00031 0.00011 -0.00000 + 27 -0.00000 -0.00000 -0.00025 0.00038 -0.00051 0.00000 + 28 -0.00000 -0.00000 -0.00016 0.00045 0.00043 0.00000 + 29 -0.00000 -0.00000 0.00061 0.00029 -0.00010 0.00000 + 30 -0.00000 0.00000 0.00028 -0.00035 0.00047 -0.00000 + 31 -0.00000 -0.00000 0.18623 -0.51641 -0.48793 -0.00000 + 32 -0.00000 0.00000 -0.69042 -0.32517 0.11402 -0.00000 + 33 -0.00000 -0.00000 -0.31824 0.40327 -0.53288 0.00000 + 34 -0.00794 0.00367 0.00000 -0.00000 -0.00000 0.00124 + 35 -0.00400 -0.00628 -0.00000 -0.00000 -0.00000 -0.00211 + 36 -0.00304 0.00255 -0.00000 -0.00000 -0.00000 0.00086 + 37 0.00268 -0.00169 -0.00000 0.00000 0.00000 -0.00057 + 38 0.00259 0.00632 -0.00000 0.00000 0.00000 0.00212 + 39 0.05705 -0.02674 0.00000 0.00000 0.00000 -0.00940 + 40 0.02876 0.04570 0.00000 -0.00000 0.00000 0.01605 + 41 0.02186 -0.01854 0.00000 -0.00000 0.00000 -0.00651 + 42 -0.01928 0.01233 0.00000 -0.00000 -0.00000 0.00433 + 43 -0.01859 -0.04596 -0.00000 -0.00000 -0.00000 -0.01615 + 44 -0.15475 0.07199 0.00000 -0.00000 -0.00000 0.02937 + 45 -0.07802 -0.12302 0.00000 -0.00000 -0.00000 -0.05020 + 46 -0.05931 0.04991 -0.00000 0.00000 -0.00000 0.02037 + 47 0.05230 -0.03318 0.00000 0.00000 -0.00000 -0.01354 + 48 0.05042 0.12373 0.00000 0.00000 0.00000 0.05049 + 49 0.00110 -0.00051 0.00000 -0.00000 0.00000 -0.00004 + 50 0.00055 0.00088 0.00000 -0.00000 0.00000 0.00007 + 51 0.00042 -0.00036 0.00000 -0.00000 0.00000 -0.00003 + 52 -0.00037 0.00024 0.00000 0.00000 -0.00000 0.00002 + 53 -0.00036 -0.00088 0.00000 -0.00000 -0.00000 -0.00007 + 54 -0.00013 0.00006 -0.00000 -0.00000 0.00000 0.00001 + 55 -0.00007 -0.00011 -0.00000 0.00000 -0.00000 -0.00003 + 56 -0.00005 0.00004 0.00000 -0.00000 -0.00000 0.00001 + 57 0.00005 -0.00003 -0.00000 -0.00000 0.00000 -0.00001 + 58 0.00004 0.00011 -0.00000 0.00000 -0.00000 0.00003 + 59 0.86371 -0.39923 -0.00000 0.00000 0.00000 -0.02251 + 60 0.43543 0.68224 0.00000 0.00000 0.00000 0.03847 + 61 0.33102 -0.27680 -0.00000 -0.00000 0.00000 -0.01561 + 62 -0.29189 0.18402 0.00000 0.00000 -0.00000 0.01038 + 63 -0.28139 -0.68622 -0.00000 -0.00000 0.00000 -0.03870 + 64 0.00000 0.00000 -0.00066 -0.00095 -0.00026 -0.00000 + 65 -0.00000 0.00000 -0.00052 0.00082 0.00025 -0.00000 + 66 0.00000 0.00000 -0.00015 -0.00081 0.00104 -0.00000 + 67 -0.00000 -0.00000 -0.00069 0.00009 -0.00012 0.00000 + 68 0.00000 -0.00000 -0.00004 -0.00016 0.00032 -0.00000 + 69 0.00000 0.00000 -0.00089 -0.00007 -0.00068 -0.00000 + 70 -0.00000 0.00000 -0.00067 0.00049 0.00084 0.00000 + 71 -0.00000 -0.00000 -0.00656 -0.00884 -0.00240 0.00000 + 72 0.00000 -0.00000 -0.00511 0.00763 0.00237 0.00000 + 73 0.00000 0.00000 -0.00145 -0.00760 0.00977 0.00000 + 74 -0.00000 -0.00000 -0.00683 0.00087 -0.00115 -0.00000 + 75 -0.00000 0.00000 -0.00039 -0.00152 0.00304 0.00000 + 76 -0.00000 -0.00000 -0.00878 -0.00068 -0.00635 0.00000 + 77 0.00000 -0.00000 -0.00662 0.00463 0.00783 -0.00000 + 78 0.00000 0.00000 -0.00001 -0.00001 -0.00000 -0.00000 + 79 -0.00000 -0.00000 -0.00001 0.00001 0.00000 -0.00000 + 80 -0.00000 -0.00000 -0.00000 -0.00001 0.00001 0.00000 + 81 -0.00000 0.00000 -0.00001 0.00000 -0.00000 0.00000 + 82 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 83 -0.00000 -0.00000 -0.00001 -0.00000 -0.00001 -0.00000 + 84 0.00000 0.00000 -0.00001 0.00001 0.00001 -0.00000 + 85 0.00000 0.00000 0.02223 0.02504 0.00680 -0.00000 + 86 -0.00000 0.00000 0.01732 -0.02159 -0.00672 -0.00000 + 87 -0.00000 -0.00000 0.00491 0.02152 -0.02766 -0.00000 + 88 0.00000 -0.00000 0.02316 -0.00245 0.00324 0.00000 + 89 0.00000 -0.00000 0.00132 0.00430 -0.00860 -0.00000 + 90 0.00000 0.00000 0.02977 0.00191 0.01799 -0.00000 + 91 -0.00000 0.00000 0.02245 -0.01310 -0.02218 0.00000 + 92 -0.00040 0.00045 -0.00000 0.00000 0.00000 -0.00008 + 93 -0.00045 -0.00046 0.00000 -0.00000 0.00000 0.00008 + 94 -0.00013 -0.00004 0.00000 0.00000 -0.00000 0.00001 + 95 0.00003 -0.00052 0.00000 -0.00000 0.00000 0.00010 + 96 -0.00023 -0.00013 0.00000 0.00000 -0.00000 0.00002 + 97 0.00017 -0.00014 0.00000 0.00000 -0.00000 0.00003 + 98 -0.00030 -0.00006 0.00000 0.00000 -0.00000 0.00001 + 99 0.00033 -0.00046 -0.00000 -0.00000 0.00000 0.00009 + 100 0.00045 0.00025 0.00000 0.00000 -0.00000 -0.00005 + 101 0.00249 -0.00284 0.00000 -0.00000 -0.00000 0.00042 + 102 0.00281 0.00289 -0.00000 0.00000 -0.00000 -0.00043 + 103 0.00079 0.00023 0.00000 -0.00000 -0.00000 -0.00003 + 104 -0.00021 0.00331 -0.00000 0.00000 -0.00000 -0.00049 + 105 0.00147 0.00079 -0.00000 -0.00000 0.00000 -0.00012 + 106 -0.00105 0.00089 -0.00000 -0.00000 -0.00000 -0.00013 + 107 0.00188 0.00040 -0.00000 -0.00000 0.00000 -0.00006 + 108 -0.00207 0.00292 0.00000 -0.00000 0.00000 -0.00043 + 109 -0.00279 -0.00161 -0.00000 -0.00000 0.00000 0.00024 19 20 21 22 23 24 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 2 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 3 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 4 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 5 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 1 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 2 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 3 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 4 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 5 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 6 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 7 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 8 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 9 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 10 -0.00000 0.00000 0.00000 0.00000 0.00188 0.00380 - 11 -0.00000 -0.00000 -0.00000 -0.00000 -0.00553 0.00174 - 12 -0.00000 0.00000 0.00000 -0.00000 -0.00059 -0.00412 - 13 -0.00000 -0.00000 -0.00000 -0.00000 -0.00326 -0.00658 - 14 -0.00000 0.00000 -0.00000 0.00000 0.00956 -0.00301 - 15 0.00000 -0.00000 -0.00000 0.00000 0.00102 0.00713 - 16 0.00000 0.00000 0.00000 0.00000 0.01521 0.03069 - 17 0.00000 -0.00000 0.00000 -0.00000 -0.04461 0.01402 - 18 -0.00000 0.00000 -0.00000 -0.00000 -0.00478 -0.03326 - 19 0.00000 0.00000 0.00000 -0.00000 -0.02437 -0.04919 - 20 0.00000 0.00000 0.00000 -0.00000 0.07151 -0.02248 - 21 0.00000 0.00000 0.00000 0.00000 0.00766 0.05330 - 22 0.00000 0.00000 0.00000 -0.00000 -0.00049 -0.00099 - 23 0.00000 0.00000 0.00000 -0.00000 0.00144 -0.00045 - 24 0.00000 -0.00000 -0.00000 0.00000 0.00015 0.00107 - 25 -0.00000 -0.00000 -0.00000 -0.00000 0.00002 0.00005 - 26 -0.00000 -0.00000 -0.00000 0.00000 -0.00007 0.00002 - 27 -0.00000 0.00000 0.00000 -0.00000 -0.00001 -0.00005 - 28 -0.00000 -0.00000 -0.00000 -0.00000 -0.00002 -0.00004 - 29 -0.00000 0.00000 -0.00000 0.00000 0.00006 -0.00002 - 30 0.00000 -0.00000 -0.00000 0.00000 0.00001 0.00005 - 31 -0.00000 -0.00000 -0.00000 0.00000 0.00822 0.01659 - 32 -0.00000 -0.00000 -0.00000 0.00000 -0.02411 0.00758 - 33 -0.00000 -0.00000 -0.00000 0.00000 -0.00258 -0.01797 - 34 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 35 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 36 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 37 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 38 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 39 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 40 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 41 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 42 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 43 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 44 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 45 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 46 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 47 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 48 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 49 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 50 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 51 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 52 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 53 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 54 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 55 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 56 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 57 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 58 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 59 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 60 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 61 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 62 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 63 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 64 0.02519 -0.00247 -0.02308 0.01236 0.01450 -0.01133 - 65 -0.02517 -0.00254 -0.00048 0.00315 0.02897 -0.00933 - 66 0.01792 0.00796 0.03192 0.00450 0.01598 0.00372 - 67 -0.00630 0.00962 -0.00626 0.02795 0.00388 0.02698 - 68 -0.00373 0.01387 0.00481 0.01255 -0.00015 -0.02595 - 69 -0.00387 0.02595 -0.00152 0.00631 -0.01602 -0.00826 - 70 0.00272 0.02511 -0.01112 -0.02406 0.01445 0.00929 - 71 -0.13332 0.01306 0.12162 -0.06511 -0.07612 0.05947 - 72 0.13318 0.01346 0.00255 -0.01658 -0.15209 0.04899 - 73 -0.09486 -0.04214 -0.16816 -0.02369 -0.08389 -0.01951 - 74 0.03336 -0.05093 0.03300 -0.14725 -0.02035 -0.14165 - 75 0.01973 -0.07342 -0.02534 -0.06613 0.00080 0.13623 - 76 0.02047 -0.13735 0.00802 -0.03325 0.08409 0.04336 - 77 -0.01438 -0.13290 0.05859 0.12676 -0.07584 -0.04880 - 78 -0.00002 0.00000 0.00002 -0.00001 -0.00001 0.00001 - 79 0.00002 0.00000 0.00000 -0.00000 -0.00003 0.00001 - 80 -0.00002 -0.00001 -0.00003 -0.00000 -0.00001 -0.00000 - 81 0.00001 -0.00001 0.00001 -0.00003 -0.00000 -0.00003 - 82 0.00000 -0.00001 -0.00000 -0.00001 0.00000 0.00002 - 83 0.00000 -0.00002 0.00000 -0.00001 0.00001 0.00001 - 84 -0.00000 -0.00002 0.00001 0.00002 -0.00001 -0.00001 - 85 0.68829 -0.06744 -0.61795 0.33085 0.38332 -0.29946 - 86 -0.68757 -0.06949 -0.01296 0.08423 0.76588 -0.24668 - 87 0.48974 0.21754 0.85445 0.12038 0.42243 0.09827 - 88 -0.17222 0.26295 -0.16769 0.74821 0.10250 0.71328 - 89 -0.10187 0.37904 0.12878 0.33600 -0.00405 -0.68603 - 90 -0.10570 0.70908 -0.04076 0.16893 -0.42347 -0.21837 - 91 0.07426 0.68612 -0.29772 -0.64407 0.38191 0.24573 - 92 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 93 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 94 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 95 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 96 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 97 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 98 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 99 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 100 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 101 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 102 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 103 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 104 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 105 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 106 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 107 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 108 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 109 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 7 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 8 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 9 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 10 0.00000 0.00000 -0.00000 -0.00000 -0.00475 0.00315 + 11 0.00000 -0.00000 -0.00000 0.00000 0.00030 0.00275 + 12 0.00000 -0.00000 -0.00000 0.00000 -0.00343 -0.00412 + 13 0.00000 -0.00000 -0.00000 0.00000 0.00823 -0.00545 + 14 -0.00000 0.00000 0.00000 -0.00000 -0.00052 -0.00476 + 15 0.00000 0.00000 0.00000 -0.00000 0.00593 0.00713 + 16 -0.00000 0.00000 0.00000 -0.00000 -0.03837 0.02540 + 17 0.00000 -0.00000 -0.00000 0.00000 0.00241 0.02219 + 18 -0.00000 -0.00000 0.00000 0.00000 -0.02769 -0.03327 + 19 -0.00000 0.00000 0.00000 -0.00000 0.06150 -0.04071 + 20 0.00000 0.00000 -0.00000 -0.00000 -0.00387 -0.03556 + 21 0.00000 0.00000 -0.00000 -0.00000 0.04437 0.05333 + 22 -0.00000 0.00000 0.00000 -0.00000 0.00123 -0.00082 + 23 0.00000 0.00000 -0.00000 -0.00000 -0.00008 -0.00071 + 24 -0.00000 0.00000 0.00000 -0.00000 0.00089 0.00107 + 25 0.00000 -0.00000 -0.00000 0.00000 -0.00006 0.00004 + 26 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00003 + 27 0.00000 0.00000 -0.00000 0.00000 -0.00004 -0.00005 + 28 0.00000 -0.00000 -0.00000 0.00000 0.00005 -0.00004 + 29 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00003 + 30 -0.00000 0.00000 0.00000 -0.00000 0.00004 0.00005 + 31 0.00000 -0.00000 -0.00000 0.00000 -0.02074 0.01373 + 32 -0.00000 -0.00000 0.00000 0.00000 0.00130 0.01199 + 33 -0.00000 -0.00000 0.00000 0.00000 -0.01496 -0.01798 + 34 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 35 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 36 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 37 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 38 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 39 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 40 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 41 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 42 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 43 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 44 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 45 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 46 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 47 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 48 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 49 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 50 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 52 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 53 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 54 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 55 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 56 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 57 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 58 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 59 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 60 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 61 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 62 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 63 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 64 0.00787 0.01188 0.01846 -0.01439 -0.01240 0.02303 + 65 0.01912 -0.00842 0.02247 0.00907 0.01154 -0.01967 + 66 -0.00467 -0.01482 0.00185 0.01589 0.02223 0.02746 + 67 -0.00680 0.02364 -0.00796 0.02623 -0.00262 -0.00315 + 68 0.03157 0.00545 -0.02379 -0.00309 0.00745 0.00619 + 69 -0.00261 -0.02468 -0.01451 -0.00054 -0.01810 -0.00224 + 70 -0.01290 0.00600 -0.00716 -0.02237 0.02478 -0.00778 + 71 -0.04164 -0.06285 -0.09727 0.07583 0.06512 -0.12090 + 72 -0.10119 0.04456 -0.11839 -0.04777 -0.06058 0.10324 + 73 0.02474 0.07841 -0.00973 -0.08369 -0.11671 -0.14417 + 74 0.03600 -0.12512 0.04195 -0.13821 0.01377 0.01655 + 75 -0.16705 -0.02883 0.12531 0.01626 -0.03914 -0.03252 + 76 0.01383 0.13062 0.07645 0.00286 0.09501 0.01175 + 77 0.06826 -0.03174 0.03774 0.11787 -0.13008 0.04086 + 78 -0.00001 -0.00001 -0.00002 0.00001 0.00001 -0.00002 + 79 -0.00002 0.00001 -0.00002 -0.00001 -0.00001 0.00002 + 80 0.00000 0.00001 -0.00000 -0.00001 -0.00002 -0.00003 + 81 0.00001 -0.00002 0.00001 -0.00002 0.00000 0.00000 + 82 -0.00003 -0.00001 0.00002 0.00000 -0.00001 -0.00001 + 83 0.00000 0.00002 0.00001 0.00000 0.00002 0.00000 + 84 0.00001 -0.00001 0.00001 0.00002 -0.00002 0.00001 + 85 0.21497 0.32447 0.49426 -0.38530 -0.32793 0.60882 + 86 0.52241 -0.23006 0.60156 0.24274 0.30508 -0.51990 + 87 -0.12771 -0.40481 0.04942 0.42524 0.58772 0.72602 + 88 -0.18585 0.64596 -0.21318 0.70227 -0.06933 -0.08332 + 89 0.86244 0.14886 -0.63672 -0.08263 0.19709 0.16374 + 90 -0.07141 -0.67433 -0.38843 -0.01454 -0.47843 -0.05918 + 91 -0.35241 0.16386 -0.19176 -0.59890 0.65505 -0.20576 + 92 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 93 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 94 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 95 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 96 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 97 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 98 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 99 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 100 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 101 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 102 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 103 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 104 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 105 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 106 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 107 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 108 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 109 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 25 26 27 28 29 30 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.03626 - 2 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.05361 - 3 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.06426 - 4 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.19462 - 5 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.21223 - 6 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.01495 - 7 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00026 - 8 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00080 - 9 0.00000 0.00000 0.00000 -0.00000 0.00000 0.08676 - 10 -0.00000 -0.00000 0.00481 0.00000 0.00000 -0.00000 - 11 -0.00000 -0.00000 0.00111 0.00000 0.00000 -0.00000 - 12 -0.00000 -0.00000 0.00491 0.00000 -0.00000 -0.00000 - 13 0.00000 0.00000 -0.00865 -0.00000 -0.00000 0.00000 - 14 0.00000 0.00000 -0.00200 -0.00000 0.00000 0.00000 - 15 0.00000 0.00000 -0.00883 -0.00000 -0.00000 0.00000 - 16 -0.00000 -0.00000 0.03824 0.00000 0.00000 -0.00000 - 17 -0.00000 -0.00000 0.00885 0.00000 0.00000 -0.00000 - 18 -0.00000 -0.00000 0.03903 0.00000 0.00000 -0.00000 - 19 0.00000 0.00000 -0.06446 -0.00000 -0.00000 0.00000 - 20 0.00000 0.00000 -0.01493 -0.00000 -0.00000 0.00000 - 21 0.00000 0.00000 -0.06579 -0.00000 -0.00000 0.00000 - 22 0.00000 0.00000 -0.00128 -0.00000 -0.00000 0.00000 - 23 0.00000 0.00000 -0.00030 -0.00000 0.00000 0.00000 - 24 0.00000 0.00000 -0.00131 -0.00000 0.00000 0.00000 - 25 -0.00000 -0.00000 0.00006 -0.00000 -0.00000 -0.00000 - 26 -0.00000 -0.00000 0.00001 -0.00000 0.00000 0.00000 - 27 -0.00000 -0.00000 0.00006 0.00000 -0.00000 -0.00000 - 28 0.00000 0.00000 -0.00006 -0.00000 -0.00000 0.00000 - 29 0.00000 0.00000 -0.00001 -0.00000 -0.00000 -0.00000 - 30 0.00000 0.00000 -0.00006 -0.00000 0.00000 0.00000 - 31 -0.00000 -0.00000 0.02172 0.00000 0.00000 -0.00000 - 32 -0.00000 -0.00000 0.00503 0.00000 0.00000 -0.00000 - 33 -0.00000 -0.00000 0.02217 0.00000 0.00000 -0.00000 - 34 0.04048 0.01209 0.00000 -0.00567 0.04108 -0.01188 - 35 -0.04142 0.00112 -0.00000 0.00827 0.04145 -0.01212 - 36 0.00484 0.02532 0.00000 0.05228 -0.01033 -0.01524 - 37 -0.00388 0.03010 0.00000 0.00156 0.00967 0.05235 - 38 -0.01054 0.04254 0.00000 -0.03083 -0.01346 -0.02427 - 39 -0.09614 -0.02871 -0.00000 0.01246 -0.09034 0.02554 - 40 0.09838 -0.00267 0.00000 -0.01820 -0.09117 0.02606 - 41 -0.01150 -0.06014 -0.00000 -0.11498 0.02273 0.03278 - 42 0.00922 -0.07149 -0.00000 -0.00343 -0.02126 -0.11257 - 43 0.02503 -0.10103 -0.00000 0.06781 0.02960 0.05219 - 44 0.92222 0.27535 0.00000 -0.12374 0.89708 -0.25659 - 45 -0.94367 0.02562 -0.00000 0.18071 0.90529 -0.26187 - 46 0.11032 0.57686 0.00000 1.14178 -0.22567 -0.32935 - 47 -0.08849 0.68573 0.00000 0.03405 0.21115 1.13101 - 48 -0.24014 0.96912 0.00000 -0.67335 -0.29389 -0.52441 - 49 -0.00162 -0.00049 -0.00000 0.00021 -0.00154 0.00044 - 50 0.00166 -0.00005 0.00000 -0.00031 -0.00156 0.00045 - 51 -0.00019 -0.00102 -0.00000 -0.00197 0.00039 0.00056 - 52 0.00016 -0.00121 -0.00000 -0.00006 -0.00036 -0.00193 - 53 0.00042 -0.00171 -0.00000 0.00116 0.00051 0.00090 - 54 0.00038 0.00011 0.00000 -0.00005 0.00038 -0.00011 - 55 -0.00039 0.00001 -0.00000 0.00008 0.00038 -0.00011 - 56 0.00005 0.00024 0.00000 0.00048 -0.00010 -0.00014 - 57 -0.00004 0.00029 0.00000 0.00001 0.00009 0.00048 - 58 -0.00010 0.00040 0.00000 -0.00029 -0.00012 -0.00022 - 59 -0.46682 -0.13938 -0.00000 0.06281 -0.45535 0.12999 - 60 0.47767 -0.01297 0.00000 -0.09173 -0.45952 0.13266 - 61 -0.05584 -0.29200 -0.00000 -0.57956 0.11455 0.16685 - 62 0.04479 -0.34711 -0.00000 -0.01728 -0.10718 -0.57297 - 63 0.12156 -0.49056 -0.00000 0.34178 0.14917 0.26566 - 64 0.00000 0.00000 -0.00754 -0.00000 -0.00000 0.00000 - 65 0.00000 0.00000 -0.01280 -0.00000 -0.00000 0.00000 - 66 0.00000 0.00000 -0.00617 -0.00000 -0.00000 0.00000 - 67 -0.00000 -0.00000 0.00769 0.00000 0.00000 -0.00000 - 68 -0.00000 -0.00000 0.02666 0.00000 0.00000 -0.00000 - 69 0.00000 0.00000 -0.02616 -0.00000 -0.00000 0.00000 - 70 -0.00000 -0.00000 0.00928 0.00000 0.00000 -0.00000 - 71 -0.00000 -0.00000 0.03957 0.00000 0.00000 -0.00000 - 72 -0.00000 -0.00000 0.06715 0.00000 0.00000 -0.00000 - 73 -0.00000 -0.00000 0.03238 0.00000 0.00000 -0.00000 - 74 0.00000 0.00000 -0.04035 -0.00000 -0.00000 0.00000 - 75 0.00000 0.00000 -0.13985 -0.00000 -0.00000 0.00000 - 76 -0.00000 -0.00000 0.13723 0.00000 0.00000 -0.00000 - 77 0.00000 0.00000 -0.04868 -0.00000 -0.00000 0.00000 - 78 -0.00000 -0.00000 0.00001 -0.00000 0.00000 -0.00000 - 79 -0.00000 -0.00000 0.00001 0.00000 0.00000 -0.00000 - 80 -0.00000 0.00000 0.00001 0.00000 0.00000 0.00000 - 81 -0.00000 0.00000 -0.00001 -0.00000 -0.00000 0.00000 - 82 0.00000 0.00000 -0.00002 0.00000 0.00000 0.00000 - 83 -0.00000 -0.00000 0.00002 -0.00000 -0.00000 0.00000 - 84 0.00000 0.00000 -0.00001 -0.00000 0.00000 -0.00000 - 85 0.00000 0.00000 -0.19863 -0.00000 -0.00000 0.00000 - 86 0.00000 0.00000 -0.33705 -0.00000 -0.00000 0.00000 - 87 0.00000 0.00000 -0.16254 -0.00000 -0.00000 0.00000 - 88 -0.00000 -0.00000 0.20255 0.00000 0.00000 -0.00000 - 89 -0.00000 -0.00000 0.70200 0.00000 0.00000 -0.00000 - 90 0.00000 0.00000 -0.68885 -0.00000 -0.00000 0.00000 - 91 -0.00000 -0.00000 0.24434 0.00000 0.00000 -0.00000 - 92 0.00027 0.00025 0.00000 -0.00014 0.00023 -0.00015 - 93 0.00023 0.00018 0.00000 -0.00009 0.00056 -0.00034 - 94 -0.00036 0.00003 -0.00000 0.00018 0.00052 -0.00032 - 95 -0.00044 0.00012 -0.00000 0.00020 0.00004 -0.00004 - 96 0.00010 0.00051 0.00000 0.00018 -0.00004 0.00042 - 97 -0.00013 -0.00011 -0.00000 -0.00081 0.00018 0.00019 - 98 0.00016 -0.00012 -0.00000 0.00011 -0.00029 -0.00065 - 99 0.00010 -0.00029 -0.00000 0.00033 0.00037 0.00042 - 100 -0.00023 0.00028 0.00000 -0.00019 -0.00022 -0.00012 - 101 -0.00591 -0.00551 -0.00000 0.00336 -0.00558 0.00382 - 102 -0.00503 -0.00399 -0.00000 0.00230 -0.01356 0.00857 - 103 0.00801 -0.00059 0.00000 -0.00442 -0.01253 0.00792 - 104 0.00974 -0.00256 0.00000 -0.00494 -0.00100 0.00111 - 105 -0.00217 -0.01135 -0.00000 -0.00438 0.00087 -0.01054 - 106 0.00284 0.00248 0.00000 0.01962 -0.00434 -0.00478 - 107 -0.00348 0.00258 0.00000 -0.00257 0.00707 0.01618 - 108 -0.00222 0.00652 0.00000 -0.00792 -0.00909 -0.01055 - 109 0.00508 -0.00613 -0.00000 0.00454 0.00543 0.00297 + 1 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.03626 + 2 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.05361 + 3 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.06426 + 4 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.19463 + 5 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.21223 + 6 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.01495 + 7 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00026 + 8 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00080 + 9 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.08676 + 10 -0.00000 0.00000 -0.00166 -0.00000 -0.00000 0.00000 + 11 -0.00000 -0.00000 0.00614 0.00000 0.00000 -0.00000 + 12 0.00000 0.00000 0.00283 0.00000 0.00000 0.00000 + 13 0.00000 -0.00000 0.00298 0.00000 0.00000 -0.00000 + 14 0.00000 0.00000 -0.01104 0.00000 0.00000 -0.00000 + 15 -0.00000 -0.00000 -0.00509 0.00000 -0.00000 0.00000 + 16 -0.00000 0.00000 -0.01317 -0.00000 -0.00000 0.00000 + 17 -0.00000 -0.00000 0.04882 0.00000 0.00000 0.00000 + 18 0.00000 0.00000 0.02250 -0.00000 0.00000 -0.00000 + 19 0.00000 -0.00000 0.02220 0.00000 0.00000 -0.00000 + 20 0.00000 0.00000 -0.08231 -0.00000 0.00000 -0.00000 + 21 -0.00000 -0.00000 -0.03794 0.00000 -0.00000 0.00000 + 22 0.00000 -0.00000 0.00044 0.00000 0.00000 -0.00000 + 23 0.00000 0.00000 -0.00164 0.00000 -0.00000 -0.00000 + 24 -0.00000 -0.00000 -0.00075 -0.00000 -0.00000 0.00000 + 25 -0.00000 0.00000 -0.00002 0.00000 -0.00000 0.00000 + 26 -0.00000 -0.00000 0.00008 -0.00000 0.00000 0.00000 + 27 0.00000 0.00000 0.00004 0.00000 0.00000 -0.00000 + 28 0.00000 -0.00000 0.00002 0.00000 0.00000 -0.00000 + 29 0.00000 0.00000 -0.00007 0.00000 -0.00000 -0.00000 + 30 -0.00000 -0.00000 -0.00003 -0.00000 -0.00000 0.00000 + 31 -0.00000 0.00000 -0.00748 -0.00000 -0.00000 0.00000 + 32 -0.00000 -0.00000 0.02774 0.00000 -0.00000 -0.00000 + 33 0.00000 0.00000 0.01278 -0.00000 0.00000 0.00000 + 34 0.00480 0.02666 0.00000 0.01834 0.04645 -0.02256 + 35 -0.02443 0.00722 0.00000 0.04029 0.00075 0.03855 + 36 0.02749 -0.03279 -0.00000 0.03919 -0.00567 -0.01564 + 37 0.03634 0.03794 0.00000 0.00716 -0.02545 0.01040 + 38 -0.02843 0.01507 0.00000 0.01550 -0.03081 -0.03877 + 39 -0.01140 -0.06331 -0.00000 -0.04033 -0.10215 0.04850 + 40 0.05803 -0.01715 -0.00000 -0.08862 -0.00165 -0.08288 + 41 -0.06529 0.07788 0.00000 -0.08618 0.01247 0.03363 + 42 -0.08629 -0.09010 -0.00000 -0.01574 0.05596 -0.02236 + 43 0.06752 -0.03579 -0.00000 -0.03410 0.06776 0.08337 + 44 0.10931 0.60729 0.00000 0.40049 1.01439 -0.48730 + 45 -0.55662 0.16448 0.00000 0.88000 0.01641 0.83273 + 46 0.62631 -0.74702 -0.00000 0.85576 -0.12387 -0.33786 + 47 0.82775 0.86424 0.00000 0.15629 -0.55569 0.22461 + 48 -0.64765 0.34330 0.00000 0.33861 -0.67290 -0.83759 + 49 -0.00019 -0.00107 -0.00000 -0.00069 -0.00175 0.00083 + 50 0.00098 -0.00029 0.00000 -0.00152 -0.00003 -0.00142 + 51 -0.00110 0.00132 0.00000 -0.00147 0.00021 0.00058 + 52 -0.00146 -0.00152 -0.00000 -0.00027 0.00096 -0.00038 + 53 0.00114 -0.00060 -0.00000 -0.00058 0.00116 0.00143 + 54 0.00005 0.00025 0.00000 0.00017 0.00043 -0.00021 + 55 -0.00023 0.00007 -0.00000 0.00037 0.00001 0.00035 + 56 0.00026 -0.00031 -0.00000 0.00036 -0.00005 -0.00014 + 57 0.00034 0.00036 0.00000 0.00007 -0.00024 0.00010 + 58 -0.00027 0.00014 -0.00000 0.00014 -0.00029 -0.00036 + 59 -0.05533 -0.30740 -0.00000 -0.20329 -0.51489 0.24687 + 60 0.28175 -0.08326 -0.00000 -0.44668 -0.00833 -0.42186 + 61 -0.31703 0.37813 0.00000 -0.43437 0.06287 0.17116 + 62 -0.41900 -0.43747 -0.00000 -0.07933 0.28206 -0.11379 + 63 0.32783 -0.17378 -0.00000 -0.17187 0.34156 0.42432 + 64 -0.00000 -0.00000 0.01800 0.00000 -0.00000 -0.00000 + 65 0.00000 0.00000 0.01402 -0.00000 0.00000 0.00000 + 66 -0.00000 -0.00000 0.00397 0.00000 -0.00000 -0.00000 + 67 0.00000 -0.00000 0.01875 -0.00000 0.00000 -0.00000 + 68 -0.00000 -0.00000 0.00107 0.00000 0.00000 0.00000 + 69 0.00000 -0.00000 0.02410 -0.00000 -0.00000 0.00000 + 70 -0.00000 -0.00000 0.01818 0.00000 0.00000 -0.00000 + 71 0.00000 0.00000 -0.09438 0.00000 0.00000 -0.00000 + 72 -0.00000 -0.00000 -0.07353 0.00000 -0.00000 -0.00000 + 73 0.00000 0.00000 -0.02085 -0.00000 0.00000 0.00000 + 74 -0.00000 0.00000 -0.09831 0.00000 -0.00000 -0.00000 + 75 0.00000 0.00000 -0.00562 -0.00000 -0.00000 0.00000 + 76 -0.00000 0.00000 -0.12639 0.00000 0.00000 0.00000 + 77 0.00000 0.00000 -0.09532 -0.00000 -0.00000 0.00000 + 78 0.00000 0.00000 -0.00002 0.00000 0.00000 -0.00000 + 79 -0.00000 -0.00000 -0.00001 0.00000 0.00000 -0.00000 + 80 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 81 -0.00000 -0.00000 -0.00002 0.00000 0.00000 -0.00000 + 82 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 83 0.00000 0.00000 -0.00002 0.00000 0.00000 -0.00000 + 84 0.00000 0.00000 -0.00002 0.00000 0.00000 -0.00000 + 85 -0.00000 -0.00000 0.47376 0.00000 -0.00000 0.00000 + 86 0.00000 0.00000 0.36912 -0.00000 0.00000 0.00000 + 87 -0.00000 -0.00000 0.10465 0.00000 -0.00000 -0.00000 + 88 0.00000 -0.00000 0.49351 -0.00000 0.00000 0.00000 + 89 -0.00000 -0.00000 0.02823 0.00000 0.00000 -0.00000 + 90 0.00000 -0.00000 0.63447 -0.00000 -0.00000 0.00000 + 91 -0.00000 -0.00000 0.47851 0.00000 0.00000 -0.00000 + 92 0.00014 -0.00043 -0.00000 -0.00029 -0.00030 0.00046 + 93 0.00014 0.00019 0.00000 -0.00019 -0.00044 -0.00047 + 94 -0.00041 -0.00030 -0.00000 -0.00035 0.00009 -0.00004 + 95 0.00034 -0.00042 0.00000 0.00015 -0.00007 -0.00054 + 96 0.00004 -0.00004 -0.00000 -0.00052 0.00008 -0.00013 + 97 0.00012 -0.00009 0.00000 0.00007 0.00017 -0.00015 + 98 0.00018 0.00024 0.00000 -0.00062 0.00007 -0.00007 + 99 -0.00021 -0.00010 0.00000 -0.00006 0.00047 -0.00048 + 100 0.00038 0.00001 0.00000 -0.00005 0.00061 0.00026 + 101 -0.00314 0.00947 0.00000 0.00707 0.00737 -0.01157 + 102 -0.00303 -0.00429 -0.00000 0.00468 0.01071 0.01179 + 103 0.00911 0.00656 0.00000 0.00860 -0.00229 0.00095 + 104 -0.00751 0.00930 0.00000 -0.00376 0.00171 0.01350 + 105 -0.00078 0.00093 0.00000 0.01261 -0.00183 0.00324 + 106 -0.00269 0.00195 -0.00000 -0.00167 -0.00406 0.00364 + 107 -0.00407 -0.00528 -0.00000 0.01513 -0.00158 0.00164 + 108 0.00472 0.00219 -0.00000 0.00150 -0.01149 0.01191 + 109 -0.00835 -0.00012 -0.00000 0.00125 -0.01494 -0.00658 31 32 33 34 35 36 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 0.00000 -0.00000 -1.45467 0.00000 -0.00000 - 2 -0.00000 0.00000 -0.00000 -2.82287 0.00000 -0.00000 - 3 -0.00000 0.00000 -0.00000 -3.66489 0.00000 -0.00000 - 4 -0.00000 -0.00000 0.00000 4.72043 -0.00000 0.00000 - 5 0.00000 0.00000 -0.00000 -2.74852 0.00000 -0.00000 - 6 -0.00000 0.00000 -0.00000 -0.54038 0.00000 -0.00000 - 7 -0.00000 0.00000 -0.00000 0.00393 0.00000 0.00000 - 8 0.00000 0.00000 0.00000 -0.02811 0.00000 -0.00000 - 9 0.00000 0.00000 0.00000 0.80603 -0.00000 0.00000 - 10 -0.05336 -0.01732 -0.05405 -0.00000 -0.00000 0.00000 - 11 0.03464 -0.06832 -0.01251 -0.00000 0.00000 0.00000 - 12 0.04443 0.03247 -0.05516 -0.00000 -0.00000 0.00000 - 13 -0.99676 -0.32351 -0.98053 0.00000 -0.00000 0.00000 - 14 0.64711 -1.27611 -0.22703 0.00000 -0.00000 0.00000 - 15 0.82987 0.60650 -1.00069 0.00000 -0.00000 -0.00000 - 16 1.45376 0.47183 1.48591 -0.00000 0.00000 -0.00000 - 17 -0.94380 1.86119 0.34404 0.00000 0.00000 -0.00000 - 18 -1.21036 -0.88458 1.51646 -0.00000 0.00000 0.00000 - 19 -0.81800 -0.26549 -0.83778 0.00000 -0.00000 0.00000 - 20 0.53105 -1.04725 -0.19397 -0.00000 -0.00000 0.00000 - 21 0.68104 0.49773 -0.85500 0.00000 -0.00000 -0.00000 - 22 -0.04821 -0.01565 -0.04817 0.00000 -0.00000 0.00000 - 23 0.03130 -0.06172 -0.01115 0.00000 -0.00000 -0.00000 - 24 0.04014 0.02933 -0.04916 0.00000 -0.00000 -0.00000 - 25 0.00306 0.00099 0.00322 -0.00000 -0.00000 -0.00000 - 26 -0.00199 0.00392 0.00075 0.00000 -0.00000 -0.00000 - 27 -0.00255 -0.00186 0.00329 0.00000 0.00000 -0.00000 - 28 -0.00236 -0.00077 -0.00235 0.00000 0.00000 0.00000 - 29 0.00153 -0.00302 -0.00054 -0.00000 0.00000 0.00000 - 30 0.00196 0.00144 -0.00240 0.00000 -0.00000 -0.00000 - 31 0.24690 0.08013 0.25199 0.00000 -0.00000 -0.00000 - 32 -0.16029 0.31609 0.05834 0.00000 0.00000 -0.00000 - 33 -0.20556 -0.15023 0.25717 -0.00000 0.00000 -0.00000 - 34 0.00000 0.00000 0.00000 0.00348 -0.00000 -0.00000 - 35 0.00000 -0.00000 0.00000 0.00355 -0.00000 -0.00000 - 36 -0.00000 -0.00000 -0.00000 0.00447 -0.00000 0.00000 - 37 0.00000 0.00000 -0.00000 -0.01534 0.00000 0.00000 - 38 0.00000 -0.00000 0.00000 0.00711 0.00000 -0.00000 - 39 0.00000 0.00000 -0.00000 -0.01155 0.00000 0.00000 - 40 0.00000 -0.00000 0.00000 -0.01179 0.00000 0.00000 - 41 0.00000 0.00000 0.00000 -0.01483 -0.00000 0.00000 - 42 -0.00000 -0.00000 0.00000 0.05092 -0.00000 -0.00000 - 43 -0.00000 0.00000 -0.00000 -0.02361 -0.00000 0.00000 - 44 -0.00000 0.00000 0.00000 0.01104 -0.00000 -0.00000 - 45 0.00000 -0.00000 -0.00000 0.01127 -0.00000 -0.00000 - 46 -0.00000 -0.00000 -0.00000 0.01417 0.00000 -0.00000 - 47 0.00000 0.00000 -0.00000 -0.04868 0.00000 0.00000 - 48 0.00000 -0.00000 0.00000 0.02257 0.00000 -0.00000 - 49 -0.00000 -0.00000 -0.00000 -0.00034 0.00000 0.00000 - 50 0.00000 -0.00000 0.00000 -0.00034 0.00000 0.00000 - 51 0.00000 0.00000 -0.00000 -0.00043 0.00000 -0.00000 - 52 -0.00000 -0.00000 0.00000 0.00148 -0.00000 -0.00000 - 53 0.00000 0.00000 -0.00000 -0.00069 -0.00000 0.00000 - 54 0.00000 0.00000 -0.00000 0.00004 -0.00000 -0.00000 - 55 -0.00000 0.00000 0.00000 0.00004 -0.00000 -0.00000 - 56 0.00000 -0.00000 0.00000 0.00005 -0.00000 0.00000 - 57 -0.00000 -0.00000 0.00000 -0.00017 0.00000 0.00000 - 58 0.00000 -0.00000 0.00000 0.00008 0.00000 -0.00000 - 59 0.00000 0.00000 -0.00000 -0.00449 0.00000 0.00000 - 60 0.00000 0.00000 -0.00000 -0.00458 0.00000 0.00000 - 61 0.00000 0.00000 -0.00000 -0.00576 -0.00000 0.00000 - 62 -0.00000 -0.00000 0.00000 0.01978 -0.00000 -0.00000 - 63 0.00000 0.00000 -0.00000 -0.00917 -0.00000 0.00000 - 64 -0.00054 0.00490 0.00243 -0.00000 0.00000 -0.00000 - 65 -0.00363 0.00729 0.00413 0.00000 0.00000 0.00000 - 66 -0.00370 0.00236 0.00199 0.00000 -0.00000 -0.00000 - 67 -0.00589 -0.00431 -0.00248 -0.00000 0.00000 0.00000 - 68 0.00500 0.00483 -0.00859 -0.00000 -0.00000 0.00000 - 69 0.00458 -0.00152 0.00843 -0.00000 -0.00000 -0.00000 - 70 -0.00448 0.00103 -0.00299 -0.00000 -0.00000 -0.00000 - 71 0.00198 -0.01786 -0.00933 0.00000 -0.00000 0.00000 - 72 0.01326 -0.02661 -0.01583 -0.00000 -0.00000 -0.00000 - 73 0.01350 -0.00863 -0.00763 0.00000 0.00000 0.00000 - 74 0.02150 0.01571 0.00951 -0.00000 -0.00000 -0.00000 - 75 -0.01823 -0.01761 0.03297 0.00000 0.00000 -0.00000 - 76 -0.01671 0.00555 -0.03235 -0.00000 0.00000 0.00000 - 77 0.01636 -0.00375 0.01147 0.00000 0.00000 0.00000 - 78 -0.00000 0.00001 0.00001 0.00000 0.00000 0.00000 - 79 -0.00001 0.00002 0.00001 0.00000 0.00000 0.00000 - 80 -0.00001 0.00001 0.00000 0.00000 0.00000 -0.00000 - 81 -0.00001 -0.00001 -0.00001 0.00000 0.00000 0.00000 - 82 0.00001 0.00001 -0.00002 -0.00000 0.00000 0.00000 - 83 0.00001 -0.00000 0.00002 0.00000 -0.00000 -0.00000 - 84 -0.00001 0.00000 -0.00001 -0.00000 -0.00000 0.00000 - 85 -0.00119 0.01072 0.00554 -0.00000 0.00000 -0.00000 - 86 -0.00795 0.01596 0.00940 0.00000 0.00000 0.00000 - 87 -0.00810 0.00518 0.00453 -0.00000 -0.00000 -0.00000 - 88 -0.01290 -0.00943 -0.00565 0.00000 0.00000 0.00000 - 89 0.01094 0.01056 -0.01957 -0.00000 -0.00000 0.00000 - 90 0.01002 -0.00333 0.01921 -0.00000 -0.00000 -0.00000 - 91 -0.00981 0.00225 -0.00681 -0.00000 -0.00000 -0.00000 - 92 0.00000 0.00000 0.00000 0.00015 -0.02666 0.10031 - 93 0.00000 -0.00000 -0.00000 0.00033 0.00321 -0.12215 - 94 0.00000 -0.00000 0.00000 0.00030 0.01597 0.09188 - 95 -0.00000 -0.00000 0.00000 0.00004 -0.03041 -0.05709 - 96 -0.00000 0.00000 0.00000 -0.00040 -0.02922 0.02227 - 97 -0.00000 -0.00000 0.00000 -0.00018 -0.04476 0.01553 - 98 -0.00000 0.00000 -0.00000 0.00062 -0.09443 0.02105 - 99 -0.00000 -0.00000 -0.00000 -0.00040 -0.12186 -0.00444 - 100 -0.00000 -0.00000 0.00000 0.00011 -0.10031 -0.02647 - 101 -0.00000 -0.00000 0.00000 -0.00037 0.15013 -0.56499 - 102 0.00000 0.00000 0.00000 -0.00084 -0.01808 0.68803 - 103 -0.00000 -0.00000 -0.00000 -0.00077 -0.08997 -0.51752 - 104 0.00000 0.00000 -0.00000 -0.00011 0.17127 0.32155 - 105 0.00000 0.00000 -0.00000 0.00103 0.16456 -0.12542 - 106 0.00000 0.00000 -0.00000 0.00047 0.25209 -0.08746 - 107 0.00000 -0.00000 -0.00000 -0.00158 0.53186 -0.11859 - 108 0.00000 0.00000 -0.00000 0.00103 0.68636 0.02500 - 109 0.00000 0.00000 -0.00000 -0.00029 0.56499 0.14909 + 1 -0.00000 -0.00000 0.00000 -1.45467 0.00000 0.00000 + 2 -0.00000 -0.00000 0.00000 -2.82286 0.00000 0.00000 + 3 -0.00000 0.00000 0.00000 -3.66489 -0.00000 -0.00000 + 4 0.00000 -0.00000 -0.00000 4.72043 0.00000 0.00000 + 5 -0.00000 0.00000 0.00000 -2.74852 -0.00000 -0.00000 + 6 -0.00000 -0.00000 0.00000 -0.54037 0.00000 0.00000 + 7 0.00000 -0.00000 0.00000 0.00393 -0.00000 -0.00000 + 8 -0.00000 -0.00000 0.00000 -0.02811 0.00000 0.00000 + 9 -0.00000 0.00000 -0.00000 0.80603 0.00000 0.00000 + 10 -0.06472 0.03862 0.01861 0.00000 -0.00000 0.00000 + 11 0.00224 0.03649 -0.06901 0.00000 0.00000 -0.00000 + 12 -0.04274 -0.05656 -0.03181 -0.00000 0.00000 -0.00000 + 13 -1.20902 0.72132 0.33768 0.00000 -0.00000 -0.00000 + 14 0.04191 0.68153 -1.25193 -0.00000 -0.00000 0.00000 + 15 -0.79843 -1.05649 -0.57706 -0.00000 0.00000 -0.00000 + 16 1.76334 -1.05204 -0.51173 -0.00000 0.00000 0.00000 + 17 -0.06113 -0.99401 1.89720 0.00000 -0.00000 -0.00000 + 18 1.16449 1.54088 0.87448 0.00000 -0.00000 0.00000 + 19 -0.99219 0.59196 0.28852 0.00000 -0.00000 -0.00000 + 20 0.03440 0.55930 -1.06967 -0.00000 0.00000 -0.00000 + 21 -0.65523 -0.86702 -0.49305 -0.00000 0.00000 -0.00000 + 22 -0.05847 0.03489 0.01659 -0.00000 0.00000 -0.00000 + 23 0.00203 0.03296 -0.06151 -0.00000 -0.00000 0.00000 + 24 -0.03862 -0.05110 -0.02835 0.00000 0.00000 -0.00000 + 25 0.00371 -0.00222 -0.00111 0.00000 -0.00000 0.00000 + 26 -0.00013 -0.00209 0.00411 0.00000 -0.00000 -0.00000 + 27 0.00245 0.00325 0.00190 -0.00000 -0.00000 0.00000 + 28 -0.00286 0.00171 0.00081 -0.00000 0.00000 -0.00000 + 29 0.00010 0.00161 -0.00300 -0.00000 -0.00000 0.00000 + 30 -0.00189 -0.00250 -0.00138 0.00000 0.00000 -0.00000 + 31 0.29947 -0.17867 -0.08678 -0.00000 0.00000 0.00000 + 32 -0.01038 -0.16881 0.32173 0.00000 -0.00000 0.00000 + 33 0.19777 0.26169 0.14830 -0.00000 -0.00000 0.00000 + 34 -0.00000 -0.00000 -0.00000 -0.00661 0.00000 -0.00000 + 35 0.00000 0.00000 -0.00000 0.01130 -0.00000 0.00000 + 36 -0.00000 -0.00000 0.00000 -0.00458 0.00000 0.00000 + 37 -0.00000 -0.00000 -0.00000 0.00305 -0.00000 0.00000 + 38 -0.00000 -0.00000 0.00000 -0.01136 0.00000 0.00000 + 39 0.00000 -0.00000 -0.00000 0.02194 -0.00000 0.00000 + 40 0.00000 -0.00000 0.00000 -0.03749 0.00000 -0.00000 + 41 0.00000 0.00000 0.00000 0.01521 0.00000 0.00000 + 42 0.00000 0.00000 -0.00000 -0.01011 0.00000 -0.00000 + 43 0.00000 0.00000 0.00000 0.03771 -0.00000 -0.00000 + 44 0.00000 -0.00000 -0.00000 -0.02097 0.00000 -0.00000 + 45 0.00000 0.00000 -0.00000 0.03584 -0.00000 0.00000 + 46 -0.00000 -0.00000 0.00000 -0.01454 -0.00000 -0.00000 + 47 -0.00000 0.00000 -0.00000 0.00967 -0.00000 0.00000 + 48 -0.00000 -0.00000 -0.00000 -0.03605 0.00000 0.00000 + 49 0.00000 0.00000 0.00000 0.00064 -0.00000 0.00000 + 50 -0.00000 -0.00000 0.00000 -0.00109 0.00000 -0.00000 + 51 -0.00000 -0.00000 -0.00000 0.00044 -0.00000 -0.00000 + 52 0.00000 0.00000 -0.00000 -0.00029 0.00000 -0.00000 + 53 -0.00000 -0.00000 -0.00000 0.00110 -0.00000 -0.00000 + 54 -0.00000 -0.00000 -0.00000 -0.00007 0.00000 -0.00000 + 55 0.00000 0.00000 -0.00000 0.00013 -0.00000 0.00000 + 56 0.00000 0.00000 0.00000 -0.00005 0.00000 0.00000 + 57 0.00000 0.00000 -0.00000 0.00003 -0.00000 0.00000 + 58 0.00000 0.00000 -0.00000 -0.00013 0.00000 0.00000 + 59 -0.00000 0.00000 0.00000 0.00852 -0.00000 0.00000 + 60 -0.00000 -0.00000 0.00000 -0.01456 0.00000 -0.00000 + 61 0.00000 0.00000 -0.00000 0.00591 0.00000 0.00000 + 62 0.00000 -0.00000 0.00000 -0.00393 0.00000 -0.00000 + 63 0.00000 0.00000 0.00000 0.01465 -0.00000 -0.00000 + 64 -0.00361 0.00600 -0.00580 0.00000 -0.00000 -0.00000 + 65 0.00333 -0.00511 -0.00452 -0.00000 -0.00000 -0.00000 + 66 0.00560 0.00762 -0.00128 0.00000 0.00000 -0.00000 + 67 -0.00066 -0.00088 -0.00604 -0.00000 -0.00000 0.00000 + 68 0.00192 0.00175 -0.00035 -0.00000 -0.00000 -0.00000 + 69 -0.00481 -0.00083 -0.00777 -0.00000 0.00000 -0.00000 + 70 0.00672 -0.00177 -0.00586 -0.00000 0.00000 -0.00000 + 71 0.01316 -0.02190 0.02225 0.00000 0.00000 0.00000 + 72 -0.01216 0.01866 0.01733 0.00000 0.00000 0.00000 + 73 -0.02043 -0.02781 0.00491 -0.00000 -0.00000 -0.00000 + 74 0.00241 0.00319 0.02318 0.00000 0.00000 -0.00000 + 75 -0.00699 -0.00638 0.00133 0.00000 0.00000 0.00000 + 76 0.01755 0.00301 0.02980 0.00000 -0.00000 -0.00000 + 77 -0.02453 0.00646 0.02247 0.00000 -0.00000 0.00000 + 78 -0.00001 0.00001 -0.00001 0.00000 0.00000 0.00000 + 79 0.00001 -0.00001 -0.00001 -0.00000 -0.00000 -0.00000 + 80 0.00001 0.00002 -0.00000 -0.00000 -0.00000 0.00000 + 81 -0.00000 -0.00000 -0.00001 -0.00000 -0.00000 -0.00000 + 82 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 83 -0.00001 -0.00000 -0.00002 -0.00000 -0.00000 0.00000 + 84 0.00002 -0.00000 -0.00001 0.00000 0.00000 0.00000 + 85 -0.00789 0.01314 -0.01321 -0.00000 -0.00000 -0.00000 + 86 0.00730 -0.01120 -0.01029 -0.00000 -0.00000 -0.00000 + 87 0.01226 0.01669 -0.00292 0.00000 0.00000 0.00000 + 88 -0.00145 -0.00192 -0.01376 -0.00000 -0.00000 0.00000 + 89 0.00419 0.00383 -0.00079 -0.00000 -0.00000 -0.00000 + 90 -0.01053 -0.00181 -0.01769 -0.00000 0.00000 -0.00000 + 91 0.01472 -0.00388 -0.01334 -0.00000 0.00000 0.00000 + 92 -0.00000 0.00000 0.00000 0.00044 0.04438 0.02043 + 93 -0.00000 -0.00000 0.00000 -0.00045 -0.01900 0.08654 + 94 -0.00000 0.00000 -0.00000 -0.00004 -0.09914 -0.00455 + 95 -0.00000 -0.00000 -0.00000 -0.00051 -0.00418 -0.06588 + 96 -0.00000 -0.00000 -0.00000 -0.00012 0.06118 0.08062 + 97 0.00000 -0.00000 -0.00000 -0.00014 -0.11674 0.06996 + 98 0.00000 0.00000 -0.00000 -0.00006 -0.03070 -0.11383 + 99 0.00000 0.00000 -0.00000 -0.00045 0.08828 0.00586 + 100 0.00000 0.00000 -0.00000 0.00025 -0.01741 0.04397 + 101 0.00000 -0.00000 -0.00000 -0.00113 -0.24994 -0.11508 + 102 0.00000 0.00000 -0.00000 0.00115 0.10703 -0.48743 + 103 0.00000 0.00000 0.00000 0.00009 0.55839 0.02562 + 104 -0.00000 0.00000 0.00000 0.00132 0.02355 0.37104 + 105 0.00000 0.00000 0.00000 0.00032 -0.34458 -0.45410 + 106 -0.00000 0.00000 0.00000 0.00036 0.65753 -0.39405 + 107 -0.00000 -0.00000 0.00000 0.00016 0.17294 0.64112 + 108 -0.00000 -0.00000 0.00000 0.00117 -0.49721 -0.03299 + 109 -0.00000 -0.00000 0.00000 -0.00064 0.09808 -0.24768 37 38 39 40 41 42 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 2 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 3 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 4 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 5 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 6 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 7 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 8 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 9 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 10 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 11 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 12 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 13 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 14 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 15 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 16 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 17 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 18 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 19 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 20 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 21 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 22 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 23 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 24 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 25 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 26 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 1 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 2 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 3 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 4 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 5 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 6 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 7 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 8 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 9 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 10 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 11 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 12 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 13 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 14 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 15 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 16 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 17 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 18 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 19 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 20 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 21 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 22 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 23 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 24 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 25 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 26 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 27 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 28 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 29 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 28 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 29 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 30 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 31 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 32 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 33 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 34 -0.00000 -0.00000 -0.00107 0.00204 0.00147 0.00276 - 35 -0.00000 -0.00000 0.00162 -0.00158 0.00050 0.00315 - 36 0.00000 -0.00000 0.00081 0.00115 -0.00396 0.00063 - 37 0.00000 0.00000 0.00132 0.00099 0.00014 0.00072 - 38 0.00000 -0.00000 0.00206 0.00120 0.00183 -0.00175 - 39 0.00000 0.00000 0.00246 -0.00471 -0.00372 -0.00696 - 40 0.00000 0.00000 -0.00373 0.00364 -0.00125 -0.00795 - 41 -0.00000 0.00000 -0.00186 -0.00266 0.01002 -0.00160 - 42 -0.00000 0.00000 -0.00306 -0.00229 -0.00036 -0.00183 - 43 -0.00000 0.00000 -0.00476 -0.00278 -0.00462 0.00443 - 44 -0.00000 -0.00000 -0.00808 0.01549 0.01133 0.02122 - 45 -0.00000 -0.00000 0.01227 -0.01196 0.00382 0.02423 - 46 0.00000 -0.00000 0.00611 0.00873 -0.03053 0.00487 - 47 0.00000 -0.00000 0.01004 0.00752 0.00109 0.00558 - 48 0.00000 -0.00000 0.01565 0.00913 0.01408 -0.01351 - 49 0.00000 0.00000 0.00007 -0.00013 -0.00010 -0.00018 - 50 0.00000 0.00000 -0.00010 0.00010 -0.00003 -0.00021 - 51 -0.00000 0.00000 -0.00005 -0.00007 0.00026 -0.00004 - 52 -0.00000 -0.00000 -0.00009 -0.00006 -0.00001 -0.00005 - 53 -0.00000 0.00000 -0.00013 -0.00008 -0.00012 0.00012 - 54 -0.00000 -0.00000 -0.00001 0.00002 0.00002 0.00003 - 55 -0.00000 -0.00000 0.00002 -0.00002 0.00001 0.00004 - 56 0.00000 -0.00000 0.00001 0.00001 -0.00004 0.00001 - 57 0.00000 0.00000 0.00001 0.00001 0.00000 0.00001 - 58 0.00000 -0.00000 0.00002 0.00001 0.00002 -0.00002 - 59 0.00000 0.00000 0.00266 -0.00510 -0.00373 -0.00698 - 60 0.00000 0.00000 -0.00404 0.00394 -0.00126 -0.00797 - 61 -0.00000 0.00000 -0.00201 -0.00288 0.01005 -0.00160 - 62 -0.00000 0.00000 -0.00331 -0.00248 -0.00036 -0.00183 - 63 -0.00000 0.00000 -0.00516 -0.00301 -0.00463 0.00445 - 64 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 65 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 66 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 67 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 68 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 69 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 70 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 71 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 72 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 73 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 74 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 75 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 76 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 77 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 78 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 79 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 80 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 81 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 82 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 83 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 84 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 85 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 86 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 87 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 88 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 89 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 90 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 91 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 92 -0.05812 -0.10812 0.00205 -0.09682 -0.04298 -0.03446 - 93 0.01123 0.01842 0.00775 -0.07658 -0.05796 -0.10094 - 94 0.05011 0.04976 -0.07204 0.06391 -0.00163 -0.11245 - 95 -0.13104 -0.03772 -0.10335 0.06228 0.03629 -0.02242 - 96 -0.01785 0.10247 -0.07945 -0.11350 0.03733 -0.00596 - 97 -0.04180 0.05703 -0.00241 0.04515 -0.16850 0.02303 - 98 -0.04209 0.07652 0.05129 -0.00836 0.04109 0.04860 - 99 0.01482 -0.01767 0.07460 0.03531 0.03628 -0.09536 - 100 0.10897 -0.05718 -0.09513 -0.00755 -0.02014 0.05637 - 101 0.32530 0.60517 -0.01143 0.53948 0.23881 0.19148 - 102 -0.06286 -0.10312 -0.04317 0.42670 0.32207 0.56087 - 103 -0.28047 -0.27852 0.40141 -0.35609 0.00904 0.62488 - 104 0.73345 0.21112 0.57584 -0.34702 -0.20164 0.12458 - 105 0.09993 -0.57357 0.44270 0.63242 -0.20743 0.03309 - 106 0.23394 -0.31919 0.01345 -0.25159 0.93631 -0.12797 - 107 0.23560 -0.42831 -0.28578 0.04656 -0.22833 -0.27003 - 108 -0.08295 0.09893 -0.41565 -0.19677 -0.20159 0.52988 - 109 -0.60996 0.32003 0.53003 0.04205 0.11190 -0.31323 + 31 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 32 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 33 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 34 0.00000 -0.00000 -0.00113 -0.00095 -0.00093 0.00364 + 35 -0.00000 0.00000 0.00078 -0.00115 -0.00300 0.00044 + 36 0.00000 0.00000 -0.00002 0.00233 -0.00298 -0.00005 + 37 -0.00000 0.00000 -0.00284 -0.00033 -0.00078 -0.00183 + 38 -0.00000 -0.00000 0.00067 -0.00162 -0.00145 -0.00216 + 39 -0.00000 0.00000 0.00260 0.00220 0.00235 -0.00921 + 40 0.00000 -0.00000 -0.00179 0.00266 0.00759 -0.00111 + 41 -0.00000 -0.00000 0.00004 -0.00538 0.00753 0.00013 + 42 0.00000 0.00000 0.00656 0.00077 0.00196 0.00463 + 43 0.00000 0.00000 -0.00155 0.00374 0.00366 0.00545 + 44 0.00000 -0.00000 -0.00855 -0.00723 -0.00717 0.02807 + 45 -0.00000 0.00000 0.00588 -0.00874 -0.02314 0.00337 + 46 0.00000 0.00000 -0.00012 0.01769 -0.02297 -0.00041 + 47 -0.00000 -0.00000 -0.02157 -0.00252 -0.00597 -0.01412 + 48 -0.00000 -0.00000 0.00509 -0.01229 -0.01117 -0.01660 + 49 -0.00000 0.00000 0.00007 0.00006 0.00006 -0.00024 + 50 0.00000 -0.00000 -0.00005 0.00007 0.00020 -0.00003 + 51 -0.00000 -0.00000 0.00000 -0.00015 0.00020 0.00000 + 52 0.00000 -0.00000 0.00018 0.00002 0.00005 0.00012 + 53 0.00000 0.00000 -0.00004 0.00010 0.00010 0.00014 + 54 0.00000 -0.00000 -0.00001 -0.00001 -0.00001 0.00004 + 55 -0.00000 0.00000 0.00001 -0.00001 -0.00003 0.00000 + 56 0.00000 0.00000 -0.00000 0.00003 -0.00003 -0.00000 + 57 -0.00000 0.00000 -0.00003 -0.00000 -0.00001 -0.00002 + 58 -0.00000 -0.00000 0.00001 -0.00002 -0.00002 -0.00002 + 59 -0.00000 0.00000 0.00282 0.00238 0.00236 -0.00924 + 60 0.00000 -0.00000 -0.00194 0.00288 0.00761 -0.00111 + 61 -0.00000 -0.00000 0.00004 -0.00583 0.00756 0.00013 + 62 0.00000 0.00000 0.00711 0.00083 0.00197 0.00465 + 63 0.00000 0.00000 -0.00168 0.00405 0.00368 0.00546 + 64 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 65 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 66 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 67 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 68 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 69 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 70 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 71 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 72 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 73 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 74 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 75 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 76 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 77 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 78 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 79 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 80 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 81 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 82 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 83 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 84 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 85 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 86 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 87 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 88 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 89 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 90 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 91 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 92 -0.02947 0.08044 -0.04333 -0.11146 -0.05149 0.06936 + 93 0.06804 0.06948 0.06073 0.01648 -0.02791 0.09490 + 94 0.07429 -0.00588 -0.13427 0.00904 -0.07467 -0.01007 + 95 0.02551 -0.04275 -0.00164 -0.14329 0.03341 0.01032 + 96 -0.02960 -0.12480 0.00010 -0.01457 -0.10784 -0.00191 + 97 -0.12735 0.02030 0.01001 -0.03858 0.00970 -0.03588 + 98 -0.03716 0.02900 0.07796 0.01767 -0.12870 0.00281 + 99 -0.02892 0.09334 -0.06035 0.01581 -0.02481 -0.09489 + 100 0.09021 0.02037 0.07800 -0.06266 -0.02637 -0.12408 + 101 0.16493 -0.45027 0.24142 0.62102 0.28611 -0.38543 + 102 -0.38087 -0.38892 -0.33836 -0.09185 0.15511 -0.52731 + 103 -0.41584 0.03289 0.74811 -0.05035 0.41493 0.05597 + 104 -0.14278 0.23931 0.00912 0.79842 -0.18566 -0.05733 + 105 0.16566 0.69857 -0.00056 0.08121 0.59924 0.01063 + 106 0.71280 -0.11362 -0.05577 0.21495 -0.05389 0.19937 + 107 0.20798 -0.16230 -0.43436 -0.09845 0.71518 -0.01559 + 108 0.16188 -0.52243 0.33624 -0.08808 0.13786 0.52725 + 109 -0.50496 -0.11401 -0.43460 0.34911 0.14654 0.68947 43 44 45 46 47 48 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00202 0.00000 0.00000 0.00000 -0.00000 0.08451 - 2 -0.00397 0.00000 0.00000 0.00000 -0.00000 0.14653 - 3 -0.00541 0.00000 0.00000 0.00000 -0.00000 0.13419 - 4 0.00658 -0.00000 -0.00000 -0.00000 0.00000 -0.19514 - 5 -0.00320 0.00000 0.00000 0.00000 -0.00000 0.13775 - 6 -0.00073 -0.00000 -0.00000 -0.00000 0.00000 0.03385 - 7 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00050 - 8 -0.00004 -0.00000 -0.00000 -0.00000 0.00000 0.00178 - 9 0.00088 -0.00000 -0.00000 -0.00000 0.00000 -0.04169 - 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 11 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 12 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 13 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 14 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 15 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 16 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 17 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 18 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 19 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 20 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 21 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 22 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 23 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 24 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 25 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 26 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 27 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 28 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 29 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 30 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 31 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 32 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 33 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 34 0.00098 -0.04592 0.03786 0.01565 -0.05183 0.01511 - 35 0.00101 0.03121 -0.04933 -0.00225 -0.05515 0.01542 - 36 0.00126 -0.03342 -0.01422 -0.06953 0.00270 0.01940 - 37 -0.00434 -0.03216 -0.02817 -0.00005 -0.01279 -0.06661 - 38 0.00201 -0.04148 -0.04573 0.03703 0.02362 0.03089 - 39 -0.00260 0.78939 -0.65082 -0.27881 0.92312 -0.27353 - 40 -0.00266 -0.53646 0.84806 0.04007 0.98220 -0.27915 - 41 -0.00334 0.57450 0.24439 1.23841 -0.04818 -0.35108 - 42 0.01147 0.55280 0.48435 0.00082 0.22774 1.20565 - 43 -0.00532 0.71308 0.78610 -0.65958 -0.42071 -0.55902 - 44 0.00762 -0.59275 0.48870 0.21071 -0.69765 0.20689 - 45 0.00777 0.40283 -0.63681 -0.03028 -0.74231 0.21115 - 46 0.00978 -0.43139 -0.18351 -0.93594 0.03641 0.26556 - 47 -0.03357 -0.41510 -0.36370 -0.00062 -0.17212 -0.91194 - 48 0.01557 -0.53545 -0.59028 0.49848 0.31796 0.42283 - 49 -0.00007 0.01070 -0.00882 -0.00384 0.01272 -0.00378 - 50 -0.00007 -0.00727 0.01150 0.00055 0.01353 -0.00386 - 51 -0.00009 0.00779 0.00331 0.01706 -0.00066 -0.00485 - 52 0.00029 0.00749 0.00657 0.00001 0.00314 0.01667 - 53 -0.00014 0.00967 0.01066 -0.00909 -0.00580 -0.00773 - 54 0.00001 -0.00102 0.00084 0.00036 -0.00120 0.00036 - 55 0.00001 0.00069 -0.00109 -0.00005 -0.00128 0.00036 - 56 0.00001 -0.00074 -0.00031 -0.00161 0.00006 0.00046 - 57 -0.00005 -0.00071 -0.00062 -0.00000 -0.00030 -0.00157 - 58 0.00002 -0.00092 -0.00101 0.00086 0.00055 0.00073 - 59 -0.00251 0.19899 -0.16406 -0.07034 0.23289 -0.06891 - 60 -0.00256 -0.13523 0.21378 0.01011 0.24780 -0.07033 - 61 -0.00322 0.14482 0.06161 0.31243 -0.01215 -0.08845 - 62 0.01105 0.13935 0.12210 0.00021 0.05746 0.30375 - 63 -0.00512 0.17975 0.19816 -0.16640 -0.10614 -0.14084 - 64 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 65 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 66 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 67 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 68 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 69 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 70 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 71 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 72 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 73 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 74 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 75 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 76 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 77 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 78 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 79 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 80 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 81 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 82 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 83 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 84 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 85 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 86 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 87 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 88 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 89 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 90 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 91 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 92 -0.02946 -0.00615 0.00144 0.00329 -0.00393 0.00301 - 93 -0.06618 -0.00479 0.00153 0.00345 -0.01027 0.00677 - 94 -0.06112 0.00311 -0.00546 -0.00190 -0.01029 0.00625 - 95 -0.00853 0.00258 -0.00744 -0.00372 -0.00138 0.00087 - 96 0.08139 -0.00832 -0.00354 -0.00351 0.00014 -0.00833 - 97 0.03686 0.00285 -0.00076 0.01579 -0.00097 -0.00377 - 98 -0.12491 0.00016 0.00339 -0.00286 0.00518 0.01278 - 99 0.08141 0.00326 0.00429 -0.00505 -0.00804 -0.00833 - 100 -0.02289 -0.00177 -0.00597 0.00286 0.00478 0.00234 - 101 0.16353 0.00416 -0.00097 -0.00239 0.00285 -0.00226 - 102 0.36740 0.00324 -0.00103 -0.00250 0.00745 -0.00507 - 103 0.33933 -0.00210 0.00370 0.00138 0.00747 -0.00468 - 104 0.04738 -0.00175 0.00503 0.00270 0.00101 -0.00065 - 105 -0.45187 0.00563 0.00239 0.00255 -0.00010 0.00623 - 106 -0.20465 -0.00193 0.00052 -0.01147 0.00070 0.00282 - 107 0.69350 -0.00011 -0.00229 0.00208 -0.00376 -0.00957 - 108 -0.45195 -0.00221 -0.00290 0.00366 0.00584 0.00623 - 109 0.12710 0.00120 0.00404 -0.00208 -0.00347 -0.00175 + 1 0.00202 0.00000 -0.00000 0.00000 0.00000 -0.08450 + 2 0.00397 0.00000 -0.00000 0.00000 0.00000 -0.14652 + 3 0.00541 0.00000 -0.00000 0.00000 0.00000 -0.13419 + 4 -0.00659 -0.00000 0.00000 -0.00000 -0.00000 0.19514 + 5 0.00321 0.00000 -0.00000 0.00000 0.00000 -0.13775 + 6 0.00073 -0.00000 0.00000 -0.00000 -0.00000 -0.03385 + 7 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00050 + 8 0.00004 -0.00000 0.00000 -0.00000 -0.00000 -0.00178 + 9 -0.00088 -0.00000 0.00000 -0.00000 -0.00000 0.04169 + 10 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 11 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 12 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 13 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 14 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 15 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 16 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 17 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 18 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 19 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 20 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 21 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 22 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 23 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 24 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 25 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 26 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 27 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 28 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 29 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 30 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 31 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 32 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 33 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 34 0.00187 0.02181 -0.03131 -0.06401 -0.01243 0.02870 + 35 -0.00320 0.03151 0.01718 -0.01060 -0.05154 -0.04905 + 36 0.00130 -0.06005 0.00521 -0.00209 -0.05166 0.01990 + 37 -0.00086 0.00168 -0.07398 0.03095 -0.01527 -0.01323 + 38 0.00321 0.04331 0.01335 0.03584 -0.02727 0.04933 + 39 -0.00494 -0.37490 0.53823 1.14002 0.22138 -0.51946 + 40 0.00845 -0.54169 -0.29535 0.18883 0.91801 0.88769 + 41 -0.00343 1.03237 -0.08959 0.03726 0.92000 -0.36016 + 42 0.00228 -0.02883 1.27177 -0.55123 0.27200 0.23944 + 43 -0.00850 -0.74461 -0.22958 -0.63836 0.48572 -0.89287 + 44 0.01447 0.28151 -0.40415 -0.86158 -0.16731 0.39291 + 45 -0.02472 0.40676 0.22178 -0.14271 -0.69379 -0.67144 + 46 0.01003 -0.77521 0.06728 -0.02816 -0.69530 0.27242 + 47 -0.00667 0.02165 -0.95497 0.41660 -0.20556 -0.18111 + 48 0.02487 0.55912 0.17239 0.48245 -0.36708 0.67536 + 49 -0.00013 -0.00508 0.00730 0.01570 0.00305 -0.00718 + 50 0.00022 -0.00734 -0.00400 0.00260 0.01264 0.01227 + 51 -0.00009 0.01400 -0.00121 0.00051 0.01267 -0.00498 + 52 0.00006 -0.00039 0.01724 -0.00759 0.00375 0.00331 + 53 -0.00022 -0.01010 -0.00311 -0.00879 0.00669 -0.01235 + 54 0.00002 0.00048 -0.00069 -0.00148 -0.00029 0.00068 + 55 -0.00004 0.00070 0.00038 -0.00025 -0.00120 -0.00116 + 56 0.00001 -0.00133 0.00012 -0.00005 -0.00120 0.00047 + 57 -0.00001 0.00004 -0.00164 0.00072 -0.00035 -0.00031 + 58 0.00004 0.00096 0.00030 0.00083 -0.00063 0.00116 + 59 -0.00476 -0.09450 0.13568 0.28761 0.05585 -0.13087 + 60 0.00813 -0.13655 -0.07445 0.04764 0.23160 0.22364 + 61 -0.00330 0.26024 -0.02258 0.00940 0.23210 -0.09074 + 62 0.00219 -0.00727 0.32059 -0.13907 0.06862 0.06032 + 63 -0.00818 -0.18770 -0.05787 -0.16105 0.12254 -0.22495 + 64 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 65 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 66 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 67 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 68 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 69 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 70 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 71 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 72 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 73 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 74 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 75 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 76 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 77 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 78 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 79 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 80 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 81 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 82 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 83 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 84 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 85 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 86 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 87 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 88 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 89 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 90 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 91 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 92 0.08935 -0.00698 0.00349 0.00672 0.00441 -0.00914 + 93 -0.09102 0.00070 -0.00405 0.00897 0.00208 0.00931 + 94 -0.00736 0.00141 0.00867 -0.00053 0.00699 0.00075 + 95 -0.10423 -0.00930 0.00098 0.00078 -0.00316 0.01066 + 96 -0.02501 -0.00095 0.00008 0.00041 0.01003 0.00256 + 97 -0.02811 -0.00257 -0.00042 -0.00338 -0.00071 0.00288 + 98 -0.01265 0.00067 -0.00517 0.00096 0.01194 0.00129 + 99 -0.09193 0.00139 0.00382 -0.00868 0.00282 0.00941 + 100 0.05080 -0.00455 -0.00469 -0.01138 0.00312 -0.00520 + 101 -0.49604 0.00472 -0.00236 -0.00488 -0.00320 0.00684 + 102 0.50534 -0.00047 0.00274 -0.00651 -0.00151 -0.00697 + 103 0.04084 -0.00095 -0.00587 0.00039 -0.00507 -0.00056 + 104 0.57867 0.00629 -0.00066 -0.00056 0.00229 -0.00798 + 105 0.13883 0.00064 -0.00006 -0.00029 -0.00728 -0.00192 + 106 0.15608 0.00174 0.00028 0.00246 0.00051 -0.00215 + 107 0.07020 -0.00046 0.00350 -0.00069 -0.00867 -0.00097 + 108 0.51039 -0.00094 -0.00259 0.00630 -0.00205 -0.00704 + 109 -0.28201 0.00308 0.00317 0.00826 -0.00227 0.00389 49 50 51 52 53 54 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 2 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 3 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 4 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 5 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 6 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 7 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 8 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 9 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 10 -0.00000 0.00000 -0.00000 0.00000 -0.00357 -0.00166 - 11 -0.00000 0.00000 0.00000 0.00000 -0.00149 0.00517 - 12 -0.00000 0.00000 0.00000 -0.00000 0.00384 0.00046 - 13 0.00000 -0.00000 0.00000 -0.00000 0.02658 0.01238 - 14 0.00000 -0.00000 -0.00000 -0.00000 0.01108 -0.03847 - 15 0.00000 -0.00000 -0.00000 0.00000 -0.02856 -0.00340 - 16 0.00000 -0.00000 -0.00000 -0.00000 -0.04600 -0.02143 - 17 0.00000 -0.00000 -0.00000 0.00000 -0.01918 0.06658 - 18 -0.00000 -0.00000 -0.00000 -0.00000 0.04942 0.00589 - 19 -0.00000 0.00000 0.00000 0.00000 0.02598 0.01210 - 20 -0.00000 0.00000 0.00000 -0.00000 0.01083 -0.03760 - 21 -0.00000 0.00000 0.00000 0.00000 -0.02791 -0.00333 - 22 0.00000 -0.00000 0.00000 -0.00000 0.00232 0.00108 - 23 0.00000 -0.00000 0.00000 -0.00000 0.00097 -0.00335 - 24 0.00000 -0.00000 -0.00000 0.00000 -0.00249 -0.00030 - 25 -0.00000 0.00000 -0.00000 0.00000 -0.00013 -0.00006 - 26 -0.00000 0.00000 -0.00000 0.00000 -0.00005 0.00019 - 27 -0.00000 0.00000 0.00000 -0.00000 0.00014 0.00002 - 28 0.00000 -0.00000 0.00000 -0.00000 0.00010 0.00005 - 29 0.00000 -0.00000 -0.00000 -0.00000 0.00004 -0.00015 - 30 0.00000 -0.00000 -0.00000 0.00000 -0.00011 -0.00001 - 31 0.00000 0.00000 -0.00000 0.00000 -0.00743 -0.00346 - 32 0.00000 -0.00000 -0.00000 0.00000 -0.00310 0.01075 - 33 0.00000 -0.00000 -0.00000 -0.00000 0.00798 0.00095 - 34 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 1 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 2 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 3 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 4 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 6 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 7 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 8 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 9 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 10 0.00000 -0.00000 -0.00000 0.00000 -0.00066 0.00525 + 11 0.00000 0.00000 0.00000 -0.00000 -0.00241 0.00088 + 12 -0.00000 0.00000 -0.00000 -0.00000 0.00484 0.00116 + 13 -0.00000 0.00000 0.00000 -0.00000 0.00494 -0.03908 + 14 0.00000 -0.00000 -0.00000 0.00000 0.01794 -0.00657 + 15 0.00000 -0.00000 0.00000 0.00000 -0.03603 -0.00863 + 16 0.00000 0.00000 -0.00000 0.00000 -0.00855 0.06763 + 17 -0.00000 -0.00000 0.00000 0.00000 -0.03105 0.01136 + 18 -0.00000 -0.00000 0.00000 0.00000 0.06236 0.01493 + 19 -0.00000 -0.00000 0.00000 0.00000 0.00483 -0.03820 + 20 0.00000 0.00000 -0.00000 -0.00000 0.01754 -0.00642 + 21 0.00000 0.00000 -0.00000 -0.00000 -0.03522 -0.00843 + 22 -0.00000 0.00000 0.00000 -0.00000 0.00043 -0.00341 + 23 -0.00000 -0.00000 -0.00000 0.00000 0.00156 -0.00057 + 24 0.00000 -0.00000 0.00000 0.00000 -0.00314 -0.00075 + 25 0.00000 -0.00000 -0.00000 0.00000 -0.00002 0.00019 + 26 0.00000 0.00000 0.00000 -0.00000 -0.00009 0.00003 + 27 -0.00000 0.00000 -0.00000 -0.00000 0.00018 0.00004 + 28 -0.00000 0.00000 0.00000 -0.00000 0.00002 -0.00015 + 29 0.00000 -0.00000 -0.00000 0.00000 0.00007 -0.00003 + 30 0.00000 -0.00000 0.00000 0.00000 -0.00014 -0.00003 + 31 0.00000 0.00000 -0.00000 -0.00000 -0.00138 0.01092 + 32 0.00000 0.00000 0.00000 0.00000 -0.00501 0.00183 + 33 -0.00000 -0.00000 0.00000 0.00000 0.01007 0.00241 + 34 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 35 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 36 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 37 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 38 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 39 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 40 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 41 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 42 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 43 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 45 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 46 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 47 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 48 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 49 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 50 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 51 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 52 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 53 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 54 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 55 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 56 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 57 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 58 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 59 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 60 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 61 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 62 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 63 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 64 -0.03121 -0.02359 -0.01021 -0.06235 -0.04042 0.05690 + 65 0.02634 -0.05097 0.05054 -0.04150 0.03340 -0.05086 + 66 0.03981 0.01534 0.04002 0.01617 -0.09198 -0.02071 + 67 -0.06596 0.01461 0.05184 0.05279 0.01064 0.00255 + 68 -0.00954 -0.08745 -0.03807 0.05235 -0.02363 -0.01051 + 69 0.06720 0.01138 -0.02005 0.03367 0.02675 0.04064 + 70 -0.01864 0.03433 -0.06226 -0.01197 -0.01068 -0.06847 + 71 0.36901 0.27899 0.12021 0.73377 0.47479 -0.66834 + 72 -0.31152 0.60269 -0.59481 0.48842 -0.39229 0.59734 + 73 -0.47076 -0.18141 -0.47093 -0.19031 1.08033 0.24324 + 74 0.78000 -0.17272 -0.61011 -0.62128 -0.12497 -0.02992 + 75 0.11283 1.03406 0.44806 -0.61607 0.27755 0.12345 + 76 -0.79463 -0.13455 0.23599 -0.39623 -0.31421 -0.47738 + 77 0.22043 -0.40593 0.73270 0.14082 0.12542 0.80427 + 78 0.00008 0.00006 0.00003 0.00016 0.00010 -0.00014 + 79 -0.00007 0.00013 -0.00013 0.00010 -0.00008 0.00013 + 80 -0.00010 -0.00004 -0.00010 -0.00004 0.00023 0.00005 + 81 0.00016 -0.00004 -0.00013 -0.00013 -0.00003 -0.00001 + 82 0.00002 0.00022 0.00010 -0.00013 0.00006 0.00003 + 83 -0.00017 -0.00003 0.00005 -0.00008 -0.00007 -0.00010 + 84 0.00005 -0.00009 0.00016 0.00003 0.00003 0.00017 + 85 -0.17949 -0.13570 -0.05823 -0.35543 -0.22934 0.32284 + 86 0.15152 -0.29315 0.28812 -0.23658 0.18949 -0.28854 + 87 0.22898 0.08824 0.22811 0.09218 -0.52185 -0.11750 + 88 -0.37939 0.08401 0.29553 0.30094 0.06037 0.01445 + 89 -0.05488 -0.50296 -0.21703 0.29842 -0.13407 -0.05963 + 90 0.38651 0.06544 -0.11431 0.19193 0.15178 0.23060 + 91 -0.10721 0.19744 -0.35491 -0.06821 -0.06058 -0.38850 + 92 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 93 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 94 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 95 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 96 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 97 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 98 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 99 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 100 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 101 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 102 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 103 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 104 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 105 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 106 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 107 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 108 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 109 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + + 55 56 57 58 59 60 + ----------- ----------- ----------- ----------- ----------- ----------- + 1 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 2 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 3 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 4 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 5 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 6 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 7 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 8 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 9 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 10 0.00157 -1.80521 0.27766 0.44584 0.00000 0.00000 + 11 -0.00581 -0.28193 0.83978 -1.65292 -0.00000 0.00000 + 12 -0.00268 -0.44473 -1.65943 -0.76189 -0.00000 -0.00000 + 13 -0.01199 2.00213 -0.30795 -0.49863 -0.00000 -0.00000 + 14 0.04443 0.31268 -0.93139 1.84863 0.00000 -0.00000 + 15 0.02048 0.49324 1.84045 0.85210 0.00000 0.00000 + 16 0.02109 -1.27536 0.19617 0.31754 0.00000 -0.00000 + 17 -0.07818 -0.19918 0.59330 -1.17725 -0.00000 0.00000 + 18 -0.03604 -0.31420 -1.17237 -0.54263 -0.00000 -0.00000 + 19 -0.01185 0.56041 -0.08620 -0.13912 -0.00000 0.00000 + 20 0.04395 0.08752 -0.26070 0.51576 0.00000 -0.00000 + 21 0.02026 0.13806 0.51516 0.23773 0.00000 0.00000 + 22 -0.00104 0.37292 -0.05736 -0.09157 -0.00000 -0.00000 + 23 0.00387 0.05824 -0.17348 0.33947 0.00000 -0.00000 + 24 0.00178 0.09187 0.34281 0.15647 0.00000 0.00000 + 25 0.00006 0.00305 -0.00047 -0.00078 -0.00000 -0.00000 + 26 -0.00022 0.00048 -0.00142 0.00289 -0.00000 0.00000 + 27 -0.00010 0.00075 0.00280 0.00133 0.00000 0.00000 + 28 -0.00005 0.01483 -0.00228 -0.00365 -0.00000 -0.00000 + 29 0.00018 0.00232 -0.00690 0.01353 0.00000 -0.00000 + 30 0.00008 0.00365 0.01363 0.00623 0.00000 0.00000 + 31 0.00339 -0.16529 0.02542 0.04097 0.00000 -0.00000 + 32 -0.01255 -0.02581 0.07689 -0.15188 -0.00000 0.00000 + 33 -0.00578 -0.04072 -0.15195 -0.07000 -0.00000 -0.00000 + 34 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 35 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 36 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 37 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 38 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 39 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 40 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 37 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 38 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 39 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 40 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 41 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 42 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 43 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 44 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 45 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 42 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 43 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 44 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 45 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 46 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 47 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 48 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 49 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 50 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 47 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 48 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 49 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 50 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 51 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 52 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 53 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 54 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 55 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 52 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 53 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 54 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 55 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 56 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 57 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 58 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 59 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 60 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 61 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 62 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 63 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 64 0.03457 -0.06030 -0.03688 0.06028 0.02929 -0.03941 - 65 -0.02199 0.06589 -0.00855 0.00082 0.02303 -0.07788 - 66 0.00026 -0.05386 -0.00717 -0.08670 -0.01094 -0.04239 - 67 -0.03120 0.00494 -0.07628 0.01255 -0.07222 -0.00861 - 68 -0.03894 -0.00630 -0.03307 -0.01491 0.06923 -0.00126 - 69 -0.06935 -0.01956 -0.01724 0.00312 0.02306 0.04220 - 70 -0.05982 -0.03511 0.06310 0.03369 -0.02572 -0.03794 - 71 -0.40884 0.71309 0.43398 -0.70942 -0.34398 0.46284 - 72 0.26007 -0.77911 0.10065 -0.00961 -0.27052 0.91474 - 73 -0.00311 0.63691 0.08439 1.02030 0.12851 0.49785 - 74 0.36900 -0.05839 0.89768 -0.14766 0.84828 0.10114 - 75 0.46050 0.07449 0.38922 0.17543 -0.81318 0.01477 - 76 0.82008 0.23132 0.20288 -0.03677 -0.27088 -0.49566 - 77 0.70741 0.41517 -0.74262 -0.39653 0.30212 0.44562 - 78 -0.00009 0.00015 0.00009 -0.00015 -0.00007 0.00010 - 79 0.00005 -0.00016 0.00002 -0.00000 -0.00006 0.00020 - 80 -0.00000 0.00013 0.00002 0.00022 0.00003 0.00011 - 81 0.00008 -0.00001 0.00019 -0.00003 0.00018 0.00002 - 82 0.00010 0.00002 0.00008 0.00004 -0.00017 0.00000 - 83 0.00017 0.00005 0.00004 -0.00001 -0.00006 -0.00011 - 84 0.00015 0.00009 -0.00016 -0.00008 0.00006 0.00010 - 85 0.19886 -0.34684 -0.21022 0.34364 0.16616 -0.22358 - 86 -0.12650 0.37896 -0.04875 0.00465 0.13067 -0.44186 - 87 0.00151 -0.30979 -0.04088 -0.49422 -0.06208 -0.24049 - 88 -0.17948 0.02840 -0.43482 0.07152 -0.40976 -0.04885 - 89 -0.22399 -0.03623 -0.18853 -0.08497 0.39281 -0.00713 - 90 -0.39888 -0.11251 -0.09827 0.01781 0.13085 0.23943 - 91 -0.34408 -0.20194 0.35972 0.19207 -0.14594 -0.21526 - 92 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 93 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 94 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 95 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 96 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 97 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 98 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 99 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 100 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 101 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 102 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 103 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 104 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 105 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 106 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 107 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 108 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 109 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - - 55 56 57 58 59 60 - ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 2 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 3 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 4 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 5 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 6 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 7 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 8 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 9 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 10 -0.00455 -1.27093 -0.48276 -1.29459 -0.00000 0.00000 - 11 -0.00105 0.91987 -1.61226 -0.29974 0.00000 -0.00000 - 12 -0.00464 1.03663 0.83880 -1.32121 -0.00000 0.00000 - 13 0.03480 1.40957 0.53542 1.44787 0.00000 -0.00000 - 14 0.00806 -1.02022 1.78814 0.33523 -0.00000 0.00000 - 15 0.03552 -1.14971 -0.93030 1.47764 -0.00000 0.00000 - 16 -0.06124 -0.89790 -0.34106 -0.92203 -0.00000 0.00000 - 17 -0.01418 0.64988 -1.13905 -0.21348 0.00000 0.00000 - 18 -0.06249 0.73237 0.59261 -0.94099 0.00000 -0.00000 - 19 0.03442 0.39455 0.14987 0.40395 0.00000 -0.00000 - 20 0.00797 -0.28557 0.50051 0.09353 -0.00000 -0.00000 - 21 0.03513 -0.32181 -0.26040 0.41226 -0.00000 0.00000 - 22 0.00303 0.26255 0.09973 0.26588 -0.00000 -0.00000 - 23 0.00070 -0.19003 0.33306 0.06156 -0.00000 -0.00000 - 24 0.00309 -0.21415 -0.17328 0.27134 0.00000 -0.00000 - 25 -0.00017 0.00215 0.00082 0.00227 0.00000 0.00000 - 26 -0.00004 -0.00155 0.00272 0.00052 0.00000 0.00000 - 27 -0.00018 -0.00175 -0.00142 0.00231 -0.00000 -0.00000 - 28 0.00014 0.01044 0.00396 0.01059 -0.00000 -0.00000 - 29 0.00003 -0.00755 0.01324 0.00245 -0.00000 0.00000 - 30 0.00014 -0.00851 -0.00689 0.01081 0.00000 0.00000 - 31 -0.00983 -0.11637 -0.04420 -0.11895 -0.00000 0.00000 - 32 -0.00228 0.08423 -0.14763 -0.02754 0.00000 0.00000 - 33 -0.01003 0.09492 0.07680 -0.12140 0.00000 -0.00000 - 34 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 35 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 36 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 37 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 38 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 39 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 40 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 41 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 42 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 43 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 44 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 45 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 46 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 47 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 48 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 49 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 50 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 52 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 53 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 54 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 55 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 56 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 57 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 58 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 59 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 60 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 61 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 62 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 63 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 64 0.02005 0.00139 -0.00861 -0.00453 -0.00000 -0.00000 - 65 0.03403 0.00706 -0.01258 -0.00769 0.00000 0.00000 - 66 0.01641 0.00675 -0.00386 -0.00371 0.00000 0.00000 - 67 -0.02045 0.01005 0.00813 0.00462 0.00000 0.00000 - 68 -0.07087 -0.00842 -0.00897 0.01602 0.00000 0.00000 - 69 0.06954 -0.00823 0.00229 -0.01572 0.00000 0.00000 - 70 -0.02467 0.00802 -0.00143 0.00558 -0.00000 -0.00000 - 71 -0.23542 -0.00109 0.00677 0.00353 0.00000 0.00000 - 72 -0.39948 -0.00555 0.00990 0.00600 -0.00000 -0.00000 - 73 -0.19264 -0.00531 0.00304 0.00289 -0.00000 -0.00000 - 74 0.24006 -0.00790 -0.00639 -0.00360 -0.00000 -0.00000 - 75 0.83201 0.00662 0.00706 -0.01249 -0.00000 -0.00000 - 76 -0.81643 0.00647 -0.00180 0.01226 -0.00000 -0.00000 - 77 0.28959 -0.00631 0.00112 -0.00435 0.00000 0.00000 - 78 -0.00005 -0.00001 0.00004 0.00002 -0.00000 0.00000 - 79 -0.00009 -0.00003 0.00006 0.00004 0.00000 -0.00000 - 80 -0.00004 -0.00003 0.00002 0.00002 0.00000 0.00000 - 81 0.00005 -0.00005 -0.00004 -0.00002 0.00000 -0.00000 - 82 0.00018 0.00004 0.00004 -0.00008 -0.00000 0.00000 - 83 -0.00018 0.00004 -0.00001 0.00007 0.00000 -0.00000 - 84 0.00006 -0.00004 0.00001 -0.00003 -0.00000 0.00000 - 85 0.11361 0.00049 -0.00303 -0.00157 -0.00000 -0.00000 - 86 0.19278 0.00248 -0.00442 -0.00266 0.00000 0.00000 - 87 0.09296 0.00237 -0.00136 -0.00128 0.00000 0.00000 - 88 -0.11585 0.00353 0.00286 0.00160 0.00000 0.00000 - 89 -0.40151 -0.00296 -0.00315 0.00554 0.00000 0.00000 - 90 0.39399 -0.00289 0.00081 -0.00543 0.00000 0.00000 - 91 -0.13975 0.00282 -0.00050 0.00193 -0.00000 -0.00000 - 92 0.00000 0.00000 0.00000 -0.00000 -0.22827 0.61397 - 93 -0.00000 -0.00000 -0.00000 -0.00000 0.42869 -0.64107 - 94 0.00000 0.00000 0.00000 0.00000 -0.41719 0.41518 - 95 0.00000 0.00000 0.00000 -0.00000 0.36475 -0.18330 - 96 0.00000 -0.00000 -0.00000 0.00000 0.06937 0.22122 - 97 0.00000 0.00000 0.00000 0.00000 0.17400 0.24314 - 98 -0.00000 -0.00000 -0.00000 -0.00000 0.40977 0.45265 - 99 -0.00000 -0.00000 -0.00000 -0.00000 0.64401 0.42128 - 100 -0.00000 0.00000 0.00000 0.00000 0.61330 0.22924 - 101 -0.00000 -0.00000 -0.00000 0.00000 0.10914 -0.29355 - 102 0.00000 -0.00000 -0.00000 0.00000 -0.20497 0.30651 - 103 -0.00000 -0.00000 -0.00000 -0.00000 0.19947 -0.19851 - 104 -0.00000 -0.00000 -0.00000 0.00000 -0.17440 0.08764 - 105 -0.00000 0.00000 0.00000 0.00000 -0.03317 -0.10577 - 106 -0.00000 -0.00000 -0.00000 -0.00000 -0.08319 -0.11625 - 107 0.00000 -0.00000 -0.00000 0.00000 -0.19592 -0.21643 - 108 0.00000 0.00000 0.00000 -0.00000 -0.30792 -0.20143 - 109 0.00000 0.00000 -0.00000 0.00000 -0.29324 -0.10961 + 57 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 58 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 59 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 60 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 61 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 62 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 63 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 64 -0.04783 0.00991 -0.00745 0.01081 -0.00000 -0.00000 + 65 -0.03727 -0.00887 0.00617 0.00843 0.00000 0.00000 + 66 -0.01056 -0.00412 -0.01624 0.00239 -0.00000 -0.00000 + 67 -0.04982 0.00050 0.00188 0.01126 0.00000 -0.00000 + 68 -0.00285 -0.00198 -0.00415 0.00064 0.00000 0.00000 + 69 -0.06405 0.00735 0.00456 0.01448 0.00000 -0.00000 + 70 -0.04831 -0.01221 -0.00157 0.01092 -0.00000 0.00000 + 71 0.56151 -0.00780 0.00586 -0.00843 0.00000 0.00000 + 72 0.43749 0.00698 -0.00486 -0.00657 -0.00000 -0.00000 + 73 0.12403 0.00324 0.01277 -0.00186 0.00000 0.00000 + 74 0.58490 -0.00040 -0.00148 -0.00878 -0.00000 0.00000 + 75 0.03345 0.00156 0.00326 -0.00050 -0.00000 -0.00000 + 76 0.75197 -0.00578 -0.00358 -0.01129 -0.00000 0.00000 + 77 0.56713 0.00961 0.00123 -0.00851 0.00000 -0.00000 + 78 0.00012 -0.00005 0.00004 -0.00005 0.00000 -0.00000 + 79 0.00009 0.00004 -0.00003 -0.00004 -0.00000 0.00000 + 80 0.00003 0.00002 0.00008 -0.00001 -0.00000 0.00000 + 81 0.00013 -0.00000 -0.00001 -0.00005 0.00000 0.00000 + 82 0.00001 0.00001 0.00002 -0.00000 -0.00000 -0.00000 + 83 0.00016 -0.00004 -0.00002 -0.00007 -0.00000 -0.00000 + 84 0.00012 0.00006 0.00001 -0.00005 0.00000 0.00000 + 85 -0.27097 0.00348 -0.00262 0.00374 -0.00000 -0.00000 + 86 -0.21112 -0.00312 0.00217 0.00291 0.00000 0.00000 + 87 -0.05985 -0.00145 -0.00571 0.00083 -0.00000 -0.00000 + 88 -0.28226 0.00018 0.00066 0.00389 0.00000 -0.00000 + 89 -0.01614 -0.00070 -0.00146 0.00022 0.00000 -0.00000 + 90 -0.36288 0.00258 0.00160 0.00500 0.00000 -0.00000 + 91 -0.27368 -0.00429 -0.00055 0.00377 -0.00000 0.00000 + 92 0.00000 -0.00000 -0.00000 0.00000 -0.20658 -0.22887 + 93 -0.00000 -0.00000 -0.00000 -0.00000 -0.48557 0.27731 + 94 0.00000 -0.00000 -0.00000 0.00000 0.21394 0.58866 + 95 -0.00000 0.00000 -0.00000 0.00000 0.40471 -0.09877 + 96 -0.00000 -0.00000 0.00000 -0.00000 -0.60079 -0.21684 + 97 0.00000 0.00000 -0.00000 -0.00000 -0.20178 0.83489 + 98 -0.00000 -0.00000 0.00000 -0.00000 0.74347 -0.02922 + 99 -0.00000 -0.00000 0.00000 0.00000 -0.20139 -0.52076 + 100 0.00000 -0.00000 0.00000 -0.00000 -0.23214 0.18764 + 101 -0.00000 -0.00000 -0.00000 -0.00000 0.09877 0.10943 + 102 0.00000 0.00000 0.00000 0.00000 0.23216 -0.13259 + 103 0.00000 -0.00000 0.00000 -0.00000 -0.10229 -0.28146 + 104 -0.00000 -0.00000 -0.00000 -0.00000 -0.19350 0.04722 + 105 0.00000 -0.00000 -0.00000 0.00000 0.28725 0.10368 + 106 -0.00000 0.00000 0.00000 0.00000 0.09648 -0.39918 + 107 -0.00000 -0.00000 0.00000 0.00000 -0.35547 0.01397 + 108 0.00000 -0.00000 -0.00000 -0.00000 0.09629 0.24899 + 109 -0.00000 0.00000 0.00000 0.00000 0.11099 -0.08972 61 62 63 64 65 66 ----------- ----------- ----------- ----------- ----------- ----------- 1 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 2 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 3 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 4 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 6 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 7 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 8 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 9 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 10 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 11 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 12 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 13 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 14 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 15 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 16 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 17 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 18 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 19 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 20 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 21 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 22 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 23 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 24 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 25 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 26 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 27 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 28 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 29 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 31 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 32 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 33 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 34 0.00000 0.00000 0.00188 -0.00539 0.00286 0.00592 - 35 0.00000 0.00000 -0.00010 0.00560 0.00077 0.00665 - 36 0.00000 -0.00000 0.00345 -0.00050 -0.00839 0.00099 - 37 -0.00000 -0.00000 0.00404 0.00071 0.00024 0.00153 - 38 0.00000 -0.00000 0.00568 0.00168 0.00399 -0.00353 - 39 -0.00000 -0.00000 0.00158 -0.00452 0.00317 0.00656 - 40 -0.00000 -0.00000 -0.00009 0.00470 0.00086 0.00738 - 41 -0.00000 0.00000 0.00289 -0.00042 -0.00930 0.00110 - 42 0.00000 0.00000 0.00339 0.00059 0.00026 0.00170 - 43 -0.00000 0.00000 0.00476 0.00141 0.00443 -0.00392 - 44 0.00000 0.00000 -0.00110 0.00316 -0.00212 -0.00439 - 45 0.00000 0.00000 0.00006 -0.00328 -0.00058 -0.00494 - 46 0.00000 -0.00000 -0.00202 0.00029 0.00623 -0.00074 - 47 -0.00000 -0.00000 -0.00237 -0.00042 -0.00018 -0.00114 - 48 0.00000 -0.00000 -0.00333 -0.00099 -0.00297 0.00262 - 49 -0.00000 -0.00000 0.00005 -0.00015 0.00010 0.00021 - 50 -0.00000 -0.00000 -0.00000 0.00016 0.00003 0.00024 - 51 -0.00000 0.00000 0.00010 -0.00001 -0.00030 0.00004 - 52 0.00000 0.00000 0.00011 0.00002 0.00001 0.00006 - 53 -0.00000 0.00000 0.00016 0.00005 0.00014 -0.00013 - 54 0.00000 0.00000 0.00000 -0.00001 0.00000 0.00000 - 55 0.00000 0.00000 -0.00000 0.00001 0.00000 0.00000 - 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 57 -0.00000 -0.00000 0.00001 0.00000 0.00000 0.00000 - 58 0.00000 -0.00000 0.00001 0.00000 0.00000 -0.00000 - 59 -0.00000 -0.00000 0.00029 -0.00083 0.00057 0.00118 - 60 -0.00000 -0.00000 -0.00002 0.00086 0.00015 0.00132 - 61 -0.00000 0.00000 0.00053 -0.00008 -0.00167 0.00020 - 62 0.00000 0.00000 0.00062 0.00011 0.00005 0.00030 - 63 -0.00000 0.00000 0.00088 0.00026 0.00079 -0.00070 - 64 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 65 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 66 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 67 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 68 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 69 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 70 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 71 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 72 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 73 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 74 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 75 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 76 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 77 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 78 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 79 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 80 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 81 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 82 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 83 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 84 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 85 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 86 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 87 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 88 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 89 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 90 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 91 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 92 0.62069 0.45443 0.43119 -0.42276 0.25831 0.22485 - 93 -0.10462 -0.08568 0.31490 -0.36222 0.33468 0.64157 - 94 -0.26542 -0.35413 0.01723 0.60025 -0.01815 0.69896 - 95 0.12054 0.84600 0.15830 0.73555 -0.23105 0.13015 - 96 -0.65149 0.02199 0.85502 -0.12363 -0.23339 0.02761 - 97 -0.39017 0.20999 -0.19487 0.20378 1.05250 -0.10072 - 98 -0.51143 0.19493 -0.18104 -0.26874 -0.24304 -0.31220 - 99 0.12254 -0.07666 -0.47901 -0.18818 -0.24932 0.58324 - 100 0.44933 -0.62682 0.44048 0.40002 0.13926 -0.34510 - 101 -0.29622 -0.21687 -0.20551 0.20149 -0.12301 -0.10708 - 102 0.04993 0.04089 -0.15008 0.17263 -0.15938 -0.30552 - 103 0.12667 0.16901 -0.00821 -0.28608 0.00864 -0.33286 - 104 -0.05753 -0.40375 -0.07545 -0.35056 0.11003 -0.06198 - 105 0.31092 -0.01050 -0.40750 0.05892 0.11114 -0.01315 - 106 0.18620 -0.10022 0.09287 -0.09712 -0.50121 0.04796 - 107 0.24408 -0.09303 0.08628 0.12808 0.11574 0.14867 - 108 -0.05848 0.03658 0.22830 0.08969 0.11873 -0.27775 - 109 -0.21444 0.29914 -0.20994 -0.19065 -0.06632 0.16434 + 2 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 3 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 4 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 5 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 6 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 7 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 8 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 9 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 10 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 11 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 12 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 13 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 14 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 15 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 16 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 17 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 18 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 19 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 20 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 21 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 22 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 23 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 24 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 25 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 26 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 27 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 28 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 29 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 30 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 31 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 32 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 33 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 34 -0.00000 0.00000 -0.00238 -0.00278 -0.00152 0.00777 + 35 0.00000 0.00000 -0.00284 0.00194 -0.00626 0.00127 + 36 -0.00000 0.00000 0.00578 -0.00008 -0.00627 0.00024 + 37 0.00000 0.00000 -0.00087 -0.00705 -0.00185 -0.00376 + 38 0.00000 0.00000 -0.00401 0.00169 -0.00330 -0.00436 + 39 0.00000 -0.00000 -0.00200 -0.00233 -0.00169 0.00861 + 40 -0.00000 -0.00000 -0.00238 0.00163 -0.00694 0.00141 + 41 0.00000 -0.00000 0.00485 -0.00007 -0.00695 0.00027 + 42 -0.00000 -0.00000 -0.00073 -0.00591 -0.00205 -0.00417 + 43 -0.00000 -0.00000 -0.00336 0.00142 -0.00366 -0.00483 + 44 -0.00000 0.00000 0.00140 0.00163 0.00113 -0.00577 + 45 0.00000 0.00000 0.00167 -0.00114 0.00465 -0.00095 + 46 -0.00000 0.00000 -0.00339 0.00005 0.00466 -0.00018 + 47 0.00000 0.00000 0.00051 0.00413 0.00137 0.00279 + 48 0.00000 0.00000 0.00235 -0.00099 0.00245 0.00324 + 49 0.00000 0.00000 -0.00007 -0.00008 -0.00006 0.00028 + 50 -0.00000 -0.00000 -0.00008 0.00005 -0.00023 0.00005 + 51 0.00000 -0.00000 0.00016 -0.00000 -0.00023 0.00001 + 52 -0.00000 -0.00000 -0.00002 -0.00020 -0.00007 -0.00014 + 53 -0.00000 -0.00000 -0.00011 0.00005 -0.00012 -0.00016 + 54 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 55 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 56 -0.00000 0.00000 0.00001 -0.00000 -0.00000 0.00000 + 57 0.00000 0.00000 -0.00000 -0.00001 -0.00000 -0.00000 + 58 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 59 0.00000 0.00000 -0.00037 -0.00043 -0.00030 0.00154 + 60 -0.00000 -0.00000 -0.00044 0.00030 -0.00124 0.00025 + 61 0.00000 -0.00000 0.00089 -0.00001 -0.00125 0.00005 + 62 -0.00000 -0.00000 -0.00013 -0.00109 -0.00037 -0.00075 + 63 -0.00000 -0.00000 -0.00062 0.00026 -0.00066 -0.00087 + 64 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 65 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 66 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 67 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 68 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 69 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 70 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 71 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 72 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 73 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 74 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 75 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 76 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 77 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 78 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 79 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 80 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 81 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 82 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 83 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 84 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 85 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 86 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 87 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 88 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 89 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 90 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 91 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 92 0.42595 -0.32685 0.69680 0.26544 0.29532 -0.44857 + 93 -0.12691 -0.59612 -0.10536 -0.37795 0.14004 -0.59880 + 94 -0.41291 -0.21826 -0.05066 0.83758 0.46702 0.03638 + 95 -0.27850 0.14065 0.89356 0.00413 -0.21100 -0.05234 + 96 -0.26226 0.75986 0.09088 -0.00125 0.67005 -0.02587 + 97 0.74210 0.31999 0.24013 -0.06404 -0.04764 0.22610 + 98 0.29397 -0.02874 -0.11347 -0.48533 0.79791 -0.06247 + 99 0.46634 -0.39690 -0.09601 0.37695 0.18721 0.58028 + 100 -0.40909 -0.41059 0.38738 -0.48901 0.20713 0.76094 + 101 -0.20328 0.15598 -0.33210 -0.12651 -0.14063 0.21362 + 102 0.06056 0.28449 0.05021 0.18013 -0.06669 0.28516 + 103 0.19706 0.10416 0.02415 -0.39919 -0.22240 -0.01732 + 104 0.13291 -0.06713 -0.42587 -0.00197 0.10048 0.02493 + 105 0.12516 -0.36263 -0.04331 0.00059 -0.31909 0.01232 + 106 -0.35416 -0.15271 -0.11444 0.03052 0.02269 -0.10767 + 107 -0.14029 0.01372 0.05408 0.23131 -0.37997 0.02975 + 108 -0.22256 0.18942 0.04576 -0.17965 -0.08915 -0.27634 + 109 0.19523 0.19595 -0.18463 0.23306 -0.09864 -0.36237 67 68 69 70 71 72 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00031 -0.00000 -0.00000 -0.00000 0.00000 -0.04658 - 2 -0.00037 0.00000 0.00000 0.00000 -0.00000 -0.07949 - 3 0.00019 0.00000 0.00000 0.00000 -0.00000 -0.04779 - 4 -0.00014 -0.00000 -0.00000 -0.00000 0.00000 0.05609 - 5 0.00006 0.00000 0.00000 0.00000 -0.00000 -0.03017 - 6 -0.00011 0.00000 0.00000 0.00000 -0.00000 -0.02191 - 7 -0.00001 -0.00000 -0.00000 -0.00000 -0.00000 0.00124 - 8 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00131 - 9 -0.00002 -0.00000 -0.00000 -0.00000 0.00000 0.00881 - 10 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 11 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 12 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 13 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 14 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 16 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 17 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 18 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 19 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 20 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 1 0.00031 -0.00000 0.00000 -0.00000 -0.00000 0.04656 + 2 0.00038 0.00000 -0.00000 0.00000 0.00000 0.07947 + 3 -0.00019 0.00000 -0.00000 0.00000 0.00000 0.04778 + 4 0.00014 -0.00000 0.00000 -0.00000 -0.00000 -0.05609 + 5 -0.00006 0.00000 -0.00000 0.00000 0.00000 0.03017 + 6 0.00011 0.00000 -0.00000 0.00000 0.00000 0.02190 + 7 0.00001 -0.00000 0.00000 -0.00000 -0.00000 -0.00124 + 8 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00131 + 9 0.00002 -0.00000 0.00000 -0.00000 -0.00000 -0.00881 + 10 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 11 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 12 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 13 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 14 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 15 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 16 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 17 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 18 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 19 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 20 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 21 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 22 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 23 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 24 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 25 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 26 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 27 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 28 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 29 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 30 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 31 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 32 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 33 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 34 0.00194 0.81948 -0.57529 -0.27742 0.90343 -0.26842 - 35 0.00198 -0.58762 0.78688 0.03483 0.96278 -0.27394 - 36 0.00249 0.54206 0.28193 1.21392 -0.04162 -0.34453 - 37 -0.00855 0.50273 0.51443 -0.00022 0.22320 1.18313 - 38 0.00397 0.63629 0.82098 -0.64451 -0.41530 -0.54858 - 39 0.00236 -0.69607 0.48865 0.23631 -0.76958 0.22883 - 40 0.00241 0.49913 -0.66838 -0.02967 -0.82014 0.23353 - 41 0.00303 -0.46043 -0.23948 -1.03406 0.03545 0.29371 - 42 -0.01039 -0.42702 -0.43696 0.00019 -0.19013 -1.00862 - 43 0.00482 -0.54047 -0.69735 0.54902 0.35377 0.46766 - 44 -0.00156 0.32660 -0.22928 -0.11058 0.36012 -0.10697 - 45 -0.00159 -0.23419 0.31361 0.01388 0.38377 -0.10917 - 46 -0.00200 0.21604 0.11236 0.48388 -0.01659 -0.13731 - 47 0.00687 0.20036 0.20502 -0.00009 0.08897 0.47152 - 48 -0.00319 0.25359 0.32720 -0.25691 -0.16554 -0.21863 - 49 0.00008 -0.01248 0.00876 0.00407 -0.01326 0.00389 - 50 0.00008 0.00895 -0.01198 -0.00051 -0.01413 0.00397 - 51 0.00010 -0.00825 -0.00429 -0.01782 0.00061 0.00499 - 52 -0.00034 -0.00765 -0.00783 0.00000 -0.00328 -0.01715 - 53 0.00016 -0.00969 -0.01250 0.00946 0.00610 0.00795 - 54 0.00000 0.00434 -0.00305 -0.00146 0.00475 -0.00141 - 55 0.00000 -0.00311 0.00417 0.00018 0.00507 -0.00144 - 56 0.00000 0.00287 0.00149 0.00639 -0.00022 -0.00181 - 57 -0.00000 0.00266 0.00273 -0.00000 0.00117 0.00621 - 58 0.00000 0.00337 0.00435 -0.00339 -0.00219 -0.00288 - 59 0.00042 -0.10267 0.07207 0.03471 -0.11303 0.03356 - 60 0.00043 0.07362 -0.09858 -0.00436 -0.12045 0.03425 - 61 0.00054 -0.06791 -0.03532 -0.15187 0.00521 0.04307 - 62 -0.00185 -0.06298 -0.06445 0.00003 -0.02792 -0.14791 - 63 0.00086 -0.07972 -0.10286 0.08064 0.05196 0.06858 - 64 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 65 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 66 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 67 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 68 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 69 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 70 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 71 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 72 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 73 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 74 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 75 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 76 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 77 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 78 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 79 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 80 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 81 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 82 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 83 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 84 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 85 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 86 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 87 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 88 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 89 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 90 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 91 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 92 0.18295 -0.00361 0.00055 0.00164 -0.00194 0.00141 - 93 0.41103 -0.00283 0.00067 0.00173 -0.00508 0.00317 - 94 0.37962 0.00204 -0.00301 -0.00092 -0.00510 0.00293 - 95 0.05301 0.00182 -0.00417 -0.00184 -0.00069 0.00041 - 96 -0.50553 -0.00464 -0.00241 -0.00174 0.00006 -0.00390 - 97 -0.22895 0.00168 -0.00031 0.00782 -0.00044 -0.00177 - 98 0.77585 -0.00006 0.00196 -0.00143 0.00256 0.00599 - 99 -0.50562 0.00169 0.00262 -0.00248 -0.00399 -0.00391 - 100 0.14219 -0.00075 -0.00352 0.00141 0.00237 0.00110 - 101 -0.08710 0.00101 -0.00015 -0.00041 0.00049 -0.00034 - 102 -0.19569 0.00079 -0.00019 -0.00044 0.00128 -0.00077 - 103 -0.18073 -0.00057 0.00084 0.00023 0.00129 -0.00071 - 104 -0.02524 -0.00051 0.00117 0.00046 0.00018 -0.00010 - 105 0.24068 0.00130 0.00067 0.00044 -0.00002 0.00095 - 106 0.10900 -0.00047 0.00009 -0.00198 0.00011 0.00043 - 107 -0.36937 0.00002 -0.00055 0.00036 -0.00065 -0.00145 - 108 0.24072 -0.00047 -0.00073 0.00063 0.00101 0.00095 - 109 -0.06770 0.00021 0.00098 -0.00036 -0.00060 -0.00027 + 22 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 23 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 24 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 25 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 26 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 27 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 28 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 29 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 30 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 31 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 32 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 33 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 34 0.00369 -0.37959 0.51767 1.11214 0.24195 -0.50976 + 35 -0.00630 -0.52296 -0.30184 0.16485 0.90362 0.87111 + 36 0.00256 1.01217 -0.06311 0.01629 0.90224 -0.35343 + 37 -0.00170 -0.05844 1.24357 -0.54608 0.25440 0.23496 + 38 0.00633 -0.72304 -0.24232 -0.63614 0.46189 -0.87619 + 39 0.00448 0.32242 -0.43972 -0.94736 -0.20611 0.43457 + 40 -0.00765 0.44420 0.25638 -0.14042 -0.76974 -0.74262 + 41 0.00311 -0.85975 0.05361 -0.01388 -0.76856 0.30130 + 42 -0.00206 0.04964 -1.05630 0.46517 -0.21670 -0.20031 + 43 0.00770 0.61416 0.20583 0.54189 -0.39345 0.74696 + 44 -0.00296 -0.15128 0.20632 0.44331 0.09645 -0.20316 + 45 0.00506 -0.20842 -0.12030 0.06571 0.36019 0.34717 + 46 -0.00205 0.40340 -0.02515 0.00649 0.35964 -0.14086 + 47 0.00136 -0.02329 0.49562 -0.21767 0.10140 0.09364 + 48 -0.00509 -0.28817 -0.09658 -0.25357 0.18411 -0.34919 + 49 0.00014 0.00578 -0.00788 -0.01633 -0.00355 0.00739 + 50 -0.00025 0.00796 0.00460 -0.00242 -0.01326 -0.01263 + 51 0.00010 -0.01541 0.00096 -0.00024 -0.01324 0.00512 + 52 -0.00007 0.00089 -0.01893 0.00802 -0.00373 -0.00341 + 53 0.00025 0.01101 0.00369 0.00934 -0.00678 0.01270 + 54 0.00000 -0.00201 0.00274 0.00585 0.00127 -0.00268 + 55 -0.00000 -0.00277 -0.00160 0.00087 0.00475 0.00457 + 56 0.00000 0.00537 -0.00033 0.00009 0.00475 -0.00185 + 57 -0.00000 -0.00031 0.00659 -0.00287 0.00134 0.00123 + 58 0.00000 -0.00383 -0.00128 -0.00335 0.00243 -0.00460 + 59 0.00080 0.04756 -0.06486 -0.13914 -0.03027 0.06373 + 60 -0.00136 0.06552 0.03782 -0.02062 -0.11305 -0.10890 + 61 0.00055 -0.12681 0.00791 -0.00204 -0.11288 0.04419 + 62 -0.00037 0.00732 -0.15580 0.06832 -0.03183 -0.02937 + 63 0.00137 0.09059 0.03036 0.07959 -0.05779 0.10954 + 64 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 65 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 66 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 67 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 68 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 69 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 70 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 71 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 72 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 73 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 74 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 75 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 76 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 77 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 78 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 79 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 80 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 81 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 82 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 83 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 84 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 85 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 86 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 87 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 88 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 89 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 90 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 91 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 92 -0.55495 -0.00408 0.00192 0.00328 0.00226 -0.00429 + 93 0.56534 0.00046 -0.00233 0.00442 0.00113 0.00437 + 94 0.04569 0.00069 0.00503 -0.00034 0.00346 0.00035 + 95 0.64738 -0.00539 0.00044 0.00042 -0.00156 0.00500 + 96 0.15532 -0.00055 0.00003 0.00009 0.00497 0.00120 + 97 0.17462 -0.00148 -0.00028 -0.00167 -0.00039 0.00135 + 98 0.07854 0.00046 -0.00298 0.00034 0.00592 0.00061 + 99 0.57100 0.00075 0.00223 -0.00433 0.00130 0.00441 + 100 -0.31550 -0.00256 -0.00277 -0.00567 0.00142 -0.00244 + 101 0.26420 0.00114 -0.00054 -0.00083 -0.00057 0.00104 + 102 -0.26915 -0.00013 0.00065 -0.00112 -0.00029 -0.00106 + 103 -0.02175 -0.00019 -0.00141 0.00009 -0.00087 -0.00009 + 104 -0.30821 0.00151 -0.00012 -0.00011 0.00039 -0.00121 + 105 -0.07394 0.00015 -0.00001 -0.00002 -0.00126 -0.00029 + 106 -0.08313 0.00041 0.00008 0.00042 0.00010 -0.00033 + 107 -0.03739 -0.00013 0.00083 -0.00009 -0.00150 -0.00015 + 108 -0.27184 -0.00021 -0.00062 0.00109 -0.00033 -0.00107 + 109 0.15021 0.00072 0.00077 0.00143 -0.00036 0.00059 73 74 75 76 77 78 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 2 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 3 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 4 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 5 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 6 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 7 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 8 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 9 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 10 -0.00000 -0.00000 -0.00000 -0.00000 0.01326 0.01680 - 11 0.00000 -0.00000 0.00000 -0.00000 -0.02546 0.01433 - 12 -0.00000 0.00000 0.00000 0.00000 -0.00722 -0.01971 - 13 0.00000 -0.00000 0.00000 0.00000 -0.01986 -0.02516 - 14 -0.00000 -0.00000 -0.00000 -0.00000 0.03813 -0.02146 - 15 0.00000 -0.00000 -0.00000 0.00000 0.01081 0.02952 - 16 -0.00000 0.00000 -0.00000 -0.00000 0.01392 0.01764 - 17 0.00000 0.00000 0.00000 0.00000 -0.02673 0.01505 - 18 -0.00000 0.00000 0.00000 -0.00000 -0.00758 -0.02069 - 19 0.00000 -0.00000 0.00000 0.00000 -0.00599 -0.00759 - 20 -0.00000 -0.00000 -0.00000 -0.00000 0.01150 -0.00648 - 21 0.00000 -0.00000 -0.00000 0.00000 0.00326 0.00890 - 22 -0.00000 0.00000 -0.00000 0.00000 -0.00339 -0.00430 - 23 -0.00000 0.00000 -0.00000 0.00000 0.00652 -0.00367 - 24 -0.00000 0.00000 0.00000 -0.00000 0.00185 0.00505 - 25 0.00000 -0.00000 0.00000 -0.00000 0.00005 0.00007 - 26 0.00000 -0.00000 0.00000 -0.00000 -0.00011 0.00006 - 27 0.00000 -0.00000 -0.00000 0.00000 -0.00003 -0.00008 - 28 -0.00000 0.00000 -0.00000 0.00000 -0.00014 -0.00018 - 29 0.00000 0.00000 -0.00000 0.00000 0.00027 -0.00015 - 30 -0.00000 0.00000 0.00000 -0.00000 0.00008 0.00021 - 31 -0.00000 0.00000 -0.00000 -0.00000 0.00172 0.00218 - 32 0.00000 0.00000 0.00000 0.00000 -0.00331 0.00186 - 33 -0.00000 0.00000 0.00000 -0.00000 -0.00094 -0.00256 - 34 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 35 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 36 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 37 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 38 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 39 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 40 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 41 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 42 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 43 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 45 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 46 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 47 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 48 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 49 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 50 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 52 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 53 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 54 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 55 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 56 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 57 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 58 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 59 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 60 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 61 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 62 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 63 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 64 -0.23381 0.72883 0.46110 -0.62223 0.34585 -0.41108 - 65 0.08550 -0.76005 0.09415 -0.00061 0.77128 -0.44138 - 66 0.12089 0.58063 -0.00593 0.95337 0.47890 0.00976 - 67 0.32471 -0.12485 0.84485 -0.06287 0.27357 0.74735 - 68 0.43385 -0.02162 0.34655 0.19484 -0.16097 -0.74038 - 69 0.79178 0.05136 0.19122 -0.01736 -0.50743 -0.13930 - 70 0.72489 0.24067 -0.65611 -0.42910 0.46877 0.17835 - 71 0.14734 -0.45930 -0.29030 0.39174 -0.21759 0.25863 - 72 -0.05388 0.47897 -0.05928 0.00038 -0.48524 0.27769 - 73 -0.07618 -0.36591 0.00373 -0.60023 -0.30129 -0.00614 - 74 -0.20462 0.07868 -0.53190 0.03958 -0.17211 -0.47019 - 75 -0.27340 0.01363 -0.21818 -0.12267 0.10127 0.46580 - 76 -0.49897 -0.03236 -0.12039 0.01093 0.31925 0.08764 - 77 -0.45681 -0.15167 0.41307 0.27015 -0.29492 -0.11221 - 78 -0.00013 0.00039 0.00026 -0.00035 0.00020 -0.00023 - 79 0.00005 -0.00041 0.00005 -0.00000 0.00044 -0.00025 - 80 0.00007 0.00031 -0.00000 0.00053 0.00027 0.00001 - 81 0.00018 -0.00007 0.00047 -0.00004 0.00016 0.00042 - 82 0.00023 -0.00001 0.00019 0.00011 -0.00009 -0.00042 - 83 0.00043 0.00003 0.00011 -0.00001 -0.00029 -0.00008 - 84 0.00039 0.00013 -0.00037 -0.00024 0.00027 0.00010 - 85 -0.05470 0.17050 0.10754 -0.14512 0.08050 -0.09569 - 86 0.02000 -0.17781 0.02196 -0.00014 0.17953 -0.10274 - 87 0.02828 0.13583 -0.00138 0.22236 0.11147 0.00227 - 88 0.07596 -0.02921 0.19705 -0.01466 0.06368 0.17396 - 89 0.10149 -0.00506 0.08083 0.04544 -0.03747 -0.17234 - 90 0.18523 0.01201 0.04460 -0.00405 -0.11812 -0.03243 - 91 0.16958 0.05630 -0.15303 -0.10008 0.10911 0.04151 - 92 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 93 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 94 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 95 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 96 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 97 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 98 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 99 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 100 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 101 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 102 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 103 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 104 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 105 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 106 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 107 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 108 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 109 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 1 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 2 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 3 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 4 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 5 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 6 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 7 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 8 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 9 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 10 0.00000 -0.00000 0.00000 -0.00000 0.02350 -0.01656 + 11 -0.00000 0.00000 0.00000 0.00000 0.01237 0.00645 + 12 0.00000 -0.00000 0.00000 -0.00000 -0.01307 -0.02367 + 13 0.00000 -0.00000 0.00000 -0.00000 -0.03520 0.02480 + 14 0.00000 0.00000 -0.00000 -0.00000 -0.01852 -0.00965 + 15 0.00000 0.00000 -0.00000 0.00000 0.01958 0.03545 + 16 -0.00000 0.00000 -0.00000 0.00000 0.02468 -0.01738 + 17 -0.00000 -0.00000 0.00000 -0.00000 0.01298 0.00677 + 18 -0.00000 -0.00000 0.00000 -0.00000 -0.01372 -0.02485 + 19 0.00000 -0.00000 0.00000 -0.00000 -0.01062 0.00748 + 20 0.00000 0.00000 -0.00000 0.00000 -0.00559 -0.00291 + 21 0.00000 0.00000 -0.00000 0.00000 0.00591 0.01069 + 22 -0.00000 0.00000 -0.00000 0.00000 -0.00602 0.00424 + 23 0.00000 -0.00000 0.00000 -0.00000 -0.00317 -0.00165 + 24 -0.00000 -0.00000 0.00000 -0.00000 0.00335 0.00606 + 25 0.00000 -0.00000 0.00000 -0.00000 0.00010 -0.00007 + 26 -0.00000 0.00000 -0.00000 0.00000 0.00005 0.00003 + 27 0.00000 0.00000 -0.00000 0.00000 -0.00005 -0.00010 + 28 -0.00000 0.00000 -0.00000 0.00000 -0.00025 0.00018 + 29 0.00000 -0.00000 0.00000 -0.00000 -0.00013 -0.00007 + 30 -0.00000 -0.00000 0.00000 -0.00000 0.00014 0.00025 + 31 -0.00000 0.00000 -0.00000 0.00000 0.00305 -0.00215 + 32 -0.00000 -0.00000 0.00000 -0.00000 0.00161 0.00084 + 33 0.00000 -0.00000 0.00000 -0.00000 -0.00170 -0.00307 + 34 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 35 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 36 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 37 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 38 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 40 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 41 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 42 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 43 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 44 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 45 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 46 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 47 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 48 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 49 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 50 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 51 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 52 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 53 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 54 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 55 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 56 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 57 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 58 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 59 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 60 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 61 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 62 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 63 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 64 0.40347 0.15092 -0.54131 0.43178 0.75807 -0.09278 + 65 0.31841 -0.54564 0.10582 0.70887 -0.65741 0.10500 + 66 -0.37752 -0.27960 0.44415 0.16266 0.51080 0.89628 + 67 0.25340 0.69943 0.80946 -0.04811 -0.05786 -0.10480 + 68 0.86930 -0.42725 0.07527 -0.70539 0.08928 0.26853 + 69 -0.50228 -0.55762 0.08445 -0.42109 0.13131 -0.51596 + 70 -0.20917 0.37585 -0.59407 -0.36034 -0.47483 0.59123 + 71 -0.25426 -0.09511 0.34080 -0.27184 -0.47693 0.05837 + 72 -0.20066 0.34385 -0.06662 -0.44629 0.41361 -0.06606 + 73 0.23791 0.17620 -0.27963 -0.10241 -0.32136 -0.56388 + 74 -0.15969 -0.44077 -0.50962 0.03029 0.03640 0.06593 + 75 -0.54782 0.26925 -0.04739 0.44410 -0.05617 -0.16894 + 76 0.31653 0.35140 -0.05317 0.26511 -0.08261 0.32461 + 77 0.13181 -0.23685 0.37401 0.22686 0.29874 -0.37197 + 78 0.00022 0.00008 -0.00030 0.00024 0.00043 -0.00005 + 79 0.00017 -0.00030 0.00006 0.00039 -0.00037 0.00006 + 80 -0.00020 -0.00015 0.00025 0.00009 0.00029 0.00051 + 81 0.00014 0.00038 0.00045 -0.00003 -0.00003 -0.00006 + 82 0.00047 -0.00023 0.00004 -0.00039 0.00005 0.00015 + 83 -0.00027 -0.00030 0.00005 -0.00023 0.00007 -0.00029 + 84 -0.00011 0.00020 -0.00033 -0.00020 -0.00027 0.00034 + 85 0.09439 0.03531 -0.12625 0.10070 0.17646 -0.02160 + 86 0.07449 -0.12765 0.02468 0.16533 -0.15303 0.02444 + 87 -0.08832 -0.06541 0.10359 0.03794 0.11890 0.20863 + 88 0.05928 0.16362 0.18879 -0.01122 -0.01347 -0.02439 + 89 0.20336 -0.09995 0.01756 -0.16452 0.02078 0.06251 + 90 -0.11750 -0.13045 0.01970 -0.09821 0.03057 -0.12010 + 91 -0.04893 0.08793 -0.13856 -0.08404 -0.11053 0.13762 + 92 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 93 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 94 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 95 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 96 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 97 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 98 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 99 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 100 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 101 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 102 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 103 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 104 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 105 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 106 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 107 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 108 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 109 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 79 80 81 82 83 84 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 10.09207 0.00000 -0.00000 0.00000 0.00000 - 2 0.00000 15.46534 0.00000 -0.00000 0.00000 0.00000 - 3 0.00000 3.35148 0.00000 -0.00000 -0.00000 -0.00000 - 4 -0.00000 -2.54555 -0.00000 -0.00000 0.00000 0.00000 - 5 0.00000 1.23157 0.00000 0.00000 -0.00000 -0.00000 - 6 0.00000 4.12919 0.00000 0.00000 0.00000 -0.00000 - 7 0.00000 0.03176 -0.00000 -0.00000 0.00000 0.00000 - 8 0.00000 0.18694 0.00000 0.00000 -0.00000 -0.00000 - 9 -0.00000 -0.35382 -0.00000 0.00000 0.00000 0.00000 - 10 0.02586 -0.00000 0.48174 1.34750 1.36985 0.00000 - 11 0.00599 -0.00000 1.71576 -0.93469 0.31717 0.00000 - 12 0.02639 -0.00000 -0.86129 -1.10830 1.39802 0.00000 - 13 -0.03862 0.00000 -0.27413 -0.76678 -0.77984 -0.00000 - 14 -0.00894 0.00000 -0.97633 0.53188 -0.18056 -0.00000 - 15 -0.03941 0.00000 0.49011 0.63066 -0.79587 -0.00000 - 16 0.02694 -0.00000 0.14558 0.40722 0.41376 0.00000 - 17 0.00624 -0.00000 0.51851 -0.28247 0.09580 0.00000 - 18 0.02750 -0.00000 -0.26028 -0.33493 0.42226 0.00000 - 19 -0.01157 0.00000 -0.06345 -0.17748 -0.18016 0.00000 - 20 -0.00268 0.00000 -0.22598 0.12311 -0.04171 0.00000 - 21 -0.01181 0.00000 0.11344 0.14597 -0.18386 -0.00000 - 22 -0.00656 0.00000 -0.48274 -1.35028 -1.37011 -0.00000 - 23 -0.00152 0.00000 -1.71930 0.93662 -0.31723 -0.00000 - 24 -0.00670 0.00000 0.86307 1.11058 -1.39828 -0.00000 - 25 0.00010 0.00000 0.02784 0.07787 0.07838 0.00000 - 26 0.00002 -0.00000 0.09915 -0.05401 0.01815 0.00000 - 27 0.00010 -0.00000 -0.04977 -0.06404 0.07999 -0.00000 - 28 -0.00027 0.00000 -0.01679 -0.04695 -0.04759 -0.00000 - 29 -0.00006 0.00000 -0.05979 0.03257 -0.01102 -0.00000 - 30 -0.00028 0.00000 0.03001 0.03862 -0.04857 0.00000 - 31 0.00333 -0.00000 0.01909 0.05339 0.05417 -0.00000 - 32 0.00077 -0.00000 0.06799 -0.03704 0.01254 -0.00000 - 33 0.00339 -0.00000 -0.03413 -0.04392 0.05529 0.00000 - 34 -0.00000 -0.00103 0.00000 0.00000 0.00000 0.39040 - 35 0.00000 -0.00105 0.00000 0.00000 0.00000 -0.44459 - 36 0.00000 -0.00132 0.00000 -0.00000 -0.00000 -0.03313 - 37 0.00000 0.00452 0.00000 0.00000 0.00000 -0.14198 - 38 0.00000 -0.00210 0.00000 0.00000 0.00000 -0.25441 - 39 0.00000 0.00169 0.00000 0.00000 -0.00000 -0.23854 - 40 0.00000 0.00172 -0.00000 -0.00000 0.00000 0.27165 - 41 -0.00000 0.00216 -0.00000 -0.00000 0.00000 0.02024 - 42 -0.00000 -0.00743 -0.00000 -0.00000 -0.00000 0.08675 - 43 -0.00000 0.00344 -0.00000 -0.00000 -0.00000 0.15545 - 44 -0.00000 -0.00117 -0.00000 -0.00000 0.00000 0.10895 - 45 -0.00000 -0.00119 0.00000 0.00000 0.00000 -0.12408 - 46 0.00000 -0.00150 0.00000 0.00000 -0.00000 -0.00925 - 47 0.00000 0.00515 0.00000 0.00000 -0.00000 -0.03962 - 48 0.00000 -0.00239 0.00000 0.00000 0.00000 -0.07100 - 49 0.00000 0.00036 -0.00000 0.00000 -0.00000 -0.68197 - 50 0.00000 0.00037 -0.00000 0.00000 -0.00000 0.77664 - 51 -0.00000 0.00047 -0.00000 0.00000 0.00000 0.05787 - 52 -0.00000 -0.00161 -0.00000 -0.00000 -0.00000 0.24802 - 53 -0.00000 0.00074 -0.00000 -0.00000 -0.00000 0.44443 - 54 -0.00000 -0.00007 0.00000 0.00000 -0.00000 0.04259 - 55 0.00000 -0.00007 -0.00000 0.00000 0.00000 -0.04851 - 56 0.00000 -0.00008 0.00000 0.00000 -0.00000 -0.00361 - 57 -0.00000 0.00029 0.00000 0.00000 -0.00000 -0.01549 - 58 -0.00000 -0.00013 0.00000 0.00000 -0.00000 -0.02776 - 59 0.00000 0.00042 -0.00000 0.00000 -0.00000 -0.03543 - 60 0.00000 0.00043 0.00000 -0.00000 -0.00000 0.04034 - 61 -0.00000 0.00054 -0.00000 -0.00000 0.00000 0.00301 - 62 -0.00000 -0.00185 -0.00000 -0.00000 0.00000 0.01288 - 63 -0.00000 0.00086 0.00000 0.00000 -0.00000 0.02309 - 64 -0.21936 0.00000 0.00024 -0.00003 0.00012 -0.00000 - 65 -0.37223 -0.00000 0.00036 -0.00019 0.00021 -0.00000 - 66 -0.17950 0.00000 0.00011 -0.00019 0.00010 -0.00000 - 67 0.22368 0.00000 -0.00022 -0.00029 -0.00013 0.00000 - 68 0.77525 0.00000 0.00025 0.00024 -0.00043 0.00000 - 69 -0.76074 0.00000 -0.00007 0.00023 0.00043 0.00000 - 70 0.26984 -0.00000 0.00004 -0.00022 -0.00015 -0.00000 - 71 0.13797 -0.00000 -0.00032 0.00005 -0.00016 0.00000 - 72 0.23412 0.00000 -0.00047 0.00025 -0.00028 0.00000 - 73 0.11290 -0.00000 -0.00015 0.00025 -0.00013 0.00000 - 74 -0.14069 -0.00000 0.00030 0.00038 0.00017 -0.00000 - 75 -0.48761 -0.00000 -0.00033 -0.00032 0.00057 0.00000 - 76 0.47848 -0.00000 0.00009 -0.00030 -0.00056 0.00000 - 77 -0.16972 0.00000 -0.00006 0.00030 0.00020 0.00000 - 78 -0.00013 0.00000 0.00010 -0.00001 0.00005 0.00000 - 79 -0.00021 0.00000 0.00014 -0.00008 0.00008 0.00000 - 80 -0.00010 -0.00000 0.00005 -0.00008 0.00004 -0.00000 - 81 0.00013 -0.00000 -0.00009 -0.00012 -0.00005 -0.00000 - 82 0.00044 -0.00000 0.00010 0.00010 -0.00017 -0.00000 - 83 -0.00043 -0.00000 -0.00003 0.00009 0.00017 0.00000 - 84 0.00015 0.00000 0.00002 -0.00009 -0.00006 -0.00000 - 85 -0.05102 0.00000 0.00017 -0.00002 0.00009 0.00000 - 86 -0.08658 -0.00000 0.00025 -0.00014 0.00015 -0.00000 - 87 -0.04175 0.00000 0.00008 -0.00013 0.00007 -0.00000 - 88 0.05203 0.00000 -0.00016 -0.00020 -0.00009 -0.00000 - 89 0.18033 0.00000 0.00018 0.00017 -0.00030 0.00000 - 90 -0.17695 0.00000 -0.00005 0.00016 0.00030 -0.00000 - 91 0.06277 -0.00000 0.00003 -0.00016 -0.00011 -0.00000 - 92 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00005 - 93 0.00000 0.00001 -0.00000 -0.00000 0.00000 0.00004 - 94 0.00000 0.00001 -0.00000 0.00000 -0.00000 -0.00009 - 95 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00012 - 96 0.00000 -0.00001 0.00000 0.00000 0.00000 -0.00002 - 97 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00002 - 98 0.00000 0.00001 0.00000 -0.00000 0.00000 0.00005 - 99 -0.00000 -0.00001 -0.00000 -0.00000 0.00000 0.00005 - 100 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00008 - 101 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00004 - 102 -0.00000 0.00001 0.00000 0.00000 -0.00000 -0.00004 - 103 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00008 - 104 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00010 - 105 -0.00000 -0.00001 -0.00000 -0.00000 0.00000 0.00001 - 106 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00002 - 107 -0.00000 0.00001 0.00000 -0.00000 -0.00000 -0.00004 - 108 0.00000 -0.00001 -0.00000 -0.00000 0.00000 -0.00004 - 109 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00007 + 1 -0.00000 10.09208 -0.00000 0.00000 -0.00000 -0.00000 + 2 -0.00000 15.46534 -0.00000 0.00000 -0.00000 -0.00000 + 3 0.00000 3.35148 -0.00000 0.00000 -0.00000 0.00000 + 4 -0.00000 -2.54555 0.00000 0.00000 0.00000 -0.00000 + 5 0.00000 1.23157 0.00000 -0.00000 -0.00000 0.00000 + 6 -0.00000 4.12919 -0.00000 0.00000 -0.00000 0.00000 + 7 -0.00000 0.03176 0.00000 -0.00000 -0.00000 -0.00000 + 8 -0.00000 0.18693 -0.00000 0.00000 -0.00000 0.00000 + 9 -0.00000 -0.35382 -0.00000 0.00000 0.00000 -0.00000 + 10 -0.00891 0.00000 1.36184 1.35696 -0.47176 0.00000 + 11 0.03302 0.00000 -0.28186 0.88880 1.74902 -0.00000 + 12 0.01522 0.00000 1.40843 -1.13420 0.80618 -0.00000 + 13 0.01330 -0.00000 -0.77494 -0.77216 0.26857 -0.00000 + 14 -0.04931 0.00000 0.16039 -0.50576 -0.99569 0.00000 + 15 -0.02273 -0.00000 -0.80145 0.64540 -0.45895 0.00000 + 16 -0.00928 0.00000 0.41155 0.41008 -0.14249 0.00000 + 17 0.03440 -0.00000 -0.08518 0.26860 0.52828 -0.00000 + 18 0.01586 0.00000 0.42563 -0.34276 0.24350 -0.00000 + 19 0.00399 -0.00000 -0.17937 -0.17872 0.06204 -0.00000 + 20 -0.01478 0.00000 0.03712 -0.11706 -0.23002 0.00000 + 21 -0.00681 -0.00000 -0.18550 0.14939 -0.10602 0.00000 + 22 0.00226 -0.00000 -1.36465 -1.35976 0.47185 -0.00000 + 23 -0.00838 0.00000 0.28245 -0.89064 -1.74934 0.00000 + 24 -0.00386 -0.00000 -1.41133 1.13654 -0.80633 0.00000 + 25 -0.00003 0.00000 0.07870 0.07841 -0.02699 0.00000 + 26 0.00013 -0.00000 -0.01629 0.05136 0.10007 -0.00000 + 27 0.00006 0.00000 0.08139 -0.06554 0.04613 0.00000 + 28 0.00009 -0.00000 -0.04745 -0.04728 0.01639 -0.00000 + 29 -0.00035 0.00000 0.00982 -0.03097 -0.06076 0.00000 + 30 -0.00016 -0.00000 -0.04908 0.03952 -0.02801 0.00000 + 31 -0.00115 0.00000 0.05396 0.05377 -0.01866 0.00000 + 32 0.00425 -0.00000 -0.01117 0.03522 0.06917 -0.00000 + 33 0.00196 -0.00000 0.05581 -0.04494 0.03188 -0.00000 + 34 0.00000 0.00195 0.00000 0.00000 -0.00000 -0.23354 + 35 -0.00000 -0.00333 0.00000 0.00000 0.00000 0.15529 + 36 -0.00000 0.00135 0.00000 -0.00000 -0.00000 0.00366 + 37 -0.00000 -0.00090 0.00000 0.00000 -0.00000 -0.58295 + 38 -0.00000 0.00335 0.00000 -0.00000 -0.00000 0.13246 + 39 -0.00000 -0.00320 -0.00000 0.00000 0.00000 0.14270 + 40 0.00000 0.00547 -0.00000 -0.00000 -0.00000 -0.09489 + 41 0.00000 -0.00222 -0.00000 0.00000 0.00000 -0.00223 + 42 0.00000 0.00147 -0.00000 -0.00000 0.00000 0.35620 + 43 0.00000 -0.00550 -0.00000 0.00000 0.00000 -0.08094 + 44 0.00000 0.00222 0.00000 -0.00000 -0.00000 -0.06518 + 45 -0.00000 -0.00379 0.00000 0.00000 0.00000 0.04334 + 46 -0.00000 0.00154 0.00000 -0.00000 -0.00000 0.00102 + 47 -0.00000 -0.00102 0.00000 0.00000 -0.00000 -0.16269 + 48 -0.00000 0.00381 0.00000 -0.00000 0.00000 0.03697 + 49 -0.00000 -0.00069 -0.00000 -0.00000 -0.00000 0.40797 + 50 0.00000 0.00118 -0.00000 -0.00000 -0.00000 -0.27128 + 51 0.00000 -0.00048 0.00000 -0.00000 -0.00000 -0.00639 + 52 0.00000 0.00032 -0.00000 -0.00000 0.00000 1.01834 + 53 0.00000 -0.00119 0.00000 0.00000 -0.00000 -0.23140 + 54 0.00000 0.00012 -0.00000 -0.00000 -0.00000 -0.02548 + 55 -0.00000 -0.00021 0.00000 -0.00000 0.00000 0.01694 + 56 -0.00000 0.00009 -0.00000 0.00000 -0.00000 0.00040 + 57 -0.00000 -0.00006 0.00000 0.00000 -0.00000 -0.06360 + 58 -0.00000 0.00021 -0.00000 -0.00000 0.00000 0.01445 + 59 -0.00000 -0.00080 0.00000 0.00000 0.00000 0.02119 + 60 0.00000 0.00136 -0.00000 0.00000 -0.00000 -0.01409 + 61 0.00000 -0.00055 -0.00000 -0.00000 0.00000 -0.00033 + 62 0.00000 0.00037 0.00000 -0.00000 0.00000 0.05290 + 63 0.00000 -0.00137 0.00000 0.00000 0.00000 -0.01202 + 64 0.52320 0.00000 -0.00010 -0.00033 -0.00029 -0.00000 + 65 0.40764 0.00000 0.00010 0.00029 -0.00023 0.00000 + 66 0.11557 0.00000 0.00036 -0.00030 -0.00006 0.00000 + 67 0.54501 0.00000 -0.00004 0.00003 -0.00031 0.00000 + 68 0.03117 -0.00000 0.00011 -0.00006 -0.00002 -0.00000 + 69 0.70068 0.00000 -0.00024 -0.00002 -0.00039 0.00000 + 70 0.52844 0.00000 0.00030 0.00017 -0.00030 -0.00000 + 71 -0.32908 -0.00000 0.00013 0.00044 0.00039 -0.00000 + 72 -0.25640 -0.00000 -0.00013 -0.00038 0.00030 -0.00000 + 73 -0.07269 -0.00000 -0.00048 0.00040 0.00009 -0.00000 + 74 -0.34280 -0.00000 0.00006 -0.00005 0.00040 -0.00000 + 75 -0.01961 0.00000 -0.00015 0.00008 0.00002 0.00000 + 76 -0.44071 -0.00000 0.00032 0.00002 0.00052 -0.00000 + 77 -0.33238 -0.00000 -0.00040 -0.00022 0.00039 0.00000 + 78 0.00030 -0.00000 -0.00004 -0.00013 -0.00012 0.00000 + 79 0.00023 -0.00000 0.00004 0.00012 -0.00009 0.00000 + 80 0.00007 -0.00000 0.00015 -0.00012 -0.00003 -0.00000 + 81 0.00031 -0.00000 -0.00002 0.00001 -0.00012 -0.00000 + 82 0.00002 -0.00000 0.00005 -0.00002 -0.00001 -0.00000 + 83 0.00040 -0.00000 -0.00010 -0.00001 -0.00016 -0.00000 + 84 0.00030 -0.00000 0.00012 0.00007 -0.00012 -0.00000 + 85 0.12170 0.00000 -0.00007 -0.00024 -0.00021 0.00000 + 86 0.09482 0.00000 0.00007 0.00020 -0.00016 0.00000 + 87 0.02688 0.00000 0.00026 -0.00021 -0.00005 0.00000 + 88 0.12677 0.00000 -0.00003 0.00002 -0.00021 0.00000 + 89 0.00725 0.00000 0.00008 -0.00004 -0.00001 -0.00000 + 90 0.16298 0.00000 -0.00017 -0.00001 -0.00028 0.00000 + 91 0.12292 0.00000 0.00021 0.00012 -0.00021 0.00000 + 92 0.00000 0.00001 -0.00000 -0.00000 0.00000 0.00004 + 93 -0.00000 -0.00001 -0.00000 0.00000 -0.00000 -0.00006 + 94 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00013 + 95 -0.00000 -0.00001 -0.00000 0.00000 -0.00000 0.00000 + 96 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 97 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00001 + 98 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00008 + 99 0.00000 -0.00001 -0.00000 0.00000 0.00000 0.00006 + 100 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00007 + 101 -0.00000 0.00001 0.00000 0.00000 -0.00000 -0.00004 + 102 0.00000 -0.00001 0.00000 -0.00000 0.00000 0.00005 + 103 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00012 + 104 0.00000 -0.00001 0.00000 -0.00000 0.00000 -0.00000 + 105 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 106 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00001 + 107 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00007 + 108 -0.00000 -0.00001 0.00000 -0.00000 -0.00000 -0.00005 + 109 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00007 85 86 87 88 89 90 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 -0.00000 0.00000 0.02620 4.18013 -0.00000 - 2 0.00000 0.00000 0.00000 0.05218 10.10742 -0.00000 - 3 -0.00000 0.00000 -0.00000 0.01234 1.69453 -0.00000 - 4 0.00000 -0.00000 0.00000 -0.00964 -1.18380 0.00000 - 5 -0.00000 0.00000 -0.00000 0.00480 0.57096 0.00000 - 6 -0.00000 0.00000 -0.00000 0.02529 6.79314 -0.00000 - 7 0.00000 -0.00000 0.00000 -0.00537 -1.86092 0.00000 - 8 -0.00000 0.00000 -0.00000 0.00208 0.51041 -0.00000 - 9 0.00000 -0.00000 0.00000 -0.00139 -0.16605 -0.00000 - 10 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.15090 - 11 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.95469 - 12 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.36445 - 13 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.07561 - 14 0.00000 -0.00000 0.00000 0.00000 0.00000 0.47836 - 15 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.18261 - 16 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.04010 - 17 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.25372 - 18 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.09686 - 19 -0.00000 0.00000 0.00000 0.00000 0.00000 0.01775 - 20 0.00000 -0.00000 0.00000 0.00000 0.00000 0.11228 - 21 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.04286 - 22 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.26353 - 23 -0.00000 -0.00000 0.00000 -0.00000 0.00000 1.66725 - 24 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.63647 - 25 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.24906 - 26 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -1.57571 - 27 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.60152 - 28 -0.00000 0.00000 0.00000 0.00000 0.00000 0.02523 - 29 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.15963 - 30 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.06094 - 31 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00539 - 32 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.03413 - 33 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.01303 - 34 -0.26398 -0.42320 0.13944 0.12663 -0.00050 0.00000 - 35 0.12653 -0.45417 -0.00718 0.12923 -0.00051 -0.00000 - 36 -0.28567 0.00797 -0.57262 0.16254 -0.00065 0.00000 - 37 -0.30735 -0.10521 0.00225 -0.55816 0.00222 -0.00000 - 38 -0.41748 0.20195 0.29983 0.25880 -0.00103 -0.00000 - 39 0.16130 0.25849 -0.08517 -0.07734 0.00040 -0.00000 - 40 -0.07731 0.27741 0.00438 -0.07893 0.00041 0.00000 - 41 0.17455 -0.00487 0.34976 -0.09926 0.00051 -0.00000 - 42 0.18780 0.06426 -0.00137 0.34088 -0.00177 0.00000 - 43 0.25509 -0.12335 -0.18314 -0.15805 0.00082 0.00000 - 44 -0.07367 -0.11799 0.03888 0.03529 -0.00021 0.00000 - 45 0.03531 -0.12663 -0.00200 0.03602 -0.00022 -0.00000 - 46 -0.07972 0.00222 -0.15965 0.04530 -0.00027 0.00000 - 47 -0.08577 -0.02933 0.00063 -0.15557 0.00094 -0.00000 - 48 -0.11651 0.05631 0.08360 0.07213 -0.00044 -0.00000 - 49 0.46114 0.73819 -0.24323 -0.22078 0.00059 -0.00000 - 50 -0.22104 0.79222 0.01252 -0.22532 0.00060 0.00000 - 51 0.49903 -0.01389 0.99882 -0.28338 0.00075 -0.00000 - 52 0.53690 0.18352 -0.00392 0.97315 -0.00259 0.00000 - 53 0.72928 -0.35226 -0.52299 -0.45121 0.00120 0.00000 - 54 -0.02880 -0.04601 0.01516 0.01375 -0.00002 0.00000 - 55 0.01380 -0.04938 -0.00078 0.01404 -0.00002 -0.00000 - 56 -0.03117 0.00087 -0.06226 0.01765 -0.00003 -0.00000 - 57 -0.03353 -0.01144 0.00024 -0.06062 0.00010 -0.00000 - 58 -0.04555 0.02196 0.03260 0.02811 -0.00005 0.00000 - 59 0.02395 0.03835 -0.01264 -0.01147 0.00007 0.00000 - 60 -0.01148 0.04115 0.00065 -0.01170 0.00008 0.00000 - 61 0.02592 -0.00072 0.05189 -0.01472 0.00009 -0.00000 - 62 0.02789 0.00953 -0.00020 0.05055 -0.00033 0.00000 - 63 0.03788 -0.01830 -0.02717 -0.02344 0.00015 -0.00000 - 64 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00003 - 65 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00005 - 66 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00002 - 67 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00002 - 68 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00003 - 69 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00001 - 70 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00001 - 71 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00003 - 72 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00005 - 73 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00002 - 74 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00002 - 75 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00003 - 76 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00001 - 77 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00001 - 78 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 79 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 80 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 81 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 82 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 83 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 84 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 85 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00002 - 86 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00003 - 87 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00001 - 88 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00001 - 89 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00002 - 90 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00001 - 91 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00001 - 92 -0.00008 -0.00006 0.00005 0.00004 -0.00000 0.00000 - 93 -0.00006 -0.00015 0.00005 0.00010 -0.00000 -0.00000 - 94 0.00002 -0.00015 -0.00002 0.00009 -0.00000 -0.00000 - 95 0.00001 -0.00002 -0.00005 0.00001 -0.00000 0.00000 - 96 -0.00013 0.00000 -0.00005 -0.00012 0.00000 0.00000 - 97 0.00004 -0.00001 0.00023 -0.00005 0.00000 0.00000 - 98 0.00002 0.00007 -0.00004 0.00019 -0.00000 0.00000 - 99 0.00006 -0.00012 -0.00007 -0.00012 0.00000 0.00000 - 100 -0.00005 0.00007 0.00004 0.00003 -0.00000 0.00000 - 101 0.00007 0.00005 -0.00004 -0.00004 0.00000 -0.00000 - 102 0.00005 0.00013 -0.00005 -0.00009 0.00000 0.00000 - 103 -0.00002 0.00013 0.00002 -0.00008 0.00000 0.00000 - 104 -0.00000 0.00002 0.00005 -0.00001 0.00000 -0.00000 - 105 0.00012 -0.00000 0.00005 0.00011 -0.00000 -0.00000 - 106 -0.00003 0.00001 -0.00021 0.00005 -0.00000 -0.00000 - 107 -0.00001 -0.00007 0.00004 -0.00016 0.00000 -0.00000 - 108 -0.00006 0.00011 0.00006 0.00011 -0.00000 0.00000 - 109 0.00004 -0.00006 -0.00004 -0.00003 0.00000 -0.00000 + 1 0.00000 0.00000 0.00000 -0.02620 4.18015 0.00000 + 2 0.00000 0.00000 0.00000 -0.05218 10.10744 0.00000 + 3 -0.00000 -0.00000 -0.00000 -0.01234 1.69454 0.00000 + 4 0.00000 0.00000 0.00000 0.00964 -1.18381 -0.00000 + 5 -0.00000 -0.00000 -0.00000 -0.00480 0.57096 0.00000 + 6 -0.00000 -0.00000 -0.00000 -0.02529 6.79314 0.00000 + 7 0.00000 0.00000 0.00000 0.00537 -1.86092 -0.00000 + 8 -0.00000 -0.00000 -0.00000 -0.00208 0.51041 0.00000 + 9 0.00000 0.00000 0.00000 0.00139 -0.16605 0.00000 + 10 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.13513 + 11 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.39840 + 12 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.94342 + 13 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.06771 + 14 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.19963 + 15 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.47272 + 16 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.03591 + 17 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10588 + 18 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.25073 + 19 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.01589 + 20 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.04685 + 21 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.11095 + 22 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.23600 + 23 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.69576 + 24 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 1.64757 + 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.22304 + 26 0.00000 0.00000 -0.00000 0.00000 0.00000 0.65756 + 27 0.00000 -0.00000 0.00000 -0.00000 0.00000 -1.55710 + 28 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.02260 + 29 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.06662 + 30 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.15775 + 31 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00483 + 32 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.01424 + 33 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.03373 + 34 0.19170 -0.11646 -0.52383 0.24049 0.00096 -0.00000 + 35 0.23802 -0.42639 -0.07579 -0.41096 -0.00163 0.00000 + 36 -0.47732 -0.42542 -0.00575 0.16674 0.00066 -0.00000 + 37 0.05942 -0.11877 0.25801 -0.11085 -0.00044 -0.00000 + 38 0.33359 -0.21641 0.30091 0.41336 0.00164 0.00000 + 39 -0.11713 0.07113 0.31996 -0.14687 -0.00076 0.00000 + 40 -0.14544 0.26044 0.04629 0.25098 0.00130 -0.00000 + 41 0.29165 0.25985 0.00351 -0.10183 -0.00053 0.00000 + 42 -0.03631 0.07255 -0.15759 0.06770 0.00035 0.00000 + 43 -0.20383 0.13218 -0.18380 -0.25245 -0.00131 -0.00000 + 44 0.05350 -0.03247 -0.14605 0.06703 0.00040 -0.00000 + 45 0.06643 -0.11888 -0.02113 -0.11454 -0.00069 0.00000 + 46 -0.13321 -0.11861 -0.00160 0.04647 0.00028 -0.00000 + 47 0.01658 -0.03312 0.07194 -0.03090 -0.00019 -0.00000 + 48 0.09310 -0.06034 0.08390 0.11521 0.00069 0.00000 + 49 -0.33487 0.20314 0.91371 -0.41929 -0.00112 0.00000 + 50 -0.41580 0.74375 0.13220 0.71650 0.00191 -0.00000 + 51 0.83382 0.74206 0.01003 -0.29071 -0.00077 0.00000 + 52 -0.10379 0.20717 -0.45004 0.19326 0.00051 0.00000 + 53 -0.58274 0.37748 -0.52489 -0.72069 -0.00192 -0.00000 + 54 0.02091 -0.01266 -0.05696 0.02612 0.00005 0.00000 + 55 0.02597 -0.04636 -0.00824 -0.04463 -0.00008 -0.00000 + 56 -0.05208 -0.04626 -0.00063 0.01811 0.00003 -0.00000 + 57 0.00648 -0.01291 0.02805 -0.01204 -0.00002 -0.00000 + 58 0.03639 -0.02353 0.03272 0.04489 0.00008 -0.00000 + 59 -0.01740 0.01055 0.04747 -0.02178 -0.00014 -0.00000 + 60 -0.02160 0.03864 0.00687 0.03722 0.00024 -0.00000 + 61 0.04331 0.03855 0.00052 -0.01510 -0.00010 0.00000 + 62 -0.00539 0.01076 -0.02338 0.01004 0.00006 -0.00000 + 63 -0.03027 0.01961 -0.02727 -0.03744 -0.00024 -0.00000 + 64 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00001 + 65 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00001 + 66 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00006 + 67 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00001 + 68 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00002 + 69 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00002 + 70 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00002 + 71 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00002 + 72 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00001 + 73 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00006 + 74 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00001 + 75 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00002 + 76 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00002 + 77 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00002 + 78 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 79 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 80 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 81 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 82 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 83 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 84 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 85 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00001 + 86 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00001 + 87 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00004 + 88 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 89 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00001 + 90 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00001 + 91 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00001 + 92 -0.00011 0.00007 0.00010 -0.00013 -0.00000 -0.00000 + 93 0.00002 0.00003 0.00013 0.00014 0.00000 0.00000 + 94 0.00001 0.00010 -0.00001 0.00001 0.00000 -0.00000 + 95 -0.00014 -0.00005 0.00001 0.00016 0.00000 0.00000 + 96 -0.00001 0.00015 0.00000 0.00004 0.00000 -0.00000 + 97 -0.00004 -0.00001 -0.00005 0.00004 0.00000 -0.00000 + 98 0.00002 0.00017 0.00001 0.00002 0.00000 0.00000 + 99 0.00002 0.00004 -0.00013 0.00014 0.00000 -0.00000 + 100 -0.00006 0.00004 -0.00017 -0.00008 -0.00000 -0.00000 + 101 0.00010 -0.00006 -0.00009 0.00012 0.00000 0.00000 + 102 -0.00001 -0.00003 -0.00012 -0.00012 -0.00000 -0.00000 + 103 -0.00001 -0.00009 0.00001 -0.00001 -0.00000 0.00000 + 104 0.00012 0.00004 -0.00001 -0.00014 -0.00000 -0.00000 + 105 0.00001 -0.00013 -0.00000 -0.00003 -0.00000 0.00000 + 106 0.00003 0.00001 0.00004 -0.00004 -0.00000 0.00000 + 107 -0.00001 -0.00016 -0.00001 -0.00002 -0.00000 0.00000 + 108 -0.00001 -0.00003 0.00011 -0.00012 -0.00000 0.00000 + 109 0.00005 -0.00004 0.00015 0.00007 0.00000 0.00000 91 92 93 94 95 96 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 2 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 3 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 4 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 5 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 6 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 7 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 8 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 9 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 10 -0.73142 -0.71424 0.00000 0.00000 -0.00000 0.00000 - 11 0.35818 -0.16537 0.00000 0.00000 -0.00000 0.00000 - 12 0.63542 -0.72893 -0.00000 0.00000 -0.00000 0.00000 - 13 0.36649 0.35785 -0.00000 -0.00000 0.00000 -0.00000 - 14 -0.17947 0.08286 -0.00000 -0.00000 0.00000 -0.00000 - 15 -0.31839 0.36521 0.00000 -0.00000 -0.00000 -0.00000 - 16 -0.19439 -0.18975 0.00000 0.00000 -0.00000 0.00000 - 17 0.09519 -0.04393 0.00000 0.00000 -0.00000 0.00000 - 18 0.16887 -0.19365 -0.00000 0.00000 -0.00000 0.00000 - 19 0.08602 0.08394 0.00000 -0.00000 0.00000 0.00000 - 20 -0.04212 0.01944 -0.00000 -0.00000 0.00000 -0.00000 - 21 -0.07473 0.08567 0.00000 -0.00000 -0.00000 -0.00000 - 22 1.27734 1.24692 -0.00000 -0.00000 0.00000 -0.00000 - 23 -0.62552 0.28870 -0.00000 -0.00000 0.00000 -0.00000 - 24 -1.10969 1.27256 0.00000 -0.00000 0.00000 -0.00000 - 25 -1.20720 -1.17779 -0.00000 0.00000 -0.00000 0.00000 - 26 0.59117 -0.27270 0.00000 0.00000 -0.00000 0.00000 - 27 1.04876 -1.20201 -0.00000 0.00000 0.00000 0.00000 - 28 0.12230 0.11924 0.00000 0.00000 -0.00000 0.00000 - 29 -0.05989 0.02761 0.00000 0.00000 -0.00000 0.00000 - 30 -0.10625 0.12169 0.00000 -0.00000 -0.00000 -0.00000 - 31 -0.02615 -0.02551 -0.00000 0.00000 -0.00000 -0.00000 - 32 0.01280 -0.00591 0.00000 -0.00000 -0.00000 0.00000 - 33 0.02272 -0.02604 0.00000 0.00000 -0.00000 -0.00000 - 34 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 35 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 36 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 37 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 38 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 39 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 40 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 41 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 42 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 43 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 44 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 45 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 46 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 47 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 48 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 49 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 50 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 51 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 52 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 53 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 54 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 55 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 56 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 57 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 58 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 59 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 60 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 61 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 62 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 63 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 64 0.00000 -0.00001 0.01645 0.01969 0.01907 -0.01764 - 65 0.00002 -0.00002 -0.01224 -0.02253 -0.00032 -0.00314 - 66 0.00002 -0.00001 0.00357 0.01956 -0.03177 0.00367 - 67 0.00004 0.00001 -0.01166 0.00022 -0.00098 -0.02840 - 68 -0.00003 0.00005 -0.01375 0.00480 -0.00776 -0.01085 - 69 -0.00003 -0.00005 -0.02395 0.01158 -0.00012 -0.00644 - 70 0.00003 0.00002 -0.01948 0.01662 0.01670 0.02032 - 71 -0.00000 0.00002 -0.01003 -0.01200 -0.01162 0.01075 - 72 -0.00002 0.00003 0.00746 0.01373 0.00020 0.00191 - 73 -0.00002 0.00001 -0.00217 -0.01192 0.01936 -0.00224 - 74 -0.00004 -0.00002 0.00711 -0.00013 0.00060 0.01731 - 75 0.00004 -0.00006 0.00838 -0.00293 0.00473 0.00661 - 76 0.00003 0.00006 0.01459 -0.00706 0.00007 0.00392 - 77 -0.00003 -0.00002 0.01187 -0.01013 -0.01018 -0.01238 - 78 -0.00000 0.00000 -0.39796 -0.47624 -0.46098 0.42649 - 79 -0.00000 0.00000 0.29607 0.54494 0.00780 0.07595 - 80 -0.00000 0.00000 -0.08628 -0.47310 0.76799 -0.08873 - 81 -0.00000 -0.00000 0.28203 -0.00524 0.02371 0.68657 - 82 0.00000 -0.00000 0.33254 -0.11609 0.18758 0.26220 - 83 0.00000 0.00000 0.57919 -0.28009 0.00284 0.15567 - 84 -0.00000 -0.00000 0.47119 -0.40192 -0.40367 -0.49111 - 85 0.00000 -0.00001 0.00404 0.00483 0.00468 -0.00433 - 86 0.00001 -0.00002 -0.00300 -0.00553 -0.00008 -0.00077 - 87 0.00001 -0.00001 0.00088 0.00480 -0.00780 0.00090 - 88 0.00002 0.00001 -0.00286 0.00005 -0.00024 -0.00697 - 89 -0.00002 0.00003 -0.00337 0.00118 -0.00190 -0.00266 - 90 -0.00002 -0.00003 -0.00588 0.00284 -0.00003 -0.00158 - 91 0.00002 0.00001 -0.00478 0.00408 0.00410 0.00499 - 92 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 93 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 94 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 95 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 96 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 97 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 98 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 99 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 100 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 101 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 102 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 103 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 104 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 105 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 106 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 107 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 108 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 109 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 1 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 2 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 3 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 4 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 6 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 7 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 8 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 9 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 10 -0.99416 0.24598 0.00000 0.00000 0.00000 -0.00000 + 11 -0.27941 -0.91194 -0.00000 -0.00000 -0.00000 0.00000 + 12 0.02441 -0.42034 0.00000 -0.00000 0.00000 0.00000 + 13 0.49814 -0.12324 -0.00000 -0.00000 -0.00000 0.00000 + 14 0.14000 0.45691 0.00000 0.00000 0.00000 -0.00000 + 15 -0.01223 0.21060 -0.00000 0.00000 -0.00000 -0.00000 + 16 -0.26422 0.06535 0.00000 0.00000 0.00000 -0.00000 + 17 -0.07426 -0.24227 -0.00000 -0.00000 -0.00000 0.00000 + 18 0.00649 -0.11167 0.00000 -0.00000 0.00000 0.00000 + 19 0.11692 -0.02891 -0.00000 -0.00000 -0.00000 0.00000 + 20 0.03286 0.10718 0.00000 0.00000 0.00000 -0.00000 + 21 -0.00287 0.04940 -0.00000 0.00000 -0.00000 -0.00000 + 22 1.73619 -0.42942 -0.00000 -0.00000 -0.00000 0.00000 + 23 0.48795 1.59206 0.00000 0.00000 0.00000 -0.00000 + 24 -0.04263 0.73383 -0.00000 0.00000 -0.00000 -0.00000 + 25 -1.64086 0.40562 0.00000 0.00000 0.00000 -0.00000 + 26 -0.46116 -1.50379 -0.00000 -0.00000 0.00000 0.00000 + 27 0.04029 -0.69315 0.00000 -0.00000 0.00000 0.00000 + 28 0.16623 -0.04107 0.00000 0.00000 0.00000 -0.00000 + 29 0.04672 0.15225 -0.00000 0.00000 -0.00000 0.00000 + 30 -0.00408 0.07018 -0.00000 0.00000 -0.00000 -0.00000 + 31 -0.03554 0.00879 0.00000 0.00000 0.00000 -0.00000 + 32 -0.00999 -0.03257 -0.00000 -0.00000 -0.00000 0.00000 + 33 0.00087 -0.01501 0.00000 -0.00000 0.00000 0.00000 + 34 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 35 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 36 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 37 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 38 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 39 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 40 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 41 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 42 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 43 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 44 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 45 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 46 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 47 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 48 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 49 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 50 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 51 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 52 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 53 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 54 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 55 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 56 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 57 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 58 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 59 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 60 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 61 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 62 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 63 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 64 0.00004 0.00003 -0.00681 -0.01274 0.01975 -0.01223 + 65 -0.00003 0.00003 -0.02010 0.00667 -0.00070 -0.02403 + 66 0.00000 0.00001 0.00330 0.01540 -0.01415 -0.00719 + 67 -0.00000 0.00004 0.00912 -0.02321 -0.02715 -0.00162 + 68 -0.00000 0.00000 -0.03134 -0.00851 -0.00532 0.02320 + 69 0.00002 0.00005 0.00028 0.02516 -0.00449 0.01369 + 70 -0.00004 0.00004 0.01359 -0.00482 0.01835 0.01437 + 71 -0.00004 -0.00004 0.00415 0.00776 -0.01203 0.00745 + 72 0.00004 -0.00003 0.01225 -0.00407 0.00043 0.01464 + 73 -0.00000 -0.00001 -0.00201 -0.00938 0.00862 0.00438 + 74 0.00000 -0.00004 -0.00556 0.01415 0.01655 0.00099 + 75 0.00000 -0.00000 0.01910 0.00519 0.00324 -0.01413 + 76 -0.00002 -0.00005 -0.00017 -0.01533 0.00274 -0.00834 + 77 0.00004 -0.00004 -0.00828 0.00294 -0.01118 -0.00875 + 78 -0.00000 -0.00000 0.16463 0.30806 -0.47741 0.29554 + 79 0.00000 -0.00000 0.48617 -0.16139 0.01697 0.58094 + 80 -0.00000 -0.00000 -0.07988 -0.37246 0.34196 0.17372 + 81 0.00000 -0.00000 -0.22064 0.56140 0.65638 0.03918 + 82 0.00000 -0.00000 0.75794 0.20588 0.12850 -0.56071 + 83 -0.00000 -0.00000 -0.00681 -0.60849 0.10853 -0.33092 + 84 0.00000 -0.00000 -0.32870 0.11661 -0.44364 -0.34731 + 85 0.00002 0.00002 -0.00167 -0.00313 0.00485 -0.00300 + 86 -0.00002 0.00002 -0.00493 0.00164 -0.00017 -0.00590 + 87 0.00000 0.00000 0.00081 0.00378 -0.00347 -0.00176 + 88 -0.00000 0.00002 0.00224 -0.00570 -0.00666 -0.00040 + 89 -0.00000 0.00000 -0.00769 -0.00209 -0.00130 0.00569 + 90 0.00001 0.00003 0.00007 0.00617 -0.00110 0.00336 + 91 -0.00002 0.00002 0.00334 -0.00118 0.00450 0.00353 + 92 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 93 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 94 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 95 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 96 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 97 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 98 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 99 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 100 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 101 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 102 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 103 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 104 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 105 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 106 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 107 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 108 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 109 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 97 98 99 100 101 102 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 2 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 3 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 1 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 2 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 3 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 4 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 5 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 6 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 6 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 7 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 8 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 9 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 10 0.00009 0.00016 0.00022 -0.00000 -0.00000 0.00000 - 11 -0.00024 0.00008 0.00005 -0.00000 0.00000 0.00000 - 12 -0.00003 -0.00018 0.00022 0.00000 -0.00000 0.00000 - 13 -0.00003 -0.00006 -0.00007 0.00000 0.00000 -0.00000 - 14 0.00008 -0.00003 -0.00002 0.00000 -0.00000 -0.00000 - 15 0.00001 0.00006 -0.00007 -0.00000 0.00000 -0.00000 - 16 0.00001 0.00003 0.00004 -0.00000 0.00000 0.00000 - 17 -0.00004 0.00001 0.00001 -0.00000 0.00000 0.00000 - 18 -0.00001 -0.00003 0.00004 0.00000 -0.00000 0.00000 - 19 -0.00001 -0.00001 -0.00002 -0.00000 0.00000 -0.00000 - 20 0.00002 -0.00001 -0.00000 -0.00000 -0.00000 -0.00000 - 21 0.00000 0.00001 -0.00002 -0.00000 0.00000 -0.00000 - 22 -0.00015 -0.00028 -0.00038 0.00000 0.00000 -0.00000 - 23 0.00042 -0.00015 -0.00009 0.00000 -0.00000 -0.00000 - 24 0.00006 0.00031 -0.00038 -0.00000 0.00000 -0.00000 - 25 0.00003 0.00006 0.00007 0.00000 -0.00000 0.00000 - 26 -0.00008 0.00003 0.00002 -0.00000 0.00000 -0.00000 - 27 -0.00001 -0.00006 0.00008 -0.00000 -0.00000 0.00000 - 28 -0.00003 -0.00005 -0.00006 -0.00000 0.00000 0.00000 - 29 0.00007 -0.00002 -0.00001 0.00000 0.00000 0.00000 - 30 0.00001 0.00005 -0.00007 0.00000 0.00000 -0.00000 - 31 0.00000 0.00000 0.00001 0.00000 -0.00000 0.00000 - 32 -0.00001 0.00000 0.00000 0.00000 -0.00000 0.00000 - 33 -0.00000 -0.00000 0.00001 -0.00000 -0.00000 0.00000 - 34 0.00000 -0.00000 0.00000 0.14581 0.06056 0.14230 - 35 0.00000 -0.00000 0.00000 -0.15441 -0.01181 0.15196 - 36 0.00000 -0.00000 -0.00000 0.00823 0.09599 -0.00543 - 37 -0.00000 0.00000 -0.00000 -0.02606 0.11039 0.03522 - 38 0.00000 -0.00000 -0.00000 -0.05560 0.15406 -0.06614 - 39 -0.00000 -0.00000 -0.00000 -0.08823 -0.03664 -0.08610 - 40 -0.00000 0.00000 -0.00000 0.09343 0.00715 -0.09194 - 41 -0.00000 0.00000 0.00000 -0.00498 -0.05809 0.00329 - 42 0.00000 -0.00000 0.00000 0.01577 -0.06680 -0.02131 - 43 -0.00000 0.00000 0.00000 0.03365 -0.09322 0.04002 - 44 0.00000 0.00000 0.00000 0.04112 0.01708 0.04012 - 45 0.00000 -0.00000 0.00000 -0.04354 -0.00333 0.04284 - 46 0.00000 0.00000 -0.00000 0.00232 0.02707 -0.00153 - 47 -0.00000 0.00000 -0.00000 -0.00735 0.03113 0.00993 - 48 0.00000 -0.00000 0.00000 -0.01568 0.04344 -0.01865 - 49 -0.00000 0.00000 -0.00000 -0.37724 -0.15667 -0.36810 - 50 -0.00000 0.00000 -0.00000 0.39950 0.03056 -0.39308 - 51 -0.00000 0.00000 -0.00000 -0.02128 -0.24836 0.01405 - 52 0.00000 -0.00000 0.00000 0.06742 -0.28560 -0.09111 - 53 -0.00000 0.00000 0.00000 0.14386 -0.39859 0.17108 - 54 0.00000 -0.00000 0.00000 0.76122 0.31614 0.74258 - 55 0.00000 -0.00000 0.00000 -0.80612 -0.06166 0.79298 - 56 0.00000 -0.00000 0.00000 0.04294 0.50115 -0.02833 - 57 -0.00000 0.00000 -0.00000 -0.13604 0.57630 0.18379 - 58 0.00000 -0.00000 0.00000 -0.29029 0.80429 -0.34513 - 59 -0.00000 -0.00000 0.00000 -0.01356 -0.00563 -0.01323 - 60 0.00000 -0.00000 0.00000 0.01436 0.00110 -0.01413 - 61 -0.00000 -0.00000 -0.00000 -0.00077 -0.00893 0.00050 - 62 -0.00000 -0.00000 0.00000 0.00242 -0.01027 -0.00328 - 63 -0.00000 -0.00000 -0.00000 0.00517 -0.01433 0.00615 - 64 -0.01384 0.01156 0.00736 -0.00000 0.00000 -0.00000 - 65 -0.02807 0.01007 0.01250 -0.00000 0.00000 -0.00000 - 66 -0.01577 -0.00313 0.00603 -0.00000 -0.00000 0.00000 - 67 -0.00467 -0.02630 -0.00751 0.00000 0.00000 0.00000 - 68 0.00099 0.02541 -0.02603 -0.00000 0.00000 0.00000 - 69 0.01596 0.00757 0.02554 -0.00000 -0.00000 -0.00000 - 70 -0.01445 -0.00864 -0.00906 0.00000 -0.00000 0.00000 - 71 0.00843 -0.00704 -0.00449 0.00000 -0.00000 0.00000 - 72 0.01710 -0.00614 -0.00761 0.00000 0.00000 0.00000 - 73 0.00961 0.00190 -0.00367 0.00000 0.00000 -0.00000 - 74 0.00284 0.01602 0.00457 -0.00000 0.00000 0.00000 - 75 -0.00060 -0.01548 0.01586 0.00000 -0.00000 -0.00000 - 76 -0.00972 -0.00461 -0.01556 0.00000 -0.00000 0.00000 - 77 0.00880 0.00526 0.00552 0.00000 -0.00000 -0.00000 - 78 0.33434 -0.27940 -0.17793 -0.00000 -0.00000 -0.00000 - 79 0.67839 -0.24343 -0.30193 -0.00000 0.00000 0.00000 - 80 0.38109 0.07552 -0.14560 0.00000 -0.00000 -0.00000 - 81 0.11280 0.63555 0.18144 -0.00000 -0.00000 -0.00000 - 82 -0.02385 -0.61406 0.62885 0.00000 -0.00000 -0.00000 - 83 -0.38556 -0.18301 -0.61707 -0.00000 -0.00000 0.00000 - 84 0.34915 0.20873 0.21888 0.00000 -0.00000 -0.00000 - 85 -0.00339 0.00284 0.00181 -0.00000 0.00000 -0.00000 - 86 -0.00689 0.00247 0.00307 -0.00000 0.00000 0.00000 - 87 -0.00387 -0.00077 0.00148 -0.00000 0.00000 0.00000 - 88 -0.00115 -0.00645 -0.00184 0.00000 -0.00000 -0.00000 - 89 0.00024 0.00623 -0.00638 -0.00000 0.00000 0.00000 - 90 0.00391 0.00186 0.00627 0.00000 0.00000 0.00000 - 91 -0.00354 -0.00212 -0.00222 0.00000 -0.00000 0.00000 - 92 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 93 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00001 - 94 0.00000 -0.00000 -0.00000 -0.00001 -0.00000 0.00001 - 95 -0.00000 -0.00000 0.00000 -0.00001 0.00000 0.00000 - 96 0.00000 0.00000 -0.00000 0.00000 0.00001 -0.00000 - 97 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 98 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 99 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00001 - 100 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 101 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 102 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00001 - 103 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00001 - 104 0.00000 0.00000 0.00000 0.00001 -0.00000 -0.00000 - 105 0.00000 -0.00000 0.00000 -0.00000 -0.00001 0.00000 - 106 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 107 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 108 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00001 - 109 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 9 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 10 0.00025 -0.00002 -0.00007 0.00000 -0.00000 0.00000 + 11 0.00006 0.00010 0.00028 0.00000 -0.00000 0.00000 + 12 0.00001 -0.00023 0.00013 0.00000 0.00000 0.00000 + 13 -0.00008 0.00001 0.00003 -0.00000 0.00000 0.00000 + 14 -0.00002 -0.00003 -0.00009 -0.00000 -0.00000 -0.00000 + 15 -0.00000 0.00008 -0.00004 -0.00000 -0.00000 -0.00000 + 16 0.00004 -0.00000 -0.00001 0.00000 -0.00000 -0.00000 + 17 0.00001 0.00002 0.00005 0.00000 0.00000 0.00000 + 18 0.00000 -0.00004 0.00002 0.00000 0.00000 0.00000 + 19 -0.00002 0.00000 0.00001 0.00000 0.00000 0.00000 + 20 -0.00000 -0.00001 -0.00002 -0.00000 -0.00000 -0.00000 + 21 -0.00000 0.00002 -0.00001 -0.00000 -0.00000 0.00000 + 22 -0.00043 0.00003 0.00013 -0.00000 0.00000 -0.00000 + 23 -0.00011 -0.00018 -0.00048 -0.00000 0.00000 -0.00000 + 24 -0.00002 0.00041 -0.00022 -0.00000 0.00000 -0.00000 + 25 0.00008 -0.00001 -0.00003 0.00000 -0.00000 0.00000 + 26 0.00002 0.00004 0.00009 0.00000 -0.00000 0.00000 + 27 0.00000 -0.00008 0.00004 0.00000 0.00000 0.00000 + 28 -0.00007 0.00000 0.00002 -0.00000 0.00000 0.00000 + 29 -0.00002 -0.00003 -0.00008 -0.00000 0.00000 0.00000 + 30 -0.00000 0.00007 -0.00004 0.00000 -0.00000 0.00000 + 31 0.00001 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 32 0.00000 0.00000 0.00001 0.00000 0.00000 0.00000 + 33 0.00000 -0.00001 0.00000 0.00000 0.00000 -0.00000 + 34 -0.00000 0.00000 -0.00000 0.07307 -0.07005 0.16782 + 35 0.00000 0.00000 0.00000 -0.05800 -0.07551 0.00441 + 36 -0.00000 -0.00000 -0.00000 0.01107 0.15953 -0.01874 + 37 0.00000 0.00000 0.00000 0.19319 -0.03486 -0.09120 + 38 -0.00000 -0.00000 -0.00000 -0.05284 -0.10802 -0.11015 + 39 0.00000 -0.00000 0.00000 -0.04422 0.04239 -0.10154 + 40 -0.00000 -0.00000 -0.00000 0.03510 0.04569 -0.00267 + 41 0.00000 0.00000 0.00000 -0.00670 -0.09653 0.01134 + 42 -0.00000 -0.00000 -0.00000 -0.11690 0.02110 0.05518 + 43 -0.00000 -0.00000 0.00000 0.03197 0.06536 0.06665 + 44 0.00000 0.00000 -0.00000 0.02061 -0.01975 0.04731 + 45 0.00000 0.00000 -0.00000 -0.01636 -0.02129 0.00124 + 46 -0.00000 -0.00000 0.00000 0.00312 0.04499 -0.00528 + 47 0.00000 0.00000 0.00000 0.05448 -0.00983 -0.02571 + 48 0.00000 0.00000 0.00000 -0.01490 -0.03046 -0.03105 + 49 0.00000 -0.00000 0.00000 -0.18905 0.18123 -0.43411 + 50 -0.00000 -0.00000 -0.00000 0.15007 0.19535 -0.01140 + 51 -0.00000 -0.00000 0.00000 -0.02865 -0.41275 0.04847 + 52 -0.00000 0.00000 0.00000 -0.49983 0.09020 0.23592 + 53 0.00000 0.00000 0.00000 0.13671 0.27946 0.28493 + 54 0.00000 -0.00000 -0.00000 0.38148 -0.36570 0.87574 + 55 0.00000 0.00000 0.00000 -0.30282 -0.39419 0.02300 + 56 0.00000 0.00000 -0.00000 0.05782 0.83286 -0.09778 + 57 0.00000 -0.00000 0.00000 1.00858 -0.18201 -0.47594 + 58 -0.00000 -0.00000 -0.00000 -0.27586 -0.56391 -0.57481 + 59 -0.00000 0.00000 0.00000 -0.00680 0.00652 -0.01560 + 60 0.00000 0.00000 0.00000 0.00540 0.00702 -0.00041 + 61 -0.00000 0.00000 -0.00000 -0.00103 -0.01484 0.00174 + 62 -0.00000 0.00000 -0.00000 -0.01797 0.00324 0.00848 + 63 0.00000 -0.00000 -0.00000 0.00492 0.01005 0.01024 + 64 -0.02332 -0.01064 -0.01756 0.00000 -0.00000 0.00000 + 65 0.02066 0.00852 -0.01369 0.00000 -0.00000 -0.00000 + 66 0.00110 -0.03461 -0.00388 -0.00000 0.00000 -0.00000 + 67 -0.00018 0.00401 -0.01830 -0.00000 0.00000 0.00000 + 68 0.00215 -0.00925 -0.00105 -0.00000 0.00000 0.00000 + 69 -0.01280 0.01246 -0.02352 -0.00000 0.00000 0.00000 + 70 0.02396 -0.00860 -0.01774 0.00000 -0.00000 0.00000 + 71 0.01421 0.00648 0.01070 -0.00000 0.00000 -0.00000 + 72 -0.01259 -0.00519 0.00834 0.00000 -0.00000 0.00000 + 73 -0.00067 0.02109 0.00236 0.00000 -0.00000 0.00000 + 74 0.00011 -0.00245 0.01115 0.00000 -0.00000 -0.00000 + 75 -0.00131 0.00564 0.00064 0.00000 0.00000 -0.00000 + 76 0.00780 -0.00759 0.01433 0.00000 -0.00000 -0.00000 + 77 -0.01460 0.00524 0.01081 -0.00000 0.00000 -0.00000 + 78 0.56360 0.25702 0.42440 -0.00000 -0.00000 0.00000 + 79 -0.49915 -0.20592 0.33066 -0.00000 -0.00000 0.00000 + 80 -0.02647 0.83629 0.09374 -0.00000 -0.00000 -0.00000 + 81 0.00438 -0.09699 0.44208 -0.00000 -0.00000 -0.00000 + 82 -0.05203 0.22354 0.02528 0.00000 0.00000 0.00000 + 83 0.30942 -0.30120 0.56836 0.00000 -0.00000 0.00000 + 84 -0.57889 0.20772 0.42865 0.00000 -0.00000 -0.00000 + 85 -0.00572 -0.00261 -0.00431 0.00000 0.00000 0.00000 + 86 0.00507 0.00209 -0.00336 -0.00000 0.00000 -0.00000 + 87 0.00027 -0.00849 -0.00095 -0.00000 -0.00000 -0.00000 + 88 -0.00004 0.00098 -0.00449 -0.00000 0.00000 0.00000 + 89 0.00053 -0.00227 -0.00026 -0.00000 -0.00000 0.00000 + 90 -0.00314 0.00306 -0.00577 0.00000 0.00000 -0.00000 + 91 0.00588 -0.00211 -0.00435 0.00000 0.00000 0.00000 + 92 -0.00000 0.00000 0.00000 -0.00000 0.00001 -0.00000 + 93 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00001 + 94 -0.00000 0.00000 0.00000 -0.00001 -0.00000 0.00000 + 95 -0.00000 0.00000 0.00000 0.00000 0.00001 -0.00000 + 96 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 97 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 98 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 99 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00001 + 100 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00001 + 101 0.00000 0.00000 -0.00000 0.00000 -0.00001 0.00000 + 102 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00001 + 103 -0.00000 0.00000 -0.00000 0.00001 0.00000 -0.00000 + 104 0.00000 -0.00000 -0.00000 -0.00000 -0.00001 0.00000 + 105 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 106 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 107 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 108 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00001 + 109 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00001 103 104 105 106 107 108 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 -0.00768 2.65524 0.00000 -0.00000 -0.00000 - 2 0.00000 -0.01662 5.71557 0.00000 -0.00000 0.00000 - 3 0.00000 -0.00275 0.84704 0.00000 -0.00000 0.00000 - 4 -0.00000 0.00199 -0.59358 0.00000 -0.00000 -0.00000 - 5 0.00000 -0.00098 0.28885 -0.00000 0.00000 0.00000 - 6 0.00000 -0.01204 4.39257 0.00000 -0.00000 0.00000 - 7 -0.00000 0.00954 -3.72298 -0.00000 0.00000 -0.00000 - 8 0.00000 -0.00709 2.66421 0.00000 -0.00000 0.00000 - 9 -0.00000 0.00029 -0.08454 -0.00000 0.00000 -0.00000 - 10 0.00000 -0.00000 0.00000 0.12998 0.32784 0.33710 - 11 -0.00000 0.00000 -0.00000 0.41474 -0.24464 0.07805 - 12 0.00000 -0.00000 0.00000 -0.22146 -0.26574 0.34403 - 13 0.00000 0.00000 0.00000 -0.06545 -0.16507 -0.16972 - 14 0.00000 -0.00000 0.00000 -0.20882 0.12318 -0.03930 - 15 -0.00000 -0.00000 0.00000 0.11150 0.13380 -0.17321 - 16 -0.00000 -0.00000 0.00000 0.03517 0.08870 0.09119 - 17 -0.00000 0.00000 -0.00000 0.11221 -0.06619 0.02111 - 18 0.00000 0.00000 -0.00000 -0.05992 -0.07190 0.09307 - 19 0.00000 0.00000 -0.00000 -0.01569 -0.03957 -0.04068 - 20 0.00000 0.00000 -0.00000 -0.05006 0.02953 -0.00942 - 21 -0.00000 -0.00000 0.00000 0.02673 0.03207 -0.04151 - 22 -0.00000 0.00000 -0.00000 -0.25327 -0.63879 -0.65679 - 23 0.00000 -0.00000 0.00000 -0.80811 0.47668 -0.15207 - 24 -0.00000 0.00000 -0.00000 0.43150 0.51778 -0.67029 - 25 0.00000 -0.00000 0.00000 0.41839 1.05527 1.08488 - 26 -0.00000 -0.00000 0.00000 1.33498 -0.78747 0.25119 - 27 0.00000 -0.00000 0.00000 -0.71283 -0.85536 1.10718 - 28 0.00000 -0.00000 0.00000 -0.42358 -1.06835 -1.09821 - 29 0.00000 0.00000 0.00000 -1.35152 0.79723 -0.25427 - 30 0.00000 -0.00000 0.00000 0.72167 0.86596 -1.12079 - 31 -0.00000 -0.00000 0.00000 0.00479 0.01207 0.01241 - 32 -0.00000 -0.00000 0.00000 0.01528 -0.00901 0.00287 - 33 0.00000 0.00000 -0.00000 -0.00816 -0.00979 0.01267 - 34 -0.04462 -0.04237 -0.00014 -0.00000 0.00000 0.00000 - 35 0.00459 -0.04324 -0.00015 0.00000 0.00000 0.00000 - 36 0.19159 -0.05438 -0.00018 -0.00000 0.00000 0.00000 - 37 -0.00024 0.18675 0.00063 0.00000 0.00000 0.00000 - 38 -0.10131 -0.08659 -0.00029 -0.00000 0.00000 -0.00000 - 39 0.02700 0.02563 0.00010 0.00000 -0.00000 -0.00000 - 40 -0.00278 0.02616 0.00010 0.00000 -0.00000 -0.00000 - 41 -0.11592 0.03290 0.00012 -0.00000 -0.00000 -0.00000 - 42 0.00015 -0.11299 -0.00043 -0.00000 -0.00000 -0.00000 - 43 0.06130 0.05239 0.00020 0.00000 -0.00000 0.00000 - 44 -0.01258 -0.01194 -0.00005 -0.00000 -0.00000 0.00000 - 45 0.00130 -0.01219 -0.00005 -0.00000 0.00000 0.00000 - 46 0.05401 -0.01533 -0.00006 0.00000 0.00000 -0.00000 - 47 -0.00007 0.05265 0.00021 0.00000 0.00000 0.00000 - 48 -0.02856 -0.02441 -0.00010 -0.00000 -0.00000 -0.00000 - 49 0.11543 0.10959 0.00032 0.00000 -0.00000 -0.00000 - 50 -0.01188 0.11185 0.00032 -0.00000 -0.00000 -0.00000 - 51 -0.49561 0.14067 0.00041 0.00000 -0.00000 -0.00000 - 52 0.00063 -0.48307 -0.00140 -0.00000 0.00000 -0.00000 - 53 0.26208 0.22398 0.00065 0.00000 -0.00000 -0.00000 - 54 -0.23286 -0.22107 -0.00058 0.00000 0.00000 0.00000 - 55 0.02397 -0.22561 -0.00059 0.00000 0.00000 0.00000 - 56 0.99980 -0.28375 -0.00075 -0.00000 0.00000 0.00000 - 57 -0.00127 0.97443 0.00257 0.00000 -0.00000 -0.00000 - 58 -0.52870 -0.45181 -0.00119 -0.00000 -0.00000 -0.00000 - 59 0.00415 0.00394 0.00002 0.00000 0.00000 -0.00000 - 60 -0.00043 0.00402 0.00002 0.00000 -0.00000 0.00000 - 61 -0.01782 0.00506 0.00002 -0.00000 -0.00000 0.00000 - 62 0.00002 -0.01736 -0.00007 -0.00000 0.00000 -0.00000 - 63 0.00942 0.00805 0.00003 0.00000 0.00000 0.00000 - 64 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 65 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 66 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 67 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 68 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 69 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 70 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 71 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 72 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 73 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 74 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 75 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00001 - 76 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00001 - 77 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 78 0.00000 -0.00000 0.00000 0.00002 -0.00000 0.00001 - 79 0.00000 0.00000 -0.00000 0.00002 -0.00001 0.00001 - 80 -0.00000 0.00000 0.00000 0.00001 -0.00001 0.00001 - 81 0.00000 -0.00000 0.00000 -0.00002 -0.00002 -0.00001 - 82 0.00000 0.00000 -0.00000 0.00002 0.00002 -0.00003 - 83 0.00000 -0.00000 0.00000 -0.00000 0.00002 0.00003 - 84 -0.00000 0.00000 -0.00000 0.00000 -0.00002 -0.00001 - 85 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 86 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 87 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 88 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 89 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 90 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 91 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 92 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 93 -0.00000 -0.00001 -0.00000 0.00000 -0.00000 -0.00000 - 94 0.00000 -0.00001 -0.00000 -0.00000 -0.00000 0.00000 - 95 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 96 0.00000 0.00001 0.00000 0.00000 -0.00000 0.00000 - 97 -0.00001 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 98 0.00000 -0.00001 -0.00000 0.00000 -0.00000 0.00000 - 99 0.00000 0.00001 0.00000 0.00000 0.00000 0.00000 - 100 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 101 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 102 0.00000 0.00001 0.00000 -0.00000 0.00000 -0.00000 - 103 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 104 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 105 -0.00000 -0.00001 -0.00000 -0.00000 0.00000 0.00000 - 106 0.00001 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 107 -0.00000 0.00001 0.00000 0.00000 0.00000 -0.00000 - 108 -0.00000 -0.00001 -0.00000 -0.00000 -0.00000 -0.00000 - 109 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 1 -0.00000 0.00768 2.65525 0.00000 -0.00000 -0.00000 + 2 0.00000 0.01662 5.71558 0.00000 -0.00000 -0.00000 + 3 0.00000 0.00275 0.84704 0.00000 -0.00000 -0.00000 + 4 -0.00000 -0.00199 -0.59358 0.00000 0.00000 0.00000 + 5 0.00000 0.00098 0.28885 -0.00000 -0.00000 -0.00000 + 6 0.00000 0.01204 4.39256 0.00000 -0.00000 -0.00000 + 7 -0.00000 -0.00954 -3.72298 -0.00000 0.00000 0.00000 + 8 0.00000 0.00709 2.66421 0.00000 -0.00000 -0.00000 + 9 -0.00000 -0.00029 -0.08454 -0.00000 0.00000 0.00000 + 10 0.00000 -0.00000 0.00000 0.46434 -0.09416 -0.11609 + 11 -0.00000 -0.00000 0.00000 0.06272 -0.22107 0.43040 + 12 -0.00000 -0.00000 -0.00000 0.13566 0.42451 0.19839 + 13 -0.00000 0.00000 -0.00000 -0.23379 0.04741 0.05845 + 14 0.00000 0.00000 -0.00000 -0.03158 0.11131 -0.21670 + 15 0.00000 0.00000 0.00000 -0.06830 -0.21374 -0.09988 + 16 0.00000 -0.00000 -0.00000 0.12563 -0.02548 -0.03141 + 17 -0.00000 -0.00000 -0.00000 0.01697 -0.05981 0.11643 + 18 -0.00000 -0.00000 -0.00000 0.03670 0.11485 0.05367 + 19 -0.00000 0.00000 0.00000 -0.05604 0.01137 0.01401 + 20 0.00000 -0.00000 0.00000 -0.00757 0.02668 -0.05194 + 21 -0.00000 0.00000 -0.00000 -0.01637 -0.05124 -0.02394 + 22 -0.00000 0.00000 -0.00000 -0.90475 0.18348 0.22619 + 23 0.00000 0.00000 -0.00000 -0.12220 0.43075 -0.83858 + 24 0.00000 0.00000 0.00000 -0.26433 -0.82714 -0.38653 + 25 0.00000 -0.00000 0.00000 1.49463 -0.30310 -0.37362 + 26 0.00000 -0.00000 0.00000 0.20187 -0.71159 1.38516 + 27 -0.00000 -0.00000 -0.00000 0.43667 1.36643 0.63847 + 28 -0.00000 0.00000 0.00000 -1.51316 0.30686 0.37821 + 29 -0.00000 0.00000 -0.00000 -0.20437 0.72041 -1.40219 + 30 -0.00000 0.00000 -0.00000 -0.44208 -1.38336 -0.64632 + 31 0.00000 -0.00000 -0.00000 0.01710 -0.00347 -0.00427 + 32 -0.00000 0.00000 -0.00000 0.00231 -0.00814 0.01585 + 33 0.00000 -0.00000 0.00000 0.00500 0.01564 0.00731 + 34 0.06398 -0.08046 0.00027 0.00000 0.00000 -0.00000 + 35 0.14488 0.13750 -0.00046 0.00000 -0.00000 0.00000 + 36 0.14116 -0.05579 0.00019 -0.00000 -0.00000 -0.00000 + 37 0.02681 0.03709 -0.00013 -0.00000 0.00000 0.00000 + 38 0.05706 -0.13830 0.00047 -0.00000 -0.00000 -0.00000 + 39 -0.03871 0.04868 -0.00018 -0.00000 -0.00000 0.00000 + 40 -0.08766 -0.08319 0.00031 -0.00000 0.00000 -0.00000 + 41 -0.08541 0.03375 -0.00013 -0.00000 0.00000 0.00000 + 42 -0.01622 -0.02244 0.00008 0.00000 -0.00000 -0.00000 + 43 -0.03453 0.08368 -0.00032 0.00000 -0.00000 0.00000 + 44 0.01804 -0.02268 0.00009 0.00000 0.00000 -0.00000 + 45 0.04084 0.03876 -0.00016 0.00000 -0.00000 0.00000 + 46 0.03980 -0.01573 0.00006 -0.00000 -0.00000 0.00000 + 47 0.00756 0.01046 -0.00004 0.00000 0.00000 0.00000 + 48 0.01609 -0.03899 0.00016 -0.00000 0.00000 -0.00000 + 49 -0.16551 0.20813 -0.00060 0.00000 -0.00000 0.00000 + 50 -0.37477 -0.35567 0.00103 -0.00000 0.00000 0.00000 + 51 -0.36515 0.14431 -0.00042 0.00000 0.00000 0.00000 + 52 -0.06936 -0.09593 0.00028 0.00000 -0.00000 -0.00000 + 53 -0.14761 0.35774 -0.00104 0.00000 0.00000 0.00000 + 54 0.33389 -0.41984 0.00111 -0.00000 0.00000 0.00000 + 55 0.75603 0.71745 -0.00189 -0.00000 -0.00000 -0.00000 + 56 0.73663 -0.29109 0.00077 -0.00000 -0.00000 -0.00000 + 57 0.13992 0.19352 -0.00051 -0.00000 0.00000 0.00000 + 58 0.29778 -0.72163 0.00190 -0.00000 -0.00000 -0.00000 + 59 -0.00595 0.00748 -0.00003 -0.00000 -0.00000 0.00000 + 60 -0.01347 -0.01278 0.00005 -0.00000 0.00000 -0.00000 + 61 -0.01313 0.00519 -0.00002 0.00000 0.00000 -0.00000 + 62 -0.00249 -0.00345 0.00001 -0.00000 -0.00000 0.00000 + 63 -0.00531 0.01286 -0.00005 -0.00000 -0.00000 -0.00000 + 64 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 65 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 66 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 67 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 68 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 69 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 70 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 71 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 72 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 73 -0.00000 0.00000 -0.00000 -0.00000 -0.00001 0.00000 + 74 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 75 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 76 0.00000 0.00000 0.00000 0.00000 0.00000 0.00001 + 77 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 78 0.00000 -0.00000 -0.00000 -0.00002 0.00002 -0.00002 + 79 0.00000 -0.00000 -0.00000 0.00002 -0.00001 -0.00002 + 80 0.00000 -0.00000 0.00000 0.00001 0.00003 -0.00000 + 81 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00002 + 82 -0.00000 -0.00000 -0.00000 0.00000 0.00001 -0.00000 + 83 0.00000 -0.00000 0.00000 -0.00001 -0.00001 -0.00003 + 84 0.00000 -0.00000 0.00000 0.00002 0.00000 -0.00002 + 85 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 86 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 87 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 88 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 89 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 90 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 91 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 92 -0.00000 0.00001 -0.00000 -0.00000 -0.00000 0.00000 + 93 -0.00000 -0.00001 0.00000 -0.00000 -0.00000 -0.00000 + 94 -0.00001 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 95 0.00000 -0.00001 0.00000 0.00000 -0.00000 -0.00000 + 96 -0.00001 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 97 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 98 -0.00001 -0.00000 0.00000 0.00000 0.00000 0.00000 + 99 -0.00000 -0.00001 0.00000 0.00000 0.00000 -0.00000 + 100 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 101 0.00000 -0.00001 0.00000 0.00000 0.00000 -0.00000 + 102 0.00000 0.00001 -0.00000 0.00000 0.00000 0.00000 + 103 0.00001 0.00000 -0.00000 0.00000 0.00000 0.00000 + 104 -0.00000 0.00001 -0.00000 0.00000 0.00000 0.00000 + 105 0.00001 0.00000 -0.00000 0.00000 0.00000 0.00000 + 106 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 107 0.00001 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 108 0.00000 0.00001 -0.00000 0.00000 -0.00000 0.00000 + 109 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 109 ----------- 1 68.41115 - 2 43.11206 + 2 43.11205 3 -0.26095 4 0.20574 5 -0.10418 - 6 -13.88035 + 6 -13.88036 7 -7.95673 8 -7.23281 9 0.03094 @@ -3347,112 +3359,112 @@ 12 -0.00000 13 0.00000 14 0.00000 - 15 0.00000 - 16 0.00000 + 15 -0.00000 + 16 -0.00000 17 -0.00000 - 18 -0.00000 - 19 -0.00000 + 18 0.00000 + 19 0.00000 20 0.00000 - 21 0.00000 + 21 -0.00000 22 0.00000 23 0.00000 - 24 0.00000 - 25 -0.00000 + 24 -0.00000 + 25 0.00000 26 -0.00000 27 0.00000 - 28 -0.00000 + 28 0.00000 29 0.00000 30 -0.00000 - 31 0.00000 + 31 -0.00000 32 -0.00000 33 0.00000 - 34 0.00000 - 35 0.00000 - 36 0.00000 - 37 -0.00001 - 38 0.00001 - 39 -0.00000 - 40 -0.00000 - 41 -0.00000 - 42 0.00001 - 43 -0.00001 - 44 0.00000 - 45 0.00000 - 46 0.00000 - 47 -0.00001 - 48 0.00000 - 49 -0.00000 - 50 -0.00000 - 51 -0.00000 - 52 0.00002 - 53 -0.00001 - 54 0.00000 - 55 0.00000 - 56 0.00000 - 57 -0.00001 - 58 0.00001 - 59 -0.00000 + 34 -0.00001 + 35 0.00001 + 36 -0.00000 + 37 0.00000 + 38 -0.00001 + 39 0.00001 + 40 -0.00001 + 41 0.00000 + 42 -0.00000 + 43 0.00001 + 44 -0.00000 + 45 0.00001 + 46 -0.00000 + 47 0.00000 + 48 -0.00001 + 49 0.00001 + 50 -0.00001 + 51 0.00000 + 52 -0.00000 + 53 0.00001 + 54 -0.00001 + 55 0.00001 + 56 -0.00000 + 57 0.00000 + 58 -0.00001 + 59 0.00000 60 -0.00000 - 61 -0.00000 - 62 0.00000 - 63 -0.00000 + 61 0.00000 + 62 -0.00000 + 63 0.00000 64 -0.00000 - 65 -0.00000 + 65 0.00000 66 -0.00000 67 0.00000 - 68 -0.00000 - 69 0.00000 - 70 -0.00000 + 68 0.00000 + 69 -0.00000 + 70 0.00000 71 0.00000 - 72 0.00000 + 72 -0.00000 73 0.00000 74 -0.00000 75 -0.00000 76 0.00000 - 77 0.00000 + 77 -0.00000 78 -0.00000 79 -0.00000 - 80 -0.00000 - 81 0.00000 - 82 -0.00000 - 83 0.00000 - 84 -0.00000 + 80 0.00000 + 81 -0.00000 + 82 0.00000 + 83 -0.00000 + 84 0.00000 85 -0.00000 86 0.00000 87 -0.00000 88 0.00000 89 0.00000 90 -0.00000 - 91 -0.00000 + 91 0.00000 92 0.00000 - 93 0.00000 - 94 0.00000 - 95 0.00000 + 93 -0.00000 + 94 -0.00000 + 95 -0.00000 96 -0.00000 97 -0.00000 - 98 0.00000 + 98 -0.00000 99 -0.00000 100 0.00000 101 -0.00000 - 102 -0.00000 - 103 -0.00000 - 104 -0.00000 + 102 0.00000 + 103 0.00000 + 104 0.00000 105 0.00000 106 0.00000 - 107 -0.00000 + 107 0.00000 108 0.00000 109 -0.00000 center of mass -------------- - x = 0.00000000 y = 0.00000000 z = 0.00000000 + x = 0.00000000 y = -0.00000000 z = 0.00000000 moments of inertia (a.u.) ------------------ 0.000000000000 0.000000000000 0.000000000000 0.000000000000 0.000000000000 0.000000000000 0.000000000000 0.000000000000 0.000000000000 - + Mulliken analysis of the total density -------------------------------------- @@ -3460,27 +3472,36 @@ ----------- ------ ------------------------------------------------------- 1 C 6 6.00 1.99 -0.03 0.44 1.13 0.48 0.00 -0.00 0.00 0.00 0.18 0.55 0.83 0.43 0.00 -0.00 0.00 0.02 0.00 -0.00 0.00 0.00 -0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 - + Multipole analysis of the density wrt the origin ------------------------------------------------ - + L x y z total open nuclear - - - - ----- ---- ------- 0 0 0 0 -0.000000 0.000000 6.000000 - - 1 1 0 0 -0.000000 0.000000 0.000000 - 1 0 1 0 -0.000000 0.000000 0.000000 - 1 0 0 1 0.000000 0.000000 0.000000 - - 2 2 0 0 -5.356399 0.000000 0.000000 - 2 1 1 0 -0.367062 0.000000 0.000000 - 2 1 0 1 -1.617944 0.000000 0.000000 - 2 0 2 0 -3.856037 0.000000 0.000000 - 2 0 1 1 -0.374609 0.000000 0.000000 - 2 0 0 2 -5.422258 0.000000 0.000000 - - - Task times cpu: 6.0s wall: 6.0s + + 1 1 0 0 0.000000 0.000000 0.000000 + 1 0 1 0 -0.000000 0.000000 -0.000000 + 1 0 0 1 -0.000000 0.000000 0.000000 + + 2 2 0 0 -3.959077 0.000000 0.000000 + 2 1 1 0 0.697097 0.000000 0.000000 + 2 1 0 1 0.321315 0.000000 0.000000 + 2 0 2 0 -6.355481 0.000000 0.000000 + 2 0 1 1 -1.191250 0.000000 0.000000 + 2 0 0 2 -4.320136 0.000000 0.000000 + + + Parallel integral file used 45 records with 0 large values + + + Task times cpu: 1.0s wall: 1.2s + + + NWChem Input Module + ------------------- + + Summary of allocated global arrays ----------------------------------- No active global arrays @@ -3491,11 +3512,12 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 181 181 6240 4017 3241 0 0 262 -number of processes/call -1.13e+15 6.15e+13 1.80e+15 0.00e+00 0.00e+00 -bytes total: 2.29e+07 1.46e+07 2.74e+06 0.00e+00 0.00e+00 2.10e+03 -bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 1235624 bytes +calls: 173 173 3084 1894 1828 0 0 74 +number of processes/call 1.17e+15 1.98e+13 3.62e+12 0.00e+00 0.00e+00 +bytes total: 1.58e+07 6.27e+06 2.52e+06 0.00e+00 0.00e+00 5.92e+02 +bytes remote: 5.16e+06 4.60e+05 3.85e+05 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 746232 bytes + MA_summarize_allocated_blocks: starting scan ... MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: @@ -3504,51 +3526,26 @@ MA usage statistics: heap stack ---- ----- current number of blocks 0 0 - maximum number of blocks 16 14 + maximum number of blocks 17 14 current total bytes 0 0 - maximum total bytes 80120 42712952 - maximum total K-bytes 81 42713 - maximum total M-bytes 1 43 - - - NWChem Input Module - ------------------- - - - - - + maximum total bytes 73949288 42712952 + maximum total K-bytes 73950 42713 + maximum total M-bytes 74 43 + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, - V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, - J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, - J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, - C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, - K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, - J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, - V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, - B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, - S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, - A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, - D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, - J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, - A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, - R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, - D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, - V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, - Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, - D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, - A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, - and R. J. Harrison - "NWChem: Past, present, and future - J. Chem. Phys. 152, 184102 (2020) - doi:10.1063/5.0004997 - + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -3571,4 +3568,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 6.0s wall: 6.0s + Total times cpu: 1.1s wall: 1.2s diff --git a/data/NWChem/basicNWChem7.0/Trp_polar.out b/data/NWChem/basicNWChem7.0/Trp_polar.out index 45167b4c3..a6e145c18 100644 --- a/data/NWChem/basicNWChem7.0/Trp_polar.out +++ b/data/NWChem/basicNWChem7.0/Trp_polar.out @@ -1,5 +1,5 @@ argument 1 = Trp_polar.in - + ============================== echo of input deck ============================== @@ -56,26 +56,26 @@ task scf property - - - Northwest Computational Chemistry Package (NWChem) 7.0.2 + + + Northwest Computational Chemistry Package (NWChem) 7.0.0 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2020 + + Copyright (c) 1994-2019 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -91,21 +91,21 @@ task scf property Job information --------------- - hostname = osmium - program = nwchem - date = Sat Jun 4 13:34:13 2022 + hostname = smp-n17.sam.pitt.edu + program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem + date = Tue Sep 20 18:27:17 2022 - compiled = Fri_Jul_02_16:33:00_2021 - source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src - nwchem branch = 7.0.2 - nwchem revision = b9985dfa - ga revision = 5.7.2 - use scalapack = T + compiled = Wed_May_13_13:33:26_2020 + source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 + nwchem branch = 7.0.0 + nwchem revision = N/A + ga revision = 5.7.1 + use scalapack = F input = Trp_polar.in prefix = Trp_polar. data base = ./Trp_polar.db status = startup - nproc = 1 + nproc = 4 time left = -1s @@ -113,41 +113,41 @@ task scf property Memory information ------------------ - heap = 13107198 doubles = 100.0 Mbytes - stack = 13107195 doubles = 100.0 Mbytes + heap = 13107200 doubles = 100.0 Mbytes + stack = 13107197 doubles = 100.0 Mbytes global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) - total = 52428793 doubles = 400.0 Mbytes + total = 52428797 doubles = 400.0 Mbytes verify = yes hardfail = no Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + Scaling coordinates for geometry "geometry" by 1.889725989 (inverse scale = 0.529177249) Turning off AUTOSYM since SYMMETRY directive was detected! - - - + + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 N 7.0000 -0.06998269 0.33219872 0.28212832 @@ -177,15 +177,15 @@ task scf property 25 H 1.0000 -0.53022787 -0.58239897 0.40845076 26 O 8.0000 1.45758467 0.59968873 2.40935003 27 H 1.0000 0.59900153 0.88424212 2.00478305 - + Atomic Mass ----------- - + N 14.003070 C 12.000000 O 15.994910 H 1.007825 - + Effective nuclear repulsion energy (a.u.) 957.1064036872 @@ -194,8 +194,8 @@ task scf property X Y Z ---------------- ---------------- ---------------- 676.9309203764 54.4484313070 -224.6487895865 - - + + XYZ format geometry ------------------- 27 @@ -208,7 +208,7 @@ task scf property H 1.84427273 2.20506050 -0.18016318 H 1.34558999 1.45949350 -1.68856895 C 3.40536469 1.12706118 -1.19180752 - C 4.48452497 1.62350381 -0.55989180 + C 4.48452497 1.62350380 -0.55989180 N 5.65090896 1.23793264 -1.22846107 H 6.60093143 1.41123510 -0.90286294 C 5.29216196 0.43562743 -2.31316170 @@ -227,7 +227,7 @@ task scf property H -0.53022787 -0.58239897 0.40845076 O 1.45758467 0.59968873 2.40935003 H 0.59900153 0.88424212 2.00478305 - + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -324,9 +324,6 @@ task scf property - library name resolved from: environment - library file name is: - Summary of "ao basis" -> "" (cartesian) @@ -338,8 +335,8 @@ task scf property NWChem Property Module ---------------------- - - + + Basis "ao basis" -> "ao basis" (cartesian) ----- N (Nitrogen) @@ -349,15 +346,15 @@ task scf property 1 S 9.91061690E+01 0.154329 1 S 1.80523120E+01 0.535328 1 S 4.88566020E+00 0.444635 - + 2 S 3.78045590E+00 -0.099967 2 S 8.78496600E-01 0.399513 2 S 2.85714400E-01 0.700115 - + 3 P 3.78045590E+00 0.155916 3 P 8.78496600E-01 0.607684 3 P 2.85714400E-01 0.391957 - + C (Carbon) ---------- Exponent Coefficients @@ -365,15 +362,15 @@ task scf property 1 S 7.16168370E+01 0.154329 1 S 1.30450960E+01 0.535328 1 S 3.53051220E+00 0.444635 - + 2 S 2.94124940E+00 -0.099967 2 S 6.83483100E-01 0.399513 2 S 2.22289900E-01 0.700115 - + 3 P 2.94124940E+00 0.155916 3 P 6.83483100E-01 0.607684 3 P 2.22289900E-01 0.391957 - + O (Oxygen) ---------- Exponent Coefficients @@ -381,15 +378,15 @@ task scf property 1 S 1.30709320E+02 0.154329 1 S 2.38088610E+01 0.535328 1 S 6.44360830E+00 0.444635 - + 2 S 5.03315130E+00 -0.099967 2 S 1.16959610E+00 0.399513 2 S 3.80389000E-01 0.700115 - + 3 P 5.03315130E+00 0.155916 3 P 1.16959610E+00 0.607684 3 P 3.80389000E-01 0.391957 - + H (Hydrogen) ------------ Exponent Coefficients @@ -397,7 +394,7 @@ task scf property 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + Summary of "ao basis" -> "ao basis" (cartesian) @@ -412,8 +409,8 @@ task scf property NWChem SCF Module ----------------- - - + + ao basis = "ao basis" functions = 87 @@ -441,12 +438,12 @@ task scf property Forming initial guess at 0.1s - + Superposition of Atomic Density Guess ------------------------------------- - + Sum of atomic energies: -669.34767099 - + Non-variational initial energy ------------------------------ @@ -455,9 +452,9 @@ task scf property 2-e energy = 1196.263827 HOMO = -0.025644 LUMO = 0.219320 + - - Starting SCF solution at 0.9s + Starting SCF solution at 0.4s @@ -470,25 +467,37 @@ task scf property ---------------------------------------------- + Integral file = ./Trp_polar.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 59 Max. records in file = 507871 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 8.876D+05 #integrals = 5.254D+06 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 4 moved= 16 time= 0.0 + + iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -673.3333996734 1.65D+00 4.34D-01 4.0 - 2 -673.5579531919 5.23D-01 9.82D-02 10.4 - 3 -673.5901147188 4.41D-02 1.96D-02 16.9 - 4 -673.5905709876 9.27D-04 3.18D-04 26.3 - 5 -673.5905711122 4.29D-07 2.12D-07 44.2 - 6 -673.5905711122 8.62D-11 1.54D-11 60.9 + 1 -673.3333996737 1.65D+00 4.34D-01 1.8 + 2 -673.5579531920 5.23D-01 9.82D-02 1.9 + 3 -673.5901146604 4.41D-02 1.96D-02 2.0 + 4 -673.5905709880 9.27D-04 3.19D-04 2.1 + 5 -673.5905711125 4.29D-07 2.12D-07 2.3 + 6 -673.5905711125 8.40D-11 1.57D-11 2.6 Final RHF results ------------------ - Total SCF energy = -673.590571112173 - One-electron energy = -2824.796309163842 - Two-electron energy = 1194.099334364422 - Nuclear repulsion energy = 957.106403687247 + Total SCF energy = -673.590571112546 + One-electron energy = -2824.796309158328 + Two-electron energy = 1194.099334358534 + Nuclear repulsion energy = 957.106403687248 - Time for solution = 60.1s + Time for solution = 2.1s Final eigenvalues @@ -559,17 +568,17 @@ task scf property 62 0.5686 63 0.5784 64 0.6126 - + ROHF Final Molecular Orbital Analysis ------------------------------------- - + Vector 16 Occ=2.000000D+00 E=-1.347680D+00 MO Center= 2.1D+00, 1.4D-02, 1.8D+00, r^2= 1.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 83 0.531215 26 O s 17 0.498667 4 O s 12 0.316154 3 C s 82 -0.150376 26 O s - + Vector 17 Occ=2.000000D+00 E=-1.257839D+00 MO Center= 2.1D+00, 3.0D-02, 1.8D+00, r^2= 1.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -577,21 +586,21 @@ task scf property 83 -0.601122 26 O s 17 0.575285 4 O s 13 0.170404 3 C px 82 0.165880 26 O s 16 -0.163653 4 O s - + Vector 18 Occ=2.000000D+00 E=-1.219988D+00 MO Center= 5.2D+00, 1.1D+00, -1.4D+00, r^2= 1.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.575738 10 N s 45 0.240490 12 C s 34 0.224719 9 C s 38 -0.178031 10 N s - + Vector 19 Occ=2.000000D+00 E=-1.153790D+00 MO Center= 3.5D-01, 2.5D-01, 1.2D-01, r^2= 1.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.642899 1 N s 7 0.295156 2 C s 1 -0.192010 1 N s 83 -0.156776 26 O s - + Vector 20 Occ=2.000000D+00 E=-1.074547D+00 MO Center= 4.7D+00, -2.5D-01, -3.2D+00, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -600,7 +609,7 @@ task scf property 55 0.274831 14 C s 73 0.245285 20 C s 39 -0.239637 10 N s 50 0.218933 13 C s 45 0.154581 12 C s - + Vector 21 Occ=2.000000D+00 E=-1.025525D+00 MO Center= 3.3D+00, 8.9D-01, -1.2D+00, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -609,7 +618,7 @@ task scf property 39 -0.238179 10 N s 2 -0.214051 1 N s 50 0.172242 13 C s 34 0.159961 9 C s 73 -0.154572 20 C s - + Vector 22 Occ=2.000000D+00 E=-9.592735D-01 MO Center= 3.5D+00, 1.5D-01, -2.1D+00, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -618,7 +627,7 @@ task scf property 55 -0.277279 14 C s 50 -0.233848 13 C s 7 0.216453 2 C s 67 0.212467 18 C s 2 -0.209225 1 N s - + Vector 23 Occ=2.000000D+00 E=-9.367758D-01 MO Center= 4.5D+00, -1.6D-03, -2.8D+00, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -626,7 +635,7 @@ task scf property 61 0.363784 16 C s 45 -0.316245 12 C s 39 0.241637 10 N s 50 -0.229010 13 C s 73 -0.194785 20 C s 55 0.186911 14 C s - + Vector 24 Occ=2.000000D+00 E=-9.133381D-01 MO Center= 3.9D+00, 4.9D-01, -1.6D+00, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -635,7 +644,7 @@ task scf property 7 -0.236270 2 C s 29 0.231264 8 C s 55 -0.197754 14 C s 45 -0.173508 12 C s 2 0.168680 1 N s 39 -0.159444 10 N s - + Vector 25 Occ=2.000000D+00 E=-8.376413D-01 MO Center= 2.0D+00, 6.0D-01, -2.3D-01, r^2= 4.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -643,7 +652,7 @@ task scf property 7 0.366757 2 C s 22 -0.353749 5 C s 12 0.243104 3 C s 17 -0.179285 4 O s 27 -0.153456 7 H s - + Vector 26 Occ=2.000000D+00 E=-7.830515D-01 MO Center= 4.7D+00, 1.2D-01, -2.7D+00, r^2= 5.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -652,7 +661,7 @@ task scf property 34 0.245928 9 C s 61 -0.205605 16 C s 67 -0.171985 18 C s 78 0.157696 22 H s 42 0.152741 10 N pz - + Vector 27 Occ=2.000000D+00 E=-7.493745D-01 MO Center= 4.6D+00, 5.8D-02, -2.8D+00, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -662,7 +671,7 @@ task scf property 58 -0.177226 14 C pz 76 0.174157 20 C pz 34 0.164559 9 C s 71 -0.161044 19 H s 43 -0.156197 11 H s - + Vector 28 Occ=2.000000D+00 E=-7.105980D-01 MO Center= 4.0D+00, 6.4D-01, -1.6D+00, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -671,7 +680,7 @@ task scf property 34 -0.184522 9 C s 23 0.177277 5 C px 40 0.171372 10 N px 35 -0.170195 9 C px 78 -0.158062 22 H s - + Vector 29 Occ=2.000000D+00 E=-6.926341D-01 MO Center= 1.9D+00, 2.2D-01, 9.7D-01, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -681,7 +690,7 @@ task scf property 83 -0.204994 26 O s 10 0.194175 2 C pz 80 -0.193384 24 H s 7 -0.182036 2 C s 85 -0.182378 26 O py 86 -0.170177 26 O pz - + Vector 30 Occ=2.000000D+00 E=-6.691635D-01 MO Center= 4.1D+00, 4.8D-01, -1.6D+00, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -690,7 +699,7 @@ task scf property 59 -0.176520 15 H s 68 -0.164864 18 C px 29 0.160693 8 C s 23 0.159415 5 C px 56 0.156672 14 C px 55 -0.152715 14 C s - + Vector 31 Occ=2.000000D+00 E=-6.483890D-01 MO Center= 1.7D+00, 3.3D-01, 3.8D-01, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -700,7 +709,7 @@ task scf property 80 -0.230715 24 H s 5 0.214878 1 N pz 26 0.166665 6 H s 83 -0.157332 26 O s 24 0.150933 5 C py - + Vector 32 Occ=2.000000D+00 E=-6.168923D-01 MO Center= 1.3D+00, 3.2D-01, -3.9D-01, r^2= 7.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -708,7 +717,7 @@ task scf property 4 0.392993 1 N py 81 -0.349041 25 H s 79 0.235936 23 H s 9 0.227275 2 C py 5 -0.187064 1 N pz 40 0.174520 10 N px - + Vector 33 Occ=2.000000D+00 E=-6.023242D-01 MO Center= 4.7D+00, 2.2D-01, -2.5D+00, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -718,7 +727,7 @@ task scf property 45 0.215779 12 C s 42 -0.177068 10 N pz 69 -0.174352 18 C py 56 -0.169329 14 C px 36 0.150070 9 C py - + Vector 34 Occ=2.000000D+00 E=-5.983567D-01 MO Center= 3.8D+00, 1.1D-01, -2.4D+00, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -727,7 +736,7 @@ task scf property 64 -0.215759 16 C pz 77 0.204245 21 H s 32 -0.191465 8 C pz 74 0.191526 20 C px 35 0.178966 9 C px 27 0.150281 7 H s - + Vector 35 Occ=2.000000D+00 E=-5.807631D-01 MO Center= 1.7D+00, 2.5D-01, 2.0D-01, r^2= 5.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -736,7 +745,7 @@ task scf property 79 -0.251506 23 H s 20 0.243816 4 O pz 15 0.230001 3 C pz 17 0.221736 4 O s 35 -0.166804 9 C px 12 -0.152341 3 C s - + Vector 36 Occ=2.000000D+00 E=-5.564603D-01 MO Center= 3.2D+00, 4.0D-01, -1.4D+00, r^2= 9.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -746,7 +755,7 @@ task scf property 56 0.194241 14 C px 4 -0.176237 1 N py 59 -0.168891 15 H s 26 0.167040 6 H s 81 0.157362 25 H s - + Vector 37 Occ=2.000000D+00 E=-5.428143D-01 MO Center= 3.9D+00, 1.3D-01, -2.0D+00, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -756,7 +765,7 @@ task scf property 47 -0.212804 12 C py 77 -0.212948 21 H s 53 0.174499 13 C pz 14 0.156000 3 C py 31 -0.155101 8 C py - + Vector 38 Occ=2.000000D+00 E=-5.368602D-01 MO Center= 4.1D+00, 2.0D-01, -2.0D+00, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -765,7 +774,7 @@ task scf property 68 0.241772 18 C px 46 -0.238330 12 C px 40 0.232331 10 N px 43 0.202815 11 H s 24 0.178602 5 C py 58 -0.161623 14 C pz - + Vector 39 Occ=2.000000D+00 E=-5.240885D-01 MO Center= 4.0D+00, 6.4D-01, -1.3D+00, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -775,7 +784,7 @@ task scf property 27 -0.178813 7 H s 14 0.165023 3 C py 47 0.164298 12 C py 75 0.156897 20 C py 85 0.151297 26 O py - + Vector 40 Occ=2.000000D+00 E=-5.177421D-01 MO Center= 3.6D+00, 5.8D-01, -1.2D+00, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -785,7 +794,7 @@ task scf property 36 -0.197463 9 C py 18 -0.193903 4 O px 58 0.193257 14 C pz 14 -0.192070 3 C py 76 0.192914 20 C pz 47 -0.183427 12 C py - + Vector 41 Occ=2.000000D+00 E=-4.979350D-01 MO Center= 2.3D+00, 8.1D-02, 9.2D-01, r^2= 4.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -795,7 +804,7 @@ task scf property 18 -0.252297 4 O px 23 -0.188956 5 C px 86 0.172514 26 O pz 79 -0.170958 23 H s 20 -0.154188 4 O pz - + Vector 42 Occ=2.000000D+00 E=-4.871602D-01 MO Center= 2.7D+00, 5.4D-01, -2.1D-01, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -805,7 +814,7 @@ task scf property 30 0.250408 8 C px 23 -0.246383 5 C px 17 0.182842 4 O s 85 0.177600 26 O py 25 -0.174829 5 C pz 3 -0.163556 1 N px - + Vector 43 Occ=2.000000D+00 E=-4.787739D-01 MO Center= 4.0D+00, 2.3D-01, -2.0D+00, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -815,7 +824,7 @@ task scf property 48 -0.198400 12 C pz 78 -0.188058 22 H s 68 0.168797 18 C px 37 -0.162765 9 C pz 41 0.162051 10 N py 32 0.153723 8 C pz - + Vector 44 Occ=2.000000D+00 E=-4.597271D-01 MO Center= 2.3D+00, 4.6D-01, -2.5D-01, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -825,7 +834,7 @@ task scf property 24 0.223691 5 C py 3 0.214039 1 N px 8 -0.208680 2 C px 84 0.208861 26 O px 25 -0.173655 5 C pz 81 -0.171811 25 H s - + Vector 45 Occ=2.000000D+00 E=-4.446253D-01 MO Center= 3.0D+00, -8.3D-02, -6.4D-01, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -835,7 +844,7 @@ task scf property 87 -0.225135 27 H s 19 -0.213269 4 O py 58 -0.196845 14 C pz 53 0.188777 13 C pz 84 0.184974 26 O px 64 0.181991 16 C pz - + Vector 46 Occ=2.000000D+00 E=-4.384767D-01 MO Center= 3.0D+00, 4.3D-02, -8.4D-01, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -845,7 +854,7 @@ task scf property 19 -0.203332 4 O py 53 -0.193604 13 C pz 87 -0.190988 27 H s 64 -0.174072 16 C pz 80 -0.168383 24 H s 58 0.164333 14 C pz - + Vector 47 Occ=2.000000D+00 E=-4.166885D-01 MO Center= 4.6D+00, -4.0D-02, -2.9D+00, r^2= 4.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -855,7 +864,7 @@ task scf property 42 -0.248905 10 N pz 64 0.234031 16 C pz 36 0.204013 9 C py 75 -0.196376 20 C py 70 0.189343 18 C pz 76 0.168679 20 C pz - + Vector 48 Occ=2.000000D+00 E=-4.139122D-01 MO Center= 4.2D+00, 1.6D-01, -2.6D+00, r^2= 5.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -865,7 +874,7 @@ task scf property 77 -0.225661 21 H s 74 -0.216315 20 C px 56 0.205514 14 C px 68 0.206529 18 C px 32 -0.192868 8 C pz 31 -0.171550 8 C py - + Vector 49 Occ=2.000000D+00 E=-3.697146D-01 MO Center= 4.1D-01, 3.3D-01, 5.5D-01, r^2= 2.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -874,7 +883,7 @@ task scf property 2 0.347199 1 N s 86 0.225787 26 O pz 80 0.210220 24 H s 20 0.199290 4 O pz 84 0.184432 26 O px 8 0.178807 2 C px - + Vector 50 Occ=2.000000D+00 E=-3.285250D-01 MO Center= 2.3D+00, 3.5D-02, 1.8D+00, r^2= 2.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -882,7 +891,7 @@ task scf property 85 0.616644 26 O py 19 -0.493844 4 O py 18 -0.330309 4 O px 84 0.314412 26 O px 14 -0.237817 3 C py 86 -0.183903 26 O pz - + Vector 51 Occ=2.000000D+00 E=-3.256203D-01 MO Center= 4.1D+00, 2.8D-01, -1.8D+00, r^2= 6.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -892,7 +901,7 @@ task scf property 57 0.258203 14 C py 41 -0.239235 10 N py 32 -0.214577 8 C pz 76 0.204092 20 C pz 69 -0.190378 18 C py 53 -0.187738 13 C pz - + Vector 52 Occ=2.000000D+00 E=-3.067447D-01 MO Center= 2.5D+00, -1.7D-01, 8.7D-01, r^2= 4.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -900,7 +909,7 @@ task scf property 20 0.709893 4 O pz 86 0.326399 26 O pz 10 0.322260 2 C pz 5 -0.207859 1 N pz 19 0.166542 4 O py 15 -0.159921 3 C pz - + Vector 53 Occ=2.000000D+00 E=-2.425861D-01 MO Center= 4.7D+00, 9.2D-02, -2.8D+00, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -910,7 +919,7 @@ task scf property 64 0.266746 16 C pz 48 -0.259657 12 C pz 53 -0.243942 13 C pz 36 -0.239938 9 C py 69 -0.227043 18 C py 42 0.187382 10 N pz - + Vector 54 Occ=2.000000D+00 E=-2.256687D-01 MO Center= 4.4D+00, 5.0D-01, -2.1D+00, r^2= 4.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -920,7 +929,7 @@ task scf property 75 0.286252 20 C py 32 -0.269095 8 C pz 69 0.259737 18 C py 42 0.224364 10 N pz 58 0.214954 14 C pz 37 -0.213374 9 C pz - + Vector 55 Occ=0.000000D+00 E= 2.475766D-01 MO Center= 4.6D+00, 1.2D-01, -2.7D+00, r^2= 4.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -930,7 +939,7 @@ task scf property 58 -0.309775 14 C pz 76 -0.303073 20 C pz 37 -0.277856 9 C pz 52 -0.278937 13 C py 70 0.265108 18 C pz 31 -0.222438 8 C py - + Vector 56 Occ=0.000000D+00 E= 2.951862D-01 MO Center= 4.6D+00, -1.9D-01, -3.2D+00, r^2= 3.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -940,7 +949,7 @@ task scf property 69 -0.317449 18 C py 52 -0.287299 13 C py 57 -0.267859 14 C py 41 -0.266365 10 N py 70 0.223096 18 C pz 53 0.198024 13 C pz - + Vector 57 Occ=0.000000D+00 E= 3.185100D-01 MO Center= 2.4D+00, -1.8D-01, 1.3D+00, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -949,7 +958,7 @@ task scf property 13 0.425053 3 C px 18 -0.354980 4 O px 85 -0.267010 26 O py 22 -0.164990 5 C s 24 0.156215 5 C py - + Vector 58 Occ=0.000000D+00 E= 3.694396D-01 MO Center= 4.1D+00, 8.1D-01, -1.5D+00, r^2= 4.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -959,7 +968,7 @@ task scf property 75 0.294818 20 C py 52 -0.293003 13 C py 69 -0.279242 18 C py 41 0.244639 10 N py 76 -0.212294 20 C pz 53 0.196315 13 C pz - + Vector 59 Occ=0.000000D+00 E= 5.218495D-01 MO Center= 4.3D+00, -1.3D-01, -2.9D+00, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -969,7 +978,7 @@ task scf property 75 0.392818 20 C py 69 -0.378240 18 C py 48 0.319386 12 C pz 58 0.298045 14 C pz 53 -0.295246 13 C pz 64 -0.271675 16 C pz - + Vector 60 Occ=0.000000D+00 E= 5.335973D-01 MO Center= 3.1D+00, 7.0D-01, -6.4D-01, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -979,7 +988,7 @@ task scf property 29 0.352447 8 C s 23 -0.347754 5 C px 81 0.342335 25 H s 30 -0.299770 8 C px 22 -0.274527 5 C s 80 0.252485 24 H s - + Vector 61 Occ=0.000000D+00 E= 5.609849D-01 MO Center= 1.8D+00, 4.5D-01, -2.5D-01, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -989,7 +998,7 @@ task scf property 15 -0.386258 3 C pz 39 0.342852 10 N s 26 0.324185 6 H s 27 -0.321314 7 H s 25 -0.318304 5 C pz 7 -0.254967 2 C s - + Vector 62 Occ=0.000000D+00 E= 5.685727D-01 MO Center= 3.4D+00, 5.4D-01, -4.4D-01, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -999,7 +1008,7 @@ task scf property 2 0.418086 1 N s 86 -0.324258 26 O pz 45 -0.317743 12 C s 83 0.277927 26 O s 81 -0.248320 25 H s 48 -0.243210 12 C pz - + Vector 63 Occ=0.000000D+00 E= 5.783672D-01 MO Center= 3.8D+00, 1.8D-01, -2.2D+00, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -1009,7 +1018,7 @@ task scf property 59 0.374774 15 H s 77 0.350689 21 H s 2 -0.324310 1 N s 45 -0.324004 12 C s 79 0.319563 23 H s 32 -0.310503 8 C pz - + Vector 64 Occ=0.000000D+00 E= 6.125769D-01 MO Center= 1.5D+00, 3.4D-01, -1.1D-01, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function @@ -1019,7 +1028,7 @@ task scf property 4 0.426605 1 N py 83 0.424471 26 O s 79 -0.375980 23 H s 12 -0.353987 3 C s 86 -0.308007 26 O pz 80 0.292355 24 H s - + center of mass -------------- @@ -1027,10 +1036,10 @@ task scf property moments of inertia (a.u.) ------------------ - 3632.777476380601 79.377236132538 1748.558360337129 - 79.377236132538 5566.932155187992 -428.649650229871 - 1748.558360337129 -428.649650229871 2926.474631706828 - + 3632.777476380593 79.377236132538 1748.558360337126 + 79.377236132538 5566.932155187981 -428.649650229870 + 1748.558360337126 -428.649650229870 2926.474631706822 + Mulliken analysis of the total density -------------------------------------- @@ -1063,24 +1072,27 @@ task scf property 25 H 1 0.84 0.84 26 O 8 8.31 2.00 1.83 4.49 27 H 1 0.77 0.77 - + Multipole analysis of the density wrt the origin ------------------------------------------------ - + L x y z total open nuclear - - - - ----- ---- ------- 0 0 0 0 -0.000000 0.000000 108.000000 - + 1 1 0 0 -0.475078 0.000000 676.930920 1 0 1 0 0.375625 0.000000 54.448431 1 0 0 1 -0.877967 0.000000 -224.648790 - + 2 2 0 0 -52.883686 0.000000 5603.282547 2 1 1 0 6.068975 0.000000 296.023896 2 1 0 1 -3.010707 0.000000 -2339.437621 2 0 2 0 -59.169874 0.000000 310.736590 2 0 1 1 1.348243 0.000000 138.161061 2 0 0 2 -66.859565 0.000000 2136.322277 + + + Parallel integral file used 123 records with 0 large values *** CALLING NEW AORESP DRIVER FOR CLOSED AND OPEN SHELLS *** Entering AOResponse driver routine @@ -1119,15 +1131,15 @@ task scf property frequency in a.u.: 0.0000000E+00 Perturbing field: electric Using El. Dipole Length Gauge - + Setting up CPKS with frequency omega = 0.00000000 a.u. STATIC response NWChem CPHF Module ------------------ - - + + scftype = RHF nclosed = 54 nopen = 0 @@ -1138,7 +1150,19 @@ task scf property max iterations = 50 max subspace = 30 - SCF residual: 8.6162510654915214E-011 + + Integral file = ./Trp_polar.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 59 Max. records in file = 507871 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 8.876D+05 #integrals = 5.216D+06 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 3 moved= 14 time= 0.0 + + SCF residual: 2.131377550302446E-009 Iterative solution of linear equations @@ -1147,28 +1171,31 @@ Iterative solution of linear equations Maximum subspace 30 Iterations 50 Convergence 1.0D-08 - Start time 64.2 + Start time 4.2 iter nsub residual time ---- ------ -------- --------- - 1 3 1.75D+00 68.0 - 2 6 9.75D-01 71.8 - 3 9 1.24D-01 75.7 - 4 12 7.84D-02 79.5 - 5 15 2.15D-02 83.3 - 6 18 8.05D-03 87.1 - 7 21 2.62D-03 90.9 - 8 24 6.19D-04 94.7 - 9 27 1.73D-04 98.5 - 10 30 3.45D-05 102.4 - 11 30 1.27D-05 106.2 - 12 30 3.46D-06 110.0 - 13 30 8.13D-07 113.8 - 14 30 2.17D-07 117.6 - 15 30 9.34D-08 121.4 - 16 30 4.26D-08 125.2 - 17 30 9.93D-09 129.0 + 1 3 1.75D+00 7.8 + 2 6 9.75D-01 11.3 + 3 9 1.24D-01 14.8 + 4 12 7.84D-02 18.4 + 5 15 2.15D-02 21.9 + 6 18 8.05D-03 25.5 + 7 21 2.62D-03 29.0 + 8 24 6.19D-04 32.5 + 9 27 1.73D-04 36.0 + 10 30 3.45D-05 39.6 + 11 30 1.27D-05 43.1 + 12 30 3.46D-06 46.7 + 13 30 8.13D-07 50.2 + 14 30 2.20D-07 53.8 + 15 30 9.76D-08 57.3 + 16 30 3.80D-08 60.8 + 17 30 7.05D-09 64.4 + + Parallel integral file used 122 records with 0 large values + Electric Dipole Response Matrix (nonzero elements): @@ -1210,7 +1237,13 @@ Iterative solution of linear equations Exiting AOResponse driver routine - Task times cpu: 129.0s wall: 129.8s + Task times cpu: 61.9s wall: 64.8s + + + NWChem Input Module + ------------------- + + Summary of allocated global arrays ----------------------------------- No active global arrays @@ -1221,11 +1254,12 @@ Iterative solution of linear equations ------------------------------ create destroy get put acc scatter gather read&inc -calls: 1996 1996 3.63e+05 3.42e+04 5.43e+05 1129 0 716 -number of processes/call -2.42e+13 -2.68e+14 8.47e+12 0.00e+00 0.00e+00 -bytes total: 3.44e+08 6.50e+07 5.34e+08 6.96e+02 0.00e+00 5.73e+03 -bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 2219688 bytes +calls: 1967 1967 1.04e+05 1.01e+04 1.45e+05 643 0 152 +number of processes/call 4.46e+13 3.45e+12 1.47e+12 0.00e+00 0.00e+00 +bytes total: 1.22e+08 2.12e+07 1.48e+08 0.00e+00 0.00e+00 1.22e+03 +bytes remote: 6.75e+07 6.12e+06 1.08e+08 -3.52e+02 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 619744 bytes + MA_summarize_allocated_blocks: starting scan ... MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: @@ -1234,51 +1268,26 @@ MA usage statistics: heap stack ---- ----- current number of blocks 0 0 - maximum number of blocks 24 35 + maximum number of blocks 25 35 current total bytes 0 0 - maximum total bytes 80120 22511736 - maximum total K-bytes 81 22512 - maximum total M-bytes 1 23 - - - NWChem Input Module - ------------------- - - - - - + maximum total bytes 30996272 22511752 + maximum total K-bytes 30997 22512 + maximum total M-bytes 31 23 + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, - V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, - J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, - J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, - C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, - K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, - J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, - V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, - B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, - S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, - A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, - D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, - J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, - A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, - R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, - D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, - V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, - Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, - D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, - A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, - and R. J. Harrison - "NWChem: Past, present, and future - J. Chem. Phys. 152, 184102 (2020) - doi:10.1063/5.0004997 - + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -1301,4 +1310,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 129.0s wall: 129.8s + Total times cpu: 61.9s wall: 64.8s diff --git a/data/NWChem/basicNWChem7.0/dvb_bomd_ks.out b/data/NWChem/basicNWChem7.0/dvb_bomd_ks.out index 664679d51..a436aecf6 100644 --- a/data/NWChem/basicNWChem7.0/dvb_bomd_ks.out +++ b/data/NWChem/basicNWChem7.0/dvb_bomd_ks.out @@ -1,26 +1,26 @@ argument 1 = dvb_bomd_ks.in - - - Northwest Computational Chemistry Package (NWChem) 7.0.2 + + + Northwest Computational Chemistry Package (NWChem) 7.0.0 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2020 + + Copyright (c) 1994-2019 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = osmium - program = nwchem - date = Sat Jun 4 13:47:48 2022 + hostname = smp-n17.sam.pitt.edu + program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem + date = Tue Sep 20 18:17:39 2022 - compiled = Fri_Jul_02_16:33:00_2021 - source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src - nwchem branch = 7.0.2 - nwchem revision = b9985dfa - ga revision = 5.7.2 - use scalapack = T + compiled = Wed_May_13_13:33:26_2020 + source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 + nwchem branch = 7.0.0 + nwchem revision = N/A + ga revision = 5.7.1 + use scalapack = F input = dvb_bomd_ks.in prefix = dvb. data base = ./dvb.db status = startup - nproc = 1 + nproc = 4 time left = -1s @@ -58,40 +58,40 @@ Memory information ------------------ - heap = 134217726 doubles = 1024.0 Mbytes - stack = 134217723 doubles = 1024.0 Mbytes + heap = 134217728 doubles = 1024.0 Mbytes + stack = 134217725 doubles = 1024.0 Mbytes global = 268435456 doubles = 2048.0 Mbytes (distinct from heap & stack) - total = 536870905 doubles = 4096.0 Mbytes + total = 536870909 doubles = 4096.0 Mbytes verify = yes hardfail = no Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + Divinylbenzene in STO-3G basis set ---------------------------------- Scaling coordinates for geometry "geometry" by 1.889725989 (inverse scale = 0.529177249) - - + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 C 6.0000 0.27867948 -1.36683162 0.00000000 @@ -114,13 +114,13 @@ 18 H 1.0000 1.65647768 -3.12394312 0.00000000 19 H 1.0000 -0.14429560 -4.87693235 0.00000000 20 H 1.0000 -1.43338788 -3.55272039 0.00000000 - + Atomic Mass ----------- - + C 12.000000 H 1.007825 - + Effective nuclear repulsion energy (a.u.) 450.0061706802 @@ -128,9 +128,9 @@ ---------------------------- X Y Z ---------------- ---------------- ---------------- - -0.0000000000 0.0000000000 0.0000000000 - - + 0.0000000000 -0.0000000000 0.0000000000 + + XYZ format geometry ------------------- 20 @@ -155,7 +155,7 @@ H 1.65647768 -3.12394312 0.00000000 H -0.14429560 -4.87693235 0.00000000 H -1.43338788 -3.55272039 0.00000000 - + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -228,9 +228,6 @@ - library name resolved from: environment - library file name is: - Summary of "ao basis" -> "" (cartesian) @@ -240,18 +237,18 @@ * sto-3g on all atoms - - + + NWChem QMD Module ----------------- - - - - + + + + QMD Run Parameters ------------------ - - + + No. of nuclear steps: 35 Nuclear time step: 25.00 Target temp. (K): 298.00 @@ -260,14 +257,14 @@ Nuclear integrator: velocity-verlet no velocities found in input Current temp. (K): 378.11 - + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + Basis "ao basis" -> "ao basis" (cartesian) ----- C (Carbon) @@ -277,15 +274,15 @@ 1 S 7.16168370E+01 0.154329 1 S 1.30450960E+01 0.535328 1 S 3.53051220E+00 0.444635 - + 2 S 2.94124940E+00 -0.099967 2 S 6.83483100E-01 0.399513 2 S 2.22289900E-01 0.700115 - + 3 P 2.94124940E+00 0.155916 3 P 6.83483100E-01 0.607684 3 P 2.22289900E-01 0.391957 - + H (Hydrogen) ------------ Exponent Coefficients @@ -293,7 +290,7 @@ 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + Summary of "ao basis" -> "ao basis" (cartesian) @@ -304,22 +301,22 @@ H sto-3g 1 1 1s - + Caching 1-el integrals - Time after variat. SCF: 0.3 - Time prior to 1st pass: 0.3 + Time after variat. SCF: 0.2 + Time prior to 1st pass: 0.2 Resetting Diis - Total DFT energy = -382.300234057255 - One electron energy = -1408.669142371894 - Coulomb energy = 634.252424911240 - Exchange-Corr. energy = -57.889687276837 - Nuclear repulsion energy = 450.006170680236 + Total DFT energy = -382.300234495670 + One electron energy = -1408.669141462122 + Coulomb energy = 634.252423575104 + Exchange-Corr. energy = -57.889687288889 + Nuclear repulsion energy = 450.006170680237 - Numeric. integr. density = 70.000005883387 + Numeric. integr. density = 70.000005880742 - Total iterative time = 12.0s + Total iterative time = 4.3s @@ -333,45 +330,45 @@ 3 C 1.973526 1.747713 0.000000 -0.019904 0.001498 0.000000 4 C -0.526628 2.582937 0.000000 0.008591 -0.050680 -0.000000 5 C -2.500165 0.834760 0.000000 0.019248 0.006173 0.000000 - 6 C -1.973526 -1.747713 0.000000 0.019904 -0.001498 -0.000000 + 6 C -1.973526 -1.747713 0.000000 0.019904 -0.001498 0.000000 7 H 4.471006 -1.493596 0.000000 0.001347 0.000197 0.000000 8 H 3.528989 3.125758 0.000000 0.001489 0.003437 0.000000 9 H -4.471006 1.493596 0.000000 -0.001347 -0.000197 0.000000 10 H -3.528989 -3.125758 0.000000 -0.001489 -0.003437 0.000000 11 C -1.108498 5.434662 0.000000 0.004656 0.039239 0.000000 - 12 C 0.686919 7.182403 0.000000 -0.013087 -0.023339 -0.000000 + 12 C 0.686919 7.182403 0.000000 -0.013088 -0.023339 -0.000000 13 H -3.130289 5.903397 0.000000 0.000323 -0.002973 0.000000 14 H 0.272679 9.216066 0.000000 0.001999 0.001526 -0.000000 - 15 H 2.708710 6.713668 0.000000 0.002856 -0.000189 0.000000 - 16 C 1.108498 -5.434662 0.000000 -0.004656 -0.039239 0.000000 - 17 C -0.686919 -7.182403 0.000000 0.013087 0.023339 -0.000000 - 18 H 3.130289 -5.903397 0.000000 -0.000323 0.002973 -0.000000 + 15 H 2.708710 6.713668 0.000000 0.002856 -0.000189 -0.000000 + 16 C 1.108498 -5.434662 0.000000 -0.004656 -0.039239 -0.000000 + 17 C -0.686919 -7.182403 0.000000 0.013088 0.023339 0.000000 + 18 H 3.130289 -5.903397 0.000000 -0.000323 0.002973 0.000000 19 H -0.272679 -9.216066 0.000000 -0.001999 -0.001526 0.000000 - 20 H -2.708710 -6.713668 0.000000 -0.002856 0.000189 -0.000000 - - + 20 H -2.708710 -6.713668 0.000000 -0.002856 0.000189 0.000000 + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 15.2 - Time prior to 1st pass: 15.2 + Time after variat. SCF: 6.8 + Time prior to 1st pass: 6.8 - Total DFT energy = -382.299603286719 - One electron energy = -1408.442517198386 - Coulomb energy = 634.139749547366 - Exchange-Corr. energy = -57.884578784160 - Nuclear repulsion energy = 449.887743148460 + Total DFT energy = -382.299603733417 + One electron energy = -1408.442516248980 + Coulomb energy = 634.139748275904 + Exchange-Corr. energy = -57.884578815938 + Nuclear repulsion energy = 449.887743055597 - Numeric. integr. density = 70.000005695039 + Numeric. integr. density = 70.000005692152 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -400,43 +397,43 @@ 18 H 3.119386 -5.894885 -0.060279 -0.004567 0.004087 -0.000871 19 H -0.283105 -9.205068 -0.010714 -0.003693 0.006614 0.000239 20 H -2.698477 -6.699547 0.034316 0.000465 0.000793 -0.000329 - - - + + + QMD Run Information ------------------- Time elapsed (fs) : 0.604721 Kin. energy (a.u.): 1 0.031752 - Pot. energy (a.u.): 1 -382.299603 - Tot. energy (a.u.): 1 -382.267851 + Pot. energy (a.u.): 1 -382.299604 + Tot. energy (a.u.): 1 -382.267852 Target temp. (K) : 1 298.00 Current temp. (K) : 1 371.35 - Dipole (a.u.) : 1 1.202648E-03 -2.263902E-04 -1.028971E-03 - - - + Dipole (a.u.) : 1 1.202622E-03 -2.264600E-04 -1.028963E-03 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 26.1 - Time prior to 1st pass: 26.1 + Time after variat. SCF: 12.2 + Time prior to 1st pass: 12.2 - Total DFT energy = -382.296793668322 - One electron energy = -1408.168998064960 - Coulomb energy = 634.002661347266 - Exchange-Corr. energy = -57.879442098149 - Nuclear repulsion energy = 449.748985147520 + Total DFT energy = -382.296794145899 + One electron energy = -1408.168996658368 + Coulomb energy = 634.002659855444 + Exchange-Corr. energy = -57.879442126587 + Nuclear repulsion energy = 449.748984783612 - Numeric. integr. density = 70.000007291420 + Numeric. integr. density = 70.000007288186 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -448,60 +445,60 @@ 1 C 0.534406 -2.592582 0.008291 -0.004108 0.041760 0.000299 2 C 2.503533 -0.836228 0.020404 -0.014758 -0.013071 0.004028 3 C 1.968621 1.760844 -0.010129 -0.033163 0.008716 -0.004668 - 4 C -0.518594 2.587215 0.005007 0.017959 -0.048414 0.001370 + 4 C -0.518594 2.587215 0.005007 0.017959 -0.048413 0.001370 5 C -2.503965 0.845509 -0.013254 0.007469 0.018314 -0.001353 - 6 C -1.973842 -1.750312 -0.013814 0.010472 -0.015215 -0.000601 + 6 C -1.973842 -1.750312 -0.013814 0.010472 -0.015214 -0.000601 7 H 4.477704 -1.466821 -0.023348 -0.000439 0.002043 -0.001742 8 H 3.552850 3.128675 0.039948 0.007216 0.006455 0.001856 - 9 H -4.455397 1.504554 0.004680 0.005951 -0.002493 0.000716 + 9 H -4.455397 1.504554 0.004680 0.005952 -0.002493 0.000716 10 H -3.506415 -3.116344 -0.027942 0.006978 0.003372 0.000050 11 C -1.114969 5.416463 0.012887 0.030644 0.014705 -0.000910 - 12 C 0.696960 7.172677 -0.010441 0.028678 -0.049842 -0.001605 + 12 C 0.696960 7.172677 -0.010441 0.028678 -0.049841 -0.001605 13 H -3.234779 5.917442 0.048987 -0.036401 0.006160 0.000914 14 H 0.305675 9.280696 0.013464 -0.000049 0.027905 0.000662 - 15 H 2.656327 6.732140 -0.023433 -0.027209 0.008844 0.000748 + 15 H 2.656327 6.732141 -0.023433 -0.027209 0.008844 0.000748 16 C 1.107160 -5.422743 -0.007553 0.008941 -0.022649 0.002870 17 C -0.693038 -7.198527 0.012017 0.000811 -0.006983 -0.000901 18 H 3.110037 -5.887763 -0.120261 -0.007426 0.004779 -0.001593 - 19 H -0.292274 -9.196321 -0.021510 -0.005179 0.014145 0.000594 + 19 H -0.292274 -9.196321 -0.021510 -0.005180 0.014145 0.000594 20 H -2.688401 -6.685695 0.068744 0.003614 0.001466 -0.000737 - - - + + + QMD Run Information ------------------- Time elapsed (fs) : 1.209442 Kin. energy (a.u.): 2 0.029058 Pot. energy (a.u.): 2 -382.296794 - Tot. energy (a.u.): 2 -382.267735 + Tot. energy (a.u.): 2 -382.267736 Target temp. (K) : 2 298.00 Current temp. (K) : 2 339.85 - Dipole (a.u.) : 2 2.891432E-03 -1.071556E-03 -2.201629E-03 - - - + Dipole (a.u.) : 2 2.891438E-03 -1.071498E-03 -2.201611E-03 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 36.9 - Time prior to 1st pass: 36.9 + Time after variat. SCF: 17.7 + Time prior to 1st pass: 17.7 - Total DFT energy = -382.293568835403 - One electron energy = -1407.846130119755 - Coulomb energy = 633.841937315184 - Exchange-Corr. energy = -57.873778482936 - Nuclear repulsion energy = 449.584402452103 + Total DFT energy = -382.293569294917 + One electron energy = -1407.846127866363 + Coulomb energy = 633.841935401352 + Exchange-Corr. energy = -57.873778484459 + Nuclear repulsion energy = 449.584401654553 - Numeric. integr. density = 70.000009836422 + Numeric. integr. density = 70.000009832553 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -513,15 +510,15 @@ 1 C 0.538504 -2.599268 0.012426 -0.001745 0.035304 0.000435 2 C 2.505886 -0.836446 0.030462 -0.012007 -0.015356 0.005990 3 C 1.967506 1.767089 -0.015027 -0.037024 0.012662 -0.006967 - 4 C -0.515283 2.591455 0.007462 0.021805 -0.045325 0.002021 + 4 C -0.515282 2.591455 0.007462 0.021805 -0.045324 0.002021 5 C -2.506270 0.850180 -0.019832 0.002094 0.022691 -0.001985 6 C -1.974520 -1.751054 -0.020700 0.005842 -0.020413 -0.000983 7 H 4.481118 -1.454322 -0.034278 -0.001307 0.002847 -0.002541 8 H 3.561512 3.127033 0.059136 0.008530 0.006660 0.002769 9 H -4.450023 1.511118 0.006712 0.008723 -0.003245 0.001030 10 H -3.497971 -3.112781 -0.041931 0.010441 0.006107 0.000125 - 11 C -1.119374 5.406558 0.019361 0.034773 0.002746 -0.001462 - 12 C 0.701042 7.169794 -0.015605 0.044295 -0.054763 -0.002660 + 11 C -1.119374 5.406558 0.019361 0.034774 0.002746 -0.001462 + 12 C 0.701042 7.169794 -0.015605 0.044294 -0.054763 -0.002660 13 H -3.271126 5.922008 0.073110 -0.046527 0.009029 0.001564 14 H 0.322088 9.300703 0.019923 0.000071 0.034883 0.001066 15 H 2.641535 6.737598 -0.035460 -0.037396 0.011980 0.001208 @@ -529,10 +526,10 @@ 17 C -0.696222 -7.206504 0.018058 -0.005040 -0.019808 -0.001336 18 H 3.103214 -5.882268 -0.179702 -0.008357 0.004935 -0.002309 19 H -0.299682 -9.192385 -0.032508 -0.006166 0.019513 0.001005 - 20 H -2.679555 -6.672342 0.103423 0.006138 0.002294 -0.001185 - - - + 20 H -2.679555 -6.672342 0.103423 0.006138 0.002295 -0.001185 + + + QMD Run Information ------------------- Time elapsed (fs) : 1.814163 @@ -541,32 +538,32 @@ Tot. energy (a.u.): 3 -382.267622 Target temp. (K) : 3 298.00 Current temp. (K) : 3 303.46 - Dipole (a.u.) : 3 4.354939E-03 -1.226533E-03 -3.463879E-03 - - - + Dipole (a.u.) : 3 4.354932E-03 -1.226525E-03 -3.463850E-03 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 47.8 - Time prior to 1st pass: 47.8 + Time after variat. SCF: 23.1 + Time prior to 1st pass: 23.2 - Total DFT energy = -382.291676982586 - One electron energy = -1407.469796377808 - Coulomb energy = 633.656576271552 - Exchange-Corr. energy = -57.867067341354 - Nuclear repulsion energy = 449.388610465025 + Total DFT energy = -382.291677447314 + One electron energy = -1407.469793180581 + Coulomb energy = 633.656573947728 + Exchange-Corr. energy = -57.867067323517 + Nuclear repulsion energy = 449.388609109057 - Numeric. integr. density = 70.000012528362 + Numeric. integr. density = 70.000012524565 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -587,51 +584,51 @@ 10 H -3.493079 -3.111295 -0.055963 0.012489 0.007590 0.000207 11 C -1.124772 5.396574 0.025877 0.033492 -0.008534 -0.001908 12 C 0.703859 7.168476 -0.020694 0.051873 -0.053131 -0.003687 - 13 H -3.291644 5.923504 0.096702 -0.051296 0.010724 0.002172 + 13 H -3.291645 5.923504 0.096702 -0.051296 0.010724 0.002172 14 H 0.338477 9.308842 0.026019 0.000907 0.037306 0.001423 15 H 2.639466 6.738980 -0.047898 -0.040110 0.013288 0.001622 16 C 1.104863 -5.408264 -0.015433 0.014168 -0.002209 0.005690 17 C -0.699261 -7.213916 0.024137 -0.010153 -0.028903 -0.001703 18 H 3.099235 -5.878451 -0.238357 -0.007215 0.004532 -0.003173 19 H -0.304991 -9.195088 -0.043848 -0.006416 0.021429 0.001366 - 20 H -2.672798 -6.659769 0.138504 0.007671 0.003350 -0.001616 - - - + 20 H -2.672798 -6.659770 0.138504 0.007671 0.003350 -0.001616 + + + QMD Run Information ------------------- Time elapsed (fs) : 2.418884 Kin. energy (a.u.): 4 0.024106 Pot. energy (a.u.): 4 -382.291677 - Tot. energy (a.u.): 4 -382.267571 + Tot. energy (a.u.): 4 -382.267572 Target temp. (K) : 4 298.00 Current temp. (K) : 4 281.92 - Dipole (a.u.) : 4 5.382361E-03 7.056587E-05 -4.746376E-03 - - - + Dipole (a.u.) : 4 5.382358E-03 7.050742E-05 -4.746337E-03 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 58.7 - Time prior to 1st pass: 58.7 + Time after variat. SCF: 28.7 + Time prior to 1st pass: 28.7 - Total DFT energy = -382.291903643771 - One electron energy = -1407.049628949667 - Coulomb energy = 633.453497739928 - Exchange-Corr. energy = -57.859241337235 - Nuclear repulsion energy = 449.163468903204 + Total DFT energy = -382.291904096453 + One electron energy = -1407.049624565797 + Coulomb energy = 633.453494868647 + Exchange-Corr. energy = -57.859241298852 + Nuclear repulsion energy = 449.163466899548 - Numeric. integr. density = 70.000014765744 + Numeric. integr. density = 70.000014760973 - Total iterative time = 8.0s + Total iterative time = 3.0s @@ -641,7 +638,7 @@ atom coordinates gradient x y z x y z 1 C 0.546782 -2.615448 0.020654 0.002985 0.019118 0.000710 - 2 C 2.511542 -0.835526 0.050010 -0.006736 -0.017214 0.009721 + 2 C 2.511542 -0.835526 0.050010 -0.006736 -0.017213 0.009721 3 C 1.968494 1.778376 -0.024163 -0.037717 0.020973 -0.011149 4 C -0.510613 2.603697 0.012179 0.026617 -0.035743 0.003288 5 C -2.510942 0.857495 -0.032801 -0.004503 0.026609 -0.003242 @@ -649,20 +646,20 @@ 7 H 4.489489 -1.432451 -0.053289 -0.002177 0.003955 -0.003997 8 H 3.570111 3.117212 0.094403 0.007405 0.004206 0.004279 9 H -4.448661 1.527634 0.009623 0.009930 -0.003029 0.001645 - 10 H -3.492436 -3.112391 -0.070065 0.012709 0.007455 0.000271 + 10 H -3.492436 -3.112390 -0.070065 0.012709 0.007455 0.000271 11 C -1.131128 5.386834 0.032448 0.027360 -0.018789 -0.002153 12 C 0.705194 7.168676 -0.025677 0.050293 -0.044954 -0.004511 13 H -3.294712 5.921350 0.119555 -0.050999 0.011244 0.002641 14 H 0.354557 9.304290 0.031631 0.002374 0.035165 0.001666 - 15 H 2.651042 6.735841 -0.060888 -0.034401 0.012555 0.001888 + 15 H 2.651042 6.735842 -0.060888 -0.034401 0.012555 0.001888 16 C 1.103127 -5.400779 -0.019596 0.013052 0.008553 0.007400 17 C -0.702010 -7.220501 0.030264 -0.014275 -0.033524 -0.001950 - 18 H 3.097709 -5.876176 -0.295933 -0.004300 0.003647 -0.004292 + 18 H 3.097710 -5.876176 -0.295933 -0.004300 0.003647 -0.004292 19 H -0.308119 -9.205082 -0.055652 -0.005847 0.019350 0.001559 20 H -2.668650 -6.648337 0.174136 0.008016 0.004662 -0.001964 - - - + + + QMD Run Information ------------------- Time elapsed (fs) : 3.023605 @@ -671,32 +668,32 @@ Tot. energy (a.u.): 5 -382.267608 Target temp. (K) : 5 298.00 Current temp. (K) : 5 284.15 - Dipole (a.u.) : 5 5.491672E-03 3.156837E-03 -5.966170E-03 - - - + Dipole (a.u.) : 5 5.491735E-03 3.156692E-03 -5.966127E-03 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 69.5 - Time prior to 1st pass: 69.5 + Time after variat. SCF: 34.0 + Time prior to 1st pass: 34.0 - Total DFT energy = -382.293705399372 - One electron energy = -1406.603628537159 - Coulomb energy = 633.239811744292 - Exchange-Corr. energy = -57.850826166316 - Nuclear repulsion energy = 448.920937559811 + Total DFT energy = -382.293705887383 + One electron energy = -1406.603622884357 + Coulomb energy = 633.239808251965 + Exchange-Corr. energy = -57.850826115630 + Nuclear repulsion energy = 448.920934860639 - Numeric. integr. density = 70.000016527051 + Numeric. integr. density = 70.000016525990 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -713,55 +710,55 @@ 6 C -1.977189 -1.749490 -0.041142 -0.000205 -0.022441 -0.002192 7 H 4.494744 -1.423455 -0.060875 -0.001995 0.004207 -0.004664 8 H 3.570430 3.109869 0.109970 0.005132 0.001777 0.004787 - 9 H -4.453085 1.537511 0.010292 0.008093 -0.001953 0.001978 + 9 H -4.453086 1.537511 0.010292 0.008093 -0.001953 0.001978 10 H -3.496116 -3.116023 -0.084259 0.011069 0.005679 0.000287 11 C -1.138265 5.377631 0.039081 0.016619 -0.027665 -0.002107 12 C 0.705092 7.170160 -0.030532 0.041144 -0.030827 -0.004994 13 H -3.280430 5.915372 0.141509 -0.045649 0.010517 0.002870 - 14 H 0.369829 9.287774 0.036677 0.004375 0.028538 0.001735 + 14 H 0.369829 9.287775 0.036677 0.004375 0.028538 0.001735 15 H 2.674321 6.728432 -0.074520 -0.021973 0.010104 0.001940 16 C 1.101017 -5.393538 -0.023970 0.010148 0.019123 0.009350 17 C -0.704351 -7.226129 0.036448 -0.017232 -0.033932 -0.002049 18 H 3.097647 -5.875142 -0.352049 -0.000271 0.002446 -0.005674 19 H -0.309257 -9.221658 -0.067987 -0.004568 0.013687 0.001496 20 H -2.667228 -6.638490 0.210436 0.007149 0.006199 -0.002171 - - - + + + QMD Run Information ------------------- Time elapsed (fs) : 3.628326 Kin. energy (a.u.): 6 0.026002 - Pot. energy (a.u.): 6 -382.293705 - Tot. energy (a.u.): 6 -382.267703 + Pot. energy (a.u.): 6 -382.293706 + Tot. energy (a.u.): 6 -382.267704 Target temp. (K) : 6 298.00 Current temp. (K) : 6 304.11 - Dipole (a.u.) : 6 4.419665E-03 7.395290E-03 -7.052082E-03 - - - + Dipole (a.u.) : 6 4.419668E-03 7.395041E-03 -7.052031E-03 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 80.4 - Time prior to 1st pass: 80.4 + Time after variat. SCF: 39.5 + Time prior to 1st pass: 39.5 - Total DFT energy = -382.295615610122 - One electron energy = -1406.161617225830 - Coulomb energy = 633.028662837864 - Exchange-Corr. energy = -57.842797024986 - Nuclear repulsion energy = 448.680135802831 + Total DFT energy = -382.295616065717 + One electron energy = -1406.161610395410 + Coulomb energy = 633.028658863187 + Exchange-Corr. energy = -57.842796934671 + Nuclear repulsion energy = 448.680132401177 - Numeric. integr. density = 70.000017279557 + Numeric. integr. density = 70.000017278828 - Total iterative time = 9.5s + Total iterative time = 3.6s @@ -771,18 +768,18 @@ atom coordinates gradient x y z x y z 1 C 0.554720 -2.633793 0.028801 0.007550 0.000146 0.001015 - 2 C 2.517978 -0.832665 0.068449 -0.002867 -0.015455 0.013085 - 3 C 1.973728 1.787270 -0.032032 -0.029597 0.028514 -0.014443 - 4 C -0.508952 2.619998 0.016521 0.026927 -0.022521 0.004544 + 2 C 2.517978 -0.832666 0.068449 -0.002867 -0.015455 0.013085 + 3 C 1.973727 1.787270 -0.032032 -0.029597 0.028514 -0.014443 + 4 C -0.508952 2.619998 0.016521 0.026927 -0.022520 0.004544 5 C -2.515149 0.861819 -0.045399 -0.004654 0.023865 -0.004591 6 C -1.978099 -1.747642 -0.047846 0.000700 -0.018546 -0.002524 7 H 4.500677 -1.415891 -0.066875 -0.001407 0.004261 -0.005291 - 8 H 3.569003 3.101921 0.123908 0.002081 -0.001123 0.005110 + 8 H 3.569004 3.101921 0.123908 0.002081 -0.001123 0.005110 9 H -4.460263 1.548052 0.010288 0.004988 -0.000356 0.002334 - 10 H -3.503562 -3.121587 -0.098551 0.007916 0.002592 0.000242 - 11 C -1.145876 5.369218 0.045773 0.001225 -0.034780 -0.001667 - 12 C 0.703814 7.172525 -0.035243 0.027775 -0.011836 -0.005075 - 13 H -3.250618 5.905816 0.162487 -0.035043 0.008414 0.002746 + 10 H -3.503563 -3.121587 -0.098551 0.007916 0.002592 0.000242 + 11 C -1.145877 5.369218 0.045773 0.001225 -0.034780 -0.001667 + 12 C 0.703814 7.172525 -0.035243 0.027775 -0.011837 -0.005075 + 13 H -3.250619 5.905816 0.162487 -0.035043 0.008414 0.002746 14 H 0.383613 9.261550 0.041132 0.006779 0.017688 0.001580 15 H 2.705075 6.717585 -0.088813 -0.006202 0.006611 0.001779 16 C 1.098618 -5.386844 -0.028611 0.006309 0.029061 0.011444 @@ -790,43 +787,43 @@ 18 H 3.097677 -5.874940 -0.406235 0.004065 0.001142 -0.007228 19 H -0.308841 -9.242891 -0.080831 -0.002847 0.005652 0.001160 20 H -2.668239 -6.630752 0.247474 0.005247 0.007862 -0.002198 - - - + + + QMD Run Information ------------------- Time elapsed (fs) : 4.233048 Kin. energy (a.u.): 7 0.027811 Pot. energy (a.u.): 7 -382.295616 - Tot. energy (a.u.): 7 -382.267804 + Tot. energy (a.u.): 7 -382.267805 Target temp. (K) : 7 298.00 Current temp. (K) : 7 325.26 - Dipole (a.u.) : 7 1.867614E-03 1.177159E-02 -7.962402E-03 - - - + Dipole (a.u.) : 7 1.867632E-03 1.177133E-02 -7.962347E-03 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 92.7 - Time prior to 1st pass: 92.7 + Time after variat. SCF: 45.4 + Time prior to 1st pass: 45.4 - Total DFT energy = -382.296072748297 - One electron energy = -1405.753728493205 - Coulomb energy = 632.833360166008 - Exchange-Corr. energy = -57.836212233011 - Nuclear repulsion energy = 448.460507811912 + Total DFT energy = -382.296073199802 + One electron energy = -1405.753720509862 + Coulomb energy = 632.833355678728 + Exchange-Corr. energy = -57.836212127599 + Nuclear repulsion energy = 448.460503758931 - Numeric. integr. density = 70.000017339900 + Numeric. integr. density = 70.000017339201 - Total iterative time = 9.5s + Total iterative time = 3.6s @@ -837,13 +834,13 @@ x y z x y z 1 C 0.558397 -2.643110 0.032833 0.009719 -0.009628 0.001186 2 C 2.521343 -0.830554 0.077132 -0.001566 -0.013403 0.014581 - 3 C 1.977684 1.790546 -0.035368 -0.023306 0.031248 -0.015727 + 3 C 1.977684 1.790546 -0.035369 -0.023306 0.031248 -0.015727 4 C -0.509281 2.629214 0.018506 0.025465 -0.014916 0.005170 5 C -2.517043 0.862927 -0.051511 -0.003160 0.020500 -0.005294 6 C -1.979028 -1.745264 -0.054477 0.002345 -0.013219 -0.002802 7 H 4.507089 -1.409776 -0.071074 -0.000481 0.004143 -0.005877 8 H 3.566869 3.094355 0.136108 -0.001283 -0.004111 0.005273 - 9 H -4.469137 1.558715 0.009490 0.001198 0.001546 0.002701 + 9 H -4.469138 1.558715 0.009490 0.001198 0.001546 0.002701 10 H -3.513702 -3.128033 -0.112925 0.003881 -0.001215 0.000137 11 C -1.153523 5.361799 0.052513 -0.018794 -0.039758 -0.000724 12 C 0.701743 7.175229 -0.039810 0.013616 0.010333 -0.004770 @@ -854,10 +851,10 @@ 17 C -0.707508 -7.234554 0.048989 -0.019490 -0.026738 -0.001918 18 H 3.096324 -5.875126 -0.457961 0.007955 -0.000058 -0.008802 19 H -0.307456 -9.266046 -0.094069 -0.001014 -0.003207 0.000599 - 20 H -2.671035 -6.625689 0.285260 0.002636 0.009502 -0.002036 - - - + 20 H -2.671035 -6.625689 0.285260 0.002637 0.009502 -0.002036 + + + QMD Run Information ------------------- Time elapsed (fs) : 4.837769 @@ -866,32 +863,32 @@ Tot. energy (a.u.): 8 -382.267863 Target temp. (K) : 8 298.00 Current temp. (K) : 8 329.93 - Dipole (a.u.) : 8 -7.293358E-04 1.537593E-02 -8.669625E-03 - - - + Dipole (a.u.) : 8 -7.292638E-04 1.537565E-02 -8.669568E-03 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 105.1 - Time prior to 1st pass: 105.1 + Time after variat. SCF: 51.4 + Time prior to 1st pass: 51.4 - Total DFT energy = -382.294203245523 - One electron energy = -1405.399003057520 - Coulomb energy = 632.661804625952 - Exchange-Corr. energy = -57.831674128286 - Nuclear repulsion energy = 448.274669314331 + Total DFT energy = -382.294203691943 + One electron energy = -1405.398994152947 + Coulomb energy = 632.661799762042 + Exchange-Corr. energy = -57.831674008468 + Nuclear repulsion energy = 448.274664707430 - Numeric. integr. density = 70.000016782334 + Numeric. integr. density = 70.000016781471 - Total iterative time = 9.5s + Total iterative time = 3.6s @@ -901,62 +898,62 @@ atom coordinates gradient x y z x y z 1 C 0.561797 -2.652152 0.036831 0.011798 -0.019140 0.001374 - 2 C 2.524753 -0.828059 0.085397 -0.000594 -0.010718 0.015916 + 2 C 2.524753 -0.828060 0.085397 -0.000594 -0.010718 0.015916 3 C 1.982307 1.792929 -0.038256 -0.016465 0.032782 -0.016811 4 C -0.510338 2.638855 0.020343 0.023115 -0.006849 0.005788 5 C -2.518847 0.863450 -0.057471 -0.001426 0.016294 -0.005988 6 C -1.980025 -1.742508 -0.061029 0.004069 -0.007246 -0.003039 - 7 H 4.513664 -1.405071 -0.073274 0.000631 0.003897 -0.006406 + 7 H 4.513665 -1.405071 -0.073274 0.000632 0.003897 -0.006406 8 H 3.565171 3.088188 0.146514 -0.004413 -0.006744 0.005333 - 9 H -4.478419 1.568851 0.007773 -0.002644 0.003505 0.003055 - 10 H -3.525161 -3.134066 -0.127346 -0.000339 -0.005084 -0.000013 + 9 H -4.478420 1.568851 0.007773 -0.002644 0.003505 0.003055 + 10 H -3.525162 -3.134065 -0.127346 -0.000339 -0.005084 -0.000013 11 C -1.160633 5.355516 0.059274 -0.042668 -0.042414 0.000792 12 C 0.699283 7.177637 -0.044241 0.001178 0.033169 -0.004173 - 13 H -3.160676 5.879341 0.201845 0.001795 -0.000210 0.000974 + 13 H -3.160676 5.879341 0.201845 0.001794 -0.000210 0.000974 14 H 0.403372 9.195913 0.048568 0.011956 -0.012620 0.000554 - 15 H 2.767570 6.690438 -0.119106 0.022745 -0.000736 0.001078 - 16 C 1.093390 -5.376201 -0.038935 -0.000842 0.045479 0.015381 + 15 H 2.767570 6.690439 -0.119106 0.022745 -0.000736 0.001078 + 16 C 1.093390 -5.376201 -0.038935 -0.000843 0.045479 0.015381 17 C -0.708259 -7.237557 0.055343 -0.019028 -0.021873 -0.001816 18 H 3.092265 -5.875293 -0.506693 0.010789 -0.000975 -0.010204 19 H -0.305727 -9.288111 -0.107511 0.000635 -0.011462 -0.000086 20 H -2.674728 -6.623858 0.323739 -0.000291 0.010944 -0.001708 - - - + + + QMD Run Information ------------------- Time elapsed (fs) : 5.442490 Kin. energy (a.u.): 9 0.026357 - Pot. energy (a.u.): 9 -382.294203 + Pot. energy (a.u.): 9 -382.294204 Tot. energy (a.u.): 9 -382.267847 Target temp. (K) : 9 298.00 Current temp. (K) : 9 308.25 - Dipole (a.u.) : 9 -2.943847E-03 1.741942E-02 -9.227647E-03 - - - + Dipole (a.u.) : 9 -2.943666E-03 1.741901E-02 -9.227580E-03 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 117.5 - Time prior to 1st pass: 117.5 + Time after variat. SCF: 57.3 + Time prior to 1st pass: 57.3 - Total DFT energy = -382.290337129267 - One electron energy = -1405.100533726221 - Coulomb energy = 632.515339698489 - Exchange-Corr. energy = -57.829138030352 - Nuclear repulsion energy = 448.123994928819 + Total DFT energy = -382.290337583487 + One electron energy = -1405.100524081205 + Coulomb energy = 632.515334477304 + Exchange-Corr. energy = -57.829137898807 + Nuclear repulsion energy = 448.123989919220 - Numeric. integr. density = 70.000015027262 + Numeric. integr. density = 70.000015026530 - Total iterative time = 9.5s + Total iterative time = 3.5s @@ -967,61 +964,61 @@ x y z x y z 1 C 0.564860 -2.660647 0.040790 0.013763 -0.028031 0.001581 2 C 2.528180 -0.825259 0.093208 0.000180 -0.007541 0.017056 - 3 C 1.987400 1.794375 -0.040663 -0.009850 0.032766 -0.017755 + 3 C 1.987400 1.794375 -0.040663 -0.009851 0.032766 -0.017755 4 C -0.512056 2.648693 0.022015 0.020058 0.001546 0.006391 5 C -2.520611 0.863507 -0.063261 -0.000037 0.011648 -0.006644 6 C -1.981138 -1.739545 -0.067493 0.005278 -0.001368 -0.003257 7 H 4.520025 -1.401692 -0.073295 0.001761 0.003575 -0.006857 - 8 H 3.564974 3.084316 0.155106 -0.006747 -0.008574 0.005364 + 8 H 3.564975 3.084315 0.155106 -0.006747 -0.008574 0.005364 9 H -4.486802 1.577796 0.005017 -0.005953 0.005278 0.003370 - 10 H -3.536505 -3.138369 -0.141763 -0.004114 -0.008418 -0.000184 + 10 H -3.536506 -3.138368 -0.141763 -0.004114 -0.008418 -0.000184 11 C -1.166524 5.350445 0.066012 -0.067921 -0.043036 0.002805 12 C 0.696789 7.179097 -0.048552 -0.008069 0.053131 -0.003465 13 H -3.113078 5.865357 0.220828 0.025186 -0.006116 -0.000714 14 H 0.407585 9.166811 0.051898 0.014051 -0.027427 -0.000159 - 15 H 2.789462 6.676638 -0.134869 0.032239 -0.003639 0.000703 + 15 H 2.789462 6.676639 -0.134869 0.032239 -0.003639 0.000703 16 C 1.090765 -5.372722 -0.044729 -0.002929 0.051271 0.016837 - 17 C -0.708466 -7.239935 0.061750 -0.017812 -0.017553 -0.001777 + 17 C -0.708466 -7.239935 0.061750 -0.017812 -0.017552 -0.001777 18 H 3.084535 -5.875128 -0.551954 0.012168 -0.001484 -0.011254 19 H -0.304214 -9.306276 -0.120924 0.001883 -0.018051 -0.000779 - 20 H -2.678322 -6.625750 0.362799 -0.003133 0.012023 -0.001261 - - - + 20 H -2.678322 -6.625751 0.362799 -0.003133 0.012023 -0.001261 + + + QMD Run Information ------------------- Time elapsed (fs) : 6.047211 Kin. energy (a.u.): 10 0.022590 - Pot. energy (a.u.): 10 -382.290337 - Tot. energy (a.u.): 10 -382.267747 + Pot. energy (a.u.): 10 -382.290338 + Tot. energy (a.u.): 10 -382.267748 Target temp. (K) : 10 298.00 Current temp. (K) : 10 264.20 - Dipole (a.u.) : 10 -4.095699E-03 1.798954E-02 -9.718055E-03 - - - + Dipole (a.u.) : 10 -4.095518E-03 1.798910E-02 -9.717986E-03 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 129.8 - Time prior to 1st pass: 129.8 + Time after variat. SCF: 63.1 + Time prior to 1st pass: 63.1 - Total DFT energy = -382.286087743960 - One electron energy = -1404.846094145077 - Coulomb energy = 632.388827368852 - Exchange-Corr. energy = -57.827958535420 - Nuclear repulsion energy = 447.999137567685 + Total DFT energy = -382.286088216916 + One electron energy = -1404.846083993947 + Coulomb energy = 632.388821813657 + Exchange-Corr. energy = -57.827958374177 + Nuclear repulsion energy = 447.999132337550 - Numeric. integr. density = 70.000011836388 + Numeric. integr. density = 70.000011834429 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -1030,63 +1027,63 @@ atom coordinates gradient x y z x y z - 1 C 0.567530 -2.668341 0.044704 0.015559 -0.035974 0.001813 + 1 C 0.567529 -2.668341 0.044704 0.015559 -0.035974 0.001813 2 C 2.531602 -0.822243 0.100532 0.000901 -0.004037 0.017974 3 C 1.992775 1.794885 -0.042563 -0.004124 0.030992 -0.018625 4 C -0.514346 2.658486 0.023505 0.016448 0.010148 0.006969 - 5 C -2.522374 0.863231 -0.068861 0.000546 0.006926 -0.007230 + 5 C -2.522374 0.863231 -0.068860 0.000546 0.006926 -0.007230 6 C -1.982401 -1.736543 -0.073865 0.005531 0.003822 -0.003483 7 H 4.525787 -1.399529 -0.070983 0.002751 0.003228 -0.007213 - 8 H 3.567073 3.083360 0.161873 -0.007828 -0.009247 0.005443 - 9 H -4.493159 1.584944 0.001115 -0.008266 0.006662 0.003621 - 10 H -3.546450 -3.139808 -0.156117 -0.006957 -0.010761 -0.000346 + 8 H 3.567073 3.083359 0.161873 -0.007828 -0.009247 0.005443 + 9 H -4.493160 1.584944 0.001115 -0.008266 0.006662 0.003621 + 10 H -3.546451 -3.139808 -0.156117 -0.006957 -0.010761 -0.000346 11 C -1.170474 5.346604 0.072671 -0.089675 -0.042631 0.004961 12 C 0.694525 7.179039 -0.052764 -0.013373 0.066106 -0.002902 - 13 H -3.074048 5.853453 0.240054 0.046504 -0.011686 -0.002601 + 13 H -3.074049 5.853453 0.240054 0.046504 -0.011686 -0.002601 14 H 0.407018 9.147039 0.055282 0.015218 -0.037388 -0.000746 - 15 H 2.800386 6.664076 -0.150870 0.037483 -0.005680 0.000412 + 15 H 2.800386 6.664077 -0.150870 0.037483 -0.005680 0.000412 16 C 1.088225 -5.370707 -0.051004 -0.003557 0.055093 0.017731 17 C -0.708164 -7.241812 0.068207 -0.016130 -0.014358 -0.001840 18 H 3.072666 -5.874458 -0.593386 0.011894 -0.001511 -0.011805 19 H -0.303341 -9.318300 -0.134072 0.002603 -0.022309 -0.001369 20 H -2.680850 -6.631733 0.402287 -0.005531 0.012605 -0.000762 - - - + + + QMD Run Information ------------------- Time elapsed (fs) : 6.651932 Kin. energy (a.u.): 11 0.018482 Pot. energy (a.u.): 11 -382.286088 - Tot. energy (a.u.): 11 -382.267605 + Tot. energy (a.u.): 11 -382.267606 Target temp. (K) : 11 298.00 Current temp. (K) : 11 216.16 - Dipole (a.u.) : 11 -3.416412E-03 1.825050E-02 -1.019820E-02 - - - + Dipole (a.u.) : 11 -3.416276E-03 1.825022E-02 -1.019813E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 140.7 - Time prior to 1st pass: 140.7 + Time after variat. SCF: 68.5 + Time prior to 1st pass: 68.5 - Total DFT energy = -382.283659115531 - One electron energy = -1404.617884043011 - Coulomb energy = 632.275147519826 - Exchange-Corr. energy = -57.827283162930 - Nuclear repulsion energy = 447.886360570585 + Total DFT energy = -382.283659499057 + One electron energy = -1404.617873752549 + Coulomb energy = 632.275141976119 + Exchange-Corr. energy = -57.827282987215 + Nuclear repulsion energy = 447.886355264588 - Numeric. integr. density = 70.000007920787 + Numeric. integr. density = 70.000007919202 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -1095,29 +1092,29 @@ atom coordinates gradient x y z x y z - 1 C 0.569755 -2.675008 0.048566 0.017187 -0.042671 0.002075 + 1 C 0.569754 -2.675008 0.048566 0.017187 -0.042671 0.002075 2 C 2.534999 -0.819111 0.107342 0.001692 -0.000325 0.018632 - 3 C 1.998267 1.794510 -0.043931 0.000309 0.027425 -0.019441 + 3 C 1.998267 1.794510 -0.043931 0.000309 0.027426 -0.019441 4 C -0.517107 2.667989 0.024795 0.012511 0.018815 0.007511 5 C -2.524152 0.862757 -0.074254 0.000031 0.002482 -0.007724 6 C -1.983823 -1.733650 -0.080137 0.004589 0.007858 -0.003741 - 7 H 4.530612 -1.398465 -0.066217 0.003434 0.002907 -0.007447 - 8 H 3.571834 3.085550 0.166789 -0.007476 -0.008629 0.005611 + 7 H 4.530613 -1.398465 -0.066217 0.003434 0.002907 -0.007447 + 8 H 3.571835 3.085549 0.166789 -0.007476 -0.008629 0.005611 9 H -4.496705 1.589826 -0.004020 -0.009326 0.007527 0.003791 - 10 H -3.554028 -3.137586 -0.170353 -0.008585 -0.011847 -0.000471 + 10 H -3.554029 -3.137586 -0.170353 -0.008585 -0.011847 -0.000471 11 C -1.171862 5.343980 0.079187 -0.101518 -0.042746 0.006592 12 C 0.692644 7.177093 -0.056894 -0.014360 0.068825 -0.002759 - 13 H -3.050839 5.845524 0.260165 0.059531 -0.015218 -0.004057 + 13 H -3.050840 5.845524 0.260165 0.059531 -0.015218 -0.004056 14 H 0.401273 9.139987 0.058920 0.015066 -0.039549 -0.000966 - 15 H 2.798559 6.653446 -0.167012 0.038312 -0.006727 0.000271 - 16 C 1.085785 -5.370267 -0.057786 -0.002620 0.056784 0.017943 + 15 H 2.798559 6.653447 -0.167012 0.038312 -0.006727 0.000271 + 16 C 1.085786 -5.370267 -0.057786 -0.002620 0.056784 0.017943 17 C -0.707401 -7.243278 0.074716 -0.014217 -0.012570 -0.002032 18 H 3.056750 -5.873274 -0.630802 0.009933 -0.001035 -0.011746 19 H -0.303354 -9.322735 -0.146754 0.002739 -0.023917 -0.001759 - 20 H -2.681496 -6.642003 0.442035 -0.007233 0.012609 -0.000283 - - - + 20 H -2.681497 -6.642004 0.442035 -0.007233 0.012609 -0.000283 + + + QMD Run Information ------------------- Time elapsed (fs) : 7.256653 @@ -1126,32 +1123,32 @@ Tot. energy (a.u.): 12 -382.267517 Target temp. (K) : 12 298.00 Current temp. (K) : 12 188.79 - Dipole (a.u.) : 12 -3.403031E-03 1.843859E-02 -1.068935E-02 - - - + Dipole (a.u.) : 12 -3.403389E-03 1.843854E-02 -1.068928E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 151.6 - Time prior to 1st pass: 151.6 + Time after variat. SCF: 74.0 + Time prior to 1st pass: 74.0 - Total DFT energy = -382.284392727635 - One electron energy = -1404.404514206570 - Coulomb energy = 632.169439299011 - Exchange-Corr. energy = -57.826598719084 - Nuclear repulsion energy = 447.777280899008 + Total DFT energy = -382.284393093880 + One electron energy = -1404.404503954215 + Coulomb energy = 632.169433774857 + Exchange-Corr. energy = -57.826598541819 + Nuclear repulsion energy = 447.777275627296 - Numeric. integr. density = 70.000003866962 + Numeric. integr. density = 70.000003866321 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -1160,29 +1157,29 @@ atom coordinates gradient x y z x y z - 1 C 0.571489 -2.680455 0.052369 0.018586 -0.047885 0.002379 - 2 C 2.538347 -0.815970 0.113620 0.002655 0.003425 0.019015 + 1 C 0.571488 -2.680455 0.052369 0.018586 -0.047885 0.002379 + 2 C 2.538347 -0.815971 0.113620 0.002655 0.003425 0.019015 3 C 2.003751 1.793351 -0.044744 0.003371 0.022312 -0.020204 4 C -0.520225 2.676955 0.025871 0.008373 0.027371 0.008005 - 5 C -2.525931 0.862213 -0.079426 -0.001712 -0.001447 -0.008109 - 6 C -1.985376 -1.730981 -0.086302 0.002349 0.010482 -0.004052 + 5 C -2.525931 0.862213 -0.079426 -0.001712 -0.001446 -0.008109 + 6 C -1.985376 -1.730981 -0.086302 0.002349 0.010481 -0.004052 7 H 4.534270 -1.398389 -0.058917 0.003722 0.002648 -0.007547 - 8 H 3.579140 3.090675 0.169795 -0.005767 -0.006800 0.005870 + 8 H 3.579140 3.090674 0.169796 -0.005767 -0.006800 0.005870 9 H -4.497078 1.592148 -0.010444 -0.009000 0.007792 0.003871 10 H -3.558686 -3.131334 -0.184429 -0.008845 -0.011545 -0.000536 11 C -1.170350 5.342578 0.085515 -0.098684 -0.044562 0.006986 12 C 0.691173 7.173180 -0.060944 -0.010985 0.060433 -0.003212 13 H -3.047883 5.842773 0.281655 0.059592 -0.015415 -0.004396 - 14 H 0.390404 9.146389 0.062886 0.013469 -0.033218 -0.000675 - 15 H 2.783698 6.645105 -0.183246 0.034702 -0.006709 0.000345 + 14 H 0.390403 9.146389 0.062886 0.013469 -0.033218 -0.000675 + 15 H 2.783698 6.645106 -0.183246 0.034702 -0.006709 0.000345 16 C 1.083421 -5.371449 -0.065081 -0.000226 0.056254 0.017419 17 C -0.706232 -7.244385 0.081284 -0.012267 -0.012280 -0.002359 18 H 3.037455 -5.871738 -0.664221 0.006441 -0.000091 -0.011038 - 19 H -0.304299 -9.319033 -0.158838 0.002285 -0.022768 -0.001868 - 20 H -2.679682 -6.656564 0.481879 -0.008058 0.012003 0.000106 - - - + 19 H -0.304298 -9.319033 -0.158838 0.002285 -0.022768 -0.001868 + 20 H -2.679682 -6.656565 0.481879 -0.008058 0.012003 0.000106 + + + QMD Run Information ------------------- Time elapsed (fs) : 7.861374 @@ -1191,32 +1188,32 @@ Tot. energy (a.u.): 13 -382.267560 Target temp. (K) : 13 298.00 Current temp. (K) : 13 196.87 - Dipole (a.u.) : 13 -4.248441E-03 1.925117E-02 -1.119210E-02 - - - + Dipole (a.u.) : 13 -4.248841E-03 1.925116E-02 -1.119203E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 162.5 - Time prior to 1st pass: 162.5 + Time after variat. SCF: 79.5 + Time prior to 1st pass: 79.5 - Total DFT energy = -382.287631040780 - One electron energy = -1404.211382067331 - Coulomb energy = 632.074416558902 - Exchange-Corr. energy = -57.826050415596 - Nuclear repulsion energy = 447.675384883245 + Total DFT energy = -382.287631453484 + One electron energy = -1404.211372009135 + Coulomb energy = 632.074411140881 + Exchange-Corr. energy = -57.826050267509 + Nuclear repulsion energy = 447.675379682281 - Numeric. integr. density = 70.000000131000 + Numeric. integr. density = 70.000000129824 - Total iterative time = 8.0s + Total iterative time = 3.0s @@ -1225,63 +1222,63 @@ atom coordinates gradient x y z x y z - 1 C 0.572692 -2.684534 0.056104 0.019685 -0.051448 0.002733 - 2 C 2.541619 -0.812927 0.119354 0.003829 0.007042 0.019124 - 3 C 2.009138 1.791554 -0.044979 0.005280 0.016112 -0.020876 + 1 C 0.572691 -2.684534 0.056104 0.019685 -0.051448 0.002733 + 2 C 2.541619 -0.812928 0.119354 0.003830 0.007042 0.019124 + 3 C 2.009138 1.791555 -0.044979 0.005280 0.016112 -0.020876 4 C -0.523582 2.685139 0.026718 0.004169 0.035509 0.008435 - 5 C -2.527661 0.861709 -0.084367 -0.004633 -0.004712 -0.008376 - 6 C -1.986996 -1.728612 -0.092351 -0.001131 0.011593 -0.004426 - 7 H 4.536661 -1.399215 -0.049050 0.003588 0.002475 -0.007509 - 8 H 3.588406 3.098114 0.170805 -0.003040 -0.004064 0.006179 - 9 H -4.494388 1.591818 -0.018185 -0.007317 0.007443 0.003861 - 10 H -3.560334 -3.121155 -0.198323 -0.007725 -0.009862 -0.000521 - 11 C -1.166017 5.342449 0.091643 -0.081310 -0.047969 0.005827 + 5 C -2.527661 0.861710 -0.084367 -0.004633 -0.004711 -0.008376 + 6 C -1.986995 -1.728613 -0.092351 -0.001131 0.011593 -0.004426 + 7 H 4.536661 -1.399215 -0.049051 0.003588 0.002475 -0.007509 + 8 H 3.588407 3.098113 0.170805 -0.003039 -0.004064 0.006179 + 9 H -4.494389 1.591818 -0.018185 -0.007317 0.007443 0.003861 + 10 H -3.560335 -3.121154 -0.198323 -0.007725 -0.009862 -0.000521 + 11 C -1.166018 5.342449 0.091643 -0.081310 -0.047969 0.005827 12 C 0.690016 7.167541 -0.064903 -0.003478 0.042961 -0.004275 - 13 H -3.065199 5.845266 0.304642 0.046724 -0.012285 -0.003319 - 14 H 0.374952 9.164093 0.067082 0.010645 -0.020391 0.000089 - 15 H 2.757031 6.639046 -0.199598 0.026697 -0.005601 0.000703 + 13 H -3.065199 5.845266 0.304642 0.046725 -0.012285 -0.003319 + 14 H 0.374951 9.164093 0.067082 0.010645 -0.020391 0.000089 + 15 H 2.757031 6.639047 -0.199598 0.026697 -0.005601 0.000703 16 C 1.081063 -5.374238 -0.072873 0.003295 0.053534 0.016187 - 17 C -0.704713 -7.245141 0.087919 -0.010391 -0.013418 -0.002823 + 17 C -0.704713 -7.245142 0.087919 -0.010391 -0.013418 -0.002823 18 H 3.015969 -5.870171 -0.693886 0.001765 0.001224 -0.009721 19 H -0.306021 -9.307586 -0.170286 0.001271 -0.018945 -0.001637 - 20 H -2.675127 -6.675207 0.521688 -0.007924 0.010801 0.000345 - - - + 20 H -2.675127 -6.675209 0.521688 -0.007924 0.010801 0.000345 + + + QMD Run Information ------------------- Time elapsed (fs) : 8.466095 Kin. energy (a.u.): 14 0.019926 Pot. energy (a.u.): 14 -382.287631 - Tot. energy (a.u.): 14 -382.267705 + Tot. energy (a.u.): 14 -382.267706 Target temp. (K) : 14 298.00 Current temp. (K) : 14 233.04 - Dipole (a.u.) : 14 -5.866789E-03 2.034242E-02 -1.171353E-02 - - - + Dipole (a.u.) : 14 -5.866788E-03 2.034241E-02 -1.171346E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 173.4 - Time prior to 1st pass: 173.4 + Time after variat. SCF: 84.9 + Time prior to 1st pass: 84.9 - Total DFT energy = -382.291163197278 - One electron energy = -1404.052865995569 - Coulomb energy = 631.994550741301 - Exchange-Corr. energy = -57.826299858644 - Nuclear repulsion energy = 447.593451915634 + Total DFT energy = -382.291163628415 + One electron energy = -1404.052855798413 + Coulomb energy = 631.994545163203 + Exchange-Corr. energy = -57.826299715352 + Nuclear repulsion energy = 447.593446722147 - Numeric. integr. density = 69.999997249800 + Numeric. integr. density = 69.999997248967 - Total iterative time = 9.5s + Total iterative time = 3.6s @@ -1291,62 +1288,62 @@ atom coordinates gradient x y z x y z 1 C 0.573332 -2.687143 0.059761 0.020432 -0.053284 0.003143 - 2 C 2.544781 -0.810086 0.124542 0.005207 0.010389 0.018967 + 2 C 2.544781 -0.810086 0.124542 0.005207 0.010388 0.018967 3 C 2.014374 1.789298 -0.044617 0.006432 0.009426 -0.021385 4 C -0.527058 2.692308 0.027324 0.000048 0.042857 0.008781 5 C -2.529259 0.861341 -0.089068 -0.008512 -0.007232 -0.008524 6 C -1.988583 -1.726575 -0.098274 -0.005653 0.011261 -0.004863 7 H 4.537832 -1.400882 -0.036629 0.003063 0.002391 -0.007336 - 8 H 3.598707 3.106935 0.169713 0.000197 -0.000871 0.006460 + 8 H 3.598708 3.106934 0.169713 0.000197 -0.000871 0.006460 9 H -4.489210 1.588956 -0.027239 -0.004462 0.006527 0.003770 - 10 H -3.559354 -3.107620 -0.212039 -0.005368 -0.006958 -0.000416 + 10 H -3.559355 -3.107619 -0.212039 -0.005368 -0.006958 -0.000416 11 C -1.159362 5.343691 0.097605 -0.054390 -0.051560 0.003408 - 12 C 0.688958 7.160673 -0.068739 0.007502 0.020134 -0.005814 - 13 H -3.098411 5.851938 0.328757 0.025693 -0.007134 -0.001124 + 12 C 0.688958 7.160673 -0.068739 0.007503 0.020134 -0.005814 + 13 H -3.098412 5.851938 0.328757 0.025693 -0.007134 -0.001124 14 H 0.355878 9.188733 0.071247 0.007069 -0.004594 0.001137 - 15 H 2.721282 6.634893 -0.216188 0.014609 -0.003460 0.001413 + 15 H 2.721282 6.634894 -0.216188 0.014609 -0.003460 0.001413 16 C 1.078611 -5.378557 -0.081128 0.007392 0.048782 0.014377 17 C -0.702897 -7.245514 0.094634 -0.008626 -0.015738 -0.003423 18 H 2.993883 -5.869020 -0.720243 -0.003543 0.002753 -0.007928 19 H -0.308175 -9.289693 -0.181178 -0.000225 -0.012762 -0.001037 - 20 H -2.667875 -6.697526 0.561378 -0.006867 0.009074 0.000394 - - - + 20 H -2.667876 -6.697527 0.561378 -0.006867 0.009074 0.000394 + + + QMD Run Information ------------------- Time elapsed (fs) : 9.070816 Kin. energy (a.u.): 15 0.023323 - Pot. energy (a.u.): 15 -382.291163 + Pot. energy (a.u.): 15 -382.291164 Tot. energy (a.u.): 15 -382.267840 Target temp. (K) : 15 298.00 Current temp. (K) : 15 272.77 - Dipole (a.u.) : 15 -7.272258E-03 2.049710E-02 -1.232913E-02 - - - + Dipole (a.u.) : 15 -7.272340E-03 2.049716E-02 -1.232907E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 185.7 - Time prior to 1st pass: 185.7 + Time after variat. SCF: 90.8 + Time prior to 1st pass: 90.8 - Total DFT energy = -382.292888459089 - One electron energy = -1403.947126135477 - Coulomb energy = 631.938415427404 - Exchange-Corr. energy = -57.828009745634 - Nuclear repulsion energy = 447.543831994617 + Total DFT energy = -382.292888890287 + One electron energy = -1403.947115986428 + Coulomb energy = 631.938409978358 + Exchange-Corr. energy = -57.828009610890 + Nuclear repulsion energy = 447.543826728673 - Numeric. integr. density = 69.999995458281 + Numeric. integr. density = 69.999995457162 - Total iterative time = 9.5s + Total iterative time = 3.6s @@ -1357,61 +1354,61 @@ x y z x y z 1 C 0.573389 -2.688230 0.063328 0.020811 -0.053419 0.003620 2 C 2.547795 -0.807541 0.129188 0.006729 0.013374 0.018555 - 3 C 2.019427 1.786771 -0.043645 0.007304 0.002851 -0.021651 - 4 C -0.530536 2.698253 0.027679 -0.003821 0.048969 0.009023 - 5 C -2.530613 0.861179 -0.093526 -0.012966 -0.009010 -0.008570 - 6 C -1.990009 -1.724859 -0.104058 -0.010847 0.009697 -0.005351 - 7 H 4.537960 -1.403363 -0.021712 0.002214 0.002386 -0.007036 - 8 H 3.608941 3.116053 0.166423 0.003391 0.002292 0.006627 + 3 C 2.019427 1.786772 -0.043645 0.007304 0.002852 -0.021651 + 4 C -0.530536 2.698252 0.027679 -0.003821 0.048969 0.009023 + 5 C -2.530613 0.861179 -0.093526 -0.012966 -0.009009 -0.008570 + 6 C -1.990009 -1.724859 -0.104058 -0.010847 0.009696 -0.005351 + 7 H 4.537961 -1.403363 -0.021712 0.002214 0.002386 -0.007036 + 8 H 3.608942 3.116051 0.166423 0.003391 0.002292 0.006627 9 H -4.482514 1.583874 -0.037576 -0.000817 0.005177 0.003619 - 10 H -3.556548 -3.091718 -0.225614 -0.002086 -0.003150 -0.000226 + 10 H -3.556549 -3.091717 -0.225614 -0.002086 -0.003149 -0.000226 11 C -1.151153 5.346406 0.103470 -0.024458 -0.053560 0.000384 12 C 0.687686 7.153231 -0.072410 0.020754 -0.004160 -0.007624 - 13 H -3.140364 5.861038 0.353255 0.002676 -0.001629 0.001551 + 13 H -3.140365 5.861037 0.353255 0.002676 -0.001629 0.001551 14 H 0.334400 9.214936 0.075026 0.003273 0.010732 0.002238 - 15 H 2.680563 6.631917 -0.233260 -0.000665 -0.000502 0.002501 - 16 C 1.075948 -5.384269 -0.089793 0.011271 0.042239 0.012215 + 15 H 2.680564 6.631918 -0.233260 -0.000665 -0.000502 0.002501 + 16 C 1.075948 -5.384269 -0.089793 0.011272 0.042239 0.012215 17 C -0.700834 -7.245438 0.101448 -0.006912 -0.018693 -0.004135 18 H 2.973002 -5.868807 -0.743904 -0.008759 0.004289 -0.005889 19 H -0.310253 -9.267459 -0.191717 -0.002068 -0.004821 -0.000094 - 20 H -2.658288 -6.722931 0.600935 -0.005026 0.006936 0.000243 - - - + 20 H -2.658288 -6.722932 0.600935 -0.005026 0.006936 0.000243 + + + QMD Run Information ------------------- Time elapsed (fs) : 9.675537 Kin. energy (a.u.): 16 0.025010 - Pot. energy (a.u.): 16 -382.292888 + Pot. energy (a.u.): 16 -382.292889 Tot. energy (a.u.): 16 -382.267879 Target temp. (K) : 16 298.00 Current temp. (K) : 16 292.50 - Dipole (a.u.) : 16 -9.086854E-03 1.859289E-02 -1.311508E-02 - - - + Dipole (a.u.) : 16 -9.086937E-03 1.859296E-02 -1.311502E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 198.1 - Time prior to 1st pass: 198.1 + Time after variat. SCF: 96.7 + Time prior to 1st pass: 96.7 - Total DFT energy = -382.292130112564 - One electron energy = -1403.898205541204 - Coulomb energy = 631.907875438930 - Exchange-Corr. energy = -57.831340197616 - Nuclear repulsion energy = 447.529540187327 + Total DFT energy = -382.292130556125 + One electron energy = -1403.898195191654 + Coulomb energy = 631.907869939631 + Exchange-Corr. energy = -57.831340073376 + Nuclear repulsion energy = 447.529534769274 - Numeric. integr. density = 69.999994687090 + Numeric. integr. density = 69.999994686584 - Total iterative time = 9.4s + Total iterative time = 3.5s @@ -1422,61 +1419,61 @@ x y z x y z 1 C 0.572851 -2.687790 0.066791 0.020775 -0.051926 0.004168 2 C 2.550617 -0.805378 0.133304 0.008285 0.015887 0.017915 - 3 C 2.024271 1.784164 -0.042054 0.008307 -0.003043 -0.021621 - 4 C -0.533905 2.702798 0.027776 -0.007364 0.053450 0.009142 - 5 C -2.531597 0.861274 -0.097739 -0.017445 -0.010159 -0.008528 + 3 C 2.024271 1.784164 -0.042054 0.008307 -0.003042 -0.021621 + 4 C -0.533904 2.702798 0.027776 -0.007364 0.053450 0.009142 + 5 C -2.531597 0.861275 -0.097739 -0.017445 -0.010159 -0.008528 6 C -1.991125 -1.723420 -0.109689 -0.016174 0.007328 -0.005853 - 7 H 4.537336 -1.406656 -0.004401 0.001177 0.002436 -0.006628 - 8 H 3.618022 3.124391 0.160878 0.006084 0.005006 0.006616 + 7 H 4.537336 -1.406655 -0.004401 0.001177 0.002436 -0.006628 + 8 H 3.618023 3.124390 0.160878 0.006084 0.005006 0.006616 9 H -4.475540 1.577030 -0.049144 0.003113 0.003579 0.003429 - 10 H -3.553033 -3.074744 -0.239112 0.001649 0.001104 0.000025 - 11 C -1.142244 5.350651 0.109323 0.003536 -0.052735 -0.002626 + 10 H -3.553034 -3.074743 -0.239112 0.001649 0.001104 0.000025 + 11 C -1.142245 5.350651 0.109323 0.003536 -0.052735 -0.002626 12 C 0.685821 7.145908 -0.075863 0.034079 -0.026852 -0.009444 13 H -3.183228 5.870691 0.377225 -0.017708 0.003035 0.004101 14 H 0.311808 9.237489 0.078044 -0.000294 0.023242 0.003203 - 15 H 2.640071 6.629111 -0.251182 -0.017142 0.002782 0.003893 + 15 H 2.640071 6.629113 -0.251182 -0.017142 0.002782 0.003893 16 C 1.072963 -5.391189 -0.098808 0.014024 0.034263 0.010023 17 C -0.698574 -7.244827 0.108380 -0.005179 -0.021423 -0.004902 - 18 H 2.955100 -5.870052 -0.765561 -0.013033 0.005590 -0.003919 + 18 H 2.955100 -5.870052 -0.765560 -0.013033 0.005590 -0.003919 19 H -0.311627 -9.243585 -0.202224 -0.004047 0.003895 0.001089 - 20 H -2.646991 -6.750696 0.640409 -0.002643 0.004541 -0.000083 - - - + 20 H -2.646991 -6.750698 0.640409 -0.002643 0.004541 -0.000083 + + + QMD Run Information ------------------- Time elapsed (fs) : 10.280258 Kin. energy (a.u.): 17 0.024314 - Pot. energy (a.u.): 17 -382.292130 + Pot. energy (a.u.): 17 -382.292131 Tot. energy (a.u.): 17 -382.267816 Target temp. (K) : 17 298.00 Current temp. (K) : 17 284.37 - Dipole (a.u.) : 17 -1.042324E-02 1.501235E-02 -1.412413E-02 - - - + Dipole (a.u.) : 17 -1.042336E-02 1.501242E-02 -1.412410E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 210.4 - Time prior to 1st pass: 210.4 + Time after variat. SCF: 102.5 + Time prior to 1st pass: 102.5 - Total DFT energy = -382.289799520944 - One electron energy = -1403.894739101318 - Coulomb energy = 631.898791175965 - Exchange-Corr. energy = -57.835793460939 - Nuclear repulsion energy = 447.541941865348 + Total DFT energy = -382.289799971979 + One electron energy = -1403.894728298901 + Coulomb energy = 631.898785329914 + Exchange-Corr. energy = -57.835793277095 + Nuclear repulsion energy = 447.541936274103 - Numeric. integr. density = 69.999994390259 + Numeric. integr. density = 69.999994390095 - Total iterative time = 9.4s + Total iterative time = 3.6s @@ -1486,28 +1483,28 @@ atom coordinates gradient x y z x y z 1 C 0.571719 -2.685867 0.070136 0.020290 -0.048947 0.004785 - 2 C 2.553202 -0.803669 0.136908 0.009732 0.017856 0.017076 + 2 C 2.553202 -0.803669 0.136908 0.009733 0.017856 0.017076 3 C 2.028877 1.781643 -0.039845 0.009742 -0.007797 -0.021264 4 C -0.537063 2.705816 0.027612 -0.010546 0.056005 0.009123 5 C -2.532083 0.861660 -0.101708 -0.021292 -0.010850 -0.008416 6 C -1.991779 -1.722191 -0.115153 -0.020944 0.004724 -0.006315 - 7 H 4.536311 -1.410777 0.015165 0.000115 0.002500 -0.006128 - 8 H 3.625032 3.131026 0.153083 0.007931 0.006956 0.006382 + 7 H 4.536311 -1.410777 0.015164 0.000115 0.002500 -0.006128 + 8 H 3.625033 3.131025 0.153083 0.007931 0.006956 0.006382 9 H -4.469624 1.568969 -0.061879 0.006709 0.001970 0.003221 - 10 H -3.550079 -3.058146 -0.252619 0.005210 0.005210 0.000295 - 11 C -1.133437 5.356403 0.115252 0.027077 -0.048612 -0.005234 + 10 H -3.550080 -3.058145 -0.252619 0.005210 0.005210 0.000295 + 11 C -1.133438 5.356403 0.115252 0.027077 -0.048612 -0.005234 12 C 0.682982 7.139351 -0.079045 0.044224 -0.045694 -0.010914 - 13 H -3.220067 5.879312 0.399800 -0.033239 0.006339 0.006154 + 13 H -3.220067 5.879311 0.399800 -0.033239 0.006339 0.006154 14 H 0.289316 9.252134 0.079972 -0.003313 0.031708 0.003912 - 15 H 2.605410 6.625360 -0.270428 -0.031647 0.005590 0.005343 + 15 H 2.605410 6.625362 -0.270428 -0.031647 0.005590 0.005343 16 C 1.069577 -5.399087 -0.108108 0.014786 0.025238 0.008146 17 C -0.696166 -7.243604 0.115451 -0.003336 -0.022743 -0.005613 - 18 H 2.941633 -5.873200 -0.785884 -0.015574 0.006432 -0.002345 - 19 H -0.311625 -9.221035 -0.213101 -0.005872 0.012046 0.002309 - 20 H -2.634795 -6.780007 0.679911 -0.000055 0.002069 -0.000516 - - - + 18 H 2.941633 -5.873199 -0.785884 -0.015574 0.006432 -0.002345 + 19 H -0.311625 -9.221035 -0.213102 -0.005872 0.012046 0.002309 + 20 H -2.634795 -6.780008 0.679911 -0.000055 0.002069 -0.000516 + + + QMD Run Information ------------------- Time elapsed (fs) : 10.884979 @@ -1516,32 +1513,32 @@ Tot. energy (a.u.): 18 -382.267699 Target temp. (K) : 18 298.00 Current temp. (K) : 18 258.48 - Dipole (a.u.) : 18 -1.111054E-02 1.083368E-02 -1.536010E-02 - - - + Dipole (a.u.) : 18 -1.111073E-02 1.083369E-02 -1.536007E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 222.7 - Time prior to 1st pass: 222.7 + Time after variat. SCF: 108.4 + Time prior to 1st pass: 108.4 - Total DFT energy = -382.287668224899 - One electron energy = -1403.914766730525 - Coulomb energy = 631.902289273088 - Exchange-Corr. energy = -57.840448738941 - Nuclear repulsion energy = 447.565257971478 + Total DFT energy = -382.287668643126 + One electron energy = -1403.914755619093 + Coulomb energy = 631.902283244320 + Exchange-Corr. energy = -57.840448498510 + Nuclear repulsion energy = 447.565252230157 - Numeric. integr. density = 69.999994118079 + Numeric. integr. density = 69.999994117884 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -1552,61 +1549,61 @@ x y z x y z 1 C 0.570008 -2.682545 0.073343 0.019339 -0.044665 0.005467 2 C 2.555509 -0.802470 0.140024 0.010916 0.019256 0.016065 - 3 C 2.033205 1.779345 -0.037029 0.011775 -0.011089 -0.020578 - 4 C -0.539920 2.707235 0.027187 -0.013356 0.056468 0.008956 + 3 C 2.033205 1.779345 -0.037029 0.011775 -0.011088 -0.020578 + 4 C -0.539919 2.707234 0.027187 -0.013356 0.056468 0.008956 5 C -2.531960 0.862356 -0.105437 -0.023830 -0.011253 -0.008241 6 C -1.991835 -1.721096 -0.120436 -0.024402 0.002511 -0.006664 7 H 4.535247 -1.415748 0.036815 -0.000796 0.002531 -0.005554 - 8 H 3.629345 3.135294 0.143117 0.008719 0.007939 0.005914 - 9 H -4.465991 1.560237 -0.075710 0.009332 0.000589 0.003007 - 10 H -3.548897 -3.043320 -0.266225 0.007894 0.008530 0.000517 + 8 H 3.629346 3.135293 0.143117 0.008719 0.007939 0.005914 + 9 H -4.465992 1.560237 -0.075710 0.009332 0.000589 0.003007 + 10 H -3.548898 -3.043319 -0.266226 0.007894 0.008530 0.000517 11 C -1.125404 5.363544 0.121330 0.045320 -0.041301 -0.007256 12 C 0.678880 7.134101 -0.081916 0.047558 -0.059021 -0.011556 - 13 H -3.245598 5.885776 0.420281 -0.043348 0.008213 0.007548 + 13 H -3.245599 5.885775 0.420281 -0.043348 0.008213 0.007548 14 H 0.267951 9.255992 0.080569 -0.005573 0.035638 0.004301 - 15 H 2.581515 6.619707 -0.291492 -0.040499 0.006972 0.006421 - 16 C 1.065769 -5.407707 -0.117642 0.012972 0.015523 0.006857 + 15 H 2.581516 6.619708 -0.291493 -0.040499 0.006972 0.006421 + 16 C 1.065769 -5.407706 -0.117642 0.012972 0.015523 0.006857 17 C -0.693662 -7.241731 0.122683 -0.001288 -0.021349 -0.006117 - 18 H 2.933463 -5.878535 -0.805410 -0.015857 0.006664 -0.001419 - 19 H -0.309625 -9.202584 -0.224764 -0.007222 0.018141 0.003276 - 20 H -2.622580 -6.810021 0.719589 0.002347 -0.000299 -0.000946 - - - + 18 H 2.933464 -5.878535 -0.805410 -0.015857 0.006664 -0.001419 + 19 H -0.309625 -9.202584 -0.224765 -0.007222 0.018141 0.003276 + 20 H -2.622580 -6.810022 0.719589 0.002347 -0.000299 -0.000946 + + + QMD Run Information ------------------- Time elapsed (fs) : 11.489701 Kin. energy (a.u.): 19 0.020070 - Pot. energy (a.u.): 19 -382.287668 + Pot. energy (a.u.): 19 -382.287669 Tot. energy (a.u.): 19 -382.267599 Target temp. (K) : 19 298.00 Current temp. (K) : 19 234.72 - Dipole (a.u.) : 19 -1.130383E-02 7.269509E-03 -1.680412E-02 - - - + Dipole (a.u.) : 19 -1.130397E-02 7.269515E-03 -1.680410E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 233.5 - Time prior to 1st pass: 233.5 + Time after variat. SCF: 113.9 + Time prior to 1st pass: 113.9 - Total DFT energy = -382.287269914390 - One electron energy = -1403.937455088290 - Coulomb energy = 631.910097832791 - Exchange-Corr. energy = -57.844492418750 - Nuclear repulsion energy = 447.584579759859 + Total DFT energy = -382.287270381351 + One electron energy = -1403.937443538603 + Coulomb energy = 631.910091380430 + Exchange-Corr. energy = -57.844492177173 + Nuclear repulsion energy = 447.584573953996 - Numeric. integr. density = 69.999994061417 + Numeric. integr. density = 69.999994061458 - Total iterative time = 8.0s + Total iterative time = 3.0s @@ -1615,29 +1612,29 @@ atom coordinates gradient x y z x y z - 1 C 0.567745 -2.677947 0.076395 0.017891 -0.039266 0.006204 + 1 C 0.567744 -2.677947 0.076395 0.017891 -0.039266 0.006204 2 C 2.557504 -0.801822 0.142681 0.011689 0.020025 0.014911 3 C 2.037197 1.777364 -0.033625 0.014456 -0.012726 -0.019597 - 4 C -0.542395 2.707039 0.026507 -0.015837 0.054839 0.008636 + 4 C -0.542394 2.707039 0.026507 -0.015837 0.054839 0.008636 5 C -2.531156 0.863373 -0.108931 -0.024522 -0.011543 -0.008001 - 6 C -1.991193 -1.720073 -0.125529 -0.025885 0.001234 -0.006822 + 6 C -1.991193 -1.720073 -0.125529 -0.025885 0.001233 -0.006822 7 H 4.534453 -1.421581 0.060355 -0.001394 0.002484 -0.004918 - 8 H 3.630691 3.136862 0.131138 0.008383 0.007883 0.005230 - 9 H -4.465533 1.551305 -0.090564 0.010471 -0.000374 0.002784 - 10 H -3.550400 -3.031396 -0.280008 0.009100 0.010537 0.000623 + 8 H 3.630692 3.136861 0.131138 0.008383 0.007883 0.005230 + 9 H -4.465534 1.551305 -0.090564 0.010471 -0.000374 0.002784 + 10 H -3.550401 -3.031395 -0.280008 0.009100 0.010537 0.000623 11 C -1.118665 5.371865 0.127616 0.058098 -0.031235 -0.008604 - 12 C 0.673419 7.130536 -0.084457 0.041641 -0.065711 -0.010891 + 12 C 0.673419 7.130536 -0.084457 0.041641 -0.065710 -0.010891 13 H -3.256383 5.889445 0.438194 -0.048160 0.008766 0.008228 14 H 0.248482 9.247726 0.079702 -0.006934 0.034866 0.004337 - 15 H 2.571399 6.611682 -0.314741 -0.041097 0.006234 0.006659 - 16 C 1.061590 -5.416770 -0.127372 0.008515 0.005472 0.006277 - 17 C -0.691122 -7.239248 0.130090 0.001030 -0.016267 -0.006269 + 15 H 2.571399 6.611683 -0.314741 -0.041097 0.006234 0.006659 + 16 C 1.061590 -5.416769 -0.127372 0.008515 0.005472 0.006277 + 17 C -0.691122 -7.239249 0.130090 0.001030 -0.016267 -0.006269 18 H 2.930689 -5.886137 -0.824453 -0.013799 0.006247 -0.001238 19 H -0.305168 -9.190305 -0.237542 -0.007812 0.020940 0.003685 - 20 H -2.611163 -6.839933 0.759589 0.004166 -0.002407 -0.001234 - - - + 20 H -2.611163 -6.839934 0.759589 0.004166 -0.002407 -0.001234 + + + QMD Run Information ------------------- Time elapsed (fs) : 12.094422 @@ -1646,32 +1643,32 @@ Tot. energy (a.u.): 20 -382.267573 Target temp. (K) : 20 298.00 Current temp. (K) : 20 230.36 - Dipole (a.u.) : 20 -1.080016E-02 5.091956E-03 -1.840020E-02 - - - + Dipole (a.u.) : 20 -1.080031E-02 5.091998E-03 -1.840022E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 244.4 - Time prior to 1st pass: 244.4 + Time after variat. SCF: 119.3 + Time prior to 1st pass: 119.3 - Total DFT energy = -382.289005628340 - One electron energy = -1403.951087967024 - Coulomb energy = 631.916839772592 - Exchange-Corr. energy = -57.847540609004 - Nuclear repulsion energy = 447.592783175096 + Total DFT energy = -382.289006068595 + One electron energy = -1403.951076743416 + Coulomb energy = 631.916833639341 + Exchange-Corr. energy = -57.847540394566 + Nuclear repulsion energy = 447.592777430047 - Numeric. integr. density = 69.999994443389 + Numeric. integr. density = 69.999994443038 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -1680,63 +1677,63 @@ atom coordinates gradient x y z x y z - 1 C 0.564970 -2.672228 0.079269 0.015960 -0.032972 0.006986 - 2 C 2.559165 -0.801745 0.144913 0.011952 0.020188 0.013627 - 3 C 2.040776 1.775747 -0.029661 0.017690 -0.012686 -0.018366 - 4 C -0.544418 2.705277 0.025580 -0.017985 0.051227 0.008158 + 1 C 0.564969 -2.672227 0.079269 0.015960 -0.032971 0.006986 + 2 C 2.559164 -0.801746 0.144913 0.011952 0.020188 0.013627 + 3 C 2.040776 1.775747 -0.029661 0.017689 -0.012686 -0.018366 + 4 C -0.544417 2.705277 0.025580 -0.017985 0.051227 0.008158 5 C -2.529652 0.864720 -0.112196 -0.023086 -0.011739 -0.007677 6 C -1.989812 -1.719086 -0.130427 -0.025009 0.001171 -0.006730 7 H 4.534134 -1.428259 0.085568 -0.001571 0.002323 -0.004222 - 8 H 3.629186 3.135748 0.117381 0.006967 0.006807 0.004369 + 8 H 3.629187 3.135747 0.117381 0.006967 0.006807 0.004369 9 H -4.468638 1.542500 -0.106365 0.009857 -0.000830 0.002534 - 10 H -3.554999 -3.023057 -0.294003 0.008476 0.010938 0.000554 + 10 H -3.555000 -3.023056 -0.294003 0.008476 0.010938 0.000554 11 C -1.113587 5.381078 0.134147 0.065229 -0.019056 -0.009198 12 C 0.666768 7.128849 -0.086687 0.026709 -0.065316 -0.008682 13 H -3.250783 5.890133 0.453308 -0.047868 0.008124 0.008165 - 14 H 0.231372 9.227598 0.077361 -0.007298 0.029345 0.004002 - 15 H 2.575263 6.601536 -0.340255 -0.033379 0.003338 0.005787 - 16 C 1.057167 -5.425989 -0.137281 0.001869 -0.004643 0.006334 + 14 H 0.231371 9.227598 0.077361 -0.007298 0.029345 0.004002 + 15 H 2.575264 6.601538 -0.340255 -0.033379 0.003338 0.005787 + 16 C 1.057168 -5.425989 -0.137280 0.001869 -0.004643 0.006334 17 C -0.688611 -7.236301 0.137676 0.003687 -0.007254 -0.006005 - 18 H 2.932608 -5.895865 -0.843076 -0.009793 0.005267 -0.001713 - 19 H -0.298054 -9.185149 -0.251573 -0.007496 0.019920 0.003316 - 20 H -2.601164 -6.869027 0.800008 0.005089 -0.004153 -0.001240 - - - + 18 H 2.932608 -5.895865 -0.843075 -0.009793 0.005267 -0.001713 + 19 H -0.298053 -9.185149 -0.251574 -0.007496 0.019920 0.003316 + 20 H -2.601164 -6.869028 0.800008 0.005090 -0.004153 -0.001240 + + + QMD Run Information ------------------- Time elapsed (fs) : 12.699143 Kin. energy (a.u.): 21 0.021373 Pot. energy (a.u.): 21 -382.289006 - Tot. energy (a.u.): 21 -382.267632 + Tot. energy (a.u.): 21 -382.267633 Target temp. (K) : 21 298.00 Current temp. (K) : 21 249.97 - Dipole (a.u.) : 21 -1.031174E-02 4.268278E-03 -2.006232E-02 - - - + Dipole (a.u.) : 21 -1.031187E-02 4.268404E-03 -2.006234E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 255.2 - Time prior to 1st pass: 255.2 + Time after variat. SCF: 124.6 + Time prior to 1st pass: 124.6 - Total DFT energy = -382.291974095909 - One electron energy = -1403.957080190202 - Coulomb energy = 631.922475440949 - Exchange-Corr. energy = -57.849824606705 - Nuclear repulsion energy = 447.592455260049 + Total DFT energy = -382.291974492880 + One electron energy = -1403.957069641432 + Coulomb energy = 631.922469818389 + Exchange-Corr. energy = -57.849824410042 + Nuclear repulsion energy = 447.592449740204 - Numeric. integr. density = 69.999995174498 + Numeric. integr. density = 69.999995174574 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -1745,63 +1742,63 @@ atom coordinates gradient x y z x y z - 1 C 0.561739 -2.665566 0.081944 0.013572 -0.025985 0.007800 + 1 C 0.561738 -2.665566 0.081944 0.013572 -0.025985 0.007800 2 C 2.560484 -0.802246 0.146754 0.011669 0.019768 0.012223 3 C 2.043849 1.774492 -0.025172 0.021264 -0.011115 -0.016949 4 C -0.545926 2.702051 0.024419 -0.019788 0.045858 0.007523 - 5 C -2.527488 0.866402 -0.115241 -0.019603 -0.011763 -0.007245 + 5 C -2.527488 0.866403 -0.115241 -0.019603 -0.011763 -0.007245 6 C -1.987716 -1.718132 -0.135133 -0.021794 0.002274 -0.006364 7 H 4.534349 -1.435727 0.112217 -0.001285 0.002026 -0.003465 - 8 H 3.625310 3.132318 0.102137 0.004648 0.004849 0.003390 - 9 H -4.475096 1.533977 -0.123028 0.007564 -0.000816 0.002231 - 10 H -3.562482 -3.018439 -0.308185 0.006063 0.009775 0.000286 + 8 H 3.625311 3.132317 0.102137 0.004648 0.004849 0.003390 + 9 H -4.475096 1.533978 -0.123028 0.007564 -0.000816 0.002231 + 10 H -3.562483 -3.018438 -0.308186 0.006063 0.009775 0.000286 11 C -1.110372 5.390836 0.140941 0.066243 -0.005472 -0.008914 12 C 0.659354 7.129029 -0.088668 0.005664 -0.058131 -0.005081 - 13 H -3.228899 5.888057 0.465645 -0.042426 0.006350 0.007302 - 14 H 0.216745 9.197487 0.073657 -0.006611 0.019151 0.003299 - 15 H 2.590484 6.590254 -0.367738 -0.019864 -0.001060 0.003892 - 16 C 1.052692 -5.435076 -0.147370 -0.006053 -0.014546 0.006796 - 17 C -0.686206 -7.233146 0.145434 0.006688 0.004957 -0.005381 - 18 H 2.937859 -5.907385 -0.861115 -0.004586 0.003892 -0.002610 + 13 H -3.228899 5.888057 0.465645 -0.042427 0.006350 0.007302 + 14 H 0.216744 9.197487 0.073657 -0.006611 0.019151 0.003299 + 15 H 2.590484 6.590256 -0.367738 -0.019864 -0.001060 0.003892 + 16 C 1.052692 -5.435075 -0.147370 -0.006053 -0.014545 0.006796 + 17 C -0.686205 -7.233146 0.145434 0.006688 0.004957 -0.005381 + 18 H 2.937860 -5.907384 -0.861115 -0.004586 0.003892 -0.002610 19 H -0.288389 -9.186770 -0.266733 -0.006316 0.015482 0.002124 - 20 H -2.592896 -6.896707 0.840850 0.004956 -0.005495 -0.000856 - - - + 20 H -2.592896 -6.896709 0.840850 0.004956 -0.005495 -0.000856 + + + QMD Run Information ------------------- Time elapsed (fs) : 13.303864 Kin. energy (a.u.): 22 0.024237 Pot. energy (a.u.): 22 -382.291974 - Tot. energy (a.u.): 22 -382.267737 + Tot. energy (a.u.): 22 -382.267738 Target temp. (K) : 22 298.00 Current temp. (K) : 22 283.46 - Dipole (a.u.) : 22 -1.026916E-02 4.187276E-03 -2.167390E-02 - - - + Dipole (a.u.) : 22 -1.026917E-02 4.187360E-03 -2.167392E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 266.1 - Time prior to 1st pass: 266.1 + Time after variat. SCF: 130.1 + Time prior to 1st pass: 130.1 - Total DFT energy = -382.294558312906 - One electron energy = -1403.964477633258 - Coulomb energy = 631.929752657886 - Exchange-Corr. energy = -57.851951203415 - Nuclear repulsion energy = 447.592117865881 + Total DFT energy = -382.294558726073 + One electron energy = -1403.964467810542 + Coulomb energy = 631.929747318294 + Exchange-Corr. energy = -57.851951014276 + Nuclear repulsion energy = 447.592112780451 - Numeric. integr. density = 69.999996077810 + Numeric. integr. density = 69.999996077719 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -1813,60 +1810,60 @@ 1 C 0.558120 -2.658161 0.084395 0.010776 -0.018510 0.008637 2 C 2.561470 -0.803311 0.148247 0.010879 0.018814 0.010706 3 C 2.046315 1.773554 -0.020198 0.024835 -0.008318 -0.015416 - 4 C -0.546870 2.697515 0.023044 -0.021203 0.039040 0.006733 - 5 C -2.524764 0.868421 -0.118080 -0.014493 -0.011429 -0.006684 + 4 C -0.546869 2.697515 0.023044 -0.021203 0.039040 0.006733 + 5 C -2.524764 0.868421 -0.118079 -0.014493 -0.011429 -0.006684 6 C -1.984998 -1.717243 -0.139657 -0.016663 0.004171 -0.005753 7 H 4.535002 -1.443885 0.140045 -0.000573 0.001599 -0.002642 - 8 H 3.619853 3.127239 0.085740 0.001727 0.002261 0.002359 + 8 H 3.619855 3.127238 0.085740 0.001727 0.002261 0.002359 9 H -4.484126 1.525732 -0.140451 0.003981 -0.000476 0.001851 - 10 H -3.572027 -3.017146 -0.322466 0.002274 0.007405 -0.000160 - 11 C -1.109049 5.400750 0.147990 0.060447 0.008799 -0.007590 + 10 H -3.572028 -3.017146 -0.322466 0.002274 0.007405 -0.000160 + 11 C -1.109050 5.400750 0.147990 0.060447 0.008799 -0.007590 12 C 0.651778 7.130869 -0.090505 -0.017379 -0.045165 -0.000580 13 H -3.192581 5.883820 0.475497 -0.031555 0.003451 0.005545 - 14 H 0.204367 9.160861 0.068832 -0.004900 0.004756 0.002263 - 15 H 2.612462 6.579333 -0.396545 -0.004218 -0.005964 0.001356 + 14 H 0.204366 9.160861 0.068832 -0.004900 0.004756 0.002263 + 15 H 2.612462 6.579335 -0.396545 -0.004218 -0.005964 0.001356 16 C 1.048389 -5.443747 -0.157654 -0.014106 -0.023924 0.007345 17 C -0.683991 -7.230133 0.153345 0.009908 0.018838 -0.004557 18 H 2.944671 -5.920228 -0.878266 0.000938 0.002327 -0.003629 - 19 H -0.276576 -9.193658 -0.282615 -0.004477 0.008777 0.000261 - 20 H -2.586315 -6.922519 0.881982 0.003802 -0.006451 -0.000044 - - - + 19 H -0.276575 -9.193658 -0.282615 -0.004477 0.008777 0.000261 + 20 H -2.586315 -6.922520 0.881982 0.003802 -0.006451 -0.000044 + + + QMD Run Information ------------------- Time elapsed (fs) : 13.908585 Kin. energy (a.u.): 23 0.026725 - Pot. energy (a.u.): 23 -382.294558 + Pot. energy (a.u.): 23 -382.294559 Tot. energy (a.u.): 23 -382.267833 Target temp. (K) : 23 298.00 Current temp. (K) : 23 312.56 - Dipole (a.u.) : 23 -1.077761E-02 4.012935E-03 -2.315880E-02 - - - + Dipole (a.u.) : 23 -1.077767E-02 4.013105E-03 -2.315883E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 276.9 - Time prior to 1st pass: 276.9 + Time after variat. SCF: 135.5 + Time prior to 1st pass: 135.5 - Total DFT energy = -382.295294980469 - One electron energy = -1403.981273877935 - Coulomb energy = 631.941097621028 - Exchange-Corr. energy = -57.854474171311 - Nuclear repulsion energy = 447.599355447749 + Total DFT energy = -382.295295368212 + One electron energy = -1403.981265569138 + Coulomb energy = 631.941093176273 + Exchange-Corr. energy = -57.854474000031 + Nuclear repulsion energy = 447.599351024684 - Numeric. integr. density = 69.999997287113 + Numeric. integr. density = 69.999997287063 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -1880,24 +1877,24 @@ 3 C 2.048071 1.772854 -0.014785 0.027939 -0.004746 -0.013834 4 C -0.547207 2.691864 0.021476 -0.022162 0.031139 0.005797 5 C -2.521626 0.870766 -0.120727 -0.008411 -0.010517 -0.005987 - 6 C -1.981803 -1.716473 -0.144017 -0.010305 0.006302 -0.004963 + 6 C -1.981803 -1.716473 -0.144016 -0.010305 0.006302 -0.004963 7 H 4.535849 -1.452586 0.168772 0.000458 0.001066 -0.001752 - 8 H 3.613809 3.121391 0.068540 -0.001373 -0.000585 0.001342 + 8 H 3.613811 3.121390 0.068541 -0.001373 -0.000585 0.001342 9 H -4.494512 1.517649 -0.158502 -0.000290 -0.000015 0.001383 - 10 H -3.582346 -3.018373 -0.336692 -0.002226 0.004373 -0.000725 + 10 H -3.582347 -3.018372 -0.336692 -0.002226 0.004373 -0.000725 11 C -1.109454 5.410413 0.155256 0.047351 0.023089 -0.005080 - 12 C 0.644699 7.133999 -0.092325 -0.038679 -0.028273 0.004172 + 12 C 0.644698 7.133999 -0.092324 -0.038679 -0.028273 0.004172 13 H -3.145528 5.878410 0.483462 -0.015069 -0.000553 0.002809 - 14 H 0.193655 9.122617 0.063236 -0.002369 -0.012504 0.000999 - 15 H 2.635875 6.570441 -0.425813 0.010340 -0.010470 -0.001339 + 14 H 0.193654 9.122617 0.063236 -0.002369 -0.012504 0.000999 + 15 H 2.635875 6.570443 -0.425813 0.010340 -0.010470 -0.001339 16 C 1.044489 -5.451734 -0.168148 -0.021127 -0.032415 0.007648 17 C -0.682060 -7.227658 0.161387 0.013059 0.032532 -0.003716 - 18 H 2.951163 -5.933864 -0.894182 0.005952 0.000762 -0.004479 - 19 H -0.263239 -9.203532 -0.298585 -0.002275 0.001268 -0.001995 - 20 H -2.581026 -6.946135 0.923130 0.001853 -0.007077 0.001154 - - - + 18 H 2.951163 -5.933863 -0.894182 0.005952 0.000762 -0.004479 + 19 H -0.263238 -9.203532 -0.298586 -0.002275 0.001268 -0.001995 + 20 H -2.581026 -6.946137 0.923130 0.001853 -0.007077 0.001154 + + + QMD Run Information ------------------- Time elapsed (fs) : 14.513306 @@ -1906,32 +1903,32 @@ Tot. energy (a.u.): 24 -382.267875 Target temp. (K) : 24 298.00 Current temp. (K) : 24 320.69 - Dipole (a.u.) : 24 -1.150379E-02 3.134564E-03 -2.452985E-02 - - - + Dipole (a.u.) : 24 -1.150403E-02 3.135114E-03 -2.452986E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 287.7 - Time prior to 1st pass: 287.7 + Time after variat. SCF: 141.1 + Time prior to 1st pass: 141.1 - Total DFT energy = -382.293592953574 - One electron energy = -1404.005322730848 - Coulomb energy = 631.954716659525 - Exchange-Corr. energy = -57.857506606753 - Nuclear repulsion energy = 447.614519724502 + Total DFT energy = -382.293593352159 + One electron energy = -1404.005316211836 + Coulomb energy = 631.954713103097 + Exchange-Corr. energy = -57.857506469285 + Nuclear repulsion energy = 447.614516225865 - Numeric. integr. density = 69.999998907969 + Numeric. integr. density = 69.999998908027 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -1940,29 +1937,29 @@ atom coordinates gradient x y z x y z - 1 C 0.550049 -2.641988 0.088534 0.004228 -0.002903 0.010328 - 2 C 2.562544 -0.807013 0.150361 0.008288 0.015515 0.007369 + 1 C 0.550048 -2.641988 0.088534 0.004228 -0.002903 0.010328 + 2 C 2.562543 -0.807013 0.150361 0.008288 0.015515 0.007369 3 C 2.049029 1.772290 -0.008976 0.030049 -0.000950 -0.012256 - 4 C -0.546912 2.685323 0.019743 -0.022585 0.022544 0.004730 - 5 C -2.518248 0.873412 -0.123204 -0.002101 -0.008840 -0.005166 + 4 C -0.546911 2.685323 0.019743 -0.022585 0.022544 0.004730 + 5 C -2.518248 0.873412 -0.123203 -0.002101 -0.008840 -0.005166 6 C -1.978314 -1.715883 -0.148234 -0.003512 0.008080 -0.004086 7 H 4.536541 -1.461650 0.198095 0.001649 0.000471 -0.000798 - 8 H 3.608233 3.115742 0.050884 -0.004149 -0.003234 0.000383 - 9 H -4.504798 1.509570 -0.177025 -0.004580 0.000361 0.000836 - 10 H -3.591908 -3.021087 -0.350671 -0.006702 0.001266 -0.001330 + 8 H 3.608234 3.115741 0.050884 -0.004149 -0.003234 0.000383 + 9 H -4.504798 1.509571 -0.177025 -0.004580 0.000361 0.000836 + 10 H -3.591909 -3.021086 -0.350671 -0.006702 0.001266 -0.001330 11 C -1.111212 5.419416 0.162666 0.027450 0.036752 -0.001385 - 12 C 0.638724 7.137938 -0.094264 -0.055554 -0.010505 0.008513 - 13 H -3.093348 5.873187 0.490472 0.006419 -0.005490 -0.000870 - 14 H 0.183750 9.088626 0.057301 0.000479 -0.029968 -0.000288 - 15 H 2.655770 6.565111 -0.454625 0.021763 -0.013979 -0.003780 - 16 C 1.041193 -5.458796 -0.178861 -0.026125 -0.039646 0.007418 - 17 C -0.680502 -7.226113 0.169534 0.015694 0.044312 -0.002977 + 12 C 0.638724 7.137938 -0.094263 -0.055554 -0.010506 0.008513 + 13 H -3.093349 5.873187 0.490472 0.006419 -0.005490 -0.000870 + 14 H 0.183749 9.088627 0.057301 0.000479 -0.029968 -0.000288 + 15 H 2.655770 6.565113 -0.454625 0.021763 -0.013979 -0.003780 + 16 C 1.041193 -5.458795 -0.178861 -0.026125 -0.039646 0.007418 + 17 C -0.680501 -7.226113 0.169534 0.015694 0.044312 -0.002977 18 H 2.955630 -5.947758 -0.908575 0.009814 -0.000648 -0.004938 - 19 H -0.249129 -9.213837 -0.313878 -0.000008 -0.005691 -0.004320 - 20 H -2.576369 -6.967345 0.963884 -0.000519 -0.007446 0.002617 - - - + 19 H -0.249128 -9.213837 -0.313878 -0.000008 -0.005691 -0.004320 + 20 H -2.576368 -6.967346 0.963884 -0.000519 -0.007446 0.002617 + + + QMD Run Information ------------------- Time elapsed (fs) : 15.118027 @@ -1971,32 +1968,32 @@ Tot. energy (a.u.): 25 -382.267838 Target temp. (K) : 25 298.00 Current temp. (K) : 25 301.22 - Dipole (a.u.) : 25 -1.166780E-02 1.655566E-03 -2.589633E-02 - - - + Dipole (a.u.) : 25 -1.166804E-02 1.656189E-03 -2.589634E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 298.5 - Time prior to 1st pass: 298.5 + Time after variat. SCF: 146.6 + Time prior to 1st pass: 146.6 - Total DFT energy = -382.290124463504 - One electron energy = -1404.020346311966 - Coulomb energy = 631.962839044551 - Exchange-Corr. energy = -57.860561575213 - Nuclear repulsion energy = 447.627944379125 + Total DFT energy = -382.290124878028 + One electron energy = -1404.020341996457 + Coulomb energy = 631.962836515254 + Exchange-Corr. energy = -57.860561487958 + Nuclear repulsion energy = 447.627942091133 - Numeric. integr. density = 70.000000543784 + Numeric. integr. density = 70.000000544838 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -2006,62 +2003,62 @@ atom coordinates gradient x y z x y z 1 C 0.545783 -2.633664 0.090173 0.000635 0.004848 0.011164 - 2 C 2.562705 -0.809556 0.151077 0.006855 0.013311 0.005590 - 3 C 2.049128 1.771753 -0.002817 0.030651 0.002511 -0.010707 + 2 C 2.562705 -0.809556 0.151077 0.006855 0.013312 0.005590 + 3 C 2.049129 1.771753 -0.002817 0.030651 0.002511 -0.010707 4 C -0.545971 2.678137 0.017875 -0.022400 0.013659 0.003557 - 5 C -2.514809 0.876310 -0.125532 0.003732 -0.006288 -0.004251 + 5 C -2.514809 0.876310 -0.125532 0.003732 -0.006289 -0.004251 6 C -1.974725 -1.715524 -0.152335 0.002986 0.009025 -0.003223 7 H 4.536671 -1.470874 0.227689 0.002814 -0.000132 0.000204 - 8 H 3.604067 3.111193 0.033098 -0.006099 -0.005226 -0.000499 - 9 H -4.513527 1.501369 -0.195831 -0.008276 0.000482 0.000236 - 10 H -3.599190 -3.024232 -0.364197 -0.010505 -0.001407 -0.001888 + 8 H 3.604068 3.111192 0.033098 -0.006099 -0.005226 -0.000499 + 9 H -4.513527 1.501369 -0.195832 -0.008276 0.000482 0.000236 + 10 H -3.599191 -3.024231 -0.364198 -0.010505 -0.001407 -0.001888 11 C -1.113754 5.427369 0.170117 0.003301 0.048970 0.003146 - 12 C 0.634337 7.142176 -0.096446 -0.066256 0.003918 0.011843 - 13 H -3.043353 5.869833 0.497779 0.030454 -0.010813 -0.005147 - 14 H 0.173681 9.064831 0.051464 0.002807 -0.043733 -0.001306 - 15 H 2.668262 6.564537 -0.482152 0.029070 -0.016179 -0.005671 + 12 C 0.634337 7.142177 -0.096446 -0.066256 0.003918 0.011843 + 13 H -3.043353 5.869832 0.497779 0.030453 -0.010813 -0.005147 + 14 H 0.173680 9.064831 0.051464 0.002807 -0.043733 -0.001306 + 15 H 2.668262 6.564538 -0.482152 0.029070 -0.016178 -0.005671 16 C 1.038644 -5.464724 -0.189785 -0.028371 -0.045292 0.006438 17 C -0.679392 -7.225833 0.177767 0.017307 0.052863 -0.002365 18 H 2.956759 -5.961432 -0.921288 0.012108 -0.001792 -0.004863 - 19 H -0.235015 -9.222207 -0.327700 0.002075 -0.011099 -0.006426 - 20 H -2.571534 -6.986021 1.003749 -0.002890 -0.007627 0.004169 - - - + 19 H -0.235014 -9.222207 -0.327701 0.002075 -0.011099 -0.006426 + 20 H -2.571534 -6.986022 1.003749 -0.002890 -0.007627 0.004169 + + + QMD Run Information ------------------- Time elapsed (fs) : 15.722748 Kin. energy (a.u.): 26 0.022398 - Pot. energy (a.u.): 26 -382.290124 - Tot. energy (a.u.): 26 -382.267726 + Pot. energy (a.u.): 26 -382.290125 + Tot. energy (a.u.): 26 -382.267727 Target temp. (K) : 26 298.00 Current temp. (K) : 26 261.96 - Dipole (a.u.) : 26 -1.067228E-02 2.667558E-04 -2.739282E-02 - - - + Dipole (a.u.) : 26 -1.067251E-02 2.673747E-04 -2.739283E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 309.3 - Time prior to 1st pass: 309.3 + Time after variat. SCF: 152.0 + Time prior to 1st pass: 152.0 - Total DFT energy = -382.286692504457 - One electron energy = -1404.000241811000 - Coulomb energy = 631.953763299643 - Exchange-Corr. energy = -57.862726862751 - Nuclear repulsion energy = 447.622512869650 + Total DFT energy = -382.286692924564 + One electron energy = -1404.000240160936 + Coulomb energy = 631.953762046068 + Exchange-Corr. energy = -57.862726845907 + Nuclear repulsion energy = 447.622512036211 - Numeric. integr. density = 70.000001850799 + Numeric. integr. density = 70.000001850946 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -2071,28 +2068,28 @@ atom coordinates gradient x y z x y z 1 C 0.541499 -2.625480 0.091493 -0.003043 0.012323 0.011983 - 2 C 2.562671 -0.812478 0.151634 0.005591 0.010845 0.003778 + 2 C 2.562670 -0.812479 0.151634 0.005591 0.010845 0.003778 3 C 2.048352 1.771144 0.003648 0.029369 0.005178 -0.009182 4 C -0.544390 2.670562 0.015905 -0.021563 0.004876 0.002310 5 C -2.511477 0.879388 -0.127740 0.008510 -0.002858 -0.003287 6 C -1.971221 -1.715423 -0.156344 0.008602 0.008822 -0.002460 - 7 H 4.535845 -1.480053 0.257215 0.003772 -0.000685 0.001229 - 8 H 3.601976 3.108422 0.015481 -0.006837 -0.006197 -0.001321 - 9 H -4.519440 1.493004 -0.214718 -0.010900 0.000244 -0.000378 - 10 H -3.602898 -3.026898 -0.377082 -0.013147 -0.003278 -0.002326 - 11 C -1.116390 5.433923 0.177477 -0.019755 0.058572 0.007644 + 7 H 4.535844 -1.480053 0.257214 0.003772 -0.000685 0.001229 + 8 H 3.601977 3.108421 0.015481 -0.006837 -0.006197 -0.001321 + 9 H -4.519440 1.493004 -0.214719 -0.010900 0.000244 -0.000378 + 10 H -3.602899 -3.026897 -0.377082 -0.013147 -0.003278 -0.002326 + 11 C -1.116391 5.433923 0.177477 -0.019755 0.058572 0.007644 12 C 0.631843 7.146303 -0.098966 -0.069720 0.010776 0.013697 - 13 H -3.003717 5.870157 0.506836 0.051971 -0.015429 -0.009186 - 14 H 0.162658 9.055914 0.046071 0.003677 -0.049868 -0.001777 - 15 H 2.670864 6.569466 -0.507749 0.031907 -0.016950 -0.006811 + 13 H -3.003718 5.870156 0.506836 0.051971 -0.015429 -0.009186 + 14 H 0.162657 9.055914 0.046071 0.003677 -0.049868 -0.001777 + 15 H 2.670864 6.569468 -0.507750 0.031907 -0.016950 -0.006811 16 C 1.036905 -5.469359 -0.200893 -0.027451 -0.049120 0.004575 - 17 C -0.678776 -7.227064 0.186067 0.017463 0.057367 -0.001831 - 18 H 2.953768 -5.974497 -0.932347 0.012626 -0.002601 -0.004186 - 19 H -0.221608 -9.226800 -0.339336 0.003791 -0.014350 -0.008092 - 20 H -2.565717 -7.002102 1.042195 -0.004864 -0.007669 0.005621 - - - + 17 C -0.678776 -7.227065 0.186067 0.017463 0.057367 -0.001831 + 18 H 2.953768 -5.974496 -0.932347 0.012626 -0.002601 -0.004186 + 19 H -0.221607 -9.226800 -0.339337 0.003791 -0.014350 -0.008092 + 20 H -2.565717 -7.002103 1.042195 -0.004864 -0.007669 0.005621 + + + QMD Run Information ------------------- Time elapsed (fs) : 16.327469 @@ -2101,32 +2098,32 @@ Tot. energy (a.u.): 27 -382.267596 Target temp. (K) : 27 298.00 Current temp. (K) : 27 223.34 - Dipole (a.u.) : 27 -8.739021E-03 -1.606352E-04 -2.905765E-02 - - - + Dipole (a.u.) : 27 -8.739261E-03 -1.599880E-04 -2.905767E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 320.1 - Time prior to 1st pass: 320.1 + Time after variat. SCF: 157.4 + Time prior to 1st pass: 157.4 - Total DFT energy = -382.285318130288 - One electron energy = -1403.920441011028 - Coulomb energy = 631.916669786676 - Exchange-Corr. energy = -57.863130757865 - Nuclear repulsion energy = 447.581583851928 + Total DFT energy = -382.285318449210 + One electron energy = -1403.920442231620 + Coulomb energy = 631.916669929628 + Exchange-Corr. energy = -57.863130765543 + Nuclear repulsion energy = 447.581584618325 - Numeric. integr. density = 70.000003090529 + Numeric. integr. density = 70.000003090622 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -2135,29 +2132,29 @@ atom coordinates gradient x y z x y z - 1 C 0.537303 -2.617647 0.092471 -0.006702 0.019355 0.012779 + 1 C 0.537302 -2.617647 0.092471 -0.006702 0.019355 0.012779 2 C 2.562476 -0.815711 0.152083 0.004656 0.008198 0.001976 - 3 C 2.046736 1.770388 0.010376 0.026084 0.006799 -0.007655 + 3 C 2.046737 1.770387 0.010375 0.026084 0.006799 -0.007655 4 C -0.542193 2.662847 0.013868 -0.020075 -0.003455 0.001025 5 C -2.508389 0.882547 -0.129853 0.011823 0.001351 -0.002329 - 6 C -1.967962 -1.715574 -0.160283 0.012918 0.007331 -0.001868 - 7 H 4.533735 -1.488999 0.286321 0.004366 -0.001137 0.002246 - 8 H 3.602212 3.107760 -0.001686 -0.006200 -0.005984 -0.002121 - 9 H -4.521645 1.484555 -0.233477 -0.012136 -0.000395 -0.000959 - 10 H -3.602134 -3.028449 -0.389174 -0.014324 -0.004119 -0.002586 - 11 C -1.118462 5.438803 0.184619 -0.034760 0.064114 0.010855 - 12 C 0.631342 7.150122 -0.101878 -0.065571 0.007864 0.013828 + 6 C -1.967963 -1.715574 -0.160283 0.012918 0.007331 -0.001868 + 7 H 4.533735 -1.489000 0.286321 0.004366 -0.001137 0.002246 + 8 H 3.602212 3.107759 -0.001686 -0.006200 -0.005984 -0.002121 + 9 H -4.521645 1.484556 -0.233477 -0.012136 -0.000395 -0.000959 + 10 H -3.602135 -3.028448 -0.389175 -0.014324 -0.004119 -0.002586 + 11 C -1.118462 5.438803 0.184619 -0.034759 0.064114 0.010855 + 12 C 0.631341 7.150122 -0.101878 -0.065571 0.007864 0.013828 13 H -2.981763 5.875729 0.519018 0.064346 -0.017871 -0.011776 - 14 H 0.150383 9.063962 0.041282 0.002525 -0.046404 -0.001584 - 15 H 2.662611 6.580162 -0.531030 0.030204 -0.016283 -0.007051 + 14 H 0.150382 9.063962 0.041282 0.002525 -0.046404 -0.001584 + 15 H 2.662611 6.580163 -0.531030 0.030204 -0.016283 -0.007051 16 C 1.035950 -5.472590 -0.212132 -0.023298 -0.051030 0.001789 - 17 C -0.678660 -7.229934 0.194420 0.015904 0.057469 -0.001292 + 17 C -0.678660 -7.229935 0.194420 0.015904 0.057469 -0.001292 18 H 2.946482 -5.986676 -0.941981 0.011360 -0.003040 -0.002912 - 19 H -0.209490 -9.226511 -0.348219 0.005014 -0.015159 -0.009163 - 20 H -2.558245 -7.015574 1.078729 -0.006135 -0.007606 0.006799 - - - + 19 H -0.209489 -9.226511 -0.348220 0.005014 -0.015159 -0.009163 + 20 H -2.558245 -7.015575 1.078729 -0.006135 -0.007606 0.006799 + + + QMD Run Information ------------------- Time elapsed (fs) : 16.932190 @@ -2166,32 +2163,32 @@ Tot. energy (a.u.): 28 -382.267543 Target temp. (K) : 28 298.00 Current temp. (K) : 28 207.89 - Dipole (a.u.) : 28 -6.843406E-03 7.509542E-04 -3.079767E-02 - - - + Dipole (a.u.) : 28 -6.844032E-03 7.517135E-04 -3.079770E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 330.9 - Time prior to 1st pass: 330.9 + Time after variat. SCF: 162.9 + Time prior to 1st pass: 162.9 - Total DFT energy = -382.286803410007 - One electron energy = -1403.770656028229 - Coulomb energy = 631.846704716898 - Exchange-Corr. energy = -57.861439843006 - Nuclear repulsion energy = 447.498587744330 + Total DFT energy = -382.286803767453 + One electron energy = -1403.770660197900 + Coulomb energy = 631.846706238892 + Exchange-Corr. energy = -57.861439918656 + Nuclear repulsion energy = 447.498590110210 - Numeric. integr. density = 70.000003769414 + Numeric. integr. density = 70.000003769462 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -2202,61 +2199,61 @@ x y z x y z 1 C 0.533297 -2.610367 0.093083 -0.010236 0.025784 0.013543 2 C 2.562149 -0.819178 0.152476 0.004164 0.005455 0.000229 - 3 C 2.044375 1.769437 0.017322 0.020991 0.007372 -0.006097 - 4 C -0.539423 2.655231 0.011803 -0.017982 -0.011058 -0.000259 + 3 C 2.044376 1.769436 0.017322 0.020992 0.007371 -0.006097 + 4 C -0.539422 2.655231 0.011803 -0.017983 -0.011057 -0.000259 5 C -2.505638 0.885668 -0.131900 0.013440 0.006141 -0.001430 - 6 C -1.965073 -1.715934 -0.164168 0.015675 0.004578 -0.001497 + 6 C -1.965074 -1.715934 -0.164168 0.015675 0.004578 -0.001497 7 H 4.530139 -1.497559 0.314664 0.004495 -0.001451 0.003217 - 8 H 3.604556 3.109133 -0.018132 -0.004299 -0.004665 -0.002945 - 9 H -4.519721 1.476241 -0.251909 -0.011835 -0.001424 -0.001461 - 10 H -3.596496 -3.028599 -0.400388 -0.013897 -0.003834 -0.002628 - 11 C -1.119541 5.441852 0.191451 -0.036774 0.064513 0.011755 + 8 H 3.604557 3.109132 -0.018132 -0.004299 -0.004665 -0.002945 + 9 H -4.519721 1.476242 -0.251909 -0.011835 -0.001424 -0.001461 + 10 H -3.596497 -3.028598 -0.400388 -0.013897 -0.003834 -0.002628 + 11 C -1.119541 5.441851 0.191451 -0.036774 0.064513 0.011755 12 C 0.632713 7.153716 -0.105185 -0.054218 -0.003711 0.012244 - 13 H -2.981699 5.887382 0.535207 0.062879 -0.017013 -0.011923 - 14 H 0.137250 9.087796 0.037032 -0.000476 -0.034542 -0.000846 - 15 H 2.644083 6.596397 -0.551911 0.024021 -0.014240 -0.006271 - 16 C 1.035661 -5.474363 -0.223423 -0.016205 -0.051066 -0.001851 + 13 H -2.981699 5.887381 0.535207 0.062879 -0.017013 -0.011923 + 14 H 0.137248 9.087796 0.037033 -0.000476 -0.034542 -0.000846 + 15 H 2.644083 6.596399 -0.551911 0.024021 -0.014240 -0.006271 + 16 C 1.035661 -5.474363 -0.223422 -0.016205 -0.051066 -0.001851 17 C -0.678998 -7.234447 0.202809 0.012615 0.053212 -0.000686 - 18 H 2.935331 -5.997822 -0.950625 0.008489 -0.003116 -0.001113 - 19 H -0.199078 -9.221066 -0.353985 0.005666 -0.013477 -0.009548 - 20 H -2.548686 -7.026459 1.112951 -0.006513 -0.007458 0.007567 - - - + 18 H 2.935331 -5.997821 -0.950625 0.008489 -0.003116 -0.001113 + 19 H -0.199077 -9.221066 -0.353986 0.005666 -0.013477 -0.009548 + 20 H -2.548685 -7.026460 1.112951 -0.006513 -0.007458 0.007567 + + + QMD Run Information ------------------- Time elapsed (fs) : 17.536911 Kin. energy (a.u.): 29 0.019182 - Pot. energy (a.u.): 29 -382.286803 + Pot. energy (a.u.): 29 -382.286804 Tot. energy (a.u.): 29 -382.267621 Target temp. (K) : 29 298.00 Current temp. (K) : 29 224.34 - Dipole (a.u.) : 29 -5.868959E-03 2.490954E-03 -3.247281E-02 - - - + Dipole (a.u.) : 29 -5.869104E-03 2.491634E-03 -3.247285E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 341.7 - Time prior to 1st pass: 341.7 + Time after variat. SCF: 168.3 + Time prior to 1st pass: 168.3 - Total DFT energy = -382.289950640583 - One electron energy = -1403.560523212645 - Coulomb energy = 631.747315907874 - Exchange-Corr. energy = -57.858096671573 - Nuclear repulsion energy = 447.381353335762 + Total DFT energy = -382.289951003968 + One electron energy = -1403.560529864244 + Coulomb energy = 631.747318585137 + Exchange-Corr. energy = -57.858096827211 + Nuclear repulsion energy = 447.381357102350 - Numeric. integr. density = 70.000002966310 + Numeric. integr. density = 70.000002967309 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -2265,63 +2262,63 @@ atom coordinates gradient x y z x y z - 1 C 0.529585 -2.603824 0.093309 -0.013527 0.031464 0.014271 + 1 C 0.529584 -2.603824 0.093309 -0.013527 0.031464 0.014271 2 C 2.561703 -0.822801 0.152862 0.004160 0.002711 -0.001418 3 C 2.041415 1.768275 0.024442 0.014553 0.007106 -0.004495 - 4 C -0.536138 2.647931 0.009745 -0.015339 -0.017743 -0.001510 - 5 C -2.503271 0.888613 -0.133906 0.013336 0.011261 -0.000638 + 4 C -0.536138 2.647931 0.009745 -0.015339 -0.017742 -0.001510 + 5 C -2.503271 0.888614 -0.133906 0.013336 0.011260 -0.000638 6 C -1.962632 -1.716425 -0.168011 0.016778 0.000727 -0.001372 - 7 H 4.525015 -1.505624 0.341913 0.004113 -0.001610 0.004109 - 8 H 3.608363 3.112093 -0.033576 -0.001496 -0.002539 -0.003818 - 9 H -4.513771 1.468411 -0.269844 -0.010027 -0.002783 -0.001848 - 10 H -3.586131 -3.027445 -0.410707 -0.011899 -0.002455 -0.002438 - 11 C -1.119569 5.443057 0.197948 -0.026311 0.059792 0.010242 + 7 H 4.525014 -1.505625 0.341913 0.004113 -0.001610 0.004109 + 8 H 3.608364 3.112092 -0.033576 -0.001496 -0.002539 -0.003818 + 9 H -4.513771 1.468412 -0.269844 -0.010027 -0.002783 -0.001848 + 10 H -3.586132 -3.027444 -0.410707 -0.011899 -0.002455 -0.002438 + 11 C -1.119569 5.443057 0.197947 -0.026311 0.059792 0.010242 12 C 0.635634 7.157416 -0.108842 -0.036794 -0.020242 0.009141 - 13 H -3.003026 5.904822 0.555452 0.048158 -0.012855 -0.009525 - 14 H 0.124278 9.123382 0.033070 -0.004509 -0.017894 0.000152 - 15 H 2.617383 6.617477 -0.570659 0.013645 -0.010967 -0.004399 + 13 H -3.003026 5.904821 0.555452 0.048159 -0.012855 -0.009525 + 14 H 0.124277 9.123382 0.033071 -0.004509 -0.017894 0.000152 + 15 H 2.617383 6.617478 -0.570659 0.013645 -0.010967 -0.004399 16 C 1.035835 -5.474677 -0.234660 -0.006820 -0.049365 -0.006160 - 17 C -0.679697 -7.240479 0.211219 0.007815 0.044977 0.000010 - 18 H 2.921292 -6.007907 -0.958890 0.004400 -0.002889 0.001063 - 19 H -0.190594 -9.211035 -0.356503 0.005711 -0.009464 -0.009215 - 20 H -2.536911 -7.034806 1.144598 -0.005947 -0.007233 0.007850 - - - + 17 C -0.679696 -7.240479 0.211219 0.007816 0.044977 0.000010 + 18 H 2.921292 -6.007906 -0.958890 0.004400 -0.002889 0.001063 + 19 H -0.190593 -9.211035 -0.356504 0.005711 -0.009464 -0.009215 + 20 H -2.536911 -7.034807 1.144597 -0.005947 -0.007233 0.007850 + + + QMD Run Information ------------------- Time elapsed (fs) : 18.141632 Kin. energy (a.u.): 30 0.022176 Pot. energy (a.u.): 30 -382.289951 - Tot. energy (a.u.): 30 -382.267774 + Tot. energy (a.u.): 30 -382.267775 Target temp. (K) : 30 298.00 Current temp. (K) : 30 259.36 - Dipole (a.u.) : 30 -6.321125E-03 3.475646E-03 -3.403586E-02 - - - + Dipole (a.u.) : 30 -6.321309E-03 3.476272E-03 -3.403590E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 352.6 - Time prior to 1st pass: 352.6 + Time after variat. SCF: 173.7 + Time prior to 1st pass: 173.7 - Total DFT energy = -382.292422583279 - One electron energy = -1403.313859221088 - Coulomb energy = 631.628577971048 - Exchange-Corr. energy = -57.853994037781 - Nuclear repulsion energy = 447.246852704541 + Total DFT energy = -382.292422958468 + One electron energy = -1403.313867772152 + Coulomb energy = 631.628581511093 + Exchange-Corr. energy = -57.853994237049 + Nuclear repulsion energy = 447.246857539640 - Numeric. integr. density = 70.000000191123 + Numeric. integr. density = 70.000000190608 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -2332,27 +2329,27 @@ x y z x y z 1 C 0.526258 -2.598180 0.093127 -0.016473 0.036267 0.014950 2 C 2.561138 -0.826501 0.153288 0.004624 0.000053 -0.002930 - 3 C 2.038038 1.766910 0.031691 0.007411 0.006349 -0.002867 - 4 C -0.532416 2.641137 0.007730 -0.012235 -0.023414 -0.002708 - 5 C -2.501285 0.891237 -0.135894 0.011680 0.016387 0.000012 - 6 C -1.960670 -1.716937 -0.171814 0.016302 -0.003914 -0.001490 - 7 H 4.518491 -1.513142 0.367763 0.003248 -0.001620 0.004895 - 8 H 3.612679 3.115917 -0.047720 0.001706 -0.000025 -0.004741 - 9 H -4.504410 1.461528 -0.287151 -0.006907 -0.004372 -0.002095 - 10 H -3.571717 -3.025455 -0.420197 -0.008517 -0.000129 -0.002024 - 11 C -1.118846 5.442554 0.204151 -0.008862 0.051142 0.007197 + 3 C 2.038039 1.766910 0.031691 0.007411 0.006349 -0.002867 + 4 C -0.532415 2.641137 0.007730 -0.012235 -0.023414 -0.002708 + 5 C -2.501285 0.891237 -0.135894 0.011680 0.016386 0.000012 + 6 C -1.960670 -1.716937 -0.171814 0.016302 -0.003914 -0.001489 + 7 H 4.518490 -1.513143 0.367763 0.003248 -0.001620 0.004895 + 8 H 3.612680 3.115916 -0.047720 0.001706 -0.000025 -0.004741 + 9 H -4.504410 1.461529 -0.287151 -0.006907 -0.004372 -0.002095 + 10 H -3.571718 -3.025454 -0.420197 -0.008517 -0.000129 -0.002024 + 11 C -1.118846 5.442553 0.204151 -0.008862 0.051142 0.007197 12 C 0.639606 7.161695 -0.112760 -0.015050 -0.037344 0.004844 - 13 H -3.040737 5.926635 0.578937 0.025615 -0.006539 -0.005437 - 14 H 0.112841 9.165055 0.029057 -0.008575 -0.000523 0.001115 - 15 H 2.586041 6.642287 -0.587911 -0.000104 -0.006763 -0.001497 + 13 H -3.040737 5.926635 0.578937 0.025616 -0.006539 -0.005437 + 14 H 0.112839 9.165055 0.029057 -0.008575 -0.000523 0.001115 + 15 H 2.586041 6.642289 -0.587911 -0.000104 -0.006763 -0.001498 16 C 1.036204 -5.473581 -0.245721 0.003872 -0.046129 -0.010825 17 C -0.680618 -7.247797 0.219627 0.001908 0.033480 0.000789 - 18 H 2.905757 -6.017009 -0.967517 -0.000311 -0.002477 0.003388 - 19 H -0.184053 -9.197785 -0.355886 0.005168 -0.003490 -0.008204 - 20 H -2.523113 -7.040693 1.173574 -0.004501 -0.006939 0.007627 - - - + 18 H 2.905757 -6.017009 -0.967516 -0.000311 -0.002477 0.003388 + 19 H -0.184051 -9.197785 -0.355887 0.005168 -0.003490 -0.008204 + 20 H -2.523113 -7.040694 1.173574 -0.004501 -0.006939 0.007627 + + + QMD Run Information ------------------- Time elapsed (fs) : 18.746354 @@ -2361,32 +2358,32 @@ Tot. energy (a.u.): 31 -382.267883 Target temp. (K) : 31 298.00 Current temp. (K) : 31 287.00 - Dipole (a.u.) : 31 -7.234953E-03 2.932324E-03 -3.558702E-02 - - - + Dipole (a.u.) : 31 -7.235171E-03 2.932912E-03 -3.558706E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 363.4 - Time prior to 1st pass: 363.4 + Time after variat. SCF: 179.1 + Time prior to 1st pass: 179.1 - Total DFT energy = -382.292511423492 - One electron energy = -1403.053612578930 - Coulomb energy = 631.500644301550 - Exchange-Corr. energy = -57.849925480934 - Nuclear repulsion energy = 447.110382334822 + Total DFT energy = -382.292511876555 + One electron energy = -1403.053622167942 + Coulomb energy = 631.500648166800 + Exchange-Corr. energy = -57.849925726959 + Nuclear repulsion energy = 447.110387851546 - Numeric. integr. density = 69.999996014209 + Numeric. integr. density = 69.999996013451 - Total iterative time = 8.0s + Total iterative time = 3.1s @@ -2395,63 +2392,63 @@ atom coordinates gradient x y z x y z - 1 C 0.523403 -2.593573 0.092517 -0.018969 0.040084 0.015567 - 2 C 2.560441 -0.830203 0.153799 0.005462 -0.002415 -0.004279 - 3 C 2.034450 1.765364 0.039021 0.000264 0.005462 -0.001253 - 4 C -0.528344 2.635013 0.005793 -0.008765 -0.028044 -0.003839 - 5 C -2.499633 0.893393 -0.137883 0.008850 0.021173 0.000509 - 6 C -1.959174 -1.717338 -0.175575 0.014527 -0.008904 -0.001810 - 7 H 4.510861 -1.520109 0.391948 0.001984 -0.001504 0.005561 - 8 H 3.616415 3.119749 -0.060252 0.004768 0.002428 -0.005681 - 9 H -4.492699 1.456132 -0.303744 -0.002871 -0.006047 -0.002203 - 10 H -3.554407 -3.023422 -0.428998 -0.004133 0.002851 -0.001430 + 1 C 0.523402 -2.593572 0.092517 -0.018969 0.040084 0.015567 + 2 C 2.560440 -0.830203 0.153798 0.005462 -0.002415 -0.004279 + 3 C 2.034451 1.765364 0.039021 0.000264 0.005462 -0.001253 + 4 C -0.528343 2.635013 0.005793 -0.008766 -0.028044 -0.003839 + 5 C -2.499633 0.893393 -0.137882 0.008850 0.021173 0.000509 + 6 C -1.959174 -1.717337 -0.175575 0.014527 -0.008904 -0.001810 + 7 H 4.510861 -1.520110 0.391948 0.001984 -0.001504 0.005561 + 8 H 3.616416 3.119749 -0.060252 0.004768 0.002428 -0.005681 + 9 H -4.492699 1.456133 -0.303744 -0.002871 -0.006047 -0.002203 + 10 H -3.554407 -3.023421 -0.428999 -0.004133 0.002851 -0.001430 11 C -1.117869 5.440589 0.210149 0.008989 0.040234 0.003839 12 C 0.644008 7.167040 -0.116817 0.008517 -0.051497 -0.000149 - 13 H -3.087162 5.950674 0.604272 0.001787 0.000398 -0.000851 - 14 H 0.104321 9.206906 0.024664 -0.011895 0.014566 0.001842 - 15 H 2.554735 6.669398 -0.604653 -0.015463 -0.002156 0.002109 + 13 H -3.087162 5.950673 0.604272 0.001787 0.000398 -0.000851 + 14 H 0.104319 9.206906 0.024664 -0.011895 0.014566 0.001842 + 15 H 2.554734 6.669400 -0.604653 -0.015463 -0.002156 0.002109 16 C 1.036462 -5.471166 -0.256473 0.014651 -0.041551 -0.015435 - 17 C -0.681595 -7.256071 0.228014 -0.004611 0.019775 0.001638 + 17 C -0.681594 -7.256071 0.228014 -0.004611 0.019775 0.001638 18 H 2.890327 -6.025269 -0.977296 -0.004875 -0.002063 0.005570 - 19 H -0.179269 -9.183347 -0.352478 0.004139 0.003791 -0.006653 - 20 H -2.507784 -7.044219 1.199955 -0.002356 -0.006581 0.006947 - - - + 19 H -0.179268 -9.183347 -0.352479 0.004139 0.003791 -0.006653 + 20 H -2.507784 -7.044220 1.199955 -0.002356 -0.006581 0.006947 + + + QMD Run Information ------------------- Time elapsed (fs) : 19.351075 Kin. energy (a.u.): 32 0.024633 - Pot. energy (a.u.): 32 -382.292511 - Tot. energy (a.u.): 32 -382.267878 + Pot. energy (a.u.): 32 -382.292512 + Tot. energy (a.u.): 32 -382.267879 Target temp. (K) : 32 298.00 Current temp. (K) : 32 288.10 - Dipole (a.u.) : 32 -7.895365E-03 8.954788E-04 -3.726771E-02 - - - + Dipole (a.u.) : 32 -7.895457E-03 8.955879E-04 -3.726779E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 374.2 - Time prior to 1st pass: 374.2 + Time after variat. SCF: 184.5 + Time prior to 1st pass: 184.5 - Total DFT energy = -382.290206119667 - One electron energy = -1402.791110136109 - Coulomb energy = 631.369322036713 - Exchange-Corr. energy = -57.846151864167 - Nuclear repulsion energy = 446.977733843896 + Total DFT energy = -382.290206571965 + One electron energy = -1402.791120267762 + Coulomb energy = 631.369326162340 + Exchange-Corr. energy = -57.846152123396 + Nuclear repulsion energy = 446.977739656853 - Numeric. integr. density = 69.999992122295 + Numeric. integr. density = 69.999992121330 - Total iterative time = 7.9s + Total iterative time = 3.1s @@ -2461,62 +2458,62 @@ atom coordinates gradient x y z x y z 1 C 0.521089 -2.590110 0.091463 -0.020922 0.042833 0.016105 - 2 C 2.559587 -0.833836 0.154431 0.006519 -0.004588 -0.005452 + 2 C 2.559587 -0.833836 0.154431 0.006519 -0.004587 -0.005452 3 C 2.030855 1.763662 0.046388 -0.006250 0.004765 0.000286 - 4 C -0.524021 2.629690 0.003965 -0.005060 -0.031652 -0.004896 + 4 C -0.524020 2.629690 0.003965 -0.005060 -0.031652 -0.004896 5 C -2.498234 0.894943 -0.139885 0.005421 0.025259 0.000872 - 6 C -1.958093 -1.717483 -0.179284 0.011946 -0.013661 -0.002252 - 7 H 4.502557 -1.526565 0.414242 0.000461 -0.001305 0.006103 - 8 H 3.618528 3.122756 -0.070852 0.007220 0.004437 -0.006592 - 9 H -4.480012 1.452794 -0.319588 0.001512 -0.007625 -0.002199 - 10 H -3.535690 -3.022358 -0.437313 0.000684 0.006045 -0.000736 + 6 C -1.958093 -1.717483 -0.179284 0.011946 -0.013660 -0.002252 + 7 H 4.502557 -1.526566 0.414241 0.000461 -0.001305 0.006103 + 8 H 3.618529 3.122755 -0.070852 0.007220 0.004437 -0.006592 + 9 H -4.480011 1.452795 -0.319589 0.001512 -0.007625 -0.002199 + 10 H -3.535691 -3.022357 -0.437314 0.000684 0.006045 -0.000736 11 C -1.117149 5.437475 0.216037 0.022790 0.028500 0.001089 - 12 C 0.648167 7.173857 -0.120869 0.030464 -0.060439 -0.005040 - 13 H -3.134196 5.974576 0.629897 -0.018790 0.006771 0.003315 - 14 H 0.099847 9.243802 0.019645 -0.014025 0.025757 0.002236 - 15 H 2.528689 6.697243 -0.622112 -0.029525 0.002079 0.005718 + 12 C 0.648166 7.173857 -0.120869 0.030464 -0.060439 -0.005040 + 13 H -3.134195 5.974576 0.629897 -0.018790 0.006771 0.003315 + 14 H 0.099845 9.243802 0.019645 -0.014025 0.025757 0.002236 + 15 H 2.528688 6.697244 -0.622112 -0.029525 0.002079 0.005718 16 C 1.036302 -5.467565 -0.266784 0.024232 -0.035792 -0.019530 17 C -0.682439 -7.264910 0.236353 -0.011256 0.005243 0.002587 18 H 2.876555 -6.032827 -0.988970 -0.008456 -0.001873 0.007282 - 19 H -0.175894 -9.170199 -0.346806 0.002830 0.011404 -0.004824 - 20 H -2.491653 -7.045507 1.223973 0.000205 -0.006159 0.005928 - - - + 19 H -0.175893 -9.170198 -0.346807 0.002830 0.011404 -0.004824 + 20 H -2.491653 -7.045508 1.223973 0.000205 -0.006159 0.005928 + + + QMD Run Information ------------------- Time elapsed (fs) : 19.955796 Kin. energy (a.u.): 33 0.022426 - Pot. energy (a.u.): 33 -382.290206 + Pot. energy (a.u.): 33 -382.290207 Tot. energy (a.u.): 33 -382.267780 Target temp. (K) : 33 298.00 Current temp. (K) : 33 262.28 - Dipole (a.u.) : 33 -7.681205E-03 -1.603329E-03 -3.917821E-02 - - - + Dipole (a.u.) : 33 -7.681171E-03 -1.603407E-03 -3.917829E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 385.0 - Time prior to 1st pass: 385.0 + Time after variat. SCF: 190.0 + Time prior to 1st pass: 190.0 - Total DFT energy = -382.286952955795 - One electron energy = -1402.524938517700 - Coulomb energy = 631.235292876685 - Exchange-Corr. energy = -57.842378421764 - Nuclear repulsion energy = 446.845071106985 + Total DFT energy = -382.286953478982 + One electron energy = -1402.524948372770 + Coulomb energy = 631.235296719495 + Exchange-Corr. energy = -57.842378701707 + Nuclear repulsion energy = 446.845076876000 - Numeric. integr. density = 69.999989569567 + Numeric. integr. density = 69.999989569364 - Total iterative time = 7.9s + Total iterative time = 3.1s @@ -2526,28 +2523,28 @@ atom coordinates gradient x y z x y z 1 C 0.519373 -2.587871 0.089949 -0.022262 0.044462 0.016543 - 2 C 2.558548 -0.837337 0.155219 0.007598 -0.006359 -0.006452 + 2 C 2.558548 -0.837338 0.155219 0.007597 -0.006359 -0.006452 3 C 2.027438 1.761824 0.053746 -0.011614 0.004486 0.001690 - 4 C -0.519554 2.625271 0.002277 -0.001274 -0.034284 -0.005877 - 5 C -2.496990 0.895772 -0.141913 0.002108 0.028290 0.001150 - 6 C -1.957353 -1.717239 -0.182928 0.009221 -0.017489 -0.002701 + 4 C -0.519553 2.625271 0.002277 -0.001274 -0.034284 -0.005877 + 5 C -2.496989 0.895772 -0.141913 0.002108 0.028290 0.001150 + 6 C -1.957354 -1.717238 -0.182928 0.009221 -0.017489 -0.002701 7 H 4.494096 -1.532577 0.434459 -0.001139 -0.001080 0.006534 - 8 H 3.618186 3.124253 -0.079209 0.008711 0.005718 -0.007417 - 9 H -4.467838 1.452049 -0.334685 0.005547 -0.008902 -0.002141 - 10 H -3.517206 -3.023351 -0.445377 0.005219 0.008887 -0.000057 + 8 H 3.618186 3.124252 -0.079208 0.008711 0.005718 -0.007417 + 9 H -4.467838 1.452050 -0.334685 0.005547 -0.008902 -0.002141 + 10 H -3.517206 -3.023350 -0.445378 0.005219 0.008887 -0.000057 11 C -1.117080 5.433547 0.221894 0.030804 0.016901 -0.000616 - 12 C 0.651455 7.182401 -0.124777 0.046819 -0.062929 -0.008756 - 13 H -3.174836 5.996176 0.654394 -0.034146 0.011961 0.006598 - 14 H 0.100145 9.271935 0.013865 -0.014783 0.032431 0.002270 - 15 H 2.512687 6.724381 -0.641517 -0.038727 0.005090 0.008312 - 16 C 1.035449 -5.462941 -0.276537 0.031503 -0.028995 -0.022689 + 12 C 0.651454 7.182401 -0.124777 0.046819 -0.062929 -0.008756 + 13 H -3.174836 5.996175 0.654393 -0.034146 0.011961 0.006598 + 14 H 0.100143 9.271935 0.013865 -0.014783 0.032431 0.002270 + 15 H 2.512686 6.724382 -0.641517 -0.038727 0.005090 0.008312 + 16 C 1.035449 -5.462940 -0.276537 0.031503 -0.028995 -0.022689 17 C -0.682962 -7.273899 0.244619 -0.017621 -0.008507 0.003717 - 18 H 2.865661 -6.039748 -1.003122 -0.010340 -0.002119 0.008235 - 19 H -0.173482 -9.160930 -0.339494 0.001546 0.018106 -0.003087 - 20 H -2.475592 -7.044699 1.245975 0.002830 -0.005666 0.004744 - - - + 18 H 2.865661 -6.039748 -1.003121 -0.010340 -0.002119 0.008235 + 19 H -0.173480 -9.160930 -0.339494 0.001546 0.018106 -0.003087 + 20 H -2.475592 -7.044700 1.245974 0.002830 -0.005666 0.004744 + + + QMD Run Information ------------------- Time elapsed (fs) : 20.560517 @@ -2556,32 +2553,32 @@ Tot. energy (a.u.): 34 -382.267659 Target temp. (K) : 34 298.00 Current temp. (K) : 34 225.65 - Dipole (a.u.) : 34 -6.375644E-03 -3.179620E-03 -4.133958E-02 - - - + Dipole (a.u.) : 34 -6.375530E-03 -3.179832E-03 -4.133972E-02 + + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - - + + + Caching 1-el integrals - Time after variat. SCF: 395.7 - Time prior to 1st pass: 395.7 + Time after variat. SCF: 195.5 + Time prior to 1st pass: 195.5 - Total DFT energy = -382.284590954193 - One electron energy = -1402.248520535202 - Coulomb energy = 631.096967646429 - Exchange-Corr. energy = -57.838099685030 - Nuclear repulsion energy = 446.705061619611 + Total DFT energy = -382.284591471571 + One electron energy = -1402.248529759688 + Coulomb energy = 631.096971179520 + Exchange-Corr. energy = -57.838099935813 + Nuclear repulsion energy = 446.705067044410 - Numeric. integr. density = 69.999988245137 + Numeric. integr. density = 69.999988244642 - Total iterative time = 7.9s + Total iterative time = 3.1s @@ -2591,78 +2588,60 @@ atom coordinates gradient x y z x y z 1 C 0.518293 -2.586903 0.087962 -0.022936 0.044950 0.016863 - 2 C 2.557291 -0.840657 0.156192 0.008480 -0.007631 -0.007291 - 3 C 2.024352 1.759857 0.061056 -0.015464 0.004745 0.002906 + 2 C 2.557291 -0.840658 0.156192 0.008479 -0.007631 -0.007291 + 3 C 2.024353 1.759857 0.061056 -0.015464 0.004745 0.002906 4 C -0.515050 2.621832 0.000757 0.002429 -0.035999 -0.006781 - 5 C -2.495805 0.895792 -0.143974 -0.000353 0.029945 0.001411 - 6 C -1.956877 -1.716495 -0.186496 0.007060 -0.019677 -0.003019 - 7 H 4.486023 -1.538221 0.452453 -0.002618 -0.000894 0.006878 - 8 H 3.614879 3.123804 -0.085042 0.009030 0.006104 -0.008107 - 9 H -4.457552 1.454333 -0.349052 0.008531 -0.009670 -0.002108 - 10 H -3.500497 -3.027367 -0.453422 0.008728 0.010768 0.000474 + 5 C -2.495805 0.895793 -0.143973 -0.000353 0.029945 0.001411 + 6 C -1.956877 -1.716494 -0.186496 0.007060 -0.019677 -0.003019 + 7 H 4.486022 -1.538222 0.452453 -0.002618 -0.000894 0.006878 + 8 H 3.614880 3.123804 -0.085042 0.009030 0.006104 -0.008107 + 9 H -4.457552 1.454334 -0.349052 0.008531 -0.009670 -0.002108 + 10 H -3.500498 -3.027366 -0.453423 0.008728 0.010768 0.000474 11 C -1.117891 5.429136 0.227769 0.033018 0.006015 -0.001180 - 12 C 0.653406 7.192742 -0.128435 0.054429 -0.058527 -0.010291 - 13 H -3.203861 6.013706 0.676646 -0.043951 0.015755 0.008850 - 14 H 0.105472 9.289036 0.007312 -0.014136 0.034457 0.001951 - 15 H 2.509860 6.749787 -0.663749 -0.040254 0.006298 0.008929 + 12 C 0.653405 7.192742 -0.128435 0.054429 -0.058527 -0.010291 + 13 H -3.203861 6.013705 0.676646 -0.043951 0.015755 0.008850 + 14 H 0.105470 9.289035 0.007312 -0.014136 0.034457 0.001951 + 15 H 2.509859 6.749788 -0.663749 -0.040254 0.006298 0.008929 16 C 1.033696 -5.457488 -0.285642 0.035764 -0.021332 -0.024624 - 17 C -0.682982 -7.282645 0.252778 -0.023399 -0.019885 0.005127 + 17 C -0.682981 -7.282645 0.252778 -0.023399 -0.019885 0.005127 18 H 2.858283 -6.045948 -1.020075 -0.010133 -0.002931 0.008254 - 19 H -0.171596 -9.157821 -0.331131 0.000638 0.022597 -0.001850 - 20 H -2.460494 -7.041963 1.266362 0.005136 -0.005088 0.003608 - - - + 19 H -0.171594 -9.157821 -0.331132 0.000638 0.022597 -0.001850 + 20 H -2.460494 -7.041964 1.266362 0.005136 -0.005088 0.003608 + + + QMD Run Information ------------------- Time elapsed (fs) : 21.165238 Kin. energy (a.u.): 35 0.017004 Pot. energy (a.u.): 35 -382.284591 - Tot. energy (a.u.): 35 -382.267586 + Tot. energy (a.u.): 35 -382.267587 Target temp. (K) : 35 298.00 Current temp. (K) : 35 198.87 - Dipole (a.u.) : 35 -4.183250E-03 -2.816511E-03 -4.367215E-02 - - - - + Dipole (a.u.) : 35 -4.183163E-03 -2.816701E-03 -4.367229E-02 + + + + NWChem Input Module ------------------- - - - - + + + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, - V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, - J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, - J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, - C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, - K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, - J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, - V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, - B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, - S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, - A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, - D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, - J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, - A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, - R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, - D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, - V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, - Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, - D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, - A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, - and R. J. Harrison - "NWChem: Past, present, and future - J. Chem. Phys. 152, 184102 (2020) - doi:10.1063/5.0004997 - + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -2685,4 +2664,4 @@ T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 405.9s wall: 406.5s + Total times cpu: 189.3s wall: 200.9s diff --git a/data/NWChem/basicNWChem7.0/dvb_dispersion_bp86_d3zero.out b/data/NWChem/basicNWChem7.0/dvb_dispersion_bp86_d3zero.out index f76862918..4ec019a53 100644 --- a/data/NWChem/basicNWChem7.0/dvb_dispersion_bp86_d3zero.out +++ b/data/NWChem/basicNWChem7.0/dvb_dispersion_bp86_d3zero.out @@ -1,26 +1,26 @@ argument 1 = dvb_dispersion_bp86_d3zero.in - - - Northwest Computational Chemistry Package (NWChem) 7.0.2 + + + Northwest Computational Chemistry Package (NWChem) 7.0.0 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2020 + + Copyright (c) 1994-2019 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = osmium - program = nwchem - date = Sat Jun 4 13:32:22 2022 + hostname = smp-n17.sam.pitt.edu + program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem + date = Tue Sep 20 18:21:00 2022 - compiled = Fri_Jul_02_16:33:00_2021 - source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src - nwchem branch = 7.0.2 - nwchem revision = b9985dfa - ga revision = 5.7.2 - use scalapack = T + compiled = Wed_May_13_13:33:26_2020 + source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 + nwchem branch = 7.0.0 + nwchem revision = N/A + ga revision = 5.7.1 + use scalapack = F input = dvb_dispersion_bp86_d3zero.in prefix = dvb_dispersion_bp86_d3zero. data base = ./dvb_dispersion_bp86_d3zero.db status = startup - nproc = 1 + nproc = 4 time left = -1s @@ -68,17 +68,17 @@ Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + Scaling coordinates for geometry "geometry" by 1.889725989 (inverse scale = 0.529177249) @@ -88,15 +88,15 @@ ------ auto-z ------ - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - - + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 C 6.0000 0.27053273 -1.36846738 0.00000000 @@ -119,13 +119,13 @@ 18 H 1.0000 1.63783991 -3.13375483 0.00000000 19 H 1.0000 -0.17334345 -4.87598630 0.00000000 20 H 1.0000 -1.45452493 -3.54411910 0.00000000 - + Atomic Mass ----------- - + C 12.000000 H 1.007825 - + Effective nuclear repulsion energy (a.u.) 450.0061706802 @@ -133,27 +133,27 @@ ---------------------------- X Y Z ---------------- ---------------- ---------------- - 0.0000000000 -0.0000000000 0.0000000000 - + -0.0000000000 0.0000000000 0.0000000000 + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 2 3 7 8 11 12 13 14 15 - + Z-matrix (autoz) -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value ----------- -------- ----- ----- ----- ----- ----- ---------- 1 Stretch 1 2 1.39516 @@ -212,7 +212,7 @@ 54 Torsion 1 6 5 9 180.00000 55 Torsion 1 16 17 19 180.00000 56 Torsion 1 16 17 20 0.00000 - 57 Torsion 2 1 6 5 -0.00000 + 57 Torsion 2 1 6 5 0.00000 58 Torsion 2 1 6 10 180.00000 59 Torsion 2 1 16 17 180.00000 60 Torsion 2 1 16 18 0.00000 @@ -233,21 +233,21 @@ 75 Torsion 5 4 11 13 0.00000 76 Torsion 5 6 1 16 180.00000 77 Torsion 6 1 2 7 180.00000 - 78 Torsion 6 1 16 17 -0.00000 + 78 Torsion 6 1 16 17 0.00000 79 Torsion 6 1 16 18 180.00000 80 Torsion 6 5 4 11 180.00000 81 Torsion 7 2 1 16 0.00000 82 Torsion 7 2 3 8 0.00000 - 83 Torsion 8 3 4 11 -0.00000 + 83 Torsion 8 3 4 11 0.00000 84 Torsion 9 5 4 11 0.00000 - 85 Torsion 9 5 6 10 -0.00000 + 85 Torsion 9 5 6 10 0.00000 86 Torsion 10 6 1 16 0.00000 87 Torsion 13 11 12 14 0.00000 88 Torsion 13 11 12 15 180.00000 89 Torsion 18 16 17 19 0.00000 90 Torsion 18 16 17 20 180.00000 - - + + XYZ format geometry ------------------- 20 @@ -272,7 +272,7 @@ H 1.63783991 -3.13375483 0.00000000 H -0.17334345 -4.87598630 0.00000000 H -1.45452493 -3.54411910 0.00000000 - + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -345,9 +345,6 @@ - library name resolved from: environment - library file name is: - Summary of "ao basis" -> "" (cartesian) @@ -360,15 +357,13 @@ perdew86 is a nonlocal functional; adding perdew81 local functional. NWChem Property Module ---------------------- - - - itol2e modified to match energy - convergence criterion. - + + + NWChem DFT Module ----------------- - - + + Basis "ao basis" -> "ao basis" (cartesian) ----- C (Carbon) @@ -378,15 +373,15 @@ 1 S 7.16168370E+01 0.154329 1 S 1.30450960E+01 0.535328 1 S 3.53051220E+00 0.444635 - + 2 S 2.94124940E+00 -0.099967 2 S 6.83483100E-01 0.399513 2 S 2.22289900E-01 0.700115 - + 3 P 2.94124940E+00 0.155916 3 P 6.83483100E-01 0.607684 3 P 2.22289900E-01 0.391957 - + H (Hydrogen) ------------ Exponent Coefficients @@ -394,7 +389,7 @@ 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + Summary of "ao basis" -> "ao basis" (cartesian) @@ -417,16 +412,14 @@ Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 - + Caching 1-el integrals - itol2e modified to match energy - convergence criterion. - + General Information ------------------- SCF calculation type: DFT @@ -445,13 +438,13 @@ Convergence on energy requested: 1.00D-07 Convergence on density requested: 1.00D-05 Convergence on gradient requested: 5.00D-04 - + XC Information -------------- Becke 1988 Exchange Functional 1.000 Perdew 1981 Correlation Functional 1.000 local Perdew 1986 Correlation Functional 1.000 non-local - + Grid Information ---------------- Grid used for XC integration: fine @@ -464,7 +457,7 @@ Grid pruning is: on Number of quadrature shells: 650 Spatial weights used: Erf1 - + Convergence Information ----------------------- Convergence aids based upon iterative change in @@ -479,7 +472,7 @@ dE on: start ASAP start dE off: 2 iters 30 iters 30 iters - + Screening Tolerance Information ------------------------------- Density screening/tol_rho: 1.00D-11 @@ -488,20 +481,33 @@ XC Gaussian exp screening on grid/accXCfunc: 20 Schwarz screening/accCoul: 1.00D-08 + Dispersion Parameters + --------------------- + + DFT-D3 Model + s8 scale factor : 1.000000000000 + sr6 scale factor : 1.683000000000 + sr8 scale factor : 1.139000000000 + vdW contrib : 1.000000000000 + + + DFT-D3 Model + s8 scale factor : -0.014719930985 + sr6 scale factor : global array: Temp Over[1:60,1:60], handle: -989 1 2 3 4 5 6 ----------- ----------- ----------- ----------- ----------- ----------- - 1 1.00000 0.24836 -0.00000 0.00000 0.00000 0.00000 - 2 0.24836 1.00000 0.00000 -0.00000 0.00000 0.03795 - 3 0.00000 0.00000 1.00000 0.00000 0.00000 0.04734 - 4 0.00000 -0.00000 0.00000 1.00000 0.00000 0.04144 + 1 1.00000 0.24836 -0.00000 -0.00000 0.00000 0.00000 + 2 0.24836 1.00000 -0.00000 0.00000 0.00000 0.03795 + 3 -0.00000 -0.00000 1.00000 -0.00000 0.00000 0.04734 + 4 -0.00000 0.00000 -0.00000 1.00000 0.00000 0.04144 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 6 0.00000 0.03795 0.04734 0.04144 0.00000 1.00000 7 0.03795 0.36707 0.29320 0.25662 0.00000 0.24836 8 -0.04734 -0.29320 -0.09256 -0.26910 0.00000 0.00000 - 9 -0.04144 -0.25662 -0.26910 -0.02063 0.00000 0.00000 + 9 -0.04144 -0.25662 -0.26910 -0.02063 0.00000 -0.00000 10 0.00000 0.00000 0.00000 0.00000 0.21490 0.00000 11 0.00000 0.00184 0.00137 0.00402 0.00000 0.00000 12 0.00184 0.06128 0.02907 0.08533 0.00000 0.03799 @@ -561,15 +567,15 @@ 3 0.29320 -0.09256 -0.26910 0.00000 0.00137 0.02907 4 0.25662 -0.26910 -0.02063 0.00000 0.00402 0.08533 5 0.00000 0.00000 0.00000 0.21490 0.00000 0.00000 - 6 0.24836 0.00000 0.00000 0.00000 0.00000 0.03799 - 7 1.00000 -0.00000 -0.00000 0.00000 0.03799 0.36730 + 6 0.24836 0.00000 -0.00000 0.00000 0.00000 0.03799 + 7 1.00000 0.00000 -0.00000 0.00000 0.03799 0.36730 8 0.00000 1.00000 -0.00000 0.00000 -0.01222 -0.07561 9 -0.00000 -0.00000 1.00000 0.00000 0.06179 0.38240 10 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 11 0.03799 -0.01222 0.06179 0.00000 1.00000 0.24836 12 0.36730 -0.07561 0.38240 0.00000 0.24836 1.00000 - 13 0.07561 0.19464 0.10336 0.00000 0.00000 0.00000 - 14 -0.38240 0.10336 -0.30767 0.00000 -0.00000 0.00000 + 13 0.07561 0.19464 0.10336 0.00000 -0.00000 0.00000 + 14 -0.38240 0.10336 -0.30767 0.00000 0.00000 0.00000 15 0.00000 0.00000 0.00000 0.21508 0.00000 0.00000 16 0.00184 -0.00280 0.00320 0.00000 0.00000 0.03797 17 0.06132 -0.05940 0.06788 0.00000 0.03797 0.36720 @@ -629,15 +635,15 @@ 8 0.19464 0.10336 0.00000 -0.00280 -0.05940 -0.03785 9 0.10336 -0.30767 0.00000 0.00320 0.06788 0.07261 10 0.00000 0.00000 0.21508 0.00000 0.00000 0.00000 - 11 0.00000 -0.00000 0.00000 0.00000 0.03797 0.05959 - 12 0.00000 -0.00000 0.00000 0.03797 0.36720 0.36891 + 11 -0.00000 0.00000 0.00000 0.00000 0.03797 0.05959 + 12 0.00000 0.00000 0.00000 0.03797 0.36720 0.36891 13 1.00000 0.00000 0.00000 -0.05959 -0.36891 -0.27161 14 0.00000 1.00000 0.00000 0.02030 0.12569 0.16579 15 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 16 -0.05959 0.02030 0.00000 1.00000 0.24836 0.00000 17 -0.36891 0.12569 0.00000 0.24836 1.00000 0.00000 18 -0.27161 0.16579 0.00000 0.00000 0.00000 1.00000 - 19 0.16579 0.15852 0.00000 -0.00000 0.00000 0.00000 + 19 0.16579 0.15852 0.00000 0.00000 -0.00000 -0.00000 20 0.00000 0.00000 0.21500 0.00000 0.00000 0.00000 21 -0.00416 -0.00082 0.00000 0.00000 0.03795 -0.04734 22 -0.08844 -0.01750 0.00000 0.03795 0.36707 -0.29320 @@ -697,15 +703,15 @@ 13 0.16579 0.00000 -0.00416 -0.08844 -0.11525 -0.02788 14 0.15852 0.00000 -0.00082 -0.01750 -0.02788 0.02015 15 0.00000 0.21500 0.00000 0.00000 0.00000 0.00000 - 16 -0.00000 0.00000 0.00000 0.03795 0.04734 0.04144 - 17 0.00000 0.00000 0.03795 0.36707 0.29320 0.25662 - 18 0.00000 0.00000 -0.04734 -0.29320 -0.09256 -0.26910 + 16 0.00000 0.00000 0.00000 0.03795 0.04734 0.04144 + 17 -0.00000 0.00000 0.03795 0.36707 0.29320 0.25662 + 18 -0.00000 0.00000 -0.04734 -0.29320 -0.09256 -0.26910 19 1.00000 0.00000 -0.04144 -0.25662 -0.26910 -0.02063 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 - 21 -0.04144 0.00000 1.00000 0.24836 -0.00000 -0.00000 - 22 -0.25662 0.00000 0.24836 1.00000 0.00000 0.00000 + 21 -0.04144 0.00000 1.00000 0.24836 -0.00000 0.00000 + 22 -0.25662 0.00000 0.24836 1.00000 -0.00000 0.00000 23 -0.26910 0.00000 -0.00000 -0.00000 1.00000 -0.00000 - 24 -0.02063 0.00000 -0.00000 0.00000 -0.00000 1.00000 + 24 -0.02063 0.00000 0.00000 0.00000 -0.00000 1.00000 25 0.00000 0.21490 0.00000 0.00000 0.00000 0.00000 26 -0.00402 0.00000 0.00000 0.03799 0.01222 -0.06179 27 -0.08533 0.00000 0.03799 0.36730 0.07561 -0.38240 @@ -770,10 +776,10 @@ 23 0.00000 0.01222 0.07561 0.19464 0.10336 0.00000 24 0.00000 -0.06179 -0.38240 0.10336 -0.30767 0.00000 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.21508 - 26 0.00000 1.00000 0.24836 -0.00000 0.00000 0.00000 - 27 0.00000 0.24836 1.00000 -0.00000 0.00000 0.00000 - 28 0.00000 -0.00000 -0.00000 1.00000 0.00000 0.00000 - 29 0.00000 0.00000 -0.00000 0.00000 1.00000 0.00000 + 26 0.00000 1.00000 0.24836 0.00000 -0.00000 0.00000 + 27 0.00000 0.24836 1.00000 -0.00000 -0.00000 0.00000 + 28 0.00000 0.00000 -0.00000 1.00000 0.00000 0.00000 + 29 0.00000 -0.00000 -0.00000 0.00000 1.00000 0.00000 30 0.21508 0.00000 0.00000 0.00000 0.00000 1.00000 31 0.00000 0.00009 0.00645 0.01069 0.00036 0.00000 32 0.00000 0.00001 0.00185 0.00250 0.00219 0.00000 @@ -844,7 +850,7 @@ 34 0.00076 0.00011 0.05001 1.00000 0.00000 0.00016 35 0.00000 0.00102 0.00102 0.00000 1.00000 0.24836 36 0.00016 0.03049 0.03049 0.00016 0.24836 1.00000 - 37 0.00020 0.03990 -0.02922 -0.00009 0.00000 -0.00000 + 37 0.00020 0.03990 -0.02922 -0.00009 -0.00000 -0.00000 38 -0.00026 -0.02016 -0.03383 -0.00032 -0.00000 0.00000 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 40 0.00000 0.00148 0.00001 0.00000 0.00000 0.04472 @@ -905,15 +911,15 @@ 32 0.03990 -0.02016 0.00000 0.00148 0.03927 0.03197 33 -0.02922 -0.03383 0.00000 0.00001 0.00113 -0.00142 34 -0.00009 -0.00032 0.00000 0.00000 0.00000 -0.00000 - 35 0.00000 -0.00000 0.00000 0.00000 0.04472 -0.05348 - 36 0.00000 0.00000 0.00000 0.04472 0.40277 -0.29853 - 37 1.00000 -0.00000 0.00000 0.05348 0.29853 -0.05323 - 38 -0.00000 1.00000 0.00000 0.05144 0.28716 -0.28521 + 35 -0.00000 -0.00000 0.00000 0.00000 0.04472 -0.05348 + 36 -0.00000 0.00000 0.00000 0.04472 0.40277 -0.29853 + 37 1.00000 0.00000 0.00000 0.05348 0.29853 -0.05323 + 38 0.00000 1.00000 0.00000 0.05144 0.28716 -0.28521 39 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 40 0.05348 0.05144 0.00000 1.00000 0.24836 0.00000 + 40 0.05348 0.05144 0.00000 1.00000 0.24836 -0.00000 41 0.29853 0.28716 0.00000 0.24836 1.00000 0.00000 - 42 -0.05323 -0.28521 0.00000 0.00000 0.00000 1.00000 - 43 -0.28521 -0.03108 0.00000 0.00000 0.00000 0.00000 + 42 -0.05323 -0.28521 0.00000 -0.00000 0.00000 1.00000 + 43 -0.28521 -0.03108 0.00000 0.00000 -0.00000 0.00000 44 0.00000 0.00000 0.24327 0.00000 0.00000 0.00000 45 -0.45179 0.10758 0.00000 0.00578 0.10189 -0.12414 46 0.04556 0.12246 0.00000 0.06109 0.48601 -0.08998 @@ -973,8 +979,8 @@ 37 -0.28521 0.00000 -0.45179 0.04556 0.12414 0.00000 38 -0.03108 0.00000 0.10758 0.12246 0.04077 -0.00000 39 0.00000 0.24327 0.00000 0.00000 0.00000 0.00000 - 40 -0.00000 0.00000 0.00578 0.06109 0.06109 0.00000 - 41 0.00000 0.00000 0.10189 0.48601 0.48601 0.00000 + 40 0.00000 0.00000 0.00578 0.06109 0.06109 0.00000 + 41 -0.00000 0.00000 0.10189 0.48601 0.48601 0.00000 42 0.00000 0.00000 -0.12414 -0.08998 0.45179 0.00000 43 1.00000 0.00000 -0.04077 0.45562 -0.10758 -0.00000 44 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 @@ -983,7 +989,7 @@ 47 -0.10758 0.00000 0.01414 0.15221 1.00000 0.00000 48 -0.00000 0.00000 0.00000 0.00000 0.00000 1.00000 49 -0.00000 0.00000 0.00000 0.00000 0.00000 0.24836 - 50 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 50 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 51 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 52 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 53 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -1045,14 +1051,14 @@ 46 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 47 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 48 0.24836 0.00000 0.00000 0.00000 0.00000 0.04472 - 49 1.00000 -0.00000 -0.00000 0.00000 0.04472 0.40277 - 50 0.00000 1.00000 -0.00000 0.00000 -0.05348 -0.29853 - 51 -0.00000 -0.00000 1.00000 0.00000 -0.05144 -0.28716 + 49 1.00000 0.00000 -0.00000 0.00000 0.04472 0.40277 + 50 0.00000 1.00000 0.00000 0.00000 -0.05348 -0.29853 + 51 -0.00000 0.00000 1.00000 0.00000 -0.05144 -0.28716 52 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 53 0.04472 -0.05348 -0.05144 0.00000 1.00000 0.24836 54 0.40277 -0.29853 -0.28716 0.00000 0.24836 1.00000 - 55 0.29853 -0.05323 -0.28521 0.00000 -0.00000 -0.00000 - 56 0.28716 -0.28521 -0.03108 0.00000 -0.00000 -0.00000 + 55 0.29853 -0.05323 -0.28521 0.00000 0.00000 -0.00000 + 56 0.28716 -0.28521 -0.03108 0.00000 -0.00000 0.00000 57 0.00000 0.00000 0.00000 0.24327 0.00000 0.00000 58 0.48601 0.45179 -0.10758 0.00000 0.00578 0.10189 59 0.10189 -0.04556 -0.12246 0.00000 0.06109 0.48601 @@ -1112,46 +1118,33 @@ 50 -0.05323 -0.28521 0.00000 0.45179 -0.04556 -0.12414 51 -0.28521 -0.03108 0.00000 -0.10758 -0.12246 -0.04077 52 0.00000 0.00000 0.24327 0.00000 0.00000 0.00000 - 53 -0.00000 0.00000 0.00000 0.00578 0.06109 0.06109 - 54 -0.00000 -0.00000 0.00000 0.10189 0.48601 0.48601 + 53 0.00000 -0.00000 0.00000 0.00578 0.06109 0.06109 + 54 -0.00000 0.00000 0.00000 0.10189 0.48601 0.48601 55 1.00000 0.00000 0.00000 0.12414 0.08998 -0.45179 56 0.00000 1.00000 0.00000 0.04077 -0.45562 0.10758 57 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 58 0.12414 0.04077 0.00000 1.00000 0.04831 0.01414 59 0.08998 -0.45562 0.00000 0.04831 1.00000 0.15221 60 -0.45179 0.10758 0.00000 0.01414 0.15221 1.00000 - Dispersion Parameters - --------------------- - - DFT-D3 Model - s8 scale factor : 1.000000000000 - sr6 scale factor : 1.683000000000 - sr8 scale factor : 1.139000000000 - vdW contrib : 1.000000000000 - - - DFT-D3 Model - s8 scale factor : -0.014719930985 - sr6 scale factor : - + Superposition of Atomic Density Guess ------------------------------------- - + Sum of atomic energies: -376.44825176 global array: Temp HCore[1:60,1:60], handle: -988 1 2 3 4 5 6 ----------- ----------- ----------- ----------- ----------- ----------- - 1 1.00000 0.24836 -0.00000 0.00000 0.00000 0.00000 - 2 0.24836 1.00000 0.00000 -0.00000 0.00000 0.03795 - 3 0.00000 0.00000 1.00000 0.00000 0.00000 0.04734 - 4 0.00000 -0.00000 0.00000 1.00000 0.00000 0.04144 + 1 1.00000 0.24836 -0.00000 -0.00000 0.00000 0.00000 + 2 0.24836 1.00000 -0.00000 0.00000 0.00000 0.03795 + 3 -0.00000 -0.00000 1.00000 -0.00000 0.00000 0.04734 + 4 -0.00000 0.00000 -0.00000 1.00000 0.00000 0.04144 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 6 0.00000 0.03795 0.04734 0.04144 0.00000 1.00000 7 0.03795 0.36707 0.29320 0.25662 0.00000 0.24836 8 -0.04734 -0.29320 -0.09256 -0.26910 0.00000 0.00000 - 9 -0.04144 -0.25662 -0.26910 -0.02063 0.00000 0.00000 + 9 -0.04144 -0.25662 -0.26910 -0.02063 0.00000 -0.00000 10 0.00000 0.00000 0.00000 0.00000 0.21490 0.00000 11 0.00000 0.00184 0.00137 0.00402 0.00000 0.00000 12 0.00184 0.06128 0.02907 0.08533 0.00000 0.03799 @@ -1211,15 +1204,15 @@ 3 0.29320 -0.09256 -0.26910 0.00000 0.00137 0.02907 4 0.25662 -0.26910 -0.02063 0.00000 0.00402 0.08533 5 0.00000 0.00000 0.00000 0.21490 0.00000 0.00000 - 6 0.24836 0.00000 0.00000 0.00000 0.00000 0.03799 - 7 1.00000 -0.00000 -0.00000 0.00000 0.03799 0.36730 + 6 0.24836 0.00000 -0.00000 0.00000 0.00000 0.03799 + 7 1.00000 0.00000 -0.00000 0.00000 0.03799 0.36730 8 0.00000 1.00000 -0.00000 0.00000 -0.01222 -0.07561 9 -0.00000 -0.00000 1.00000 0.00000 0.06179 0.38240 10 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 11 0.03799 -0.01222 0.06179 0.00000 1.00000 0.24836 12 0.36730 -0.07561 0.38240 0.00000 0.24836 1.00000 - 13 0.07561 0.19464 0.10336 0.00000 0.00000 0.00000 - 14 -0.38240 0.10336 -0.30767 0.00000 -0.00000 0.00000 + 13 0.07561 0.19464 0.10336 0.00000 -0.00000 0.00000 + 14 -0.38240 0.10336 -0.30767 0.00000 0.00000 0.00000 15 0.00000 0.00000 0.00000 0.21508 0.00000 0.00000 16 0.00184 -0.00280 0.00320 0.00000 0.00000 0.03797 17 0.06132 -0.05940 0.06788 0.00000 0.03797 0.36720 @@ -1279,15 +1272,15 @@ 8 0.19464 0.10336 0.00000 -0.00280 -0.05940 -0.03785 9 0.10336 -0.30767 0.00000 0.00320 0.06788 0.07261 10 0.00000 0.00000 0.21508 0.00000 0.00000 0.00000 - 11 0.00000 -0.00000 0.00000 0.00000 0.03797 0.05959 - 12 0.00000 -0.00000 0.00000 0.03797 0.36720 0.36891 + 11 -0.00000 0.00000 0.00000 0.00000 0.03797 0.05959 + 12 0.00000 0.00000 0.00000 0.03797 0.36720 0.36891 13 1.00000 0.00000 0.00000 -0.05959 -0.36891 -0.27161 14 0.00000 1.00000 0.00000 0.02030 0.12569 0.16579 15 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 16 -0.05959 0.02030 0.00000 1.00000 0.24836 0.00000 17 -0.36891 0.12569 0.00000 0.24836 1.00000 0.00000 18 -0.27161 0.16579 0.00000 0.00000 0.00000 1.00000 - 19 0.16579 0.15852 0.00000 -0.00000 0.00000 0.00000 + 19 0.16579 0.15852 0.00000 0.00000 -0.00000 -0.00000 20 0.00000 0.00000 0.21500 0.00000 0.00000 0.00000 21 -0.00416 -0.00082 0.00000 0.00000 0.03795 -0.04734 22 -0.08844 -0.01750 0.00000 0.03795 0.36707 -0.29320 @@ -1347,15 +1340,15 @@ 13 0.16579 0.00000 -0.00416 -0.08844 -0.11525 -0.02788 14 0.15852 0.00000 -0.00082 -0.01750 -0.02788 0.02015 15 0.00000 0.21500 0.00000 0.00000 0.00000 0.00000 - 16 -0.00000 0.00000 0.00000 0.03795 0.04734 0.04144 - 17 0.00000 0.00000 0.03795 0.36707 0.29320 0.25662 - 18 0.00000 0.00000 -0.04734 -0.29320 -0.09256 -0.26910 + 16 0.00000 0.00000 0.00000 0.03795 0.04734 0.04144 + 17 -0.00000 0.00000 0.03795 0.36707 0.29320 0.25662 + 18 -0.00000 0.00000 -0.04734 -0.29320 -0.09256 -0.26910 19 1.00000 0.00000 -0.04144 -0.25662 -0.26910 -0.02063 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 - 21 -0.04144 0.00000 1.00000 0.24836 -0.00000 -0.00000 - 22 -0.25662 0.00000 0.24836 1.00000 0.00000 0.00000 + 21 -0.04144 0.00000 1.00000 0.24836 -0.00000 0.00000 + 22 -0.25662 0.00000 0.24836 1.00000 -0.00000 0.00000 23 -0.26910 0.00000 -0.00000 -0.00000 1.00000 -0.00000 - 24 -0.02063 0.00000 -0.00000 0.00000 -0.00000 1.00000 + 24 -0.02063 0.00000 0.00000 0.00000 -0.00000 1.00000 25 0.00000 0.21490 0.00000 0.00000 0.00000 0.00000 26 -0.00402 0.00000 0.00000 0.03799 0.01222 -0.06179 27 -0.08533 0.00000 0.03799 0.36730 0.07561 -0.38240 @@ -1420,10 +1413,10 @@ 23 0.00000 0.01222 0.07561 0.19464 0.10336 0.00000 24 0.00000 -0.06179 -0.38240 0.10336 -0.30767 0.00000 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.21508 - 26 0.00000 1.00000 0.24836 -0.00000 0.00000 0.00000 - 27 0.00000 0.24836 1.00000 -0.00000 0.00000 0.00000 - 28 0.00000 -0.00000 -0.00000 1.00000 0.00000 0.00000 - 29 0.00000 0.00000 -0.00000 0.00000 1.00000 0.00000 + 26 0.00000 1.00000 0.24836 0.00000 -0.00000 0.00000 + 27 0.00000 0.24836 1.00000 -0.00000 -0.00000 0.00000 + 28 0.00000 0.00000 -0.00000 1.00000 0.00000 0.00000 + 29 0.00000 -0.00000 -0.00000 0.00000 1.00000 0.00000 30 0.21508 0.00000 0.00000 0.00000 0.00000 1.00000 31 0.00000 0.00009 0.00645 0.01069 0.00036 0.00000 32 0.00000 0.00001 0.00185 0.00250 0.00219 0.00000 @@ -1494,7 +1487,7 @@ 34 0.00076 0.00011 0.05001 1.00000 0.00000 0.00016 35 0.00000 0.00102 0.00102 0.00000 1.00000 0.24836 36 0.00016 0.03049 0.03049 0.00016 0.24836 1.00000 - 37 0.00020 0.03990 -0.02922 -0.00009 0.00000 -0.00000 + 37 0.00020 0.03990 -0.02922 -0.00009 -0.00000 -0.00000 38 -0.00026 -0.02016 -0.03383 -0.00032 -0.00000 0.00000 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 40 0.00000 0.00148 0.00001 0.00000 0.00000 0.04472 @@ -1555,15 +1548,15 @@ 32 0.03990 -0.02016 0.00000 0.00148 0.03927 0.03197 33 -0.02922 -0.03383 0.00000 0.00001 0.00113 -0.00142 34 -0.00009 -0.00032 0.00000 0.00000 0.00000 -0.00000 - 35 0.00000 -0.00000 0.00000 0.00000 0.04472 -0.05348 - 36 0.00000 0.00000 0.00000 0.04472 0.40277 -0.29853 - 37 1.00000 -0.00000 0.00000 0.05348 0.29853 -0.05323 - 38 -0.00000 1.00000 0.00000 0.05144 0.28716 -0.28521 + 35 -0.00000 -0.00000 0.00000 0.00000 0.04472 -0.05348 + 36 -0.00000 0.00000 0.00000 0.04472 0.40277 -0.29853 + 37 1.00000 0.00000 0.00000 0.05348 0.29853 -0.05323 + 38 0.00000 1.00000 0.00000 0.05144 0.28716 -0.28521 39 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 40 0.05348 0.05144 0.00000 1.00000 0.24836 0.00000 + 40 0.05348 0.05144 0.00000 1.00000 0.24836 -0.00000 41 0.29853 0.28716 0.00000 0.24836 1.00000 0.00000 - 42 -0.05323 -0.28521 0.00000 0.00000 0.00000 1.00000 - 43 -0.28521 -0.03108 0.00000 0.00000 0.00000 0.00000 + 42 -0.05323 -0.28521 0.00000 -0.00000 0.00000 1.00000 + 43 -0.28521 -0.03108 0.00000 0.00000 -0.00000 0.00000 44 0.00000 0.00000 0.24327 0.00000 0.00000 0.00000 45 -0.45179 0.10758 0.00000 0.00578 0.10189 -0.12414 46 0.04556 0.12246 0.00000 0.06109 0.48601 -0.08998 @@ -1623,8 +1616,8 @@ 37 -0.28521 0.00000 -0.45179 0.04556 0.12414 0.00000 38 -0.03108 0.00000 0.10758 0.12246 0.04077 -0.00000 39 0.00000 0.24327 0.00000 0.00000 0.00000 0.00000 - 40 -0.00000 0.00000 0.00578 0.06109 0.06109 0.00000 - 41 0.00000 0.00000 0.10189 0.48601 0.48601 0.00000 + 40 0.00000 0.00000 0.00578 0.06109 0.06109 0.00000 + 41 -0.00000 0.00000 0.10189 0.48601 0.48601 0.00000 42 0.00000 0.00000 -0.12414 -0.08998 0.45179 0.00000 43 1.00000 0.00000 -0.04077 0.45562 -0.10758 -0.00000 44 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 @@ -1633,7 +1626,7 @@ 47 -0.10758 0.00000 0.01414 0.15221 1.00000 0.00000 48 -0.00000 0.00000 0.00000 0.00000 0.00000 1.00000 49 -0.00000 0.00000 0.00000 0.00000 0.00000 0.24836 - 50 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 50 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 51 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 52 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 53 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -1695,14 +1688,14 @@ 46 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 47 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 48 0.24836 0.00000 0.00000 0.00000 0.00000 0.04472 - 49 1.00000 -0.00000 -0.00000 0.00000 0.04472 0.40277 - 50 0.00000 1.00000 -0.00000 0.00000 -0.05348 -0.29853 - 51 -0.00000 -0.00000 1.00000 0.00000 -0.05144 -0.28716 + 49 1.00000 0.00000 -0.00000 0.00000 0.04472 0.40277 + 50 0.00000 1.00000 0.00000 0.00000 -0.05348 -0.29853 + 51 -0.00000 0.00000 1.00000 0.00000 -0.05144 -0.28716 52 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 53 0.04472 -0.05348 -0.05144 0.00000 1.00000 0.24836 54 0.40277 -0.29853 -0.28716 0.00000 0.24836 1.00000 - 55 0.29853 -0.05323 -0.28521 0.00000 -0.00000 -0.00000 - 56 0.28716 -0.28521 -0.03108 0.00000 -0.00000 -0.00000 + 55 0.29853 -0.05323 -0.28521 0.00000 0.00000 -0.00000 + 56 0.28716 -0.28521 -0.03108 0.00000 -0.00000 0.00000 57 0.00000 0.00000 0.00000 0.24327 0.00000 0.00000 58 0.48601 0.45179 -0.10758 0.00000 0.00578 0.10189 59 0.10189 -0.04556 -0.12246 0.00000 0.06109 0.48601 @@ -1762,15 +1755,15 @@ 50 -0.05323 -0.28521 0.00000 0.45179 -0.04556 -0.12414 51 -0.28521 -0.03108 0.00000 -0.10758 -0.12246 -0.04077 52 0.00000 0.00000 0.24327 0.00000 0.00000 0.00000 - 53 -0.00000 0.00000 0.00000 0.00578 0.06109 0.06109 - 54 -0.00000 -0.00000 0.00000 0.10189 0.48601 0.48601 + 53 0.00000 -0.00000 0.00000 0.00578 0.06109 0.06109 + 54 -0.00000 0.00000 0.00000 0.10189 0.48601 0.48601 55 1.00000 0.00000 0.00000 0.12414 0.08998 -0.45179 56 0.00000 1.00000 0.00000 0.04077 -0.45562 0.10758 57 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 58 0.12414 0.04077 0.00000 1.00000 0.04831 0.01414 59 0.08998 -0.45562 0.00000 0.04831 1.00000 0.15221 60 -0.45179 0.10758 0.00000 0.01414 0.15221 1.00000 - + Non-variational initial energy ------------------------------ @@ -1779,17 +1772,17 @@ 2-e energy = 579.886150 HOMO = -0.047400 LUMO = 0.177192 - - + + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 ag 2 bu 3 ag 4 bu 5 bu 6 ag 7 ag 8 bu 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -1799,99 +1792,99 @@ 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 bu - + Time after variat. SCF: 0.2 Time prior to 1st pass: 0.2 Grid_pts file = ./dvb_dispersion_bp86_d3zero.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 - Max. records in memory = 139 Max. recs in file = ********* + Max. records in memory = 36 Max. recs in file = 2708490 Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 5.10 5104058 + Heap Space remaining (MW): 12.66 12661298 Stack Space remaining (MW): 13.11 13106284 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.2780414847 -8.32D+02 1.48D-02 4.06D-01 1.1 - d= 0,ls=0.0,diis 2 -382.3165297366 -3.85D-02 1.03D-02 6.25D-02 1.8 - d= 0,ls=0.0,diis 3 -382.2953662489 2.12D-02 6.78D-03 1.92D-01 2.5 - d= 0,ls=0.0,diis 4 -382.3269700413 -3.16D-02 9.67D-04 3.29D-03 3.3 - d= 0,ls=0.0,diis 5 -382.3274952756 -5.25D-04 1.64D-04 1.18D-04 4.0 + d= 0,ls=0.0,diis 1 -382.2780415475 -8.32D+02 1.48D-02 4.06D-01 0.8 + d= 0,ls=0.0,diis 2 -382.3165297462 -3.85D-02 1.03D-02 6.25D-02 1.1 + d= 0,ls=0.0,diis 3 -382.2953662162 2.12D-02 6.78D-03 1.92D-01 1.5 + d= 0,ls=0.0,diis 4 -382.3269700405 -3.16D-02 9.67D-04 3.29D-03 1.9 + d= 0,ls=0.0,diis 5 -382.3274952754 -5.25D-04 1.64D-04 1.18D-04 2.3 Resetting Diis - d= 0,ls=0.0,diis 6 -382.3275130098 -1.77D-05 2.93D-05 1.22D-06 4.8 - d= 0,ls=0.0,diis 7 -382.3275129680 4.19D-08 2.56D-05 3.80D-07 5.5 - d= 0,ls=0.0,diis 8 -382.3275129945 -2.66D-08 1.51D-05 6.70D-07 6.3 - d= 0,ls=0.0,diis 9 -382.3275131041 -1.10D-07 1.88D-06 1.47D-08 7.0 - d= 0,ls=0.0,diis 10 -382.3275131068 -2.76D-09 4.07D-07 6.59D-10 7.8 + d= 0,ls=0.0,diis 6 -382.3275130097 -1.77D-05 2.93D-05 1.22D-06 2.7 + d= 0,ls=0.0,diis 7 -382.3275129679 4.19D-08 2.56D-05 3.80D-07 3.0 + d= 0,ls=0.0,diis 8 -382.3275129944 -2.66D-08 1.51D-05 6.70D-07 3.4 + d= 0,ls=0.0,diis 9 -382.3275131040 -1.10D-07 1.88D-06 1.47D-08 3.8 + d= 0,ls=0.0,diis 10 -382.3275131068 -2.76D-09 4.07D-07 6.59D-10 4.2 - Total DFT energy = -382.327513106845 - One electron energy = -1408.765089990389 - Coulomb energy = 634.345142854071 - Exchange-Corr. energy = -57.899016719777 - Nuclear repulsion energy = 450.006170680236 + Total DFT energy = -382.327513106757 + One electron energy = -1408.765089993348 + Coulomb energy = 634.345142857263 + Exchange-Corr. energy = -57.899016719923 + Nuclear repulsion energy = 450.006170680237 Dispersion correction = -0.014719930985 - Numeric. integr. density = 70.000000928522 - - Total iterative time = 7.6s + Numeric. integr. density = 70.000000928624 + Total iterative time = 4.0s + Occupations of the irreducible representations ---------------------------------------------- - + irrep alpha beta -------- -------- -------- ag 15.0 15.0 au 2.0 2.0 bg 3.0 3.0 bu 15.0 15.0 - - + + DFT Final Molecular Orbital Analysis ------------------------------------ - + Vector 1 Occ=2.000000D+00 E=-9.743480D+00 Symmetry=bu - MO Center= 2.0D-11, -1.0D-10, -6.9D-33, r^2= 2.0D+00 + MO Center= -2.1D-11, 1.1D-10, 3.8D-33, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.698405 1 C s 16 -0.698405 4 C s 35 0.034997 11 C s 48 -0.034997 16 C s 2 0.032950 1 C s 17 -0.032950 4 C s - + Vector 2 Occ=2.000000D+00 E=-9.743419D+00 Symmetry=ag - MO Center= -2.0D-11, 1.0D-10, 1.2D-26, r^2= 2.0D+00 + MO Center= 2.1D-11, -1.1D-10, 4.0D-26, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.698404 1 C s 16 0.698404 4 C s 35 -0.035601 11 C s 48 -0.035601 16 C s 2 0.032691 1 C s 17 0.032691 4 C s 6 -0.025098 2 C s 21 -0.025098 5 C s - + Vector 3 Occ=2.000000D+00 E=-9.732220D+00 Symmetry=bu - MO Center= -3.8D-10, 1.9D-09, 3.5D-28, r^2= 8.6D+00 + MO Center= 3.8D-10, -1.9D-09, -4.4D-28, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.698552 11 C s 48 -0.698552 16 C s 1 -0.034371 1 C s 16 0.034371 4 C s 36 0.031540 11 C s 49 -0.031540 16 C s 6 0.030876 2 C s 21 -0.030876 5 C s - + Vector 4 Occ=2.000000D+00 E=-9.732219D+00 Symmetry=ag - MO Center= 3.8D-10, -1.9D-09, -3.4D-17, r^2= 8.6D+00 + MO Center= -3.8D-10, 1.9D-09, 3.4D-18, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.698559 11 C s 48 0.698559 16 C s 1 0.035210 1 C s 16 0.035210 4 C s 6 -0.033740 2 C s 21 -0.033740 5 C s 36 0.031524 11 C s 49 0.031524 16 C s - + Vector 5 Occ=2.000000D+00 E=-9.731733D+00 Symmetry=bu - MO Center= -4.7D-10, 9.5D-11, -9.6D-28, r^2= 2.0D+00 + MO Center= -1.4D-13, -5.9D-13, 1.9D-29, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 6 0.652368 2 C s 21 -0.652368 5 C s @@ -1899,49 +1892,49 @@ 1 0.034508 1 C s 16 -0.034508 4 C s 35 -0.033540 11 C s 48 0.033540 16 C s 7 0.032590 2 C s 22 -0.032590 5 C s - + Vector 6 Occ=2.000000D+00 E=-9.731714D+00 Symmetry=ag - MO Center= 4.7D-10, -9.5D-11, -4.1D-34, r^2= 2.0D+00 + MO Center= 5.9D-13, 1.5D-12, -9.8D-35, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 6 0.642220 2 C s 21 0.642220 5 C s 11 -0.276430 3 C s 26 -0.276430 6 C s 7 0.032188 2 C s 22 0.032188 5 C s 35 0.027222 11 C s 48 0.027222 16 C s - + Vector 7 Occ=2.000000D+00 E=-9.730548D+00 Symmetry=bu - MO Center= -4.3D-11, -2.9D-11, -9.3D-29, r^2= 2.0D+00 + MO Center= 5.4D-11, 3.6D-11, -3.4D-29, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 11 0.653793 3 C s 26 -0.653793 6 C s 6 0.251333 2 C s 21 -0.251333 5 C s 12 0.027633 3 C s 27 -0.027633 6 C s - + Vector 8 Occ=2.000000D+00 E=-9.730434D+00 Symmetry=ag - MO Center= 4.3D-11, 3.0D-11, -4.1D-34, r^2= 2.0D+00 + MO Center= -5.4D-11, -3.6D-11, 8.6D-20, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 11 0.642938 3 C s 26 0.642938 6 C s 6 0.275992 2 C s 21 0.275992 5 C s 1 0.033676 1 C s 16 0.033676 4 C s 12 0.026709 3 C s 27 0.026709 6 C s - + Vector 9 Occ=2.000000D+00 E=-9.716193D+00 Symmetry=bu - MO Center= -1.4D-15, -1.3D-15, -3.4D-32, r^2= 1.5D+01 + MO Center= 2.6D-09, 2.6D-08, -1.1D-29, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 40 0.700250 12 C s 53 -0.700250 17 C s 41 0.031974 12 C s 54 -0.031974 17 C s - + Vector 10 Occ=2.000000D+00 E=-9.716193D+00 Symmetry=ag - MO Center= 9.1D-16, 1.3D-15, 2.8D-20, r^2= 1.5D+01 + MO Center= -2.6D-09, -2.6D-08, -1.9D-18, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 40 0.700250 12 C s 53 0.700250 17 C s 41 0.031974 12 C s 54 0.031974 17 C s - + Vector 11 Occ=2.000000D+00 E=-7.436950D-01 Symmetry=ag - MO Center= -6.2D-17, -5.0D-17, -2.7D-33, r^2= 2.7D+00 + MO Center= 3.2D-15, -1.9D-15, -1.4D-16, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.270915 1 C s 17 0.270915 4 C s @@ -1949,9 +1942,9 @@ 22 0.246863 5 C s 27 0.247959 6 C s 36 0.110745 11 C s 49 0.110745 16 C s 1 -0.108336 1 C s 16 -0.108336 4 C s - + Vector 12 Occ=2.000000D+00 E=-6.838015D-01 Symmetry=bu - MO Center= 5.1D-16, -1.4D-14, 9.6D-27, r^2= 7.7D+00 + MO Center= -7.2D-16, 2.0D-14, 2.4D-26, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 -0.289242 11 C s 49 0.289242 16 C s @@ -1959,9 +1952,9 @@ 41 -0.214989 12 C s 54 0.214989 17 C s 12 -0.128286 3 C s 27 0.128286 6 C s 35 0.111107 11 C s 48 -0.111107 16 C s - + Vector 13 Occ=2.000000D+00 E=-6.513053D-01 Symmetry=ag - MO Center= 2.9D-14, 2.4D-16, -2.5D-16, r^2= 1.1D+01 + MO Center= -5.6D-15, -1.5D-14, 7.7D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.317136 11 C s 41 0.316143 12 C s @@ -1969,9 +1962,9 @@ 35 -0.120749 11 C s 40 -0.120915 12 C s 48 -0.120749 16 C s 53 -0.120915 17 C s 7 -0.111211 2 C s 22 -0.111211 5 C s - + Vector 14 Occ=2.000000D+00 E=-6.362160D-01 Symmetry=bu - MO Center= -3.1D-14, 1.8D-14, -6.3D-26, r^2= 3.1D+00 + MO Center= 5.2D-15, -4.8D-15, -2.6D-30, r^2= 3.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 7 0.363750 2 C s 22 -0.363750 5 C s @@ -1979,9 +1972,9 @@ 6 -0.136049 2 C s 21 0.136049 5 C s 3 0.129648 1 C px 18 0.129648 4 C px 11 -0.116758 3 C s 26 0.116758 6 C s - + Vector 15 Occ=2.000000D+00 E=-6.039853D-01 Symmetry=bu - MO Center= 5.4D-16, -3.7D-15, -2.6D-25, r^2= 8.6D+00 + MO Center= 6.6D-17, 2.0D-15, -1.1D-25, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 41 0.293927 12 C s 54 -0.293927 17 C s @@ -1989,9 +1982,9 @@ 12 -0.213576 3 C s 27 0.213576 6 C s 36 0.148203 11 C s 49 -0.148203 16 C s 38 0.120006 11 C py 51 0.120006 16 C py - + Vector 16 Occ=2.000000D+00 E=-5.265732D-01 Symmetry=ag - MO Center= -2.4D-16, 1.2D-16, -9.8D-32, r^2= 7.4D+00 + MO Center= -5.8D-16, 4.6D-16, 8.3D-33, r^2= 7.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.259816 3 C s 27 0.259816 6 C s @@ -1999,9 +1992,9 @@ 2 -0.179498 1 C s 17 -0.179498 4 C s 9 0.169302 2 C py 24 -0.169302 5 C py 36 -0.166587 11 C s 49 -0.166587 16 C s - + Vector 17 Occ=2.000000D+00 E=-5.032438D-01 Symmetry=ag - MO Center= -9.0D-16, -9.7D-17, -7.1D-33, r^2= 5.7D+00 + MO Center= 7.8D-16, -6.9D-16, -2.6D-17, r^2= 5.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 7 0.319039 2 C s 22 0.319039 5 C s @@ -2009,9 +2002,9 @@ 14 -0.167977 3 C py 29 0.167977 6 C py 3 0.165201 1 C px 18 -0.165201 4 C px 31 0.159615 7 H s 33 0.159615 9 H s - + Vector 18 Occ=2.000000D+00 E=-4.763648D-01 Symmetry=bu - MO Center= 6.1D-16, 4.1D-16, 3.0D-32, r^2= 1.2D+01 + MO Center= -1.5D-15, 9.1D-16, 5.8D-24, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.310100 11 C s 49 -0.310100 16 C s @@ -2019,9 +2012,9 @@ 45 0.178112 13 H s 58 -0.178112 18 H s 47 -0.164050 15 H s 60 0.164050 20 H s 7 0.142136 2 C s 22 -0.142136 5 C s - + Vector 19 Occ=2.000000D+00 E=-4.588016D-01 Symmetry=ag - MO Center= 5.4D-16, -4.3D-16, 1.7D-33, r^2= 7.5D+00 + MO Center= -1.0D-15, 3.3D-15, -2.7D-17, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 13 0.198166 3 C px 28 -0.198166 6 C px @@ -2029,9 +2022,9 @@ 36 0.177942 11 C s 49 0.177942 16 C s 41 -0.174498 12 C s 54 -0.174498 17 C s 12 0.171760 3 C s 27 0.171760 6 C s - + Vector 20 Occ=2.000000D+00 E=-4.119756D-01 Symmetry=ag - MO Center= -6.1D-15, -2.0D-14, 9.9D-17, r^2= 9.2D+00 + MO Center= 3.3D-16, -1.5D-15, 7.7D-33, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 42 0.208213 12 C px 55 -0.208213 17 C px @@ -2039,9 +2032,9 @@ 47 0.173988 15 H s 60 0.173988 20 H s 9 -0.157957 2 C py 24 0.157957 5 C py 45 -0.150136 13 H s 58 -0.150136 18 H s - + Vector 21 Occ=2.000000D+00 E=-3.896280D-01 Symmetry=bu - MO Center= -3.8D-16, -3.0D-14, 4.2D-19, r^2= 1.0D+01 + MO Center= 7.5D-16, -2.2D-14, 2.3D-20, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 43 0.237833 12 C py 56 0.237833 17 C py @@ -2049,9 +2042,9 @@ 9 0.200388 2 C py 24 0.200388 5 C py 46 0.191458 14 H s 59 -0.191458 19 H s 3 -0.146347 1 C px 18 -0.146347 4 C px - + Vector 22 Occ=2.000000D+00 E=-3.621640D-01 Symmetry=bu - MO Center= -1.1D-15, 3.5D-16, 2.7D-21, r^2= 6.0D+00 + MO Center= -1.8D-15, 3.6D-15, -6.4D-22, r^2= 6.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 32 0.265310 8 H s 34 -0.265310 10 H s @@ -2059,9 +2052,9 @@ 31 -0.240364 7 H s 33 0.240364 9 H s 8 -0.218973 2 C px 23 -0.218973 5 C px 13 0.200025 3 C px 28 0.200025 6 C px - + Vector 23 Occ=2.000000D+00 E=-3.523547D-01 Symmetry=bu - MO Center= 3.6D-15, 7.8D-15, 5.9D-20, r^2= 8.0D+00 + MO Center= 5.2D-15, 9.7D-16, 3.6D-21, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.246810 1 C px 18 0.246810 4 C px @@ -2069,9 +2062,9 @@ 13 -0.214397 3 C px 28 -0.214397 6 C px 47 -0.200915 15 H s 60 0.200915 20 H s 38 0.196970 11 C py 51 0.196970 16 C py - + Vector 24 Occ=2.000000D+00 E=-3.494113D-01 Symmetry=ag - MO Center= -1.3D-15, 8.2D-14, 3.5D-17, r^2= 1.4D+01 + MO Center= -3.3D-15, 4.3D-14, 1.6D-16, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 43 0.328039 12 C py 56 -0.328039 17 C py @@ -2079,9 +2072,9 @@ 46 0.243785 14 H s 59 0.243785 19 H s 45 0.172846 13 H s 58 0.172846 18 H s 14 0.122694 3 C py 29 -0.122694 6 C py - + Vector 25 Occ=2.000000D+00 E=-3.296561D-01 Symmetry=bu - MO Center= 9.9D-16, 8.5D-17, 4.6D-33, r^2= 5.3D+00 + MO Center= 8.0D-16, -2.4D-16, 4.4D-21, r^2= 5.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 8 0.287958 2 C px 23 0.287958 5 C px @@ -2089,9 +2082,9 @@ 31 0.219799 7 H s 33 -0.219799 9 H s 32 0.210331 8 H s 34 -0.210331 10 H s 13 0.152112 3 C px 28 0.152112 6 C px - + Vector 26 Occ=2.000000D+00 E=-3.118257D-01 Symmetry=bu - MO Center= 1.4D-15, -6.7D-14, -5.2D-32, r^2= 8.8D+00 + MO Center= -2.8D-15, -2.6D-14, 2.3D-33, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.240642 11 C px 50 0.240642 16 C px @@ -2099,9 +2092,9 @@ 43 -0.209431 12 C py 56 -0.209431 17 C py 14 -0.202707 3 C py 29 -0.202707 6 C py 45 -0.184373 13 H s 58 0.184373 18 H s - + Vector 27 Occ=2.000000D+00 E=-3.042013D-01 Symmetry=ag - MO Center= 2.1D-15, 2.3D-14, 1.7D-15, r^2= 1.2D+01 + MO Center= -7.9D-17, -7.2D-15, 4.4D-17, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 42 0.286640 12 C px 55 -0.286640 17 C px @@ -2109,9 +2102,9 @@ 45 0.183499 13 H s 58 0.183499 18 H s 37 -0.176880 11 C px 50 0.176880 16 C px 46 -0.172823 14 H s 59 -0.172823 19 H s - + Vector 28 Occ=2.000000D+00 E=-2.885243D-01 Symmetry=au - MO Center= 9.7D-16, -4.2D-15, -1.2D-15, r^2= 3.4D+00 + MO Center= -2.2D-15, -9.1D-16, -1.1D-16, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.338341 1 C pz 20 0.338341 4 C pz @@ -2119,9 +2112,9 @@ 25 0.300001 5 C pz 30 0.300199 6 C pz 39 0.158353 11 C pz 52 0.158353 16 C pz 44 0.083552 12 C pz 57 0.083552 17 C pz - + Vector 29 Occ=2.000000D+00 E=-2.636079D-01 Symmetry=bu - MO Center= -1.8D-16, 2.7D-15, -2.4D-32, r^2= 1.2D+01 + MO Center= 5.1D-16, 3.8D-15, 4.9D-32, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.277460 1 C py 19 0.277460 4 C py @@ -2129,9 +2122,9 @@ 45 -0.227214 13 H s 58 0.227214 18 H s 47 -0.223984 15 H s 60 0.223984 20 H s 38 -0.207604 11 C py 51 -0.207604 16 C py - + Vector 30 Occ=2.000000D+00 E=-2.536258D-01 Symmetry=ag - MO Center= 1.1D-15, 2.7D-16, -3.9D-16, r^2= 4.9D+00 + MO Center= 1.3D-16, 1.1D-15, -1.1D-17, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 32 0.286830 8 H s 34 0.286830 10 H s @@ -2139,9 +2132,9 @@ 13 0.242185 3 C px 28 -0.242185 6 C px 8 -0.240017 2 C px 23 0.240017 5 C px 31 -0.189328 7 H s 33 -0.189328 9 H s - + Vector 31 Occ=2.000000D+00 E=-2.406812D-01 Symmetry=ag - MO Center= 1.3D-16, -3.5D-17, -4.4D-16, r^2= 7.2D+00 + MO Center= 1.2D-16, 4.1D-16, -6.2D-17, r^2= 7.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 38 0.268294 11 C py 51 -0.268294 16 C py @@ -2149,9 +2142,9 @@ 9 -0.220646 2 C py 24 0.220646 5 C py 14 0.217239 3 C py 29 -0.217239 6 C py 31 0.187703 7 H s 33 0.187703 9 H s - + Vector 32 Occ=2.000000D+00 E=-2.275910D-01 Symmetry=bg - MO Center= -6.9D-16, 2.0D-14, 7.7D-19, r^2= 7.5D+00 + MO Center= -5.7D-17, -7.0D-16, 4.8D-19, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.368393 11 C pz 52 0.368393 16 C pz @@ -2159,25 +2152,25 @@ 44 -0.266796 12 C pz 57 0.266796 17 C pz 15 -0.147099 3 C pz 30 0.147099 6 C pz 10 0.134741 2 C pz 25 -0.134741 5 C pz - + Vector 33 Occ=2.000000D+00 E=-1.825056D-01 Symmetry=au - MO Center= -9.8D-16, -1.4D-14, 5.3D-16, r^2= 1.1D+01 + MO Center= -3.1D-15, -2.1D-15, -6.0D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.418889 11 C pz 44 0.420542 12 C pz 52 0.418889 16 C pz 57 0.420542 17 C pz 10 -0.169414 2 C pz 25 -0.169414 5 C pz 15 -0.160557 3 C pz 30 -0.160557 6 C pz - + Vector 34 Occ=2.000000D+00 E=-1.689855D-01 Symmetry=bg - MO Center= 1.3D-15, -2.3D-17, -8.8D-21, r^2= 2.7D+00 + MO Center= 5.4D-15, 5.2D-16, -1.6D-18, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 10 0.471249 2 C pz 25 -0.471249 5 C pz 15 0.448460 3 C pz 30 -0.448460 6 C pz - + Vector 35 Occ=2.000000D+00 E=-1.342864D-01 Symmetry=bg - MO Center= -4.2D-16, -1.3D-16, 9.3D-22, r^2= 7.9D+00 + MO Center= 4.4D-16, 4.3D-15, -5.5D-18, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 44 0.396439 12 C pz 57 -0.396439 17 C pz @@ -2185,9 +2178,9 @@ 15 -0.242287 3 C pz 30 0.242287 6 C pz 39 0.233901 11 C pz 52 -0.233901 16 C pz 10 0.198475 2 C pz 25 -0.198475 5 C pz - + Vector 36 Occ=0.000000D+00 E= 1.821041D-02 Symmetry=au - MO Center= -1.6D-16, 7.7D-16, -7.3D-17, r^2= 7.9D+00 + MO Center= -4.3D-16, -3.3D-15, 3.4D-17, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 44 -0.454815 12 C pz 57 -0.454815 17 C pz @@ -2195,26 +2188,26 @@ 15 -0.288660 3 C pz 30 -0.288660 6 C pz 39 0.277646 11 C pz 52 0.277646 16 C pz 10 -0.218463 2 C pz 25 -0.218463 5 C pz - + Vector 37 Occ=0.000000D+00 E= 5.623652D-02 Symmetry=au - MO Center= -3.5D-15, -2.7D-16, 6.2D-17, r^2= 2.7D+00 + MO Center= -2.2D-16, -4.0D-16, -7.5D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 10 0.588717 2 C pz 25 0.588717 5 C pz 15 -0.548639 3 C pz 30 -0.548639 6 C pz 5 -0.041414 1 C pz 20 -0.041414 4 C pz - + Vector 38 Occ=0.000000D+00 E= 7.692729D-02 Symmetry=bg - MO Center= 1.8D-15, -5.1D-15, -4.9D-19, r^2= 1.1D+01 + MO Center= -2.4D-16, 6.3D-15, -1.8D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.535677 11 C pz 52 -0.535677 16 C pz 44 -0.531943 12 C pz 57 0.531943 17 C pz 10 0.221756 2 C pz 25 -0.221756 5 C pz 15 -0.212413 3 C pz 30 0.212413 6 C pz - + Vector 39 Occ=0.000000D+00 E= 1.389122D-01 Symmetry=au - MO Center= 3.8D-17, 4.3D-16, 5.9D-17, r^2= 7.6D+00 + MO Center= 2.9D-16, -4.7D-15, -4.4D-17, r^2= 7.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.518499 11 C pz 52 -0.518499 16 C pz @@ -2222,9 +2215,9 @@ 44 0.374740 12 C pz 57 0.374740 17 C pz 15 -0.211870 3 C pz 30 -0.211870 6 C pz 10 -0.179017 2 C pz 25 -0.179017 5 C pz - + Vector 40 Occ=0.000000D+00 E= 2.298124D-01 Symmetry=bg - MO Center= 1.6D-15, 3.7D-15, 8.2D-21, r^2= 3.6D+00 + MO Center= 3.4D-16, 9.6D-16, -3.5D-18, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.549198 1 C pz 20 -0.549198 4 C pz @@ -2232,9 +2225,9 @@ 25 0.476197 5 C pz 30 -0.478570 6 C pz 39 0.263151 11 C pz 52 -0.263151 16 C pz 44 -0.141662 12 C pz 57 0.141662 17 C pz - + Vector 41 Occ=0.000000D+00 E= 2.727972D-01 Symmetry=ag - MO Center= -7.4D-15, 2.5D-14, -2.0D-17, r^2= 8.3D+00 + MO Center= -1.4D-14, 3.2D-14, 2.1D-18, r^2= 8.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 31 -0.407803 7 H s 33 -0.407803 9 H s @@ -2242,9 +2235,9 @@ 2 0.403330 1 C s 17 0.403330 4 C s 38 0.386679 11 C py 51 -0.386679 16 C py 46 -0.339683 14 H s 59 -0.339683 19 H s - + Vector 42 Occ=0.000000D+00 E= 2.828099D-01 Symmetry=bu - MO Center= 9.0D-15, -2.4D-14, -2.0D-20, r^2= 9.9D+00 + MO Center= 1.4D-14, -3.4D-14, -9.2D-19, r^2= 9.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.381264 15 H s 60 -0.381264 20 H s @@ -2252,9 +2245,9 @@ 2 -0.322417 1 C s 17 0.322417 4 C s 45 -0.313384 13 H s 58 0.313384 18 H s 42 -0.311583 12 C px 55 -0.311583 17 C px - + Vector 43 Occ=0.000000D+00 E= 3.166177D-01 Symmetry=bu - MO Center= -1.2D-15, -3.5D-15, 7.9D-20, r^2= 7.3D+00 + MO Center= 5.2D-15, 2.9D-14, 2.5D-18, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.577553 11 C s 49 -0.577553 16 C s @@ -2262,9 +2255,9 @@ 4 -0.431894 1 C py 19 -0.431894 4 C py 14 -0.339714 3 C py 29 -0.339714 6 C py 41 -0.333655 12 C s 54 0.333655 17 C s - + Vector 44 Occ=0.000000D+00 E= 3.220579D-01 Symmetry=ag - MO Center= 1.1D-15, 1.0D-16, 1.8D-17, r^2= 1.2D+01 + MO Center= -3.7D-15, -2.5D-14, 1.7D-17, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.518794 13 H s 58 0.518794 18 H s @@ -2272,9 +2265,9 @@ 36 -0.330284 11 C s 42 0.331803 12 C px 49 -0.330284 16 C s 55 -0.331803 17 C px 32 -0.323628 8 H s 34 -0.323628 10 H s - + Vector 45 Occ=0.000000D+00 E= 3.619586D-01 Symmetry=bu - MO Center= 1.3D-15, 3.1D-16, -6.9D-19, r^2= 1.1D+01 + MO Center= -9.2D-15, -6.5D-14, 3.0D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.565871 3 C s 27 -0.565871 6 C s @@ -2282,9 +2275,9 @@ 2 0.410320 1 C s 7 -0.408405 2 C s 17 -0.410320 4 C s 22 0.408405 5 C s 46 -0.405169 14 H s 59 0.405169 19 H s - + Vector 46 Occ=0.000000D+00 E= 3.649510D-01 Symmetry=ag - MO Center= -6.4D-16, -5.5D-15, -5.3D-17, r^2= 1.2D+01 + MO Center= -4.0D-15, 9.2D-14, -2.1D-17, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 41 0.611135 12 C s 54 0.611135 17 C s @@ -2292,9 +2285,9 @@ 7 -0.459161 2 C s 22 -0.459161 5 C s 46 -0.439018 14 H s 59 -0.439018 19 H s 47 -0.385031 15 H s 60 -0.385031 20 H s - + Vector 47 Occ=0.000000D+00 E= 3.708950D-01 Symmetry=bu - MO Center= -3.9D-15, 3.1D-15, -2.0D-19, r^2= 8.7D+00 + MO Center= 1.5D-14, -2.2D-14, 1.3D-18, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 31 0.658447 7 H s 33 -0.658447 9 H s @@ -2302,9 +2295,9 @@ 45 0.383722 13 H s 58 -0.383722 18 H s 8 -0.371093 2 C px 23 -0.371093 5 C px 36 -0.343433 11 C s 49 0.343433 16 C s - + Vector 48 Occ=0.000000D+00 E= 3.927485D-01 Symmetry=ag - MO Center= 1.9D-15, -9.6D-15, -7.9D-17, r^2= 7.5D+00 + MO Center= -1.4D-15, -1.9D-15, 5.8D-17, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.707695 1 C s 17 0.707695 4 C s @@ -2312,9 +2305,9 @@ 7 -0.587501 2 C s 22 -0.587501 5 C s 31 0.416859 7 H s 33 0.416859 9 H s 45 0.396851 13 H s 58 0.396851 18 H s - + Vector 49 Occ=0.000000D+00 E= 4.158433D-01 Symmetry=bu - MO Center= 2.9D-15, 2.0D-14, -1.5D-19, r^2= 1.2D+01 + MO Center= -5.4D-16, -4.9D-15, 2.1D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 41 0.726562 12 C s 54 -0.726562 17 C s @@ -2322,9 +2315,9 @@ 47 -0.493507 15 H s 60 0.493507 20 H s 46 -0.390506 14 H s 59 0.390506 19 H s 36 -0.386000 11 C s 49 0.386000 16 C s - + Vector 50 Occ=0.000000D+00 E= 4.413291D-01 Symmetry=ag - MO Center= -1.6D-15, -3.7D-15, -3.3D-17, r^2= 9.6D+00 + MO Center= -2.8D-16, 2.4D-15, 4.7D-17, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 -0.732063 3 C s 27 -0.732063 6 C s @@ -2332,9 +2325,9 @@ 46 -0.451818 14 H s 59 -0.451818 19 H s 41 0.434368 12 C s 54 0.434368 17 C s 32 0.369586 8 H s 34 0.369586 10 H s - + Vector 51 Occ=0.000000D+00 E= 4.827928D-01 Symmetry=ag - MO Center= 9.3D-16, -7.1D-15, -3.0D-18, r^2= 5.5D+00 + MO Center= 4.2D-16, -1.4D-15, -1.9D-17, r^2= 5.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.652861 1 C s 17 0.652861 4 C s @@ -2342,9 +2335,9 @@ 8 0.434991 2 C px 23 -0.434991 5 C px 13 0.414546 3 C px 28 -0.414546 6 C px 36 0.377803 11 C s 49 0.377803 16 C s - + Vector 52 Occ=0.000000D+00 E= 5.140784D-01 Symmetry=bu - MO Center= -1.3D-15, 1.3D-14, 1.9D-19, r^2= 7.7D+00 + MO Center= -1.3D-15, -1.1D-15, 5.7D-18, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 7 0.685816 2 C s 22 -0.685816 5 C s @@ -2352,9 +2345,9 @@ 14 0.481069 3 C py 29 0.481069 6 C py 43 -0.463521 12 C py 56 -0.463521 17 C py 46 0.342149 14 H s 59 -0.342149 19 H s - + Vector 53 Occ=0.000000D+00 E= 5.298835D-01 Symmetry=ag - MO Center= -8.0D-17, -1.7D-15, -2.7D-17, r^2= 4.7D+00 + MO Center= 3.3D-16, 5.4D-16, 1.1D-17, r^2= 4.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 8 0.603569 2 C px 23 -0.603569 5 C px @@ -2362,9 +2355,9 @@ 32 0.465873 8 H s 34 0.465873 10 H s 31 -0.453718 7 H s 33 -0.453718 9 H s 13 -0.430911 3 C px 28 0.430911 6 C px - + Vector 54 Occ=0.000000D+00 E= 5.518005D-01 Symmetry=bu - MO Center= -1.5D-15, 1.7D-15, 5.8D-19, r^2= 4.0D+00 + MO Center= 7.5D-17, -3.4D-16, 1.4D-18, r^2= 4.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 9 0.767672 2 C py 24 0.767672 5 C py @@ -2372,9 +2365,9 @@ 2 0.529672 1 C s 17 -0.529672 4 C s 13 -0.369915 3 C px 28 -0.369915 6 C px 14 0.354480 3 C py 29 0.354480 6 C py - + Vector 55 Occ=0.000000D+00 E= 5.677046D-01 Symmetry=bu - MO Center= -9.0D-17, 1.4D-14, -4.9D-19, r^2= 1.1D+01 + MO Center= 1.9D-16, -1.1D-15, -1.8D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 42 0.600393 12 C px 55 0.600393 17 C px @@ -2382,9 +2375,9 @@ 2 -0.485470 1 C s 17 0.485470 4 C s 47 -0.415085 15 H s 60 0.415085 20 H s 12 -0.409680 3 C s 27 0.409680 6 C s - + Vector 56 Occ=0.000000D+00 E= 5.859088D-01 Symmetry=ag - MO Center= -6.7D-16, -2.2D-14, 5.4D-18, r^2= 1.0D+01 + MO Center= 2.1D-16, 1.1D-15, -1.4D-17, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.459086 11 C px 50 -0.459086 16 C px @@ -2392,9 +2385,9 @@ 43 0.450802 12 C py 56 -0.450802 17 C py 47 0.422001 15 H s 60 0.422001 20 H s 38 -0.370936 11 C py 51 0.370936 16 C py - + Vector 57 Occ=0.000000D+00 E= 6.323420D-01 Symmetry=ag - MO Center= 1.5D-15, -8.9D-16, -1.5D-17, r^2= 8.8D+00 + MO Center= 6.6D-16, -8.1D-15, 2.3D-18, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 42 0.543753 12 C px 55 -0.543753 17 C px @@ -2402,9 +2395,9 @@ 14 -0.482010 3 C py 29 0.482010 6 C py 9 -0.478990 2 C py 24 0.478990 5 C py 36 0.478883 11 C s 49 0.478883 16 C s - + Vector 58 Occ=0.000000D+00 E= 6.813202D-01 Symmetry=bu - MO Center= -1.0D-16, -7.6D-16, -5.4D-20, r^2= 9.6D+00 + MO Center= -3.0D-16, 8.0D-15, 5.0D-19, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.666201 11 C px 50 0.666201 16 C px @@ -2412,9 +2405,9 @@ 43 0.540206 12 C py 56 0.540206 17 C py 36 0.506340 11 C s 49 -0.506340 16 C s 3 -0.460450 1 C px 18 -0.460450 4 C px - + Vector 59 Occ=0.000000D+00 E= 7.418134D-01 Symmetry=ag - MO Center= 1.0D-16, 9.5D-16, 1.4D-16, r^2= 5.2D+00 + MO Center= -8.9D-16, -2.6D-15, 2.6D-18, r^2= 5.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.726299 1 C px 18 -0.726299 4 C px @@ -2422,9 +2415,9 @@ 13 -0.468007 3 C px 28 0.468007 6 C px 37 0.455262 11 C px 50 -0.455262 16 C px 14 0.388560 3 C py 29 -0.388560 6 C py - + Vector 60 Occ=0.000000D+00 E= 7.504626D-01 Symmetry=bu - MO Center= -3.1D-16, 4.0D-16, -7.5D-22, r^2= 2.8D+00 + MO Center= 2.2D-16, 1.4D-15, -2.5D-21, r^2= 2.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.641013 1 C py 19 0.641013 4 C py @@ -2432,10 +2425,10 @@ 13 -0.511064 3 C px 28 -0.511064 6 C px 2 0.471866 1 C s 17 -0.471866 4 C s 7 -0.454052 2 C s 12 0.453268 3 C s - + Final MO vectors ---------------- - + global array: alpha evecs[1:60,1:60], handle: -995 @@ -2445,32 +2438,32 @@ 2 0.03295 0.03269 0.00326 -0.00333 -0.00816 -0.00304 3 -0.00029 -0.00021 0.00064 -0.00055 -0.00166 -0.00507 4 0.00147 0.00111 -0.00438 0.00430 -0.00336 -0.00207 - 5 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 6 -0.02479 -0.02510 0.03088 -0.03374 0.65237 0.64222 7 -0.00880 -0.00775 0.00177 -0.00171 0.03259 0.03219 8 0.00379 0.00359 -0.00027 0.00032 -0.00148 -0.00121 9 0.00275 0.00324 0.00010 0.00003 0.00217 0.00218 - 10 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 10 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 11 0.02307 -0.02323 -0.01756 -0.00776 -0.24906 -0.27643 12 0.00874 -0.00765 -0.00124 -0.00017 -0.01808 -0.01914 13 -0.00455 0.00455 0.00017 0.00030 -0.00049 -0.00040 14 0.00109 -0.00164 0.00025 -0.00014 0.00473 0.00449 - 15 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 15 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 16 -0.69841 0.69840 0.03437 0.03521 -0.03451 0.01587 17 -0.03295 0.03269 -0.00326 -0.00333 0.00816 -0.00304 18 -0.00029 0.00021 0.00064 0.00055 -0.00166 0.00507 19 0.00147 -0.00111 -0.00438 -0.00430 -0.00336 0.00207 - 20 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 20 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 21 0.02479 -0.02510 -0.03088 -0.03374 -0.65237 0.64222 22 0.00880 -0.00775 -0.00177 -0.00171 -0.03259 0.03219 23 0.00379 -0.00359 -0.00027 -0.00032 -0.00148 0.00121 24 0.00275 -0.00324 0.00010 -0.00003 0.00217 -0.00218 - 25 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 25 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 26 -0.02307 -0.02323 0.01756 -0.00776 0.24906 -0.27643 27 -0.00874 -0.00765 0.00124 -0.00017 0.01808 -0.01914 28 -0.00455 -0.00455 0.00017 -0.00030 -0.00049 0.00040 29 0.00109 0.00164 0.00025 0.00014 0.00473 -0.00449 - 30 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 30 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 31 0.00042 0.00027 -0.00028 0.00028 -0.00620 -0.00615 32 -0.00042 0.00027 0.00005 -0.00008 0.00254 0.00271 33 -0.00042 0.00027 0.00028 0.00028 0.00620 -0.00615 @@ -2479,12 +2472,12 @@ 36 0.00691 -0.00700 0.03154 0.03152 -0.00163 0.00121 37 0.00091 -0.00092 0.00112 0.00112 -0.00007 -0.00004 38 -0.00398 0.00403 0.00144 0.00145 -0.00011 0.00012 - 39 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 39 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 40 -0.00020 0.00021 -0.01048 -0.01048 0.00116 -0.00048 41 -0.00061 0.00061 -0.00837 -0.00837 0.00053 -0.00033 42 0.00007 -0.00007 0.00356 0.00356 -0.00016 0.00017 43 0.00034 -0.00035 0.00338 0.00338 -0.00024 0.00016 - 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 44 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 45 -0.00041 0.00043 -0.00665 -0.00665 0.00038 -0.00028 46 0.00003 -0.00003 0.00027 0.00027 -0.00000 0.00001 47 0.00016 -0.00014 0.00023 0.00024 -0.00013 -0.00013 @@ -2492,12 +2485,12 @@ 49 -0.00691 -0.00700 -0.03154 0.03152 0.00163 0.00121 50 0.00091 0.00092 0.00112 -0.00112 -0.00007 0.00004 51 -0.00398 -0.00403 0.00144 -0.00145 -0.00011 -0.00012 - 52 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 52 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 53 0.00020 0.00021 0.01048 -0.01048 -0.00116 -0.00048 54 0.00061 0.00061 0.00837 -0.00837 -0.00053 -0.00033 55 0.00007 0.00007 0.00356 -0.00356 -0.00016 -0.00017 56 0.00034 0.00035 0.00338 -0.00338 -0.00024 -0.00016 - 57 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 57 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 58 0.00041 0.00043 0.00665 -0.00665 -0.00038 -0.00028 59 -0.00003 -0.00003 -0.00027 0.00027 0.00000 0.00001 60 -0.00016 -0.00014 -0.00023 0.00024 0.00013 -0.00013 @@ -2508,32 +2501,32 @@ 2 0.00366 -0.00755 -0.00018 0.00018 0.27091 0.26907 3 -0.00531 0.00268 -0.00003 0.00003 -0.01069 -0.00434 4 0.00037 -0.00246 0.00003 -0.00003 0.05081 -0.02654 - 5 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 5 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 6 0.25133 0.27599 -0.00022 0.00065 -0.09926 -0.03647 7 0.00496 0.00619 0.00000 -0.00010 0.24686 0.09487 8 0.00050 0.00064 -0.00001 0.00004 -0.05994 -0.02736 9 -0.00417 -0.00398 -0.00011 0.00002 0.01434 -0.06270 - 10 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 10 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 11 0.65379 0.64294 0.00126 0.00134 -0.09979 0.04936 12 0.02763 0.02671 -0.00002 -0.00004 0.24796 -0.12829 13 -0.00117 -0.00088 0.00000 -0.00000 -0.05001 0.04790 14 0.00079 0.00114 -0.00017 -0.00015 -0.03509 -0.04699 - 15 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 15 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 16 0.01354 0.03368 0.00040 0.00042 -0.10834 0.10264 17 -0.00366 -0.00755 0.00018 0.00018 0.27091 -0.26907 18 -0.00531 -0.00268 -0.00003 -0.00003 0.01069 -0.00434 19 0.00037 0.00246 0.00003 0.00003 -0.05081 -0.02654 - 20 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 20 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 21 -0.25133 0.27599 0.00022 0.00065 -0.09926 0.03647 22 -0.00496 0.00619 -0.00000 -0.00010 0.24686 -0.09487 23 0.00050 -0.00064 -0.00001 -0.00004 0.05994 -0.02736 24 -0.00417 0.00398 -0.00011 -0.00002 -0.01434 -0.06270 - 25 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 25 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 26 -0.65379 0.64294 -0.00126 0.00134 -0.09979 -0.04936 27 -0.02763 0.02671 0.00002 -0.00004 0.24796 0.12829 28 -0.00117 0.00088 0.00000 0.00000 0.05001 0.04790 29 0.00079 -0.00114 -0.00017 0.00015 0.03509 -0.04699 - 30 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 30 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 31 -0.00217 -0.00257 0.00001 -0.00002 0.04311 0.02436 32 -0.00610 -0.00614 0.00018 0.00018 0.04431 -0.03579 33 0.00217 -0.00257 -0.00001 -0.00002 0.04311 -0.02436 @@ -2542,12 +2535,12 @@ 36 0.00028 0.00084 -0.00737 -0.00737 0.11074 -0.28924 37 -0.00000 0.00005 -0.00351 -0.00351 0.01335 -0.04059 38 0.00000 0.00021 -0.00335 -0.00335 -0.02500 0.00316 - 39 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 39 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 40 -0.00114 -0.00174 0.70025 0.70025 -0.02251 0.08379 41 -0.00018 -0.00043 0.03197 0.03197 0.05613 -0.21499 42 -0.00006 0.00004 -0.00105 -0.00105 -0.01123 0.03956 43 0.00011 0.00023 -0.00102 -0.00102 -0.01870 0.04992 - 44 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 45 -0.00007 -0.00028 0.00005 0.00005 0.02161 -0.06423 46 -0.00002 -0.00002 -0.00663 -0.00663 0.00908 -0.04390 47 0.00024 0.00024 -0.00665 -0.00665 0.01349 -0.05123 @@ -2555,12 +2548,12 @@ 49 -0.00028 0.00084 0.00737 -0.00737 0.11074 0.28924 50 -0.00000 -0.00005 -0.00351 0.00351 -0.01335 -0.04059 51 0.00000 -0.00021 -0.00335 0.00335 0.02500 0.00316 - 52 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 52 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 53 0.00114 -0.00174 -0.70025 0.70025 -0.02251 -0.08379 54 0.00018 -0.00043 -0.03197 0.03197 0.05613 0.21499 55 -0.00006 -0.00004 -0.00105 0.00105 0.01123 0.03956 56 0.00011 -0.00023 -0.00102 0.00102 0.01870 0.04992 - 57 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 57 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 58 0.00007 -0.00028 -0.00005 0.00005 0.02161 0.06423 59 0.00002 -0.00002 0.00663 -0.00663 0.00908 0.04390 60 -0.00024 0.00024 0.00665 -0.00665 0.01349 0.05123 @@ -2571,32 +2564,32 @@ 2 0.01530 0.05236 0.27673 -0.17950 -0.19348 0.02747 3 0.00574 0.12965 -0.02394 -0.15377 0.16520 -0.05022 4 -0.09201 0.02938 0.05879 0.04799 0.07496 0.11742 - 5 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 5 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 6 0.04312 -0.13605 -0.03914 0.02351 -0.10883 -0.04678 7 -0.11121 0.36375 0.10735 -0.06818 0.31904 0.14214 8 0.01867 -0.00389 -0.03840 0.02012 0.08725 -0.00689 9 -0.03280 0.04904 -0.09559 0.16930 -0.00229 0.00431 - 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 10 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 11 0.03452 -0.11676 0.07802 -0.09115 0.04178 0.02460 12 -0.08892 0.31173 -0.21358 0.25982 -0.12271 -0.07434 13 0.00222 0.03718 0.05915 0.05554 0.11352 0.03224 14 0.05018 -0.06657 -0.04257 0.00893 -0.16798 -0.07488 - 15 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 15 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 16 -0.00441 0.01951 0.10159 0.06142 0.06571 0.01074 17 0.01530 -0.05236 -0.27673 -0.17950 -0.19348 -0.02747 18 -0.00574 0.12965 -0.02394 0.15377 -0.16520 -0.05022 19 0.09201 0.02938 0.05879 -0.04799 -0.07496 0.11742 - 20 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 20 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 21 0.04312 0.13605 0.03914 0.02351 -0.10883 0.04678 22 -0.11121 -0.36375 -0.10735 -0.06818 0.31904 -0.14214 23 -0.01867 -0.00389 -0.03840 -0.02012 -0.08725 -0.00689 24 0.03280 0.04904 -0.09559 -0.16930 0.00229 0.00431 - 25 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 25 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 26 0.03452 0.11676 -0.07802 -0.09115 0.04178 -0.02460 27 -0.08892 -0.31173 0.21358 0.25982 -0.12271 0.07434 28 -0.00222 0.03718 0.05915 -0.05554 -0.11352 0.03224 29 -0.05018 -0.06657 -0.04257 -0.00893 0.16798 -0.07488 - 30 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 30 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 31 -0.02077 0.09739 0.02945 -0.04348 0.15961 0.04239 32 -0.00848 0.08514 -0.05304 0.12294 -0.05506 -0.05565 33 -0.02077 -0.09739 -0.02945 -0.04348 0.15961 -0.04239 @@ -2605,12 +2598,12 @@ 36 0.31714 -0.00963 0.14820 -0.16659 -0.04788 0.31010 37 0.05396 0.02306 0.04374 0.09158 -0.02470 -0.12415 38 0.05740 0.01831 0.12001 0.09686 0.09499 -0.02989 - 39 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 39 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 40 -0.12092 -0.01319 -0.10882 -0.07001 -0.05283 0.08064 41 0.31614 0.03407 0.29393 0.20216 0.15793 -0.24943 42 -0.05328 0.00328 -0.03859 0.04775 -0.00426 -0.13624 43 -0.05237 -0.00615 -0.01446 0.02890 0.06077 -0.08145 - 44 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 44 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 45 0.07528 -0.01161 0.03917 -0.09120 0.01299 0.17811 46 0.07420 0.00777 0.08599 0.07930 0.08609 -0.12306 47 0.07549 0.01551 0.07221 0.09879 0.03910 -0.16405 @@ -2618,12 +2611,12 @@ 49 0.31714 0.00963 -0.14820 -0.16659 -0.04788 -0.31010 50 -0.05396 0.02306 0.04374 -0.09158 0.02470 -0.12415 51 -0.05740 0.01831 0.12001 -0.09686 -0.09499 -0.02989 - 52 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 52 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 53 -0.12092 0.01319 0.10882 -0.07001 -0.05283 -0.08064 54 0.31614 -0.03407 -0.29393 0.20216 0.15793 0.24943 55 0.05328 0.00328 -0.03859 -0.04775 0.00426 -0.13624 56 0.05237 -0.00615 -0.01446 -0.02890 -0.06077 -0.08145 - 57 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 57 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 58 0.07528 0.01161 -0.03917 -0.09120 0.01299 -0.17811 59 0.07420 -0.00777 -0.08599 0.07930 0.08609 0.12306 60 0.07549 -0.01551 -0.07221 0.09879 0.03910 0.16405 @@ -2634,32 +2627,32 @@ 2 -0.14488 0.12574 0.03785 0.25722 0.02947 0.06600 3 -0.01733 0.06346 -0.14635 -0.00516 0.24681 0.01258 4 -0.14662 -0.12458 -0.13199 0.07181 -0.10350 -0.01300 - 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 5 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 6 -0.00974 -0.01418 0.01385 0.04439 0.01578 0.02610 7 0.03678 0.05556 -0.04595 -0.15603 -0.05608 -0.08787 8 0.18823 0.12657 0.01154 -0.21897 -0.15260 0.00103 9 0.08481 -0.15796 0.20039 0.00800 -0.09497 -0.06672 - 10 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 10 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 11 -0.05365 0.02393 -0.03603 -0.04092 -0.03694 -0.02069 12 0.17176 -0.06742 0.11792 0.14505 0.12166 0.07644 13 0.19817 0.06677 0.09580 0.20003 -0.21440 0.02843 14 0.05026 0.14757 -0.13165 0.13520 0.05824 0.12269 - 15 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 15 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 16 0.05022 -0.03819 0.01030 0.07594 0.00754 -0.01990 17 -0.14488 0.12574 -0.03785 -0.25722 -0.02947 0.06600 18 0.01733 -0.06346 -0.14635 -0.00516 0.24681 -0.01258 19 0.14662 0.12458 -0.13199 0.07181 -0.10350 0.01300 - 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 20 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 21 -0.00974 -0.01418 -0.01385 -0.04439 -0.01578 0.02610 22 0.03678 0.05556 0.04595 0.15603 0.05608 -0.08787 23 -0.18823 -0.12657 0.01154 -0.21897 -0.15260 -0.00103 24 -0.08481 0.15796 0.20039 0.00800 -0.09497 0.06672 - 25 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 25 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 26 -0.05365 0.02393 0.03603 0.04092 0.03694 -0.02069 27 0.17176 -0.06742 -0.11792 -0.14505 -0.12166 0.07644 28 -0.19817 -0.06677 0.09580 0.20003 -0.21440 -0.02843 29 -0.05026 -0.14757 -0.13165 0.13520 0.05824 -0.12269 - 30 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 30 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 31 0.10377 0.12797 -0.06544 -0.24036 -0.11925 -0.01667 32 0.16530 0.08555 0.02957 0.26531 -0.07000 0.10662 33 0.10377 0.12797 0.06544 0.24036 0.11925 -0.01667 @@ -2668,12 +2661,12 @@ 36 0.17794 -0.14099 -0.05880 0.03193 -0.01707 -0.06506 37 -0.06506 0.10685 -0.21733 -0.01864 0.03512 -0.28165 38 -0.01174 -0.18327 0.07904 0.04254 0.19697 -0.07327 - 39 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 39 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 40 0.05529 -0.01563 -0.01285 0.01329 -0.00032 0.00767 41 -0.17450 0.05934 0.05112 -0.04799 -0.01112 -0.00684 42 -0.07345 0.20821 -0.04263 0.01441 -0.23814 0.06685 43 -0.08107 -0.02352 0.23783 -0.09769 0.04415 0.32804 - 44 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 44 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 45 0.10900 -0.15014 0.14112 0.05436 0.00402 0.17285 46 -0.10451 -0.01676 0.19146 -0.09792 0.06854 0.24379 47 -0.08444 0.17399 -0.04629 0.04255 -0.20092 0.00522 @@ -2681,12 +2674,12 @@ 49 0.17794 -0.14099 0.05880 -0.03193 0.01707 -0.06506 50 0.06506 -0.10685 -0.21733 -0.01864 0.03512 0.28165 51 0.01174 0.18327 0.07904 0.04254 0.19697 0.07327 - 52 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 52 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 53 0.05529 -0.01563 0.01285 -0.01329 0.00032 0.00767 54 -0.17450 0.05934 -0.05112 0.04799 0.01112 -0.00684 55 0.07345 -0.20821 -0.04263 0.01441 -0.23814 -0.06685 56 0.08107 0.02352 0.23783 -0.09769 0.04415 -0.32804 - 57 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 57 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 58 0.10900 -0.15014 -0.14112 -0.05436 -0.00402 0.17285 59 -0.10451 -0.01676 -0.19146 0.09792 -0.06854 0.24379 60 -0.08444 0.17399 0.04629 -0.04255 0.20092 0.00522 @@ -2697,188 +2690,188 @@ 2 0.00954 0.01897 -0.09841 -0.00000 -0.05596 0.00786 3 -0.04015 -0.16392 0.09283 0.00000 -0.07661 0.28496 4 -0.12565 -0.13005 0.02169 0.00000 0.27746 0.13804 - 5 0.00000 0.00000 -0.00000 0.33834 -0.00000 0.00000 - 6 0.03487 0.01411 0.00115 0.00000 -0.01083 -0.00778 - 7 -0.11166 -0.05131 -0.01381 -0.00000 0.03603 0.01936 + 5 0.00000 0.00000 -0.00000 0.33834 0.00000 -0.00000 + 6 0.03487 0.01411 0.00115 -0.00000 -0.01083 -0.00778 + 7 -0.11166 -0.05131 -0.01381 0.00000 0.03603 0.01936 8 0.28796 0.04219 -0.13845 -0.00000 -0.06725 -0.24002 - 9 -0.13927 0.23749 0.12219 0.00000 0.00219 -0.17751 - 10 0.00000 0.00000 -0.00000 0.30000 -0.00000 -0.00000 + 9 -0.13927 0.23749 0.12219 -0.00000 0.00219 -0.17751 + 10 0.00000 0.00000 0.00000 0.30000 0.00000 -0.00000 11 0.00795 -0.00931 -0.00056 0.00000 0.01520 0.00908 12 -0.02075 0.02986 -0.00002 -0.00000 -0.05077 -0.02027 13 0.15211 0.08938 0.06386 0.00000 0.13921 0.24218 14 0.23399 -0.20271 -0.14440 -0.00000 0.04229 0.12540 - 15 0.00000 0.00000 -0.00000 0.30020 -0.00000 -0.00000 + 15 0.00000 0.00000 0.00000 0.30020 0.00000 -0.00000 16 0.00190 0.00490 0.02762 0.00000 -0.01201 -0.00335 17 -0.00954 -0.01897 -0.09841 -0.00000 0.05596 0.00786 18 -0.04015 -0.16392 -0.09283 -0.00000 -0.07661 -0.28496 - 19 -0.12565 -0.13005 -0.02169 0.00000 0.27746 -0.13804 - 20 0.00000 0.00000 -0.00000 0.33834 -0.00000 0.00000 - 21 -0.03487 -0.01411 0.00115 0.00000 0.01083 -0.00778 - 22 0.11166 0.05131 -0.01381 -0.00000 -0.03603 0.01936 + 19 -0.12565 -0.13005 -0.02169 -0.00000 0.27746 -0.13804 + 20 0.00000 0.00000 -0.00000 0.33834 0.00000 -0.00000 + 21 -0.03487 -0.01411 0.00115 -0.00000 0.01083 -0.00778 + 22 0.11166 0.05131 -0.01381 0.00000 -0.03603 0.01936 23 0.28796 0.04219 0.13845 0.00000 -0.06725 0.24002 - 24 -0.13927 0.23749 -0.12219 -0.00000 0.00219 0.17751 - 25 0.00000 0.00000 -0.00000 0.30000 -0.00000 -0.00000 - 26 -0.00795 0.00931 -0.00056 -0.00000 -0.01520 0.00908 - 27 0.02075 -0.02986 -0.00002 0.00000 0.05077 -0.02027 + 24 -0.13927 0.23749 -0.12219 0.00000 0.00219 0.17751 + 25 0.00000 0.00000 -0.00000 0.30000 0.00000 -0.00000 + 26 -0.00795 0.00931 -0.00056 0.00000 -0.01520 0.00908 + 27 0.02075 -0.02986 -0.00002 -0.00000 0.05077 -0.02027 28 0.15211 0.08938 -0.06386 -0.00000 0.13921 -0.24218 29 0.23399 -0.20271 0.14440 0.00000 0.04229 -0.12540 - 30 0.00000 0.00000 -0.00000 0.30020 -0.00000 -0.00000 + 30 0.00000 0.00000 -0.00000 0.30020 0.00000 -0.00000 31 0.21980 -0.04891 -0.15200 -0.00000 -0.03012 -0.18933 - 32 0.21033 -0.04684 0.00799 -0.00000 0.06105 0.28683 + 32 0.21033 -0.04684 0.00799 0.00000 0.06105 0.28683 33 -0.21980 0.04891 -0.15200 -0.00000 0.03012 -0.18933 - 34 -0.21033 0.04684 0.00799 -0.00000 -0.06105 0.28683 + 34 -0.21033 0.04684 0.00799 0.00000 -0.06105 0.28683 35 -0.00214 -0.00134 -0.01905 -0.00000 -0.00357 0.00761 36 0.00021 -0.01559 0.07819 0.00000 0.01638 -0.03880 - 37 0.00592 0.24064 -0.17688 -0.00000 0.16852 0.05750 - 38 0.13756 0.14857 -0.07041 -0.00000 -0.20760 0.11454 - 39 0.00000 -0.00000 -0.00000 0.15835 -0.00000 0.00000 + 37 0.00592 0.24064 -0.17688 0.00000 0.16852 0.05750 + 38 0.13756 0.14857 -0.07041 0.00000 -0.20760 0.11454 + 39 0.00000 0.00000 -0.00000 0.15835 0.00000 0.00000 40 0.00490 -0.02226 0.00850 0.00000 0.00263 -0.00660 - 41 -0.02555 0.05999 -0.02026 -0.00000 -0.00652 0.01620 - 42 -0.14739 -0.16203 0.28664 0.00000 -0.16186 -0.11973 + 41 -0.02555 0.05999 -0.02026 0.00000 -0.00652 0.01620 + 42 -0.14739 -0.16203 0.28664 -0.00000 -0.16186 -0.11973 43 -0.00417 -0.20943 -0.11367 -0.00000 0.18394 -0.05834 - 44 -0.00000 -0.00000 -0.00000 0.08355 -0.00000 0.00000 - 45 0.01060 -0.18437 0.18350 0.00000 -0.22721 -0.06880 + 44 0.00000 0.00000 -0.00000 0.08355 0.00000 0.00000 + 45 0.01060 -0.18437 0.18350 -0.00000 -0.22721 -0.06880 46 0.00944 -0.12693 -0.17282 -0.00000 0.23351 -0.02883 - 47 -0.10073 -0.08333 0.27489 0.00000 -0.22398 -0.04883 + 47 -0.10073 -0.08333 0.27489 -0.00000 -0.22398 -0.04883 48 0.00214 0.00134 -0.01905 -0.00000 0.00357 0.00761 49 -0.00021 0.01559 0.07819 0.00000 -0.01638 -0.03880 - 50 0.00592 0.24064 0.17688 0.00000 0.16852 -0.05750 - 51 0.13756 0.14857 0.07041 0.00000 -0.20760 -0.11454 - 52 -0.00000 -0.00000 -0.00000 0.15835 -0.00000 0.00000 + 50 0.00592 0.24064 0.17688 -0.00000 0.16852 -0.05750 + 51 0.13756 0.14857 0.07041 -0.00000 -0.20760 -0.11454 + 52 0.00000 0.00000 -0.00000 0.15835 0.00000 -0.00000 53 -0.00490 0.02226 0.00850 0.00000 -0.00263 -0.00660 54 0.02555 -0.05999 -0.02026 -0.00000 0.00652 0.01620 - 55 -0.14739 -0.16203 -0.28664 -0.00000 -0.16186 0.11973 + 55 -0.14739 -0.16203 -0.28664 0.00000 -0.16186 0.11973 56 -0.00417 -0.20943 0.11367 0.00000 0.18394 0.05834 - 57 -0.00000 -0.00000 -0.00000 0.08355 -0.00000 0.00000 - 58 -0.01060 0.18437 0.18350 0.00000 0.22721 -0.06880 + 57 0.00000 0.00000 -0.00000 0.08355 0.00000 -0.00000 + 58 -0.01060 0.18437 0.18350 -0.00000 0.22721 -0.06880 59 -0.00944 0.12693 -0.17282 -0.00000 -0.23351 -0.02883 60 0.10073 0.08333 0.27489 0.00000 0.22398 -0.04883 31 32 33 34 35 36 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00920 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 2 -0.05345 0.00000 0.00000 -0.00000 0.00000 0.00000 - 3 -0.13915 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 4 0.25265 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 1 0.00920 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 2 -0.05345 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 3 -0.13915 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 4 0.25265 -0.00000 -0.00000 0.00000 0.00000 0.00000 5 0.00000 0.35462 -0.01229 0.02167 0.37782 0.43728 - 6 0.00556 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 7 -0.01482 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 8 0.08045 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 9 -0.22065 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 6 0.00556 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 7 -0.01482 0.00000 0.00000 0.00000 -0.00000 0.00000 + 8 0.08045 -0.00000 0.00000 0.00000 0.00000 0.00000 + 9 -0.22065 0.00000 0.00000 -0.00000 0.00000 -0.00000 10 -0.00000 0.13474 -0.16941 0.47125 0.19848 -0.21846 - 11 0.00199 0.00000 -0.00000 0.00000 0.00000 0.00000 - 12 -0.00810 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 13 -0.16881 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 14 0.21724 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 11 0.00199 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 12 -0.00810 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 13 -0.16881 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 14 0.21724 -0.00000 -0.00000 0.00000 -0.00000 0.00000 15 -0.00000 -0.14710 -0.16056 0.44846 -0.24229 -0.28866 - 16 0.00920 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 17 -0.05345 0.00000 0.00000 -0.00000 0.00000 0.00000 - 18 0.13915 0.00000 0.00000 -0.00000 0.00000 0.00000 - 19 -0.25265 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 20 0.00000 -0.35462 -0.01229 -0.02167 -0.37782 0.43728 - 21 0.00556 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 22 -0.01482 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 23 -0.08045 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 24 0.22065 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 25 -0.00000 -0.13474 -0.16941 -0.47125 -0.19848 -0.21846 - 26 0.00199 0.00000 -0.00000 0.00000 0.00000 0.00000 - 27 -0.00810 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 28 0.16881 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 29 -0.21724 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 30 -0.00000 0.14710 -0.16056 -0.44846 0.24229 -0.28866 - 31 0.18770 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 32 0.05092 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 33 0.18770 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 34 0.05092 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 35 0.02261 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 36 -0.09419 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 37 -0.11250 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 38 0.26829 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 39 0.00000 -0.36839 0.41889 0.00081 0.23390 0.27765 - 40 -0.00348 0.00000 0.00000 0.00000 0.00000 -0.00000 - 41 0.00584 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 42 0.03589 0.00000 0.00000 0.00000 0.00000 -0.00000 - 43 -0.12688 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 16 0.00920 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 17 -0.05345 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 18 0.13915 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 19 -0.25265 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 20 -0.00000 -0.35462 -0.01229 -0.02167 -0.37782 0.43728 + 21 0.00556 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 22 -0.01482 0.00000 0.00000 0.00000 -0.00000 0.00000 + 23 -0.08045 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 24 0.22065 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 25 0.00000 -0.13474 -0.16941 -0.47125 -0.19848 -0.21846 + 26 0.00199 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 27 -0.00810 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 28 0.16881 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 29 -0.21724 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 30 0.00000 0.14710 -0.16056 -0.44846 0.24229 -0.28866 + 31 0.18770 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 32 0.05092 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 33 0.18770 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 34 0.05092 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 35 0.02261 -0.00000 0.00000 0.00000 0.00000 0.00000 + 36 -0.09419 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 37 -0.11250 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 38 0.26829 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 39 -0.00000 -0.36839 0.41889 0.00081 0.23390 0.27765 + 40 -0.00348 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 41 0.00584 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 42 0.03589 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 43 -0.12688 0.00000 0.00000 0.00000 0.00000 -0.00000 44 0.00000 -0.26680 0.42054 0.01811 0.39644 -0.45482 - 45 0.17064 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 46 -0.15662 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 47 0.11736 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 48 0.02261 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 49 -0.09419 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 50 0.11250 0.00000 -0.00000 0.00000 0.00000 0.00000 - 51 -0.26829 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 45 0.17064 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 46 -0.15662 0.00000 -0.00000 0.00000 0.00000 0.00000 + 47 0.11736 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 48 0.02261 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 49 -0.09419 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 50 0.11250 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 51 -0.26829 0.00000 0.00000 -0.00000 0.00000 0.00000 52 0.00000 0.36839 0.41889 -0.00081 -0.23390 0.27765 - 53 -0.00348 0.00000 0.00000 0.00000 0.00000 -0.00000 - 54 0.00584 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 55 -0.03589 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 56 0.12688 0.00000 -0.00000 0.00000 0.00000 0.00000 + 53 -0.00348 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 54 0.00584 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 55 -0.03589 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 56 0.12688 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 57 0.00000 0.26680 0.42054 -0.01811 -0.39644 -0.45482 - 58 0.17064 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 59 -0.15662 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 60 0.11736 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 58 0.17064 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 59 -0.15662 0.00000 -0.00000 0.00000 0.00000 0.00000 + 60 0.11736 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 37 38 39 40 41 42 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 -0.00000 -0.00000 0.00000 -0.07041 0.05690 - 2 -0.00000 0.00000 0.00000 -0.00000 0.40333 -0.32242 - 3 0.00000 0.00000 0.00000 -0.00000 0.08572 -0.21887 - 4 -0.00000 0.00000 0.00000 0.00000 -0.33354 0.28115 - 5 -0.04141 -0.01970 0.50261 0.54920 0.00000 -0.00000 - 6 0.00000 0.00000 0.00000 -0.00000 -0.03261 -0.01535 - 7 0.00000 -0.00000 -0.00000 0.00000 0.19838 0.08247 - 8 -0.00000 0.00000 0.00000 -0.00000 0.26936 -0.29120 - 9 0.00000 0.00000 -0.00000 -0.00000 -0.03805 0.08227 - 10 0.58872 0.22176 -0.17902 -0.47620 -0.00000 0.00000 - 11 0.00000 -0.00000 -0.00000 0.00000 -0.04253 0.03169 - 12 -0.00000 0.00000 0.00000 -0.00000 0.25520 -0.18586 - 13 -0.00000 -0.00000 0.00000 -0.00000 0.18266 -0.21627 - 14 0.00000 0.00000 -0.00000 0.00000 0.11811 0.03918 - 15 -0.54864 -0.21241 -0.21187 0.47857 0.00000 -0.00000 - 16 0.00000 -0.00000 -0.00000 0.00000 -0.07041 -0.05690 - 17 -0.00000 0.00000 0.00000 -0.00000 0.40333 0.32242 - 18 -0.00000 -0.00000 -0.00000 0.00000 -0.08572 -0.21887 - 19 0.00000 -0.00000 -0.00000 -0.00000 0.33354 0.28115 - 20 -0.04141 0.01970 0.50261 -0.54920 -0.00000 -0.00000 - 21 0.00000 0.00000 0.00000 -0.00000 -0.03261 0.01535 - 22 0.00000 -0.00000 -0.00000 0.00000 0.19838 -0.08247 - 23 0.00000 -0.00000 -0.00000 0.00000 -0.26936 -0.29120 - 24 -0.00000 -0.00000 0.00000 0.00000 0.03805 0.08227 + 1 -0.00000 0.00000 0.00000 0.00000 -0.07041 0.05690 + 2 0.00000 -0.00000 -0.00000 -0.00000 0.40333 -0.32242 + 3 0.00000 -0.00000 0.00000 0.00000 0.08572 -0.21887 + 4 -0.00000 0.00000 -0.00000 0.00000 -0.33354 0.28115 + 5 -0.04141 -0.01970 0.50261 0.54920 -0.00000 0.00000 + 6 0.00000 -0.00000 -0.00000 -0.00000 -0.03261 -0.01535 + 7 -0.00000 0.00000 0.00000 0.00000 0.19838 0.08247 + 8 -0.00000 0.00000 -0.00000 0.00000 0.26936 -0.29120 + 9 -0.00000 -0.00000 0.00000 -0.00000 -0.03805 0.08227 + 10 0.58872 0.22176 -0.17902 -0.47620 0.00000 0.00000 + 11 -0.00000 -0.00000 -0.00000 -0.00000 -0.04253 0.03169 + 12 0.00000 0.00000 0.00000 0.00000 0.25520 -0.18586 + 13 -0.00000 -0.00000 -0.00000 0.00000 0.18266 -0.21627 + 14 0.00000 -0.00000 -0.00000 0.00000 0.11811 0.03918 + 15 -0.54864 -0.21241 -0.21187 0.47857 -0.00000 0.00000 + 16 -0.00000 0.00000 0.00000 0.00000 -0.07041 -0.05690 + 17 0.00000 -0.00000 -0.00000 -0.00000 0.40333 0.32242 + 18 -0.00000 0.00000 0.00000 -0.00000 -0.08572 -0.21887 + 19 0.00000 -0.00000 0.00000 -0.00000 0.33354 0.28115 + 20 -0.04141 0.01970 0.50261 -0.54920 0.00000 -0.00000 + 21 0.00000 -0.00000 -0.00000 -0.00000 -0.03261 0.01535 + 22 -0.00000 0.00000 0.00000 0.00000 0.19838 -0.08247 + 23 0.00000 -0.00000 0.00000 -0.00000 -0.26936 -0.29120 + 24 0.00000 0.00000 -0.00000 0.00000 0.03805 0.08227 25 0.58872 -0.22176 -0.17902 0.47620 0.00000 -0.00000 - 26 0.00000 -0.00000 -0.00000 0.00000 -0.04253 -0.03169 - 27 -0.00000 0.00000 0.00000 -0.00000 0.25520 0.18586 - 28 0.00000 0.00000 -0.00000 0.00000 -0.18266 -0.21627 - 29 -0.00000 -0.00000 0.00000 -0.00000 -0.11811 0.03918 - 30 -0.54864 0.21241 -0.21187 -0.47857 -0.00000 0.00000 - 31 0.00000 0.00000 -0.00000 0.00000 -0.40780 0.26582 - 32 0.00000 0.00000 0.00000 0.00000 -0.40537 0.20812 - 33 0.00000 0.00000 -0.00000 0.00000 -0.40780 -0.26582 - 34 0.00000 0.00000 0.00000 0.00000 -0.40537 -0.20812 - 35 -0.00000 -0.00000 0.00000 -0.00000 0.06088 0.02158 - 36 0.00000 0.00000 -0.00000 0.00000 -0.33513 -0.11485 - 37 0.00000 0.00000 0.00000 0.00000 -0.18782 -0.27622 - 38 -0.00000 0.00000 -0.00000 -0.00000 0.38668 0.35284 - 39 0.00025 0.53568 -0.51850 0.26315 0.00000 -0.00000 - 40 -0.00000 -0.00000 -0.00000 0.00000 -0.03885 0.00541 - 41 0.00000 0.00000 0.00000 -0.00000 0.22110 -0.03279 - 42 0.00000 0.00000 0.00000 0.00000 -0.08935 -0.31158 - 43 -0.00000 0.00000 0.00000 -0.00000 0.14373 0.20804 - 44 0.02411 -0.53194 0.37474 -0.14166 -0.00000 -0.00000 - 45 0.00000 0.00000 0.00000 -0.00000 -0.06599 -0.31338 - 46 0.00000 -0.00000 -0.00000 0.00000 -0.33968 -0.29338 - 47 -0.00000 -0.00000 -0.00000 -0.00000 0.09854 0.38126 - 48 -0.00000 -0.00000 0.00000 -0.00000 0.06088 -0.02158 - 49 0.00000 0.00000 -0.00000 0.00000 -0.33513 0.11485 - 50 -0.00000 -0.00000 -0.00000 -0.00000 0.18782 -0.27622 - 51 0.00000 -0.00000 0.00000 0.00000 -0.38668 0.35284 - 52 0.00025 -0.53568 -0.51850 -0.26315 -0.00000 -0.00000 - 53 -0.00000 -0.00000 -0.00000 0.00000 -0.03885 -0.00541 - 54 0.00000 0.00000 0.00000 -0.00000 0.22110 0.03279 - 55 -0.00000 -0.00000 -0.00000 -0.00000 0.08935 -0.31158 - 56 0.00000 -0.00000 -0.00000 0.00000 -0.14373 0.20804 - 57 0.02411 0.53194 0.37474 0.14166 0.00000 -0.00000 - 58 0.00000 0.00000 0.00000 -0.00000 -0.06599 0.31338 - 59 0.00000 -0.00000 -0.00000 0.00000 -0.33968 0.29338 - 60 -0.00000 -0.00000 -0.00000 -0.00000 0.09854 -0.38126 + 26 -0.00000 -0.00000 0.00000 -0.00000 -0.04253 -0.03169 + 27 0.00000 0.00000 -0.00000 0.00000 0.25520 0.18586 + 28 0.00000 0.00000 0.00000 -0.00000 -0.18266 -0.21627 + 29 0.00000 0.00000 -0.00000 -0.00000 -0.11811 0.03918 + 30 -0.54864 0.21241 -0.21187 -0.47857 0.00000 -0.00000 + 31 0.00000 -0.00000 0.00000 -0.00000 -0.40780 0.26582 + 32 0.00000 -0.00000 0.00000 -0.00000 -0.40537 0.20812 + 33 0.00000 -0.00000 0.00000 0.00000 -0.40780 -0.26582 + 34 -0.00000 -0.00000 0.00000 -0.00000 -0.40537 -0.20812 + 35 0.00000 -0.00000 -0.00000 -0.00000 0.06088 0.02158 + 36 -0.00000 0.00000 0.00000 0.00000 -0.33513 -0.11485 + 37 -0.00000 0.00000 -0.00000 -0.00000 -0.18782 -0.27622 + 38 -0.00000 -0.00000 0.00000 0.00000 0.38668 0.35284 + 39 0.00025 0.53568 -0.51850 0.26315 -0.00000 0.00000 + 40 -0.00000 0.00000 0.00000 0.00000 -0.03885 0.00541 + 41 0.00000 -0.00000 -0.00000 -0.00000 0.22110 -0.03279 + 42 0.00000 0.00000 0.00000 -0.00000 -0.08935 -0.31158 + 43 -0.00000 -0.00000 -0.00000 0.00000 0.14373 0.20804 + 44 0.02411 -0.53194 0.37474 -0.14166 -0.00000 0.00000 + 45 0.00000 0.00000 -0.00000 -0.00000 -0.06599 -0.31338 + 46 0.00000 -0.00000 0.00000 -0.00000 -0.33968 -0.29338 + 47 -0.00000 0.00000 0.00000 0.00000 0.09854 0.38126 + 48 0.00000 -0.00000 -0.00000 -0.00000 0.06088 -0.02158 + 49 -0.00000 0.00000 0.00000 0.00000 -0.33513 0.11485 + 50 0.00000 -0.00000 0.00000 0.00000 0.18782 -0.27622 + 51 0.00000 0.00000 -0.00000 -0.00000 -0.38668 0.35284 + 52 0.00025 -0.53568 -0.51850 -0.26315 0.00000 0.00000 + 53 -0.00000 0.00000 0.00000 0.00000 -0.03885 -0.00541 + 54 0.00000 -0.00000 -0.00000 -0.00000 0.22110 0.03279 + 55 -0.00000 -0.00000 -0.00000 0.00000 0.08935 -0.31158 + 56 0.00000 0.00000 0.00000 -0.00000 -0.14373 0.20804 + 57 0.02411 0.53194 0.37474 0.14166 0.00000 0.00000 + 58 0.00000 0.00000 -0.00000 -0.00000 -0.06599 0.31338 + 59 0.00000 -0.00000 0.00000 -0.00000 -0.33968 0.29338 + 60 -0.00000 0.00000 0.00000 0.00000 0.09854 -0.38126 43 44 45 46 47 48 ----------- ----------- ----------- ----------- ----------- ----------- @@ -2886,32 +2879,32 @@ 2 0.22643 -0.21454 0.41032 -0.24484 0.22936 0.70769 3 -0.08511 -0.02575 -0.10837 0.21205 -0.15462 0.04434 4 -0.43189 0.01144 -0.05051 0.19347 0.14625 -0.03701 - 5 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 5 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 6 0.01603 -0.03741 0.06857 0.07443 0.07005 0.09358 7 -0.09673 0.22973 -0.40840 -0.45916 -0.43195 -0.58750 8 -0.15417 -0.01264 -0.12648 -0.04661 -0.37109 -0.09643 9 -0.21421 -0.14753 -0.05279 -0.13347 0.24139 0.25532 - 10 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 10 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 11 0.01040 -0.04425 -0.09323 -0.08702 -0.01968 0.04881 12 -0.06891 0.27323 0.56587 0.53433 0.11141 -0.30797 13 -0.26843 0.15318 0.01248 -0.00412 -0.24609 0.19395 14 -0.33971 0.20309 0.10507 -0.01901 0.05533 -0.26064 - 15 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 15 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 16 0.04084 0.03569 0.07061 0.04127 0.03711 -0.11606 17 -0.22643 -0.21454 -0.41032 -0.24484 -0.22936 0.70769 18 -0.08511 0.02575 -0.10837 -0.21205 -0.15462 -0.04434 19 -0.43189 -0.01144 -0.05051 -0.19347 0.14625 0.03701 - 20 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 20 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 21 -0.01603 -0.03741 -0.06857 0.07443 -0.07005 0.09358 22 0.09673 0.22973 0.40840 -0.45916 0.43195 -0.58750 23 -0.15417 0.01264 -0.12648 0.04661 -0.37109 0.09643 24 -0.21421 0.14753 -0.05279 0.13347 0.24139 -0.25532 - 25 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 25 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 26 -0.01040 -0.04425 0.09323 -0.08702 0.01968 0.04881 27 0.06891 0.27323 -0.56587 0.53433 -0.11141 -0.30797 28 -0.26843 -0.15318 0.01248 0.00412 -0.24609 -0.19395 29 -0.33971 -0.20309 0.10507 0.01901 0.05533 0.26064 - 30 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 30 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 31 0.11196 -0.19141 0.31048 0.25356 0.65845 0.41686 32 0.46245 -0.32363 -0.30475 -0.18333 0.07828 0.19388 33 -0.11196 -0.19141 -0.31048 0.25356 -0.65845 0.41686 @@ -2920,12 +2913,12 @@ 36 0.57755 -0.33028 0.36315 0.29663 -0.34343 -0.59483 37 -0.04905 0.28122 -0.25626 -0.24473 0.19555 0.14050 38 -0.27215 -0.15359 -0.13200 -0.18581 -0.02685 0.07757 - 39 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 39 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 40 0.05744 -0.04442 -0.08017 -0.09675 0.00696 -0.06251 41 -0.33365 0.26069 0.50834 0.61113 -0.05035 0.37785 42 -0.05264 0.33180 0.19809 0.17484 0.08354 -0.03479 43 -0.04123 -0.26942 0.20802 0.18807 -0.29727 0.03472 - 44 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 45 -0.31116 0.51879 -0.36878 -0.34870 0.38372 0.39685 46 0.23820 0.19861 -0.40517 -0.43902 0.31458 -0.23259 47 0.15343 -0.50593 -0.33516 -0.38503 -0.15183 -0.17176 @@ -2933,12 +2926,12 @@ 49 -0.57755 -0.33028 -0.36315 0.29663 0.34343 -0.59483 50 -0.04905 -0.28122 -0.25626 0.24473 0.19555 -0.14050 51 -0.27215 0.15359 -0.13200 0.18581 -0.02685 -0.07757 - 52 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 52 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 53 -0.05744 -0.04442 0.08017 -0.09675 -0.00696 -0.06251 54 0.33365 0.26069 -0.50834 0.61113 0.05035 0.37785 55 -0.05264 -0.33180 0.19809 -0.17484 0.08354 0.03479 56 -0.04123 0.26942 0.20802 -0.18807 -0.29727 -0.03472 - 57 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 57 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 58 0.31116 0.51879 0.36878 -0.34870 -0.38372 0.39685 59 -0.23820 0.19861 0.40517 -0.43902 -0.31458 -0.23259 60 -0.15343 -0.50593 0.33516 -0.38503 0.15183 -0.17176 @@ -2949,32 +2942,32 @@ 2 -0.34579 -0.09429 0.65286 -0.00023 0.01557 0.52967 3 -0.13858 -0.36126 -0.13074 -0.53666 0.20068 0.30558 4 -0.13852 0.01322 0.56823 -0.08461 0.06686 -0.00243 - 5 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 5 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 6 -0.05227 -0.10873 0.02938 -0.10065 0.02312 -0.02167 7 0.32087 0.69675 -0.19574 0.68582 -0.16430 0.14703 8 -0.14208 -0.01813 0.43499 0.00008 0.60357 0.24224 9 -0.18142 0.17653 0.20684 -0.01495 -0.27127 0.76767 - 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 10 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 11 0.06099 0.11392 0.05302 -0.01449 -0.01760 0.08335 12 -0.37547 -0.73206 -0.34940 0.11431 0.12892 -0.58261 13 -0.16273 -0.10010 0.41455 -0.28975 -0.43091 -0.36991 14 -0.19668 0.17181 0.02293 0.48107 -0.49280 0.35448 - 15 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 15 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 16 -0.05673 0.01519 -0.09680 -0.00226 -0.00245 0.07561 17 0.34579 -0.09429 0.65286 0.00023 0.01557 -0.52967 18 -0.13858 0.36126 0.13074 -0.53666 -0.20068 0.30558 19 -0.13852 -0.01322 -0.56823 -0.08461 -0.06686 -0.00243 - 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 20 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 21 0.05227 -0.10873 0.02938 0.10065 0.02312 0.02167 22 -0.32087 0.69675 -0.19574 -0.68582 -0.16430 -0.14703 23 -0.14208 0.01813 -0.43499 0.00008 -0.60357 0.24224 24 -0.18142 -0.17653 -0.20684 -0.01495 0.27127 0.76767 - 25 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 25 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 26 -0.06099 0.11392 0.05302 0.01449 -0.01760 -0.08335 27 0.37547 -0.73206 -0.34940 -0.11431 0.12892 0.58261 28 -0.16273 0.10010 -0.41455 -0.28975 0.43091 -0.36991 29 -0.19668 -0.17181 -0.02293 0.48107 0.49280 0.35448 - 30 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 30 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 31 -0.07964 -0.26062 -0.18058 -0.27822 -0.45372 -0.05023 32 0.50362 0.36959 -0.09021 -0.08820 0.46587 0.27185 33 0.07964 -0.26062 -0.18058 0.27822 -0.45372 0.05023 @@ -2983,12 +2976,12 @@ 36 -0.38600 0.11700 0.37780 -0.06831 -0.27607 0.31498 37 0.04779 0.00304 -0.14384 -0.33190 -0.07918 0.04357 38 -0.15725 -0.11044 0.08384 0.03920 -0.18388 -0.07935 - 39 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 40 -0.11510 -0.06729 0.02175 -0.01235 -0.04088 -0.00289 41 0.72656 0.43437 -0.14047 0.09672 0.27992 0.02259 42 0.09899 0.13382 0.29752 0.10960 -0.10677 0.10776 43 0.08068 0.33684 -0.16355 -0.46352 -0.19145 0.20218 - 44 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 44 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 45 0.27068 0.00951 -0.26860 -0.25681 0.09609 -0.09194 46 -0.39051 -0.45182 0.24716 0.34215 0.01983 -0.13695 47 -0.49351 -0.30831 -0.18311 -0.20943 -0.12726 -0.10602 @@ -2996,12 +2989,12 @@ 49 0.38600 0.11700 0.37780 0.06831 -0.27607 -0.31498 50 0.04779 -0.00304 0.14384 -0.33190 0.07918 0.04357 51 -0.15725 0.11044 -0.08384 0.03920 0.18388 -0.07935 - 52 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 52 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 53 0.11510 -0.06729 0.02175 0.01235 -0.04088 0.00289 54 -0.72656 0.43437 -0.14047 -0.09672 0.27992 -0.02259 55 0.09899 -0.13382 -0.29752 0.10960 0.10677 0.10776 56 0.08068 -0.33684 0.16355 -0.46352 0.19145 0.20218 - 57 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 57 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 58 -0.27068 0.00951 -0.26860 0.25681 0.09609 0.09194 59 0.39051 -0.45182 0.24716 -0.34215 0.01983 0.13695 60 0.49351 -0.30831 -0.18311 0.20943 -0.12726 0.10602 @@ -3012,17 +3005,17 @@ 2 -0.48547 -0.03796 0.01286 -0.03527 -0.00246 0.47187 3 0.32677 -0.12934 -0.21019 -0.46045 0.72630 -0.13984 4 0.08077 0.45087 -0.20822 -0.12405 0.12213 0.64101 - 5 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 6 0.01100 0.01883 0.01879 -0.04083 0.01217 0.06116 7 -0.09156 -0.13266 -0.13657 0.30620 -0.09323 -0.45405 8 -0.15834 0.20921 -0.05101 -0.12721 0.26305 0.61867 9 0.05864 -0.19471 -0.47899 -0.13228 0.53222 -0.20985 - 10 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 10 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 11 0.05989 -0.02289 -0.01875 -0.02532 -0.01291 -0.06090 12 -0.40968 0.15365 0.13565 0.19230 0.09742 0.45327 13 0.27535 0.29584 0.08088 -0.13348 -0.46801 -0.51106 14 -0.19090 -0.06161 -0.48201 0.18568 0.38856 -0.43290 - 15 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 15 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 16 -0.07182 0.00891 -0.00298 -0.00505 0.00011 0.06162 17 0.48547 -0.03796 0.01286 0.03527 -0.00246 -0.47187 18 0.32677 0.12934 0.21019 -0.46045 -0.72630 -0.13984 @@ -3032,12 +3025,12 @@ 22 0.09156 -0.13266 -0.13657 -0.30620 -0.09323 0.45405 23 -0.15834 -0.20921 0.05101 -0.12721 -0.26305 0.61867 24 0.05864 0.19471 0.47899 -0.13228 -0.53222 -0.20985 - 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 25 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 26 -0.05989 -0.02289 -0.01875 0.02532 -0.01291 0.06090 27 0.40968 0.15365 0.13565 -0.19230 0.09742 -0.45327 28 0.27535 -0.29584 -0.08088 -0.13348 0.46801 -0.51106 29 -0.19090 0.06161 0.48201 0.18568 -0.38856 -0.43290 - 30 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 30 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 31 0.12110 -0.15032 -0.01740 -0.04860 -0.01815 -0.26079 32 0.15460 -0.23867 0.16186 -0.05876 0.03867 0.28541 33 -0.12110 -0.15032 -0.01740 0.04860 -0.01815 0.26079 @@ -3046,12 +3039,12 @@ 36 0.32311 0.11924 0.47888 0.50634 0.25848 -0.07609 37 -0.19970 0.45909 0.37852 0.66620 0.45526 -0.03151 38 0.51304 -0.37094 0.52184 0.41201 0.25198 0.25260 - 39 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 39 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 40 0.02201 0.01960 0.05897 0.07154 0.04037 0.00168 41 -0.16155 -0.14136 -0.45209 -0.55810 -0.32657 -0.02190 42 0.60039 -0.35082 0.54375 0.44041 0.26732 0.16025 43 -0.14416 0.45080 0.38045 0.54021 0.31305 -0.02938 - 44 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 44 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 45 -0.33801 0.34378 0.00058 0.19358 0.16329 -0.03977 46 0.25983 -0.32499 -0.02630 -0.11131 -0.06001 0.04470 47 -0.41509 0.42200 -0.16072 -0.01022 -0.02907 -0.13179 @@ -3059,63 +3052,63 @@ 49 -0.32311 0.11924 0.47888 -0.50634 0.25848 0.07609 50 -0.19970 -0.45909 -0.37852 0.66620 -0.45526 -0.03151 51 0.51304 0.37094 -0.52184 0.41201 -0.25198 0.25260 - 52 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 52 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 53 -0.02201 0.01960 0.05897 -0.07154 0.04037 -0.00168 54 0.16155 -0.14136 -0.45209 0.55810 -0.32657 0.02190 55 0.60039 0.35082 -0.54375 0.44041 -0.26732 0.16025 56 -0.14416 -0.45080 -0.38045 0.54021 -0.31305 -0.02938 - 57 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 57 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 58 0.33801 0.34378 0.00058 -0.19358 0.16329 0.03977 59 -0.25983 -0.32499 -0.02630 0.11131 -0.06001 -0.04470 60 0.41509 0.42200 -0.16072 0.01022 -0.02907 0.13179 center of mass -------------- - x = 0.00000000 y = 0.00000000 z = 0.00000000 + x = -0.00000000 y = -0.00000000 z = 0.00000000 moments of inertia (a.u.) ------------------ - 2553.653898937773 0.000000000000 0.000000000000 + 2553.653898937769 0.000000000000 0.000000000000 0.000000000000 390.974194247583 0.000000000000 - 0.000000000000 0.000000000000 2944.628093185356 - + 0.000000000000 0.000000000000 2944.628093185351 + Multipole analysis of the density --------------------------------- - + L x y z total alpha beta nuclear - - - - ----- ----- ---- ------- 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 - - 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 - 1 0 1 0 -0.000000 -0.000000 -0.000000 -0.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 -0.000000 + 1 0 1 0 -0.000000 -0.000000 -0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - + 2 2 0 0 -37.042971 -140.938758 -140.938758 244.834546 2 1 1 0 0.093275 -3.589294 -3.589294 7.271864 2 1 0 1 0.000000 0.000000 0.000000 0.000000 2 0 2 0 -37.549739 -744.885544 -744.885544 1452.221348 2 0 1 1 0.000000 0.000000 0.000000 0.000000 2 0 0 2 -43.566384 -21.783192 -21.783192 0.000000 - + ------------- Dipole Moment ------------- Center of charge (in au) is the expansion point - X = 0.0000000 Y = -0.0000000 Z = 0.0000000 + X = -0.0000000 Y = 0.0000000 Z = 0.0000000 Dipole moment 0.0000000000 A.U. - DMX -0.0000000000 DMXEFC 0.0000000000 + DMX 0.0000000000 DMXEFC 0.0000000000 DMY -0.0000000000 DMYEFC 0.0000000000 - DMZ -0.0000000000 DMZEFC 0.0000000000 + DMZ 0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 A.U. Total dipole 0.0000000000 A.U. Dipole moment 0.0000000000 Debye(s) - DMX -0.0000000000 DMXEFC 0.0000000000 + DMX 0.0000000000 DMXEFC 0.0000000000 DMY -0.0000000000 DMYEFC 0.0000000000 - DMZ -0.0000000000 DMZEFC 0.0000000000 + DMZ 0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 DEBYE(S) Total dipole 0.0000000000 DEBYE(S) @@ -3126,7 +3119,7 @@ ----------------- Center of charge (in au) is the expansion point - X = 0.0000000 Y = -0.0000000 Z = 0.0000000 + X = -0.0000000 Y = 0.0000000 Z = 0.0000000 < R**2 > = ********** a.u. ( 1 a.u. = 0.280023 10**(-16) cm**2 ) ( also called diamagnetic susceptibility ) @@ -3135,10 +3128,10 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -37.0429705159 0.0000000000 -37.0429705159 - YY -37.5497393667 0.0000000000 -37.5497393667 + XX -37.0429705134 0.0000000000 -37.0429705134 + YY -37.5497393712 0.0000000000 -37.5497393712 ZZ -43.5663842684 0.0000000000 -43.5663842684 - XY 0.0932750344 0.0000000000 0.0932750344 + XY 0.0932750375 0.0000000000 0.0932750375 XZ -0.0000000000 0.0000000000 -0.0000000000 YZ 0.0000000000 0.0000000000 0.0000000000 @@ -3146,10 +3139,10 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -49.8194985195 0.0000000000 -49.8194985195 - YY -50.5010575214 0.0000000000 -50.5010575214 - ZZ -58.5929094329 0.0000000000 -58.5929094329 - XY 0.1254466198 0.0000000000 0.1254466198 + XX -49.8194985161 0.0000000000 -49.8194985161 + YY -50.5010575274 0.0000000000 -50.5010575274 + ZZ -58.5929094328 0.0000000000 -58.5929094328 + XY 0.1254466239 0.0000000000 0.1254466239 XZ -0.0000000000 0.0000000000 -0.0000000000 YZ 0.0000000000 0.0000000000 0.0000000000 @@ -3157,10 +3150,10 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 3.5150913017 0.0000000000 3.5150913017 - YY 2.7549380254 0.0000000000 2.7549380254 - ZZ -6.2700293271 0.0000000000 -6.2700293271 - XY 0.1399125517 0.0000000000 0.1399125517 + XX 3.5150913064 0.0000000000 3.5150913064 + YY 2.7549380197 0.0000000000 2.7549380197 + ZZ -6.2700293261 0.0000000000 -6.2700293261 + XY 0.1399125562 0.0000000000 0.1399125562 XZ -0.0000000000 0.0000000000 -0.0000000000 YZ 0.0000000000 0.0000000000 0.0000000000 @@ -3168,10 +3161,10 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 4.7274849576 0.0000000000 4.7274849576 - YY 3.7051464547 0.0000000000 3.7051464547 - ZZ -8.4326314124 0.0000000000 -8.4326314124 - XY 0.1881699298 0.0000000000 0.1881699298 + XX 4.7274849640 0.0000000000 4.7274849640 + YY 3.7051464471 0.0000000000 3.7051464471 + ZZ -8.4326314110 0.0000000000 -8.4326314110 + XY 0.1881699359 0.0000000000 0.1881699359 XZ -0.0000000000 0.0000000000 -0.0000000000 YZ 0.0000000000 0.0000000000 0.0000000000 @@ -3182,67 +3175,67 @@ --------------- Center of charge (in au) is the expansion point - X = 0.0000000 Y = -0.0000000 Z = 0.0000000 + X = -0.0000000 Y = 0.0000000 Z = 0.0000000 Third moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX 0.0000000000 0.0000000000 0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 - ZZZ -0.0000000000 0.0000000000 -0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 XXZ -0.0000000000 0.0000000000 -0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 - ZZX -0.0000000000 0.0000000000 -0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 ZZY 0.0000000000 0.0000000000 0.0000000000 - XYZ -0.0000000000 0.0000000000 -0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 Third moments in 10**(-34) esu*cm**3 Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX 0.0000000000 0.0000000000 0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 - ZZZ -0.0000000000 0.0000000000 -0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 XXZ -0.0000000000 0.0000000000 -0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 - ZZX -0.0000000000 0.0000000000 -0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 + ZZX 0.0000000000 0.0000000000 0.0000000000 ZZY 0.0000000000 0.0000000000 0.0000000000 - XYZ -0.0000000000 0.0000000000 -0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 Octupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XXX 0.0000000000 0.0000000000 0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY 0.0000000000 0.0000000000 0.0000000000 - XYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 Octupole moments in 10**(-34) esu*cm**3 Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XXX 0.0000000000 0.0000000000 0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY 0.0000000000 0.0000000000 0.0000000000 - XYZ -0.0000000000 0.0000000000 -0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 + XYZ 0.0000000000 0.0000000000 0.0000000000 1 a.u. = 0.711688 10**(-34) esu*cm**3 @@ -3394,9 +3387,9 @@ 3 C 3.97074 2.11062 3.97074 6.08136 0.00000 4 C 3.97321 2.03239 3.97321 6.00560 -0.00000 5 C 3.97023 2.11335 3.97023 6.08357 -0.00000 - 6 C 3.97074 2.11062 3.97074 6.08136 -0.00000 + 6 C 3.97074 2.11062 3.97074 6.08136 0.00000 7 H 0.99301 -0.07660 0.99301 0.91641 0.00000 - 8 H 0.99290 -0.07716 0.99290 0.91574 0.00000 + 8 H 0.99290 -0.07716 0.99290 0.91574 -0.00000 9 H 0.99301 -0.07660 0.99301 0.91641 -0.00000 10 H 0.99290 -0.07716 0.99290 0.91574 -0.00000 11 C 3.96327 2.11730 3.96327 6.08057 -0.00000 @@ -3404,13 +3397,19 @@ 13 H 0.99303 -0.07649 0.99303 0.91654 -0.00000 14 H 0.99311 -0.07610 0.99311 0.91701 -0.00000 15 H 0.99347 -0.07426 0.99347 0.91921 -0.00000 - 16 C 3.96327 2.11730 3.96327 6.08057 -0.00000 + 16 C 3.96327 2.11730 3.96327 6.08057 0.00000 17 C 3.96379 2.20019 3.96379 6.16398 -0.00000 - 18 H 0.99303 -0.07649 0.99303 0.91654 -0.00000 + 18 H 0.99303 -0.07649 0.99303 0.91654 0.00000 19 H 0.99311 -0.07610 0.99311 0.91701 -0.00000 - 20 H 0.99347 -0.07426 0.99347 0.91921 0.00000 + 20 H 0.99347 -0.07426 0.99347 0.91921 -0.00000 - Task times cpu: 7.8s wall: 7.8s + Task times cpu: 4.2s wall: 4.4s + + + NWChem Input Module + ------------------- + + Summary of allocated global arrays ----------------------------------- No active global arrays @@ -3421,70 +3420,40 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 731 731 2.11e+05 5468 1.72e+05 420 0 1.31e+04 -number of processes/call 1.90e+13 4.16e+13 4.83e+13 0.00e+00 0.00e+00 -bytes total: 3.24e+07 8.48e+06 1.79e+07 8.00e+00 0.00e+00 1.04e+05 -bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 1123200 bytes +calls: 731 731 3.74e+04 1838 2.69e+04 42 0 2156 +number of processes/call -2.41e+14 3.90e+13 8.11e+11 0.00e+00 0.00e+00 +bytes total: 1.44e+07 2.94e+06 6.50e+06 2.00e+02 0.00e+00 1.72e+04 +bytes remote: 1.00e+07 1.29e+06 4.80e+06 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 288736 bytes + MA_summarize_allocated_blocks: starting scan ... -heap block 'gridpts', handle 117, address 0x555b876bd718: - type of elements: double precision - number of elements: 6291456 - address of client space: 0x555b876bd780 - index for client space: 11467577 - total number of bytes: 50331760 -MA_summarize_allocated_blocks: scan completed: 1 heap block, 0 stack blocks +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: allocation statistics: heap stack ---- ----- - current number of blocks 1 0 - maximum number of blocks 22 57 - current total bytes 50331760 0 - maximum total bytes 64025136 22516376 - maximum total K-bytes 64026 22517 - maximum total M-bytes 65 23 - - - NWChem Input Module - ------------------- - - - - - + current number of blocks 0 0 + maximum number of blocks 21 57 + current total bytes 0 0 + maximum total bytes 3567224 22516376 + maximum total K-bytes 3568 22517 + maximum total M-bytes 4 23 + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, - V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, - J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, - J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, - C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, - K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, - J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, - V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, - B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, - S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, - A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, - D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, - J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, - A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, - R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, - D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, - V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, - Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, - D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, - A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, - and R. J. Harrison - "NWChem: Past, present, and future - J. Chem. Phys. 152, 184102 (2020) - doi:10.1063/5.0004997 - + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -3507,4 +3476,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 7.8s wall: 7.8s + Total times cpu: 4.2s wall: 4.4s diff --git a/data/NWChem/basicNWChem7.0/dvb_gopt_hf.out b/data/NWChem/basicNWChem7.0/dvb_gopt_hf.out index 11debe52a..15fa323c4 100644 --- a/data/NWChem/basicNWChem7.0/dvb_gopt_hf.out +++ b/data/NWChem/basicNWChem7.0/dvb_gopt_hf.out @@ -1,26 +1,26 @@ argument 1 = dvb_gopt_hf.in - - - Northwest Computational Chemistry Package (NWChem) 7.0.2 + + + Northwest Computational Chemistry Package (NWChem) 7.0.0 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2020 + + Copyright (c) 1994-2019 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = osmium - program = nwchem - date = Sat Jun 4 13:32:30 2022 + hostname = smp-n17.sam.pitt.edu + program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem + date = Tue Sep 20 18:21:05 2022 - compiled = Fri_Jul_02_16:33:00_2021 - source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src - nwchem branch = 7.0.2 - nwchem revision = b9985dfa - ga revision = 5.7.2 - use scalapack = T + compiled = Wed_May_13_13:33:26_2020 + source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 + nwchem branch = 7.0.0 + nwchem revision = N/A + ga revision = 5.7.1 + use scalapack = F input = dvb_gopt_hf.in prefix = dvb. data base = ./dvb.db status = startup - nproc = 1 + nproc = 4 time left = -1s @@ -58,27 +58,27 @@ Memory information ------------------ - heap = 13107198 doubles = 100.0 Mbytes - stack = 13107195 doubles = 100.0 Mbytes + heap = 13107200 doubles = 100.0 Mbytes + stack = 13107197 doubles = 100.0 Mbytes global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) - total = 52428793 doubles = 400.0 Mbytes + total = 52428797 doubles = 400.0 Mbytes verify = yes hardfail = no Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + Divinylbenzene in STO-3G basis set ---------------------------------- @@ -90,15 +90,15 @@ ------ auto-z ------ - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - - + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 C 6.0000 0.23680554 1.41416660 0.00000000 @@ -121,13 +121,13 @@ 18 H 1.0000 -1.44522900 3.70144241 0.00000000 19 H 1.0000 0.04815351 -4.93192286 0.00000000 20 H 1.0000 -0.04815351 4.93192286 0.00000000 - + Atomic Mass ----------- - + C 12.000000 H 1.007825 - + Effective nuclear repulsion energy (a.u.) 445.9370121674 @@ -136,26 +136,26 @@ X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - + Z-matrix (autoz) -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value ----------- -------- ----- ----- ----- ----- ----- ---------- 1 Stretch 1 3 1.42204 @@ -228,7 +228,7 @@ 68 Torsion 4 2 11 13 0.00000 69 Torsion 4 2 11 15 180.00000 70 Torsion 4 6 1 12 180.00000 - 71 Torsion 5 2 4 6 -0.00000 + 71 Torsion 5 2 4 6 0.00000 72 Torsion 5 2 4 8 180.00000 73 Torsion 5 2 11 13 180.00000 74 Torsion 5 2 11 15 0.00000 @@ -238,18 +238,18 @@ 78 Torsion 6 1 12 14 180.00000 79 Torsion 6 1 12 16 0.00000 80 Torsion 6 4 2 11 180.00000 - 81 Torsion 7 3 1 12 -0.00000 + 81 Torsion 7 3 1 12 0.00000 82 Torsion 7 3 5 9 0.00000 - 83 Torsion 8 4 2 11 -0.00000 + 83 Torsion 8 4 2 11 0.00000 84 Torsion 8 4 6 10 0.00000 85 Torsion 9 5 2 11 0.00000 86 Torsion 10 6 1 12 0.00000 87 Torsion 13 11 15 17 180.00000 - 88 Torsion 13 11 15 19 -0.00000 + 88 Torsion 13 11 15 19 0.00000 89 Torsion 14 12 16 18 180.00000 - 90 Torsion 14 12 16 20 -0.00000 - - + 90 Torsion 14 12 16 20 0.00000 + + XYZ format geometry ------------------- 20 @@ -274,7 +274,7 @@ H -1.44522900 3.70144241 0.00000000 H 0.04815351 -4.93192286 0.00000000 H -0.04815351 4.93192286 0.00000000 - + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -347,9 +347,6 @@ - library name resolved from: environment - library file name is: - Summary of "ao basis" -> "" (cartesian) @@ -359,18 +356,18 @@ * sto-3g on all atoms - - + + NWChem Geometry Optimization ---------------------------- - - - - + + + + Divinylbenzene in STO-3G basis set - - - no constraints, skipping 0.0000000000000000 + + + no constraints, skipping 0.000000000000000E+000 maximum gradient threshold (gmax) = 0.000450 rms gradient threshold (grms) = 0.000300 maximum cartesian step threshold (xmax) = 0.001800 @@ -394,7 +391,7 @@ Energy Minimization ------------------- - + Names of Z-matrix variables 1 2 3 4 5 6 7 8 9 10 @@ -414,23 +411,23 @@ 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 - + Variables with the same non-blank name are constrained to be equal - - + + Using diagonal initial Hessian Scaling for Hessian diagonals: bonds = 1.00 angles = 0.25 torsions = 0.10 -------- Step 0 -------- - - + + Geometry "geometry" -> "geometry" --------------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 C 6.0000 0.23680554 1.41416660 0.00000000 @@ -453,13 +450,13 @@ 18 H 1.0000 -1.44522900 3.70144241 0.00000000 19 H 1.0000 0.04815351 -4.93192286 0.00000000 20 H 1.0000 -0.04815351 4.93192286 0.00000000 - + Atomic Mass ----------- - + C 12.000000 H 1.007825 - + Effective nuclear repulsion energy (a.u.) 445.9370121674 @@ -468,19 +465,19 @@ X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - + Basis "ao basis" -> "ao basis" (cartesian) ----- C (Carbon) @@ -490,15 +487,15 @@ 1 S 7.16168370E+01 0.154329 1 S 1.30450960E+01 0.535328 1 S 3.53051220E+00 0.444635 - + 2 S 2.94124940E+00 -0.099967 2 S 6.83483100E-01 0.399513 2 S 2.22289900E-01 0.700115 - + 3 P 2.94124940E+00 0.155916 3 P 6.83483100E-01 0.607684 3 P 2.22289900E-01 0.391957 - + H (Hydrogen) ------------ Exponent Coefficients @@ -506,7 +503,7 @@ 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + Summary of "ao basis" -> "ao basis" (cartesian) @@ -519,11 +516,11 @@ NWChem SCF Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + ao basis = "ao basis" functions = 60 @@ -548,21 +545,21 @@ Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 + + Forming initial guess at 0.1s - Forming initial guess at 0.0s - - + Superposition of Atomic Density Guess ------------------------------------- - + Sum of atomic energies: -376.44825176 - + Non-variational initial energy ------------------------------ @@ -571,17 +568,17 @@ 2-e energy = 576.084617 HOMO = -0.037645 LUMO = 0.163723 - - + + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 ag 2 bu 3 ag 4 bu 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -591,7 +588,7 @@ 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 bu - + Starting SCF solution at 0.2s @@ -606,35 +603,47 @@ ---------------------------------------------- + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507880 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 + + iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7024485570 7.56D-01 1.81D-01 0.5 - 2 -379.7670205711 1.53D-01 4.40D-02 1.2 - 3 -379.7689540267 6.43D-03 2.31D-03 2.2 - 4 -379.7689610929 3.38D-05 9.25D-06 3.8 + 1 -379.7024515658 7.56D-01 1.81D-01 0.4 + 2 -379.7670218883 1.53D-01 4.40D-02 0.4 + 3 -379.7689554257 6.43D-03 2.31D-03 0.5 + 4 -379.7689624910 3.37D-05 9.25D-06 0.6 Final RHF results ------------------ - Total SCF energy = -379.768961092935 - One-electron energy = -1400.222176091991 - Two-electron energy = 574.516202831610 + Total SCF energy = -379.768962491014 + One-electron energy = -1400.222183962420 + Two-electron energy = 574.516209303959 Nuclear repulsion energy = 445.937012167446 - Time for solution = 3.6s - + Time for solution = 0.4s + Symmetry analysis of molecular orbitals - final ----------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -644,7 +653,7 @@ 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 ag 44 bu 45 ag - + Final eigenvalues ----------------- @@ -694,276 +703,276 @@ 43 0.6216 44 0.6258 45 0.6582 - + ROHF Final Molecular Orbital Analysis ------------------------------------- - + Vector 11 Occ=2.000000D+00 E=-1.090299D+00 Symmetry=ag - MO Center= 2.4D-17, -4.4D-17, 2.8D-18, r^2= 3.0D+00 + MO Center= -3.7D-17, 3.0D-17, 1.2D-34, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.275368 1 C s 7 0.275368 2 C s 12 0.247273 3 C s 17 0.247273 4 C s - 22 0.247125 5 C s 27 0.247125 6 C s - + 22 0.247126 5 C s 27 0.247126 6 C s + Vector 12 Occ=2.000000D+00 E=-1.020254D+00 Symmetry=bu - MO Center= 1.6D-16, 7.1D-16, -8.2D-20, r^2= 7.9D+00 + MO Center= 2.3D-16, 9.2D-15, -1.9D-18, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.298699 11 C s 41 -0.298699 12 C s - 2 -0.270807 1 C s 7 0.270807 2 C s + 2 -0.270806 1 C s 7 0.270806 2 C s 48 0.213652 15 C s 53 -0.213652 16 C s - - Vector 13 Occ=2.000000D+00 E=-9.749253D-01 Symmetry=ag - MO Center= -3.8D-16, 4.5D-16, -4.9D-34, r^2= 1.1D+01 + + Vector 13 Occ=2.000000D+00 E=-9.749254D-01 Symmetry=ag + MO Center= -4.1D-16, -8.2D-15, 4.4D-34, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.314473 11 C s 41 0.314473 12 C s 48 0.310076 15 C s 53 0.310076 16 C s - - Vector 14 Occ=2.000000D+00 E=-9.503037D-01 Symmetry=bu - MO Center= -9.2D-17, -1.3D-17, -6.8D-34, r^2= 3.1D+00 + + Vector 14 Occ=2.000000D+00 E=-9.503033D-01 Symmetry=bu + MO Center= 8.0D-16, -1.5D-16, 1.1D-19, r^2= 3.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.357133 3 C s 17 -0.357133 4 C s - 22 0.325009 5 C s 27 -0.325009 6 C s - - Vector 15 Occ=2.000000D+00 E=-9.096351D-01 Symmetry=bu - MO Center= 2.1D-17, 3.0D-17, -7.7D-32, r^2= 8.8D+00 + 22 0.325008 5 C s 27 -0.325008 6 C s + + Vector 15 Occ=2.000000D+00 E=-9.096345D-01 Symmetry=bu + MO Center= -2.3D-17, 1.1D-15, 8.3D-19, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.292220 15 C s 53 -0.292220 16 C s - 2 0.279080 1 C s 7 -0.279080 2 C s + 2 0.279079 1 C s 7 -0.279079 2 C s 22 -0.200698 5 C s 27 0.200698 6 C s - - Vector 16 Occ=2.000000D+00 E=-7.998827D-01 Symmetry=ag - MO Center= -4.5D-16, -3.0D-16, -1.8D-33, r^2= 8.5D+00 + + Vector 16 Occ=2.000000D+00 E=-7.998830D-01 Symmetry=ag + MO Center= -5.6D-17, -7.8D-16, 8.0D-34, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.239928 15 C s 53 0.239928 16 C s - 22 0.229428 5 C s 27 0.229428 6 C s - 2 -0.212931 1 C s 7 -0.212931 2 C s + 48 0.239926 15 C s 53 0.239926 16 C s + 22 0.229429 5 C s 27 0.229429 6 C s + 2 -0.212930 1 C s 7 -0.212930 2 C s 14 -0.159170 3 C py 19 0.159170 4 C py 36 -0.159504 11 C s 41 -0.159504 12 C s - - Vector 17 Occ=2.000000D+00 E=-7.628266D-01 Symmetry=ag - MO Center= 5.0D-16, 9.4D-17, 3.7D-33, r^2= 5.0D+00 + + Vector 17 Occ=2.000000D+00 E=-7.628268D-01 Symmetry=ag + MO Center= -2.2D-16, -3.6D-16, 4.7D-18, r^2= 5.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.324855 3 C s 17 0.324855 4 C s - 3 0.189937 1 C px 8 -0.189937 2 C px - 22 -0.180806 5 C s 27 -0.180806 6 C s + 3 0.189935 1 C px 8 -0.189935 2 C px + 22 -0.180804 5 C s 27 -0.180804 6 C s 31 0.173636 7 H s 32 0.173636 8 H s 24 0.169743 5 C py 29 -0.169743 6 C py - + Vector 18 Occ=2.000000D+00 E=-7.276317D-01 Symmetry=bu - MO Center= -7.2D-17, 4.9D-17, 1.3D-32, r^2= 1.2D+01 + MO Center= -2.0D-17, 1.8D-18, -1.4D-31, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.297522 11 C s 41 -0.297522 12 C s - 48 -0.248205 15 C s 53 0.248205 16 C s + 48 -0.248206 15 C s 53 0.248206 16 C s 45 0.174840 13 H s 46 -0.174840 14 H s 57 -0.163892 17 H s 58 0.163892 18 H s - + Vector 19 Occ=2.000000D+00 E=-6.967772D-01 Symmetry=ag - MO Center= 1.8D-16, 1.9D-16, -4.1D-34, r^2= 7.9D+00 + MO Center= 1.6D-15, 5.4D-16, 2.7D-16, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.194626 5 C px 28 -0.194626 6 C px - 36 0.187352 11 C s 41 0.187352 12 C s - 13 0.174309 3 C px 18 -0.174309 4 C px + 36 0.187351 11 C s 41 0.187351 12 C s + 13 0.174310 3 C px 18 -0.174310 4 C px 2 -0.170808 1 C s 7 -0.170808 2 C s - 33 0.168855 9 H s 34 0.168855 10 H s - - Vector 20 Occ=2.000000D+00 E=-6.280524D-01 Symmetry=ag - MO Center= 3.0D-16, -2.2D-15, 5.5D-18, r^2= 9.3D+00 + 33 0.168856 9 H s 34 0.168856 10 H s + + Vector 20 Occ=2.000000D+00 E=-6.280522D-01 Symmetry=ag + MO Center= -1.1D-16, -2.8D-16, -8.5D-33, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.204699 15 C px 54 -0.204699 16 C px - 38 0.183206 11 C py 43 -0.183206 12 C py - 57 0.178851 17 H s 58 0.178851 18 H s + 49 0.204700 15 C px 54 -0.204700 16 C px + 38 0.183205 11 C py 43 -0.183205 12 C py + 57 0.178852 17 H s 58 0.178852 18 H s 45 -0.152733 13 H s 46 -0.152733 14 H s - - Vector 21 Occ=2.000000D+00 E=-6.056785D-01 Symmetry=bu - MO Center= -1.6D-16, 5.0D-15, -6.5D-19, r^2= 1.0D+01 + + Vector 21 Occ=2.000000D+00 E=-6.056780D-01 Symmetry=bu + MO Center= -6.3D-17, -1.5D-16, -3.0D-33, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.215047 11 C px 42 0.215047 12 C px - 50 0.201796 15 C py 55 0.201796 16 C py + 37 0.215048 11 C px 42 0.215048 12 C px + 50 0.201798 15 C py 55 0.201798 16 C py 14 0.181913 3 C py 19 0.181913 4 C py - 59 -0.179093 19 H s 60 0.179093 20 H s - 45 -0.165300 13 H s 46 0.165300 14 H s - - Vector 22 Occ=2.000000D+00 E=-5.729431D-01 Symmetry=bu - MO Center= -2.1D-16, 3.2D-16, 4.7D-32, r^2= 7.0D+00 + 59 -0.179094 19 H s 60 0.179094 20 H s + 45 -0.165299 13 H s 46 0.165299 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.729426D-01 Symmetry=bu + MO Center= -1.4D-16, -8.8D-16, 2.6D-18, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.234898 9 H s 34 -0.234898 10 H s + 33 0.234899 9 H s 34 -0.234899 10 H s 31 -0.225759 7 H s 32 0.225759 8 H s - 2 0.223487 1 C s 7 -0.223487 2 C s - 13 -0.220803 3 C px 18 -0.220803 4 C px - 24 -0.179466 5 C py 29 -0.179466 6 C py - + 2 0.223491 1 C s 7 -0.223491 2 C s + 13 -0.220802 3 C px 18 -0.220802 4 C px + 24 -0.179464 5 C py 29 -0.179464 6 C py + Vector 23 Occ=2.000000D+00 E=-5.536035D-01 Symmetry=bu - MO Center= 4.0D-16, -2.8D-15, 2.2D-32, r^2= 8.9D+00 + MO Center= -5.0D-16, -4.5D-16, -1.4D-33, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.252836 15 C px 54 0.252836 16 C px - 23 0.248954 5 C px 28 0.248954 6 C px + 49 0.252837 15 C px 54 0.252837 16 C px + 23 0.248952 5 C px 28 0.248952 6 C px 3 -0.221990 1 C px 8 -0.221990 2 C px - 57 0.222771 17 H s 58 -0.222771 18 H s - 38 0.178894 11 C py 43 0.178894 12 C py - - Vector 24 Occ=2.000000D+00 E=-5.531660D-01 Symmetry=ag - MO Center= -1.1D-16, -9.9D-17, -2.5D-33, r^2= 1.5D+01 + 57 0.222772 17 H s 58 -0.222772 18 H s + 38 0.178895 11 C py 43 0.178895 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.531658D-01 Symmetry=ag + MO Center= -1.8D-16, -6.1D-16, 2.0D-17, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.336239 15 C py 55 -0.336239 16 C py - 59 -0.268358 19 H s 60 -0.268358 20 H s + 59 -0.268357 19 H s 60 -0.268357 20 H s 37 0.248998 11 C px 42 -0.248998 12 C px 45 -0.151363 13 H s 46 -0.151363 14 H s - - Vector 25 Occ=2.000000D+00 E=-5.253611D-01 Symmetry=bu - MO Center= 3.8D-16, -4.8D-16, -1.3D-18, r^2= 4.4D+00 + + Vector 25 Occ=2.000000D+00 E=-5.253606D-01 Symmetry=bu + MO Center= 4.5D-17, -7.5D-17, 1.9D-18, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.299403 3 C px 18 0.299403 4 C px + 13 0.299404 3 C px 18 0.299404 4 C px 31 0.258504 7 H s 32 -0.258504 8 H s 24 -0.232845 5 C py 29 -0.232845 6 C py - 33 0.223597 9 H s 34 -0.223597 10 H s - 23 0.179045 5 C px 28 0.179045 6 C px - + 33 0.223596 9 H s 34 -0.223596 10 H s + 23 0.179046 5 C px 28 0.179046 6 C px + Vector 26 Occ=2.000000D+00 E=-4.966990D-01 Symmetry=bu - MO Center= 3.5D-16, -5.2D-16, 3.0D-33, r^2= 8.9D+00 + MO Center= -1.3D-16, 1.4D-15, 6.4D-19, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 -0.238943 15 C py 55 -0.238943 16 C py - 14 0.222971 3 C py 19 0.222971 4 C py - 37 -0.201997 11 C px 42 -0.201997 12 C px - 38 0.188761 11 C py 43 0.188761 12 C py + 50 -0.238942 15 C py 55 -0.238942 16 C py + 14 0.222972 3 C py 19 0.222972 4 C py + 37 -0.201999 11 C px 42 -0.201999 12 C px + 38 0.188759 11 C py 43 0.188759 12 C py 24 -0.184876 5 C py 29 -0.184876 6 C py - - Vector 27 Occ=2.000000D+00 E=-4.925284D-01 Symmetry=ag - MO Center= -7.3D-16, 1.5D-16, 2.0D-36, r^2= 1.2D+01 + + Vector 27 Occ=2.000000D+00 E=-4.925280D-01 Symmetry=ag + MO Center= -1.5D-15, 6.4D-16, 1.5D-32, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.296132 15 C px 54 -0.296132 16 C px + 49 0.296131 15 C px 54 -0.296131 16 C px 57 0.273185 17 H s 58 0.273185 18 H s 37 -0.209362 11 C px 42 0.209362 12 C px 45 0.202959 13 H s 46 0.202959 14 H s - 31 -0.156849 7 H s 32 -0.156849 8 H s - - Vector 28 Occ=2.000000D+00 E=-4.637309D-01 Symmetry=au - MO Center= -9.0D-16, 3.1D-15, -7.2D-17, r^2= 3.6D+00 + 31 -0.156851 7 H s 32 -0.156851 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.637308D-01 Symmetry=au + MO Center= 6.7D-18, 1.2D-16, -1.9D-18, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.331504 1 C pz 10 0.331504 2 C pz 15 0.302831 3 C pz 20 0.302831 4 C pz 25 0.301868 5 C pz 30 0.301868 6 C pz 39 0.165577 11 C pz 44 0.165577 12 C pz - - Vector 29 Occ=2.000000D+00 E=-4.464301D-01 Symmetry=bu - MO Center= -2.5D-16, -4.6D-18, 4.0D-34, r^2= 1.2D+01 + + Vector 29 Occ=2.000000D+00 E=-4.464302D-01 Symmetry=bu + MO Center= 1.2D-16, -4.2D-16, -7.3D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.257253 13 H s 46 -0.257253 14 H s - 4 0.243717 1 C py 9 0.243717 2 C py - 57 0.226299 17 H s 58 -0.226299 18 H s - 37 -0.214535 11 C px 42 -0.214535 12 C px + 45 0.257252 13 H s 46 -0.257252 14 H s + 4 0.243719 1 C py 9 0.243719 2 C py + 57 0.226298 17 H s 58 -0.226298 18 H s + 37 -0.214534 11 C px 42 -0.214534 12 C px 59 -0.211967 19 H s 60 0.211967 20 H s - - Vector 30 Occ=2.000000D+00 E=-4.216541D-01 Symmetry=ag - MO Center= 2.3D-16, -4.0D-16, -1.8D-16, r^2= 5.7D+00 + + Vector 30 Occ=2.000000D+00 E=-4.216550D-01 Symmetry=ag + MO Center= 6.0D-16, -3.0D-16, 5.8D-18, r^2= 5.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 -0.268211 3 C py 19 0.268211 4 C py - 4 0.260254 1 C py 9 -0.260254 2 C py - 33 -0.253901 9 H s 34 -0.253901 10 H s - 38 0.232931 11 C py 43 -0.232931 12 C py - 24 0.223472 5 C py 29 -0.223472 6 C py - - Vector 31 Occ=2.000000D+00 E=-4.156211D-01 Symmetry=ag - MO Center= 1.5D-16, 1.9D-16, 1.4D-16, r^2= 6.3D+00 + 14 -0.268212 3 C py 19 0.268212 4 C py + 4 0.260257 1 C py 9 -0.260257 2 C py + 33 -0.253899 9 H s 34 -0.253899 10 H s + 38 0.232935 11 C py 43 -0.232935 12 C py + 24 0.223473 5 C py 29 -0.223473 6 C py + + Vector 31 Occ=2.000000D+00 E=-4.156220D-01 Symmetry=ag + MO Center= 6.1D-16, 2.5D-16, -6.2D-20, r^2= 6.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 3 0.278851 1 C px 8 -0.278851 2 C px - 23 0.269036 5 C px 28 -0.269036 6 C px + 3 0.278853 1 C px 8 -0.278853 2 C px + 23 0.269038 5 C px 28 -0.269038 6 C px 31 -0.251625 7 H s 32 -0.251625 8 H s - 13 -0.210354 3 C px 18 0.210354 4 C px + 13 -0.210356 3 C px 18 0.210356 4 C px 45 -0.183775 13 H s 46 -0.183775 14 H s - - Vector 32 Occ=2.000000D+00 E=-3.769632D-01 Symmetry=bg - MO Center= -3.3D-16, -2.9D-15, 1.7D-19, r^2= 8.6D+00 + + Vector 32 Occ=2.000000D+00 E=-3.769631D-01 Symmetry=bg + MO Center= -2.8D-16, 4.6D-15, -1.4D-17, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.383213 11 C pz 44 -0.383213 12 C pz - 5 -0.318676 1 C pz 10 0.318676 2 C pz - 51 0.306665 15 C pz 56 -0.306665 16 C pz - - Vector 33 Occ=2.000000D+00 E=-3.151269D-01 Symmetry=au - MO Center= -2.9D-16, 7.9D-16, 3.7D-17, r^2= 1.1D+01 + 5 -0.318675 1 C pz 10 0.318675 2 C pz + 51 0.306666 15 C pz 56 -0.306666 16 C pz + + Vector 33 Occ=2.000000D+00 E=-3.151268D-01 Symmetry=au + MO Center= -5.9D-17, -4.7D-15, -6.0D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.426295 15 C pz 56 0.426295 16 C pz 39 0.415175 11 C pz 44 0.415175 12 C pz 15 -0.164508 3 C pz 20 -0.164508 4 C pz 25 -0.164934 5 C pz 30 -0.164934 6 C pz - - Vector 34 Occ=2.000000D+00 E=-2.783652D-01 Symmetry=bg - MO Center= 1.3D-15, -2.5D-16, -3.1D-19, r^2= 2.7D+00 + + Vector 34 Occ=2.000000D+00 E=-2.783651D-01 Symmetry=bg + MO Center= 8.1D-17, -1.7D-16, -3.0D-18, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.459817 3 C pz 20 -0.459817 4 C pz + 15 0.459816 3 C pz 20 -0.459816 4 C pz 25 0.461493 5 C pz 30 -0.461493 6 C pz - - Vector 35 Occ=2.000000D+00 E=-2.221905D-01 Symmetry=bg - MO Center= -2.0D-17, -6.3D-16, 1.2D-18, r^2= 7.2D+00 + + Vector 35 Occ=2.000000D+00 E=-2.221904D-01 Symmetry=bg + MO Center= -8.8D-16, 6.0D-15, 9.8D-18, r^2= 7.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.417993 1 C pz 10 -0.417993 2 C pz 51 0.358184 15 C pz 56 -0.358184 16 C pz - 15 0.231888 3 C pz 20 -0.231888 4 C pz + 15 0.231889 3 C pz 20 -0.231889 4 C pz 25 -0.232000 5 C pz 30 0.232000 6 C pz - 39 0.218350 11 C pz 44 -0.218350 12 C pz - - Vector 36 Occ=0.000000D+00 E= 1.989923D-01 Symmetry=au - MO Center= -8.2D-17, 2.3D-14, 1.9D-17, r^2= 7.3D+00 + 39 0.218349 11 C pz 44 -0.218349 12 C pz + + Vector 36 Occ=0.000000D+00 E= 1.989924D-01 Symmetry=au + MO Center= 4.5D-16, -3.5D-14, 8.7D-17, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.471534 1 C pz 10 0.471534 2 C pz 51 -0.414928 15 C pz 56 -0.414928 16 C pz 25 -0.278569 5 C pz 30 -0.278569 6 C pz - 15 -0.249974 3 C pz 20 -0.249974 4 C pz + 15 -0.249973 3 C pz 20 -0.249973 4 C pz 39 0.246934 11 C pz 44 0.246934 12 C pz - - Vector 37 Occ=0.000000D+00 E= 2.685137D-01 Symmetry=au - MO Center= -8.1D-17, -1.6D-16, 2.2D-17, r^2= 2.7D+00 + + Vector 37 Occ=0.000000D+00 E= 2.685138D-01 Symmetry=au + MO Center= 7.3D-15, -9.4D-16, 2.6D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.578558 3 C pz 20 0.578558 4 C pz - 25 -0.558107 5 C pz 30 -0.558107 6 C pz - - Vector 38 Occ=0.000000D+00 E= 3.088251D-01 Symmetry=bg - MO Center= 1.4D-16, -2.4D-14, -5.4D-19, r^2= 1.1D+01 + 25 -0.558106 5 C pz 30 -0.558106 6 C pz + + Vector 38 Occ=0.000000D+00 E= 3.088252D-01 Symmetry=bg + MO Center= -6.9D-15, 3.0D-14, -1.2D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.531237 15 C pz 56 0.531237 16 C pz - 39 0.524390 11 C pz 44 -0.524390 12 C pz + 39 0.524391 11 C pz 44 -0.524391 12 C pz 15 0.225543 3 C pz 20 -0.225543 4 C pz 25 -0.220434 5 C pz 30 0.220434 6 C pz - - Vector 39 Occ=0.000000D+00 E= 3.970769D-01 Symmetry=au - MO Center= -7.1D-16, -7.5D-15, 1.1D-15, r^2= 8.4D+00 + + Vector 39 Occ=0.000000D+00 E= 3.970770D-01 Symmetry=au + MO Center= 4.5D-16, 3.9D-15, -5.1D-16, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.535070 11 C pz 44 0.535070 12 C pz 5 -0.473494 1 C pz 10 -0.473494 2 C pz 51 -0.407351 15 C pz 56 -0.407351 16 C pz 25 0.186775 5 C pz 30 0.186775 6 C pz - 15 0.161861 3 C pz 20 0.161861 4 C pz - - Vector 40 Occ=0.000000D+00 E= 5.217565D-01 Symmetry=bg - MO Center= 8.0D-16, 7.0D-15, -2.6D-19, r^2= 3.8D+00 + 15 0.161862 3 C pz 20 0.161862 4 C pz + + Vector 40 Occ=0.000000D+00 E= 5.217566D-01 Symmetry=bg + MO Center= -2.9D-16, -3.4D-15, -4.0D-18, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.538711 1 C pz 10 -0.538711 2 C pz @@ -971,57 +980,57 @@ 25 0.471487 5 C pz 30 -0.471487 6 C pz 39 0.278750 11 C pz 44 -0.278750 12 C pz 51 -0.158475 15 C pz 56 0.158475 16 C pz - - Vector 41 Occ=0.000000D+00 E= 5.650142D-01 Symmetry=ag - MO Center= 3.9D-17, -4.0D-16, -4.7D-16, r^2= 8.7D+00 + + Vector 41 Occ=0.000000D+00 E= 5.650160D-01 Symmetry=ag + MO Center= 1.6D-15, -3.3D-15, 2.4D-16, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.434809 9 H s 34 0.434809 10 H s - 31 0.420950 7 H s 32 0.420950 8 H s - 2 -0.380042 1 C s 7 -0.380042 2 C s - 59 0.353825 19 H s 60 0.353825 20 H s - 38 0.323933 11 C py 43 -0.323933 12 C py - - Vector 42 Occ=0.000000D+00 E= 5.755623D-01 Symmetry=bu - MO Center= -1.1D-15, -2.4D-14, 3.6D-20, r^2= 1.0D+01 + 33 0.434798 9 H s 34 0.434798 10 H s + 31 0.420942 7 H s 32 0.420942 8 H s + 2 -0.380055 1 C s 7 -0.380055 2 C s + 59 0.353828 19 H s 60 0.353828 20 H s + 38 0.323940 11 C py 43 -0.323940 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.755620D-01 Symmetry=bu + MO Center= 1.1D-15, -9.1D-16, 2.4D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.448708 13 H s 46 -0.448708 14 H s - 13 0.355539 3 C px 18 0.355539 4 C px - 37 0.350908 11 C px 42 0.350908 12 C px - 57 -0.321571 17 H s 58 0.321571 18 H s - 31 -0.318891 7 H s 32 0.318891 8 H s - - Vector 43 Occ=0.000000D+00 E= 6.215603D-01 Symmetry=ag - MO Center= -1.4D-14, -5.6D-16, 5.2D-16, r^2= 1.2D+01 + 45 0.448702 13 H s 46 -0.448702 14 H s + 13 0.355546 3 C px 18 0.355546 4 C px + 37 0.350909 11 C px 42 0.350909 12 C px + 57 -0.321562 17 H s 58 0.321562 18 H s + 31 -0.318904 7 H s 32 0.318904 8 H s + + Vector 43 Occ=0.000000D+00 E= 6.215596D-01 Symmetry=ag + MO Center= -3.6D-17, -9.4D-16, 4.5D-17, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.589566 13 H s 46 0.589566 14 H s - 12 0.397895 3 C s 17 0.397895 4 C s - 36 -0.394565 11 C s 41 -0.394565 12 C s - 57 -0.381368 17 H s 58 -0.381368 18 H s - 37 0.350696 11 C px 42 -0.350696 12 C px - - Vector 44 Occ=0.000000D+00 E= 6.258005D-01 Symmetry=bu - MO Center= 4.6D-16, -3.9D-17, 2.0D-19, r^2= 8.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.529790 11 C s 41 -0.529790 12 C s - 4 0.453569 1 C py 9 0.453569 2 C py - 33 0.408877 9 H s 34 -0.408877 10 H s - 59 0.389453 19 H s 60 -0.389453 20 H s - 48 -0.337623 15 C s 53 0.337623 16 C s - - Vector 45 Occ=0.000000D+00 E= 6.582334D-01 Symmetry=ag - MO Center= -1.2D-15, 1.6D-15, -4.0D-17, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.683572 15 C s 53 0.683572 16 C s - 22 0.582873 5 C s 27 0.582873 6 C s - 57 -0.541817 17 H s 58 -0.541817 18 H s - 12 -0.457375 3 C s 17 -0.457375 4 C s - 59 -0.330802 19 H s 60 -0.330802 20 H s - + 12 0.397886 3 C s 17 0.397886 4 C s + 36 -0.394579 11 C s 41 -0.394579 12 C s + 57 -0.381363 17 H s 58 -0.381363 18 H s + 37 0.350692 11 C px 42 -0.350692 12 C px + + Vector 44 Occ=0.000000D+00 E= 6.258003D-01 Symmetry=bu + MO Center= 5.1D-15, -3.7D-14, -4.6D-18, r^2= 8.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.529760 11 C s 41 -0.529760 12 C s + 4 0.453566 1 C py 9 0.453566 2 C py + 33 0.408895 9 H s 34 -0.408895 10 H s + 59 0.389457 19 H s 60 -0.389457 20 H s + 48 -0.337620 15 C s 53 0.337620 16 C s + + Vector 45 Occ=0.000000D+00 E= 6.582325D-01 Symmetry=ag + MO Center= -1.0D-14, 3.6D-14, 9.2D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.683576 15 C s 53 0.683576 16 C s + 22 0.582877 5 C s 27 0.582877 6 C s + 57 -0.541814 17 H s 58 -0.541814 18 H s + 12 -0.457382 3 C s 17 -0.457382 4 C s + 59 -0.330810 19 H s 60 -0.330810 20 H s + center of mass -------------- @@ -1029,10 +1038,10 @@ moments of inertia (a.u.) ------------------ - 2631.731379210404 0.000000000000 0.000000000000 - 0.000000000000 390.819001468288 0.000000000000 - 0.000000000000 0.000000000000 3022.550380678692 - + 2631.731379210398 -0.000000000000 0.000000000000 + -0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678686 + Mulliken analysis of the total density -------------------------------------- @@ -1058,31 +1067,34 @@ 18 H 1 0.94 0.94 19 H 1 0.94 0.94 20 H 1 0.94 0.94 - + Multipole analysis of the density wrt the origin ------------------------------------------------ - + L x y z total open nuclear - - - - ----- ---- ------- 0 0 0 0 -0.000000 0.000000 70.000000 - - 1 1 0 0 -0.000000 0.000000 0.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 1 0 1 0 -0.000000 0.000000 0.000000 - 1 0 0 1 0.000000 0.000000 0.000000 - - 2 2 0 0 -38.360884 0.000000 244.795872 - 2 1 1 0 0.065438 0.000000 -5.631027 + 1 0 0 1 -0.000000 0.000000 0.000000 + + 2 2 0 0 -38.360869 0.000000 244.795872 + 2 1 1 0 0.065434 0.000000 -5.631027 2 1 0 1 -0.000000 0.000000 0.000000 - 2 0 2 0 -39.006243 0.000000 1496.963300 - 2 0 1 1 0.000000 0.000000 0.000000 - 2 0 0 2 -43.564268 0.000000 0.000000 + 2 0 2 0 -39.006221 0.000000 1496.963300 + 2 0 1 1 -0.000000 0.000000 0.000000 + 2 0 0 2 -43.564269 0.000000 0.000000 + + + Parallel integral file used 10 records with 0 large values NWChem Gradients Module ----------------------- - - + + Divinylbenzene in STO-3G basis set - + wavefunction = RHF @@ -1093,16 +1105,16 @@ atom coordinates gradient x y z x y z - 1 C 0.447498 2.672387 0.000000 0.004028 0.024724 0.000000 - 2 C -0.447498 -2.672387 0.000000 -0.004028 -0.024724 -0.000000 + 1 C 0.447498 2.672387 0.000000 0.004027 0.024725 0.000000 + 2 C -0.447498 -2.672387 0.000000 -0.004027 -0.024725 0.000000 3 C 2.488298 0.924096 0.000000 0.014289 0.002868 0.000000 - 4 C -2.488298 -0.924096 0.000000 -0.014289 -0.002868 0.000000 - 5 C 2.053751 -1.690315 0.000000 0.013557 -0.005636 0.000000 - 6 C -2.053751 1.690315 0.000000 -0.013557 0.005636 0.000000 + 4 C -2.488298 -0.924096 0.000000 -0.014289 -0.002868 -0.000000 + 5 C 2.053751 -1.690315 0.000000 0.013557 -0.005635 0.000000 + 6 C -2.053751 1.690315 0.000000 -0.013557 0.005635 0.000000 7 H 4.436703 1.641481 0.000000 0.013098 0.004960 0.000000 8 H -4.436703 -1.641481 0.000000 -0.013098 -0.004960 0.000000 9 H 3.661612 -2.998879 0.000000 0.009782 -0.009902 0.000000 - 10 H -3.661612 2.998879 0.000000 -0.009782 0.009902 -0.000000 + 10 H -3.661612 2.998879 0.000000 -0.009782 0.009902 0.000000 11 C -1.010073 -5.446433 0.000000 -0.017299 0.032961 0.000000 12 C 1.010073 5.446433 0.000000 0.017299 -0.032961 0.000000 13 H -3.035954 -5.920309 0.000000 -0.014124 -0.003179 0.000000 @@ -1113,19 +1125,19 @@ 18 H -2.731087 6.994712 0.000000 -0.013533 -0.003314 0.000000 19 H 0.090997 -9.319983 0.000000 -0.003965 -0.013248 0.000000 20 H -0.090997 9.319983 0.000000 0.003965 0.013248 0.000000 - + ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.00 | 0.54 | + | CPU | 0.00 | 0.30 | ---------------------------------------- - | WALL | 0.00 | 0.54 | + | WALL | 0.00 | 0.31 | ---------------------------------------- - no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.000000000000000E+000 @ Step Energy Delta E Gmax Grms Xrms Xmax Walltime @ ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 0 -379.76896109 0.0D+00 0.04567 0.01110 0.00000 0.00000 4.4 +@ 0 -379.76896249 0.0D+00 0.04567 0.01110 0.00000 0.00000 1.1 @@ -1134,7 +1146,7 @@ -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value Gradient ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- 1 Stretch 1 3 1.42204 0.02930 @@ -1203,42 +1215,42 @@ 64 Torsion 3 1 12 16 180.00000 0.00000 65 Torsion 3 5 2 4 0.00000 0.00000 66 Torsion 3 5 2 11 180.00000 0.00000 - 67 Torsion 4 2 5 9 180.00000 -0.00000 + 67 Torsion 4 2 5 9 180.00000 0.00000 68 Torsion 4 2 11 13 0.00000 0.00000 69 Torsion 4 2 11 15 180.00000 0.00000 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 -0.00000 + 71 Torsion 5 2 4 6 0.00000 -0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 73 Torsion 5 2 11 13 180.00000 -0.00000 74 Torsion 5 2 11 15 0.00000 0.00000 75 Torsion 5 3 1 6 0.00000 -0.00000 76 Torsion 5 3 1 12 180.00000 -0.00000 - 77 Torsion 6 1 3 7 180.00000 0.00000 + 77 Torsion 6 1 3 7 180.00000 -0.00000 78 Torsion 6 1 12 14 180.00000 -0.00000 79 Torsion 6 1 12 16 0.00000 0.00000 80 Torsion 6 4 2 11 180.00000 -0.00000 - 81 Torsion 7 3 1 12 -0.00000 -0.00000 + 81 Torsion 7 3 1 12 0.00000 -0.00000 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 -0.00000 + 83 Torsion 8 4 2 11 0.00000 -0.00000 84 Torsion 8 4 6 10 0.00000 -0.00000 85 Torsion 9 5 2 11 0.00000 0.00000 86 Torsion 10 6 1 12 0.00000 0.00000 87 Torsion 13 11 15 17 180.00000 0.00000 - 88 Torsion 13 11 15 19 -0.00000 0.00000 + 88 Torsion 13 11 15 19 0.00000 0.00000 89 Torsion 14 12 16 18 180.00000 0.00000 - 90 Torsion 14 12 16 20 -0.00000 0.00000 - - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 + 90 Torsion 14 12 16 20 0.00000 0.00000 + + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 NWChem SCF Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + ao basis = "ao basis" functions = 60 @@ -1263,30 +1275,30 @@ Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 + - - Forming initial guess at 4.4s + Forming initial guess at 1.1s Loading old vectors from job with title : Divinylbenzene in STO-3G basis set - + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -1296,9 +1308,9 @@ Divinylbenzene in STO-3G basis set 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 ag 44 bu 45 ag + - - Starting SCF solution at 4.4s + Starting SCF solution at 1.1s @@ -1311,34 +1323,46 @@ Divinylbenzene in STO-3G basis set ---------------------------------------------- + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507878 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.181D+05 #integrals = 3.546D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 + + iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7748612679 1.31D-01 2.55D-02 4.7 - 2 -379.7762731068 4.43D-03 1.54D-03 5.7 - 3 -379.7762749994 1.05D-05 2.95D-06 7.3 + 1 -379.7748618921 1.31D-01 2.55D-02 1.2 + 2 -379.7762734271 4.43D-03 1.54D-03 1.3 + 3 -379.7762753195 1.05D-05 2.95D-06 1.4 Final RHF results ------------------ - Total SCF energy = -379.776274999441 - One-electron energy = -1417.334071246266 - Two-electron energy = 582.747890558924 - Nuclear repulsion energy = 454.809905687902 - - Time for solution = 3.0s + Total SCF energy = -379.776275319545 + One-electron energy = -1417.333828551695 + Two-electron energy = 582.747774645589 + Nuclear repulsion energy = 454.809778586561 + Time for solution = 0.4s + Symmetry analysis of molecular orbitals - final ----------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -1348,12 +1372,12 @@ Divinylbenzene in STO-3G basis set 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag - + Final eigenvalues ----------------- 1 - 1 -11.0411 + 1 -11.0410 2 -11.0410 3 -11.0326 4 -11.0326 @@ -1398,230 +1422,230 @@ Divinylbenzene in STO-3G basis set 43 0.6360 44 0.6402 45 0.6893 - + ROHF Final Molecular Orbital Analysis ------------------------------------- - - Vector 11 Occ=2.000000D+00 E=-1.112881D+00 Symmetry=ag - MO Center= -4.4D-17, -8.9D-17, -8.0D-35, r^2= 2.8D+00 + + Vector 11 Occ=2.000000D+00 E=-1.112882D+00 Symmetry=ag + MO Center= -4.3D-17, 5.1D-17, -1.2D-35, r^2= 2.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.269208 1 C s 7 0.269208 2 C s 12 0.244670 3 C s 17 0.244670 4 C s - 22 0.244602 5 C s 27 0.244602 6 C s - + 22 0.244603 5 C s 27 0.244603 6 C s + Vector 12 Occ=2.000000D+00 E=-1.037372D+00 Symmetry=bu - MO Center= 7.6D-18, 1.3D-16, 7.0D-39, r^2= 8.0D+00 + MO Center= 2.0D-16, 9.1D-15, -1.9D-18, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.295138 11 C s 41 -0.295138 12 C s - 2 -0.259769 1 C s 7 0.259769 2 C s - 48 0.218844 15 C s 53 -0.218844 16 C s - - Vector 13 Occ=2.000000D+00 E=-9.952246D-01 Symmetry=ag - MO Center= -5.8D-18, -2.4D-17, 6.9D-34, r^2= 1.1D+01 + 2 -0.259768 1 C s 7 0.259768 2 C s + 48 0.218845 15 C s 53 -0.218845 16 C s + + Vector 13 Occ=2.000000D+00 E=-9.952245D-01 Symmetry=ag + MO Center= -3.4D-16, -9.0D-15, -7.8D-35, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.311306 11 C s 41 0.311306 12 C s - 48 0.307949 15 C s 53 0.307949 16 C s - - Vector 14 Occ=2.000000D+00 E=-9.651403D-01 Symmetry=bu - MO Center= -1.9D-16, 3.3D-17, -9.3D-21, r^2= 3.0D+00 + 48 0.307950 15 C s 53 0.307950 16 C s + + Vector 14 Occ=2.000000D+00 E=-9.651398D-01 Symmetry=bu + MO Center= 7.3D-16, -2.0D-16, 2.3D-19, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.353451 3 C s 17 -0.353451 4 C s - 22 0.318886 5 C s 27 -0.318886 6 C s - - Vector 15 Occ=2.000000D+00 E=-9.279322D-01 Symmetry=bu - MO Center= -4.5D-17, -8.0D-17, 2.8D-20, r^2= 8.2D+00 + 22 0.318884 5 C s 27 -0.318884 6 C s + + Vector 15 Occ=2.000000D+00 E=-9.279313D-01 Symmetry=bu + MO Center= 2.7D-17, 9.1D-16, 8.7D-19, r^2= 8.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.282482 1 C s 7 -0.282482 2 C s - 48 0.276988 15 C s 53 -0.276988 16 C s - 22 -0.202271 5 C s 27 0.202271 6 C s - - Vector 16 Occ=2.000000D+00 E=-8.091037D-01 Symmetry=ag - MO Center= 7.4D-17, 1.5D-16, -1.0D-18, r^2= 7.7D+00 + 2 0.282481 1 C s 7 -0.282481 2 C s + 48 0.276987 15 C s 53 -0.276987 16 C s + 22 -0.202273 5 C s 27 0.202273 6 C s + + Vector 16 Occ=2.000000D+00 E=-8.091041D-01 Symmetry=ag + MO Center= -1.1D-16, -3.6D-16, 9.0D-18, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.234908 5 C s 27 0.234908 6 C s - 48 0.220783 15 C s 53 0.220783 16 C s - 2 -0.206265 1 C s 7 -0.206265 2 C s + 22 0.234910 5 C s 27 0.234910 6 C s + 48 0.220781 15 C s 53 0.220781 16 C s + 2 -0.206261 1 C s 7 -0.206261 2 C s 14 -0.170154 3 C py 19 0.170154 4 C py - 36 -0.154354 11 C s 41 -0.154354 12 C s - - Vector 17 Occ=2.000000D+00 E=-7.743984D-01 Symmetry=ag - MO Center= -2.2D-16, 5.6D-17, 2.8D-18, r^2= 4.9D+00 + 36 -0.154355 11 C s 41 -0.154355 12 C s + + Vector 17 Occ=2.000000D+00 E=-7.743983D-01 Symmetry=ag + MO Center= -2.1D-16, -5.6D-16, -6.8D-19, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.317022 3 C s 17 0.317022 4 C s - 3 0.188323 1 C px 8 -0.188323 2 C px + 12 0.317021 3 C s 17 0.317021 4 C s + 3 0.188321 1 C px 8 -0.188321 2 C px 24 0.176341 5 C py 29 -0.176341 6 C py - 31 0.171235 7 H s 32 0.171235 8 H s - 2 -0.164738 1 C s 7 -0.164738 2 C s - - Vector 18 Occ=2.000000D+00 E=-7.344208D-01 Symmetry=bu - MO Center= 8.8D-17, 1.0D-16, -4.2D-20, r^2= 1.2D+01 + 31 0.171236 7 H s 32 0.171236 8 H s + 2 -0.164741 1 C s 7 -0.164741 2 C s + + Vector 18 Occ=2.000000D+00 E=-7.344205D-01 Symmetry=bu + MO Center= -2.9D-17, -1.5D-16, -8.8D-20, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.290970 11 C s 41 -0.290970 12 C s + 36 0.290969 11 C s 41 -0.290969 12 C s 48 -0.246144 15 C s 53 0.246144 16 C s - 45 0.178360 13 H s 46 -0.178360 14 H s + 45 0.178361 13 H s 46 -0.178361 14 H s 57 -0.167691 17 H s 58 0.167691 18 H s - - Vector 19 Occ=2.000000D+00 E=-7.104280D-01 Symmetry=ag - MO Center= -1.7D-17, 1.1D-16, 1.4D-17, r^2= 7.6D+00 + + Vector 19 Occ=2.000000D+00 E=-7.104278D-01 Symmetry=ag + MO Center= 1.4D-15, 3.7D-16, 2.4D-16, r^2= 7.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.196161 5 C px 28 -0.196161 6 C px - 13 0.179652 3 C px 18 -0.179652 4 C px - 36 0.177734 11 C s 41 0.177734 12 C s - 33 0.172261 9 H s 34 0.172261 10 H s - 48 -0.164478 15 C s 53 -0.164478 16 C s - - Vector 20 Occ=2.000000D+00 E=-6.443395D-01 Symmetry=ag - MO Center= 5.2D-16, -2.2D-15, -3.1D-20, r^2= 9.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 49 0.213189 15 C px 54 -0.213189 16 C px - 57 0.184225 17 H s 58 0.184225 18 H s - 38 0.181663 11 C py 43 -0.181663 12 C py + 13 0.179653 3 C px 18 -0.179653 4 C px + 36 0.177733 11 C s 41 0.177733 12 C s + 33 0.172262 9 H s 34 0.172262 10 H s + 48 -0.164476 15 C s 53 -0.164476 16 C s + + Vector 20 Occ=2.000000D+00 E=-6.443392D-01 Symmetry=ag + MO Center= -1.1D-16, 3.1D-16, 5.0D-18, r^2= 9.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.213190 15 C px 54 -0.213190 16 C px + 57 0.184226 17 H s 58 0.184226 18 H s + 38 0.181662 11 C py 43 -0.181662 12 C py 45 -0.154937 13 H s 46 -0.154937 14 H s - - Vector 21 Occ=2.000000D+00 E=-6.199391D-01 Symmetry=bu - MO Center= -2.8D-16, 4.2D-15, -1.7D-21, r^2= 1.0D+01 + + Vector 21 Occ=2.000000D+00 E=-6.199387D-01 Symmetry=bu + MO Center= 1.5D-17, -2.1D-16, 5.3D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 0.220073 15 C py 55 0.220073 16 C py + 50 0.220074 15 C py 55 0.220074 16 C py 37 0.215033 11 C px 42 0.215033 12 C px 59 -0.191409 19 H s 60 0.191409 20 H s 14 0.187232 3 C py 19 0.187232 4 C py - 45 -0.152495 13 H s 46 0.152495 14 H s - - Vector 22 Occ=2.000000D+00 E=-5.793128D-01 Symmetry=bu - MO Center= -5.7D-16, 1.4D-15, 2.7D-32, r^2= 6.4D+00 + 45 -0.152494 13 H s 46 0.152494 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.793122D-01 Symmetry=bu + MO Center= -3.9D-16, -7.4D-16, 1.7D-18, r^2= 6.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.231893 7 H s 32 0.231893 8 H s - 33 0.229553 9 H s 34 -0.229553 10 H s - 13 -0.225890 3 C px 18 -0.225890 4 C px - 2 0.216460 1 C s 7 -0.216460 2 C s - 24 -0.182316 5 C py 29 -0.182316 6 C py - - Vector 23 Occ=2.000000D+00 E=-5.678307D-01 Symmetry=bu - MO Center= 4.0D-16, -3.2D-15, -1.8D-20, r^2= 8.2D+00 + 31 -0.231891 7 H s 32 0.231891 8 H s + 33 0.229552 9 H s 34 -0.229552 10 H s + 13 -0.225887 3 C px 18 -0.225887 4 C px + 2 0.216463 1 C s 7 -0.216463 2 C s + 24 -0.182315 5 C py 29 -0.182315 6 C py + + Vector 23 Occ=2.000000D+00 E=-5.678303D-01 Symmetry=bu + MO Center= -3.7D-16, -6.5D-16, 1.9D-19, r^2= 8.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.263823 5 C px 28 0.263823 6 C px + 23 0.263822 5 C px 28 0.263822 6 C px 49 0.239263 15 C px 54 0.239263 16 C px - 3 -0.212622 1 C px 8 -0.212622 2 C px - 57 0.208199 17 H s 58 -0.208199 18 H s - 38 0.165457 11 C py 43 0.165457 12 C py - - Vector 24 Occ=2.000000D+00 E=-5.671702D-01 Symmetry=ag - MO Center= -1.0D-16, 3.9D-16, -3.8D-18, r^2= 1.4D+01 + 3 -0.212620 1 C px 8 -0.212620 2 C px + 57 0.208200 17 H s 58 -0.208200 18 H s + 38 0.165458 11 C py 43 0.165458 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.671700D-01 Symmetry=ag + MO Center= -8.5D-17, 5.7D-18, 2.0D-33, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 0.338830 15 C py 55 -0.338830 16 C py + 50 0.338831 15 C py 55 -0.338831 16 C py 59 -0.264253 19 H s 60 -0.264253 20 H s - 37 0.251899 11 C px 42 -0.251899 12 C px - 45 -0.150249 13 H s 46 -0.150249 14 H s - - Vector 25 Occ=2.000000D+00 E=-5.353832D-01 Symmetry=bu - MO Center= -2.9D-16, -1.3D-16, -5.8D-23, r^2= 4.2D+00 + 37 0.251898 11 C px 42 -0.251898 12 C px + 45 -0.150250 13 H s 46 -0.150250 14 H s + + Vector 25 Occ=2.000000D+00 E=-5.353823D-01 Symmetry=bu + MO Center= -1.5D-15, 5.5D-16, 4.5D-33, r^2= 4.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.305392 3 C px 18 0.305392 4 C px - 31 0.255752 7 H s 32 -0.255752 8 H s - 24 -0.226927 5 C py 29 -0.226927 6 C py - 33 0.221334 9 H s 34 -0.221334 10 H s - 23 0.190030 5 C px 28 0.190030 6 C px - - Vector 26 Occ=2.000000D+00 E=-5.109596D-01 Symmetry=bu - MO Center= 3.4D-16, -5.5D-16, 5.2D-33, r^2= 8.7D+00 + 13 0.305394 3 C px 18 0.305394 4 C px + 31 0.255751 7 H s 32 -0.255751 8 H s + 24 -0.226924 5 C py 29 -0.226924 6 C py + 33 0.221333 9 H s 34 -0.221333 10 H s + 23 0.190033 5 C px 28 0.190033 6 C px + + Vector 26 Occ=2.000000D+00 E=-5.109593D-01 Symmetry=bu + MO Center= 3.6D-16, -3.6D-16, 3.3D-21, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.238524 15 C py 55 -0.238524 16 C py - 14 0.224088 3 C py 19 0.224088 4 C py - 37 -0.211444 11 C px 42 -0.211444 12 C px - 38 0.189320 11 C py 43 0.189320 12 C py - 24 -0.187933 5 C py 29 -0.187933 6 C py - - Vector 27 Occ=2.000000D+00 E=-4.999297D-01 Symmetry=ag - MO Center= 1.3D-16, -3.3D-16, 1.5D-18, r^2= 1.2D+01 + 14 0.224090 3 C py 19 0.224090 4 C py + 37 -0.211446 11 C px 42 -0.211446 12 C px + 38 0.189318 11 C py 43 0.189318 12 C py + 24 -0.187936 5 C py 29 -0.187936 6 C py + + Vector 27 Occ=2.000000D+00 E=-4.999291D-01 Symmetry=ag + MO Center= -3.9D-17, 2.1D-16, -1.9D-32, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.295482 15 C px 54 -0.295482 16 C px - 57 0.266196 17 H s 58 0.266196 18 H s + 49 0.295481 15 C px 54 -0.295481 16 C px + 57 0.266195 17 H s 58 0.266195 18 H s 37 -0.207571 11 C px 42 0.207571 12 C px - 45 0.202724 13 H s 46 0.202724 14 H s - 31 -0.157616 7 H s 32 -0.157616 8 H s - - Vector 28 Occ=2.000000D+00 E=-4.825208D-01 Symmetry=au - MO Center= -9.0D-16, 3.0D-15, -7.2D-17, r^2= 3.4D+00 + 45 0.202723 13 H s 46 0.202723 14 H s + 31 -0.157618 7 H s 32 -0.157618 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.825205D-01 Symmetry=au + MO Center= -3.0D-17, 1.3D-16, -1.9D-18, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.327346 1 C pz 10 0.327346 2 C pz 15 0.301133 3 C pz 20 0.301133 4 C pz 25 0.300387 5 C pz 30 0.300387 6 C pz 39 0.158733 11 C pz 44 0.158733 12 C pz - - Vector 29 Occ=2.000000D+00 E=-4.498210D-01 Symmetry=bu - MO Center= -6.2D-17, 1.8D-17, -6.6D-34, r^2= 1.2D+01 + + Vector 29 Occ=2.000000D+00 E=-4.498212D-01 Symmetry=bu + MO Center= 1.9D-16, -2.4D-16, -8.2D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.255797 13 H s 46 -0.255797 14 H s - 4 0.249019 1 C py 9 0.249019 2 C py - 57 0.228911 17 H s 58 -0.228911 18 H s - 59 -0.219991 19 H s 60 0.219991 20 H s - 37 -0.213165 11 C px 42 -0.213165 12 C px - - Vector 30 Occ=2.000000D+00 E=-4.271945D-01 Symmetry=ag - MO Center= 6.5D-17, -7.5D-19, -7.1D-17, r^2= 4.9D+00 + 45 0.255796 13 H s 46 -0.255796 14 H s + 4 0.249021 1 C py 9 0.249021 2 C py + 57 0.228910 17 H s 58 -0.228910 18 H s + 59 -0.219992 19 H s 60 0.219992 20 H s + 37 -0.213163 11 C px 42 -0.213163 12 C px + + Vector 30 Occ=2.000000D+00 E=-4.271955D-01 Symmetry=ag + MO Center= 9.5D-16, 2.4D-17, 5.1D-18, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.283128 9 H s 34 0.283128 10 H s - 3 0.246822 1 C px 8 -0.246822 2 C px - 13 -0.223075 3 C px 14 0.223835 3 C py - 18 0.223075 4 C px 19 -0.223835 4 C py - 4 -0.206634 1 C py 9 0.206634 2 C py - - Vector 31 Occ=2.000000D+00 E=-4.196940D-01 Symmetry=ag - MO Center= -8.9D-18, 4.2D-17, 1.5D-16, r^2= 7.1D+00 + 33 0.283130 9 H s 34 0.283130 10 H s + 3 0.246825 1 C px 8 -0.246825 2 C px + 13 -0.223077 3 C px 14 0.223833 3 C py + 18 0.223077 4 C px 19 -0.223833 4 C py + 4 -0.206631 1 C py 9 0.206631 2 C py + + Vector 31 Occ=2.000000D+00 E=-4.196949D-01 Symmetry=ag + MO Center= 4.2D-17, -1.9D-16, 5.4D-19, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.221801 7 H s 32 -0.221801 8 H s - 23 0.214887 5 C px 28 -0.214887 6 C px - 3 0.211639 1 C px 8 -0.211639 2 C px - 38 0.211263 11 C py 43 -0.211263 12 C py - 4 0.207379 1 C py 9 -0.207379 2 C py - - Vector 32 Occ=2.000000D+00 E=-3.918083D-01 Symmetry=bg - MO Center= -3.0D-16, -2.8D-15, 8.6D-21, r^2= 8.5D+00 + 31 -0.221798 7 H s 32 -0.221798 8 H s + 23 0.214883 5 C px 28 -0.214883 6 C px + 3 0.211634 1 C px 8 -0.211634 2 C px + 38 0.211266 11 C py 43 -0.211266 12 C py + 4 0.207382 1 C py 9 -0.207382 2 C py + + Vector 32 Occ=2.000000D+00 E=-3.918082D-01 Symmetry=bg + MO Center= -2.8D-17, 0.0D+00, 2.5D-18, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.382322 11 C pz 44 -0.382322 12 C pz 51 0.312795 15 C pz 56 -0.312795 16 C pz - 5 -0.307788 1 C pz 10 0.307788 2 C pz - + 5 -0.307787 1 C pz 10 0.307787 2 C pz + Vector 33 Occ=2.000000D+00 E=-3.326113D-01 Symmetry=au - MO Center= -2.8D-16, 9.6D-17, -7.9D-17, r^2= 1.1D+01 + MO Center= -6.2D-18, -4.4D-18, -4.4D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.425147 15 C pz 56 0.425147 16 C pz 39 0.413865 11 C pz 44 0.413865 12 C pz 15 -0.158101 3 C pz 20 -0.158101 4 C pz 25 -0.158298 5 C pz 30 -0.158298 6 C pz - - Vector 34 Occ=2.000000D+00 E=-2.888757D-01 Symmetry=bg - MO Center= 1.4D-15, -2.4D-16, -2.6D-20, r^2= 2.6D+00 + + Vector 34 Occ=2.000000D+00 E=-2.888756D-01 Symmetry=bg + MO Center= 1.2D-17, -9.8D-18, -3.4D-19, r^2= 2.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.458389 3 C pz 20 -0.458389 4 C pz 25 0.460584 5 C pz 30 -0.460584 6 C pz - - Vector 35 Occ=2.000000D+00 E=-2.369263D-01 Symmetry=bg - MO Center= 2.7D-17, 1.5D-16, 8.4D-20, r^2= 6.7D+00 + + Vector 35 Occ=2.000000D+00 E=-2.369262D-01 Symmetry=bg + MO Center= 3.8D-18, -3.7D-18, -4.9D-19, r^2= 6.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.423794 1 C pz 10 -0.423794 2 C pz @@ -1629,9 +1653,9 @@ Divinylbenzene in STO-3G basis set 15 0.234718 3 C pz 20 -0.234718 4 C pz 25 -0.232696 5 C pz 30 0.232696 6 C pz 39 0.213480 11 C pz 44 -0.213480 12 C pz - - Vector 36 Occ=0.000000D+00 E= 2.093709D-01 Symmetry=au - MO Center= 7.8D-17, -4.6D-16, 1.7D-18, r^2= 6.9D+00 + + Vector 36 Occ=0.000000D+00 E= 2.093710D-01 Symmetry=au + MO Center= -6.2D-18, -2.9D-17, -1.7D-17, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.484082 1 C pz 10 0.484082 2 C pz @@ -1639,93 +1663,93 @@ Divinylbenzene in STO-3G basis set 25 -0.287531 5 C pz 30 -0.287531 6 C pz 15 -0.250347 3 C pz 20 -0.250347 4 C pz 39 0.247928 11 C pz 44 0.247928 12 C pz - + Vector 37 Occ=0.000000D+00 E= 2.756091D-01 Symmetry=au - MO Center= 9.7D-17, 7.1D-17, 1.4D-17, r^2= 2.6D+00 + MO Center= 1.9D-17, -8.5D-18, -6.4D-18, r^2= 2.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.586151 3 C pz 20 0.586151 4 C pz - 25 -0.560438 5 C pz 30 -0.560438 6 C pz - + 25 -0.560437 5 C pz 30 -0.560437 6 C pz + Vector 38 Occ=0.000000D+00 E= 3.235711D-01 Symmetry=bg - MO Center= 1.3D-16, 4.3D-16, 3.7D-20, r^2= 1.1D+01 + MO Center= 1.2D-17, -5.5D-17, 1.5D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 -0.540075 15 C pz 56 0.540075 16 C pz + 51 -0.540074 15 C pz 56 0.540074 16 C pz 39 0.534050 11 C pz 44 -0.534050 12 C pz 15 0.222855 3 C pz 20 -0.222855 4 C pz 25 -0.216781 5 C pz 30 0.216781 6 C pz - + Vector 39 Occ=0.000000D+00 E= 4.108093D-01 Symmetry=au - MO Center= -7.2D-16, -7.5D-15, 1.1D-15, r^2= 8.4D+00 + MO Center= 4.0D-18, -7.8D-18, -2.4D-16, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.543406 11 C pz 44 0.543406 12 C pz 5 -0.470017 1 C pz 10 -0.470017 2 C pz 51 -0.421994 15 C pz 56 -0.421994 16 C pz - 25 0.189104 5 C pz 30 0.189104 6 C pz + 25 0.189103 5 C pz 30 0.189103 6 C pz 15 0.160155 3 C pz 20 0.160155 4 C pz - + Vector 40 Occ=0.000000D+00 E= 5.436774D-01 Symmetry=bg - MO Center= 6.9D-16, 6.7D-15, -6.2D-20, r^2= 3.7D+00 + MO Center= -1.5D-16, -5.4D-17, -3.9D-18, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.547533 1 C pz 10 -0.547533 2 C pz - 25 0.481660 5 C pz 30 -0.481660 6 C pz + 25 0.481659 5 C pz 30 -0.481659 6 C pz 15 -0.479259 3 C pz 20 0.479259 4 C pz 39 0.276511 11 C pz 44 -0.276511 12 C pz 51 -0.160420 15 C pz 56 0.160420 16 C pz - - Vector 41 Occ=0.000000D+00 E= 5.712926D-01 Symmetry=ag - MO Center= 1.1D-15, -1.9D-16, -3.3D-16, r^2= 8.6D+00 + + Vector 41 Occ=0.000000D+00 E= 5.712954D-01 Symmetry=ag + MO Center= 2.1D-15, -6.9D-15, 2.3D-18, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.419272 7 H s 32 -0.419272 8 H s - 33 -0.414198 9 H s 34 -0.414198 10 H s - 2 0.403076 1 C s 7 0.403076 2 C s - 38 -0.355068 11 C py 43 0.355068 12 C py - 59 -0.353228 19 H s 60 -0.353228 20 H s - - Vector 42 Occ=0.000000D+00 E= 5.854640D-01 Symmetry=bu - MO Center= -6.6D-16, -1.2D-15, 3.5D-22, r^2= 1.0D+01 + 31 -0.419261 7 H s 32 -0.419261 8 H s + 33 -0.414182 9 H s 34 -0.414182 10 H s + 2 0.403086 1 C s 7 0.403086 2 C s + 38 -0.355076 11 C py 43 0.355076 12 C py + 59 -0.353224 19 H s 60 -0.353224 20 H s + + Vector 42 Occ=0.000000D+00 E= 5.854633D-01 Symmetry=bu + MO Center= 3.3D-16, 9.9D-16, 4.4D-21, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.434972 13 H s 46 -0.434972 14 H s - 37 0.355507 11 C px 42 0.355507 12 C px - 13 0.340120 3 C px 18 0.340120 4 C px - 57 -0.339289 17 H s 58 0.339289 18 H s + 45 0.434963 13 H s 46 -0.434963 14 H s + 37 0.355509 11 C px 42 0.355509 12 C px + 13 0.340128 3 C px 18 0.340128 4 C px + 57 -0.339277 17 H s 58 0.339277 18 H s 59 0.324263 19 H s 60 -0.324263 20 H s - - Vector 43 Occ=0.000000D+00 E= 6.360495D-01 Symmetry=bu - MO Center= -4.0D-17, 2.2D-16, 5.9D-22, r^2= 6.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.523666 11 C s 41 -0.523666 12 C s - 33 0.469322 9 H s 34 -0.469322 10 H s - 4 0.459172 1 C py 9 0.459172 2 C py - 24 0.330903 5 C py 29 0.330903 6 C py - 38 0.329904 11 C py 43 0.329904 12 C py - - Vector 44 Occ=0.000000D+00 E= 6.401707D-01 Symmetry=ag - MO Center= 4.0D-17, 3.8D-17, 3.0D-16, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.590067 13 H s 46 0.590067 14 H s - 36 -0.414451 11 C s 41 -0.414451 12 C s - 12 0.387079 3 C s 17 0.387079 4 C s - 57 -0.382111 17 H s 58 -0.382111 18 H s - 37 0.341849 11 C px 42 -0.341849 12 C px - + + Vector 43 Occ=0.000000D+00 E= 6.360470D-01 Symmetry=bu + MO Center= -2.7D-15, 6.3D-15, 6.7D-22, r^2= 6.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.523629 11 C s 41 -0.523629 12 C s + 33 0.469341 9 H s 34 -0.469341 10 H s + 4 0.459158 1 C py 9 0.459158 2 C py + 24 0.330909 5 C py 29 0.330909 6 C py + 38 0.329900 11 C py 43 0.329900 12 C py + + Vector 44 Occ=0.000000D+00 E= 6.401696D-01 Symmetry=ag + MO Center= 1.9D-16, 1.4D-16, -6.1D-20, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.590073 13 H s 46 0.590073 14 H s + 36 -0.414477 11 C s 41 -0.414477 12 C s + 12 0.387070 3 C s 17 0.387070 4 C s + 57 -0.382092 17 H s 58 -0.382092 18 H s + 37 0.341848 11 C px 42 -0.341848 12 C px + Vector 45 Occ=0.000000D+00 E= 6.892918D-01 Symmetry=ag - MO Center= 1.1D-16, -2.1D-16, -1.4D-18, r^2= 1.2D+01 + MO Center= -4.1D-15, 2.4D-14, -1.5D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.725339 15 C s 53 0.725339 16 C s - 22 0.571384 5 C s 27 0.571384 6 C s - 57 -0.568653 17 H s 58 -0.568653 18 H s - 12 -0.386357 3 C s 17 -0.386357 4 C s - 59 -0.382897 19 H s 60 -0.382897 20 H s - + 48 0.725345 15 C s 53 0.725345 16 C s + 22 0.571387 5 C s 27 0.571387 6 C s + 57 -0.568657 17 H s 58 -0.568657 18 H s + 12 -0.386330 3 C s 17 -0.386330 4 C s + 59 -0.382906 19 H s 60 -0.382906 20 H s + center of mass -------------- @@ -1733,10 +1757,10 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2550.711185501807 -3.560028643940 0.000000000000 - -3.560028643940 370.755188448993 0.000000000000 - 0.000000000000 0.000000000000 2921.466373950800 - + 2550.714209074685 -3.559875765354 0.000000000000 + -3.559875765354 370.755023622541 0.000000000000 + 0.000000000000 0.000000000000 2921.469232697226 + Mulliken analysis of the total density -------------------------------------- @@ -1762,100 +1786,103 @@ Divinylbenzene in STO-3G basis set 18 H 1 0.94 0.94 19 H 1 0.93 0.93 20 H 1 0.93 0.93 - + Multipole analysis of the density wrt the origin ------------------------------------------------ - + L x y z total open nuclear - - - - ----- ---- ------- 0 0 0 0 -0.000000 0.000000 70.000000 - + 1 1 0 0 0.000000 0.000000 0.000000 - 1 0 1 0 0.000000 0.000000 0.000000 - 1 0 0 1 0.000000 0.000000 0.000000 - - 2 2 0 0 -38.561854 0.000000 232.574834 - 2 1 1 0 0.160634 0.000000 -3.149186 - 2 1 0 1 0.000000 0.000000 0.000000 - 2 0 2 0 -39.205452 0.000000 1450.711174 + 1 0 1 0 -0.000000 0.000000 0.000000 + 1 0 0 1 -0.000000 0.000000 0.000000 + + 2 2 0 0 -38.561828 0.000000 232.574759 + 2 1 1 0 0.160630 0.000000 -3.149223 + 2 1 0 1 -0.000000 0.000000 0.000000 + 2 0 2 0 -39.205441 0.000000 1450.712898 2 0 1 1 -0.000000 0.000000 0.000000 - 2 0 0 2 -43.390246 0.000000 0.000000 + 2 0 0 2 -43.390250 0.000000 0.000000 + + + Parallel integral file used 11 records with 0 large values Line search: step= 1.00 grad=-2.5D-02 hess= 1.7D-02 energy= -379.776275 mode=downhill new step= 0.71 predicted energy= -379.777719 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 -------- Step 1 -------- - - + + Geometry "geometry" -> "geometry" --------------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.22724212 1.39423379 0.00000000 - 2 C 6.0000 -0.22724212 -1.39423379 0.00000000 - 3 C 6.0000 1.29011111 0.48657429 0.00000000 - 4 C 6.0000 -1.29011111 -0.48657429 0.00000000 - 5 C 6.0000 1.07074587 -0.87712099 0.00000000 - 6 C 6.0000 -1.07074587 0.87712099 0.00000000 - 7 H 1.0000 2.30553753 0.86382357 0.00000000 - 8 H 1.0000 -2.30553753 -0.86382357 0.00000000 - 9 H 1.0000 1.91687888 -1.55112887 0.00000000 - 10 H 1.0000 -1.91687888 1.55112887 0.00000000 - 11 C 6.0000 -0.52266494 -2.85838677 0.00000000 - 12 C 6.0000 0.52266494 2.85838677 0.00000000 - 13 H 1.0000 -1.57920488 -3.10489919 0.00000000 - 14 H 1.0000 1.57920488 3.10489919 0.00000000 - 15 C 6.0000 0.35138387 -3.83631831 0.00000000 - 16 C 6.0000 -0.35138387 3.83631831 0.00000000 - 17 H 1.0000 1.41873487 -3.66697441 0.00000000 - 18 H 1.0000 -1.41873487 3.66697441 0.00000000 - 19 H 1.0000 0.03422431 -4.87021143 0.00000000 - 20 H 1.0000 -0.03422431 4.87021143 0.00000000 - + 1 C 6.0000 0.22724160 1.39423547 0.00000000 + 2 C 6.0000 -0.22724160 -1.39423547 0.00000000 + 3 C 6.0000 1.29011222 0.48657547 0.00000000 + 4 C 6.0000 -1.29011222 -0.48657547 0.00000000 + 5 C 6.0000 1.07074764 -0.87712132 0.00000000 + 6 C 6.0000 -1.07074764 0.87712132 0.00000000 + 7 H 1.0000 2.30553944 0.86382557 0.00000000 + 8 H 1.0000 -2.30553944 -0.86382557 0.00000000 + 9 H 1.0000 1.91688216 -1.55112898 0.00000000 + 10 H 1.0000 -1.91688216 1.55112898 0.00000000 + 11 C 6.0000 -0.52266455 -2.85838895 0.00000000 + 12 C 6.0000 0.52266455 2.85838895 0.00000000 + 13 H 1.0000 -1.57920566 -3.10490067 0.00000000 + 14 H 1.0000 1.57920566 3.10490067 0.00000000 + 15 C 6.0000 0.35138416 -3.83632320 0.00000000 + 16 C 6.0000 -0.35138416 3.83632320 0.00000000 + 17 H 1.0000 1.41873631 -3.66698090 0.00000000 + 18 H 1.0000 -1.41873631 3.66698090 0.00000000 + 19 H 1.0000 0.03422255 -4.87021677 0.00000000 + 20 H 1.0000 -0.03422255 4.87021677 0.00000000 + Atomic Mass ----------- - + C 12.000000 H 1.007825 + - - Effective nuclear repulsion energy (a.u.) 452.2059055972 + Effective nuclear repulsion energy (a.u.) 452.2054316935 Nuclear Dipole moment (a.u.) ---------------------------- X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - + NWChem SCF Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + ao basis = "ao basis" functions = 60 @@ -1880,30 +1907,30 @@ Divinylbenzene in STO-3G basis set Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 + - - Forming initial guess at 7.4s + Forming initial guess at 1.6s Loading old vectors from job with title : Divinylbenzene in STO-3G basis set - + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -1913,9 +1940,9 @@ Divinylbenzene in STO-3G basis set 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag + - - Starting SCF solution at 7.4s + Starting SCF solution at 1.6s @@ -1928,34 +1955,46 @@ Divinylbenzene in STO-3G basis set ---------------------------------------------- - iter energy gnorm gmax time - ----- ------------------- --------- --------- -------- - 1 -379.7777477805 3.88D-02 7.83D-03 7.7 - 2 -379.7778710253 1.39D-03 4.68D-04 8.7 - 3 -379.7778712095 3.65D-06 1.11D-06 10.3 + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507878 + No. of bits per label = 8 No. of bits per value = 64 - Final RHF results - ------------------ + #quartets = 1.173D+05 #integrals = 3.524D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 + + + iter energy gnorm gmax time + ----- ------------------- --------- --------- -------- + 1 -379.7777487685 3.88D-02 7.83D-03 1.7 + 2 -379.7778715357 1.39D-03 4.68D-04 1.8 + 3 -379.7778717199 3.65D-06 1.11D-06 1.9 + - Total SCF energy = -379.777871209459 - One-electron energy = -1412.319544119199 - Two-electron energy = 580.335767312527 - Nuclear repulsion energy = 452.205905597213 + Final RHF results + ------------------ - Time for solution = 2.9s + Total SCF energy = -379.777871719883 + One-electron energy = -1412.318633973913 + Two-electron energy = 580.335330560564 + Nuclear repulsion energy = 452.205431693467 + Time for solution = 0.4s + Symmetry analysis of molecular orbitals - final ----------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -1965,7 +2004,7 @@ Divinylbenzene in STO-3G basis set 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag - + Final eigenvalues ----------------- @@ -2015,230 +2054,230 @@ Divinylbenzene in STO-3G basis set 43 0.6331 44 0.6348 45 0.6804 - + ROHF Final Molecular Orbital Analysis ------------------------------------- - - Vector 11 Occ=2.000000D+00 E=-1.106227D+00 Symmetry=ag - MO Center= -2.4D-17, -1.0D-16, 4.3D-19, r^2= 2.9D+00 + + Vector 11 Occ=2.000000D+00 E=-1.106226D+00 Symmetry=ag + MO Center= 4.9D-17, -1.0D-17, -1.5D-20, r^2= 2.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.270995 1 C s 7 0.270995 2 C s 12 0.245481 3 C s 17 0.245481 4 C s - 22 0.245387 5 C s 27 0.245387 6 C s - - Vector 12 Occ=2.000000D+00 E=-1.032339D+00 Symmetry=bu - MO Center= -9.0D-18, -3.9D-17, 9.5D-22, r^2= 8.0D+00 + 22 0.245388 5 C s 27 0.245388 6 C s + + Vector 12 Occ=2.000000D+00 E=-1.032338D+00 Symmetry=bu + MO Center= -1.7D-17, -1.7D-16, 3.2D-35, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.296163 11 C s 41 -0.296163 12 C s + 36 0.296164 11 C s 41 -0.296164 12 C s 2 -0.263009 1 C s 7 0.263009 2 C s 48 0.217380 15 C s 53 -0.217380 16 C s - - Vector 13 Occ=2.000000D+00 E=-9.892696D-01 Symmetry=ag - MO Center= 7.9D-17, 5.0D-16, 9.4D-35, r^2= 1.1D+01 + + Vector 13 Occ=2.000000D+00 E=-9.892685D-01 Symmetry=ag + MO Center= -1.6D-17, -4.5D-16, 1.4D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.312254 11 C s 41 0.312254 12 C s - 48 0.308630 15 C s 53 0.308630 16 C s - - Vector 14 Occ=2.000000D+00 E=-9.608188D-01 Symmetry=bu - MO Center= -1.2D-16, 1.0D-16, -8.6D-21, r^2= 3.0D+00 + 48 0.308631 15 C s 53 0.308631 16 C s + + Vector 14 Occ=2.000000D+00 E=-9.608178D-01 Symmetry=bu + MO Center= 7.2D-16, -1.7D-16, 2.3D-19, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.354518 3 C s 17 -0.354518 4 C s - 22 0.320669 5 C s 27 -0.320669 6 C s - - Vector 15 Occ=2.000000D+00 E=-9.225795D-01 Symmetry=bu - MO Center= -4.3D-17, -7.9D-17, -9.7D-22, r^2= 8.4D+00 + 22 0.320668 5 C s 27 -0.320668 6 C s + + Vector 15 Occ=2.000000D+00 E=-9.225777D-01 Symmetry=bu + MO Center= 1.2D-17, 4.3D-16, -1.4D-20, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.281536 1 C s 7 -0.281536 2 C s - 48 0.281413 15 C s 53 -0.281413 16 C s - 22 -0.201827 5 C s 27 0.201827 6 C s - - Vector 16 Occ=2.000000D+00 E=-8.063743D-01 Symmetry=ag - MO Center= -3.5D-17, -3.0D-16, -7.2D-19, r^2= 7.9D+00 + 2 0.281535 1 C s 7 -0.281535 2 C s + 48 0.281414 15 C s 53 -0.281414 16 C s + 22 -0.201829 5 C s 27 0.201829 6 C s + + Vector 16 Occ=2.000000D+00 E=-8.063744D-01 Symmetry=ag + MO Center= -1.6D-16, -2.3D-17, -3.0D-18, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.233387 5 C s 27 0.233387 6 C s - 48 0.226408 15 C s 53 0.226408 16 C s - 2 -0.208445 1 C s 7 -0.208445 2 C s - 14 -0.166985 3 C py 19 0.166985 4 C py + 22 0.233388 5 C s 27 0.233388 6 C s + 48 0.226406 15 C s 53 0.226406 16 C s + 2 -0.208443 1 C s 7 -0.208443 2 C s + 14 -0.166984 3 C py 19 0.166984 4 C py 36 -0.155999 11 C s 41 -0.155999 12 C s - - Vector 17 Occ=2.000000D+00 E=-7.710208D-01 Symmetry=ag - MO Center= 1.0D-16, -1.1D-16, 2.1D-18, r^2= 4.9D+00 + + Vector 17 Occ=2.000000D+00 E=-7.710203D-01 Symmetry=ag + MO Center= -3.6D-16, -2.6D-16, 2.6D-20, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.319443 3 C s 17 0.319443 4 C s - 3 0.188980 1 C px 8 -0.188980 2 C px + 3 0.188978 1 C px 8 -0.188978 2 C px 24 0.174403 5 C py 29 -0.174403 6 C py - 31 0.171987 7 H s 32 0.171987 8 H s - 22 -0.165449 5 C s 27 -0.165449 6 C s - - Vector 18 Occ=2.000000D+00 E=-7.324314D-01 Symmetry=bu - MO Center= -6.8D-17, -1.5D-16, -1.8D-35, r^2= 1.2D+01 + 31 0.171988 7 H s 32 0.171988 8 H s + 22 -0.165447 5 C s 27 -0.165447 6 C s + + Vector 18 Occ=2.000000D+00 E=-7.324310D-01 Symmetry=bu + MO Center= 5.6D-17, -1.5D-16, -1.7D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.292981 11 C s 41 -0.292981 12 C s - 48 -0.246845 15 C s 53 0.246845 16 C s - 45 0.177337 13 H s 46 -0.177337 14 H s + 48 -0.246846 15 C s 53 0.246846 16 C s + 45 0.177338 13 H s 46 -0.177338 14 H s 57 -0.166598 17 H s 58 0.166598 18 H s - - Vector 19 Occ=2.000000D+00 E=-7.064189D-01 Symmetry=ag - MO Center= 1.0D-16, 1.0D-16, -1.6D-33, r^2= 7.7D+00 + + Vector 19 Occ=2.000000D+00 E=-7.064182D-01 Symmetry=ag + MO Center= -1.8D-16, 7.6D-17, 1.2D-20, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.195763 5 C px 28 -0.195763 6 C px 36 0.180607 11 C s 41 0.180607 12 C s - 13 0.178096 3 C px 18 -0.178096 4 C px - 33 0.171302 9 H s 34 0.171302 10 H s - 48 -0.163750 15 C s 53 -0.163750 16 C s - - Vector 20 Occ=2.000000D+00 E=-6.395863D-01 Symmetry=ag - MO Center= 5.2D-16, -1.8D-15, 1.9D-18, r^2= 9.3D+00 + 13 0.178097 3 C px 18 -0.178097 4 C px + 33 0.171303 9 H s 34 0.171303 10 H s + 48 -0.163749 15 C s 53 -0.163749 16 C s + + Vector 20 Occ=2.000000D+00 E=-6.395852D-01 Symmetry=ag + MO Center= -2.9D-17, -5.0D-17, -3.2D-34, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.210673 15 C px 54 -0.210673 16 C px - 38 0.182258 11 C py 43 -0.182258 12 C py + 49 0.210674 15 C px 54 -0.210674 16 C px + 38 0.182256 11 C py 43 -0.182256 12 C py 57 0.182599 17 H s 58 0.182599 18 H s 45 -0.154203 13 H s 46 -0.154203 14 H s - - Vector 21 Occ=2.000000D+00 E=-6.156868D-01 Symmetry=bu - MO Center= -2.6D-16, 4.0D-15, -1.2D-21, r^2= 1.0D+01 + + Vector 21 Occ=2.000000D+00 E=-6.156857D-01 Symmetry=bu + MO Center= 9.9D-17, -1.1D-16, 4.0D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.215420 11 C px 42 0.215420 12 C px - 50 0.215553 15 C py 55 0.215553 16 C py + 50 0.215554 15 C py 55 0.215554 16 C py 59 -0.188564 19 H s 60 0.188564 20 H s 14 0.186158 3 C py 19 0.186158 4 C py - 45 -0.156253 13 H s 46 0.156253 14 H s - - Vector 22 Occ=2.000000D+00 E=-5.775014D-01 Symmetry=bu - MO Center= -3.0D-16, 1.2D-15, 3.6D-32, r^2= 6.6D+00 + 45 -0.156252 13 H s 46 0.156252 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.775006D-01 Symmetry=bu + MO Center= -1.2D-16, 5.3D-17, 2.0D-18, r^2= 6.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.233616 9 H s 34 -0.233616 10 H s - 31 -0.232006 7 H s 32 0.232006 8 H s - 13 -0.225375 3 C px 18 -0.225375 4 C px - 2 0.220516 1 C s 7 -0.220516 2 C s - 24 -0.180350 5 C py 29 -0.180350 6 C py - - Vector 23 Occ=2.000000D+00 E=-5.636939D-01 Symmetry=bu - MO Center= 3.7D-16, -3.1D-15, -3.6D-20, r^2= 8.5D+00 + 33 0.233617 9 H s 34 -0.233617 10 H s + 31 -0.232005 7 H s 32 0.232005 8 H s + 13 -0.225373 3 C px 18 -0.225373 4 C px + 2 0.220521 1 C s 7 -0.220521 2 C s + 24 -0.180347 5 C py 29 -0.180347 6 C py + + Vector 23 Occ=2.000000D+00 E=-5.636932D-01 Symmetry=bu + MO Center= -9.8D-18, -6.2D-17, 4.9D-35, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.258031 5 C px 28 0.258031 6 C px - 49 0.244950 15 C px 54 0.244950 16 C px + 23 0.258028 5 C px 28 0.258028 6 C px + 49 0.244952 15 C px 54 0.244952 16 C px 3 -0.216816 1 C px 8 -0.216816 2 C px - 57 0.213753 17 H s 58 -0.213753 18 H s - 38 0.171610 11 C py 43 0.171610 12 C py - - Vector 24 Occ=2.000000D+00 E=-5.630748D-01 Symmetry=ag - MO Center= 2.8D-17, -7.0D-17, 4.4D-19, r^2= 1.4D+01 + 57 0.213755 17 H s 58 -0.213755 18 H s + 38 0.171613 11 C py 43 0.171613 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.630739D-01 Symmetry=ag + MO Center= -1.1D-16, 2.7D-16, -1.3D-19, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.338025 15 C py 55 -0.338025 16 C py 59 -0.265422 19 H s 60 -0.265422 20 H s 37 0.251183 11 C px 42 -0.251183 12 C px - 45 -0.150766 13 H s 46 -0.150766 14 H s - - Vector 25 Occ=2.000000D+00 E=-5.324688D-01 Symmetry=bu - MO Center= -7.5D-17, 1.8D-17, -1.8D-22, r^2= 4.3D+00 + 45 -0.150767 13 H s 46 -0.150767 14 H s + + Vector 25 Occ=2.000000D+00 E=-5.324677D-01 Symmetry=bu + MO Center= 7.1D-17, -4.5D-17, 8.5D-22, r^2= 4.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.303546 3 C px 18 0.303546 4 C px + 13 0.303547 3 C px 18 0.303547 4 C px 31 0.256564 7 H s 32 -0.256564 8 H s - 24 -0.228789 5 C py 29 -0.228789 6 C py + 24 -0.228788 5 C py 29 -0.228788 6 C py 33 0.222170 9 H s 34 -0.222170 10 H s - 23 0.186972 5 C px 28 0.186972 6 C px - - Vector 26 Occ=2.000000D+00 E=-5.068223D-01 Symmetry=bu - MO Center= 2.7D-16, -1.5D-16, 3.3D-22, r^2= 8.7D+00 + 23 0.186973 5 C px 28 0.186973 6 C px + + Vector 26 Occ=2.000000D+00 E=-5.068215D-01 Symmetry=bu + MO Center= 2.1D-17, -1.7D-16, 8.2D-21, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.238517 15 C py 55 -0.238517 16 C py - 14 0.223705 3 C py 19 0.223705 4 C py + 14 0.223706 3 C py 19 0.223706 4 C py 37 -0.208903 11 C px 42 -0.208903 12 C px - 38 0.188880 11 C py 43 0.188880 12 C py - 24 -0.186988 5 C py 29 -0.186988 6 C py - - Vector 27 Occ=2.000000D+00 E=-4.977772D-01 Symmetry=ag - MO Center= -4.7D-17, -1.9D-17, 1.4D-18, r^2= 1.2D+01 + 38 0.188878 11 C py 43 0.188878 12 C py + 24 -0.186989 5 C py 29 -0.186989 6 C py + + Vector 27 Occ=2.000000D+00 E=-4.977764D-01 Symmetry=ag + MO Center= -1.5D-17, 4.7D-17, -3.5D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.295695 15 C px 54 -0.295695 16 C px - 57 0.268294 17 H s 58 0.268294 18 H s - 37 -0.207950 11 C px 42 0.207950 12 C px + 49 0.295694 15 C px 54 -0.295694 16 C px + 57 0.268293 17 H s 58 0.268293 18 H s + 37 -0.207951 11 C px 42 0.207951 12 C px 45 0.202679 13 H s 46 0.202679 14 H s - 31 -0.157463 7 H s 32 -0.157463 8 H s - - Vector 28 Occ=2.000000D+00 E=-4.769914D-01 Symmetry=au - MO Center= -9.2D-18, 7.8D-18, -1.0D-17, r^2= 3.5D+00 + 31 -0.157464 7 H s 32 -0.157464 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.769904D-01 Symmetry=au + MO Center= -2.9D-17, 8.9D-17, -1.6D-18, r^2= 3.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.328557 1 C pz 10 0.328557 2 C pz 15 0.301650 3 C pz 20 0.301650 4 C pz - 25 0.300845 5 C pz 30 0.300845 6 C pz - 39 0.160685 11 C pz 44 0.160685 12 C pz - - Vector 29 Occ=2.000000D+00 E=-4.488972D-01 Symmetry=bu - MO Center= -2.4D-16, -7.3D-17, -7.0D-34, r^2= 1.2D+01 + 25 0.300846 5 C pz 30 0.300846 6 C pz + 39 0.160686 11 C pz 44 0.160686 12 C pz + + Vector 29 Occ=2.000000D+00 E=-4.488973D-01 Symmetry=bu + MO Center= 1.0D-16, -2.2D-16, -7.9D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.256102 13 H s 46 -0.256102 14 H s - 4 0.247605 1 C py 9 0.247605 2 C py + 45 0.256101 13 H s 46 -0.256101 14 H s + 4 0.247607 1 C py 9 0.247607 2 C py 57 0.228180 17 H s 58 -0.228180 18 H s 59 -0.217854 19 H s 60 0.217854 20 H s - 37 -0.213414 11 C px 42 -0.213414 12 C px - - Vector 30 Occ=2.000000D+00 E=-4.255097D-01 Symmetry=ag - MO Center= 1.3D-17, 2.6D-16, 6.1D-21, r^2= 5.1D+00 + 37 -0.213413 11 C px 42 -0.213413 12 C px + + Vector 30 Occ=2.000000D+00 E=-4.255105D-01 Symmetry=ag + MO Center= 8.1D-16, 3.2D-17, 5.5D-18, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 33 0.278311 9 H s 34 0.278311 10 H s - 14 0.237232 3 C py 19 -0.237232 4 C py - 3 0.228159 1 C px 8 -0.228159 2 C px - 4 -0.222270 1 C py 9 0.222270 2 C py - 13 -0.208743 3 C px 18 0.208743 4 C px - - Vector 31 Occ=2.000000D+00 E=-4.187036D-01 Symmetry=ag - MO Center= -4.5D-17, -6.5D-17, 2.2D-18, r^2= 6.9D+00 + 14 0.237233 3 C py 19 -0.237233 4 C py + 3 0.228157 1 C px 8 -0.228157 2 C px + 4 -0.222272 1 C py 9 0.222272 2 C py + 13 -0.208741 3 C px 18 0.208741 4 C px + + Vector 31 Occ=2.000000D+00 E=-4.187042D-01 Symmetry=ag + MO Center= 1.1D-16, -5.6D-17, -1.0D-19, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 3 0.230873 1 C px 8 -0.230873 2 C px - 23 0.231132 5 C px 28 -0.231132 6 C px + 3 0.230874 1 C px 8 -0.230874 2 C px + 23 0.231133 5 C px 28 -0.231133 6 C px 31 -0.231743 7 H s 32 -0.231743 8 H s - 38 0.196128 11 C py 43 -0.196128 12 C py - 4 0.189666 1 C py 9 -0.189666 2 C py - - Vector 32 Occ=2.000000D+00 E=-3.874140D-01 Symmetry=bg - MO Center= -9.3D-19, -6.5D-18, 7.5D-21, r^2= 8.5D+00 + 38 0.196126 11 C py 43 -0.196126 12 C py + 4 0.189664 1 C py 9 -0.189664 2 C py + + Vector 32 Occ=2.000000D+00 E=-3.874132D-01 Symmetry=bg + MO Center= 0.0D+00, 0.0D+00, 4.3D-19, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.382566 11 C pz 44 -0.382566 12 C pz 5 -0.310990 1 C pz 10 0.310990 2 C pz 51 0.311041 15 C pz 56 -0.311041 16 C pz - - Vector 33 Occ=2.000000D+00 E=-3.274497D-01 Symmetry=au - MO Center= -2.1D-18, -9.6D-18, -5.7D-17, r^2= 1.1D+01 + + Vector 33 Occ=2.000000D+00 E=-3.274489D-01 Symmetry=au + MO Center= 1.9D-17, -1.9D-17, -3.6D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.425514 15 C pz 56 0.425514 16 C pz 39 0.414279 11 C pz 44 0.414279 12 C pz 15 -0.159924 3 C pz 20 -0.159924 4 C pz 25 -0.160186 5 C pz 30 -0.160186 6 C pz - - Vector 34 Occ=2.000000D+00 E=-2.857906D-01 Symmetry=bg - MO Center= 9.6D-17, 1.5D-17, -2.6D-20, r^2= 2.6D+00 + + Vector 34 Occ=2.000000D+00 E=-2.857900D-01 Symmetry=bg + MO Center= -6.5D-18, 5.2D-18, -3.2D-19, r^2= 2.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.458819 3 C pz 20 -0.458819 4 C pz - 25 0.460816 5 C pz 30 -0.460816 6 C pz - - Vector 35 Occ=2.000000D+00 E=-2.326025D-01 Symmetry=bg - MO Center= 1.9D-17, 1.4D-16, 1.1D-19, r^2= 6.8D+00 + 25 0.460817 5 C pz 30 -0.460817 6 C pz + + Vector 35 Occ=2.000000D+00 E=-2.326017D-01 Symmetry=bg + MO Center= -9.0D-18, -1.2D-16, 5.0D-19, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.422125 1 C pz 10 -0.422125 2 C pz @@ -2246,103 +2285,103 @@ Divinylbenzene in STO-3G basis set 15 0.233847 3 C pz 20 -0.233847 4 C pz 25 -0.232533 5 C pz 30 0.232533 6 C pz 39 0.214967 11 C pz 44 -0.214967 12 C pz - - Vector 36 Occ=0.000000D+00 E= 2.063361D-01 Symmetry=au - MO Center= 1.9D-17, -1.8D-17, -1.1D-18, r^2= 7.0D+00 + + Vector 36 Occ=0.000000D+00 E= 2.063358D-01 Symmetry=au + MO Center= 1.1D-17, -4.2D-16, 3.0D-18, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.480412 1 C pz 10 0.480412 2 C pz + 5 0.480411 1 C pz 10 0.480411 2 C pz 51 -0.410410 15 C pz 56 -0.410410 16 C pz 25 -0.284854 5 C pz 30 -0.284854 6 C pz 15 -0.250277 3 C pz 20 -0.250277 4 C pz 39 0.247674 11 C pz 44 0.247674 12 C pz - - Vector 37 Occ=0.000000D+00 E= 2.735385D-01 Symmetry=au - MO Center= -8.2D-18, -4.0D-17, 1.4D-17, r^2= 2.7D+00 + + Vector 37 Occ=0.000000D+00 E= 2.735382D-01 Symmetry=au + MO Center= 1.3D-17, 4.1D-17, -3.0D-18, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.583890 3 C pz 20 0.583890 4 C pz - 25 -0.559761 5 C pz 30 -0.559761 6 C pz - - Vector 38 Occ=0.000000D+00 E= 3.192204D-01 Symmetry=bg - MO Center= 1.4D-17, -8.6D-17, -1.7D-21, r^2= 1.1D+01 + 25 -0.559760 5 C pz 30 -0.559760 6 C pz + + Vector 38 Occ=0.000000D+00 E= 3.192198D-01 Symmetry=bg + MO Center= 2.6D-17, 4.8D-17, 1.5D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 -0.537464 15 C pz 56 0.537464 16 C pz - 39 0.531194 11 C pz 44 -0.531194 12 C pz + 51 -0.537463 15 C pz 56 0.537463 16 C pz + 39 0.531193 11 C pz 44 -0.531193 12 C pz 15 0.223589 3 C pz 20 -0.223589 4 C pz 25 -0.217792 5 C pz 30 0.217792 6 C pz - - Vector 39 Occ=0.000000D+00 E= 4.067486D-01 Symmetry=au - MO Center= -7.0D-16, -7.4D-15, 1.1D-15, r^2= 8.4D+00 + + Vector 39 Occ=0.000000D+00 E= 4.067480D-01 Symmetry=au + MO Center= -1.7D-17, 3.1D-16, 1.4D-18, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 0.540892 11 C pz 44 0.540892 12 C pz + 39 0.540891 11 C pz 44 0.540891 12 C pz 5 -0.471023 1 C pz 10 -0.471023 2 C pz 51 -0.417701 15 C pz 56 -0.417701 16 C pz 25 0.188443 5 C pz 30 0.188443 6 C pz 15 0.160675 3 C pz 20 0.160675 4 C pz - - Vector 40 Occ=0.000000D+00 E= 5.372081D-01 Symmetry=bg - MO Center= 8.9D-16, 7.0D-15, -4.6D-20, r^2= 3.7D+00 + + Vector 40 Occ=0.000000D+00 E= 5.372072D-01 Symmetry=bg + MO Center= -8.7D-18, 1.2D-16, -3.6D-18, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.544893 1 C pz 10 -0.544893 2 C pz 15 -0.476381 3 C pz 20 0.476381 4 C pz 25 0.478665 5 C pz 30 -0.478665 6 C pz - 39 0.277105 11 C pz 44 -0.277105 12 C pz + 39 0.277106 11 C pz 44 -0.277106 12 C pz 51 -0.159840 15 C pz 56 0.159840 16 C pz - - Vector 41 Occ=0.000000D+00 E= 5.696447D-01 Symmetry=ag - MO Center= 1.6D-17, 2.2D-16, -3.0D-16, r^2= 8.6D+00 + + Vector 41 Occ=0.000000D+00 E= 5.696467D-01 Symmetry=ag + MO Center= -1.9D-17, 2.1D-16, 2.3D-18, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.420285 7 H s 32 -0.420285 8 H s - 33 -0.419638 9 H s 34 -0.419638 10 H s - 2 0.397259 1 C s 7 0.397259 2 C s - 59 -0.353037 19 H s 60 -0.353037 20 H s - 38 -0.347215 11 C py 43 0.347215 12 C py - - Vector 42 Occ=0.000000D+00 E= 5.827942D-01 Symmetry=bu - MO Center= 8.3D-17, 2.6D-16, 3.6D-23, r^2= 1.0D+01 + 31 -0.420271 7 H s 32 -0.420271 8 H s + 33 -0.419619 9 H s 34 -0.419619 10 H s + 2 0.397277 1 C s 7 0.397277 2 C s + 59 -0.353041 19 H s 60 -0.353041 20 H s + 38 -0.347221 11 C py 43 0.347221 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.827939D-01 Symmetry=bu + MO Center= 9.3D-19, -3.3D-16, -1.1D-21, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.439837 13 H s 46 -0.439837 14 H s - 37 0.354947 11 C px 42 0.354947 12 C px - 13 0.345823 3 C px 18 0.345823 4 C px - 57 -0.334027 17 H s 58 0.334027 18 H s - 31 -0.319939 7 H s 32 0.319939 8 H s - - Vector 43 Occ=0.000000D+00 E= 6.331022D-01 Symmetry=bu - MO Center= 1.8D-16, -4.3D-16, 7.3D-24, r^2= 7.1D+00 + 45 0.439833 13 H s 46 -0.439833 14 H s + 37 0.354949 11 C px 42 0.354949 12 C px + 13 0.345833 3 C px 18 0.345833 4 C px + 57 -0.334015 17 H s 58 0.334015 18 H s + 31 -0.319954 7 H s 32 0.319954 8 H s + + Vector 43 Occ=0.000000D+00 E= 6.331002D-01 Symmetry=bu + MO Center= -3.8D-16, 8.2D-16, -8.6D-21, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.525540 11 C s 41 -0.525540 12 C s - 4 0.460304 1 C py 9 0.460304 2 C py - 33 0.453235 9 H s 34 -0.453235 10 H s - 24 0.331140 5 C py 29 0.331140 6 C py - 38 0.329896 11 C py 43 0.329896 12 C py - - Vector 44 Occ=0.000000D+00 E= 6.347694D-01 Symmetry=ag - MO Center= -1.8D-16, 4.1D-16, 2.7D-16, r^2= 1.1D+01 + 36 0.525506 11 C s 41 -0.525506 12 C s + 4 0.460299 1 C py 9 0.460299 2 C py + 33 0.453252 9 H s 34 -0.453252 10 H s + 24 0.331150 5 C py 29 0.331150 6 C py + 38 0.329898 11 C py 43 0.329898 12 C py + + Vector 44 Occ=0.000000D+00 E= 6.347674D-01 Symmetry=ag + MO Center= 5.1D-18, -1.7D-17, -6.8D-20, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.589715 13 H s 46 0.589715 14 H s - 36 -0.409292 11 C s 41 -0.409292 12 C s - 12 0.388879 3 C s 17 0.388879 4 C s - 57 -0.383176 17 H s 58 -0.383176 18 H s - 37 0.343930 11 C px 42 -0.343930 12 C px - - Vector 45 Occ=0.000000D+00 E= 6.803606D-01 Symmetry=ag - MO Center= 6.6D-17, 1.3D-16, 4.5D-19, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.714446 15 C s 53 0.714446 16 C s - 22 0.576448 5 C s 27 0.576448 6 C s - 57 -0.560546 17 H s 58 -0.560546 18 H s - 12 -0.407767 3 C s 17 -0.407767 4 C s - 59 -0.369726 19 H s 60 -0.369726 20 H s - + 36 -0.409313 11 C s 41 -0.409313 12 C s + 12 0.388876 3 C s 17 0.388876 4 C s + 57 -0.383161 17 H s 58 -0.383161 18 H s + 37 0.343923 11 C px 42 -0.343923 12 C px + + Vector 45 Occ=0.000000D+00 E= 6.803596D-01 Symmetry=ag + MO Center= -3.0D-16, 5.4D-16, -1.4D-19, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.714454 15 C s 53 0.714454 16 C s + 22 0.576445 5 C s 27 0.576445 6 C s + 57 -0.560548 17 H s 58 -0.560548 18 H s + 12 -0.407769 3 C s 17 -0.407769 4 C s + 59 -0.369736 19 H s 60 -0.369736 20 H s + center of mass -------------- @@ -2350,10 +2389,10 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2574.034121510007 -2.551370060263 0.000000000000 - -2.551370060263 376.486424787198 0.000000000000 - 0.000000000000 0.000000000000 2950.520546297204 - + 2574.039765402879 -2.551110153262 0.000000000000 + -2.551110153262 376.487158864367 0.000000000000 + 0.000000000000 0.000000000000 2950.526924267247 + Mulliken analysis of the total density -------------------------------------- @@ -2379,31 +2418,34 @@ Divinylbenzene in STO-3G basis set 18 H 1 0.94 0.94 19 H 1 0.94 0.94 20 H 1 0.94 0.94 - + Multipole analysis of the density wrt the origin ------------------------------------------------ - + L x y z total open nuclear - - - - ----- ---- ------- 0 0 0 0 -0.000000 0.000000 70.000000 - - 1 1 0 0 -0.000000 0.000000 0.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 1 0 1 0 -0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 - - 2 2 0 0 -38.506068 0.000000 236.067533 - 2 1 1 0 0.132860 0.000000 -3.853410 + + 2 2 0 0 -38.506037 0.000000 236.067998 + 2 1 1 0 0.132847 0.000000 -3.853541 2 1 0 1 0.000000 0.000000 0.000000 - 2 0 2 0 -39.151527 0.000000 1464.025178 + 2 0 2 0 -39.151513 0.000000 1464.028399 2 0 1 1 -0.000000 0.000000 0.000000 - 2 0 0 2 -43.441708 0.000000 0.000000 + 2 0 0 2 -43.441718 0.000000 0.000000 + + + Parallel integral file used 9 records with 0 large values NWChem Gradients Module ----------------------- - - + + Divinylbenzene in STO-3G basis set - + wavefunction = RHF @@ -2414,39 +2456,39 @@ Divinylbenzene in STO-3G basis set atom coordinates gradient x y z x y z - 1 C 0.429425 2.634720 0.000000 -0.000156 0.004269 0.000000 - 2 C -0.429425 -2.634720 0.000000 0.000156 -0.004269 0.000000 - 3 C 2.437956 0.919492 0.000000 0.000682 -0.001775 0.000000 - 4 C -2.437956 -0.919492 0.000000 -0.000682 0.001775 0.000000 - 5 C 2.023416 -1.657518 0.000000 0.001977 0.002640 0.000000 - 6 C -2.023416 1.657518 0.000000 -0.001977 -0.002640 0.000000 - 7 H 4.356834 1.632390 0.000000 0.000463 0.000438 0.000000 - 8 H -4.356834 -1.632390 0.000000 -0.000463 -0.000438 0.000000 - 9 H 3.622376 -2.931209 0.000000 -0.000186 -0.000883 0.000000 - 10 H -3.622376 2.931209 0.000000 0.000186 0.000883 0.000000 - 11 C -0.987694 -5.401568 0.000000 0.002726 0.000194 0.000000 - 12 C 0.987694 5.401568 0.000000 -0.002726 -0.000194 0.000000 - 13 H -2.984265 -5.867409 0.000000 -0.000240 -0.001173 0.000000 - 14 H 2.984265 5.867409 0.000000 0.000240 0.001173 0.000000 - 15 C 0.664019 -7.249590 0.000000 -0.002365 0.001765 0.000000 - 16 C -0.664019 7.249590 0.000000 0.002365 -0.001765 0.000000 - 17 H 2.681020 -6.929577 0.000000 0.000156 0.001240 0.000000 - 18 H -2.681020 6.929577 0.000000 -0.000156 -0.001240 0.000000 - 19 H 0.064675 -9.203365 0.000000 -0.000909 -0.000157 0.000000 - 20 H -0.064675 9.203365 0.000000 0.000909 0.000157 0.000000 - + 1 C 0.429424 2.634723 0.000000 -0.000155 0.004270 0.000000 + 2 C -0.429424 -2.634723 0.000000 0.000155 -0.004270 -0.000000 + 3 C 2.437959 0.919494 0.000000 0.000683 -0.001774 0.000000 + 4 C -2.437959 -0.919494 0.000000 -0.000683 0.001774 0.000000 + 5 C 2.023420 -1.657519 0.000000 0.001977 0.002639 0.000000 + 6 C -2.023420 1.657519 0.000000 -0.001977 -0.002639 0.000000 + 7 H 4.356838 1.632394 0.000000 0.000464 0.000438 0.000000 + 8 H -4.356838 -1.632394 0.000000 -0.000464 -0.000438 0.000000 + 9 H 3.622382 -2.931209 0.000000 -0.000186 -0.000883 0.000000 + 10 H -3.622382 2.931209 0.000000 0.000186 0.000883 0.000000 + 11 C -0.987693 -5.401572 0.000000 0.002725 0.000196 0.000000 + 12 C 0.987693 5.401572 0.000000 -0.002725 -0.000196 0.000000 + 13 H -2.984266 -5.867411 0.000000 -0.000241 -0.001173 0.000000 + 14 H 2.984266 5.867411 0.000000 0.000241 0.001173 0.000000 + 15 C 0.664020 -7.249600 0.000000 -0.002363 0.001763 0.000000 + 16 C -0.664020 7.249600 0.000000 0.002363 -0.001763 0.000000 + 17 H 2.681023 -6.929589 0.000000 0.000157 0.001240 0.000000 + 18 H -2.681023 6.929589 0.000000 -0.000157 -0.001240 0.000000 + 19 H 0.064671 -9.203375 0.000000 -0.000909 -0.000158 0.000000 + 20 H -0.064671 9.203375 0.000000 0.000909 0.000158 0.000000 + ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.00 | 0.56 | + | CPU | 0.00 | 0.31 | ---------------------------------------- - | WALL | 0.00 | 0.56 | + | WALL | 0.00 | 0.32 | ---------------------------------------- - no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.000000000000000E+000 Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 1 -379.77787121 -8.9D-03 0.00420 0.00083 0.04325 0.11705 10.9 +@ 1 -379.77787172 -8.9D-03 0.00420 0.00083 0.04325 0.11704 2.5 @@ -2455,21 +2497,21 @@ Divinylbenzene in STO-3G basis set -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value Gradient ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- 1 Stretch 1 3 1.39769 0.00158 - 2 Stretch 1 6 1.39720 0.00211 + 2 Stretch 1 6 1.39721 0.00211 3 Stretch 1 12 1.49366 -0.00171 4 Stretch 2 4 1.39769 0.00158 - 5 Stretch 2 5 1.39720 0.00211 + 5 Stretch 2 5 1.39721 0.00211 6 Stretch 2 11 1.49366 -0.00171 - 7 Stretch 3 5 1.38123 -0.00036 + 7 Stretch 3 5 1.38123 -0.00035 8 Stretch 3 7 1.08324 0.00059 - 9 Stretch 4 6 1.38123 -0.00036 + 9 Stretch 4 6 1.38123 -0.00035 10 Stretch 4 8 1.08324 0.00059 - 11 Stretch 5 9 1.08177 0.00040 - 12 Stretch 6 10 1.08177 0.00040 + 11 Stretch 5 9 1.08177 0.00041 + 12 Stretch 6 10 1.08177 0.00041 13 Stretch 11 13 1.08492 0.00050 14 Stretch 11 15 1.31161 -0.00420 15 Stretch 12 14 1.08492 0.00050 @@ -2478,88 +2520,88 @@ Divinylbenzene in STO-3G basis set 18 Stretch 15 19 1.08145 0.00042 19 Stretch 16 18 1.08070 0.00035 20 Stretch 16 20 1.08145 0.00042 - 21 Bend 1 3 5 121.35801 -0.00005 + 21 Bend 1 3 5 121.35802 -0.00005 22 Bend 1 3 7 119.12269 -0.00011 - 23 Bend 1 6 4 120.86049 0.00012 - 24 Bend 1 6 10 119.73795 -0.00050 - 25 Bend 1 12 14 114.54076 0.00074 - 26 Bend 1 12 16 126.80308 -0.00029 - 27 Bend 2 4 6 121.35801 -0.00005 + 23 Bend 1 6 4 120.86048 0.00012 + 24 Bend 1 6 10 119.73797 -0.00050 + 25 Bend 1 12 14 114.54071 0.00074 + 26 Bend 1 12 16 126.80316 -0.00029 + 27 Bend 2 4 6 121.35802 -0.00005 28 Bend 2 4 8 119.12269 -0.00011 - 29 Bend 2 5 3 120.86049 0.00012 - 30 Bend 2 5 9 119.73795 -0.00050 - 31 Bend 2 11 13 114.54076 0.00074 - 32 Bend 2 11 15 126.80308 -0.00029 + 29 Bend 2 5 3 120.86048 0.00012 + 30 Bend 2 5 9 119.73797 -0.00050 + 31 Bend 2 11 13 114.54071 0.00074 + 32 Bend 2 11 15 126.80316 -0.00029 33 Bend 3 1 6 117.78150 -0.00007 - 34 Bend 3 1 12 119.08894 -0.00019 - 35 Bend 3 5 9 119.40156 0.00038 + 34 Bend 3 1 12 119.08891 -0.00019 + 35 Bend 3 5 9 119.40154 0.00038 36 Bend 4 2 5 117.78150 -0.00007 - 37 Bend 4 2 11 119.08894 -0.00019 - 38 Bend 4 6 10 119.40156 0.00038 - 39 Bend 5 2 11 123.12956 0.00026 - 40 Bend 5 3 7 119.51931 0.00016 - 41 Bend 6 1 12 123.12956 0.00026 - 42 Bend 6 4 8 119.51931 0.00016 - 43 Bend 11 15 17 122.77419 -0.00057 - 44 Bend 11 15 19 121.15647 -0.00016 - 45 Bend 12 16 18 122.77419 -0.00057 - 46 Bend 12 16 20 121.15647 -0.00016 - 47 Bend 13 11 15 118.65616 -0.00044 - 48 Bend 14 12 16 118.65616 -0.00044 - 49 Bend 17 15 19 116.06934 0.00073 - 50 Bend 18 16 20 116.06934 0.00073 + 37 Bend 4 2 11 119.08891 -0.00019 + 38 Bend 4 6 10 119.40154 0.00038 + 39 Bend 5 2 11 123.12959 0.00026 + 40 Bend 5 3 7 119.51930 0.00016 + 41 Bend 6 1 12 123.12959 0.00026 + 42 Bend 6 4 8 119.51930 0.00016 + 43 Bend 11 15 17 122.77420 -0.00057 + 44 Bend 11 15 19 121.15645 -0.00016 + 45 Bend 12 16 18 122.77420 -0.00057 + 46 Bend 12 16 20 121.15645 -0.00016 + 47 Bend 13 11 15 118.65613 -0.00044 + 48 Bend 14 12 16 118.65613 -0.00044 + 49 Bend 17 15 19 116.06935 0.00073 + 50 Bend 18 16 20 116.06935 0.00073 51 Torsion 1 3 5 2 0.00000 0.00000 52 Torsion 1 3 5 9 180.00000 0.00000 53 Torsion 1 6 4 2 0.00000 0.00000 - 54 Torsion 1 6 4 8 180.00000 0.00000 + 54 Torsion 1 6 4 8 180.00000 -0.00000 55 Torsion 1 12 16 18 0.00000 0.00000 - 56 Torsion 1 12 16 20 180.00000 0.00000 + 56 Torsion 1 12 16 20 180.00000 -0.00000 57 Torsion 2 4 6 10 180.00000 0.00000 - 58 Torsion 2 5 3 7 180.00000 0.00000 - 59 Torsion 2 11 15 17 0.00000 0.00000 - 60 Torsion 2 11 15 19 180.00000 0.00000 + 58 Torsion 2 5 3 7 180.00000 -0.00000 + 59 Torsion 2 11 15 17 0.00000 -0.00000 + 60 Torsion 2 11 15 19 180.00000 -0.00000 61 Torsion 3 1 6 4 0.00000 0.00000 - 62 Torsion 3 1 6 10 180.00000 0.00000 + 62 Torsion 3 1 6 10 180.00000 -0.00000 63 Torsion 3 1 12 14 0.00000 0.00000 64 Torsion 3 1 12 16 180.00000 0.00000 65 Torsion 3 5 2 4 0.00000 0.00000 66 Torsion 3 5 2 11 180.00000 0.00000 - 67 Torsion 4 2 5 9 180.00000 0.00000 + 67 Torsion 4 2 5 9 180.00000 -0.00000 68 Torsion 4 2 11 13 0.00000 0.00000 69 Torsion 4 2 11 15 180.00000 0.00000 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 0.00000 + 71 Torsion 5 2 4 6 0.00000 -0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 - 73 Torsion 5 2 11 13 180.00000 0.00000 + 73 Torsion 5 2 11 13 180.00000 -0.00000 74 Torsion 5 2 11 15 0.00000 0.00000 - 75 Torsion 5 3 1 6 0.00000 0.00000 - 76 Torsion 5 3 1 12 180.00000 0.00000 + 75 Torsion 5 3 1 6 0.00000 -0.00000 + 76 Torsion 5 3 1 12 180.00000 -0.00000 77 Torsion 6 1 3 7 180.00000 0.00000 - 78 Torsion 6 1 12 14 180.00000 0.00000 + 78 Torsion 6 1 12 14 180.00000 -0.00000 79 Torsion 6 1 12 16 0.00000 0.00000 - 80 Torsion 6 4 2 11 180.00000 0.00000 - 81 Torsion 7 3 1 12 -0.00000 0.00000 + 80 Torsion 6 4 2 11 180.00000 -0.00000 + 81 Torsion 7 3 1 12 0.00000 -0.00000 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 0.00000 - 84 Torsion 8 4 6 10 0.00000 0.00000 + 83 Torsion 8 4 2 11 0.00000 -0.00000 + 84 Torsion 8 4 6 10 0.00000 -0.00000 85 Torsion 9 5 2 11 0.00000 0.00000 - 86 Torsion 10 6 1 12 0.00000 0.00000 + 86 Torsion 10 6 1 12 0.00000 -0.00000 87 Torsion 13 11 15 17 180.00000 0.00000 - 88 Torsion 13 11 15 19 -0.00000 0.00000 + 88 Torsion 13 11 15 19 0.00000 0.00000 89 Torsion 14 12 16 18 180.00000 0.00000 - 90 Torsion 14 12 16 20 -0.00000 0.00000 - - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 + 90 Torsion 14 12 16 20 0.00000 0.00000 + + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 NWChem SCF Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + ao basis = "ao basis" functions = 60 @@ -2584,30 +2626,30 @@ Divinylbenzene in STO-3G basis set Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 + - - Forming initial guess at 10.9s + Forming initial guess at 2.5s Loading old vectors from job with title : Divinylbenzene in STO-3G basis set - + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -2617,9 +2659,9 @@ Divinylbenzene in STO-3G basis set 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag + - - Starting SCF solution at 10.9s + Starting SCF solution at 2.5s @@ -2632,34 +2674,46 @@ Divinylbenzene in STO-3G basis set ---------------------------------------------- + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507878 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.173D+05 #integrals = 3.522D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 + + iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7779258093 1.14D-02 2.55D-03 11.2 - 2 -379.7779377259 1.23D-04 3.34D-05 12.6 - 3 -379.7779377280 2.89D-06 9.67D-07 13.8 + 1 -379.7779267499 1.14D-02 2.55D-03 2.5 + 2 -379.7779382027 1.24D-04 3.33D-05 2.6 + 3 -379.7779382048 2.94D-06 9.82D-07 2.7 Final RHF results ------------------ - Total SCF energy = -379.777937728006 - One-electron energy = -1412.191653901135 - Two-electron energy = 580.269084101519 - Nuclear repulsion energy = 452.144632071610 - - Time for solution = 2.9s + Total SCF energy = -379.777938204836 + One-electron energy = -1412.191347821192 + Two-electron energy = 580.268934995080 + Nuclear repulsion energy = 452.144474621276 + Time for solution = 0.4s + Symmetry analysis of molecular orbitals - final ----------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -2669,7 +2723,7 @@ Divinylbenzene in STO-3G basis set 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag - + Final eigenvalues ----------------- @@ -2719,266 +2773,266 @@ Divinylbenzene in STO-3G basis set 43 0.6325 44 0.6358 45 0.6829 - + ROHF Final Molecular Orbital Analysis ------------------------------------- - - Vector 11 Occ=2.000000D+00 E=-1.107061D+00 Symmetry=ag - MO Center= 3.1D-17, 1.3D-16, -1.2D-19, r^2= 2.8D+00 + + Vector 11 Occ=2.000000D+00 E=-1.107062D+00 Symmetry=ag + MO Center= -4.6D-17, 3.3D-18, -1.0D-22, r^2= 2.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.270971 1 C s 7 0.270971 2 C s 12 0.245871 3 C s 17 0.245871 4 C s - 22 0.245768 5 C s 27 0.245768 6 C s - + 22 0.245769 5 C s 27 0.245769 6 C s + Vector 12 Occ=2.000000D+00 E=-1.031568D+00 Symmetry=bu - MO Center= 5.1D-18, 9.1D-17, 2.0D-23, r^2= 7.9D+00 + MO Center= -1.9D-17, 3.1D-17, -1.4D-21, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.294851 11 C s 41 -0.294851 12 C s - 2 -0.265713 1 C s 7 0.265713 2 C s + 36 0.294852 11 C s 41 -0.294852 12 C s + 2 -0.265712 1 C s 7 0.265712 2 C s 48 0.215088 15 C s 53 -0.215088 16 C s - - Vector 13 Occ=2.000000D+00 E=-9.880595D-01 Symmetry=ag - MO Center= -3.4D-17, 8.7D-17, -7.6D-19, r^2= 1.1D+01 + + Vector 13 Occ=2.000000D+00 E=-9.880593D-01 Symmetry=ag + MO Center= 2.2D-17, -5.4D-16, 2.1D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.313472 11 C s 41 0.313472 12 C s - 48 0.309408 15 C s 53 0.309408 16 C s - - Vector 14 Occ=2.000000D+00 E=-9.611659D-01 Symmetry=bu - MO Center= -1.4D-16, -3.2D-17, 1.0D-23, r^2= 3.0D+00 + 48 0.309409 15 C s 53 0.309409 16 C s + + Vector 14 Occ=2.000000D+00 E=-9.611655D-01 Symmetry=bu + MO Center= 2.8D-17, 6.4D-17, -9.3D-37, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.353935 3 C s 17 -0.353935 4 C s + 12 0.353934 3 C s 17 -0.353934 4 C s 22 0.321162 5 C s 27 -0.321162 6 C s - - Vector 15 Occ=2.000000D+00 E=-9.227640D-01 Symmetry=bu - MO Center= -7.4D-17, 5.3D-17, -3.0D-21, r^2= 8.5D+00 + + Vector 15 Occ=2.000000D+00 E=-9.227631D-01 Symmetry=bu + MO Center= -1.5D-17, 8.4D-17, 1.3D-34, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.283932 15 C s 53 -0.283932 16 C s 2 0.278771 1 C s 7 -0.278771 2 C s - 22 -0.199630 5 C s 27 0.199630 6 C s - - Vector 16 Occ=2.000000D+00 E=-8.066399D-01 Symmetry=ag - MO Center= 4.3D-17, -1.1D-16, -8.0D-19, r^2= 8.0D+00 + 22 -0.199631 5 C s 27 0.199631 6 C s + + Vector 16 Occ=2.000000D+00 E=-8.066404D-01 Symmetry=ag + MO Center= 4.2D-17, 3.6D-16, -9.3D-21, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.233181 5 C s 27 0.233181 6 C s - 48 0.226859 15 C s 53 0.226859 16 C s - 2 -0.207085 1 C s 7 -0.207085 2 C s + 22 0.233182 5 C s 27 0.233182 6 C s + 48 0.226857 15 C s 53 0.226857 16 C s + 2 -0.207083 1 C s 7 -0.207083 2 C s 14 -0.166939 3 C py 19 0.166939 4 C py 36 -0.156334 11 C s 41 -0.156334 12 C s - + Vector 17 Occ=2.000000D+00 E=-7.715672D-01 Symmetry=ag - MO Center= 1.1D-16, -1.3D-16, -1.1D-33, r^2= 4.9D+00 + MO Center= -6.8D-17, 5.3D-17, 8.0D-34, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.319435 3 C s 17 0.319435 4 C s - 3 0.189567 1 C px 8 -0.189567 2 C px - 24 0.174046 5 C py 29 -0.174046 6 C py + 3 0.189566 1 C px 8 -0.189566 2 C px + 24 0.174047 5 C py 29 -0.174047 6 C py 31 0.172059 7 H s 32 0.172059 8 H s - 22 -0.165454 5 C s 27 -0.165454 6 C s - - Vector 18 Occ=2.000000D+00 E=-7.332407D-01 Symmetry=bu - MO Center= 1.6D-17, -1.2D-16, -3.2D-22, r^2= 1.2D+01 + 22 -0.165451 5 C s 27 -0.165451 6 C s + + Vector 18 Occ=2.000000D+00 E=-7.332406D-01 Symmetry=bu + MO Center= -8.7D-17, -6.0D-16, -9.5D-20, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.293535 11 C s 41 -0.293535 12 C s - 48 -0.246653 15 C s 53 0.246653 16 C s + 48 -0.246654 15 C s 53 0.246654 16 C s 45 0.177487 13 H s 46 -0.177487 14 H s 57 -0.166188 17 H s 58 0.166188 18 H s - + Vector 19 Occ=2.000000D+00 E=-7.075234D-01 Symmetry=ag - MO Center= 3.4D-17, -1.4D-17, 2.5D-20, r^2= 7.6D+00 + MO Center= -8.7D-18, 6.6D-17, 1.5D-35, r^2= 7.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.196291 5 C px 28 -0.196291 6 C px + 23 0.196292 5 C px 28 -0.196292 6 C px 36 0.180122 11 C s 41 0.180122 12 C s - 13 0.178458 3 C px 18 -0.178458 4 C px - 33 0.171362 9 H s 34 0.171362 10 H s + 13 0.178459 3 C px 18 -0.178459 4 C px + 33 0.171363 9 H s 34 0.171363 10 H s 48 -0.162461 15 C s 53 -0.162461 16 C s - - Vector 20 Occ=2.000000D+00 E=-6.392188D-01 Symmetry=ag - MO Center= 5.1D-16, -2.0D-15, 3.4D-18, r^2= 9.3D+00 + + Vector 20 Occ=2.000000D+00 E=-6.392184D-01 Symmetry=ag + MO Center= 5.3D-17, -6.5D-17, 3.9D-21, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.210268 15 C px 54 -0.210268 16 C px - 38 0.182694 11 C py 43 -0.182694 12 C py - 57 0.181814 17 H s 58 0.181814 18 H s + 49 0.210270 15 C px 54 -0.210270 16 C px + 38 0.182693 11 C py 43 -0.182693 12 C py + 57 0.181815 17 H s 58 0.181815 18 H s 45 -0.153821 13 H s 46 -0.153821 14 H s - - Vector 21 Occ=2.000000D+00 E=-6.150926D-01 Symmetry=bu - MO Center= -3.0D-16, 4.2D-15, -4.7D-33, r^2= 1.0D+01 + + Vector 21 Occ=2.000000D+00 E=-6.150922D-01 Symmetry=bu + MO Center= 7.5D-17, -9.4D-17, 4.2D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.215839 11 C px 42 0.215839 12 C px - 50 0.214804 15 C py 55 0.214804 16 C py + 50 0.214806 15 C py 55 0.214806 16 C py 14 0.188923 3 C py 19 0.188923 4 C py 59 -0.187371 19 H s 60 0.187371 20 H s - 45 -0.156187 13 H s 46 0.156187 14 H s - - Vector 22 Occ=2.000000D+00 E=-5.777272D-01 Symmetry=bu - MO Center= -5.6D-16, 1.1D-15, 4.7D-21, r^2= 6.5D+00 + 45 -0.156186 13 H s 46 0.156186 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.777267D-01 Symmetry=bu + MO Center= -2.6D-16, 8.0D-17, 1.9D-18, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.234334 7 H s 32 0.234334 8 H s + 31 -0.234333 7 H s 32 0.234333 8 H s 33 0.235454 9 H s 34 -0.235454 10 H s - 13 -0.227001 3 C px 18 -0.227001 4 C px - 2 0.221479 1 C s 7 -0.221479 2 C s - 24 -0.178748 5 C py 29 -0.178748 6 C py - - Vector 23 Occ=2.000000D+00 E=-5.639086D-01 Symmetry=bu - MO Center= 2.8D-16, -2.6D-15, 2.7D-32, r^2= 8.6D+00 + 13 -0.226999 3 C px 18 -0.226999 4 C px + 2 0.221483 1 C s 7 -0.221483 2 C s + 24 -0.178746 5 C py 29 -0.178746 6 C py + + Vector 23 Occ=2.000000D+00 E=-5.639085D-01 Symmetry=bu + MO Center= -5.1D-17, -1.3D-17, -1.2D-20, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.256934 5 C px 28 0.256934 6 C px - 49 0.246908 15 C px 54 0.246908 16 C px + 23 0.256932 5 C px 28 0.256932 6 C px + 49 0.246909 15 C px 54 0.246909 16 C px 3 -0.217081 1 C px 8 -0.217081 2 C px - 57 0.215218 17 H s 58 -0.215218 18 H s - 38 0.173780 11 C py 43 0.173780 12 C py - - Vector 24 Occ=2.000000D+00 E=-5.627897D-01 Symmetry=ag - MO Center= -7.4D-18, 1.1D-16, 2.6D-34, r^2= 1.4D+01 + 57 0.215219 17 H s 58 -0.215219 18 H s + 38 0.173782 11 C py 43 0.173782 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.627895D-01 Symmetry=ag + MO Center= -8.6D-17, 1.4D-16, -9.4D-20, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.338195 15 C py 55 -0.338195 16 C py - 59 -0.265242 19 H s 60 -0.265242 20 H s - 37 0.252586 11 C px 42 -0.252586 12 C px + 59 -0.265241 19 H s 60 -0.265241 20 H s + 37 0.252585 11 C px 42 -0.252585 12 C px 45 -0.152541 13 H s 46 -0.152541 14 H s - - Vector 25 Occ=2.000000D+00 E=-5.326295D-01 Symmetry=bu - MO Center= -1.1D-16, -5.1D-17, -3.2D-24, r^2= 4.3D+00 + + Vector 25 Occ=2.000000D+00 E=-5.326288D-01 Symmetry=bu + MO Center= -1.1D-17, -4.7D-17, 3.3D-21, r^2= 4.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.304515 3 C px 18 0.304515 4 C px + 13 0.304516 3 C px 18 0.304516 4 C px 31 0.255916 7 H s 32 -0.255916 8 H s - 24 -0.227098 5 C py 29 -0.227098 6 C py - 33 0.220967 9 H s 34 -0.220967 10 H s - 23 0.186383 5 C px 28 0.186383 6 C px - - Vector 26 Occ=2.000000D+00 E=-5.074376D-01 Symmetry=bu - MO Center= 3.6D-16, 3.5D-17, 2.2D-22, r^2= 8.8D+00 + 24 -0.227097 5 C py 29 -0.227097 6 C py + 33 0.220966 9 H s 34 -0.220966 10 H s + 23 0.186385 5 C px 28 0.186385 6 C px + + Vector 26 Occ=2.000000D+00 E=-5.074374D-01 Symmetry=bu + MO Center= -4.4D-17, -2.6D-16, 1.1D-21, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 -0.239197 15 C py 55 -0.239197 16 C py - 14 0.225099 3 C py 19 0.225099 4 C py + 50 -0.239198 15 C py 55 -0.239198 16 C py + 14 0.225100 3 C py 19 0.225100 4 C py 37 -0.209824 11 C px 42 -0.209824 12 C px - 24 -0.190020 5 C py 29 -0.190020 6 C py - 38 0.188079 11 C py 43 0.188079 12 C py - - Vector 27 Occ=2.000000D+00 E=-4.982620D-01 Symmetry=ag - MO Center= 9.2D-17, -1.5D-16, 3.7D-20, r^2= 1.2D+01 + 24 -0.190022 5 C py 29 -0.190022 6 C py + 38 0.188078 11 C py 43 0.188078 12 C py + + Vector 27 Occ=2.000000D+00 E=-4.982615D-01 Symmetry=ag + MO Center= 2.2D-18, -2.0D-16, -3.5D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.296403 15 C px 54 -0.296403 16 C px - 57 0.268915 17 H s 58 0.268915 18 H s + 49 0.296401 15 C px 54 -0.296401 16 C px + 57 0.268913 17 H s 58 0.268913 18 H s 37 -0.206581 11 C px 42 0.206581 12 C px 45 0.201803 13 H s 46 0.201803 14 H s - 31 -0.156601 7 H s 32 -0.156601 8 H s - - Vector 28 Occ=2.000000D+00 E=-4.775779D-01 Symmetry=au - MO Center= -4.3D-17, 7.4D-18, -8.5D-18, r^2= 3.4D+00 + 31 -0.156603 7 H s 32 -0.156603 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.775776D-01 Symmetry=au + MO Center= 7.3D-18, -4.1D-17, 1.5D-20, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.328944 1 C pz 10 0.328944 2 C pz 15 0.302186 3 C pz 20 0.302186 4 C pz 25 0.301427 5 C pz 30 0.301427 6 C pz 39 0.158392 11 C pz 44 0.158392 12 C pz - - Vector 29 Occ=2.000000D+00 E=-4.490448D-01 Symmetry=bu - MO Center= -1.9D-16, 3.8D-16, -4.6D-23, r^2= 1.2D+01 + + Vector 29 Occ=2.000000D+00 E=-4.490450D-01 Symmetry=bu + MO Center= 1.6D-16, -6.1D-17, -8.2D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.255781 13 H s 46 -0.255781 14 H s - 4 0.248650 1 C py 9 0.248650 2 C py - 57 0.227237 17 H s 58 -0.227237 18 H s + 4 0.248652 1 C py 9 0.248652 2 C py + 57 0.227236 17 H s 58 -0.227236 18 H s 59 -0.218156 19 H s 60 0.218156 20 H s 37 -0.213164 11 C px 42 -0.213164 12 C px - - Vector 30 Occ=2.000000D+00 E=-4.260152D-01 Symmetry=ag - MO Center= -2.2D-17, 1.2D-16, 1.2D-20, r^2= 4.9D+00 + + Vector 30 Occ=2.000000D+00 E=-4.260163D-01 Symmetry=ag + MO Center= 6.7D-17, -7.7D-17, -9.4D-21, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.283412 9 H s 34 0.283412 10 H s - 3 0.251201 1 C px 8 -0.251201 2 C px - 13 -0.225452 3 C px 18 0.225452 4 C px - 14 0.220394 3 C py 19 -0.220394 4 C py - 23 0.207452 5 C px 28 -0.207452 6 C px - - Vector 31 Occ=2.000000D+00 E=-4.184243D-01 Symmetry=ag - MO Center= 4.3D-18, -3.9D-17, 6.6D-21, r^2= 7.1D+00 + 33 0.283413 9 H s 34 0.283413 10 H s + 3 0.251202 1 C px 8 -0.251202 2 C px + 13 -0.225453 3 C px 18 0.225453 4 C px + 14 0.220393 3 C py 19 -0.220393 4 C py + 23 0.207454 5 C px 28 -0.207454 6 C px + + Vector 31 Occ=2.000000D+00 E=-4.184250D-01 Symmetry=ag + MO Center= 1.5D-16, -1.4D-16, 1.8D-19, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.218311 7 H s 32 -0.218311 8 H s - 38 0.216055 11 C py 43 -0.216055 12 C py - 4 0.212763 1 C py 9 -0.212763 2 C py - 23 0.210048 5 C px 28 -0.210048 6 C px - 3 0.205340 1 C px 8 -0.205340 2 C px - - Vector 32 Occ=2.000000D+00 E=-3.865864D-01 Symmetry=bg - MO Center= 7.7D-18, 2.5D-17, 2.7D-22, r^2= 8.5D+00 + 31 -0.218310 7 H s 32 -0.218310 8 H s + 38 0.216057 11 C py 43 -0.216057 12 C py + 4 0.212764 1 C py 9 -0.212764 2 C py + 23 0.210046 5 C px 28 -0.210046 6 C px + 3 0.205337 1 C px 8 -0.205337 2 C px + + Vector 32 Occ=2.000000D+00 E=-3.865863D-01 Symmetry=bg + MO Center= 0.0D+00, 0.0D+00, 4.7D-19, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.381256 11 C pz 44 -0.381256 12 C pz 5 -0.313488 1 C pz 10 0.313488 2 C pz 51 0.309399 15 C pz 56 -0.309399 16 C pz - + Vector 33 Occ=2.000000D+00 E=-3.264344D-01 Symmetry=au - MO Center= -5.7D-18, 4.0D-17, -5.6D-17, r^2= 1.1D+01 + MO Center= -7.1D-18, 5.2D-17, -5.3D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.426472 15 C pz 56 0.426472 16 C pz 39 0.415410 11 C pz 44 0.415410 12 C pz - 15 -0.158024 3 C pz 20 -0.158024 4 C pz - 25 -0.158206 5 C pz 30 -0.158206 6 C pz - - Vector 34 Occ=2.000000D+00 E=-2.858065D-01 Symmetry=bg - MO Center= -3.0D-18, 1.7D-17, 8.4D-23, r^2= 2.6D+00 + 15 -0.158023 3 C pz 20 -0.158023 4 C pz + 25 -0.158205 5 C pz 30 -0.158205 6 C pz + + Vector 34 Occ=2.000000D+00 E=-2.858064D-01 Symmetry=bg + MO Center= 2.6D-17, 2.5D-17, -4.9D-20, r^2= 2.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.458779 3 C pz 20 -0.458779 4 C pz + 15 0.458778 3 C pz 20 -0.458778 4 C pz 25 0.461008 5 C pz 30 -0.461008 6 C pz - - Vector 35 Occ=2.000000D+00 E=-2.331875D-01 Symmetry=bg - MO Center= -1.9D-17, 1.9D-16, 3.7D-21, r^2= 6.9D+00 + + Vector 35 Occ=2.000000D+00 E=-2.331874D-01 Symmetry=bg + MO Center= 4.9D-18, 6.6D-17, -7.9D-21, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.419757 1 C pz 10 -0.419757 2 C pz - 51 0.351595 15 C pz 56 -0.351595 16 C pz - 15 0.233807 3 C pz 20 -0.233807 4 C pz + 51 0.351594 15 C pz 56 -0.351594 16 C pz + 15 0.233808 3 C pz 20 -0.233808 4 C pz 25 -0.231138 5 C pz 30 0.231138 6 C pz - 39 0.217724 11 C pz 44 -0.217724 12 C pz - + 39 0.217723 11 C pz 44 -0.217723 12 C pz + Vector 36 Occ=0.000000D+00 E= 2.067082D-01 Symmetry=au - MO Center= 1.5D-17, -1.1D-16, -1.1D-18, r^2= 7.1D+00 + MO Center= 1.6D-17, 1.2D-16, -1.9D-20, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.478242 1 C pz 10 0.478242 2 C pz - 51 -0.411955 15 C pz 56 -0.411955 16 C pz + 51 -0.411954 15 C pz 56 -0.411954 16 C pz 25 -0.283601 5 C pz 30 -0.283601 6 C pz 15 -0.250659 3 C pz 20 -0.250659 4 C pz 39 0.250595 11 C pz 44 0.250595 12 C pz - + Vector 37 Occ=0.000000D+00 E= 2.733059D-01 Symmetry=au - MO Center= 3.6D-16, 4.7D-17, 1.4D-17, r^2= 2.7D+00 + MO Center= 1.1D-17, -3.6D-17, 3.4D-19, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.583538 3 C pz 20 0.583538 4 C pz 25 -0.560242 5 C pz 30 -0.560242 6 C pz - - Vector 38 Occ=0.000000D+00 E= 3.180211D-01 Symmetry=bg - MO Center= 1.9D-17, 3.9D-18, -1.7D-22, r^2= 1.1D+01 + + Vector 38 Occ=0.000000D+00 E= 3.180212D-01 Symmetry=bg + MO Center= 4.7D-17, -9.0D-18, 1.5D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.537587 15 C pz 56 0.537587 16 C pz 39 0.531906 11 C pz 44 -0.531906 12 C pz 15 0.221212 3 C pz 20 -0.221212 4 C pz 25 -0.215609 5 C pz 30 0.215609 6 C pz - - Vector 39 Occ=0.000000D+00 E= 4.057342D-01 Symmetry=au - MO Center= -6.1D-16, -6.7D-15, 1.1D-15, r^2= 8.4D+00 + + Vector 39 Occ=0.000000D+00 E= 4.057343D-01 Symmetry=au + MO Center= 9.3D-17, 5.0D-16, 2.6D-19, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.538763 11 C pz 44 0.538763 12 C pz @@ -2986,67 +3040,67 @@ Divinylbenzene in STO-3G basis set 51 -0.415108 15 C pz 56 -0.415108 16 C pz 25 0.190222 5 C pz 30 0.190222 6 C pz 15 0.162685 3 C pz 20 0.162685 4 C pz - + Vector 40 Occ=0.000000D+00 E= 5.378140D-01 Symmetry=bg - MO Center= 4.1D-16, 6.5D-15, -4.5D-21, r^2= 3.7D+00 + MO Center= 3.0D-17, -7.7D-17, -3.3D-18, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.545737 1 C pz 10 -0.545737 2 C pz 25 0.479938 5 C pz 30 -0.479938 6 C pz - 15 -0.477487 3 C pz 20 0.477487 4 C pz + 15 -0.477486 3 C pz 20 0.477486 4 C pz 39 0.274226 11 C pz 44 -0.274226 12 C pz 51 -0.157267 15 C pz 56 0.157267 16 C pz - - Vector 41 Occ=0.000000D+00 E= 5.686389D-01 Symmetry=ag - MO Center= -4.4D-18, 9.7D-17, -3.0D-16, r^2= 8.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 31 -0.417139 7 H s 32 -0.417139 8 H s - 33 -0.416590 9 H s 34 -0.416590 10 H s - 2 0.397806 1 C s 7 0.397806 2 C s - 59 -0.351159 19 H s 60 -0.351159 20 H s - 38 -0.349115 11 C py 43 0.349115 12 C py - - Vector 42 Occ=0.000000D+00 E= 5.833171D-01 Symmetry=bu - MO Center= -4.6D-17, -2.2D-16, -5.5D-23, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.432657 13 H s 46 -0.432657 14 H s - 37 0.356082 11 C px 42 0.356082 12 C px - 13 0.340290 3 C px 18 0.340290 4 C px - 57 -0.336125 17 H s 58 0.336125 18 H s - 59 0.321569 19 H s 60 -0.321569 20 H s - - Vector 43 Occ=0.000000D+00 E= 6.324738D-01 Symmetry=bu - MO Center= 2.2D-16, -3.4D-16, -1.4D-23, r^2= 6.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.534965 11 C s 41 -0.534965 12 C s - 33 0.462557 9 H s 34 -0.462557 10 H s - 4 0.456378 1 C py 9 0.456378 2 C py - 24 0.334092 5 C py 29 0.334092 6 C py - 38 0.320709 11 C py 43 0.320709 12 C py - - Vector 44 Occ=0.000000D+00 E= 6.357715D-01 Symmetry=ag - MO Center= -1.3D-16, 7.0D-16, 2.7D-16, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.585194 13 H s 46 0.585194 14 H s - 36 -0.410391 11 C s 41 -0.410391 12 C s - 57 -0.389862 17 H s 58 -0.389862 18 H s - 12 0.386135 3 C s 17 0.386135 4 C s - 37 0.338145 11 C px 42 -0.338145 12 C px - - Vector 45 Occ=0.000000D+00 E= 6.829146D-01 Symmetry=ag - MO Center= 1.3D-17, 1.5D-16, -1.5D-18, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.725166 15 C s 53 0.725166 16 C s - 22 0.569744 5 C s 27 0.569744 6 C s - 57 -0.557568 17 H s 58 -0.557568 18 H s + + Vector 41 Occ=0.000000D+00 E= 5.686409D-01 Symmetry=ag + MO Center= 3.2D-17, 1.5D-16, 7.7D-21, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.417124 7 H s 32 -0.417124 8 H s + 33 -0.416570 9 H s 34 -0.416570 10 H s + 2 0.397825 1 C s 7 0.397825 2 C s + 59 -0.351163 19 H s 60 -0.351163 20 H s + 38 -0.349122 11 C py 43 0.349122 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.833170D-01 Symmetry=bu + MO Center= -1.1D-16, -4.5D-16, -1.0D-21, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.432652 13 H s 46 -0.432652 14 H s + 37 0.356085 11 C px 42 0.356085 12 C px + 13 0.340298 3 C px 18 0.340298 4 C px + 57 -0.336113 17 H s 58 0.336113 18 H s + 59 0.321568 19 H s 60 -0.321568 20 H s + + Vector 43 Occ=0.000000D+00 E= 6.324720D-01 Symmetry=bu + MO Center= -8.1D-17, 6.3D-17, -3.8D-21, r^2= 6.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.534931 11 C s 41 -0.534931 12 C s + 33 0.462578 9 H s 34 -0.462578 10 H s + 4 0.456371 1 C py 9 0.456371 2 C py + 24 0.334101 5 C py 29 0.334101 6 C py + 38 0.320710 11 C py 43 0.320710 12 C py + + Vector 44 Occ=0.000000D+00 E= 6.357706D-01 Symmetry=ag + MO Center= -1.9D-16, -2.0D-16, -1.4D-20, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.585193 13 H s 46 0.585193 14 H s + 36 -0.410415 11 C s 41 -0.410415 12 C s + 57 -0.389845 17 H s 58 -0.389845 18 H s + 12 0.386133 3 C s 17 0.386133 4 C s + 37 0.338138 11 C px 42 -0.338138 12 C px + + Vector 45 Occ=0.000000D+00 E= 6.829151D-01 Symmetry=ag + MO Center= -1.9D-16, 3.6D-16, 2.2D-20, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.725178 15 C s 53 0.725178 16 C s + 22 0.569738 5 C s 27 0.569738 6 C s + 57 -0.557573 17 H s 58 -0.557573 18 H s 12 -0.421039 3 C s 17 -0.421039 4 C s - 59 -0.380817 19 H s 60 -0.380817 20 H s - + 59 -0.380829 19 H s 60 -0.380829 20 H s + center of mass -------------- @@ -3054,10 +3108,10 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2578.214951189417 -1.132964257036 0.000000000000 - -1.132964257036 375.633223840925 0.000000000000 - 0.000000000000 0.000000000000 2953.848175030341 - + 2578.219241431733 -1.132543407794 0.000000000000 + -1.132543407794 375.632883608758 0.000000000000 + 0.000000000000 0.000000000000 2953.852125040491 + Mulliken analysis of the total density -------------------------------------- @@ -3083,100 +3137,103 @@ Divinylbenzene in STO-3G basis set 18 H 1 0.94 0.94 19 H 1 0.94 0.94 20 H 1 0.94 0.94 - + Multipole analysis of the density wrt the origin ------------------------------------------------ - + L x y z total open nuclear - - - - ----- ---- ------- 0 0 0 0 -0.000000 0.000000 70.000000 - - 1 1 0 0 0.000000 0.000000 0.000000 + + 1 1 0 0 -0.000000 0.000000 0.000000 1 0 1 0 -0.000000 0.000000 0.000000 - 1 0 0 1 0.000000 0.000000 0.000000 - - 2 2 0 0 -38.501715 0.000000 235.613673 - 2 1 1 0 0.091105 0.000000 -4.742205 + 1 0 0 1 -0.000000 0.000000 0.000000 + + 2 2 0 0 -38.501692 0.000000 235.613502 + 2 1 1 0 0.091095 0.000000 -4.742366 2 1 0 1 0.000000 0.000000 0.000000 - 2 0 2 0 -39.161868 0.000000 1466.437085 - 2 0 1 1 -0.000000 0.000000 0.000000 - 2 0 0 2 -43.440548 0.000000 0.000000 + 2 0 2 0 -39.161862 0.000000 1466.439539 + 2 0 1 1 0.000000 0.000000 0.000000 + 2 0 0 2 -43.440551 0.000000 0.000000 + + + Parallel integral file used 9 records with 0 large values Line search: step= 1.00 grad=-2.0D-04 hess= 1.3D-04 energy= -379.777938 mode=downhill new step= 0.75 predicted energy= -379.777946 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 -------- Step 2 -------- - - + + Geometry "geometry" -> "geometry" --------------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.22732917 1.39305854 0.00000000 - 2 C 6.0000 -0.22732917 -1.39305854 0.00000000 - 3 C 6.0000 1.28858843 0.48600769 0.00000000 - 4 C 6.0000 -1.28858843 -0.48600769 0.00000000 - 5 C 6.0000 1.06914018 -0.87777231 0.00000000 - 6 C 6.0000 -1.06914018 0.87777231 0.00000000 - 7 H 1.0000 2.30367325 0.86178163 0.00000000 - 8 H 1.0000 -2.30367325 -0.86178163 0.00000000 - 9 H 1.0000 1.91655776 -1.54917176 0.00000000 - 10 H 1.0000 -1.91655776 1.54917176 0.00000000 - 11 C 6.0000 -0.52199569 -2.85909407 0.00000000 - 12 C 6.0000 0.52199569 2.85909407 0.00000000 - 13 H 1.0000 -1.57886575 -3.10088744 0.00000000 - 14 H 1.0000 1.57886575 3.10088744 0.00000000 - 15 C 6.0000 0.35280577 -3.84018325 0.00000000 - 16 C 6.0000 -0.35280577 3.84018325 0.00000000 - 17 H 1.0000 1.42049667 -3.67659448 0.00000000 - 18 H 1.0000 -1.42049667 3.67659448 0.00000000 - 19 H 1.0000 0.03597626 -4.87351790 0.00000000 - 20 H 1.0000 -0.03597626 4.87351790 0.00000000 - + 1 C 6.0000 0.22732703 1.39305994 0.00000000 + 2 C 6.0000 -0.22732703 -1.39305994 0.00000000 + 3 C 6.0000 1.28858813 0.48600962 0.00000000 + 4 C 6.0000 -1.28858813 -0.48600962 0.00000000 + 5 C 6.0000 1.06914242 -0.87777125 0.00000000 + 6 C 6.0000 -1.06914242 0.87777125 0.00000000 + 7 H 1.0000 2.30367289 0.86178527 0.00000000 + 8 H 1.0000 -2.30367289 -0.86178527 0.00000000 + 9 H 1.0000 1.91656174 -1.54916938 0.00000000 + 10 H 1.0000 -1.91656174 1.54916938 0.00000000 + 11 C 6.0000 -0.52199385 -2.85909544 0.00000000 + 12 C 6.0000 0.52199385 2.85909544 0.00000000 + 13 H 1.0000 -1.57886435 -3.10088834 0.00000000 + 14 H 1.0000 1.57886435 3.10088834 0.00000000 + 15 C 6.0000 0.35280473 -3.84018665 0.00000000 + 16 C 6.0000 -0.35280473 3.84018665 0.00000000 + 17 H 1.0000 1.42049646 -3.67660073 0.00000000 + 18 H 1.0000 -1.42049646 3.67660073 0.00000000 + 19 H 1.0000 0.03597108 -4.87352047 0.00000000 + 20 H 1.0000 -0.03597108 4.87352047 0.00000000 + Atomic Mass ----------- - + C 12.000000 H 1.007825 + - - Effective nuclear repulsion energy (a.u.) 452.1594995009 + Effective nuclear repulsion energy (a.u.) 452.1592762032 Nuclear Dipole moment (a.u.) ---------------------------- X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - + NWChem SCF Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + ao basis = "ao basis" functions = 60 @@ -3201,30 +3258,30 @@ Divinylbenzene in STO-3G basis set Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 + - - Forming initial guess at 13.8s + Forming initial guess at 3.0s Loading old vectors from job with title : Divinylbenzene in STO-3G basis set - + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -3234,9 +3291,9 @@ Divinylbenzene in STO-3G basis set 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag + - - Starting SCF solution at 13.8s + Starting SCF solution at 3.0s @@ -3249,33 +3306,45 @@ Divinylbenzene in STO-3G basis set ---------------------------------------------- + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507878 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.173D+05 #integrals = 3.523D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 + + iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7779448102 2.79D-03 6.26D-04 14.2 - 2 -379.7779455281 8.28D-06 3.07D-06 15.8 + 1 -379.7779457972 2.79D-03 6.27D-04 3.0 + 2 -379.7779460159 2.12D-05 5.22D-06 3.1 Final RHF results ------------------ - Total SCF energy = -379.777945528147 - One-electron energy = -1412.222747248014 - Two-electron energy = 580.285302218974 - Nuclear repulsion energy = 452.159499500893 - - Time for solution = 2.0s + Total SCF energy = -379.777946015928 + One-electron energy = -1412.222317389933 + Two-electron energy = 580.285095170793 + Nuclear repulsion energy = 452.159276203212 + Time for solution = 0.3s + Symmetry analysis of molecular orbitals - final ----------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -3285,7 +3354,7 @@ Divinylbenzene in STO-3G basis set 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag - + Final eigenvalues ----------------- @@ -3335,334 +3404,334 @@ Divinylbenzene in STO-3G basis set 43 0.6326 44 0.6355 45 0.6823 - + ROHF Final Molecular Orbital Analysis ------------------------------------- - + Vector 11 Occ=2.000000D+00 E=-1.106855D+00 Symmetry=ag - MO Center= -1.2D-17, -9.9D-17, 4.1D-37, r^2= 2.8D+00 + MO Center= 3.6D-18, -1.6D-17, -1.7D-22, r^2= 2.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.270978 1 C s 7 0.270978 2 C s 12 0.245779 3 C s 17 0.245779 4 C s - 22 0.245678 5 C s 27 0.245678 6 C s - - Vector 12 Occ=2.000000D+00 E=-1.031754D+00 Symmetry=bu - MO Center= 8.7D-18, -5.9D-17, 2.5D-23, r^2= 7.9D+00 + 22 0.245679 5 C s 27 0.245679 6 C s + + Vector 12 Occ=2.000000D+00 E=-1.031755D+00 Symmetry=bu + MO Center= -8.6D-18, 3.0D-17, -7.3D-37, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.295180 11 C s 41 -0.295180 12 C s - 2 -0.265048 1 C s 7 0.265048 2 C s + 36 0.295181 11 C s 41 -0.295181 12 C s + 2 -0.265047 1 C s 7 0.265047 2 C s 48 0.215657 15 C s 53 -0.215657 16 C s - - Vector 13 Occ=2.000000D+00 E=-9.883569D-01 Symmetry=ag - MO Center= 5.1D-19, 1.2D-17, -4.8D-20, r^2= 1.1D+01 + + Vector 13 Occ=2.000000D+00 E=-9.883568D-01 Symmetry=ag + MO Center= -2.9D-18, 1.2D-16, -9.3D-36, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.313178 11 C s 41 0.313178 12 C s - 48 0.309219 15 C s 53 0.309219 16 C s - - Vector 14 Occ=2.000000D+00 E=-9.610805D-01 Symmetry=bu - MO Center= 6.4D-17, -2.8D-17, -7.9D-26, r^2= 3.0D+00 + 48 0.309220 15 C s 53 0.309220 16 C s + + Vector 14 Occ=2.000000D+00 E=-9.610798D-01 Symmetry=bu + MO Center= 5.6D-17, 4.5D-17, 1.2D-23, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.354078 3 C s 17 -0.354078 4 C s - 22 0.321042 5 C s 27 -0.321042 6 C s - - Vector 15 Occ=2.000000D+00 E=-9.227201D-01 Symmetry=bu - MO Center= -2.5D-17, 2.0D-16, -3.0D-21, r^2= 8.4D+00 + 22 0.321041 5 C s 27 -0.321041 6 C s + + Vector 15 Occ=2.000000D+00 E=-9.227190D-01 Symmetry=bu + MO Center= -1.8D-17, -1.0D-16, 5.6D-37, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.283312 15 C s 53 -0.283312 16 C s + 48 0.283311 15 C s 53 -0.283311 16 C s 2 0.279457 1 C s 7 -0.279457 2 C s - 22 -0.200175 5 C s 27 0.200175 6 C s - - Vector 16 Occ=2.000000D+00 E=-8.065741D-01 Symmetry=ag - MO Center= -6.2D-17, -2.5D-16, 3.0D-34, r^2= 8.0D+00 + 22 -0.200177 5 C s 27 0.200177 6 C s + + Vector 16 Occ=2.000000D+00 E=-8.065744D-01 Symmetry=ag + MO Center= 1.4D-17, 3.7D-16, -1.1D-20, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.233233 5 C s 27 0.233233 6 C s - 48 0.226749 15 C s 53 0.226749 16 C s - 2 -0.207419 1 C s 7 -0.207419 2 C s + 22 0.233234 5 C s 27 0.233234 6 C s + 48 0.226747 15 C s 53 0.226747 16 C s + 2 -0.207417 1 C s 7 -0.207417 2 C s 14 -0.166951 3 C py 19 0.166951 4 C py 36 -0.156251 11 C s 41 -0.156251 12 C s - - Vector 17 Occ=2.000000D+00 E=-7.714322D-01 Symmetry=ag - MO Center= 2.8D-17, -1.6D-16, 1.3D-19, r^2= 4.9D+00 + + Vector 17 Occ=2.000000D+00 E=-7.714319D-01 Symmetry=ag + MO Center= 9.2D-17, 1.3D-16, 1.2D-21, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.319439 3 C s 17 0.319439 4 C s - 3 0.189423 1 C px 8 -0.189423 2 C px - 24 0.174134 5 C py 29 -0.174134 6 C py + 3 0.189421 1 C px 8 -0.189421 2 C px + 24 0.174135 5 C py 29 -0.174135 6 C py 31 0.172043 7 H s 32 0.172043 8 H s - 22 -0.165453 5 C s 27 -0.165453 6 C s - - Vector 18 Occ=2.000000D+00 E=-7.330413D-01 Symmetry=bu - MO Center= -9.6D-17, 4.6D-17, -3.2D-22, r^2= 1.2D+01 + 22 -0.165451 5 C s 27 -0.165451 6 C s + + Vector 18 Occ=2.000000D+00 E=-7.330410D-01 Symmetry=bu + MO Center= -1.4D-17, -7.8D-16, -1.1D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.293399 11 C s 41 -0.293399 12 C s - 48 -0.246702 15 C s 53 0.246702 16 C s - 45 0.177450 13 H s 46 -0.177450 14 H s + 36 0.293398 11 C s 41 -0.293398 12 C s + 48 -0.246703 15 C s 53 0.246703 16 C s + 45 0.177451 13 H s 46 -0.177451 14 H s 57 -0.166288 17 H s 58 0.166288 18 H s - - Vector 19 Occ=2.000000D+00 E=-7.072524D-01 Symmetry=ag - MO Center= 4.6D-18, -2.8D-17, 2.5D-20, r^2= 7.7D+00 + + Vector 19 Occ=2.000000D+00 E=-7.072519D-01 Symmetry=ag + MO Center= -9.4D-18, -4.1D-18, -1.9D-34, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.196161 5 C px 28 -0.196161 6 C px 36 0.180242 11 C s 41 0.180242 12 C s - 13 0.178369 3 C px 18 -0.178369 4 C px - 33 0.171346 9 H s 34 0.171346 10 H s - 48 -0.162779 15 C s 53 -0.162779 16 C s - - Vector 20 Occ=2.000000D+00 E=-6.393087D-01 Symmetry=ag - MO Center= 4.6D-16, -2.0D-15, 3.0D-18, r^2= 9.3D+00 + 13 0.178370 3 C px 18 -0.178370 4 C px + 33 0.171347 9 H s 34 0.171347 10 H s + 48 -0.162778 15 C s 53 -0.162778 16 C s + + Vector 20 Occ=2.000000D+00 E=-6.393082D-01 Symmetry=ag + MO Center= 3.3D-17, 1.1D-16, 4.6D-23, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.210370 15 C px 54 -0.210370 16 C px - 38 0.182590 11 C py 43 -0.182590 12 C py - 57 0.182009 17 H s 58 0.182009 18 H s + 49 0.210371 15 C px 54 -0.210371 16 C px + 38 0.182588 11 C py 43 -0.182588 12 C py + 57 0.182010 17 H s 58 0.182010 18 H s 45 -0.153917 13 H s 46 -0.153917 14 H s - - Vector 21 Occ=2.000000D+00 E=-6.152355D-01 Symmetry=bu - MO Center= -3.2D-16, 4.1D-15, -4.5D-33, r^2= 1.0D+01 + + Vector 21 Occ=2.000000D+00 E=-6.152351D-01 Symmetry=bu + MO Center= 5.8D-17, -3.1D-16, 4.2D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.215743 11 C px 42 0.215743 12 C px - 50 0.214997 15 C py 55 0.214997 16 C py - 14 0.188243 3 C py 19 0.188243 4 C py - 59 -0.187676 19 H s 60 0.187676 20 H s - 45 -0.156210 13 H s 46 0.156210 14 H s - - Vector 22 Occ=2.000000D+00 E=-5.776716D-01 Symmetry=bu - MO Center= -5.4D-16, 1.1D-15, 3.8D-32, r^2= 6.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 33 0.234996 9 H s 34 -0.234996 10 H s - 31 -0.233771 7 H s 32 0.233771 8 H s - 13 -0.226610 3 C px 18 -0.226610 4 C px - 2 0.221247 1 C s 7 -0.221247 2 C s - 24 -0.179144 5 C py 29 -0.179144 6 C py - - Vector 23 Occ=2.000000D+00 E=-5.638585D-01 Symmetry=bu - MO Center= 3.6D-16, -2.8D-15, 2.8D-32, r^2= 8.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 0.257226 5 C px 28 0.257226 6 C px - 49 0.246429 15 C px 54 0.246429 16 C px - 3 -0.217027 1 C px 8 -0.217027 2 C px - 57 0.214860 17 H s 58 -0.214860 18 H s - 38 0.173248 11 C py 43 0.173248 12 C py - - Vector 24 Occ=2.000000D+00 E=-5.628602D-01 Symmetry=ag - MO Center= -1.2D-17, 4.1D-17, -2.0D-20, r^2= 1.4D+01 + 50 0.214998 15 C py 55 0.214998 16 C py + 14 0.188242 3 C py 19 0.188242 4 C py + 59 -0.187677 19 H s 60 0.187677 20 H s + 45 -0.156209 13 H s 46 0.156209 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.776710D-01 Symmetry=bu + MO Center= -3.0D-16, 6.9D-17, 1.9D-18, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.234997 9 H s 34 -0.234997 10 H s + 31 -0.233769 7 H s 32 0.233769 8 H s + 13 -0.226608 3 C px 18 -0.226608 4 C px + 2 0.221251 1 C s 7 -0.221251 2 C s + 24 -0.179142 5 C py 29 -0.179142 6 C py + + Vector 23 Occ=2.000000D+00 E=-5.638582D-01 Symmetry=bu + MO Center= 8.0D-19, 4.9D-17, 7.6D-36, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.257224 5 C px 28 0.257224 6 C px + 49 0.246430 15 C px 54 0.246430 16 C px + 3 -0.217026 1 C px 8 -0.217026 2 C px + 57 0.214861 17 H s 58 -0.214861 18 H s + 38 0.173250 11 C py 43 0.173250 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.628598D-01 Symmetry=ag + MO Center= -7.8D-17, 3.1D-16, -9.5D-20, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.338156 15 C py 55 -0.338156 16 C py - 59 -0.265290 19 H s 60 -0.265290 20 H s - 37 0.252239 11 C px 42 -0.252239 12 C px + 59 -0.265289 19 H s 60 -0.265289 20 H s + 37 0.252238 11 C px 42 -0.252238 12 C px 45 -0.152103 13 H s 46 -0.152103 14 H s - - Vector 25 Occ=2.000000D+00 E=-5.325898D-01 Symmetry=bu - MO Center= -1.6D-16, -1.4D-16, -3.7D-24, r^2= 4.3D+00 + + Vector 25 Occ=2.000000D+00 E=-5.325889D-01 Symmetry=bu + MO Center= -2.5D-17, 7.9D-18, 2.5D-21, r^2= 4.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.304285 3 C px 18 0.304285 4 C px - 31 0.256085 7 H s 32 -0.256085 8 H s - 24 -0.227529 5 C py 29 -0.227529 6 C py + 13 0.304286 3 C px 18 0.304286 4 C px + 31 0.256086 7 H s 32 -0.256086 8 H s + 24 -0.227528 5 C py 29 -0.227528 6 C py 33 0.221271 9 H s 34 -0.221271 10 H s - 23 0.186533 5 C px 28 0.186533 6 C px - - Vector 26 Occ=2.000000D+00 E=-5.072878D-01 Symmetry=bu - MO Center= 3.5D-16, 1.9D-16, -5.1D-27, r^2= 8.8D+00 + 23 0.186535 5 C px 28 0.186535 6 C px + + Vector 26 Occ=2.000000D+00 E=-5.072873D-01 Symmetry=bu + MO Center= 1.4D-17, 1.8D-16, 5.0D-22, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.239032 15 C py 55 -0.239032 16 C py - 14 0.224752 3 C py 19 0.224752 4 C py + 14 0.224753 3 C py 19 0.224753 4 C py 37 -0.209605 11 C px 42 -0.209605 12 C px - 24 -0.189266 5 C py 29 -0.189266 6 C py - 38 0.188285 11 C py 43 0.188285 12 C py - - Vector 27 Occ=2.000000D+00 E=-4.981441D-01 Symmetry=ag - MO Center= -4.4D-17, -1.8D-16, 5.4D-20, r^2= 1.2D+01 + 24 -0.189267 5 C py 29 -0.189267 6 C py + 38 0.188283 11 C py 43 0.188283 12 C py + + Vector 27 Occ=2.000000D+00 E=-4.981434D-01 Symmetry=ag + MO Center= -9.4D-19, -1.6D-16, -3.5D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.296228 15 C px 54 -0.296228 16 C px - 57 0.268762 17 H s 58 0.268762 18 H s + 49 0.296227 15 C px 54 -0.296227 16 C px + 57 0.268760 17 H s 58 0.268760 18 H s 37 -0.206923 11 C px 42 0.206923 12 C px 45 0.202023 13 H s 46 0.202023 14 H s - 31 -0.156812 7 H s 32 -0.156812 8 H s - - Vector 28 Occ=2.000000D+00 E=-4.774326D-01 Symmetry=au - MO Center= 2.2D-17, -2.0D-18, -8.4D-18, r^2= 3.4D+00 + 31 -0.156815 7 H s 32 -0.156815 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.774320D-01 Symmetry=au + MO Center= 1.3D-17, 2.1D-17, 1.3D-20, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.328851 1 C pz 10 0.328851 2 C pz 15 0.302058 3 C pz 20 0.302058 4 C pz 25 0.301287 5 C pz 30 0.301287 6 C pz 39 0.158952 11 C pz 44 0.158952 12 C pz - - Vector 29 Occ=2.000000D+00 E=-4.490108D-01 Symmetry=bu - MO Center= -2.1D-16, 2.0D-16, -4.7D-23, r^2= 1.2D+01 + + Vector 29 Occ=2.000000D+00 E=-4.490109D-01 Symmetry=bu + MO Center= 6.4D-18, -6.0D-17, 5.6D-36, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.255859 13 H s 46 -0.255859 14 H s - 4 0.248393 1 C py 9 0.248393 2 C py + 4 0.248395 1 C py 9 0.248395 2 C py 57 0.227470 17 H s 58 -0.227470 18 H s - 59 -0.218085 19 H s 60 0.218085 20 H s + 59 -0.218084 19 H s 60 0.218084 20 H s 37 -0.213223 11 C px 42 -0.213223 12 C px - - Vector 30 Occ=2.000000D+00 E=-4.258767D-01 Symmetry=ag - MO Center= 4.9D-17, -1.0D-16, -1.3D-20, r^2= 4.9D+00 + + Vector 30 Occ=2.000000D+00 E=-4.258775D-01 Symmetry=ag + MO Center= 4.2D-18, 2.0D-17, -9.9D-21, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 33 0.282547 9 H s 34 0.282547 10 H s - 3 0.246247 1 C px 8 -0.246247 2 C px - 14 0.224428 3 C py 19 -0.224428 4 C py - 13 -0.221891 3 C px 18 0.221891 4 C px - 4 -0.205730 1 C py 9 0.205730 2 C py - - Vector 31 Occ=2.000000D+00 E=-4.185091D-01 Symmetry=ag - MO Center= -2.9D-17, -3.0D-16, 1.5D-20, r^2= 7.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 31 -0.221572 7 H s 32 -0.221572 8 H s - 23 0.215036 5 C px 28 -0.215036 6 C px - 3 0.211309 1 C px 8 -0.211309 2 C px - 38 0.211758 11 C py 43 -0.211758 12 C py - 4 0.207747 1 C py 9 -0.207747 2 C py - - Vector 32 Occ=2.000000D+00 E=-3.867881D-01 Symmetry=bg - MO Center= 1.4D-19, -1.6D-18, -1.6D-23, r^2= 8.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 0.381581 11 C pz 44 -0.381581 12 C pz - 5 -0.312872 1 C pz 10 0.312872 2 C pz + 3 0.246244 1 C px 8 -0.246244 2 C px + 14 0.224430 3 C py 19 -0.224430 4 C py + 13 -0.221888 3 C px 18 0.221888 4 C px + 4 -0.205734 1 C py 9 0.205734 2 C py + + Vector 31 Occ=2.000000D+00 E=-4.185098D-01 Symmetry=ag + MO Center= 1.8D-16, 4.4D-16, 1.7D-19, r^2= 7.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.221574 7 H s 32 -0.221574 8 H s + 23 0.215038 5 C px 28 -0.215038 6 C px + 3 0.211312 1 C px 8 -0.211312 2 C px + 38 0.211755 11 C py 43 -0.211755 12 C py + 4 0.207743 1 C py 9 -0.207743 2 C py + + Vector 32 Occ=2.000000D+00 E=-3.867880D-01 Symmetry=bg + MO Center= 0.0D+00, 0.0D+00, 4.6D-19, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.381582 11 C pz 44 -0.381582 12 C pz + 5 -0.312871 1 C pz 10 0.312871 2 C pz 51 0.309808 15 C pz 56 -0.309808 16 C pz - + Vector 33 Occ=2.000000D+00 E=-3.266843D-01 Symmetry=au - MO Center= -1.3D-17, -8.4D-16, -5.6D-17, r^2= 1.1D+01 + MO Center= 1.4D-17, -4.2D-17, -4.1D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.426239 15 C pz 56 0.426239 16 C pz 39 0.415134 11 C pz 44 0.415134 12 C pz 15 -0.158487 3 C pz 20 -0.158487 4 C pz - 25 -0.158688 5 C pz 30 -0.158688 6 C pz - - Vector 34 Occ=2.000000D+00 E=-2.858026D-01 Symmetry=bg - MO Center= -3.2D-17, 1.4D-17, 3.7D-23, r^2= 2.6D+00 + 25 -0.158689 5 C pz 30 -0.158689 6 C pz + + Vector 34 Occ=2.000000D+00 E=-2.858023D-01 Symmetry=bg + MO Center= -2.1D-17, -1.1D-17, -8.7D-20, r^2= 2.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.458789 3 C pz 20 -0.458789 4 C pz 25 0.460961 5 C pz 30 -0.460961 6 C pz - - Vector 35 Occ=2.000000D+00 E=-2.330449D-01 Symmetry=bg - MO Center= -4.0D-17, 1.9D-16, 3.8D-21, r^2= 6.9D+00 + + Vector 35 Occ=2.000000D+00 E=-2.330446D-01 Symmetry=bg + MO Center= 2.7D-17, 1.1D-16, -1.4D-21, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.420343 1 C pz 10 -0.420343 2 C pz - 51 0.351162 15 C pz 56 -0.351162 16 C pz - 15 0.233817 3 C pz 20 -0.233817 4 C pz - 25 -0.231486 5 C pz 30 0.231486 6 C pz - 39 0.217043 11 C pz 44 -0.217043 12 C pz - - Vector 36 Occ=0.000000D+00 E= 2.066171D-01 Symmetry=au - MO Center= -3.1D-17, -1.3D-16, -6.3D-19, r^2= 7.1D+00 + 5 0.420344 1 C pz 10 -0.420344 2 C pz + 51 0.351161 15 C pz 56 -0.351161 16 C pz + 15 0.233818 3 C pz 20 -0.233818 4 C pz + 25 -0.231485 5 C pz 30 0.231485 6 C pz + 39 0.217042 11 C pz 44 -0.217042 12 C pz + + Vector 36 Occ=0.000000D+00 E= 2.066170D-01 Symmetry=au + MO Center= -6.7D-18, -1.5D-16, 5.2D-20, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.478780 1 C pz 10 0.478780 2 C pz - 51 -0.411572 15 C pz 56 -0.411572 16 C pz - 25 -0.283913 5 C pz 30 -0.283913 6 C pz - 15 -0.250567 3 C pz 20 -0.250567 4 C pz + 51 -0.411571 15 C pz 56 -0.411571 16 C pz + 25 -0.283914 5 C pz 30 -0.283914 6 C pz + 15 -0.250566 3 C pz 20 -0.250566 4 C pz 39 0.249875 11 C pz 44 0.249875 12 C pz - + Vector 37 Occ=0.000000D+00 E= 2.733630D-01 Symmetry=au - MO Center= 2.4D-16, -3.7D-17, 1.4D-17, r^2= 2.7D+00 + MO Center= 5.6D-17, -6.3D-18, 3.2D-19, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.583625 3 C pz 20 0.583625 4 C pz - 25 -0.560124 5 C pz 30 -0.560124 6 C pz - - Vector 38 Occ=0.000000D+00 E= 3.183161D-01 Symmetry=bg - MO Center= -3.4D-17, -4.2D-16, 1.8D-22, r^2= 1.1D+01 + 25 -0.560123 5 C pz 30 -0.560123 6 C pz + + Vector 38 Occ=0.000000D+00 E= 3.183163D-01 Symmetry=bg + MO Center= 6.0D-17, -7.9D-18, 1.6D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.537558 15 C pz 56 0.537558 16 C pz - 39 0.531735 11 C pz 44 -0.531735 12 C pz - 15 0.221793 3 C pz 20 -0.221793 4 C pz + 39 0.531734 11 C pz 44 -0.531734 12 C pz + 15 0.221794 3 C pz 20 -0.221794 4 C pz 25 -0.216143 5 C pz 30 0.216143 6 C pz - - Vector 39 Occ=0.000000D+00 E= 4.059817D-01 Symmetry=au - MO Center= -5.9D-16, -6.7D-15, 1.1D-15, r^2= 8.4D+00 + + Vector 39 Occ=0.000000D+00 E= 4.059818D-01 Symmetry=au + MO Center= -2.5D-17, 1.6D-16, 2.8D-19, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 0.539289 11 C pz 44 0.539289 12 C pz - 5 -0.472842 1 C pz 10 -0.472842 2 C pz + 39 0.539290 11 C pz 44 0.539290 12 C pz + 5 -0.472841 1 C pz 10 -0.472841 2 C pz 51 -0.415749 15 C pz 56 -0.415749 16 C pz - 25 0.189783 5 C pz 30 0.189783 6 C pz + 25 0.189782 5 C pz 30 0.189782 6 C pz 15 0.162189 3 C pz 20 0.162189 4 C pz - - Vector 40 Occ=0.000000D+00 E= 5.376635D-01 Symmetry=bg - MO Center= 7.3D-16, 7.0D-15, 3.3D-22, r^2= 3.7D+00 + + Vector 40 Occ=0.000000D+00 E= 5.376631D-01 Symmetry=bg + MO Center= 1.7D-17, 9.1D-17, -4.1D-18, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.545530 1 C pz 10 -0.545530 2 C pz + 5 0.545529 1 C pz 10 -0.545529 2 C pz 25 0.479627 5 C pz 30 -0.479627 6 C pz 15 -0.477217 3 C pz 20 0.477217 4 C pz - 39 0.274930 11 C pz 44 -0.274930 12 C pz + 39 0.274931 11 C pz 44 -0.274931 12 C pz 51 -0.157896 15 C pz 56 0.157896 16 C pz - - Vector 41 Occ=0.000000D+00 E= 5.688888D-01 Symmetry=ag - MO Center= -1.1D-16, 4.3D-18, -3.0D-16, r^2= 8.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 31 -0.417911 7 H s 32 -0.417911 8 H s - 33 -0.417331 9 H s 34 -0.417331 10 H s - 2 0.397679 1 C s 7 0.397679 2 C s - 59 -0.351617 19 H s 60 -0.351617 20 H s - 38 -0.348660 11 C py 43 0.348660 12 C py - - Vector 42 Occ=0.000000D+00 E= 5.832028D-01 Symmetry=bu - MO Center= -2.9D-16, -8.1D-17, -5.3D-23, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.434528 13 H s 46 -0.434528 14 H s - 37 0.355846 11 C px 42 0.355846 12 C px - 13 0.341721 3 C px 18 0.341721 4 C px - 57 -0.335664 17 H s 58 0.335664 18 H s - 59 0.319218 19 H s 60 -0.319218 20 H s - - Vector 43 Occ=0.000000D+00 E= 6.326188D-01 Symmetry=bu - MO Center= -3.1D-16, 7.8D-16, -1.5D-23, r^2= 6.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.532744 11 C s 41 -0.532744 12 C s - 33 0.460284 9 H s 34 -0.460284 10 H s - 4 0.457470 1 C py 9 0.457470 2 C py - 24 0.333410 5 C py 29 0.333410 6 C py - 38 0.323092 11 C py 43 0.323092 12 C py - - Vector 44 Occ=0.000000D+00 E= 6.355288D-01 Symmetry=ag - MO Center= -4.9D-17, -1.1D-16, 2.7D-16, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.586286 13 H s 46 0.586286 14 H s - 36 -0.410084 11 C s 41 -0.410084 12 C s - 12 0.386826 3 C s 17 0.386826 4 C s - 57 -0.388259 17 H s 58 -0.388259 18 H s - 37 0.339564 11 C px 42 -0.339564 12 C px - - Vector 45 Occ=0.000000D+00 E= 6.822893D-01 Symmetry=ag - MO Center= 2.5D-17, -8.0D-17, -8.0D-19, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.722460 15 C s 53 0.722460 16 C s - 22 0.571523 5 C s 27 0.571523 6 C s - 57 -0.558256 17 H s 58 -0.558256 18 H s - 12 -0.417705 3 C s 17 -0.417705 4 C s - 59 -0.378092 19 H s 60 -0.378092 20 H s - + + Vector 41 Occ=0.000000D+00 E= 5.688910D-01 Symmetry=ag + MO Center= 6.6D-17, 1.2D-16, 4.1D-21, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.417897 7 H s 32 -0.417897 8 H s + 33 -0.417311 9 H s 34 -0.417311 10 H s + 2 0.397697 1 C s 7 0.397697 2 C s + 59 -0.351622 19 H s 60 -0.351622 20 H s + 38 -0.348667 11 C py 43 0.348667 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.832026D-01 Symmetry=bu + MO Center= 1.3D-17, 5.6D-17, 2.8D-22, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.434524 13 H s 46 -0.434524 14 H s + 37 0.355849 11 C px 42 0.355849 12 C px + 13 0.341731 3 C px 18 0.341731 4 C px + 57 -0.335652 17 H s 58 0.335652 18 H s + 59 0.319213 19 H s 60 -0.319213 20 H s + + Vector 43 Occ=0.000000D+00 E= 6.326170D-01 Symmetry=bu + MO Center= -4.9D-17, 9.9D-17, -5.2D-22, r^2= 6.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.532708 11 C s 41 -0.532708 12 C s + 33 0.460301 9 H s 34 -0.460301 10 H s + 4 0.457464 1 C py 9 0.457464 2 C py + 24 0.333418 5 C py 29 0.333418 6 C py + 38 0.323095 11 C py 43 0.323095 12 C py + + Vector 44 Occ=0.000000D+00 E= 6.355275D-01 Symmetry=ag + MO Center= -1.8D-16, -5.0D-16, -5.1D-21, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.586287 13 H s 46 0.586287 14 H s + 36 -0.410106 11 C s 41 -0.410106 12 C s + 12 0.386825 3 C s 17 0.386825 4 C s + 57 -0.388242 17 H s 58 -0.388242 18 H s + 37 0.339558 11 C px 42 -0.339558 12 C px + + Vector 45 Occ=0.000000D+00 E= 6.822890D-01 Symmetry=ag + MO Center= 1.3D-17, 3.2D-16, 1.2D-20, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.722469 15 C s 53 0.722469 16 C s + 22 0.571519 5 C s 27 0.571519 6 C s + 57 -0.558260 17 H s 58 -0.558260 18 H s + 12 -0.417703 3 C s 17 -0.417703 4 C s + 59 -0.378101 19 H s 60 -0.378101 20 H s + center of mass -------------- @@ -3670,10 +3739,10 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2577.185682164691 -1.481961762453 0.000000000000 - -1.481961762453 375.843170965665 0.000000000000 - 0.000000000000 0.000000000000 2953.028853130355 - + 2577.189474434637 -1.481862183220 0.000000000000 + -1.481862183220 375.843264681391 0.000000000000 + 0.000000000000 0.000000000000 2953.032739116028 + Mulliken analysis of the total density -------------------------------------- @@ -3699,31 +3768,34 @@ Divinylbenzene in STO-3G basis set 18 H 1 0.94 0.94 19 H 1 0.94 0.94 20 H 1 0.94 0.94 - + Multipole analysis of the density wrt the origin ------------------------------------------------ - + L x y z total open nuclear - - - - ----- ---- ------- 0 0 0 0 -0.000000 0.000000 70.000000 - + 1 1 0 0 0.000000 0.000000 0.000000 1 0 1 0 -0.000000 0.000000 0.000000 - 1 0 0 1 0.000000 0.000000 0.000000 + 1 0 0 1 -0.000000 0.000000 0.000000 + + 2 2 0 0 -38.502741 0.000000 235.725539 + 2 1 1 0 0.101398 0.000000 -4.523542 + 2 1 0 1 -0.000000 0.000000 0.000000 + 2 0 2 0 -39.159478 0.000000 1465.845385 + 2 0 1 1 0.000000 0.000000 0.000000 + 2 0 0 2 -43.440847 0.000000 0.000000 + - 2 2 0 0 -38.502762 0.000000 235.725463 - 2 1 1 0 0.101402 0.000000 -4.523565 - 2 1 0 1 0.000000 0.000000 0.000000 - 2 0 2 0 -39.159494 0.000000 1465.843222 - 2 0 1 1 -0.000000 0.000000 0.000000 - 2 0 0 2 -43.440842 0.000000 0.000000 + Parallel integral file used 9 records with 0 large values NWChem Gradients Module ----------------------- - - + + Divinylbenzene in STO-3G basis set - + wavefunction = RHF @@ -3734,39 +3806,39 @@ Divinylbenzene in STO-3G basis set atom coordinates gradient x y z x y z - 1 C 0.429590 2.632499 0.000000 -0.000188 0.000670 0.000000 - 2 C -0.429590 -2.632499 0.000000 0.000188 -0.000670 0.000000 - 3 C 2.435079 0.918421 0.000000 -0.000241 -0.000683 0.000000 - 4 C -2.435079 -0.918421 0.000000 0.000241 0.000683 0.000000 - 5 C 2.020382 -1.658749 0.000000 0.000155 0.000899 0.000000 - 6 C -2.020382 1.658749 0.000000 -0.000155 -0.000899 0.000000 - 7 H 4.353311 1.628531 0.000000 -0.000219 0.000076 0.000000 - 8 H -4.353311 -1.628531 0.000000 0.000219 -0.000076 0.000000 - 9 H 3.621769 -2.927510 0.000000 -0.000354 -0.000177 0.000000 - 10 H -3.621769 2.927510 0.000000 0.000354 0.000177 0.000000 - 11 C -0.986429 -5.402904 0.000000 -0.000821 0.001737 0.000000 - 12 C 0.986429 5.402904 0.000000 0.000821 -0.001737 0.000000 - 13 H -2.983624 -5.859828 0.000000 0.000275 -0.000223 0.000000 - 14 H 2.983624 5.859828 0.000000 -0.000275 0.000223 0.000000 - 15 C 0.666706 -7.256894 0.000000 0.000945 -0.001692 0.000000 - 16 C -0.666706 7.256894 0.000000 -0.000945 0.001692 0.000000 - 17 H 2.684349 -6.947756 0.000000 -0.000288 0.000292 0.000000 - 18 H -2.684349 6.947756 0.000000 0.000288 -0.000292 0.000000 - 19 H 0.067985 -9.209613 0.000000 -0.000118 0.000298 0.000000 - 20 H -0.067985 9.209613 0.000000 0.000118 -0.000298 -0.000000 - + 1 C 0.429586 2.632502 0.000000 -0.000188 0.000671 0.000000 + 2 C -0.429586 -2.632502 0.000000 0.000188 -0.000671 0.000000 + 3 C 2.435078 0.918425 0.000000 -0.000241 -0.000683 0.000000 + 4 C -2.435078 -0.918425 0.000000 0.000241 0.000683 0.000000 + 5 C 2.020386 -1.658747 0.000000 0.000156 0.000899 0.000000 + 6 C -2.020386 1.658747 0.000000 -0.000156 -0.000899 0.000000 + 7 H 4.353311 1.628538 0.000000 -0.000218 0.000076 0.000000 + 8 H -4.353311 -1.628538 0.000000 0.000218 -0.000076 0.000000 + 9 H 3.621777 -2.927506 0.000000 -0.000354 -0.000177 0.000000 + 10 H -3.621777 2.927506 0.000000 0.000354 0.000177 0.000000 + 11 C -0.986425 -5.402907 0.000000 -0.000820 0.001736 0.000000 + 12 C 0.986425 5.402907 0.000000 0.000820 -0.001736 0.000000 + 13 H -2.983621 -5.859829 0.000000 0.000275 -0.000224 0.000000 + 14 H 2.983621 5.859829 0.000000 -0.000275 0.000224 0.000000 + 15 C 0.666704 -7.256901 0.000000 0.000945 -0.001691 0.000000 + 16 C -0.666704 7.256901 0.000000 -0.000945 0.001691 0.000000 + 17 H 2.684349 -6.947768 0.000000 -0.000288 0.000292 0.000000 + 18 H -2.684349 6.947768 0.000000 0.000288 -0.000292 0.000000 + 19 H 0.067975 -9.209618 0.000000 -0.000118 0.000298 0.000000 + 20 H -0.067975 9.209618 0.000000 0.000118 -0.000298 0.000000 + ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.00 | 0.55 | + | CPU | 0.00 | 0.31 | ---------------------------------------- - | WALL | 0.00 | 0.55 | + | WALL | 0.00 | 0.32 | ---------------------------------------- - no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.000000000000000E+000 Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 2 -379.77794553 -7.4D-05 0.00118 0.00023 0.00440 0.01818 16.4 +@ 2 -379.77794602 -7.4D-05 0.00118 0.00023 0.00440 0.01818 3.8 ok @@ -3775,7 +3847,7 @@ Divinylbenzene in STO-3G basis set -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value Gradient ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- 1 Stretch 1 3 1.39607 -0.00013 @@ -3798,88 +3870,88 @@ Divinylbenzene in STO-3G basis set 18 Stretch 15 19 1.08082 -0.00025 19 Stretch 16 18 1.08015 -0.00024 20 Stretch 16 20 1.08082 -0.00025 - 21 Bend 1 3 5 121.37907 0.00008 - 22 Bend 1 3 7 119.16569 -0.00012 - 23 Bend 1 6 4 120.81672 0.00003 - 24 Bend 1 6 10 119.93509 -0.00021 - 25 Bend 1 12 14 114.25126 0.00010 - 26 Bend 1 12 16 126.91301 0.00009 - 27 Bend 2 4 6 121.37907 0.00008 - 28 Bend 2 4 8 119.16569 -0.00012 - 29 Bend 2 5 3 120.81672 0.00003 - 30 Bend 2 5 9 119.93509 -0.00021 - 31 Bend 2 11 13 114.25126 0.00010 - 32 Bend 2 11 15 126.91301 0.00009 - 33 Bend 3 1 6 117.80420 -0.00011 - 34 Bend 3 1 12 119.15551 -0.00001 + 21 Bend 1 3 5 121.37912 0.00008 + 22 Bend 1 3 7 119.16567 -0.00012 + 23 Bend 1 6 4 120.81671 0.00003 + 24 Bend 1 6 10 119.93511 -0.00021 + 25 Bend 1 12 14 114.25124 0.00010 + 26 Bend 1 12 16 126.91315 0.00009 + 27 Bend 2 4 6 121.37912 0.00008 + 28 Bend 2 4 8 119.16567 -0.00012 + 29 Bend 2 5 3 120.81671 0.00003 + 30 Bend 2 5 9 119.93511 -0.00021 + 31 Bend 2 11 13 114.25124 0.00010 + 32 Bend 2 11 15 126.91315 0.00009 + 33 Bend 3 1 6 117.80418 -0.00011 + 34 Bend 3 1 12 119.15544 -0.00001 35 Bend 3 5 9 119.24818 0.00018 - 36 Bend 4 2 5 117.80420 -0.00011 - 37 Bend 4 2 11 119.15551 -0.00001 + 36 Bend 4 2 5 117.80418 -0.00011 + 37 Bend 4 2 11 119.15544 -0.00001 38 Bend 4 6 10 119.24818 0.00018 - 39 Bend 5 2 11 123.04028 0.00011 - 40 Bend 5 3 7 119.45524 0.00004 - 41 Bend 6 1 12 123.04028 0.00011 - 42 Bend 6 4 8 119.45524 0.00004 + 39 Bend 5 2 11 123.04039 0.00011 + 40 Bend 5 3 7 119.45522 0.00004 + 41 Bend 6 1 12 123.04039 0.00011 + 42 Bend 6 4 8 119.45522 0.00004 43 Bend 11 15 17 123.01126 -0.00017 - 44 Bend 11 15 19 121.23177 -0.00002 + 44 Bend 11 15 19 121.23170 -0.00002 45 Bend 12 16 18 123.01126 -0.00017 - 46 Bend 12 16 20 121.23177 -0.00002 - 47 Bend 13 11 15 118.83573 -0.00020 - 48 Bend 14 12 16 118.83573 -0.00020 - 49 Bend 17 15 19 115.75696 0.00019 - 50 Bend 18 16 20 115.75696 0.00019 - 51 Torsion 1 3 5 2 0.00000 -0.00000 - 52 Torsion 1 3 5 9 180.00000 -0.00000 - 53 Torsion 1 6 4 2 0.00000 -0.00000 + 46 Bend 12 16 20 121.23170 -0.00002 + 47 Bend 13 11 15 118.83561 -0.00020 + 48 Bend 14 12 16 118.83561 -0.00020 + 49 Bend 17 15 19 115.75703 0.00019 + 50 Bend 18 16 20 115.75703 0.00019 + 51 Torsion 1 3 5 2 0.00000 0.00000 + 52 Torsion 1 3 5 9 180.00000 0.00000 + 53 Torsion 1 6 4 2 0.00000 0.00000 54 Torsion 1 6 4 8 180.00000 0.00000 55 Torsion 1 12 16 18 0.00000 0.00000 56 Torsion 1 12 16 20 180.00000 0.00000 - 57 Torsion 2 4 6 10 180.00000 -0.00000 + 57 Torsion 2 4 6 10 180.00000 0.00000 58 Torsion 2 5 3 7 180.00000 0.00000 59 Torsion 2 11 15 17 0.00000 0.00000 60 Torsion 2 11 15 19 180.00000 0.00000 - 61 Torsion 3 1 6 4 0.00000 -0.00000 - 62 Torsion 3 1 6 10 180.00000 -0.00000 - 63 Torsion 3 1 12 14 0.00000 -0.00000 - 64 Torsion 3 1 12 16 180.00000 -0.00000 - 65 Torsion 3 5 2 4 0.00000 -0.00000 - 66 Torsion 3 5 2 11 180.00000 -0.00000 - 67 Torsion 4 2 5 9 180.00000 -0.00000 - 68 Torsion 4 2 11 13 0.00000 -0.00000 - 69 Torsion 4 2 11 15 180.00000 -0.00000 - 70 Torsion 4 6 1 12 180.00000 -0.00000 - 71 Torsion 5 2 4 6 -0.00000 0.00000 + 61 Torsion 3 1 6 4 0.00000 0.00000 + 62 Torsion 3 1 6 10 180.00000 0.00000 + 63 Torsion 3 1 12 14 0.00000 0.00000 + 64 Torsion 3 1 12 16 180.00000 0.00000 + 65 Torsion 3 5 2 4 0.00000 0.00000 + 66 Torsion 3 5 2 11 180.00000 0.00000 + 67 Torsion 4 2 5 9 180.00000 0.00000 + 68 Torsion 4 2 11 13 0.00000 0.00000 + 69 Torsion 4 2 11 15 180.00000 0.00000 + 70 Torsion 4 6 1 12 180.00000 0.00000 + 71 Torsion 5 2 4 6 0.00000 0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 73 Torsion 5 2 11 13 180.00000 0.00000 - 74 Torsion 5 2 11 15 0.00000 -0.00000 + 74 Torsion 5 2 11 15 0.00000 0.00000 75 Torsion 5 3 1 6 0.00000 0.00000 76 Torsion 5 3 1 12 180.00000 0.00000 77 Torsion 6 1 3 7 180.00000 0.00000 78 Torsion 6 1 12 14 180.00000 0.00000 - 79 Torsion 6 1 12 16 0.00000 -0.00000 + 79 Torsion 6 1 12 16 0.00000 0.00000 80 Torsion 6 4 2 11 180.00000 0.00000 - 81 Torsion 7 3 1 12 -0.00000 0.00000 + 81 Torsion 7 3 1 12 0.00000 0.00000 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 0.00000 - 84 Torsion 8 4 6 10 0.00000 -0.00000 - 85 Torsion 9 5 2 11 0.00000 -0.00000 - 86 Torsion 10 6 1 12 0.00000 -0.00000 - 87 Torsion 13 11 15 17 180.00000 -0.00000 - 88 Torsion 13 11 15 19 -0.00000 -0.00000 - 89 Torsion 14 12 16 18 180.00000 -0.00000 - 90 Torsion 14 12 16 20 -0.00000 0.00000 - - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 + 83 Torsion 8 4 2 11 0.00000 0.00000 + 84 Torsion 8 4 6 10 0.00000 0.00000 + 85 Torsion 9 5 2 11 0.00000 0.00000 + 86 Torsion 10 6 1 12 0.00000 0.00000 + 87 Torsion 13 11 15 17 180.00000 0.00000 + 88 Torsion 13 11 15 19 0.00000 0.00000 + 89 Torsion 14 12 16 18 180.00000 0.00000 + 90 Torsion 14 12 16 20 0.00000 0.00000 + + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 NWChem SCF Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + ao basis = "ao basis" functions = 60 @@ -3904,30 +3976,30 @@ Divinylbenzene in STO-3G basis set Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 + - - Forming initial guess at 16.5s + Forming initial guess at 3.8s Loading old vectors from job with title : Divinylbenzene in STO-3G basis set - + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -3937,9 +4009,9 @@ Divinylbenzene in STO-3G basis set 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag + - - Starting SCF solution at 16.5s + Starting SCF solution at 3.9s @@ -3952,33 +4024,45 @@ Divinylbenzene in STO-3G basis set ---------------------------------------------- + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507878 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.173D+05 #integrals = 3.523D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 + + iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7779533787 3.20D-03 7.92D-04 16.8 - 2 -379.7779544982 5.95D-06 1.69D-06 18.4 + 1 -379.7779543111 3.20D-03 7.92D-04 3.8 + 2 -379.7779550125 2.03D-05 5.29D-06 3.9 Final RHF results ------------------ - Total SCF energy = -379.777954498241 - One-electron energy = -1412.153829711762 - Two-electron energy = 580.252627249319 - Nuclear repulsion energy = 452.123247964202 - - Time for solution = 2.0s + Total SCF energy = -379.777955012529 + One-electron energy = -1412.153753739531 + Two-electron energy = 580.252590971147 + Nuclear repulsion energy = 452.123207755855 + Time for solution = 0.3s + Symmetry analysis of molecular orbitals - final ----------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -3988,7 +4072,7 @@ Divinylbenzene in STO-3G basis set 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag - + Final eigenvalues ----------------- @@ -4038,240 +4122,240 @@ Divinylbenzene in STO-3G basis set 43 0.6323 44 0.6349 45 0.6824 - + ROHF Final Molecular Orbital Analysis ------------------------------------- - + Vector 11 Occ=2.000000D+00 E=-1.106654D+00 Symmetry=ag - MO Center= -1.0D-17, -2.5D-17, 9.9D-24, r^2= 2.8D+00 + MO Center= -7.2D-18, 4.6D-17, -9.8D-23, r^2= 2.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.271039 1 C s 7 0.271039 2 C s - 12 0.245752 3 C s 17 0.245752 4 C s - 22 0.245632 5 C s 27 0.245632 6 C s - + 2 0.271040 1 C s 7 0.271040 2 C s + 12 0.245753 3 C s 17 0.245753 4 C s + 22 0.245633 5 C s 27 0.245633 6 C s + Vector 12 Occ=2.000000D+00 E=-1.031718D+00 Symmetry=bu - MO Center= 1.5D-17, -6.5D-17, 1.0D-38, r^2= 7.9D+00 + MO Center= 5.5D-19, -2.8D-17, 1.0D-21, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.295358 11 C s 41 -0.295358 12 C s + 36 0.295359 11 C s 41 -0.295359 12 C s 2 -0.264621 1 C s 7 0.264621 2 C s - 48 0.216120 15 C s 53 -0.216120 16 C s - + 48 0.216121 15 C s 53 -0.216121 16 C s + Vector 13 Occ=2.000000D+00 E=-9.884358D-01 Symmetry=ag - MO Center= -2.7D-17, 1.6D-16, -4.8D-20, r^2= 1.1D+01 + MO Center= 1.2D-17, 3.5D-17, 1.0D-21, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.313077 11 C s 41 0.313077 12 C s - 48 0.309298 15 C s 53 0.309298 16 C s - - Vector 14 Occ=2.000000D+00 E=-9.609327D-01 Symmetry=bu - MO Center= -7.2D-18, -4.7D-18, -6.5D-38, r^2= 3.0D+00 + 48 0.309299 15 C s 53 0.309299 16 C s + + Vector 14 Occ=2.000000D+00 E=-9.609325D-01 Symmetry=bu + MO Center= 1.7D-17, 1.7D-17, -1.9D-21, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.354272 3 C s 17 -0.354272 4 C s + 12 0.354271 3 C s 17 -0.354271 4 C s 22 0.320741 5 C s 27 -0.320741 6 C s - - Vector 15 Occ=2.000000D+00 E=-9.226878D-01 Symmetry=bu - MO Center= -4.2D-17, -8.9D-18, -3.0D-21, r^2= 8.4D+00 + + Vector 15 Occ=2.000000D+00 E=-9.226869D-01 Symmetry=bu + MO Center= -1.4D-17, -6.0D-17, 1.9D-37, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.282882 15 C s 53 -0.282882 16 C s 2 0.279932 1 C s 7 -0.279932 2 C s - 22 -0.200866 5 C s 27 0.200866 6 C s - - Vector 16 Occ=2.000000D+00 E=-8.064077D-01 Symmetry=ag - MO Center= 5.8D-17, -3.2D-17, 3.0D-38, r^2= 8.0D+00 + 22 -0.200868 5 C s 27 0.200868 6 C s + + Vector 16 Occ=2.000000D+00 E=-8.064084D-01 Symmetry=ag + MO Center= 4.1D-17, -1.4D-16, 1.4D-21, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.233465 5 C s 27 0.233465 6 C s - 48 0.226411 15 C s 53 0.226411 16 C s - 2 -0.207375 1 C s 7 -0.207375 2 C s + 22 0.233466 5 C s 27 0.233466 6 C s + 48 0.226409 15 C s 53 0.226409 16 C s + 2 -0.207372 1 C s 7 -0.207372 2 C s 14 -0.166928 3 C py 19 0.166928 4 C py 36 -0.156349 11 C s 41 -0.156349 12 C s - + Vector 17 Occ=2.000000D+00 E=-7.712747D-01 Symmetry=ag - MO Center= 2.8D-17, 1.2D-18, 1.3D-19, r^2= 4.9D+00 + MO Center= 5.0D-18, -2.5D-17, 4.3D-38, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.319588 3 C s 17 0.319588 4 C s - 3 0.189453 1 C px 8 -0.189453 2 C px - 24 0.173819 5 C py 29 -0.173819 6 C py + 3 0.189452 1 C px 8 -0.189452 2 C px + 24 0.173820 5 C py 29 -0.173820 6 C py 31 0.172194 7 H s 32 0.172194 8 H s - 22 -0.165461 5 C s 27 -0.165461 6 C s - - Vector 18 Occ=2.000000D+00 E=-7.329503D-01 Symmetry=bu - MO Center= -2.1D-17, -1.9D-16, 1.0D-35, r^2= 1.2D+01 + 22 -0.165458 5 C s 27 -0.165458 6 C s + + Vector 18 Occ=2.000000D+00 E=-7.329502D-01 Symmetry=bu + MO Center= -3.0D-17, -5.9D-16, -1.0D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.293349 11 C s 41 -0.293349 12 C s - 48 -0.246638 15 C s 53 0.246638 16 C s - 45 0.177492 13 H s 46 -0.177492 14 H s + 48 -0.246639 15 C s 53 0.246639 16 C s + 45 0.177493 13 H s 46 -0.177493 14 H s 57 -0.166391 17 H s 58 0.166391 18 H s - + Vector 19 Occ=2.000000D+00 E=-7.072298D-01 Symmetry=ag - MO Center= -1.5D-17, -3.1D-17, 1.1D-22, r^2= 7.7D+00 + MO Center= 1.4D-18, 3.4D-16, 2.3D-23, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.196015 5 C px 28 -0.196015 6 C px 36 0.180383 11 C s 41 0.180383 12 C s - 13 0.178165 3 C px 18 -0.178165 4 C px - 33 0.171316 9 H s 34 0.171316 10 H s - 48 -0.162896 15 C s 53 -0.162896 16 C s - - Vector 20 Occ=2.000000D+00 E=-6.391288D-01 Symmetry=ag - MO Center= -2.9D-17, 4.2D-17, -8.0D-23, r^2= 9.3D+00 + 13 0.178167 3 C px 18 -0.178167 4 C px + 33 0.171317 9 H s 34 0.171317 10 H s + 48 -0.162895 15 C s 53 -0.162895 16 C s + + Vector 20 Occ=2.000000D+00 E=-6.391285D-01 Symmetry=ag + MO Center= 3.3D-18, 8.0D-18, 1.5D-36, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.210581 15 C px 54 -0.210581 16 C px - 38 0.182876 11 C py 43 -0.182876 12 C py - 57 0.182014 17 H s 58 0.182014 18 H s + 49 0.210582 15 C px 54 -0.210582 16 C px + 38 0.182874 11 C py 43 -0.182874 12 C py + 57 0.182015 17 H s 58 0.182015 18 H s 45 -0.153442 13 H s 46 -0.153442 14 H s - - Vector 21 Occ=2.000000D+00 E=-6.150849D-01 Symmetry=bu - MO Center= 1.3D-17, -1.1D-16, 1.9D-25, r^2= 1.0D+01 + + Vector 21 Occ=2.000000D+00 E=-6.150846D-01 Symmetry=bu + MO Center= -1.1D-17, -1.2D-16, 5.6D-37, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.216132 11 C px 42 0.216132 12 C px - 50 0.215147 15 C py 55 0.215147 16 C py - 14 0.188167 3 C py 19 0.188167 4 C py + 50 0.215149 15 C py 55 0.215149 16 C py + 14 0.188168 3 C py 19 0.188168 4 C py 59 -0.187496 19 H s 60 0.187496 20 H s - 45 -0.156490 13 H s 46 0.156490 14 H s - - Vector 22 Occ=2.000000D+00 E=-5.776236D-01 Symmetry=bu - MO Center= -1.2D-17, -6.7D-17, 9.8D-37, r^2= 6.5D+00 + 45 -0.156488 13 H s 46 0.156488 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.776231D-01 Symmetry=bu + MO Center= -2.3D-16, 5.4D-17, 1.9D-18, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.234659 7 H s 32 0.234659 8 H s + 31 -0.234658 7 H s 32 0.234658 8 H s 33 0.234696 9 H s 34 -0.234696 10 H s - 13 -0.227226 3 C px 18 -0.227226 4 C px - 2 0.221304 1 C s 7 -0.221304 2 C s - 24 -0.178023 5 C py 29 -0.178023 6 C py - + 13 -0.227224 3 C px 18 -0.227224 4 C px + 2 0.221308 1 C s 7 -0.221308 2 C s + 24 -0.178021 5 C py 29 -0.178021 6 C py + Vector 23 Occ=2.000000D+00 E=-5.638139D-01 Symmetry=bu - MO Center= 5.1D-17, -8.9D-17, -4.1D-26, r^2= 8.6D+00 + MO Center= 5.9D-19, 2.8D-17, -2.0D-21, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.257152 5 C px 28 0.257152 6 C px - 49 0.246927 15 C px 54 0.246927 16 C px - 3 -0.216752 1 C px 8 -0.216752 2 C px - 57 0.215141 17 H s 58 -0.215141 18 H s - 38 0.174089 11 C py 43 0.174089 12 C py - - Vector 24 Occ=2.000000D+00 E=-5.628775D-01 Symmetry=ag - MO Center= 3.4D-17, -2.2D-16, -2.0D-20, r^2= 1.4D+01 + 23 0.257150 5 C px 28 0.257150 6 C px + 49 0.246928 15 C px 54 0.246928 16 C px + 3 -0.216750 1 C px 8 -0.216750 2 C px + 57 0.215142 17 H s 58 -0.215142 18 H s + 38 0.174090 11 C py 43 0.174090 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.628773D-01 Symmetry=ag + MO Center= -1.1D-16, 1.4D-16, -9.5D-20, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 0.337893 15 C py 55 -0.337893 16 C py - 59 -0.264556 19 H s 60 -0.264556 20 H s + 50 0.337894 15 C py 55 -0.337894 16 C py + 59 -0.264555 19 H s 60 -0.264555 20 H s 37 0.253563 11 C px 42 -0.253563 12 C px 45 -0.153451 13 H s 46 -0.153451 14 H s - - Vector 25 Occ=2.000000D+00 E=-5.325184D-01 Symmetry=bu - MO Center= 6.0D-17, -4.2D-17, 2.6D-38, r^2= 4.3D+00 + + Vector 25 Occ=2.000000D+00 E=-5.325179D-01 Symmetry=bu + MO Center= -3.9D-17, 3.9D-17, 5.7D-21, r^2= 4.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.304545 3 C px 18 0.304545 4 C px + 13 0.304546 3 C px 18 0.304546 4 C px 31 0.255629 7 H s 32 -0.255629 8 H s - 24 -0.226737 5 C py 29 -0.226737 6 C py + 24 -0.226735 5 C py 29 -0.226735 6 C py 33 0.220959 9 H s 34 -0.220959 10 H s - 23 0.186201 5 C px 28 0.186201 6 C px - - Vector 26 Occ=2.000000D+00 E=-5.074062D-01 Symmetry=bu - MO Center= 7.9D-17, 5.4D-16, 2.9D-37, r^2= 8.7D+00 + 23 0.186204 5 C px 28 0.186204 6 C px + + Vector 26 Occ=2.000000D+00 E=-5.074061D-01 Symmetry=bu + MO Center= 8.0D-18, -4.2D-17, -5.2D-35, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.237948 15 C py 55 -0.237948 16 C py - 14 0.226863 3 C py 19 0.226863 4 C py - 37 -0.210149 11 C px 42 -0.210149 12 C px - 24 -0.192003 5 C py 29 -0.192003 6 C py - 38 0.186301 11 C py 43 0.186301 12 C py - - Vector 27 Occ=2.000000D+00 E=-4.981039D-01 Symmetry=ag - MO Center= -3.7D-17, 2.3D-17, 3.7D-36, r^2= 1.2D+01 + 14 0.226865 3 C py 19 0.226865 4 C py + 37 -0.210150 11 C px 42 -0.210150 12 C px + 24 -0.192005 5 C py 29 -0.192005 6 C py + 38 0.186299 11 C py 43 0.186299 12 C py + + Vector 27 Occ=2.000000D+00 E=-4.981034D-01 Symmetry=ag + MO Center= -4.6D-17, 6.5D-18, 1.1D-22, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.295901 15 C px 54 -0.295901 16 C px - 57 0.268746 17 H s 58 0.268746 18 H s + 49 0.295899 15 C px 54 -0.295899 16 C px + 57 0.268745 17 H s 58 0.268745 18 H s 37 -0.205395 11 C px 42 0.205395 12 C px 45 0.201220 13 H s 46 0.201220 14 H s - 31 -0.156901 7 H s 32 -0.156901 8 H s - + 31 -0.156903 7 H s 32 -0.156903 8 H s + Vector 28 Occ=2.000000D+00 E=-4.772651D-01 Symmetry=au - MO Center= -1.3D-17, -8.3D-18, -2.7D-20, r^2= 3.5D+00 + MO Center= -2.3D-17, 3.5D-17, 1.1D-20, r^2= 3.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.328899 1 C pz 10 0.328899 2 C pz 15 0.302001 3 C pz 20 0.302001 4 C pz 25 0.301195 5 C pz 30 0.301195 6 C pz 39 0.159135 11 C pz 44 0.159135 12 C pz - - Vector 29 Occ=2.000000D+00 E=-4.486296D-01 Symmetry=bu - MO Center= -4.2D-17, 6.3D-17, -4.7D-23, r^2= 1.2D+01 + + Vector 29 Occ=2.000000D+00 E=-4.486298D-01 Symmetry=bu + MO Center= -1.6D-17, -1.5D-17, -7.2D-35, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.255263 13 H s 46 -0.255263 14 H s - 4 0.249191 1 C py 9 0.249191 2 C py + 4 0.249193 1 C py 9 0.249193 2 C py 57 0.227201 17 H s 58 -0.227201 18 H s 59 -0.218870 19 H s 60 0.218870 20 H s - 37 -0.212206 11 C px 42 -0.212206 12 C px - - Vector 30 Occ=2.000000D+00 E=-4.259534D-01 Symmetry=ag - MO Center= 1.5D-17, 2.8D-17, -8.3D-21, r^2= 4.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 33 0.283960 9 H s 34 0.283960 10 H s - 3 0.255439 1 C px 8 -0.255439 2 C px - 13 -0.228379 3 C px 18 0.228379 4 C px - 14 0.216879 3 C py 19 -0.216879 4 C py - 23 0.211736 5 C px 28 -0.211736 6 C px - - Vector 31 Occ=2.000000D+00 E=-4.181821D-01 Symmetry=ag - MO Center= 1.8D-17, 1.2D-16, 5.1D-21, r^2= 7.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 38 0.219648 11 C py 43 -0.219648 12 C py - 4 0.216971 1 C py 9 -0.216971 2 C py - 31 -0.215102 7 H s 32 -0.215102 8 H s - 23 0.205619 5 C px 28 -0.205619 6 C px - 3 0.199809 1 C px 8 -0.199809 2 C px - + 37 -0.212205 11 C px 42 -0.212205 12 C px + + Vector 30 Occ=2.000000D+00 E=-4.259545D-01 Symmetry=ag + MO Center= 5.1D-17, 8.8D-18, -3.1D-20, r^2= 4.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 0.283961 9 H s 34 0.283961 10 H s + 3 0.255444 1 C px 8 -0.255444 2 C px + 13 -0.228382 3 C px 18 0.228382 4 C px + 14 0.216875 3 C py 19 -0.216875 4 C py + 23 0.211741 5 C px 28 -0.211741 6 C px + + Vector 31 Occ=2.000000D+00 E=-4.181829D-01 Symmetry=ag + MO Center= 1.1D-16, 1.7D-16, 1.9D-19, r^2= 7.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.219652 11 C py 43 -0.219652 12 C py + 4 0.216975 1 C py 9 -0.216975 2 C py + 31 -0.215098 7 H s 32 -0.215098 8 H s + 23 0.205614 5 C px 28 -0.205614 6 C px + 3 0.199802 1 C px 8 -0.199802 2 C px + Vector 32 Occ=2.000000D+00 E=-3.868371D-01 Symmetry=bg - MO Center= 9.2D-18, 1.0D-17, -4.6D-23, r^2= 8.5D+00 + MO Center= 0.0D+00, 0.0D+00, 4.5D-19, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.381753 11 C pz 44 -0.381753 12 C pz 5 -0.312311 1 C pz 10 0.312311 2 C pz 51 0.310279 15 C pz 56 -0.310279 16 C pz - - Vector 33 Occ=2.000000D+00 E=-3.269035D-01 Symmetry=au - MO Center= -8.7D-18, -7.1D-17, -1.1D-20, r^2= 1.1D+01 + + Vector 33 Occ=2.000000D+00 E=-3.269036D-01 Symmetry=au + MO Center= -1.5D-17, -4.2D-17, -5.1D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.426196 15 C pz 56 0.426196 16 C pz 39 0.414993 11 C pz 44 0.414993 12 C pz 15 -0.158557 3 C pz 20 -0.158557 4 C pz 25 -0.158699 5 C pz 30 -0.158699 6 C pz - + Vector 34 Occ=2.000000D+00 E=-2.855845D-01 Symmetry=bg - MO Center= 4.9D-18, 1.9D-17, 7.1D-23, r^2= 2.6D+00 + MO Center= 2.8D-17, -1.0D-17, -6.0D-20, r^2= 2.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.458997 3 C pz 20 -0.458997 4 C pz - 25 0.460825 5 C pz 30 -0.460825 6 C pz - + 15 0.458996 3 C pz 20 -0.458996 4 C pz + 25 0.460826 5 C pz 30 -0.460826 6 C pz + Vector 35 Occ=2.000000D+00 E=-2.332358D-01 Symmetry=bg - MO Center= -1.9D-17, 6.1D-16, 3.1D-21, r^2= 6.9D+00 + MO Center= 1.4D-17, 9.3D-18, 5.2D-21, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.420736 1 C pz 10 -0.420736 2 C pz 51 0.350548 15 C pz 56 -0.350548 16 C pz - 15 0.233594 3 C pz 20 -0.233594 4 C pz - 25 -0.232033 5 C pz 30 0.232033 6 C pz + 15 0.233595 3 C pz 20 -0.233595 4 C pz + 25 -0.232032 5 C pz 30 0.232032 6 C pz 39 0.216674 11 C pz 44 -0.216674 12 C pz - - Vector 36 Occ=0.000000D+00 E= 2.069560D-01 Symmetry=au - MO Center= 4.0D-18, -9.5D-18, 1.4D-20, r^2= 7.1D+00 + + Vector 36 Occ=0.000000D+00 E= 2.069561D-01 Symmetry=au + MO Center= 2.2D-17, -4.5D-17, 1.5D-20, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.479160 1 C pz 10 0.479160 2 C pz @@ -4279,35 +4363,35 @@ Divinylbenzene in STO-3G basis set 25 -0.284369 5 C pz 30 -0.284369 6 C pz 15 -0.250578 3 C pz 20 -0.250578 4 C pz 39 0.249778 11 C pz 44 0.249778 12 C pz - - Vector 37 Occ=0.000000D+00 E= 2.731504D-01 Symmetry=au - MO Center= 2.5D-16, -6.6D-17, -6.6D-19, r^2= 2.7D+00 + + Vector 37 Occ=0.000000D+00 E= 2.731505D-01 Symmetry=au + MO Center= 3.5D-18, 2.9D-17, 2.4D-19, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.583566 3 C pz 20 0.583566 4 C pz 25 -0.559971 5 C pz 30 -0.559971 6 C pz - - Vector 38 Occ=0.000000D+00 E= 3.186099D-01 Symmetry=bg - MO Center= -8.3D-17, 3.2D-17, -5.7D-23, r^2= 1.1D+01 + + Vector 38 Occ=0.000000D+00 E= 3.186101D-01 Symmetry=bg + MO Center= -4.4D-18, -5.9D-18, 2.1D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.537697 15 C pz 56 0.537697 16 C pz 39 0.531787 11 C pz 44 -0.531787 12 C pz - 15 0.221775 3 C pz 20 -0.221775 4 C pz + 15 0.221776 3 C pz 20 -0.221776 4 C pz 25 -0.216153 5 C pz 30 0.216153 6 C pz - - Vector 39 Occ=0.000000D+00 E= 4.060612D-01 Symmetry=au - MO Center= -8.9D-17, 4.0D-16, 4.4D-20, r^2= 8.4D+00 + + Vector 39 Occ=0.000000D+00 E= 4.060614D-01 Symmetry=au + MO Center= -1.7D-17, 1.5D-16, 1.4D-19, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 0.539441 11 C pz 44 0.539441 12 C pz + 39 0.539442 11 C pz 44 0.539442 12 C pz 5 -0.472314 1 C pz 10 -0.472314 2 C pz 51 -0.416297 15 C pz 56 -0.416297 16 C pz 25 0.189498 5 C pz 30 0.189498 6 C pz - 15 0.162259 3 C pz 20 0.162259 4 C pz - - Vector 40 Occ=0.000000D+00 E= 5.374968D-01 Symmetry=bg - MO Center= -1.7D-16, 3.1D-17, 1.3D-22, r^2= 3.7D+00 + 15 0.162258 3 C pz 20 0.162258 4 C pz + + Vector 40 Occ=0.000000D+00 E= 5.374970D-01 Symmetry=bg + MO Center= -1.7D-16, -3.9D-17, -4.3D-18, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.545458 1 C pz 10 -0.545458 2 C pz @@ -4315,57 +4399,57 @@ Divinylbenzene in STO-3G basis set 25 0.479452 5 C pz 30 -0.479452 6 C pz 39 0.274984 11 C pz 44 -0.274984 12 C pz 51 -0.158188 15 C pz 56 0.158188 16 C pz - - Vector 41 Occ=0.000000D+00 E= 5.684381D-01 Symmetry=ag - MO Center= 1.3D-16, 1.7D-16, 4.0D-20, r^2= 8.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 31 -0.416655 7 H s 32 -0.416655 8 H s - 33 -0.415487 9 H s 34 -0.415487 10 H s - 2 0.396034 1 C s 7 0.396034 2 C s - 59 -0.352157 19 H s 60 -0.352157 20 H s - 38 -0.349631 11 C py 43 0.349631 12 C py - - Vector 42 Occ=0.000000D+00 E= 5.827520D-01 Symmetry=bu - MO Center= -2.9D-16, -3.1D-17, -5.6D-23, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.433706 13 H s 46 -0.433706 14 H s - 37 0.355581 11 C px 42 0.355581 12 C px - 13 0.338727 3 C px 18 0.338727 4 C px - 57 -0.337825 17 H s 58 0.337825 18 H s - 59 0.322161 19 H s 60 -0.322161 20 H s - - Vector 43 Occ=0.000000D+00 E= 6.323206D-01 Symmetry=bu - MO Center= -1.6D-16, 6.8D-16, 1.4D-23, r^2= 6.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.533500 11 C s 41 -0.533500 12 C s - 33 0.462977 9 H s 34 -0.462977 10 H s - 4 0.456085 1 C py 9 0.456085 2 C py - 24 0.334672 5 C py 29 0.334672 6 C py - 38 0.320757 11 C py 43 0.320757 12 C py - - Vector 44 Occ=0.000000D+00 E= 6.348883D-01 Symmetry=ag - MO Center= 3.4D-18, -3.2D-16, 4.3D-19, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.583304 13 H s 46 0.583304 14 H s - 36 -0.409920 11 C s 41 -0.409920 12 C s - 57 -0.390222 17 H s 58 -0.390222 18 H s - 12 0.386372 3 C s 17 0.386372 4 C s - 37 0.336265 11 C px 42 -0.336265 12 C px - - Vector 45 Occ=0.000000D+00 E= 6.824432D-01 Symmetry=ag - MO Center= 1.8D-16, -1.4D-16, 5.7D-20, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.721842 15 C s 53 0.721842 16 C s - 22 0.572309 5 C s 27 0.572309 6 C s - 57 -0.554782 17 H s 58 -0.554782 18 H s - 12 -0.420240 3 C s 17 -0.420240 4 C s - 59 -0.380120 19 H s 60 -0.380120 20 H s - + + Vector 41 Occ=0.000000D+00 E= 5.684402D-01 Symmetry=ag + MO Center= 3.2D-17, 7.5D-17, 4.2D-21, r^2= 8.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 -0.416641 7 H s 32 -0.416641 8 H s + 33 -0.415466 9 H s 34 -0.415466 10 H s + 2 0.396051 1 C s 7 0.396051 2 C s + 59 -0.352161 19 H s 60 -0.352161 20 H s + 38 -0.349638 11 C py 43 0.349638 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.827521D-01 Symmetry=bu + MO Center= -1.1D-16, -1.7D-17, 1.9D-22, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.433702 13 H s 46 -0.433702 14 H s + 37 0.355585 11 C px 42 0.355585 12 C px + 13 0.338735 3 C px 18 0.338735 4 C px + 57 -0.337814 17 H s 58 0.337814 18 H s + 59 0.322159 19 H s 60 -0.322159 20 H s + + Vector 43 Occ=0.000000D+00 E= 6.323190D-01 Symmetry=bu + MO Center= 6.1D-17, -3.7D-17, -5.0D-22, r^2= 6.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.533464 11 C s 41 -0.533464 12 C s + 33 0.462998 9 H s 34 -0.462998 10 H s + 4 0.456079 1 C py 9 0.456079 2 C py + 24 0.334681 5 C py 29 0.334681 6 C py + 38 0.320758 11 C py 43 0.320758 12 C py + + Vector 44 Occ=0.000000D+00 E= 6.348876D-01 Symmetry=ag + MO Center= -1.5D-16, -1.6D-15, -4.9D-21, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.583303 13 H s 46 0.583303 14 H s + 36 -0.409943 11 C s 41 -0.409943 12 C s + 57 -0.390206 17 H s 58 -0.390206 18 H s + 12 0.386370 3 C s 17 0.386370 4 C s + 37 0.336257 11 C px 42 -0.336257 12 C px + + Vector 45 Occ=0.000000D+00 E= 6.824439D-01 Symmetry=ag + MO Center= 9.8D-17, 1.8D-16, 1.2D-20, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.721856 15 C s 53 0.721856 16 C s + 22 0.572302 5 C s 27 0.572302 6 C s + 57 -0.554787 17 H s 58 -0.554787 18 H s + 12 -0.420239 3 C s 17 -0.420239 4 C s + 59 -0.380134 19 H s 60 -0.380134 20 H s + center of mass -------------- @@ -4373,10 +4457,10 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2576.835524234118 -1.554558931943 0.000000000000 - -1.554558931943 376.128053558710 0.000000000000 - 0.000000000000 0.000000000000 2952.963577792827 - + 2576.837745214490 -1.554370059668 0.000000000000 + -1.554370059668 376.127728822545 0.000000000000 + 0.000000000000 0.000000000000 2952.965474037034 + Mulliken analysis of the total density -------------------------------------- @@ -4402,100 +4486,103 @@ Divinylbenzene in STO-3G basis set 18 H 1 0.94 0.94 19 H 1 0.94 0.94 20 H 1 0.94 0.94 - + Multipole analysis of the density wrt the origin ------------------------------------------------ - + L x y z total open nuclear - - - - ----- ---- ------- 0 0 0 0 -0.000000 0.000000 70.000000 - + 1 1 0 0 -0.000000 0.000000 0.000000 1 0 1 0 0.000000 0.000000 0.000000 1 0 0 1 -0.000000 0.000000 0.000000 - - 2 2 0 0 -38.488952 0.000000 235.917309 - 2 1 1 0 0.092499 0.000000 -4.521125 + + 2 2 0 0 -38.488927 0.000000 235.917151 + 2 1 1 0 0.092490 0.000000 -4.521145 2 1 0 1 -0.000000 0.000000 0.000000 - 2 0 2 0 -39.169835 0.000000 1465.643684 - 2 0 1 1 -0.000000 0.000000 0.000000 - 2 0 0 2 -43.441839 0.000000 0.000000 + 2 0 2 0 -39.169836 0.000000 1465.644946 + 2 0 1 1 0.000000 0.000000 0.000000 + 2 0 0 2 -43.441840 0.000000 0.000000 + + + Parallel integral file used 9 records with 0 large values Line search: - step= 1.00 grad=-1.8D-05 hess= 8.9D-06 energy= -379.777954 mode=accept - new step= 1.00 predicted energy= -379.777954 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 + step= 1.00 grad=-1.8D-05 hess= 8.9D-06 energy= -379.777955 mode=accept + new step= 1.00 predicted energy= -379.777955 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 -------- Step 3 -------- - - + + Geometry "geometry" -> "geometry" --------------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.22793339 1.39275333 0.00000000 - 2 C 6.0000 -0.22793339 -1.39275333 0.00000000 - 3 C 6.0000 1.28926373 0.48584551 0.00000000 - 4 C 6.0000 -1.28926373 -0.48584551 0.00000000 - 5 C 6.0000 1.06906603 -0.87846571 0.00000000 - 6 C 6.0000 -1.06906603 0.87846571 0.00000000 - 7 H 1.0000 2.30489907 0.86063972 0.00000000 - 8 H 1.0000 -2.30489907 -0.86063972 0.00000000 - 9 H 1.0000 1.91763799 -1.54870316 0.00000000 - 10 H 1.0000 -1.91763799 1.54870316 0.00000000 - 11 C 6.0000 -0.52228418 -2.85961377 0.00000000 - 12 C 6.0000 0.52228418 2.85961377 0.00000000 - 13 H 1.0000 -1.57970829 -3.10010591 0.00000000 - 14 H 1.0000 1.57970829 3.10010591 0.00000000 - 15 C 6.0000 0.35279767 -3.83931240 0.00000000 - 16 C 6.0000 -0.35279767 3.83931240 0.00000000 - 17 H 1.0000 1.42098859 -3.67698185 0.00000000 - 18 H 1.0000 -1.42098859 3.67698185 0.00000000 - 19 H 1.0000 0.03725465 -4.87336534 0.00000000 - 20 H 1.0000 -0.03725465 4.87336534 0.00000000 - + 1 C 6.0000 0.22793038 1.39275351 0.00000000 + 2 C 6.0000 -0.22793038 -1.39275351 0.00000000 + 3 C 6.0000 1.28926244 0.48584793 0.00000000 + 4 C 6.0000 -1.28926244 -0.48584793 0.00000000 + 5 C 6.0000 1.06906799 -0.87846357 0.00000000 + 6 C 6.0000 -1.06906799 0.87846357 0.00000000 + 7 H 1.0000 2.30489717 0.86064400 0.00000000 + 8 H 1.0000 -2.30489717 -0.86064400 0.00000000 + 9 H 1.0000 1.91764263 -1.54869754 0.00000000 + 10 H 1.0000 -1.91764263 1.54869754 0.00000000 + 11 C 6.0000 -0.52228179 -2.85961381 0.00000000 + 12 C 6.0000 0.52228179 2.85961381 0.00000000 + 13 H 1.0000 -1.57970648 -3.10010258 0.00000000 + 14 H 1.0000 1.57970648 3.10010258 0.00000000 + 15 C 6.0000 0.35279638 -3.83931539 0.00000000 + 16 C 6.0000 -0.35279638 3.83931539 0.00000000 + 17 H 1.0000 1.42098800 -3.67698978 0.00000000 + 18 H 1.0000 -1.42098800 3.67698978 0.00000000 + 19 H 1.0000 0.03724867 -4.87336689 0.00000000 + 20 H 1.0000 -0.03724867 4.87336689 0.00000000 + Atomic Mass ----------- - + C 12.000000 H 1.007825 + - - Effective nuclear repulsion energy (a.u.) 452.1232479642 + Effective nuclear repulsion energy (a.u.) 452.1232077559 Nuclear Dipole moment (a.u.) ---------------------------- X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - + NWChem SCF Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + ao basis = "ao basis" functions = 60 @@ -4520,23 +4607,23 @@ Divinylbenzene in STO-3G basis set Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 - + The SCF is already converged - Total SCF energy = -379.777954498241 + Total SCF energy = -379.777955012529 NWChem Gradients Module ----------------------- - - + + Divinylbenzene in STO-3G basis set - + wavefunction = RHF @@ -4547,39 +4634,39 @@ Divinylbenzene in STO-3G basis set atom coordinates gradient x y z x y z - 1 C 0.430732 2.631922 0.000000 0.000062 -0.000072 0.000000 - 2 C -0.430732 -2.631922 0.000000 -0.000062 0.000072 0.000000 - 3 C 2.436355 0.918115 0.000000 0.000013 0.000061 0.000000 - 4 C -2.436355 -0.918115 0.000000 -0.000013 -0.000061 0.000000 - 5 C 2.020242 -1.660059 0.000000 -0.000000 -0.000086 0.000000 - 6 C -2.020242 1.660059 0.000000 0.000000 0.000086 -0.000000 - 7 H 4.355628 1.626373 0.000000 -0.000010 0.000013 0.000000 - 8 H -4.355628 -1.626373 0.000000 0.000010 -0.000013 0.000000 - 9 H 3.623810 -2.926625 0.000000 -0.000001 -0.000020 0.000000 - 10 H -3.623810 2.926625 0.000000 0.000001 0.000020 0.000000 - 11 C -0.986974 -5.403886 0.000000 0.000096 -0.000001 0.000000 - 12 C 0.986974 5.403886 0.000000 -0.000096 0.000001 0.000000 - 13 H -2.985216 -5.858351 0.000000 -0.000022 0.000006 0.000000 - 14 H 2.985216 5.858351 0.000000 0.000022 -0.000006 0.000000 - 15 C 0.666691 -7.255248 0.000000 -0.000026 -0.000012 0.000000 - 16 C -0.666691 7.255248 0.000000 0.000026 0.000012 0.000000 - 17 H 2.685279 -6.948488 0.000000 0.000041 0.000008 0.000000 - 18 H -2.685279 6.948488 0.000000 -0.000041 -0.000008 0.000000 - 19 H 0.070401 -9.209325 0.000000 -0.000027 0.000019 0.000000 - 20 H -0.070401 9.209325 0.000000 0.000027 -0.000019 0.000000 - + 1 C 0.430726 2.631923 0.000000 0.000062 -0.000072 0.000000 + 2 C -0.430726 -2.631923 0.000000 -0.000062 0.000072 0.000000 + 3 C 2.436353 0.918119 0.000000 0.000013 0.000061 0.000000 + 4 C -2.436353 -0.918119 0.000000 -0.000013 -0.000061 0.000000 + 5 C 2.020246 -1.660055 0.000000 -0.000000 -0.000085 0.000000 + 6 C -2.020246 1.660055 0.000000 0.000000 0.000085 0.000000 + 7 H 4.355624 1.626381 0.000000 -0.000010 0.000013 0.000000 + 8 H -4.355624 -1.626381 0.000000 0.000010 -0.000013 0.000000 + 9 H 3.623819 -2.926614 0.000000 -0.000001 -0.000020 0.000000 + 10 H -3.623819 2.926614 0.000000 0.000001 0.000020 0.000000 + 11 C -0.986969 -5.403887 0.000000 0.000096 -0.000001 0.000000 + 12 C 0.986969 5.403887 0.000000 -0.000096 0.000001 0.000000 + 13 H -2.985212 -5.858344 0.000000 -0.000022 0.000007 0.000000 + 14 H 2.985212 5.858344 0.000000 0.000022 -0.000007 0.000000 + 15 C 0.666688 -7.255254 0.000000 -0.000026 -0.000012 0.000000 + 16 C -0.666688 7.255254 0.000000 0.000026 0.000012 0.000000 + 17 H 2.685278 -6.948503 0.000000 0.000041 0.000008 0.000000 + 18 H -2.685278 6.948503 0.000000 -0.000041 -0.000008 0.000000 + 19 H 0.070390 -9.209328 0.000000 -0.000027 0.000019 0.000000 + 20 H -0.070390 9.209328 0.000000 0.000027 -0.000019 0.000000 + ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.00 | 0.56 | + | CPU | 0.00 | 0.31 | ---------------------------------------- - | WALL | 0.00 | 0.56 | + | WALL | 0.00 | 0.32 | ---------------------------------------- - no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.000000000000000E+000 Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 3 -379.77795450 -9.0D-06 0.00004 0.00002 0.00110 0.00242 19.0 +@ 3 -379.77795501 -9.0D-06 0.00004 0.00002 0.00110 0.00242 4.6 ok ok ok @@ -4588,7 +4675,7 @@ Divinylbenzene in STO-3G basis set -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value Gradient ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- 1 Stretch 1 3 1.39603 -0.00002 @@ -4607,91 +4694,91 @@ Divinylbenzene in STO-3G basis set 14 Stretch 11 15 1.31361 -0.00002 15 Stretch 12 14 1.08443 0.00002 16 Stretch 12 16 1.31361 -0.00002 - 17 Stretch 15 17 1.08046 0.00004 + 17 Stretch 15 17 1.08045 0.00004 18 Stretch 15 19 1.08113 -0.00001 - 19 Stretch 16 18 1.08046 0.00004 + 19 Stretch 16 18 1.08045 0.00004 20 Stretch 16 20 1.08113 -0.00001 - 21 Bend 1 3 5 121.34554 -0.00001 - 22 Bend 1 3 7 119.23079 -0.00000 - 23 Bend 1 6 4 120.79775 -0.00002 - 24 Bend 1 6 10 120.06748 -0.00000 - 25 Bend 1 12 14 114.15963 -0.00002 - 26 Bend 1 12 16 126.88160 0.00002 - 27 Bend 2 4 6 121.34554 -0.00001 - 28 Bend 2 4 8 119.23079 -0.00000 - 29 Bend 2 5 3 120.79775 -0.00002 - 30 Bend 2 5 9 120.06748 -0.00000 - 31 Bend 2 11 13 114.15963 -0.00002 - 32 Bend 2 11 15 126.88160 0.00002 - 33 Bend 3 1 6 117.85671 0.00003 - 34 Bend 3 1 12 119.16724 0.00001 - 35 Bend 3 5 9 119.13476 0.00002 - 36 Bend 4 2 5 117.85671 0.00003 - 37 Bend 4 2 11 119.16724 0.00001 - 38 Bend 4 6 10 119.13476 0.00002 - 39 Bend 5 2 11 122.97606 -0.00004 - 40 Bend 5 3 7 119.42368 0.00001 - 41 Bend 6 1 12 122.97606 -0.00004 - 42 Bend 6 4 8 119.42368 0.00001 - 43 Bend 11 15 17 123.13072 0.00001 - 44 Bend 11 15 19 121.25862 -0.00002 - 45 Bend 12 16 18 123.13072 0.00001 - 46 Bend 12 16 20 121.25862 -0.00002 - 47 Bend 13 11 15 118.95877 -0.00001 - 48 Bend 14 12 16 118.95877 -0.00001 + 21 Bend 1 3 5 121.34556 -0.00001 + 22 Bend 1 3 7 119.23080 -0.00000 + 23 Bend 1 6 4 120.79772 -0.00002 + 24 Bend 1 6 10 120.06761 -0.00000 + 25 Bend 1 12 14 114.15948 -0.00002 + 26 Bend 1 12 16 126.88178 0.00002 + 27 Bend 2 4 6 121.34556 -0.00001 + 28 Bend 2 4 8 119.23080 -0.00000 + 29 Bend 2 5 3 120.79772 -0.00002 + 30 Bend 2 5 9 120.06761 -0.00000 + 31 Bend 2 11 13 114.15948 -0.00002 + 32 Bend 2 11 15 126.88178 0.00002 + 33 Bend 3 1 6 117.85672 0.00003 + 34 Bend 3 1 12 119.16710 0.00001 + 35 Bend 3 5 9 119.13467 0.00002 + 36 Bend 4 2 5 117.85672 0.00003 + 37 Bend 4 2 11 119.16710 0.00001 + 38 Bend 4 6 10 119.13467 0.00002 + 39 Bend 5 2 11 122.97618 -0.00004 + 40 Bend 5 3 7 119.42364 0.00001 + 41 Bend 6 1 12 122.97618 -0.00004 + 42 Bend 6 4 8 119.42364 0.00001 + 43 Bend 11 15 17 123.13078 0.00001 + 44 Bend 11 15 19 121.25857 -0.00002 + 45 Bend 12 16 18 123.13078 0.00001 + 46 Bend 12 16 20 121.25857 -0.00002 + 47 Bend 13 11 15 118.95875 -0.00001 + 48 Bend 14 12 16 118.95875 -0.00001 49 Bend 17 15 19 115.61065 0.00001 50 Bend 18 16 20 115.61065 0.00001 - 51 Torsion 1 3 5 2 0.00000 -0.00000 + 51 Torsion 1 3 5 2 0.00000 0.00000 52 Torsion 1 3 5 9 180.00000 0.00000 - 53 Torsion 1 6 4 2 0.00000 -0.00000 - 54 Torsion 1 6 4 8 180.00000 -0.00000 + 53 Torsion 1 6 4 2 0.00000 0.00000 + 54 Torsion 1 6 4 8 180.00000 0.00000 55 Torsion 1 12 16 18 0.00000 0.00000 - 56 Torsion 1 12 16 20 180.00000 -0.00000 + 56 Torsion 1 12 16 20 180.00000 0.00000 57 Torsion 2 4 6 10 180.00000 0.00000 - 58 Torsion 2 5 3 7 180.00000 -0.00000 - 59 Torsion 2 11 15 17 0.00000 -0.00000 - 60 Torsion 2 11 15 19 180.00000 -0.00000 + 58 Torsion 2 5 3 7 180.00000 0.00000 + 59 Torsion 2 11 15 17 0.00000 0.00000 + 60 Torsion 2 11 15 19 180.00000 0.00000 61 Torsion 3 1 6 4 0.00000 0.00000 - 62 Torsion 3 1 6 10 180.00000 -0.00000 + 62 Torsion 3 1 6 10 180.00000 0.00000 63 Torsion 3 1 12 14 0.00000 0.00000 64 Torsion 3 1 12 16 180.00000 0.00000 65 Torsion 3 5 2 4 0.00000 0.00000 66 Torsion 3 5 2 11 180.00000 0.00000 67 Torsion 4 2 5 9 180.00000 0.00000 - 68 Torsion 4 2 11 13 0.00000 -0.00000 + 68 Torsion 4 2 11 13 0.00000 0.00000 69 Torsion 4 2 11 15 180.00000 0.00000 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 -0.00000 + 71 Torsion 5 2 4 6 0.00000 0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 - 73 Torsion 5 2 11 13 180.00000 -0.00000 - 74 Torsion 5 2 11 15 0.00000 -0.00000 - 75 Torsion 5 3 1 6 0.00000 -0.00000 - 76 Torsion 5 3 1 12 180.00000 -0.00000 - 77 Torsion 6 1 3 7 180.00000 -0.00000 + 73 Torsion 5 2 11 13 180.00000 0.00000 + 74 Torsion 5 2 11 15 0.00000 0.00000 + 75 Torsion 5 3 1 6 0.00000 0.00000 + 76 Torsion 5 3 1 12 180.00000 0.00000 + 77 Torsion 6 1 3 7 180.00000 0.00000 78 Torsion 6 1 12 14 180.00000 0.00000 79 Torsion 6 1 12 16 0.00000 0.00000 - 80 Torsion 6 4 2 11 180.00000 -0.00000 - 81 Torsion 7 3 1 12 -0.00000 -0.00000 - 82 Torsion 7 3 5 9 0.00000 -0.00000 - 83 Torsion 8 4 2 11 -0.00000 -0.00000 + 80 Torsion 6 4 2 11 180.00000 0.00000 + 81 Torsion 7 3 1 12 0.00000 0.00000 + 82 Torsion 7 3 5 9 0.00000 0.00000 + 83 Torsion 8 4 2 11 0.00000 0.00000 84 Torsion 8 4 6 10 0.00000 0.00000 85 Torsion 9 5 2 11 0.00000 0.00000 86 Torsion 10 6 1 12 0.00000 0.00000 87 Torsion 13 11 15 17 180.00000 0.00000 - 88 Torsion 13 11 15 19 -0.00000 0.00000 + 88 Torsion 13 11 15 19 0.00000 0.00000 89 Torsion 14 12 16 18 180.00000 0.00000 - 90 Torsion 14 12 16 20 -0.00000 0.00000 - - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 + 90 Torsion 14 12 16 20 0.00000 0.00000 + + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 NWChem SCF Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + ao basis = "ao basis" functions = 60 @@ -4716,30 +4803,30 @@ Divinylbenzene in STO-3G basis set Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 + - - Forming initial guess at 19.1s + Forming initial guess at 4.7s Loading old vectors from job with title : Divinylbenzene in STO-3G basis set - + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -4749,9 +4836,9 @@ Divinylbenzene in STO-3G basis set 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag + - - Starting SCF solution at 19.1s + Starting SCF solution at 4.7s @@ -4764,33 +4851,45 @@ Divinylbenzene in STO-3G basis set ---------------------------------------------- + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507878 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.173D+05 #integrals = 3.523D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 + + iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7779545645 5.34D-04 1.16D-04 19.4 - 2 -379.7779545979 4.25D-06 1.51D-06 20.7 + 1 -379.7779555172 5.35D-04 1.16D-04 4.6 + 2 -379.7779551101 2.00D-05 5.28D-06 4.7 Final RHF results ------------------ - Total SCF energy = -379.777954597878 - One-electron energy = -1412.141769630618 - Two-electron energy = 580.246615667285 - Nuclear repulsion energy = 452.117199365455 - - Time for solution = 1.6s + Total SCF energy = -379.777955110136 + One-electron energy = -1412.141540797475 + Two-electron energy = 580.246505274367 + Nuclear repulsion energy = 452.117080412971 + Time for solution = 0.3s + Symmetry analysis of molecular orbitals - final ----------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -4800,7 +4899,7 @@ Divinylbenzene in STO-3G basis set 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag - + Final eigenvalues ----------------- @@ -4850,276 +4949,276 @@ Divinylbenzene in STO-3G basis set 43 0.6323 44 0.6349 45 0.6825 - + ROHF Final Molecular Orbital Analysis ------------------------------------- - + Vector 11 Occ=2.000000D+00 E=-1.106644D+00 Symmetry=ag - MO Center= 2.0D-17, -1.8D-17, 1.4D-23, r^2= 2.8D+00 + MO Center= 6.9D-18, -3.2D-17, -9.2D-23, r^2= 2.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.271028 1 C s 7 0.271028 2 C s 12 0.245765 3 C s 17 0.245765 4 C s - 22 0.245642 5 C s 27 0.245642 6 C s - - Vector 12 Occ=2.000000D+00 E=-1.031708D+00 Symmetry=bu - MO Center= -1.8D-17, -5.3D-17, 1.1D-25, r^2= 7.9D+00 + 22 0.245643 5 C s 27 0.245643 6 C s + + Vector 12 Occ=2.000000D+00 E=-1.031709D+00 Symmetry=bu + MO Center= 6.4D-19, -1.0D-16, 2.8D-37, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.295371 11 C s 41 -0.295371 12 C s - 2 -0.264605 1 C s 7 0.264605 2 C s - 48 0.216146 15 C s 53 -0.216146 16 C s - - Vector 13 Occ=2.000000D+00 E=-9.884411D-01 Symmetry=ag - MO Center= -3.3D-17, -2.1D-16, -4.8D-20, r^2= 1.1D+01 + 2 -0.264604 1 C s 7 0.264604 2 C s + 48 0.216147 15 C s 53 -0.216147 16 C s + + Vector 13 Occ=2.000000D+00 E=-9.884409D-01 Symmetry=ag + MO Center= 6.6D-18, -1.4D-16, 1.0D-21, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.313083 11 C s 41 0.313083 12 C s - 48 0.309296 15 C s 53 0.309296 16 C s - - Vector 14 Occ=2.000000D+00 E=-9.609295D-01 Symmetry=bu - MO Center= -4.2D-18, 3.1D-17, -6.8D-38, r^2= 3.0D+00 + 48 0.309297 15 C s 53 0.309297 16 C s + + Vector 14 Occ=2.000000D+00 E=-9.609290D-01 Symmetry=bu + MO Center= 4.1D-17, -3.7D-17, 5.3D-24, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.354260 3 C s 17 -0.354260 4 C s - 22 0.320759 5 C s 27 -0.320759 6 C s - - Vector 15 Occ=2.000000D+00 E=-9.226853D-01 Symmetry=bu - MO Center= -2.7D-17, -5.9D-16, 2.1D-36, r^2= 8.4D+00 + 12 0.354259 3 C s 17 -0.354259 4 C s + 22 0.320758 5 C s 27 -0.320758 6 C s + + Vector 15 Occ=2.000000D+00 E=-9.226844D-01 Symmetry=bu + MO Center= -1.6D-17, -6.0D-17, -7.0D-24, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.282855 15 C s 53 -0.282855 16 C s + 48 0.282854 15 C s 53 -0.282854 16 C s 2 0.279962 1 C s 7 -0.279962 2 C s - 22 -0.200870 5 C s 27 0.200870 6 C s - - Vector 16 Occ=2.000000D+00 E=-8.064075D-01 Symmetry=ag - MO Center= 5.8D-17, 1.6D-16, 7.3D-25, r^2= 8.0D+00 + 22 -0.200871 5 C s 27 0.200871 6 C s + + Vector 16 Occ=2.000000D+00 E=-8.064080D-01 Symmetry=ag + MO Center= 5.4D-17, 3.2D-17, -6.6D-37, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.233404 5 C s 27 0.233404 6 C s - 48 0.226455 15 C s 53 0.226455 16 C s - 2 -0.207425 1 C s 7 -0.207425 2 C s + 22 0.233406 5 C s 27 0.233406 6 C s + 48 0.226453 15 C s 53 0.226453 16 C s + 2 -0.207423 1 C s 7 -0.207423 2 C s 14 -0.166918 3 C py 19 0.166918 4 C py 36 -0.156353 11 C s 41 -0.156353 12 C s - + Vector 17 Occ=2.000000D+00 E=-7.712472D-01 Symmetry=ag - MO Center= 9.9D-17, 6.7D-17, 4.2D-38, r^2= 4.9D+00 + MO Center= -7.4D-18, 6.3D-17, 2.8D-23, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.319593 3 C s 17 0.319593 4 C s - 3 0.189473 1 C px 8 -0.189473 2 C px + 3 0.189471 1 C px 8 -0.189471 2 C px 24 0.173832 5 C py 29 -0.173832 6 C py 31 0.172224 7 H s 32 0.172224 8 H s - 22 -0.165501 5 C s 27 -0.165501 6 C s - - Vector 18 Occ=2.000000D+00 E=-7.329705D-01 Symmetry=bu - MO Center= 6.6D-17, 3.0D-17, 3.3D-26, r^2= 1.2D+01 + 22 -0.165499 5 C s 27 -0.165499 6 C s + + Vector 18 Occ=2.000000D+00 E=-7.329704D-01 Symmetry=bu + MO Center= 3.2D-17, -5.1D-16, -9.9D-20, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.293348 11 C s 41 -0.293348 12 C s - 48 -0.246644 15 C s 53 0.246644 16 C s - 45 0.177497 13 H s 46 -0.177497 14 H s + 48 -0.246645 15 C s 53 0.246645 16 C s + 45 0.177498 13 H s 46 -0.177498 14 H s 57 -0.166398 17 H s 58 0.166398 18 H s - - Vector 19 Occ=2.000000D+00 E=-7.072448D-01 Symmetry=ag - MO Center= 4.7D-18, -1.8D-16, 1.2D-23, r^2= 7.7D+00 + + Vector 19 Occ=2.000000D+00 E=-7.072447D-01 Symmetry=ag + MO Center= -1.2D-17, 3.8D-16, -4.0D-24, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.195982 5 C px 28 -0.195982 6 C px - 36 0.180436 11 C s 41 0.180436 12 C s - 13 0.178104 3 C px 18 -0.178104 4 C px - 33 0.171311 9 H s 34 0.171311 10 H s - 48 -0.162922 15 C s 53 -0.162922 16 C s - - Vector 20 Occ=2.000000D+00 E=-6.391358D-01 Symmetry=ag - MO Center= -9.3D-18, -2.5D-18, -7.7D-23, r^2= 9.3D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 49 0.210540 15 C px 54 -0.210540 16 C px - 38 0.182889 11 C py 43 -0.182889 12 C py - 57 0.181957 17 H s 58 0.181957 18 H s + 36 0.180435 11 C s 41 0.180435 12 C s + 13 0.178105 3 C px 18 -0.178105 4 C px + 33 0.171312 9 H s 34 0.171312 10 H s + 48 -0.162921 15 C s 53 -0.162921 16 C s + + Vector 20 Occ=2.000000D+00 E=-6.391354D-01 Symmetry=ag + MO Center= 2.5D-17, 9.8D-17, 2.2D-24, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.210542 15 C px 54 -0.210542 16 C px + 38 0.182888 11 C py 43 -0.182888 12 C py + 57 0.181959 17 H s 58 0.181959 18 H s 45 -0.153426 13 H s 46 -0.153426 14 H s - - Vector 21 Occ=2.000000D+00 E=-6.150839D-01 Symmetry=bu - MO Center= 6.7D-17, -1.3D-16, 2.9D-26, r^2= 1.0D+01 + + Vector 21 Occ=2.000000D+00 E=-6.150835D-01 Symmetry=bu + MO Center= -5.2D-17, -8.4D-17, 2.1D-39, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.216161 11 C px 42 0.216161 12 C px - 50 0.215186 15 C py 55 0.215186 16 C py + 37 0.216160 11 C px 42 0.216160 12 C px + 50 0.215187 15 C py 55 0.215187 16 C py 14 0.188104 3 C py 19 0.188104 4 C py - 59 -0.187517 19 H s 60 0.187517 20 H s - 45 -0.156517 13 H s 46 0.156517 14 H s - - Vector 22 Occ=2.000000D+00 E=-5.776103D-01 Symmetry=bu - MO Center= 1.4D-17, -1.7D-18, 2.0D-26, r^2= 6.5D+00 + 59 -0.187518 19 H s 60 0.187518 20 H s + 45 -0.156516 13 H s 46 0.156516 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.776098D-01 Symmetry=bu + MO Center= -4.1D-16, 5.8D-17, 1.9D-18, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.234598 7 H s 32 0.234598 8 H s + 31 -0.234597 7 H s 32 0.234597 8 H s 33 0.234610 9 H s 34 -0.234610 10 H s - 13 -0.227181 3 C px 18 -0.227181 4 C px - 2 0.221225 1 C s 7 -0.221225 2 C s - 24 -0.178097 5 C py 29 -0.178097 6 C py - - Vector 23 Occ=2.000000D+00 E=-5.638131D-01 Symmetry=bu - MO Center= 1.5D-17, 5.4D-18, 3.2D-38, r^2= 8.6D+00 + 13 -0.227179 3 C px 18 -0.227179 4 C px + 2 0.221229 1 C s 7 -0.221229 2 C s + 24 -0.178094 5 C py 29 -0.178094 6 C py + + Vector 23 Occ=2.000000D+00 E=-5.638130D-01 Symmetry=bu + MO Center= 3.1D-17, -2.1D-17, -1.1D-21, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.257183 5 C px 28 0.257183 6 C px - 49 0.246865 15 C px 54 0.246865 16 C px + 23 0.257180 5 C px 28 0.257180 6 C px + 49 0.246867 15 C px 54 0.246867 16 C px 3 -0.216648 1 C px 8 -0.216648 2 C px - 57 0.215086 17 H s 58 -0.215086 18 H s - 38 0.174033 11 C py 43 0.174033 12 C py - - Vector 24 Occ=2.000000D+00 E=-5.628889D-01 Symmetry=ag - MO Center= -2.0D-17, 3.7D-16, -8.7D-24, r^2= 1.4D+01 + 57 0.215087 17 H s 58 -0.215087 18 H s + 38 0.174035 11 C py 43 0.174035 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.628886D-01 Symmetry=ag + MO Center= -9.6D-17, 1.3D-16, -9.5D-20, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 0.337868 15 C py 55 -0.337868 16 C py + 50 0.337869 15 C py 55 -0.337869 16 C py 59 -0.264527 19 H s 60 -0.264527 20 H s - 37 0.253585 11 C px 42 -0.253585 12 C px + 37 0.253584 11 C px 42 -0.253584 12 C px 45 -0.153484 13 H s 46 -0.153484 14 H s - - Vector 25 Occ=2.000000D+00 E=-5.324993D-01 Symmetry=bu - MO Center= 5.9D-18, -4.1D-17, 4.4D-27, r^2= 4.3D+00 + + Vector 25 Occ=2.000000D+00 E=-5.324986D-01 Symmetry=bu + MO Center= -2.3D-17, 2.3D-17, 5.5D-21, r^2= 4.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 13 0.304551 3 C px 18 0.304551 4 C px 31 0.255648 7 H s 32 -0.255648 8 H s - 24 -0.226741 5 C py 29 -0.226741 6 C py - 33 0.220993 9 H s 34 -0.220993 10 H s - 23 0.186283 5 C px 28 0.186283 6 C px - - Vector 26 Occ=2.000000D+00 E=-5.074036D-01 Symmetry=bu - MO Center= -4.3D-17, 5.8D-17, -5.1D-39, r^2= 8.7D+00 + 24 -0.226739 5 C py 29 -0.226739 6 C py + 33 0.220992 9 H s 34 -0.220992 10 H s + 23 0.186285 5 C px 28 0.186285 6 C px + + Vector 26 Occ=2.000000D+00 E=-5.074034D-01 Symmetry=bu + MO Center= -2.1D-17, -3.4D-16, -4.1D-23, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.237851 15 C py 55 -0.237851 16 C py - 14 0.226864 3 C py 19 0.226864 4 C py - 37 -0.210174 11 C px 42 -0.210174 12 C px - 24 -0.191970 5 C py 29 -0.191970 6 C py - 38 0.186278 11 C py 43 0.186278 12 C py - - Vector 27 Occ=2.000000D+00 E=-4.981106D-01 Symmetry=ag - MO Center= 1.2D-16, 7.8D-17, -1.8D-36, r^2= 1.2D+01 + 14 0.226865 3 C py 19 0.226865 4 C py + 37 -0.210175 11 C px 42 -0.210175 12 C px + 24 -0.191971 5 C py 29 -0.191971 6 C py + 38 0.186276 11 C py 43 0.186276 12 C py + + Vector 27 Occ=2.000000D+00 E=-4.981101D-01 Symmetry=ag + MO Center= -6.3D-17, -3.9D-17, -3.3D-35, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.295932 15 C px 54 -0.295932 16 C px - 57 0.268764 17 H s 58 0.268764 18 H s + 49 0.295931 15 C px 54 -0.295931 16 C px + 57 0.268763 17 H s 58 0.268763 18 H s 37 -0.205387 11 C px 42 0.205387 12 C px 45 0.201213 13 H s 46 0.201213 14 H s - 31 -0.156856 7 H s 32 -0.156856 8 H s - - Vector 28 Occ=2.000000D+00 E=-4.772562D-01 Symmetry=au - MO Center= 1.4D-18, -5.4D-18, -2.8D-20, r^2= 3.5D+00 + 31 -0.156858 7 H s 32 -0.156858 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.772560D-01 Symmetry=au + MO Center= 2.0D-17, 9.2D-18, 1.1D-20, r^2= 3.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.328887 1 C pz 10 0.328887 2 C pz 15 0.302011 3 C pz 20 0.302011 4 C pz 25 0.301207 5 C pz 30 0.301207 6 C pz 39 0.159126 11 C pz 44 0.159126 12 C pz - - Vector 29 Occ=2.000000D+00 E=-4.486540D-01 Symmetry=bu - MO Center= -8.2D-17, 4.1D-16, -4.7D-23, r^2= 1.2D+01 + + Vector 29 Occ=2.000000D+00 E=-4.486543D-01 Symmetry=bu + MO Center= 7.6D-17, -3.0D-16, 1.0D-23, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.255187 13 H s 46 -0.255187 14 H s - 4 0.249209 1 C py 9 0.249209 2 C py + 4 0.249211 1 C py 9 0.249211 2 C py 57 0.227221 17 H s 58 -0.227221 18 H s - 59 -0.218925 19 H s 60 0.218925 20 H s - 37 -0.212140 11 C px 42 -0.212140 12 C px - - Vector 30 Occ=2.000000D+00 E=-4.259195D-01 Symmetry=ag - MO Center= -7.3D-17, 2.3D-16, -8.3D-21, r^2= 4.8D+00 + 59 -0.218924 19 H s 60 0.218924 20 H s + 37 -0.212139 11 C px 42 -0.212139 12 C px + + Vector 30 Occ=2.000000D+00 E=-4.259206D-01 Symmetry=ag + MO Center= 6.4D-17, 1.5D-17, -9.0D-21, r^2= 4.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.283934 9 H s 34 0.283934 10 H s - 3 0.255244 1 C px 8 -0.255244 2 C px + 33 0.283935 9 H s 34 0.283935 10 H s + 3 0.255245 1 C px 8 -0.255245 2 C px 13 -0.228238 3 C px 18 0.228238 4 C px - 14 0.217066 3 C py 19 -0.217066 4 C py - 23 0.211550 5 C px 28 -0.211550 6 C px - - Vector 31 Occ=2.000000D+00 E=-4.182021D-01 Symmetry=ag - MO Center= 1.3D-16, -5.2D-16, 5.1D-21, r^2= 7.1D+00 + 14 0.217065 3 C py 19 -0.217065 4 C py + 23 0.211551 5 C px 28 -0.211551 6 C px + + Vector 31 Occ=2.000000D+00 E=-4.182029D-01 Symmetry=ag + MO Center= 3.1D-16, 3.3D-16, -1.8D-21, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 38 0.219472 11 C py 43 -0.219472 12 C py - 4 0.216753 1 C py 9 -0.216753 2 C py - 31 -0.215282 7 H s 32 -0.215282 8 H s - 23 0.205815 5 C px 28 -0.205815 6 C px - 3 0.200086 1 C px 8 -0.200086 2 C px - - Vector 32 Occ=2.000000D+00 E=-3.868290D-01 Symmetry=bg - MO Center= 3.3D-18, -1.1D-17, 1.3D-23, r^2= 8.5D+00 + 38 0.219474 11 C py 43 -0.219474 12 C py + 4 0.216754 1 C py 9 -0.216754 2 C py + 31 -0.215280 7 H s 32 -0.215280 8 H s + 23 0.205813 5 C px 28 -0.205813 6 C px + 3 0.200084 1 C px 8 -0.200084 2 C px + + Vector 32 Occ=2.000000D+00 E=-3.868289D-01 Symmetry=bg + MO Center= 0.0D+00, 0.0D+00, 4.5D-19, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.381768 11 C pz 44 -0.381768 12 C pz 5 -0.312290 1 C pz 10 0.312290 2 C pz - 51 0.310301 15 C pz 56 -0.310301 16 C pz - + 51 0.310302 15 C pz 56 -0.310302 16 C pz + Vector 33 Occ=2.000000D+00 E=-3.269088D-01 Symmetry=au - MO Center= 1.7D-17, -7.3D-18, 4.5D-20, r^2= 1.1D+01 + MO Center= -4.2D-18, -3.1D-17, -3.0D-20, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.426190 15 C pz 56 0.426190 16 C pz 39 0.415001 11 C pz 44 0.415001 12 C pz 15 -0.158548 3 C pz 20 -0.158548 4 C pz 25 -0.158700 5 C pz 30 -0.158700 6 C pz - - Vector 34 Occ=2.000000D+00 E=-2.855874D-01 Symmetry=bg - MO Center= 1.3D-17, -9.3D-18, 3.7D-23, r^2= 2.6D+00 + + Vector 34 Occ=2.000000D+00 E=-2.855873D-01 Symmetry=bg + MO Center= -1.7D-18, 4.0D-17, -6.1D-20, r^2= 2.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.458980 3 C pz 20 -0.458980 4 C pz 25 0.460839 5 C pz 30 -0.460839 6 C pz - - Vector 35 Occ=2.000000D+00 E=-2.332303D-01 Symmetry=bg - MO Center= 1.2D-17, 2.9D-17, -8.1D-26, r^2= 6.9D+00 + + Vector 35 Occ=2.000000D+00 E=-2.332302D-01 Symmetry=bg + MO Center= 7.2D-18, -1.3D-16, 5.2D-21, r^2= 6.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.420758 1 C pz 10 -0.420758 2 C pz + 5 0.420759 1 C pz 10 -0.420759 2 C pz 51 0.350519 15 C pz 56 -0.350519 16 C pz - 15 0.233619 3 C pz 20 -0.233619 4 C pz - 25 -0.232024 5 C pz 30 0.232024 6 C pz + 15 0.233620 3 C pz 20 -0.233620 4 C pz + 25 -0.232023 5 C pz 30 0.232023 6 C pz 39 0.216659 11 C pz 44 -0.216659 12 C pz - - Vector 36 Occ=0.000000D+00 E= 2.069473D-01 Symmetry=au - MO Center= 8.5D-17, -2.4D-16, 9.5D-23, r^2= 7.1D+00 + + Vector 36 Occ=0.000000D+00 E= 2.069474D-01 Symmetry=au + MO Center= -6.6D-17, 1.1D-16, 1.6D-20, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.479185 1 C pz 10 0.479185 2 C pz - 51 -0.411110 15 C pz 56 -0.411110 16 C pz + 51 -0.411109 15 C pz 56 -0.411109 16 C pz 25 -0.284375 5 C pz 30 -0.284375 6 C pz 15 -0.250545 3 C pz 20 -0.250545 4 C pz 39 0.249755 11 C pz 44 0.249755 12 C pz - - Vector 37 Occ=0.000000D+00 E= 2.731784D-01 Symmetry=au - MO Center= 1.5D-17, 2.3D-17, -1.9D-22, r^2= 2.7D+00 + + Vector 37 Occ=0.000000D+00 E= 2.731783D-01 Symmetry=au + MO Center= -5.8D-18, -1.8D-17, -7.8D-21, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.583592 3 C pz 20 0.583592 4 C pz 25 -0.559958 5 C pz 30 -0.559958 6 C pz - - Vector 38 Occ=0.000000D+00 E= 3.186015D-01 Symmetry=bg - MO Center= -6.7D-18, -2.0D-16, 4.1D-24, r^2= 1.1D+01 + + Vector 38 Occ=0.000000D+00 E= 3.186016D-01 Symmetry=bg + MO Center= 2.9D-17, -3.9D-17, 2.1D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.537711 15 C pz 56 0.537711 16 C pz 39 0.531794 11 C pz 44 -0.531794 12 C pz 15 0.221752 3 C pz 20 -0.221752 4 C pz 25 -0.216118 5 C pz 30 0.216118 6 C pz - + Vector 39 Occ=0.000000D+00 E= 4.060358D-01 Symmetry=au - MO Center= 9.7D-17, 1.2D-16, 2.7D-21, r^2= 8.4D+00 + MO Center= 7.3D-17, -4.4D-16, 8.3D-20, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.539444 11 C pz 44 0.539444 12 C pz 5 -0.472288 1 C pz 10 -0.472288 2 C pz 51 -0.416310 15 C pz 56 -0.416310 16 C pz - 25 0.189508 5 C pz 30 0.189508 6 C pz + 25 0.189509 5 C pz 30 0.189509 6 C pz 15 0.162211 3 C pz 20 0.162211 4 C pz - + Vector 40 Occ=0.000000D+00 E= 5.374914D-01 Symmetry=bg - MO Center= 7.8D-17, -3.1D-16, 4.9D-23, r^2= 3.7D+00 + MO Center= -1.6D-16, 1.2D-16, -4.3D-18, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.545444 1 C pz 10 -0.545444 2 C pz @@ -5127,57 +5226,57 @@ Divinylbenzene in STO-3G basis set 25 0.479468 5 C pz 30 -0.479468 6 C pz 39 0.274952 11 C pz 44 -0.274952 12 C pz 51 -0.158159 15 C pz 56 0.158159 16 C pz - - Vector 41 Occ=0.000000D+00 E= 5.684305D-01 Symmetry=ag - MO Center= -1.5D-16, -1.5D-16, -1.9D-20, r^2= 8.6D+00 + + Vector 41 Occ=0.000000D+00 E= 5.684326D-01 Symmetry=ag + MO Center= 4.1D-17, -3.6D-17, 4.2D-21, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 -0.416731 7 H s 32 -0.416731 8 H s - 33 -0.415457 9 H s 34 -0.415457 10 H s - 2 0.396248 1 C s 7 0.396248 2 C s - 59 -0.352095 19 H s 60 -0.352095 20 H s - 38 -0.349665 11 C py 43 0.349665 12 C py - + 31 -0.416717 7 H s 32 -0.416717 8 H s + 33 -0.415437 9 H s 34 -0.415437 10 H s + 2 0.396267 1 C s 7 0.396267 2 C s + 59 -0.352099 19 H s 60 -0.352099 20 H s + 38 -0.349672 11 C py 43 0.349672 12 C py + Vector 42 Occ=0.000000D+00 E= 5.827712D-01 Symmetry=bu - MO Center= -3.5D-17, -2.3D-18, -6.4D-24, r^2= 1.0D+01 + MO Center= 9.6D-17, 2.1D-16, 1.9D-22, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.433630 13 H s 46 -0.433630 14 H s - 37 0.355582 11 C px 42 0.355582 12 C px - 13 0.338720 3 C px 18 0.338720 4 C px - 57 -0.337751 17 H s 58 0.337751 18 H s - 59 0.322378 19 H s 60 -0.322378 20 H s - - Vector 43 Occ=0.000000D+00 E= 6.322706D-01 Symmetry=bu - MO Center= -2.6D-16, 6.7D-16, 2.5D-23, r^2= 6.8D+00 + 45 0.433624 13 H s 46 -0.433624 14 H s + 37 0.355585 11 C px 42 0.355585 12 C px + 13 0.338729 3 C px 18 0.338729 4 C px + 57 -0.337740 17 H s 58 0.337740 18 H s + 59 0.322375 19 H s 60 -0.322375 20 H s + + Vector 43 Occ=0.000000D+00 E= 6.322689D-01 Symmetry=bu + MO Center= 3.0D-17, -1.8D-16, -4.1D-22, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.533844 11 C s 41 -0.533844 12 C s - 33 0.462602 9 H s 34 -0.462602 10 H s - 4 0.456069 1 C py 9 0.456069 2 C py - 24 0.334338 5 C py 29 0.334338 6 C py - 38 0.320879 11 C py 43 0.320879 12 C py - - Vector 44 Occ=0.000000D+00 E= 6.349000D-01 Symmetry=ag - MO Center= 1.0D-16, -4.8D-16, 6.1D-20, r^2= 1.1D+01 + 36 0.533810 11 C s 41 -0.533810 12 C s + 33 0.462623 9 H s 34 -0.462623 10 H s + 4 0.456063 1 C py 9 0.456063 2 C py + 24 0.334348 5 C py 29 0.334348 6 C py + 38 0.320880 11 C py 43 0.320880 12 C py + + Vector 44 Occ=0.000000D+00 E= 6.348990D-01 Symmetry=ag + MO Center= 3.8D-17, -9.4D-16, -4.9D-21, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.583492 13 H s 46 0.583492 14 H s - 36 -0.409995 11 C s 41 -0.409995 12 C s - 57 -0.389787 17 H s 58 -0.389787 18 H s - 12 0.386684 3 C s 17 0.386684 4 C s - 37 0.336449 11 C px 42 -0.336449 12 C px - - Vector 45 Occ=0.000000D+00 E= 6.824547D-01 Symmetry=ag - MO Center= 9.6D-17, -2.3D-16, 1.4D-21, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.721580 15 C s 53 0.721580 16 C s - 22 0.573182 5 C s 27 0.573182 6 C s - 57 -0.554833 17 H s 58 -0.554833 18 H s + 36 -0.410017 11 C s 41 -0.410017 12 C s + 57 -0.389771 17 H s 58 -0.389771 18 H s + 12 0.386682 3 C s 17 0.386682 4 C s + 37 0.336442 11 C px 42 -0.336442 12 C px + + Vector 45 Occ=0.000000D+00 E= 6.824552D-01 Symmetry=ag + MO Center= -1.3D-16, -4.1D-16, 1.2D-20, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.721591 15 C s 53 0.721591 16 C s + 22 0.573176 5 C s 27 0.573176 6 C s + 57 -0.554837 17 H s 58 -0.554837 18 H s 12 -0.419341 3 C s 17 -0.419341 4 C s - 59 -0.379625 19 H s 60 -0.379625 20 H s - + 59 -0.379637 19 H s 60 -0.379637 20 H s + center of mass -------------- @@ -5185,10 +5284,10 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2576.993140928739 -1.648470761309 0.000000000000 - -1.648470761309 376.118261825478 0.000000000000 - 0.000000000000 0.000000000000 2953.111402754218 - + 2576.996202793303 -1.648166525657 0.000000000000 + -1.648166525657 376.118048108277 0.000000000000 + 0.000000000000 0.000000000000 2953.114250901581 + Mulliken analysis of the total density -------------------------------------- @@ -5214,99 +5313,102 @@ Divinylbenzene in STO-3G basis set 18 H 1 0.94 0.94 19 H 1 0.94 0.94 20 H 1 0.94 0.94 - + Multipole analysis of the density wrt the origin ------------------------------------------------ - + L x y z total open nuclear - - - - ----- ---- ------- 0 0 0 0 -0.000000 0.000000 70.000000 - - 1 1 0 0 -0.000000 0.000000 0.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 1 0 1 0 0.000000 0.000000 0.000000 - 1 0 0 1 0.000000 0.000000 0.000000 - - 2 2 0 0 -38.489242 0.000000 235.913180 - 2 1 1 0 0.092975 0.000000 -4.471841 - 2 1 0 1 -0.000000 0.000000 0.000000 - 2 0 2 0 -39.167750 0.000000 1465.727644 + 1 0 0 1 -0.000000 0.000000 0.000000 + + 2 2 0 0 -38.489222 0.000000 235.913078 + 2 1 1 0 0.092965 0.000000 -4.471957 + 2 1 0 1 0.000000 0.000000 0.000000 + 2 0 2 0 -39.167740 0.000000 1465.729381 2 0 1 1 0.000000 0.000000 0.000000 - 2 0 0 2 -43.441865 0.000000 0.000000 + 2 0 0 2 -43.441868 0.000000 0.000000 + + + Parallel integral file used 9 records with 0 large values Line search: - step= 1.00 grad=-1.8D-07 hess= 8.3D-08 energy= -379.777955 mode=accept + step= 1.00 grad=-1.8D-07 hess= 8.5D-08 energy= -379.777955 mode=accept new step= 1.00 predicted energy= -379.777955 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 -------- Step 4 -------- - - + + Geometry "geometry" -> "geometry" --------------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.22791436 1.39288682 0.00000000 - 2 C 6.0000 -0.22791436 -1.39288682 0.00000000 - 3 C 6.0000 1.28919622 0.48588492 0.00000000 - 4 C 6.0000 -1.28919622 -0.48588492 0.00000000 - 5 C 6.0000 1.06903351 -0.87838949 0.00000000 - 6 C 6.0000 -1.06903351 0.87838949 0.00000000 - 7 H 1.0000 2.30488364 0.86056857 0.00000000 - 8 H 1.0000 -2.30488364 -0.86056857 0.00000000 - 9 H 1.0000 1.91771846 -1.54845933 0.00000000 - 10 H 1.0000 -1.91771846 1.54845933 0.00000000 - 11 C 6.0000 -0.52246137 -2.85975751 0.00000000 - 12 C 6.0000 0.52246137 2.85975751 0.00000000 - 13 H 1.0000 -1.57985434 -3.10026381 0.00000000 - 14 H 1.0000 1.57985434 3.10026381 0.00000000 - 15 C 6.0000 0.35270515 -3.83939296 0.00000000 - 16 C 6.0000 -0.35270515 3.83939296 0.00000000 - 17 H 1.0000 1.42081376 -3.67691614 0.00000000 - 18 H 1.0000 -1.42081376 3.67691614 0.00000000 - 19 H 1.0000 0.03744757 -4.87355368 0.00000000 - 20 H 1.0000 -0.03744757 4.87355368 0.00000000 - + 1 C 6.0000 0.22791249 1.39288748 0.00000000 + 2 C 6.0000 -0.22791249 -1.39288748 0.00000000 + 3 C 6.0000 1.28919537 0.48588632 0.00000000 + 4 C 6.0000 -1.28919537 -0.48588632 0.00000000 + 5 C 6.0000 1.06903481 -0.87838865 0.00000000 + 6 C 6.0000 -1.06903481 0.87838865 0.00000000 + 7 H 1.0000 2.30488244 0.86057095 0.00000000 + 8 H 1.0000 -2.30488244 -0.86057095 0.00000000 + 9 H 1.0000 1.91772166 -1.54845654 0.00000000 + 10 H 1.0000 -1.91772166 1.54845654 0.00000000 + 11 C 6.0000 -0.52245959 -2.85975846 0.00000000 + 12 C 6.0000 0.52245959 2.85975846 0.00000000 + 13 H 1.0000 -1.57985284 -3.10026315 0.00000000 + 14 H 1.0000 1.57985284 3.10026315 0.00000000 + 15 C 6.0000 0.35270448 -3.83939603 0.00000000 + 16 C 6.0000 -0.35270448 3.83939603 0.00000000 + 17 H 1.0000 1.42081357 -3.67692253 0.00000000 + 18 H 1.0000 -1.42081357 3.67692253 0.00000000 + 19 H 1.0000 0.03744355 -4.87355574 0.00000000 + 20 H 1.0000 -0.03744355 4.87355574 0.00000000 + Atomic Mass ----------- - + C 12.000000 H 1.007825 + - - Effective nuclear repulsion energy (a.u.) 452.1171993655 + Effective nuclear repulsion energy (a.u.) 452.1170804130 Nuclear Dipole moment (a.u.) ---------------------------- X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - + NWChem SCF Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + ao basis = "ao basis" functions = 60 @@ -5331,23 +5433,23 @@ Divinylbenzene in STO-3G basis set Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 - + The SCF is already converged - Total SCF energy = -379.777954597878 + Total SCF energy = -379.777955110136 NWChem Gradients Module ----------------------- - - + + Divinylbenzene in STO-3G basis set - + wavefunction = RHF @@ -5358,39 +5460,39 @@ Divinylbenzene in STO-3G basis set atom coordinates gradient x y z x y z - 1 C 0.430696 2.632174 0.000000 0.000018 -0.000015 0.000000 - 2 C -0.430696 -2.632174 0.000000 -0.000018 0.000015 0.000000 - 3 C 2.436228 0.918189 0.000000 0.000004 -0.000003 0.000000 - 4 C -2.436228 -0.918189 0.000000 -0.000004 0.000003 0.000000 - 5 C 2.020180 -1.659915 0.000000 0.000016 0.000010 0.000000 - 6 C -2.020180 1.659915 0.000000 -0.000016 -0.000010 0.000000 - 7 H 4.355599 1.626239 0.000000 0.000002 0.000008 0.000000 - 8 H -4.355599 -1.626239 0.000000 -0.000002 -0.000008 0.000000 - 9 H 3.623962 -2.926164 0.000000 -0.000007 0.000002 0.000000 - 10 H -3.623962 2.926164 0.000000 0.000007 -0.000002 0.000000 - 11 C -0.987309 -5.404158 0.000000 0.000001 -0.000019 0.000000 - 12 C 0.987309 5.404158 0.000000 -0.000001 0.000019 0.000000 - 13 H -2.985492 -5.858649 0.000000 0.000003 -0.000003 0.000000 - 14 H 2.985492 5.858649 0.000000 -0.000003 0.000003 0.000000 - 15 C 0.666516 -7.255401 0.000000 0.000021 0.000015 0.000000 - 16 C -0.666516 7.255401 0.000000 -0.000021 -0.000015 0.000000 - 17 H 2.684949 -6.948364 0.000000 -0.000016 -0.000008 0.000000 - 18 H -2.684949 6.948364 0.000000 0.000016 0.000008 0.000000 - 19 H 0.070766 -9.209681 0.000000 -0.000008 -0.000006 0.000000 - 20 H -0.070766 9.209681 0.000000 0.000008 0.000006 0.000000 - + 1 C 0.430692 2.632176 0.000000 0.000018 -0.000015 0.000000 + 2 C -0.430692 -2.632176 0.000000 -0.000018 0.000015 0.000000 + 3 C 2.436226 0.918192 0.000000 0.000004 -0.000003 0.000000 + 4 C -2.436226 -0.918192 0.000000 -0.000004 0.000003 0.000000 + 5 C 2.020183 -1.659914 0.000000 0.000016 0.000010 0.000000 + 6 C -2.020183 1.659914 0.000000 -0.000016 -0.000010 0.000000 + 7 H 4.355596 1.626243 0.000000 0.000002 0.000008 0.000000 + 8 H -4.355596 -1.626243 0.000000 -0.000002 -0.000008 0.000000 + 9 H 3.623968 -2.926159 0.000000 -0.000007 0.000002 0.000000 + 10 H -3.623968 2.926159 0.000000 0.000007 -0.000002 0.000000 + 11 C -0.987305 -5.404160 0.000000 0.000001 -0.000019 0.000000 + 12 C 0.987305 5.404160 0.000000 -0.000001 0.000019 0.000000 + 13 H -2.985489 -5.858648 0.000000 0.000003 -0.000003 0.000000 + 14 H 2.985489 5.858648 0.000000 -0.000003 0.000003 0.000000 + 15 C 0.666515 -7.255406 0.000000 0.000021 0.000015 0.000000 + 16 C -0.666515 7.255406 0.000000 -0.000021 -0.000015 0.000000 + 17 H 2.684948 -6.948376 0.000000 -0.000016 -0.000008 0.000000 + 18 H -2.684948 6.948376 0.000000 0.000016 0.000008 0.000000 + 19 H 0.070758 -9.209685 0.000000 -0.000008 -0.000005 0.000000 + 20 H -0.070758 9.209685 0.000000 0.000008 0.000005 0.000000 + ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.00 | 0.56 | + | CPU | 0.00 | 0.31 | ---------------------------------------- - | WALL | 0.00 | 0.56 | + | WALL | 0.00 | 0.33 | ---------------------------------------- - no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.000000000000000E+000 Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 4 -379.77795460 -1.0D-07 0.00002 0.00001 0.00020 0.00046 21.3 +@ 4 -379.77795511 -9.8D-08 0.00002 0.00001 0.00020 0.00046 5.5 ok ok ok ok @@ -5399,7 +5501,7 @@ Divinylbenzene in STO-3G basis set -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value Gradient ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- 1 Stretch 1 3 1.39606 -0.00000 @@ -5408,9 +5510,9 @@ Divinylbenzene in STO-3G basis set 4 Stretch 2 4 1.39606 -0.00000 5 Stretch 2 5 1.39527 0.00002 6 Stretch 2 11 1.49615 0.00002 - 7 Stretch 3 5 1.38192 -0.00000 + 7 Stretch 3 5 1.38193 0.00000 8 Stretch 3 7 1.08259 0.00000 - 9 Stretch 4 6 1.38192 -0.00000 + 9 Stretch 4 6 1.38193 0.00000 10 Stretch 4 8 1.08259 0.00000 11 Stretch 5 9 1.08132 -0.00001 12 Stretch 6 10 1.08132 -0.00001 @@ -5422,77 +5524,77 @@ Divinylbenzene in STO-3G basis set 18 Stretch 15 19 1.08115 0.00001 19 Stretch 16 18 1.08040 -0.00002 20 Stretch 16 20 1.08115 0.00001 - 21 Bend 1 3 5 121.35095 -0.00000 + 21 Bend 1 3 5 121.35100 -0.00000 22 Bend 1 3 7 119.23300 -0.00000 - 23 Bend 1 6 4 120.80535 0.00000 - 24 Bend 1 6 10 120.06938 -0.00000 - 25 Bend 1 12 14 114.16802 -0.00000 - 26 Bend 1 12 16 126.86972 0.00001 - 27 Bend 2 4 6 121.35095 -0.00000 + 23 Bend 1 6 4 120.80533 0.00000 + 24 Bend 1 6 10 120.06945 -0.00000 + 25 Bend 1 12 14 114.16793 -0.00000 + 26 Bend 1 12 16 126.86986 0.00001 + 27 Bend 2 4 6 121.35100 -0.00000 28 Bend 2 4 8 119.23300 -0.00000 - 29 Bend 2 5 3 120.80535 0.00000 - 30 Bend 2 5 9 120.06938 -0.00000 - 31 Bend 2 11 13 114.16802 -0.00000 - 32 Bend 2 11 15 126.86972 0.00001 - 33 Bend 3 1 6 117.84369 0.00000 - 34 Bend 3 1 12 119.16417 -0.00000 - 35 Bend 3 5 9 119.12527 0.00000 - 36 Bend 4 2 5 117.84369 0.00000 - 37 Bend 4 2 11 119.16417 -0.00000 - 38 Bend 4 6 10 119.12527 0.00000 - 39 Bend 5 2 11 122.99213 0.00000 - 40 Bend 5 3 7 119.41604 0.00001 - 41 Bend 6 1 12 122.99213 0.00000 - 42 Bend 6 4 8 119.41604 0.00001 - 43 Bend 11 15 17 123.12699 0.00001 - 44 Bend 11 15 19 121.27017 -0.00001 - 45 Bend 12 16 18 123.12699 0.00001 - 46 Bend 12 16 20 121.27017 -0.00001 - 47 Bend 13 11 15 118.96227 -0.00001 - 48 Bend 14 12 16 118.96227 -0.00001 - 49 Bend 17 15 19 115.60284 0.00000 - 50 Bend 18 16 20 115.60284 0.00000 - 51 Torsion 1 3 5 2 0.00000 0.00000 - 52 Torsion 1 3 5 9 180.00000 0.00000 - 53 Torsion 1 6 4 2 0.00000 0.00000 - 54 Torsion 1 6 4 8 180.00000 0.00000 - 55 Torsion 1 12 16 18 0.00000 0.00000 + 29 Bend 2 5 3 120.80533 0.00000 + 30 Bend 2 5 9 120.06945 -0.00000 + 31 Bend 2 11 13 114.16793 -0.00000 + 32 Bend 2 11 15 126.86986 0.00001 + 33 Bend 3 1 6 117.84368 0.00000 + 34 Bend 3 1 12 119.16412 -0.00000 + 35 Bend 3 5 9 119.12522 0.00000 + 36 Bend 4 2 5 117.84368 0.00000 + 37 Bend 4 2 11 119.16412 -0.00000 + 38 Bend 4 6 10 119.12522 0.00000 + 39 Bend 5 2 11 122.99220 0.00000 + 40 Bend 5 3 7 119.41601 0.00001 + 41 Bend 6 1 12 122.99220 0.00000 + 42 Bend 6 4 8 119.41601 0.00001 + 43 Bend 11 15 17 123.12702 0.00001 + 44 Bend 11 15 19 121.27013 -0.00001 + 45 Bend 12 16 18 123.12702 0.00001 + 46 Bend 12 16 20 121.27013 -0.00001 + 47 Bend 13 11 15 118.96221 -0.00001 + 48 Bend 14 12 16 118.96221 -0.00001 + 49 Bend 17 15 19 115.60285 0.00000 + 50 Bend 18 16 20 115.60285 0.00000 + 51 Torsion 1 3 5 2 0.00000 -0.00000 + 52 Torsion 1 3 5 9 180.00000 -0.00000 + 53 Torsion 1 6 4 2 0.00000 -0.00000 + 54 Torsion 1 6 4 8 180.00000 -0.00000 + 55 Torsion 1 12 16 18 0.00000 -0.00000 56 Torsion 1 12 16 20 180.00000 0.00000 - 57 Torsion 2 4 6 10 180.00000 0.00000 + 57 Torsion 2 4 6 10 180.00000 -0.00000 58 Torsion 2 5 3 7 180.00000 0.00000 59 Torsion 2 11 15 17 0.00000 0.00000 60 Torsion 2 11 15 19 180.00000 0.00000 - 61 Torsion 3 1 6 4 0.00000 0.00000 - 62 Torsion 3 1 6 10 180.00000 0.00000 - 63 Torsion 3 1 12 14 0.00000 0.00000 - 64 Torsion 3 1 12 16 180.00000 0.00000 - 65 Torsion 3 5 2 4 0.00000 0.00000 - 66 Torsion 3 5 2 11 180.00000 0.00000 - 67 Torsion 4 2 5 9 180.00000 0.00000 + 61 Torsion 3 1 6 4 0.00000 -0.00000 + 62 Torsion 3 1 6 10 180.00000 -0.00000 + 63 Torsion 3 1 12 14 0.00000 -0.00000 + 64 Torsion 3 1 12 16 180.00000 -0.00000 + 65 Torsion 3 5 2 4 0.00000 -0.00000 + 66 Torsion 3 5 2 11 180.00000 -0.00000 + 67 Torsion 4 2 5 9 180.00000 -0.00000 68 Torsion 4 2 11 13 0.00000 0.00000 - 69 Torsion 4 2 11 15 180.00000 0.00000 - 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 0.00000 + 69 Torsion 4 2 11 15 180.00000 -0.00000 + 70 Torsion 4 6 1 12 180.00000 -0.00000 + 71 Torsion 5 2 4 6 0.00000 0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 73 Torsion 5 2 11 13 180.00000 0.00000 - 74 Torsion 5 2 11 15 0.00000 0.00000 + 74 Torsion 5 2 11 15 0.00000 -0.00000 75 Torsion 5 3 1 6 0.00000 0.00000 76 Torsion 5 3 1 12 180.00000 0.00000 77 Torsion 6 1 3 7 180.00000 0.00000 - 78 Torsion 6 1 12 14 180.00000 0.00000 - 79 Torsion 6 1 12 16 0.00000 0.00000 + 78 Torsion 6 1 12 14 180.00000 -0.00000 + 79 Torsion 6 1 12 16 0.00000 -0.00000 80 Torsion 6 4 2 11 180.00000 0.00000 - 81 Torsion 7 3 1 12 -0.00000 0.00000 - 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 0.00000 - 84 Torsion 8 4 6 10 0.00000 0.00000 - 85 Torsion 9 5 2 11 0.00000 0.00000 - 86 Torsion 10 6 1 12 0.00000 0.00000 - 87 Torsion 13 11 15 17 180.00000 0.00000 - 88 Torsion 13 11 15 19 -0.00000 0.00000 - 89 Torsion 14 12 16 18 180.00000 0.00000 - 90 Torsion 14 12 16 20 -0.00000 0.00000 - + 81 Torsion 7 3 1 12 0.00000 0.00000 + 82 Torsion 7 3 5 9 0.00000 -0.00000 + 83 Torsion 8 4 2 11 0.00000 0.00000 + 84 Torsion 8 4 6 10 0.00000 -0.00000 + 85 Torsion 9 5 2 11 0.00000 -0.00000 + 86 Torsion 10 6 1 12 0.00000 -0.00000 + 87 Torsion 13 11 15 17 180.00000 -0.00000 + 88 Torsion 13 11 15 19 0.00000 -0.00000 + 89 Torsion 14 12 16 18 180.00000 -0.00000 + 90 Torsion 14 12 16 20 0.00000 -0.00000 + ---------------------- Optimization converged @@ -5501,7 +5603,7 @@ Divinylbenzene in STO-3G basis set Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 4 -379.77795460 -1.0D-07 0.00002 0.00001 0.00020 0.00046 21.3 +@ 4 -379.77795511 -9.8D-08 0.00002 0.00001 0.00020 0.00046 5.5 ok ok ok ok @@ -5510,7 +5612,7 @@ Divinylbenzene in STO-3G basis set -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value Gradient ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- 1 Stretch 1 3 1.39606 -0.00000 @@ -5519,9 +5621,9 @@ Divinylbenzene in STO-3G basis set 4 Stretch 2 4 1.39606 -0.00000 5 Stretch 2 5 1.39527 0.00002 6 Stretch 2 11 1.49615 0.00002 - 7 Stretch 3 5 1.38192 -0.00000 + 7 Stretch 3 5 1.38193 0.00000 8 Stretch 3 7 1.08259 0.00000 - 9 Stretch 4 6 1.38192 -0.00000 + 9 Stretch 4 6 1.38193 0.00000 10 Stretch 4 8 1.08259 0.00000 11 Stretch 5 9 1.08132 -0.00001 12 Stretch 6 10 1.08132 -0.00001 @@ -5533,145 +5635,145 @@ Divinylbenzene in STO-3G basis set 18 Stretch 15 19 1.08115 0.00001 19 Stretch 16 18 1.08040 -0.00002 20 Stretch 16 20 1.08115 0.00001 - 21 Bend 1 3 5 121.35095 -0.00000 + 21 Bend 1 3 5 121.35100 -0.00000 22 Bend 1 3 7 119.23300 -0.00000 - 23 Bend 1 6 4 120.80535 0.00000 - 24 Bend 1 6 10 120.06938 -0.00000 - 25 Bend 1 12 14 114.16802 -0.00000 - 26 Bend 1 12 16 126.86972 0.00001 - 27 Bend 2 4 6 121.35095 -0.00000 + 23 Bend 1 6 4 120.80533 0.00000 + 24 Bend 1 6 10 120.06945 -0.00000 + 25 Bend 1 12 14 114.16793 -0.00000 + 26 Bend 1 12 16 126.86986 0.00001 + 27 Bend 2 4 6 121.35100 -0.00000 28 Bend 2 4 8 119.23300 -0.00000 - 29 Bend 2 5 3 120.80535 0.00000 - 30 Bend 2 5 9 120.06938 -0.00000 - 31 Bend 2 11 13 114.16802 -0.00000 - 32 Bend 2 11 15 126.86972 0.00001 - 33 Bend 3 1 6 117.84369 0.00000 - 34 Bend 3 1 12 119.16417 -0.00000 - 35 Bend 3 5 9 119.12527 0.00000 - 36 Bend 4 2 5 117.84369 0.00000 - 37 Bend 4 2 11 119.16417 -0.00000 - 38 Bend 4 6 10 119.12527 0.00000 - 39 Bend 5 2 11 122.99213 0.00000 - 40 Bend 5 3 7 119.41604 0.00001 - 41 Bend 6 1 12 122.99213 0.00000 - 42 Bend 6 4 8 119.41604 0.00001 - 43 Bend 11 15 17 123.12699 0.00001 - 44 Bend 11 15 19 121.27017 -0.00001 - 45 Bend 12 16 18 123.12699 0.00001 - 46 Bend 12 16 20 121.27017 -0.00001 - 47 Bend 13 11 15 118.96227 -0.00001 - 48 Bend 14 12 16 118.96227 -0.00001 - 49 Bend 17 15 19 115.60284 0.00000 - 50 Bend 18 16 20 115.60284 0.00000 - 51 Torsion 1 3 5 2 0.00000 0.00000 - 52 Torsion 1 3 5 9 180.00000 0.00000 - 53 Torsion 1 6 4 2 0.00000 0.00000 - 54 Torsion 1 6 4 8 180.00000 0.00000 - 55 Torsion 1 12 16 18 0.00000 0.00000 + 29 Bend 2 5 3 120.80533 0.00000 + 30 Bend 2 5 9 120.06945 -0.00000 + 31 Bend 2 11 13 114.16793 -0.00000 + 32 Bend 2 11 15 126.86986 0.00001 + 33 Bend 3 1 6 117.84368 0.00000 + 34 Bend 3 1 12 119.16412 -0.00000 + 35 Bend 3 5 9 119.12522 0.00000 + 36 Bend 4 2 5 117.84368 0.00000 + 37 Bend 4 2 11 119.16412 -0.00000 + 38 Bend 4 6 10 119.12522 0.00000 + 39 Bend 5 2 11 122.99220 0.00000 + 40 Bend 5 3 7 119.41601 0.00001 + 41 Bend 6 1 12 122.99220 0.00000 + 42 Bend 6 4 8 119.41601 0.00001 + 43 Bend 11 15 17 123.12702 0.00001 + 44 Bend 11 15 19 121.27013 -0.00001 + 45 Bend 12 16 18 123.12702 0.00001 + 46 Bend 12 16 20 121.27013 -0.00001 + 47 Bend 13 11 15 118.96221 -0.00001 + 48 Bend 14 12 16 118.96221 -0.00001 + 49 Bend 17 15 19 115.60285 0.00000 + 50 Bend 18 16 20 115.60285 0.00000 + 51 Torsion 1 3 5 2 0.00000 -0.00000 + 52 Torsion 1 3 5 9 180.00000 -0.00000 + 53 Torsion 1 6 4 2 0.00000 -0.00000 + 54 Torsion 1 6 4 8 180.00000 -0.00000 + 55 Torsion 1 12 16 18 0.00000 -0.00000 56 Torsion 1 12 16 20 180.00000 0.00000 - 57 Torsion 2 4 6 10 180.00000 0.00000 + 57 Torsion 2 4 6 10 180.00000 -0.00000 58 Torsion 2 5 3 7 180.00000 0.00000 59 Torsion 2 11 15 17 0.00000 0.00000 60 Torsion 2 11 15 19 180.00000 0.00000 - 61 Torsion 3 1 6 4 0.00000 0.00000 - 62 Torsion 3 1 6 10 180.00000 0.00000 - 63 Torsion 3 1 12 14 0.00000 0.00000 - 64 Torsion 3 1 12 16 180.00000 0.00000 - 65 Torsion 3 5 2 4 0.00000 0.00000 - 66 Torsion 3 5 2 11 180.00000 0.00000 - 67 Torsion 4 2 5 9 180.00000 0.00000 + 61 Torsion 3 1 6 4 0.00000 -0.00000 + 62 Torsion 3 1 6 10 180.00000 -0.00000 + 63 Torsion 3 1 12 14 0.00000 -0.00000 + 64 Torsion 3 1 12 16 180.00000 -0.00000 + 65 Torsion 3 5 2 4 0.00000 -0.00000 + 66 Torsion 3 5 2 11 180.00000 -0.00000 + 67 Torsion 4 2 5 9 180.00000 -0.00000 68 Torsion 4 2 11 13 0.00000 0.00000 - 69 Torsion 4 2 11 15 180.00000 0.00000 - 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 0.00000 + 69 Torsion 4 2 11 15 180.00000 -0.00000 + 70 Torsion 4 6 1 12 180.00000 -0.00000 + 71 Torsion 5 2 4 6 0.00000 0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 73 Torsion 5 2 11 13 180.00000 0.00000 - 74 Torsion 5 2 11 15 0.00000 0.00000 + 74 Torsion 5 2 11 15 0.00000 -0.00000 75 Torsion 5 3 1 6 0.00000 0.00000 76 Torsion 5 3 1 12 180.00000 0.00000 77 Torsion 6 1 3 7 180.00000 0.00000 - 78 Torsion 6 1 12 14 180.00000 0.00000 - 79 Torsion 6 1 12 16 0.00000 0.00000 + 78 Torsion 6 1 12 14 180.00000 -0.00000 + 79 Torsion 6 1 12 16 0.00000 -0.00000 80 Torsion 6 4 2 11 180.00000 0.00000 - 81 Torsion 7 3 1 12 -0.00000 0.00000 - 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 0.00000 - 84 Torsion 8 4 6 10 0.00000 0.00000 - 85 Torsion 9 5 2 11 0.00000 0.00000 - 86 Torsion 10 6 1 12 0.00000 0.00000 - 87 Torsion 13 11 15 17 180.00000 0.00000 - 88 Torsion 13 11 15 19 -0.00000 0.00000 - 89 Torsion 14 12 16 18 180.00000 0.00000 - 90 Torsion 14 12 16 20 -0.00000 0.00000 - - - + 81 Torsion 7 3 1 12 0.00000 0.00000 + 82 Torsion 7 3 5 9 0.00000 -0.00000 + 83 Torsion 8 4 2 11 0.00000 0.00000 + 84 Torsion 8 4 6 10 0.00000 -0.00000 + 85 Torsion 9 5 2 11 0.00000 -0.00000 + 86 Torsion 10 6 1 12 0.00000 -0.00000 + 87 Torsion 13 11 15 17 180.00000 -0.00000 + 88 Torsion 13 11 15 19 0.00000 -0.00000 + 89 Torsion 14 12 16 18 180.00000 -0.00000 + 90 Torsion 14 12 16 20 0.00000 -0.00000 + + + Geometry "geometry" -> "geometry" --------------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.22791436 1.39288682 0.00000000 - 2 C 6.0000 -0.22791436 -1.39288682 0.00000000 - 3 C 6.0000 1.28919622 0.48588492 0.00000000 - 4 C 6.0000 -1.28919622 -0.48588492 0.00000000 - 5 C 6.0000 1.06903351 -0.87838949 0.00000000 - 6 C 6.0000 -1.06903351 0.87838949 0.00000000 - 7 H 1.0000 2.30488364 0.86056857 0.00000000 - 8 H 1.0000 -2.30488364 -0.86056857 0.00000000 - 9 H 1.0000 1.91771846 -1.54845933 0.00000000 - 10 H 1.0000 -1.91771846 1.54845933 0.00000000 - 11 C 6.0000 -0.52246137 -2.85975751 0.00000000 - 12 C 6.0000 0.52246137 2.85975751 0.00000000 - 13 H 1.0000 -1.57985434 -3.10026381 0.00000000 - 14 H 1.0000 1.57985434 3.10026381 0.00000000 - 15 C 6.0000 0.35270515 -3.83939296 0.00000000 - 16 C 6.0000 -0.35270515 3.83939296 0.00000000 - 17 H 1.0000 1.42081376 -3.67691614 0.00000000 - 18 H 1.0000 -1.42081376 3.67691614 0.00000000 - 19 H 1.0000 0.03744757 -4.87355368 0.00000000 - 20 H 1.0000 -0.03744757 4.87355368 0.00000000 - + 1 C 6.0000 0.22791249 1.39288748 0.00000000 + 2 C 6.0000 -0.22791249 -1.39288748 0.00000000 + 3 C 6.0000 1.28919537 0.48588632 0.00000000 + 4 C 6.0000 -1.28919537 -0.48588632 0.00000000 + 5 C 6.0000 1.06903481 -0.87838865 0.00000000 + 6 C 6.0000 -1.06903481 0.87838865 0.00000000 + 7 H 1.0000 2.30488244 0.86057095 0.00000000 + 8 H 1.0000 -2.30488244 -0.86057095 0.00000000 + 9 H 1.0000 1.91772166 -1.54845654 0.00000000 + 10 H 1.0000 -1.91772166 1.54845654 0.00000000 + 11 C 6.0000 -0.52245959 -2.85975846 0.00000000 + 12 C 6.0000 0.52245959 2.85975846 0.00000000 + 13 H 1.0000 -1.57985284 -3.10026315 0.00000000 + 14 H 1.0000 1.57985284 3.10026315 0.00000000 + 15 C 6.0000 0.35270448 -3.83939603 0.00000000 + 16 C 6.0000 -0.35270448 3.83939603 0.00000000 + 17 H 1.0000 1.42081357 -3.67692253 0.00000000 + 18 H 1.0000 -1.42081357 3.67692253 0.00000000 + 19 H 1.0000 0.03744355 -4.87355574 0.00000000 + 20 H 1.0000 -0.03744355 4.87355574 0.00000000 + Atomic Mass ----------- - + C 12.000000 H 1.007825 + - - Effective nuclear repulsion energy (a.u.) 452.1171993655 + Effective nuclear repulsion energy (a.u.) 452.1170804130 Nuclear Dipole moment (a.u.) ---------------------------- X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - - + + Final and change from initial internal coordinates -------------------------------------------------- - + Z-matrix (autoz) -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value Change ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- 1 Stretch 1 3 1.39606 -0.02598 @@ -5680,9 +5782,9 @@ Divinylbenzene in STO-3G basis set 4 Stretch 2 4 1.39606 -0.02598 5 Stretch 2 5 1.39527 -0.02670 6 Stretch 2 11 1.49615 -0.00169 - 7 Stretch 3 5 1.38192 -0.02054 + 7 Stretch 3 5 1.38193 -0.02054 8 Stretch 3 7 1.08259 -0.01612 - 9 Stretch 4 6 1.38192 -0.02054 + 9 Stretch 4 6 1.38193 -0.02054 10 Stretch 4 8 1.08259 -0.01612 11 Stretch 5 9 1.08132 -0.01569 12 Stretch 6 10 1.08132 -0.01569 @@ -5694,36 +5796,36 @@ Divinylbenzene in STO-3G basis set 18 Stretch 15 19 1.08115 -0.01552 19 Stretch 16 18 1.08040 -0.01558 20 Stretch 16 20 1.08115 -0.01552 - 21 Bend 1 3 5 121.35095 0.20229 - 22 Bend 1 3 7 119.23300 0.03191 - 23 Bend 1 6 4 120.80535 -0.06823 - 24 Bend 1 6 10 120.06938 0.64652 - 25 Bend 1 12 14 114.16802 -0.46152 - 26 Bend 1 12 16 126.86972 0.28979 - 27 Bend 2 4 6 121.35095 0.20229 - 28 Bend 2 4 8 119.23300 0.03191 - 29 Bend 2 5 3 120.80535 -0.06823 - 30 Bend 2 5 9 120.06938 0.64652 - 31 Bend 2 11 13 114.16802 -0.46152 - 32 Bend 2 11 15 126.86972 0.28979 - 33 Bend 3 1 6 117.84369 -0.13406 - 34 Bend 3 1 12 119.16417 0.04262 - 35 Bend 3 5 9 119.12527 -0.57830 - 36 Bend 4 2 5 117.84369 -0.13406 - 37 Bend 4 2 11 119.16417 0.04262 - 38 Bend 4 6 10 119.12527 -0.57830 - 39 Bend 5 2 11 122.99213 0.09144 - 40 Bend 5 3 7 119.41604 -0.23420 - 41 Bend 6 1 12 122.99213 0.09144 - 42 Bend 6 4 8 119.41604 -0.23420 - 43 Bend 11 15 17 123.12699 0.64182 - 44 Bend 11 15 19 121.27017 -0.02475 - 45 Bend 12 16 18 123.12699 0.64182 - 46 Bend 12 16 20 121.27017 -0.02475 - 47 Bend 13 11 15 118.96227 0.17172 - 48 Bend 14 12 16 118.96227 0.17172 - 49 Bend 17 15 19 115.60284 -0.61706 - 50 Bend 18 16 20 115.60284 -0.61706 + 21 Bend 1 3 5 121.35100 0.20233 + 22 Bend 1 3 7 119.23300 0.03190 + 23 Bend 1 6 4 120.80533 -0.06825 + 24 Bend 1 6 10 120.06945 0.64660 + 25 Bend 1 12 14 114.16793 -0.46160 + 26 Bend 1 12 16 126.86986 0.28993 + 27 Bend 2 4 6 121.35100 0.20233 + 28 Bend 2 4 8 119.23300 0.03190 + 29 Bend 2 5 3 120.80533 -0.06825 + 30 Bend 2 5 9 120.06945 0.64660 + 31 Bend 2 11 13 114.16793 -0.46160 + 32 Bend 2 11 15 126.86986 0.28993 + 33 Bend 3 1 6 117.84368 -0.13408 + 34 Bend 3 1 12 119.16412 0.04257 + 35 Bend 3 5 9 119.12522 -0.57835 + 36 Bend 4 2 5 117.84368 -0.13408 + 37 Bend 4 2 11 119.16412 0.04257 + 38 Bend 4 6 10 119.12522 -0.57835 + 39 Bend 5 2 11 122.99220 0.09151 + 40 Bend 5 3 7 119.41601 -0.23423 + 41 Bend 6 1 12 122.99220 0.09151 + 42 Bend 6 4 8 119.41601 -0.23423 + 43 Bend 11 15 17 123.12702 0.64185 + 44 Bend 11 15 19 121.27013 -0.02480 + 45 Bend 12 16 18 123.12702 0.64185 + 46 Bend 12 16 20 121.27013 -0.02480 + 47 Bend 13 11 15 118.96221 0.17167 + 48 Bend 14 12 16 118.96221 0.17167 + 49 Bend 17 15 19 115.60285 -0.61705 + 50 Bend 18 16 20 115.60285 -0.61705 51 Torsion 1 3 5 2 0.00000 0.00000 52 Torsion 1 3 5 9 180.00000 0.00000 53 Torsion 1 6 4 2 0.00000 0.00000 @@ -5744,7 +5846,7 @@ Divinylbenzene in STO-3G basis set 68 Torsion 4 2 11 13 0.00000 0.00000 69 Torsion 4 2 11 15 180.00000 0.00000 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 0.00000 + 71 Torsion 5 2 4 6 0.00000 0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 73 Torsion 5 2 11 13 180.00000 0.00000 74 Torsion 5 2 11 15 0.00000 0.00000 @@ -5754,17 +5856,17 @@ Divinylbenzene in STO-3G basis set 78 Torsion 6 1 12 14 180.00000 0.00000 79 Torsion 6 1 12 16 0.00000 0.00000 80 Torsion 6 4 2 11 180.00000 0.00000 - 81 Torsion 7 3 1 12 -0.00000 0.00000 + 81 Torsion 7 3 1 12 0.00000 0.00000 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 0.00000 + 83 Torsion 8 4 2 11 0.00000 0.00000 84 Torsion 8 4 6 10 0.00000 0.00000 85 Torsion 9 5 2 11 0.00000 0.00000 86 Torsion 10 6 1 12 0.00000 0.00000 87 Torsion 13 11 15 17 180.00000 0.00000 - 88 Torsion 13 11 15 19 -0.00000 0.00000 + 88 Torsion 13 11 15 19 0.00000 0.00000 89 Torsion 14 12 16 18 180.00000 0.00000 - 90 Torsion 14 12 16 20 -0.00000 0.00000 - + 90 Torsion 14 12 16 20 0.00000 0.00000 + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -5773,9 +5875,9 @@ Divinylbenzene in STO-3G basis set 3 C | 1 C | 2.63816 | 1.39606 4 C | 2 C | 2.63816 | 1.39606 5 C | 2 C | 2.63668 | 1.39527 - 5 C | 3 C | 2.61146 | 1.38192 + 5 C | 3 C | 2.61146 | 1.38193 6 C | 1 C | 2.63668 | 1.39527 - 6 C | 4 C | 2.61146 | 1.38192 + 6 C | 4 C | 2.61146 | 1.38193 7 H | 3 C | 2.04581 | 1.08259 8 H | 4 C | 2.04581 | 1.08259 9 H | 5 C | 2.04340 | 1.08132 @@ -5838,7 +5940,13 @@ Divinylbenzene in STO-3G basis set - Task times cpu: 21.2s wall: 21.3s + Task times cpu: 5.1s wall: 5.4s + + + NWChem Input Module + ------------------- + + Summary of allocated global arrays ----------------------------------- No active global arrays @@ -5849,11 +5957,12 @@ Divinylbenzene in STO-3G basis set ------------------------------ create destroy get put acc scatter gather read&inc -calls: 1606 1606 1.29e+05 3.24e+04 1.43e+05 0 0 3.92e+04 -number of processes/call -1.53e+13 6.59e+13 4.46e+13 0.00e+00 0.00e+00 -bytes total: 5.87e+07 3.17e+07 1.91e+07 0.00e+00 0.00e+00 3.14e+05 -bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 427200 bytes +calls: 1558 1558 3.42e+04 9463 3.46e+04 0 0 8853 +number of processes/call 1.03e+14 7.13e+13 1.70e+12 0.00e+00 0.00e+00 +bytes total: 3.31e+07 1.00e+07 1.09e+07 0.00e+00 0.00e+00 7.08e+04 +bytes remote: 2.12e+07 3.31e+06 7.93e+06 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 108832 bytes + MA_summarize_allocated_blocks: starting scan ... MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: @@ -5864,49 +5973,24 @@ MA usage statistics: current number of blocks 0 0 maximum number of blocks 20 29 current total bytes 0 0 - maximum total bytes 80120 22510840 - maximum total K-bytes 81 22511 - maximum total M-bytes 1 23 - - - NWChem Input Module - ------------------- - - - - - + maximum total bytes 3171304 22510792 + maximum total K-bytes 3172 22511 + maximum total M-bytes 4 23 + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, - V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, - J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, - J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, - C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, - K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, - J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, - V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, - B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, - S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, - A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, - D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, - J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, - A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, - R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, - D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, - V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, - Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, - D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, - A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, - and R. J. Harrison - "NWChem: Past, present, and future - J. Chem. Phys. 152, 184102 (2020) - doi:10.1063/5.0004997 - + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -5929,4 +6013,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 21.2s wall: 21.3s + Total times cpu: 5.1s wall: 5.5s diff --git a/data/NWChem/basicNWChem7.0/dvb_gopt_ks.out b/data/NWChem/basicNWChem7.0/dvb_gopt_ks.out index 92f7d1d49..87219d2bf 100644 --- a/data/NWChem/basicNWChem7.0/dvb_gopt_ks.out +++ b/data/NWChem/basicNWChem7.0/dvb_gopt_ks.out @@ -1,26 +1,26 @@ argument 1 = dvb_gopt_ks.in - - - Northwest Computational Chemistry Package (NWChem) 7.0.2 + + + Northwest Computational Chemistry Package (NWChem) 7.0.0 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2020 + + Copyright (c) 1994-2019 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = osmium - program = nwchem - date = Sat Jun 4 13:32:52 2022 + hostname = smp-n17.sam.pitt.edu + program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem + date = Tue Sep 20 18:21:11 2022 - compiled = Fri_Jul_02_16:33:00_2021 - source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src - nwchem branch = 7.0.2 - nwchem revision = b9985dfa - ga revision = 5.7.2 - use scalapack = T + compiled = Wed_May_13_13:33:26_2020 + source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 + nwchem branch = 7.0.0 + nwchem revision = N/A + ga revision = 5.7.1 + use scalapack = F input = dvb_gopt_ks.in prefix = dvb. data base = ./dvb.db status = startup - nproc = 1 + nproc = 4 time left = -1s @@ -58,27 +58,27 @@ Memory information ------------------ - heap = 13107194 doubles = 100.0 Mbytes - stack = 13107199 doubles = 100.0 Mbytes + heap = 13107200 doubles = 100.0 Mbytes + stack = 13107197 doubles = 100.0 Mbytes global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) - total = 52428793 doubles = 400.0 Mbytes + total = 52428797 doubles = 400.0 Mbytes verify = yes hardfail = no Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + Divinylbenzene in STO-3G basis set ---------------------------------- @@ -90,15 +90,15 @@ ------ auto-z ------ - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - - + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 C 6.0000 0.23680554 1.41416660 0.00000000 @@ -121,13 +121,13 @@ 18 H 1.0000 -1.44522900 3.70144241 0.00000000 19 H 1.0000 0.04815351 -4.93192286 0.00000000 20 H 1.0000 -0.04815351 4.93192286 0.00000000 - + Atomic Mass ----------- - + C 12.000000 H 1.007825 - + Effective nuclear repulsion energy (a.u.) 445.9370121674 @@ -136,26 +136,26 @@ X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - + Z-matrix (autoz) -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value ----------- -------- ----- ----- ----- ----- ----- ---------- 1 Stretch 1 3 1.42204 @@ -228,7 +228,7 @@ 68 Torsion 4 2 11 13 0.00000 69 Torsion 4 2 11 15 180.00000 70 Torsion 4 6 1 12 180.00000 - 71 Torsion 5 2 4 6 -0.00000 + 71 Torsion 5 2 4 6 0.00000 72 Torsion 5 2 4 8 180.00000 73 Torsion 5 2 11 13 180.00000 74 Torsion 5 2 11 15 0.00000 @@ -238,18 +238,18 @@ 78 Torsion 6 1 12 14 180.00000 79 Torsion 6 1 12 16 0.00000 80 Torsion 6 4 2 11 180.00000 - 81 Torsion 7 3 1 12 -0.00000 + 81 Torsion 7 3 1 12 0.00000 82 Torsion 7 3 5 9 0.00000 - 83 Torsion 8 4 2 11 -0.00000 + 83 Torsion 8 4 2 11 0.00000 84 Torsion 8 4 6 10 0.00000 85 Torsion 9 5 2 11 0.00000 86 Torsion 10 6 1 12 0.00000 87 Torsion 13 11 15 17 180.00000 - 88 Torsion 13 11 15 19 -0.00000 + 88 Torsion 13 11 15 19 0.00000 89 Torsion 14 12 16 18 180.00000 - 90 Torsion 14 12 16 20 -0.00000 - - + 90 Torsion 14 12 16 20 0.00000 + + XYZ format geometry ------------------- 20 @@ -274,7 +274,7 @@ H -1.44522900 3.70144241 0.00000000 H 0.04815351 -4.93192286 0.00000000 H -0.04815351 4.93192286 0.00000000 - + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -347,9 +347,6 @@ - library name resolved from: environment - library file name is: - Summary of "ao basis" -> "" (cartesian) @@ -359,18 +356,18 @@ * sto-3g on all atoms - - + + NWChem Geometry Optimization ---------------------------- - - - - + + + + Divinylbenzene in STO-3G basis set - - - no constraints, skipping 0.0000000000000000 + + + no constraints, skipping 0.000000000000000E+000 maximum gradient threshold (gmax) = 0.000450 rms gradient threshold (grms) = 0.000300 maximum cartesian step threshold (xmax) = 0.001800 @@ -394,7 +391,7 @@ Energy Minimization ------------------- - + Names of Z-matrix variables 1 2 3 4 5 6 7 8 9 10 @@ -414,23 +411,22 @@ 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 - + Variables with the same non-blank name are constrained to be equal - - - Using diagonal initial Hessian - Scaling for Hessian diagonals: bonds = 1.00 angles = 0.25 torsions = 0.10 + + + Using old Hessian from previous optimization -------- Step 0 -------- - - + + Geometry "geometry" -> "geometry" --------------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 C 6.0000 0.23680554 1.41416660 0.00000000 @@ -453,13 +449,13 @@ 18 H 1.0000 -1.44522900 3.70144241 0.00000000 19 H 1.0000 0.04815351 -4.93192286 0.00000000 20 H 1.0000 -0.04815351 4.93192286 0.00000000 - + Atomic Mass ----------- - + C 12.000000 H 1.007825 - + Effective nuclear repulsion energy (a.u.) 445.9370121674 @@ -468,27 +464,27 @@ X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - - + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + Basis "ao basis" -> "ao basis" (cartesian) ----- C (Carbon) @@ -498,15 +494,15 @@ 1 S 7.16168370E+01 0.154329 1 S 1.30450960E+01 0.535328 1 S 3.53051220E+00 0.444635 - + 2 S 2.94124940E+00 -0.099967 2 S 6.83483100E-01 0.399513 2 S 2.22289900E-01 0.700115 - + 3 P 2.94124940E+00 0.155916 3 P 6.83483100E-01 0.607684 3 P 2.22289900E-01 0.391957 - + H (Hydrogen) ------------ Exponent Coefficients @@ -514,7 +510,7 @@ 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + Summary of "ao basis" -> "ao basis" (cartesian) @@ -537,14 +533,14 @@ Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 - + Caching 1-el integrals - + General Information ------------------- SCF calculation type: DFT @@ -562,7 +558,7 @@ Convergence on energy requested: 1.00D-06 Convergence on density requested: 1.00D-05 Convergence on gradient requested: 5.00D-04 - + XC Information -------------- B3LYP Method XC Potential @@ -571,7 +567,7 @@ Becke 1988 Exchange Functional 0.720 non-local Lee-Yang-Parr Correlation Functional 0.810 VWN I RPA Correlation Functional 0.190 local - + Grid Information ---------------- Grid used for XC integration: medium @@ -584,7 +580,7 @@ Grid pruning is: on Number of quadrature shells: 470 Spatial weights used: Erf1 - + Convergence Information ----------------------- Convergence aids based upon iterative change in @@ -599,7 +595,7 @@ dE on: start ASAP start dE off: 2 iters 30 iters 30 iters - + Screening Tolerance Information ------------------------------- Density screening/tol_rho: 1.00D-10 @@ -608,12 +604,12 @@ XC Gaussian exp screening on grid/accXCfunc: 20 Schwarz screening/accCoul: 1.00D-08 - + Superposition of Atomic Density Guess ------------------------------------- - + Sum of atomic energies: -376.44825176 - + Non-variational initial energy ------------------------------ @@ -622,17 +618,17 @@ 2-e energy = 576.084617 HOMO = -0.037645 LUMO = 0.163723 - - + + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 ag 2 bu 3 ag 4 bu 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -642,158 +638,170 @@ 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 bu - + Time after variat. SCF: 0.2 Time prior to 1st pass: 0.2 + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507878 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 + + Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 - Max. records in memory = 75 Max. recs in file = ********* + Max. records in memory = 20 Max. recs in file = 2708470 Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 5.89 5890482 + Heap Space remaining (MW): 12.46 12464624 Stack Space remaining (MW): 13.11 13106284 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.2544279522 -8.28D+02 1.42D-02 3.78D-01 0.9 - d= 0,ls=0.0,diis 2 -382.3017245160 -4.73D-02 6.99D-03 3.82D-02 1.5 - d= 0,ls=0.0,diis 3 -382.2954277367 6.30D-03 4.21D-03 7.95D-02 2.1 - d= 0,ls=0.0,diis 4 -382.3080932546 -1.27D-02 5.17D-04 8.80D-04 2.7 - d= 0,ls=0.0,diis 5 -382.3082296151 -1.36D-04 1.18D-04 4.46D-05 3.3 + d= 0,ls=0.0,diis 1 -382.2544280087 -8.28D+02 1.42D-02 3.78D-01 0.7 + d= 0,ls=0.0,diis 2 -382.3017246449 -4.73D-02 6.99D-03 3.82D-02 0.9 + d= 0,ls=0.0,diis 3 -382.2954278897 6.30D-03 4.21D-03 7.95D-02 1.1 + d= 0,ls=0.0,diis 4 -382.3080934034 -1.27D-02 5.17D-04 8.80D-04 1.3 + d= 0,ls=0.0,diis 5 -382.3082297606 -1.36D-04 1.18D-04 4.46D-05 1.4 Resetting Diis - d= 0,ls=0.0,diis 6 -382.3082357524 -6.14D-06 3.18D-05 3.09D-06 3.9 - d= 0,ls=0.0,diis 7 -382.3082362291 -4.77D-07 1.42D-05 1.61D-07 4.4 - d= 0,ls=0.0,diis 8 -382.3082362266 2.52D-09 7.54D-06 1.77D-07 5.0 + d= 0,ls=0.0,diis 6 -382.3082358978 -6.14D-06 3.18D-05 3.09D-06 1.6 + d= 0,ls=0.0,diis 7 -382.3082363745 -4.77D-07 1.42D-05 1.61D-07 1.8 + d= 0,ls=0.0,diis 8 -382.3082363720 2.53D-09 7.54D-06 1.77D-07 2.0 - Total DFT energy = -382.308236226598 - One electron energy = -1400.645118242808 - Coulomb energy = 630.242758211543 - Exchange-Corr. energy = -57.842888362780 + Total DFT energy = -382.308236371958 + One electron energy = -1400.645117846601 + Coulomb energy = 630.242757670548 + Exchange-Corr. energy = -57.842888363351 Nuclear repulsion energy = 445.937012167446 - Numeric. integr. density = 69.999956106133 - - Total iterative time = 4.8s + Numeric. integr. density = 69.999956105305 + Total iterative time = 1.8s + Occupations of the irreducible representations ---------------------------------------------- - + irrep alpha beta -------- -------- -------- ag 15.0 15.0 au 2.0 2.0 bg 3.0 3.0 bu 15.0 15.0 - - + + DFT Final Molecular Orbital Analysis ------------------------------------ - + Vector 1 Occ=2.000000D+00 E=-1.002024D+01 Symmetry=bu - MO Center= -1.9D-11, -1.1D-10, 4.3D-33, r^2= 2.1D+00 + MO Center= -2.6D-11, -1.6D-10, 1.1D-33, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.699304 1 C s 6 -0.699304 2 C s 2 0.031560 1 C s 7 -0.031560 2 C s - 35 0.026965 11 C s 40 -0.026965 12 C s - + 35 0.026967 11 C s 40 -0.026967 12 C s + Vector 2 Occ=2.000000D+00 E=-1.002019D+01 Symmetry=ag - MO Center= 1.9D-11, 1.1D-10, -2.0D-22, r^2= 2.1D+00 + MO Center= 2.6D-11, 1.6D-10, -1.0D-24, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.699301 1 C s 6 0.699301 2 C s 2 0.031352 1 C s 7 0.031352 2 C s - 35 -0.027329 11 C s 40 -0.027329 12 C s - + 35 -0.027330 11 C s 40 -0.027330 12 C s + Vector 3 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=bu - MO Center= 1.4D-11, 7.4D-11, 4.1D-33, r^2= 8.6D+00 + MO Center= -6.7D-10, -3.6D-09, -1.8D-29, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.699779 11 C s 40 -0.699779 12 C s + 35 0.699780 11 C s 40 -0.699780 12 C s 36 0.030781 11 C s 41 -0.030781 12 C s - 1 -0.027419 1 C s 6 0.027419 2 C s - + 1 -0.027420 1 C s 6 0.027420 2 C s + Vector 4 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=ag - MO Center= -1.4D-11, -7.4D-11, -5.1D-18, r^2= 8.6D+00 + MO Center= 6.7D-10, 3.6D-09, -9.2D-36, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.699695 11 C s 40 0.699695 12 C s 36 0.030762 11 C s 41 0.030762 12 C s - 1 0.027652 1 C s 6 0.027652 2 C s - + 1 0.027653 1 C s 6 0.027653 2 C s + Vector 5 Occ=2.000000D+00 E=-1.000689D+01 Symmetry=ag - MO Center= 9.3D-11, -3.0D-11, 2.3D-18, r^2= 2.0D+00 + MO Center= -7.2D-10, 2.3D-10, 1.4D-18, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.546702 5 C s 26 0.546702 6 C s - 11 -0.437151 3 C s 16 -0.437151 4 C s + 21 0.546708 5 C s 26 0.546708 6 C s + 11 -0.437143 3 C s 16 -0.437143 4 C s 22 0.028161 5 C s 27 0.028161 6 C s - + Vector 6 Occ=2.000000D+00 E=-1.000688D+01 Symmetry=bu - MO Center= -9.3D-11, 3.0D-11, 1.6D-28, r^2= 2.0D+00 + MO Center= 7.2D-10, -2.3D-10, -3.0D-28, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.556224 5 C s 26 -0.556224 6 C s - 11 -0.423869 3 C s 16 0.423869 4 C s - 1 -0.028675 1 C s 6 0.028675 2 C s + 21 0.556226 5 C s 26 -0.556226 6 C s + 11 -0.423866 3 C s 16 0.423866 4 C s + 1 -0.028676 1 C s 6 0.028676 2 C s 22 0.028662 5 C s 27 -0.028662 6 C s - + Vector 7 Occ=2.000000D+00 E=-1.000624D+01 Symmetry=bu - MO Center= 1.8D-11, 2.1D-13, -5.6D-30, r^2= 2.0D+00 + MO Center= -4.5D-12, 1.2D-12, -1.2D-29, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.557194 3 C s 16 -0.557194 4 C s - 21 0.425180 5 C s 26 -0.425180 6 C s - + 11 0.557197 3 C s 16 -0.557197 4 C s + 21 0.425177 5 C s 26 -0.425177 6 C s + Vector 8 Occ=2.000000D+00 E=-1.000609D+01 Symmetry=ag - MO Center= -1.8D-11, 4.8D-13, -3.7D-18, r^2= 2.0D+00 + MO Center= 5.0D-12, 2.2D-12, 1.9D-18, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.546812 3 C s 16 0.546812 4 C s - 21 0.437385 5 C s 26 0.437385 6 C s - 1 0.029441 1 C s 6 0.029441 2 C s - + 11 0.546818 3 C s 16 0.546818 4 C s + 21 0.437377 5 C s 26 0.437377 6 C s + 1 0.029440 1 C s 6 0.029440 2 C s + Vector 9 Occ=2.000000D+00 E=-9.992164D+00 Symmetry=bu - MO Center= -7.4D-12, 7.9D-11, -2.1D-33, r^2= 1.5D+01 + MO Center= 1.8D-17, -1.3D-16, -1.8D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700479 15 C s 52 -0.700479 16 C s 48 0.030860 15 C s 53 -0.030860 16 C s - + Vector 10 Occ=2.000000D+00 E=-9.992164D+00 Symmetry=ag - MO Center= 7.4D-12, -7.9D-11, -2.0D-33, r^2= 1.5D+01 + MO Center= -1.1D-15, 1.3D-15, 1.6D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700478 15 C s 52 0.700478 16 C s 48 0.030860 15 C s 53 0.030860 16 C s - - Vector 11 Occ=2.000000D+00 E=-8.094647D-01 Symmetry=ag - MO Center= 6.0D-15, 1.0D-14, -2.9D-15, r^2= 3.0D+00 + + Vector 11 Occ=2.000000D+00 E=-8.094645D-01 Symmetry=ag + MO Center= 4.3D-15, 3.7D-14, 1.5D-15, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.274704 1 C s 7 0.274704 2 C s 12 0.247016 3 C s 17 0.247016 4 C s 22 0.246687 5 C s 27 0.246687 6 C s - 36 0.127810 11 C s 41 0.127810 12 C s + 36 0.127809 11 C s 41 0.127809 12 C s 1 -0.107859 1 C s 6 -0.107859 2 C s - + Vector 12 Occ=2.000000D+00 E=-7.539349D-01 Symmetry=bu - MO Center= -1.4D-15, -1.2D-14, -1.1D-31, r^2= 7.8D+00 + MO Center= -7.0D-15, 1.3D-14, 1.2D-25, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 -0.297168 11 C s 41 0.297168 12 C s - 2 0.273787 1 C s 7 -0.273787 2 C s + 2 0.273788 1 C s 7 -0.273788 2 C s 48 -0.209312 15 C s 53 0.209312 16 C s 35 0.113817 11 C s 40 -0.113817 12 C s 22 -0.112555 5 C s 27 0.112555 6 C s - - Vector 13 Occ=2.000000D+00 E=-7.178610D-01 Symmetry=ag - MO Center= -1.1D-17, -2.3D-16, 4.1D-32, r^2= 1.1D+01 + + Vector 13 Occ=2.000000D+00 E=-7.178611D-01 Symmetry=ag + MO Center= 2.2D-14, -1.1D-13, -4.0D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.314815 11 C s 41 0.314815 12 C s @@ -801,19 +809,19 @@ 12 -0.121459 3 C s 17 -0.121459 4 C s 35 -0.119238 11 C s 40 -0.119238 12 C s 47 -0.117464 15 C s 52 -0.117464 16 C s - + Vector 14 Occ=2.000000D+00 E=-6.999224D-01 Symmetry=bu - MO Center= -4.7D-15, 5.5D-16, 1.2D-31, r^2= 3.2D+00 + MO Center= -2.0D-14, -1.1D-14, 3.9D-30, r^2= 3.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.357135 3 C s 17 -0.357135 4 C s - 22 0.323902 5 C s 27 -0.323902 6 C s + 22 0.323903 5 C s 27 -0.323903 6 C s 11 -0.132324 3 C s 16 0.132324 4 C s 3 0.124985 1 C px 8 0.124985 2 C px 21 -0.120092 5 C s 26 0.120092 6 C s - + Vector 15 Occ=2.000000D+00 E=-6.673152D-01 Symmetry=bu - MO Center= -7.9D-16, 1.5D-15, 4.8D-26, r^2= 9.1D+00 + MO Center= -2.4D-15, 6.8D-14, 8.2D-26, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.299507 15 C s 53 -0.299507 16 C s @@ -821,9 +829,9 @@ 22 -0.202283 5 C s 27 0.202283 6 C s 36 0.136847 11 C s 41 -0.136847 12 C s 38 -0.129053 11 C py 43 -0.129053 12 C py - - Vector 16 Occ=2.000000D+00 E=-5.885090D-01 Symmetry=ag - MO Center= -5.0D-15, 1.5D-15, -7.5D-17, r^2= 8.4D+00 + + Vector 16 Occ=2.000000D+00 E=-5.885091D-01 Symmetry=ag + MO Center= -1.5D-15, -3.2D-15, -2.9D-18, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.241406 15 C s 53 0.241406 16 C s @@ -831,9 +839,9 @@ 2 -0.206379 1 C s 7 -0.206379 2 C s 14 -0.160006 3 C py 19 0.160006 4 C py 36 -0.159613 11 C s 41 -0.159613 12 C s - + Vector 17 Occ=2.000000D+00 E=-5.591514D-01 Symmetry=ag - MO Center= 4.2D-16, -2.4D-15, 3.4D-17, r^2= 5.1D+00 + MO Center= 2.9D-15, -1.7D-15, 2.0D-32, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.326032 3 C s 17 0.326032 4 C s @@ -841,39 +849,39 @@ 22 -0.170746 5 C s 24 0.170445 5 C py 27 -0.170746 6 C s 29 -0.170445 6 C py 31 0.169234 7 H s 32 0.169234 8 H s - + Vector 18 Occ=2.000000D+00 E=-5.314210D-01 Symmetry=bu - MO Center= -3.0D-15, -5.3D-15, -3.9D-31, r^2= 1.2D+01 + MO Center= -3.3D-15, 1.1D-15, -3.0D-25, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.302766 11 C s 41 -0.302766 12 C s 48 -0.249166 15 C s 53 0.249166 16 C s - 45 0.170519 13 H s 46 -0.170519 14 H s + 45 0.170518 13 H s 46 -0.170518 14 H s 57 -0.160626 17 H s 58 0.160626 18 H s 12 0.154465 3 C s 17 -0.154465 4 C s - + Vector 19 Occ=2.000000D+00 E=-5.099367D-01 Symmetry=ag - MO Center= -3.9D-16, -6.0D-15, -5.8D-17, r^2= 7.5D+00 + MO Center= -2.1D-15, -2.9D-15, -8.0D-17, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.201893 5 C px 28 -0.201893 6 C px - 13 0.184491 3 C px 18 -0.184491 4 C px + 13 0.184490 3 C px 18 -0.184490 4 C px 36 0.180763 11 C s 41 0.180763 12 C s 33 0.169276 9 H s 34 0.169276 10 H s 22 0.166022 5 C s 27 0.166022 6 C s - + Vector 20 Occ=2.000000D+00 E=-4.575989D-01 Symmetry=ag - MO Center= -7.6D-18, -1.8D-17, 5.7D-33, r^2= 9.5D+00 + MO Center= 9.8D-15, -1.7D-14, 6.2D-17, r^2= 9.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.212730 15 C px 54 -0.212730 16 C px 38 0.184649 11 C py 43 -0.184649 12 C py - 57 0.179111 17 H s 58 0.179111 18 H s - 45 -0.153093 13 H s 46 -0.153093 14 H s + 57 0.179110 17 H s 58 0.179110 18 H s + 45 -0.153092 13 H s 46 -0.153092 14 H s 14 0.141383 3 C py 19 -0.141383 4 C py - - Vector 21 Occ=2.000000D+00 E=-4.391972D-01 Symmetry=bu - MO Center= 1.5D-15, 6.8D-15, -3.3D-24, r^2= 1.0D+01 + + Vector 21 Occ=2.000000D+00 E=-4.391970D-01 Symmetry=bu + MO Center= -1.9D-15, 3.2D-14, -7.7D-24, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.219233 11 C px 42 0.219233 12 C px @@ -881,109 +889,109 @@ 14 0.184960 3 C py 19 0.184960 4 C py 59 -0.178127 19 H s 60 0.178127 20 H s 45 -0.155495 13 H s 46 0.155495 14 H s - + Vector 22 Occ=2.000000D+00 E=-4.110181D-01 Symmetry=bu - MO Center= 8.2D-15, 2.4D-14, -2.0D-23, r^2= 6.8D+00 + MO Center= -7.9D-15, -7.6D-15, 4.0D-23, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.235310 1 C s 7 -0.235310 2 C s - 33 0.230465 9 H s 34 -0.230465 10 H s + 2 0.235311 1 C s 7 -0.235311 2 C s + 33 0.230466 9 H s 34 -0.230466 10 H s 31 -0.226661 7 H s 32 0.226661 8 H s 13 -0.222264 3 C px 18 -0.222264 4 C px - 24 -0.177970 5 C py 29 -0.177970 6 C py - - Vector 23 Occ=2.000000D+00 E=-3.976935D-01 Symmetry=bu - MO Center= 2.7D-14, -1.6D-13, 3.9D-23, r^2= 8.7D+00 + 24 -0.177969 5 C py 29 -0.177969 6 C py + + Vector 23 Occ=2.000000D+00 E=-3.976936D-01 Symmetry=bu + MO Center= -6.4D-15, 7.8D-14, -1.2D-22, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.251231 5 C px 28 0.251231 6 C px 49 0.250513 15 C px 54 0.250513 16 C px 3 -0.220827 1 C px 8 -0.220827 2 C px 57 0.215416 17 H s 58 -0.215416 18 H s - 38 0.181489 11 C py 43 0.181489 12 C py - + 38 0.181490 11 C py 43 0.181490 12 C py + Vector 24 Occ=2.000000D+00 E=-3.959381D-01 Symmetry=ag - MO Center= -2.7D-14, 1.3D-13, 3.5D-30, r^2= 1.5D+01 + MO Center= 2.1D-14, -8.3D-14, -6.2D-18, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.338998 15 C py 55 -0.338998 16 C py 59 -0.262595 19 H s 60 -0.262595 20 H s 37 0.251493 11 C px 42 -0.251493 12 C px - 45 -0.145063 13 H s 46 -0.145063 14 H s + 45 -0.145064 13 H s 46 -0.145064 14 H s 24 0.136714 5 C py 29 -0.136714 6 C py - - Vector 25 Occ=2.000000D+00 E=-3.744295D-01 Symmetry=bu - MO Center= 6.6D-16, -1.2D-15, -1.0D-22, r^2= 4.4D+00 + + Vector 25 Occ=2.000000D+00 E=-3.744296D-01 Symmetry=bu + MO Center= -6.5D-15, -1.5D-15, -1.1D-22, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.307585 3 C px 18 0.307585 4 C px + 13 0.307584 3 C px 18 0.307584 4 C px 31 0.252266 7 H s 32 -0.252266 8 H s - 24 -0.226085 5 C py 29 -0.226085 6 C py - 33 0.218186 9 H s 34 -0.218186 10 H s + 24 -0.226086 5 C py 29 -0.226086 6 C py + 33 0.218187 9 H s 34 -0.218187 10 H s 23 0.188069 5 C px 28 0.188069 6 C px - - Vector 26 Occ=2.000000D+00 E=-3.509364D-01 Symmetry=bu - MO Center= -6.0D-16, 7.1D-16, -3.5D-32, r^2= 9.0D+00 + + Vector 26 Occ=2.000000D+00 E=-3.509365D-01 Symmetry=bu + MO Center= -4.4D-15, 2.0D-15, 4.3D-25, r^2= 9.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.245677 15 C py 55 -0.245677 16 C py - 14 0.224346 3 C py 19 0.224346 4 C py - 37 -0.201679 11 C px 42 -0.201679 12 C px - 24 -0.193261 5 C py 29 -0.193261 6 C py - 38 0.187743 11 C py 43 0.187743 12 C py - + 14 0.224345 3 C py 19 0.224345 4 C py + 37 -0.201678 11 C px 42 -0.201678 12 C px + 24 -0.193260 5 C py 29 -0.193260 6 C py + 38 0.187744 11 C py 43 0.187744 12 C py + Vector 27 Occ=2.000000D+00 E=-3.470151D-01 Symmetry=ag - MO Center= 9.8D-17, 4.3D-15, 2.7D-32, r^2= 1.2D+01 + MO Center= 2.2D-15, 8.0D-15, -2.4D-16, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.295188 15 C px 54 -0.295188 16 C px 57 0.268012 17 H s 58 0.268012 18 H s - 37 -0.208878 11 C px 42 0.208878 12 C px + 37 -0.208877 11 C px 42 0.208877 12 C px 45 0.200233 13 H s 46 0.200233 14 H s 31 -0.156472 7 H s 32 -0.156472 8 H s - + Vector 28 Occ=2.000000D+00 E=-3.244697D-01 Symmetry=au - MO Center= 4.6D-16, -1.1D-15, 2.6D-15, r^2= 3.6D+00 + MO Center= 3.1D-18, -3.9D-17, -1.1D-15, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.337608 1 C pz 10 0.337608 2 C pz 15 0.297979 3 C pz 20 0.297979 4 C pz 25 0.297168 5 C pz 30 0.297168 6 C pz - 39 0.173948 11 C pz 44 0.173948 12 C pz + 39 0.173947 11 C pz 44 0.173947 12 C pz 51 0.092443 15 C pz 56 0.092443 16 C pz - - Vector 29 Occ=2.000000D+00 E=-3.110650D-01 Symmetry=bu - MO Center= -1.8D-16, -2.4D-15, 5.9D-25, r^2= 1.2D+01 + + Vector 29 Occ=2.000000D+00 E=-3.110651D-01 Symmetry=bu + MO Center= 4.1D-16, 2.7D-15, 6.4D-24, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.259101 13 H s 46 -0.259101 14 H s + 45 0.259102 13 H s 46 -0.259102 14 H s 4 0.241972 1 C py 9 0.241972 2 C py 57 0.231030 17 H s 58 -0.231030 18 H s 37 -0.217251 11 C px 42 -0.217251 12 C px 59 -0.212335 19 H s 60 0.212335 20 H s - + Vector 30 Occ=2.000000D+00 E=-2.929831D-01 Symmetry=ag - MO Center= -1.7D-16, -5.7D-16, 7.2D-17, r^2= 6.1D+00 + MO Center= -5.8D-16, -4.4D-15, 1.4D-32, r^2= 6.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 -0.278188 3 C py 19 0.278188 4 C py + 14 -0.278189 3 C py 19 0.278189 4 C py 4 0.268404 1 C py 9 -0.268404 2 C py - 38 0.248148 11 C py 43 -0.248148 12 C py - 33 -0.240402 9 H s 34 -0.240402 10 H s + 38 0.248149 11 C py 43 -0.248149 12 C py + 33 -0.240401 9 H s 34 -0.240401 10 H s 24 0.234458 5 C py 29 -0.234458 6 C py - - Vector 31 Occ=2.000000D+00 E=-2.874966D-01 Symmetry=ag - MO Center= 1.8D-16, 2.9D-15, 1.0D-16, r^2= 6.2D+00 + + Vector 31 Occ=2.000000D+00 E=-2.874965D-01 Symmetry=ag + MO Center= 1.8D-16, -2.4D-16, -9.4D-18, r^2= 6.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 3 0.295863 1 C px 8 -0.295863 2 C px - 23 0.280604 5 C px 28 -0.280604 6 C px + 3 0.295864 1 C px 8 -0.295864 2 C px + 23 0.280605 5 C px 28 -0.280605 6 C px 31 -0.258072 7 H s 32 -0.258072 8 H s - 13 -0.222124 3 C px 18 0.222124 4 C px + 13 -0.222125 3 C px 18 0.222125 4 C px 45 -0.182735 13 H s 46 -0.182735 14 H s - + Vector 32 Occ=2.000000D+00 E=-2.634558D-01 Symmetry=bg - MO Center= 7.7D-16, 1.7D-14, 2.1D-18, r^2= 7.8D+00 + MO Center= 2.5D-16, 6.1D-15, -1.5D-17, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.376480 11 C pz 44 0.376480 12 C pz @@ -991,25 +999,25 @@ 51 -0.271398 15 C pz 56 0.271398 16 C pz 15 0.131648 3 C pz 20 -0.131648 4 C pz 25 -0.132106 5 C pz 30 0.132106 6 C pz - + Vector 33 Occ=2.000000D+00 E=-2.123363D-01 Symmetry=au - MO Center= 2.5D-15, -2.3D-14, 2.3D-16, r^2= 1.1D+01 + MO Center= 1.9D-15, -5.1D-15, 2.7D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.417961 15 C pz 56 0.417961 16 C pz 39 0.413781 11 C pz 44 0.413781 12 C pz 15 -0.179205 3 C pz 20 -0.179205 4 C pz 25 -0.176634 5 C pz 30 -0.176634 6 C pz - + Vector 34 Occ=2.000000D+00 E=-1.951683D-01 Symmetry=bg - MO Center= -3.5D-15, 3.2D-16, 1.7D-22, r^2= 2.7D+00 + MO Center= -1.9D-15, 3.3D-17, 2.0D-19, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.463626 3 C pz 20 -0.463626 4 C pz 25 0.457536 5 C pz 30 -0.457536 6 C pz - + Vector 35 Occ=2.000000D+00 E=-1.529967D-01 Symmetry=bg - MO Center= -2.2D-16, 8.0D-15, -9.5D-22, r^2= 8.1D+00 + MO Center= -1.3D-16, -1.5D-16, -1.5D-18, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.397372 15 C pz 56 -0.397372 16 C pz @@ -1017,9 +1025,9 @@ 25 -0.230746 5 C pz 30 0.230746 6 C pz 39 0.223676 11 C pz 44 -0.223676 12 C pz 15 0.215066 3 C pz 20 -0.215066 4 C pz - + Vector 36 Occ=0.000000D+00 E= 3.750925D-02 Symmetry=au - MO Center= 1.3D-16, -3.1D-16, 3.9D-17, r^2= 8.0D+00 + MO Center= 2.2D-17, -8.1D-16, 5.2D-18, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.449614 15 C pz 56 -0.449614 16 C pz @@ -1027,36 +1035,36 @@ 25 -0.277554 5 C pz 30 -0.277554 6 C pz 39 0.256133 11 C pz 44 0.256133 12 C pz 15 -0.232265 3 C pz 20 -0.232265 4 C pz - - Vector 37 Occ=0.000000D+00 E= 9.011747D-02 Symmetry=au - MO Center= 2.8D-15, -2.7D-16, -1.6D-16, r^2= 2.7D+00 + + Vector 37 Occ=0.000000D+00 E= 9.011745D-02 Symmetry=au + MO Center= -1.2D-15, 1.4D-16, -4.6D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.582691 3 C pz 20 0.582691 4 C pz 25 -0.553237 5 C pz 30 -0.553237 6 C pz 5 -0.031922 1 C pz 10 -0.031922 2 C pz - + Vector 38 Occ=0.000000D+00 E= 1.107280D-01 Symmetry=bg - MO Center= -2.7D-15, -1.2D-15, -6.6D-23, r^2= 1.1D+01 + MO Center= 7.4D-16, -4.8D-15, 1.5D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.522167 11 C pz 44 -0.522167 12 C pz 51 -0.523103 15 C pz 56 0.523103 16 C pz 15 0.240693 3 C pz 20 -0.240693 4 C pz 25 -0.232246 5 C pz 30 0.232246 6 C pz - + Vector 39 Occ=0.000000D+00 E= 1.822017D-01 Symmetry=au - MO Center= 5.0D-16, 4.3D-15, -2.9D-16, r^2= 7.9D+00 + MO Center= -9.2D-17, 2.2D-15, 3.7D-17, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.529133 11 C pz 44 -0.529133 12 C pz 5 0.497218 1 C pz 10 0.497218 2 C pz 51 0.379694 15 C pz 56 0.379694 16 C pz - 25 -0.199198 5 C pz 30 -0.199198 6 C pz + 25 -0.199197 5 C pz 30 -0.199197 6 C pz 15 -0.166740 3 C pz 20 -0.166740 4 C pz - + Vector 40 Occ=0.000000D+00 E= 2.723016D-01 Symmetry=bg - MO Center= -5.8D-16, -4.1D-15, -1.2D-22, r^2= 3.8D+00 + MO Center= 2.7D-16, 2.1D-15, -4.2D-19, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.543477 1 C pz 10 -0.543477 2 C pz @@ -1064,207 +1072,207 @@ 15 -0.464185 3 C pz 20 0.464185 4 C pz 39 0.287732 11 C pz 44 -0.287732 12 C pz 51 -0.156154 15 C pz 56 0.156154 16 C pz - - Vector 41 Occ=0.000000D+00 E= 3.324850D-01 Symmetry=ag - MO Center= -1.9D-15, 2.9D-15, 8.1D-17, r^2= 8.8D+00 + + Vector 41 Occ=0.000000D+00 E= 3.324852D-01 Symmetry=ag + MO Center= 1.3D-14, 2.4D-14, -1.4D-18, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 -0.423788 9 H s 34 -0.423788 10 H s + 33 -0.423787 9 H s 34 -0.423787 10 H s 31 -0.413777 7 H s 32 -0.413777 8 H s - 2 0.401565 1 C s 7 0.401565 2 C s - 59 -0.358545 19 H s 60 -0.358545 20 H s + 2 0.401567 1 C s 7 0.401567 2 C s + 59 -0.358546 19 H s 60 -0.358546 20 H s 38 -0.338104 11 C py 43 0.338104 12 C py - - Vector 42 Occ=0.000000D+00 E= 3.406445D-01 Symmetry=bu - MO Center= 3.5D-16, 3.5D-15, -2.4D-19, r^2= 1.0D+01 + + Vector 42 Occ=0.000000D+00 E= 3.406446D-01 Symmetry=bu + MO Center= -1.3D-14, -1.8D-14, 2.9D-18, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.433823 13 H s 46 -0.433823 14 H s - 13 0.355437 3 C px 18 0.355437 4 C px - 37 0.344559 11 C px 42 0.344559 12 C px + 45 0.433824 13 H s 46 -0.433824 14 H s + 13 0.355436 3 C px 18 0.355436 4 C px + 37 0.344560 11 C px 42 0.344560 12 C px 31 -0.321890 7 H s 32 0.321890 8 H s - 57 -0.323132 17 H s 58 0.323132 18 H s - - Vector 43 Occ=0.000000D+00 E= 3.795220D-01 Symmetry=bu - MO Center= 9.8D-16, -3.7D-15, 8.5D-20, r^2= 7.8D+00 + 57 -0.323133 17 H s 58 0.323133 18 H s + + Vector 43 Occ=0.000000D+00 E= 3.795222D-01 Symmetry=bu + MO Center= 2.3D-14, 7.8D-16, -7.8D-20, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.546126 11 C s 41 -0.546126 12 C s - 4 0.461527 1 C py 9 0.461527 2 C py - 33 0.405568 9 H s 34 -0.405568 10 H s - 59 0.351691 19 H s 60 -0.351691 20 H s - 2 0.338381 1 C s 7 -0.338381 2 C s - - Vector 44 Occ=0.000000D+00 E= 3.812899D-01 Symmetry=ag - MO Center= 2.8D-16, -2.7D-15, 4.8D-18, r^2= 1.2D+01 + 36 0.546119 11 C s 41 -0.546119 12 C s + 4 0.461528 1 C py 9 0.461528 2 C py + 33 0.405575 9 H s 34 -0.405575 10 H s + 59 0.351693 19 H s 60 -0.351693 20 H s + 2 0.338373 1 C s 7 -0.338373 2 C s + + Vector 44 Occ=0.000000D+00 E= 3.812905D-01 Symmetry=ag + MO Center= -1.7D-14, 3.7D-15, 1.6D-17, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.579604 13 H s 46 0.579604 14 H s - 12 0.393529 3 C s 17 0.393529 4 C s - 57 -0.391441 17 H s 58 -0.391441 18 H s + 12 0.393522 3 C s 17 0.393522 4 C s + 57 -0.391444 17 H s 58 -0.391444 18 H s 36 -0.382169 11 C s 41 -0.382169 12 C s 37 0.338366 11 C px 42 -0.338366 12 C px - - Vector 45 Occ=0.000000D+00 E= 4.103425D-01 Symmetry=ag - MO Center= 2.4D-13, -6.6D-13, 5.3D-17, r^2= 1.1D+01 + + Vector 45 Occ=0.000000D+00 E= 4.103423D-01 Symmetry=ag + MO Center= -6.2D-14, 1.7D-13, 1.4D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.647346 15 C s 53 0.647346 16 C s - 22 0.620075 5 C s 27 0.620075 6 C s - 57 -0.513315 17 H s 58 -0.513315 18 H s - 12 -0.443652 3 C s 17 -0.443652 4 C s - 59 -0.320791 19 H s 60 -0.320791 20 H s - - Vector 46 Occ=0.000000D+00 E= 4.112341D-01 Symmetry=bu - MO Center= -2.3D-13, 6.7D-13, -2.0D-18, r^2= 1.1D+01 + 48 0.647348 15 C s 53 0.647348 16 C s + 22 0.620073 5 C s 27 0.620073 6 C s + 57 -0.513313 17 H s 58 -0.513313 18 H s + 12 -0.443657 3 C s 17 -0.443657 4 C s + 59 -0.320795 19 H s 60 -0.320795 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.112340D-01 Symmetry=bu + MO Center= 6.2D-14, -1.8D-13, -5.8D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.613158 5 C s 27 -0.613158 6 C s - 48 0.539736 15 C s 53 -0.539736 16 C s - 2 0.476219 1 C s 7 -0.476219 2 C s - 57 -0.447814 17 H s 58 0.447814 18 H s - 12 -0.440663 3 C s 17 0.440663 4 C s - - Vector 47 Occ=0.000000D+00 E= 4.258025D-01 Symmetry=bu - MO Center= 1.5D-15, -6.2D-15, -4.7D-18, r^2= 9.2D+00 + 22 0.613157 5 C s 27 -0.613157 6 C s + 48 0.539738 15 C s 53 -0.539738 16 C s + 2 0.476220 1 C s 7 -0.476220 2 C s + 57 -0.447818 17 H s 58 0.447818 18 H s + 12 -0.440665 3 C s 17 0.440665 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.258024D-01 Symmetry=bu + MO Center= -2.3D-15, 1.2D-15, -2.3D-18, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 0.603108 7 H s 32 -0.603108 8 H s - 36 -0.446797 11 C s 41 0.446797 12 C s + 31 0.603107 7 H s 32 -0.603107 8 H s + 36 -0.446798 11 C s 41 0.446798 12 C s 45 0.437141 13 H s 46 -0.437141 14 H s 12 -0.368675 3 C s 17 0.368675 4 C s - 59 0.337703 19 H s 60 -0.337703 20 H s - - Vector 48 Occ=0.000000D+00 E= 4.393601D-01 Symmetry=ag - MO Center= -7.0D-15, -3.1D-14, 7.3D-17, r^2= 7.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.782303 1 C s 7 0.782303 2 C s - 36 -0.556791 11 C s 41 -0.556791 12 C s - 12 -0.499653 3 C s 17 -0.499653 4 C s - 22 -0.411571 5 C s 27 -0.411571 6 C s - 48 0.409890 15 C s 53 0.409890 16 C s - - Vector 49 Occ=0.000000D+00 E= 4.537215D-01 Symmetry=bu - MO Center= 2.5D-16, 3.1D-14, 1.2D-18, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.706722 15 C s 53 -0.706722 16 C s - 57 -0.525559 17 H s 58 0.525559 18 H s - 33 0.477115 9 H s 34 -0.477115 10 H s - 36 -0.428991 11 C s 41 0.428991 12 C s - 22 -0.407165 5 C s 27 0.407165 6 C s - + 59 0.337705 19 H s 60 -0.337705 20 H s + + Vector 48 Occ=0.000000D+00 E= 4.393598D-01 Symmetry=ag + MO Center= -3.1D-15, -1.2D-14, -6.5D-17, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.782306 1 C s 7 0.782306 2 C s + 36 -0.556794 11 C s 41 -0.556794 12 C s + 12 -0.499660 3 C s 17 -0.499660 4 C s + 22 -0.411568 5 C s 27 -0.411568 6 C s + 48 0.409883 15 C s 53 0.409883 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.537217D-01 Symmetry=bu + MO Center= -2.4D-15, 1.4D-14, -1.3D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.706720 15 C s 53 -0.706720 16 C s + 57 -0.525554 17 H s 58 0.525554 18 H s + 33 0.477116 9 H s 34 -0.477116 10 H s + 36 -0.428999 11 C s 41 0.428999 12 C s + 22 -0.407169 5 C s 27 0.407169 6 C s + Vector 50 Occ=0.000000D+00 E= 4.783356D-01 Symmetry=ag - MO Center= 3.9D-16, -1.2D-15, 9.8D-17, r^2= 1.1D+01 + MO Center= 1.9D-15, -7.8D-15, 1.8D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.706221 3 C s 17 0.706221 4 C s - 22 -0.619401 5 C s 27 -0.619401 6 C s - 59 -0.475185 19 H s 60 -0.475185 20 H s - 48 0.415037 15 C s 53 0.415037 16 C s - 50 -0.382620 15 C py 55 0.382620 16 C py - - Vector 51 Occ=0.000000D+00 E= 5.255624D-01 Symmetry=ag - MO Center= -1.7D-17, -3.2D-16, -7.5D-18, r^2= 6.5D+00 + 12 0.706217 3 C s 17 0.706217 4 C s + 22 -0.619403 5 C s 27 -0.619403 6 C s + 59 -0.475188 19 H s 60 -0.475188 20 H s + 48 0.415040 15 C s 53 0.415040 16 C s + 50 -0.382623 15 C py 55 0.382623 16 C py + + Vector 51 Occ=0.000000D+00 E= 5.255622D-01 Symmetry=ag + MO Center= 2.4D-16, 1.8D-17, 4.2D-18, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.601871 1 C py 9 -0.601871 2 C py 36 -0.491666 11 C s 41 -0.491666 12 C s 13 -0.452505 3 C px 18 0.452505 4 C px - 2 -0.448705 1 C s 7 -0.448705 2 C s + 2 -0.448706 1 C s 7 -0.448706 2 C s 49 -0.342028 15 C px 54 0.342028 16 C px - - Vector 52 Occ=0.000000D+00 E= 5.463505D-01 Symmetry=bu - MO Center= 3.7D-16, 2.9D-15, 6.1D-19, r^2= 7.7D+00 + + Vector 52 Occ=0.000000D+00 E= 5.463508D-01 Symmetry=bu + MO Center= -1.4D-15, -2.7D-15, 3.5D-19, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.647799 3 C s 17 -0.647799 4 C s - 3 -0.560727 1 C px 8 -0.560727 2 C px - 50 0.483442 15 C py 55 0.483442 16 C py + 12 0.647802 3 C s 17 -0.647802 4 C s + 3 -0.560729 1 C px 8 -0.560729 2 C px + 50 0.483441 15 C py 55 0.483441 16 C py 24 -0.478219 5 C py 29 -0.478219 6 C py - 59 0.356007 19 H s 60 -0.356007 20 H s - - Vector 53 Occ=0.000000D+00 E= 5.764362D-01 Symmetry=ag - MO Center= 2.5D-15, 2.4D-15, -2.8D-17, r^2= 5.4D+00 + 59 0.356006 19 H s 60 -0.356006 20 H s + + Vector 53 Occ=0.000000D+00 E= 5.764359D-01 Symmetry=ag + MO Center= 2.9D-15, -1.4D-16, 1.8D-18, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.537120 3 C px 18 -0.537120 4 C px + 13 0.537121 3 C px 18 -0.537121 4 C px 23 -0.522144 5 C px 28 0.522144 6 C px - 33 0.519105 9 H s 34 0.519105 10 H s - 31 -0.448308 7 H s 32 -0.448308 8 H s + 33 0.519107 9 H s 34 0.519107 10 H s + 31 -0.448311 7 H s 32 -0.448311 8 H s 24 0.400192 5 C py 29 -0.400192 6 C py - - Vector 54 Occ=0.000000D+00 E= 5.984388D-01 Symmetry=bu - MO Center= -1.1D-15, -3.1D-15, 1.6D-18, r^2= 4.8D+00 + + Vector 54 Occ=0.000000D+00 E= 5.984386D-01 Symmetry=bu + MO Center= -1.2D-15, 2.3D-16, 4.4D-19, r^2= 4.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 0.723029 3 C py 19 0.723029 4 C py - 22 0.599923 5 C s 27 -0.599923 6 C s + 22 0.599921 5 C s 27 -0.599921 6 C s 36 -0.415411 11 C s 41 0.415411 12 C s - 2 -0.405907 1 C s 7 0.405907 2 C s - 24 0.394224 5 C py 29 0.394224 6 C py - - Vector 55 Occ=0.000000D+00 E= 6.248973D-01 Symmetry=bu - MO Center= 5.9D-16, 4.6D-16, 1.4D-18, r^2= 1.1D+01 + 2 -0.405908 1 C s 7 0.405908 2 C s + 24 0.394226 5 C py 29 0.394226 6 C py + + Vector 55 Occ=0.000000D+00 E= 6.248971D-01 Symmetry=bu + MO Center= 6.2D-16, 4.0D-17, 7.3D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.608536 1 C s 7 -0.608536 2 C s - 49 -0.528889 15 C px 54 -0.528889 16 C px - 38 0.480660 11 C py 43 0.480660 12 C py - 23 -0.365997 5 C px 28 -0.365997 6 C px - 57 0.363287 17 H s 58 -0.363287 18 H s - - Vector 56 Occ=0.000000D+00 E= 6.398334D-01 Symmetry=ag - MO Center= -2.2D-15, 2.0D-15, -3.7D-18, r^2= 9.4D+00 + 49 -0.528891 15 C px 54 -0.528891 16 C px + 38 0.480661 11 C py 43 0.480661 12 C py + 23 -0.365996 5 C px 28 -0.365996 6 C px + 57 0.363288 17 H s 58 -0.363288 18 H s + + Vector 56 Occ=0.000000D+00 E= 6.398329D-01 Symmetry=ag + MO Center= -2.6D-16, -9.4D-16, 2.0D-17, r^2= 9.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.549269 11 C px 42 -0.549269 12 C px 50 -0.534300 15 C py 55 0.534300 16 C py - 14 0.383478 3 C py 19 -0.383478 4 C py + 14 0.383477 3 C py 19 -0.383477 4 C py 4 -0.364575 1 C py 9 0.364575 2 C py 59 -0.330751 19 H s 60 -0.330751 20 H s - + Vector 57 Occ=0.000000D+00 E= 6.828367D-01 Symmetry=ag - MO Center= 4.6D-16, 4.1D-15, 2.4D-17, r^2= 9.3D+00 + MO Center= -1.4D-15, -1.1D-14, -5.0D-18, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 38 0.663093 11 C py 43 -0.663093 12 C py + 38 0.663094 11 C py 43 -0.663094 12 C py 49 -0.580412 15 C px 54 0.580412 16 C px - 24 -0.449231 5 C py 29 0.449231 6 C py - 14 -0.392087 3 C py 19 0.392087 4 C py - 4 -0.381671 1 C py 9 0.381671 2 C py - - Vector 58 Occ=0.000000D+00 E= 7.173568D-01 Symmetry=bu - MO Center= -1.6D-16, -8.9D-15, 5.2D-22, r^2= 9.6D+00 + 24 -0.449230 5 C py 29 0.449230 6 C py + 14 -0.392086 3 C py 19 0.392086 4 C py + 4 -0.381670 1 C py 9 0.381670 2 C py + + Vector 58 Occ=0.000000D+00 E= 7.173566D-01 Symmetry=bu + MO Center= 5.1D-16, 1.3D-14, 1.5D-19, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.608022 11 C px 42 0.608022 12 C px - 48 -0.538018 15 C s 50 -0.540481 15 C py - 53 0.538018 16 C s 55 -0.540481 16 C py - 36 0.466539 11 C s 38 -0.464871 11 C py - 41 -0.466539 12 C s 43 -0.464871 12 C py - - Vector 59 Occ=0.000000D+00 E= 7.790417D-01 Symmetry=ag - MO Center= -2.5D-16, 8.3D-15, 1.3D-16, r^2= 5.4D+00 + 37 0.608024 11 C px 42 0.608024 12 C px + 48 -0.538017 15 C s 50 -0.540482 15 C py + 53 0.538017 16 C s 55 -0.540482 16 C py + 36 0.466538 11 C s 38 -0.464867 11 C py + 41 -0.466538 12 C s 43 -0.464867 12 C py + + Vector 59 Occ=0.000000D+00 E= 7.790416D-01 Symmetry=ag + MO Center= 3.0D-16, -5.2D-15, 7.9D-20, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.702433 1 C px 8 -0.702433 2 C px - 14 -0.534061 3 C py 19 0.534061 4 C py + 14 -0.534062 3 C py 19 0.534062 4 C py 23 -0.435987 5 C px 28 0.435987 6 C px 37 0.429834 11 C px 42 -0.429834 12 C px 24 -0.411039 5 C py 29 0.411039 6 C py - - Vector 60 Occ=0.000000D+00 E= 7.942619D-01 Symmetry=bu - MO Center= -3.4D-16, -7.9D-15, 1.1D-22, r^2= 3.4D+00 + + Vector 60 Occ=0.000000D+00 E= 7.942624D-01 Symmetry=bu + MO Center= 1.0D-16, 6.0D-15, -4.0D-21, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.657694 1 C py 9 0.657694 2 C py - 13 -0.568326 3 C px 18 -0.568326 4 C px + 4 0.657693 1 C py 9 0.657693 2 C py + 13 -0.568325 3 C px 18 -0.568325 4 C px 23 0.496520 5 C px 28 0.496520 6 C px - 22 -0.413798 5 C s 27 0.413798 6 C s + 22 -0.413797 5 C s 27 0.413797 6 C s 24 -0.395895 5 C py 29 -0.395895 6 C py - + center of mass -------------- @@ -1272,29 +1280,32 @@ moments of inertia (a.u.) ------------------ - 2631.731379210404 0.000000000000 0.000000000000 - 0.000000000000 390.819001468288 0.000000000000 - 0.000000000000 0.000000000000 3022.550380678692 - + 2631.731379210398 -0.000000000000 0.000000000000 + -0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678686 + Multipole analysis of the density --------------------------------- - + L x y z total alpha beta nuclear - - - - ----- ----- ---- ------- 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 - - 1 1 0 0 0.000000 0.000000 0.000000 0.000000 - 1 0 1 0 -0.000000 -0.000000 -0.000000 0.000000 + + 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 + 1 0 1 0 0.000000 0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - + 2 2 0 0 -37.347165 -141.071519 -141.071519 244.795872 - 2 1 1 0 0.066503 2.848765 2.848765 -5.631027 + 2 1 1 0 0.066501 2.848764 2.848764 -5.631027 2 1 0 1 0.000000 0.000000 0.000000 0.000000 - 2 0 2 0 -37.714741 -767.339020 -767.339020 1496.963300 + 2 0 2 0 -37.714742 -767.339021 -767.339021 1496.963300 2 0 1 1 0.000000 0.000000 0.000000 0.000000 - 2 0 0 2 -43.587344 -21.793672 -21.793672 0.000000 + 2 0 0 2 -43.587345 -21.793672 -21.793672 0.000000 + + Parallel integral file used 10 records with 0 large values + General Information ------------------- SCF calculation type: DFT @@ -1312,7 +1323,7 @@ Convergence on energy requested: 1.00D-06 Convergence on density requested: 1.00D-05 Convergence on gradient requested: 5.00D-04 - + XC Information -------------- B3LYP Method XC Potential @@ -1321,7 +1332,7 @@ Becke 1988 Exchange Functional 0.720 non-local Lee-Yang-Parr Correlation Functional 0.810 VWN I RPA Correlation Functional 0.190 local - + Grid Information ---------------- Grid used for XC integration: medium @@ -1334,7 +1345,7 @@ Grid pruning is: on Number of quadrature shells: 470 Spatial weights used: Erf1 - + Convergence Information ----------------------- Convergence aids based upon iterative change in @@ -1349,7 +1360,7 @@ dE on: start ASAP start dE off: 2 iters 30 iters 30 iters - + Screening Tolerance Information ------------------------------- Density screening/tol_rho: 1.00D-10 @@ -1358,15 +1369,15 @@ XC Gaussian exp screening on grid/accXCfunc: 20 Schwarz screening/accCoul: 1.00D-08 - - + + NWChem DFT Gradient Module -------------------------- - - + + Divinylbenzene in STO-3G basis set - - + + charge = 0.00 wavefunction = closed shell @@ -1398,19 +1409,19 @@ 18 H -2.731087 6.994712 0.000000 0.000070 -0.000373 0.000000 19 H 0.090997 -9.319983 0.000000 -0.000133 -0.000397 0.000000 20 H -0.090997 9.319983 0.000000 0.000133 0.000397 0.000000 - + ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.00 | 0.59 | + | CPU | 0.00 | 0.33 | ---------------------------------------- - | WALL | 0.00 | 0.59 | + | WALL | 0.00 | 0.35 | ---------------------------------------- - no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.000000000000000E+000 @ Step Energy Delta E Gmax Grms Xrms Xmax Walltime @ ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 0 -382.30823623 0.0D+00 0.00075 0.00023 0.00000 0.00000 6.1 +@ 0 -382.30823637 0.0D+00 0.00075 0.00023 0.00000 0.00000 3.0 ok @@ -1419,7 +1430,7 @@ -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value Gradient ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- 1 Stretch 1 3 1.42204 -0.00030 @@ -1492,7 +1503,7 @@ 68 Torsion 4 2 11 13 0.00000 0.00000 69 Torsion 4 2 11 15 180.00000 0.00000 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 -0.00000 + 71 Torsion 5 2 4 6 0.00000 -0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 73 Torsion 5 2 11 13 180.00000 -0.00000 74 Torsion 5 2 11 15 0.00000 0.00000 @@ -1502,29 +1513,29 @@ 78 Torsion 6 1 12 14 180.00000 -0.00000 79 Torsion 6 1 12 16 0.00000 0.00000 80 Torsion 6 4 2 11 180.00000 -0.00000 - 81 Torsion 7 3 1 12 -0.00000 -0.00000 + 81 Torsion 7 3 1 12 0.00000 -0.00000 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 -0.00000 + 83 Torsion 8 4 2 11 0.00000 -0.00000 84 Torsion 8 4 6 10 0.00000 -0.00000 85 Torsion 9 5 2 11 0.00000 0.00000 86 Torsion 10 6 1 12 0.00000 -0.00000 87 Torsion 13 11 15 17 180.00000 0.00000 - 88 Torsion 13 11 15 19 -0.00000 0.00000 + 88 Torsion 13 11 15 19 0.00000 0.00000 89 Torsion 14 12 16 18 180.00000 0.00000 - 90 Torsion 14 12 16 20 -0.00000 0.00000 - - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - + 90 Torsion 14 12 16 20 0.00000 0.00000 + + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + Summary of "ao basis" -> "ao basis" (cartesian) @@ -1537,14 +1548,14 @@ Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 - + Caching 1-el integrals - + General Information ------------------- SCF calculation type: DFT @@ -1562,7 +1573,7 @@ Convergence on energy requested: 1.00D-06 Convergence on density requested: 1.00D-05 Convergence on gradient requested: 5.00D-04 - + XC Information -------------- B3LYP Method XC Potential @@ -1571,7 +1582,7 @@ Becke 1988 Exchange Functional 0.720 non-local Lee-Yang-Parr Correlation Functional 0.810 VWN I RPA Correlation Functional 0.190 local - + Grid Information ---------------- Grid used for XC integration: medium @@ -1584,7 +1595,7 @@ Grid pruning is: on Number of quadrature shells: 470 Spatial weights used: Erf1 - + Convergence Information ----------------------- Convergence aids based upon iterative change in @@ -1599,7 +1610,7 @@ dE on: start ASAP start dE off: 2 iters 30 iters 30 iters - + Screening Tolerance Information ------------------------------- Density screening/tol_rho: 1.00D-10 @@ -1613,16 +1624,16 @@ Divinylbenzene in STO-3G basis set - + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 ag 6 bu 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -1632,729 +1643,744 @@ Divinylbenzene in STO-3G basis set 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag + + Time after variat. SCF: 3.1 + Time prior to 1st pass: 3.1 + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507878 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.470D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 - Time after variat. SCF: 6.1 - Time prior to 1st pass: 6.1 Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 - Max. records in memory = 75 Max. recs in file = ********* + Max. records in memory = 20 Max. recs in file = 2708470 Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 5.89 5890482 + Heap Space remaining (MW): 12.46 12464624 Stack Space remaining (MW): 13.11 13106284 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.3082484651 -8.28D+02 1.66D-04 4.15D-05 6.9 - d= 0,ls=0.0,diis 2 -382.3082593124 -1.08D-05 2.13D-05 3.92D-07 7.5 - d= 0,ls=0.0,diis 3 -382.3082593278 -1.54D-08 1.10D-05 4.78D-07 8.1 - d= 0,ls=0.0,diis 4 -382.3082594024 -7.46D-08 2.19D-06 1.27D-08 8.7 + d= 0,ls=0.0,diis 1 -382.3082506814 -8.28D+02 1.57D-04 3.59D-05 3.6 + d= 0,ls=0.0,diis 2 -382.3082601414 -9.46D-06 2.28D-05 4.14D-07 3.8 + d= 0,ls=0.0,diis 3 -382.3082601237 1.77D-08 1.28D-05 7.04D-07 4.0 + d= 0,ls=0.0,diis 4 -382.3082602333 -1.10D-07 2.15D-06 1.06D-08 4.2 - Total DFT energy = -382.308259402393 - One electron energy = -1400.535177245333 - Coulomb energy = 630.186780407650 - Exchange-Corr. energy = -57.843636287843 - Nuclear repulsion energy = 445.883773723134 + Total DFT energy = -382.308260233307 + One electron energy = -1400.533951645917 + Coulomb energy = 630.186523548255 + Exchange-Corr. energy = -57.843401188304 + Nuclear repulsion energy = 445.882569052659 - Numeric. integr. density = 69.999955544927 - - Total iterative time = 2.6s + Numeric. integr. density = 69.999955505858 + Total iterative time = 1.1s + Occupations of the irreducible representations ---------------------------------------------- - + irrep alpha beta -------- -------- -------- ag 15.0 15.0 au 2.0 2.0 bg 3.0 3.0 bu 15.0 15.0 - - + + DFT Final Molecular Orbital Analysis ------------------------------------ - - Vector 1 Occ=2.000000D+00 E=-1.002024D+01 Symmetry=bu - MO Center= -1.7D-18, 6.9D-17, -1.6D-50, r^2= 2.1D+00 + + Vector 1 Occ=2.000000D+00 E=-1.002023D+01 Symmetry=bu + MO Center= 2.5D-17, 2.9D-16, 1.2D-53, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 1 0.699298 1 C s 6 -0.699298 2 C s - 2 0.031567 1 C s 7 -0.031567 2 C s - 35 0.027307 11 C s 40 -0.027307 12 C s - - Vector 2 Occ=2.000000D+00 E=-1.002019D+01 Symmetry=ag - MO Center= 3.1D-14, 4.4D-14, 3.1D-24, r^2= 2.1D+00 + 1 0.699295 1 C s 6 -0.699295 2 C s + 2 0.031564 1 C s 7 -0.031564 2 C s + 35 0.027388 11 C s 40 -0.027388 12 C s + + Vector 2 Occ=2.000000D+00 E=-1.002018D+01 Symmetry=ag + MO Center= -3.4D-14, -3.2D-14, 2.1D-22, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 1 0.699296 1 C s 6 0.699296 2 C s - 2 0.031360 1 C s 7 0.031360 2 C s - 35 -0.027670 11 C s 40 -0.027670 12 C s - - Vector 3 Occ=2.000000D+00 E=-1.000809D+01 Symmetry=bu - MO Center= -9.8D-15, -4.9D-14, 2.7D-39, r^2= 8.6D+00 + 1 0.699293 1 C s 6 0.699293 2 C s + 2 0.031357 1 C s 7 0.031357 2 C s + 35 -0.027753 11 C s 40 -0.027753 12 C s + + Vector 3 Occ=2.000000D+00 E=-1.000811D+01 Symmetry=bu + MO Center= 8.7D-15, 4.4D-14, 4.1D-40, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.699820 11 C s 40 -0.699820 12 C s - 36 0.030782 11 C s 41 -0.030782 12 C s - 1 -0.027882 1 C s 6 0.027882 2 C s - - Vector 4 Occ=2.000000D+00 E=-1.000808D+01 Symmetry=ag - MO Center= 6.0D-15, 1.2D-14, 6.0D-18, r^2= 8.6D+00 + 35 0.699822 11 C s 40 -0.699822 12 C s + 36 0.030784 11 C s 41 -0.030784 12 C s + 1 -0.027979 1 C s 6 0.027979 2 C s + + Vector 4 Occ=2.000000D+00 E=-1.000810D+01 Symmetry=ag + MO Center= 2.3D-14, 6.3D-14, 9.0D-19, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.699736 11 C s 40 0.699736 12 C s - 36 0.030764 11 C s 41 0.030764 12 C s - 1 0.028091 1 C s 6 0.028091 2 C s - - Vector 5 Occ=2.000000D+00 E=-1.000683D+01 Symmetry=bu - MO Center= -1.9D-09, 8.8D-10, -1.8D-25, r^2= 2.0D+00 + 35 0.699740 11 C s 40 0.699740 12 C s + 36 0.030766 11 C s 41 0.030766 12 C s + 1 0.028187 1 C s 6 0.028187 2 C s + + Vector 5 Occ=2.000000D+00 E=-1.000681D+01 Symmetry=bu + MO Center= -3.9D-11, 2.1D-11, -5.4D-28, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.607614 5 C s 26 -0.607614 6 C s - 11 -0.346486 3 C s 16 0.346486 4 C s - 22 0.030209 5 C s 27 -0.030209 6 C s - 1 -0.027685 1 C s 6 0.027685 2 C s - - Vector 6 Occ=2.000000D+00 E=-1.000683D+01 Symmetry=ag - MO Center= 1.9D-09, -8.8D-10, 4.4D-18, r^2= 2.0D+00 + 21 0.608806 5 C s 26 -0.608806 6 C s + 11 -0.344404 3 C s 16 0.344404 4 C s + 22 0.030238 5 C s 27 -0.030238 6 C s + 1 -0.027644 1 C s 6 0.027644 2 C s + + Vector 6 Occ=2.000000D+00 E=-1.000681D+01 Symmetry=ag + MO Center= 4.0D-11, -1.7D-11, 7.3D-20, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.592712 5 C s 26 0.592712 6 C s - 11 -0.372414 3 C s 16 -0.372414 4 C s - 22 0.029585 5 C s 27 0.029585 6 C s - - Vector 7 Occ=2.000000D+00 E=-1.000611D+01 Symmetry=bu - MO Center= 3.0D-11, 9.7D-13, -9.9D-30, r^2= 2.0D+00 + 21 0.593854 5 C s 26 0.593854 6 C s + 11 -0.370592 3 C s 16 -0.370592 4 C s + 22 0.029614 5 C s 27 0.029614 6 C s + + Vector 7 Occ=2.000000D+00 E=-1.000609D+01 Symmetry=bu + MO Center= 4.5D-13, -1.2D-12, -7.6D-31, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.608391 3 C s 16 -0.608391 4 C s - 21 0.347846 5 C s 26 -0.347846 6 C s - - Vector 8 Occ=2.000000D+00 E=-1.000597D+01 Symmetry=ag - MO Center= -3.0D-11, -2.7D-12, 1.1D-33, r^2= 2.0D+00 + 11 0.609576 3 C s 16 -0.609576 4 C s + 21 0.345761 5 C s 26 -0.345761 6 C s + + Vector 8 Occ=2.000000D+00 E=-1.000595D+01 Symmetry=ag + MO Center= -9.3D-13, -2.5D-12, -9.4D-18, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.592867 3 C s 16 0.592867 4 C s - 21 0.372685 5 C s 26 0.372685 6 C s - 1 0.028530 1 C s 6 0.028530 2 C s - - Vector 9 Occ=2.000000D+00 E=-9.992317D+00 Symmetry=bu - MO Center= 4.6D-11, -5.0D-10, -2.3D-33, r^2= 1.5D+01 + 11 0.594013 3 C s 16 0.594013 4 C s + 21 0.370869 5 C s 26 0.370869 6 C s + 1 0.028489 1 C s 6 0.028489 2 C s + + Vector 9 Occ=2.000000D+00 E=-9.992326D+00 Symmetry=bu + MO Center= 6.1D-16, -6.3D-17, 3.2D-31, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 47 0.700478 15 C s 52 -0.700478 16 C s - 48 0.030861 15 C s 53 -0.030861 16 C s - - Vector 10 Occ=2.000000D+00 E=-9.992317D+00 Symmetry=ag - MO Center= -4.6D-11, 5.0D-10, -4.0D-19, r^2= 1.5D+01 + 47 0.700479 15 C s 52 -0.700479 16 C s + 48 0.030863 15 C s 53 -0.030863 16 C s + + Vector 10 Occ=2.000000D+00 E=-9.992326D+00 Symmetry=ag + MO Center= 8.5D-17, -8.4D-16, -8.6D-34, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700478 15 C s 52 0.700478 16 C s - 48 0.030860 15 C s 53 0.030860 16 C s - - Vector 11 Occ=2.000000D+00 E=-8.095500D-01 Symmetry=ag - MO Center= 3.2D-15, -5.7D-15, 1.3D-15, r^2= 3.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.274631 1 C s 7 0.274631 2 C s - 12 0.247042 3 C s 17 0.247042 4 C s - 22 0.246798 5 C s 27 0.246798 6 C s - 36 0.127611 11 C s 41 0.127611 12 C s - 1 -0.107840 1 C s 6 -0.107840 2 C s - - Vector 12 Occ=2.000000D+00 E=-7.539512D-01 Symmetry=bu - MO Center= 3.5D-16, 1.2D-15, 8.6D-27, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 -0.297190 11 C s 41 0.297190 12 C s - 2 0.273988 1 C s 7 -0.273988 2 C s - 48 -0.209129 15 C s 53 0.209129 16 C s - 35 0.113811 11 C s 40 -0.113811 12 C s - 22 -0.112901 5 C s 27 0.112901 6 C s - - Vector 13 Occ=2.000000D+00 E=-7.179329D-01 Symmetry=ag - MO Center= 1.8D-16, 3.8D-15, 1.0D-31, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.315011 11 C s 41 0.315011 12 C s - 48 0.309756 15 C s 53 0.309756 16 C s - 12 -0.121068 3 C s 17 -0.121068 4 C s - 35 -0.119307 11 C s 40 -0.119307 12 C s - 47 -0.117447 15 C s 52 -0.117447 16 C s - - Vector 14 Occ=2.000000D+00 E=-6.998154D-01 Symmetry=bu - MO Center= -3.9D-15, 2.6D-15, -1.1D-25, r^2= 3.2D+00 + 48 0.030863 15 C s 53 0.030863 16 C s + + Vector 11 Occ=2.000000D+00 E=-8.094864D-01 Symmetry=ag + MO Center= -9.8D-15, 2.3D-14, -3.1D-16, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.274642 1 C s 7 0.274642 2 C s + 12 0.247004 3 C s 17 0.247004 4 C s + 22 0.246775 5 C s 27 0.246775 6 C s + 36 0.127746 11 C s 41 0.127746 12 C s + 1 -0.107834 1 C s 6 -0.107834 2 C s + + Vector 12 Occ=2.000000D+00 E=-7.539678D-01 Symmetry=bu + MO Center= -1.4D-15, 1.8D-15, 4.2D-27, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 -0.297281 11 C s 41 0.297281 12 C s + 2 0.273800 1 C s 7 -0.273800 2 C s + 48 -0.209329 15 C s 53 0.209329 16 C s + 35 0.113855 11 C s 40 -0.113855 12 C s + 22 -0.112841 5 C s 27 0.112841 6 C s + + Vector 13 Occ=2.000000D+00 E=-7.179778D-01 Symmetry=ag + MO Center= -1.8D-16, -2.9D-14, 2.0D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.314944 11 C s 41 0.314944 12 C s + 48 0.309728 15 C s 53 0.309728 16 C s + 12 -0.121197 3 C s 17 -0.121197 4 C s + 35 -0.119295 11 C s 40 -0.119295 12 C s + 47 -0.117451 15 C s 52 -0.117451 16 C s + + Vector 14 Occ=2.000000D+00 E=-6.997680D-01 Symmetry=bu + MO Center= 1.0D-14, -2.7D-15, -2.4D-25, r^2= 3.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.356723 3 C s 17 -0.356723 4 C s + 22 0.324703 5 C s 27 -0.324703 6 C s + 11 -0.132173 3 C s 16 0.132173 4 C s + 3 0.124939 1 C px 8 0.124939 2 C px + 21 -0.120374 5 C s 26 0.120374 6 C s + + Vector 15 Occ=2.000000D+00 E=-6.675239D-01 Symmetry=bu + MO Center= 4.5D-17, 7.3D-15, -2.2D-25, r^2= 9.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.299626 15 C s 53 -0.299626 16 C s + 2 0.274165 1 C s 7 -0.274165 2 C s + 22 -0.200714 5 C s 27 0.200714 6 C s + 36 0.136805 11 C s 41 -0.136805 12 C s + 38 -0.129059 11 C py 43 -0.129059 12 C py + + Vector 16 Occ=2.000000D+00 E=-5.886277D-01 Symmetry=ag + MO Center= -4.8D-16, 6.8D-17, -1.2D-32, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.242639 15 C s 53 0.242639 16 C s + 22 0.232264 5 C s 27 0.232264 6 C s + 2 -0.206945 1 C s 7 -0.206945 2 C s + 14 -0.159629 3 C py 19 0.159629 4 C py + 36 -0.159690 11 C s 41 -0.159690 12 C s + + Vector 17 Occ=2.000000D+00 E=-5.589834D-01 Symmetry=ag + MO Center= -3.2D-16, -3.8D-15, -3.4D-17, r^2= 5.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.326170 3 C s 17 0.326170 4 C s + 3 0.185821 1 C px 8 -0.185821 2 C px + 22 -0.172039 5 C s 27 -0.172039 6 C s + 24 0.170227 5 C py 29 -0.170227 6 C py + 31 0.169633 7 H s 32 0.169633 8 H s + + Vector 18 Occ=2.000000D+00 E=-5.316514D-01 Symmetry=bu + MO Center= 6.9D-15, 1.8D-14, -2.3D-25, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.302601 11 C s 41 -0.302601 12 C s + 48 -0.249279 15 C s 53 0.249279 16 C s + 45 0.170560 13 H s 46 -0.170560 14 H s + 57 -0.160325 17 H s 58 0.160325 18 H s + 12 0.154479 3 C s 17 -0.154479 4 C s + + Vector 19 Occ=2.000000D+00 E=-5.101132D-01 Symmetry=ag + MO Center= -7.8D-15, -1.3D-14, -1.6D-16, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.202029 5 C px 28 -0.202029 6 C px + 13 0.183898 3 C px 18 -0.183898 4 C px + 36 0.180817 11 C s 41 0.180817 12 C s + 33 0.169580 9 H s 34 0.169580 10 H s + 22 0.166852 5 C s 27 0.166852 6 C s + + Vector 20 Occ=2.000000D+00 E=-4.574566D-01 Symmetry=ag + MO Center= 4.7D-15, -1.5D-15, -3.8D-17, r^2= 9.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.212832 15 C px 54 -0.212832 16 C px + 38 0.184712 11 C py 43 -0.184712 12 C py + 57 0.178979 17 H s 58 0.178979 18 H s + 45 -0.152703 13 H s 46 -0.152703 14 H s + 14 0.141013 3 C py 19 -0.141013 4 C py + + Vector 21 Occ=2.000000D+00 E=-4.393094D-01 Symmetry=bu + MO Center= -1.0D-15, -8.2D-15, -1.2D-24, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.219832 11 C px 42 0.219832 12 C px + 50 0.210061 15 C py 55 0.210061 16 C py + 14 0.184810 3 C py 19 0.184810 4 C py + 59 -0.177838 19 H s 60 0.177838 20 H s + 45 -0.155809 13 H s 46 0.155809 14 H s + + Vector 22 Occ=2.000000D+00 E=-4.107045D-01 Symmetry=bu + MO Center= 1.3D-14, 4.1D-14, 2.1D-25, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.356678 3 C s 17 -0.356678 4 C s - 22 0.324754 5 C s 27 -0.324754 6 C s - 11 -0.132166 3 C s 16 0.132166 4 C s - 3 0.124971 1 C px 8 0.124971 2 C px - 21 -0.120401 5 C s 26 0.120401 6 C s - - Vector 15 Occ=2.000000D+00 E=-6.675484D-01 Symmetry=bu - MO Center= -1.2D-15, -1.9D-15, -7.2D-25, r^2= 9.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.299800 15 C s 53 -0.299800 16 C s - 2 0.273933 1 C s 7 -0.273933 2 C s - 22 -0.200567 5 C s 27 0.200567 6 C s - 36 0.136978 11 C s 41 -0.136978 12 C s - 38 -0.129042 11 C py 43 -0.129042 12 C py - - Vector 16 Occ=2.000000D+00 E=-5.886676D-01 Symmetry=ag - MO Center= 1.4D-15, 1.5D-15, 2.4D-32, r^2= 8.5D+00 + 2 0.234437 1 C s 7 -0.234437 2 C s + 33 0.230937 9 H s 34 -0.230937 10 H s + 31 -0.225474 7 H s 32 0.225474 8 H s + 13 -0.220391 3 C px 18 -0.220391 4 C px + 24 -0.178651 5 C py 29 -0.178651 6 C py + + Vector 23 Occ=2.000000D+00 E=-3.978699D-01 Symmetry=bu + MO Center= -1.3D-15, 3.0D-15, 1.2D-31, r^2= 8.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.251343 5 C px 28 0.251343 6 C px + 49 0.250986 15 C px 54 0.250986 16 C px + 3 -0.219178 1 C px 8 -0.219178 2 C px + 57 0.215607 17 H s 58 -0.215607 18 H s + 38 0.181775 11 C py 43 0.181775 12 C py + + Vector 24 Occ=2.000000D+00 E=-3.961228D-01 Symmetry=ag + MO Center= -1.5D-14, -3.3D-14, 5.7D-31, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.338905 15 C py 55 -0.338905 16 C py + 59 -0.262082 19 H s 60 -0.262082 20 H s + 37 0.252156 11 C px 42 -0.252156 12 C px + 45 -0.145755 13 H s 46 -0.145755 14 H s + 24 0.136041 5 C py 29 -0.136041 6 C py + + Vector 25 Occ=2.000000D+00 E=-3.739950D-01 Symmetry=bu + MO Center= -3.2D-16, -3.8D-15, -2.3D-23, r^2= 4.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.308557 3 C px 18 0.308557 4 C px + 31 0.253500 7 H s 32 -0.253500 8 H s + 24 -0.225037 5 C py 29 -0.225037 6 C py + 33 0.217272 9 H s 34 -0.217272 10 H s + 23 0.188199 5 C px 28 0.188199 6 C px + + Vector 26 Occ=2.000000D+00 E=-3.511835D-01 Symmetry=bu + MO Center= -1.7D-15, -3.7D-15, -3.0D-24, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.245386 15 C py 55 -0.245386 16 C py + 14 0.224858 3 C py 19 0.224858 4 C py + 37 -0.201221 11 C px 42 -0.201221 12 C px + 24 -0.194246 5 C py 29 -0.194246 6 C py + 38 0.186647 11 C py 43 0.186647 12 C py + + Vector 27 Occ=2.000000D+00 E=-3.472252D-01 Symmetry=ag + MO Center= 3.7D-15, 1.9D-15, -1.0D-15, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.295576 15 C px 54 -0.295576 16 C px + 57 0.268134 17 H s 58 0.268134 18 H s + 37 -0.207992 11 C px 42 0.207992 12 C px + 45 0.199893 13 H s 46 0.199893 14 H s + 31 -0.155876 7 H s 32 -0.155876 8 H s + + Vector 28 Occ=2.000000D+00 E=-3.244880D-01 Symmetry=au + MO Center= 3.5D-15, 5.3D-15, 1.4D-15, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.337546 1 C pz 10 0.337546 2 C pz + 15 0.297876 3 C pz 20 0.297876 4 C pz + 25 0.297256 5 C pz 30 0.297256 6 C pz + 39 0.173994 11 C pz 44 0.173994 12 C pz + 51 0.092477 15 C pz 56 0.092477 16 C pz + + Vector 29 Occ=2.000000D+00 E=-3.112002D-01 Symmetry=bu + MO Center= 6.9D-16, 1.8D-15, 5.9D-31, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.242668 15 C s 53 0.242668 16 C s - 22 0.232288 5 C s 27 0.232288 6 C s - 2 -0.206857 1 C s 7 -0.206857 2 C s - 14 -0.159664 3 C py 19 0.159664 4 C py - 36 -0.159669 11 C s 41 -0.159669 12 C s - - Vector 17 Occ=2.000000D+00 E=-5.590459D-01 Symmetry=ag - MO Center= 1.2D-16, -1.7D-15, 2.6D-33, r^2= 5.1D+00 + 45 0.258868 13 H s 46 -0.258868 14 H s + 4 0.242223 1 C py 9 0.242223 2 C py + 57 0.230826 17 H s 58 -0.230826 18 H s + 37 -0.217089 11 C px 42 -0.217089 12 C px + 59 -0.212824 19 H s 60 0.212824 20 H s + + Vector 30 Occ=2.000000D+00 E=-2.928468D-01 Symmetry=ag + MO Center= 3.9D-16, 6.7D-16, 7.0D-17, r^2= 6.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.326130 3 C s 17 0.326130 4 C s - 3 0.185811 1 C px 8 -0.185811 2 C px - 22 -0.172012 5 C s 27 -0.172012 6 C s - 24 0.170301 5 C py 29 -0.170301 6 C py - 31 0.169565 7 H s 32 0.169565 8 H s - - Vector 18 Occ=2.000000D+00 E=-5.316729D-01 Symmetry=bu - MO Center= 2.5D-15, 3.1D-14, 9.8D-23, r^2= 1.2D+01 + 14 -0.278500 3 C py 19 0.278500 4 C py + 4 0.269812 1 C py 9 -0.269812 2 C py + 38 0.249224 11 C py 43 -0.249224 12 C py + 33 -0.238310 9 H s 34 -0.238310 10 H s + 24 0.235403 5 C py 29 -0.235403 6 C py + + Vector 31 Occ=2.000000D+00 E=-2.874097D-01 Symmetry=ag + MO Center= -5.7D-16, -2.6D-16, 3.3D-18, r^2= 6.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.302634 11 C s 41 -0.302634 12 C s - 48 -0.249281 15 C s 53 0.249281 16 C s - 45 0.170552 13 H s 46 -0.170552 14 H s - 57 -0.160320 17 H s 58 0.160320 18 H s - 12 0.154491 3 C s 17 -0.154491 4 C s - - Vector 19 Occ=2.000000D+00 E=-5.101415D-01 Symmetry=ag - MO Center= -2.2D-15, -3.7D-14, 1.2D-32, r^2= 7.5D+00 + 3 0.298162 1 C px 8 -0.298162 2 C px + 23 0.281411 5 C px 28 -0.281411 6 C px + 31 -0.258905 7 H s 32 -0.258905 8 H s + 13 -0.224683 3 C px 18 0.224683 4 C px + 45 -0.181103 13 H s 46 -0.181103 14 H s + + Vector 32 Occ=2.000000D+00 E=-2.635305D-01 Symmetry=bg + MO Center= -6.7D-16, -5.6D-15, 1.4D-24, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.202113 5 C px 28 -0.202113 6 C px - 13 0.184022 3 C px 18 -0.184022 4 C px - 36 0.180730 11 C s 41 0.180730 12 C s - 33 0.169565 9 H s 34 0.169565 10 H s - 22 0.166812 5 C s 27 0.166812 6 C s + 39 -0.376563 11 C pz 44 0.376563 12 C pz + 5 0.348845 1 C pz 10 -0.348845 2 C pz + 51 -0.271493 15 C pz 56 0.271493 16 C pz + 25 -0.132821 5 C pz 30 0.132821 6 C pz + 15 0.130735 3 C pz 20 -0.130735 4 C pz + + Vector 33 Occ=2.000000D+00 E=-2.124650D-01 Symmetry=au + MO Center= -1.2D-14, -1.1D-16, -1.0D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.417910 15 C pz 56 0.417910 16 C pz + 39 0.413785 11 C pz 44 0.413785 12 C pz + 15 -0.179148 3 C pz 20 -0.179148 4 C pz + 25 -0.176693 5 C pz 30 -0.176693 6 C pz + + Vector 34 Occ=2.000000D+00 E=-1.950570D-01 Symmetry=bg + MO Center= 9.2D-15, -8.2D-16, 4.7D-19, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.463098 3 C pz 20 -0.463098 4 C pz + 25 0.458162 5 C pz 30 -0.458162 6 C pz + + Vector 35 Occ=2.000000D+00 E=-1.531105D-01 Symmetry=bg + MO Center= 1.2D-16, 5.2D-16, 2.5D-18, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.397304 15 C pz 56 -0.397304 16 C pz + 5 0.387657 1 C pz 10 -0.387657 2 C pz + 25 -0.228774 5 C pz 30 0.228774 6 C pz + 39 0.223581 11 C pz 44 -0.223581 12 C pz + 15 0.217057 3 C pz 20 -0.217057 4 C pz + + Vector 36 Occ=0.000000D+00 E= 3.744591D-02 Symmetry=au + MO Center= 3.6D-18, -2.4D-15, -9.0D-18, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.449819 15 C pz 56 -0.449819 16 C pz + 5 0.442563 1 C pz 10 0.442563 2 C pz + 25 -0.276484 5 C pz 30 -0.276484 6 C pz + 39 0.256322 11 C pz 44 0.256322 12 C pz + 15 -0.233100 3 C pz 20 -0.233100 4 C pz + + Vector 37 Occ=0.000000D+00 E= 9.032264D-02 Symmetry=au + MO Center= 3.7D-16, -3.3D-16, 7.2D-17, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.582541 3 C pz 20 0.582541 4 C pz + 25 -0.553553 5 C pz 30 -0.553553 6 C pz + 5 -0.031462 1 C pz 10 -0.031462 2 C pz + + Vector 38 Occ=0.000000D+00 E= 1.106422D-01 Symmetry=bg + MO Center= -7.6D-16, -9.5D-16, 7.0D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.522254 11 C pz 44 -0.522254 12 C pz + 51 -0.523209 15 C pz 56 0.523209 16 C pz + 15 0.240543 3 C pz 20 -0.240543 4 C pz + 25 -0.232014 5 C pz 30 0.232014 6 C pz + + Vector 39 Occ=0.000000D+00 E= 1.821888D-01 Symmetry=au + MO Center= -1.0D-17, 2.1D-15, 1.4D-17, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.529030 11 C pz 44 -0.529030 12 C pz + 5 0.497432 1 C pz 10 0.497432 2 C pz + 51 0.379541 15 C pz 56 0.379541 16 C pz + 25 -0.199861 5 C pz 30 -0.199861 6 C pz + 15 -0.166202 3 C pz 20 -0.166202 4 C pz + + Vector 40 Occ=0.000000D+00 E= 2.724733D-01 Symmetry=bg + MO Center= 5.1D-17, 2.1D-15, 6.5D-18, r^2= 3.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.543515 1 C pz 10 -0.543515 2 C pz + 25 0.467240 5 C pz 30 -0.467240 6 C pz + 15 -0.464141 3 C pz 20 0.464141 4 C pz + 39 0.287555 11 C pz 44 -0.287555 12 C pz + 51 -0.155949 15 C pz 56 0.155949 16 C pz + + Vector 41 Occ=0.000000D+00 E= 3.321416D-01 Symmetry=ag + MO Center= -7.8D-15, -7.3D-15, -3.3D-17, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 -0.423368 9 H s 34 -0.423368 10 H s + 31 -0.412811 7 H s 32 -0.412811 8 H s + 2 0.402435 1 C s 7 0.402435 2 C s + 59 -0.356499 19 H s 60 -0.356499 20 H s + 38 -0.338794 11 C py 43 0.338794 12 C py + + Vector 42 Occ=0.000000D+00 E= 3.406629D-01 Symmetry=bu + MO Center= 6.2D-15, 1.3D-14, -5.8D-19, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.433703 13 H s 46 -0.433703 14 H s + 13 0.355087 3 C px 18 0.355087 4 C px + 37 0.344884 11 C px 42 0.344884 12 C px + 57 -0.324471 17 H s 58 0.324471 18 H s + 31 -0.319196 7 H s 32 0.319196 8 H s + + Vector 43 Occ=0.000000D+00 E= 3.792966D-01 Symmetry=bu + MO Center= 1.1D-15, -4.2D-15, -2.6D-18, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.542699 11 C s 41 -0.542699 12 C s + 4 0.460617 1 C py 9 0.460617 2 C py + 33 0.411845 9 H s 34 -0.411845 10 H s + 59 0.346503 19 H s 60 -0.346503 20 H s + 2 0.335151 1 C s 7 -0.335151 2 C s + + Vector 44 Occ=0.000000D+00 E= 3.814198D-01 Symmetry=ag + MO Center= -1.4D-15, -1.9D-15, 1.5D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.575440 13 H s 46 0.575440 14 H s + 57 -0.395682 17 H s 58 -0.395682 18 H s + 12 0.392592 3 C s 17 0.392592 4 C s + 36 -0.381119 11 C s 41 -0.381119 12 C s + 37 0.333941 11 C px 42 -0.333941 12 C px + + Vector 45 Occ=0.000000D+00 E= 4.108891D-01 Symmetry=ag + MO Center= -3.7D-14, 8.1D-14, -3.5D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.650147 15 C s 53 0.650147 16 C s + 22 0.617631 5 C s 27 0.617631 6 C s + 57 -0.510377 17 H s 58 -0.510377 18 H s + 12 -0.452237 3 C s 17 -0.452237 4 C s + 59 -0.325242 19 H s 60 -0.325242 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.118577D-01 Symmetry=bu + MO Center= 2.7D-14, -9.4D-14, 9.4D-19, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.614459 5 C s 27 -0.614459 6 C s + 48 0.537728 15 C s 53 -0.537728 16 C s + 2 0.478074 1 C s 7 -0.478074 2 C s + 57 -0.446754 17 H s 58 0.446754 18 H s + 12 -0.443187 3 C s 17 0.443187 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.266367D-01 Symmetry=bu + MO Center= 5.1D-15, 1.3D-14, -5.8D-18, r^2= 9.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.599852 7 H s 32 -0.599852 8 H s + 36 -0.455330 11 C s 41 0.455330 12 C s + 45 0.441107 13 H s 46 -0.441107 14 H s + 12 -0.358256 3 C s 17 0.358256 4 C s + 59 0.337822 19 H s 60 -0.337822 20 H s + + Vector 48 Occ=0.000000D+00 E= 4.396171D-01 Symmetry=ag + MO Center= 7.7D-15, 4.8D-14, 2.9D-17, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.784414 1 C s 7 0.784414 2 C s + 36 -0.563593 11 C s 41 -0.563593 12 C s + 12 -0.492886 3 C s 17 -0.492886 4 C s + 22 -0.415694 5 C s 27 -0.415694 6 C s + 48 0.409543 15 C s 53 0.409543 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.528141D-01 Symmetry=bu + MO Center= -6.1D-16, -4.7D-14, -3.2D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.712558 15 C s 53 -0.712558 16 C s + 57 -0.526449 17 H s 58 0.526449 18 H s + 33 0.471697 9 H s 34 -0.471697 10 H s + 36 -0.429019 11 C s 41 0.429019 12 C s + 22 -0.407380 5 C s 27 0.407380 6 C s + + Vector 50 Occ=0.000000D+00 E= 4.781995D-01 Symmetry=ag + MO Center= -7.3D-16, 5.8D-17, 2.3D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.706978 3 C s 17 0.706978 4 C s + 22 -0.614992 5 C s 27 -0.614992 6 C s + 59 -0.477345 19 H s 60 -0.477345 20 H s + 48 0.416901 15 C s 53 0.416901 16 C s + 50 -0.383754 15 C py 55 0.383754 16 C py + + Vector 51 Occ=0.000000D+00 E= 5.262032D-01 Symmetry=ag + MO Center= 2.6D-16, 1.1D-15, 1.7D-17, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.601041 1 C py 9 -0.601041 2 C py + 36 -0.487768 11 C s 41 -0.487768 12 C s + 13 -0.460656 3 C px 18 0.460656 4 C px + 2 -0.449324 1 C s 7 -0.449324 2 C s + 49 -0.343007 15 C px 54 0.343007 16 C px + + Vector 52 Occ=0.000000D+00 E= 5.459739D-01 Symmetry=bu + MO Center= 6.0D-17, -1.6D-15, 1.6D-18, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.648583 3 C s 17 -0.648583 4 C s + 3 -0.562380 1 C px 8 -0.562380 2 C px + 50 0.483187 15 C py 55 0.483187 16 C py + 24 -0.475652 5 C py 29 -0.475652 6 C py + 59 0.357001 19 H s 60 -0.357001 20 H s + + Vector 53 Occ=0.000000D+00 E= 5.759724D-01 Symmetry=ag + MO Center= 4.2D-16, 1.8D-15, 3.6D-18, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.529201 3 C px 18 -0.529201 4 C px + 23 -0.530827 5 C px 28 0.530827 6 C px + 33 0.518642 9 H s 34 0.518642 10 H s + 31 -0.447725 7 H s 32 -0.447725 8 H s + 24 0.397308 5 C py 29 -0.397308 6 C py + + Vector 54 Occ=0.000000D+00 E= 5.991881D-01 Symmetry=bu + MO Center= -8.6D-16, -2.4D-15, -7.6D-19, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 0.721492 3 C py 19 0.721492 4 C py + 22 0.601436 5 C s 27 -0.601436 6 C s + 36 -0.417618 11 C s 41 0.417618 12 C s + 2 -0.396389 1 C s 7 0.396389 2 C s + 24 0.396664 5 C py 29 0.396664 6 C py + + Vector 55 Occ=0.000000D+00 E= 6.249986D-01 Symmetry=bu + MO Center= 1.4D-15, 1.8D-14, -6.1D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.612221 1 C s 7 -0.612221 2 C s + 49 -0.525822 15 C px 54 -0.525822 16 C px + 38 0.479161 11 C py 43 0.479161 12 C py + 23 -0.370630 5 C px 28 -0.370630 6 C px + 57 0.359980 17 H s 58 -0.359980 18 H s + + Vector 56 Occ=0.000000D+00 E= 6.396303D-01 Symmetry=ag + MO Center= -4.4D-16, -2.4D-14, -2.3D-17, r^2= 9.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.550815 11 C px 42 -0.550815 12 C px + 50 -0.534386 15 C py 55 0.534386 16 C py + 14 0.380436 3 C py 19 -0.380436 4 C py + 4 -0.365485 1 C py 9 0.365485 2 C py + 59 -0.332750 19 H s 60 -0.332750 20 H s + + Vector 57 Occ=0.000000D+00 E= 6.829101D-01 Symmetry=ag + MO Center= 9.2D-16, 2.6D-14, 7.8D-19, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.662508 11 C py 43 -0.662508 12 C py + 49 -0.579305 15 C px 54 0.579305 16 C px + 24 -0.448964 5 C py 29 0.448964 6 C py + 14 -0.395212 3 C py 19 0.395212 4 C py + 4 -0.382155 1 C py 9 0.382155 2 C py + + Vector 58 Occ=0.000000D+00 E= 7.173147D-01 Symmetry=bu + MO Center= -1.3D-15, -2.1D-14, 3.2D-20, r^2= 9.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.608682 11 C px 42 0.608682 12 C px + 50 -0.541200 15 C py 55 -0.541200 16 C py + 48 -0.536377 15 C s 53 0.536377 16 C s + 36 0.466142 11 C s 41 -0.466142 12 C s + 38 -0.463186 11 C py 43 -0.463186 12 C py + + Vector 59 Occ=0.000000D+00 E= 7.794681D-01 Symmetry=ag + MO Center= 2.5D-16, -3.3D-15, 1.0D-18, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.701614 1 C px 8 -0.701614 2 C px + 14 -0.535398 3 C py 19 0.535398 4 C py + 23 -0.436021 5 C px 28 0.436021 6 C px + 37 0.429242 11 C px 42 -0.429242 12 C px + 24 -0.413206 5 C py 29 0.413206 6 C py + + Vector 60 Occ=0.000000D+00 E= 7.944606D-01 Symmetry=bu + MO Center= -2.9D-16, 3.8D-15, -1.0D-20, r^2= 3.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.657608 1 C py 9 0.657608 2 C py + 13 -0.566199 3 C px 18 -0.566199 4 C px + 23 0.500829 5 C px 28 0.500829 6 C px + 22 -0.417833 5 C s 27 0.417833 6 C s + 24 -0.389608 5 C py 29 -0.389608 6 C py + - Vector 20 Occ=2.000000D+00 E=-4.574813D-01 Symmetry=ag - MO Center= 5.2D-17, 7.2D-15, -8.2D-33, r^2= 9.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 49 0.212837 15 C px 54 -0.212837 16 C px - 38 0.184633 11 C py 43 -0.184633 12 C py - 57 0.179017 17 H s 58 0.179017 18 H s - 45 -0.152762 13 H s 46 -0.152762 14 H s - 14 0.141086 3 C py 19 -0.141086 4 C py - - Vector 21 Occ=2.000000D+00 E=-4.393168D-01 Symmetry=bu - MO Center= -4.3D-15, -9.9D-14, 6.1D-21, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.219684 11 C px 42 0.219684 12 C px - 50 0.209892 15 C py 55 0.209892 16 C py - 14 0.184959 3 C py 19 0.184959 4 C py - 59 -0.177804 19 H s 60 0.177804 20 H s - 45 -0.155688 13 H s 46 0.155688 14 H s - - Vector 22 Occ=2.000000D+00 E=-4.107320D-01 Symmetry=bu - MO Center= 1.0D-14, 3.0D-14, 9.5D-22, r^2= 6.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.234437 1 C s 7 -0.234437 2 C s - 33 0.231023 9 H s 34 -0.231023 10 H s - 31 -0.225318 7 H s 32 0.225318 8 H s - 13 -0.220329 3 C px 18 -0.220329 4 C px - 24 -0.178894 5 C py 29 -0.178894 6 C py - - Vector 23 Occ=2.000000D+00 E=-3.978847D-01 Symmetry=bu - MO Center= -1.9D-14, 1.7D-13, 3.7D-22, r^2= 8.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 0.251212 5 C px 28 0.251212 6 C px - 49 0.250998 15 C px 54 0.250998 16 C px - 3 -0.219185 1 C px 8 -0.219185 2 C px - 57 0.215637 17 H s 58 -0.215637 18 H s - 38 0.181596 11 C py 43 0.181596 12 C py - - Vector 24 Occ=2.000000D+00 E=-3.961017D-01 Symmetry=ag - MO Center= 1.2D-15, -8.2D-14, -3.2D-17, r^2= 1.5D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 50 0.339018 15 C py 55 -0.339018 16 C py - 59 -0.262332 19 H s 60 -0.262332 20 H s - 37 0.251781 11 C px 42 -0.251781 12 C px - 45 -0.145378 13 H s 46 -0.145378 14 H s - 24 0.136219 5 C py 29 -0.136219 6 C py - - Vector 25 Occ=2.000000D+00 E=-3.740454D-01 Symmetry=bu - MO Center= 1.5D-14, -1.5D-14, 3.9D-22, r^2= 4.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 13 0.308501 3 C px 18 0.308501 4 C px - 31 0.253509 7 H s 32 -0.253509 8 H s - 24 -0.225058 5 C py 29 -0.225058 6 C py - 33 0.217406 9 H s 34 -0.217406 10 H s - 23 0.188486 5 C px 28 0.188486 6 C px - - Vector 26 Occ=2.000000D+00 E=-3.511833D-01 Symmetry=bu - MO Center= 1.5D-15, -5.6D-15, 6.3D-22, r^2= 8.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 50 -0.245816 15 C py 55 -0.245816 16 C py - 14 0.224363 3 C py 19 0.224363 4 C py - 37 -0.201040 11 C px 42 -0.201040 12 C px - 24 -0.193745 5 C py 29 -0.193745 6 C py - 38 0.187172 11 C py 43 0.187172 12 C py - - Vector 27 Occ=2.000000D+00 E=-3.472500D-01 Symmetry=ag - MO Center= -6.0D-15, 2.2D-15, -6.0D-32, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 49 0.295635 15 C px 54 -0.295635 16 C px - 57 0.268063 17 H s 58 0.268063 18 H s - 37 -0.208439 11 C px 42 0.208439 12 C px - 45 0.200131 13 H s 46 0.200131 14 H s - 31 -0.155860 7 H s 32 -0.155860 8 H s - - Vector 28 Occ=2.000000D+00 E=-3.245366D-01 Symmetry=au - MO Center= 2.6D-18, -3.1D-17, -1.4D-15, r^2= 3.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 5 0.337552 1 C pz 10 0.337552 2 C pz - 15 0.297930 3 C pz 20 0.297930 4 C pz - 25 0.297298 5 C pz 30 0.297298 6 C pz - 39 0.173852 11 C pz 44 0.173852 12 C pz - 51 0.092316 15 C pz 56 0.092316 16 C pz - - Vector 29 Occ=2.000000D+00 E=-3.112458D-01 Symmetry=bu - MO Center= -2.5D-16, -3.2D-15, 9.0D-24, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.259126 13 H s 46 -0.259126 14 H s - 4 0.242032 1 C py 9 0.242032 2 C py - 57 0.230769 17 H s 58 -0.230769 18 H s - 37 -0.217468 11 C px 42 -0.217468 12 C px - 59 -0.212554 19 H s 60 0.212554 20 H s - - Vector 30 Occ=2.000000D+00 E=-2.929002D-01 Symmetry=ag - MO Center= 9.1D-16, 3.4D-15, -8.9D-33, r^2= 6.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 14 -0.278621 3 C py 19 0.278621 4 C py - 4 0.270200 1 C py 9 -0.270200 2 C py - 38 0.249702 11 C py 43 -0.249702 12 C py - 33 -0.237614 9 H s 34 -0.237614 10 H s - 24 0.235789 5 C py 29 -0.235789 6 C py - - Vector 31 Occ=2.000000D+00 E=-2.874126D-01 Symmetry=ag - MO Center= 5.7D-16, 1.3D-15, -5.6D-34, r^2= 6.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 3 0.298748 1 C px 8 -0.298748 2 C px - 23 0.281764 5 C px 28 -0.281764 6 C px - 31 -0.258980 7 H s 32 -0.258980 8 H s - 13 -0.225265 3 C px 18 0.225265 4 C px - 45 -0.180823 13 H s 46 -0.180823 14 H s - - Vector 32 Occ=2.000000D+00 E=-2.635082D-01 Symmetry=bg - MO Center= -6.1D-16, -1.8D-14, -5.0D-18, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 -0.376467 11 C pz 44 0.376467 12 C pz - 5 0.349049 1 C pz 10 -0.349049 2 C pz - 51 -0.271296 15 C pz 56 0.271296 16 C pz - 25 -0.132899 5 C pz 30 0.132899 6 C pz - 15 0.130871 3 C pz 20 -0.130871 4 C pz - - Vector 33 Occ=2.000000D+00 E=-2.124106D-01 Symmetry=au - MO Center= 7.4D-16, 1.8D-14, 1.2D-16, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 0.417958 15 C pz 56 0.417958 16 C pz - 39 0.413866 11 C pz 44 0.413866 12 C pz - 15 -0.179049 3 C pz 20 -0.179049 4 C pz - 25 -0.176601 5 C pz 30 -0.176601 6 C pz - - Vector 34 Occ=2.000000D+00 E=-1.951027D-01 Symmetry=bg - MO Center= -5.4D-16, 4.2D-17, 1.6D-22, r^2= 2.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 15 0.463089 3 C pz 20 -0.463089 4 C pz - 25 0.458160 5 C pz 30 -0.458160 6 C pz - - Vector 35 Occ=2.000000D+00 E=-1.531035D-01 Symmetry=bg - MO Center= -7.1D-18, -1.1D-15, -1.9D-21, r^2= 8.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 0.397504 15 C pz 56 -0.397504 16 C pz - 5 0.387454 1 C pz 10 -0.387454 2 C pz - 25 -0.228709 5 C pz 30 0.228709 6 C pz - 39 0.223749 11 C pz 44 -0.223749 12 C pz - 15 0.216968 3 C pz 20 -0.216968 4 C pz - - Vector 36 Occ=0.000000D+00 E= 3.740004D-02 Symmetry=au - MO Center= -1.7D-16, 2.0D-15, -1.2D-16, r^2= 8.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 -0.449940 15 C pz 56 -0.449940 16 C pz - 5 0.442397 1 C pz 10 0.442397 2 C pz - 25 -0.276404 5 C pz 30 -0.276404 6 C pz - 39 0.256431 11 C pz 44 0.256431 12 C pz - 15 -0.233074 3 C pz 20 -0.233074 4 C pz - - Vector 37 Occ=0.000000D+00 E= 9.032798D-02 Symmetry=au - MO Center= -1.3D-17, 1.7D-16, 2.9D-19, r^2= 2.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 15 0.582537 3 C pz 20 0.582537 4 C pz - 25 -0.553598 5 C pz 30 -0.553598 6 C pz - 5 -0.031415 1 C pz 10 -0.031415 2 C pz - - Vector 38 Occ=0.000000D+00 E= 1.105755D-01 Symmetry=bg - MO Center= -1.7D-17, -5.5D-16, -6.7D-21, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 0.522278 11 C pz 44 -0.522278 12 C pz - 51 -0.523165 15 C pz 56 0.523165 16 C pz - 15 0.240480 3 C pz 20 -0.240480 4 C pz - 25 -0.231965 5 C pz 30 0.231965 6 C pz - - Vector 39 Occ=0.000000D+00 E= 1.821609D-01 Symmetry=au - MO Center= 4.7D-16, -3.4D-17, -2.5D-17, r^2= 7.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 -0.528932 11 C pz 44 -0.528932 12 C pz - 5 0.497606 1 C pz 10 0.497606 2 C pz - 51 0.379339 15 C pz 56 0.379339 16 C pz - 25 -0.199906 5 C pz 30 -0.199906 6 C pz - 15 -0.166322 3 C pz 20 -0.166322 4 C pz - - Vector 40 Occ=0.000000D+00 E= 2.725078D-01 Symmetry=bg - MO Center= 1.5D-17, 2.7D-16, -5.5D-22, r^2= 3.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 5 0.543560 1 C pz 10 -0.543560 2 C pz - 25 0.467299 5 C pz 30 -0.467299 6 C pz - 15 -0.464212 3 C pz 20 0.464212 4 C pz - 39 0.287453 11 C pz 44 -0.287453 12 C pz - 51 -0.155817 15 C pz 56 0.155817 16 C pz - - Vector 41 Occ=0.000000D+00 E= 3.321631D-01 Symmetry=ag - MO Center= -9.0D-16, 8.7D-15, -8.1D-18, r^2= 8.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 33 -0.423466 9 H s 34 -0.423466 10 H s - 31 -0.412762 7 H s 32 -0.412762 8 H s - 2 0.402947 1 C s 7 0.402947 2 C s - 59 -0.356387 19 H s 60 -0.356387 20 H s - 38 -0.338668 11 C py 43 0.338668 12 C py - - Vector 42 Occ=0.000000D+00 E= 3.407507D-01 Symmetry=bu - MO Center= -2.1D-15, 1.5D-15, 8.3D-20, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.433532 13 H s 46 -0.433532 14 H s - 13 0.355615 3 C px 18 0.355615 4 C px - 37 0.345055 11 C px 42 0.345055 12 C px - 57 -0.323645 17 H s 58 0.323645 18 H s - 31 -0.319968 7 H s 32 0.319968 8 H s - - Vector 43 Occ=0.000000D+00 E= 3.793545D-01 Symmetry=bu - MO Center= 1.1D-14, -1.0D-14, -2.3D-19, r^2= 7.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.542803 11 C s 41 -0.542803 12 C s - 4 0.460601 1 C py 9 0.460601 2 C py - 33 0.411564 9 H s 34 -0.411564 10 H s - 59 0.346892 19 H s 60 -0.346892 20 H s - 2 0.335604 1 C s 7 -0.335604 2 C s - - Vector 44 Occ=0.000000D+00 E= 3.816239D-01 Symmetry=ag - MO Center= -7.1D-15, -9.1D-16, 2.0D-17, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.576120 13 H s 46 0.576120 14 H s - 12 0.393057 3 C s 17 0.393057 4 C s - 57 -0.394958 17 H s 58 -0.394958 18 H s - 36 -0.381551 11 C s 41 -0.381551 12 C s - 37 0.334539 11 C px 42 -0.334539 12 C px - - Vector 45 Occ=0.000000D+00 E= 4.109624D-01 Symmetry=ag - MO Center= 3.5D-14, -6.5D-14, 7.9D-17, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.651064 15 C s 53 0.651064 16 C s - 22 0.617166 5 C s 27 0.617166 6 C s - 57 -0.511603 17 H s 58 -0.511603 18 H s - 12 -0.451966 3 C s 17 -0.451966 4 C s - 59 -0.325195 19 H s 60 -0.325195 20 H s - - Vector 46 Occ=0.000000D+00 E= 4.119558D-01 Symmetry=bu - MO Center= -3.5D-14, 9.7D-14, 3.0D-18, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 22 0.614074 5 C s 27 -0.614074 6 C s - 48 0.538910 15 C s 53 -0.538910 16 C s - 2 0.477328 1 C s 7 -0.477328 2 C s - 57 -0.447530 17 H s 58 0.447530 18 H s - 12 -0.442003 3 C s 17 0.442003 4 C s - - Vector 47 Occ=0.000000D+00 E= 4.267398D-01 Symmetry=bu - MO Center= -4.0D-15, -7.4D-15, 2.9D-19, r^2= 9.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 31 0.600408 7 H s 32 -0.600408 8 H s - 36 -0.455458 11 C s 41 0.455458 12 C s - 45 0.441221 13 H s 46 -0.441221 14 H s - 12 -0.359183 3 C s 17 0.359183 4 C s - 59 0.336773 19 H s 60 -0.336773 20 H s - - Vector 48 Occ=0.000000D+00 E= 4.397635D-01 Symmetry=ag - MO Center= 2.6D-15, 2.8D-15, 1.1D-17, r^2= 7.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.784683 1 C s 7 0.784683 2 C s - 36 -0.563755 11 C s 41 -0.563755 12 C s - 12 -0.492712 3 C s 17 -0.492712 4 C s - 22 -0.416701 5 C s 27 -0.416701 6 C s - 48 0.408664 15 C s 53 0.408664 16 C s - - Vector 49 Occ=0.000000D+00 E= 4.528658D-01 Symmetry=bu - MO Center= 8.9D-16, -2.3D-14, 7.2D-19, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.712100 15 C s 53 -0.712100 16 C s - 57 -0.526302 17 H s 58 0.526302 18 H s - 33 0.472006 9 H s 34 -0.472006 10 H s - 36 -0.428776 11 C s 41 0.428776 12 C s - 22 -0.408078 5 C s 27 0.408078 6 C s - - Vector 50 Occ=0.000000D+00 E= 4.781930D-01 Symmetry=ag - MO Center= -9.5D-16, -5.4D-15, 8.8D-18, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.707149 3 C s 17 0.707149 4 C s - 22 -0.615274 5 C s 27 -0.615274 6 C s - 59 -0.477401 19 H s 60 -0.477401 20 H s - 48 0.416564 15 C s 53 0.416564 16 C s - 50 -0.384084 15 C py 55 0.384084 16 C py - - Vector 51 Occ=0.000000D+00 E= 5.262549D-01 Symmetry=ag - MO Center= -1.4D-15, 2.7D-15, 3.1D-17, r^2= 6.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 4 0.601501 1 C py 9 -0.601501 2 C py - 36 -0.488062 11 C s 41 -0.488062 12 C s - 13 -0.460506 3 C px 18 0.460506 4 C px - 2 -0.449505 1 C s 7 -0.449505 2 C s - 49 -0.343130 15 C px 54 0.343130 16 C px - - Vector 52 Occ=0.000000D+00 E= 5.460159D-01 Symmetry=bu - MO Center= -5.0D-17, -5.9D-15, 4.5D-19, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.647713 3 C s 17 -0.647713 4 C s - 3 -0.561679 1 C px 8 -0.561679 2 C px - 50 0.483902 15 C py 55 0.483902 16 C py - 24 -0.475211 5 C py 29 -0.475211 6 C py - 59 0.357420 19 H s 60 -0.357420 20 H s - - Vector 53 Occ=0.000000D+00 E= 5.760086D-01 Symmetry=ag - MO Center= -2.1D-15, -1.0D-15, 9.1D-18, r^2= 5.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 13 0.528704 3 C px 18 -0.528704 4 C px - 23 -0.531153 5 C px 28 0.531153 6 C px - 33 0.518705 9 H s 34 0.518705 10 H s - 31 -0.447274 7 H s 32 -0.447274 8 H s - 24 0.395998 5 C py 29 -0.395998 6 C py - - Vector 54 Occ=0.000000D+00 E= 5.992037D-01 Symmetry=bu - MO Center= -2.2D-15, 8.5D-17, -9.9D-20, r^2= 4.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 14 0.721550 3 C py 19 0.721550 4 C py - 22 0.600464 5 C s 27 -0.600464 6 C s - 36 -0.417640 11 C s 41 0.417640 12 C s - 2 -0.397647 1 C s 7 0.397647 2 C s - 24 0.397526 5 C py 29 0.397526 6 C py - - Vector 55 Occ=0.000000D+00 E= 6.251108D-01 Symmetry=bu - MO Center= 9.9D-16, 2.1D-14, 8.1D-19, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.611677 1 C s 7 -0.611677 2 C s - 49 -0.526426 15 C px 54 -0.526426 16 C px - 38 0.479153 11 C py 43 0.479153 12 C py - 23 -0.370152 5 C px 28 -0.370152 6 C px - 57 0.360377 17 H s 58 -0.360377 18 H s - - Vector 56 Occ=0.000000D+00 E= 6.395427D-01 Symmetry=ag - MO Center= 2.3D-15, -1.2D-14, 3.6D-18, r^2= 9.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.551083 11 C px 42 -0.551083 12 C px - 50 -0.534337 15 C py 55 0.534337 16 C py - 14 0.381696 3 C py 19 -0.381696 4 C py - 4 -0.364012 1 C py 9 0.364012 2 C py - 59 -0.332591 19 H s 60 -0.332591 20 H s - - Vector 57 Occ=0.000000D+00 E= 6.829244D-01 Symmetry=ag - MO Center= 1.7D-15, 3.6D-15, 1.9D-18, r^2= 9.3D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 38 0.663484 11 C py 43 -0.663484 12 C py - 49 -0.579837 15 C px 54 0.579837 16 C px - 24 -0.448049 5 C py 29 0.448049 6 C py - 14 -0.393457 3 C py 19 0.393457 4 C py - 4 -0.383146 1 C py 9 0.383146 2 C py - - Vector 58 Occ=0.000000D+00 E= 7.170271D-01 Symmetry=bu - MO Center= -9.2D-16, -6.7D-15, -2.5D-20, r^2= 9.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.608003 11 C px 42 0.608003 12 C px - 50 -0.540558 15 C py 55 -0.540558 16 C py - 48 -0.535714 15 C s 53 0.535714 16 C s - 36 0.464727 11 C s 38 -0.463424 11 C py - 41 -0.464727 12 C s 43 -0.463424 12 C py - - Vector 59 Occ=0.000000D+00 E= 7.794334D-01 Symmetry=ag - MO Center= 8.3D-16, 2.8D-15, -4.2D-17, r^2= 5.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 3 0.702296 1 C px 8 -0.702296 2 C px - 14 -0.536465 3 C py 19 0.536465 4 C py - 23 -0.436180 5 C px 28 0.436180 6 C px - 37 0.428214 11 C px 42 -0.428214 12 C px - 24 -0.414247 5 C py 29 0.414247 6 C py - - Vector 60 Occ=0.000000D+00 E= 7.946081D-01 Symmetry=bu - MO Center= 5.1D-16, -2.9D-15, -6.1D-20, r^2= 3.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 4 0.657725 1 C py 9 0.657725 2 C py - 13 -0.566239 3 C px 18 -0.566239 4 C px - 23 0.500668 5 C px 28 0.500668 6 C px - 22 -0.418076 5 C s 27 0.418076 6 C s - 24 -0.389986 5 C py 29 -0.389986 6 C py - - - center of mass - -------------- - x = 0.00000000 y = 0.00000000 z = 0.00000000 + center of mass + -------------- + x = 0.00000000 y = 0.00000000 z = 0.00000000 moments of inertia (a.u.) ------------------ - 2635.475085331649 0.429282004814 0.000000000000 - 0.429282004814 390.021586877669 0.000000000000 - 0.000000000000 0.000000000000 3025.496672209317 - + 2635.125653668161 0.266339216563 0.000000000000 + 0.266339216563 390.116667172343 0.000000000000 + 0.000000000000 0.000000000000 3025.242320840506 + Multipole analysis of the density --------------------------------- - + L x y z total alpha beta nuclear - - - - ----- ----- ---- ------- 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 - - 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 - 1 0 1 0 0.000000 0.000000 0.000000 0.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 0.000000 + 1 0 1 0 -0.000000 -0.000000 -0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - - 2 2 0 0 -37.347012 -140.870066 -140.870066 244.393120 - 2 1 1 0 0.053664 2.951239 2.951239 -5.848814 + + 2 2 0 0 -37.343759 -140.900429 -140.900429 244.457098 + 2 1 1 0 0.052012 2.913285 2.913285 -5.774557 2 1 0 1 0.000000 0.000000 0.000000 0.000000 - 2 0 2 0 -37.701637 -768.356504 -768.356504 1499.011371 + 2 0 2 0 -37.702417 -768.250552 -768.250552 1498.798687 2 0 1 1 0.000000 0.000000 0.000000 0.000000 - 2 0 0 2 -43.586500 -21.793250 -21.793250 0.000000 + 2 0 0 2 -43.586768 -21.793384 -21.793384 0.000000 + + + Parallel integral file used 9 records with 0 large values Line search: - step= 1.00 grad=-4.1D-05 hess= 1.8D-05 energy= -382.308259 mode=downhill - new step= 1.14 predicted energy= -382.308260 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 + step= 1.00 grad=-4.2D-05 hess= 1.8D-05 energy= -382.308260 mode=downhill + new step= 1.15 predicted energy= -382.308261 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 -------- Step 1 -------- - - + + Geometry "geometry" -> "geometry" --------------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.23468109 1.41619835 0.00000000 - 2 C 6.0000 -0.23468109 -1.41619835 0.00000000 - 3 C 6.0000 1.31365139 0.48929998 0.00000000 - 4 C 6.0000 -1.31365139 -0.48929998 0.00000000 - 5 C 6.0000 1.08700371 -0.89433901 0.00000000 - 6 C 6.0000 -1.08700371 0.89433901 0.00000000 - 7 H 1.0000 2.34394121 0.87047348 0.00000000 - 8 H 1.0000 -2.34394121 -0.87047348 0.00000000 - 9 H 1.0000 1.94266409 -1.58204025 0.00000000 - 10 H 1.0000 -1.94266409 1.58204025 0.00000000 - 11 C 6.0000 -0.53323219 -2.88386812 0.00000000 - 12 C 6.0000 0.53323219 2.88386812 0.00000000 - 13 H 1.0000 -1.60554416 -3.13005067 0.00000000 - 14 H 1.0000 1.60554416 3.13005067 0.00000000 - 15 C 6.0000 0.36362775 -3.88553175 0.00000000 - 16 C 6.0000 -0.36362775 3.88553175 0.00000000 - 17 H 1.0000 1.44554740 -3.71046509 0.00000000 - 18 H 1.0000 -1.44554740 3.71046509 0.00000000 - 19 H 1.0000 0.04439315 -4.93393567 0.00000000 - 20 H 1.0000 -0.04439315 4.93393567 0.00000000 - + 1 C 6.0000 0.23489359 1.41633849 0.00000000 + 2 C 6.0000 -0.23489359 -1.41633849 0.00000000 + 3 C 6.0000 1.31378480 0.48913563 0.00000000 + 4 C 6.0000 -1.31378480 -0.48913563 0.00000000 + 5 C 6.0000 1.08693678 -0.89460429 0.00000000 + 6 C 6.0000 -1.08693678 0.89460429 0.00000000 + 7 H 1.0000 2.34436749 0.86975862 0.00000000 + 8 H 1.0000 -2.34436749 -0.86975862 0.00000000 + 9 H 1.0000 1.94305618 -1.58193329 0.00000000 + 10 H 1.0000 -1.94305618 1.58193329 0.00000000 + 11 C 6.0000 -0.53372272 -2.88402375 0.00000000 + 12 C 6.0000 0.53372272 2.88402375 0.00000000 + 13 H 1.0000 -1.60616081 -3.13004802 0.00000000 + 14 H 1.0000 1.60616081 3.13004802 0.00000000 + 15 C 6.0000 0.36346121 -3.88492103 0.00000000 + 16 C 6.0000 -0.36346121 3.88492103 0.00000000 + 17 H 1.0000 1.44545793 -3.70934854 0.00000000 + 18 H 1.0000 -1.44545793 3.70934854 0.00000000 + 19 H 1.0000 0.04530877 -4.93375333 0.00000000 + 20 H 1.0000 -0.04530877 4.93375333 0.00000000 + Atomic Mass ----------- - + C 12.000000 H 1.007825 + - - Effective nuclear repulsion energy (a.u.) 445.8764836571 + Effective nuclear repulsion energy (a.u.) 445.8743954986 Nuclear Dipole moment (a.u.) ---------------------------- X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - - + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + Summary of "ao basis" -> "ao basis" (cartesian) @@ -2367,14 +2393,14 @@ Divinylbenzene in STO-3G basis set Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 - + Caching 1-el integrals - + General Information ------------------- SCF calculation type: DFT @@ -2392,7 +2418,7 @@ Divinylbenzene in STO-3G basis set Convergence on energy requested: 1.00D-06 Convergence on density requested: 1.00D-05 Convergence on gradient requested: 5.00D-04 - + XC Information -------------- B3LYP Method XC Potential @@ -2401,7 +2427,7 @@ Divinylbenzene in STO-3G basis set Becke 1988 Exchange Functional 0.720 non-local Lee-Yang-Parr Correlation Functional 0.810 VWN I RPA Correlation Functional 0.190 local - + Grid Information ---------------- Grid used for XC integration: medium @@ -2414,7 +2440,7 @@ Divinylbenzene in STO-3G basis set Grid pruning is: on Number of quadrature shells: 470 Spatial weights used: Erf1 - + Convergence Information ----------------------- Convergence aids based upon iterative change in @@ -2429,7 +2455,7 @@ Divinylbenzene in STO-3G basis set dE on: start ASAP start dE off: 2 iters 30 iters 30 iters - + Screening Tolerance Information ------------------------------- Density screening/tol_rho: 1.00D-10 @@ -2443,16 +2469,16 @@ Divinylbenzene in STO-3G basis set Divinylbenzene in STO-3G basis set - + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -2462,622 +2488,634 @@ Divinylbenzene in STO-3G basis set 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag + + Time after variat. SCF: 4.3 + Time prior to 1st pass: 4.3 + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507877 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.470D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 - Time after variat. SCF: 8.7 - Time prior to 1st pass: 8.8 Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 - Max. records in memory = 75 Max. recs in file = ********* + Max. records in memory = 20 Max. recs in file = 2708460 Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 5.89 5890482 + Heap Space remaining (MW): 12.46 12464624 Stack Space remaining (MW): 13.11 13106284 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.3082595282 -8.28D+02 2.31D-05 7.98D-07 9.5 - d= 0,ls=0.0,diis 2 -382.3082597353 -2.07D-07 4.54D-06 1.28D-08 10.1 - + d= 0,ls=0.0,diis 1 -382.3082604202 -8.28D+02 2.39D-05 8.29D-07 4.9 + d= 0,ls=0.0,diis 2 -382.3082606373 -2.17D-07 4.90D-06 1.48D-08 5.1 - Total DFT energy = -382.308259735266 - One electron energy = -1400.520352004813 - Coulomb energy = 630.179357577184 - Exchange-Corr. energy = -57.843748964754 - Nuclear repulsion energy = 445.876483657118 - Numeric. integr. density = 69.999955496331 + Total DFT energy = -382.308260637286 + One electron energy = -1400.517459249630 + Coulomb energy = 630.178288890574 + Exchange-Corr. energy = -57.843485776814 + Nuclear repulsion energy = 445.874395498584 - Total iterative time = 1.4s + Numeric. integr. density = 69.999955439014 + Total iterative time = 0.7s + Occupations of the irreducible representations ---------------------------------------------- - + irrep alpha beta -------- -------- -------- ag 15.0 15.0 au 2.0 2.0 bg 3.0 3.0 bu 15.0 15.0 - - + + DFT Final Molecular Orbital Analysis ------------------------------------ - - Vector 1 Occ=2.000000D+00 E=-1.002023D+01 Symmetry=bu - MO Center= -1.5D-11, -9.3D-11, -2.3D-33, r^2= 2.1D+00 + + Vector 1 Occ=2.000000D+00 E=-1.002021D+01 Symmetry=bu + MO Center= 9.6D-12, 5.8D-11, -1.1D-32, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 1 0.699297 1 C s 6 -0.699297 2 C s - 2 0.031568 1 C s 7 -0.031568 2 C s - 35 0.027340 11 C s 40 -0.027340 12 C s - - Vector 2 Occ=2.000000D+00 E=-1.002018D+01 Symmetry=ag - MO Center= 1.5D-11, 9.3D-11, 1.8D-23, r^2= 2.1D+00 + 1 0.699294 1 C s 6 -0.699294 2 C s + 2 0.031565 1 C s 7 -0.031565 2 C s + 35 0.027425 11 C s 40 -0.027425 12 C s + + Vector 2 Occ=2.000000D+00 E=-1.002016D+01 Symmetry=ag + MO Center= -9.6D-12, -5.8D-11, 3.4D-24, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 1 0.699295 1 C s 6 0.699295 2 C s - 2 0.031361 1 C s 7 0.031361 2 C s - 35 -0.027703 11 C s 40 -0.027703 12 C s - - Vector 3 Occ=2.000000D+00 E=-1.000809D+01 Symmetry=bu - MO Center= 2.7D-10, 1.4D-09, 1.1D-33, r^2= 8.6D+00 + 1 0.699292 1 C s 6 0.699292 2 C s + 2 0.031358 1 C s 7 0.031358 2 C s + 35 -0.027788 11 C s 40 -0.027788 12 C s + + Vector 3 Occ=2.000000D+00 E=-1.000811D+01 Symmetry=bu + MO Center= -6.3D-10, -3.4D-09, 1.1D-28, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.699821 11 C s 40 -0.699821 12 C s - 36 0.030783 11 C s 41 -0.030783 12 C s - 1 -0.027924 1 C s 6 0.027924 2 C s - - Vector 4 Occ=2.000000D+00 E=-1.000809D+01 Symmetry=ag - MO Center= -2.7D-10, -1.4D-09, 7.8D-18, r^2= 8.6D+00 + 35 0.699824 11 C s 40 -0.699824 12 C s + 36 0.030785 11 C s 41 -0.030785 12 C s + 1 -0.028024 1 C s 6 0.028024 2 C s + + Vector 4 Occ=2.000000D+00 E=-1.000811D+01 Symmetry=ag + MO Center= 6.3D-10, 3.4D-09, 3.6D-19, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.699738 11 C s 40 0.699738 12 C s - 36 0.030764 11 C s 41 0.030764 12 C s - 1 0.028131 1 C s 6 0.028131 2 C s - - Vector 5 Occ=2.000000D+00 E=-1.000682D+01 Symmetry=bu - MO Center= 3.5D-10, -1.7D-10, 2.1D-29, r^2= 2.0D+00 + 35 0.699742 11 C s 40 0.699742 12 C s + 36 0.030767 11 C s 41 0.030767 12 C s + 1 0.028230 1 C s 6 0.028230 2 C s + + Vector 5 Occ=2.000000D+00 E=-1.000680D+01 Symmetry=bu + MO Center= 1.3D-14, 2.8D-14, -7.6D-32, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.612802 5 C s 26 -0.612802 6 C s - 11 -0.337257 3 C s 16 0.337257 4 C s - 22 0.030352 5 C s 27 -0.030352 6 C s - 1 -0.027561 1 C s 6 0.027561 2 C s - - Vector 6 Occ=2.000000D+00 E=-1.000682D+01 Symmetry=ag - MO Center= -3.5D-10, 1.7D-10, 4.0D-33, r^2= 2.0D+00 + 21 0.614348 5 C s 26 -0.614348 6 C s + 11 -0.334453 3 C s 16 0.334453 4 C s + 22 0.030389 5 C s 27 -0.030389 6 C s + 1 -0.027508 1 C s 6 0.027508 2 C s + + Vector 6 Occ=2.000000D+00 E=-1.000679D+01 Symmetry=ag + MO Center= 1.2D-12, 4.7D-12, -6.3D-19, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.597656 5 C s 26 0.597656 6 C s - 11 -0.364430 3 C s 16 -0.364430 4 C s - 22 0.029728 5 C s 27 0.029728 6 C s - - Vector 7 Occ=2.000000D+00 E=-1.000608D+01 Symmetry=bu - MO Center= 7.4D-11, 8.4D-12, 1.9D-29, r^2= 2.0D+00 + 21 0.599158 5 C s 26 0.599158 6 C s + 11 -0.361958 3 C s 16 -0.361958 4 C s + 22 0.029767 5 C s 27 0.029767 6 C s + + Vector 7 Occ=2.000000D+00 E=-1.000606D+01 Symmetry=bu + MO Center= 6.4D-12, -3.9D-12, -6.8D-30, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.613559 3 C s 16 -0.613559 4 C s - 21 0.338624 5 C s 26 -0.338624 6 C s - - Vector 8 Occ=2.000000D+00 E=-1.000595D+01 Symmetry=ag - MO Center= -7.4D-11, -4.7D-12, -6.0D-17, r^2= 2.0D+00 + 11 0.615096 3 C s 16 -0.615096 4 C s + 21 0.335817 5 C s 26 -0.335817 6 C s + + Vector 8 Occ=2.000000D+00 E=-1.000592D+01 Symmetry=ag + MO Center= -7.6D-12, -9.0D-13, 6.2D-18, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.597813 3 C s 16 0.597813 4 C s - 21 0.364704 5 C s 26 0.364704 6 C s - 1 0.028411 1 C s 6 0.028411 2 C s - - Vector 9 Occ=2.000000D+00 E=-9.992356D+00 Symmetry=bu - MO Center= -6.4D-16, 9.0D-16, -2.1D-32, r^2= 1.5D+01 + 11 0.599319 3 C s 16 0.599319 4 C s + 21 0.362238 5 C s 26 0.362238 6 C s + 1 0.028357 1 C s 6 0.028357 2 C s + + Vector 9 Occ=2.000000D+00 E=-9.992370D+00 Symmetry=bu + MO Center= -6.1D-16, 9.8D-17, -1.7D-31, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700478 15 C s 52 -0.700478 16 C s - 48 0.030860 15 C s 53 -0.030860 16 C s - - Vector 10 Occ=2.000000D+00 E=-9.992356D+00 Symmetry=ag - MO Center= 2.5D-15, -4.9D-15, 8.5D-33, r^2= 1.5D+01 + 48 0.030863 15 C s 53 -0.030863 16 C s + + Vector 10 Occ=2.000000D+00 E=-9.992370D+00 Symmetry=ag + MO Center= 7.8D-16, -7.2D-16, -1.8D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700478 15 C s 52 0.700478 16 C s - 48 0.030860 15 C s 53 0.030860 16 C s - - Vector 11 Occ=2.000000D+00 E=-8.095545D-01 Symmetry=ag - MO Center= -4.9D-15, -1.6D-14, 9.2D-17, r^2= 3.0D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.274617 1 C s 7 0.274617 2 C s - 12 0.247047 3 C s 17 0.247047 4 C s - 22 0.246815 5 C s 27 0.246815 6 C s - 36 0.127582 11 C s 41 0.127582 12 C s - 1 -0.107836 1 C s 6 -0.107836 2 C s - - Vector 12 Occ=2.000000D+00 E=-7.539475D-01 Symmetry=bu - MO Center= 1.8D-15, 1.6D-14, 1.7D-33, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 -0.297191 11 C s 41 0.297191 12 C s - 2 0.274001 1 C s 7 -0.274001 2 C s - 48 -0.209126 15 C s 53 0.209126 16 C s - 35 0.113810 11 C s 40 -0.113810 12 C s - 22 -0.112947 5 C s 27 0.112947 6 C s - - Vector 13 Occ=2.000000D+00 E=-7.179410D-01 Symmetry=ag - MO Center= -2.5D-14, -4.2D-14, 1.0D-15, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.315023 11 C s 41 0.315023 12 C s - 48 0.309772 15 C s 53 0.309772 16 C s - 12 -0.121012 3 C s 17 -0.121012 4 C s - 35 -0.119312 11 C s 40 -0.119312 12 C s - 47 -0.117450 15 C s 52 -0.117450 16 C s - - Vector 14 Occ=2.000000D+00 E=-6.997956D-01 Symmetry=bu - MO Center= 2.8D-14, 1.4D-14, 1.9D-25, r^2= 3.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.356615 3 C s 17 -0.356615 4 C s - 22 0.324869 5 C s 27 -0.324869 6 C s - 11 -0.132144 3 C s 16 0.132144 4 C s - 3 0.124966 1 C px 8 0.124966 2 C px - 21 -0.120443 5 C s 26 0.120443 6 C s - - Vector 15 Occ=2.000000D+00 E=-6.675782D-01 Symmetry=bu - MO Center= -5.0D-16, 3.5D-14, 2.2D-25, r^2= 9.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.299842 15 C s 53 -0.299842 16 C s - 2 0.273924 1 C s 7 -0.273924 2 C s - 22 -0.200332 5 C s 27 0.200332 6 C s - 36 0.136967 11 C s 41 -0.136967 12 C s - 38 -0.129039 11 C py 43 -0.129039 12 C py - - Vector 16 Occ=2.000000D+00 E=-5.886861D-01 Symmetry=ag - MO Center= -1.1D-15, -4.8D-15, -7.8D-17, r^2= 8.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.242838 15 C s 53 0.242838 16 C s - 22 0.232068 5 C s 27 0.232068 6 C s - 2 -0.206924 1 C s 7 -0.206924 2 C s - 14 -0.159612 3 C py 19 0.159612 4 C py - 36 -0.159699 11 C s 41 -0.159699 12 C s - - Vector 17 Occ=2.000000D+00 E=-5.590261D-01 Symmetry=ag - MO Center= -2.2D-15, -1.8D-14, -7.7D-17, r^2= 5.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.326142 3 C s 17 0.326142 4 C s - 3 0.185942 1 C px 8 -0.185942 2 C px - 22 -0.172196 5 C s 27 -0.172196 6 C s - 24 0.170280 5 C py 29 -0.170280 6 C py - 31 0.169612 7 H s 32 0.169612 8 H s - - Vector 18 Occ=2.000000D+00 E=-5.317061D-01 Symmetry=bu - MO Center= 4.2D-15, 4.6D-15, -2.7D-25, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.302625 11 C s 41 -0.302625 12 C s - 48 -0.249284 15 C s 53 0.249284 16 C s - 45 0.170555 13 H s 46 -0.170555 14 H s - 57 -0.160282 17 H s 58 0.160282 18 H s - 12 0.154494 3 C s 17 -0.154494 4 C s - - Vector 19 Occ=2.000000D+00 E=-5.101668D-01 Symmetry=ag - MO Center= -3.4D-16, -2.1D-15, -6.8D-33, r^2= 7.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 0.202145 5 C px 28 -0.202145 6 C px - 13 0.183957 3 C px 18 -0.183957 4 C px - 36 0.180728 11 C s 41 0.180728 12 C s - 33 0.169605 9 H s 34 0.169605 10 H s - 22 0.166918 5 C s 27 0.166918 6 C s - - Vector 20 Occ=2.000000D+00 E=-4.574623D-01 Symmetry=ag - MO Center= 1.4D-14, -2.4D-14, -1.3D-16, r^2= 9.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 49 0.212866 15 C px 54 -0.212866 16 C px - 38 0.184633 11 C py 43 -0.184633 12 C py - 57 0.179013 17 H s 58 0.179013 18 H s - 45 -0.152701 13 H s 46 -0.152701 14 H s - 14 0.141044 3 C py 19 -0.141044 4 C py - - Vector 21 Occ=2.000000D+00 E=-4.393303D-01 Symmetry=bu - MO Center= 1.3D-15, 4.0D-14, 9.4D-24, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.219743 11 C px 42 0.219743 12 C px - 50 0.209860 15 C py 55 0.209860 16 C py - 14 0.184948 3 C py 19 0.184948 4 C py - 59 -0.177779 19 H s 60 0.177779 20 H s - 45 -0.155710 13 H s 46 0.155710 14 H s - - Vector 22 Occ=2.000000D+00 E=-4.106897D-01 Symmetry=bu - MO Center= 7.8D-15, 2.9D-14, -1.5D-22, r^2= 6.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.234321 1 C s 7 -0.234321 2 C s - 33 0.231107 9 H s 34 -0.231107 10 H s - 31 -0.225131 7 H s 32 0.225131 8 H s - 13 -0.220051 3 C px 18 -0.220051 4 C px - 24 -0.179013 5 C py 29 -0.179013 6 C py - - Vector 23 Occ=2.000000D+00 E=-3.979090D-01 Symmetry=bu - MO Center= -2.4D-16, 1.1D-14, 1.0D-22, r^2= 8.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 0.251202 5 C px 28 0.251202 6 C px - 49 0.251073 15 C px 54 0.251073 16 C px - 3 -0.218958 1 C px 8 -0.218958 2 C px - 57 0.215673 17 H s 58 -0.215673 18 H s - 38 0.181595 11 C py 43 0.181595 12 C py - - Vector 24 Occ=2.000000D+00 E=-3.961254D-01 Symmetry=ag - MO Center= -1.0D-14, -4.0D-14, -2.2D-30, r^2= 1.5D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 50 0.339029 15 C py 55 -0.339029 16 C py - 59 -0.262303 19 H s 60 -0.262303 20 H s - 37 0.251804 11 C px 42 -0.251804 12 C px - 45 -0.145410 13 H s 46 -0.145410 14 H s - 24 0.136153 5 C py 29 -0.136153 6 C py - - Vector 25 Occ=2.000000D+00 E=-3.739878D-01 Symmetry=bu - MO Center= -1.1D-14, -7.9D-15, -5.1D-32, r^2= 4.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 13 0.308624 3 C px 18 0.308624 4 C px - 31 0.253684 7 H s 32 -0.253684 8 H s - 24 -0.224918 5 C py 29 -0.224918 6 C py - 33 0.217299 9 H s 34 -0.217299 10 H s - 23 0.188544 5 C px 28 0.188544 6 C px - - Vector 26 Occ=2.000000D+00 E=-3.512134D-01 Symmetry=bu - MO Center= 1.5D-16, -1.1D-16, 9.0D-33, r^2= 8.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 50 -0.245825 15 C py 55 -0.245825 16 C py - 14 0.224368 3 C py 19 0.224368 4 C py - 37 -0.200937 11 C px 42 -0.200937 12 C px - 24 -0.193813 5 C py 29 -0.193813 6 C py - 38 0.187094 11 C py 43 0.187094 12 C py - - Vector 27 Occ=2.000000D+00 E=-3.472827D-01 Symmetry=ag - MO Center= -5.8D-16, 3.9D-15, -1.2D-31, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 49 0.295690 15 C px 54 -0.295690 16 C px - 57 0.268063 17 H s 58 0.268063 18 H s - 37 -0.208403 11 C px 42 0.208403 12 C px - 45 0.200143 13 H s 46 0.200143 14 H s - 31 -0.155772 7 H s 32 -0.155772 8 H s - - Vector 28 Occ=2.000000D+00 E=-3.245389D-01 Symmetry=au - MO Center= 1.6D-15, 1.0D-14, 4.6D-16, r^2= 3.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 5 0.337540 1 C pz 10 0.337540 2 C pz - 15 0.297925 3 C pz 20 0.297925 4 C pz - 25 0.297318 5 C pz 30 0.297318 6 C pz - 39 0.173838 11 C pz 44 0.173838 12 C pz - 51 0.092304 15 C pz 56 0.092304 16 C pz - - Vector 29 Occ=2.000000D+00 E=-3.112676D-01 Symmetry=bu - MO Center= 3.6D-16, 8.0D-16, 8.1D-25, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.259140 13 H s 46 -0.259140 14 H s - 4 0.242053 1 C py 9 0.242053 2 C py - 57 0.230714 17 H s 58 -0.230714 18 H s - 37 -0.217508 11 C px 42 -0.217508 12 C px - 59 -0.212568 19 H s 60 0.212568 20 H s - - Vector 30 Occ=2.000000D+00 E=-2.928830D-01 Symmetry=ag - MO Center= -3.1D-16, -5.5D-16, -4.4D-16, r^2= 6.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 14 -0.278676 3 C py 19 0.278676 4 C py - 4 0.270439 1 C py 9 -0.270439 2 C py - 38 0.249907 11 C py 43 -0.249907 12 C py - 33 -0.237229 9 H s 34 -0.237229 10 H s - 24 0.235968 5 C py 29 -0.235968 6 C py - - Vector 31 Occ=2.000000D+00 E=-2.873949D-01 Symmetry=ag - MO Center= -5.4D-16, 2.3D-16, -1.8D-17, r^2= 6.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 3 0.299134 1 C px 8 -0.299134 2 C px - 23 0.281917 5 C px 28 -0.281917 6 C px - 31 -0.259102 7 H s 32 -0.259102 8 H s - 13 -0.225689 3 C px 18 0.225689 4 C px - 45 -0.180553 13 H s 46 -0.180553 14 H s - - Vector 32 Occ=2.000000D+00 E=-2.635095D-01 Symmetry=bg - MO Center= -4.9D-16, 6.8D-15, -5.2D-18, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 -0.376465 11 C pz 44 0.376465 12 C pz - 5 0.349047 1 C pz 10 -0.349047 2 C pz - 51 -0.271304 15 C pz 56 0.271304 16 C pz - 25 -0.133004 5 C pz 30 0.133004 6 C pz - 15 0.130758 3 C pz 20 -0.130758 4 C pz - - Vector 33 Occ=2.000000D+00 E=-2.124193D-01 Symmetry=au - MO Center= 2.5D-15, -2.0D-14, -9.4D-16, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 0.417973 15 C pz 56 0.417973 16 C pz - 39 0.413863 11 C pz 44 0.413863 12 C pz - 15 -0.179026 3 C pz 20 -0.179026 4 C pz - 25 -0.176594 5 C pz 30 -0.176594 6 C pz - - Vector 34 Occ=2.000000D+00 E=-1.950883D-01 Symmetry=bg - MO Center= -4.2D-15, 4.2D-16, 1.3D-22, r^2= 2.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 15 0.463013 3 C pz 20 -0.463013 4 C pz - 25 0.458245 5 C pz 30 -0.458245 6 C pz - - Vector 35 Occ=2.000000D+00 E=-1.531153D-01 Symmetry=bg - MO Center= 1.3D-16, 3.7D-15, -1.7D-21, r^2= 8.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 0.397525 15 C pz 56 -0.397525 16 C pz - 5 0.387449 1 C pz 10 -0.387449 2 C pz - 25 -0.228430 5 C pz 30 0.228430 6 C pz - 39 0.223731 11 C pz 44 -0.223731 12 C pz - 15 0.217235 3 C pz 20 -0.217235 4 C pz - - Vector 36 Occ=0.000000D+00 E= 3.738778D-02 Symmetry=au - MO Center= 2.4D-16, -2.0D-16, 1.6D-16, r^2= 8.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 -0.449986 15 C pz 56 -0.449986 16 C pz - 5 0.442348 1 C pz 10 0.442348 2 C pz - 25 -0.276241 5 C pz 30 -0.276241 6 C pz - 39 0.256498 11 C pz 44 0.256498 12 C pz - 15 -0.233182 3 C pz 20 -0.233182 4 C pz - - Vector 37 Occ=0.000000D+00 E= 9.036270D-02 Symmetry=au - MO Center= -2.7D-15, 3.9D-16, -1.4D-18, r^2= 2.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 15 0.582515 3 C pz 20 0.582515 4 C pz - 25 -0.553647 5 C pz 30 -0.553647 6 C pz - 5 -0.031345 1 C pz 10 -0.031345 2 C pz - - Vector 38 Occ=0.000000D+00 E= 1.105562D-01 Symmetry=bg - MO Center= 2.2D-15, -9.5D-16, 4.4D-22, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 0.522305 11 C pz 44 -0.522305 12 C pz - 51 -0.523161 15 C pz 56 0.523161 16 C pz - 15 0.240452 3 C pz 20 -0.240452 4 C pz - 25 -0.231927 5 C pz 30 0.231927 6 C pz - - Vector 39 Occ=0.000000D+00 E= 1.821615D-01 Symmetry=au - MO Center= 3.2D-16, 1.6D-15, 1.2D-16, r^2= 7.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 -0.528903 11 C pz 44 -0.528903 12 C pz - 5 0.497672 1 C pz 10 0.497672 2 C pz - 51 0.379271 15 C pz 56 0.379271 16 C pz - 25 -0.200009 5 C pz 30 -0.200009 6 C pz - 15 -0.166269 3 C pz 20 -0.166269 4 C pz - - Vector 40 Occ=0.000000D+00 E= 2.725437D-01 Symmetry=bg - MO Center= 5.6D-16, -9.3D-16, -1.2D-22, r^2= 3.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 5 0.543574 1 C pz 10 -0.543574 2 C pz - 25 0.467356 5 C pz 30 -0.467356 6 C pz - 15 -0.464215 3 C pz 20 0.464215 4 C pz - 39 0.287415 11 C pz 44 -0.287415 12 C pz - 51 -0.155765 15 C pz 56 0.155765 16 C pz - - Vector 41 Occ=0.000000D+00 E= 3.321223D-01 Symmetry=ag - MO Center= -7.4D-15, -1.1D-14, -3.0D-17, r^2= 8.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 33 -0.423426 9 H s 34 -0.423426 10 H s - 31 -0.412616 7 H s 32 -0.412616 8 H s - 2 0.403112 1 C s 7 0.403112 2 C s - 59 -0.356113 19 H s 60 -0.356113 20 H s - 38 -0.338726 11 C py 43 0.338726 12 C py - - Vector 42 Occ=0.000000D+00 E= 3.407681D-01 Symmetry=bu - MO Center= 7.6D-15, 1.3D-14, -1.6D-19, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.433483 13 H s 46 -0.433483 14 H s - 13 0.355628 3 C px 18 0.355628 4 C px - 37 0.345113 11 C px 42 0.345113 12 C px - 57 -0.323741 17 H s 58 0.323741 18 H s - 31 -0.319691 7 H s 32 0.319691 8 H s - - Vector 43 Occ=0.000000D+00 E= 3.793366D-01 Symmetry=bu - MO Center= -2.4D-15, -3.9D-15, -3.8D-19, r^2= 7.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.542275 11 C s 41 -0.542275 12 C s - 4 0.460444 1 C py 9 0.460444 2 C py - 33 0.412439 9 H s 34 -0.412439 10 H s - 59 0.346299 19 H s 60 -0.346299 20 H s - 2 0.335155 1 C s 7 -0.335155 2 C s - - Vector 44 Occ=0.000000D+00 E= 3.816718D-01 Symmetry=ag - MO Center= 4.7D-15, 1.5D-15, -1.1D-17, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.575597 13 H s 46 0.575597 14 H s - 57 -0.395498 17 H s 58 -0.395498 18 H s - 12 0.392939 3 C s 17 0.392939 4 C s - 36 -0.381435 11 C s 41 -0.381435 12 C s - 37 0.333978 11 C px 42 -0.333978 12 C px - - Vector 45 Occ=0.000000D+00 E= 4.110476D-01 Symmetry=ag - MO Center= 3.3D-14, -1.0D-13, -1.0D-16, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.651637 15 C s 53 0.651637 16 C s - 22 0.616623 5 C s 27 0.616623 6 C s - 57 -0.511384 17 H s 58 -0.511384 18 H s - 12 -0.453202 3 C s 17 -0.453202 4 C s - 59 -0.325876 19 H s 60 -0.325876 20 H s - - Vector 46 Occ=0.000000D+00 E= 4.120554D-01 Symmetry=bu - MO Center= -3.6D-14, 1.0D-13, 1.3D-18, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 22 0.614140 5 C s 27 -0.614140 6 C s - 48 0.538850 15 C s 53 -0.538850 16 C s - 2 0.477452 1 C s 7 -0.477452 2 C s - 57 -0.447551 17 H s 58 0.447551 18 H s - 12 -0.442137 3 C s 17 0.442137 4 C s - - Vector 47 Occ=0.000000D+00 E= 4.268729D-01 Symmetry=bu - MO Center= -4.3D-15, 1.0D-15, 1.5D-18, r^2= 9.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 31 0.600026 7 H s 32 -0.600026 8 H s - 36 -0.456709 11 C s 41 0.456709 12 C s - 45 0.441780 13 H s 46 -0.441780 14 H s - 12 -0.357845 3 C s 17 0.357845 4 C s - 59 0.336587 19 H s 60 -0.336587 20 H s - - Vector 48 Occ=0.000000D+00 E= 4.398241D-01 Symmetry=ag - MO Center= 5.0D-15, -1.7D-14, -8.8D-17, r^2= 7.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.785035 1 C s 7 0.785035 2 C s - 36 -0.564729 11 C s 41 -0.564729 12 C s - 12 -0.491591 3 C s 17 -0.491591 4 C s - 22 -0.417565 5 C s 27 -0.417565 6 C s - 48 0.408422 15 C s 53 0.408422 16 C s - - Vector 49 Occ=0.000000D+00 E= 4.527489D-01 Symmetry=bu - MO Center= -2.1D-15, 2.7D-14, -9.3D-19, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.712772 15 C s 53 -0.712772 16 C s - 57 -0.526343 17 H s 58 0.526343 18 H s - 33 0.471342 9 H s 34 -0.471342 10 H s - 36 -0.428730 11 C s 41 0.428730 12 C s - 22 -0.408282 5 C s 27 0.408282 6 C s - - Vector 50 Occ=0.000000D+00 E= 4.781739D-01 Symmetry=ag - MO Center= -7.2D-16, -1.2D-14, -3.9D-17, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.707342 3 C s 17 0.707342 4 C s - 22 -0.614693 5 C s 27 -0.614693 6 C s - 59 -0.477661 19 H s 60 -0.477661 20 H s - 48 0.416690 15 C s 53 0.416690 16 C s - 50 -0.384281 15 C py 55 0.384281 16 C py - - Vector 51 Occ=0.000000D+00 E= 5.263541D-01 Symmetry=ag - MO Center= 1.2D-15, -1.2D-15, -1.8D-17, r^2= 6.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 4 0.601405 1 C py 9 -0.601405 2 C py - 36 -0.487545 11 C s 41 -0.487545 12 C s - 13 -0.461640 3 C px 18 0.461640 4 C px - 2 -0.449596 1 C s 7 -0.449596 2 C s - 49 -0.343278 15 C px 54 0.343278 16 C px - - Vector 52 Occ=0.000000D+00 E= 5.459728D-01 Symmetry=bu - MO Center= 1.8D-15, 5.4D-15, 9.5D-20, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.647709 3 C s 17 -0.647709 4 C s - 3 -0.561794 1 C px 8 -0.561794 2 C px - 50 0.483960 15 C py 55 0.483960 16 C py - 24 -0.474789 5 C py 29 -0.474789 6 C py - 59 0.357599 19 H s 60 -0.357599 20 H s - - Vector 53 Occ=0.000000D+00 E= 5.759572D-01 Symmetry=ag - MO Center= -4.6D-15, -3.5D-15, 1.9D-17, r^2= 5.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 -0.532410 5 C px 28 0.532410 6 C px - 13 0.527486 3 C px 18 -0.527486 4 C px - 33 0.518626 9 H s 34 0.518626 10 H s - 31 -0.447097 7 H s 32 -0.447097 8 H s - 24 0.395392 5 C py 29 -0.395392 6 C py - - Vector 54 Occ=0.000000D+00 E= 5.993143D-01 Symmetry=bu - MO Center= 5.6D-15, 2.8D-15, 1.8D-18, r^2= 4.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 14 0.721318 3 C py 19 0.721318 4 C py - 22 0.600546 5 C s 27 -0.600546 6 C s - 36 -0.417988 11 C s 41 0.417988 12 C s - 2 -0.396437 1 C s 7 0.396437 2 C s - 24 0.397939 5 C py 29 0.397939 6 C py - - Vector 55 Occ=0.000000D+00 E= 6.251439D-01 Symmetry=bu - MO Center= 2.8D-16, 1.7D-14, 2.1D-18, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.612156 1 C s 7 -0.612156 2 C s - 49 -0.526038 15 C px 54 -0.526038 16 C px - 38 0.478943 11 C py 43 0.478943 12 C py - 23 -0.370757 5 C px 28 -0.370757 6 C px - 57 0.359934 17 H s 58 -0.359934 18 H s - - Vector 56 Occ=0.000000D+00 E= 6.395057D-01 Symmetry=ag - MO Center= -6.7D-17, -1.2D-14, 3.1D-17, r^2= 9.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.551339 11 C px 42 -0.551339 12 C px - 50 -0.534325 15 C py 55 0.534325 16 C py - 14 0.381456 3 C py 19 -0.381456 4 C py - 4 -0.363943 1 C py 9 0.363943 2 C py - 59 -0.332826 19 H s 60 -0.332826 20 H s - - Vector 57 Occ=0.000000D+00 E= 6.829413D-01 Symmetry=ag - MO Center= 1.5D-16, -7.5D-15, -1.4D-17, r^2= 9.3D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 38 0.663549 11 C py 43 -0.663549 12 C py - 49 -0.579745 15 C px 54 0.579745 16 C px - 24 -0.447883 5 C py 29 0.447883 6 C py - 14 -0.393639 3 C py 19 0.393639 4 C py - 4 -0.383371 1 C py 9 0.383371 2 C py - - Vector 58 Occ=0.000000D+00 E= 7.169851D-01 Symmetry=bu - MO Center= -5.9D-17, 1.3D-15, 3.5D-20, r^2= 9.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.608000 11 C px 42 0.608000 12 C px - 50 -0.540554 15 C py 55 -0.540554 16 C py - 48 -0.535394 15 C s 53 0.535394 16 C s - 36 0.464456 11 C s 38 -0.463228 11 C py - 41 -0.464456 12 C s 43 -0.463228 12 C py - - Vector 59 Occ=0.000000D+00 E= 7.794948D-01 Symmetry=ag - MO Center= -1.0D-15, -2.3D-16, 1.3D-16, r^2= 5.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 3 0.702284 1 C px 8 -0.702284 2 C px - 14 -0.536801 3 C py 19 0.536801 4 C py - 23 -0.436207 5 C px 28 0.436207 6 C px - 37 0.427987 11 C px 42 -0.427987 12 C px - 24 -0.414694 5 C py 29 0.414694 6 C py - - Vector 60 Occ=0.000000D+00 E= 7.946649D-01 Symmetry=bu - MO Center= -3.3D-16, 5.3D-17, 1.7D-21, r^2= 3.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 4 0.657732 1 C py 9 0.657732 2 C py - 13 -0.565949 3 C px 18 -0.565949 4 C px - 23 0.501235 5 C px 28 0.501235 6 C px - 22 -0.418664 5 C s 27 0.418664 6 C s - 24 -0.389169 5 C py 29 -0.389169 6 C py - + 48 0.030863 15 C s 53 0.030863 16 C s + + Vector 11 Occ=2.000000D+00 E=-8.094835D-01 Symmetry=ag + MO Center= 5.4D-17, -7.4D-15, -5.5D-16, r^2= 3.0D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.274628 1 C s 7 0.274628 2 C s + 12 0.247004 3 C s 17 0.247004 4 C s + 22 0.246791 5 C s 27 0.246791 6 C s + 36 0.127732 11 C s 41 0.127732 12 C s + 1 -0.107829 1 C s 6 -0.107829 2 C s + + Vector 12 Occ=2.000000D+00 E=-7.539665D-01 Symmetry=bu + MO Center= 1.2D-15, 1.9D-14, -3.6D-27, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 -0.297294 11 C s 41 0.297294 12 C s + 2 0.273790 1 C s 7 -0.273790 2 C s + 48 -0.209354 15 C s 53 0.209354 16 C s + 35 0.113860 11 C s 40 -0.113860 12 C s + 22 -0.112884 5 C s 27 0.112884 6 C s + + Vector 13 Occ=2.000000D+00 E=-7.179934D-01 Symmetry=ag + MO Center= 7.1D-15, 4.0D-14, -7.2D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.314948 11 C s 41 0.314948 12 C s + 48 0.309742 15 C s 53 0.309742 16 C s + 12 -0.121154 3 C s 17 -0.121154 4 C s + 35 -0.119299 11 C s 40 -0.119299 12 C s + 47 -0.117455 15 C s 52 -0.117455 16 C s + + Vector 14 Occ=2.000000D+00 E=-6.997408D-01 Symmetry=bu + MO Center= -1.3D-14, -6.5D-15, 1.0D-29, r^2= 3.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.356661 3 C s 17 -0.356661 4 C s + 22 0.324822 5 C s 27 -0.324822 6 C s + 11 -0.132151 3 C s 16 0.132151 4 C s + 3 0.124929 1 C px 8 0.124929 2 C px + 21 -0.120415 5 C s 26 0.120415 6 C s + + Vector 15 Occ=2.000000D+00 E=-6.675537D-01 Symmetry=bu + MO Center= 2.6D-16, -5.0D-14, 1.8D-25, r^2= 9.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.299648 15 C s 53 -0.299648 16 C s + 2 0.274188 1 C s 7 -0.274188 2 C s + 22 -0.200478 5 C s 27 0.200478 6 C s + 36 0.136771 11 C s 41 -0.136771 12 C s + 38 -0.129058 11 C py 43 -0.129058 12 C py + + Vector 16 Occ=2.000000D+00 E=-5.886425D-01 Symmetry=ag + MO Center= 4.9D-16, 2.8D-15, -2.5D-17, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.242818 15 C s 53 0.242818 16 C s + 22 0.232022 5 C s 27 0.232022 6 C s + 2 -0.207034 1 C s 7 -0.207034 2 C s + 14 -0.159569 3 C py 19 0.159569 4 C py + 36 -0.159724 11 C s 41 -0.159724 12 C s + + Vector 17 Occ=2.000000D+00 E=-5.589534D-01 Symmetry=ag + MO Center= 2.2D-16, -5.4D-16, 5.9D-33, r^2= 5.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.326189 3 C s 17 0.326189 4 C s + 3 0.185966 1 C px 8 -0.185966 2 C px + 22 -0.172243 5 C s 27 -0.172243 6 C s + 24 0.170193 5 C py 29 -0.170193 6 C py + 31 0.169694 7 H s 32 0.169694 8 H s + + Vector 18 Occ=2.000000D+00 E=-5.316846D-01 Symmetry=bu + MO Center= 2.9D-15, -1.5D-15, 1.0D-25, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.302585 11 C s 41 -0.302585 12 C s + 48 -0.249282 15 C s 53 0.249282 16 C s + 45 0.170564 13 H s 46 -0.170564 14 H s + 57 -0.160283 17 H s 58 0.160283 18 H s + 12 0.154479 3 C s 17 -0.154479 4 C s + + Vector 19 Occ=2.000000D+00 E=-5.101375D-01 Symmetry=ag + MO Center= 5.3D-16, -4.9D-16, 4.6D-17, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.202051 5 C px 28 -0.202051 6 C px + 13 0.183809 3 C px 18 -0.183809 4 C px + 36 0.180828 11 C s 41 0.180828 12 C s + 33 0.169625 9 H s 34 0.169625 10 H s + 22 0.166973 5 C s 27 0.166973 6 C s + + Vector 20 Occ=2.000000D+00 E=-4.574324D-01 Symmetry=ag + MO Center= -3.1D-17, 1.3D-15, 5.7D-33, r^2= 9.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.212864 15 C px 54 -0.212864 16 C px + 38 0.184723 11 C py 43 -0.184723 12 C py + 57 0.178969 17 H s 58 0.178969 18 H s + 45 -0.152629 13 H s 46 -0.152629 14 H s + 14 0.140958 3 C py 19 -0.140958 4 C py + + Vector 21 Occ=2.000000D+00 E=-4.393235D-01 Symmetry=bu + MO Center= 6.2D-16, 4.4D-15, -5.7D-24, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.219917 11 C px 42 0.219917 12 C px + 50 0.210050 15 C py 55 0.210050 16 C py + 14 0.184780 3 C py 19 0.184780 4 C py + 59 -0.177814 19 H s 60 0.177814 20 H s + 45 -0.155851 13 H s 46 0.155851 14 H s + + Vector 22 Occ=2.000000D+00 E=-4.106547D-01 Symmetry=bu + MO Center= -1.3D-14, -4.1D-14, 1.9D-22, r^2= 6.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.234310 1 C s 7 -0.234310 2 C s + 33 0.231015 9 H s 34 -0.231015 10 H s + 31 -0.225295 7 H s 32 0.225295 8 H s + 13 -0.220099 3 C px 18 -0.220099 4 C px + 24 -0.178744 5 C py 29 -0.178744 6 C py + + Vector 23 Occ=2.000000D+00 E=-3.978950D-01 Symmetry=bu + MO Center= 4.0D-16, -5.1D-15, 5.6D-24, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.251353 5 C px 28 0.251353 6 C px + 49 0.251065 15 C px 54 0.251065 16 C px + 3 -0.218929 1 C px 8 -0.218929 2 C px + 57 0.215641 17 H s 58 -0.215641 18 H s + 38 0.181802 11 C py 43 0.181802 12 C py + + Vector 24 Occ=2.000000D+00 E=-3.961519D-01 Symmetry=ag + MO Center= 1.8D-14, 4.5D-14, -1.0D-16, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.338901 15 C py 55 -0.338901 16 C py + 59 -0.262013 19 H s 60 -0.262013 20 H s + 37 0.252237 11 C px 42 -0.252237 12 C px + 45 -0.145846 13 H s 46 -0.145846 14 H s + 24 0.135943 5 C py 29 -0.135943 6 C py + + Vector 25 Occ=2.000000D+00 E=-3.739255D-01 Symmetry=bu + MO Center= -3.6D-15, 5.5D-15, 2.8D-22, r^2= 4.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.308701 3 C px 18 0.308701 4 C px + 31 0.253687 7 H s 32 -0.253687 8 H s + 24 -0.224878 5 C py 29 -0.224878 6 C py + 33 0.217137 9 H s 34 -0.217137 10 H s + 23 0.188223 5 C px 28 0.188223 6 C px + + Vector 26 Occ=2.000000D+00 E=-3.512171D-01 Symmetry=bu + MO Center= -1.4D-15, -1.2D-14, -1.2D-23, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.245335 15 C py 55 -0.245335 16 C py + 14 0.224936 3 C py 19 0.224936 4 C py + 37 -0.201137 11 C px 42 -0.201137 12 C px + 24 -0.194395 5 C py 29 -0.194395 6 C py + 38 0.186485 11 C py 43 0.186485 12 C py + + Vector 27 Occ=2.000000D+00 E=-3.472574D-01 Symmetry=ag + MO Center= -6.6D-16, 2.7D-15, 9.7D-16, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.295628 15 C px 54 -0.295628 16 C px + 57 0.268143 17 H s 58 0.268143 18 H s + 37 -0.207885 11 C px 42 0.207885 12 C px + 45 0.199869 13 H s 46 0.199869 14 H s + 31 -0.155783 7 H s 32 -0.155783 8 H s + + Vector 28 Occ=2.000000D+00 E=-3.244846D-01 Symmetry=au + MO Center= -3.1D-15, 3.0D-15, -2.0D-16, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.337533 1 C pz 10 0.337533 2 C pz + 15 0.297863 3 C pz 20 0.297863 4 C pz + 25 0.297271 5 C pz 30 0.297271 6 C pz + 39 0.173997 11 C pz 44 0.173997 12 C pz + 51 0.092487 15 C pz 56 0.092487 16 C pz + + Vector 29 Occ=2.000000D+00 E=-3.112174D-01 Symmetry=bu + MO Center= -5.3D-17, 2.4D-16, 1.1D-24, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.258846 13 H s 46 -0.258846 14 H s + 4 0.242273 1 C py 9 0.242273 2 C py + 57 0.230776 17 H s 58 -0.230776 18 H s + 37 -0.217077 11 C px 42 -0.217077 12 C px + 59 -0.212879 19 H s 60 0.212879 20 H s + + Vector 30 Occ=2.000000D+00 E=-2.928207D-01 Symmetry=ag + MO Center= 9.0D-16, 2.2D-15, -2.6D-16, r^2= 6.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 -0.278543 3 C py 19 0.278543 4 C py + 4 0.270017 1 C py 9 -0.270017 2 C py + 38 0.249377 11 C py 43 -0.249377 12 C py + 33 -0.237999 9 H s 34 -0.237999 10 H s + 24 0.235539 5 C py 29 -0.235539 6 C py + + Vector 31 Occ=2.000000D+00 E=-2.873910D-01 Symmetry=ag + MO Center= -8.6D-16, -5.5D-16, 3.5D-17, r^2= 6.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.298497 1 C px 8 -0.298497 2 C px + 23 0.281526 5 C px 28 -0.281526 6 C px + 31 -0.259029 7 H s 32 -0.259029 8 H s + 13 -0.225060 3 C px 18 0.225060 4 C px + 45 -0.180856 13 H s 46 -0.180856 14 H s + + Vector 32 Occ=2.000000D+00 E=-2.635357D-01 Symmetry=bg + MO Center= -1.9D-16, -2.9D-15, -9.0D-18, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.376572 11 C pz 44 0.376572 12 C pz + 5 0.348816 1 C pz 10 -0.348816 2 C pz + 51 -0.271529 15 C pz 56 0.271529 16 C pz + 25 -0.132926 5 C pz 30 0.132926 6 C pz + 15 0.130594 3 C pz 20 -0.130594 4 C pz + + Vector 33 Occ=2.000000D+00 E=-2.124827D-01 Symmetry=au + MO Center= 9.9D-15, 2.2D-15, 8.4D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.417921 15 C pz 56 0.417921 16 C pz + 39 0.413770 11 C pz 44 0.413770 12 C pz + 15 -0.179136 3 C pz 20 -0.179136 4 C pz + 25 -0.176698 5 C pz 30 -0.176698 6 C pz + + Vector 34 Occ=2.000000D+00 E=-1.950362D-01 Symmetry=bg + MO Center= -6.3D-15, 4.1D-16, -9.2D-19, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.463017 3 C pz 20 -0.463017 4 C pz + 25 0.458257 5 C pz 30 -0.458257 6 C pz + + Vector 35 Occ=2.000000D+00 E=-1.531254D-01 Symmetry=bg + MO Center= 5.9D-17, -2.7D-15, 3.0D-19, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.397299 15 C pz 56 -0.397299 16 C pz + 5 0.387679 1 C pz 10 -0.387679 2 C pz + 25 -0.228477 5 C pz 30 0.228477 6 C pz + 39 0.223539 11 C pz 44 -0.223539 12 C pz + 15 0.217362 3 C pz 20 -0.217362 4 C pz + + Vector 36 Occ=0.000000D+00 E= 3.743854D-02 Symmetry=au + MO Center= -1.8D-16, -2.8D-15, -1.2D-17, r^2= 8.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 -0.449848 15 C pz 56 -0.449848 16 C pz + 5 0.442538 1 C pz 10 0.442538 2 C pz + 25 -0.276317 5 C pz 30 -0.276317 6 C pz + 39 0.256375 11 C pz 44 0.256375 12 C pz + 15 -0.233225 3 C pz 20 -0.233225 4 C pz + + Vector 37 Occ=0.000000D+00 E= 9.035798D-02 Symmetry=au + MO Center= 1.6D-16, 2.7D-16, -3.1D-18, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.582517 3 C pz 20 0.582517 4 C pz + 25 -0.553601 5 C pz 30 -0.553601 6 C pz + 5 -0.031391 1 C pz 10 -0.031391 2 C pz + + Vector 38 Occ=0.000000D+00 E= 1.106312D-01 Symmetry=bg + MO Center= -1.2D-16, -4.0D-15, -1.9D-19, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.522279 11 C pz 44 -0.522279 12 C pz + 51 -0.523210 15 C pz 56 0.523210 16 C pz + 15 0.240523 3 C pz 20 -0.240523 4 C pz + 25 -0.231982 5 C pz 30 0.231982 6 C pz + + Vector 39 Occ=0.000000D+00 E= 1.821934D-01 Symmetry=au + MO Center= -1.6D-16, 4.9D-15, 3.8D-17, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.529016 11 C pz 44 -0.529016 12 C pz + 5 0.497475 1 C pz 10 0.497475 2 C pz + 51 0.379500 15 C pz 56 0.379500 16 C pz + 25 -0.199966 5 C pz 30 -0.199966 6 C pz + 15 -0.166124 3 C pz 20 -0.166124 4 C pz + + Vector 40 Occ=0.000000D+00 E= 2.725058D-01 Symmetry=bg + MO Center= 1.9D-17, 1.4D-15, 1.2D-18, r^2= 3.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.543524 1 C pz 10 -0.543524 2 C pz + 25 0.467292 5 C pz 30 -0.467292 6 C pz + 15 -0.464132 3 C pz 20 0.464132 4 C pz + 39 0.287531 11 C pz 44 -0.287531 12 C pz + 51 -0.155915 15 C pz 56 0.155915 16 C pz + + Vector 41 Occ=0.000000D+00 E= 3.320931D-01 Symmetry=ag + MO Center= -1.9D-14, -2.0D-14, 2.6D-17, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 -0.423309 9 H s 34 -0.423309 10 H s + 31 -0.412659 7 H s 32 -0.412659 8 H s + 2 0.402539 1 C s 7 0.402539 2 C s + 59 -0.356214 19 H s 60 -0.356214 20 H s + 38 -0.338877 11 C py 43 0.338877 12 C py + + Vector 42 Occ=0.000000D+00 E= 3.406682D-01 Symmetry=bu + MO Center= 1.6D-14, 2.3D-14, -1.7D-19, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.433671 13 H s 46 -0.433671 14 H s + 13 0.355024 3 C px 18 0.355024 4 C px + 37 0.344919 11 C px 42 0.344919 12 C px + 57 -0.324700 17 H s 58 0.324700 18 H s + 31 -0.318780 7 H s 32 0.318780 8 H s + + Vector 43 Occ=0.000000D+00 E= 3.792676D-01 Symmetry=bu + MO Center= -5.7D-15, -4.2D-15, 1.3D-18, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.542103 11 C s 41 -0.542103 12 C s + 4 0.460447 1 C py 9 0.460447 2 C py + 33 0.412846 9 H s 34 -0.412846 10 H s + 59 0.345793 19 H s 60 -0.345793 20 H s + 2 0.334588 1 C s 7 -0.334588 2 C s + + Vector 44 Occ=0.000000D+00 E= 3.814410D-01 Symmetry=ag + MO Center= 1.4D-14, 7.2D-15, -1.5D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.574760 13 H s 46 0.574760 14 H s + 57 -0.396370 17 H s 58 -0.396370 18 H s + 12 0.392408 3 C s 17 0.392408 4 C s + 36 -0.380922 11 C s 41 -0.380922 12 C s + 37 0.333235 11 C px 42 -0.333235 12 C px + + Vector 45 Occ=0.000000D+00 E= 4.109711D-01 Symmetry=ag + MO Center= -3.7D-13, 1.0D-12, 2.1D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.650630 15 C s 53 0.650630 16 C s + 22 0.617118 5 C s 27 0.617118 6 C s + 57 -0.509954 17 H s 58 -0.509954 18 H s + 12 -0.453631 3 C s 17 -0.453631 4 C s + 59 -0.325984 19 H s 60 -0.325984 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.119513D-01 Symmetry=bu + MO Center= 3.7D-13, -1.0D-12, 9.9D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.614592 5 C s 27 -0.614592 6 C s + 48 0.537470 15 C s 53 -0.537470 16 C s + 2 0.478326 1 C s 7 -0.478326 2 C s + 57 -0.446650 17 H s 58 0.446650 18 H s + 12 -0.443517 3 C s 17 0.443517 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.267666D-01 Symmetry=bu + MO Center= -3.9D-15, -7.3D-15, 5.5D-18, r^2= 9.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.599346 7 H s 32 -0.599346 8 H s + 36 -0.456674 11 C s 41 0.456674 12 C s + 45 0.441702 13 H s 46 -0.441702 14 H s + 12 -0.356654 3 C s 17 0.356654 4 C s + 59 0.337782 19 H s 60 -0.337782 20 H s + + Vector 48 Occ=0.000000D+00 E= 4.396606D-01 Symmetry=ag + MO Center= -7.6D-16, -3.8D-15, -2.0D-18, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.784763 1 C s 7 0.784763 2 C s + 36 -0.564635 11 C s 41 -0.564635 12 C s + 12 -0.491689 3 C s 17 -0.491689 4 C s + 22 -0.416484 5 C s 27 -0.416484 6 C s + 48 0.409412 15 C s 53 0.409412 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.526778D-01 Symmetry=bu + MO Center= -1.7D-14, 4.0D-14, -3.0D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.713372 15 C s 53 -0.713372 16 C s + 57 -0.526528 17 H s 58 0.526528 18 H s + 33 0.470914 9 H s 34 -0.470914 10 H s + 36 -0.429011 11 C s 41 0.429011 12 C s + 22 -0.407486 5 C s 27 0.407486 6 C s + + Vector 50 Occ=0.000000D+00 E= 4.781784D-01 Symmetry=ag + MO Center= 1.7D-14, -2.5D-14, 7.3D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.707155 3 C s 17 0.707155 4 C s + 22 -0.614309 5 C s 27 -0.614309 6 C s + 59 -0.477628 19 H s 60 -0.477628 20 H s + 48 0.417099 15 C s 53 0.417099 16 C s + 50 -0.383922 15 C py 55 0.383922 16 C py + + Vector 51 Occ=0.000000D+00 E= 5.263025D-01 Symmetry=ag + MO Center= 9.3D-17, -1.8D-15, 3.3D-17, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.600868 1 C py 9 -0.600868 2 C py + 36 -0.487164 11 C s 41 -0.487164 12 C s + 13 -0.461924 3 C px 18 0.461924 4 C px + 2 -0.449382 1 C s 7 -0.449382 2 C s + 49 -0.343149 15 C px 54 0.343149 16 C px + + Vector 52 Occ=0.000000D+00 E= 5.459192D-01 Symmetry=bu + MO Center= -5.6D-16, -5.6D-16, -3.4D-19, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.648711 3 C s 17 -0.648711 4 C s + 3 -0.562615 1 C px 8 -0.562615 2 C px + 50 0.483140 15 C py 55 0.483140 16 C py + 24 -0.475260 5 C py 29 -0.475260 6 C py + 59 0.357134 19 H s 60 -0.357134 20 H s + + Vector 53 Occ=0.000000D+00 E= 5.759099D-01 Symmetry=ag + MO Center= 1.4D-15, -2.4D-15, -6.7D-18, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 -0.532155 5 C px 28 0.532155 6 C px + 13 0.527939 3 C px 18 -0.527939 4 C px + 33 0.518548 9 H s 34 0.518548 10 H s + 31 -0.447598 7 H s 32 -0.447598 8 H s + 24 0.396843 5 C py 29 -0.396843 6 C py + + Vector 54 Occ=0.000000D+00 E= 5.993049D-01 Symmetry=bu + MO Center= -2.0D-15, 1.3D-15, -3.8D-18, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 0.721225 3 C py 19 0.721225 4 C py + 22 0.601669 5 C s 27 -0.601669 6 C s + 36 -0.417996 11 C s 41 0.417996 12 C s + 24 0.396984 5 C py 29 0.396984 6 C py + 2 -0.394875 1 C s 7 0.394875 2 C s + + Vector 55 Occ=0.000000D+00 E= 6.250179D-01 Symmetry=bu + MO Center= -8.6D-17, -2.7D-16, -8.9D-19, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.612825 1 C s 7 -0.612825 2 C s + 49 -0.525303 15 C px 54 -0.525303 16 C px + 38 0.478930 11 C py 43 0.478930 12 C py + 23 -0.371365 5 C px 28 -0.371365 6 C px + 57 0.359432 17 H s 58 -0.359432 18 H s + + Vector 56 Occ=0.000000D+00 E= 6.396025D-01 Symmetry=ag + MO Center= -3.5D-17, -2.4D-15, -1.5D-17, r^2= 9.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.551056 11 C px 42 -0.551056 12 C px + 50 -0.534382 15 C py 55 0.534382 16 C py + 14 0.379982 3 C py 19 -0.379982 4 C py + 4 -0.365632 1 C py 9 0.365632 2 C py + 59 -0.333033 19 H s 60 -0.333033 20 H s + + Vector 57 Occ=0.000000D+00 E= 6.829262D-01 Symmetry=ag + MO Center= -1.9D-16, 2.6D-16, 3.0D-18, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.662430 11 C py 43 -0.662430 12 C py + 49 -0.579123 15 C px 54 0.579123 16 C px + 24 -0.448922 5 C py 29 0.448922 6 C py + 14 -0.395676 3 C py 19 0.395676 4 C py + 4 -0.382248 1 C py 9 0.382248 2 C py + + Vector 58 Occ=0.000000D+00 E= 7.173123D-01 Symmetry=bu + MO Center= -2.4D-16, 3.4D-16, 1.9D-20, r^2= 9.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.608782 11 C px 42 0.608782 12 C px + 50 -0.541294 15 C py 55 -0.541294 16 C py + 48 -0.536128 15 C s 53 0.536128 16 C s + 36 0.466063 11 C s 41 -0.466063 12 C s + 38 -0.462934 11 C py 43 -0.462934 12 C py + + Vector 59 Occ=0.000000D+00 E= 7.795392D-01 Symmetry=ag + MO Center= -1.3D-17, -5.4D-16, -1.0D-18, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.701497 1 C px 8 -0.701497 2 C px + 14 -0.535601 3 C py 19 0.535601 4 C py + 23 -0.436027 5 C px 28 0.436027 6 C px + 37 0.429153 11 C px 42 -0.429153 12 C px + 24 -0.413535 5 C py 29 0.413535 6 C py + + Vector 60 Occ=0.000000D+00 E= 7.944987D-01 Symmetry=bu + MO Center= 1.9D-16, -3.2D-17, 4.5D-22, r^2= 3.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.657596 1 C py 9 0.657596 2 C py + 13 -0.565872 3 C px 18 -0.565872 4 C px + 23 0.501474 5 C px 28 0.501474 6 C px + 22 -0.418439 5 C s 27 0.418439 6 C s + 24 -0.388653 5 C py 29 -0.388653 6 C py + center of mass -------------- @@ -3085,29 +3123,32 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2635.992442470797 0.488683785333 0.000000000000 - 0.488683785333 389.911239853950 0.000000000000 - 0.000000000000 0.000000000000 3025.903682324748 - + 2635.639477620609 0.306670520948 0.000000000000 + 0.306670520948 390.010177857124 0.000000000000 + 0.000000000000 0.000000000000 3025.649655477733 + Multipole analysis of the density --------------------------------- - + L x y z total alpha beta nuclear - - - - ----- ----- ---- ------- 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 - - 1 1 0 0 0.000000 0.000000 0.000000 0.000000 + + 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 1 0 1 0 0.000000 0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - - 2 2 0 0 -37.347251 -140.842300 -140.842300 244.337349 - 2 1 1 0 0.053163 2.966039 2.966039 -5.878916 + + 2 2 0 0 -37.343460 -140.874574 -140.874574 244.405689 + 2 1 1 0 0.051245 2.923749 2.923749 -5.796253 2 1 0 1 0.000000 0.000000 0.000000 0.000000 - 2 0 2 0 -37.703370 -768.498883 -768.498883 1499.294397 + 2 0 2 0 -37.704356 -768.390438 -768.390438 1499.076520 2 0 1 1 0.000000 0.000000 0.000000 0.000000 - 2 0 0 2 -43.586385 -21.793192 -21.793192 0.000000 + 2 0 0 2 -43.586682 -21.793341 -21.793341 0.000000 + + Parallel integral file used 9 records with 0 large values + General Information ------------------- SCF calculation type: DFT @@ -3125,7 +3166,7 @@ Divinylbenzene in STO-3G basis set Convergence on energy requested: 1.00D-06 Convergence on density requested: 1.00D-05 Convergence on gradient requested: 5.00D-04 - + XC Information -------------- B3LYP Method XC Potential @@ -3134,7 +3175,7 @@ Divinylbenzene in STO-3G basis set Becke 1988 Exchange Functional 0.720 non-local Lee-Yang-Parr Correlation Functional 0.810 VWN I RPA Correlation Functional 0.190 local - + Grid Information ---------------- Grid used for XC integration: medium @@ -3147,7 +3188,7 @@ Divinylbenzene in STO-3G basis set Grid pruning is: on Number of quadrature shells: 470 Spatial weights used: Erf1 - + Convergence Information ----------------------- Convergence aids based upon iterative change in @@ -3162,7 +3203,7 @@ Divinylbenzene in STO-3G basis set dE on: start ASAP start dE off: 2 iters 30 iters 30 iters - + Screening Tolerance Information ------------------------------- Density screening/tol_rho: 1.00D-10 @@ -3171,15 +3212,15 @@ Divinylbenzene in STO-3G basis set XC Gaussian exp screening on grid/accXCfunc: 20 Schwarz screening/accCoul: 1.00D-08 - - + + NWChem DFT Gradient Module -------------------------- - - + + Divinylbenzene in STO-3G basis set - - + + charge = 0.00 wavefunction = closed shell @@ -3191,39 +3232,39 @@ Divinylbenzene in STO-3G basis set atom coordinates gradient x y z x y z - 1 C 0.443483 2.676227 0.000000 -0.000182 -0.000149 0.000000 - 2 C -0.443483 -2.676227 0.000000 0.000182 0.000149 0.000000 - 3 C 2.482441 0.924643 0.000000 -0.000136 -0.000003 0.000000 - 4 C -2.482441 -0.924643 0.000000 0.000136 0.000003 0.000000 - 5 C 2.054139 -1.690056 0.000000 -0.000068 0.000284 0.000000 - 6 C -2.054139 1.690056 0.000000 0.000068 -0.000284 0.000000 - 7 H 4.429407 1.644956 0.000000 -0.000070 -0.000059 0.000000 - 8 H -4.429407 -1.644956 0.000000 0.000070 0.000059 0.000000 - 9 H 3.671103 -2.989623 0.000000 -0.000045 -0.000264 0.000000 - 10 H -3.671103 2.989623 0.000000 0.000045 0.000264 0.000000 - 11 C -1.007663 -5.449721 0.000000 -0.000212 0.000151 0.000000 - 12 C 1.007663 5.449721 0.000000 0.000212 -0.000151 0.000000 - 13 H -3.034039 -5.914938 0.000000 0.000186 -0.000016 0.000000 - 14 H 3.034039 5.914938 0.000000 -0.000186 0.000016 0.000000 - 15 C 0.687157 -7.342590 0.000000 0.000016 -0.000567 0.000000 - 16 C -0.687157 7.342590 0.000000 -0.000016 0.000567 0.000000 - 17 H 2.731688 -7.011762 0.000000 -0.000014 0.000010 0.000000 - 18 H -2.731688 7.011762 0.000000 0.000014 -0.000010 0.000000 - 19 H 0.083891 -9.323786 0.000000 0.000087 0.000213 0.000000 - 20 H -0.083891 9.323786 0.000000 -0.000087 -0.000213 0.000000 - + 1 C 0.443885 2.676492 0.000000 -0.000243 -0.000044 0.000000 + 2 C -0.443885 -2.676492 0.000000 0.000243 0.000044 0.000000 + 3 C 2.482693 0.924332 0.000000 -0.000056 0.000044 0.000000 + 4 C -2.482693 -0.924332 0.000000 0.000056 -0.000044 0.000000 + 5 C 2.054013 -1.690557 0.000000 -0.000094 0.000186 0.000000 + 6 C -2.054013 1.690557 0.000000 0.000094 -0.000186 0.000000 + 7 H 4.430212 1.643605 0.000000 0.000011 -0.000087 0.000000 + 8 H -4.430212 -1.643605 0.000000 -0.000011 0.000087 0.000000 + 9 H 3.671844 -2.989420 0.000000 0.000084 -0.000264 0.000000 + 10 H -3.671844 2.989420 0.000000 -0.000084 0.000264 0.000000 + 11 C -1.008590 -5.450015 0.000000 0.000041 -0.000237 0.000000 + 12 C 1.008590 5.450015 0.000000 -0.000041 0.000237 0.000000 + 13 H -3.035204 -5.914933 0.000000 0.000101 0.000001 0.000000 + 14 H 3.035204 5.914933 0.000000 -0.000101 -0.000001 0.000000 + 15 C 0.686842 -7.341436 0.000000 -0.000366 -0.000079 0.000000 + 16 C -0.686842 7.341436 0.000000 0.000366 0.000079 0.000000 + 17 H 2.731519 -7.009652 0.000000 0.000117 -0.000008 0.000000 + 18 H -2.731519 7.009652 0.000000 -0.000117 0.000008 0.000000 + 19 H 0.085621 -9.323442 0.000000 0.000115 0.000135 0.000000 + 20 H -0.085621 9.323442 0.000000 -0.000115 -0.000135 0.000000 + ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.00 | 0.59 | + | CPU | 0.00 | 0.34 | ---------------------------------------- - | WALL | 0.00 | 0.59 | + | WALL | 0.00 | 0.36 | ---------------------------------------- - no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.000000000000000E+000 Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 1 -382.30825974 -2.4D-05 0.00031 0.00009 0.00504 0.01705 11.2 +@ 1 -382.30826064 -2.4D-05 0.00023 0.00007 0.00465 0.01494 6.1 ok ok @@ -3232,59 +3273,59 @@ Divinylbenzene in STO-3G basis set -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value Gradient ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- - 1 Stretch 1 3 1.42243 0.00000 - 2 Stretch 1 6 1.42098 -0.00026 - 3 Stretch 1 12 1.49773 0.00019 - 4 Stretch 2 4 1.42243 0.00000 - 5 Stretch 2 5 1.42098 -0.00026 - 6 Stretch 2 11 1.49773 0.00019 - 7 Stretch 3 5 1.40208 -0.00004 - 8 Stretch 3 7 1.09854 -0.00009 - 9 Stretch 4 6 1.40208 -0.00004 - 10 Stretch 4 8 1.09854 -0.00009 - 11 Stretch 5 9 1.09776 0.00013 - 12 Stretch 6 10 1.09776 0.00013 - 13 Stretch 11 13 1.10021 -0.00018 - 14 Stretch 11 15 1.34450 0.00031 - 15 Stretch 12 14 1.10021 -0.00018 - 16 Stretch 12 16 1.34450 0.00031 - 17 Stretch 15 17 1.09599 -0.00001 - 18 Stretch 15 19 1.09593 -0.00023 - 19 Stretch 16 18 1.09599 -0.00001 - 20 Stretch 16 20 1.09593 -0.00023 - 21 Bend 1 3 5 121.36175 0.00004 - 22 Bend 1 3 7 119.03268 -0.00000 - 23 Bend 1 6 4 120.84904 -0.00001 - 24 Bend 1 6 10 119.66459 -0.00012 - 25 Bend 1 12 14 114.42810 -0.00002 - 26 Bend 1 12 16 126.66154 0.00011 - 27 Bend 2 4 6 121.36175 0.00004 - 28 Bend 2 4 8 119.03268 -0.00000 - 29 Bend 2 5 3 120.84904 -0.00001 - 30 Bend 2 5 9 119.66459 -0.00012 - 31 Bend 2 11 13 114.42810 -0.00002 - 32 Bend 2 11 15 126.66154 0.00011 - 33 Bend 3 1 6 117.78921 -0.00003 - 34 Bend 3 1 12 119.16636 0.00002 - 35 Bend 3 5 9 119.48638 0.00013 - 36 Bend 4 2 5 117.78921 -0.00003 - 37 Bend 4 2 11 119.16636 0.00002 - 38 Bend 4 6 10 119.48638 0.00013 - 39 Bend 5 2 11 123.04443 0.00001 - 40 Bend 5 3 7 119.60557 -0.00004 - 41 Bend 6 1 12 123.04443 0.00001 - 42 Bend 6 4 8 119.60557 -0.00004 - 43 Bend 11 15 17 122.64889 -0.00002 - 44 Bend 11 15 19 121.22440 0.00002 - 45 Bend 12 16 18 122.64889 -0.00002 - 46 Bend 12 16 20 121.22440 0.00002 - 47 Bend 13 11 15 118.91036 -0.00008 - 48 Bend 14 12 16 118.91036 -0.00008 - 49 Bend 17 15 19 116.12670 -0.00000 - 50 Bend 18 16 20 116.12670 -0.00000 + 1 Stretch 1 3 1.42257 0.00016 + 2 Stretch 1 6 1.42107 -0.00013 + 3 Stretch 1 12 1.49780 0.00018 + 4 Stretch 2 4 1.42257 0.00016 + 5 Stretch 2 5 1.42107 -0.00013 + 6 Stretch 2 11 1.49780 0.00018 + 7 Stretch 3 5 1.40221 0.00007 + 8 Stretch 3 7 1.09862 -0.00002 + 9 Stretch 4 6 1.40221 0.00007 + 10 Stretch 4 8 1.09862 -0.00002 + 11 Stretch 5 9 1.09789 0.00023 + 12 Stretch 6 10 1.09789 0.00023 + 13 Stretch 11 13 1.10030 -0.00010 + 14 Stretch 11 15 1.34415 -0.00013 + 15 Stretch 12 14 1.10030 -0.00010 + 16 Stretch 12 16 1.34415 -0.00013 + 17 Stretch 15 17 1.09615 0.00011 + 18 Stretch 15 19 1.09602 -0.00016 + 19 Stretch 16 18 1.09615 0.00011 + 20 Stretch 16 20 1.09602 -0.00016 + 21 Bend 1 3 5 121.36572 0.00004 + 22 Bend 1 3 7 119.05352 0.00003 + 23 Bend 1 6 4 120.84960 -0.00001 + 24 Bend 1 6 10 119.70158 -0.00008 + 25 Bend 1 12 14 114.42890 -0.00000 + 26 Bend 1 12 16 126.61916 0.00003 + 27 Bend 2 4 6 121.36572 0.00004 + 28 Bend 2 4 8 119.05352 0.00003 + 29 Bend 2 5 3 120.84960 -0.00001 + 30 Bend 2 5 9 119.70158 -0.00008 + 31 Bend 2 11 13 114.42890 -0.00000 + 32 Bend 2 11 15 126.61916 0.00003 + 33 Bend 3 1 6 117.78468 -0.00002 + 34 Bend 3 1 12 119.16744 0.00002 + 35 Bend 3 5 9 119.44882 0.00009 + 36 Bend 4 2 5 117.78468 -0.00002 + 37 Bend 4 2 11 119.16744 0.00002 + 38 Bend 4 6 10 119.44882 0.00009 + 39 Bend 5 2 11 123.04788 0.00000 + 40 Bend 5 3 7 119.58076 -0.00007 + 41 Bend 6 1 12 123.04788 0.00000 + 42 Bend 6 4 8 119.58076 -0.00007 + 43 Bend 11 15 17 122.65552 -0.00001 + 44 Bend 11 15 19 121.25297 0.00004 + 45 Bend 12 16 18 122.65552 -0.00001 + 46 Bend 12 16 20 121.25297 0.00004 + 47 Bend 13 11 15 118.95194 -0.00002 + 48 Bend 14 12 16 118.95194 -0.00002 + 49 Bend 17 15 19 116.09152 -0.00003 + 50 Bend 18 16 20 116.09152 -0.00003 51 Torsion 1 3 5 2 0.00000 0.00000 52 Torsion 1 3 5 9 180.00000 0.00000 53 Torsion 1 6 4 2 0.00000 0.00000 @@ -3305,7 +3346,7 @@ Divinylbenzene in STO-3G basis set 68 Torsion 4 2 11 13 0.00000 0.00000 69 Torsion 4 2 11 15 180.00000 0.00000 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 0.00000 + 71 Torsion 5 2 4 6 0.00000 0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 73 Torsion 5 2 11 13 180.00000 0.00000 74 Torsion 5 2 11 15 0.00000 0.00000 @@ -3315,29 +3356,28 @@ Divinylbenzene in STO-3G basis set 78 Torsion 6 1 12 14 180.00000 0.00000 79 Torsion 6 1 12 16 0.00000 0.00000 80 Torsion 6 4 2 11 180.00000 0.00000 - 81 Torsion 7 3 1 12 -0.00000 0.00000 + 81 Torsion 7 3 1 12 0.00000 0.00000 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 0.00000 + 83 Torsion 8 4 2 11 0.00000 0.00000 84 Torsion 8 4 6 10 0.00000 0.00000 85 Torsion 9 5 2 11 0.00000 0.00000 86 Torsion 10 6 1 12 0.00000 0.00000 87 Torsion 13 11 15 17 180.00000 0.00000 - 88 Torsion 13 11 15 19 -0.00000 0.00000 + 88 Torsion 13 11 15 19 0.00000 0.00000 89 Torsion 14 12 16 18 180.00000 0.00000 - 90 Torsion 14 12 16 20 -0.00000 0.00000 - - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - + 90 Torsion 14 12 16 20 0.00000 0.00000 + + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + Summary of "ao basis" -> "ao basis" (cartesian) @@ -3350,14 +3390,14 @@ Divinylbenzene in STO-3G basis set Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 - + Caching 1-el integrals - + General Information ------------------- SCF calculation type: DFT @@ -3375,7 +3415,7 @@ Divinylbenzene in STO-3G basis set Convergence on energy requested: 1.00D-06 Convergence on density requested: 1.00D-05 Convergence on gradient requested: 5.00D-04 - + XC Information -------------- B3LYP Method XC Potential @@ -3384,7 +3424,7 @@ Divinylbenzene in STO-3G basis set Becke 1988 Exchange Functional 0.720 non-local Lee-Yang-Parr Correlation Functional 0.810 VWN I RPA Correlation Functional 0.190 local - + Grid Information ---------------- Grid used for XC integration: medium @@ -3397,7 +3437,7 @@ Divinylbenzene in STO-3G basis set Grid pruning is: on Number of quadrature shells: 470 Spatial weights used: Erf1 - + Convergence Information ----------------------- Convergence aids based upon iterative change in @@ -3412,7 +3452,7 @@ Divinylbenzene in STO-3G basis set dE on: start ASAP start dE off: 2 iters 30 iters 30 iters - + Screening Tolerance Information ------------------------------- Density screening/tol_rho: 1.00D-10 @@ -3426,16 +3466,16 @@ Divinylbenzene in STO-3G basis set Divinylbenzene in STO-3G basis set - + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -3445,623 +3485,635 @@ Divinylbenzene in STO-3G basis set 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag + + Time after variat. SCF: 6.1 + Time prior to 1st pass: 6.1 + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507878 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.470D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 - Time after variat. SCF: 11.2 - Time prior to 1st pass: 11.2 Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 - Max. records in memory = 75 Max. recs in file = ********* + Max. records in memory = 20 Max. recs in file = 2708470 Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 5.89 5890482 + Heap Space remaining (MW): 12.46 12464624 Stack Space remaining (MW): 13.11 13106284 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.3082611564 -8.28D+02 2.86D-05 1.25D-06 12.0 - d= 0,ls=0.0,diis 2 -382.3082613664 -2.10D-07 1.80D-05 3.40D-07 12.6 - d= 0,ls=0.0,diis 3 -382.3082613454 2.10D-08 9.82D-06 4.76D-07 13.2 + d= 0,ls=0.0,diis 1 -382.3082614823 -8.28D+02 2.00D-05 5.16D-07 6.7 + d= 0,ls=0.0,diis 2 -382.3082615466 -6.42D-08 1.36D-05 2.58D-07 6.9 + d= 0,ls=0.0,diis 3 -382.3082615612 -1.46D-08 5.97D-06 1.80D-07 7.1 - Total DFT energy = -382.308261345385 - One electron energy = -1400.570983765640 - Coulomb energy = 630.204493510204 - Exchange-Corr. energy = -57.843791588324 - Nuclear repulsion energy = 445.902020498375 + Total DFT energy = -382.308261561162 + One electron energy = -1400.565874742596 + Coulomb energy = 630.202164008316 + Exchange-Corr. energy = -57.843734200068 + Nuclear repulsion energy = 445.899183373186 - Numeric. integr. density = 69.999955422839 - - Total iterative time = 2.0s + Numeric. integr. density = 69.999955368859 + Total iterative time = 0.9s + Occupations of the irreducible representations ---------------------------------------------- - + irrep alpha beta -------- -------- -------- ag 15.0 15.0 au 2.0 2.0 bg 3.0 3.0 bu 15.0 15.0 - - + + DFT Final Molecular Orbital Analysis ------------------------------------ - - Vector 1 Occ=2.000000D+00 E=-1.002022D+01 Symmetry=bu - MO Center= -6.6D-18, 2.9D-16, 1.5D-52, r^2= 2.1D+00 + + Vector 1 Occ=2.000000D+00 E=-1.002021D+01 Symmetry=bu + MO Center= -6.6D-12, -4.0D-11, -3.2D-33, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 1 0.699295 1 C s 6 -0.699295 2 C s + 1 0.699294 1 C s 6 -0.699294 2 C s 2 0.031568 1 C s 7 -0.031568 2 C s - 35 0.027410 11 C s 40 -0.027410 12 C s - - Vector 2 Occ=2.000000D+00 E=-1.002017D+01 Symmetry=ag - MO Center= 1.9D-14, 6.4D-14, -2.3D-22, r^2= 2.1D+00 + 35 0.027449 11 C s 40 -0.027449 12 C s + + Vector 2 Occ=2.000000D+00 E=-1.002016D+01 Symmetry=ag + MO Center= 6.6D-12, 4.0D-11, -3.8D-25, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 1 0.699293 1 C s 6 0.699293 2 C s + 1 0.699292 1 C s 6 0.699292 2 C s 2 0.031361 1 C s 7 0.031361 2 C s - 35 -0.027774 11 C s 40 -0.027774 12 C s - - Vector 3 Occ=2.000000D+00 E=-1.000811D+01 Symmetry=bu - MO Center= -1.1D-14, -5.5D-14, -4.0D-37, r^2= 8.6D+00 + 35 -0.027814 11 C s 40 -0.027814 12 C s + + Vector 3 Occ=2.000000D+00 E=-1.000812D+01 Symmetry=bu + MO Center= 1.9D-09, 1.1D-08, -2.1D-28, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.699825 11 C s 40 -0.699825 12 C s - 36 0.030786 11 C s 41 -0.030786 12 C s - 1 -0.028011 1 C s 6 0.028011 2 C s - - Vector 4 Occ=2.000000D+00 E=-1.000811D+01 Symmetry=ag - MO Center= 4.3D-15, 9.8D-15, -8.7D-18, r^2= 8.6D+00 + 35 0.699826 11 C s 40 -0.699826 12 C s + 36 0.030784 11 C s 41 -0.030784 12 C s + 1 -0.028057 1 C s 6 0.028057 2 C s + + Vector 4 Occ=2.000000D+00 E=-1.000812D+01 Symmetry=ag + MO Center= -1.9D-09, -1.1D-08, 5.5D-19, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.699743 11 C s 40 0.699743 12 C s - 36 0.030768 11 C s 41 0.030768 12 C s - 1 0.028217 1 C s 6 0.028217 2 C s - - Vector 5 Occ=2.000000D+00 E=-1.000680D+01 Symmetry=bu - MO Center= 9.2D-12, -8.6D-12, -5.7D-29, r^2= 2.0D+00 + 35 0.699744 11 C s 40 0.699744 12 C s + 36 0.030766 11 C s 41 0.030766 12 C s + 1 0.028263 1 C s 6 0.028263 2 C s + + Vector 5 Occ=2.000000D+00 E=-1.000679D+01 Symmetry=bu + MO Center= -8.4D-10, 4.0D-10, 4.4D-28, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.612567 5 C s 26 -0.612567 6 C s - 11 -0.337697 3 C s 16 0.337697 4 C s - 22 0.030344 5 C s 27 -0.030344 6 C s - 1 -0.027536 1 C s 6 0.027536 2 C s - - Vector 6 Occ=2.000000D+00 E=-1.000679D+01 Symmetry=ag - MO Center= -9.1D-12, 6.4D-12, 3.2D-18, r^2= 2.0D+00 + 21 0.612359 5 C s 26 -0.612359 6 C s + 11 -0.338077 3 C s 16 0.338077 4 C s + 22 0.030339 5 C s 27 -0.030339 6 C s + 1 -0.027526 1 C s 6 0.027526 2 C s + + Vector 6 Occ=2.000000D+00 E=-1.000678D+01 Symmetry=ag + MO Center= 8.4D-10, -4.0D-10, -3.9D-34, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.597421 5 C s 26 0.597421 6 C s - 11 -0.364816 3 C s 16 -0.364816 4 C s - 22 0.029720 5 C s 27 0.029720 6 C s - - Vector 7 Occ=2.000000D+00 E=-1.000606D+01 Symmetry=bu - MO Center= 3.6D-11, 2.2D-12, -2.8D-28, r^2= 2.0D+00 + 21 0.597224 5 C s 26 0.597224 6 C s + 11 -0.365139 3 C s 16 -0.365139 4 C s + 22 0.029714 5 C s 27 0.029714 6 C s + + Vector 7 Occ=2.000000D+00 E=-1.000605D+01 Symmetry=bu + MO Center= -2.6D-11, -2.9D-12, -3.5D-30, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.613321 3 C s 16 -0.613321 4 C s - 21 0.339057 5 C s 26 -0.339057 6 C s - - Vector 8 Occ=2.000000D+00 E=-1.000592D+01 Symmetry=ag - MO Center= -3.6D-11, -4.6D-14, -3.4D-33, r^2= 2.0D+00 + 11 0.613113 3 C s 16 -0.613113 4 C s + 21 0.339434 5 C s 26 -0.339434 6 C s + + Vector 8 Occ=2.000000D+00 E=-1.000591D+01 Symmetry=ag + MO Center= 2.6D-11, 4.9D-12, 3.8D-19, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.597583 3 C s 16 0.597583 4 C s - 21 0.365097 5 C s 26 0.365097 6 C s - 1 0.028382 1 C s 6 0.028382 2 C s - - Vector 9 Occ=2.000000D+00 E=-9.992334D+00 Symmetry=bu - MO Center= -2.1D-16, 3.3D-16, -7.2D-32, r^2= 1.5D+01 + 11 0.597388 3 C s 16 0.597388 4 C s + 21 0.365423 5 C s 26 0.365423 6 C s + 1 0.028370 1 C s 6 0.028370 2 C s + + Vector 9 Occ=2.000000D+00 E=-9.992336D+00 Symmetry=bu + MO Center= 2.2D-16, -8.3D-16, -5.9D-34, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700479 15 C s 52 -0.700479 16 C s - 48 0.030862 15 C s 53 -0.030862 16 C s - - Vector 10 Occ=2.000000D+00 E=-9.992334D+00 Symmetry=ag - MO Center= -1.2D-16, -1.1D-15, -2.4D-18, r^2= 1.5D+01 + 48 0.030861 15 C s 53 -0.030861 16 C s + + Vector 10 Occ=2.000000D+00 E=-9.992336D+00 Symmetry=ag + MO Center= 3.6D-16, -1.2D-16, 1.7D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700478 15 C s 52 0.700478 16 C s - 48 0.030862 15 C s 53 0.030862 16 C s - - Vector 11 Occ=2.000000D+00 E=-8.095232D-01 Symmetry=ag - MO Center= -9.4D-18, -3.8D-18, -3.1D-32, r^2= 3.0D+00 + 48 0.030861 15 C s 53 0.030861 16 C s + + Vector 11 Occ=2.000000D+00 E=-8.095194D-01 Symmetry=ag + MO Center= -2.2D-15, 1.2D-15, -3.8D-16, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.274627 1 C s 7 0.274627 2 C s - 12 0.247007 3 C s 17 0.247007 4 C s - 22 0.246742 5 C s 27 0.246742 6 C s - 36 0.127780 11 C s 41 0.127780 12 C s - 1 -0.107835 1 C s 6 -0.107835 2 C s - - Vector 12 Occ=2.000000D+00 E=-7.540038D-01 Symmetry=bu - MO Center= 1.1D-17, -1.1D-16, 1.3D-33, r^2= 7.8D+00 + 2 0.274630 1 C s 7 0.274630 2 C s + 12 0.247014 3 C s 17 0.247014 4 C s + 22 0.246745 5 C s 27 0.246745 6 C s + 36 0.127755 11 C s 41 0.127755 12 C s + 1 -0.107836 1 C s 6 -0.107836 2 C s + + Vector 12 Occ=2.000000D+00 E=-7.539886D-01 Symmetry=bu + MO Center= -4.0D-16, -1.4D-16, -3.2D-26, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 -0.297282 11 C s 41 0.297282 12 C s - 2 0.273886 1 C s 7 -0.273886 2 C s - 48 -0.209209 15 C s 53 0.209209 16 C s - 35 0.113861 11 C s 40 -0.113861 12 C s - 22 -0.112716 5 C s 27 0.112716 6 C s - - Vector 13 Occ=2.000000D+00 E=-7.179853D-01 Symmetry=ag - MO Center= 1.7D-17, 5.8D-16, 1.8D-32, r^2= 1.1D+01 + 36 -0.297267 11 C s 41 0.297267 12 C s + 2 0.273912 1 C s 7 -0.273912 2 C s + 48 -0.209192 15 C s 53 0.209192 16 C s + 35 0.113850 11 C s 40 -0.113850 12 C s + 22 -0.112721 5 C s 27 0.112721 6 C s + + Vector 13 Occ=2.000000D+00 E=-7.179666D-01 Symmetry=ag + MO Center= -4.5D-17, -1.2D-15, -1.8D-32, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.314964 11 C s 41 0.314964 12 C s - 48 0.309661 15 C s 53 0.309661 16 C s - 12 -0.121200 3 C s 17 -0.121200 4 C s - 35 -0.119306 11 C s 40 -0.119306 12 C s - 47 -0.117422 15 C s 52 -0.117422 16 C s - - Vector 14 Occ=2.000000D+00 E=-6.998006D-01 Symmetry=bu - MO Center= -1.9D-17, 5.7D-17, 4.4D-33, r^2= 3.2D+00 + 36 0.314981 11 C s 41 0.314981 12 C s + 48 0.309679 15 C s 53 0.309679 16 C s + 12 -0.121180 3 C s 17 -0.121180 4 C s + 35 -0.119307 11 C s 40 -0.119307 12 C s + 47 -0.117426 15 C s 52 -0.117426 16 C s + + Vector 14 Occ=2.000000D+00 E=-6.997958D-01 Symmetry=bu + MO Center= 2.5D-15, -2.8D-16, 4.0D-35, r^2= 3.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.356605 3 C s 17 -0.356605 4 C s - 22 0.324784 5 C s 27 -0.324784 6 C s + 12 0.356604 3 C s 17 -0.356604 4 C s + 22 0.324764 5 C s 27 -0.324764 6 C s 11 -0.132143 3 C s 16 0.132143 4 C s - 3 0.124905 1 C px 8 0.124905 2 C px - 21 -0.120409 5 C s 26 0.120409 6 C s - - Vector 15 Occ=2.000000D+00 E=-6.675211D-01 Symmetry=bu - MO Center= -4.1D-18, -1.1D-16, 5.1D-34, r^2= 9.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.299727 15 C s 53 -0.299727 16 C s - 2 0.274056 1 C s 7 -0.274056 2 C s - 22 -0.200640 5 C s 27 0.200640 6 C s - 36 0.136822 11 C s 41 -0.136822 12 C s - 38 -0.129081 11 C py 43 -0.129081 12 C py - - Vector 16 Occ=2.000000D+00 E=-5.887184D-01 Symmetry=ag - MO Center= 5.5D-16, 4.9D-15, 1.0D-16, r^2= 8.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.242772 15 C s 53 0.242772 16 C s - 22 0.232178 5 C s 27 0.232178 6 C s - 2 -0.206963 1 C s 7 -0.206963 2 C s - 14 -0.159647 3 C py 19 0.159647 4 C py - 36 -0.159444 11 C s 41 -0.159444 12 C s - - Vector 17 Occ=2.000000D+00 E=-5.589329D-01 Symmetry=ag - MO Center= -1.5D-15, 1.2D-15, 1.8D-16, r^2= 5.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.326148 3 C s 17 0.326148 4 C s - 3 0.185912 1 C px 8 -0.185912 2 C px - 22 -0.172111 5 C s 27 -0.172111 6 C s - 24 0.170143 5 C py 29 -0.170143 6 C py - 31 0.169705 7 H s 32 0.169705 8 H s - - Vector 18 Occ=2.000000D+00 E=-5.316552D-01 Symmetry=bu - MO Center= 8.9D-16, -3.9D-15, -1.5D-31, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.302566 11 C s 41 -0.302566 12 C s - 48 -0.249272 15 C s 53 0.249272 16 C s - 45 0.170546 13 H s 46 -0.170546 14 H s - 57 -0.160351 17 H s 58 0.160351 18 H s - 12 0.154584 3 C s 17 -0.154584 4 C s - - Vector 19 Occ=2.000000D+00 E=-5.101695D-01 Symmetry=ag - MO Center= 1.7D-18, -2.6D-17, 2.7D-32, r^2= 7.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 0.202151 5 C px 28 -0.202151 6 C px - 13 0.183804 3 C px 18 -0.183804 4 C px - 36 0.180837 11 C s 41 0.180837 12 C s - 33 0.169712 9 H s 34 0.169712 10 H s - 22 0.166829 5 C s 27 0.166829 6 C s - - Vector 20 Occ=2.000000D+00 E=-4.574405D-01 Symmetry=ag - MO Center= 3.1D-15, -5.4D-14, -6.2D-17, r^2= 9.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 49 0.212999 15 C px 54 -0.212999 16 C px - 38 0.184701 11 C py 43 -0.184701 12 C py - 57 0.179112 17 H s 58 0.179112 18 H s - 45 -0.152675 13 H s 46 -0.152675 14 H s - 14 0.140939 3 C py 19 -0.140939 4 C py - - Vector 21 Occ=2.000000D+00 E=-4.393669D-01 Symmetry=bu - MO Center= -5.4D-15, 1.9D-14, -4.8D-22, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.219731 11 C px 42 0.219731 12 C px - 50 0.209531 15 C py 55 0.209531 16 C py - 14 0.184837 3 C py 19 0.184837 4 C py - 59 -0.177447 19 H s 60 0.177447 20 H s - 45 -0.155819 13 H s 46 0.155819 14 H s - - Vector 22 Occ=2.000000D+00 E=-4.106226D-01 Symmetry=bu - MO Center= 6.2D-15, 2.8D-14, -2.8D-22, r^2= 6.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.234192 1 C s 7 -0.234192 2 C s - 33 0.231045 9 H s 34 -0.231045 10 H s - 31 -0.225073 7 H s 32 0.225073 8 H s - 13 -0.219981 3 C px 18 -0.219981 4 C px - 24 -0.178940 5 C py 29 -0.178940 6 C py - - Vector 23 Occ=2.000000D+00 E=-3.979554D-01 Symmetry=bu - MO Center= -1.8D-15, 1.8D-14, -3.8D-32, r^2= 8.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 0.251049 5 C px 28 0.251049 6 C px - 49 0.251272 15 C px 54 0.251272 16 C px - 3 -0.218913 1 C px 8 -0.218913 2 C px - 57 0.215784 17 H s 58 -0.215784 18 H s - 38 0.182019 11 C py 43 0.182019 12 C py - - Vector 24 Occ=2.000000D+00 E=-3.960783D-01 Symmetry=ag - MO Center= -2.2D-14, 4.3D-15, 3.7D-17, r^2= 1.5D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 50 0.338873 15 C py 55 -0.338873 16 C py - 59 -0.262027 19 H s 60 -0.262027 20 H s - 37 0.252211 11 C px 42 -0.252211 12 C px - 45 -0.145780 13 H s 46 -0.145780 14 H s - 24 0.136038 5 C py 29 -0.136038 6 C py - - Vector 25 Occ=2.000000D+00 E=-3.739878D-01 Symmetry=bu - MO Center= 1.5D-14, -1.7D-14, -5.4D-32, r^2= 4.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 13 0.308777 3 C px 18 0.308777 4 C px - 31 0.253710 7 H s 32 -0.253710 8 H s - 24 -0.224664 5 C py 29 -0.224664 6 C py - 33 0.217083 9 H s 34 -0.217083 10 H s - 23 0.188360 5 C px 28 0.188360 6 C px - - Vector 26 Occ=2.000000D+00 E=-3.511538D-01 Symmetry=bu - MO Center= 8.1D-16, -6.4D-15, 1.1D-22, r^2= 8.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 50 -0.245370 15 C py 55 -0.245370 16 C py - 14 0.224960 3 C py 19 0.224960 4 C py - 37 -0.201384 11 C px 42 -0.201384 12 C px - 24 -0.194569 5 C py 29 -0.194569 6 C py - 38 0.186292 11 C py 43 0.186292 12 C py - - Vector 27 Occ=2.000000D+00 E=-3.472880D-01 Symmetry=ag - MO Center= 2.3D-15, 4.6D-15, -6.5D-32, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 49 0.295536 15 C px 54 -0.295536 16 C px - 57 0.268035 17 H s 58 0.268035 18 H s - 37 -0.207911 11 C px 42 0.207911 12 C px - 45 0.199912 13 H s 46 0.199912 14 H s - 31 -0.155832 7 H s 32 -0.155832 8 H s - - Vector 28 Occ=2.000000D+00 E=-3.245210D-01 Symmetry=au - MO Center= 2.4D-15, 7.1D-15, -3.4D-16, r^2= 3.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 5 0.337531 1 C pz 10 0.337531 2 C pz - 15 0.297861 3 C pz 20 0.297861 4 C pz - 25 0.297221 5 C pz 30 0.297221 6 C pz - 39 0.174047 11 C pz 44 0.174047 12 C pz - 51 0.092477 15 C pz 56 0.092477 16 C pz - - Vector 29 Occ=2.000000D+00 E=-3.112377D-01 Symmetry=bu - MO Center= 3.1D-16, 2.2D-16, 7.4D-34, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.258833 13 H s 46 -0.258833 14 H s - 4 0.242373 1 C py 9 0.242373 2 C py - 57 0.230596 17 H s 58 -0.230596 18 H s - 37 -0.216968 11 C px 42 -0.216968 12 C px - 59 -0.213051 19 H s 60 0.213051 20 H s - - Vector 30 Occ=2.000000D+00 E=-2.928103D-01 Symmetry=ag - MO Center= 5.7D-16, 6.0D-16, 2.8D-16, r^2= 6.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 14 -0.278647 3 C py 19 0.278647 4 C py - 4 0.270262 1 C py 9 -0.270262 2 C py - 38 0.249656 11 C py 43 -0.249656 12 C py - 33 -0.237529 9 H s 34 -0.237529 10 H s - 24 0.235770 5 C py 29 -0.235770 6 C py - - Vector 31 Occ=2.000000D+00 E=-2.874461D-01 Symmetry=ag - MO Center= 5.3D-16, -1.4D-16, 3.2D-18, r^2= 6.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 3 0.298824 1 C px 8 -0.298824 2 C px - 23 0.281637 5 C px 28 -0.281637 6 C px - 31 -0.259090 7 H s 32 -0.259090 8 H s - 13 -0.225393 3 C px 18 0.225393 4 C px - 45 -0.180758 13 H s 46 -0.180758 14 H s - - Vector 32 Occ=2.000000D+00 E=-2.635677D-01 Symmetry=bg - MO Center= -8.8D-16, -7.0D-15, 1.8D-22, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 -0.376563 11 C pz 44 0.376563 12 C pz - 5 0.348897 1 C pz 10 -0.348897 2 C pz - 51 -0.271400 15 C pz 56 0.271400 16 C pz - 25 -0.132774 5 C pz 30 0.132774 6 C pz - 15 0.130756 3 C pz 20 -0.130756 4 C pz - - Vector 33 Occ=2.000000D+00 E=-2.124635D-01 Symmetry=au - MO Center= 7.2D-15, -1.4D-15, 2.8D-17, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 0.417863 15 C pz 56 0.417863 16 C pz - 39 0.413776 11 C pz 44 0.413776 12 C pz - 15 -0.179213 3 C pz 20 -0.179213 4 C pz - 25 -0.176781 5 C pz 30 -0.176781 6 C pz - - Vector 34 Occ=2.000000D+00 E=-1.950743D-01 Symmetry=bg - MO Center= -8.9D-15, 1.0D-15, -1.9D-23, r^2= 2.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 15 0.463053 3 C pz 20 -0.463053 4 C pz - 25 0.458195 5 C pz 30 -0.458195 6 C pz - - Vector 35 Occ=2.000000D+00 E=-1.530785D-01 Symmetry=bg - MO Center= 2.5D-16, -2.7D-16, 7.6D-22, r^2= 8.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 0.397414 15 C pz 56 -0.397414 16 C pz - 5 0.387609 1 C pz 10 -0.387609 2 C pz - 25 -0.228719 5 C pz 30 0.228719 6 C pz - 39 0.223574 11 C pz 44 -0.223574 12 C pz - 15 0.217069 3 C pz 20 -0.217069 4 C pz - - Vector 36 Occ=0.000000D+00 E= 3.739593D-02 Symmetry=au - MO Center= -8.9D-17, 4.7D-15, 6.0D-16, r^2= 8.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 -0.449929 15 C pz 56 -0.449929 16 C pz - 5 0.442484 1 C pz 10 0.442484 2 C pz - 25 -0.276549 5 C pz 30 -0.276549 6 C pz - 39 0.256272 11 C pz 44 0.256272 12 C pz - 15 -0.232935 3 C pz 20 -0.232935 4 C pz - - Vector 37 Occ=0.000000D+00 E= 9.037866D-02 Symmetry=au - MO Center= 3.7D-15, -2.5D-16, 7.2D-17, r^2= 2.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 15 0.582595 3 C pz 20 0.582595 4 C pz - 25 -0.553542 5 C pz 30 -0.553542 6 C pz - 5 -0.031532 1 C pz 10 -0.031532 2 C pz - - Vector 38 Occ=0.000000D+00 E= 1.106291D-01 Symmetry=bg - MO Center= -4.3D-15, -4.8D-15, 9.5D-22, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 0.522224 11 C pz 44 -0.522224 12 C pz - 51 -0.523168 15 C pz 56 0.523168 16 C pz - 15 0.240636 3 C pz 20 -0.240636 4 C pz - 25 -0.232078 5 C pz 30 0.232078 6 C pz - - Vector 39 Occ=0.000000D+00 E= 1.822332D-01 Symmetry=au - MO Center= -4.5D-16, -1.3D-15, -4.9D-16, r^2= 7.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 -0.529062 11 C pz 44 -0.529062 12 C pz - 5 0.497539 1 C pz 10 0.497539 2 C pz - 51 0.379454 15 C pz 56 0.379454 16 C pz - 25 -0.199806 5 C pz 30 -0.199806 6 C pz - 15 -0.166244 3 C pz 20 -0.166244 4 C pz - - Vector 40 Occ=0.000000D+00 E= 2.725379D-01 Symmetry=bg - MO Center= 6.8D-16, 2.3D-15, -1.6D-22, r^2= 3.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 5 0.543544 1 C pz 10 -0.543544 2 C pz - 25 0.467231 5 C pz 30 -0.467231 6 C pz - 15 -0.464151 3 C pz 20 0.464151 4 C pz - 39 0.287647 11 C pz 44 -0.287647 12 C pz - 51 -0.155950 15 C pz 56 0.155950 16 C pz - - Vector 41 Occ=0.000000D+00 E= 3.322342D-01 Symmetry=ag - MO Center= -1.5D-14, -1.2D-14, 7.3D-17, r^2= 8.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 33 -0.422894 9 H s 34 -0.422894 10 H s - 31 -0.413152 7 H s 32 -0.413152 8 H s - 2 0.401849 1 C s 7 0.401849 2 C s - 59 -0.356637 19 H s 60 -0.356637 20 H s - 38 -0.338820 11 C py 43 0.338820 12 C py - - Vector 42 Occ=0.000000D+00 E= 3.407093D-01 Symmetry=bu - MO Center= 1.1D-14, 2.1D-14, -3.2D-25, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.435122 13 H s 46 -0.435122 14 H s - 13 0.355495 3 C px 18 0.355495 4 C px - 37 0.345416 11 C px 42 0.345416 12 C px - 57 -0.323758 17 H s 58 0.323758 18 H s - 31 -0.319866 7 H s 32 0.319866 8 H s - - Vector 43 Occ=0.000000D+00 E= 3.794398D-01 Symmetry=bu - MO Center= 2.2D-15, -8.2D-15, -1.3D-22, r^2= 7.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.541330 11 C s 41 -0.541330 12 C s - 4 0.460336 1 C py 9 0.460336 2 C py - 33 0.412099 9 H s 34 -0.412099 10 H s - 59 0.347335 19 H s 60 -0.347335 20 H s - 2 0.334881 1 C s 7 -0.334881 2 C s - - Vector 44 Occ=0.000000D+00 E= 3.814709D-01 Symmetry=ag - MO Center= -1.8D-16, 2.2D-16, -2.4D-17, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.575659 13 H s 46 0.575659 14 H s - 12 0.393683 3 C s 17 0.393683 4 C s - 57 -0.394557 17 H s 58 -0.394557 18 H s - 36 -0.382623 11 C s 41 -0.382623 12 C s - 37 0.333509 11 C px 42 -0.333509 12 C px - - Vector 45 Occ=0.000000D+00 E= 4.109949D-01 Symmetry=ag - MO Center= 1.5D-16, 2.9D-16, -2.4D-17, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.652022 15 C s 53 0.652022 16 C s - 22 0.617093 5 C s 27 0.617093 6 C s - 57 -0.511635 17 H s 58 -0.511635 18 H s - 12 -0.451272 3 C s 17 -0.451272 4 C s - 59 -0.326170 19 H s 60 -0.326170 20 H s - - Vector 46 Occ=0.000000D+00 E= 4.119808D-01 Symmetry=bu - MO Center= 9.5D-16, 4.3D-15, 1.8D-22, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 22 0.614303 5 C s 27 -0.614303 6 C s - 48 0.538475 15 C s 53 -0.538475 16 C s - 2 0.478807 1 C s 7 -0.478807 2 C s - 57 -0.448915 17 H s 58 0.448915 18 H s - 12 -0.443313 3 C s 17 0.443313 4 C s - - Vector 47 Occ=0.000000D+00 E= 4.267657D-01 Symmetry=bu - MO Center= 2.4D-15, -1.5D-15, -9.3D-22, r^2= 9.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 31 0.598893 7 H s 32 -0.598893 8 H s - 36 -0.457437 11 C s 41 0.457437 12 C s - 45 0.441426 13 H s 46 -0.441426 14 H s - 12 -0.356309 3 C s 17 0.356309 4 C s - 59 0.338510 19 H s 60 -0.338510 20 H s - - Vector 48 Occ=0.000000D+00 E= 4.396556D-01 Symmetry=ag - MO Center= -2.9D-15, -1.0D-13, 1.1D-16, r^2= 7.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.784950 1 C s 7 0.784950 2 C s - 36 -0.563801 11 C s 41 -0.563801 12 C s - 12 -0.489818 3 C s 17 -0.489818 4 C s - 22 -0.418175 5 C s 27 -0.418175 6 C s - 48 0.410492 15 C s 53 0.410492 16 C s - - Vector 49 Occ=0.000000D+00 E= 4.527008D-01 Symmetry=bu - MO Center= -1.9D-16, 1.0D-13, -3.4D-22, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.711876 15 C s 53 -0.711876 16 C s - 57 -0.525151 17 H s 58 0.525151 18 H s - 33 0.472402 9 H s 34 -0.472402 10 H s - 36 -0.430359 11 C s 41 0.430359 12 C s - 22 -0.408965 5 C s 27 0.408965 6 C s - - Vector 50 Occ=0.000000D+00 E= 4.782347D-01 Symmetry=ag - MO Center= 7.5D-16, -2.7D-15, 4.0D-18, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.708890 3 C s 17 0.708890 4 C s - 22 -0.614900 5 C s 27 -0.614900 6 C s - 59 -0.475543 19 H s 60 -0.475543 20 H s - 48 0.413809 15 C s 53 0.413809 16 C s - 50 -0.383838 15 C py 55 0.383838 16 C py - - Vector 51 Occ=0.000000D+00 E= 5.262514D-01 Symmetry=ag - MO Center= 6.5D-16, -3.9D-15, -1.2D-17, r^2= 6.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 4 0.601044 1 C py 9 -0.601044 2 C py - 36 -0.486370 11 C s 41 -0.486370 12 C s - 13 -0.462725 3 C px 18 0.462725 4 C px - 2 -0.448674 1 C s 7 -0.448674 2 C s - 49 -0.343436 15 C px 54 0.343436 16 C px - - Vector 52 Occ=0.000000D+00 E= 5.458062D-01 Symmetry=bu - MO Center= 1.3D-16, -4.9D-16, -1.1D-22, r^2= 7.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.649685 3 C s 17 -0.649685 4 C s - 3 -0.562507 1 C px 8 -0.562507 2 C px - 50 0.482812 15 C py 55 0.482812 16 C py - 24 -0.475242 5 C py 29 -0.475242 6 C py - 59 0.355954 19 H s 60 -0.355954 20 H s - - Vector 53 Occ=0.000000D+00 E= 5.760079D-01 Symmetry=ag - MO Center= 5.8D-16, 2.5D-15, 1.6D-17, r^2= 5.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 -0.532951 5 C px 28 0.532951 6 C px - 13 0.526888 3 C px 18 -0.526888 4 C px - 33 0.519038 9 H s 34 0.519038 10 H s - 31 -0.447212 7 H s 32 -0.447212 8 H s - 24 0.396501 5 C py 29 -0.396501 6 C py - - Vector 54 Occ=0.000000D+00 E= 5.994758D-01 Symmetry=bu - MO Center= 4.3D-17, 2.4D-15, 2.1D-22, r^2= 4.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 14 0.721180 3 C py 19 0.721180 4 C py - 22 0.602462 5 C s 27 -0.602462 6 C s - 36 -0.418131 11 C s 41 0.418131 12 C s - 2 -0.394333 1 C s 7 0.394333 2 C s - 24 0.396286 5 C py 29 0.396286 6 C py - - Vector 55 Occ=0.000000D+00 E= 6.250337D-01 Symmetry=bu - MO Center= 1.1D-15, 1.8D-14, 4.4D-23, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.613343 1 C s 7 -0.613343 2 C s - 49 -0.524780 15 C px 54 -0.524780 16 C px - 38 0.478235 11 C py 43 0.478235 12 C py - 23 -0.371951 5 C px 28 -0.371951 6 C px - 57 0.359604 17 H s 58 -0.359604 18 H s - - Vector 56 Occ=0.000000D+00 E= 6.396639D-01 Symmetry=ag - MO Center= -1.6D-15, -2.3D-14, 1.2D-17, r^2= 9.4D+00 + 3 0.124907 1 C px 8 0.124907 2 C px + 21 -0.120401 5 C s 26 0.120401 6 C s + + Vector 15 Occ=2.000000D+00 E=-6.675124D-01 Symmetry=bu + MO Center= 1.8D-16, 2.2D-15, -1.4D-26, r^2= 9.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.299748 15 C s 53 -0.299748 16 C s + 2 0.274029 1 C s 7 -0.274029 2 C s + 22 -0.200677 5 C s 27 0.200677 6 C s + 36 0.136864 11 C s 41 -0.136864 12 C s + 38 -0.129048 11 C py 43 -0.129048 12 C py + + Vector 16 Occ=2.000000D+00 E=-5.887149D-01 Symmetry=ag + MO Center= -8.8D-18, -1.2D-15, -6.3D-34, r^2= 8.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.242755 15 C s 53 0.242755 16 C s + 22 0.232204 5 C s 27 0.232204 6 C s + 2 -0.206920 1 C s 7 -0.206920 2 C s + 14 -0.159641 3 C py 19 0.159641 4 C py + 36 -0.159460 11 C s 41 -0.159460 12 C s + + Vector 17 Occ=2.000000D+00 E=-5.589267D-01 Symmetry=ag + MO Center= 7.4D-16, 3.1D-15, -1.4D-17, r^2= 5.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.326154 3 C s 17 0.326154 4 C s + 3 0.185898 1 C px 8 -0.185898 2 C px + 22 -0.172082 5 C s 27 -0.172082 6 C s + 24 0.170130 5 C py 29 -0.170130 6 C py + 31 0.169719 7 H s 32 0.169719 8 H s + + Vector 18 Occ=2.000000D+00 E=-5.316676D-01 Symmetry=bu + MO Center= -8.7D-16, -1.5D-15, 6.3D-32, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.302586 11 C s 41 -0.302586 12 C s + 48 -0.249262 15 C s 53 0.249262 16 C s + 45 0.170553 13 H s 46 -0.170553 14 H s + 57 -0.160341 17 H s 58 0.160341 18 H s + 12 0.154559 3 C s 17 -0.154559 4 C s + + Vector 19 Occ=2.000000D+00 E=-5.101867D-01 Symmetry=ag + MO Center= 6.5D-16, 5.4D-16, -7.6D-17, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.202139 5 C px 28 -0.202139 6 C px + 13 0.183789 3 C px 18 -0.183789 4 C px + 36 0.180857 11 C s 41 0.180857 12 C s + 33 0.169713 9 H s 34 0.169713 10 H s + 22 0.166820 5 C s 27 0.166820 6 C s + + Vector 20 Occ=2.000000D+00 E=-4.574291D-01 Symmetry=ag + MO Center= 2.5D-15, -1.2D-14, -9.8D-17, r^2= 9.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.212970 15 C px 54 -0.212970 16 C px + 38 0.184737 11 C py 43 -0.184737 12 C py + 57 0.179066 17 H s 58 0.179066 18 H s + 45 -0.152664 13 H s 46 -0.152664 14 H s + 14 0.140964 3 C py 19 -0.140964 4 C py + + Vector 21 Occ=2.000000D+00 E=-4.393488D-01 Symmetry=bu + MO Center= -1.4D-15, 4.5D-15, -5.2D-24, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.219772 11 C px 42 0.219772 12 C px + 50 0.209578 15 C py 55 0.209578 16 C py + 14 0.184836 3 C py 19 0.184836 4 C py + 59 -0.177451 19 H s 60 0.177451 20 H s + 45 -0.155847 13 H s 46 0.155847 14 H s + + Vector 22 Occ=2.000000D+00 E=-4.106308D-01 Symmetry=bu + MO Center= 3.4D-15, 5.8D-15, -5.8D-23, r^2= 6.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.234218 1 C s 7 -0.234218 2 C s + 33 0.231051 9 H s 34 -0.231051 10 H s + 31 -0.225180 7 H s 32 0.225180 8 H s + 13 -0.220072 3 C px 18 -0.220072 4 C px + 24 -0.178850 5 C py 29 -0.178850 6 C py + + Vector 23 Occ=2.000000D+00 E=-3.979485D-01 Symmetry=bu + MO Center= 1.2D-14, -1.0D-13, 2.4D-22, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.251042 5 C px 28 0.251042 6 C px + 49 0.251297 15 C px 54 0.251297 16 C px + 3 -0.218954 1 C px 8 -0.218954 2 C px + 57 0.215793 17 H s 58 -0.215793 18 H s + 38 0.182113 11 C py 43 0.182113 12 C py + + Vector 24 Occ=2.000000D+00 E=-3.960808D-01 Symmetry=ag + MO Center= -2.5D-14, 1.2D-13, 3.3D-17, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.338860 15 C py 55 -0.338860 16 C py + 59 -0.261998 19 H s 60 -0.261998 20 H s + 37 0.252281 11 C px 42 -0.252281 12 C px + 45 -0.145867 13 H s 46 -0.145867 14 H s + 24 0.135966 5 C py 29 -0.135966 6 C py + + Vector 25 Occ=2.000000D+00 E=-3.739841D-01 Symmetry=bu + MO Center= 9.5D-15, -1.6D-14, -6.6D-23, r^2= 4.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 13 0.308788 3 C px 18 0.308788 4 C px + 31 0.253668 7 H s 32 -0.253668 8 H s + 24 -0.224637 5 C py 29 -0.224637 6 C py + 33 0.217053 9 H s 34 -0.217053 10 H s + 23 0.188307 5 C px 28 0.188307 6 C px + + Vector 26 Occ=2.000000D+00 E=-3.511583D-01 Symmetry=bu + MO Center= -6.3D-15, -1.6D-14, 7.1D-24, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.245290 15 C py 55 -0.245290 16 C py + 14 0.225091 3 C py 19 0.225091 4 C py + 37 -0.201410 11 C px 42 -0.201410 12 C px + 24 -0.194730 5 C py 29 -0.194730 6 C py + 38 0.186225 11 C py 43 0.186225 12 C py + + Vector 27 Occ=2.000000D+00 E=-3.472814D-01 Symmetry=ag + MO Center= 5.3D-15, 1.2D-14, -3.5D-16, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.295548 15 C px 54 -0.295548 16 C px + 57 0.268071 17 H s 58 0.268071 18 H s + 37 -0.207830 11 C px 42 0.207830 12 C px + 45 0.199863 13 H s 46 0.199863 14 H s + 31 -0.155819 7 H s 32 -0.155819 8 H s + + Vector 28 Occ=2.000000D+00 E=-3.245156D-01 Symmetry=au + MO Center= -1.2D-17, 5.5D-17, 7.3D-16, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.337538 1 C pz 10 0.337538 2 C pz + 15 0.297871 3 C pz 20 0.297871 4 C pz + 25 0.297226 5 C pz 30 0.297226 6 C pz + 39 0.174020 11 C pz 44 0.174020 12 C pz + 51 0.092460 15 C pz 56 0.092460 16 C pz + + Vector 29 Occ=2.000000D+00 E=-3.112351D-01 Symmetry=bu + MO Center= 7.6D-16, 4.3D-15, 5.9D-24, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.258785 13 H s 46 -0.258785 14 H s + 4 0.242405 1 C py 9 0.242405 2 C py + 57 0.230617 17 H s 58 -0.230617 18 H s + 37 -0.216923 11 C px 42 -0.216923 12 C px + 59 -0.213078 19 H s 60 0.213078 20 H s + + Vector 30 Occ=2.000000D+00 E=-2.927966D-01 Symmetry=ag + MO Center= 4.1D-17, -8.6D-16, 5.4D-17, r^2= 6.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 -0.278538 3 C py 19 0.278538 4 C py + 4 0.269955 1 C py 9 -0.269955 2 C py + 38 0.249300 11 C py 43 -0.249300 12 C py + 33 -0.238065 9 H s 34 -0.238065 10 H s + 24 0.235483 5 C py 29 -0.235483 6 C py + + Vector 31 Occ=2.000000D+00 E=-2.874573D-01 Symmetry=ag + MO Center= -7.4D-16, 2.6D-16, -1.0D-17, r^2= 6.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.298380 1 C px 8 -0.298380 2 C px + 23 0.281375 5 C px 28 -0.281375 6 C px + 31 -0.259036 7 H s 32 -0.259036 8 H s + 13 -0.224951 3 C px 18 0.224951 4 C px + 45 -0.180984 13 H s 46 -0.180984 14 H s + + Vector 32 Occ=2.000000D+00 E=-2.635547D-01 Symmetry=bg + MO Center= -2.3D-17, -1.7D-16, -1.5D-22, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.551433 11 C px 42 -0.551433 12 C px - 50 -0.534331 15 C py 55 0.534331 16 C py - 14 0.380862 3 C py 19 -0.380862 4 C py - 4 -0.365311 1 C py 9 0.365311 2 C py - 59 -0.331967 19 H s 60 -0.331967 20 H s - - Vector 57 Occ=0.000000D+00 E= 6.829618D-01 Symmetry=ag - MO Center= -3.6D-17, -2.4D-15, -8.9D-17, r^2= 9.3D+00 + 39 -0.376546 11 C pz 44 0.376546 12 C pz + 5 0.348917 1 C pz 10 -0.348917 2 C pz + 51 -0.271389 15 C pz 56 0.271389 16 C pz + 25 -0.132775 5 C pz 30 0.132775 6 C pz + 15 0.130802 3 C pz 20 -0.130802 4 C pz + + Vector 33 Occ=2.000000D+00 E=-2.124520D-01 Symmetry=au + MO Center= -5.0D-15, 3.8D-16, 5.2D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 38 0.662656 11 C py 43 -0.662656 12 C py - 49 -0.579446 15 C px 54 0.579446 16 C px - 24 -0.448605 5 C py 29 0.448605 6 C py - 14 -0.395333 3 C py 19 0.395333 4 C py - 4 -0.383127 1 C py 9 0.383127 2 C py - - Vector 58 Occ=0.000000D+00 E= 7.172980D-01 Symmetry=bu - MO Center= 5.6D-16, 9.1D-15, 3.6D-23, r^2= 9.6D+00 + 51 0.417878 15 C pz 56 0.417878 16 C pz + 39 0.413793 11 C pz 44 0.413793 12 C pz + 15 -0.179184 3 C pz 20 -0.179184 4 C pz + 25 -0.176752 5 C pz 30 -0.176752 6 C pz + + Vector 34 Occ=2.000000D+00 E=-1.950605D-01 Symmetry=bg + MO Center= 5.3D-15, -5.2D-16, 2.2D-18, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.608412 11 C px 42 0.608412 12 C px - 50 -0.540485 15 C py 55 -0.540485 16 C py - 48 -0.536286 15 C s 53 0.536286 16 C s - 36 0.465778 11 C s 41 -0.465778 12 C s - 38 -0.463446 11 C py 43 -0.463446 12 C py - - Vector 59 Occ=0.000000D+00 E= 7.795874D-01 Symmetry=ag - MO Center= -4.4D-16, 5.1D-15, -4.7D-16, r^2= 5.4D+00 + 15 0.463068 3 C pz 20 -0.463068 4 C pz + 25 0.458187 5 C pz 30 -0.458187 6 C pz + + Vector 35 Occ=2.000000D+00 E=-1.530836D-01 Symmetry=bg + MO Center= 5.2D-16, 6.7D-17, -2.6D-18, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 3 0.701595 1 C px 8 -0.701595 2 C px - 14 -0.535853 3 C py 19 0.535853 4 C py - 23 -0.436280 5 C px 28 0.436280 6 C px - 37 0.428833 11 C px 42 -0.428833 12 C px - 24 -0.413306 5 C py 29 0.413306 6 C py - - Vector 60 Occ=0.000000D+00 E= 7.946154D-01 Symmetry=bu - MO Center= 9.3D-16, -7.6D-15, 8.3D-26, r^2= 3.4D+00 + 51 0.397413 15 C pz 56 -0.397413 16 C pz + 5 0.387579 1 C pz 10 -0.387579 2 C pz + 25 -0.228763 5 C pz 30 0.228763 6 C pz + 39 0.223616 11 C pz 44 -0.223616 12 C pz + 15 0.217019 3 C pz 20 -0.217019 4 C pz + + Vector 36 Occ=0.000000D+00 E= 3.741067D-02 Symmetry=au + MO Center= -2.6D-16, -8.7D-16, 1.5D-17, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.657760 1 C py 9 0.657760 2 C py - 13 -0.565781 3 C px 18 -0.565781 4 C px - 23 0.501307 5 C px 28 0.501307 6 C px - 22 -0.418182 5 C s 27 0.418182 6 C s - 24 -0.388928 5 C py 29 -0.388928 6 C py - + 51 -0.449948 15 C pz 56 -0.449948 16 C pz + 5 0.442438 1 C pz 10 0.442438 2 C pz + 25 -0.276585 5 C pz 30 -0.276585 6 C pz + 39 0.256340 11 C pz 44 0.256340 12 C pz + 15 -0.232883 3 C pz 20 -0.232883 4 C pz + + Vector 37 Occ=0.000000D+00 E= 9.037226D-02 Symmetry=au + MO Center= -4.1D-15, 4.1D-16, 4.4D-17, r^2= 2.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 15 0.582605 3 C pz 20 0.582605 4 C pz + 25 -0.553519 5 C pz 30 -0.553519 6 C pz + 5 -0.031559 1 C pz 10 -0.031559 2 C pz + + Vector 38 Occ=0.000000D+00 E= 1.106158D-01 Symmetry=bg + MO Center= 3.4D-15, 4.9D-15, -6.4D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 0.522244 11 C pz 44 -0.522244 12 C pz + 51 -0.523184 15 C pz 56 0.523184 16 C pz + 15 0.240578 3 C pz 20 -0.240578 4 C pz + 25 -0.232018 5 C pz 30 0.232018 6 C pz + + Vector 39 Occ=0.000000D+00 E= 1.822159D-01 Symmetry=au + MO Center= 1.4D-17, -1.7D-15, 4.6D-18, r^2= 7.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.529015 11 C pz 44 -0.529015 12 C pz + 5 0.497573 1 C pz 10 0.497573 2 C pz + 51 0.379409 15 C pz 56 0.379409 16 C pz + 25 -0.199831 5 C pz 30 -0.199831 6 C pz + 15 -0.166299 3 C pz 20 -0.166299 4 C pz + + Vector 40 Occ=0.000000D+00 E= 2.725378D-01 Symmetry=bg + MO Center= 5.4D-16, -2.5D-15, 1.3D-18, r^2= 3.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.543554 1 C pz 10 -0.543554 2 C pz + 25 0.467245 5 C pz 30 -0.467245 6 C pz + 15 -0.464177 3 C pz 20 0.464177 4 C pz + 39 0.287580 11 C pz 44 -0.287580 12 C pz + 51 -0.155897 15 C pz 56 0.155897 16 C pz + + Vector 41 Occ=0.000000D+00 E= 3.322217D-01 Symmetry=ag + MO Center= -2.8D-14, -4.8D-14, 1.6D-17, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 33 -0.422733 9 H s 34 -0.422733 10 H s + 31 -0.413118 7 H s 32 -0.413118 8 H s + 2 0.401830 1 C s 7 0.401830 2 C s + 59 -0.356678 19 H s 60 -0.356678 20 H s + 38 -0.338873 11 C py 43 0.338873 12 C py + + Vector 42 Occ=0.000000D+00 E= 3.407201D-01 Symmetry=bu + MO Center= 2.7D-14, 4.7D-14, 2.8D-19, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.434954 13 H s 46 -0.434954 14 H s + 13 0.355270 3 C px 18 0.355270 4 C px + 37 0.345502 11 C px 42 0.345502 12 C px + 57 -0.323890 17 H s 58 0.323890 18 H s + 31 -0.319692 7 H s 32 0.319692 8 H s + + Vector 43 Occ=0.000000D+00 E= 3.794023D-01 Symmetry=bu + MO Center= -9.7D-16, 1.0D-14, -2.2D-19, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.541960 11 C s 41 -0.541960 12 C s + 4 0.460267 1 C py 9 0.460267 2 C py + 33 0.412078 9 H s 34 -0.412078 10 H s + 59 0.346640 19 H s 60 -0.346640 20 H s + 2 0.334861 1 C s 7 -0.334861 2 C s + + Vector 44 Occ=0.000000D+00 E= 3.814646D-01 Symmetry=ag + MO Center= 1.6D-15, -7.9D-16, -3.7D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.575577 13 H s 46 0.575577 14 H s + 12 0.393727 3 C s 17 0.393727 4 C s + 57 -0.394540 17 H s 58 -0.394540 18 H s + 36 -0.382601 11 C s 41 -0.382601 12 C s + 37 0.333449 11 C px 42 -0.333449 12 C px + + Vector 45 Occ=0.000000D+00 E= 4.110215D-01 Symmetry=ag + MO Center= 2.9D-13, -8.5D-13, -2.0D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.651976 15 C s 53 0.651976 16 C s + 22 0.617378 5 C s 27 0.617378 6 C s + 57 -0.511453 17 H s 58 -0.511453 18 H s + 12 -0.451157 3 C s 17 -0.451157 4 C s + 59 -0.326184 19 H s 60 -0.326184 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.120118D-01 Symmetry=bu + MO Center= -3.0D-13, 8.4D-13, -1.4D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.614362 5 C s 27 -0.614362 6 C s + 48 0.538510 15 C s 53 -0.538510 16 C s + 2 0.478809 1 C s 7 -0.478809 2 C s + 57 -0.448832 17 H s 58 0.448832 18 H s + 12 -0.443511 3 C s 17 0.443511 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.267529D-01 Symmetry=bu + MO Center= 3.8D-15, 5.5D-15, -1.3D-18, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.598752 7 H s 32 -0.598752 8 H s + 36 -0.457165 11 C s 41 0.457165 12 C s + 45 0.441390 13 H s 46 -0.441390 14 H s + 12 -0.356090 3 C s 17 0.356090 4 C s + 59 0.338978 19 H s 60 -0.338978 20 H s + + Vector 48 Occ=0.000000D+00 E= 4.396376D-01 Symmetry=ag + MO Center= -4.7D-16, -2.7D-14, 1.2D-17, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.784584 1 C s 7 0.784584 2 C s + 36 -0.564008 11 C s 41 -0.564008 12 C s + 12 -0.489821 3 C s 17 -0.489821 4 C s + 22 -0.417933 5 C s 27 -0.417933 6 C s + 48 0.410834 15 C s 53 0.410834 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.527257D-01 Symmetry=bu + MO Center= 1.8D-15, 2.0D-14, 3.3D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.711943 15 C s 53 -0.711943 16 C s + 57 -0.525054 17 H s 58 0.525054 18 H s + 33 0.472530 9 H s 34 -0.472530 10 H s + 36 -0.430322 11 C s 41 0.430322 12 C s + 22 -0.408783 5 C s 27 0.408783 6 C s + + Vector 50 Occ=0.000000D+00 E= 4.782775D-01 Symmetry=ag + MO Center= 1.7D-17, 1.9D-15, 2.2D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.708915 3 C s 17 0.708915 4 C s + 22 -0.614912 5 C s 27 -0.614912 6 C s + 59 -0.475500 19 H s 60 -0.475500 20 H s + 48 0.413876 15 C s 53 0.413876 16 C s + 50 -0.383755 15 C py 55 0.383755 16 C py + + Vector 51 Occ=0.000000D+00 E= 5.262660D-01 Symmetry=ag + MO Center= -8.4D-16, -9.0D-15, -7.6D-18, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.600855 1 C py 9 -0.600855 2 C py + 36 -0.486199 11 C s 41 -0.486199 12 C s + 13 -0.462503 3 C px 18 0.462503 4 C px + 2 -0.449270 1 C s 7 -0.449270 2 C s + 49 -0.343566 15 C px 54 0.343566 16 C px + + Vector 52 Occ=0.000000D+00 E= 5.458321D-01 Symmetry=bu + MO Center= -1.8D-15, 1.8D-15, 8.7D-19, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.649823 3 C s 17 -0.649823 4 C s + 3 -0.562525 1 C px 8 -0.562525 2 C px + 50 0.482769 15 C py 55 0.482769 16 C py + 24 -0.475303 5 C py 29 -0.475303 6 C py + 59 0.355947 19 H s 60 -0.355947 20 H s + + Vector 53 Occ=0.000000D+00 E= 5.760100D-01 Symmetry=ag + MO Center= 6.2D-16, -9.9D-16, -3.0D-18, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 -0.532635 5 C px 28 0.532635 6 C px + 13 0.527221 3 C px 18 -0.527221 4 C px + 33 0.519112 9 H s 34 0.519112 10 H s + 31 -0.447490 7 H s 32 -0.447490 8 H s + 24 0.396750 5 C py 29 -0.396750 6 C py + + Vector 54 Occ=0.000000D+00 E= 5.994730D-01 Symmetry=bu + MO Center= 3.1D-16, 3.1D-15, 2.7D-18, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 0.721052 3 C py 19 0.721052 4 C py + 22 0.602932 5 C s 27 -0.602932 6 C s + 36 -0.418412 11 C s 41 0.418412 12 C s + 24 0.395964 5 C py 29 0.395964 6 C py + 2 -0.393434 1 C s 7 0.393434 2 C s + + Vector 55 Occ=0.000000D+00 E= 6.249747D-01 Symmetry=bu + MO Center= 3.8D-16, -5.1D-16, 1.6D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.613785 1 C s 7 -0.613785 2 C s + 49 -0.524677 15 C px 54 -0.524677 16 C px + 38 0.478421 11 C py 43 0.478421 12 C py + 23 -0.372140 5 C px 28 -0.372140 6 C px + 57 0.359538 17 H s 58 -0.359538 18 H s + + Vector 56 Occ=0.000000D+00 E= 6.396564D-01 Symmetry=ag + MO Center= -2.0D-15, -1.0D-14, -4.2D-18, r^2= 9.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.551405 11 C px 42 -0.551405 12 C px + 50 -0.534367 15 C py 55 0.534367 16 C py + 14 0.380542 3 C py 19 -0.380542 4 C py + 4 -0.365570 1 C py 9 0.365570 2 C py + 59 -0.332005 19 H s 60 -0.332005 20 H s + + Vector 57 Occ=0.000000D+00 E= 6.828688D-01 Symmetry=ag + MO Center= -1.1D-15, -2.5D-16, -9.5D-18, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.662578 11 C py 43 -0.662578 12 C py + 49 -0.579417 15 C px 54 0.579417 16 C px + 24 -0.448567 5 C py 29 0.448567 6 C py + 14 -0.395319 3 C py 19 0.395319 4 C py + 4 -0.383083 1 C py 9 0.383083 2 C py + + Vector 58 Occ=0.000000D+00 E= 7.172708D-01 Symmetry=bu + MO Center= 4.0D-16, 7.8D-15, -4.5D-19, r^2= 9.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.608566 11 C px 42 0.608566 12 C px + 50 -0.540574 15 C py 55 -0.540574 16 C py + 48 -0.536027 15 C s 53 0.536027 16 C s + 36 0.465454 11 C s 38 -0.463333 11 C py + 41 -0.465454 12 C s 43 -0.463333 12 C py + + Vector 59 Occ=0.000000D+00 E= 7.795857D-01 Symmetry=ag + MO Center= 2.0D-15, 6.3D-15, -2.0D-19, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.701698 1 C px 8 -0.701698 2 C px + 14 -0.535913 3 C py 19 0.535913 4 C py + 23 -0.436403 5 C px 28 0.436403 6 C px + 37 0.428812 11 C px 42 -0.428812 12 C px + 24 -0.413308 5 C py 29 0.413308 6 C py + + Vector 60 Occ=0.000000D+00 E= 7.946114D-01 Symmetry=bu + MO Center= -1.1D-15, -1.9D-15, 1.1D-20, r^2= 3.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.657810 1 C py 9 0.657810 2 C py + 13 -0.566038 3 C px 18 -0.566038 4 C px + 23 0.501466 5 C px 28 0.501466 6 C px + 22 -0.418037 5 C s 27 0.418037 6 C s + 24 -0.388898 5 C py 29 -0.388898 6 C py + center of mass -------------- @@ -4069,104 +4121,106 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2634.979943633768 0.248155278092 0.000000000000 - 0.248155278092 390.055048856857 0.000000000000 - 0.000000000000 0.000000000000 3025.034992490625 - + 2635.004514883490 0.199378437599 0.000000000000 + 0.199378437599 390.064016416268 0.000000000000 + 0.000000000000 0.000000000000 3025.068531299757 + Multipole analysis of the density --------------------------------- - + L x y z total alpha beta nuclear - - - - ----- ----- ---- ------- 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 - - 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 0.000000 1 0 1 0 0.000000 0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - - 2 2 0 0 -37.340741 -140.886641 -140.886641 244.432541 - 2 1 1 0 0.052766 2.897420 2.897420 -5.742074 + + 2 2 0 0 -37.340441 -140.889763 -140.889763 244.439085 + 2 1 1 0 0.051836 2.886960 2.886960 -5.722085 2 1 0 1 0.000000 0.000000 0.000000 0.000000 - 2 0 2 0 -37.704668 -768.204999 -768.204999 1498.705331 + 2 0 2 0 -37.705319 -768.210515 -768.210515 1498.715712 2 0 1 1 0.000000 0.000000 0.000000 0.000000 - 2 0 0 2 -43.586375 -21.793187 -21.793187 0.000000 + 2 0 0 2 -43.586422 -21.793211 -21.793211 0.000000 + + + Parallel integral file used 9 records with 0 large values Line search: - step= 1.00 grad=-3.4D-06 hess= 1.8D-06 energy= -382.308261 mode=accept - new step= 1.00 predicted energy= -382.308261 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 + step= 1.00 grad=-1.9D-06 hess= 1.0D-06 energy= -382.308262 mode=accept + new step= 1.00 predicted energy= -382.308262 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 -------- Step 2 -------- - - + + Geometry "geometry" -> "geometry" --------------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.23494737 1.41621750 0.00000000 - 2 C 6.0000 -0.23494737 -1.41621750 0.00000000 - 3 C 6.0000 1.31386079 0.48921213 0.00000000 - 4 C 6.0000 -1.31386079 -0.48921213 0.00000000 - 5 C 6.0000 1.08700002 -0.89440677 0.00000000 - 6 C 6.0000 -1.08700002 0.89440677 0.00000000 - 7 H 1.0000 2.34421732 0.87055376 0.00000000 - 8 H 1.0000 -2.34421732 -0.87055376 0.00000000 - 9 H 1.0000 1.94346655 -1.58086975 0.00000000 - 10 H 1.0000 -1.94346655 1.58086975 0.00000000 - 11 C 6.0000 -0.53373848 -2.88356296 0.00000000 - 12 C 6.0000 0.53373848 2.88356296 0.00000000 - 13 H 1.0000 -1.60633187 -3.12949359 0.00000000 - 14 H 1.0000 1.60633187 3.12949359 0.00000000 - 15 C 6.0000 0.36351571 -3.88447897 0.00000000 - 16 C 6.0000 -0.36351571 3.88447897 0.00000000 - 17 H 1.0000 1.44541455 -3.70914127 0.00000000 - 18 H 1.0000 -1.44541455 3.70914127 0.00000000 - 19 H 1.0000 0.04454750 -4.93327671 0.00000000 - 20 H 1.0000 -0.04454750 4.93327671 0.00000000 - + 1 C 6.0000 0.23502264 1.41619612 0.00000000 + 2 C 6.0000 -0.23502264 -1.41619612 0.00000000 + 3 C 6.0000 1.31387896 0.48920741 0.00000000 + 4 C 6.0000 -1.31387896 -0.48920741 0.00000000 + 5 C 6.0000 1.08692421 -0.89443863 0.00000000 + 6 C 6.0000 -1.08692421 0.89443863 0.00000000 + 7 H 1.0000 2.34430474 0.87032956 0.00000000 + 8 H 1.0000 -2.34430474 -0.87032956 0.00000000 + 9 H 1.0000 1.94341431 -1.58079754 0.00000000 + 10 H 1.0000 -1.94341431 1.58079754 0.00000000 + 11 C 6.0000 -0.53388380 -2.88361062 0.00000000 + 12 C 6.0000 0.53388380 2.88361062 0.00000000 + 13 H 1.0000 -1.60649934 -3.12944182 0.00000000 + 14 H 1.0000 1.60649934 3.12944182 0.00000000 + 15 C 6.0000 0.36349137 -3.88448736 0.00000000 + 16 C 6.0000 -0.36349137 3.88448736 0.00000000 + 17 H 1.0000 1.44534605 -3.70899270 0.00000000 + 18 H 1.0000 -1.44534605 3.70899270 0.00000000 + 19 H 1.0000 0.04493628 -4.93342948 0.00000000 + 20 H 1.0000 -0.04493628 4.93342948 0.00000000 + Atomic Mass ----------- - + C 12.000000 H 1.007825 + - - Effective nuclear repulsion energy (a.u.) 445.9020204984 + Effective nuclear repulsion energy (a.u.) 445.8991833732 Nuclear Dipole moment (a.u.) ---------------------------- X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - - + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + Summary of "ao basis" -> "ao basis" (cartesian) @@ -4179,18 +4233,18 @@ Divinylbenzene in STO-3G basis set Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 - + The DFT is already converged - Total DFT energy = -382.308261345385 - + Total DFT energy = -382.308261561162 + General Information ------------------- SCF calculation type: DFT @@ -4208,7 +4262,7 @@ Divinylbenzene in STO-3G basis set Convergence on energy requested: 1.00D-06 Convergence on density requested: 1.00D-05 Convergence on gradient requested: 5.00D-04 - + XC Information -------------- B3LYP Method XC Potential @@ -4217,7 +4271,7 @@ Divinylbenzene in STO-3G basis set Becke 1988 Exchange Functional 0.720 non-local Lee-Yang-Parr Correlation Functional 0.810 VWN I RPA Correlation Functional 0.190 local - + Grid Information ---------------- Grid used for XC integration: medium @@ -4230,7 +4284,7 @@ Divinylbenzene in STO-3G basis set Grid pruning is: on Number of quadrature shells: 470 Spatial weights used: Erf1 - + Convergence Information ----------------------- Convergence aids based upon iterative change in @@ -4245,7 +4299,7 @@ Divinylbenzene in STO-3G basis set dE on: start ASAP start dE off: 2 iters 30 iters 30 iters - + Screening Tolerance Information ------------------------------- Density screening/tol_rho: 1.00D-10 @@ -4254,15 +4308,15 @@ Divinylbenzene in STO-3G basis set XC Gaussian exp screening on grid/accXCfunc: 20 Schwarz screening/accCoul: 1.00D-08 - - + + NWChem DFT Gradient Module -------------------------- - - + + Divinylbenzene in STO-3G basis set - - + + charge = 0.00 wavefunction = closed shell @@ -4274,39 +4328,39 @@ Divinylbenzene in STO-3G basis set atom coordinates gradient x y z x y z - 1 C 0.443986 2.676263 0.000000 0.000008 0.000070 0.000000 - 2 C -0.443986 -2.676263 0.000000 -0.000008 -0.000070 -0.000000 - 3 C 2.482837 0.924477 0.000000 -0.000035 -0.000051 0.000000 - 4 C -2.482837 -0.924477 0.000000 0.000035 0.000051 0.000000 - 5 C 2.054132 -1.690184 0.000000 0.000035 0.000112 0.000000 - 6 C -2.054132 1.690184 0.000000 -0.000035 -0.000112 0.000000 - 7 H 4.429928 1.645108 0.000000 0.000012 0.000004 0.000000 - 8 H -4.429928 -1.645108 0.000000 -0.000012 -0.000004 0.000000 - 9 H 3.672619 -2.987411 0.000000 -0.000011 -0.000032 0.000000 - 10 H -3.672619 2.987411 0.000000 0.000011 0.000032 0.000000 - 11 C -1.008619 -5.449144 0.000000 0.000068 -0.000028 0.000000 - 12 C 1.008619 5.449144 0.000000 -0.000068 0.000028 0.000000 - 13 H -3.035527 -5.913885 0.000000 -0.000006 0.000008 0.000000 - 14 H 3.035527 5.913885 0.000000 0.000006 -0.000008 0.000000 - 15 C 0.686945 -7.340601 0.000000 -0.000057 0.000093 0.000000 - 16 C -0.686945 7.340601 0.000000 0.000057 -0.000093 0.000000 - 17 H 2.731437 -7.009261 0.000000 0.000027 -0.000012 0.000000 - 18 H -2.731437 7.009261 0.000000 -0.000027 0.000012 0.000000 - 19 H 0.084183 -9.322541 0.000000 -0.000012 -0.000004 0.000000 - 20 H -0.084183 9.322541 0.000000 0.000012 0.000004 0.000000 - + 1 C 0.444128 2.676223 0.000000 0.000011 -0.000015 0.000000 + 2 C -0.444128 -2.676223 0.000000 -0.000011 0.000015 0.000000 + 3 C 2.482871 0.924468 0.000000 -0.000040 0.000035 0.000000 + 4 C -2.482871 -0.924468 0.000000 0.000040 -0.000035 -0.000000 + 5 C 2.053989 -1.690244 0.000000 0.000036 0.000043 0.000000 + 6 C -2.053989 1.690244 0.000000 -0.000036 -0.000043 0.000000 + 7 H 4.430094 1.644684 0.000000 0.000012 -0.000017 0.000000 + 8 H -4.430094 -1.644684 0.000000 -0.000012 0.000017 0.000000 + 9 H 3.672521 -2.987274 0.000000 -0.000029 0.000004 0.000000 + 10 H -3.672521 2.987274 0.000000 0.000029 -0.000004 0.000000 + 11 C -1.008894 -5.449234 0.000000 0.000005 -0.000019 0.000000 + 12 C 1.008894 5.449234 0.000000 -0.000005 0.000019 0.000000 + 13 H -3.035844 -5.913788 0.000000 -0.000009 0.000022 0.000000 + 14 H 3.035844 5.913788 0.000000 0.000009 -0.000022 0.000000 + 15 C 0.686899 -7.340617 0.000000 -0.000019 0.000067 0.000000 + 16 C -0.686899 7.340617 0.000000 0.000019 -0.000067 0.000000 + 17 H 2.731308 -7.008980 0.000000 0.000010 -0.000028 0.000000 + 18 H -2.731308 7.008980 0.000000 -0.000010 0.000028 0.000000 + 19 H 0.084917 -9.322830 0.000000 0.000020 -0.000027 0.000000 + 20 H -0.084917 9.322830 0.000000 -0.000020 0.000027 0.000000 + ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.00 | 0.60 | + | CPU | 0.00 | 0.35 | ---------------------------------------- - | WALL | 0.00 | 0.60 | + | WALL | 0.00 | 0.36 | ---------------------------------------- - no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.000000000000000E+000 Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 2 -382.30826135 -1.6D-06 0.00009 0.00002 0.00090 0.00250 14.3 +@ 2 -382.30826156 -9.2D-07 0.00004 0.00001 0.00061 0.00215 8.1 ok ok ok @@ -4315,111 +4369,111 @@ Divinylbenzene in STO-3G basis set -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value Gradient ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- - 1 Stretch 1 3 1.42246 -0.00000 - 2 Stretch 1 6 1.42121 0.00001 - 3 Stretch 1 12 1.49746 -0.00006 - 4 Stretch 2 4 1.42246 -0.00000 - 5 Stretch 2 5 1.42121 0.00001 - 6 Stretch 2 11 1.49746 -0.00006 - 7 Stretch 3 5 1.40209 -0.00006 - 8 Stretch 3 7 1.09866 0.00001 - 9 Stretch 4 6 1.40209 -0.00006 - 10 Stretch 4 8 1.09866 0.00001 - 11 Stretch 5 9 1.09762 0.00001 - 12 Stretch 6 10 1.09762 0.00001 + 1 Stretch 1 3 1.42241 -0.00004 + 2 Stretch 1 6 1.42119 0.00000 + 3 Stretch 1 12 1.49754 -0.00001 + 4 Stretch 2 4 1.42241 -0.00004 + 5 Stretch 2 5 1.42119 0.00000 + 6 Stretch 2 11 1.49754 -0.00001 + 7 Stretch 3 5 1.40214 -0.00003 + 8 Stretch 3 7 1.09865 0.00001 + 9 Stretch 4 6 1.40214 -0.00003 + 10 Stretch 4 8 1.09865 0.00001 + 11 Stretch 5 9 1.09757 -0.00003 + 12 Stretch 6 10 1.09757 -0.00003 13 Stretch 11 13 1.10043 0.00001 - 14 Stretch 11 15 1.34421 -0.00009 + 14 Stretch 11 15 1.34426 -0.00000 15 Stretch 12 14 1.10043 0.00001 - 16 Stretch 12 16 1.34421 -0.00009 - 17 Stretch 15 17 1.09601 0.00002 - 18 Stretch 15 19 1.09623 0.00001 - 19 Stretch 16 18 1.09601 0.00002 - 20 Stretch 16 20 1.09623 0.00001 - 21 Bend 1 3 5 121.35779 0.00000 - 22 Bend 1 3 7 119.02090 0.00000 - 23 Bend 1 6 4 120.85205 -0.00000 - 24 Bend 1 6 10 119.74704 -0.00002 - 25 Bend 1 12 14 114.42351 -0.00001 - 26 Bend 1 12 16 126.61629 0.00001 - 27 Bend 2 4 6 121.35779 0.00000 - 28 Bend 2 4 8 119.02090 0.00000 - 29 Bend 2 5 3 120.85205 -0.00000 - 30 Bend 2 5 9 119.74704 -0.00002 - 31 Bend 2 11 13 114.42351 -0.00001 - 32 Bend 2 11 15 126.61629 0.00001 - 33 Bend 3 1 6 117.79016 -0.00000 - 34 Bend 3 1 12 119.15965 -0.00001 - 35 Bend 3 5 9 119.40091 0.00002 - 36 Bend 4 2 5 117.79016 -0.00000 - 37 Bend 4 2 11 119.15965 -0.00001 - 38 Bend 4 6 10 119.40091 0.00002 - 39 Bend 5 2 11 123.05019 0.00001 - 40 Bend 5 3 7 119.62131 -0.00000 - 41 Bend 6 1 12 123.05019 0.00001 - 42 Bend 6 4 8 119.62131 -0.00000 - 43 Bend 11 15 17 122.66851 0.00002 - 44 Bend 11 15 19 121.20994 -0.00001 - 45 Bend 12 16 18 122.66851 0.00002 - 46 Bend 12 16 20 121.20994 -0.00001 - 47 Bend 13 11 15 118.96020 -0.00000 - 48 Bend 14 12 16 118.96020 -0.00000 - 49 Bend 17 15 19 116.12155 -0.00000 - 50 Bend 18 16 20 116.12155 -0.00000 + 16 Stretch 12 16 1.34426 -0.00000 + 17 Stretch 15 17 1.09600 0.00000 + 18 Stretch 15 19 1.09625 0.00002 + 19 Stretch 16 18 1.09600 0.00000 + 20 Stretch 16 20 1.09625 0.00002 + 21 Bend 1 3 5 121.35517 -0.00000 + 22 Bend 1 3 7 119.03190 0.00001 + 23 Bend 1 6 4 120.85367 0.00000 + 24 Bend 1 6 10 119.75404 -0.00001 + 25 Bend 1 12 14 114.42031 -0.00002 + 26 Bend 1 12 16 126.60923 0.00000 + 27 Bend 2 4 6 121.35517 -0.00000 + 28 Bend 2 4 8 119.03190 0.00001 + 29 Bend 2 5 3 120.85367 0.00000 + 30 Bend 2 5 9 119.75404 -0.00001 + 31 Bend 2 11 13 114.42031 -0.00002 + 32 Bend 2 11 15 126.60923 0.00000 + 33 Bend 3 1 6 117.79116 0.00000 + 34 Bend 3 1 12 119.15854 -0.00001 + 35 Bend 3 5 9 119.39229 0.00001 + 36 Bend 4 2 5 117.79116 0.00000 + 37 Bend 4 2 11 119.15854 -0.00001 + 38 Bend 4 6 10 119.39229 0.00001 + 39 Bend 5 2 11 123.05030 0.00001 + 40 Bend 5 3 7 119.61293 -0.00001 + 41 Bend 6 1 12 123.05030 0.00001 + 42 Bend 6 4 8 119.61293 -0.00001 + 43 Bend 11 15 17 122.66500 0.00001 + 44 Bend 11 15 19 121.22784 0.00001 + 45 Bend 12 16 18 122.66500 0.00001 + 46 Bend 12 16 20 121.22784 0.00001 + 47 Bend 13 11 15 118.97046 0.00001 + 48 Bend 14 12 16 118.97046 0.00001 + 49 Bend 17 15 19 116.10716 -0.00002 + 50 Bend 18 16 20 116.10716 -0.00002 51 Torsion 1 3 5 2 0.00000 0.00000 - 52 Torsion 1 3 5 9 180.00000 -0.00000 + 52 Torsion 1 3 5 9 180.00000 0.00000 53 Torsion 1 6 4 2 0.00000 0.00000 - 54 Torsion 1 6 4 8 180.00000 0.00000 - 55 Torsion 1 12 16 18 0.00000 -0.00000 - 56 Torsion 1 12 16 20 180.00000 0.00000 - 57 Torsion 2 4 6 10 180.00000 -0.00000 - 58 Torsion 2 5 3 7 180.00000 0.00000 - 59 Torsion 2 11 15 17 0.00000 0.00000 - 60 Torsion 2 11 15 19 180.00000 0.00000 - 61 Torsion 3 1 6 4 0.00000 -0.00000 - 62 Torsion 3 1 6 10 180.00000 0.00000 - 63 Torsion 3 1 12 14 0.00000 -0.00000 - 64 Torsion 3 1 12 16 180.00000 -0.00000 - 65 Torsion 3 5 2 4 0.00000 -0.00000 - 66 Torsion 3 5 2 11 180.00000 -0.00000 - 67 Torsion 4 2 5 9 180.00000 -0.00000 + 54 Torsion 1 6 4 8 180.00000 -0.00000 + 55 Torsion 1 12 16 18 0.00000 0.00000 + 56 Torsion 1 12 16 20 180.00000 -0.00000 + 57 Torsion 2 4 6 10 180.00000 0.00000 + 58 Torsion 2 5 3 7 180.00000 -0.00000 + 59 Torsion 2 11 15 17 0.00000 -0.00000 + 60 Torsion 2 11 15 19 180.00000 -0.00000 + 61 Torsion 3 1 6 4 0.00000 0.00000 + 62 Torsion 3 1 6 10 180.00000 -0.00000 + 63 Torsion 3 1 12 14 0.00000 0.00000 + 64 Torsion 3 1 12 16 180.00000 0.00000 + 65 Torsion 3 5 2 4 0.00000 0.00000 + 66 Torsion 3 5 2 11 180.00000 0.00000 + 67 Torsion 4 2 5 9 180.00000 0.00000 68 Torsion 4 2 11 13 0.00000 0.00000 - 69 Torsion 4 2 11 15 180.00000 -0.00000 - 70 Torsion 4 6 1 12 180.00000 -0.00000 - 71 Torsion 5 2 4 6 -0.00000 0.00000 - 72 Torsion 5 2 4 8 180.00000 -0.00000 - 73 Torsion 5 2 11 13 180.00000 0.00000 - 74 Torsion 5 2 11 15 0.00000 0.00000 - 75 Torsion 5 3 1 6 0.00000 0.00000 - 76 Torsion 5 3 1 12 180.00000 0.00000 - 77 Torsion 6 1 3 7 180.00000 0.00000 - 78 Torsion 6 1 12 14 180.00000 -0.00000 - 79 Torsion 6 1 12 16 0.00000 -0.00000 - 80 Torsion 6 4 2 11 180.00000 0.00000 - 81 Torsion 7 3 1 12 -0.00000 0.00000 + 69 Torsion 4 2 11 15 180.00000 0.00000 + 70 Torsion 4 6 1 12 180.00000 0.00000 + 71 Torsion 5 2 4 6 0.00000 -0.00000 + 72 Torsion 5 2 4 8 180.00000 0.00000 + 73 Torsion 5 2 11 13 180.00000 -0.00000 + 74 Torsion 5 2 11 15 0.00000 0.00000 + 75 Torsion 5 3 1 6 0.00000 -0.00000 + 76 Torsion 5 3 1 12 180.00000 -0.00000 + 77 Torsion 6 1 3 7 180.00000 -0.00000 + 78 Torsion 6 1 12 14 180.00000 0.00000 + 79 Torsion 6 1 12 16 0.00000 0.00000 + 80 Torsion 6 4 2 11 180.00000 -0.00000 + 81 Torsion 7 3 1 12 0.00000 -0.00000 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 0.00000 + 83 Torsion 8 4 2 11 0.00000 -0.00000 84 Torsion 8 4 6 10 0.00000 -0.00000 - 85 Torsion 9 5 2 11 0.00000 -0.00000 - 86 Torsion 10 6 1 12 0.00000 -0.00000 - 87 Torsion 13 11 15 17 180.00000 -0.00000 - 88 Torsion 13 11 15 19 -0.00000 -0.00000 - 89 Torsion 14 12 16 18 180.00000 -0.00000 - 90 Torsion 14 12 16 20 -0.00000 -0.00000 - - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - + 85 Torsion 9 5 2 11 0.00000 0.00000 + 86 Torsion 10 6 1 12 0.00000 0.00000 + 87 Torsion 13 11 15 17 180.00000 0.00000 + 88 Torsion 13 11 15 19 0.00000 0.00000 + 89 Torsion 14 12 16 18 180.00000 0.00000 + 90 Torsion 14 12 16 20 0.00000 0.00000 + + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + Summary of "ao basis" -> "ao basis" (cartesian) @@ -4432,14 +4486,14 @@ Divinylbenzene in STO-3G basis set Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 - + Caching 1-el integrals - + General Information ------------------- SCF calculation type: DFT @@ -4457,7 +4511,7 @@ Divinylbenzene in STO-3G basis set Convergence on energy requested: 1.00D-06 Convergence on density requested: 1.00D-05 Convergence on gradient requested: 5.00D-04 - + XC Information -------------- B3LYP Method XC Potential @@ -4466,7 +4520,7 @@ Divinylbenzene in STO-3G basis set Becke 1988 Exchange Functional 0.720 non-local Lee-Yang-Parr Correlation Functional 0.810 VWN I RPA Correlation Functional 0.190 local - + Grid Information ---------------- Grid used for XC integration: medium @@ -4479,7 +4533,7 @@ Divinylbenzene in STO-3G basis set Grid pruning is: on Number of quadrature shells: 470 Spatial weights used: Erf1 - + Convergence Information ----------------------- Convergence aids based upon iterative change in @@ -4494,7 +4548,7 @@ Divinylbenzene in STO-3G basis set dE on: start ASAP start dE off: 2 iters 30 iters 30 iters - + Screening Tolerance Information ------------------------------- Density screening/tol_rho: 1.00D-10 @@ -4508,16 +4562,16 @@ Divinylbenzene in STO-3G basis set Divinylbenzene in STO-3G basis set - + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -4527,622 +4581,634 @@ Divinylbenzene in STO-3G basis set 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag + + Time after variat. SCF: 8.2 + Time prior to 1st pass: 8.2 + + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507878 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.470D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 - Time after variat. SCF: 14.3 - Time prior to 1st pass: 14.3 Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 - Max. records in memory = 75 Max. recs in file = ********* + Max. records in memory = 20 Max. recs in file = 2708470 Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 5.89 5890482 + Heap Space remaining (MW): 12.46 12464624 Stack Space remaining (MW): 13.11 13106284 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.3082614551 -8.28D+02 8.87D-06 1.29D-07 15.1 - d= 0,ls=0.0,diis 2 -382.3082614869 -3.18D-08 1.55D-06 1.89D-09 15.7 + d= 0,ls=0.0,diis 1 -382.3082616322 -8.28D+02 4.72D-06 3.31D-08 8.7 + d= 0,ls=0.0,diis 2 -382.3082616403 -8.02D-09 7.55D-07 5.47D-10 8.9 - Total DFT energy = -382.308261486912 - One electron energy = -1400.555899678923 - Coulomb energy = 630.197577703900 - Exchange-Corr. energy = -57.843634583388 - Nuclear repulsion energy = 445.893695071500 + Total DFT energy = -382.308261640255 + One electron energy = -1400.560790845266 + Coulomb energy = 630.200049556558 + Exchange-Corr. energy = -57.843683944572 + Nuclear repulsion energy = 445.896163593026 - Numeric. integr. density = 69.999955318742 - - Total iterative time = 1.4s + Numeric. integr. density = 69.999955313092 + Total iterative time = 0.7s + Occupations of the irreducible representations ---------------------------------------------- - + irrep alpha beta -------- -------- -------- ag 15.0 15.0 au 2.0 2.0 bg 3.0 3.0 bu 15.0 15.0 - - + + DFT Final Molecular Orbital Analysis ------------------------------------ - + Vector 1 Occ=2.000000D+00 E=-1.002022D+01 Symmetry=bu - MO Center= 8.4D-12, 5.0D-11, 5.6D-33, r^2= 2.1D+00 + MO Center= -4.3D-12, -2.6D-11, 1.1D-33, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 1 0.699296 1 C s 6 -0.699296 2 C s + 1 0.699295 1 C s 6 -0.699295 2 C s 2 0.031567 1 C s 7 -0.031567 2 C s - 35 0.027420 11 C s 40 -0.027420 12 C s - - Vector 2 Occ=2.000000D+00 E=-1.002018D+01 Symmetry=ag - MO Center= -8.4D-12, -5.0D-11, -4.3D-40, r^2= 2.1D+00 + 35 0.027428 11 C s 40 -0.027428 12 C s + + Vector 2 Occ=2.000000D+00 E=-1.002017D+01 Symmetry=ag + MO Center= 4.3D-12, 2.6D-11, 1.9D-25, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.699293 1 C s 6 0.699293 2 C s - 2 0.031360 1 C s 7 0.031360 2 C s - 35 -0.027784 11 C s 40 -0.027784 12 C s - + 2 0.031361 1 C s 7 0.031361 2 C s + 35 -0.027792 11 C s 40 -0.027792 12 C s + Vector 3 Occ=2.000000D+00 E=-1.000812D+01 Symmetry=bu - MO Center= 2.9D-10, 1.6D-09, 7.1D-33, r^2= 8.6D+00 + MO Center= -1.0D-09, -5.7D-09, 1.4D-28, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.699826 11 C s 40 -0.699826 12 C s 36 0.030784 11 C s 41 -0.030784 12 C s - 1 -0.028025 1 C s 6 0.028025 2 C s - + 1 -0.028032 1 C s 6 0.028032 2 C s + Vector 4 Occ=2.000000D+00 E=-1.000812D+01 Symmetry=ag - MO Center= -2.9D-10, -1.6D-09, -1.5D-17, r^2= 8.6D+00 + MO Center= 1.0D-09, 5.7D-09, -9.0D-19, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.699745 11 C s 40 0.699745 12 C s + 35 0.699744 11 C s 40 0.699744 12 C s 36 0.030766 11 C s 41 0.030766 12 C s - 1 0.028231 1 C s 6 0.028231 2 C s - + 1 0.028238 1 C s 6 0.028238 2 C s + Vector 5 Occ=2.000000D+00 E=-1.000679D+01 Symmetry=bu - MO Center= 1.7D-14, 4.3D-14, -3.6D-30, r^2= 2.0D+00 + MO Center= 1.1D-09, -5.1D-10, 5.9D-29, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.612515 5 C s 26 -0.612515 6 C s - 11 -0.337795 3 C s 16 0.337795 4 C s - 22 0.030342 5 C s 27 -0.030342 6 C s - 1 -0.027515 1 C s 6 0.027515 2 C s - + 21 0.613466 5 C s 26 -0.613466 6 C s + 11 -0.336068 3 C s 16 0.336068 4 C s + 22 0.030368 5 C s 27 -0.030368 6 C s + 1 -0.027504 1 C s 6 0.027504 2 C s + Vector 6 Occ=2.000000D+00 E=-1.000679D+01 Symmetry=ag - MO Center= 1.4D-13, 6.1D-13, 9.6D-18, r^2= 2.0D+00 + MO Center= -1.1D-09, 5.2D-10, -2.0D-19, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.597377 5 C s 26 0.597377 6 C s - 11 -0.364888 3 C s 16 -0.364888 4 C s - 22 0.029718 5 C s 27 0.029718 6 C s - - Vector 7 Occ=2.000000D+00 E=-1.000606D+01 Symmetry=bu - MO Center= -1.5D-13, -6.2D-13, -1.0D-29, r^2= 2.0D+00 + 21 0.598293 5 C s 26 0.598293 6 C s + 11 -0.363384 3 C s 16 -0.363384 4 C s + 22 0.029744 5 C s 27 0.029744 6 C s + + Vector 7 Occ=2.000000D+00 E=-1.000605D+01 Symmetry=bu + MO Center= -4.6D-13, -1.7D-12, 3.4D-30, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.613269 3 C s 16 -0.613269 4 C s - 21 0.339152 5 C s 26 -0.339152 6 C s - + 11 0.614217 3 C s 16 -0.614217 4 C s + 21 0.337428 5 C s 26 -0.337428 6 C s + Vector 8 Occ=2.000000D+00 E=-1.000592D+01 Symmetry=ag - MO Center= -1.7D-16, 9.0D-16, 9.9D-19, r^2= 2.0D+00 + MO Center= 5.7D-14, 7.5D-13, -1.4D-19, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.597541 3 C s 16 0.597541 4 C s - 21 0.365171 5 C s 26 0.365171 6 C s - 1 0.028361 1 C s 6 0.028361 2 C s - - Vector 9 Occ=2.000000D+00 E=-9.992325D+00 Symmetry=bu - MO Center= 5.5D-11, -5.9D-10, 4.7D-32, r^2= 1.5D+01 + 11 0.598456 3 C s 16 0.598456 4 C s + 21 0.363667 5 C s 26 0.363667 6 C s + 1 0.028349 1 C s 6 0.028349 2 C s + + Vector 9 Occ=2.000000D+00 E=-9.992327D+00 Symmetry=bu + MO Center= 7.1D-16, -1.3D-15, -4.6D-32, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700479 15 C s 52 -0.700479 16 C s - 48 0.030861 15 C s 53 -0.030861 16 C s - - Vector 10 Occ=2.000000D+00 E=-9.992325D+00 Symmetry=ag - MO Center= -5.5D-11, 5.9D-10, -1.4D-32, r^2= 1.5D+01 + 48 0.030862 15 C s 53 -0.030862 16 C s + + Vector 10 Occ=2.000000D+00 E=-9.992327D+00 Symmetry=ag + MO Center= -9.5D-19, 1.4D-15, -2.3D-34, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700478 15 C s 52 0.700478 16 C s 48 0.030861 15 C s 53 0.030861 16 C s - - Vector 11 Occ=2.000000D+00 E=-8.095070D-01 Symmetry=ag - MO Center= -2.7D-15, 8.1D-15, -6.7D-16, r^2= 3.0D+00 + + Vector 11 Occ=2.000000D+00 E=-8.095106D-01 Symmetry=ag + MO Center= 2.8D-17, -4.1D-17, -3.0D-32, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.274637 1 C s 7 0.274637 2 C s + 2 0.274634 1 C s 7 0.274634 2 C s 12 0.247009 3 C s 17 0.247009 4 C s - 22 0.246748 5 C s 27 0.246748 6 C s - 36 0.127773 11 C s 41 0.127773 12 C s + 22 0.246750 5 C s 27 0.246750 6 C s + 36 0.127763 11 C s 41 0.127763 12 C s 1 -0.107836 1 C s 6 -0.107836 2 C s - - Vector 12 Occ=2.000000D+00 E=-7.539865D-01 Symmetry=bu - MO Center= -1.3D-15, -1.4D-14, -2.9D-26, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 -0.297271 11 C s 41 0.297271 12 C s - 2 0.273910 1 C s 7 -0.273910 2 C s - 48 -0.209195 15 C s 53 0.209195 16 C s - 35 0.113851 11 C s 40 -0.113851 12 C s - 22 -0.112748 5 C s 27 0.112748 6 C s - - Vector 13 Occ=2.000000D+00 E=-7.179639D-01 Symmetry=ag - MO Center= -3.8D-15, 8.7D-15, 7.8D-16, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.314972 11 C s 41 0.314972 12 C s - 48 0.309671 15 C s 53 0.309671 16 C s - 12 -0.121203 3 C s 17 -0.121203 4 C s - 35 -0.119302 11 C s 40 -0.119302 12 C s - 47 -0.117422 15 C s 52 -0.117422 16 C s - - Vector 14 Occ=2.000000D+00 E=-6.997869D-01 Symmetry=bu - MO Center= 1.0D-14, 2.9D-15, 7.8D-33, r^2= 3.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.356616 3 C s 17 -0.356616 4 C s - 22 0.324767 5 C s 27 -0.324767 6 C s - 11 -0.132144 3 C s 16 0.132144 4 C s - 3 0.124903 1 C px 8 0.124903 2 C px + + Vector 12 Occ=2.000000D+00 E=-7.539866D-01 Symmetry=bu + MO Center= -2.4D-16, -1.2D-14, -1.4D-26, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 -0.297267 11 C s 41 0.297267 12 C s + 2 0.273904 1 C s 7 -0.273904 2 C s + 48 -0.209203 15 C s 53 0.209203 16 C s + 35 0.113850 11 C s 40 -0.113850 12 C s + 22 -0.112752 5 C s 27 0.112752 6 C s + + Vector 13 Occ=2.000000D+00 E=-7.179660D-01 Symmetry=ag + MO Center= 3.3D-15, 1.4D-14, 4.7D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.314970 11 C s 41 0.314970 12 C s + 48 0.309678 15 C s 53 0.309678 16 C s + 12 -0.121194 3 C s 17 -0.121194 4 C s + 35 -0.119303 11 C s 40 -0.119303 12 C s + 47 -0.117425 15 C s 52 -0.117425 16 C s + + Vector 14 Occ=2.000000D+00 E=-6.997886D-01 Symmetry=bu + MO Center= 6.0D-16, -1.4D-16, 5.2D-26, r^2= 3.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.356613 3 C s 17 -0.356613 4 C s + 22 0.324765 5 C s 27 -0.324765 6 C s + 11 -0.132145 3 C s 16 0.132145 4 C s + 3 0.124904 1 C px 8 0.124904 2 C px 21 -0.120400 5 C s 26 0.120400 6 C s - - Vector 15 Occ=2.000000D+00 E=-6.675089D-01 Symmetry=bu - MO Center= 8.8D-17, -6.0D-15, 4.2D-31, r^2= 9.1D+00 + + Vector 15 Occ=2.000000D+00 E=-6.675116D-01 Symmetry=bu + MO Center= 2.4D-15, -1.3D-14, -3.8D-26, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.299742 15 C s 53 -0.299742 16 C s - 2 0.274040 1 C s 7 -0.274040 2 C s + 48 0.299738 15 C s 53 -0.299738 16 C s + 2 0.274043 1 C s 7 -0.274043 2 C s 22 -0.200662 5 C s 27 0.200662 6 C s - 36 0.136856 11 C s 41 -0.136856 12 C s - 38 -0.129052 11 C py 43 -0.129052 12 C py - - Vector 16 Occ=2.000000D+00 E=-5.887091D-01 Symmetry=ag - MO Center= -3.5D-15, -3.4D-15, -3.1D-17, r^2= 8.5D+00 + 36 0.136855 11 C s 41 -0.136855 12 C s + 38 -0.129048 11 C py 43 -0.129048 12 C py + + Vector 16 Occ=2.000000D+00 E=-5.887077D-01 Symmetry=ag + MO Center= 4.4D-16, 1.0D-14, -5.0D-17, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.242759 15 C s 53 0.242759 16 C s - 22 0.232200 5 C s 27 0.232200 6 C s - 2 -0.206949 1 C s 7 -0.206949 2 C s - 14 -0.159639 3 C py 19 0.159639 4 C py - 36 -0.159469 11 C s 41 -0.159469 12 C s - - Vector 17 Occ=2.000000D+00 E=-5.589268D-01 Symmetry=ag - MO Center= -2.9D-15, -6.7D-15, 5.8D-17, r^2= 5.1D+00 + 48 0.242746 15 C s 53 0.242746 16 C s + 22 0.232205 5 C s 27 0.232205 6 C s + 2 -0.206944 1 C s 7 -0.206944 2 C s + 14 -0.159641 3 C py 19 0.159641 4 C py + 36 -0.159475 11 C s 41 -0.159475 12 C s + + Vector 17 Occ=2.000000D+00 E=-5.589269D-01 Symmetry=ag + MO Center= -1.1D-14, 7.4D-15, -1.8D-17, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.326160 3 C s 17 0.326160 4 C s - 3 0.185902 1 C px 8 -0.185902 2 C px - 22 -0.172107 5 C s 27 -0.172107 6 C s - 24 0.170107 5 C py 29 -0.170107 6 C py - 31 0.169722 7 H s 32 0.169722 8 H s - - Vector 18 Occ=2.000000D+00 E=-5.316620D-01 Symmetry=bu - MO Center= -9.4D-16, -5.4D-15, 2.2D-24, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.302592 11 C s 41 -0.302592 12 C s - 48 -0.249276 15 C s 53 0.249276 16 C s - 45 0.170557 13 H s 46 -0.170557 14 H s - 57 -0.160348 17 H s 58 0.160348 18 H s - 12 0.154567 3 C s 17 -0.154567 4 C s - - Vector 19 Occ=2.000000D+00 E=-5.101744D-01 Symmetry=ag - MO Center= 5.5D-16, 1.1D-14, 2.0D-32, r^2= 7.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 0.202148 5 C px 28 -0.202148 6 C px - 13 0.183770 3 C px 18 -0.183770 4 C px - 36 0.180871 11 C s 41 0.180871 12 C s - 33 0.169714 9 H s 34 0.169714 10 H s - 22 0.166818 5 C s 27 0.166818 6 C s - + 3 0.185901 1 C px 8 -0.185901 2 C px + 22 -0.172095 5 C s 27 -0.172095 6 C s + 24 0.170108 5 C py 29 -0.170108 6 C py + 31 0.169724 7 H s 32 0.169724 8 H s + + Vector 18 Occ=2.000000D+00 E=-5.316631D-01 Symmetry=bu + MO Center= -7.0D-15, -8.8D-15, -4.6D-25, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.302595 11 C s 41 -0.302595 12 C s + 48 -0.249271 15 C s 53 0.249271 16 C s + 45 0.170560 13 H s 46 -0.170560 14 H s + 57 -0.160345 17 H s 58 0.160345 18 H s + 12 0.154558 3 C s 17 -0.154558 4 C s + + Vector 19 Occ=2.000000D+00 E=-5.101787D-01 Symmetry=ag + MO Center= 2.5D-15, 2.6D-15, -1.8D-17, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.202144 5 C px 28 -0.202144 6 C px + 13 0.183769 3 C px 18 -0.183769 4 C px + 36 0.180872 11 C s 41 0.180872 12 C s + 33 0.169716 9 H s 34 0.169716 10 H s + 22 0.166819 5 C s 27 0.166819 6 C s + Vector 20 Occ=2.000000D+00 E=-4.574373D-01 Symmetry=ag - MO Center= 4.5D-17, 2.8D-16, -3.2D-33, r^2= 9.6D+00 + MO Center= -8.5D-15, 5.9D-15, -6.2D-17, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.212954 15 C px 54 -0.212954 16 C px - 38 0.184711 11 C py 43 -0.184711 12 C py - 57 0.179072 17 H s 58 0.179072 18 H s - 45 -0.152695 13 H s 46 -0.152695 14 H s - 14 0.140939 3 C py 19 -0.140939 4 C py - - Vector 21 Occ=2.000000D+00 E=-4.393603D-01 Symmetry=bu - MO Center= 1.1D-15, 5.1D-15, -2.6D-32, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.219714 11 C px 42 0.219714 12 C px - 50 0.209514 15 C py 55 0.209514 16 C py - 14 0.184816 3 C py 19 0.184816 4 C py - 59 -0.177422 19 H s 60 0.177422 20 H s - 45 -0.155830 13 H s 46 0.155830 14 H s - - Vector 22 Occ=2.000000D+00 E=-4.106186D-01 Symmetry=bu - MO Center= 9.1D-16, -3.7D-16, -5.0D-32, r^2= 6.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.234285 1 C s 7 -0.234285 2 C s - 33 0.231164 9 H s 34 -0.231164 10 H s - 31 -0.225156 7 H s 32 0.225156 8 H s - 13 -0.220026 3 C px 18 -0.220026 4 C px - 24 -0.178832 5 C py 29 -0.178832 6 C py - - Vector 23 Occ=2.000000D+00 E=-3.979531D-01 Symmetry=bu - MO Center= 1.5D-14, -1.1D-13, -1.4D-21, r^2= 8.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 0.250958 5 C px 28 0.250958 6 C px - 49 0.251331 15 C px 54 0.251331 16 C px - 3 -0.219112 1 C px 8 -0.219112 2 C px - 57 0.215814 17 H s 58 -0.215814 18 H s - 38 0.182172 11 C py 43 0.182172 12 C py - - Vector 24 Occ=2.000000D+00 E=-3.960675D-01 Symmetry=ag - MO Center= -1.4D-14, 1.2D-13, -1.2D-16, r^2= 1.5D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 50 0.338876 15 C py 55 -0.338876 16 C py + 38 0.184716 11 C py 43 -0.184716 12 C py + 57 0.179068 17 H s 58 0.179068 18 H s + 45 -0.152693 13 H s 46 -0.152693 14 H s + 14 0.140946 3 C py 19 -0.140946 4 C py + + Vector 21 Occ=2.000000D+00 E=-4.393594D-01 Symmetry=bu + MO Center= 8.0D-16, -9.1D-15, -1.9D-24, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.219723 11 C px 42 0.219723 12 C px + 50 0.209550 15 C py 55 0.209550 16 C py + 14 0.184813 3 C py 19 0.184813 4 C py + 59 -0.177445 19 H s 60 0.177445 20 H s + 45 -0.155828 13 H s 46 0.155828 14 H s + + Vector 22 Occ=2.000000D+00 E=-4.106203D-01 Symmetry=bu + MO Center= 3.7D-14, 7.0D-14, 3.4D-22, r^2= 6.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.234296 1 C s 7 -0.234296 2 C s + 33 0.231175 9 H s 34 -0.231175 10 H s + 31 -0.225187 7 H s 32 0.225187 8 H s + 13 -0.220047 3 C px 18 -0.220047 4 C px + 24 -0.178806 5 C py 29 -0.178806 6 C py + + Vector 23 Occ=2.000000D+00 E=-3.979534D-01 Symmetry=bu + MO Center= 1.1D-15, 3.0D-15, 3.4D-32, r^2= 8.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 0.250973 5 C px 28 0.250973 6 C px + 49 0.251325 15 C px 54 0.251325 16 C px + 3 -0.219134 1 C px 8 -0.219134 2 C px + 57 0.215807 17 H s 58 -0.215807 18 H s + 38 0.182180 11 C py 43 0.182180 12 C py + + Vector 24 Occ=2.000000D+00 E=-3.960737D-01 Symmetry=ag + MO Center= -2.7D-14, -7.6D-14, -1.2D-16, r^2= 1.5D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 0.338878 15 C py 55 -0.338878 16 C py 59 -0.262036 19 H s 60 -0.262036 20 H s - 37 0.252197 11 C px 42 -0.252197 12 C px - 45 -0.145762 13 H s 46 -0.145762 14 H s - 24 0.136032 5 C py 29 -0.136032 6 C py - - Vector 25 Occ=2.000000D+00 E=-3.739780D-01 Symmetry=bu - MO Center= -7.0D-16, -7.2D-16, -1.7D-32, r^2= 4.4D+00 + 37 0.252199 11 C px 42 -0.252199 12 C px + 45 -0.145769 13 H s 46 -0.145769 14 H s + 24 0.136023 5 C py 29 -0.136023 6 C py + + Vector 25 Occ=2.000000D+00 E=-3.739779D-01 Symmetry=bu + MO Center= 2.9D-15, 5.4D-15, -3.7D-23, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.308776 3 C px 18 0.308776 4 C px - 31 0.253688 7 H s 32 -0.253688 8 H s + 13 0.308778 3 C px 18 0.308778 4 C px + 31 0.253683 7 H s 32 -0.253683 8 H s 24 -0.224700 5 C py 29 -0.224700 6 C py - 33 0.217062 9 H s 34 -0.217062 10 H s - 23 0.188260 5 C px 28 0.188260 6 C px - - Vector 26 Occ=2.000000D+00 E=-3.511460D-01 Symmetry=bu - MO Center= -3.5D-17, 1.3D-15, -2.1D-33, r^2= 8.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 50 -0.245322 15 C py 55 -0.245322 16 C py - 14 0.224995 3 C py 19 0.224995 4 C py - 37 -0.201413 11 C px 42 -0.201413 12 C px - 24 -0.194639 5 C py 29 -0.194639 6 C py - 38 0.186266 11 C py 43 0.186266 12 C py - - Vector 27 Occ=2.000000D+00 E=-3.472892D-01 Symmetry=ag - MO Center= 1.3D-15, -9.1D-15, 1.7D-16, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 49 0.295552 15 C px 54 -0.295552 16 C px - 57 0.268066 17 H s 58 0.268066 18 H s - 37 -0.207915 11 C px 42 0.207915 12 C px - 45 0.199902 13 H s 46 0.199902 14 H s - 31 -0.155815 7 H s 32 -0.155815 8 H s - - Vector 28 Occ=2.000000D+00 E=-3.245066D-01 Symmetry=au - MO Center= -1.7D-15, -8.6D-15, 6.7D-16, r^2= 3.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 5 0.337544 1 C pz 10 0.337544 2 C pz - 15 0.297864 3 C pz 20 0.297864 4 C pz - 25 0.297228 5 C pz 30 0.297228 6 C pz - 39 0.174034 11 C pz 44 0.174034 12 C pz - 51 0.092466 15 C pz 56 0.092466 16 C pz - - Vector 29 Occ=2.000000D+00 E=-3.112490D-01 Symmetry=bu - MO Center= 1.6D-16, 8.4D-16, 1.4D-31, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.258811 13 H s 46 -0.258811 14 H s - 4 0.242381 1 C py 9 0.242381 2 C py - 57 0.230602 17 H s 58 -0.230602 18 H s - 37 -0.216947 11 C px 42 -0.216947 12 C px - 59 -0.213040 19 H s 60 0.213040 20 H s - - Vector 30 Occ=2.000000D+00 E=-2.928021D-01 Symmetry=ag - MO Center= 1.0D-16, -1.8D-16, -2.1D-16, r^2= 6.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 14 -0.278639 3 C py 19 0.278639 4 C py - 4 0.270138 1 C py 9 -0.270138 2 C py - 38 0.249522 11 C py 43 -0.249522 12 C py - 33 -0.237753 9 H s 34 -0.237753 10 H s - 24 0.235686 5 C py 29 -0.235686 6 C py - - Vector 31 Occ=2.000000D+00 E=-2.874565D-01 Symmetry=ag - MO Center= -4.5D-17, 2.0D-16, 3.7D-17, r^2= 6.1D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 3 0.298638 1 C px 8 -0.298638 2 C px - 23 0.281521 5 C px 28 -0.281521 6 C px - 31 -0.259065 7 H s 32 -0.259065 8 H s - 13 -0.225213 3 C px 18 0.225213 4 C px - 45 -0.180858 13 H s 46 -0.180858 14 H s - - Vector 32 Occ=2.000000D+00 E=-2.635517D-01 Symmetry=bg - MO Center= 1.0D-15, 8.6D-15, -2.3D-22, r^2= 7.8D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 39 -0.376546 11 C pz 44 0.376546 12 C pz - 5 0.348929 1 C pz 10 -0.348929 2 C pz - 51 -0.271376 15 C pz 56 0.271376 16 C pz - 25 -0.132807 5 C pz 30 0.132807 6 C pz - 15 0.130769 3 C pz 20 -0.130769 4 C pz - - Vector 33 Occ=2.000000D+00 E=-2.124447D-01 Symmetry=au - MO Center= 5.1D-15, -2.1D-15, -8.1D-16, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 51 0.417870 15 C pz 56 0.417870 16 C pz + 33 0.217050 9 H s 34 -0.217050 10 H s + 23 0.188239 5 C px 28 0.188239 6 C px + + Vector 26 Occ=2.000000D+00 E=-3.511500D-01 Symmetry=bu + MO Center= 4.8D-15, 8.4D-15, 1.0D-24, r^2= 8.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 50 -0.245306 15 C py 55 -0.245306 16 C py + 14 0.225016 3 C py 19 0.225016 4 C py + 37 -0.201407 11 C px 42 -0.201407 12 C px + 24 -0.194666 5 C py 29 -0.194666 6 C py + 38 0.186270 11 C py 43 0.186270 12 C py + + Vector 27 Occ=2.000000D+00 E=-3.472862D-01 Symmetry=ag + MO Center= -3.8D-15, -7.3D-15, 4.4D-17, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 0.295553 15 C px 54 -0.295553 16 C px + 57 0.268071 17 H s 58 0.268071 18 H s + 37 -0.207910 11 C px 42 0.207910 12 C px + 45 0.199900 13 H s 46 0.199900 14 H s + 31 -0.155818 7 H s 32 -0.155818 8 H s + + Vector 28 Occ=2.000000D+00 E=-3.245088D-01 Symmetry=au + MO Center= 6.7D-18, -3.6D-18, 2.0D-16, r^2= 3.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 5 0.337541 1 C pz 10 0.337541 2 C pz + 15 0.297866 3 C pz 20 0.297866 4 C pz + 25 0.297231 5 C pz 30 0.297231 6 C pz + 39 0.174025 11 C pz 44 0.174025 12 C pz + 51 0.092464 15 C pz 56 0.092464 16 C pz + + Vector 29 Occ=2.000000D+00 E=-3.112466D-01 Symmetry=bu + MO Center= 2.0D-15, 9.5D-15, -9.8D-27, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.258810 13 H s 46 -0.258810 14 H s + 4 0.242385 1 C py 9 0.242385 2 C py + 57 0.230613 17 H s 58 -0.230613 18 H s + 37 -0.216952 11 C px 42 -0.216952 12 C px + 59 -0.213033 19 H s 60 0.213033 20 H s + + Vector 30 Occ=2.000000D+00 E=-2.927991D-01 Symmetry=ag + MO Center= -3.3D-16, -3.1D-15, -2.1D-16, r^2= 6.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 -0.278610 3 C py 19 0.278610 4 C py + 4 0.270063 1 C py 9 -0.270063 2 C py + 38 0.249434 11 C py 43 -0.249434 12 C py + 33 -0.237888 9 H s 34 -0.237888 10 H s + 24 0.235614 5 C py 29 -0.235614 6 C py + + Vector 31 Occ=2.000000D+00 E=-2.874575D-01 Symmetry=ag + MO Center= -5.9D-16, -6.3D-15, 4.5D-17, r^2= 6.1D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.298526 1 C px 8 -0.298526 2 C px + 23 0.281456 5 C px 28 -0.281456 6 C px + 31 -0.259051 7 H s 32 -0.259051 8 H s + 13 -0.225103 3 C px 18 0.225103 4 C px + 45 -0.180917 13 H s 46 -0.180917 14 H s + + Vector 32 Occ=2.000000D+00 E=-2.635512D-01 Symmetry=bg + MO Center= 8.5D-16, 2.4D-14, 1.5D-18, r^2= 7.8D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 39 -0.376543 11 C pz 44 0.376543 12 C pz + 5 0.348923 1 C pz 10 -0.348923 2 C pz + 51 -0.271385 15 C pz 56 0.271385 16 C pz + 25 -0.132811 5 C pz 30 0.132811 6 C pz + 15 0.130770 3 C pz 20 -0.130770 4 C pz + + Vector 33 Occ=2.000000D+00 E=-2.124471D-01 Symmetry=au + MO Center= -9.0D-16, -2.4D-14, -3.0D-16, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 51 0.417877 15 C pz 56 0.417877 16 C pz 39 0.413792 11 C pz 44 0.413792 12 C pz - 15 -0.179204 3 C pz 20 -0.179204 4 C pz - 25 -0.176764 5 C pz 30 -0.176764 6 C pz - - Vector 34 Occ=2.000000D+00 E=-1.950571D-01 Symmetry=bg - MO Center= -4.9D-15, 2.6D-16, -6.8D-21, r^2= 2.7D+00 + 15 -0.179193 3 C pz 20 -0.179193 4 C pz + 25 -0.176755 5 C pz 30 -0.176755 6 C pz + + Vector 34 Occ=2.000000D+00 E=-1.950566D-01 Symmetry=bg + MO Center= 2.5D-17, 9.2D-19, 1.3D-18, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.463067 3 C pz 20 -0.463067 4 C pz - 25 0.458191 5 C pz 30 -0.458191 6 C pz - - Vector 35 Occ=2.000000D+00 E=-1.530761D-01 Symmetry=bg - MO Center= 5.6D-17, 1.7D-15, 2.4D-21, r^2= 8.1D+00 + 15 0.463064 3 C pz 20 -0.463064 4 C pz + 25 0.458194 5 C pz 30 -0.458194 6 C pz + + Vector 35 Occ=2.000000D+00 E=-1.530803D-01 Symmetry=bg + MO Center= -1.4D-16, -1.3D-15, 2.6D-17, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 0.397425 15 C pz 56 -0.397425 16 C pz - 5 0.387574 1 C pz 10 -0.387574 2 C pz - 25 -0.228725 5 C pz 30 0.228725 6 C pz + 51 0.397417 15 C pz 56 -0.397417 16 C pz + 5 0.387575 1 C pz 10 -0.387575 2 C pz + 25 -0.228724 5 C pz 30 0.228724 6 C pz 39 0.223621 11 C pz 44 -0.223621 12 C pz - 15 0.217051 3 C pz 20 -0.217051 4 C pz - - Vector 36 Occ=0.000000D+00 E= 3.739915D-02 Symmetry=au - MO Center= 2.3D-16, -1.1D-16, -1.5D-17, r^2= 8.1D+00 + 15 0.217057 3 C pz 20 -0.217057 4 C pz + + Vector 36 Occ=0.000000D+00 E= 3.740717D-02 Symmetry=au + MO Center= 2.0D-17, -6.1D-16, 3.2D-17, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 51 -0.449948 15 C pz 56 -0.449948 16 C pz + 51 -0.449945 15 C pz 56 -0.449945 16 C pz 5 0.442445 1 C pz 10 0.442445 2 C pz - 25 -0.276536 5 C pz 30 -0.276536 6 C pz - 39 0.256311 11 C pz 44 0.256311 12 C pz - 15 -0.232933 3 C pz 20 -0.232933 4 C pz - - Vector 37 Occ=0.000000D+00 E= 9.036383D-02 Symmetry=au - MO Center= -4.8D-15, 6.6D-16, 6.5D-17, r^2= 2.7D+00 + 25 -0.276549 5 C pz 30 -0.276549 6 C pz + 39 0.256327 11 C pz 44 0.256327 12 C pz + 15 -0.232922 3 C pz 20 -0.232922 4 C pz + + Vector 37 Occ=0.000000D+00 E= 9.036486D-02 Symmetry=au + MO Center= -5.1D-16, 2.7D-16, 2.8D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.582581 3 C pz 20 0.582581 4 C pz - 25 -0.553538 5 C pz 30 -0.553538 6 C pz - 5 -0.031517 1 C pz 10 -0.031517 2 C pz - - Vector 38 Occ=0.000000D+00 E= 1.106076D-01 Symmetry=bg - MO Center= 5.1D-15, -8.5D-16, -1.6D-22, r^2= 1.1D+01 + 15 0.582587 3 C pz 20 0.582587 4 C pz + 25 -0.553532 5 C pz 30 -0.553532 6 C pz + 5 -0.031525 1 C pz 10 -0.031525 2 C pz + + Vector 38 Occ=0.000000D+00 E= 1.106123D-01 Symmetry=bg + MO Center= 1.1D-15, 1.3D-15, -6.7D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 0.522224 11 C pz 44 -0.522224 12 C pz - 51 -0.523173 15 C pz 56 0.523173 16 C pz - 15 0.240596 3 C pz 20 -0.240596 4 C pz - 25 -0.232042 5 C pz 30 0.232042 6 C pz - - Vector 39 Occ=0.000000D+00 E= 1.822084D-01 Symmetry=au - MO Center= -1.3D-16, -1.3D-15, -1.1D-15, r^2= 7.9D+00 + 39 0.522233 11 C pz 44 -0.522233 12 C pz + 51 -0.523179 15 C pz 56 0.523179 16 C pz + 15 0.240586 3 C pz 20 -0.240586 4 C pz + 25 -0.232030 5 C pz 30 0.232030 6 C pz + + Vector 39 Occ=0.000000D+00 E= 1.822119D-01 Symmetry=au + MO Center= -3.4D-16, -1.5D-15, 2.5D-17, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 39 -0.529022 11 C pz 44 -0.529022 12 C pz - 5 0.497560 1 C pz 10 0.497560 2 C pz + 39 -0.529018 11 C pz 44 -0.529018 12 C pz + 5 0.497563 1 C pz 10 0.497563 2 C pz 51 0.379413 15 C pz 56 0.379413 16 C pz - 25 -0.199825 5 C pz 30 -0.199825 6 C pz - 15 -0.166282 3 C pz 20 -0.166282 4 C pz - - Vector 40 Occ=0.000000D+00 E= 2.725174D-01 Symmetry=bg - MO Center= -6.3D-17, 1.9D-15, -6.4D-22, r^2= 3.8D+00 + 25 -0.199830 5 C pz 30 -0.199830 6 C pz + 15 -0.166289 3 C pz 20 -0.166289 4 C pz + + Vector 40 Occ=0.000000D+00 E= 2.725252D-01 Symmetry=bg + MO Center= -4.1D-17, 2.3D-15, -8.7D-18, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 5 0.543543 1 C pz 10 -0.543543 2 C pz - 25 0.467233 5 C pz 30 -0.467233 6 C pz - 15 -0.464154 3 C pz 20 0.464154 4 C pz - 39 0.287606 11 C pz 44 -0.287606 12 C pz - 51 -0.155916 15 C pz 56 0.155916 16 C pz - - Vector 41 Occ=0.000000D+00 E= 3.322390D-01 Symmetry=ag - MO Center= -5.0D-17, -5.0D-17, 5.0D-17, r^2= 8.8D+00 + 5 0.543548 1 C pz 10 -0.543548 2 C pz + 25 0.467238 5 C pz 30 -0.467238 6 C pz + 15 -0.464161 3 C pz 20 0.464161 4 C pz + 39 0.287595 11 C pz 44 -0.287595 12 C pz + 51 -0.155910 15 C pz 56 0.155910 16 C pz + + Vector 41 Occ=0.000000D+00 E= 3.322354D-01 Symmetry=ag + MO Center= -1.8D-15, 2.8D-15, -1.9D-17, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 33 -0.422893 9 H s 34 -0.422893 10 H s - 31 -0.413190 7 H s 32 -0.413190 8 H s - 2 0.401872 1 C s 7 0.401872 2 C s - 59 -0.356592 19 H s 60 -0.356592 20 H s + 31 -0.413191 7 H s 32 -0.413191 8 H s + 2 0.401841 1 C s 7 0.401841 2 C s + 59 -0.356586 19 H s 60 -0.356586 20 H s 38 -0.338856 11 C py 43 0.338856 12 C py - - Vector 42 Occ=0.000000D+00 E= 3.407333D-01 Symmetry=bu - MO Center= 8.4D-16, -8.1D-15, -1.9D-25, r^2= 1.0D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.434984 13 H s 46 -0.434984 14 H s - 13 0.355451 3 C px 18 0.355451 4 C px - 37 0.345450 11 C px 42 0.345450 12 C px - 57 -0.323762 17 H s 58 0.323762 18 H s - 31 -0.319780 7 H s 32 0.319780 8 H s - - Vector 43 Occ=0.000000D+00 E= 3.794058D-01 Symmetry=bu - MO Center= 1.4D-16, -3.2D-16, 7.8D-22, r^2= 7.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 36 0.541920 11 C s 41 -0.541920 12 C s - 4 0.460379 1 C py 9 0.460379 2 C py - 33 0.411930 9 H s 34 -0.411930 10 H s - 59 0.346836 19 H s 60 -0.346836 20 H s - 2 0.334928 1 C s 7 -0.334928 2 C s - - Vector 44 Occ=0.000000D+00 E= 3.814743D-01 Symmetry=ag - MO Center= -4.2D-15, 2.9D-15, -6.1D-18, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 45 0.575754 13 H s 46 0.575754 14 H s - 12 0.394003 3 C s 17 0.394003 4 C s - 57 -0.394270 17 H s 58 -0.394270 18 H s - 36 -0.382518 11 C s 41 -0.382518 12 C s - 37 0.333681 11 C px 42 -0.333681 12 C px - - Vector 45 Occ=0.000000D+00 E= 4.109921D-01 Symmetry=ag - MO Center= -1.7D-13, 4.8D-13, -2.6D-17, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.651816 15 C s 53 0.651816 16 C s - 22 0.617569 5 C s 27 0.617569 6 C s - 57 -0.511621 17 H s 58 -0.511621 18 H s - 12 -0.450886 3 C s 17 -0.450886 4 C s - 59 -0.325872 19 H s 60 -0.325872 20 H s - - Vector 46 Occ=0.000000D+00 E= 4.119794D-01 Symmetry=bu - MO Center= 1.7D-13, -4.8D-13, 2.4D-23, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 22 0.614479 5 C s 27 -0.614479 6 C s - 48 0.538380 15 C s 53 -0.538380 16 C s - 2 0.478800 1 C s 7 -0.478800 2 C s - 57 -0.448609 17 H s 58 0.448609 18 H s - 12 -0.443260 3 C s 17 0.443260 4 C s - - Vector 47 Occ=0.000000D+00 E= 4.267645D-01 Symmetry=bu - MO Center= 1.0D-14, 1.1D-14, 5.9D-21, r^2= 9.2D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 31 0.599120 7 H s 32 -0.599120 8 H s - 36 -0.456794 11 C s 41 0.456794 12 C s - 45 0.441157 13 H s 46 -0.441157 14 H s - 12 -0.356708 3 C s 17 0.356708 4 C s - 59 0.338785 19 H s 60 -0.338785 20 H s - - Vector 48 Occ=0.000000D+00 E= 4.396276D-01 Symmetry=ag - MO Center= -6.3D-15, 7.8D-14, 4.5D-17, r^2= 7.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.784612 1 C s 7 0.784612 2 C s - 36 -0.563896 11 C s 41 -0.563896 12 C s - 12 -0.490173 3 C s 17 -0.490173 4 C s - 22 -0.417660 5 C s 27 -0.417660 6 C s - 48 0.410832 15 C s 53 0.410832 16 C s - - Vector 49 Occ=0.000000D+00 E= 4.527199D-01 Symmetry=bu - MO Center= -1.6D-15, -8.2D-14, -6.6D-24, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.711997 15 C s 53 -0.711997 16 C s - 57 -0.525312 17 H s 58 0.525312 18 H s - 33 0.472372 9 H s 34 -0.472372 10 H s - 36 -0.430311 11 C s 41 0.430311 12 C s - 22 -0.408571 5 C s 27 0.408571 6 C s - - Vector 50 Occ=0.000000D+00 E= 4.782364D-01 Symmetry=ag - MO Center= 1.3D-15, 2.3D-15, 1.6D-17, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.708635 3 C s 17 0.708635 4 C s - 22 -0.614995 5 C s 27 -0.614995 6 C s - 59 -0.475632 19 H s 60 -0.475632 20 H s - 48 0.413945 15 C s 53 0.413945 16 C s - 50 -0.383869 15 C py 55 0.383869 16 C py - - Vector 51 Occ=0.000000D+00 E= 5.262409D-01 Symmetry=ag - MO Center= -5.2D-16, -1.7D-18, -2.3D-17, r^2= 6.5D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 4 0.600992 1 C py 9 -0.600992 2 C py - 36 -0.486185 11 C s 41 -0.486185 12 C s - 13 -0.462747 3 C px 18 0.462747 4 C px - 2 -0.448944 1 C s 7 -0.448944 2 C s - 49 -0.343460 15 C px 54 0.343460 16 C px - - Vector 52 Occ=0.000000D+00 E= 5.457845D-01 Symmetry=bu - MO Center= 2.5D-16, -9.7D-15, 1.2D-23, r^2= 7.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 12 0.649790 3 C s 17 -0.649790 4 C s - 3 -0.562509 1 C px 8 -0.562509 2 C px - 50 0.482776 15 C py 55 0.482776 16 C py - 24 -0.475219 5 C py 29 -0.475219 6 C py - 59 0.355918 19 H s 60 -0.355918 20 H s - - Vector 53 Occ=0.000000D+00 E= 5.759991D-01 Symmetry=ag - MO Center= -2.4D-16, -1.0D-15, -1.2D-17, r^2= 5.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 23 -0.532861 5 C px 28 0.532861 6 C px - 13 0.526978 3 C px 18 -0.526978 4 C px - 33 0.519093 9 H s 34 0.519093 10 H s - 31 -0.447492 7 H s 32 -0.447492 8 H s - 24 0.396531 5 C py 29 -0.396531 6 C py - - Vector 54 Occ=0.000000D+00 E= 5.994376D-01 Symmetry=bu - MO Center= 5.6D-16, 6.4D-16, 4.5D-24, r^2= 4.9D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 14 0.721164 3 C py 19 0.721164 4 C py - 22 0.602656 5 C s 27 -0.602656 6 C s - 36 -0.418121 11 C s 41 0.418121 12 C s - 24 0.396201 5 C py 29 0.396201 6 C py - 2 -0.394048 1 C s 7 0.394048 2 C s - - Vector 55 Occ=0.000000D+00 E= 6.249996D-01 Symmetry=bu - MO Center= 3.6D-17, 8.7D-16, 1.8D-23, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 2 0.613382 1 C s 7 -0.613382 2 C s - 49 -0.524934 15 C px 54 -0.524934 16 C px - 38 0.478472 11 C py 43 0.478472 12 C py - 23 -0.371900 5 C px 28 -0.371900 6 C px - 57 0.359703 17 H s 58 -0.359703 18 H s - - Vector 56 Occ=0.000000D+00 E= 6.396498D-01 Symmetry=ag - MO Center= -1.2D-15, 5.2D-15, 1.3D-17, r^2= 9.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.551500 11 C px 42 -0.551500 12 C px - 50 -0.534557 15 C py 55 0.534557 16 C py - 14 0.380953 3 C py 19 -0.380953 4 C py - 4 -0.365061 1 C py 9 0.365061 2 C py - 59 -0.331930 19 H s 60 -0.331930 20 H s - - Vector 57 Occ=0.000000D+00 E= 6.828579D-01 Symmetry=ag - MO Center= -5.5D-16, -1.3D-15, 2.7D-16, r^2= 9.3D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 38 0.662732 11 C py 43 -0.662732 12 C py - 49 -0.579597 15 C px 54 0.579597 16 C px - 24 -0.448296 5 C py 29 0.448296 6 C py - 14 -0.394989 3 C py 19 0.394989 4 C py - 4 -0.383370 1 C py 9 0.383370 2 C py - - Vector 58 Occ=0.000000D+00 E= 7.172123D-01 Symmetry=bu - MO Center= -1.9D-16, -2.3D-16, 8.5D-25, r^2= 9.6D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 37 0.608565 11 C px 42 0.608565 12 C px - 50 -0.540521 15 C py 55 -0.540521 16 C py - 48 -0.536086 15 C s 53 0.536086 16 C s - 36 0.465537 11 C s 41 -0.465537 12 C s - 38 -0.463180 11 C py 43 -0.463180 12 C py - - Vector 59 Occ=0.000000D+00 E= 7.795297D-01 Symmetry=ag - MO Center= 5.1D-16, 8.4D-15, 8.6D-16, r^2= 5.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 3 0.701660 1 C px 8 -0.701660 2 C px - 14 -0.535933 3 C py 19 0.535933 4 C py - 23 -0.436429 5 C px 28 0.436429 6 C px - 37 0.428799 11 C px 42 -0.428799 12 C px - 24 -0.413300 5 C py 29 0.413300 6 C py - - Vector 60 Occ=0.000000D+00 E= 7.945720D-01 Symmetry=bu - MO Center= 1.1D-15, -2.5D-15, 6.3D-26, r^2= 3.4D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 4 0.657748 1 C py 9 0.657748 2 C py - 13 -0.565924 3 C px 18 -0.565924 4 C px - 23 0.501426 5 C px 28 0.501426 6 C px - 22 -0.418009 5 C s 27 0.418009 6 C s - 24 -0.388862 5 C py 29 -0.388862 6 C py - + + Vector 42 Occ=0.000000D+00 E= 3.407361D-01 Symmetry=bu + MO Center= 6.0D-16, 1.1D-15, 7.6D-19, r^2= 1.0D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.434922 13 H s 46 -0.434922 14 H s + 13 0.355399 3 C px 18 0.355399 4 C px + 37 0.345453 11 C px 42 0.345453 12 C px + 57 -0.323820 17 H s 58 0.323820 18 H s + 31 -0.319733 7 H s 32 0.319733 8 H s + + Vector 43 Occ=0.000000D+00 E= 3.793988D-01 Symmetry=bu + MO Center= -2.2D-15, -4.1D-15, 2.0D-18, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 36 0.541980 11 C s 41 -0.541980 12 C s + 4 0.460371 1 C py 9 0.460371 2 C py + 33 0.412018 9 H s 34 -0.412018 10 H s + 59 0.346715 19 H s 60 -0.346715 20 H s + 2 0.334836 1 C s 7 -0.334836 2 C s + + Vector 44 Occ=0.000000D+00 E= 3.814761D-01 Symmetry=ag + MO Center= 3.3D-15, -1.9D-15, -7.5D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 45 0.575702 13 H s 46 0.575702 14 H s + 12 0.393935 3 C s 17 0.393935 4 C s + 57 -0.394339 17 H s 58 -0.394339 18 H s + 36 -0.382428 11 C s 41 -0.382428 12 C s + 37 0.333670 11 C px 42 -0.333670 12 C px + + Vector 45 Occ=0.000000D+00 E= 4.110019D-01 Symmetry=ag + MO Center= -2.5D-13, 7.2D-13, 4.7D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.651794 15 C s 53 0.651794 16 C s + 22 0.617545 5 C s 27 0.617545 6 C s + 57 -0.511556 17 H s 58 -0.511556 18 H s + 12 -0.450921 3 C s 17 -0.450921 4 C s + 59 -0.325932 19 H s 60 -0.325932 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.119879D-01 Symmetry=bu + MO Center= 2.6D-13, -7.3D-13, 1.0D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 22 0.614470 5 C s 27 -0.614470 6 C s + 48 0.538364 15 C s 53 -0.538364 16 C s + 2 0.478798 1 C s 7 -0.478798 2 C s + 57 -0.448570 17 H s 58 0.448570 18 H s + 12 -0.443261 3 C s 17 0.443261 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.267671D-01 Symmetry=bu + MO Center= -1.1D-15, -3.5D-15, -8.7D-19, r^2= 9.2D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.599150 7 H s 32 -0.599150 8 H s + 36 -0.456657 11 C s 41 0.456657 12 C s + 45 0.441108 13 H s 46 -0.441108 14 H s + 12 -0.356766 3 C s 17 0.356766 4 C s + 59 0.338857 19 H s 60 -0.338857 20 H s + + Vector 48 Occ=0.000000D+00 E= 4.396342D-01 Symmetry=ag + MO Center= -2.4D-16, -3.5D-16, -3.0D-17, r^2= 7.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.784543 1 C s 7 0.784543 2 C s + 36 -0.563960 11 C s 41 -0.563960 12 C s + 12 -0.490120 3 C s 17 -0.490120 4 C s + 22 -0.417636 5 C s 27 -0.417636 6 C s + 48 0.410895 15 C s 53 0.410895 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.527325D-01 Symmetry=bu + MO Center= -1.9D-15, 1.0D-14, 4.3D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.712002 15 C s 53 -0.712002 16 C s + 57 -0.525304 17 H s 58 0.525304 18 H s + 33 0.472391 9 H s 34 -0.472391 10 H s + 36 -0.430350 11 C s 41 0.430350 12 C s + 22 -0.408564 5 C s 27 0.408564 6 C s + + Vector 50 Occ=0.000000D+00 E= 4.782522D-01 Symmetry=ag + MO Center= 1.3D-15, 2.0D-15, -3.0D-17, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.708705 3 C s 17 0.708705 4 C s + 22 -0.614998 5 C s 27 -0.614998 6 C s + 59 -0.475604 19 H s 60 -0.475604 20 H s + 48 0.413932 15 C s 53 0.413932 16 C s + 50 -0.383834 15 C py 55 0.383834 16 C py + + Vector 51 Occ=0.000000D+00 E= 5.262553D-01 Symmetry=ag + MO Center= 2.1D-16, 6.5D-15, 2.1D-19, r^2= 6.5D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.600949 1 C py 9 -0.600949 2 C py + 36 -0.486145 11 C s 41 -0.486145 12 C s + 13 -0.462715 3 C px 18 0.462715 4 C px + 2 -0.449116 1 C s 7 -0.449116 2 C s + 49 -0.343463 15 C px 54 0.343463 16 C px + + Vector 52 Occ=0.000000D+00 E= 5.458051D-01 Symmetry=bu + MO Center= -3.4D-16, -5.5D-15, -1.1D-19, r^2= 7.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 12 0.649853 3 C s 17 -0.649853 4 C s + 3 -0.562556 1 C px 8 -0.562556 2 C px + 50 0.482758 15 C py 55 0.482758 16 C py + 24 -0.475237 5 C py 29 -0.475237 6 C py + 59 0.355903 19 H s 60 -0.355903 20 H s + + Vector 53 Occ=0.000000D+00 E= 5.760066D-01 Symmetry=ag + MO Center= 5.1D-16, -1.7D-15, -7.0D-18, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 23 -0.532780 5 C px 28 0.532780 6 C px + 13 0.527073 3 C px 18 -0.527073 4 C px + 33 0.519079 9 H s 34 0.519079 10 H s + 31 -0.447552 7 H s 32 -0.447552 8 H s + 24 0.396644 5 C py 29 -0.396644 6 C py + + Vector 54 Occ=0.000000D+00 E= 5.994485D-01 Symmetry=bu + MO Center= -1.7D-15, 1.9D-15, -2.3D-17, r^2= 4.9D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 14 0.721148 3 C py 19 0.721148 4 C py + 22 0.602743 5 C s 27 -0.602743 6 C s + 36 -0.418188 11 C s 41 0.418188 12 C s + 24 0.396148 5 C py 29 0.396148 6 C py + 2 -0.393886 1 C s 7 0.393886 2 C s + + Vector 55 Occ=0.000000D+00 E= 6.250004D-01 Symmetry=bu + MO Center= 3.9D-16, 1.7D-14, -6.8D-18, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 2 0.613485 1 C s 7 -0.613485 2 C s + 49 -0.524915 15 C px 54 -0.524915 16 C px + 38 0.478530 11 C py 43 0.478530 12 C py + 23 -0.371929 5 C px 28 -0.371929 6 C px + 57 0.359672 17 H s 58 -0.359672 18 H s + + Vector 56 Occ=0.000000D+00 E= 6.396654D-01 Symmetry=ag + MO Center= -4.2D-16, -1.4D-14, -1.9D-17, r^2= 9.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.551477 11 C px 42 -0.551477 12 C px + 50 -0.534568 15 C py 55 0.534568 16 C py + 14 0.380825 3 C py 19 -0.380825 4 C py + 4 -0.365174 1 C py 9 0.365174 2 C py + 59 -0.331972 19 H s 60 -0.331972 20 H s + + Vector 57 Occ=0.000000D+00 E= 6.828568D-01 Symmetry=ag + MO Center= 6.2D-18, -6.4D-15, 3.7D-18, r^2= 9.3D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 38 0.662702 11 C py 43 -0.662702 12 C py + 49 -0.579555 15 C px 54 0.579555 16 C px + 24 -0.448328 5 C py 29 0.448328 6 C py + 14 -0.395061 3 C py 19 0.395061 4 C py + 4 -0.383302 1 C py 9 0.383302 2 C py + + Vector 58 Occ=0.000000D+00 E= 7.172354D-01 Symmetry=bu + MO Center= 2.7D-16, 3.2D-15, -3.2D-21, r^2= 9.6D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 37 0.608612 11 C px 42 0.608612 12 C px + 50 -0.540582 15 C py 55 -0.540582 16 C py + 48 -0.536097 15 C s 53 0.536097 16 C s + 36 0.465539 11 C s 41 -0.465539 12 C s + 38 -0.463166 11 C py 43 -0.463166 12 C py + + Vector 59 Occ=0.000000D+00 E= 7.795510D-01 Symmetry=ag + MO Center= 9.8D-16, -1.4D-15, -3.4D-19, r^2= 5.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 3 0.701675 1 C px 8 -0.701675 2 C px + 14 -0.535919 3 C py 19 0.535919 4 C py + 23 -0.436440 5 C px 28 0.436440 6 C px + 37 0.428825 11 C px 42 -0.428825 12 C px + 24 -0.413287 5 C py 29 0.413287 6 C py + + Vector 60 Occ=0.000000D+00 E= 7.945871D-01 Symmetry=bu + MO Center= -8.1D-17, 1.2D-16, 2.4D-21, r^2= 3.4D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.657761 1 C py 9 0.657761 2 C py + 13 -0.565975 3 C px 18 -0.565975 4 C px + 23 0.501469 5 C px 28 0.501469 6 C px + 22 -0.418024 5 C s 27 0.418024 6 C s + 24 -0.388844 5 C py 29 -0.388844 6 C py + center of mass -------------- @@ -5150,103 +5216,106 @@ Divinylbenzene in STO-3G basis set moments of inertia (a.u.) ------------------ - 2635.054908588280 0.214128976571 0.000000000000 - 0.214128976571 390.076166085683 0.000000000000 - 0.000000000000 0.000000000000 3025.131074673965 - + 2635.030010363190 0.201627301777 0.000000000000 + 0.201627301777 390.070686549264 0.000000000000 + 0.000000000000 0.000000000000 3025.100696912455 + Multipole analysis of the density --------------------------------- - + L x y z total alpha beta nuclear - - - - ----- ----- ---- ------- 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 - + 1 1 0 0 0.000000 0.000000 0.000000 0.000000 1 0 1 0 0.000000 0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - - 2 2 0 0 -37.340482 -140.892737 -140.892737 244.444993 - 2 1 1 0 0.052186 2.889411 2.889411 -5.726636 + + 2 2 0 0 -37.340647 -140.891384 -140.891384 244.442121 + 2 1 1 0 0.052347 2.886738 2.886738 -5.721128 2 1 0 1 0.000000 0.000000 0.000000 0.000000 - 2 0 2 0 -37.703769 -768.223431 -768.223431 1498.743092 + 2 0 2 0 -37.704664 -768.216034 -768.216034 1498.727404 2 0 1 1 0.000000 0.000000 0.000000 0.000000 - 2 0 0 2 -43.586512 -21.793256 -21.793256 0.000000 + 2 0 0 2 -43.586471 -21.793236 -21.793236 0.000000 + + + Parallel integral file used 9 records with 0 large values Line search: - step= 1.00 grad=-1.2D-07 hess=-1.7D-08 energy= -382.308261 mode=accept - new step= 1.00 predicted energy= -382.308261 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 + step= 1.00 grad=-8.3D-08 hess= 3.7D-09 energy= -382.308262 mode=accept + new step= 1.00 predicted energy= -382.308262 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 -------- Step 3 -------- - - + + Geometry "geometry" -> "geometry" --------------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.23508346 1.41622985 0.00000000 - 2 C 6.0000 -0.23508346 -1.41622985 0.00000000 - 3 C 6.0000 1.31391866 0.48912507 0.00000000 - 4 C 6.0000 -1.31391866 -0.48912507 0.00000000 - 5 C 6.0000 1.08691131 -0.89453920 0.00000000 - 6 C 6.0000 -1.08691131 0.89453920 0.00000000 - 7 H 1.0000 2.34428971 0.87038359 0.00000000 - 8 H 1.0000 -2.34428971 -0.87038359 0.00000000 - 9 H 1.0000 1.94344652 -1.58087860 0.00000000 - 10 H 1.0000 -1.94344652 1.58087860 0.00000000 - 11 C 6.0000 -0.53389105 -2.88364229 0.00000000 - 12 C 6.0000 0.53389105 2.88364229 0.00000000 - 13 H 1.0000 -1.60646118 -3.12967212 0.00000000 - 14 H 1.0000 1.60646118 3.12967212 0.00000000 - 15 C 6.0000 0.36353694 -3.88450778 0.00000000 - 16 C 6.0000 -0.36353694 3.88450778 0.00000000 - 17 H 1.0000 1.44535655 -3.70889738 0.00000000 - 18 H 1.0000 -1.44535655 3.70889738 0.00000000 - 19 H 1.0000 0.04482672 -4.93338197 0.00000000 - 20 H 1.0000 -0.04482672 4.93338197 0.00000000 - + 1 C 6.0000 0.23508647 1.41621544 0.00000000 + 2 C 6.0000 -0.23508647 -1.41621544 0.00000000 + 3 C 6.0000 1.31390635 0.48912330 0.00000000 + 4 C 6.0000 -1.31390635 -0.48912330 0.00000000 + 5 C 6.0000 1.08689379 -0.89453821 0.00000000 + 6 C 6.0000 -1.08689379 0.89453821 0.00000000 + 7 H 1.0000 2.34429319 0.87032423 0.00000000 + 8 H 1.0000 -2.34429319 -0.87032423 0.00000000 + 9 H 1.0000 1.94343859 -1.58086372 0.00000000 + 10 H 1.0000 -1.94343859 1.58086372 0.00000000 + 11 C 6.0000 -0.53391326 -2.88364140 0.00000000 + 12 C 6.0000 0.53391326 2.88364140 0.00000000 + 13 H 1.0000 -1.60648263 -3.12964689 0.00000000 + 14 H 1.0000 1.60648263 3.12964689 0.00000000 + 15 C 6.0000 0.36351559 -3.88448663 0.00000000 + 16 C 6.0000 -0.36351559 3.88448663 0.00000000 + 17 H 1.0000 1.44532237 -3.70881062 0.00000000 + 18 H 1.0000 -1.44532237 3.70881062 0.00000000 + 19 H 1.0000 0.04490649 -4.93338582 0.00000000 + 20 H 1.0000 -0.04490649 4.93338582 0.00000000 + Atomic Mass ----------- - + C 12.000000 H 1.007825 + - - Effective nuclear repulsion energy (a.u.) 445.8936950715 + Effective nuclear repulsion energy (a.u.) 445.8961635930 Nuclear Dipole moment (a.u.) ---------------------------- X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - - + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + Summary of "ao basis" -> "ao basis" (cartesian) @@ -5259,18 +5328,18 @@ Divinylbenzene in STO-3G basis set Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 - + The DFT is already converged - Total DFT energy = -382.308261486912 - + Total DFT energy = -382.308261640255 + General Information ------------------- SCF calculation type: DFT @@ -5288,7 +5357,7 @@ Divinylbenzene in STO-3G basis set Convergence on energy requested: 1.00D-06 Convergence on density requested: 1.00D-05 Convergence on gradient requested: 5.00D-04 - + XC Information -------------- B3LYP Method XC Potential @@ -5297,7 +5366,7 @@ Divinylbenzene in STO-3G basis set Becke 1988 Exchange Functional 0.720 non-local Lee-Yang-Parr Correlation Functional 0.810 VWN I RPA Correlation Functional 0.190 local - + Grid Information ---------------- Grid used for XC integration: medium @@ -5310,7 +5379,7 @@ Divinylbenzene in STO-3G basis set Grid pruning is: on Number of quadrature shells: 470 Spatial weights used: Erf1 - + Convergence Information ----------------------- Convergence aids based upon iterative change in @@ -5325,7 +5394,7 @@ Divinylbenzene in STO-3G basis set dE on: start ASAP start dE off: 2 iters 30 iters 30 iters - + Screening Tolerance Information ------------------------------- Density screening/tol_rho: 1.00D-10 @@ -5334,15 +5403,15 @@ Divinylbenzene in STO-3G basis set XC Gaussian exp screening on grid/accXCfunc: 20 Schwarz screening/accCoul: 1.00D-08 - - + + NWChem DFT Gradient Module -------------------------- - - + + Divinylbenzene in STO-3G basis set - - + + charge = 0.00 wavefunction = closed shell @@ -5354,39 +5423,39 @@ Divinylbenzene in STO-3G basis set atom coordinates gradient x y z x y z - 1 C 0.444243 2.676286 0.000000 0.000014 0.000030 0.000000 - 2 C -0.444243 -2.676286 0.000000 -0.000014 -0.000030 0.000000 - 3 C 2.482946 0.924312 0.000000 0.000007 -0.000005 0.000000 - 4 C -2.482946 -0.924312 0.000000 -0.000007 0.000005 0.000000 - 5 C 2.053965 -1.690434 0.000000 0.000021 0.000010 0.000000 - 6 C -2.053965 1.690434 0.000000 -0.000021 -0.000010 0.000000 - 7 H 4.430065 1.644786 0.000000 -0.000001 0.000004 0.000000 - 8 H -4.430065 -1.644786 0.000000 0.000001 -0.000004 0.000000 - 9 H 3.672581 -2.987427 0.000000 -0.000008 -0.000001 0.000000 - 10 H -3.672581 2.987427 0.000000 0.000008 0.000001 0.000000 - 11 C -1.008908 -5.449294 0.000000 -0.000006 0.000016 0.000000 - 12 C 1.008908 5.449294 0.000000 0.000006 -0.000016 0.000000 - 13 H -3.035771 -5.914223 0.000000 -0.000002 0.000003 0.000000 - 14 H 3.035771 5.914223 0.000000 0.000002 -0.000003 0.000000 - 15 C 0.686985 -7.340655 0.000000 0.000024 0.000011 0.000000 - 16 C -0.686985 7.340655 0.000000 -0.000024 -0.000011 0.000000 - 17 H 2.731328 -7.008800 0.000000 0.000001 -0.000009 0.000000 - 18 H -2.731328 7.008800 0.000000 -0.000001 0.000009 0.000000 - 19 H 0.084710 -9.322740 0.000000 -0.000001 -0.000008 0.000000 - 20 H -0.084710 9.322740 0.000000 0.000001 0.000008 0.000000 - + 1 C 0.444249 2.676259 0.000000 0.000005 0.000003 0.000000 + 2 C -0.444249 -2.676259 0.000000 -0.000005 -0.000003 0.000000 + 3 C 2.482923 0.924309 0.000000 -0.000003 0.000008 0.000000 + 4 C -2.482923 -0.924309 0.000000 0.000003 -0.000008 0.000000 + 5 C 2.053931 -1.690432 0.000000 0.000011 0.000007 0.000000 + 6 C -2.053931 1.690432 0.000000 -0.000011 -0.000007 0.000000 + 7 H 4.430072 1.644674 0.000000 -0.000002 -0.000003 0.000000 + 8 H -4.430072 -1.644674 0.000000 0.000002 0.000003 0.000000 + 9 H 3.672566 -2.987399 0.000000 -0.000008 0.000002 0.000000 + 10 H -3.672566 2.987399 0.000000 0.000008 -0.000002 0.000000 + 11 C -1.008950 -5.449292 0.000000 0.000001 -0.000003 0.000000 + 12 C 1.008950 5.449292 0.000000 -0.000001 0.000003 0.000000 + 13 H -3.035812 -5.914175 0.000000 0.000001 0.000006 0.000000 + 14 H 3.035812 5.914175 0.000000 -0.000001 -0.000006 0.000000 + 15 C 0.686945 -7.340615 0.000000 0.000006 0.000015 0.000000 + 16 C -0.686945 7.340615 0.000000 -0.000006 -0.000015 0.000000 + 17 H 2.731263 -7.008636 0.000000 -0.000003 -0.000008 0.000000 + 18 H -2.731263 7.008636 0.000000 0.000003 0.000008 0.000000 + 19 H 0.084861 -9.322747 0.000000 0.000007 -0.000005 0.000000 + 20 H -0.084861 9.322747 0.000000 -0.000007 0.000005 0.000000 + ---------------------------------------- | Time | 1-e(secs) | 2-e(secs) | ---------------------------------------- - | CPU | 0.00 | 0.60 | + | CPU | 0.00 | 0.33 | ---------------------------------------- - | WALL | 0.00 | 0.60 | + | WALL | 0.00 | 0.34 | ---------------------------------------- - no constraints, skipping 0.0000000000000000 + no constraints, skipping 0.000000000000000E+000 Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 3 -382.30826149 -1.4D-07 0.00002 0.00000 0.00020 0.00053 16.8 +@ 3 -382.30826164 -7.9D-08 0.00001 0.00000 0.00011 0.00039 9.9 ok ok ok ok @@ -5395,59 +5464,59 @@ Divinylbenzene in STO-3G basis set -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value Gradient ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- - 1 Stretch 1 3 1.42247 0.00001 - 2 Stretch 1 6 1.42121 0.00002 - 3 Stretch 1 12 1.49753 -0.00001 - 4 Stretch 2 4 1.42247 0.00001 - 5 Stretch 2 5 1.42121 0.00002 - 6 Stretch 2 11 1.49753 -0.00001 - 7 Stretch 3 5 1.40216 0.00000 - 8 Stretch 3 7 1.09865 -0.00000 - 9 Stretch 4 6 1.40216 0.00000 - 10 Stretch 4 8 1.09865 -0.00000 + 1 Stretch 1 3 1.42245 -0.00001 + 2 Stretch 1 6 1.42119 0.00000 + 3 Stretch 1 12 1.49754 -0.00001 + 4 Stretch 2 4 1.42245 -0.00001 + 5 Stretch 2 5 1.42119 0.00000 + 6 Stretch 2 11 1.49754 -0.00001 + 7 Stretch 3 5 1.40216 -0.00000 + 8 Stretch 3 7 1.09864 -0.00000 + 9 Stretch 4 6 1.40216 -0.00000 + 10 Stretch 4 8 1.09864 -0.00000 11 Stretch 5 9 1.09759 -0.00001 12 Stretch 6 10 1.09759 -0.00001 - 13 Stretch 11 13 1.10043 0.00000 - 14 Stretch 11 15 1.34429 0.00002 - 15 Stretch 12 14 1.10043 0.00000 - 16 Stretch 12 16 1.34429 0.00002 - 17 Stretch 15 17 1.09598 -0.00000 - 18 Stretch 15 19 1.09623 0.00001 - 19 Stretch 16 18 1.09598 -0.00000 - 20 Stretch 16 20 1.09623 0.00001 - 21 Bend 1 3 5 121.35727 -0.00000 - 22 Bend 1 3 7 119.02014 -0.00000 - 23 Bend 1 6 4 120.85246 0.00000 - 24 Bend 1 6 10 119.75952 -0.00000 - 25 Bend 1 12 14 114.42892 -0.00000 - 26 Bend 1 12 16 126.60923 0.00000 - 27 Bend 2 4 6 121.35727 -0.00000 - 28 Bend 2 4 8 119.02014 -0.00000 - 29 Bend 2 5 3 120.85246 0.00000 - 30 Bend 2 5 9 119.75952 -0.00000 - 31 Bend 2 11 13 114.42892 -0.00000 - 32 Bend 2 11 15 126.60923 0.00000 - 33 Bend 3 1 6 117.79027 -0.00000 - 34 Bend 3 1 12 119.16464 0.00000 - 35 Bend 3 5 9 119.38802 0.00000 - 36 Bend 4 2 5 117.79027 -0.00000 - 37 Bend 4 2 11 119.16464 0.00000 - 38 Bend 4 6 10 119.38802 0.00000 - 39 Bend 5 2 11 123.04509 0.00000 - 40 Bend 5 3 7 119.62260 0.00000 - 41 Bend 6 1 12 123.04509 0.00000 - 42 Bend 6 4 8 119.62260 0.00000 - 43 Bend 11 15 17 122.66073 0.00001 - 44 Bend 11 15 19 121.21705 -0.00000 - 45 Bend 12 16 18 122.66073 0.00001 - 46 Bend 12 16 20 121.21705 -0.00000 - 47 Bend 13 11 15 118.96184 0.00000 - 48 Bend 14 12 16 118.96184 0.00000 - 49 Bend 17 15 19 116.12222 -0.00000 - 50 Bend 18 16 20 116.12222 -0.00000 + 13 Stretch 11 13 1.10042 -0.00000 + 14 Stretch 11 15 1.34427 0.00000 + 15 Stretch 12 14 1.10042 -0.00000 + 16 Stretch 12 16 1.34427 0.00000 + 17 Stretch 15 17 1.09598 -0.00001 + 18 Stretch 15 19 1.09622 0.00000 + 19 Stretch 16 18 1.09598 -0.00001 + 20 Stretch 16 20 1.09622 0.00000 + 21 Bend 1 3 5 121.35706 -0.00000 + 22 Bend 1 3 7 119.02322 0.00000 + 23 Bend 1 6 4 120.85240 0.00000 + 24 Bend 1 6 10 119.76069 -0.00000 + 25 Bend 1 12 14 114.42832 -0.00000 + 26 Bend 1 12 16 126.60801 0.00000 + 27 Bend 2 4 6 121.35706 -0.00000 + 28 Bend 2 4 8 119.02322 0.00000 + 29 Bend 2 5 3 120.85240 0.00000 + 30 Bend 2 5 9 119.76069 -0.00000 + 31 Bend 2 11 13 114.42832 -0.00000 + 32 Bend 2 11 15 126.60801 0.00000 + 33 Bend 3 1 6 117.79055 -0.00000 + 34 Bend 3 1 12 119.16404 -0.00000 + 35 Bend 3 5 9 119.38691 0.00000 + 36 Bend 4 2 5 117.79055 -0.00000 + 37 Bend 4 2 11 119.16404 -0.00000 + 38 Bend 4 6 10 119.38691 0.00000 + 39 Bend 5 2 11 123.04542 0.00000 + 40 Bend 5 3 7 119.61972 -0.00000 + 41 Bend 6 1 12 123.04542 0.00000 + 42 Bend 6 4 8 119.61972 -0.00000 + 43 Bend 11 15 17 122.65784 0.00000 + 44 Bend 11 15 19 121.22189 0.00000 + 45 Bend 12 16 18 122.65784 0.00000 + 46 Bend 12 16 20 121.22189 0.00000 + 47 Bend 13 11 15 118.96367 0.00000 + 48 Bend 14 12 16 118.96367 0.00000 + 49 Bend 17 15 19 116.12028 -0.00000 + 50 Bend 18 16 20 116.12028 -0.00000 51 Torsion 1 3 5 2 0.00000 0.00000 52 Torsion 1 3 5 9 180.00000 0.00000 53 Torsion 1 6 4 2 0.00000 0.00000 @@ -5468,7 +5537,7 @@ Divinylbenzene in STO-3G basis set 68 Torsion 4 2 11 13 0.00000 0.00000 69 Torsion 4 2 11 15 180.00000 0.00000 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 0.00000 + 71 Torsion 5 2 4 6 0.00000 0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 73 Torsion 5 2 11 13 180.00000 0.00000 74 Torsion 5 2 11 15 0.00000 0.00000 @@ -5478,17 +5547,17 @@ Divinylbenzene in STO-3G basis set 78 Torsion 6 1 12 14 180.00000 0.00000 79 Torsion 6 1 12 16 0.00000 0.00000 80 Torsion 6 4 2 11 180.00000 0.00000 - 81 Torsion 7 3 1 12 -0.00000 0.00000 + 81 Torsion 7 3 1 12 0.00000 0.00000 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 0.00000 + 83 Torsion 8 4 2 11 0.00000 0.00000 84 Torsion 8 4 6 10 0.00000 0.00000 85 Torsion 9 5 2 11 0.00000 0.00000 86 Torsion 10 6 1 12 0.00000 0.00000 87 Torsion 13 11 15 17 180.00000 0.00000 - 88 Torsion 13 11 15 19 -0.00000 0.00000 + 88 Torsion 13 11 15 19 0.00000 0.00000 89 Torsion 14 12 16 18 180.00000 0.00000 - 90 Torsion 14 12 16 20 -0.00000 0.00000 - + 90 Torsion 14 12 16 20 0.00000 0.00000 + ---------------------- Optimization converged @@ -5497,7 +5566,7 @@ Divinylbenzene in STO-3G basis set Step Energy Delta E Gmax Grms Xrms Xmax Walltime ---- ---------------- -------- -------- -------- -------- -------- -------- -@ 3 -382.30826149 -1.4D-07 0.00002 0.00000 0.00020 0.00053 16.8 +@ 3 -382.30826164 -7.9D-08 0.00001 0.00000 0.00011 0.00039 9.9 ok ok ok ok @@ -5506,59 +5575,59 @@ Divinylbenzene in STO-3G basis set -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value Gradient ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- - 1 Stretch 1 3 1.42247 0.00001 - 2 Stretch 1 6 1.42121 0.00002 - 3 Stretch 1 12 1.49753 -0.00001 - 4 Stretch 2 4 1.42247 0.00001 - 5 Stretch 2 5 1.42121 0.00002 - 6 Stretch 2 11 1.49753 -0.00001 - 7 Stretch 3 5 1.40216 0.00000 - 8 Stretch 3 7 1.09865 -0.00000 - 9 Stretch 4 6 1.40216 0.00000 - 10 Stretch 4 8 1.09865 -0.00000 + 1 Stretch 1 3 1.42245 -0.00001 + 2 Stretch 1 6 1.42119 0.00000 + 3 Stretch 1 12 1.49754 -0.00001 + 4 Stretch 2 4 1.42245 -0.00001 + 5 Stretch 2 5 1.42119 0.00000 + 6 Stretch 2 11 1.49754 -0.00001 + 7 Stretch 3 5 1.40216 -0.00000 + 8 Stretch 3 7 1.09864 -0.00000 + 9 Stretch 4 6 1.40216 -0.00000 + 10 Stretch 4 8 1.09864 -0.00000 11 Stretch 5 9 1.09759 -0.00001 12 Stretch 6 10 1.09759 -0.00001 - 13 Stretch 11 13 1.10043 0.00000 - 14 Stretch 11 15 1.34429 0.00002 - 15 Stretch 12 14 1.10043 0.00000 - 16 Stretch 12 16 1.34429 0.00002 - 17 Stretch 15 17 1.09598 -0.00000 - 18 Stretch 15 19 1.09623 0.00001 - 19 Stretch 16 18 1.09598 -0.00000 - 20 Stretch 16 20 1.09623 0.00001 - 21 Bend 1 3 5 121.35727 -0.00000 - 22 Bend 1 3 7 119.02014 -0.00000 - 23 Bend 1 6 4 120.85246 0.00000 - 24 Bend 1 6 10 119.75952 -0.00000 - 25 Bend 1 12 14 114.42892 -0.00000 - 26 Bend 1 12 16 126.60923 0.00000 - 27 Bend 2 4 6 121.35727 -0.00000 - 28 Bend 2 4 8 119.02014 -0.00000 - 29 Bend 2 5 3 120.85246 0.00000 - 30 Bend 2 5 9 119.75952 -0.00000 - 31 Bend 2 11 13 114.42892 -0.00000 - 32 Bend 2 11 15 126.60923 0.00000 - 33 Bend 3 1 6 117.79027 -0.00000 - 34 Bend 3 1 12 119.16464 0.00000 - 35 Bend 3 5 9 119.38802 0.00000 - 36 Bend 4 2 5 117.79027 -0.00000 - 37 Bend 4 2 11 119.16464 0.00000 - 38 Bend 4 6 10 119.38802 0.00000 - 39 Bend 5 2 11 123.04509 0.00000 - 40 Bend 5 3 7 119.62260 0.00000 - 41 Bend 6 1 12 123.04509 0.00000 - 42 Bend 6 4 8 119.62260 0.00000 - 43 Bend 11 15 17 122.66073 0.00001 - 44 Bend 11 15 19 121.21705 -0.00000 - 45 Bend 12 16 18 122.66073 0.00001 - 46 Bend 12 16 20 121.21705 -0.00000 - 47 Bend 13 11 15 118.96184 0.00000 - 48 Bend 14 12 16 118.96184 0.00000 - 49 Bend 17 15 19 116.12222 -0.00000 - 50 Bend 18 16 20 116.12222 -0.00000 + 13 Stretch 11 13 1.10042 -0.00000 + 14 Stretch 11 15 1.34427 0.00000 + 15 Stretch 12 14 1.10042 -0.00000 + 16 Stretch 12 16 1.34427 0.00000 + 17 Stretch 15 17 1.09598 -0.00001 + 18 Stretch 15 19 1.09622 0.00000 + 19 Stretch 16 18 1.09598 -0.00001 + 20 Stretch 16 20 1.09622 0.00000 + 21 Bend 1 3 5 121.35706 -0.00000 + 22 Bend 1 3 7 119.02322 0.00000 + 23 Bend 1 6 4 120.85240 0.00000 + 24 Bend 1 6 10 119.76069 -0.00000 + 25 Bend 1 12 14 114.42832 -0.00000 + 26 Bend 1 12 16 126.60801 0.00000 + 27 Bend 2 4 6 121.35706 -0.00000 + 28 Bend 2 4 8 119.02322 0.00000 + 29 Bend 2 5 3 120.85240 0.00000 + 30 Bend 2 5 9 119.76069 -0.00000 + 31 Bend 2 11 13 114.42832 -0.00000 + 32 Bend 2 11 15 126.60801 0.00000 + 33 Bend 3 1 6 117.79055 -0.00000 + 34 Bend 3 1 12 119.16404 -0.00000 + 35 Bend 3 5 9 119.38691 0.00000 + 36 Bend 4 2 5 117.79055 -0.00000 + 37 Bend 4 2 11 119.16404 -0.00000 + 38 Bend 4 6 10 119.38691 0.00000 + 39 Bend 5 2 11 123.04542 0.00000 + 40 Bend 5 3 7 119.61972 -0.00000 + 41 Bend 6 1 12 123.04542 0.00000 + 42 Bend 6 4 8 119.61972 -0.00000 + 43 Bend 11 15 17 122.65784 0.00000 + 44 Bend 11 15 19 121.22189 0.00000 + 45 Bend 12 16 18 122.65784 0.00000 + 46 Bend 12 16 20 121.22189 0.00000 + 47 Bend 13 11 15 118.96367 0.00000 + 48 Bend 14 12 16 118.96367 0.00000 + 49 Bend 17 15 19 116.12028 -0.00000 + 50 Bend 18 16 20 116.12028 -0.00000 51 Torsion 1 3 5 2 0.00000 0.00000 52 Torsion 1 3 5 9 180.00000 0.00000 53 Torsion 1 6 4 2 0.00000 0.00000 @@ -5579,7 +5648,7 @@ Divinylbenzene in STO-3G basis set 68 Torsion 4 2 11 13 0.00000 0.00000 69 Torsion 4 2 11 15 180.00000 0.00000 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 0.00000 + 71 Torsion 5 2 4 6 0.00000 0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 73 Torsion 5 2 11 13 180.00000 0.00000 74 Torsion 5 2 11 15 0.00000 0.00000 @@ -5589,137 +5658,137 @@ Divinylbenzene in STO-3G basis set 78 Torsion 6 1 12 14 180.00000 0.00000 79 Torsion 6 1 12 16 0.00000 0.00000 80 Torsion 6 4 2 11 180.00000 0.00000 - 81 Torsion 7 3 1 12 -0.00000 0.00000 + 81 Torsion 7 3 1 12 0.00000 0.00000 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 0.00000 + 83 Torsion 8 4 2 11 0.00000 0.00000 84 Torsion 8 4 6 10 0.00000 0.00000 85 Torsion 9 5 2 11 0.00000 0.00000 86 Torsion 10 6 1 12 0.00000 0.00000 87 Torsion 13 11 15 17 180.00000 0.00000 - 88 Torsion 13 11 15 19 -0.00000 0.00000 + 88 Torsion 13 11 15 19 0.00000 0.00000 89 Torsion 14 12 16 18 180.00000 0.00000 - 90 Torsion 14 12 16 20 -0.00000 0.00000 - - - + 90 Torsion 14 12 16 20 0.00000 0.00000 + + + Geometry "geometry" -> "geometry" --------------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- - 1 C 6.0000 0.23508346 1.41622985 0.00000000 - 2 C 6.0000 -0.23508346 -1.41622985 0.00000000 - 3 C 6.0000 1.31391866 0.48912507 0.00000000 - 4 C 6.0000 -1.31391866 -0.48912507 0.00000000 - 5 C 6.0000 1.08691131 -0.89453920 0.00000000 - 6 C 6.0000 -1.08691131 0.89453920 0.00000000 - 7 H 1.0000 2.34428971 0.87038359 0.00000000 - 8 H 1.0000 -2.34428971 -0.87038359 0.00000000 - 9 H 1.0000 1.94344652 -1.58087860 0.00000000 - 10 H 1.0000 -1.94344652 1.58087860 0.00000000 - 11 C 6.0000 -0.53389105 -2.88364229 0.00000000 - 12 C 6.0000 0.53389105 2.88364229 0.00000000 - 13 H 1.0000 -1.60646118 -3.12967212 0.00000000 - 14 H 1.0000 1.60646118 3.12967212 0.00000000 - 15 C 6.0000 0.36353694 -3.88450778 0.00000000 - 16 C 6.0000 -0.36353694 3.88450778 0.00000000 - 17 H 1.0000 1.44535655 -3.70889738 0.00000000 - 18 H 1.0000 -1.44535655 3.70889738 0.00000000 - 19 H 1.0000 0.04482672 -4.93338197 0.00000000 - 20 H 1.0000 -0.04482672 4.93338197 0.00000000 - + 1 C 6.0000 0.23508647 1.41621544 0.00000000 + 2 C 6.0000 -0.23508647 -1.41621544 0.00000000 + 3 C 6.0000 1.31390635 0.48912330 0.00000000 + 4 C 6.0000 -1.31390635 -0.48912330 0.00000000 + 5 C 6.0000 1.08689379 -0.89453821 0.00000000 + 6 C 6.0000 -1.08689379 0.89453821 0.00000000 + 7 H 1.0000 2.34429319 0.87032423 0.00000000 + 8 H 1.0000 -2.34429319 -0.87032423 0.00000000 + 9 H 1.0000 1.94343859 -1.58086372 0.00000000 + 10 H 1.0000 -1.94343859 1.58086372 0.00000000 + 11 C 6.0000 -0.53391326 -2.88364140 0.00000000 + 12 C 6.0000 0.53391326 2.88364140 0.00000000 + 13 H 1.0000 -1.60648263 -3.12964689 0.00000000 + 14 H 1.0000 1.60648263 3.12964689 0.00000000 + 15 C 6.0000 0.36351559 -3.88448663 0.00000000 + 16 C 6.0000 -0.36351559 3.88448663 0.00000000 + 17 H 1.0000 1.44532237 -3.70881062 0.00000000 + 18 H 1.0000 -1.44532237 3.70881062 0.00000000 + 19 H 1.0000 0.04490649 -4.93338582 0.00000000 + 20 H 1.0000 -0.04490649 4.93338582 0.00000000 + Atomic Mass ----------- - + C 12.000000 H 1.007825 + - - Effective nuclear repulsion energy (a.u.) 445.8936950715 + Effective nuclear repulsion energy (a.u.) 445.8961635930 Nuclear Dipole moment (a.u.) ---------------------------- X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - - + + Final and change from initial internal coordinates -------------------------------------------------- - + Z-matrix (autoz) -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value Change ----------- -------- ----- ----- ----- ----- ----- ---------- ---------- - 1 Stretch 1 3 1.42247 0.00043 - 2 Stretch 1 6 1.42121 -0.00076 - 3 Stretch 1 12 1.49753 -0.00032 - 4 Stretch 2 4 1.42247 0.00043 - 5 Stretch 2 5 1.42121 -0.00076 - 6 Stretch 2 11 1.49753 -0.00032 - 7 Stretch 3 5 1.40216 -0.00030 - 8 Stretch 3 7 1.09865 -0.00007 - 9 Stretch 4 6 1.40216 -0.00030 - 10 Stretch 4 8 1.09865 -0.00007 + 1 Stretch 1 3 1.42245 0.00041 + 2 Stretch 1 6 1.42119 -0.00078 + 3 Stretch 1 12 1.49754 -0.00030 + 4 Stretch 2 4 1.42245 0.00041 + 5 Stretch 2 5 1.42119 -0.00078 + 6 Stretch 2 11 1.49754 -0.00030 + 7 Stretch 3 5 1.40216 -0.00031 + 8 Stretch 3 7 1.09864 -0.00008 + 9 Stretch 4 6 1.40216 -0.00031 + 10 Stretch 4 8 1.09864 -0.00008 11 Stretch 5 9 1.09759 0.00058 12 Stretch 6 10 1.09759 0.00058 - 13 Stretch 11 13 1.10043 -0.00056 - 14 Stretch 11 15 1.34429 0.00005 - 15 Stretch 12 14 1.10043 -0.00056 - 16 Stretch 12 16 1.34429 0.00005 - 17 Stretch 15 17 1.09598 0.00001 - 18 Stretch 15 19 1.09623 -0.00044 - 19 Stretch 16 18 1.09598 0.00001 - 20 Stretch 16 20 1.09623 -0.00044 - 21 Bend 1 3 5 121.35727 0.20860 - 22 Bend 1 3 7 119.02014 -0.18096 - 23 Bend 1 6 4 120.85246 -0.02112 - 24 Bend 1 6 10 119.75952 0.33667 - 25 Bend 1 12 14 114.42892 -0.20061 - 26 Bend 1 12 16 126.60923 0.02931 - 27 Bend 2 4 6 121.35727 0.20860 - 28 Bend 2 4 8 119.02014 -0.18096 - 29 Bend 2 5 3 120.85246 -0.02112 - 30 Bend 2 5 9 119.75952 0.33667 - 31 Bend 2 11 13 114.42892 -0.20061 - 32 Bend 2 11 15 126.60923 0.02931 - 33 Bend 3 1 6 117.79027 -0.18748 - 34 Bend 3 1 12 119.16464 0.04308 - 35 Bend 3 5 9 119.38802 -0.31555 - 36 Bend 4 2 5 117.79027 -0.18748 - 37 Bend 4 2 11 119.16464 0.04308 - 38 Bend 4 6 10 119.38802 -0.31555 - 39 Bend 5 2 11 123.04509 0.14440 - 40 Bend 5 3 7 119.62260 -0.02764 - 41 Bend 6 1 12 123.04509 0.14440 - 42 Bend 6 4 8 119.62260 -0.02764 - 43 Bend 11 15 17 122.66073 0.17556 - 44 Bend 11 15 19 121.21705 -0.07787 - 45 Bend 12 16 18 122.66073 0.17556 - 46 Bend 12 16 20 121.21705 -0.07787 - 47 Bend 13 11 15 118.96184 0.17130 - 48 Bend 14 12 16 118.96184 0.17130 - 49 Bend 17 15 19 116.12222 -0.09768 - 50 Bend 18 16 20 116.12222 -0.09768 + 13 Stretch 11 13 1.10042 -0.00057 + 14 Stretch 11 15 1.34427 0.00004 + 15 Stretch 12 14 1.10042 -0.00057 + 16 Stretch 12 16 1.34427 0.00004 + 17 Stretch 15 17 1.09598 0.00000 + 18 Stretch 15 19 1.09622 -0.00045 + 19 Stretch 16 18 1.09598 0.00000 + 20 Stretch 16 20 1.09622 -0.00045 + 21 Bend 1 3 5 121.35706 0.20839 + 22 Bend 1 3 7 119.02322 -0.17787 + 23 Bend 1 6 4 120.85240 -0.02118 + 24 Bend 1 6 10 119.76069 0.33784 + 25 Bend 1 12 14 114.42832 -0.20122 + 26 Bend 1 12 16 126.60801 0.02809 + 27 Bend 2 4 6 121.35706 0.20839 + 28 Bend 2 4 8 119.02322 -0.17787 + 29 Bend 2 5 3 120.85240 -0.02118 + 30 Bend 2 5 9 119.76069 0.33784 + 31 Bend 2 11 13 114.42832 -0.20122 + 32 Bend 2 11 15 126.60801 0.02809 + 33 Bend 3 1 6 117.79055 -0.18721 + 34 Bend 3 1 12 119.16404 0.04248 + 35 Bend 3 5 9 119.38691 -0.31666 + 36 Bend 4 2 5 117.79055 -0.18721 + 37 Bend 4 2 11 119.16404 0.04248 + 38 Bend 4 6 10 119.38691 -0.31666 + 39 Bend 5 2 11 123.04542 0.14473 + 40 Bend 5 3 7 119.61972 -0.03052 + 41 Bend 6 1 12 123.04542 0.14473 + 42 Bend 6 4 8 119.61972 -0.03052 + 43 Bend 11 15 17 122.65784 0.17267 + 44 Bend 11 15 19 121.22189 -0.07304 + 45 Bend 12 16 18 122.65784 0.17267 + 46 Bend 12 16 20 121.22189 -0.07304 + 47 Bend 13 11 15 118.96367 0.17313 + 48 Bend 14 12 16 118.96367 0.17313 + 49 Bend 17 15 19 116.12028 -0.09963 + 50 Bend 18 16 20 116.12028 -0.09963 51 Torsion 1 3 5 2 0.00000 0.00000 52 Torsion 1 3 5 9 180.00000 0.00000 53 Torsion 1 6 4 2 0.00000 0.00000 @@ -5740,7 +5809,7 @@ Divinylbenzene in STO-3G basis set 68 Torsion 4 2 11 13 0.00000 0.00000 69 Torsion 4 2 11 15 180.00000 0.00000 70 Torsion 4 6 1 12 180.00000 0.00000 - 71 Torsion 5 2 4 6 -0.00000 0.00000 + 71 Torsion 5 2 4 6 0.00000 0.00000 72 Torsion 5 2 4 8 180.00000 0.00000 73 Torsion 5 2 11 13 180.00000 0.00000 74 Torsion 5 2 11 15 0.00000 0.00000 @@ -5750,42 +5819,42 @@ Divinylbenzene in STO-3G basis set 78 Torsion 6 1 12 14 180.00000 0.00000 79 Torsion 6 1 12 16 0.00000 0.00000 80 Torsion 6 4 2 11 180.00000 0.00000 - 81 Torsion 7 3 1 12 -0.00000 0.00000 + 81 Torsion 7 3 1 12 0.00000 0.00000 82 Torsion 7 3 5 9 0.00000 0.00000 - 83 Torsion 8 4 2 11 -0.00000 0.00000 + 83 Torsion 8 4 2 11 0.00000 0.00000 84 Torsion 8 4 6 10 0.00000 0.00000 85 Torsion 9 5 2 11 0.00000 0.00000 86 Torsion 10 6 1 12 0.00000 0.00000 87 Torsion 13 11 15 17 180.00000 0.00000 - 88 Torsion 13 11 15 19 -0.00000 0.00000 + 88 Torsion 13 11 15 19 0.00000 0.00000 89 Torsion 14 12 16 18 180.00000 0.00000 - 90 Torsion 14 12 16 20 -0.00000 0.00000 - + 90 Torsion 14 12 16 20 0.00000 0.00000 + ============================================================================== internuclear distances ------------------------------------------------------------------------------ center one | center two | atomic units | angstroms ------------------------------------------------------------------------------ - 3 C | 1 C | 2.68807 | 1.42247 - 4 C | 2 C | 2.68807 | 1.42247 - 5 C | 2 C | 2.68569 | 1.42121 + 3 C | 1 C | 2.68803 | 1.42245 + 4 C | 2 C | 2.68803 | 1.42245 + 5 C | 2 C | 2.68566 | 1.42119 5 C | 3 C | 2.64970 | 1.40216 - 6 C | 1 C | 2.68569 | 1.42121 + 6 C | 1 C | 2.68566 | 1.42119 6 C | 4 C | 2.64970 | 1.40216 - 7 H | 3 C | 2.07614 | 1.09865 - 8 H | 4 C | 2.07614 | 1.09865 + 7 H | 3 C | 2.07613 | 1.09864 + 8 H | 4 C | 2.07613 | 1.09864 9 H | 5 C | 2.07415 | 1.09759 10 H | 6 C | 2.07415 | 1.09759 - 11 C | 2 C | 2.82991 | 1.49753 - 12 C | 1 C | 2.82991 | 1.49753 - 13 H | 11 C | 2.07950 | 1.10043 - 14 H | 12 C | 2.07950 | 1.10043 - 15 C | 11 C | 2.54033 | 1.34429 - 16 C | 12 C | 2.54033 | 1.34429 + 11 C | 2 C | 2.82995 | 1.49754 + 12 C | 1 C | 2.82995 | 1.49754 + 13 H | 11 C | 2.07949 | 1.10042 + 14 H | 12 C | 2.07949 | 1.10042 + 15 C | 11 C | 2.54031 | 1.34427 + 16 C | 12 C | 2.54031 | 1.34427 17 H | 15 C | 2.07110 | 1.09598 18 H | 16 C | 2.07110 | 1.09598 - 19 H | 15 C | 2.07157 | 1.09623 - 20 H | 16 C | 2.07157 | 1.09623 + 19 H | 15 C | 2.07156 | 1.09622 + 20 H | 16 C | 2.07156 | 1.09622 ------------------------------------------------------------------------------ number of included internuclear distances: 20 ============================================================================== @@ -5834,7 +5903,13 @@ Divinylbenzene in STO-3G basis set - Task times cpu: 16.7s wall: 16.8s + Task times cpu: 9.1s wall: 9.8s + + + NWChem Input Module + ------------------- + + Summary of allocated global arrays ----------------------------------- No active global arrays @@ -5845,11 +5920,12 @@ Divinylbenzene in STO-3G basis set ------------------------------ create destroy get put acc scatter gather read&inc -calls: 805 805 4.54e+05 1.89e+04 3.10e+05 0 0 3.97e+04 -number of processes/call -4.88e+12 5.93e+13 2.34e+12 0.00e+00 0.00e+00 -bytes total: 8.81e+07 1.98e+07 3.45e+07 0.00e+00 0.00e+00 3.18e+05 -bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 1123200 bytes +calls: 791 791 9.79e+04 5711 6.41e+04 0 0 8693 +number of processes/call 1.65e+13 8.08e+13 7.79e+11 0.00e+00 0.00e+00 +bytes total: 3.73e+07 6.69e+06 1.51e+07 0.00e+00 0.00e+00 6.95e+04 +bytes remote: 2.59e+07 3.04e+06 1.10e+07 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 288736 bytes + MA_summarize_allocated_blocks: starting scan ... MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: @@ -5858,51 +5934,26 @@ MA usage statistics: heap stack ---- ----- current number of blocks 0 0 - maximum number of blocks 26 57 + maximum number of blocks 25 57 current total bytes 0 0 - maximum total bytes 57734664 22516376 - maximum total K-bytes 57735 22517 - maximum total M-bytes 58 23 - - - NWChem Input Module - ------------------- - - - - - + maximum total bytes 5140616 22516360 + maximum total K-bytes 5141 22517 + maximum total M-bytes 6 23 + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, - V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, - J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, - J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, - C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, - K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, - J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, - V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, - B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, - S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, - A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, - D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, - J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, - A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, - R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, - D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, - V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, - Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, - D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, - A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, - and R. J. Harrison - "NWChem: Past, present, and future - J. Chem. Phys. 152, 184102 (2020) - doi:10.1063/5.0004997 - + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -5925,4 +5976,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 16.7s wall: 16.8s + Total times cpu: 9.1s wall: 9.9s diff --git a/data/NWChem/basicNWChem7.0/dvb_ir.out b/data/NWChem/basicNWChem7.0/dvb_ir.out index e43936703..9e90b7a72 100644 --- a/data/NWChem/basicNWChem7.0/dvb_ir.out +++ b/data/NWChem/basicNWChem7.0/dvb_ir.out @@ -1,26 +1,26 @@ argument 1 = dvb_ir.in - - - Northwest Computational Chemistry Package (NWChem) 7.0.2 + + + Northwest Computational Chemistry Package (NWChem) 7.0.0 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2020 + + Copyright (c) 1994-2019 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = osmium - program = nwchem - date = Sat Jun 4 13:41:03 2022 + hostname = smp-n17.sam.pitt.edu + program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem + date = Tue Sep 20 18:21:21 2022 - compiled = Fri_Jul_02_16:33:00_2021 - source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src - nwchem branch = 7.0.2 - nwchem revision = b9985dfa - ga revision = 5.7.2 - use scalapack = T + compiled = Wed_May_13_13:33:26_2020 + source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 + nwchem branch = 7.0.0 + nwchem revision = N/A + ga revision = 5.7.1 + use scalapack = F input = dvb_ir.in prefix = dvb. data base = ./dvb.db status = startup - nproc = 1 + nproc = 4 time left = -1s @@ -68,17 +68,17 @@ Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + Divinylbenzene in STO-3G basis set ---------------------------------- @@ -90,15 +90,15 @@ ------ auto-z ------ - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - - + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 C 6.0000 0.23680554 1.41416660 0.00000000 @@ -121,13 +121,13 @@ 18 H 1.0000 -1.44522900 3.70144241 0.00000000 19 H 1.0000 0.04815351 -4.93192286 0.00000000 20 H 1.0000 -0.04815351 4.93192286 0.00000000 - + Atomic Mass ----------- - + C 12.000000 H 1.007825 - + Effective nuclear repulsion energy (a.u.) 445.9370121674 @@ -136,26 +136,26 @@ X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - + Z-matrix (autoz) -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value ----------- -------- ----- ----- ----- ----- ----- ---------- 1 Stretch 1 3 1.42204 @@ -228,7 +228,7 @@ 68 Torsion 4 2 11 13 0.00000 69 Torsion 4 2 11 15 180.00000 70 Torsion 4 6 1 12 180.00000 - 71 Torsion 5 2 4 6 -0.00000 + 71 Torsion 5 2 4 6 0.00000 72 Torsion 5 2 4 8 180.00000 73 Torsion 5 2 11 13 180.00000 74 Torsion 5 2 11 15 0.00000 @@ -238,18 +238,18 @@ 78 Torsion 6 1 12 14 180.00000 79 Torsion 6 1 12 16 0.00000 80 Torsion 6 4 2 11 180.00000 - 81 Torsion 7 3 1 12 -0.00000 + 81 Torsion 7 3 1 12 0.00000 82 Torsion 7 3 5 9 0.00000 - 83 Torsion 8 4 2 11 -0.00000 + 83 Torsion 8 4 2 11 0.00000 84 Torsion 8 4 6 10 0.00000 85 Torsion 9 5 2 11 0.00000 86 Torsion 10 6 1 12 0.00000 87 Torsion 13 11 15 17 180.00000 - 88 Torsion 13 11 15 19 -0.00000 + 88 Torsion 13 11 15 19 0.00000 89 Torsion 14 12 16 18 180.00000 - 90 Torsion 14 12 16 20 -0.00000 - - + 90 Torsion 14 12 16 20 0.00000 + + XYZ format geometry ------------------- 20 @@ -274,7 +274,7 @@ H -1.44522900 3.70144241 0.00000000 H 0.04815351 -4.93192286 0.00000000 H -0.04815351 4.93192286 0.00000000 - + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -347,9 +347,6 @@ - library name resolved from: environment - library file name is: - Summary of "ao basis" -> "" (cartesian) @@ -359,16 +356,16 @@ * sto-3g on all atoms - - + + NWChem Nuclear Hessian and Frequency Analysis --------------------------------------------- - - - + + + NWChem Analytic Hessian ----------------------- - + Basis "ao basis" -> "ao basis" (cartesian) ----- C (Carbon) @@ -378,15 +375,15 @@ 1 S 7.16168370E+01 0.154329 1 S 1.30450960E+01 0.535328 1 S 3.53051220E+00 0.444635 - + 2 S 2.94124940E+00 -0.099967 2 S 6.83483100E-01 0.399513 2 S 2.22289900E-01 0.700115 - + 3 P 2.94124940E+00 0.155916 3 P 6.83483100E-01 0.607684 3 P 2.22289900E-01 0.391957 - + H (Hydrogen) ------------ Exponent Coefficients @@ -394,7 +391,7 @@ 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + Summary of "ao basis" -> "ao basis" (cartesian) @@ -410,20 +407,20 @@ HESSIAN: the one electron contributions are done in 0.3s - HESSIAN: 2-el 1st deriv. term done in 1.7s + HESSIAN: 2-el 1st deriv. term done in 2.3s - HESSIAN: 2-el 2nd deriv. term done in 5.5s + HESSIAN: 2-el 2nd deriv. term done in 3.4s stpr_wrt_fd_from_sq: overwrite of existing file:./dvb.hess stpr_wrt_fd_dipole: overwrite of existing file./dvb.fd_ddipole - HESSIAN: the two electron contributions are done in 38.4s + HESSIAN: the two electron contributions are done in 25.0s NWChem CPHF Module ------------------ - - + + scftype = RHF nclosed = 35 nopen = 0 @@ -434,9 +431,9 @@ max iterations = 50 max subspace = 600 - Grid integrated density: 69.999985865524 + Grid integrated density: 69.999985865642 Requested integration accuracy: 0.10E-13 - SCF residual: 9.8629681555313482E-005 + SCF residual: 9.863227145154007E-005 Iterative solution of linear equations @@ -445,15 +442,15 @@ Iterative solution of linear equations Maximum subspace 600 Iterations 50 Convergence 1.0D-04 - Start time 105.2 + Start time 77.8 iter nsub residual time ---- ------ -------- --------- - 1 60 1.02D-01 155.4 - 2 120 3.15D-02 205.2 - 3 180 3.68D-04 255.1 - 4 240 4.12D-05 304.9 + 1 60 1.02D-01 114.1 + 2 120 3.14D-02 150.4 + 3 180 3.42D-04 186.6 + 4 240 9.07D-06 222.8 HESSIAN: the CPHF contributions are done stpr_wrt_fd_from_sq: overwrite of existing file:./dvb.hess stpr_wrt_fd_dipole: overwrite of existing file./dvb.fd_ddipole @@ -463,203 +460,203 @@ Iterative solution of linear equations X vector of derivative dipole (au) [debye/angstrom] - d_dipole_x/ = -0.1509 [ -0.7249] - d_dipole_x/ = -0.0022 [ -0.0108] - d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = -0.1509 [ -0.7249] - d_dipole_x/ = -0.0022 [ -0.0108] - d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = 0.0277 [ 0.1332] - d_dipole_x/ = 0.0824 [ 0.3956] - d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = 0.0277 [ 0.1332] - d_dipole_x/ = 0.0824 [ 0.3956] - d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = -0.0413 [ -0.1985] + d_dipole_x/ = -0.1510 [ -0.7254] + d_dipole_x/ = -0.0021 [ -0.0102] + d_dipole_x/ = 0.0000 [ 0.0000] + d_dipole_x/ = -0.1510 [ -0.7254] + d_dipole_x/ = -0.0021 [ -0.0102] + d_dipole_x/ = 0.0000 [ 0.0000] + d_dipole_x/ = 0.0275 [ 0.1322] + d_dipole_x/ = 0.0823 [ 0.3954] + d_dipole_x/ = 0.0000 [ 0.0000] + d_dipole_x/ = 0.0275 [ 0.1322] + d_dipole_x/ = 0.0823 [ 0.3954] + d_dipole_x/ = 0.0000 [ 0.0000] + d_dipole_x/ = -0.0413 [ -0.1984] d_dipole_x/ = -0.0967 [ -0.4647] - d_dipole_x/ = 0.0000 [ 0.0000] - d_dipole_x/ = -0.0413 [ -0.1985] + d_dipole_x/ = -0.0000 [ -0.0000] + d_dipole_x/ = -0.0413 [ -0.1984] d_dipole_x/ = -0.0967 [ -0.4647] - d_dipole_x/ = 0.0000 [ 0.0000] - d_dipole_x/ = 0.0607 [ 0.2916] - d_dipole_x/ = -0.0125 [ -0.0602] + d_dipole_x/ = -0.0000 [ -0.0000] + d_dipole_x/ = 0.0609 [ 0.2926] + d_dipole_x/ = -0.0124 [ -0.0597] d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = 0.0607 [ 0.2916] - d_dipole_x/ = -0.0125 [ -0.0602] - d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = 0.0624 [ 0.2998] - d_dipole_x/ = 0.0106 [ 0.0509] - d_dipole_x/ = 0.0000 [ 0.0000] - d_dipole_x/ = 0.0624 [ 0.2998] - d_dipole_x/ = 0.0106 [ 0.0509] + d_dipole_x/ = 0.0609 [ 0.2926] + d_dipole_x/ = -0.0124 [ -0.0597] + d_dipole_x/ = 0.0000 [ 0.0000] + d_dipole_x/ = 0.0625 [ 0.3002] + d_dipole_x/ = 0.0105 [ 0.0506] + d_dipole_x/ = -0.0000 [ -0.0000] + d_dipole_x/ = 0.0625 [ 0.3002] + d_dipole_x/ = 0.0105 [ 0.0506] d_dipole_x/ = 0.0000 [ 0.0000] - d_dipole_x/ = -0.0040 [ -0.0191] - d_dipole_x/ = 0.0183 [ 0.0880] - d_dipole_x/ = 0.0000 [ 0.0000] - d_dipole_x/ = -0.0040 [ -0.0191] - d_dipole_x/ = 0.0183 [ 0.0880] - d_dipole_x/ = 0.0000 [ 0.0000] - d_dipole_x/ = 0.0198 [ 0.0949] - d_dipole_x/ = 0.0195 [ 0.0939] + d_dipole_x/ = -0.0041 [ -0.0198] + d_dipole_x/ = 0.0182 [ 0.0875] + d_dipole_x/ = -0.0000 [ -0.0000] + d_dipole_x/ = -0.0041 [ -0.0198] + d_dipole_x/ = 0.0182 [ 0.0875] + d_dipole_x/ = -0.0000 [ -0.0000] + d_dipole_x/ = 0.0199 [ 0.0955] + d_dipole_x/ = 0.0196 [ 0.0940] d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = 0.0198 [ 0.0949] - d_dipole_x/ = 0.0195 [ 0.0939] + d_dipole_x/ = 0.0199 [ 0.0955] + d_dipole_x/ = 0.0196 [ 0.0940] d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = -0.0385 [ -0.1849] - d_dipole_x/ = 0.0441 [ 0.2117] + d_dipole_x/ = -0.0385 [ -0.1851] + d_dipole_x/ = 0.0441 [ 0.2116] d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = -0.0385 [ -0.1849] - d_dipole_x/ = 0.0441 [ 0.2117] + d_dipole_x/ = -0.0385 [ -0.1851] + d_dipole_x/ = 0.0441 [ 0.2116] d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = 0.0371 [ 0.1780] + d_dipole_x/ = 0.0371 [ 0.1782] d_dipole_x/ = -0.0203 [ -0.0974] d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = 0.0371 [ 0.1780] + d_dipole_x/ = 0.0371 [ 0.1782] d_dipole_x/ = -0.0203 [ -0.0974] d_dipole_x/ = -0.0000 [ -0.0000] - d_dipole_x/ = 0.0271 [ 0.1299] - d_dipole_x/ = -0.0431 [ -0.2071] - d_dipole_x/ = 0.0000 [ 0.0000] - d_dipole_x/ = 0.0271 [ 0.1299] - d_dipole_x/ = -0.0431 [ -0.2071] - d_dipole_x/ = 0.0000 [ 0.0000] + d_dipole_x/ = 0.0271 [ 0.1300] + d_dipole_x/ = -0.0431 [ -0.2070] + d_dipole_x/ = -0.0000 [ -0.0000] + d_dipole_x/ = 0.0271 [ 0.1300] + d_dipole_x/ = -0.0431 [ -0.2070] + d_dipole_x/ = -0.0000 [ -0.0000] Y vector of derivative dipole (au) [debye/angstrom] - d_dipole_y/ = -0.0720 [ -0.3459] - d_dipole_y/ = 0.1879 [ 0.9024] - d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = -0.0720 [ -0.3459] - d_dipole_y/ = 0.1879 [ 0.9024] - d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = 0.0748 [ 0.3594] - d_dipole_y/ = -0.1833 [ -0.8805] - d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = 0.0748 [ 0.3594] - d_dipole_y/ = -0.1833 [ -0.8805] - d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = -0.1109 [ -0.5327] - d_dipole_y/ = -0.1165 [ -0.5596] - d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = -0.1109 [ -0.5327] - d_dipole_y/ = -0.1165 [ -0.5596] - d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = -0.0187 [ -0.0897] - d_dipole_y/ = 0.0366 [ 0.1756] - d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = -0.0187 [ -0.0897] - d_dipole_y/ = 0.0366 [ 0.1756] + d_dipole_y/ = -0.0718 [ -0.3449] + d_dipole_y/ = 0.1873 [ 0.8998] + d_dipole_y/ = -0.0000 [ -0.0000] + d_dipole_y/ = -0.0718 [ -0.3449] + d_dipole_y/ = 0.1873 [ 0.8998] + d_dipole_y/ = -0.0000 [ -0.0000] + d_dipole_y/ = 0.0751 [ 0.3606] + d_dipole_y/ = -0.1833 [ -0.8803] + d_dipole_y/ = -0.0000 [ -0.0000] + d_dipole_y/ = 0.0751 [ 0.3606] + d_dipole_y/ = -0.1833 [ -0.8803] + d_dipole_y/ = -0.0000 [ -0.0000] + d_dipole_y/ = -0.1113 [ -0.5348] + d_dipole_y/ = -0.1166 [ -0.5601] + d_dipole_y/ = 0.0000 [ 0.0000] + d_dipole_y/ = -0.1113 [ -0.5348] + d_dipole_y/ = -0.1166 [ -0.5601] + d_dipole_y/ = 0.0000 [ 0.0000] + d_dipole_y/ = -0.0187 [ -0.0899] + d_dipole_y/ = 0.0366 [ 0.1759] + d_dipole_y/ = 0.0000 [ 0.0000] + d_dipole_y/ = -0.0187 [ -0.0899] + d_dipole_y/ = 0.0366 [ 0.1759] d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = 0.0100 [ 0.0480] - d_dipole_y/ = 0.0357 [ 0.1714] + d_dipole_y/ = 0.0101 [ 0.0484] + d_dipole_y/ = 0.0357 [ 0.1716] d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = 0.0100 [ 0.0480] - d_dipole_y/ = 0.0357 [ 0.1714] + d_dipole_y/ = 0.0101 [ 0.0484] + d_dipole_y/ = 0.0357 [ 0.1716] d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = 0.3361 [ 1.6142] - d_dipole_y/ = 0.1970 [ 0.9464] + d_dipole_y/ = 0.3359 [ 1.6134] + d_dipole_y/ = 0.1973 [ 0.9477] d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = 0.3361 [ 1.6142] - d_dipole_y/ = 0.1970 [ 0.9464] - d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = -0.0653 [ -0.3139] - d_dipole_y/ = -0.0307 [ -0.1477] - d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = -0.0653 [ -0.3139] - d_dipole_y/ = -0.0307 [ -0.1477] - d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = -0.0540 [ -0.2593] - d_dipole_y/ = -0.2575 [ -1.2368] + d_dipole_y/ = 0.3359 [ 1.6134] + d_dipole_y/ = 0.1973 [ 0.9477] + d_dipole_y/ = 0.0000 [ 0.0000] + d_dipole_y/ = -0.0650 [ -0.3123] + d_dipole_y/ = -0.0308 [ -0.1477] + d_dipole_y/ = 0.0000 [ 0.0000] + d_dipole_y/ = -0.0650 [ -0.3123] + d_dipole_y/ = -0.0308 [ -0.1477] + d_dipole_y/ = 0.0000 [ 0.0000] + d_dipole_y/ = -0.0545 [ -0.2615] + d_dipole_y/ = -0.2571 [ -1.2349] d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = -0.0540 [ -0.2593] - d_dipole_y/ = -0.2575 [ -1.2368] + d_dipole_y/ = -0.0545 [ -0.2615] + d_dipole_y/ = -0.2571 [ -1.2349] d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = -0.1558 [ -0.7482] + d_dipole_y/ = -0.1556 [ -0.7472] d_dipole_y/ = 0.0151 [ 0.0724] d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = -0.1558 [ -0.7482] + d_dipole_y/ = -0.1556 [ -0.7472] d_dipole_y/ = 0.0151 [ 0.0724] d_dipole_y/ = 0.0000 [ 0.0000] - d_dipole_y/ = 0.0558 [ 0.2681] - d_dipole_y/ = 0.1159 [ 0.5565] - d_dipole_y/ = -0.0000 [ -0.0000] - d_dipole_y/ = 0.0558 [ 0.2681] - d_dipole_y/ = 0.1159 [ 0.5565] - d_dipole_y/ = -0.0000 [ -0.0000] + d_dipole_y/ = 0.0558 [ 0.2682] + d_dipole_y/ = 0.1157 [ 0.5557] + d_dipole_y/ = 0.0000 [ 0.0000] + d_dipole_y/ = 0.0558 [ 0.2682] + d_dipole_y/ = 0.1157 [ 0.5557] + d_dipole_y/ = 0.0000 [ 0.0000] Z vector of derivative dipole (au) [debye/angstrom] - d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = 0.0274 [ 0.1317] + d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = 0.0274 [ 0.1315] d_dipole_z/ = 0.0000 [ 0.0000] d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0274 [ 0.1317] + d_dipole_z/ = 0.0274 [ 0.1315] d_dipole_z/ = 0.0000 [ 0.0000] d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = -0.0909 [ -0.4367] - d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = -0.0909 [ -0.4365] + d_dipole_z/ = -0.0000 [ -0.0000] d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = -0.0909 [ -0.4367] - d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = -0.0909 [ -0.4365] + d_dipole_z/ = 0.0000 [ 0.0000] d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = -0.0831 [ -0.3991] - d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = -0.0830 [ -0.3988] + d_dipole_z/ = -0.0000 [ -0.0000] d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = -0.0831 [ -0.3991] - d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = 0.0780 [ 0.3746] + d_dipole_z/ = -0.0830 [ -0.3988] + d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = 0.0780 [ 0.3747] d_dipole_z/ = -0.0000 [ -0.0000] d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0780 [ 0.3746] + d_dipole_z/ = 0.0780 [ 0.3747] d_dipole_z/ = -0.0000 [ -0.0000] d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = 0.0792 [ 0.3804] + d_dipole_z/ = 0.0792 [ 0.3802] d_dipole_z/ = 0.0000 [ 0.0000] d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0792 [ 0.3804] - d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = -0.0786 [ -0.3777] - d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = -0.0786 [ -0.3777] + d_dipole_z/ = 0.0792 [ 0.3802] + d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = -0.0790 [ -0.3794] + d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = -0.0790 [ -0.3794] d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = 0.0803 [ 0.3857] - d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = 0.0804 [ 0.3860] + d_dipole_z/ = 0.0000 [ 0.0000] d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = 0.0803 [ 0.3857] - d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = -0.2053 [ -0.9859] + d_dipole_z/ = 0.0804 [ 0.3860] + d_dipole_z/ = 0.0000 [ 0.0000] + d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = -0.2049 [ -0.9840] d_dipole_z/ = -0.0000 [ -0.0000] d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = -0.2053 [ -0.9859] - d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = -0.2049 [ -0.9840] + d_dipole_z/ = 0.0000 [ 0.0000] d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = 0.0985 [ 0.4733] - d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = 0.0985 [ 0.4731] + d_dipole_z/ = 0.0000 [ 0.0000] d_dipole_z/ = -0.0000 [ -0.0000] - d_dipole_z/ = 0.0985 [ 0.4733] - d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = 0.0944 [ 0.4536] - d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = 0.0000 [ 0.0000] - d_dipole_z/ = 0.0944 [ 0.4536] + d_dipole_z/ = 0.0985 [ 0.4731] + d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = 0.0944 [ 0.4532] + d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = -0.0000 [ -0.0000] + d_dipole_z/ = 0.0944 [ 0.4532] HESSIAN: the Hessian is done - - + + Vibrational analysis via the FX method - + See chapter 2 in "Molecular Vibrations" by Wilson, Decius and Cross - + Vib: Default input used - + Nuclear Hessian passed symmetry test - + ---------------------------- Atom information ---------------------------- @@ -697,236 +694,236 @@ Iterative solution of linear equations 1 2 3 4 5 6 7 8 9 10 ----- ----- ----- ----- ----- - 1 6.04378D+01 - 2 1.45037D-01 5.88030D+01 - 3 8.34652D-07 -7.01318D-07 1.31762D+01 - 4 -7.00907D+00 1.31543D+00 8.24936D-07 6.04378D+01 - 5 1.31539D+00 8.54363D-01 -8.21312D-07 1.45036D-01 5.88030D+01 - 6 9.05004D-07 -6.23401D-07 -7.46985D-01 1.22729D-06 -6.43792D-07 1.31762D+01 - 7 -2.21707D+01 1.15482D+01 5.17630D-08 1.76185D+00 -3.07970D+00 1.46176D-08 6.86237D+01 - 8 4.46002D+00 -1.74172D+01 -1.68415D-07 -9.06123D+00 -1.31689D+00 -1.53314D-07 4.62115D+00 6.31130D+01 - 9 1.32242D-06 -1.07189D-06 -5.54095D+00 1.36298D-06 -7.36884D-07 5.76192D-01 4.67979D-07 3.88984D-07 1.17737D+01 - 10 1.76185D+00 -3.07970D+00 3.87702D-08 -2.21707D+01 1.15482D+01 6.56920D-09 -6.73198D-01 2.26187D+00 1.20053D-07 6.86237D+01 - 11 -9.06123D+00 -1.31689D+00 -8.47152D-09 4.46002D+00 -1.74172D+01 -1.09995D-08 2.26182D+00 -6.38046D+00 -3.11653D-07 4.62116D+00 - 12 1.07122D-06 -1.09937D-06 5.76192D-01 1.09448D-06 -7.38311D-07 -5.54095D+00 1.13640D-07 9.66538D-07 -5.95356D-01 5.16881D-08 - 13 5.11185D+00 8.53537D-01 -8.64161D-08 -2.64812D+01 -8.05855D+00 5.38789D-08 -1.28549D+01 1.13598D+00 -2.70039D-07 -4.97396D+00 - 14 6.70428D+00 -4.60684D+00 7.58094D-07 -1.29255D+00 -1.28897D+01 -4.34628D-07 -7.41534D+00 -3.14761D+01 -3.47345D-07 -4.89510D-01 - 15 -1.11487D-06 9.57191D-07 5.86598D-01 -1.24576D-06 5.67163D-07 -5.64533D+00 7.79592D-08 -8.78312D-07 -5.20427D+00 4.08656D-08 - 16 -2.64812D+01 -8.05855D+00 -1.50035D-08 5.11185D+00 8.53538D-01 1.27785D-07 -4.97396D+00 4.43988D+00 -1.26540D-06 -1.28549D+01 - 17 -1.29255D+00 -1.28897D+01 8.45827D-07 6.70428D+00 -4.60684D+00 -3.58964D-07 -4.89510D-01 6.22985D+00 -1.56189D-06 -7.41533D+00 - 18 -1.19063D-06 9.54661D-07 -5.64533D+00 -1.31191D-06 5.62329D-07 5.86598D-01 -1.06258D-08 -7.20677D-07 5.39546D-01 -5.85971D-08 - 19 -4.19844D+00 -3.86560D+00 -1.41877D-06 3.51387D-01 1.08970D-02 1.32092D-06 -1.05254D+02 -3.16199D+01 -3.89710D-06 3.00089D-01 - 20 6.73089D+00 2.87452D+00 -5.62102D-07 4.26943D-01 -1.50738D+00 5.32993D-07 -3.16253D+01 -3.05526D+01 -1.07407D-06 1.72500D-01 - 21 -1.73934D-08 5.97181D-08 6.90372D-01 8.66833D-08 3.20405D-07 2.53489D+00 -2.10859D-07 -3.91720D-07 -1.14697D+01 6.62007D-08 - 22 3.51388D-01 1.08926D-02 -1.88857D-06 -4.19845D+00 -3.86559D+00 8.88651D-07 3.00088D-01 2.26179D-01 2.54303D-06 -1.05254D+02 - 23 4.26943D-01 -1.50738D+00 -8.14152D-07 6.73089D+00 2.87453D+00 3.29680D-07 1.72500D-01 -1.44134D-01 2.12310D-06 -3.16253D+01 - 24 6.30013D-08 8.03511D-08 2.53489D+00 1.73398D-07 3.28913D-07 6.90372D-01 -4.88836D-08 -6.34543D-07 -2.58748D-01 1.86906D-07 - 25 4.31381D-02 -5.24254D-01 -6.43568D-08 -4.33573D+00 6.47309D+00 -2.93688D-07 2.61162D+00 -3.26024D+00 2.99233D-06 -1.06978D+00 - 26 -9.70452D-01 -1.15609D+00 1.59046D-07 -4.02210D+00 3.68313D+00 1.16058D-07 8.13508D+00 -3.85861D+00 -1.84305D-06 -7.35289D-01 - 27 -5.68648D-07 5.84122D-08 2.54265D+00 -9.46961D-07 1.97898D-07 8.13767D-01 5.06071D-07 -1.75045D-07 1.04347D+00 6.12841D-07 - 28 -4.33573D+00 6.47310D+00 2.09644D-07 4.31393D-02 -5.24258D-01 -4.88960D-08 -1.06978D+00 -1.17391D+00 -3.93698D-07 2.61162D+00 - 29 -4.02210D+00 3.68313D+00 4.04625D-08 -9.70452D-01 -1.15609D+00 1.58370D-08 -7.35290D-01 -4.41287D-01 -2.90098D-07 8.13507D+00 - 30 -5.84329D-07 6.78360D-08 8.13767D-01 -9.33993D-07 2.60880D-07 2.54265D+00 5.00895D-07 -1.80840D-07 2.22040D+00 5.78773D-07 - 31 -1.82998D-02 1.29608D-01 -3.07853D-07 -1.02960D+01 -4.67943D+00 3.01425D-07 -5.34756D-01 -7.17831D-02 -1.74721D-07 5.38980D-01 - 32 -2.84990D-02 -5.03059D-01 1.36473D-07 -2.21544D+00 -1.97813D+01 -1.37145D-07 -1.40544D-01 8.43403D-01 1.77333D-07 5.46801D-01 - 33 -1.06942D-06 9.68314D-07 -8.16175D-02 -1.12015D-06 1.03565D-06 -5.28510D+00 -4.61276D-07 -3.95997D-07 5.74050D-01 -2.40936D-07 - 34 -1.02960D+01 -4.67943D+00 -2.34162D-07 -1.83000D-02 1.29609D-01 3.70701D-07 5.38981D-01 2.66574D+00 -1.07376D-06 -5.34756D-01 - 35 -2.21544D+00 -1.97813D+01 9.46213D-09 -2.84984D-02 -5.03060D-01 -2.74014D-07 5.46801D-01 -3.70766D+00 1.91504D-06 -1.40544D-01 - 36 -1.12929D-06 9.61879D-07 -5.28510D+00 -1.17588D-06 1.01671D-06 -8.16177D-02 -5.73732D-07 -2.22497D-07 3.31108D-01 -3.64058D-07 - 37 5.13941D-02 1.70383D-02 2.66340D-07 -6.99095D-01 1.08014D+00 -3.80377D-07 -4.54490D-02 4.80226D-02 -3.77223D-08 4.28924D-01 - 38 2.18738D-02 4.68747D-02 -3.31326D-08 -9.13441D+00 -1.91303D+00 1.31847D-08 -4.89806D-01 7.72444D-02 -1.40271D-07 -6.41644D-01 - 39 3.63115D-07 -1.43777D-07 2.88533D-02 2.01130D-07 6.02620D-08 6.70002D-01 -3.54709D-08 4.12421D-09 7.23613D-04 8.06451D-08 - 40 -6.99096D-01 1.08014D+00 5.19673D-08 5.13946D-02 1.70370D-02 -5.85804D-07 4.28924D-01 7.01919D-01 2.37173D-06 -4.54492D-02 - 41 -9.13441D+00 -1.91303D+00 3.47209D-08 2.18737D-02 4.68745D-02 9.56062D-08 -6.41644D-01 5.13442D-01 -1.36152D-06 -4.89806D-01 - 42 4.13514D-07 -1.05031D-07 6.70002D-01 2.86454D-07 2.17335D-08 2.88534D-02 9.98827D-08 -1.59628D-07 -2.50530D-01 1.81964D-07 - 43 6.95037D-03 -1.62132D-01 -5.10168D-08 1.44641D+00 1.09097D+00 -1.87328D-08 -5.21684D-02 2.47118D-01 7.73815D-07 8.62416D-02 - 44 7.75663D-02 1.51913D-01 2.23235D-07 1.79269D+00 -4.01798D+00 -1.23484D-07 1.20649D-01 -1.41690D-01 -4.76543D-07 -5.87728D-01 - 45 3.94012D-07 -3.34440D-07 -3.36951D-03 3.82940D-07 -4.74257D-07 4.58103D-01 1.35145D-07 2.76378D-07 -3.84838D-02 -3.47479D-08 - 46 1.44641D+00 1.09097D+00 -6.39923D-08 6.95048D-03 -1.62133D-01 -2.76149D-08 8.62417D-02 -5.93093D-01 9.88744D-07 -5.21687D-02 - 47 1.79269D+00 -4.01798D+00 2.01262D-07 7.75665D-02 1.51912D-01 -1.38724D-07 -5.87728D-01 2.41139D-01 -4.08604D-07 1.20649D-01 - 48 4.92014D-07 -2.83763D-07 4.58103D-01 4.87218D-07 -4.16384D-07 -3.36946D-03 1.79411D-07 1.41776D-07 1.20110D-01 3.12883D-08 - 49 -2.26155D-02 -3.50940D-02 5.85533D-07 1.36992D-01 -3.99157D-01 -5.08267D-07 1.12285D-01 -9.92134D-03 -5.20074D-07 -3.09444D-02 - 50 -7.32150D-04 -1.25599D-02 2.01403D-07 -4.34877D-01 4.60456D-01 -6.40162D-08 -7.14896D-02 5.01739D-02 -8.54843D-07 -1.69559D-02 - 51 2.28997D-08 -2.13534D-07 -2.28610D-02 1.04780D-07 -4.31387D-07 -2.36372D+00 3.19342D-07 -1.39376D-07 4.01800D-02 1.40507D-07 - 52 1.36992D-01 -3.99156D-01 5.26783D-07 -2.26151D-02 -3.50937D-02 -5.92369D-07 -3.09449D-02 -4.37923D-02 -2.19508D-07 1.12286D-01 - 53 -4.34877D-01 4.60456D-01 1.56226D-07 -7.32348D-04 -1.25595D-02 -1.36389D-07 -1.69563D-02 4.41304D-03 -1.95695D-07 -7.14895D-02 - 54 -1.42786D-09 -1.27739D-07 -2.36372D+00 2.54067D-08 -3.64245D-07 -2.28610D-02 1.77780D-07 -3.68547D-10 9.41233D-03 3.40384D-08 - 55 1.66290D-02 -1.82633D-02 -3.47569D-07 -9.69370D-01 3.56592D-01 3.22390D-07 6.09399D-02 -3.13833D-03 -3.56633D-07 2.28729D-01 - 56 4.54612D-02 3.47635D-02 -5.41602D-07 7.91891D-01 -1.03799D-02 4.89039D-07 -6.60993D-02 3.97635D-03 9.58605D-08 -1.42741D-01 - 57 -7.38211D-07 6.09139D-07 4.36801D-02 -9.64633D-07 7.60687D-07 3.71028D+00 -3.46249D-07 -3.19090D-07 -9.33564D-02 -9.93632D-08 - 58 -9.69370D-01 3.56591D-01 -2.84875D-07 1.66288D-02 -1.82624D-02 3.46126D-07 2.28729D-01 2.65128D-01 -7.04271D-07 6.09398D-02 - 59 7.91891D-01 -1.03810D-02 -4.74431D-07 4.54605D-02 3.47641D-02 5.70207D-07 -1.42741D-01 -1.13204D-01 -2.02353D-07 -6.61000D-02 - 60 -8.31002D-07 6.56707D-07 3.71028D+00 -9.77345D-07 7.85196D-07 4.36801D-02 -4.14955D-07 -2.32616D-07 7.69305D-03 -1.96190D-07 + 1 6.04374D+01 + 2 1.45018D-01 5.88029D+01 + 3 -1.01759D-07 8.67625D-08 1.31742D+01 + 4 -7.00926D+00 1.31541D+00 5.06182D-08 6.04374D+01 + 5 1.31542D+00 8.54330D-01 -6.28673D-08 1.45018D-01 5.88029D+01 + 6 8.89542D-09 1.01108D-07 -7.46925D-01 3.01185D-07 -1.40403D-08 1.31742D+01 + 7 -2.21704D+01 1.15478D+01 5.34921D-08 1.76196D+00 -3.07972D+00 3.39112D-08 6.86237D+01 + 8 4.45975D+00 -1.74172D+01 -1.06132D-07 -9.06161D+00 -1.31707D+00 -9.90267D-08 4.62166D+00 6.31127D+01 + 9 -4.07185D-08 1.84672D-07 -5.54021D+00 2.20927D-07 -7.95314D-08 5.76233D-01 -1.70335D-07 2.40533D-07 1.17734D+01 + 10 1.76196D+00 -3.07972D+00 -9.30751D-09 -2.21704D+01 1.15478D+01 -2.05926D-08 -6.73487D-01 2.26194D+00 -4.89953D-08 6.86237D+01 + 11 -9.06161D+00 -1.31707D+00 2.68781D-08 4.45975D+00 -1.74172D+01 3.08689D-08 2.26195D+00 -6.38059D+00 2.05366D-08 4.62166D+00 + 12 6.34194D-09 1.71933D-07 5.76233D-01 2.72029D-07 -1.01047D-07 -5.54021D+00 4.46303D-08 2.15980D-07 -5.95434D-01 -9.72610D-08 + 13 5.11191D+00 8.53445D-01 4.74728D-08 -2.64808D+01 -8.05824D+00 6.33954D-08 -1.28548D+01 1.13600D+00 9.23092D-08 -4.97375D+00 + 14 6.70446D+00 -4.60701D+00 1.56169D-07 -1.29238D+00 -1.28898D+01 2.17131D-08 -7.41516D+00 -3.14755D+01 -2.95456D-08 -4.89514D-01 + 15 1.04744D-08 -1.76274D-07 5.86589D-01 -3.27066D-07 6.74654D-08 -5.64465D+00 -4.57122D-08 -2.57226D-07 -5.20434D+00 1.37723D-07 + 16 -2.64808D+01 -8.05824D+00 -2.86665D-08 5.11191D+00 8.53444D-01 -1.63900D-08 -4.97375D+00 4.43989D+00 3.13243D-08 -1.28548D+01 + 17 -1.29238D+00 -1.28898D+01 8.67731D-08 6.70446D+00 -4.60701D+00 -4.65405D-08 -4.89514D-01 6.23001D+00 -1.01118D-07 -7.41516D+00 + 18 6.50486D-08 -1.64151D-07 -5.64465D+00 -2.76160D-07 7.94932D-08 5.86589D-01 -1.50272D-08 -2.39083D-07 5.39339D-01 1.63476D-07 + 19 -4.19870D+00 -3.86491D+00 -2.75171D-07 3.51247D-01 1.09607D-02 5.32204D-08 -1.05255D+02 -3.16207D+01 2.83560D-07 3.00426D-01 + 20 6.73079D+00 2.87479D+00 -1.06482D-07 4.26936D-01 -1.50726D+00 -1.47491D-08 -3.16260D+01 -3.05529D+01 7.42656D-08 1.72458D-01 + 21 7.78676D-09 1.41771D-07 6.90143D-01 -4.48206D-08 -5.79436D-08 2.53483D+00 -1.22126D-08 -1.79682D-08 -1.14697D+01 1.88305D-08 + 22 3.51247D-01 1.09605D-02 -1.94653D-07 -4.19869D+00 -3.86491D+00 1.44070D-07 3.00426D-01 2.26315D-01 3.28257D-07 -1.05255D+02 + 23 4.26936D-01 -1.50726D+00 -2.02920D-08 6.73079D+00 2.87479D+00 5.81736D-08 1.72458D-01 -1.44168D-01 9.29675D-08 -3.16260D+01 + 24 5.26687D-08 1.03635D-07 2.53483D+00 -2.40633D-09 -1.03700D-07 6.90143D-01 1.29049D-08 1.29598D-08 -2.58701D-01 3.29730D-08 + 25 4.30850D-02 -5.24135D-01 6.18793D-08 -4.33608D+00 6.47247D+00 -1.12505D-07 2.61180D+00 -3.25970D+00 -1.80234D-07 -1.07006D+00 + 26 -9.70327D-01 -1.15601D+00 1.28795D-08 -4.02162D+00 3.68357D+00 1.10907D-07 8.13453D+00 -3.85907D+00 1.00162D-07 -7.35417D-01 + 27 -2.87176D-08 2.50723D-09 2.54252D+00 -1.54920D-07 -6.67134D-08 8.13590D-01 -2.18800D-08 -1.70279D-07 1.04353D+00 1.22434D-07 + 28 -4.33608D+00 6.47247D+00 2.56430D-07 4.30847D-02 -5.24134D-01 7.25002D-08 -1.07006D+00 -1.17384D+00 -6.93950D-09 2.61180D+00 + 29 -4.02162D+00 3.68357D+00 -1.68942D-07 -9.70327D-01 -1.15601D+00 -7.13052D-08 -7.35417D-01 -4.41294D-01 -4.36665D-08 8.13453D+00 + 30 4.49280D-08 1.95756D-08 8.13590D-01 -7.60490D-08 -1.59421D-08 2.54252D+00 -6.73633D-08 -1.35326D-07 2.22042D+00 9.87459D-08 + 31 -1.82942D-02 1.29662D-01 -3.95311D-08 -1.02961D+01 -4.67909D+00 9.48231D-09 -5.34833D-01 -7.17946D-02 4.39636D-08 5.38827D-01 + 32 -2.84550D-02 -5.03069D-01 -5.87693D-09 -2.21548D+00 -1.97807D+01 -2.62726D-08 -1.40754D-01 8.43436D-01 -4.53976D-08 5.46599D-01 + 33 1.24288D-08 -9.68048D-08 -8.16109D-02 7.47465D-09 5.94988D-08 -5.28412D+00 -9.85701D-09 -3.34609D-10 5.74079D-01 1.51083D-08 + 34 -1.02961D+01 -4.67909D+00 -3.92145D-08 -1.82941D-02 1.29662D-01 1.10329D-08 5.38827D-01 2.66579D+00 3.51923D-08 -5.34833D-01 + 35 -2.21548D+00 -1.97807D+01 3.85676D-08 -2.84551D-02 -5.03069D-01 2.90272D-08 5.46599D-01 -3.70772D+00 6.92139D-09 -1.40754D-01 + 36 -1.93723D-08 -8.80856D-08 -5.28412D+00 -3.06725D-08 6.42729D-08 -8.16109D-02 -2.28833D-08 -2.86516D-08 3.30910D-01 7.54410D-09 + 37 5.14075D-02 1.70449D-02 -7.22088D-08 -6.98814D-01 1.07917D+00 -1.43276D-07 -4.55008D-02 4.80537D-02 -1.96351D-07 4.29264D-01 + 38 2.18956D-02 4.68804D-02 1.64502D-08 -9.13432D+00 -1.91337D+00 -8.43202D-09 -4.89753D-01 7.72668D-02 -1.34479D-08 -6.41436D-01 + 39 1.05276D-08 4.01166D-08 2.88619D-02 -7.26513D-08 -4.36002D-08 6.69725D-01 1.46455D-09 -8.11642D-08 7.31272D-04 6.10904D-09 + 40 -6.98813D-01 1.07917D+00 9.09692D-08 5.14073D-02 1.70449D-02 2.24438D-09 4.29264D-01 7.01796D-01 -7.98635D-08 -4.55009D-02 + 41 -9.13432D+00 -1.91337D+00 5.63139D-09 2.18957D-02 4.68804D-02 1.20055D-08 -6.41436D-01 5.13506D-01 1.29649D-08 -4.89753D-01 + 42 1.56631D-08 3.01215D-08 6.69725D-01 -9.39947D-08 -2.96258D-08 2.88619D-02 2.94468D-08 -2.29879D-08 -2.50496D-01 5.04937D-08 + 43 6.92600D-03 -1.62185D-01 4.73248D-08 1.44632D+00 1.09117D+00 3.85663D-08 -5.20733D-02 2.47140D-01 3.12375D-08 8.62224D-02 + 44 7.75849D-02 1.51945D-01 9.78098D-10 1.79285D+00 -4.01853D+00 -3.07052D-08 1.20646D-01 -1.41699D-01 -5.05972D-08 -5.87590D-01 + 45 -4.14527D-08 -3.75705D-08 -3.41804D-03 -4.16179D-08 2.50914D-08 4.57965D-01 9.70149D-09 -1.71781D-08 -3.83696D-02 -1.72911D-08 + 46 1.44632D+00 1.09117D+00 2.01771D-08 6.92602D-03 -1.62185D-01 1.31051D-08 8.62224D-02 -5.93068D-01 -6.61057D-09 -5.20733D-02 + 47 1.79286D+00 -4.01853D+00 4.98932D-08 7.75848D-02 1.51945D-01 1.27358D-08 -5.87590D-01 2.41124D-01 -1.21182D-08 1.20646D-01 + 48 2.33900D-08 -3.24978D-08 4.57965D-01 1.59038D-08 2.43463D-08 -3.41803D-03 1.74179D-08 2.76830D-08 1.20066D-01 -1.04050D-08 + 49 -2.26099D-02 -3.50816D-02 4.63749D-09 1.37013D-01 -3.99513D-01 -1.91128D-08 1.12157D-01 -9.90600D-03 -7.81591D-08 -3.08847D-02 + 50 -7.35211D-04 -1.25541D-02 3.53251D-10 -4.34934D-01 4.60545D-01 2.81650D-08 -7.14579D-02 5.02110D-02 -4.30681D-09 -1.70384D-02 + 51 3.14690D-08 -9.32440D-08 -2.28228D-02 -2.16744D-07 4.64271D-08 -2.36391D+00 6.37635D-10 -1.69383D-07 3.99608D-02 1.33882D-07 + 52 1.37013D-01 -3.99513D-01 -4.92252D-08 -2.26102D-02 -3.50818D-02 -5.89859D-08 -3.08847D-02 -4.38055D-02 -5.73629D-08 1.12156D-01 + 53 -4.34934D-01 4.60545D-01 -8.93073D-08 -7.35287D-04 -1.25542D-02 -7.77705D-08 -1.70384D-02 4.43980D-03 -1.02105D-07 -7.14579D-02 + 54 4.10021D-08 -9.29076D-08 -2.36391D+00 -1.78760D-07 5.09361D-08 -2.28227D-02 -4.61002D-08 -1.20662D-07 9.55484D-03 6.40508D-08 + 55 1.66513D-02 -1.82573D-02 -5.46922D-08 -9.69337D-01 3.56634D-01 -4.98776D-08 6.08733D-02 -3.16242D-03 2.60747D-08 2.28766D-01 + 56 4.54457D-02 3.47244D-02 -3.51460D-08 7.91732D-01 -9.96587D-03 2.79123D-08 -6.59743D-02 3.98604D-03 8.86278D-08 -1.42726D-01 + 57 3.93015D-08 -3.67679D-08 4.37356D-02 -1.70823D-07 -2.69229D-08 3.71014D+00 -2.38640D-08 -1.20949D-07 -9.35090D-02 6.73460D-08 + 58 -9.69337D-01 3.56634D-01 3.10303D-08 1.66514D-02 -1.82573D-02 5.02906D-08 2.28766D-01 2.65086D-01 7.79949D-08 6.08733D-02 + 59 7.91732D-01 -9.96589D-03 2.51980D-09 4.54460D-02 3.47244D-02 5.07724D-08 -1.42726D-01 -1.13195D-01 1.05303D-07 -6.59743D-02 + 60 1.45355D-08 -1.93043D-08 3.71014D+00 -2.10423D-07 1.60273D-08 4.37356D-02 7.72846D-10 -1.50739D-07 7.76722D-03 8.71704D-08 11 12 13 14 15 16 17 18 19 20 ----- ----- ----- ----- ----- - 11 6.31130D+01 - 12 -7.16020D-08 1.17737D+01 - 13 4.43988D+00 -6.46342D-07 6.51309D+01 - 14 6.22985D+00 1.48383D-06 -5.68175D+00 6.65665D+01 - 15 1.32707D-07 5.39547D-01 1.69684D-07 -3.02063D-10 1.17909D+01 - 16 1.13598D+00 -1.62508D-06 -2.66785D+00 -3.53320D+00 1.70337D-06 6.51309D+01 - 17 -3.14761D+01 2.88492D-07 -3.53323D+00 -4.23553D+00 9.95308D-07 -5.68175D+00 6.65665D+01 - 18 3.00180D-07 -5.20427D+00 7.44432D-08 -1.66892D-07 -5.38017D-01 1.95278D-08 -2.73190D-07 1.17909D+01 - 19 2.26172D-01 -8.25697D-06 4.79516D-01 1.79659D+00 5.94471D-06 -4.42020D-01 1.15897D+00 7.40298D-06 3.73228D+02 - 20 -1.44137D-01 -2.71091D-06 -9.54811D+00 -1.69242D+00 1.72692D-06 7.09815D-01 -1.04306D+00 2.47777D-06 1.13653D+02 1.06909D+02 - 21 -2.14813D-07 -2.58748D-01 4.93113D-07 -1.59487D-07 9.71394D-01 1.02205D-07 2.54411D-07 2.12727D+00 -1.78008D-07 4.51854D-07 - 22 -3.16199D+01 -1.92399D-06 -4.42022D-01 1.15896D+00 -8.72070D-07 4.79516D-01 1.79659D+00 7.01964D-07 -1.92986D-01 -1.70941D-01 - 23 -3.05526D+01 4.33562D-07 7.09814D-01 -1.04306D+00 -1.64281D-06 -9.54811D+00 -1.69242D+00 -8.44927D-07 -1.70910D-01 1.17941D-01 - 24 -4.24440D-07 -1.14697D+01 6.24972D-07 8.24764D-08 2.12727D+00 2.63608D-07 4.55003D-07 9.71393D-01 -9.69119D-07 6.40776D-07 - 25 -1.17391D+00 3.78924D-06 -7.85161D+01 4.84357D+01 -4.03095D-06 1.27877D-01 -3.00224D-01 -3.10168D-06 1.16129D+00 1.88173D-02 - 26 -4.41289D-01 -2.00814D-06 4.81967D+01 -5.80297D+01 2.29298D-06 -2.74516D-01 2.09526D-02 1.70841D-06 1.90806D-01 1.85738D+00 - 27 -5.17946D-08 2.22040D+00 -6.98750D-08 5.29796D-07 -1.15727D+01 -3.88693D-08 1.71358D-07 -2.67013D-01 1.12455D-07 4.23688D-07 - 28 -3.26024D+00 4.41342D-07 1.27877D-01 -3.00220D-01 -4.62797D-07 -7.85161D+01 4.84357D+01 4.13895D-07 -7.96331D-01 1.12031D+00 - 29 -3.85862D+00 -4.84053D-07 -2.74516D-01 2.09504D-02 6.64521D-07 4.81967D+01 -5.80297D+01 1.05977D-07 -6.75027D-01 6.07621D-01 - 30 -2.28326D-08 1.04347D+00 -5.90690D-08 4.78006D-07 -2.67013D-01 -6.15437D-08 1.47015D-07 -1.15727D+01 1.65288D-07 3.91959D-07 - 31 2.66574D+00 -1.08139D-06 1.03713D-01 -2.78248D+00 4.66761D-07 -4.12350D-01 7.78624D-02 9.40057D-07 2.38199D-02 -4.43963D-01 - 32 -3.70766D+00 6.82698D-07 -1.77424D+00 -2.09767D+00 -5.66485D-07 5.21126D-01 5.70138D-01 -3.71084D-07 2.31960D-02 5.98250D-02 - 33 4.80670D-07 3.31108D-01 3.32363D-07 -8.43866D-07 2.33109D-01 -1.19238D-07 -6.15887D-07 6.16737D-01 2.78677D-06 9.46774D-07 - 34 -7.17838D-02 -1.98429D-06 -4.12350D-01 7.78627D-02 1.42314D-06 1.03713D-01 -2.78248D+00 1.87576D-06 4.46502D-01 5.83321D-01 - 35 8.43404D-01 2.41366D-06 5.21126D-01 5.70139D-01 -2.40506D-06 -1.77424D+00 -2.09767D+00 -2.19731D-06 -5.98452D-01 4.38597D-01 - 36 6.59829D-07 5.74052D-01 2.07567D-07 -1.01899D-06 6.16737D-01 -2.19808D-07 -8.04579D-07 2.33107D-01 3.36614D-06 7.62081D-07 - 37 7.01920D-01 1.10309D-06 2.00034D-01 3.05980D-02 -4.86468D-07 -3.35377D-02 -9.72864D-03 -6.42605D-07 3.10411D-02 -4.64495D-02 - 38 5.13442D-01 -2.44226D-07 5.21438D-01 -1.53140D+00 1.27792D-07 3.60511D-02 4.69698D-02 3.24203D-07 1.56087D-02 -4.65463D-01 - 39 -1.27745D-07 -2.50530D-01 1.21706D-07 -1.18799D-08 7.01981D-01 5.17565D-08 4.56981D-08 -7.73667D-03 -5.38578D-07 -2.51785D-08 - 40 4.80242D-02 3.51267D-06 -3.35381D-02 -9.72853D-03 -3.01636D-06 2.00034D-01 3.05971D-02 -3.13714D-06 8.12997D-02 -4.06090D-01 - 41 7.72444D-02 -1.44113D-06 3.60509D-02 4.69702D-02 1.42941D-06 5.21438D-01 -1.53140D+00 1.59786D-06 5.12433D-01 -1.00575D-01 - 42 -2.87880D-07 7.24073D-04 2.13262D-07 1.96198D-07 -7.73752D-03 2.12239D-07 1.98607D-07 7.01981D-01 -1.18455D-06 -9.35644D-09 - 43 -5.93092D-01 7.95410D-07 -4.21112D-01 -4.28909D-01 -9.23945D-07 1.64673D-01 1.24245D-01 -7.40176D-07 -1.52026D-03 -6.49288D-03 - 44 2.41140D-01 5.99200D-08 5.28455D-01 3.25617D-01 2.79297D-07 -7.33276D-02 -2.66560D-01 1.04801D-07 -3.94984D-03 1.61104D-02 - 45 -6.42675D-08 1.20110D-01 -2.82898D-07 2.49858D-07 3.66558D-02 9.82334D-09 6.56920D-08 -8.83622D-03 -6.68494D-07 -4.59449D-07 - 46 2.47118D-01 1.00095D-06 1.64673D-01 1.24245D-01 -1.15266D-06 -4.21112D-01 -4.28909D-01 -9.47740D-07 4.83785D-02 -8.50256D-02 - 47 -1.41689D-01 1.32210D-07 -7.33275D-02 -2.66559D-01 2.16350D-07 5.28455D-01 3.25617D-01 4.27490D-08 -2.88426D-02 -1.84340D-02 - 48 -1.92005D-07 -3.84841D-02 -1.84200D-07 3.37604D-07 -8.83633D-03 1.00523D-07 1.70102D-07 3.66562D-02 -1.13625D-06 -3.68773D-07 - 49 -4.37916D-02 8.72802D-07 1.43614D-01 -3.08661D-01 2.89779D-07 -5.07142D-02 9.29296D-03 -8.13837D-07 1.14279D-03 -2.60973D-02 - 50 4.41268D-03 -5.33113D-07 3.79534D-01 -3.83752D-01 9.18113D-07 -3.78710D-02 1.48084D-02 5.14644D-07 -2.35987D-02 -3.46184D-02 - 51 -1.63690D-07 9.41374D-03 -1.46199D-07 5.09256D-07 5.07326D-02 5.53286D-08 3.68903D-07 7.58894D-02 -9.14914D-07 5.58160D-08 - 52 -9.92159D-03 1.23528D-06 -5.07136D-02 9.29265D-03 -1.61117D-08 1.43614D-01 -3.08660D-01 -1.16364D-06 -3.82043D-02 -2.68201D-02 - 53 5.01738D-02 1.40816D-07 -3.78709D-02 1.48079D-02 2.02949D-07 3.79534D-01 -3.83752D-01 -2.06158D-07 -7.72063D-02 8.47912D-02 - 54 -2.12298D-08 4.01785D-02 -2.06396D-07 3.11271D-07 7.58908D-02 -4.87456D-08 1.53004D-07 5.07342D-02 -2.97239D-07 8.61048D-09 - 55 2.65127D-01 -1.33335D-06 -1.59606D-01 -4.43262D-02 7.64613D-07 -7.61562D-02 1.55312D-02 1.13478D-06 6.99353D-03 4.80126D-02 - 56 -1.13205D-01 -1.32979D-06 6.32321D-02 1.36107D-01 3.62468D-07 1.21655D-01 -5.73241D-02 1.09765D-06 1.14674D-02 -1.56386D-02 - 57 3.81561D-07 7.69299D-03 2.43441D-07 -6.07830D-07 -1.26400D-01 -1.04610D-07 -4.40924D-07 -2.58629D-01 2.15734D-06 7.47331D-07 - 58 -3.13944D-03 -1.63278D-06 -7.61560D-02 1.55313D-02 1.11718D-06 -1.59606D-01 -4.43258D-02 1.44025D-06 3.66555D-02 4.74594D-04 - 59 3.97599D-03 -1.62868D-06 1.21655D-01 -5.73244D-02 6.08372D-07 6.32315D-02 1.36107D-01 1.37045D-06 9.01297D-02 -2.25005D-02 - 60 4.34937D-07 -9.33559D-02 2.47017D-07 -7.38148D-07 -2.58629D-01 -1.24311D-07 -5.75229D-07 -1.26401D-01 2.53941D-06 6.74116D-07 + 11 6.31127D+01 + 12 -2.93730D-07 1.17734D+01 + 13 4.43989D+00 1.11184D-08 6.51305D+01 + 14 6.23001D+00 1.14184D-07 -5.68229D+00 6.65665D+01 + 15 3.74441D-07 5.39339D-01 9.07568D-08 -8.17438D-08 1.17907D+01 + 16 1.13600D+00 -4.98891D-08 -2.66818D+00 -3.53321D+00 3.62315D-08 6.51305D+01 + 17 -3.14755D+01 4.07755D-08 -3.53321D+00 -4.23563D+00 -1.08579D-07 -5.68229D+00 6.65665D+01 + 18 4.00115D-07 -5.20434D+00 7.67078D-08 -1.11680D-07 -5.38108D-01 2.20586D-08 3.64421D-08 1.17907D+01 + 19 2.26315D-01 -2.06984D-07 4.79810D-01 1.79591D+00 4.43238D-07 -4.42551D-01 1.15903D+00 -2.29341D-07 3.73232D+02 + 20 -1.44168D-01 -7.00565D-08 -9.54768D+00 -1.69281D+00 1.48188D-07 7.09920D-01 -1.04303D+00 -5.25375D-08 1.13654D+02 1.06909D+02 + 21 -5.95287D-08 -2.58701D-01 -2.79959D-08 2.64490D-08 9.71427D-01 1.33574D-07 -4.14590D-08 2.12732D+00 -9.25463D-08 2.34265D-08 + 22 -3.16207D+01 -1.48793D-07 -4.42551D-01 1.15903D+00 3.78125D-07 4.79810D-01 1.79591D+00 -2.92690D-07 -1.93097D-01 -1.70854D-01 + 23 -3.05529D+01 -2.69032D-08 7.09920D-01 -1.04303D+00 9.76910D-08 -9.54768D+00 -1.69281D+00 -1.08574D-07 -1.70869D-01 1.17985D-01 + 24 -7.05960D-09 -1.14697D+01 -1.17606D-07 3.85482D-08 2.12732D+00 3.70883D-08 -2.18497D-08 9.71427D-01 -1.81008D-08 2.33839D-08 + 25 -1.17384D+00 4.02614D-08 -7.85167D+01 4.84365D+01 1.27192D-07 1.28176D-01 -3.00486D-01 -1.86401D-08 1.16134D+00 1.83771D-02 + 26 -4.41294D-01 9.45193D-09 4.81975D+01 -5.80304D+01 -1.82774D-07 -2.74557D-01 2.09582D-02 2.79036D-08 1.91132D-01 1.85778D+00 + 27 1.53830D-07 2.22042D+00 5.95075D-08 -2.36677D-08 -1.15728D+01 1.01589D-07 2.71729D-08 -2.66919D-01 3.73873D-09 3.68470D-07 + 28 -3.25970D+00 2.15570D-07 1.28176D-01 -3.00486D-01 -1.55192D-07 -7.85167D+01 4.84365D+01 -2.88995D-07 -7.95625D-01 1.12036D+00 + 29 -3.85907D+00 -1.43604D-07 -2.74556D-01 2.09583D-02 5.85755D-08 4.81975D+01 -5.80304D+01 2.60296D-07 -6.75053D-01 6.07637D-01 + 30 1.63370D-07 1.04353D+00 -3.07315D-08 -4.68360D-08 -2.66919D-01 2.16457D-08 7.53360D-09 -1.15728D+01 -5.72041D-09 3.33577D-07 + 31 2.66579D+00 -1.79156D-08 1.03842D-01 -2.78258D+00 7.74997D-08 -4.12337D-01 7.78948D-02 -4.86951D-08 2.39047D-02 -4.43949D-01 + 32 -3.70772D+00 -2.04932D-09 -1.77400D+00 -2.09789D+00 7.69970D-08 5.21244D-01 5.70082D-01 -2.44882D-08 2.32763D-02 5.96867D-02 + 33 6.10522D-08 3.30910D-01 1.59910D-08 -4.30202D-08 2.32834D-01 -2.88115D-08 8.81916D-09 6.16710D-01 -5.89445D-08 7.37337D-08 + 34 -7.17946D-02 -2.51833D-08 -4.12337D-01 7.78947D-02 7.77558D-08 1.03842D-01 -2.78258D+00 -5.23593D-08 4.46703D-01 5.83253D-01 + 35 8.43436D-01 5.08222D-08 5.21244D-01 5.70082D-01 -1.89593D-09 -1.77400D+00 -2.09789D+00 -9.67614D-08 -5.97896D-01 4.38697D-01 + 36 3.00620D-08 5.74079D-01 3.97088D-08 -2.24213D-08 6.16710D-01 -6.21797D-09 2.93753D-08 2.32834D-01 -1.66352D-08 8.54899D-08 + 37 7.01796D-01 -4.76123D-08 1.99702D-01 3.07317D-02 5.79880D-08 -3.34747D-02 -9.84295D-03 1.96812D-07 3.10703D-02 -4.64571D-02 + 38 5.13506D-01 3.17421D-09 5.21255D-01 -1.53135D+00 3.20849D-08 3.59649D-02 4.70678D-02 -3.12910D-08 1.57294D-02 -4.65384D-01 + 39 3.06600D-08 -2.50496D-01 6.20263D-09 4.85413D-08 7.02054D-01 5.88180D-08 -1.61812D-08 -7.77808D-03 -6.10932D-08 1.72836D-07 + 40 4.80536D-02 9.06954D-08 -3.34747D-02 -9.84283D-03 -1.19944D-07 1.99702D-01 3.07317D-02 2.50846D-08 8.12630D-02 -4.05676D-01 + 41 7.72667D-02 1.90706D-08 3.59648D-02 4.70678D-02 9.80758D-09 5.21255D-01 -1.53135D+00 -3.85673D-08 5.11826D-01 -1.00673D-01 + 42 4.71147D-08 7.31292D-04 -4.79943D-08 2.81878D-08 -7.77812D-03 7.87495D-10 -4.17641D-09 7.02054D-01 -2.35339D-08 4.62430D-08 + 43 -5.93068D-01 4.59260D-08 -4.21082D-01 -4.28857D-01 -3.54208D-08 1.64607D-01 1.24311D-01 -1.09270D-07 -1.52904D-03 -6.48752D-03 + 44 2.41124D-01 -7.10664D-09 5.28284D-01 3.25691D-01 -2.73533D-08 -7.32970D-02 -2.66607D-01 5.29532D-08 -3.92299D-03 1.61703D-02 + 45 2.89364D-09 1.20066D-01 3.69893D-08 1.60122D-08 3.65405D-02 -1.11545D-09 2.08147D-08 -8.79607D-03 5.41444D-08 3.40288D-08 + 46 2.47140D-01 1.33157D-08 1.64607D-01 1.24311D-01 3.63728D-08 -4.21082D-01 -4.28857D-01 -3.70681D-08 4.82115D-02 -8.51074D-02 + 47 -1.41699D-01 3.38110D-08 -7.32970D-02 -2.66607D-01 -6.64542D-08 5.28284D-01 3.25691D-01 1.90705D-08 -2.89843D-02 -1.83912D-02 + 48 4.91082D-08 -3.83696D-02 -6.58388D-09 -2.53718D-08 -8.79607D-03 -4.10328D-08 -2.65951D-08 3.65405D-02 -1.14491D-08 -1.84673D-09 + 49 -4.38055D-02 -3.32065D-08 1.43468D-01 -3.08773D-01 -1.43671D-07 -5.06452D-02 9.10414D-03 2.42916D-07 1.25777D-03 -2.61998D-02 + 50 4.43984D-03 1.55274D-08 3.79493D-01 -3.83740D-01 -8.70283D-08 -3.78815D-02 1.47714D-02 1.09123D-07 -2.35623D-02 -3.46627D-02 + 51 1.81092D-07 9.55482D-03 4.04002D-08 -3.04150D-08 5.10346D-02 3.66412D-08 2.81538D-08 7.58405D-02 -1.05167D-07 4.52188D-07 + 52 -9.90599D-03 -2.67921D-08 -5.06450D-02 9.10449D-03 -1.47982D-07 1.43468D-01 -3.08774D-01 2.33554D-07 -3.80003D-02 -2.67262D-02 + 53 5.02111D-02 -8.13015D-08 -3.78814D-02 1.47716D-02 -5.09728D-09 3.79493D-01 -3.83740D-01 1.97756D-07 -7.70161D-02 8.47712D-02 + 54 2.27444D-07 3.99608D-02 5.19654D-08 -5.67988D-08 7.58404D-02 5.65232D-08 1.24671D-08 5.10346D-02 -4.50865D-09 4.34647D-07 + 55 2.65086D-01 -2.38810D-08 -1.59510D-01 -4.43683D-02 1.66800D-07 -7.61221D-02 1.55593D-02 -9.74999D-09 6.91108D-03 4.80273D-02 + 56 -1.13195D-01 -1.49241D-08 6.34016D-02 1.36200D-01 1.48115D-07 1.21547D-01 -5.70976D-02 -1.45823D-07 1.13997D-02 -1.55428D-02 + 57 1.94206D-07 7.76719D-03 4.14708D-08 -4.20064D-08 -1.26273D-01 2.50523D-08 2.46739D-08 -2.58694D-01 -2.84619D-09 3.82189D-07 + 58 -3.16240D-03 1.56768D-08 -7.61222D-02 1.55590D-02 2.28429D-08 -1.59510D-01 -4.43681D-02 -1.62118D-07 3.66430D-02 5.06389D-04 + 59 3.98608D-03 5.63548D-10 1.21547D-01 -5.70979D-02 8.74283D-08 6.34017D-02 1.36200D-01 -2.03042D-07 8.97905D-02 -2.26049D-02 + 60 1.58878D-07 -9.35089D-02 5.64422D-08 -4.32257D-08 -2.58694D-01 3.84928D-08 4.75992D-08 -1.26273D-01 1.81554D-09 3.68262D-07 21 22 23 24 25 26 27 28 29 30 ----- ----- ----- ----- ----- - 21 2.82005D+01 - 22 -3.67146D-06 3.73228D+02 - 23 -2.23595D-06 1.13653D+02 1.06909D+02 - 24 -1.07313D+00 -1.14814D-06 3.93844D-07 2.82005D+01 - 25 -1.97746D-06 -7.96332D-01 1.12031D+00 -4.07840D-06 2.76991D+02 - 26 1.37861D-06 -6.75027D-01 6.07623D-01 2.09610D-06 -1.73685D+02 2.07212D+02 - 27 -5.06433D+00 -4.54490D-07 -2.15725D-07 1.46859D-01 1.29158D-06 -1.13600D-06 2.74006D+01 - 28 1.09832D-06 1.16129D+00 1.88147D-02 -1.09615D-06 -5.56227D-02 2.35537D-01 1.34541D-06 2.76991D+02 - 29 -6.35230D-08 1.90810D-01 1.85738D+00 7.69905D-07 2.35623D-01 -1.70977D-02 -9.89743D-07 -1.73685D+02 2.07212D+02 - 30 1.46859D-01 -4.06676D-07 -2.48771D-07 -5.06433D+00 1.23733D-06 -1.16379D-06 -1.16187D+00 9.95803D-07 -4.12511D-07 2.74006D+01 - 31 2.75970D-08 4.46503D-01 5.83322D-01 1.14236D-06 3.57472D-01 3.18957D-01 -4.66771D-07 1.36670D-01 3.97220D-01 -7.29932D-07 - 32 2.13022D-07 -5.98454D-01 4.38596D-01 -7.78808D-07 4.86731D-01 -1.09157D-02 8.09195D-07 -6.74687D-02 -9.58650D-02 1.53927D-07 - 33 4.52187D-02 2.32732D-06 -5.03241D-07 -1.11315D+00 1.36804D-06 -7.02490D-07 -1.12321D+00 1.26569D-06 -2.96176D-07 9.61464D-03 - 34 8.44696D-07 2.38211D-02 -4.43962D-01 1.95577D-06 1.36670D-01 3.97219D-01 -1.12539D-06 3.57472D-01 3.18956D-01 -1.37212D-06 - 35 -1.34557D-06 2.31944D-02 5.98233D-02 -2.36035D-06 -6.74693D-02 -9.58653D-02 2.15489D-06 4.86731D-01 -1.09148D-02 1.51421D-06 - 36 -1.11315D+00 2.93702D-06 -6.28798D-07 4.52174D-02 1.83674D-06 -7.67548D-07 9.61489D-03 1.73998D-06 -3.82025D-07 -1.12321D+00 - 37 2.96156D-07 8.12962D-02 -4.06092D-01 -1.41215D-06 1.21811D-01 4.50516D-02 7.11444D-07 8.09350D-03 2.59388D-02 4.58653D-07 - 38 1.43103D-07 5.12433D-01 -1.00576D-01 1.85733D-07 3.13542D-03 -3.25573D-03 2.44051D-08 1.52390D-02 -1.27788D-03 -2.79171D-07 - 39 -2.24087D-01 -5.43117D-07 1.80335D-08 -5.45940D-02 -5.58599D-07 2.90967D-07 -6.46970D-02 -6.79201D-07 2.39599D-07 1.53053D-02 - 40 -1.87693D-06 3.10393D-02 -4.64517D-02 -3.55037D-06 8.09388D-03 2.59386D-02 2.47062D-06 1.21811D-01 4.50518D-02 2.24569D-06 - 41 1.25241D-06 1.56087D-02 -4.65463D-01 1.25391D-06 1.52396D-02 -1.27834D-03 -9.09530D-07 3.13590D-03 -3.25606D-03 -1.20120D-06 - 42 -5.45947D-02 -1.18054D-06 8.33701D-08 -2.24088D-01 -1.05582D-06 3.85364D-07 1.53059D-02 -1.20630D-06 3.84451D-07 -6.46967D-02 - 43 -5.46318D-07 4.83775D-02 -8.50259D-02 -7.66744D-07 1.24012D-02 -5.90701D-01 8.34317D-07 -2.27104D-02 -8.71611D-02 4.56924D-07 - 44 5.05493D-07 -2.88435D-02 -1.84349D-02 -2.34065D-07 1.08753D-01 -2.98924D-01 -5.19221D-08 -3.61868D-02 -1.00403D-01 -6.35672D-08 - 45 7.74867D-03 -3.43434D-07 7.75087D-08 3.48790D-02 3.98913D-09 1.81860D-07 6.77512D-02 -2.28104D-07 1.26780D-07 -3.17940D-02 - 46 -7.28388D-07 -1.52022D-03 -6.49354D-03 -9.71469D-07 -2.27103D-02 -8.71613D-02 9.79179D-07 1.24020D-02 -5.90701D-01 6.31911D-07 - 47 4.50040D-07 -3.95104D-03 1.61097D-02 -2.83959D-07 -3.61868D-02 -1.00403D-01 -2.93885D-08 1.08753D-01 -2.98924D-01 -4.80158D-08 - 48 3.48790D-02 -8.46538D-07 1.51695D-07 7.74893D-03 -4.65724D-07 3.00747D-07 -3.17938D-02 -7.20218D-07 2.45238D-07 6.77509D-02 - 49 4.27398D-07 -3.82035D-02 -2.68212D-02 -8.68923D-07 5.20070D-01 -2.82890D-01 -3.19224D-07 -1.62495D-03 -7.82358D-03 7.97465D-07 - 50 6.85024D-07 -7.72065D-02 8.47915D-02 5.69683D-07 -7.22099D-01 -1.66437D+00 -7.94892D-07 5.15752D-03 -1.30366D-03 -3.09586D-07 - 51 1.31379D-02 -5.51957D-07 3.20402D-07 -8.72742D-02 5.81824D-08 -9.70858D-08 3.22102D-01 -1.60707D-07 -1.00897D-07 -4.00799D-03 - 52 1.61876D-07 1.13984D-03 -2.60978D-02 -1.12075D-06 -1.62552D-03 -7.82285D-03 -1.19473D-07 5.20066D-01 -2.82890D-01 9.62077D-07 - 53 8.60235D-08 -2.35982D-02 -3.46184D-02 1.48029D-09 5.15826D-03 -1.30355D-03 -2.79648D-07 -7.22099D-01 -1.66438D+00 1.69721D-07 - 54 -8.72729D-02 -2.85123D-08 1.23896D-07 1.31392D-02 4.23423D-07 -1.45189D-07 -4.00901D-03 2.49654D-07 -1.33640D-07 3.22100D-01 - 55 9.80627D-08 3.66579D-02 4.75937D-04 1.41046D-06 3.29117D-01 2.46781D-01 -8.30491D-07 3.51199D-02 1.14081D-01 -7.55240D-07 - 56 -2.27747D-07 9.01293D-02 -2.24985D-02 1.37409D-06 3.11380D-02 1.24598D-01 -4.51050D-07 -3.73181D-02 -5.79475D-02 -8.70472D-07 - 57 4.49396D-03 1.77746D-06 -3.79687D-07 3.25480D-01 1.33506D-06 -6.42846D-07 1.32347D-01 9.40974D-07 -2.71284D-07 7.07599D-03 - 58 3.67016D-07 6.99447D-03 4.80143D-02 1.66299D-06 3.51189D-02 1.14082D-01 -1.05002D-06 3.29117D-01 2.46781D-01 -9.88563D-07 - 59 1.61240D-08 1.14712D-02 -1.56373D-02 1.70605D-06 -3.73174D-02 -5.79478D-02 -6.51882D-07 3.11410D-02 1.24598D-01 -9.91995D-07 - 60 3.25480D-01 2.14679D-06 -5.20328D-07 4.49354D-03 1.39994D-06 -5.41739D-07 7.07590D-03 1.14832D-06 -2.16821D-07 1.32347D-01 + 21 2.82008D+01 + 22 -2.70523D-07 3.73232D+02 + 23 -4.15098D-08 1.13654D+02 1.06909D+02 + 24 -1.07318D+00 2.03947D-08 -1.24478D-08 2.82008D+01 + 25 4.21012D-08 -7.95626D-01 1.12036D+00 -3.79789D-08 2.76993D+02 + 26 -2.01131D-08 -6.75052D-01 6.07637D-01 1.08158D-07 -1.73688D+02 2.07214D+02 + 27 -5.06423D+00 -2.84987D-08 -1.85070D-07 1.46964D-01 1.90507D-07 1.29903D-08 2.74011D+01 + 28 1.35617D-07 1.16134D+00 1.83770D-02 4.73846D-08 -5.57550D-02 2.35550D-01 -3.69536D-07 2.76993D+02 + 29 -8.28504D-08 1.91132D-01 1.85778D+00 2.74476D-08 2.35548D-01 -1.69929D-02 2.94206D-07 -1.73688D+02 2.07214D+02 + 30 1.46964D-01 -3.32394D-08 -2.08272D-07 -5.06423D+00 2.09095D-07 -1.85726D-08 -1.16199D+00 -2.83592D-07 -5.41026D-08 2.74011D+01 + 31 -5.53276D-09 4.46703D-01 5.83253D-01 -1.16029D-07 3.57323D-01 3.19089D-01 -4.49224D-08 1.36677D-01 3.97083D-01 5.25252D-08 + 32 3.36494D-08 -5.97896D-01 4.38697D-01 -9.57050D-08 4.86503D-01 -1.06720D-02 -1.88973D-08 -6.75469D-02 -9.58895D-02 8.69418D-08 + 33 4.52615D-02 1.22758D-08 -6.50192D-08 -1.11327D+00 1.93425D-08 7.08958D-09 -1.12327D+00 2.46269D-09 -1.19327D-08 9.77928D-03 + 34 7.99119D-09 2.39048D-02 -4.43949D-01 -7.73808D-08 1.36677D-01 3.97083D-01 -2.72854D-09 3.57323D-01 3.19089D-01 6.03348D-08 + 35 1.01522D-07 2.32763D-02 5.96867D-02 -7.04195D-08 -6.75466D-02 -9.58899D-02 -1.24998D-07 4.86503D-01 -1.06717D-02 2.01835D-09 + 36 -1.11327D+00 3.93121D-08 -2.35907D-08 4.52615D-02 2.16543D-08 -1.90685D-08 9.77928D-03 4.09094D-09 -2.71899D-08 -1.12327D+00 + 37 -2.67935D-08 8.12627D-02 -4.05676D-01 5.25624D-08 1.21924D-01 4.50806D-02 2.16588D-07 8.13469D-03 2.60106D-02 1.42301D-07 + 38 4.19080D-08 5.11826D-01 -1.00673D-01 -2.24269D-08 3.27089D-03 -3.35581D-03 2.84385D-08 1.52111D-02 -1.25417D-03 3.07129D-08 + 39 -2.24143D-01 2.00499D-08 -2.01509D-08 -5.44739D-02 1.21195D-07 -8.53073D-08 -6.45514D-02 -2.25179D-07 -7.34237D-09 1.52780D-02 + 40 5.97851D-08 3.10702D-02 -4.64569D-02 1.14893D-07 8.13471D-03 2.60102D-02 -2.67662D-08 1.21924D-01 4.50810D-02 -7.95108D-08 + 41 -3.72180D-08 1.57294D-02 -4.65384D-01 -4.43575D-08 1.52112D-02 -1.25418D-03 -1.75698D-08 3.27083D-03 -3.35583D-03 -4.30458D-08 + 42 -5.44739D-02 4.51957D-08 -9.53320D-08 -2.24143D-01 2.10727D-07 -1.82332D-08 1.52780D-02 -1.14458D-07 -3.14056D-08 -6.45514D-02 + 43 5.01122D-08 4.82114D-02 -8.51074D-02 -7.16369D-09 1.25471D-02 -5.90876D-01 -8.08924D-08 -2.27057D-02 -8.71331D-02 -7.65323D-08 + 44 3.35493D-09 -2.89843D-02 -1.83911D-02 4.36294D-08 1.08875D-01 -2.98831D-01 4.79306D-08 -3.62024D-02 -1.00359D-01 2.01793D-08 + 45 7.65830D-03 3.92806D-08 2.44631D-08 3.50651D-02 3.26445D-08 -4.19564D-08 6.79232D-02 4.25963D-08 -3.18427D-08 -3.19042D-02 + 46 1.62883D-08 -1.52917D-03 -6.48761D-03 -5.96864D-08 -2.27056D-02 -8.71332D-02 -3.29145D-08 1.25470D-02 -5.90876D-01 1.43673D-09 + 47 1.42239D-08 -3.92306D-03 1.61704D-02 7.65055D-08 -3.62025D-02 -1.00359D-01 -1.70877D-08 1.08875D-01 -2.98831D-01 -4.78949D-08 + 48 3.50650D-02 -1.84454D-08 -3.38981D-08 7.65831D-03 1.78702D-08 -1.46430D-08 -3.19042D-02 2.68589D-08 -1.38658D-08 6.79232D-02 + 49 -4.91226D-08 -3.80001D-02 -2.67257D-02 1.85531D-07 5.20095D-01 -2.82899D-01 1.13785D-07 -1.47170D-03 -7.81063D-03 1.75024D-08 + 50 -1.37579D-08 -7.70159D-02 8.47716D-02 1.39293D-07 -7.21867D-01 -1.66456D+00 9.92064D-09 5.15489D-03 -1.26060D-03 -7.60781D-08 + 51 1.33085D-02 3.02016D-08 -2.49752D-07 -8.74693D-02 3.06889D-07 -6.45778D-08 3.21835D-01 -2.91957D-07 -4.04140D-08 -3.94623D-03 + 52 -2.54351D-08 1.25818D-03 -2.61991D-02 2.17026D-07 -1.47196D-03 -7.81077D-03 9.00696D-08 5.20095D-01 -2.82899D-01 -1.93066D-08 + 53 -7.59855D-08 -2.35620D-02 -3.46625D-02 4.75285D-08 5.15474D-03 -1.26055D-03 1.82185D-07 -7.21867D-01 -1.66456D+00 3.43876D-08 + 54 -8.74693D-02 6.69333D-08 -2.46807D-07 1.33086D-02 3.03592D-07 -9.45069D-08 -3.94630D-03 -3.31977D-07 -6.32713D-08 3.21835D-01 + 55 -1.20493D-07 3.66429D-02 5.06004D-04 -1.01819D-07 3.28799D-01 2.46911D-01 6.29669D-08 3.50502D-02 1.14047D-01 6.93841D-08 + 56 -7.44660D-09 8.97904D-02 -2.26054D-02 -1.56106D-07 3.10557D-02 1.24406D-01 -8.81751D-08 -3.74490D-02 -5.79718D-02 2.23467D-08 + 57 4.60018D-03 3.23775D-08 -1.87553D-07 3.25314D-01 2.60318D-07 -9.89281D-08 1.32225D-01 -2.52055D-07 -6.89426D-08 7.18773D-03 + 58 -2.03175D-08 6.91110D-03 4.80270D-02 -6.78406D-09 3.50503D-02 1.14047D-01 -7.97718D-08 3.28799D-01 2.46911D-01 -3.50781D-08 + 59 9.69811D-09 1.13995D-02 -1.55433D-02 -1.64186D-07 -3.74489D-02 -5.79715D-02 -1.00039D-07 3.10555D-02 1.24406D-01 1.73606D-08 + 60 3.25313D-01 3.88772D-08 -2.05788D-07 4.60022D-03 2.35977D-07 -5.26734D-08 7.18770D-03 -2.48598D-07 -3.98110D-08 1.32225D-01 31 32 33 34 35 36 37 38 39 40 ----- ----- ----- ----- ----- - 31 7.32542D+01 - 32 -1.18223D+01 6.42684D+01 - 33 1.06496D-06 -5.02598D-08 1.15282D+01 - 34 -1.38407D-02 -7.61781D-02 -2.22784D-06 7.32542D+01 - 35 -7.61487D-02 2.73210D-01 2.42850D-06 -1.18223D+01 6.42684D+01 - 36 1.00254D-06 7.36260D-08 -8.23884D-02 9.74012D-07 3.01197D-07 1.15282D+01 - 37 -1.09713D+02 -2.12656D+01 1.34589D-06 1.23494D-02 2.12036D-03 -8.83053D-07 3.92893D+02 - 38 -2.21070D+01 -2.37600D+01 -1.37692D-07 4.01907D-02 8.67280D-03 -1.96680D-07 7.49229D+01 8.59901D+01 - 39 -1.04403D-08 -8.72591D-08 -1.27715D+01 -1.13029D-07 -8.25726D-08 -9.71090D-04 8.45761D-08 2.72261D-07 3.00161D+01 - 40 1.23494D-02 2.12103D-03 4.21178D-06 -1.09713D+02 -2.12656D+01 1.95337D-06 -7.20292D-03 5.24915D-04 -2.46295D-06 3.92893D+02 - 41 4.01904D-02 8.67275D-03 -1.48872D-06 -2.21070D+01 -2.37600D+01 -1.58886D-06 5.59187D-04 -1.83904D-04 8.19364D-07 7.49229D+01 - 42 7.70267D-08 -2.41404D-07 -9.70199D-04 2.94288D-08 -2.52991D-07 -1.27715D+01 7.23519D-08 4.16755D-07 -4.64336D-04 3.14730D-07 - 43 -3.08030D+01 1.93772D+01 6.73472D-07 1.03845D-03 9.96748D-02 5.23259D-07 -4.51805D+00 9.25804D+00 -4.17769D-07 -3.86339D-03 - 44 2.12259D+01 -3.26592D+01 4.82582D-08 3.90750D-02 -8.43979D-02 -9.87348D-07 -2.77692D+00 2.37423D+00 -3.95346D-08 -5.26995D-03 - 45 -6.06930D-07 2.37616D-07 -4.37967D+00 -3.12936D-07 3.21996D-08 7.56639D-03 1.15245D-06 -9.15442D-08 1.65016D+00 2.59632D-07 - 46 1.03829D-03 9.96750D-02 9.23603D-07 -3.08030D+01 1.93772D+01 7.71689D-07 -3.86292D-03 -8.41979D-03 -5.58354D-07 -4.51805D+00 - 47 3.90751D-02 -8.43978D-02 1.59601D-07 2.12259D+01 -3.26592D+01 -8.74681D-07 -5.27062D-03 -1.90831D-02 -8.32790D-08 -2.77692D+00 - 48 -4.85577D-07 6.49136D-08 7.56668D-03 -2.11121D-07 -1.09018D-07 -4.37967D+00 1.06633D-06 7.38042D-08 -1.31411D-03 1.99829D-07 - 49 -3.93903D+00 -2.31167D+00 1.27471D-06 5.34387D-02 2.31921D-02 -1.24136D-06 -5.72593D-01 2.24332D+00 -8.35808D-07 -7.89477D-03 - 50 8.58322D+00 3.33026D+00 -4.82564D-07 -8.00785D-03 3.81707D-03 -9.52225D-07 2.12247D+00 -3.71539D+00 2.55900D-07 5.66148D-04 - 51 -4.37004D-07 3.69542D-08 1.37838D+00 -1.02661D-07 -6.58184D-08 1.73731D-02 1.00490D-06 -1.18862D-07 1.39445D+01 2.42894D-07 - 52 5.34394D-02 2.31915D-02 1.74323D-06 -3.93903D+00 -2.31167D+00 -7.51696D-07 -7.89753D-03 -2.48029D-02 -1.09674D-06 -5.72591D-01 - 53 -8.00775D-03 3.81706D-03 3.23352D-07 8.58322D+00 3.33026D+00 -1.27862D-07 5.65284D-04 -4.68270D-03 -1.88573D-07 2.12247D+00 - 54 -3.89619D-07 1.61670D-07 1.73716D-02 -1.09572D-07 -3.27455D-08 1.37838D+00 8.10143D-07 -2.54650D-07 2.83274D-03 9.31509D-08 - 55 2.84417D+00 8.23756D+00 -1.36673D-06 -1.77702D-02 -1.43686D-02 6.03353D-07 1.92395D+00 -5.69487D-02 8.92479D-07 5.49072D-03 - 56 -3.57342D+00 -4.53318D+00 -1.55899D-06 -2.91289D-02 -1.55543D-02 1.27270D-06 -1.41780D-01 1.64601D+00 9.89615D-07 2.21975D-03 - 57 7.03304D-07 -5.60058D-08 1.61421D+00 4.22644D-07 2.18108D-07 -2.30633D-03 -1.65793D-06 -1.43891D-07 -9.19882D+00 -3.97255D-07 - 58 -1.77701D-02 -1.43690D-02 -1.74963D-06 2.84417D+00 8.23756D+00 1.89243D-07 5.49158D-03 1.97672D-02 1.07913D-06 1.92395D+00 - 59 -2.91293D-02 -1.55538D-02 -2.01653D-06 -3.57342D+00 -4.53317D+00 8.18804D-07 2.22171D-03 1.09767D-02 1.17332D-06 -1.41781D-01 - 60 6.89649D-07 5.97460D-08 -2.30677D-03 4.36816D-07 3.05130D-07 1.61421D+00 -1.68566D-06 -2.67925D-07 2.91318D-03 -5.24039D-07 + 31 7.32544D+01 + 32 -1.18223D+01 6.42681D+01 + 33 1.00837D-07 -5.46645D-08 1.15275D+01 + 34 -1.37523D-02 -7.62558D-02 -2.39268D-08 7.32544D+01 + 35 -7.62526D-02 2.73215D-01 -1.55816D-08 -1.18223D+01 6.42681D+01 + 36 2.44974D-08 -2.33933D-08 -8.23506D-02 -2.82774D-07 1.02625D-07 1.15275D+01 + 37 -1.09714D+02 -2.12658D+01 2.57935D-08 1.22527D-02 2.11143D-03 9.15869D-08 3.92896D+02 + 38 -2.21073D+01 -2.37598D+01 -1.21627D-08 4.02467D-02 8.64903D-03 -2.43912D-09 7.49238D+01 8.59899D+01 + 39 5.16661D-09 6.33361D-08 -1.27712D+01 -2.84269D-08 -9.07035D-08 -1.01822D-03 3.87182D-08 -2.36964D-08 3.00155D+01 + 40 1.22531D-02 2.11134D-03 -1.92841D-09 -1.09714D+02 -2.12658D+01 3.73227D-08 -7.29271D-03 5.33745D-04 1.70604D-09 3.92896D+02 + 41 4.02467D-02 8.64901D-03 -1.73945D-08 -2.21073D+01 -2.37598D+01 2.59938D-08 5.34365D-04 -1.95065D-04 4.06753D-08 7.49238D+01 + 42 5.30650D-08 9.23515D-08 -1.01826D-03 -4.24176D-08 -3.41327D-08 -1.27712D+01 -8.90968D-08 -1.58070D-07 -4.37972D-04 -6.85653D-08 + 43 -3.08028D+01 1.93772D+01 -2.98512D-08 1.02829D-03 9.97317D-02 -1.78133D-08 -4.51872D+00 9.25799D+00 -1.80751D-08 -3.72396D-03 + 44 2.12255D+01 -3.26592D+01 3.83822D-08 3.90902D-02 -8.44001D-02 -9.14549D-09 -2.77540D+00 2.37438D+00 -1.71905D-08 -5.34946D-03 + 45 2.09722D-09 -1.35413D-08 -4.38015D+00 7.01579D-09 4.35506D-08 7.55744D-03 -3.91984D-08 3.94567D-09 1.65027D+00 3.89275D-08 + 46 1.02833D-03 9.97317D-02 -4.36202D-10 -3.08028D+01 1.93772D+01 1.17506D-08 -3.72408D-03 -8.48256D-03 -4.56313D-08 -4.51872D+00 + 47 3.90904D-02 -8.44001D-02 2.22917D-08 2.12255D+01 -3.26592D+01 -1.91529D-08 -5.34967D-03 -1.90897D-02 -1.41158D-08 -2.77540D+00 + 48 6.36581D-09 -4.98860D-08 7.55743D-03 4.57973D-09 1.96478D-08 -4.38015D+00 -5.92372D-08 -9.02945D-09 -1.30286D-03 1.19837D-08 + 49 -3.93892D+00 -2.31117D+00 4.91875D-08 5.33323D-02 2.32486D-02 6.41893D-08 -5.72312D-01 2.24288D+00 1.06015D-07 -7.92198D-03 + 50 8.58324D+00 3.33058D+00 3.57109D-09 -8.03462D-03 3.83505D-03 1.60738D-08 2.12155D+00 -3.71570D+00 8.06271D-08 6.18212D-04 + 51 8.81344D-08 9.58627D-08 1.37919D+00 -1.65367D-08 2.42676D-08 1.74383D-02 -4.87381D-07 -1.94480D-07 1.39439D+01 3.59955D-07 + 52 5.33325D-02 2.32485D-02 -8.83403D-09 -3.93892D+00 -2.31117D+00 3.27163D-08 -7.92200D-03 -2.48625D-02 1.52407D-07 -5.72312D-01 + 53 -8.03459D-03 3.83501D-03 3.13098D-08 8.58324D+00 3.33058D+00 5.83700D-08 6.18244D-04 -4.67344D-03 1.84849D-07 2.12155D+00 + 54 7.51536D-08 2.99416D-08 1.74383D-02 -2.15556D-08 -4.04150D-08 1.37919D+00 -4.55368D-07 -1.87342D-07 2.79924D-03 3.71273D-07 + 55 2.84420D+00 8.23716D+00 -8.72222D-11 -1.77256D-02 -1.44321D-02 -5.02666D-08 1.92434D+00 -5.65626D-02 -7.70663D-08 5.40215D-03 + 56 -3.57319D+00 -4.53349D+00 -4.81228D-08 -2.90160D-02 -1.56276D-02 2.03688D-08 -1.42312D-01 1.64639D+00 -9.26954D-08 2.28447D-03 + 57 3.81078D-08 8.13725D-08 1.61487D+00 -4.81709D-08 -6.13038D-08 -2.16509D-03 -3.65357D-07 -1.60299D-07 -9.19877D+00 3.55337D-07 + 58 -1.77259D-02 -1.44320D-02 -1.28444D-08 2.84420D+00 8.23716D+00 -5.53066D-08 5.40251D-03 1.98358D-02 -1.28059D-08 1.92434D+00 + 59 -2.90163D-02 -1.56275D-02 -9.95843D-08 -3.57319D+00 -4.53349D+00 -1.95513D-08 2.28476D-03 1.10359D-02 -4.28027D-08 -1.42312D-01 + 60 1.00946D-07 9.20772D-08 -2.16515D-03 2.35528D-09 -4.58017D-08 1.61487D+00 -4.51601D-07 -2.22266D-07 2.82891D-03 2.61969D-07 41 42 43 44 45 46 47 48 49 50 ----- ----- ----- ----- ----- - 41 8.59901D+01 - 42 3.06752D-07 3.00161D+01 - 43 -8.41957D-03 -2.79060D-07 7.25688D+01 - 44 -1.90833D-02 5.44245D-07 -8.85215D+00 7.42911D+01 - 45 -3.42287D-08 -1.31392D-03 -1.59708D-07 4.18005D-07 9.49437D+00 - 46 9.25804D+00 -4.14802D-07 2.22992D-02 -4.08003D-02 -1.58425D-06 7.25688D+01 - 47 2.37423D+00 4.57536D-07 -4.07683D-02 1.73497D-02 -1.72019D-07 -8.85215D+00 7.42911D+01 - 48 1.00845D-07 1.65016D+00 -2.15594D-07 4.29280D-07 9.34423D-04 3.26763D-07 2.09187D-07 9.49437D+00 - 49 -2.48037D-02 5.18850D-07 -1.15042D+02 -1.70502D+01 -1.95009D-06 -2.02254D-02 -2.89466D-02 1.86185D-06 4.10712D+02 - 50 -4.68256D-03 4.61949D-07 -1.76171D+01 -2.32513D+01 8.64961D-07 -3.96689D-04 2.02513D-03 1.55732D-06 6.01938D+01 7.17943D+01 - 51 2.07086D-08 2.83195D-03 -2.66606D-09 4.15271D-07 -1.11487D+01 1.64230D-07 1.38771D-07 -6.92516D-04 6.36670D-07 -2.44806D-07 - 52 2.24332D+00 2.30374D-07 -2.02243D-02 -2.89476D-02 -2.77009D-06 -1.15042D+02 -1.70502D+01 1.04159D-06 -5.77038D-02 -3.07108D-03 - 53 -3.71539D+00 4.60016D-08 -3.96301D-04 2.02485D-03 -5.12663D-07 -1.76171D+01 -2.32513D+01 1.57655D-07 -3.10272D-03 -1.60692D-03 - 54 -4.49256D-08 1.39445D+01 -2.86144D-09 3.29750D-07 -6.89824D-04 1.09804D-07 1.33581D-07 -1.11487D+01 6.21124D-07 -2.21983D-07 - 55 1.97670D-02 -2.63010D-07 -2.89069D+01 -2.92941D+01 2.16162D-06 9.71272D-03 1.36517D-02 -8.29903D-07 -1.13577D+00 -2.96570D+01 - 56 1.09776D-02 -6.14441D-07 -2.83537D+01 -1.09346D+02 2.39305D-06 1.14797D-02 1.33255D-02 -1.89323D-06 7.45840D+00 1.82246D+00 - 57 7.32134D-08 2.91286D-03 2.12429D-07 -7.82318D-07 -1.02000D+01 -7.64386D-07 -5.33953D-07 -4.02837D-03 -1.21641D-06 6.59093D-07 - 58 -5.69485D-02 -3.49898D-08 9.71209D-03 1.36520D-02 2.84541D-06 -2.89069D+01 -2.92941D+01 -1.48926D-07 3.20028D-02 -1.56214D-03 - 59 1.64601D+00 -3.24183D-07 1.14787D-02 1.33262D-02 3.19540D-06 -2.83537D+01 -1.09346D+02 -1.15496D-06 3.20228D-02 5.17021D-03 - 60 -1.98100D-09 -9.19882D+00 1.77247D-07 -8.54198D-07 -4.02770D-03 -7.74250D-07 -5.88507D-07 -1.02000D+01 -1.06350D-06 7.10907D-07 + 41 8.59899D+01 + 42 3.67285D-08 3.00155D+01 + 43 -8.48255D-03 1.05474D-07 7.25692D+01 + 44 -1.90896D-02 -7.86796D-09 -8.85249D+00 7.42920D+01 + 45 1.24970D-08 -1.30287D-03 -1.06560D-07 4.58350D-08 9.49609D+00 + 46 9.25799D+00 6.52254D-08 2.22376D-02 -4.07853D-02 -7.07380D-09 7.25692D+01 + 47 2.37438D+00 -1.63439D-08 -4.07849D-02 1.73304D-02 1.40644D-09 -8.85249D+00 7.42920D+01 + 48 3.09959D-09 1.65027D+00 2.19755D-08 1.62876D-08 9.51771D-04 4.15038D-08 -1.70573D-07 9.49609D+00 + 49 -2.48625D-02 -2.75382D-07 -1.15043D+02 -1.70497D+01 -1.79138D-08 -2.01876D-02 -2.89290D-02 -6.81685D-08 4.10714D+02 + 50 -4.67346D-03 -2.85986D-07 -1.76171D+01 -2.32518D+01 -2.54150D-08 -3.97292D-04 2.03521D-03 -6.43179D-09 6.01944D+01 7.17950D+01 + 51 1.30149D-07 2.79918D-03 3.84838D-08 -7.93823D-08 -1.11501D+01 -1.59845D-07 8.64856D-09 -7.94521D-04 -5.29985D-08 1.92499D-07 + 52 2.24288D+00 -2.70148D-07 -2.01879D-02 -2.89288D-02 2.24209D-08 -1.15043D+02 -1.70497D+01 -2.73156D-08 -5.75509D-02 -3.04072D-03 + 53 -3.71570D+00 -1.78764D-07 -3.97446D-04 2.03527D-03 -1.48060D-08 -1.76171D+01 -2.32518D+01 -8.38694D-09 -3.04218D-03 -1.60334D-03 + 54 1.38081D-07 1.39439D+01 6.69603D-08 -2.46572D-08 -7.94542D-04 -1.82362D-07 4.71923D-08 -1.11501D+01 -5.85319D-08 1.86222D-07 + 55 1.98357D-02 2.97084D-08 -2.89072D+01 -2.92941D+01 7.77766D-09 9.75020D-03 1.36420D-02 -5.29735D-09 -1.13596D+00 -2.96567D+01 + 56 1.10357D-02 1.19878D-07 -2.83534D+01 -1.09348D+02 9.72457D-09 1.14581D-02 1.33549D-02 -1.18544D-09 7.45709D+00 1.82264D+00 + 57 1.66050D-07 2.82880D-03 3.91019D-08 -8.91436D-08 -1.02017D+01 -1.12650D-07 3.64046D-08 -4.26049D-03 -1.44387D-08 2.20302D-07 + 58 -5.65627D-02 1.16617D-07 9.75032D-03 1.36419D-02 2.85761D-08 -2.89072D+01 -2.92941D+01 4.16401D-08 3.18435D-02 -1.57970D-03 + 59 1.64639D+00 1.91512D-07 1.14583D-02 1.33547D-02 5.29066D-08 -2.83534D+01 -1.09348D+02 3.16042D-08 3.17501D-02 5.09659D-03 + 60 1.19751D-07 -9.19877D+00 3.96170D-08 -7.11430D-08 -4.26045D-03 -9.48601D-08 1.38612D-08 -1.02017D+01 2.76559D-08 1.89551D-07 51 52 53 54 55 56 57 58 59 60 ----- ----- ----- ----- ----- - 51 2.48856D+01 - 52 3.12519D-06 4.10712D+02 - 53 6.85932D-07 6.01938D+01 7.17943D+01 - 54 1.86370D-02 -2.78744D-08 -7.01146D-08 2.48856D+01 - 55 -2.20460D-06 3.20024D-02 -1.56159D-03 7.66038D-07 9.18424D+01 - 56 -2.58354D-06 3.20202D-02 5.17049D-03 1.56475D-06 9.99942D+01 3.89494D+02 - 57 2.20813D+00 1.02418D-06 5.38070D-07 -2.06744D-02 4.98775D-07 1.93618D-06 2.48305D+01 - 58 -2.90202D-06 -1.13577D+00 -2.96570D+01 1.20212D-07 -1.36523D-02 -1.78996D-02 -2.92272D-06 9.18424D+01 - 59 -3.34532D-06 7.45840D+00 1.82246D+00 9.10767D-07 -1.77668D-02 -2.32582D-02 -3.03157D-06 9.99942D+01 3.89494D+02 - 60 -2.06749D-02 1.12159D-06 6.26103D-07 2.20813D+00 4.78990D-07 1.94176D-06 2.74736D-02 5.40209D-07 1.85633D-07 2.48305D+01 + 51 2.48883D+01 + 52 5.66170D-08 4.10714D+02 + 53 2.60541D-08 6.01944D+01 7.17950D+01 + 54 1.87382D-02 2.99451D-07 -2.23199D-07 2.48883D+01 + 55 -3.95488D-08 3.18432D-02 -1.58002D-03 9.36615D-08 9.18431D+01 + 56 -1.71022D-08 3.17502D-02 5.09607D-03 2.42595D-08 9.99948D+01 3.89497D+02 + 57 2.20870D+00 1.59467D-07 -2.54573D-07 -2.04470D-02 1.63913D-07 8.12515D-08 2.48339D+01 + 58 -6.28116D-08 -1.13596D+00 -2.96567D+01 5.88705D-08 -1.36540D-02 -1.77510D-02 5.18462D-08 9.18431D+01 + 59 -3.34808D-08 7.45709D+00 1.82264D+00 -5.21509D-09 -1.77421D-02 -2.31193D-02 1.41379D-07 9.99948D+01 3.89497D+02 + 60 -2.04471D-02 1.59670D-07 -2.54304D-07 2.20870D+00 1.80819D-07 1.31217D-07 2.76930D-02 -1.51281D-07 -7.31840D-08 2.48339D+01 @@ -937,653 +934,653 @@ Iterative solution of linear equations 1 2 3 4 5 6 - Frequency -10.16 -1.46 3.33 6.77 9.11 17.92 - - 1 0.00001 -0.00007 -0.08495 -0.02223 -0.04843 0.00001 - 2 -0.00000 0.00001 0.02177 -0.08487 0.00885 -0.00001 - 3 -0.03209 0.08763 -0.00007 -0.00001 0.00001 0.04615 - 4 -0.00000 -0.00008 -0.08492 -0.02138 0.04886 0.00000 - 5 -0.00000 0.00001 0.02176 -0.08502 -0.00737 -0.00000 - 6 0.03210 0.08763 -0.00007 -0.00000 0.00001 -0.04614 - 7 0.00001 -0.00007 -0.08494 -0.02196 -0.01657 0.00001 - 8 -0.00001 0.00001 0.02178 -0.08455 0.04599 -0.00001 - 9 0.04867 0.08761 -0.00006 -0.00001 0.00002 0.11743 - 10 0.00000 -0.00007 -0.08493 -0.02166 0.01700 0.00000 - 11 0.00000 0.00002 0.02175 -0.08534 -0.04451 -0.00000 - 12 -0.04866 0.08762 -0.00008 0.00000 -0.00001 -0.11742 - 13 0.00000 -0.00007 -0.08493 -0.02154 0.03100 0.00000 - 14 -0.00001 0.00001 0.02177 -0.08461 0.03808 -0.00001 - 15 0.07993 0.08761 -0.00006 -0.00001 0.00002 0.07246 - 16 0.00001 -0.00007 -0.08495 -0.02208 -0.03057 0.00001 - 17 0.00000 0.00002 0.02175 -0.08527 -0.03660 -0.00000 - 18 -0.07992 0.08763 -0.00008 -0.00000 -0.00000 -0.07245 - 19 0.00001 -0.00007 -0.08495 -0.02207 -0.02963 0.00001 - 20 -0.00001 0.00000 0.02178 -0.08423 0.08145 -0.00001 - 21 0.08664 0.08761 -0.00005 -0.00002 0.00004 0.20946 - 22 0.00000 -0.00007 -0.08493 -0.02155 0.03006 0.00000 - 23 0.00001 0.00002 0.02173 -0.08565 -0.07996 0.00000 - 24 -0.08663 0.08762 -0.00009 0.00001 -0.00002 -0.20946 - 25 -0.00000 -0.00008 -0.08492 -0.02131 0.05482 0.00000 - 26 -0.00001 0.00001 0.02178 -0.08432 0.06740 -0.00001 - 27 0.14257 0.08760 -0.00005 -0.00001 0.00003 0.13076 - 28 0.00001 -0.00006 -0.08495 -0.02227 -0.05439 0.00001 - 29 0.00000 0.00002 0.02174 -0.08549 -0.06591 0.00000 - 30 -0.14256 0.08762 -0.00009 0.00000 -0.00002 -0.13076 - 31 -0.00000 -0.00008 -0.08490 -0.02087 0.09933 -0.00000 - 32 -0.00000 0.00001 0.02176 -0.08512 -0.01760 -0.00000 - 33 0.06272 0.08766 -0.00008 -0.00000 0.00001 -0.09795 - 34 0.00001 -0.00006 -0.08496 -0.02262 -0.09890 0.00001 - 35 -0.00000 0.00001 0.02177 -0.08480 0.01909 -0.00001 - 36 -0.06271 0.08766 -0.00007 -0.00001 0.00001 0.09795 - 37 -0.00001 -0.00008 -0.08490 -0.02078 0.10790 -0.00000 - 38 0.00000 0.00002 0.02174 -0.08551 -0.05433 -0.00000 - 39 0.01382 0.08753 -0.00008 0.00000 -0.00001 -0.18834 - 40 0.00001 -0.00006 -0.08496 -0.02268 -0.10747 0.00002 - 41 -0.00001 0.00001 0.02177 -0.08454 0.05581 -0.00001 - 42 -0.01381 0.08753 -0.00006 -0.00001 0.00003 0.18834 - 43 -0.00001 -0.00009 -0.08489 -0.02048 0.13362 -0.00001 - 44 -0.00000 0.00001 0.02177 -0.08477 0.01323 -0.00001 - 45 0.14245 0.08784 -0.00007 -0.00000 0.00002 -0.04432 - 46 0.00002 -0.00006 -0.08497 -0.02284 -0.13319 0.00002 - 47 -0.00000 0.00001 0.02176 -0.08499 -0.01175 -0.00000 - 48 -0.14244 0.08786 -0.00008 -0.00001 -0.00000 0.04433 - 49 -0.00001 -0.00008 -0.08489 -0.02056 0.12746 -0.00001 - 50 -0.00001 0.00001 0.02179 -0.08431 0.05023 -0.00001 - 51 0.19478 0.08798 -0.00006 -0.00001 0.00003 0.04572 - 52 0.00002 -0.00006 -0.08497 -0.02280 -0.12703 0.00002 - 53 0.00000 0.00002 0.02176 -0.08518 -0.04875 -0.00000 - 54 -0.19476 0.08801 -0.00009 -0.00000 -0.00001 -0.04572 - 55 -0.00001 -0.00009 -0.08487 -0.02005 0.16950 -0.00001 - 56 -0.00000 0.00001 0.02177 -0.08490 0.00243 -0.00001 - 57 0.15880 0.08785 -0.00007 -0.00000 0.00002 -0.08896 - 58 0.00002 -0.00005 -0.08497 -0.02304 -0.16907 0.00002 - 59 -0.00000 0.00001 0.02177 -0.08493 -0.00095 -0.00001 - 60 -0.15878 0.08787 -0.00007 -0.00001 0.00000 0.08896 + Frequency -9.92 -1.35 3.25 6.84 9.12 17.92 + + 1 0.00000 -0.00001 -0.08510 0.02117 -0.04865 -0.00000 + 2 0.00000 -0.00000 0.02113 0.08511 0.00812 0.00000 + 3 0.03217 0.08767 -0.00001 0.00000 0.00000 0.04614 + 4 0.00000 -0.00001 -0.08510 0.02116 0.04865 0.00000 + 5 0.00000 -0.00000 0.02113 0.08511 -0.00810 0.00000 + 6 -0.03217 0.08767 -0.00001 0.00000 0.00000 -0.04614 + 7 0.00000 -0.00001 -0.08510 0.02117 -0.01678 0.00000 + 8 0.00000 -0.00000 0.02113 0.08510 0.04526 0.00000 + 9 -0.04862 0.08766 -0.00001 0.00000 0.00000 0.11745 + 10 0.00000 -0.00001 -0.08510 0.02117 0.01679 0.00000 + 11 0.00000 0.00000 0.02113 0.08511 -0.04524 0.00000 + 12 0.04862 0.08766 -0.00001 0.00000 0.00000 -0.11745 + 13 0.00000 -0.00001 -0.08510 0.02117 0.03079 0.00000 + 14 0.00000 -0.00000 0.02113 0.08510 0.03735 0.00000 + 15 -0.07995 0.08766 -0.00001 0.00000 0.00000 0.07249 + 16 0.00000 -0.00001 -0.08510 0.02118 -0.03078 -0.00000 + 17 0.00000 -0.00000 0.02113 0.08510 -0.03733 0.00000 + 18 0.07995 0.08766 -0.00000 0.00000 0.00000 -0.07249 + 19 0.00000 -0.00001 -0.08510 0.02118 -0.02985 -0.00000 + 20 -0.00000 -0.00000 0.02112 0.08510 0.08072 0.00000 + 21 -0.08655 0.08766 -0.00001 0.00000 -0.00000 0.20950 + 22 0.00000 -0.00001 -0.08510 0.02117 0.02985 0.00000 + 23 0.00000 0.00000 0.02112 0.08511 -0.08070 -0.00000 + 24 0.08655 0.08766 -0.00000 0.00000 0.00000 -0.20950 + 25 0.00000 -0.00001 -0.08510 0.02115 0.05461 0.00000 + 26 0.00000 -0.00000 0.02113 0.08506 0.06667 0.00000 + 27 -0.14262 0.08766 -0.00001 0.00000 -0.00000 0.13082 + 28 0.00000 -0.00001 -0.08510 0.02116 -0.05461 -0.00000 + 29 0.00000 0.00000 0.02113 0.08508 -0.06665 -0.00000 + 30 0.14262 0.08766 -0.00000 0.00000 0.00000 -0.13082 + 31 0.00000 -0.00001 -0.08510 0.02110 0.09912 0.00000 + 32 0.00000 -0.00000 0.02113 0.08513 -0.01834 0.00000 + 33 -0.06285 0.08768 -0.00001 0.00000 0.00000 -0.09792 + 34 0.00000 -0.00000 -0.08509 0.02113 -0.09912 -0.00000 + 35 0.00000 -0.00000 0.02113 0.08512 0.01836 0.00000 + 36 0.06285 0.08768 -0.00000 0.00000 0.00000 0.09792 + 37 0.00000 -0.00001 -0.08509 0.02109 0.10769 0.00000 + 38 0.00000 0.00000 0.02112 0.08519 -0.05506 -0.00000 + 39 -0.01413 0.08765 -0.00001 0.00000 0.00000 -0.18835 + 40 0.00000 -0.00000 -0.08509 0.02111 -0.10769 -0.00000 + 41 0.00000 -0.00000 0.02112 0.08518 0.05508 0.00000 + 42 0.01413 0.08765 -0.00001 0.00000 0.00000 0.18835 + 43 0.00000 -0.00001 -0.08509 0.02101 0.13341 0.00000 + 44 0.00000 -0.00000 0.02113 0.08505 0.01250 0.00000 + 45 -0.14239 0.08772 -0.00001 0.00000 0.00000 -0.04423 + 46 0.00000 -0.00000 -0.08508 0.02105 -0.13341 -0.00000 + 47 0.00000 -0.00000 0.02113 0.08505 -0.01248 0.00000 + 48 0.14239 0.08772 -0.00000 0.00000 0.00000 0.04423 + 49 0.00000 -0.00001 -0.08509 0.02104 0.12725 0.00000 + 50 0.00000 -0.00000 0.02114 0.08491 0.04950 0.00000 + 51 -0.19452 0.08775 -0.00001 0.00000 -0.00000 0.04586 + 52 0.00000 -0.00000 -0.08509 0.02107 -0.12725 -0.00000 + 53 0.00000 0.00000 0.02114 0.08492 -0.04948 0.00000 + 54 0.19452 0.08775 -0.00000 0.00000 0.00000 -0.04586 + 55 0.00000 -0.00001 -0.08508 0.02090 0.16929 0.00000 + 56 0.00000 -0.00000 0.02113 0.08508 0.00170 0.00000 + 57 -0.15879 0.08773 -0.00001 0.00000 0.00000 -0.08884 + 58 0.00000 -0.00000 -0.08508 0.02094 -0.16929 -0.00000 + 59 0.00000 -0.00000 0.02113 0.08508 -0.00168 0.00000 + 60 0.15879 0.08773 -0.00000 0.00000 0.00000 0.08884 7 8 9 10 11 12 - Frequency 48.95 81.26 151.68 181.05 265.74 301.25 - - 1 -0.00000 -0.00000 -0.00000 0.05678 -0.06710 -0.00000 - 2 0.00000 -0.00000 -0.00000 0.01052 0.02426 0.00000 - 3 -0.04466 0.05533 0.02076 -0.00000 0.00000 -0.11845 - 4 -0.00000 -0.00000 -0.00000 0.05678 0.06710 0.00000 - 5 0.00000 -0.00000 -0.00000 0.01052 -0.02426 -0.00000 - 6 -0.04466 -0.05533 0.02076 0.00000 -0.00000 0.11845 - 7 -0.00000 -0.00000 -0.00000 0.06198 -0.03562 0.00000 - 8 0.00000 -0.00000 -0.00000 0.01363 0.05531 -0.00000 - 9 -0.05727 -0.02671 0.05684 0.00000 -0.00000 -0.07802 - 10 -0.00000 -0.00000 -0.00000 0.06198 0.03562 0.00000 - 11 0.00000 -0.00000 -0.00000 0.01363 -0.05531 -0.00000 - 12 -0.05727 0.02671 0.05684 -0.00000 -0.00000 0.07802 - 13 -0.00000 -0.00000 -0.00000 0.06099 0.04505 0.00000 - 14 0.00000 -0.00000 -0.00000 0.00643 0.03727 -0.00000 - 15 -0.05334 -0.08512 0.06573 0.00000 0.00000 0.06449 - 16 -0.00000 -0.00000 -0.00000 0.06099 -0.04505 -0.00000 - 17 0.00000 -0.00000 -0.00000 0.00643 -0.03727 -0.00000 - 18 -0.05334 0.08512 0.06573 -0.00000 0.00000 -0.06449 - 19 -0.00000 -0.00000 -0.00000 0.06243 -0.05344 0.00000 - 20 0.00000 -0.00000 -0.00000 0.01382 0.10413 0.00000 - 21 -0.06196 -0.05301 0.04389 0.00000 -0.00000 -0.11911 - 22 -0.00000 -0.00000 -0.00000 0.06243 0.05344 0.00000 - 23 0.00000 0.00000 -0.00000 0.01382 -0.10413 -0.00000 - 24 -0.06195 0.05301 0.04389 -0.00000 -0.00000 0.11911 - 25 -0.00000 -0.00000 -0.00000 0.05942 0.08282 0.00000 - 26 0.00000 -0.00000 -0.00000 0.00251 0.08104 0.00000 - 27 -0.05773 -0.16023 0.05764 0.00000 0.00000 0.08322 - 28 -0.00000 -0.00000 -0.00000 0.05942 -0.08282 -0.00000 - 29 0.00000 -0.00000 0.00000 0.00251 -0.08104 -0.00000 - 30 -0.05773 0.16023 0.05764 -0.00000 0.00000 -0.08322 - 31 -0.00000 -0.00000 -0.00000 -0.03069 0.03030 -0.00000 - 32 0.00000 -0.00000 -0.00000 0.02870 -0.02383 -0.00000 - 33 -0.01348 -0.09004 -0.12599 -0.00000 0.00000 -0.03634 - 34 -0.00000 -0.00000 0.00000 -0.03069 -0.03030 0.00000 - 35 0.00000 -0.00000 -0.00000 0.02870 0.02383 0.00000 - 36 -0.01348 0.09004 -0.12599 -0.00000 0.00000 0.03634 - 37 0.00000 -0.00000 -0.00000 -0.05166 0.01289 -0.00000 - 38 0.00000 -0.00000 -0.00000 0.11818 0.04826 0.00000 - 39 -0.11930 -0.25127 -0.35623 -0.00000 0.00000 -0.25932 - 40 -0.00000 -0.00000 0.00000 -0.05166 -0.01289 0.00000 - 41 0.00000 -0.00000 -0.00000 0.11818 -0.04826 -0.00000 - 42 -0.11930 0.25127 -0.35623 -0.00000 0.00000 0.25932 - 43 0.00000 -0.00000 -0.00000 -0.12655 -0.06658 -0.00000 - 44 0.00000 -0.00000 -0.00000 -0.05557 -0.11206 -0.00000 - 45 0.15087 0.08970 -0.00431 0.00000 -0.00000 -0.02102 - 46 -0.00000 0.00000 0.00000 -0.12655 0.06658 0.00000 - 47 0.00000 -0.00000 0.00000 -0.05557 0.11206 0.00000 - 48 0.15087 -0.08970 -0.00431 -0.00000 -0.00000 0.02102 - 49 0.00000 -0.00000 -0.00000 -0.10888 -0.04632 -0.00000 - 50 0.00000 -0.00000 -0.00000 -0.15874 -0.22733 -0.00000 - 51 0.27569 0.27827 0.24304 0.00000 -0.00000 0.20778 - 52 -0.00000 -0.00000 0.00000 -0.10888 0.04633 0.00000 - 53 0.00000 0.00000 0.00000 -0.15874 0.22733 0.00000 - 54 0.27569 -0.27827 0.24304 -0.00000 -0.00000 -0.20778 - 55 0.00000 -0.00000 -0.00000 -0.23087 -0.18385 -0.00000 - 56 0.00000 -0.00000 -0.00000 -0.02434 -0.07747 -0.00000 - 57 0.16983 0.05940 -0.14365 -0.00000 0.00000 -0.23353 - 58 -0.00000 0.00000 0.00000 -0.23087 0.18385 0.00000 - 59 0.00000 -0.00000 0.00000 -0.02434 0.07747 0.00000 - 60 0.16983 -0.05940 -0.14365 -0.00000 -0.00000 0.23353 + Frequency 49.01 81.29 151.70 181.05 265.75 301.27 + + 1 -0.00000 0.00000 0.00000 0.05678 -0.06710 0.00000 + 2 -0.00000 -0.00000 0.00000 0.01053 0.02426 0.00000 + 3 -0.04458 -0.05531 0.02076 0.00000 0.00000 -0.11846 + 4 -0.00000 0.00000 -0.00000 0.05678 0.06710 0.00000 + 5 -0.00000 -0.00000 0.00000 0.01052 -0.02426 -0.00000 + 6 -0.04458 0.05531 0.02076 -0.00000 -0.00000 0.11846 + 7 -0.00000 0.00000 0.00000 0.06198 -0.03562 0.00000 + 8 -0.00000 -0.00000 -0.00000 0.01364 0.05531 0.00000 + 9 -0.05720 0.02668 0.05684 0.00000 -0.00000 -0.07801 + 10 -0.00000 0.00000 -0.00000 0.06198 0.03562 0.00000 + 11 -0.00000 -0.00000 0.00000 0.01364 -0.05531 -0.00000 + 12 -0.05720 -0.02668 0.05684 -0.00000 -0.00000 0.07801 + 13 -0.00000 0.00000 -0.00000 0.06099 0.04505 0.00000 + 14 -0.00000 -0.00000 0.00000 0.00643 0.03727 0.00000 + 15 -0.05327 0.08506 0.06573 0.00000 0.00000 0.06449 + 16 -0.00000 0.00000 0.00000 0.06099 -0.04505 0.00000 + 17 -0.00000 -0.00000 0.00000 0.00643 -0.03727 -0.00000 + 18 -0.05327 -0.08506 0.06573 0.00000 0.00000 -0.06449 + 19 -0.00000 0.00000 0.00000 0.06243 -0.05344 0.00000 + 20 -0.00000 -0.00000 -0.00000 0.01382 0.10413 0.00000 + 21 -0.06189 0.05296 0.04389 0.00000 -0.00000 -0.11910 + 22 -0.00000 0.00000 -0.00000 0.06243 0.05344 0.00000 + 23 -0.00000 -0.00000 0.00000 0.01382 -0.10413 -0.00000 + 24 -0.06189 -0.05296 0.04389 -0.00000 -0.00000 0.11910 + 25 -0.00000 0.00000 -0.00000 0.05942 0.08282 0.00000 + 26 -0.00000 -0.00000 -0.00000 0.00251 0.08104 0.00000 + 27 -0.05766 0.16013 0.05764 0.00000 0.00000 0.08322 + 28 -0.00000 0.00000 0.00000 0.05942 -0.08282 0.00000 + 29 -0.00000 -0.00000 0.00000 0.00251 -0.08104 -0.00000 + 30 -0.05766 -0.16013 0.05764 -0.00000 0.00000 -0.08322 + 31 -0.00000 0.00000 -0.00000 -0.03069 0.03030 0.00000 + 32 -0.00000 -0.00000 0.00000 0.02870 -0.02384 -0.00000 + 33 -0.01339 0.08997 -0.12599 -0.00000 0.00000 -0.03636 + 34 -0.00000 0.00000 0.00000 -0.03069 -0.03030 -0.00000 + 35 -0.00000 -0.00000 -0.00000 0.02870 0.02384 0.00000 + 36 -0.01339 -0.08997 -0.12599 -0.00000 0.00000 0.03636 + 37 -0.00000 0.00000 -0.00000 -0.05166 0.01289 0.00000 + 38 -0.00000 -0.00000 0.00000 0.11818 0.04826 0.00000 + 39 -0.11918 0.25122 -0.35623 -0.00000 0.00000 -0.25933 + 40 -0.00000 0.00000 0.00000 -0.05166 -0.01289 -0.00000 + 41 -0.00000 -0.00000 -0.00000 0.11818 -0.04826 0.00000 + 42 -0.11918 -0.25122 -0.35623 -0.00000 0.00000 0.25933 + 43 -0.00000 0.00000 -0.00000 -0.12655 -0.06658 -0.00000 + 44 -0.00000 -0.00000 0.00000 -0.05557 -0.11206 -0.00000 + 45 0.15095 -0.08982 -0.00428 0.00000 -0.00000 -0.02102 + 46 -0.00000 0.00000 0.00000 -0.12655 0.06658 -0.00000 + 47 -0.00000 -0.00000 0.00000 -0.05557 0.11206 -0.00000 + 48 0.15095 0.08982 -0.00428 -0.00000 -0.00000 0.02102 + 49 -0.00000 0.00000 -0.00000 -0.10888 -0.04633 -0.00000 + 50 -0.00000 -0.00000 -0.00000 -0.15873 -0.22732 -0.00000 + 51 0.27573 -0.27841 0.24306 0.00000 -0.00000 0.20778 + 52 -0.00000 0.00000 0.00000 -0.10888 0.04633 -0.00000 + 53 0.00000 -0.00000 0.00000 -0.15873 0.22732 -0.00000 + 54 0.27573 0.27841 0.24306 0.00000 -0.00000 -0.20778 + 55 -0.00000 0.00000 -0.00000 -0.23087 -0.18385 -0.00000 + 56 -0.00000 -0.00000 0.00000 -0.02434 -0.07747 -0.00000 + 57 0.16993 -0.05957 -0.14359 0.00000 0.00000 -0.23349 + 58 0.00000 0.00000 0.00000 -0.23087 0.18385 -0.00000 + 59 -0.00000 -0.00000 0.00000 -0.02434 0.07747 -0.00000 + 60 0.16993 0.05957 -0.14359 -0.00000 -0.00000 0.23349 13 14 15 16 17 18 - Frequency 407.92 424.39 468.98 487.92 578.91 657.85 + Frequency 407.92 424.39 468.98 487.93 578.92 657.87 - 1 0.06233 0.00000 0.00000 -0.02307 0.03797 0.00000 - 2 0.06102 0.00000 -0.00000 0.03327 -0.06916 -0.00000 - 3 -0.00000 -0.01085 0.13220 0.00000 0.00000 -0.02734 + 1 0.06233 0.00000 -0.00000 -0.02307 0.03797 -0.00000 + 2 0.06102 0.00000 0.00000 0.03327 -0.06916 -0.00000 + 3 -0.00000 0.01084 0.13222 -0.00000 0.00000 0.02736 4 -0.06233 -0.00000 0.00000 -0.02307 -0.03797 0.00000 - 5 -0.06102 -0.00000 -0.00000 0.03327 0.06916 0.00000 - 6 0.00000 -0.01085 0.13220 0.00000 0.00000 0.02734 - 7 0.00252 -0.00000 0.00000 -0.04171 0.07930 0.00000 - 8 -0.02401 -0.00000 -0.00000 0.04783 -0.03826 0.00000 - 9 0.00000 -0.12087 -0.06191 -0.00000 -0.00000 0.08227 - 10 -0.00252 -0.00000 0.00000 -0.04171 -0.07930 0.00000 - 11 0.02401 0.00000 -0.00000 0.04783 0.03826 0.00000 - 12 0.00000 -0.12087 -0.06191 -0.00000 -0.00000 -0.08227 - 13 -0.07035 -0.00000 0.00000 -0.04286 -0.01392 0.00000 - 14 -0.02928 -0.00000 -0.00000 0.05698 -0.01297 0.00000 - 15 -0.00000 0.12494 -0.03988 -0.00000 0.00000 -0.07877 - 16 0.07035 0.00000 0.00000 -0.04286 0.01392 0.00000 - 17 0.02928 0.00000 -0.00000 0.05698 0.01297 0.00000 - 18 -0.00000 0.12494 -0.03988 -0.00000 0.00000 0.07877 - 19 0.03779 -0.00000 0.00000 -0.04590 0.08497 0.00000 - 20 -0.11570 -0.00000 -0.00000 0.05444 -0.05171 0.00000 - 21 0.00000 -0.23240 -0.22744 -0.00000 -0.00000 0.11226 - 22 -0.03779 -0.00000 0.00000 -0.04590 -0.08497 -0.00000 + 5 -0.06102 -0.00000 -0.00000 0.03327 0.06916 -0.00000 + 6 -0.00000 0.01084 0.13222 -0.00000 0.00000 -0.02736 + 7 0.00252 -0.00000 -0.00000 -0.04171 0.07931 -0.00000 + 8 -0.02401 -0.00000 0.00000 0.04783 -0.03825 -0.00000 + 9 -0.00000 0.12087 -0.06190 0.00000 -0.00000 -0.08228 + 10 -0.00252 0.00000 0.00000 -0.04171 -0.07931 0.00000 + 11 0.02401 0.00000 0.00000 0.04783 0.03825 0.00000 + 12 -0.00000 0.12087 -0.06190 0.00000 -0.00000 0.08228 + 13 -0.07035 -0.00000 -0.00000 -0.04286 -0.01392 0.00000 + 14 -0.02928 -0.00000 0.00000 0.05698 -0.01297 -0.00000 + 15 0.00000 -0.12494 -0.03989 0.00000 0.00000 0.07877 + 16 0.07035 0.00000 -0.00000 -0.04286 0.01392 -0.00000 + 17 0.02928 0.00000 0.00000 0.05698 0.01297 0.00000 + 18 0.00000 -0.12494 -0.03989 -0.00000 0.00000 -0.07877 + 19 0.03779 0.00000 -0.00000 -0.04590 0.08497 -0.00000 + 20 -0.11570 -0.00000 0.00000 0.05444 -0.05171 -0.00000 + 21 -0.00000 0.23241 -0.22743 0.00000 -0.00000 -0.11226 + 22 -0.03779 0.00000 0.00000 -0.04590 -0.08497 0.00000 23 0.11570 0.00000 -0.00000 0.05444 0.05171 0.00000 - 24 0.00000 -0.23240 -0.22744 -0.00000 -0.00000 -0.11226 - 25 -0.07248 -0.00000 0.00000 -0.04412 -0.09398 0.00000 - 26 -0.03305 -0.00000 -0.00000 0.05565 -0.11019 0.00000 - 27 -0.00000 0.28135 -0.19195 -0.00000 0.00000 -0.13474 - 28 0.07248 0.00000 0.00000 -0.04412 0.09398 0.00000 - 29 0.03305 0.00000 -0.00000 0.05565 0.11019 0.00000 - 30 -0.00000 0.28135 -0.19195 -0.00000 0.00000 0.13474 - 31 0.00242 -0.00000 -0.00000 0.09736 0.10217 0.00000 - 32 -0.11048 -0.00000 -0.00000 -0.01407 0.05567 -0.00000 - 33 0.00000 0.00253 0.04260 -0.00000 -0.00000 0.09645 - 34 -0.00242 0.00000 -0.00000 0.09736 -0.10217 -0.00000 - 35 0.11048 0.00000 0.00000 -0.01407 -0.05567 -0.00000 - 36 -0.00000 0.00253 0.04260 0.00000 0.00000 -0.09645 - 37 0.01267 -0.00000 -0.00000 0.09900 0.10803 0.00000 - 38 -0.16285 -0.00000 -0.00000 -0.02943 0.02985 -0.00000 - 39 0.00000 0.01386 -0.13640 -0.00000 0.00000 -0.13052 - 40 -0.01267 0.00000 -0.00000 0.09900 -0.10803 -0.00000 - 41 0.16285 0.00000 0.00000 -0.02943 -0.02985 -0.00000 - 42 -0.00000 0.01386 -0.13640 0.00000 -0.00000 0.13052 + 24 -0.00000 0.23241 -0.22743 0.00000 -0.00000 0.11226 + 25 -0.07248 0.00000 0.00000 -0.04412 -0.09398 0.00000 + 26 -0.03305 -0.00000 0.00000 0.05565 -0.11018 -0.00000 + 27 0.00000 -0.28134 -0.19195 0.00000 0.00000 0.13474 + 28 0.07248 0.00000 -0.00000 -0.04412 0.09398 -0.00000 + 29 0.03305 0.00000 -0.00000 0.05565 0.11018 0.00000 + 30 0.00000 -0.28134 -0.19195 0.00000 0.00000 -0.13474 + 31 0.00243 0.00000 0.00000 0.09736 0.10217 0.00000 + 32 -0.11048 -0.00000 -0.00000 -0.01407 0.05567 0.00000 + 33 -0.00000 -0.00253 0.04259 -0.00000 0.00000 -0.09644 + 34 -0.00243 -0.00000 0.00000 0.09736 -0.10217 -0.00000 + 35 0.11048 0.00000 -0.00000 -0.01407 -0.05567 0.00000 + 36 0.00000 -0.00253 0.04259 0.00000 0.00000 0.09644 + 37 0.01267 0.00000 0.00000 0.09900 0.10803 0.00000 + 38 -0.16285 -0.00000 -0.00000 -0.02943 0.02986 0.00000 + 39 -0.00000 -0.01385 -0.13640 0.00000 0.00000 0.13055 + 40 -0.01267 -0.00000 0.00000 0.09900 -0.10803 -0.00000 + 41 0.16285 0.00000 -0.00000 -0.02943 -0.02986 0.00000 + 42 0.00000 -0.01385 -0.13640 0.00000 0.00000 -0.13055 43 0.03932 0.00000 -0.00000 0.01768 0.01300 0.00000 - 44 -0.09043 -0.00000 0.00000 -0.10304 -0.03511 -0.00000 - 45 0.00000 -0.00074 -0.01871 -0.00000 -0.00000 -0.01639 - 46 -0.03932 -0.00000 0.00000 0.01768 -0.01300 0.00000 - 47 0.09043 0.00000 0.00000 -0.10304 0.03511 0.00000 - 48 -0.00000 -0.00074 -0.01871 -0.00000 -0.00000 0.01639 - 49 0.03611 0.00000 -0.00000 0.04794 0.04989 -0.00000 - 50 -0.06588 0.00000 0.00000 -0.27471 -0.25315 -0.00000 - 51 -0.00000 -0.02872 0.16237 -0.00000 -0.00000 0.20851 - 52 -0.03611 -0.00000 -0.00000 0.04794 -0.04989 -0.00000 - 53 0.06588 -0.00000 0.00000 -0.27471 0.25315 0.00000 - 54 0.00000 -0.02872 0.16237 -0.00000 0.00000 -0.20851 - 55 0.06843 0.00000 0.00000 -0.14510 -0.19200 0.00000 - 56 -0.10050 -0.00000 -0.00000 -0.05618 0.02532 -0.00000 - 57 0.00000 0.02541 -0.25324 -0.00000 0.00000 -0.35710 - 58 -0.06843 -0.00000 0.00000 -0.14510 0.19200 0.00000 - 59 0.10050 0.00000 0.00000 -0.05618 -0.02532 -0.00000 - 60 -0.00000 0.02541 -0.25324 -0.00000 -0.00000 0.35710 + 44 -0.09043 -0.00000 -0.00000 -0.10304 -0.03511 0.00000 + 45 -0.00000 0.00074 -0.01871 0.00000 -0.00000 0.01639 + 46 -0.03932 -0.00000 0.00000 0.01768 -0.01300 -0.00000 + 47 0.09043 0.00000 -0.00000 -0.10304 0.03511 0.00000 + 48 -0.00000 0.00074 -0.01871 0.00000 -0.00000 -0.01639 + 49 0.03611 0.00000 0.00000 0.04793 0.04988 0.00000 + 50 -0.06588 -0.00000 -0.00000 -0.27471 -0.25315 -0.00000 + 51 -0.00000 0.02871 0.16236 -0.00000 -0.00000 -0.20851 + 52 -0.03611 -0.00000 0.00000 0.04793 -0.04988 -0.00000 + 53 0.06588 0.00000 -0.00000 -0.27471 0.25315 0.00000 + 54 -0.00000 0.02871 0.16236 -0.00000 -0.00000 0.20851 + 55 0.06843 -0.00000 -0.00000 -0.14510 -0.19200 -0.00000 + 56 -0.10050 -0.00000 -0.00000 -0.05619 0.02532 0.00000 + 57 0.00000 -0.02539 -0.25321 0.00000 0.00000 0.35709 + 58 -0.06843 0.00000 -0.00000 -0.14510 0.19200 0.00000 + 59 0.10050 0.00000 -0.00000 -0.05619 -0.02532 0.00000 + 60 -0.00000 -0.02539 -0.25321 0.00000 0.00000 -0.35709 19 20 21 22 23 24 - Frequency 673.47 707.32 735.12 810.72 862.51 893.97 - - 1 -0.04040 0.00000 -0.00161 -0.00000 -0.00735 -0.00000 - 2 -0.00027 -0.00000 -0.01015 0.00000 -0.03625 -0.00000 - 3 -0.00000 -0.06851 0.00000 0.14257 -0.00000 -0.00213 - 4 0.04040 -0.00000 -0.00161 -0.00000 0.00735 0.00000 - 5 0.00027 0.00000 -0.01015 0.00000 0.03625 0.00000 - 6 0.00000 -0.06851 0.00000 -0.14257 0.00000 0.00213 - 7 -0.08893 0.00000 0.03821 0.00000 0.11601 0.00000 - 8 -0.09854 0.00000 0.07523 0.00000 0.00186 -0.00000 - 9 0.00000 -0.01327 -0.00000 -0.05829 0.00000 -0.06359 - 10 0.08893 0.00000 0.03821 -0.00000 -0.11601 -0.00000 - 11 0.09854 0.00000 0.07523 0.00000 -0.00186 -0.00000 - 12 0.00000 -0.01327 0.00000 0.05829 -0.00000 0.06359 - 13 0.06162 -0.00000 0.01410 0.00000 0.11777 0.00000 - 14 -0.12263 0.00000 0.07363 -0.00000 -0.03435 -0.00000 - 15 -0.00000 -0.01708 0.00000 0.05684 0.00000 -0.07062 - 16 -0.06162 -0.00000 0.01410 -0.00000 -0.11777 -0.00000 - 17 0.12263 0.00000 0.07363 0.00000 0.03435 -0.00000 - 18 -0.00000 -0.01708 0.00000 -0.05684 0.00000 0.07062 - 19 -0.10491 0.00000 0.01933 0.00000 0.08785 0.00000 - 20 -0.05681 0.00000 0.12589 0.00000 0.09835 0.00000 - 21 0.00000 0.25589 -0.00000 -0.15514 -0.00000 0.43161 - 22 0.10491 -0.00000 0.01933 -0.00000 -0.08785 -0.00000 - 23 0.05681 0.00000 0.12589 0.00000 -0.09835 -0.00000 - 24 0.00000 0.25589 -0.00000 0.15514 0.00000 -0.43161 - 25 0.08399 0.00000 0.04801 -0.00000 0.07287 -0.00000 - 26 -0.09556 0.00000 0.11190 -0.00000 -0.10064 -0.00000 - 27 -0.00000 0.25286 -0.00000 0.15510 -0.00000 0.44924 - 28 -0.08399 0.00000 0.04801 -0.00000 -0.07287 -0.00000 - 29 0.09556 0.00000 0.11190 0.00000 0.10064 -0.00000 - 30 -0.00000 0.25286 -0.00000 -0.15510 0.00000 -0.44924 - 31 0.02094 -0.00000 -0.07198 -0.00000 -0.03707 0.00000 - 32 0.00441 -0.00000 -0.10255 -0.00000 -0.05193 0.00000 - 33 0.00000 0.09532 -0.00000 0.06773 -0.00000 -0.00046 - 34 -0.02094 -0.00000 -0.07198 0.00000 0.03707 0.00000 - 35 -0.00441 -0.00000 -0.10255 0.00000 0.05193 0.00000 - 36 0.00000 0.09532 -0.00000 -0.06773 0.00000 0.00046 - 37 0.02191 -0.00000 -0.07556 -0.00000 -0.04012 0.00000 - 38 0.00030 -0.00000 -0.10592 -0.00000 -0.05472 0.00000 - 39 0.00000 -0.14968 0.00000 -0.08848 0.00000 -0.00102 - 40 -0.02191 -0.00000 -0.07556 -0.00000 0.04012 0.00000 - 41 -0.00030 -0.00000 -0.10592 0.00000 0.05472 0.00000 - 42 0.00000 -0.14968 0.00000 0.08848 0.00000 0.00102 - 43 0.01521 0.00000 0.00669 -0.00000 0.00136 -0.00000 - 44 -0.00833 -0.00000 -0.05019 -0.00000 -0.03528 0.00000 - 45 0.00000 -0.01414 0.00000 -0.00631 0.00000 0.00157 - 46 -0.01521 0.00000 0.00669 -0.00000 -0.00136 -0.00000 - 47 0.00833 -0.00000 -0.05019 0.00000 0.03528 0.00000 - 48 0.00000 -0.01414 0.00000 0.00631 0.00000 -0.00157 - 49 0.02124 -0.00000 -0.02470 -0.00000 -0.02022 -0.00000 - 50 -0.04491 0.00000 0.14774 0.00000 0.09895 0.00000 - 51 -0.00000 0.20970 -0.00000 0.11595 -0.00000 0.01084 - 52 -0.02124 -0.00000 -0.02470 -0.00000 0.02022 0.00000 - 53 0.04491 0.00000 0.14774 0.00000 -0.09895 -0.00000 - 54 -0.00000 0.20970 -0.00000 -0.11595 -0.00000 -0.01084 - 55 -0.01402 0.00000 0.20682 0.00000 0.15091 0.00000 - 56 0.00015 -0.00000 -0.11207 -0.00000 -0.08152 0.00000 - 57 -0.00000 -0.35820 0.00000 -0.22516 -0.00000 -0.01649 - 58 0.01402 0.00000 0.20682 0.00000 -0.15091 -0.00000 - 59 -0.00015 -0.00000 -0.11207 0.00000 0.08152 0.00000 - 60 -0.00000 -0.35820 0.00000 0.22516 -0.00000 0.01649 + Frequency 673.47 707.33 735.12 810.69 862.51 893.98 + + 1 -0.04040 -0.00000 0.00161 -0.00000 -0.00735 0.00000 + 2 -0.00027 -0.00000 0.01015 -0.00000 -0.03625 -0.00000 + 3 0.00000 -0.06850 0.00000 -0.14256 0.00000 -0.00213 + 4 0.04040 0.00000 0.00161 0.00000 0.00735 0.00000 + 5 0.00027 0.00000 0.01015 -0.00000 0.03625 0.00000 + 6 0.00000 -0.06850 0.00000 0.14256 0.00000 0.00213 + 7 -0.08893 0.00000 -0.03821 0.00000 0.11601 0.00000 + 8 -0.09855 -0.00000 -0.07523 -0.00000 0.00186 0.00000 + 9 0.00000 -0.01327 0.00000 0.05829 -0.00000 -0.06359 + 10 0.08893 -0.00000 -0.03821 0.00000 -0.11601 -0.00000 + 11 0.09855 -0.00000 -0.07523 -0.00000 -0.00186 0.00000 + 12 -0.00000 -0.01327 -0.00000 -0.05829 -0.00000 0.06359 + 13 0.06162 0.00000 -0.01410 0.00000 0.11777 0.00000 + 14 -0.12263 -0.00000 -0.07363 -0.00000 -0.03435 -0.00000 + 15 0.00000 -0.01708 -0.00000 -0.05684 0.00000 -0.07062 + 16 -0.06162 -0.00000 -0.01410 -0.00000 -0.11777 -0.00000 + 17 0.12263 -0.00000 -0.07363 0.00000 0.03435 0.00000 + 18 0.00000 -0.01708 -0.00000 0.05684 -0.00000 0.07062 + 19 -0.10491 0.00000 -0.01933 -0.00000 0.08785 0.00000 + 20 -0.05681 -0.00000 -0.12589 -0.00000 0.09835 0.00000 + 21 -0.00000 0.25586 -0.00000 0.15511 -0.00000 0.43162 + 22 0.10491 -0.00000 -0.01933 0.00000 -0.08785 0.00000 + 23 0.05681 -0.00000 -0.12589 -0.00000 -0.09835 -0.00000 + 24 -0.00000 0.25586 0.00000 -0.15511 0.00000 -0.43162 + 25 0.08399 -0.00000 -0.04801 0.00000 0.07287 -0.00000 + 26 -0.09557 -0.00000 -0.11191 -0.00000 -0.10063 -0.00000 + 27 0.00000 0.25282 -0.00000 -0.15507 -0.00000 0.44923 + 28 -0.08399 -0.00000 -0.04801 0.00000 -0.07287 -0.00000 + 29 0.09557 0.00000 -0.11191 0.00000 0.10063 -0.00000 + 30 0.00000 0.25282 -0.00000 0.15507 0.00000 -0.44923 + 31 0.02095 0.00000 0.07198 0.00000 -0.03707 -0.00000 + 32 0.00441 0.00000 0.10255 0.00000 -0.05193 -0.00000 + 33 0.00000 0.09532 -0.00000 -0.06774 -0.00000 -0.00046 + 34 -0.02095 -0.00000 0.07198 0.00000 0.03707 0.00000 + 35 -0.00441 0.00000 0.10255 0.00000 0.05193 0.00000 + 36 -0.00000 0.09532 -0.00000 0.06774 -0.00000 0.00046 + 37 0.02192 0.00000 0.07556 0.00000 -0.04011 -0.00000 + 38 0.00030 0.00000 0.10592 0.00000 -0.05473 -0.00000 + 39 -0.00000 -0.14974 0.00000 0.08855 0.00000 -0.00102 + 40 -0.02192 -0.00000 0.07556 0.00000 0.04011 0.00000 + 41 -0.00030 0.00000 0.10592 0.00000 0.05473 0.00000 + 42 0.00000 -0.14974 0.00000 -0.08855 0.00000 0.00102 + 43 0.01521 -0.00000 -0.00669 -0.00000 0.00136 -0.00000 + 44 -0.00833 -0.00000 0.05019 0.00000 -0.03528 -0.00000 + 45 0.00000 -0.01415 -0.00000 0.00631 0.00000 0.00157 + 46 -0.01521 -0.00000 -0.00669 -0.00000 -0.00136 -0.00000 + 47 0.00833 0.00000 0.05019 0.00000 0.03528 0.00000 + 48 0.00000 -0.01415 -0.00000 -0.00631 0.00000 -0.00157 + 49 0.02124 0.00000 0.02469 0.00000 -0.02022 -0.00000 + 50 -0.04491 -0.00000 -0.14774 -0.00000 0.09895 0.00000 + 51 0.00000 0.20973 0.00000 -0.11597 -0.00000 0.01085 + 52 -0.02124 -0.00000 0.02469 -0.00000 0.02022 0.00000 + 53 0.04491 0.00000 -0.14774 -0.00000 -0.09895 -0.00000 + 54 -0.00000 0.20973 -0.00000 0.11597 -0.00000 -0.01085 + 55 -0.01403 -0.00000 -0.20682 -0.00000 0.15090 0.00000 + 56 0.00015 0.00000 0.11207 0.00000 -0.08152 -0.00000 + 57 -0.00000 -0.35822 0.00000 0.22519 -0.00000 -0.01649 + 58 0.01403 -0.00000 -0.20682 -0.00000 -0.15090 -0.00000 + 59 -0.00015 0.00000 0.11207 0.00000 0.08152 0.00000 + 60 0.00000 -0.35822 0.00000 -0.22519 -0.00000 0.01649 25 26 27 28 29 30 - Frequency 896.45 980.81 980.90 1017.88 1036.48 1073.56 - - 1 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00790 - 2 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.02569 - 3 0.09619 0.00352 -0.00464 0.01793 -0.00053 0.00000 - 4 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00790 - 5 0.00000 0.00000 -0.00000 0.00000 0.00000 0.02569 - 6 0.09619 -0.00352 -0.00464 -0.01793 -0.00053 -0.00000 - 7 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.12357 - 8 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00035 - 9 -0.05631 0.00008 -0.00040 -0.06703 0.07538 -0.00000 - 10 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.12357 - 11 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00035 - 12 -0.05631 -0.00008 -0.00040 0.06703 0.07538 0.00000 - 13 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.11040 - 14 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.03539 - 15 -0.06224 -0.00085 0.00351 0.06477 -0.07372 -0.00000 - 16 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.11040 - 17 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.03539 - 18 -0.06224 0.00085 0.00351 -0.06477 -0.07372 -0.00000 - 19 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.18868 - 20 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.15968 - 21 0.34853 -0.00208 0.00597 0.45182 -0.43580 0.00000 - 22 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.18868 - 23 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.15968 - 24 0.34853 0.00208 0.00597 -0.45182 -0.43580 -0.00000 - 25 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.23832 - 26 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.11368 - 27 0.35800 0.01053 -0.01853 -0.42621 0.41633 -0.00000 - 28 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.23832 - 29 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.11368 - 30 0.35800 -0.01053 -0.01853 0.42621 0.41633 0.00000 - 31 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00306 - 32 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00131 - 33 -0.04810 0.03548 0.03601 0.00984 0.00065 -0.00000 - 34 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00306 - 35 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00131 - 36 -0.04810 -0.03548 0.03601 -0.00984 0.00065 -0.00000 - 37 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00224 - 38 -0.00000 0.00000 0.00000 0.00000 0.00000 0.02107 - 39 0.02850 -0.01369 -0.01388 0.02070 0.00304 0.00000 - 40 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00224 - 41 -0.00000 0.00000 0.00000 0.00000 0.00000 0.02107 - 42 0.02850 0.01369 -0.01387 -0.02070 0.00304 0.00000 - 43 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00627 - 44 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.01722 - 45 0.00156 -0.10289 -0.10289 -0.00158 -0.00247 0.00000 - 46 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00627 - 47 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.01722 - 48 0.00156 0.10289 -0.10289 0.00158 -0.00247 -0.00000 - 49 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.01792 - 50 0.00000 -0.00000 0.00000 0.00000 0.00000 0.05607 - 51 -0.05827 0.42438 0.42435 0.02600 0.01921 0.00000 - 52 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.01792 - 53 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.05607 - 54 -0.05827 -0.42439 0.42434 -0.02600 0.01921 0.00000 - 55 0.00000 0.00000 0.00000 0.00000 0.00000 0.07142 - 56 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.04149 - 57 0.14369 0.41774 0.41664 -0.02738 0.00556 -0.00000 - 58 -0.00000 0.00000 0.00000 0.00000 0.00000 0.07142 - 59 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.04149 - 60 0.14369 -0.41775 0.41663 0.02738 0.00556 -0.00000 + Frequency 896.43 980.87 980.98 1017.89 1036.48 1073.56 + + 1 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00790 + 2 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.02569 + 3 -0.09617 -0.00352 -0.00464 0.01792 0.00053 -0.00000 + 4 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00790 + 5 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.02569 + 6 -0.09617 0.00352 -0.00464 -0.01792 0.00053 -0.00000 + 7 0.00000 0.00000 0.00000 0.00000 -0.00000 0.12357 + 8 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00034 + 9 0.05631 -0.00011 -0.00041 -0.06703 -0.07538 -0.00000 + 10 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.12357 + 11 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00034 + 12 0.05631 0.00011 -0.00041 0.06703 -0.07538 -0.00000 + 13 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.11040 + 14 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.03538 + 15 0.06224 0.00087 0.00351 0.06477 0.07373 0.00000 + 16 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.11040 + 17 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.03538 + 18 0.06224 -0.00087 0.00351 -0.06477 0.07373 0.00000 + 19 0.00000 0.00000 0.00000 0.00000 -0.00000 0.18868 + 20 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.15968 + 21 -0.34857 0.00224 0.00597 0.45182 0.43580 -0.00000 + 22 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.18868 + 23 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.15968 + 24 -0.34857 -0.00224 0.00597 -0.45182 0.43580 0.00000 + 25 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.23832 + 26 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.11368 + 27 -0.35803 -0.01067 -0.01853 -0.42623 -0.41633 -0.00000 + 28 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.23832 + 29 0.00000 0.00000 0.00000 0.00000 0.00000 -0.11368 + 30 -0.35803 0.01067 -0.01853 0.42623 -0.41633 -0.00000 + 31 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00306 + 32 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00131 + 33 0.04810 -0.03547 0.03601 0.00985 -0.00064 -0.00000 + 34 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00306 + 35 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00131 + 36 0.04810 0.03547 0.03601 -0.00985 -0.00064 0.00000 + 37 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00224 + 38 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.02106 + 39 -0.02853 0.01368 -0.01384 0.02069 -0.00305 0.00000 + 40 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00224 + 41 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.02106 + 42 -0.02853 -0.01368 -0.01384 -0.02069 -0.00305 -0.00000 + 43 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00627 + 44 -0.00000 0.00000 0.00000 0.00000 0.00000 0.01722 + 45 -0.00157 0.10289 -0.10289 -0.00161 0.00247 0.00000 + 46 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00627 + 47 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.01722 + 48 -0.00157 -0.10289 -0.10289 0.00161 0.00247 0.00000 + 49 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.01791 + 50 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.05605 + 51 0.05827 -0.42437 0.42436 0.02614 -0.01922 0.00000 + 52 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.01791 + 53 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.05605 + 54 0.05827 0.42439 0.42434 -0.02614 -0.01922 -0.00000 + 55 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.07140 + 56 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.04148 + 57 -0.14367 -0.41774 0.41664 -0.02724 -0.00556 -0.00000 + 58 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.07140 + 59 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.04148 + 60 -0.14367 0.41776 0.41662 0.02724 -0.00556 0.00000 31 32 33 34 35 36 - Frequency 1102.04 1107.69 1107.85 1110.64 1203.74 1260.98 - - 1 -0.04694 -0.00000 -0.00000 0.01907 0.02864 -0.00344 - 2 -0.02536 0.00000 0.00000 0.05340 -0.04211 -0.06549 - 3 -0.00000 0.00087 -0.00189 0.00000 0.00000 0.00000 - 4 -0.04694 -0.00000 -0.00000 -0.01907 0.02864 0.00344 - 5 -0.02536 -0.00000 -0.00000 -0.05340 -0.04211 0.06549 - 6 -0.00000 0.00087 0.00189 -0.00000 -0.00000 0.00000 - 7 0.02101 0.00000 0.00000 0.01975 -0.02730 -0.03670 - 8 0.01933 0.00000 0.00000 0.02742 -0.04693 0.02375 - 9 0.00000 0.00297 -0.00255 -0.00000 -0.00000 -0.00000 - 10 0.02101 -0.00000 0.00000 -0.01975 -0.02730 0.03670 - 11 0.01933 -0.00000 -0.00000 -0.02742 -0.04693 -0.02375 - 12 0.00000 0.00297 0.00255 -0.00000 0.00000 -0.00000 - 13 0.04802 0.00000 0.00000 0.03976 -0.01628 -0.03140 - 14 -0.00570 -0.00000 -0.00000 -0.01821 0.07108 -0.00830 - 15 -0.00000 -0.00308 -0.00218 0.00000 0.00000 0.00000 - 16 0.04802 0.00000 0.00000 -0.03976 -0.01628 0.03140 - 17 -0.00570 0.00000 0.00000 0.01821 0.07108 0.00830 - 18 -0.00000 -0.00308 0.00218 0.00000 -0.00000 0.00000 - 19 -0.03413 -0.00000 -0.00000 0.01344 0.06977 -0.18952 - 20 0.17693 0.00000 0.00000 0.05642 -0.33449 0.42650 - 21 -0.00000 -0.00462 0.02531 0.00000 0.00000 0.00000 - 22 -0.03413 -0.00000 -0.00000 -0.01344 0.06977 0.18952 - 23 0.17693 0.00000 0.00000 -0.05642 -0.33449 -0.42650 - 24 -0.00000 -0.00462 -0.02531 0.00000 -0.00000 0.00000 - 25 0.05563 0.00000 0.00000 0.08425 0.24896 -0.27167 - 26 -0.00501 0.00000 0.00000 0.02707 0.40591 -0.29755 - 27 0.00000 -0.00365 -0.01728 -0.00000 -0.00000 -0.00000 - 28 0.05563 -0.00000 -0.00000 -0.08425 0.24896 0.27167 - 29 -0.00501 -0.00000 -0.00000 -0.02707 0.40591 0.29755 - 30 0.00000 -0.00365 0.01728 -0.00000 0.00000 -0.00000 - 31 -0.04504 -0.00000 -0.00000 -0.04318 -0.00748 -0.02481 - 32 -0.02723 -0.00000 -0.00000 -0.02354 -0.00840 -0.02169 - 33 -0.00000 0.05839 0.05888 -0.00000 -0.00000 0.00000 - 34 -0.04504 0.00000 -0.00000 0.04318 -0.00748 0.02481 - 35 -0.02723 0.00000 -0.00000 0.02354 -0.00840 0.02169 - 36 0.00000 0.05839 -0.05889 -0.00000 -0.00000 0.00000 - 37 0.01470 0.00000 0.00000 0.01435 -0.00167 -0.00836 - 38 -0.29024 -0.00000 -0.00000 -0.27121 -0.02885 -0.11096 - 39 0.00000 -0.55238 -0.55188 0.00000 -0.00000 -0.00000 - 40 0.01470 -0.00000 -0.00000 -0.01435 -0.00167 0.00836 - 41 -0.29024 0.00000 -0.00000 0.27121 -0.02885 0.11096 - 42 -0.00000 -0.55235 0.55192 0.00000 0.00000 -0.00000 - 43 0.03775 0.00000 0.00000 0.03461 0.00346 0.00810 - 44 0.05944 0.00000 0.00000 0.07151 0.02144 -0.00126 - 45 -0.00000 -0.00480 -0.00489 0.00000 0.00000 -0.00000 - 46 0.03775 -0.00000 0.00000 -0.03461 0.00346 -0.00810 - 47 0.05944 -0.00000 -0.00000 -0.07151 0.02144 0.00126 - 48 -0.00000 -0.00480 0.00489 -0.00000 0.00000 -0.00000 - 49 0.09351 0.00000 0.00000 0.09074 0.01214 0.01809 - 50 -0.28921 -0.00000 -0.00000 -0.28512 -0.03879 -0.05437 - 51 0.00000 -0.31355 -0.31251 0.00000 0.00000 -0.00000 - 52 0.09351 -0.00000 0.00000 -0.09074 0.01214 -0.01809 - 53 -0.28921 0.00000 -0.00000 0.28512 -0.03879 0.05437 - 54 -0.00000 -0.31353 0.31253 0.00000 0.00000 -0.00000 - 55 -0.30577 -0.00000 -0.00000 -0.33075 -0.10345 0.00611 - 56 0.16347 0.00000 0.00000 0.18341 0.05499 -0.00223 - 57 -0.00000 0.22711 0.22620 -0.00000 -0.00000 0.00000 - 58 -0.30577 0.00000 -0.00000 0.33075 -0.10345 -0.00611 - 59 0.16347 -0.00000 0.00000 -0.18341 0.05499 0.00223 - 60 0.00000 0.22710 -0.22622 0.00000 -0.00000 0.00000 + Frequency 1102.05 1107.69 1107.84 1110.64 1203.74 1260.98 + + 1 0.04695 0.00000 0.00000 0.01907 -0.02863 -0.00344 + 2 0.02536 0.00000 0.00000 0.05340 0.04211 -0.06549 + 3 -0.00000 0.00087 0.00189 -0.00000 -0.00000 -0.00000 + 4 0.04695 -0.00000 0.00000 -0.01907 -0.02863 0.00344 + 5 0.02536 -0.00000 0.00000 -0.05340 0.04211 0.06549 + 6 0.00000 0.00087 -0.00189 -0.00000 -0.00000 -0.00000 + 7 -0.02101 0.00000 -0.00000 0.01975 0.02729 -0.03669 + 8 -0.01933 0.00000 -0.00000 0.02742 0.04694 0.02375 + 9 0.00000 0.00297 0.00254 -0.00000 0.00000 0.00000 + 10 -0.02101 -0.00000 -0.00000 -0.01975 0.02729 0.03669 + 11 -0.01933 -0.00000 -0.00000 -0.02742 0.04694 -0.02375 + 12 0.00000 0.00297 -0.00254 -0.00000 -0.00000 -0.00000 + 13 -0.04801 0.00000 -0.00000 0.03976 0.01627 -0.03140 + 14 0.00569 -0.00000 0.00000 -0.01821 -0.07108 -0.00831 + 15 -0.00000 -0.00308 0.00218 0.00000 0.00000 -0.00000 + 16 -0.04801 -0.00000 -0.00000 -0.03976 0.01627 0.03140 + 17 0.00569 0.00000 0.00000 0.01821 -0.07108 0.00831 + 18 -0.00000 -0.00308 -0.00218 0.00000 -0.00000 0.00000 + 19 0.03412 0.00000 0.00000 0.01344 -0.06977 -0.18951 + 20 -0.17692 0.00000 -0.00000 0.05642 0.33449 0.42650 + 21 -0.00000 -0.00462 -0.02532 -0.00000 -0.00000 -0.00000 + 22 0.03412 -0.00000 0.00000 -0.01344 -0.06977 0.18951 + 23 -0.17692 -0.00000 -0.00000 -0.05642 0.33449 -0.42650 + 24 -0.00000 -0.00462 0.02532 -0.00000 -0.00000 -0.00000 + 25 -0.05561 0.00000 -0.00000 0.08425 -0.24895 -0.27168 + 26 0.00502 0.00000 0.00000 0.02707 -0.40591 -0.29756 + 27 -0.00000 -0.00364 0.01729 0.00000 -0.00000 0.00000 + 28 -0.05561 -0.00000 -0.00000 -0.08425 -0.24895 0.27168 + 29 0.00502 -0.00000 0.00000 -0.02707 -0.40591 0.29756 + 30 0.00000 -0.00364 -0.01729 0.00000 0.00000 0.00000 + 31 0.04504 -0.00000 0.00000 -0.04318 0.00748 -0.02481 + 32 0.02723 -0.00000 0.00000 -0.02354 0.00840 -0.02169 + 33 0.00000 0.05838 -0.05888 -0.00000 -0.00000 0.00000 + 34 0.04504 0.00000 0.00000 0.04318 0.00748 0.02481 + 35 0.02723 0.00000 0.00000 0.02354 0.00840 0.02169 + 36 -0.00000 0.05838 0.05888 -0.00000 0.00000 0.00000 + 37 -0.01470 0.00000 -0.00000 0.01435 0.00167 -0.00836 + 38 0.29024 -0.00000 0.00000 -0.27122 0.02886 -0.11095 + 39 -0.00000 -0.55235 0.55189 0.00000 0.00000 0.00000 + 40 -0.01470 -0.00000 -0.00000 -0.01435 0.00167 0.00836 + 41 0.29024 0.00000 0.00000 0.27122 0.02886 0.11095 + 42 0.00000 -0.55235 -0.55189 0.00000 0.00000 -0.00000 + 43 -0.03775 0.00000 -0.00000 0.03461 -0.00346 0.00810 + 44 -0.05944 0.00000 -0.00000 0.07151 -0.02144 -0.00126 + 45 -0.00000 -0.00480 0.00489 0.00000 -0.00000 -0.00000 + 46 -0.03775 -0.00000 -0.00000 -0.03461 -0.00346 -0.00810 + 47 -0.05944 -0.00000 -0.00000 -0.07151 -0.02144 0.00126 + 48 0.00000 -0.00480 -0.00489 0.00000 -0.00000 -0.00000 + 49 -0.09351 0.00000 -0.00000 0.09074 -0.01214 0.01809 + 50 0.28921 -0.00000 0.00000 -0.28513 0.03879 -0.05437 + 51 -0.00000 -0.31353 0.31252 0.00000 0.00000 0.00000 + 52 -0.09351 -0.00000 -0.00000 -0.09074 -0.01214 -0.01809 + 53 0.28921 0.00000 0.00000 0.28513 0.03879 0.05437 + 54 0.00000 -0.31353 -0.31252 0.00000 0.00000 0.00000 + 55 0.30578 -0.00000 0.00000 -0.33075 0.10345 0.00611 + 56 -0.16347 0.00000 -0.00000 0.18341 -0.05499 -0.00223 + 57 0.00000 0.22715 -0.22625 -0.00000 0.00000 0.00000 + 58 0.30578 0.00000 0.00000 0.33075 0.10345 -0.00611 + 59 -0.16347 -0.00000 -0.00000 -0.18341 -0.05499 0.00223 + 60 -0.00000 0.22715 0.22625 -0.00000 0.00000 0.00000 37 38 39 40 41 42 - Frequency 1284.28 1296.19 1350.03 1398.58 1422.11 1427.48 + Frequency 1284.28 1296.19 1350.01 1398.58 1422.11 1427.47 - 1 0.04121 0.00126 -0.12417 -0.07796 0.01964 0.04504 - 2 -0.12978 -0.12803 -0.03521 -0.01087 -0.01047 -0.00154 - 3 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 4 0.04121 -0.00126 -0.12417 0.07796 0.01964 -0.04504 - 5 -0.12978 0.12803 -0.03521 0.01087 -0.01047 0.00154 - 6 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 7 -0.00047 -0.03752 0.05352 -0.00610 0.00048 0.01030 - 8 0.04828 -0.05690 -0.08213 0.01245 0.02855 -0.01862 - 9 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 10 -0.00047 0.03752 0.05352 0.00610 0.00048 -0.01030 - 11 0.04828 0.05690 -0.08213 -0.01245 0.02855 0.01862 - 12 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 13 -0.05548 0.00312 0.04647 0.01128 -0.01627 -0.01265 - 14 -0.01802 0.07015 0.06652 0.03350 -0.02300 -0.01380 - 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 16 -0.05548 -0.00312 0.04647 -0.01128 -0.01627 0.01265 - 17 -0.01802 -0.07015 0.06652 -0.03350 -0.02300 0.01380 - 18 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 19 -0.10586 -0.03060 -0.03564 0.12124 0.01548 -0.07875 - 20 0.32493 -0.11289 0.16307 -0.33260 -0.00675 0.22426 - 21 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 22 -0.10586 0.03060 -0.03564 -0.12124 0.01548 0.07875 - 23 0.32493 0.11288 0.16307 0.33260 -0.00675 -0.22426 - 24 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 25 0.06397 0.12499 0.03795 -0.23106 0.02576 0.14481 - 26 0.12727 0.23416 0.05328 -0.25731 0.02695 0.17713 - 27 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 28 0.06397 -0.12499 0.03795 0.23106 0.02576 -0.14481 - 29 0.12727 -0.23417 0.05328 0.25731 0.02695 -0.17713 - 30 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 31 0.02903 -0.04530 0.04595 -0.05229 0.06164 -0.04614 - 32 0.01723 -0.03078 0.03338 -0.02815 0.01096 -0.00036 - 33 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 34 0.02903 0.04530 0.04595 0.05229 0.06164 0.04614 - 35 0.01723 0.03078 0.03338 0.02815 0.01096 0.00036 - 36 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 37 -0.00841 -0.00843 0.04728 -0.11330 0.18734 -0.15748 - 38 0.21091 -0.22645 0.04889 0.21077 -0.48958 0.44375 - 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 40 -0.00841 0.00843 0.04728 0.11330 0.18734 0.15748 - 41 0.21091 0.22644 0.04889 -0.21077 -0.48958 -0.44375 - 42 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 43 -0.00426 0.01683 -0.02584 0.04321 -0.07098 0.06153 - 44 0.01942 -0.01485 -0.01209 0.00816 0.01040 -0.01490 - 45 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 46 -0.00426 -0.01683 -0.02584 -0.04321 -0.07098 -0.06153 - 47 0.01942 0.01485 -0.01209 -0.00816 0.01040 0.01490 - 48 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 49 -0.01091 0.03264 -0.04981 0.07900 -0.12421 0.10457 - 50 0.04585 -0.09141 0.11905 -0.17606 0.26384 -0.21461 - 51 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 52 -0.01091 -0.03264 -0.04981 -0.07900 -0.12421 -0.10457 - 53 0.04585 0.09141 0.11905 0.17605 0.26384 0.21460 - 54 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 55 -0.05817 0.00433 0.04881 -0.01595 -0.03897 0.03857 - 56 0.03965 -0.01588 -0.03265 0.02235 0.00981 -0.01628 - 57 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 58 -0.05817 -0.00433 0.04881 0.01595 -0.03896 -0.03857 - 59 0.03965 0.01588 -0.03265 -0.02235 0.00981 0.01628 - 60 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 1 -0.04121 0.00126 0.12417 -0.07796 0.01964 0.04504 + 2 0.12978 -0.12804 0.03521 -0.01087 -0.01047 -0.00154 + 3 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 4 -0.04121 -0.00126 0.12417 0.07796 0.01964 -0.04504 + 5 0.12978 0.12804 0.03521 0.01087 -0.01047 0.00154 + 6 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 7 0.00047 -0.03753 -0.05352 -0.00610 0.00048 0.01030 + 8 -0.04829 -0.05690 0.08213 0.01245 0.02855 -0.01862 + 9 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 10 0.00047 0.03753 -0.05352 0.00610 0.00048 -0.01030 + 11 -0.04829 0.05690 0.08213 -0.01245 0.02855 0.01862 + 12 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 13 0.05548 0.00312 -0.04646 0.01128 -0.01627 -0.01265 + 14 0.01802 0.07015 -0.06652 0.03349 -0.02299 -0.01380 + 15 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 16 0.05548 -0.00312 -0.04646 -0.01128 -0.01627 0.01265 + 17 0.01802 -0.07015 -0.06652 -0.03349 -0.02299 0.01380 + 18 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 19 0.10585 -0.03061 0.03565 0.12124 0.01548 -0.07875 + 20 -0.32492 -0.11288 -0.16310 -0.33260 -0.00676 0.22426 + 21 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 22 0.10585 0.03061 0.03565 -0.12124 0.01548 0.07875 + 23 -0.32492 0.11288 -0.16310 0.33260 -0.00676 -0.22426 + 24 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 25 -0.06399 0.12498 -0.03794 -0.23106 0.02576 0.14481 + 26 -0.12729 0.23416 -0.05327 -0.25731 0.02695 0.17713 + 27 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 28 -0.06399 -0.12498 -0.03794 0.23106 0.02576 -0.14481 + 29 -0.12729 -0.23416 -0.05327 0.25731 0.02695 -0.17713 + 30 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 31 -0.02903 -0.04530 -0.04595 -0.05229 0.06164 -0.04614 + 32 -0.01723 -0.03078 -0.03339 -0.02815 0.01096 -0.00036 + 33 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 34 -0.02903 0.04530 -0.04595 0.05229 0.06164 0.04614 + 35 -0.01723 0.03078 -0.03339 0.02815 0.01096 0.00036 + 36 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 37 0.00841 -0.00843 -0.04728 -0.11330 0.18734 -0.15748 + 38 -0.21089 -0.22644 -0.04891 0.21076 -0.48958 0.44375 + 39 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 40 0.00841 0.00843 -0.04728 0.11330 0.18734 0.15748 + 41 -0.21089 0.22644 -0.04891 -0.21076 -0.48958 -0.44375 + 42 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 43 0.00426 0.01683 0.02584 0.04321 -0.07098 0.06153 + 44 -0.01942 -0.01485 0.01209 0.00816 0.01040 -0.01490 + 45 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 46 0.00426 -0.01683 0.02584 -0.04321 -0.07098 -0.06153 + 47 -0.01942 0.01485 0.01209 -0.00816 0.01040 0.01490 + 48 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 49 0.01091 0.03264 0.04981 0.07900 -0.12421 0.10457 + 50 -0.04585 -0.09142 -0.11905 -0.17606 0.26384 -0.21461 + 51 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 52 0.01091 -0.03264 0.04981 -0.07900 -0.12421 -0.10457 + 53 -0.04585 0.09142 -0.11905 0.17606 0.26384 0.21461 + 54 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 55 0.05818 0.00433 -0.04882 -0.01595 -0.03896 0.03857 + 56 -0.03966 -0.01588 0.03266 0.02235 0.00981 -0.01628 + 57 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 58 0.05818 -0.00433 -0.04882 0.01595 -0.03896 -0.03857 + 59 -0.03966 0.01588 0.03266 -0.02235 0.00981 0.01628 + 60 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 43 44 45 46 47 48 - Frequency 1514.55 1565.51 1575.25 1639.67 1690.89 1738.52 - - 1 0.08527 0.01922 0.03916 -0.02450 -0.13387 -0.00455 - 2 -0.00349 0.02693 -0.01785 -0.10213 0.01394 -0.08069 - 3 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 4 0.08527 -0.01922 0.03916 -0.02450 0.13387 0.00455 - 5 -0.00349 -0.02693 -0.01785 -0.10213 -0.01394 0.08069 - 6 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 7 -0.04360 -0.01123 -0.00023 -0.05014 0.07415 -0.01531 - 8 -0.07879 0.02451 -0.03521 0.07383 -0.05240 0.12506 - 9 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 10 -0.04360 0.01123 -0.00023 -0.05014 -0.07415 0.01531 - 11 -0.07879 -0.02451 -0.03521 0.07383 0.05240 -0.12506 - 12 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 13 0.00985 0.01485 -0.02100 0.07262 -0.09009 -0.04485 - 14 0.09862 -0.00336 0.02236 0.04321 -0.02880 -0.11056 - 15 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 16 0.00985 -0.01485 -0.02100 0.07262 0.09009 0.04485 - 17 0.09862 0.00336 0.02236 0.04321 0.02880 0.11056 - 18 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 19 -0.14081 0.01369 -0.06085 0.07316 0.01804 0.08717 - 20 0.14094 -0.04284 0.11832 -0.28373 0.12912 -0.13563 - 21 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 22 -0.14081 -0.01369 -0.06085 0.07316 -0.01804 -0.08717 - 23 0.14094 0.04284 0.11832 -0.28373 -0.12912 0.13563 - 24 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 25 -0.24353 -0.00265 -0.01876 -0.14395 0.03693 0.12753 - 26 -0.19038 -0.02953 0.03544 -0.23627 0.14245 0.08863 - 27 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 28 -0.24353 0.00265 -0.01876 -0.14395 -0.03693 -0.12753 - 29 -0.19038 0.02953 0.03544 -0.23627 -0.14245 -0.08863 - 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 31 0.00043 -0.02437 -0.02828 0.01304 -0.00315 0.00495 - 32 -0.04378 0.08495 0.06810 0.02166 -0.01482 -0.02291 - 33 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 34 0.00043 0.02437 -0.02828 0.01304 0.00315 -0.00495 - 35 -0.04378 -0.08495 0.06810 0.02166 0.01482 0.02291 - 36 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 37 0.00014 0.03404 0.03511 0.01750 0.01293 -0.00562 - 38 -0.03125 -0.17995 -0.21585 0.01811 -0.07350 0.02452 - 39 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 40 0.00014 -0.03404 0.03511 0.01750 -0.01293 0.00562 - 41 -0.03125 0.17995 -0.21585 0.01811 0.07350 -0.02452 - 42 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 43 -0.00641 -0.02001 -0.02357 -0.01332 -0.01813 -0.00650 - 44 0.02123 -0.00060 0.00872 0.01177 0.02548 0.00948 - 45 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 46 -0.00641 0.02001 -0.02357 -0.01332 0.01813 0.00650 - 47 0.02123 0.00060 0.00872 0.01177 -0.02548 -0.00948 - 48 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 49 -0.02288 0.05062 0.04685 -0.00220 0.00195 -0.00215 - 50 0.08858 -0.36142 -0.35913 -0.05800 -0.10371 -0.02689 - 51 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 52 -0.02288 -0.05062 0.04685 -0.00220 -0.00195 0.00215 - 53 0.08858 0.36142 -0.35913 -0.05800 0.10371 0.02689 - 54 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 55 -0.13522 0.42776 0.40140 0.08295 0.07989 0.01532 - 56 0.06598 -0.14594 -0.12813 -0.01581 -0.00175 0.00414 - 57 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 58 -0.13522 -0.42776 0.40140 0.08295 -0.07990 -0.01532 - 59 0.06598 0.14594 -0.12813 -0.01581 0.00175 -0.00414 - 60 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + Frequency 1514.55 1565.51 1575.25 1639.67 1690.89 1738.51 + + 1 -0.08527 0.01922 0.03916 0.02450 -0.13387 -0.00455 + 2 0.00349 0.02693 -0.01785 0.10213 0.01394 -0.08069 + 3 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 4 -0.08527 -0.01922 0.03916 0.02450 0.13387 0.00455 + 5 0.00349 -0.02693 -0.01785 0.10213 -0.01394 0.08069 + 6 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 7 0.04360 -0.01123 -0.00023 0.05014 0.07415 -0.01531 + 8 0.07878 0.02451 -0.03521 -0.07383 -0.05240 0.12506 + 9 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 10 0.04360 0.01123 -0.00023 0.05014 -0.07415 0.01531 + 11 0.07878 -0.02451 -0.03521 -0.07383 0.05240 -0.12506 + 12 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 13 -0.00985 0.01485 -0.02100 -0.07262 -0.09009 -0.04485 + 14 -0.09862 -0.00336 0.02237 -0.04321 -0.02881 -0.11056 + 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 16 -0.00985 -0.01485 -0.02100 -0.07262 0.09009 0.04485 + 17 -0.09862 0.00336 0.02237 -0.04321 0.02881 0.11056 + 18 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 19 0.14080 0.01369 -0.06086 -0.07316 0.01804 0.08717 + 20 -0.14093 -0.04284 0.11833 0.28373 0.12911 -0.13563 + 21 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 22 0.14080 -0.01369 -0.06086 -0.07316 -0.01804 -0.08717 + 23 -0.14094 0.04284 0.11833 0.28373 -0.12911 0.13563 + 24 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 25 0.24353 -0.00265 -0.01876 0.14395 0.03694 0.12753 + 26 0.19038 -0.02953 0.03544 0.23626 0.14245 0.08862 + 27 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 28 0.24353 0.00265 -0.01876 0.14395 -0.03694 -0.12753 + 29 0.19038 0.02953 0.03544 0.23626 -0.14245 -0.08862 + 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 31 -0.00043 -0.02437 -0.02828 -0.01304 -0.00315 0.00495 + 32 0.04378 0.08495 0.06810 -0.02166 -0.01482 -0.02291 + 33 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 34 -0.00043 0.02437 -0.02828 -0.01304 0.00315 -0.00495 + 35 0.04378 -0.08495 0.06810 -0.02166 0.01482 0.02291 + 36 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 37 -0.00013 0.03404 0.03510 -0.01750 0.01293 -0.00562 + 38 0.03124 -0.17996 -0.21585 -0.01811 -0.07351 0.02452 + 39 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 40 -0.00013 -0.03404 0.03510 -0.01750 -0.01293 0.00562 + 41 0.03124 0.17996 -0.21585 -0.01811 0.07351 -0.02452 + 42 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 43 0.00641 -0.02001 -0.02356 0.01332 -0.01812 -0.00650 + 44 -0.02123 -0.00061 0.00872 -0.01177 0.02548 0.00948 + 45 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 46 0.00641 0.02001 -0.02356 0.01332 0.01812 0.00650 + 47 -0.02123 0.00061 0.00872 -0.01177 -0.02548 -0.00948 + 48 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 49 0.02288 0.05062 0.04685 0.00220 0.00195 -0.00215 + 50 -0.08859 -0.36141 -0.35913 0.05800 -0.10371 -0.02689 + 51 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 52 0.02288 -0.05062 0.04685 0.00220 -0.00195 0.00215 + 53 -0.08859 0.36141 -0.35913 0.05800 0.10371 0.02689 + 54 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 55 0.13523 0.42776 0.40139 -0.08296 0.07989 0.01532 + 56 -0.06599 -0.14594 -0.12812 0.01581 -0.00176 0.00414 + 57 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 58 0.13523 -0.42776 0.40139 -0.08296 -0.07989 -0.01532 + 59 -0.06599 0.14594 -0.12812 0.01581 0.00176 -0.00414 + 60 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 49 50 51 52 53 54 - Frequency 1814.82 1815.79 3394.02 3394.74 3432.81 3432.86 + Frequency 1814.83 1815.80 3394.04 3394.76 3432.83 3432.87 - 1 -0.03130 -0.01449 -0.00016 0.00015 -0.00037 0.00033 - 2 0.00993 0.02488 -0.00002 0.00005 -0.00160 0.00159 - 3 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 4 0.03130 -0.01449 -0.00016 -0.00015 -0.00037 -0.00033 - 5 -0.00993 0.02488 -0.00002 -0.00005 -0.00160 -0.00159 - 6 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 7 0.01075 0.00476 -0.00077 0.00028 0.00151 -0.00201 - 8 0.01758 0.00541 -0.00008 -0.00011 0.00056 -0.00076 - 9 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 10 -0.01075 0.00476 -0.00077 -0.00028 0.00151 0.00201 - 11 -0.01758 0.00541 -0.00008 0.00011 0.00056 0.00076 - 12 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 13 -0.02265 0.00002 0.00110 0.00097 -0.00037 0.00042 - 14 -0.02175 -0.01020 -0.00077 -0.00052 -0.00018 -0.00055 - 15 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 16 0.02265 0.00002 0.00110 -0.00097 -0.00037 -0.00042 - 17 0.02175 -0.01020 -0.00077 0.00052 -0.00018 0.00055 - 18 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 19 0.02205 0.01127 0.00877 -0.00198 -0.01766 0.02381 - 20 -0.00276 -0.00595 0.00287 -0.00056 -0.00537 0.00778 - 21 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 22 -0.02205 0.01127 0.00877 0.00198 -0.01766 -0.02381 - 23 0.00276 -0.00595 0.00287 0.00056 -0.00537 -0.00778 - 24 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 25 0.00665 0.02766 -0.01018 -0.00722 0.00243 -0.00481 - 26 0.01606 0.01927 0.00766 0.00525 -0.00176 0.00360 - 27 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 28 -0.00665 0.02766 -0.01018 0.00722 0.00243 0.00481 - 29 -0.01606 0.01927 0.00766 -0.00525 -0.00176 -0.00360 - 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 31 -0.07194 0.07136 -0.01097 -0.01088 0.05774 0.05776 - 32 0.10892 -0.11364 -0.00791 -0.00786 0.00949 0.00953 - 33 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 34 0.07194 0.07136 -0.01097 0.01088 0.05774 -0.05776 - 35 -0.10892 -0.11364 -0.00791 0.00786 0.00949 -0.00953 + 1 -0.03130 0.01449 0.00016 0.00015 -0.00037 0.00033 + 2 0.00993 -0.02488 0.00002 0.00005 -0.00160 0.00159 + 3 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 4 0.03130 0.01449 0.00016 -0.00015 -0.00037 -0.00033 + 5 -0.00993 -0.02488 0.00002 -0.00005 -0.00160 -0.00159 + 6 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 7 0.01075 -0.00476 0.00077 0.00028 0.00152 -0.00201 + 8 0.01758 -0.00541 0.00008 -0.00011 0.00056 -0.00076 + 9 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 10 -0.01075 -0.00476 0.00077 -0.00028 0.00152 0.00201 + 11 -0.01758 -0.00541 0.00008 0.00011 0.00056 0.00076 + 12 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 13 -0.02265 -0.00002 -0.00110 0.00097 -0.00037 0.00042 + 14 -0.02175 0.01020 0.00077 -0.00052 -0.00018 -0.00055 + 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 16 0.02265 -0.00002 -0.00110 -0.00097 -0.00037 -0.00042 + 17 0.02175 0.01020 0.00077 0.00052 -0.00018 0.00055 + 18 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 19 0.02205 -0.01127 -0.00875 -0.00197 -0.01771 0.02382 + 20 -0.00276 0.00595 -0.00286 -0.00056 -0.00539 0.00779 + 21 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 22 -0.02205 -0.01127 -0.00875 0.00197 -0.01771 -0.02382 + 23 0.00276 0.00595 -0.00286 0.00056 -0.00539 -0.00779 + 24 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 25 0.00665 -0.02765 0.01019 -0.00723 0.00245 -0.00479 + 26 0.01606 -0.01927 -0.00766 0.00526 -0.00178 0.00358 + 27 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 28 -0.00665 -0.02765 0.01019 0.00723 0.00245 0.00479 + 29 -0.01606 -0.01927 -0.00766 -0.00526 -0.00178 -0.00358 + 30 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 31 -0.07194 -0.07136 0.01097 -0.01087 0.05774 0.05776 + 32 0.10892 0.11364 0.00791 -0.00786 0.00949 0.00953 + 33 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 34 0.07194 -0.07136 0.01097 0.01087 0.05774 -0.05777 + 35 -0.10892 0.11364 0.00791 0.00786 0.00949 -0.00953 36 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 37 -0.03015 0.02931 0.17461 0.17269 -0.63086 -0.63121 - 38 -0.14278 0.13894 0.03967 0.03933 -0.14649 -0.14658 - 39 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 40 0.03015 0.02931 0.17461 -0.17269 -0.63086 0.63121 - 41 0.14278 0.13894 0.03967 -0.03933 -0.14649 0.14658 - 42 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 43 0.07693 -0.07771 -0.02954 -0.02952 -0.01393 -0.01385 - 44 -0.09225 0.09392 0.03603 0.03607 0.01031 0.01016 - 45 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 46 -0.07693 -0.07771 -0.02954 0.02952 -0.01393 0.01385 - 47 0.09225 0.09392 0.03603 -0.03607 0.01031 -0.01016 - 48 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 49 0.04826 -0.04843 0.44963 0.45014 0.14519 0.14371 - 50 0.19161 -0.19576 0.08010 0.08017 0.02805 0.02780 - 51 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 52 -0.04826 -0.04843 0.44962 -0.45015 0.14519 -0.14371 - 53 -0.19161 -0.19576 0.08010 -0.08018 0.02805 -0.02780 - 54 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 55 -0.17113 0.17147 -0.14250 -0.14272 -0.02990 -0.02936 - 56 -0.03741 0.03905 -0.45483 -0.45520 -0.09567 -0.09400 - 57 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 58 0.17113 0.17147 -0.14250 0.14273 -0.02990 0.02936 - 59 0.03741 0.03905 -0.45482 0.45520 -0.09567 0.09400 - 60 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 37 -0.03015 -0.02931 -0.17459 0.17265 -0.63089 -0.63120 + 38 -0.14277 -0.13894 -0.03967 0.03932 -0.14649 -0.14657 + 39 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 40 0.03015 -0.02931 -0.17459 -0.17265 -0.63084 0.63125 + 41 0.14277 -0.13894 -0.03967 -0.03932 -0.14648 0.14659 + 42 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 43 0.07693 0.07771 0.02954 -0.02952 -0.01393 -0.01384 + 44 -0.09225 -0.09392 -0.03603 0.03607 0.01031 0.01016 + 45 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 46 -0.07693 0.07771 0.02954 0.02952 -0.01393 0.01384 + 47 0.09225 -0.09392 -0.03603 -0.03607 0.01031 -0.01016 + 48 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 49 0.04826 0.04843 -0.44963 0.45016 0.14518 0.14368 + 50 0.19162 0.19577 -0.08010 0.08018 0.02805 0.02779 + 51 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 52 -0.04826 0.04843 -0.44964 -0.45016 0.14517 -0.14369 + 53 -0.19162 0.19577 -0.08010 -0.08018 0.02804 -0.02780 + 54 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 55 -0.17114 -0.17148 0.14250 -0.14272 -0.02990 -0.02936 + 56 -0.03740 -0.03904 0.45482 -0.45520 -0.09567 -0.09397 + 57 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 58 0.17114 -0.17148 0.14250 0.14272 -0.02990 0.02936 + 59 0.03740 -0.03904 0.45483 0.45520 -0.09566 0.09398 + 60 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 55 56 57 58 59 60 - Frequency 3447.86 3451.33 3471.31 3474.27 3546.60 3546.61 - - 1 0.00118 0.00257 -0.00372 -0.00146 0.00015 -0.00016 - 2 -0.00216 -0.00161 0.00002 -0.00203 -0.00032 0.00032 - 3 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 4 0.00118 -0.00257 -0.00372 0.00146 0.00015 0.00016 - 5 -0.00216 0.00161 0.00002 0.00203 -0.00032 -0.00032 - 6 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 7 -0.05177 -0.05187 0.02225 -0.02231 -0.00003 0.00010 - 8 -0.01792 -0.01831 0.01128 -0.01082 0.00002 0.00008 - 9 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 10 -0.05177 0.05187 0.02225 0.02231 -0.00003 -0.00010 - 11 -0.01792 0.01831 0.01128 0.01082 0.00002 -0.00008 - 12 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 13 0.01905 0.01827 0.04224 -0.04265 0.00032 0.00042 - 14 -0.01193 -0.01193 -0.03625 0.03639 -0.00026 -0.00037 - 15 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 16 0.01905 -0.01827 0.04224 0.04265 0.00032 -0.00042 - 17 -0.01193 0.01193 -0.03625 -0.03639 -0.00026 0.00037 - 18 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 19 0.58125 0.58278 -0.24589 0.24135 -0.00015 -0.00072 - 20 0.21356 0.21455 -0.09207 0.08973 0.00006 -0.00029 - 21 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 22 0.58123 -0.58280 -0.24589 -0.24135 -0.00015 0.00072 - 23 0.21355 -0.21455 -0.09207 -0.08973 0.00006 0.00029 - 24 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 25 -0.20616 -0.20214 -0.47833 0.47989 -0.00498 -0.00614 - 26 0.16670 0.16449 0.39214 -0.39311 0.00363 0.00464 - 27 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 28 -0.20616 0.20214 -0.47833 -0.47988 -0.00498 0.00614 - 29 0.16669 -0.16449 0.39214 0.39311 0.00363 -0.00464 - 30 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 31 0.00192 -0.00209 0.00005 -0.00072 0.00316 0.00317 - 32 0.00028 -0.00041 -0.00015 -0.00004 0.00067 0.00067 - 33 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 34 0.00192 0.00209 0.00005 0.00072 0.00316 -0.00317 - 35 0.00028 0.00041 -0.00015 0.00004 0.00067 -0.00067 - 36 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 37 -0.02040 0.02368 0.00262 0.00565 -0.03652 -0.03662 - 38 -0.00350 0.00486 0.00117 0.00001 -0.00653 -0.00655 - 39 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 40 -0.02040 -0.02368 0.00262 -0.00565 -0.03651 0.03663 - 41 -0.00350 -0.00486 0.00117 -0.00001 -0.00653 0.00656 - 42 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 43 -0.00006 0.00030 -0.00022 0.00043 0.05034 0.05033 - 44 -0.00053 -0.00071 -0.00095 0.00093 0.04415 0.04414 - 45 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 46 -0.00006 -0.00030 -0.00022 -0.00043 0.05033 -0.05034 - 47 -0.00053 0.00071 -0.00095 -0.00093 0.04414 -0.04415 - 48 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 49 -0.00360 -0.00515 -0.00294 0.00049 -0.46707 -0.46697 - 50 -0.00087 -0.00110 -0.00091 0.00049 -0.07799 -0.07797 - 51 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 52 -0.00360 0.00515 -0.00294 -0.00049 -0.46695 0.46708 - 53 -0.00087 0.00110 -0.00091 -0.00049 -0.07797 0.07799 - 54 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 55 0.00231 0.00193 0.00303 -0.00301 -0.13353 -0.13348 - 56 0.00821 0.00590 0.00987 -0.01061 -0.44636 -0.44621 - 57 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 58 0.00231 -0.00193 0.00303 0.00301 -0.13350 0.13351 - 59 0.00821 -0.00590 0.00987 0.01061 -0.44625 0.44632 - 60 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + Frequency 3447.88 3451.35 3471.32 3474.29 3546.60 3546.62 + + 1 0.00118 0.00257 -0.00372 -0.00146 -0.00015 -0.00016 + 2 -0.00216 -0.00161 0.00002 -0.00203 0.00032 0.00032 + 3 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 4 0.00118 -0.00257 -0.00372 0.00146 -0.00015 0.00016 + 5 -0.00216 0.00161 0.00002 0.00203 0.00032 -0.00032 + 6 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 7 -0.05177 -0.05188 0.02224 -0.02230 0.00003 0.00010 + 8 -0.01792 -0.01832 0.01128 -0.01081 -0.00002 0.00008 + 9 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 10 -0.05177 0.05188 0.02224 0.02230 0.00003 -0.00010 + 11 -0.01792 0.01832 0.01128 0.01081 -0.00002 -0.00008 + 12 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 13 0.01904 0.01827 0.04224 -0.04266 -0.00032 0.00042 + 14 -0.01193 -0.01192 -0.03625 0.03639 0.00026 -0.00037 + 15 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 16 0.01904 -0.01827 0.04224 0.04266 -0.00032 -0.00042 + 17 -0.01193 0.01192 -0.03625 -0.03639 0.00026 0.00037 + 18 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 19 0.58124 0.58283 -0.24588 0.24125 0.00015 -0.00072 + 20 0.21356 0.21457 -0.09207 0.08969 -0.00006 -0.00029 + 21 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 22 0.58124 -0.58283 -0.24588 -0.24125 0.00015 0.00072 + 23 0.21356 -0.21457 -0.09207 -0.08969 -0.00006 0.00029 + 24 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 25 -0.20615 -0.20206 -0.47833 0.47992 0.00498 -0.00614 + 26 0.16669 0.16442 0.39214 -0.39313 -0.00363 0.00464 + 27 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 28 -0.20615 0.20206 -0.47833 -0.47992 0.00498 0.00614 + 29 0.16669 -0.16442 0.39214 0.39313 -0.00363 -0.00464 + 30 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 31 0.00193 -0.00209 0.00005 -0.00073 -0.00316 0.00317 + 32 0.00028 -0.00041 -0.00015 -0.00004 -0.00067 0.00067 + 33 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 34 0.00193 0.00209 0.00005 0.00073 -0.00316 -0.00317 + 35 0.00028 0.00041 -0.00015 0.00004 -0.00067 -0.00067 + 36 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 37 -0.02045 0.02369 0.00261 0.00567 0.03650 -0.03663 + 38 -0.00351 0.00486 0.00117 0.00001 0.00653 -0.00655 + 39 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 40 -0.02045 -0.02369 0.00261 -0.00567 0.03652 0.03661 + 41 -0.00351 -0.00486 0.00117 -0.00001 0.00653 0.00655 + 42 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 43 -0.00006 0.00030 -0.00022 0.00043 -0.05033 0.05034 + 44 -0.00053 -0.00071 -0.00095 0.00093 -0.04414 0.04415 + 45 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 46 -0.00006 -0.00030 -0.00022 -0.00043 -0.05035 -0.05033 + 47 -0.00053 0.00071 -0.00095 -0.00093 -0.04416 -0.04414 + 48 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 49 -0.00357 -0.00515 -0.00295 0.00048 0.46692 -0.46711 + 50 -0.00086 -0.00110 -0.00092 0.00049 0.07797 -0.07800 + 51 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 52 -0.00357 0.00515 -0.00295 -0.00048 0.46709 0.46694 + 53 -0.00086 0.00110 -0.00092 -0.00049 0.07800 0.07797 + 54 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 55 0.00231 0.00194 0.00303 -0.00301 0.13349 -0.13352 + 56 0.00819 0.00591 0.00987 -0.01061 0.44623 -0.44635 + 57 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 58 0.00231 -0.00194 0.00303 0.00301 0.13354 0.13347 + 59 0.00819 -0.00590 0.00987 0.01061 0.44639 0.44619 + 60 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 @@ -1591,66 +1588,66 @@ Iterative solution of linear equations Normal Eigenvalue || Derivative Dipole Moments (debye/angs) Mode [cm**-1] || [d/dqX] [d/dqY] [d/dqZ] ------ ---------- || ------------------ ------------------ ----------------- - 1 -10.163 || -0.000 -0.000 -0.000 - 2 -1.457 || 0.000 -0.000 0.000 - 3 3.326 || 0.000 -0.000 -0.000 - 4 6.771 || -0.000 0.000 -0.000 - 5 9.111 || -0.000 0.000 -0.000 - 6 17.920 || -0.000 -0.000 -0.000 - 7 48.949 || 0.000 0.000 0.026 - 8 81.258 || -0.000 -0.000 0.000 - 9 151.679 || -0.000 0.000 -0.091 - 10 181.052 || 0.031 -0.073 -0.000 - 11 265.745 || -0.000 -0.000 -0.000 - 12 301.255 || 0.000 -0.000 -0.000 - 13 407.919 || 0.000 -0.000 -0.000 - 14 424.394 || 0.000 -0.000 0.049 - 15 468.984 || 0.000 -0.000 0.372 - 16 487.920 || 0.018 -0.214 0.000 - 17 578.915 || -0.000 -0.000 -0.000 - 18 657.852 || -0.000 -0.000 -0.000 - 19 673.474 || -0.000 0.000 0.000 - 20 707.323 || -0.000 0.000 -0.105 - 21 735.116 || 0.024 -0.318 0.000 - 22 810.722 || -0.000 0.000 0.000 - 23 862.506 || -0.000 -0.000 -0.000 - 24 893.969 || 0.000 0.000 -0.000 - 25 896.450 || -0.000 -0.000 0.788 - 26 980.811 || 0.000 -0.000 0.000 - 27 980.898 || 0.000 -0.000 0.931 - 28 1017.883 || 0.000 0.000 0.000 - 29 1036.477 || -0.000 0.000 0.013 - 30 1073.561 || -0.014 0.107 -0.000 - 31 1102.044 || -0.034 -0.456 0.000 - 32 1107.690 || 0.000 -0.000 -0.558 - 33 1107.846 || -0.000 -0.000 0.000 - 34 1110.635 || -0.000 0.000 0.000 - 35 1203.741 || 0.090 -0.165 0.000 - 36 1260.981 || -0.000 -0.000 0.000 - 37 1284.285 || -0.024 -0.027 -0.000 - 38 1296.192 || 0.000 0.000 -0.000 - 39 1350.027 || 0.050 0.459 0.000 - 40 1398.580 || -0.000 -0.000 0.000 - 41 1422.114 || -0.086 0.439 -0.000 - 42 1427.476 || 0.000 -0.000 -0.000 - 43 1514.547 || -0.648 -0.166 0.000 - 44 1565.514 || 0.000 0.000 0.000 - 45 1575.249 || 0.081 0.083 -0.000 - 46 1639.671 || 0.039 -0.600 0.000 - 47 1690.894 || -0.000 0.000 0.000 - 48 1738.522 || 0.000 0.000 -0.000 - 49 1814.823 || -0.000 0.000 0.000 - 50 1815.793 || 0.188 0.009 0.000 - 51 3394.021 || -0.361 1.489 0.000 - 52 3394.745 || -0.000 0.000 0.000 - 53 3432.814 || -0.067 0.289 0.000 - 54 3432.859 || 0.000 -0.000 -0.000 - 55 3447.865 || 0.172 0.028 0.000 - 56 3451.333 || -0.000 -0.000 0.000 - 57 3471.308 || -0.346 0.112 0.000 - 58 3474.273 || 0.000 -0.000 -0.000 - 59 3546.598 || 0.012 -0.020 0.000 - 60 3546.610 || 0.000 -0.000 -0.000 + 1 -9.919 || 0.000 -0.000 -0.000 + 2 -1.353 || 0.000 -0.000 0.000 + 3 3.249 || 0.000 -0.000 -0.000 + 4 6.841 || -0.000 0.000 0.000 + 5 9.117 || -0.000 0.000 -0.000 + 6 17.916 || -0.000 0.000 0.000 + 7 49.008 || -0.000 0.000 0.027 + 8 81.293 || -0.000 0.000 -0.000 + 9 151.697 || 0.000 -0.000 -0.091 + 10 181.054 || 0.031 -0.073 0.000 + 11 265.748 || 0.000 -0.000 0.000 + 12 301.268 || 0.000 -0.000 -0.000 + 13 407.922 || 0.000 -0.000 0.000 + 14 424.393 || 0.000 -0.000 -0.049 + 15 468.979 || -0.000 0.000 0.372 + 16 487.926 || -0.018 0.214 0.000 + 17 578.924 || -0.000 0.000 0.000 + 18 657.869 || 0.000 -0.000 -0.000 + 19 673.473 || -0.000 -0.000 -0.000 + 20 707.330 || 0.000 -0.000 -0.105 + 21 735.120 || -0.024 0.319 -0.000 + 22 810.690 || -0.000 0.000 0.000 + 23 862.508 || -0.000 0.000 -0.000 + 24 893.976 || -0.000 0.000 -0.000 + 25 896.431 || 0.000 -0.000 0.788 + 26 980.875 || -0.000 0.000 0.000 + 27 980.976 || -0.000 0.000 0.930 + 28 1017.887 || -0.000 0.000 -0.000 + 29 1036.478 || -0.000 0.000 -0.013 + 30 1073.560 || 0.014 -0.106 -0.000 + 31 1102.049 || 0.034 0.456 0.000 + 32 1107.686 || 0.000 0.000 -0.558 + 33 1107.841 || -0.000 0.000 -0.000 + 34 1110.640 || -0.000 -0.000 0.000 + 35 1203.742 || -0.090 0.165 0.000 + 36 1260.980 || -0.000 0.000 0.000 + 37 1284.279 || 0.024 0.025 -0.000 + 38 1296.192 || 0.000 0.000 0.000 + 39 1350.011 || -0.050 -0.460 -0.000 + 40 1398.579 || 0.000 0.000 -0.000 + 41 1422.110 || -0.086 0.440 -0.000 + 42 1427.475 || -0.000 -0.000 0.000 + 43 1514.547 || 0.648 0.167 -0.000 + 44 1565.513 || -0.000 -0.000 -0.000 + 45 1575.248 || 0.081 0.084 0.000 + 46 1639.667 || -0.039 0.601 -0.000 + 47 1690.893 || -0.000 -0.000 0.000 + 48 1738.514 || -0.000 -0.000 -0.000 + 49 1814.825 || 0.000 -0.000 0.000 + 50 1815.798 || -0.188 -0.009 0.000 + 51 3394.040 || -0.362 1.486 -0.000 + 52 3394.760 || 0.000 -0.000 -0.000 + 53 3432.829 || -0.068 0.287 0.000 + 54 3432.873 || 0.000 -0.000 0.000 + 55 3447.880 || 0.173 0.028 -0.000 + 56 3451.354 || -0.000 0.000 0.000 + 57 3471.324 || -0.347 0.112 0.000 + 58 3474.287 || 0.000 -0.000 -0.000 + 59 3546.603 || 0.012 -0.020 -0.000 + 60 3546.616 || -0.000 0.000 0.000 ---------------------------------------------------------------------------- @@ -1661,76 +1658,76 @@ Iterative solution of linear equations Normal Eigenvalue || Infra Red Intensities Mode [cm**-1] || [atomic units] [(debye/angs)**2] [(KM/mol)] [arbitrary] ------ ---------- || -------------- ----------------- ---------- ----------- - 1 -10.163 || 0.000000 0.000 0.000 0.000 - 2 -1.457 || 0.000000 0.000 0.000 0.000 - 3 3.326 || 0.000000 0.000 0.000 0.000 - 4 6.771 || 0.000000 0.000 0.000 0.000 - 5 9.111 || 0.000000 0.000 0.000 0.000 - 6 17.920 || 0.000000 0.000 0.000 0.000 - 7 48.949 || 0.000030 0.001 0.029 0.066 - 8 81.258 || 0.000000 0.000 0.000 0.000 - 9 151.679 || 0.000361 0.008 0.352 0.801 - 10 181.052 || 0.000273 0.006 0.266 0.606 - 11 265.745 || 0.000000 0.000 0.000 0.000 - 12 301.255 || 0.000000 0.000 0.000 0.000 - 13 407.919 || 0.000000 0.000 0.000 0.000 - 14 424.394 || 0.000104 0.002 0.101 0.231 - 15 468.984 || 0.006007 0.139 5.856 13.320 - 16 487.920 || 0.001998 0.046 1.948 4.431 - 17 578.915 || 0.000000 0.000 0.000 0.000 - 18 657.852 || 0.000000 0.000 0.000 0.000 - 19 673.474 || 0.000000 0.000 0.000 0.000 - 20 707.323 || 0.000480 0.011 0.468 1.064 - 21 735.116 || 0.004421 0.102 4.310 9.804 - 22 810.722 || 0.000000 0.000 0.000 0.000 - 23 862.506 || 0.000000 0.000 0.000 0.000 - 24 893.969 || 0.000000 0.000 0.000 0.000 - 25 896.450 || 0.026920 0.621 26.243 59.694 - 26 980.811 || 0.000000 0.000 0.000 0.000 - 27 980.898 || 0.037600 0.867 36.654 83.375 - 28 1017.883 || 0.000000 0.000 0.000 0.000 - 29 1036.477 || 0.000007 0.000 0.007 0.016 - 30 1073.561 || 0.000504 0.012 0.491 1.117 - 31 1102.044 || 0.009064 0.209 8.836 20.100 - 32 1107.690 || 0.013481 0.311 13.142 29.893 - 33 1107.846 || 0.000000 0.000 0.000 0.000 - 34 1110.635 || 0.000000 0.000 0.000 0.000 - 35 1203.741 || 0.001536 0.035 1.497 3.406 - 36 1260.981 || 0.000000 0.000 0.000 0.000 - 37 1284.285 || 0.000056 0.001 0.055 0.124 + 1 -9.919 || 0.000000 0.000 0.000 0.000 + 2 -1.353 || 0.000000 0.000 0.000 0.000 + 3 3.249 || 0.000000 0.000 0.000 0.000 + 4 6.841 || 0.000000 0.000 0.000 0.000 + 5 9.117 || 0.000000 0.000 0.000 0.000 + 6 17.916 || 0.000000 0.000 0.000 0.000 + 7 49.008 || 0.000030 0.001 0.030 0.068 + 8 81.293 || 0.000000 0.000 0.000 0.000 + 9 151.697 || 0.000359 0.008 0.350 0.797 + 10 181.054 || 0.000273 0.006 0.266 0.607 + 11 265.748 || 0.000000 0.000 0.000 0.000 + 12 301.268 || 0.000000 0.000 0.000 0.000 + 13 407.922 || 0.000000 0.000 0.000 0.000 + 14 424.393 || 0.000104 0.002 0.101 0.230 + 15 468.979 || 0.006013 0.139 5.861 13.347 + 16 487.926 || 0.001992 0.046 1.942 4.421 + 17 578.924 || 0.000000 0.000 0.000 0.000 + 18 657.869 || 0.000000 0.000 0.000 0.000 + 19 673.473 || 0.000000 0.000 0.000 0.000 + 20 707.330 || 0.000476 0.011 0.464 1.058 + 21 735.120 || 0.004427 0.102 4.316 9.828 + 22 810.690 || 0.000000 0.000 0.000 0.000 + 23 862.508 || 0.000000 0.000 0.000 0.000 + 24 893.976 || 0.000000 0.000 0.000 0.000 + 25 896.431 || 0.026917 0.621 26.240 59.752 + 26 980.875 || 0.000000 0.000 0.000 0.000 + 27 980.976 || 0.037515 0.866 36.572 83.278 + 28 1017.887 || 0.000000 0.000 0.000 0.000 + 29 1036.478 || 0.000007 0.000 0.007 0.016 + 30 1073.560 || 0.000499 0.012 0.487 1.108 + 31 1102.049 || 0.009063 0.209 8.835 20.119 + 32 1107.686 || 0.013502 0.312 13.163 29.973 + 33 1107.841 || 0.000000 0.000 0.000 0.000 + 34 1110.640 || 0.000000 0.000 0.000 0.000 + 35 1203.742 || 0.001529 0.035 1.490 3.394 + 36 1260.980 || 0.000000 0.000 0.000 0.000 + 37 1284.279 || 0.000054 0.001 0.052 0.119 38 1296.192 || 0.000000 0.000 0.000 0.000 - 39 1350.027 || 0.009255 0.214 9.022 20.521 - 40 1398.580 || 0.000000 0.000 0.000 0.000 - 41 1422.114 || 0.008675 0.200 8.457 19.236 - 42 1427.476 || 0.000000 0.000 0.000 0.000 - 43 1514.547 || 0.019376 0.447 18.889 42.966 - 44 1565.514 || 0.000000 0.000 0.000 0.000 - 45 1575.249 || 0.000588 0.014 0.573 1.304 - 46 1639.671 || 0.015691 0.362 15.296 34.794 - 47 1690.894 || 0.000000 0.000 0.000 0.000 - 48 1738.522 || 0.000000 0.000 0.000 0.000 - 49 1814.823 || 0.000000 0.000 0.000 0.000 - 50 1815.793 || 0.001535 0.035 1.497 3.404 - 51 3394.021 || 0.101750 2.347 99.191 225.626 - 52 3394.745 || 0.000000 0.000 0.000 0.000 - 53 3432.814 || 0.003804 0.088 3.708 8.435 - 54 3432.859 || 0.000000 0.000 0.000 0.000 - 55 3447.865 || 0.001314 0.030 1.281 2.914 - 56 3451.333 || 0.000000 0.000 0.000 0.000 - 57 3471.308 || 0.005727 0.132 5.583 12.699 - 58 3474.273 || 0.000000 0.000 0.000 0.000 - 59 3546.598 || 0.000024 0.001 0.023 0.053 - 60 3546.610 || 0.000000 0.000 0.000 0.000 + 39 1350.011 || 0.009259 0.214 9.026 20.554 + 40 1398.579 || 0.000000 0.000 0.000 0.000 + 41 1422.110 || 0.008710 0.201 8.491 19.336 + 42 1427.475 || 0.000000 0.000 0.000 0.000 + 43 1514.547 || 0.019393 0.447 18.906 43.050 + 44 1565.513 || 0.000000 0.000 0.000 0.000 + 45 1575.248 || 0.000596 0.014 0.581 1.324 + 46 1639.667 || 0.015697 0.362 15.302 34.844 + 47 1690.893 || 0.000000 0.000 0.000 0.000 + 48 1738.514 || 0.000000 0.000 0.000 0.000 + 49 1814.825 || 0.000000 0.000 0.000 0.000 + 50 1815.798 || 0.001539 0.036 1.500 3.416 + 51 3394.040 || 0.101446 2.340 98.894 225.193 + 52 3394.760 || 0.000000 0.000 0.000 0.000 + 53 3432.829 || 0.003775 0.087 3.680 8.380 + 54 3432.873 || 0.000000 0.000 0.000 0.000 + 55 3447.880 || 0.001331 0.031 1.297 2.954 + 56 3451.354 || 0.000000 0.000 0.000 0.000 + 57 3471.324 || 0.005759 0.133 5.614 12.783 + 58 3474.287 || 0.000000 0.000 0.000 0.000 + 59 3546.603 || 0.000023 0.001 0.023 0.052 + 60 3546.616 || 0.000000 0.000 0.000 0.000 ---------------------------------------------------------------------------- - - + + Vibrational analysis via the FX method --- with translations and rotations projected out --- --- via the Eckart algorithm --- - Projected Nuclear Hessian trans-rot subspace norm:7.7198D-33 + Projected Nuclear Hessian trans-rot subspace norm:1.8124D-33 (should be close to zero!) -------------------------------------------------------- @@ -1740,236 +1737,236 @@ Iterative solution of linear equations 1 2 3 4 5 6 7 8 9 10 ----- ----- ----- ----- ----- - 1 6.04383D+01 - 2 1.45058D-01 5.88029D+01 - 3 8.36861D-07 -7.07949D-07 1.31766D+01 - 4 -7.00951D+00 1.31539D+00 8.48197D-07 6.04383D+01 - 5 1.31535D+00 8.54347D-01 -8.20765D-07 1.45057D-01 5.88029D+01 - 6 7.49679D-07 -4.96130D-07 -7.47412D-01 1.09811D-06 -5.17847D-07 1.31766D+01 - 7 -2.21710D+01 1.15482D+01 4.61288D-08 1.76215D+00 -3.07983D+00 -1.45462D-07 6.86234D+01 - 8 4.45989D+00 -1.74173D+01 -9.52918D-08 -9.06116D+00 -1.31683D+00 4.20824D-08 4.62150D+00 6.31128D+01 - 9 1.21994D-06 -9.11691D-07 -5.54170D+00 1.23406D-06 -5.59474D-07 5.76968D-01 3.35178D-07 6.31559D-07 1.17724D+01 - 10 1.76215D+00 -3.07983D+00 4.33347D-08 -2.21710D+01 1.15482D+01 -1.47401D-07 -6.72971D-01 2.26139D+00 -8.42372D-09 6.86234D+01 - 11 -9.06115D+00 -1.31683D+00 -5.20297D-08 4.45989D+00 -1.74173D+01 6.67262D-08 2.26135D+00 -6.38028D+00 -1.52812D-07 4.62150D+00 - 12 1.19232D-06 -1.15414D-06 5.76968D-01 1.19386D-06 -7.88471D-07 -5.54170D+00 2.21273D-07 9.40863D-07 -5.93996D-01 1.38331D-07 - 13 5.11164D+00 8.53580D-01 -7.28730D-08 -2.64810D+01 -8.05844D+00 -8.06882D-08 -1.28547D+01 1.13602D+00 -4.03930D-07 -4.97423D+00 - 14 6.70455D+00 -4.60705D+00 7.58910D-07 -1.29283D+00 -1.28896D+01 -3.28315D-07 -7.41492D+00 -3.14767D+01 -1.33341D-07 -4.90013D-01 - 15 -1.10104D-06 8.98260D-07 5.85685D-01 -1.15158D-06 5.03822D-07 -5.64443D+00 9.70834D-08 -8.20697D-07 -5.20665D+00 9.83955D-08 - 16 -2.64810D+01 -8.05844D+00 4.58772D-08 5.11164D+00 8.53581D-01 3.35059D-08 -4.97423D+00 4.43995D+00 -1.38413D-06 -1.28547D+01 - 17 -1.29282D+00 -1.28896D+01 9.05560D-07 6.70455D+00 -4.60705D+00 -2.03739D-07 -4.90009D-01 6.23028D+00 -1.29357D-06 -7.41492D+00 - 18 -1.14937D-06 9.29281D-07 -5.64443D+00 -1.23186D-06 5.35165D-07 5.85685D-01 3.62843D-08 -6.87251D-07 5.41926D-01 -8.90805D-09 - 19 -4.19777D+00 -3.86542D+00 -1.72269D-06 3.50794D-01 1.08461D-02 5.27722D-07 -1.05255D+02 -3.16198D+01 -4.67978D-06 3.00815D-01 - 20 6.72975D+00 2.87405D+00 -6.84384D-07 4.28059D-01 -1.50702D+00 8.92156D-07 -3.16231D+01 -3.05534D+01 -7.80733D-07 1.70019D-01 - 21 1.19551D-07 -2.28089D-08 6.89399D-01 2.59285D-07 2.91939D-07 2.53588D+00 -1.57740D-07 -6.71620D-08 -1.14742D+01 2.14513D-07 - 22 3.50794D-01 1.08350D-02 -1.99386D-06 -4.19777D+00 -3.86541D+00 2.69250D-07 3.00813D-01 2.26101D-01 1.92071D-06 -1.05255D+02 - 23 4.28065D-01 -1.50702D+00 -7.17653D-07 6.72974D+00 2.87405D+00 8.03888D-07 1.70030D-01 -1.43385D-01 2.94908D-06 -3.16231D+01 - 24 9.07622D-08 2.18698D-07 2.53588D+00 3.18594D-07 4.35029D-07 6.89399D-01 1.60442D-08 -3.96727D-07 -2.54245D-01 2.09538D-07 - 25 4.26049D-02 -5.24627D-01 -1.19939D-07 -4.33515D+00 6.47337D+00 -8.60508D-07 2.61319D+00 -3.26107D+00 2.45579D-06 -1.07151D+00 - 26 -9.72426D-01 -1.15666D+00 1.70149D-07 -4.02041D+00 3.68295D+00 6.01535D-07 8.13642D+00 -3.85873D+00 -1.37578D-06 -7.37179D-01 - 27 -6.04427D-07 -6.30792D-08 2.54157D+00 -8.98043D-07 9.93446D-08 8.14849D-01 4.06752D-07 8.86839D-08 1.04761D+00 6.08181D-07 - 28 -4.33516D+00 6.47337D+00 6.60075D-08 4.26065D-02 -5.24622D-01 -7.45456D-07 -1.07151D+00 -1.17331D+00 -8.41913D-07 2.61319D+00 - 29 -4.02041D+00 3.68295D+00 4.16719D-08 -9.72434D-01 -1.15666D+00 4.33461D-07 -7.37170D-01 -4.41825D-01 4.04293D-07 8.13641D+00 - 30 -5.11704D-07 4.14174D-08 8.14849D-01 -7.81630D-07 2.31453D-07 2.54157D+00 5.94111D-07 -8.15930D-08 2.21632D+00 6.34149D-07 - 31 -1.89709D-02 1.29506D-01 -3.63957D-07 -1.02954D+01 -4.67931D+00 9.84025D-08 -5.34068D-01 -7.18393D-02 -3.93597D-07 5.38176D-01 - 32 -2.82611D-02 -5.03064D-01 1.12251D-07 -2.21571D+00 -1.97813D+01 -2.95608D-08 -1.40687D-01 8.43299D-01 3.23575D-07 5.46841D-01 - 33 -1.11714D-06 9.08035D-07 -8.24666D-02 -1.22160D-06 9.83261D-07 -5.28424D+00 -5.38828D-07 -4.26751D-07 5.74203D-01 -3.43558D-07 - 34 -1.02954D+01 -4.67931D+00 -2.74423D-07 -1.89711D-02 1.29510D-01 3.60828D-07 5.38177D-01 2.66578D+00 -1.18594D-06 -5.34067D-01 - 35 -2.21570D+00 -1.97813D+01 -3.48768D-08 -2.82643D-02 -5.03065D-01 -3.20099D-07 5.46842D-01 -3.70754D+00 2.02456D-06 -1.40692D-01 - 36 -1.27399D-06 1.01717D-06 -5.28424D+00 -1.24318D-06 1.07392D-06 -8.24667D-02 -7.08896D-07 -5.78321D-08 3.30983D-01 -4.65981D-07 - 37 5.02923D-02 1.64667D-02 2.55027D-07 -6.97916D-01 1.08082D+00 -1.02326D-06 -4.22772D-02 4.66565D-02 -6.44773D-07 4.25616D-01 - 38 2.24023D-02 4.71733D-02 -4.23488D-08 -9.13499D+00 -1.91338D+00 4.30981D-07 -4.91628D-01 7.79936D-02 5.22105D-07 -6.40128D-01 - 39 4.17078D-07 -7.16231D-08 2.89412D-02 3.37766D-07 9.92098D-08 6.69913D-01 2.50182D-08 2.03851D-07 8.06695D-03 1.09666D-07 - 40 -6.97917D-01 1.08082D+00 -1.48035D-07 5.02929D-02 1.64741D-02 -1.44306D-06 4.25619D-01 7.03268D-01 1.91458D-06 -4.22739D-02 - 41 -9.13498D+00 -1.91338D+00 1.40423D-07 2.23953D-02 4.71725D-02 6.55686D-07 -6.40121D-01 5.12735D-01 -7.63294D-07 -4.91639D-01 - 42 5.52161D-07 -2.46200D-07 6.69913D-01 4.32236D-07 -5.38026D-08 2.89413D-02 1.64644D-07 5.40221D-08 -2.57827D-01 3.09208D-07 - 43 6.32286D-03 -1.62341D-01 -6.59042D-08 1.44702D+00 1.09114D+00 -1.83316D-07 -5.11170D-02 2.46788D-01 5.68184D-07 8.51115D-02 - 44 7.74291D-02 1.51864D-01 2.46702D-07 1.79276D+00 -4.01801D+00 -1.62925D-08 1.20666D-01 -1.41698D-01 -2.98395D-07 -5.87886D-01 - 45 5.17074D-07 -4.15376D-07 -4.13261D-03 4.50027D-07 -5.45682D-07 4.58898D-01 2.21747D-07 2.41061D-07 -3.70405D-02 3.46964D-08 - 46 1.44702D+00 1.09115D+00 -1.02233D-07 6.32312D-03 -1.62338D-01 -1.16716D-07 8.51126D-02 -5.92836D-01 9.52414D-07 -5.11160D-02 - 47 1.79276D+00 -4.01801D+00 2.44299D-07 7.74249D-02 1.51864D-01 9.75862D-09 -5.87885D-01 2.41097D-01 -1.84625D-07 1.20662D-01 - 48 4.93394D-07 -3.08279D-07 4.58898D-01 5.16817D-07 -4.32008D-07 -4.13252D-03 1.80137D-07 1.90904D-07 1.18712D-01 3.95624D-08 - 49 -2.50924D-02 -3.57353D-02 5.68290D-07 1.39490D-01 -3.98699D-01 -8.68317D-07 1.15622D-01 -1.06195D-02 -1.03992D-06 -3.44737D-02 - 50 -1.64808D-03 -1.31644D-02 9.44636D-08 -4.34221D-01 4.60339D-01 3.16842D-07 -7.03413D-02 4.94805D-02 -4.39333D-07 -1.86236D-02 - 51 -3.94725D-08 -1.10319D-07 -2.67494D-02 2.00205D-07 -3.38984D-07 -2.35981D+00 2.23881D-07 3.32217D-07 4.27924D-02 1.45072D-07 - 52 1.39490D-01 -3.98704D-01 4.66399D-07 -2.50920D-02 -3.57269D-02 -1.14577D-06 -3.44711D-02 -4.34068D-02 -4.14050D-07 1.15627D-01 - 53 -4.34214D-01 4.60339D-01 1.14561D-07 -1.65381D-03 -1.31633D-02 2.59152D-07 -1.86133D-02 4.48201D-03 4.36805D-07 -7.03481D-02 - 54 1.12388D-07 -2.22016D-07 -2.35981D+00 1.57545D-07 -4.29737D-07 -2.67495D-02 2.85558D-07 5.23239D-08 6.87322D-03 1.02650D-07 - 55 1.43119D-02 -1.91401D-02 -3.14583D-07 -9.66968D-01 3.57497D-01 -1.92331D-07 6.57800D-02 -4.79952D-03 -1.04519D-06 2.23759D-01 - 56 4.52575D-02 3.47911D-02 -5.68102D-07 7.92027D-01 -1.03850D-02 8.00752D-07 -6.62619D-02 4.15949D-03 5.95876D-07 -1.42905D-01 - 57 -7.42833D-07 7.53496D-07 4.09975D-02 -9.08726D-07 8.83787D-07 3.71298D+00 -3.88971D-07 5.22839D-08 -8.71579D-02 -1.25949D-07 - 58 -9.66968D-01 3.57493D-01 -3.03681D-07 1.43119D-02 -1.91283D-02 -2.70266D-07 2.23764D-01 2.66691D-01 -8.47506D-07 6.57853D-02 - 59 7.92033D-01 -1.03865D-02 -4.70124D-07 4.52474D-02 3.47920D-02 9.93964D-07 -1.42897D-01 -1.13270D-01 3.63372D-07 -6.62739D-02 - 60 -6.62403D-07 5.53405D-07 3.71298D+00 -8.17854D-07 7.42005D-07 4.09976D-02 -2.88171D-07 -9.52016D-08 1.55565D-03 -6.78050D-08 + 1 6.04379D+01 + 2 1.45037D-01 5.88029D+01 + 3 -9.59140D-08 7.98377D-08 1.31746D+01 + 4 -7.00970D+00 1.31537D+00 6.67209D-08 6.04379D+01 + 5 1.31538D+00 8.54315D-01 -7.07152D-08 1.45038D-01 5.88029D+01 + 6 -9.94169D-09 1.03027D-07 -7.47357D-01 2.82748D-07 -1.23481D-08 1.31746D+01 + 7 -2.21707D+01 1.15479D+01 6.69531D-08 1.76226D+00 -3.07985D+00 1.90940D-08 6.86234D+01 + 8 4.45961D+00 -1.74173D+01 -8.74279D-08 -9.06153D+00 -1.31701D+00 -7.21166D-08 4.62201D+00 6.31125D+01 + 9 -3.32712D-08 1.73966D-07 -5.54096D+00 2.26021D-07 -8.89283D-08 5.77012D-01 -1.59512D-07 2.53145D-07 1.17721D+01 + 10 1.76226D+00 -3.07985D+00 -2.27594D-08 -2.21707D+01 1.15479D+01 -5.59249D-08 -6.73269D-01 2.26148D+00 -8.01823D-08 6.86234D+01 + 11 -9.06153D+00 -1.31701D+00 -3.59542D-08 4.45961D+00 -1.74173D+01 -1.29940D-08 2.26149D+00 -6.38040D+00 -4.66221D-08 4.62201D+00 + 12 -2.24742D-09 1.65889D-07 5.77012D-01 2.50558D-07 -1.05213D-07 -5.54096D+00 3.58317D-08 2.27353D-07 -5.94090D-01 -1.20431D-07 + 13 5.11171D+00 8.53474D-01 2.65776D-08 -2.64806D+01 -8.05815D+00 1.89297D-08 -1.28546D+01 1.13604D+00 4.64501D-08 -4.97401D+00 + 14 6.70473D+00 -4.60721D+00 1.51943D-07 -1.29265D+00 -1.28897D+01 2.07759D-08 -7.41473D+00 -3.14760D+01 -3.89831D-08 -4.90004D-01 + 15 1.55986D-10 -1.66694D-07 5.85678D-01 -3.11428D-07 7.31463D-08 -5.64374D+00 -4.35762D-08 -2.11989D-07 -5.20671D+00 1.12415D-07 + 16 -2.64806D+01 -8.05815D+00 -2.90468D-08 5.11171D+00 8.53474D-01 -3.73861D-08 -4.97401D+00 4.43995D+00 1.46018D-08 -1.28546D+01 + 17 -1.29265D+00 -1.28897D+01 8.24680D-08 6.70473D+00 -4.60721D+00 -4.33509D-08 -4.90004D-01 6.23044D+00 -9.38716D-08 -7.41473D+00 + 18 6.19519D-08 -1.58702D-07 -5.64374D+00 -2.51182D-07 8.04282D-08 5.85678D-01 -4.75464D-09 -2.02110D-07 5.41715D-01 1.68762D-07 + 19 -4.19802D+00 -3.86475D+00 -2.62068D-07 3.50654D-01 1.08780D-02 -5.87402D-09 -1.05256D+02 -3.16206D+01 2.21573D-07 3.01137D-01 + 20 6.72964D+00 2.87431D+00 -1.76403D-07 4.28060D-01 -1.50690D+00 -7.40864D-08 -3.16238D+01 -3.05537D+01 -5.64704D-08 1.70012D-01 + 21 7.20226D-08 1.42631D-07 6.89146D-01 7.21603D-08 -6.11522D-08 2.53584D+00 8.37715D-08 8.91448D-08 -1.14741D+01 -5.13392D-08 + 22 3.50654D-01 1.08787D-02 -1.95073D-07 -4.19802D+00 -3.86475D+00 5.72965D-08 3.01137D-01 2.26222D-01 2.29168D-07 -1.05256D+02 + 23 4.28059D-01 -1.50690D+00 -2.21203D-08 6.72965D+00 2.87431D+00 9.13457D-08 1.70011D-01 -1.43419D-01 1.05769D-07 -3.16238D+01 + 24 -2.08009D-09 1.15103D-07 2.53584D+00 -4.80680D-08 -9.63272D-08 6.89146D-01 -2.52437D-08 1.02413D-07 -2.54238D-01 5.98655D-09 + 25 4.25502D-02 -5.24504D-01 4.62864D-08 -4.33550D+00 6.47274D+00 -2.15941D-07 2.61335D+00 -3.26051D+00 -2.66330D-07 -1.07181D+00 + 26 -9.72304D-01 -1.15659D+00 -8.51077D-09 -4.01992D+00 3.68339D+00 1.06390D-07 8.13590D+00 -3.85920D+00 4.53019D-08 -7.37272D-01 + 27 3.29074D-08 1.48889D-08 2.54140D+00 -6.10824D-08 -5.78195D-08 8.14710D-01 6.36641D-08 -5.01113D-08 1.04769D+00 6.40644D-08 + 28 -4.33550D+00 6.47274D+00 2.87771D-07 4.25499D-02 -5.24505D-01 3.28276D-08 -1.07181D+00 -1.17323D+00 5.48650D-09 2.61335D+00 + 29 -4.01992D+00 3.68339D+00 -1.82195D-07 -9.72303D-01 -1.15659D+00 -5.02594D-08 -7.37273D-01 -4.41840D-01 -3.53941D-08 8.13590D+00 + 30 -9.01435D-09 2.05678D-08 8.14710D-01 -1.02810D-07 -1.92177D-08 2.54140D+00 -9.76737D-08 -5.88132D-08 2.21629D+00 5.65149D-08 + 31 -1.89665D-02 1.29561D-01 -4.77753D-08 -1.02955D+01 -4.67897D+00 -2.60658D-08 -5.34149D-01 -7.18466D-02 1.90214D-09 5.38019D-01 + 32 -2.82185D-02 -5.03080D-01 -1.17982D-08 -2.21575D+00 -1.97807D+01 -2.29671D-08 -1.40891D-01 8.43326D-01 -5.67831D-08 5.46648D-01 + 33 1.03926D-08 -9.04209D-08 -8.24741D-02 1.42356D-09 6.58818D-08 -5.28324D+00 -9.51031D-09 3.09160D-08 5.74224D-01 -9.10659D-10 + 34 -1.02955D+01 -4.67897D+00 -1.18681D-08 -1.89664D-02 1.29561D-01 5.58790D-09 5.38019D-01 2.66583D+00 5.56317D-08 -5.34149D-01 + 35 -2.21575D+00 -1.97807D+01 2.32705D-08 -2.82186D-02 -5.03080D-01 2.86866D-08 5.46648D-01 -3.70760D+00 -1.87943D-08 -1.40891D-01 + 36 3.51579D-09 -9.23264D-08 -5.28324D+00 -6.01237D-09 6.10434D-08 -8.24741D-02 5.03839D-09 -1.20649D-08 3.30793D-01 -5.74474D-11 + 37 5.02985D-02 1.64557D-02 -2.79481D-08 -6.97622D-01 1.07982D+00 -2.00741D-07 -4.23419D-02 4.66841D-02 -2.35844D-07 4.25950D-01 + 38 2.24300D-02 4.71754D-02 7.25473D-09 -9.13488D+00 -1.91373D+00 1.27401D-08 -4.91546D-01 7.80113D-02 -8.72787D-09 -6.39881D-01 + 39 -2.03697D-08 5.49604D-08 2.89544D-02 -1.08045D-07 -3.18615D-08 6.69646D-01 -1.82818D-08 1.97524D-08 8.06062D-03 -2.37371D-08 + 40 -6.97622D-01 1.07983D+00 8.27886D-08 5.02982D-02 1.64542D-02 -7.73048D-08 4.25950D-01 7.03135D-01 -7.21312D-08 -4.23424D-02 + 41 -9.13488D+00 -1.91373D+00 -2.94233D-08 2.24310D-02 4.71756D-02 -4.35828D-09 -6.39882D-01 5.12788D-01 -5.96320D-08 -4.91545D-01 + 42 5.98380D-08 3.13914D-08 6.69646D-01 6.86224D-09 -3.17991D-08 2.89544D-02 1.07664D-07 7.27638D-08 -2.57774D-01 -1.95168D-08 + 43 6.29786D-03 -1.62394D-01 4.73811D-08 1.44693D+00 1.09134D+00 2.29876D-08 -5.10253D-02 2.46812D-01 4.45305D-10 8.50891D-02 + 44 7.74459D-02 1.51901D-01 -3.07319D-09 1.79293D+00 -4.01856D+00 -3.20854D-08 1.20669D-01 -1.41703D-01 -5.38486D-08 -5.87738D-01 + 45 -3.41346D-08 -3.72488D-08 -4.18461D-03 -2.52372D-08 2.32578D-08 4.58751D-01 2.35545D-08 1.53875D-08 -3.69301D-02 -2.38538D-08 + 46 1.44693D+00 1.09134D+00 2.47019D-08 6.29784D-03 -1.62394D-01 7.47004D-09 8.50890D-02 -5.92808D-01 9.35958D-11 -5.10255D-02 + 47 1.79293D+00 -4.01856D+00 5.52629D-08 7.74460D-02 1.51901D-01 1.09533D-08 -5.87738D-01 2.41085D-01 -7.02352D-09 1.20669D-01 + 48 1.59478D-08 -2.33569D-08 4.58751D-01 2.62426D-08 3.17822D-08 -4.18461D-03 2.03715D-08 6.13802D-08 1.18657D-01 -2.88666D-08 + 49 -2.50874D-02 -3.57326D-02 2.33208D-08 1.39517D-01 -3.99070D-01 -1.14038D-07 1.15484D-01 -1.06052D-02 -1.42361D-07 -3.44225D-02 + 50 -1.64877D-03 -1.31596D-02 -3.11607D-08 -4.34271D-01 4.60429D-01 4.24031D-09 -7.02834D-02 4.95096D-02 -5.47949D-08 -1.86713D-02 + 51 9.05195D-08 -8.26488D-08 -2.67740D-02 -1.49911D-07 5.49967D-08 -2.35994D+00 7.46552D-08 -5.28345D-08 4.25911D-02 8.62270D-08 + 52 1.39518D-01 -3.99070D-01 -3.77847D-08 -2.50878D-02 -3.57342D-02 -1.21372D-07 -3.44227D-02 -4.34137D-02 -7.03695D-09 1.15483D-01 + 53 -4.34272D-01 4.60429D-01 -9.56977D-08 -1.64788D-03 -1.31599D-02 -6.35688D-08 -1.86722D-02 4.50881D-03 -8.76367D-08 -7.02826D-02 + 54 -9.86285D-10 -9.46654D-08 -2.35994D+00 -1.80854D-07 4.54106D-08 -2.67740D-02 -5.93374D-08 -4.95404D-08 6.97689D-03 1.25997D-08 + 55 1.43289D-02 -1.91390D-02 -4.86107D-08 -9.66933D-01 3.57531D-01 -1.47073D-07 6.56994D-02 -4.82194D-03 -9.85923D-08 2.23784D-01 + 56 4.52390D-02 3.47556D-02 -6.98536D-08 7.91876D-01 -9.96804D-03 3.28946D-08 -6.61145D-02 4.17081D-03 2.68796D-08 -1.42856D-01 + 57 5.62144D-08 -2.10028D-08 4.10233D-02 -1.63504D-07 -1.31436D-08 3.71287D+00 1.75271D-09 -6.09990D-09 -8.72593D-02 2.64117D-08 + 58 -9.66933D-01 3.57532D-01 4.51524D-08 1.43290D-02 -1.91406D-02 7.20660D-09 2.23783D-01 2.66661D-01 1.17001D-07 6.56988D-02 + 59 7.91875D-01 -9.96809D-03 -2.61634D-08 4.52400D-02 3.47557D-02 5.65296D-08 -1.42857D-01 -1.13262D-01 4.79059D-08 -6.61138D-02 + 60 9.23064D-09 -2.23964D-08 3.71287D+00 -1.61407D-07 9.62154D-09 4.10233D-02 2.95176D-08 -7.52083D-08 1.57019D-03 2.15597D-08 11 12 13 14 15 16 17 18 19 20 ----- ----- ----- ----- ----- - 11 6.31128D+01 - 12 -1.59109D-07 1.17724D+01 - 13 4.43995D+00 -5.39574D-07 6.51309D+01 - 14 6.23029D+00 1.33308D-06 -5.68191D+00 6.65657D+01 - 15 8.97394D-09 5.41927D-01 2.41837D-07 1.21183D-08 1.17873D+01 - 16 1.13602D+00 -1.38554D-06 -2.66795D+00 -3.53288D+00 1.72119D-06 6.51309D+01 - 17 -3.14767D+01 2.64541D-07 -3.53291D+00 -4.23496D+00 9.76946D-07 -5.68191D+00 6.65657D+01 - 18 2.13614D-07 -5.20665D+00 1.48204D-07 -2.55513D-07 -5.34477D-01 1.89743D-07 -2.78487D-07 1.17873D+01 - 19 2.26102D-01 -8.04228D-06 4.79269D-01 1.79750D+00 5.65920D-06 -4.41824D-01 1.15822D+00 7.35772D-06 3.73229D+02 - 20 -1.43389D-01 -3.06543D-06 -9.54760D+00 -1.69531D+00 1.54217D-06 7.09865D-01 -1.04056D+00 2.37748D-06 1.13653D+02 1.06907D+02 - 21 -3.32858D-07 -2.54247D-01 6.07371D-07 1.86016D-07 9.56855D-01 2.55349D-08 5.86945D-07 2.14173D+00 -1.40248D-06 -5.11921D-07 - 22 -3.16198D+01 -1.69933D-06 -4.41825D-01 1.15822D+00 -7.88198D-07 4.79268D-01 1.79751D+00 8.12244D-07 -1.93512D-01 -1.70122D-01 - 23 -3.05534D+01 4.26484D-07 7.09871D-01 -1.04056D+00 -1.94306D-06 -9.54760D+00 -1.69532D+00 -9.08027D-07 -1.70098D-01 1.19937D-01 - 24 -5.43596D-07 -1.14742D+01 7.78194D-07 -2.56762D-07 2.14173D+00 9.16293D-07 5.08311D-07 9.56854D-01 -1.14545D-06 1.15299D-06 - 25 -1.17330D+00 3.94685D-06 -7.85161D+01 4.84336D+01 -3.76839D-06 1.27809D-01 -2.98267D-01 -3.00476D-06 1.16144D+00 1.61992D-02 - 26 -4.41828D-01 -2.22918D-06 4.81977D+01 -5.80317D+01 2.22653D-06 -2.75124D-01 2.19761D-02 1.71351D-06 1.88303D-01 1.85993D+00 - 27 -2.65129D-07 2.21632D+00 -7.25449D-08 7.61595D-07 -1.15803D+01 -2.75133D-07 3.34135D-07 -2.59550D-01 -1.52310D-06 -5.29518D-07 - 28 -3.26105D+00 6.62058D-07 1.27811D-01 -2.98269D-01 -5.36155D-07 -7.85161D+01 4.84336D+01 3.50364D-07 -7.96364D-01 1.12272D+00 - 29 -3.85873D+00 -5.59130D-07 -2.75119D-01 2.19719D-02 3.03770D-07 4.81976D+01 -5.80317D+01 -1.24944D-08 -6.72845D-01 6.03027D-01 - 30 -2.56661D-07 1.04761D+00 9.24792D-08 5.21514D-08 -2.59551D-01 6.24960D-07 1.61042D-07 -1.15803D+01 -3.36082D-08 2.19818D-07 - 31 2.66578D+00 -1.09475D-06 1.03899D-01 -2.78325D+00 5.27833D-07 -4.12631D-01 7.86510D-02 9.37355D-07 2.30227D-02 -4.43222D-01 - 32 -3.70754D+00 6.30612D-07 -1.77429D+00 -2.09767D+00 -6.68855D-07 5.21324D-01 5.70053D-01 -4.09922D-07 2.36522D-02 5.90075D-02 - 33 4.09088D-07 3.30983D-01 2.43177D-07 -9.67603D-07 2.33583D-01 -1.17042D-07 -6.30849D-07 6.16250D-01 2.34246D-06 4.58000D-07 - 34 -7.18360D-02 -1.70102D-06 -4.12631D-01 7.86502D-02 1.46498D-06 1.03900D-01 -2.78324D+00 1.95466D-06 4.47101D-01 5.82676D-01 - 35 8.43301D-01 2.18846D-06 5.21323D-01 5.70053D-01 -2.56999D-06 -1.77430D+00 -2.09767D+00 -2.32017D-06 -5.98818D-01 4.39544D-01 - 36 6.52881D-07 5.74204D-01 1.17216D-07 -9.20819D-07 6.16249D-01 -2.99031D-07 -6.89272D-07 2.33582D-01 2.56204D-06 9.93647D-07 - 37 7.03278D-01 1.11955D-06 2.00075D-01 2.67896D-02 -1.56536D-07 -3.36386D-02 -5.76660D-03 -5.09160D-07 3.12395D-02 -5.08873D-02 - 38 5.12734D-01 -3.36057D-07 5.21698D-01 -1.52954D+00 -2.17670D-07 3.63345D-02 4.47870D-02 2.09248D-07 1.57402D-02 -4.62684D-01 - 39 -2.81386D-07 -2.57827D-01 2.69444D-07 -2.89983D-07 7.12711D-01 5.19535D-07 4.76077D-08 -1.85604D-02 -8.28080D-07 6.18518D-08 - 40 4.66675D-02 3.70510D-06 -3.36371D-02 -5.77505D-03 -3.34641D-06 2.00076D-01 2.67909D-02 -3.29673D-06 8.13335D-02 -4.01137D-01 - 41 7.79927D-02 -1.58541D-06 3.63386D-02 4.47896D-02 1.44204D-06 5.21691D-01 -1.52954D+00 1.66403D-06 5.12794D-01 -1.03009D-01 - 42 -4.61515D-07 8.06644D-03 3.09252D-07 3.36713D-07 -1.85607D-02 3.36752D-07 4.87320D-07 7.12712D-01 -2.24168D-06 -1.14169D-06 - 43 -5.92835D-01 8.14757D-07 -4.20982D-01 -4.30155D-01 -8.14137D-07 1.64487D-01 1.25466D-01 -6.86530D-07 -1.96895D-03 -7.02369D-03 - 44 2.41098D-01 -7.07587D-09 5.28553D-01 3.25459D-01 2.18477D-07 -7.33202D-02 -2.66559D-01 9.45707D-08 -4.10609D-03 1.62777D-02 - 45 -1.47785D-07 1.18712D-01 -2.06197D-07 1.55003D-07 3.65236D-02 1.25350D-07 4.54285D-08 -8.69864D-03 -5.95549D-07 -1.05743D-06 - 46 2.46793D-01 1.16487D-06 1.64487D-01 1.25465D-01 -1.11145D-06 -4.20982D-01 -4.30154D-01 -9.70838D-07 4.87593D-02 -8.45809D-02 - 47 -1.41697D-01 1.04803D-07 -7.33206D-02 -2.66559D-01 1.85133D-07 5.28551D-01 3.25459D-01 4.52488D-08 -2.87248D-02 -1.87210D-02 - 48 -2.59243D-07 -3.70410D-02 -1.65545D-07 2.90971D-07 -8.69863D-03 2.15384D-07 2.14307D-07 3.65240D-02 -1.39845D-06 -5.07100D-07 - 49 -4.33964D-02 1.01283D-06 1.44361D-01 -3.12445D-01 9.20552D-07 -5.15772D-02 1.29361D-02 -6.54426D-07 -1.15717D-03 -2.53631D-02 - 50 4.48027D-03 -8.67772D-07 3.79902D-01 -3.85837D-01 7.43859D-07 -3.79070D-02 1.59006D-02 3.61678D-07 -2.42346D-02 -3.62523D-02 - 51 -2.22713D-07 6.87433D-03 -9.99972D-08 8.83283D-07 4.36910D-02 -1.64616D-07 6.17131D-07 8.28654D-02 -2.42254D-06 9.78546D-08 - 52 -1.06111D-02 1.67472D-06 -5.15746D-02 1.29258D-02 -7.55191D-08 1.44363D-01 -3.12444D-01 -1.20031D-06 -3.58649D-02 -2.80596D-02 - 53 4.94788D-02 5.38750D-09 -3.79000D-02 1.58990D-02 -1.46861D-07 3.79897D-01 -3.85839D-01 -3.57309D-07 -7.68012D-02 8.44739D-02 - 54 -2.58939D-07 4.27909D-02 -7.95836D-08 -9.64529D-08 8.28663D-02 6.38183D-07 2.32960D-07 4.36927D-02 -5.65917D-07 -5.87456D-07 - 55 2.66698D-01 -1.27220D-06 -1.59163D-01 -4.99705D-02 1.28291D-06 -7.66512D-02 2.12485D-02 1.41023D-06 6.05650D-03 4.39711D-02 - 56 -1.13271D-01 -1.57513D-06 6.35964D-02 1.36042D-01 2.17382D-08 1.21815D-01 -5.75094D-02 9.99826D-07 1.13545D-02 -1.45147D-02 - 57 3.60114D-07 1.55561D-03 2.94896D-07 -5.01200D-07 -1.25621D-01 -6.06634D-08 -2.64350D-07 -2.59486D-01 1.20209D-06 8.22725D-07 - 58 -4.78997D-03 -1.12290D-06 -7.66482D-02 2.12396D-02 9.01322D-07 -1.59162D-01 -4.99687D-02 1.43063D-06 3.78528D-02 4.75185D-03 - 59 4.15915D-03 -1.78567D-06 1.21818D-01 -5.75104D-02 3.60837D-07 6.35892D-02 1.36042D-01 1.31384D-06 9.06688D-02 -2.30195D-02 - 60 2.60263D-07 -8.71579D-02 3.79323D-07 -8.83834D-07 -2.59486D-01 3.88348D-07 -3.33145D-07 -1.25621D-01 2.02367D-06 -1.65641D-07 + 11 6.31125D+01 + 12 -3.30787D-07 1.17721D+01 + 13 4.43995D+00 -1.76681D-08 6.51306D+01 + 14 6.23044D+00 9.89345D-08 -5.68245D+00 6.65657D+01 + 15 3.14308D-07 5.41715D-01 5.46930D-08 -6.36526D-08 1.17872D+01 + 16 1.13604D+00 -4.74504D-08 -2.66827D+00 -3.53290D+00 9.79571D-09 6.51306D+01 + 17 -3.14760D+01 3.27878D-08 -3.53290D+00 -4.23506D+00 -9.71968D-08 -5.68245D+00 6.65657D+01 + 18 3.49762D-07 -5.20671D+00 8.23913D-08 -1.01865D-07 -5.34557D-01 3.46647D-08 2.36815D-08 1.17872D+01 + 19 2.26221D-01 -1.67330D-07 4.79582D-01 1.79682D+00 3.48235D-07 -4.42336D-01 1.15827D+00 -1.52920D-07 3.73232D+02 + 20 -1.43419D-01 -1.75783D-07 -9.54721D+00 -1.69570D+00 1.63003D-07 7.09932D-01 -1.04052D+00 -1.57719D-08 1.13654D+02 1.06907D+02 + 21 -3.13453D-07 -2.54238D-01 -1.54349D-07 5.98449D-08 9.56901D-01 7.54251D-08 2.63895D-08 2.14180D+00 -3.54533D-07 -1.89194D-07 + 22 -3.16206D+01 -1.68120D-07 -4.42336D-01 1.15827D+00 3.09321D-07 4.79582D-01 1.79682D+00 -1.91741D-07 -1.93614D-01 -1.70114D-01 + 23 -3.05537D+01 3.27645D-08 7.09932D-01 -1.04052D+00 7.82022D-08 -9.54721D+00 -1.69570D+00 -1.25377D-07 -1.70126D-01 1.19976D-01 + 24 -1.05462D-07 -1.14741D+01 -1.42017D-07 2.44689D-08 2.14180D+00 8.03981D-08 -7.56721D-08 9.56901D-01 2.89298D-07 -4.33377D-08 + 25 -1.17323D+00 -4.65824D-08 -7.85167D+01 4.84345D+01 9.97376D-08 1.28126D-01 -2.98509D-01 4.71339D-08 1.16150D+00 1.57819D-02 + 26 -4.41840D-01 -5.58433D-08 4.81983D+01 -5.80325D+01 -1.05558D-07 -2.75202D-01 2.19822D-02 8.39141D-08 1.88579D-01 1.86030D+00 + 27 -6.32071D-08 2.21629D+00 -5.88342D-08 7.32303D-09 -1.15804D+01 5.46137D-08 9.83221D-08 -2.59435D-01 -2.22634D-07 1.59031D-07 + 28 -3.26051D+00 2.41161D-07 1.28126D-01 -2.98509D-01 -2.04171D-07 -7.85167D+01 4.84345D+01 -2.58948D-07 -7.95667D-01 1.12280D+00 + 29 -3.85920D+00 -1.15914D-07 -2.75202D-01 2.19822D-02 5.08094D-08 4.81983D+01 -5.80325D+01 2.29925D-07 -6.72934D-01 6.03017D-01 + 30 3.04649D-08 1.04769D+00 -6.69484D-08 -5.81968D-08 -2.59435D-01 5.15288D-08 -4.74031D-08 -1.15804D+01 2.58216D-07 2.61006D-07 + 31 2.66583D+00 -4.71272D-08 1.04035D-01 -2.78333D+00 6.66898D-08 -4.12613D-01 7.86900D-02 -1.62157D-08 2.31108D-02 -4.43198D-01 + 32 -3.70760D+00 2.03866D-09 -1.77407D+00 -2.09789D+00 7.70420D-08 5.21431D-01 5.69991D-01 -1.89426D-08 2.37113D-02 5.88497D-02 + 33 2.69029D-08 3.30793D-01 -9.71395D-09 -4.22991D-08 2.33314D-01 -3.00297D-08 1.49668D-08 6.16229D-01 -4.95625D-08 2.19854D-08 + 34 -7.18467D-02 1.56748D-09 -4.12613D-01 7.86901D-02 5.92519D-08 1.04035D-01 -2.78333D+00 -3.48883D-08 4.47298D-01 5.82617D-01 + 35 8.43326D-01 4.64321D-08 5.21430D-01 5.69991D-01 -8.60247D-10 -1.77407D+00 -2.09789D+00 -8.88348D-08 -5.98275D-01 4.39618D-01 + 36 -2.82490D-08 5.74224D-01 2.33672D-08 -2.50331D-08 6.16229D-01 5.09766D-09 3.52982D-08 2.33314D-01 3.61894D-08 -5.74725D-10 + 37 7.03134D-01 -1.24071D-07 1.99774D-01 2.69222D-02 1.32849D-07 -3.35609D-02 -5.88793D-03 3.47901D-07 3.12815D-02 -5.09043D-02 + 38 5.12788D-01 2.81412D-08 5.21480D-01 -1.52950D+00 3.22233D-08 3.62207D-02 4.48825D-02 -4.78642D-08 1.58147D-02 -4.62618D-01 + 39 -7.21141D-08 -2.57774D-01 -4.04678D-08 3.66337D-08 7.12795D-01 8.47751D-08 -4.11127D-08 -1.85659D-02 1.27396D-07 4.43968D-08 + 40 4.66831D-02 9.04168D-08 -3.35609D-02 -5.88777D-03 -2.36257D-07 1.99774D-01 2.69220D-02 -3.87397D-08 8.13104D-02 -4.00807D-01 + 41 7.80113D-02 -4.35399D-08 3.62207D-02 4.48825D-02 5.67814D-08 5.21480D-01 -1.52949D+00 4.65480D-09 5.12163D-01 -1.03139D-01 + 42 -1.93354D-07 8.06063D-03 -1.56172D-07 6.02987D-08 -1.85659D-02 -3.79910D-08 4.30811D-08 7.12795D-01 -1.59951D-07 -1.16441D-07 + 43 -5.92808D-01 2.45637D-08 -4.20945D-01 -4.30101D-01 -1.75400D-08 1.64426D-01 1.25538D-01 -6.18817D-08 -1.97032D-03 -7.01501D-03 + 44 2.41085D-01 -2.21956D-08 5.28371D-01 3.25540D-01 -1.18374D-08 -7.33009D-02 -2.66601D-01 5.39941D-08 -4.09923D-03 1.63567D-02 + 45 -5.06182D-08 1.18657D-01 1.79158D-08 1.64535D-08 3.63869D-02 -3.65039D-09 2.24979D-08 -8.64022D-03 4.35411D-08 -1.77699D-08 + 46 2.46812D-01 3.99414D-08 1.64425D-01 1.25538D-01 3.49139D-09 -4.20945D-01 -4.30100D-01 -4.35612D-08 4.85886D-02 -8.46606D-02 + 47 -1.41703D-01 2.60627D-08 -7.33009D-02 -2.66601D-01 -5.59302D-08 5.28371D-01 3.25540D-01 2.29521D-08 -2.88791D-02 -1.86665D-02 + 48 1.50268D-09 -3.69301D-02 -2.67911D-08 -1.16431D-08 -8.64022D-03 -4.40320D-08 -2.25001D-08 3.63869D-02 8.33967D-09 1.23063D-08 + 49 -4.34142D-02 -1.65954D-07 1.44244D-01 -3.12555D-01 -7.63349D-08 -5.14895D-02 1.27553D-02 3.68577D-07 -1.01108D-03 -2.54821D-02 + 50 4.50887D-03 -6.81159D-08 3.79823D-01 -3.85826D-01 -2.98690D-08 -3.79506D-02 1.58714D-02 1.29602D-07 -2.42382D-02 -3.63246D-02 + 51 -8.67536D-09 6.97688D-03 -6.93827D-08 -1.64797D-08 4.39838D-02 4.54972D-09 8.91688D-08 8.28467D-02 -2.75906D-07 1.94346D-07 + 52 -1.06061D-02 -1.49199D-08 -5.14892D-02 1.27557D-02 -2.45861D-07 1.44244D-01 -3.12556D-01 1.57995D-07 -3.56624D-02 -2.79762D-02 + 53 4.95096D-02 -7.53444D-08 -3.79505D-02 1.58716D-02 6.54560D-09 3.79822D-01 -3.85826D-01 1.74050D-07 -7.66773D-02 8.44602D-02 + 54 6.91692D-08 4.25911D-02 7.00479D-09 -5.91621D-08 8.28466D-02 7.87494D-08 -3.13881D-08 4.39838D-02 2.28361D-07 3.64646D-07 + 55 2.66660D-01 -1.49904D-07 -1.59043D-01 -5.00094D-02 2.28411D-07 -7.66038D-02 2.12922D-02 1.71877D-07 5.99663D-03 4.39783D-02 + 56 -1.13261D-01 -1.74617D-08 6.37264D-02 1.36143D-01 1.53197D-07 1.21671D-01 -5.72765D-02 -1.21481D-07 1.12237D-02 -1.44050D-02 + 57 5.62248D-08 1.57019D-03 -4.67587D-08 -4.26873D-08 -1.25471D-01 1.48625D-08 5.21638D-08 -2.59541D-01 -3.95877D-08 1.62455D-07 + 58 -4.82275D-03 9.97216D-08 -7.66037D-02 2.12921D-02 -1.28010D-07 -1.59043D-01 -5.00093D-02 -2.27831D-07 3.78133D-02 4.79183D-03 + 59 4.17090D-03 3.51662D-09 1.21670D-01 -5.72769D-02 9.03983D-08 6.37264D-02 1.36143D-01 -1.74884D-07 9.02780D-02 -2.31254D-02 + 60 -4.57273D-08 -8.72594D-02 -1.79337D-08 -2.80237D-08 -2.59541D-01 3.28212D-08 4.24850D-08 -1.25471D-01 7.99037D-08 2.65791D-07 21 22 23 24 25 26 27 28 29 30 ----- ----- ----- ----- ----- - 21 2.81961D+01 - 22 -3.85697D-06 3.73229D+02 - 23 -1.87516D-06 1.13653D+02 1.06907D+02 - 24 -1.06880D+00 -1.09896D-06 7.89304D-07 2.81961D+01 - 25 -1.54363D-06 -7.96362D-01 1.12271D+00 -4.30416D-06 2.76988D+02 - 26 1.00298D-06 -6.72836D-01 6.03031D-01 2.92119D-06 -1.73685D+02 2.07218D+02 - 27 -5.03818D+00 -1.05368D-06 -3.48507D-07 1.20608D-01 1.35019D-06 -1.53911D-06 2.74429D+01 - 28 1.35492D-06 1.16143D+00 1.61929D-02 -1.85842D-06 -5.31212D-02 2.33573D-01 9.71077D-07 2.76988D+02 - 29 -1.75930D-07 1.88304D-01 1.85993D+00 1.10962D-06 2.33651D-01 -2.64173D-02 -1.46293D-06 -1.73685D+02 2.07218D+02 - 30 1.20606D-01 -3.53417D-07 -9.84964D-08 -5.03818D+00 9.87118D-07 -9.90698D-07 -1.20434D+00 4.20875D-07 -4.45099D-07 2.74429D+01 - 31 -1.02575D-08 4.47104D-01 5.82674D-01 9.64294D-07 3.57393D-01 3.21283D-01 -5.94185D-07 1.36512D-01 3.94727D-01 -9.29065D-07 - 32 2.34853D-08 -5.98814D-01 4.39545D-01 -6.59420D-07 4.86147D-01 -1.22356D-02 5.65178D-07 -6.70173D-02 -9.50459D-02 1.20973D-07 - 33 3.84166D-02 1.86591D-06 -4.60886D-07 -1.10633D+00 8.85102D-07 -1.02810D-06 -1.13012D+00 9.50907D-07 -3.30583D-07 1.65281D-02 - 34 6.47479D-07 2.30234D-02 -4.43217D-01 2.67811D-06 1.36511D-01 3.94731D-01 -9.50038D-07 3.57392D-01 3.21286D-01 -1.15609D-06 - 35 -1.42768D-06 2.36453D-02 5.90084D-02 -2.95175D-06 -6.70254D-02 -9.50478D-02 1.63110D-06 4.86144D-01 -1.22327D-02 1.16196D-06 - 36 -1.10633D+00 2.47258D-06 -4.59722D-07 3.84161D-02 1.47549D-06 -4.27674D-07 1.65276D-02 1.08390D-06 -2.99837D-07 -1.13012D+00 - 37 8.32944D-07 8.13340D-02 -4.01135D-01 -1.86899D-06 1.17070D-01 4.78759D-02 5.76282D-07 1.29290D-02 2.27398D-02 2.95486D-07 - 38 -4.65430D-08 5.12798D-01 -1.03016D-01 5.63367D-07 5.57839D-03 -5.55430D-03 -4.80639D-07 1.25033D-02 -8.22230D-04 -3.14643D-07 - 39 -2.14984D-01 -5.47429D-07 1.88722D-07 -6.38083D-02 -6.27848D-07 7.52935D-07 -8.47782D-02 -1.21205D-06 3.60750D-07 3.52267D-02 - 40 -1.87672D-06 3.12357D-02 -5.08967D-02 -4.78684D-06 1.29254D-02 2.27420D-02 1.46357D-06 1.17065D-01 4.78683D-02 1.55150D-06 - 41 1.34799D-06 1.57430D-02 -4.62683D-01 2.19558D-06 1.25029D-02 -8.17432D-04 -9.14909D-07 5.58137D-03 -5.55544D-03 -8.42618D-07 - 42 -6.38083D-02 -1.39252D-06 4.37728D-07 -2.14984D-01 -9.13924D-07 -1.89233D-07 3.52269D-02 -1.06950D-06 2.27735D-07 -8.47788D-02 - 43 -5.17697D-07 4.87599D-02 -8.45856D-02 -7.39870D-07 1.14401D-02 -5.88803D-01 7.76972D-07 -2.18566D-02 -8.94084D-02 4.63142D-07 - 44 5.31469D-07 -2.87210D-02 -1.87176D-02 -1.70090D-07 1.08719D-01 -2.98880D-01 -2.13694D-07 -3.64150D-02 -1.01195D-01 -1.50632D-08 - 45 8.38545D-03 -2.41023D-07 5.43216D-08 3.43218D-02 1.49868D-07 -2.37665D-07 6.87732D-02 8.65838D-08 1.74513D-08 -3.27507D-02 - 46 -4.47448D-07 -1.96939D-03 -7.02252D-03 -9.90250D-07 -2.18574D-02 -8.94026D-02 1.37758D-06 1.14386D-02 -5.88801D-01 3.57912D-07 - 47 6.08374D-07 -4.11383D-03 1.62808D-02 -1.39818D-07 -3.64246D-02 -1.01198D-01 -2.41365D-09 1.08717D-01 -2.98877D-01 2.13445D-08 - 48 3.43223D-02 -9.24626D-07 2.01773D-07 8.38528D-03 -5.50679D-07 2.81169D-07 -3.27498D-02 -9.01555D-07 1.92077D-07 6.87720D-02 - 49 1.30958D-06 -3.58595D-02 -2.80531D-02 -7.22437D-07 5.18780D-01 -2.74637D-01 7.79640D-07 -4.31980D-04 -1.74685D-02 3.56867D-07 - 50 1.34404D-07 -7.67975D-02 8.44715D-02 8.07292D-07 -7.23796D-01 -1.66381D+00 -1.35297D-06 5.84046D-03 -6.00743D-03 -7.50794D-07 - 51 9.81445D-03 -9.88829D-07 5.46144D-07 -8.39680D-02 3.08851D-07 4.39739D-07 3.37720D-01 -6.82587D-07 -7.62835D-08 -1.96936D-02 - 52 9.97592D-07 -1.16278D-03 -2.53748D-02 -1.65572D-06 -4.37504D-04 -1.74691D-02 1.77670D-07 5.18770D-01 -2.74648D-01 4.92829D-07 - 53 -1.61895D-07 -2.42299D-02 -3.62611D-02 2.46701D-07 5.84053D-03 -6.00405D-03 -8.05749D-07 -7.23797D-01 -1.66382D+00 -3.31472D-08 - 54 -8.39673D-02 -5.46579D-08 4.20023D-07 9.81570D-03 7.43076D-08 -3.46557D-07 -1.96950D-02 -1.29822D-07 -1.53805D-07 3.37719D-01 - 55 4.75808D-07 3.78611D-02 4.75449D-03 1.68634D-06 3.23829D-01 2.53862D-01 -7.99422D-07 4.05341D-02 1.06343D-01 -4.86060D-07 - 56 -7.21004D-07 9.06757D-02 -2.30136D-02 1.60994D-06 3.14878D-02 1.24593D-01 -1.45758D-06 -3.80226D-02 -5.95170D-02 -8.26960D-07 - 57 3.83270D-03 1.38691D-06 1.04380D-07 3.26081D-01 1.28415D-06 -9.15581D-08 1.25379D-01 4.62237D-07 9.83534D-08 1.39346D-02 - 58 1.15345D-06 6.05410D-03 4.39661D-02 1.11808D-06 4.05271D-02 1.06349D-01 -1.16623D-06 3.23820D-01 2.53856D-01 -1.12070D-06 - 59 -2.96304D-07 1.13522D-02 -1.45100D-02 2.25514D-06 -3.80350D-02 -5.95200D-02 -1.23817D-06 3.14906D-02 1.24595D-01 -8.75985D-07 - 60 3.26082D-01 2.11534D-06 2.15082D-08 3.83305D-03 1.28414D-06 -9.05506D-07 1.39343D-02 1.14029D-06 -1.40377D-07 1.25379D-01 + 21 2.81963D+01 + 22 -5.32080D-07 3.73232D+02 + 23 -5.56793D-08 1.13654D+02 1.06907D+02 + 24 -1.06876D+00 2.38300D-07 1.33008D-07 2.81963D+01 + 25 -2.48979D-08 -7.95668D-01 1.12280D+00 -1.02522D-07 2.76990D+02 + 26 5.36665D-08 -6.72935D-01 6.03017D-01 9.91207D-08 -1.73687D+02 2.07219D+02 + 27 -5.03816D+00 -2.77767D-07 -1.74443D-07 1.20769D-01 1.39331D-07 1.04346D-07 2.74434D+01 + 28 2.09102D-07 1.16150D+00 1.57827D-02 1.27303D-07 -5.32475D-02 2.33621D-01 -2.64644D-07 2.76990D+02 + 29 -5.21919D-08 1.88579D-01 1.86030D+00 5.93512D-08 2.33619D-01 -2.63634D-02 3.52096D-07 -1.73687D+02 2.07219D+02 + 30 1.20769D-01 1.59361D-07 -7.63172D-08 -5.03816D+00 1.13578D-07 -4.66352D-08 -1.20447D+00 -2.40794D-07 -3.93542D-08 2.74434D+01 + 31 -8.02864D-08 4.47298D-01 5.82616D-01 -1.00004D-07 3.57239D-01 3.21426D-01 -1.16525D-07 1.36519D-01 3.94604D-01 5.98919D-08 + 32 4.81939D-09 -5.98274D-01 4.39619D-01 -5.31329D-08 4.85930D-01 -1.20193D-02 -3.75249D-08 -6.70919D-02 -9.51050D-02 1.21022D-07 + 33 3.84125D-02 -1.19191D-08 -1.61846D-08 -1.10639D+00 -2.32215D-08 1.22082D-08 -1.13016D+00 2.92669D-08 2.42657D-08 1.66746D-02 + 34 6.25882D-08 2.31111D-02 -4.43197D-01 -1.50911D-08 1.36520D-01 3.94605D-01 2.02596D-08 3.57240D-01 3.21427D-01 1.53694D-07 + 35 3.30005D-08 2.37103D-02 5.88501D-02 -2.36186D-08 -6.70924D-02 -9.51056D-02 -1.62759D-07 4.85930D-01 -1.20187D-02 1.88477D-08 + 36 -1.10639D+00 5.71692D-08 2.42650D-08 3.84124D-02 1.47409D-08 -5.21945D-08 1.66746D-02 8.84581D-08 3.29649D-09 -1.13016D+00 + 37 2.03957D-07 8.13097D-02 -4.00806D-01 1.02690D-07 1.17211D-01 4.78888D-02 4.38575D-07 1.29611D-02 2.27406D-02 1.81443D-07 + 38 7.80257D-08 5.12163D-01 -1.03139D-01 2.85733D-08 5.77979D-03 -5.69321D-03 8.36415D-08 1.25204D-02 -8.50400D-04 7.17188D-08 + 39 -2.14984D-01 1.11842D-07 9.56824D-08 -6.37001D-02 5.38427D-08 -8.10545D-08 -8.45826D-02 -1.23955D-07 3.68389D-08 3.51816D-02 + 40 5.76566D-08 3.12819D-02 -5.09032D-02 -5.08117D-08 1.29610D-02 2.27400D-02 -1.54791D-08 1.17211D-01 4.78892D-02 -2.59746D-07 + 41 -7.10918D-08 1.58137D-02 -4.62618D-01 -4.38901D-08 1.25205D-02 -8.50168D-04 -3.20809D-08 5.77960D-03 -5.69334D-03 -6.24059D-08 + 42 -6.37001D-02 -1.04035D-07 -3.63980D-08 -2.14984D-01 1.24296D-07 3.53027D-08 3.51816D-02 -4.71663D-08 2.56291D-08 -8.45825D-02 + 43 3.54154D-08 4.85884D-02 -8.46606D-02 5.52094D-08 1.15826D-02 -5.88975D-01 -5.42913D-08 -2.18474D-02 -8.93711D-02 -6.18260D-08 + 44 5.43137D-08 -2.88793D-02 -1.86665D-02 4.65883D-09 1.08853D-01 -2.98777D-01 9.23453D-08 -3.64270D-02 -1.01150D-01 -1.13111D-08 + 45 8.24963D-03 2.60187D-08 -1.18695D-09 3.45079D-02 4.68389D-08 -2.51764D-08 6.88313D-02 7.63817D-08 -5.18839D-08 -3.27958D-02 + 46 -1.13086D-08 -1.97027D-03 -7.01482D-03 -3.46394D-09 -2.18473D-02 -8.93712D-02 -2.75064D-08 1.15824D-02 -5.88975D-01 2.49764D-08 + 47 8.32780D-08 -4.09961D-03 1.63570D-02 4.41071D-08 -3.64272D-02 -1.01150D-01 1.36742D-08 1.08853D-01 -2.98777D-01 -4.04373D-08 + 48 3.45079D-02 -2.89424D-09 2.19822D-08 8.24964D-03 -1.16849D-08 2.61819D-08 -3.27957D-02 2.57339D-08 2.09549D-08 6.88313D-02 + 49 1.71381D-07 -3.56629D-02 -2.79750D-02 4.57679D-08 5.18806D-01 -2.74663D-01 2.96203D-07 -2.59171D-04 -1.74626D-02 -1.05615D-07 + 50 7.77387D-08 -7.66782D-02 8.44603D-02 -4.41407D-09 -7.23542D-01 -1.66405D+00 8.58078D-08 5.88825D-03 -5.98180D-03 -2.04161D-07 + 51 9.82933D-03 -1.98194D-07 -2.35570D-07 -8.40520D-02 2.59366D-07 -1.38623D-08 3.37401D-01 -1.47641D-07 1.51508D-08 -1.96349D-02 + 52 1.28174D-07 -1.00990D-03 -2.54806D-02 5.13358D-09 -2.59447D-04 -1.74631D-02 2.43536D-07 5.18807D-01 -2.74663D-01 -2.30482D-07 + 53 4.17887D-08 -2.42382D-02 -3.63245D-02 7.43132D-09 5.88838D-03 -5.98153D-03 2.91565D-07 -7.23542D-01 -1.66405D+00 1.12955D-08 + 54 -8.40520D-02 2.38392D-07 -9.71133D-08 9.82937D-03 1.93883D-07 -1.21898D-07 -1.96350D-02 -2.93767D-07 -3.07666D-08 3.37401D-01 + 55 -1.29338D-07 3.78122D-02 4.79166D-03 -2.59322D-08 3.23485D-01 2.53984D-01 6.03967D-08 4.04745D-02 1.06327D-01 1.13896D-07 + 56 -1.59082D-07 9.02774D-02 -2.31253D-02 -1.06650D-08 3.14445D-02 1.24388D-01 -1.74695D-07 -3.81309D-02 -5.95695D-02 1.06843D-07 + 57 4.13063D-03 -9.18877D-08 -1.29388D-07 3.25722D-01 1.89696D-07 -6.79021D-08 1.25434D-01 -1.27999D-07 -1.10831D-08 1.38572D-02 + 58 -8.86298D-08 5.99758D-03 4.39794D-02 4.14831D-08 4.04745D-02 1.06327D-01 -1.12046D-07 3.23485D-01 2.53984D-01 -1.86139D-08 + 59 -1.33972D-07 1.12222D-02 -1.44051D-02 -6.19218D-09 -3.81315D-02 -5.95695D-02 -1.95381D-07 3.14442D-02 1.24388D-01 1.31483D-07 + 60 3.25722D-01 7.91706D-08 -7.75393D-08 4.13062D-03 1.19747D-07 -5.32599D-08 1.38572D-02 -2.08327D-07 1.14591D-08 1.25434D-01 31 32 33 34 35 36 37 38 39 40 ----- ----- ----- ----- ----- - 31 7.32549D+01 - 32 -1.18227D+01 6.42685D+01 - 33 8.49161D-07 -1.08428D-07 1.15300D+01 - 34 -1.46470D-02 -7.57683D-02 -1.98747D-06 7.32549D+01 - 35 -7.57426D-02 2.73118D-01 2.11424D-06 -1.18227D+01 6.42685D+01 - 36 8.84168D-07 9.59496D-08 -8.41887D-02 6.56417D-07 3.96933D-07 1.15300D+01 - 37 -1.09713D+02 -2.12666D+01 5.68074D-07 1.20757D-02 3.18983D-03 -1.02561D-06 3.92884D+02 - 38 -2.21070D+01 -2.37594D+01 -1.99537D-07 4.02468D-02 8.25088D-03 -1.06812D-07 7.49281D+01 8.59877D+01 - 39 -1.66102D-07 -5.49854D-08 -1.27675D+01 1.01025D-06 -1.00553D-06 -4.96151D-03 -5.86108D-07 4.24599D-07 2.99943D+01 - 40 1.20763D-02 3.19885D-03 3.83825D-06 -1.09713D+02 -2.12666D+01 1.18337D-06 2.00496D-03 -4.19242D-03 -3.70101D-06 3.92884D+02 - 41 4.02421D-02 8.24914D-03 -1.71774D-06 -2.21070D+01 -2.37594D+01 -1.16687D-06 -4.15598D-03 2.75706D-03 1.43453D-06 7.49281D+01 - 42 -5.14534D-08 -4.51403D-07 -4.96125D-03 -5.07977D-07 -1.35040D-07 -1.27675D+01 5.68203D-07 1.63968D-07 2.11275D-02 5.45508D-07 - 43 -3.08025D+01 1.93768D+01 4.65911D-07 5.00396D-04 1.00101D-01 4.67981D-07 -4.51976D+00 9.25893D+00 -4.23759D-07 -2.23447D-03 - 44 2.12261D+01 -3.26592D+01 -6.21320D-08 3.89186D-02 -8.43411D-02 -8.72983D-07 -2.77674D+00 2.37411D+00 -1.62286D-07 -5.50010D-03 - 45 -6.43024D-07 1.51308D-07 -4.37930D+00 1.19935D-07 -3.19515D-07 7.23455D-03 9.68225D-07 -2.30690D-07 1.64763D+00 4.76703D-07 - 46 5.00690D-04 1.00105D-01 1.06825D-06 -3.08025D+01 1.93768D+01 4.80925D-07 -2.23307D-03 -9.42301D-03 -1.23424D-07 -4.51976D+00 - 47 3.89142D-02 -8.43406D-02 1.22752D-07 2.12261D+01 -3.26592D+01 -7.66936D-07 -5.51198D-03 -1.90124D-02 -3.29522D-08 -2.77674D+00 - 48 -5.44902D-07 2.89320D-08 7.23492D-03 -3.77667D-07 -8.17076D-08 -4.37930D+00 1.13832D-06 9.93344D-09 1.27797D-03 4.04103D-08 - 49 -3.93663D+00 -2.31343D+00 8.70991D-07 5.07819D-02 2.47331D-02 -1.49743D-06 -5.74623D-01 2.24439D+00 -3.67407D-08 -5.84811D-03 - 50 8.58377D+00 3.32944D+00 -8.57610D-07 -8.68973D-03 4.15723D-03 -7.71435D-07 2.12014D+00 -3.71502D+00 2.98128D-07 2.60743D-03 - 51 -4.77605D-07 -6.00958D-10 1.37786D+00 5.20731D-07 -7.22665D-07 1.79133D-02 8.57790D-07 -7.25327D-08 1.39451D+01 -1.28964D-06 - 52 5.07832D-02 2.47405D-02 1.81455D-06 -3.93663D+00 -2.31344D+00 -1.50676D-06 -5.85126D-03 -2.64575D-02 -1.03564D-06 -5.74624D-01 - 53 -8.69180D-03 4.15814D-03 2.27927D-07 8.58377D+00 3.32945D+00 -6.37499D-08 2.61431D-03 -6.80624D-03 -1.22190D-07 2.12013D+00 - 54 -6.43218D-07 7.59149D-08 1.79120D-02 -3.33051D-07 -9.38644D-08 1.37786D+00 7.74124D-07 -3.26551D-07 2.13215D-03 -4.96983D-08 - 55 2.84549D+00 8.23571D+00 -2.15206D-06 -1.92890D-02 -1.25324D-02 5.89122D-07 1.91406D+00 -5.13150D-02 9.37030D-07 1.56245D-02 - 56 -3.57307D+00 -4.53312D+00 -1.93888D-06 -2.94184D-02 -1.53450D-02 1.50974D-06 -1.40544D-01 1.64588D+00 6.03704D-07 1.35720D-03 - 57 5.33395D-07 3.29062D-09 1.61596D+00 1.62078D-06 -7.33992D-07 -4.04399D-03 -2.54272D-06 2.38306D-07 -9.21242D+00 -1.80829D-06 - 58 -1.92879D-02 -1.25213D-02 -1.67044D-06 2.84549D+00 8.23571D+00 -5.59771D-07 1.56259D-02 1.42903D-02 8.21250D-07 1.91405D+00 - 59 -2.94269D-02 -1.53443D-02 -2.23263D-06 -3.57307D+00 -4.53312D+00 1.03766D-06 1.34671D-03 1.19205D-02 1.33879D-06 -1.40546D-01 - 60 4.88471D-07 -5.67376D-08 -4.04456D-03 -1.84157D-07 5.58255D-07 1.61596D+00 -1.28747D-06 -2.84430D-07 1.63979D-02 -1.38598D-07 + 31 7.32551D+01 + 32 -1.18227D+01 6.42682D+01 + 33 8.26488D-08 -4.67030D-08 1.15294D+01 + 34 -1.45585D-02 -7.58459D-02 -1.66936D-08 7.32550D+01 + 35 -7.58431D-02 2.73109D-01 -7.88901D-09 -1.18227D+01 6.42682D+01 + 36 1.31416D-08 -2.33035D-08 -8.41952D-02 -2.27566D-07 8.50862D-08 1.15294D+01 + 37 -1.09714D+02 -2.12668D+01 2.29413D-08 1.19695D-02 3.17050D-03 1.26455D-07 3.92887D+02 + 38 -2.21073D+01 -2.37593D+01 2.25123D-08 4.03139D-02 8.20000D-03 2.85430D-08 7.49289D+01 8.59875D+01 + 39 -5.03080D-09 9.29416D-08 -1.27671D+01 -5.36127D-09 -4.61532D-08 -5.09814D-03 1.01594D-07 2.63112D-08 2.99937D+01 + 40 1.19699D-02 3.17145D-03 -1.72342D-08 -1.09714D+02 -2.12668D+01 1.08732D-07 1.83715D-03 -4.18795D-03 -1.15444D-07 3.92887D+02 + 41 4.03132D-02 8.19972D-03 -2.31065D-08 -2.21073D+01 -2.37593D+01 -1.66013D-08 -4.18729D-03 2.71780D-03 2.74603D-08 7.49289D+01 + 42 -6.32921D-09 8.29045D-08 -5.09814D-03 6.02007D-08 -9.76333D-08 -1.27671D+01 8.84714D-08 -8.62027D-08 2.12162D-02 -8.59416D-08 + 43 -3.08024D+01 1.93767D+01 -2.18687D-08 4.91595D-04 1.00159D-01 -3.16290D-08 -4.52040D+00 9.25890D+00 6.28666D-08 -2.10596D-03 + 44 2.12256D+01 -3.26593D+01 3.80000D-08 3.89336D-02 -8.43458D-02 -7.62673D-09 -2.77523D+00 2.37426D+00 -4.72371D-08 -5.60318D-03 + 45 -3.36937D-11 -1.97949D-08 -4.37979D+00 2.87889D-09 4.24806D-08 7.21893D-03 4.88042D-08 -1.45041D-08 1.64765D+00 1.41241D-08 + 46 4.91673D-04 1.00159D-01 1.81734D-08 -3.08024D+01 1.93767D+01 3.71297D-08 -2.10605D-03 -9.48199D-03 2.39444D-08 -4.52040D+00 + 47 3.89336D-02 -8.43458D-02 1.62397D-08 2.12256D+01 -3.26593D+01 3.76638D-10 -5.60355D-03 -1.90099D-02 -6.91154D-08 -2.77523D+00 + 48 2.15976D-09 -3.61937D-08 7.21893D-03 3.50854D-08 2.12524D-08 -4.37979D+00 -2.62477D-08 3.49209D-08 1.35104D-03 -4.04795D-08 + 49 -3.93652D+00 -2.31294D+00 2.72144D-09 5.06804D-02 2.47853D-02 7.06855D-08 -5.74257D-01 2.24398D+00 -9.08556D-09 -5.90956D-03 + 50 8.58379D+00 3.32975D+00 -1.64573D-08 -8.69966D-03 4.14707D-03 -1.36861D-08 2.11919D+00 -3.71534D+00 -4.63997D-08 2.62258D-03 + 51 1.65634D-08 7.78528D-08 1.37877D+00 -1.34159D-08 3.55259D-09 1.78808D-02 -2.99143D-07 -1.50358D-07 1.39446D+01 4.01196D-07 + 52 5.06808D-02 2.47863D-02 -9.46469D-09 -3.93652D+00 -2.31294D+00 1.35183D-07 -5.90941D-03 -2.65149D-02 2.68654D-08 -5.74257D-01 + 53 -8.69999D-03 4.14725D-03 5.35754D-08 8.58379D+00 3.32975D+00 9.50572D-08 2.62297D-03 -6.83704D-03 1.56974D-07 2.11919D+00 + 54 7.40685D-08 6.20633D-08 1.78808D-02 1.07132D-07 -4.64012D-08 1.37877D+00 -4.15115D-07 -1.24557D-07 1.99040D-03 2.18019D-07 + 55 2.84552D+00 8.23532D+00 -4.08446D-08 -1.92408D-02 -1.25967D-02 -8.37163D-08 1.91452D+00 -5.08784D-02 -4.37961D-08 1.54756D-02 + 56 -3.57282D+00 -4.53345D+00 -2.23281D-08 -2.93012D-02 -1.54395D-02 -7.51314D-09 -1.41106D-01 1.64625D+00 2.66188D-08 1.36372D-03 + 57 -1.58787D-08 8.43508D-08 1.61674D+00 -6.23179D-08 -4.24843D-08 -4.00647D-03 -2.55858D-07 -1.12396D-07 -9.21250D+00 3.23269D-07 + 58 -1.92409D-02 -1.25952D-02 1.48071D-08 2.84552D+00 8.23532D+00 6.02274D-08 1.54760D-02 1.43629D-02 4.22612D-08 1.91452D+00 + 59 -2.93025D-02 -1.54394D-02 -7.57775D-08 -3.57282D+00 -4.53345D+00 -3.71304D-08 1.36287D-03 1.19701D-02 6.96415D-08 -1.41107D-01 + 60 7.23423D-08 1.07851D-07 -4.00651D-03 1.44388D-07 -8.77973D-08 1.61674D+00 -3.67792D-07 -1.43393D-07 1.64976D-02 1.69389D-07 41 42 43 44 45 46 47 48 49 50 ----- ----- ----- ----- ----- - 41 8.59877D+01 - 42 1.92313D-07 2.99943D+01 - 43 -9.42642D-03 -3.08167D-07 7.25687D+01 - 44 -1.90151D-02 6.29263D-07 -8.85207D+00 7.42911D+01 - 45 -3.42708D-07 1.27814D-03 -1.98338D-07 2.74632D-07 9.49458D+00 - 46 9.25894D+00 -5.04456D-07 2.22920D-02 -4.09686D-02 -1.20270D-06 7.25687D+01 - 47 2.37411D+00 5.98297D-07 -4.09418D-02 1.72861D-02 -2.27524D-07 -8.85207D+00 7.42911D+01 - 48 1.69698D-07 1.64763D+00 -2.19218D-07 4.73844D-07 7.75353D-04 1.60824D-07 2.46046D-07 9.49458D+00 - 49 -2.64525D-02 4.49780D-07 -1.15041D+02 -1.70499D+01 -1.63267D-06 -2.14511D-02 -2.96672D-02 1.65711D-06 4.10720D+02 - 50 -6.79957D-03 -4.17346D-07 -1.76173D+01 -2.32515D+01 4.31111D-07 -5.08290D-04 1.49916D-03 1.37443D-06 6.01946D+01 7.17922D+01 - 51 8.70554D-07 2.13175D-03 4.45770D-08 3.48958D-07 -1.11463D+01 7.47779D-07 2.99284D-07 -3.00395D-03 2.49744D-06 1.23152D-07 - 52 2.24438D+00 7.42899D-07 -2.14511D-02 -2.96568D-02 -2.01695D-06 -1.15041D+02 -1.70499D+01 8.41565D-07 -6.56829D-02 -5.16637D-03 - 53 -3.71502D+00 -3.23972D-07 -5.10599D-04 1.50161D-03 -6.74887D-07 -1.76173D+01 -2.32515D+01 4.74053D-08 -5.18592D-03 -3.55036D-03 - 54 1.91805D-08 1.39451D+01 -6.47532D-08 4.40170D-07 -3.00238D-03 -3.44938D-07 2.23768D-07 -1.11463D+01 -4.58084D-07 -1.03078D-06 - 55 1.42905D-02 -4.76099D-08 -2.89080D+01 -2.92937D+01 1.95148D-06 1.07542D-02 1.31029D-02 -7.24047D-07 -1.13385D+00 -2.96588D+01 - 56 1.19194D-02 -9.02130D-07 -2.83534D+01 -1.09346D+02 1.88180D-06 1.10168D-02 1.32928D-02 -1.85967D-06 7.45945D+00 1.82223D+00 - 57 8.73202D-07 1.63974D-02 1.21362D-07 -9.09099D-07 -1.02012D+01 3.26761D-08 -3.95900D-07 -2.76773D-03 1.58358D-07 1.01700D-06 - 58 -5.13161D-02 8.32296D-07 1.07523D-02 1.31190D-02 3.54975D-06 -2.89080D+01 -2.92937D+01 -2.09049D-07 3.01357D-02 -3.94891D-04 - 59 1.64588D+00 -6.61753D-07 1.10068D-02 1.32934D-02 2.87934D-06 -2.83533D+01 -1.09346D+02 -1.16494D-06 3.03136D-02 3.91042D-03 - 60 1.44161D-08 -9.21242D+00 1.32704D-07 -6.56811D-07 -2.76780D-03 -1.22118D-06 -4.17246D-07 -1.02012D+01 -2.04666D-06 -1.60851D-07 + 41 8.59875D+01 + 42 1.34798D-08 2.99937D+01 + 43 -9.48198D-03 5.79359D-08 7.25691D+01 + 44 -1.90100D-02 3.75182D-08 -8.85240D+00 7.42920D+01 + 45 5.09673D-09 1.35103D-03 -7.04103D-08 4.40174D-08 9.49621D+00 + 46 9.25890D+00 3.64819D-08 2.22327D-02 -4.09563D-02 9.00143D-10 7.25691D+01 + 47 2.37426D+00 8.11468D-08 -4.09560D-02 1.72744D-02 -1.40590D-08 -8.85240D+00 7.42920D+01 + 48 3.60562D-08 1.64765D+00 1.34799D-08 2.78713D-08 8.62527D-04 3.11661D-08 -1.40491D-07 9.49621D+00 + 49 -2.65148D-02 -1.26667D-07 -1.15042D+02 -1.70493D+01 4.34896D-08 -2.14058D-02 -2.96515D-02 -6.03901D-08 4.10722D+02 + 50 -6.83693D-03 -2.12329D-07 -1.76173D+01 -2.32520D+01 -3.67448D-08 -4.96068D-04 1.52084D-03 2.32483D-08 6.01951D+01 7.17929D+01 + 51 8.25535D-08 1.99039D-03 9.46193D-08 -5.53467D-08 -1.11479D+01 -1.15643D-07 -6.46022D-09 -2.99346D-03 6.13556D-08 1.98598D-07 + 52 2.24398D+00 -1.62892D-07 -2.14061D-02 -2.96512D-02 1.48419D-08 -1.15042D+02 -1.70493D+01 -7.14459D-08 -6.55011D-02 -5.10955D-03 + 53 -3.71534D+00 -4.03543D-08 -4.96199D-04 1.52081D-03 -3.55106D-08 -1.76173D+01 -2.32520D+01 3.68388D-08 -5.11058D-03 -3.54012D-03 + 54 1.16570D-07 1.39446D+01 3.95709D-08 -4.08327D-08 -2.99348D-03 -1.78013D-07 9.84740D-08 -1.11479D+01 -1.54352D-07 9.49989D-08 + 55 1.43624D-02 1.87300D-09 -2.89083D+01 -2.92937D+01 7.13300D-08 1.07988D-02 1.30958D-02 9.75937D-09 -1.13405D+00 -2.96585D+01 + 56 1.19696D-02 9.65344D-09 -2.83531D+01 -1.09348D+02 -2.50723D-09 1.09918D-02 1.33373D-02 2.75213D-08 7.45814D+00 1.82241D+00 + 57 1.30687D-07 1.64975D-02 1.21210D-07 -9.26911D-08 -1.02031D+01 -4.53927D-08 -1.94415D-08 -2.85164D-03 -3.59456D-08 1.54741D-07 + 58 -5.08783D-02 9.59838D-08 1.07989D-02 1.30961D-02 1.34400D-09 -2.89083D+01 -2.92937D+01 1.48473D-08 3.00003D-02 -3.60580D-04 + 59 1.64625D+00 1.09808D-07 1.09917D-02 1.33370D-02 3.39709D-08 -2.83531D+01 -1.09348D+02 7.19122D-08 3.00253D-02 3.83244D-03 + 60 9.43141D-08 -9.21250D+00 -2.47219D-08 -5.60326D-08 -2.85161D-03 -1.16448D-07 1.10343D-07 -1.02031D+01 3.04679D-08 1.78875D-07 51 52 53 54 55 56 57 58 59 60 ----- ----- ----- ----- ----- - 51 2.48962D+01 - 52 3.26534D-06 4.10720D+02 - 53 7.45859D-07 6.01946D+01 7.17922D+01 - 54 8.00309D-03 -3.22370D-07 -3.41766D-07 2.48962D+01 - 55 -1.81999D-06 3.01342D-02 -3.87525D-04 8.22523D-07 9.18335D+01 - 56 -3.14022D-06 3.03214D-02 3.91289D-03 1.69695D-06 9.99960D+01 3.89495D+02 - 57 2.21001D+00 1.48811D-06 8.98851D-07 -2.25796D-02 1.92282D-07 1.42616D-06 2.48180D+01 - 58 -3.52345D-06 -1.13386D+00 -2.96588D+01 4.93508D-07 -4.54683D-03 -1.95691D-02 -3.12047D-06 9.18335D+01 - 59 -3.28023D-06 7.45945D+00 1.82223D+00 9.12561D-07 -1.94564D-02 -2.27523D-02 -2.79403D-06 9.99960D+01 3.89495D+02 - 60 -2.25796D-02 1.23961D-06 4.20318D-07 2.21001D+00 6.49416D-07 2.16683D-06 3.99542D-02 1.41331D-06 1.69155D-07 2.48180D+01 + 51 2.48989D+01 + 52 2.26329D-07 4.10722D+02 + 53 9.46992D-08 6.01951D+01 7.17929D+01 + 54 8.02291D-03 1.37094D-07 -1.97163D-07 2.48989D+01 + 55 -6.76629D-08 3.00002D-02 -3.60849D-04 1.05361D-07 9.18342D+01 + 56 -7.89450D-08 3.00266D-02 3.83231D-03 7.11218D-08 9.99966D+01 3.89498D+02 + 57 2.21075D+00 1.96505D-07 -2.37229D-07 -2.25616D-02 1.35227D-07 1.15370D-07 2.48213D+01 + 58 -2.45083D-08 -1.13405D+00 -2.96585D+01 8.74113D-08 -4.51994D-03 -1.94394D-02 9.78836D-08 9.18342D+01 + 59 -1.17397D-07 7.45814D+00 1.82241D+00 8.59016D-08 -1.94325D-02 -2.26017D-02 1.49371D-07 9.99966D+01 3.89498D+02 + 60 -2.25617D-02 1.19397D-07 -1.57679D-07 2.21075D+00 1.51433D-07 9.60317D-08 4.02254D-02 -1.36635D-07 -5.97158D-08 2.48213D+01 center of mass -------------- @@ -1977,9 +1974,9 @@ Iterative solution of linear equations moments of inertia (a.u.) ------------------ - 2631.731379210404 0.000000000000 0.000000000000 - 0.000000000000 390.819001468288 0.000000000000 - 0.000000000000 0.000000000000 3022.550380678692 + 2631.731379210398 -0.000000000000 0.000000000000 + -0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678686 Rotational Constants -------------------- @@ -1991,16 +1988,16 @@ Iterative solution of linear equations Temperature = 298.15K frequency scaling parameter = 1.0000 - Zero-Point correction to Energy = 111.088 kcal/mol ( 0.177030 au) - Thermal correction to Energy = 116.659 kcal/mol ( 0.185909 au) + Zero-Point correction to Energy = 111.089 kcal/mol ( 0.177031 au) + Thermal correction to Energy = 116.660 kcal/mol ( 0.185909 au) Thermal correction to Enthalpy = 117.252 kcal/mol ( 0.186853 au) - Total Entropy = 91.893 cal/mol-K + Total Entropy = 91.890 cal/mol-K - Translational = 40.484 cal/mol-K (mol. weight = 130.0782) - Rotational = 28.131 cal/mol-K (symmetry # = 2) - - Vibrational = 23.279 cal/mol-K + - Vibrational = 23.276 cal/mol-K - Cv (constant volume heat capacity) = 33.523 cal/mol-K + Cv (constant volume heat capacity) = 33.522 cal/mol-K - Translational = 2.979 cal/mol-K - Rotational = 2.979 cal/mol-K - Vibrational = 27.564 cal/mol-K @@ -2014,653 +2011,653 @@ Iterative solution of linear equations 1 2 3 4 5 6 - P.Frequency -0.00 0.00 0.00 0.00 0.00 0.00 - - 1 0.01221 -0.00000 -0.00000 -0.00000 0.09949 -0.00171 - 2 -0.00025 0.00000 0.00000 0.00000 -0.00244 0.08802 - 3 0.00000 -0.05089 0.02062 -0.08888 0.00000 -0.00000 - 4 -0.07763 0.00000 -0.00000 0.00000 0.06315 0.00603 - 5 0.01480 -0.00000 -0.00000 -0.00000 0.00365 0.08673 - 6 0.00000 -0.07238 0.07484 0.00860 -0.00000 0.00000 - 7 -0.01717 -0.00000 -0.00000 -0.00000 0.08760 0.00082 - 8 -0.03455 0.00000 0.00000 0.00000 -0.01631 0.09098 - 9 -0.00000 -0.12324 -0.05878 -0.07219 -0.00000 0.00000 - 10 -0.04824 0.00000 0.00000 -0.00000 0.07504 0.00350 - 11 0.04910 -0.00000 -0.00000 0.00000 0.01752 0.08377 - 12 -0.00000 -0.00003 0.15424 -0.00809 0.00000 0.00000 - 13 -0.06112 0.00000 0.00000 0.00000 0.06983 0.00461 - 14 -0.02724 0.00000 0.00000 -0.00000 -0.01336 0.09035 - 15 0.00000 -0.13385 -0.03240 -0.02453 0.00000 -0.00000 - 16 -0.00430 -0.00000 -0.00000 0.00000 0.09281 -0.00029 - 17 0.04180 -0.00000 -0.00000 0.00000 0.01457 0.08440 - 18 0.00000 0.01058 0.12785 -0.05575 -0.00000 -0.00000 - 19 -0.00512 -0.00000 0.00000 0.00000 0.09248 -0.00021 - 20 -0.06730 0.00000 0.00000 0.00000 -0.02956 0.09379 - 21 0.00000 -0.17153 -0.14216 -0.09718 -0.00000 0.00000 - 22 -0.06030 0.00000 0.00000 -0.00000 0.07016 0.00454 - 23 0.08185 -0.00000 -0.00000 0.00000 0.03077 0.08096 - 24 0.00000 0.04827 0.23762 0.01691 0.00000 0.00000 - 25 -0.08311 0.00000 0.00000 -0.00000 0.06093 0.00650 - 26 -0.05427 0.00000 0.00000 0.00000 -0.02429 0.09267 - 27 -0.00000 -0.19025 -0.09517 -0.01256 0.00000 -0.00000 - 28 0.01770 -0.00000 -0.00000 -0.00000 0.10171 -0.00218 - 29 0.06882 -0.00000 -0.00000 0.00000 0.02550 0.08208 - 30 -0.00000 0.06698 0.19063 -0.06771 -0.00000 -0.00000 - 31 -0.12425 0.00000 -0.00000 0.00000 0.04429 0.01004 - 32 0.02425 -0.00000 -0.00000 0.00000 0.00747 0.08591 - 33 -0.00000 -0.08079 0.10706 0.05984 -0.00000 -0.00000 - 34 0.05884 -0.00000 0.00000 0.00000 0.11835 -0.00572 - 35 -0.00970 0.00000 -0.00000 -0.00000 -0.00626 0.08884 - 36 -0.00000 -0.04247 -0.01160 -0.14011 0.00000 -0.00000 - 37 -0.13222 0.00000 0.00000 -0.00000 0.04107 0.01073 - 38 0.05831 0.00000 -0.00000 -0.00000 0.02125 0.08298 - 39 0.00000 -0.02821 0.19289 0.08116 0.00000 -0.00000 - 40 0.06680 -0.00000 0.00000 -0.00000 0.12157 -0.00641 - 41 -0.04375 -0.00000 -0.00000 0.00000 -0.02004 0.09177 - 42 0.00000 -0.09506 -0.09744 -0.16143 -0.00000 -0.00000 - 43 -0.15601 -0.00000 0.00000 0.00000 0.03145 0.01277 - 44 -0.00429 -0.00000 0.00000 -0.00000 -0.00407 0.08837 - 45 0.00000 -0.14479 0.04236 0.08117 0.00000 0.00000 - 46 0.09059 0.00000 0.00000 -0.00000 0.13119 -0.00845 - 47 0.01884 0.00000 0.00000 0.00000 0.00528 0.08638 - 48 0.00000 0.02152 0.05309 -0.16144 -0.00000 0.00000 - 49 -0.15028 -0.00000 -0.00000 0.00000 0.03377 0.01228 - 50 -0.03863 -0.00000 0.00000 -0.00000 -0.01796 0.09133 - 51 -0.00000 -0.19900 -0.04376 0.06202 -0.00000 0.00000 - 52 0.08486 0.00000 0.00000 0.00000 0.12888 -0.00796 - 53 0.05318 0.00000 0.00000 -0.00000 0.01917 0.08342 - 54 -0.00000 0.07574 0.13921 -0.14230 0.00000 0.00000 - 55 -0.18936 -0.00000 0.00000 -0.00000 0.01796 0.01565 - 56 0.00575 -0.00000 0.00000 -0.00000 -0.00001 0.08751 - 57 -0.00000 -0.14535 0.07352 0.11909 0.00000 -0.00000 - 58 0.12395 0.00000 0.00000 -0.00000 0.14469 -0.01132 - 59 0.00881 0.00000 0.00000 0.00000 0.00122 0.08724 - 60 -0.00000 0.02208 0.02193 -0.19936 -0.00000 0.00000 + P.Frequency -0.00 -0.00 -0.00 0.00 0.00 0.00 + + 1 0.09949 -0.00000 -0.00000 -0.00000 0.01221 -0.00171 + 2 -0.00244 0.00000 0.00000 0.00000 -0.00025 0.08802 + 3 0.00000 -0.02062 -0.08887 -0.05089 -0.00000 -0.00000 + 4 0.06315 0.00000 0.00000 0.00000 -0.07763 0.00603 + 5 0.00365 -0.00000 -0.00000 -0.00000 0.01480 0.08673 + 6 0.00000 -0.07484 0.00861 -0.07238 -0.00000 -0.00000 + 7 0.08760 0.00000 -0.00000 -0.00000 -0.01717 0.00082 + 8 -0.01631 0.00000 0.00000 0.00000 -0.03455 0.09098 + 9 -0.00000 0.05877 -0.07218 -0.12325 0.00000 -0.00000 + 10 0.07504 -0.00000 0.00000 0.00000 -0.04824 0.00350 + 11 0.01752 -0.00000 -0.00000 -0.00000 0.04910 0.08377 + 12 -0.00000 -0.15424 -0.00808 -0.00002 0.00000 -0.00000 + 13 0.06983 -0.00000 0.00000 0.00000 -0.06112 0.00461 + 14 -0.01336 0.00000 0.00000 0.00000 -0.02724 0.09035 + 15 0.00000 0.03239 -0.02451 -0.13385 -0.00000 -0.00000 + 16 0.09281 0.00000 -0.00000 -0.00000 -0.00429 -0.00029 + 17 0.01457 -0.00000 -0.00000 -0.00000 0.04180 0.08440 + 18 0.00000 -0.12785 -0.05575 0.01058 -0.00000 -0.00000 + 19 0.09248 0.00000 0.00000 -0.00000 -0.00511 -0.00021 + 20 -0.02956 0.00000 -0.00000 0.00000 -0.06730 0.09379 + 21 -0.00000 0.14215 -0.09716 -0.17156 0.00000 -0.00000 + 22 0.07016 -0.00000 0.00000 0.00000 -0.06030 0.00454 + 23 0.03077 -0.00000 0.00000 -0.00000 0.08185 0.08096 + 24 -0.00000 -0.23762 0.01690 0.04829 0.00000 -0.00000 + 25 0.06093 -0.00000 -0.00000 0.00000 -0.08311 0.00650 + 26 -0.02429 0.00000 0.00000 0.00000 -0.05427 0.09267 + 27 0.00000 0.09516 -0.01254 -0.19026 -0.00000 -0.00000 + 28 0.10171 0.00000 0.00000 -0.00000 0.01770 -0.00218 + 29 0.02550 -0.00000 -0.00000 -0.00000 0.06882 0.08208 + 30 0.00000 -0.19062 -0.06772 0.06699 -0.00000 -0.00000 + 31 0.04430 0.00000 0.00000 0.00000 -0.12425 0.01004 + 32 0.00747 -0.00000 -0.00000 -0.00000 0.02425 0.08591 + 33 0.00000 -0.10706 0.05985 -0.08078 -0.00000 -0.00000 + 34 0.11835 -0.00000 -0.00000 -0.00000 0.05884 -0.00572 + 35 -0.00626 0.00000 0.00000 0.00000 -0.00970 0.08884 + 36 0.00000 0.01160 -0.14011 -0.04249 -0.00000 -0.00000 + 37 0.04107 0.00000 0.00000 0.00000 -0.13222 0.01073 + 38 0.02124 0.00000 0.00000 0.00000 0.05831 0.08298 + 39 -0.00000 -0.19289 0.08116 -0.02819 0.00000 -0.00000 + 40 0.12157 -0.00000 -0.00000 -0.00000 0.06681 -0.00641 + 41 -0.02003 -0.00000 -0.00000 -0.00000 -0.04375 0.09177 + 42 -0.00000 0.09743 -0.16142 -0.09508 0.00000 -0.00000 + 43 0.03145 -0.00000 -0.00000 -0.00000 -0.15601 0.01277 + 44 -0.00407 -0.00000 -0.00000 -0.00000 -0.00429 0.08837 + 45 -0.00000 -0.04237 0.08119 -0.14477 0.00000 0.00000 + 46 0.13119 0.00000 0.00000 0.00000 0.09059 -0.00845 + 47 0.00528 0.00000 0.00000 0.00000 0.01884 0.08638 + 48 -0.00000 -0.05309 -0.16145 0.02150 0.00000 0.00000 + 49 0.03377 -0.00000 -0.00000 -0.00000 -0.15028 0.01228 + 50 -0.01796 -0.00000 -0.00000 -0.00000 -0.03863 0.09133 + 51 -0.00000 0.04374 0.06204 -0.19900 -0.00000 0.00000 + 52 0.12888 0.00000 0.00000 0.00000 0.08487 -0.00796 + 53 0.01917 0.00000 0.00000 0.00000 0.05318 0.08342 + 54 -0.00000 -0.13921 -0.14230 0.07573 0.00000 0.00000 + 55 0.01796 -0.00000 -0.00000 -0.00000 -0.18936 0.01565 + 56 -0.00001 -0.00000 -0.00000 -0.00000 0.00575 0.08751 + 57 0.00000 -0.07353 0.11911 -0.14533 0.00000 0.00000 + 58 0.14468 0.00000 0.00000 0.00000 0.12395 -0.01132 + 59 0.00122 0.00000 0.00000 0.00000 0.00881 0.08724 + 60 0.00000 -0.02194 -0.19937 0.02206 0.00000 0.00000 7 8 9 10 11 12 - P.Frequency 48.96 81.54 151.68 181.03 265.73 300.96 + P.Frequency 49.01 81.56 151.70 181.04 265.73 300.97 - 1 -0.00000 0.00000 -0.00000 0.05680 -0.06713 -0.00000 - 2 0.00000 0.00000 0.00000 0.01059 0.02425 0.00000 - 3 -0.04456 0.05431 0.02076 -0.00000 0.00000 -0.11865 - 4 0.00000 0.00000 0.00000 0.05680 0.06713 0.00000 - 5 0.00000 -0.00000 0.00000 0.01059 -0.02425 -0.00000 - 6 -0.04456 -0.05431 0.02076 0.00000 -0.00000 0.11865 - 7 0.00000 0.00000 -0.00000 0.06200 -0.03561 -0.00000 + 1 -0.00000 -0.00000 -0.00000 0.05680 -0.06713 -0.00000 + 2 0.00000 0.00000 -0.00000 0.01059 0.02425 0.00000 + 3 -0.04456 -0.05431 0.02076 0.00000 0.00000 -0.11865 + 4 0.00000 -0.00000 -0.00000 0.05680 0.06713 0.00000 + 5 -0.00000 -0.00000 -0.00000 0.01059 -0.02425 -0.00000 + 6 -0.04456 0.05431 0.02076 0.00000 -0.00000 0.11865 + 7 -0.00000 -0.00000 -0.00000 0.06200 -0.03561 -0.00000 8 0.00000 -0.00000 0.00000 0.01370 0.05532 0.00000 - 9 -0.05717 -0.02641 0.05684 0.00000 -0.00000 -0.07809 - 10 0.00000 0.00000 -0.00000 0.06200 0.03561 0.00000 + 9 -0.05718 0.02641 0.05684 0.00000 -0.00000 -0.07809 + 10 0.00000 -0.00000 -0.00000 0.06200 0.03561 0.00000 11 -0.00000 -0.00000 -0.00000 0.01370 -0.05532 -0.00000 - 12 -0.05717 0.02641 0.05684 0.00000 -0.00000 0.07809 - 13 0.00000 0.00000 0.00000 0.06101 0.04507 0.00000 - 14 0.00000 -0.00000 -0.00000 0.00650 0.03728 0.00000 - 15 -0.05324 -0.08381 0.06573 0.00000 0.00000 0.06450 - 16 -0.00000 0.00000 -0.00000 0.06101 -0.04507 -0.00000 + 12 -0.05718 -0.02641 0.05684 0.00000 -0.00000 0.07809 + 13 0.00000 -0.00000 -0.00000 0.06101 0.04507 0.00000 + 14 0.00000 0.00000 0.00000 0.00650 0.03728 0.00000 + 15 -0.05325 0.08381 0.06573 0.00000 0.00000 0.06449 + 16 -0.00000 -0.00000 -0.00000 0.06101 -0.04507 0.00000 17 -0.00000 -0.00000 -0.00000 0.00650 -0.03728 -0.00000 - 18 -0.05324 0.08381 0.06573 -0.00000 0.00000 -0.06450 - 19 -0.00000 0.00000 -0.00000 0.06246 -0.05344 -0.00000 + 18 -0.05325 -0.08381 0.06573 0.00000 0.00000 -0.06449 + 19 -0.00000 -0.00000 -0.00000 0.06246 -0.05345 -0.00000 20 0.00000 -0.00000 0.00000 0.01388 0.10416 0.00000 - 21 -0.06186 -0.05251 0.04389 0.00000 -0.00000 -0.11936 - 22 0.00000 0.00000 0.00000 0.06246 0.05344 0.00000 + 21 -0.06186 0.05251 0.04389 0.00000 -0.00000 -0.11936 + 22 0.00000 -0.00000 -0.00000 0.06246 0.05345 0.00000 23 -0.00000 -0.00000 -0.00000 0.01388 -0.10416 -0.00000 - 24 -0.06186 0.05252 0.04389 0.00000 -0.00000 0.11936 - 25 0.00000 0.00000 0.00000 0.05943 0.08285 0.00000 - 26 0.00000 -0.00000 0.00000 0.00257 0.08107 0.00000 - 27 -0.05763 -0.15824 0.05764 0.00000 0.00000 0.08255 - 28 -0.00000 0.00000 -0.00000 0.05943 -0.08285 -0.00000 + 24 -0.06186 -0.05251 0.04389 0.00000 -0.00000 0.11936 + 25 0.00000 -0.00000 -0.00000 0.05943 0.08285 0.00000 + 26 0.00000 0.00000 0.00000 0.00257 0.08107 0.00000 + 27 -0.05763 0.15824 0.05764 0.00000 0.00000 0.08254 + 28 -0.00000 -0.00000 -0.00000 0.05943 -0.08285 -0.00000 29 -0.00000 -0.00000 -0.00000 0.00257 -0.08107 -0.00000 - 30 -0.05763 0.15824 0.05764 -0.00000 0.00000 -0.08255 - 31 0.00000 -0.00000 0.00000 -0.03066 0.03035 0.00000 + 30 -0.05763 -0.15824 0.05764 0.00000 0.00000 -0.08254 + 31 0.00000 0.00000 0.00000 -0.03067 0.03035 0.00000 32 -0.00000 -0.00000 -0.00000 0.02877 -0.02383 -0.00000 - 33 -0.01339 -0.08796 -0.12599 0.00000 0.00000 -0.03582 - 34 -0.00000 -0.00000 0.00000 -0.03066 -0.03035 -0.00000 - 35 0.00000 0.00000 0.00000 0.02877 0.02383 0.00000 - 36 -0.01338 0.08796 -0.12599 -0.00000 0.00000 0.03582 - 37 0.00000 -0.00000 0.00000 -0.05163 0.01294 -0.00000 - 38 0.00000 0.00000 -0.00000 0.11824 0.04829 0.00000 - 39 -0.11920 -0.24972 -0.35623 -0.00000 0.00000 -0.25913 - 40 -0.00000 -0.00000 0.00000 -0.05163 -0.01294 -0.00000 - 41 0.00000 0.00000 -0.00000 0.11824 -0.04828 -0.00000 - 42 -0.11920 0.24972 -0.35623 -0.00000 0.00000 0.25913 - 43 -0.00000 -0.00000 0.00000 -0.12652 -0.06653 -0.00000 - 44 -0.00000 -0.00000 -0.00000 -0.05551 -0.11205 -0.00000 - 45 0.15097 0.09310 -0.00431 -0.00000 -0.00000 -0.02059 - 46 -0.00000 -0.00000 0.00000 -0.12652 0.06653 0.00000 + 33 -0.01337 0.08796 -0.12600 -0.00000 0.00000 -0.03583 + 34 -0.00000 0.00000 0.00000 -0.03067 -0.03035 -0.00000 + 35 0.00000 -0.00000 -0.00000 0.02877 0.02383 0.00000 + 36 -0.01337 -0.08796 -0.12600 -0.00000 0.00000 0.03583 + 37 0.00000 0.00000 0.00000 -0.05164 0.01294 -0.00000 + 38 0.00000 -0.00000 -0.00000 0.11824 0.04829 0.00000 + 39 -0.11916 0.24970 -0.35624 -0.00000 0.00000 -0.25914 + 40 -0.00000 0.00000 0.00000 -0.05164 -0.01294 -0.00000 + 41 -0.00000 -0.00000 -0.00000 0.11824 -0.04829 0.00000 + 42 -0.11916 -0.24970 -0.35624 -0.00000 0.00000 0.25914 + 43 -0.00000 0.00000 0.00000 -0.12652 -0.06653 -0.00000 + 44 -0.00000 0.00000 0.00000 -0.05551 -0.11205 -0.00000 + 45 0.15097 -0.09310 -0.00429 -0.00000 -0.00000 -0.02058 + 46 0.00000 0.00000 0.00000 -0.12652 0.06653 -0.00000 47 0.00000 0.00000 0.00000 -0.05551 0.11205 0.00000 - 48 0.15097 -0.09310 -0.00431 -0.00000 -0.00000 0.02059 - 49 -0.00000 -0.00000 0.00000 -0.10885 -0.04627 -0.00000 - 50 -0.00000 -0.00000 -0.00000 -0.15869 -0.22734 -0.00000 - 51 0.27579 0.28207 0.24304 -0.00000 -0.00000 0.20810 - 52 -0.00000 -0.00000 0.00000 -0.10885 0.04627 0.00000 - 53 0.00000 0.00000 0.00000 -0.15869 0.22734 0.00000 - 54 0.27579 -0.28207 0.24304 0.00000 -0.00000 -0.20810 - 55 -0.00000 -0.00000 -0.00000 -0.23086 -0.18384 -0.00000 - 56 -0.00000 -0.00000 -0.00000 -0.02427 -0.07745 -0.00000 - 57 0.16993 0.06332 -0.14365 -0.00000 0.00000 -0.23349 - 58 -0.00000 -0.00000 0.00000 -0.23086 0.18384 0.00000 + 48 0.15097 0.09310 -0.00429 0.00000 -0.00000 0.02058 + 49 -0.00000 0.00000 0.00000 -0.10885 -0.04627 -0.00000 + 50 -0.00000 0.00000 0.00000 -0.15868 -0.22734 -0.00000 + 51 0.27576 -0.28206 0.24306 0.00000 -0.00000 0.20810 + 52 -0.00000 0.00000 0.00000 -0.10885 0.04627 -0.00000 + 53 0.00000 0.00000 0.00000 -0.15868 0.22734 0.00000 + 54 0.27576 0.28206 0.24306 0.00000 -0.00000 -0.20810 + 55 -0.00000 0.00000 0.00000 -0.23085 -0.18384 -0.00000 + 56 -0.00000 -0.00000 0.00000 -0.02427 -0.07745 -0.00000 + 57 0.16996 -0.06336 -0.14359 -0.00000 0.00000 -0.23346 + 58 0.00000 0.00000 0.00000 -0.23085 0.18384 -0.00000 59 0.00000 0.00000 0.00000 -0.02427 0.07745 0.00000 - 60 0.16993 -0.06332 -0.14365 -0.00000 -0.00000 0.23349 + 60 0.16996 0.06336 -0.14359 -0.00000 -0.00000 0.23346 13 14 15 16 17 18 - P.Frequency 407.91 424.39 468.98 487.91 578.83 657.32 + P.Frequency 407.92 424.39 468.98 487.92 578.84 657.33 - 1 0.06234 0.00000 0.00000 -0.02307 0.03795 0.00000 - 2 0.06103 0.00000 0.00000 0.03328 -0.06914 -0.00000 - 3 -0.00000 -0.01086 0.13220 0.00000 0.00000 -0.02718 - 4 -0.06234 -0.00000 0.00000 -0.02307 -0.03795 -0.00000 + 1 0.06234 0.00000 0.00000 -0.02307 0.03795 -0.00000 + 2 0.06103 0.00000 -0.00000 0.03328 -0.06914 -0.00000 + 3 0.00000 0.01085 -0.13221 -0.00000 0.00000 0.02719 + 4 -0.06234 -0.00000 -0.00000 -0.02307 -0.03795 0.00000 5 -0.06103 -0.00000 -0.00000 0.03328 0.06914 0.00000 - 6 0.00000 -0.01086 0.13220 0.00000 0.00000 0.02718 - 7 0.00251 -0.00000 0.00000 -0.04171 0.07928 0.00000 - 8 -0.02401 -0.00000 -0.00000 0.04783 -0.03827 0.00000 - 9 0.00000 -0.12086 -0.06191 -0.00000 -0.00000 0.08217 - 10 -0.00251 0.00000 0.00000 -0.04171 -0.07928 -0.00000 - 11 0.02401 0.00000 -0.00000 0.04783 0.03827 -0.00000 - 12 0.00000 -0.12086 -0.06191 -0.00000 -0.00000 -0.08217 - 13 -0.07035 -0.00000 0.00000 -0.04286 -0.01391 -0.00000 - 14 -0.02928 -0.00000 -0.00000 0.05698 -0.01300 0.00000 - 15 -0.00000 0.12494 -0.03987 -0.00000 0.00000 -0.07876 - 16 0.07035 0.00000 0.00000 -0.04286 0.01391 0.00000 - 17 0.02928 0.00000 -0.00000 0.05698 0.01300 -0.00000 - 18 -0.00000 0.12494 -0.03987 0.00000 -0.00000 0.07876 - 19 0.03778 -0.00000 0.00000 -0.04590 0.08496 0.00000 - 20 -0.11569 -0.00000 -0.00000 0.05444 -0.05176 0.00000 - 21 0.00000 -0.23239 -0.22746 -0.00000 -0.00000 0.11222 - 22 -0.03778 -0.00000 0.00000 -0.04590 -0.08496 -0.00000 - 23 0.11569 0.00000 -0.00000 0.05444 0.05176 0.00000 - 24 0.00000 -0.23239 -0.22746 -0.00000 -0.00000 -0.11222 - 25 -0.07247 -0.00000 0.00000 -0.04413 -0.09395 -0.00000 - 26 -0.03305 -0.00000 -0.00000 0.05564 -0.11017 0.00000 - 27 -0.00000 0.28136 -0.19193 -0.00000 0.00000 -0.13548 - 28 0.07247 0.00000 0.00000 -0.04413 0.09395 0.00000 - 29 0.03305 0.00000 -0.00000 0.05564 0.11017 0.00000 - 30 -0.00000 0.28136 -0.19193 -0.00000 0.00000 0.13548 - 31 0.00239 -0.00000 -0.00000 0.09736 0.10221 0.00000 - 32 -0.11048 -0.00000 -0.00000 -0.01406 0.05564 -0.00000 - 33 -0.00000 0.00252 0.04261 -0.00000 -0.00000 0.09674 - 34 -0.00239 0.00000 -0.00000 0.09736 -0.10221 -0.00000 - 35 0.11048 0.00000 0.00000 -0.01406 -0.05564 -0.00000 - 36 -0.00000 0.00252 0.04261 0.00000 0.00000 -0.09674 - 37 0.01264 -0.00000 -0.00000 0.09900 0.10805 0.00000 - 38 -0.16284 -0.00000 0.00000 -0.02943 0.02985 -0.00000 - 39 0.00000 0.01387 -0.13639 -0.00000 0.00000 -0.13032 - 40 -0.01264 0.00000 -0.00000 0.09900 -0.10805 -0.00000 - 41 0.16284 0.00000 0.00000 -0.02943 -0.02985 -0.00000 - 42 -0.00000 0.01387 -0.13639 0.00000 -0.00000 0.13032 - 43 0.03927 0.00000 -0.00000 0.01769 0.01308 -0.00000 - 44 -0.09044 -0.00000 0.00000 -0.10303 -0.03510 -0.00000 - 45 -0.00000 -0.00074 -0.01871 0.00000 -0.00000 -0.01618 + 6 0.00000 0.01085 -0.13221 -0.00000 0.00000 -0.02719 + 7 0.00251 -0.00000 0.00000 -0.04171 0.07928 -0.00000 + 8 -0.02401 -0.00000 -0.00000 0.04783 -0.03827 -0.00000 + 9 -0.00000 0.12087 0.06191 0.00000 -0.00000 -0.08217 + 10 -0.00251 0.00000 0.00000 -0.04171 -0.07928 0.00000 + 11 0.02401 0.00000 0.00000 0.04783 0.03827 0.00000 + 12 -0.00000 0.12087 0.06191 0.00000 -0.00000 0.08217 + 13 -0.07035 0.00000 0.00000 -0.04286 -0.01391 0.00000 + 14 -0.02928 -0.00000 -0.00000 0.05699 -0.01300 -0.00000 + 15 0.00000 -0.12494 0.03988 -0.00000 0.00000 0.07876 + 16 0.07035 0.00000 0.00000 -0.04286 0.01391 -0.00000 + 17 0.02928 0.00000 -0.00000 0.05699 0.01300 0.00000 + 18 0.00000 -0.12494 0.03988 -0.00000 0.00000 -0.07876 + 19 0.03778 -0.00000 0.00000 -0.04590 0.08496 -0.00000 + 20 -0.11569 -0.00000 -0.00000 0.05444 -0.05175 -0.00000 + 21 -0.00000 0.23240 0.22744 0.00000 -0.00000 -0.11223 + 22 -0.03778 0.00000 -0.00000 -0.04590 -0.08496 0.00000 + 23 0.11569 0.00000 0.00000 0.05444 0.05175 0.00000 + 24 -0.00000 0.23240 0.22744 0.00000 -0.00000 0.11223 + 25 -0.07247 0.00000 -0.00000 -0.04413 -0.09395 0.00000 + 26 -0.03305 -0.00000 -0.00000 0.05565 -0.11017 -0.00000 + 27 0.00000 -0.28135 0.19194 0.00000 0.00000 0.13548 + 28 0.07247 -0.00000 0.00000 -0.04413 0.09395 -0.00000 + 29 0.03305 0.00000 0.00000 0.05565 0.11017 0.00000 + 30 0.00000 -0.28135 0.19194 0.00000 0.00000 -0.13548 + 31 0.00239 0.00000 -0.00000 0.09736 0.10221 0.00000 + 32 -0.11048 -0.00000 -0.00000 -0.01406 0.05564 0.00000 + 33 0.00000 -0.00252 -0.04259 -0.00000 0.00000 -0.09673 + 34 -0.00239 -0.00000 -0.00000 0.09736 -0.10221 -0.00000 + 35 0.11048 0.00000 0.00000 -0.01406 -0.05564 0.00000 + 36 0.00000 -0.00252 -0.04259 -0.00000 0.00000 0.09673 + 37 0.01264 0.00000 -0.00000 0.09900 0.10805 0.00000 + 38 -0.16284 -0.00000 -0.00000 -0.02943 0.02985 0.00000 + 39 -0.00000 -0.01386 0.13640 0.00000 0.00000 0.13034 + 40 -0.01264 -0.00000 -0.00000 0.09900 -0.10805 -0.00000 + 41 0.16284 0.00000 0.00000 -0.02943 -0.02985 0.00000 + 42 -0.00000 -0.01386 0.13640 0.00000 0.00000 -0.13034 + 43 0.03927 -0.00000 0.00000 0.01769 0.01308 0.00000 + 44 -0.09044 -0.00000 0.00000 -0.10303 -0.03510 0.00000 + 45 -0.00000 0.00074 0.01871 0.00000 -0.00000 0.01618 46 -0.03927 -0.00000 -0.00000 0.01769 -0.01308 -0.00000 - 47 0.09044 0.00000 0.00000 -0.10302 0.03510 0.00000 - 48 0.00000 -0.00074 -0.01871 -0.00000 -0.00000 0.01618 - 49 0.03607 0.00000 -0.00000 0.04794 0.04997 -0.00000 - 50 -0.06588 0.00000 0.00000 -0.27471 -0.25313 -0.00000 - 51 -0.00000 -0.02873 0.16236 -0.00000 -0.00000 0.20776 - 52 -0.03607 -0.00000 -0.00000 0.04794 -0.04997 -0.00000 - 53 0.06588 -0.00000 0.00000 -0.27471 0.25313 0.00000 - 54 0.00000 -0.02873 0.16236 -0.00000 0.00000 -0.20776 - 55 0.06840 0.00000 0.00000 -0.14510 -0.19197 -0.00000 - 56 -0.10051 -0.00000 -0.00000 -0.05617 0.02535 -0.00000 - 57 0.00000 0.02542 -0.25324 -0.00000 0.00000 -0.35699 - 58 -0.06840 -0.00000 0.00000 -0.14510 0.19197 0.00000 - 59 0.10051 0.00000 0.00000 -0.05617 -0.02535 -0.00000 - 60 -0.00000 0.02542 -0.25324 0.00000 -0.00000 0.35699 + 47 0.09044 0.00000 0.00000 -0.10303 0.03510 0.00000 + 48 -0.00000 0.00074 0.01871 0.00000 -0.00000 -0.01618 + 49 0.03607 -0.00000 0.00000 0.04794 0.04996 0.00000 + 50 -0.06588 -0.00000 0.00000 -0.27471 -0.25313 -0.00000 + 51 -0.00000 0.02872 -0.16235 -0.00000 -0.00000 -0.20776 + 52 -0.03607 -0.00000 -0.00000 0.04794 -0.04996 -0.00000 + 53 0.06588 0.00000 0.00000 -0.27471 0.25313 0.00000 + 54 -0.00000 0.02872 -0.16235 -0.00000 -0.00000 0.20776 + 55 0.06840 -0.00000 0.00000 -0.14510 -0.19197 -0.00000 + 56 -0.10052 -0.00000 0.00000 -0.05617 0.02535 0.00000 + 57 -0.00000 -0.02540 0.25320 0.00000 0.00000 0.35697 + 58 -0.06840 0.00000 0.00000 -0.14510 0.19197 0.00000 + 59 0.10052 0.00000 0.00000 -0.05617 -0.02535 0.00000 + 60 -0.00000 -0.02540 0.25320 0.00000 0.00000 -0.35697 19 20 21 22 23 24 - P.Frequency 673.47 707.32 735.11 810.71 862.52 895.31 - - 1 -0.04041 0.00000 -0.00161 -0.00000 -0.00735 -0.00000 - 2 -0.00025 -0.00000 -0.01016 -0.00000 -0.03626 -0.00000 - 3 -0.00000 -0.06851 0.00000 0.14260 -0.00000 -0.00190 - 4 0.04041 -0.00000 -0.00161 -0.00000 0.00735 0.00000 - 5 0.00025 -0.00000 -0.01016 0.00000 0.03626 0.00000 - 6 0.00000 -0.06851 0.00000 -0.14260 0.00000 0.00190 - 7 -0.08896 0.00000 0.03820 0.00000 0.11600 0.00000 - 8 -0.09853 0.00000 0.07522 0.00000 0.00186 -0.00000 - 9 0.00000 -0.01327 -0.00000 -0.05829 0.00000 -0.06379 - 10 0.08896 0.00000 0.03820 -0.00000 -0.11600 -0.00000 - 11 0.09853 0.00000 0.07522 0.00000 -0.00186 -0.00000 - 12 -0.00000 -0.01327 0.00000 0.05829 -0.00000 0.06379 - 13 0.06162 -0.00000 0.01409 0.00000 0.11778 0.00000 - 14 -0.12263 0.00000 0.07362 -0.00000 -0.03435 -0.00000 - 15 -0.00000 -0.01708 0.00000 0.05701 -0.00000 -0.07018 - 16 -0.06162 -0.00000 0.01409 -0.00000 -0.11778 -0.00000 - 17 0.12263 0.00000 0.07362 0.00000 0.03435 -0.00000 - 18 -0.00000 -0.01708 0.00000 -0.05701 0.00000 0.07018 - 19 -0.10493 0.00000 0.01932 0.00000 0.08784 0.00000 - 20 -0.05681 0.00000 0.12590 0.00000 0.09836 0.00000 - 21 0.00000 0.25589 -0.00000 -0.15559 0.00000 0.43354 - 22 0.10493 -0.00000 0.01932 -0.00000 -0.08784 -0.00000 - 23 0.05681 0.00000 0.12590 0.00000 -0.09836 -0.00000 - 24 0.00000 0.25589 -0.00000 0.15559 0.00000 -0.43355 - 25 0.08401 0.00000 0.04802 0.00000 0.07285 -0.00000 - 26 -0.09553 0.00000 0.11192 -0.00000 -0.10068 -0.00000 - 27 -0.00000 0.25286 -0.00000 0.15438 -0.00000 0.44782 - 28 -0.08401 0.00000 0.04802 -0.00000 -0.07285 -0.00000 - 29 0.09553 0.00000 0.11192 0.00000 0.10068 -0.00000 - 30 -0.00000 0.25286 -0.00000 -0.15438 0.00000 -0.44782 - 31 0.02093 -0.00000 -0.07198 0.00000 -0.03706 0.00000 - 32 0.00439 -0.00000 -0.10255 -0.00000 -0.05192 0.00000 - 33 0.00000 0.09532 -0.00000 0.06769 -0.00000 -0.00045 - 34 -0.02093 -0.00000 -0.07198 0.00000 0.03706 0.00000 - 35 -0.00439 -0.00000 -0.10255 0.00000 0.05192 0.00000 - 36 -0.00000 0.09532 -0.00000 -0.06769 0.00000 0.00045 - 37 0.02190 -0.00000 -0.07555 -0.00000 -0.04010 0.00000 - 38 0.00029 -0.00000 -0.10591 0.00000 -0.05475 0.00000 - 39 -0.00000 -0.14968 0.00000 -0.08843 0.00000 -0.00158 - 40 -0.02190 -0.00000 -0.07555 -0.00000 0.04010 0.00000 - 41 -0.00029 -0.00000 -0.10591 0.00000 0.05475 0.00000 - 42 0.00000 -0.14968 0.00000 0.08843 0.00000 0.00158 - 43 0.01523 0.00000 0.00669 0.00000 0.00137 -0.00000 - 44 -0.00832 -0.00000 -0.05021 -0.00000 -0.03528 -0.00000 - 45 -0.00000 -0.01414 0.00000 -0.00629 0.00000 0.00159 - 46 -0.01523 0.00000 0.00669 0.00000 -0.00137 0.00000 - 47 0.00832 -0.00000 -0.05021 0.00000 0.03528 0.00000 - 48 0.00000 -0.01414 0.00000 0.00629 -0.00000 -0.00159 - 49 0.02125 -0.00000 -0.02470 -0.00000 -0.02022 -0.00000 - 50 -0.04483 0.00000 0.14774 0.00000 0.09895 0.00000 - 51 0.00000 0.20970 -0.00000 0.11566 -0.00000 0.01150 - 52 -0.02125 -0.00000 -0.02470 -0.00000 0.02022 0.00000 - 53 0.04483 0.00000 0.14774 0.00000 -0.09895 0.00000 - 54 -0.00000 0.20970 -0.00000 -0.11566 0.00000 -0.01149 - 55 -0.01396 0.00000 0.20681 0.00000 0.15092 0.00000 - 56 0.00015 -0.00000 -0.11208 -0.00000 -0.08153 -0.00000 - 57 -0.00000 -0.35820 0.00000 -0.22487 -0.00000 -0.01746 - 58 0.01396 0.00000 0.20681 -0.00000 -0.15092 -0.00000 - 59 -0.00015 -0.00000 -0.11208 0.00000 0.08153 0.00000 - 60 0.00000 -0.35820 0.00000 0.22487 -0.00000 0.01745 + P.Frequency 673.47 707.33 735.11 810.68 862.52 895.31 + + 1 -0.04041 0.00000 0.00161 -0.00000 -0.00735 -0.00000 + 2 -0.00025 -0.00000 0.01016 -0.00000 -0.03625 -0.00000 + 3 0.00000 -0.06850 0.00000 -0.14259 0.00000 -0.00191 + 4 0.04041 -0.00000 0.00161 0.00000 0.00735 -0.00000 + 5 0.00025 0.00000 0.01016 -0.00000 0.03625 0.00000 + 6 0.00000 -0.06850 0.00000 0.14259 0.00000 0.00191 + 7 -0.08896 0.00000 -0.03820 0.00000 0.11600 0.00000 + 8 -0.09853 -0.00000 -0.07522 -0.00000 0.00186 0.00000 + 9 -0.00000 -0.01327 0.00000 0.05830 -0.00000 -0.06379 + 10 0.08896 -0.00000 -0.03820 -0.00000 -0.11600 -0.00000 + 11 0.09853 -0.00000 -0.07522 -0.00000 -0.00186 0.00000 + 12 -0.00000 -0.01327 0.00000 -0.05830 -0.00000 0.06379 + 13 0.06162 0.00000 -0.01409 0.00000 0.11778 0.00000 + 14 -0.12263 0.00000 -0.07362 -0.00000 -0.03435 -0.00000 + 15 0.00000 -0.01708 -0.00000 -0.05701 0.00000 -0.07018 + 16 -0.06162 -0.00000 -0.01409 -0.00000 -0.11778 -0.00000 + 17 0.12263 -0.00000 -0.07362 0.00000 0.03435 0.00000 + 18 0.00000 -0.01708 0.00000 0.05701 -0.00000 0.07018 + 19 -0.10493 0.00000 -0.01932 -0.00000 0.08784 0.00000 + 20 -0.05681 -0.00000 -0.12590 -0.00000 0.09836 0.00000 + 21 0.00000 0.25586 -0.00000 0.15554 -0.00000 0.43357 + 22 0.10493 -0.00000 -0.01932 0.00000 -0.08784 -0.00000 + 23 0.05681 -0.00000 -0.12590 -0.00000 -0.09836 -0.00000 + 24 -0.00000 0.25586 -0.00000 -0.15554 0.00000 -0.43357 + 25 0.08401 -0.00000 -0.04802 0.00000 0.07285 -0.00000 + 26 -0.09553 -0.00000 -0.11192 -0.00000 -0.10068 -0.00000 + 27 0.00000 0.25282 0.00000 -0.15437 -0.00000 0.44780 + 28 -0.08401 0.00000 -0.04802 -0.00000 -0.07285 -0.00000 + 29 0.09553 -0.00000 -0.11192 0.00000 0.10068 -0.00000 + 30 0.00000 0.25282 -0.00000 0.15437 0.00000 -0.44780 + 31 0.02094 0.00000 0.07198 0.00000 -0.03706 -0.00000 + 32 0.00440 0.00000 0.10255 0.00000 -0.05192 -0.00000 + 33 0.00000 0.09532 -0.00000 -0.06770 -0.00000 -0.00045 + 34 -0.02094 -0.00000 0.07198 0.00000 0.03706 0.00000 + 35 -0.00440 0.00000 0.10255 0.00000 0.05192 0.00000 + 36 -0.00000 0.09532 -0.00000 0.06770 -0.00000 0.00045 + 37 0.02190 0.00000 0.07555 0.00000 -0.04010 -0.00000 + 38 0.00029 0.00000 0.10591 0.00000 -0.05475 -0.00000 + 39 -0.00000 -0.14974 0.00000 0.08848 0.00000 -0.00156 + 40 -0.02190 -0.00000 0.07555 0.00000 0.04010 0.00000 + 41 -0.00029 0.00000 0.10591 0.00000 0.05475 0.00000 + 42 0.00000 -0.14974 0.00000 -0.08848 0.00000 0.00156 + 43 0.01523 -0.00000 -0.00669 -0.00000 0.00137 0.00000 + 44 -0.00832 -0.00000 0.05020 -0.00000 -0.03528 -0.00000 + 45 -0.00000 -0.01415 -0.00000 0.00629 0.00000 0.00160 + 46 -0.01523 0.00000 -0.00669 -0.00000 -0.00137 0.00000 + 47 0.00832 0.00000 0.05021 0.00000 0.03528 0.00000 + 48 0.00000 -0.01415 0.00000 -0.00629 0.00000 -0.00160 + 49 0.02125 0.00000 0.02470 -0.00000 -0.02022 -0.00000 + 50 -0.04484 -0.00000 -0.14774 -0.00000 0.09895 0.00000 + 51 0.00000 0.20973 0.00000 -0.11568 -0.00000 0.01148 + 52 -0.02125 0.00000 0.02470 -0.00000 0.02022 0.00000 + 53 0.04484 0.00000 -0.14774 -0.00000 -0.09895 -0.00000 + 54 -0.00000 0.20973 -0.00000 0.11568 -0.00000 -0.01148 + 55 -0.01397 -0.00000 -0.20681 -0.00000 0.15092 0.00000 + 56 0.00016 0.00000 0.11208 0.00000 -0.08153 -0.00000 + 57 -0.00000 -0.35822 0.00000 0.22488 0.00000 -0.01745 + 58 0.01397 0.00000 -0.20681 -0.00000 -0.15092 -0.00000 + 59 -0.00016 0.00000 0.11208 0.00000 0.08153 0.00000 + 60 0.00000 -0.35822 0.00000 -0.22488 0.00000 0.01745 25 26 27 28 29 30 - P.Frequency 896.45 980.83 980.90 1017.72 1036.48 1073.56 - - 1 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00791 - 2 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.02569 - 3 -0.09619 0.00358 -0.00464 0.01789 -0.00053 0.00000 - 4 0.00000 0.00000 0.00000 0.00000 0.00000 0.00791 - 5 0.00000 0.00000 -0.00000 0.00000 0.00000 0.02569 - 6 -0.09619 -0.00358 -0.00464 -0.01789 -0.00053 0.00000 - 7 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.12357 - 8 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00035 - 9 0.05631 -0.00026 -0.00040 -0.06692 0.07538 -0.00000 - 10 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.12357 - 11 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00035 - 12 0.05631 0.00026 -0.00040 0.06692 0.07538 0.00000 - 13 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.11039 - 14 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.03538 - 15 0.06225 -0.00055 0.00351 0.06497 -0.07372 -0.00000 - 16 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.11039 - 17 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.03538 - 18 0.06225 0.00055 0.00351 -0.06497 -0.07372 -0.00000 - 19 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.18867 - 20 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.15964 - 21 -0.34853 0.00063 0.00596 0.44986 -0.43580 0.00000 - 22 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.18868 - 23 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.15964 - 24 -0.34853 -0.00063 0.00596 -0.44986 -0.43580 -0.00000 - 25 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.23833 - 26 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.11371 - 27 -0.35800 0.00820 -0.01855 -0.42834 0.41633 -0.00000 - 28 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.23833 - 29 0.00000 0.00000 0.00000 -0.00000 0.00000 0.11371 - 30 -0.35799 -0.00821 -0.01854 0.42834 0.41633 0.00000 - 31 0.00000 0.00000 0.00000 0.00000 0.00000 0.00307 - 32 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00132 - 33 0.04810 0.03559 0.03601 0.00976 0.00065 0.00000 - 34 0.00000 0.00000 0.00000 0.00000 0.00000 0.00307 - 35 0.00000 0.00000 0.00000 0.00000 0.00000 0.00132 - 36 0.04810 -0.03558 0.03602 -0.00976 0.00065 -0.00000 - 37 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00224 - 38 0.00000 -0.00000 0.00000 0.00000 0.00000 0.02112 - 39 -0.02850 -0.01388 -0.01387 0.02008 0.00304 -0.00000 - 40 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00224 - 41 0.00000 0.00000 0.00000 0.00000 0.00000 0.02112 - 42 -0.02850 0.01387 -0.01387 -0.02008 0.00304 0.00000 - 43 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00628 - 44 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.01723 - 45 -0.00156 -0.10291 -0.10288 -0.00106 -0.00247 -0.00000 - 46 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00628 - 47 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.01723 - 48 -0.00156 0.10288 -0.10290 0.00106 -0.00247 -0.00000 - 49 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.01794 - 50 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.05612 - 51 0.05826 0.42488 0.42430 0.02228 0.01921 -0.00000 - 52 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.01794 - 53 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.05612 - 54 0.05826 -0.42479 0.42439 -0.02228 0.01921 0.00000 - 55 0.00000 0.00000 0.00000 0.00000 0.00000 0.07145 - 56 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.04152 - 57 -0.14370 0.41727 0.41658 -0.02862 0.00556 0.00000 - 58 -0.00000 0.00000 0.00000 0.00000 0.00000 0.07145 - 59 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.04152 - 60 -0.14370 -0.41717 0.41667 0.02862 0.00556 0.00000 + P.Frequency 896.43 980.90 980.97 1017.73 1036.48 1073.56 + + 1 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00791 + 2 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.02569 + 3 -0.09617 -0.00358 -0.00464 0.01789 0.00053 -0.00000 + 4 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00791 + 5 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.02569 + 6 -0.09617 0.00358 -0.00464 -0.01789 0.00053 0.00000 + 7 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.12357 + 8 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00035 + 9 0.05631 0.00024 -0.00041 -0.06692 -0.07538 0.00000 + 10 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.12357 + 11 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00035 + 12 0.05631 -0.00024 -0.00041 0.06692 -0.07538 -0.00000 + 13 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.11039 + 14 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03538 + 15 0.06224 0.00056 0.00351 0.06497 0.07373 0.00000 + 16 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.11039 + 17 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.03538 + 18 0.06224 -0.00056 0.00351 -0.06497 0.07373 0.00000 + 19 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.18868 + 20 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.15964 + 21 -0.34857 -0.00052 0.00596 0.44985 0.43580 -0.00000 + 22 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.18868 + 23 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.15964 + 24 -0.34856 0.00052 0.00596 -0.44985 0.43580 0.00000 + 25 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.23833 + 26 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.11370 + 27 -0.35802 -0.00833 -0.01854 -0.42837 -0.41633 -0.00000 + 28 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.23833 + 29 0.00000 0.00000 0.00000 0.00000 0.00000 -0.11370 + 30 -0.35802 0.00833 -0.01854 0.42837 -0.41633 0.00000 + 31 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00307 + 32 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00132 + 33 0.04810 -0.03558 0.03601 0.00977 -0.00064 -0.00000 + 34 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00307 + 35 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00132 + 36 0.04810 0.03558 0.03601 -0.00977 -0.00064 0.00000 + 37 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00224 + 38 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.02111 + 39 -0.02854 0.01386 -0.01384 0.02008 -0.00305 -0.00000 + 40 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00224 + 41 0.00000 0.00000 0.00000 0.00000 0.00000 -0.02111 + 42 -0.02854 -0.01386 -0.01384 -0.02008 -0.00305 -0.00000 + 43 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00628 + 44 -0.00000 0.00000 0.00000 0.00000 0.00000 0.01723 + 45 -0.00156 0.10289 -0.10289 -0.00109 0.00247 0.00000 + 46 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00628 + 47 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.01723 + 48 -0.00156 -0.10290 -0.10289 0.00109 0.00247 -0.00000 + 49 0.00000 -0.00000 0.00000 0.00000 0.00000 0.01793 + 50 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.05610 + 51 0.05826 -0.42482 0.42437 0.02240 -0.01922 -0.00000 + 52 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.01793 + 53 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.05610 + 54 0.05826 0.42485 0.42434 -0.02240 -0.01922 -0.00000 + 55 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.07143 + 56 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.04151 + 57 -0.14368 -0.41721 0.41664 -0.02850 -0.00556 -0.00000 + 58 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.07143 + 59 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.04151 + 60 -0.14368 0.41724 0.41661 0.02850 -0.00556 0.00000 31 32 33 34 35 36 - P.Frequency 1102.04 1107.67 1107.69 1110.62 1203.74 1260.97 - - 1 0.04694 -0.00000 -0.00000 0.01906 0.02863 -0.00340 - 2 0.02535 -0.00000 0.00000 0.05342 -0.04214 -0.06554 - 3 -0.00000 -0.00192 0.00087 0.00000 0.00000 0.00000 - 4 0.04694 -0.00000 -0.00000 -0.01906 0.02863 0.00340 - 5 0.02535 -0.00000 -0.00000 -0.05342 -0.04214 0.06554 - 6 0.00000 0.00192 0.00087 -0.00000 -0.00000 0.00000 - 7 -0.02099 0.00000 0.00000 0.01976 -0.02729 -0.03671 - 8 -0.01934 0.00000 0.00000 0.02743 -0.04693 0.02371 - 9 -0.00000 -0.00248 0.00297 -0.00000 -0.00000 -0.00000 - 10 -0.02099 0.00000 -0.00000 -0.01976 -0.02729 0.03671 - 11 -0.01934 0.00000 -0.00000 -0.02743 -0.04693 -0.02371 - 12 -0.00000 0.00248 0.00297 -0.00000 0.00000 -0.00000 + P.Frequency 1102.04 1107.66 1107.69 1110.62 1203.74 1260.97 + + 1 0.04695 -0.00000 0.00000 0.01906 0.02863 -0.00340 + 2 0.02535 0.00000 0.00000 0.05342 -0.04213 -0.06554 + 3 -0.00000 -0.00193 0.00087 -0.00000 0.00000 -0.00000 + 4 0.04695 -0.00000 -0.00000 -0.01906 0.02863 0.00340 + 5 0.02535 -0.00000 -0.00000 -0.05342 -0.04213 0.06554 + 6 0.00000 0.00193 0.00087 -0.00000 0.00000 -0.00000 + 7 -0.02099 0.00000 0.00000 0.01976 -0.02728 -0.03671 + 8 -0.01934 0.00000 0.00000 0.02743 -0.04693 0.02372 + 9 0.00000 -0.00248 0.00297 -0.00000 -0.00000 0.00000 + 10 -0.02099 0.00000 -0.00000 -0.01976 -0.02728 0.03671 + 11 -0.01934 -0.00000 -0.00000 -0.02743 -0.04693 -0.02372 + 12 0.00000 0.00248 0.00297 -0.00000 0.00000 -0.00000 13 -0.04804 0.00000 0.00000 0.03976 -0.01629 -0.03141 - 14 0.00570 -0.00000 -0.00000 -0.01821 0.07107 -0.00829 - 15 0.00000 -0.00234 -0.00308 0.00000 0.00000 0.00000 - 16 -0.04804 0.00000 -0.00000 -0.03976 -0.01629 0.03141 - 17 0.00570 -0.00000 0.00000 0.01821 0.07107 0.00829 - 18 0.00000 0.00234 -0.00308 0.00000 -0.00000 0.00000 - 19 0.03416 -0.00000 -0.00000 0.01348 0.06975 -0.18957 - 20 -0.17696 0.00000 0.00000 0.05635 -0.33442 0.42657 - 21 0.00000 0.02423 -0.00462 0.00000 0.00000 0.00000 - 22 0.03416 -0.00000 -0.00000 -0.01348 0.06975 0.18957 - 23 -0.17696 0.00000 0.00000 -0.05635 -0.33442 -0.42657 - 24 0.00000 -0.02423 -0.00461 0.00000 -0.00000 0.00000 - 25 -0.05564 0.00000 0.00000 0.08428 0.24896 -0.27152 - 26 0.00503 -0.00000 0.00000 0.02712 0.40594 -0.29734 - 27 -0.00000 -0.01630 -0.00365 -0.00000 -0.00000 -0.00000 - 28 -0.05564 0.00000 -0.00000 -0.08428 0.24896 0.27151 - 29 0.00503 -0.00000 -0.00000 -0.02712 0.40594 0.29734 - 30 -0.00000 0.01630 -0.00365 -0.00000 0.00000 -0.00000 + 14 0.00570 -0.00000 -0.00000 -0.01821 0.07108 -0.00829 + 15 -0.00000 -0.00234 -0.00308 -0.00000 -0.00000 -0.00000 + 16 -0.04804 -0.00000 -0.00000 -0.03976 -0.01629 0.03141 + 17 0.00570 0.00000 0.00000 0.01821 0.07108 0.00829 + 18 -0.00000 0.00234 -0.00308 -0.00000 0.00000 0.00000 + 19 0.03415 0.00000 0.00000 0.01348 0.06976 -0.18957 + 20 -0.17695 0.00000 0.00000 0.05635 -0.33442 0.42657 + 21 -0.00000 0.02424 -0.00462 -0.00000 0.00000 -0.00000 + 22 0.03415 -0.00000 -0.00000 -0.01348 0.06976 0.18957 + 23 -0.17695 0.00000 -0.00000 -0.05635 -0.33442 -0.42657 + 24 -0.00000 -0.02424 -0.00462 -0.00000 0.00000 -0.00000 + 25 -0.05563 0.00000 0.00000 0.08428 0.24896 -0.27152 + 26 0.00504 -0.00000 0.00000 0.02712 0.40593 -0.29734 + 27 0.00000 -0.01630 -0.00364 0.00000 0.00000 0.00000 + 28 -0.05563 -0.00000 -0.00000 -0.08428 0.24896 0.27152 + 29 0.00504 -0.00000 -0.00000 -0.02712 0.40593 0.29734 + 30 0.00000 0.01630 -0.00364 0.00000 -0.00000 0.00000 31 0.04505 -0.00000 -0.00000 -0.04318 -0.00748 -0.02482 32 0.02723 -0.00000 -0.00000 -0.02355 -0.00840 -0.02168 - 33 0.00000 0.05885 0.05838 -0.00000 -0.00000 0.00000 + 33 0.00000 0.05883 0.05838 -0.00000 0.00000 0.00000 34 0.04505 -0.00000 0.00000 0.04318 -0.00748 0.02482 35 0.02723 -0.00000 0.00000 0.02355 -0.00840 0.02168 - 36 -0.00000 -0.05883 0.05840 -0.00000 -0.00000 0.00000 + 36 -0.00000 -0.05883 0.05838 -0.00000 -0.00000 0.00000 37 -0.01470 0.00000 0.00000 0.01431 -0.00167 -0.00830 - 38 0.29025 -0.00000 -0.00000 -0.27112 -0.02883 -0.11123 - 39 -0.00000 -0.55173 -0.55228 0.00000 -0.00000 -0.00000 + 38 0.29025 -0.00000 -0.00000 -0.27113 -0.02883 -0.11123 + 39 -0.00000 -0.55163 -0.55235 0.00000 -0.00000 -0.00000 40 -0.01470 0.00000 -0.00000 -0.01431 -0.00167 0.00830 - 41 0.29025 -0.00000 0.00000 0.27112 -0.02883 0.11123 - 42 0.00000 0.55155 -0.55245 0.00000 0.00000 -0.00000 + 41 0.29025 -0.00000 0.00000 0.27113 -0.02883 0.11123 + 42 0.00000 0.55163 -0.55235 0.00000 0.00000 -0.00000 43 -0.03775 0.00000 0.00000 0.03463 0.00346 0.00807 44 -0.05944 0.00000 0.00000 0.07151 0.02145 -0.00126 - 45 0.00000 -0.00488 -0.00480 0.00000 0.00000 -0.00000 + 45 -0.00000 -0.00488 -0.00480 0.00000 0.00000 -0.00000 46 -0.03775 0.00000 -0.00000 -0.03463 0.00346 -0.00807 47 -0.05944 0.00000 -0.00000 -0.07151 0.02145 0.00126 - 48 0.00000 0.00488 -0.00480 -0.00000 0.00000 -0.00000 + 48 0.00000 0.00488 -0.00480 0.00000 0.00000 -0.00000 49 -0.09351 0.00000 0.00000 0.09075 0.01215 0.01809 - 50 0.28920 -0.00000 -0.00000 -0.28508 -0.03881 -0.05449 - 51 -0.00000 -0.31296 -0.31349 0.00000 0.00000 -0.00000 + 50 0.28921 -0.00000 -0.00000 -0.28509 -0.03880 -0.05448 + 51 -0.00000 -0.31291 -0.31353 0.00000 -0.00000 0.00000 52 -0.09351 0.00000 -0.00000 -0.09075 0.01215 -0.01809 - 53 0.28920 -0.00000 0.00000 0.28508 -0.03881 0.05449 - 54 0.00000 0.31286 -0.31359 0.00000 -0.00000 -0.00000 - 55 0.30573 -0.00000 -0.00000 -0.33075 -0.10350 0.00609 + 53 0.28921 -0.00000 0.00000 0.28509 -0.03880 0.05448 + 54 0.00000 0.31291 -0.31353 0.00000 -0.00000 0.00000 + 55 0.30574 -0.00000 -0.00000 -0.33076 -0.10350 0.00609 56 -0.16345 0.00000 0.00000 0.18342 0.05501 -0.00223 - 57 0.00000 0.22667 0.22707 -0.00000 -0.00000 0.00000 - 58 0.30573 -0.00000 0.00000 0.33075 -0.10350 -0.00609 + 57 0.00000 0.22667 0.22715 -0.00000 -0.00000 0.00000 + 58 0.30574 -0.00000 0.00000 0.33076 -0.10350 -0.00609 59 -0.16345 0.00000 -0.00000 -0.18342 0.05501 0.00223 - 60 -0.00000 -0.22660 0.22714 -0.00000 -0.00000 0.00000 + 60 -0.00000 -0.22667 0.22715 -0.00000 -0.00000 0.00000 37 38 39 40 41 42 - P.Frequency 1284.28 1296.19 1350.02 1398.54 1422.12 1427.49 + P.Frequency 1284.27 1296.19 1350.01 1398.54 1422.11 1427.49 - 1 0.04119 0.00127 -0.12418 -0.07790 0.01964 0.04521 - 2 -0.12977 -0.12799 -0.03519 -0.01093 -0.01047 -0.00155 - 3 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 4 0.04119 -0.00127 -0.12418 0.07790 0.01964 -0.04521 - 5 -0.12977 0.12799 -0.03519 0.01093 -0.01047 0.00155 - 6 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 7 -0.00046 -0.03751 0.05352 -0.00609 0.00048 0.01031 - 8 0.04828 -0.05691 -0.08213 0.01241 0.02855 -0.01866 - 9 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 10 -0.00046 0.03751 0.05352 0.00609 0.00048 -0.01031 - 11 0.04828 0.05691 -0.08213 -0.01241 0.02855 0.01866 - 12 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 13 -0.05548 0.00314 0.04647 0.01121 -0.01628 -0.01266 - 14 -0.01803 0.07015 0.06651 0.03346 -0.02300 -0.01385 - 15 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 16 -0.05548 -0.00314 0.04647 -0.01121 -0.01628 0.01266 - 17 -0.01803 -0.07015 0.06651 -0.03346 -0.02300 0.01385 - 18 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 19 -0.10587 -0.03050 -0.03563 0.12097 0.01549 -0.07904 - 20 0.32501 -0.11311 0.16306 -0.33192 -0.00678 0.22500 - 21 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 22 -0.10587 0.03051 -0.03563 -0.12097 0.01549 0.07904 - 23 0.32501 0.11311 0.16306 0.33192 -0.00678 -0.22500 - 24 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 25 0.06394 0.12513 0.03793 -0.23084 0.02576 0.14533 - 26 0.12721 0.23430 0.05325 -0.25695 0.02695 0.17772 - 27 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 28 0.06394 -0.12513 0.03793 0.23084 0.02576 -0.14533 - 29 0.12721 -0.23430 0.05325 0.25695 0.02695 -0.17772 - 30 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 31 0.02904 -0.04528 0.04595 -0.05239 0.06164 -0.04602 - 32 0.01723 -0.03076 0.03338 -0.02821 0.01096 -0.00034 - 33 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 34 0.02904 0.04528 0.04595 0.05239 0.06164 0.04602 - 35 0.01723 0.03076 0.03338 0.02821 0.01096 0.00034 - 36 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 37 -0.00840 -0.00838 0.04729 -0.11368 0.18734 -0.15725 - 38 0.21089 -0.22650 0.04885 0.21177 -0.48959 0.44331 - 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 40 -0.00840 0.00838 0.04729 0.11368 0.18734 0.15725 - 41 0.21089 0.22650 0.04885 -0.21177 -0.48959 -0.44331 - 42 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 43 -0.00426 0.01681 -0.02584 0.04336 -0.07098 0.06146 - 44 0.01941 -0.01485 -0.01210 0.00813 0.01040 -0.01493 - 45 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 46 -0.00426 -0.01681 -0.02584 -0.04336 -0.07098 -0.06146 - 47 0.01941 0.01485 -0.01210 -0.00813 0.01040 0.01493 - 48 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 49 -0.01092 0.03261 -0.04981 0.07921 -0.12421 0.10438 - 50 0.04587 -0.09139 0.11906 -0.17634 0.26383 -0.21406 - 51 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 52 -0.01092 -0.03261 -0.04981 -0.07921 -0.12421 -0.10438 - 53 0.04587 0.09139 0.11906 0.17634 0.26383 0.21405 - 54 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 55 -0.05819 0.00434 0.04880 -0.01601 -0.03897 0.03853 - 56 0.03965 -0.01588 -0.03265 0.02236 0.00981 -0.01631 + 1 -0.04119 0.00127 0.12417 -0.07790 0.01964 0.04521 + 2 0.12977 -0.12800 0.03520 -0.01093 -0.01046 -0.00155 + 3 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 4 -0.04119 -0.00127 0.12417 0.07790 0.01964 -0.04521 + 5 0.12977 0.12800 0.03520 0.01093 -0.01046 0.00155 + 6 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 7 0.00046 -0.03751 -0.05352 -0.00609 0.00048 0.01031 + 8 -0.04829 -0.05691 0.08213 0.01241 0.02855 -0.01866 + 9 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 10 0.00046 0.03751 -0.05352 0.00609 0.00048 -0.01031 + 11 -0.04829 0.05691 0.08213 -0.01241 0.02855 0.01866 + 12 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 13 0.05548 0.00314 -0.04647 0.01121 -0.01627 -0.01266 + 14 0.01803 0.07015 -0.06651 0.03346 -0.02300 -0.01385 + 15 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 16 0.05548 -0.00314 -0.04647 -0.01121 -0.01627 0.01266 + 17 0.01803 -0.07015 -0.06651 -0.03346 -0.02300 0.01385 + 18 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 19 0.10587 -0.03051 0.03564 0.12098 0.01549 -0.07904 + 20 -0.32500 -0.11310 -0.16309 -0.33192 -0.00678 0.22499 + 21 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 22 0.10587 0.03051 0.03564 -0.12098 0.01549 0.07904 + 23 -0.32500 0.11310 -0.16309 0.33192 -0.00678 -0.22499 + 24 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 25 -0.06395 0.12513 -0.03793 -0.23084 0.02576 0.14533 + 26 -0.12723 0.23430 -0.05324 -0.25695 0.02695 0.17772 + 27 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 28 -0.06395 -0.12513 -0.03793 0.23084 0.02576 -0.14533 + 29 -0.12723 -0.23429 -0.05324 0.25695 0.02695 -0.17772 + 30 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 31 -0.02904 -0.04528 -0.04595 -0.05239 0.06164 -0.04602 + 32 -0.01723 -0.03076 -0.03338 -0.02821 0.01096 -0.00034 + 33 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 34 -0.02904 0.04528 -0.04595 0.05239 0.06164 0.04602 + 35 -0.01723 0.03076 -0.03338 0.02821 0.01096 0.00034 + 36 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 37 0.00840 -0.00838 -0.04728 -0.11368 0.18734 -0.15725 + 38 -0.21087 -0.22650 -0.04887 0.21177 -0.48959 0.44331 + 39 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 40 0.00840 0.00838 -0.04728 0.11368 0.18734 0.15725 + 41 -0.21087 0.22650 -0.04887 -0.21177 -0.48959 -0.44331 + 42 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 43 0.00426 0.01681 0.02584 0.04336 -0.07098 0.06146 + 44 -0.01941 -0.01485 0.01210 0.00813 0.01040 -0.01493 + 45 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 46 0.00426 -0.01681 0.02584 -0.04336 -0.07098 -0.06146 + 47 -0.01941 0.01485 0.01210 -0.00813 0.01040 0.01493 + 48 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 49 0.01092 0.03261 0.04981 0.07921 -0.12421 0.10438 + 50 -0.04586 -0.09139 -0.11906 -0.17634 0.26383 -0.21406 + 51 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 52 0.01092 -0.03261 0.04981 -0.07921 -0.12421 -0.10438 + 53 -0.04586 0.09139 -0.11906 0.17634 0.26383 0.21406 + 54 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 55 0.05820 0.00434 -0.04881 -0.01601 -0.03896 0.03853 + 56 -0.03966 -0.01588 0.03266 0.02236 0.00981 -0.01631 57 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 58 -0.05819 -0.00434 0.04880 0.01601 -0.03897 -0.03853 - 59 0.03965 0.01588 -0.03265 -0.02236 0.00981 0.01631 - 60 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 58 0.05820 -0.00434 -0.04881 0.01601 -0.03896 -0.03853 + 59 -0.03966 0.01588 0.03266 -0.02236 0.00981 0.01631 + 60 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 43 44 45 46 47 48 - P.Frequency 1514.54 1565.41 1575.24 1639.66 1690.93 1738.52 + P.Frequency 1514.54 1565.41 1575.24 1639.65 1690.93 1738.51 - 1 0.08527 0.01922 -0.03915 0.02451 -0.13386 -0.00458 - 2 -0.00349 0.02695 0.01787 0.10213 0.01396 -0.08068 - 3 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 4 0.08527 -0.01922 -0.03915 0.02451 0.13386 0.00458 - 5 -0.00349 -0.02695 0.01787 0.10213 -0.01396 0.08068 - 6 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 7 -0.04360 -0.01122 0.00023 0.05014 0.07415 -0.01530 - 8 -0.07879 0.02449 0.03519 -0.07384 -0.05243 0.12505 - 9 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 10 -0.04360 0.01122 0.00023 0.05014 -0.07415 0.01530 - 11 -0.07879 -0.02449 0.03519 -0.07384 0.05243 -0.12505 - 12 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 13 0.00986 0.01487 0.02099 -0.07262 -0.09008 -0.04487 - 14 0.09862 -0.00334 -0.02237 -0.04321 -0.02878 -0.11057 - 15 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 16 0.00985 -0.01487 0.02099 -0.07262 0.09008 0.04487 - 17 0.09862 0.00334 -0.02237 -0.04321 0.02878 0.11057 - 18 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 19 -0.14081 0.01375 0.06084 -0.07316 0.01800 0.08716 - 20 0.14094 -0.04299 -0.11828 0.28375 0.12921 -0.13556 - 21 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 22 -0.14081 -0.01375 0.06084 -0.07316 -0.01800 -0.08716 - 23 0.14094 0.04299 -0.11828 0.28375 -0.12921 0.13556 - 24 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 25 -0.24353 -0.00270 0.01876 0.14393 0.03698 0.12756 - 26 -0.19038 -0.02963 -0.03543 0.23625 0.14250 0.08869 - 27 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 28 -0.24353 0.00270 0.01876 0.14393 -0.03698 -0.12756 - 29 -0.19038 0.02963 -0.03543 0.23625 -0.14250 -0.08869 - 30 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 31 0.00043 -0.02441 0.02827 -0.01305 -0.00315 0.00495 - 32 -0.04377 0.08495 -0.06811 -0.02165 -0.01480 -0.02290 - 33 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 34 0.00043 0.02441 0.02827 -0.01305 0.00315 -0.00495 - 35 -0.04377 -0.08495 -0.06811 -0.02165 0.01480 0.02290 - 36 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 37 0.00014 0.03396 -0.03511 -0.01750 0.01293 -0.00561 - 38 -0.03126 -0.17967 0.21584 -0.01816 -0.07352 0.02444 - 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 40 0.00014 -0.03396 -0.03511 -0.01750 -0.01293 0.00561 - 41 -0.03126 0.17967 0.21584 -0.01816 0.07352 -0.02444 - 42 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 43 -0.00641 -0.01999 0.02357 0.01332 -0.01811 -0.00650 - 44 0.02123 -0.00061 -0.00872 -0.01177 0.02548 0.00948 - 45 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 46 -0.00641 0.01999 0.02357 0.01332 0.01811 0.00650 - 47 0.02123 0.00061 -0.00872 -0.01177 -0.02548 -0.00948 - 48 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 49 -0.02288 0.05068 -0.04684 0.00222 0.00195 -0.00215 - 50 0.08857 -0.36161 0.35913 0.05792 -0.10371 -0.02693 - 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 52 -0.02288 -0.05068 -0.04684 0.00222 -0.00195 0.00215 - 53 0.08857 0.36161 0.35913 0.05792 0.10371 0.02693 - 54 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 55 -0.13520 0.42767 -0.40143 -0.08290 0.07997 0.01542 - 56 0.06598 -0.14591 0.12814 0.01579 -0.00179 0.00410 - 57 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 58 -0.13520 -0.42767 -0.40143 -0.08290 -0.07997 -0.01542 - 59 0.06598 0.14591 0.12814 0.01579 0.00179 -0.00410 - 60 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 1 0.08527 0.01922 0.03916 0.02451 -0.13386 -0.00458 + 2 -0.00349 0.02695 -0.01787 0.10213 0.01396 -0.08068 + 3 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 4 0.08527 -0.01922 0.03916 0.02451 0.13386 0.00458 + 5 -0.00349 -0.02695 -0.01787 0.10213 -0.01396 0.08068 + 6 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 7 -0.04360 -0.01122 -0.00024 0.05014 0.07415 -0.01530 + 8 -0.07878 0.02449 -0.03520 -0.07384 -0.05243 0.12506 + 9 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 10 -0.04360 0.01122 -0.00024 0.05014 -0.07415 0.01530 + 11 -0.07878 -0.02449 -0.03520 -0.07384 0.05243 -0.12506 + 12 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 13 0.00986 0.01487 -0.02099 -0.07262 -0.09008 -0.04487 + 14 0.09862 -0.00334 0.02237 -0.04321 -0.02878 -0.11057 + 15 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 16 0.00986 -0.01487 -0.02099 -0.07262 0.09008 0.04487 + 17 0.09862 0.00334 0.02237 -0.04321 0.02878 0.11057 + 18 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 19 -0.14081 0.01375 -0.06085 -0.07317 0.01800 0.08716 + 20 0.14094 -0.04299 0.11829 0.28374 0.12921 -0.13556 + 21 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 22 -0.14081 -0.01375 -0.06085 -0.07317 -0.01800 -0.08716 + 23 0.14094 0.04299 0.11829 0.28374 -0.12921 0.13556 + 24 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 25 -0.24353 -0.00270 -0.01876 0.14393 0.03698 0.12756 + 26 -0.19038 -0.02963 0.03543 0.23625 0.14250 0.08869 + 27 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 28 -0.24353 0.00270 -0.01876 0.14393 -0.03698 -0.12756 + 29 -0.19038 0.02963 0.03543 0.23625 -0.14250 -0.08869 + 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 31 0.00043 -0.02441 -0.02827 -0.01305 -0.00315 0.00495 + 32 -0.04378 0.08496 0.06811 -0.02165 -0.01480 -0.02290 + 33 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 34 0.00043 0.02441 -0.02827 -0.01305 0.00315 -0.00495 + 35 -0.04378 -0.08496 0.06811 -0.02165 0.01480 0.02290 + 36 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 37 0.00014 0.03396 0.03510 -0.01750 0.01293 -0.00561 + 38 -0.03125 -0.17967 -0.21584 -0.01816 -0.07353 0.02444 + 39 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 40 0.00014 -0.03396 0.03510 -0.01750 -0.01293 0.00561 + 41 -0.03125 0.17967 -0.21584 -0.01816 0.07353 -0.02444 + 42 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 43 -0.00641 -0.01998 -0.02357 0.01332 -0.01811 -0.00650 + 44 0.02123 -0.00061 0.00872 -0.01177 0.02547 0.00948 + 45 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 46 -0.00641 0.01998 -0.02357 0.01332 0.01811 0.00650 + 47 0.02123 0.00061 0.00872 -0.01177 -0.02547 -0.00948 + 48 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 49 -0.02288 0.05068 0.04685 0.00222 0.00195 -0.00215 + 50 0.08858 -0.36160 -0.35912 0.05793 -0.10371 -0.02693 + 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 52 -0.02288 -0.05068 0.04685 0.00222 -0.00195 0.00215 + 53 0.08858 0.36160 -0.35912 0.05793 0.10371 0.02693 + 54 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 55 -0.13521 0.42767 0.40142 -0.08291 0.07996 0.01543 + 56 0.06598 -0.14591 -0.12813 0.01580 -0.00179 0.00410 + 57 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 58 -0.13521 -0.42767 0.40142 -0.08291 -0.07996 -0.01543 + 59 0.06598 0.14591 -0.12813 0.01580 0.00179 -0.00410 + 60 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 49 50 51 52 53 54 - P.Frequency 1814.82 1815.79 3394.02 3394.76 3432.82 3432.82 - - 1 -0.03130 0.01449 -0.00016 0.00015 0.00037 0.00033 - 2 0.00994 -0.02488 -0.00002 0.00004 0.00161 0.00159 - 3 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 4 0.03130 0.01449 -0.00016 -0.00015 0.00037 -0.00033 - 5 -0.00994 -0.02488 -0.00002 -0.00004 0.00160 -0.00159 - 6 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 7 0.01075 -0.00476 -0.00077 0.00028 -0.00151 -0.00199 - 8 0.01758 -0.00541 -0.00008 -0.00012 -0.00056 -0.00075 - 9 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 10 -0.01075 -0.00476 -0.00077 -0.00028 -0.00150 0.00199 - 11 -0.01758 -0.00541 -0.00008 0.00012 -0.00055 0.00075 - 12 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 13 -0.02265 -0.00002 0.00110 0.00096 0.00037 0.00045 - 14 -0.02175 0.01020 -0.00077 -0.00050 0.00018 -0.00057 - 15 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 16 0.02264 -0.00002 0.00110 -0.00096 0.00037 -0.00045 - 17 0.02175 0.01020 -0.00077 0.00050 0.00018 0.00057 - 18 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 19 0.02205 -0.01127 0.00879 -0.00190 0.01761 0.02360 - 20 -0.00276 0.00595 0.00287 -0.00053 0.00535 0.00772 - 21 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 22 -0.02205 -0.01127 0.00879 0.00190 0.01754 -0.02365 - 23 0.00276 0.00595 0.00287 0.00053 0.00533 -0.00773 - 24 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 25 0.00664 -0.02766 -0.01020 -0.00702 -0.00243 -0.00512 - 26 0.01605 -0.01927 0.00767 0.00510 0.00177 0.00386 - 27 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 28 -0.00664 -0.02766 -0.01020 0.00702 -0.00242 0.00513 - 29 -0.01605 -0.01927 0.00767 -0.00510 0.00176 -0.00386 - 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 31 -0.07194 -0.07136 -0.01097 -0.01090 -0.05765 0.05785 - 32 0.10892 0.11364 -0.00791 -0.00787 -0.00948 0.00954 - 33 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 34 0.07194 -0.07136 -0.01097 0.01090 -0.05782 -0.05768 - 35 -0.10892 0.11364 -0.00791 0.00787 -0.00951 -0.00951 - 36 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 37 -0.03015 -0.02931 0.17464 0.17297 0.62993 -0.63206 - 38 -0.14279 -0.13895 0.03968 0.03940 0.14627 -0.14679 - 39 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 40 0.03015 -0.02931 0.17464 -0.17298 0.63178 0.63022 - 41 0.14279 -0.13895 0.03968 -0.03940 0.14670 0.14637 - 42 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 43 0.07693 0.07771 -0.02954 -0.02951 0.01391 -0.01387 - 44 -0.09225 -0.09392 0.03603 0.03607 -0.01030 0.01021 - 45 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 46 -0.07693 0.07771 -0.02954 0.02951 0.01395 0.01382 - 47 0.09225 -0.09392 0.03603 -0.03607 -0.01033 -0.01018 - 48 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 49 0.04826 0.04843 0.44963 0.45002 -0.14501 0.14401 - 50 0.19161 0.19575 0.08010 0.08015 -0.02801 0.02786 - 51 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 52 -0.04826 0.04843 0.44962 -0.45003 -0.14543 -0.14359 - 53 -0.19161 0.19575 0.08010 -0.08015 -0.02809 -0.02778 - 54 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 55 -0.17113 -0.17146 -0.14250 -0.14273 0.02986 -0.02948 - 56 -0.03741 -0.03905 -0.45482 -0.45521 0.09555 -0.09446 - 57 -0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 58 0.17113 -0.17146 -0.14250 0.14273 0.02995 0.02939 - 59 0.03741 -0.03905 -0.45481 0.45522 0.09583 0.09418 - 60 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + P.Frequency 1814.83 1815.80 3394.04 3394.77 3432.83 3432.83 + + 1 -0.03129 -0.01449 0.00016 0.00015 -0.00037 0.00033 + 2 0.00993 0.02488 0.00002 0.00005 -0.00160 0.00159 + 3 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 4 0.03129 -0.01449 0.00016 -0.00015 -0.00037 -0.00033 + 5 -0.00993 0.02488 0.00002 -0.00005 -0.00160 -0.00159 + 6 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 7 0.01075 0.00476 0.00077 0.00027 0.00151 -0.00199 + 8 0.01758 0.00541 0.00008 -0.00012 0.00056 -0.00075 + 9 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 10 -0.01075 0.00476 0.00077 -0.00027 0.00151 0.00199 + 11 -0.01758 0.00541 0.00008 0.00012 0.00056 0.00075 + 12 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 13 -0.02264 0.00002 -0.00110 0.00096 -0.00037 0.00045 + 14 -0.02175 -0.01020 0.00077 -0.00050 -0.00018 -0.00057 + 15 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 16 0.02264 0.00002 -0.00110 -0.00096 -0.00037 -0.00045 + 17 0.02175 -0.01020 0.00077 0.00050 -0.00018 0.00057 + 18 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 19 0.02205 0.01127 -0.00877 -0.00189 -0.01762 0.02365 + 20 -0.00276 -0.00594 -0.00287 -0.00053 -0.00536 0.00774 + 21 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 22 -0.02205 0.01127 -0.00877 0.00189 -0.01764 -0.02364 + 23 0.00276 -0.00594 -0.00287 0.00053 -0.00536 -0.00773 + 24 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 25 0.00664 0.02766 0.01020 -0.00702 0.00245 -0.00511 + 26 0.01604 0.01927 -0.00767 0.00510 -0.00178 0.00385 + 27 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 28 -0.00664 0.02766 0.01020 0.00702 0.00246 0.00511 + 29 -0.01604 0.01927 -0.00767 -0.00510 -0.00178 -0.00385 + 30 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 31 -0.07194 0.07136 0.01097 -0.01090 0.05776 0.05774 + 32 0.10892 -0.11364 0.00791 -0.00787 0.00950 0.00952 + 33 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 34 0.07194 0.07136 0.01097 0.01090 0.05772 -0.05779 + 35 -0.10892 -0.11364 0.00791 0.00787 0.00949 -0.00953 + 36 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 37 -0.03015 0.02931 -0.17462 0.17293 -0.63109 -0.63092 + 38 -0.14278 0.13895 -0.03967 0.03939 -0.14654 -0.14653 + 39 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 40 0.03015 0.02931 -0.17462 -0.17293 -0.63062 0.63139 + 41 0.14278 0.13895 -0.03967 -0.03939 -0.14643 0.14664 + 42 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 43 0.07693 -0.07771 0.02954 -0.02951 -0.01394 -0.01384 + 44 -0.09225 0.09392 -0.03603 0.03607 0.01031 0.01018 + 45 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 46 -0.07693 -0.07771 0.02954 0.02951 -0.01393 0.01385 + 47 0.09225 0.09392 -0.03603 -0.03607 0.01031 -0.01019 + 48 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 49 0.04826 -0.04843 -0.44964 0.45004 0.14525 0.14372 + 50 0.19162 -0.19576 -0.08010 0.08015 0.02806 0.02780 + 51 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 52 -0.04826 -0.04843 -0.44964 -0.45004 0.14515 -0.14382 + 53 -0.19162 -0.19576 -0.08010 -0.08015 0.02804 -0.02782 + 54 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 55 -0.17114 0.17147 0.14250 -0.14273 -0.02991 -0.02941 + 56 -0.03741 0.03904 0.45481 -0.45522 -0.09571 -0.09426 + 57 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 58 0.17114 0.17147 0.14250 0.14273 -0.02989 0.02944 + 59 0.03741 0.03904 0.45481 0.45522 -0.09564 0.09433 + 60 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 55 56 57 58 59 60 - P.Frequency 3447.87 3451.33 3471.31 3474.27 3546.60 3546.64 + P.Frequency 3447.88 3451.35 3471.32 3474.29 3546.60 3546.65 - 1 0.00118 0.00257 -0.00372 -0.00145 -0.00015 -0.00016 - 2 -0.00216 -0.00161 0.00002 -0.00203 0.00032 0.00032 - 3 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 4 0.00118 -0.00257 -0.00372 0.00145 -0.00015 0.00016 - 5 -0.00216 0.00161 0.00002 0.00203 0.00032 -0.00032 - 6 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 7 -0.05177 -0.05187 0.02225 -0.02231 0.00003 0.00008 - 8 -0.01792 -0.01831 0.01128 -0.01082 -0.00003 0.00007 - 9 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 10 -0.05177 0.05187 0.02225 0.02231 0.00003 -0.00008 - 11 -0.01792 0.01832 0.01128 0.01082 -0.00003 -0.00007 - 12 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 13 0.01905 0.01827 0.04224 -0.04265 -0.00032 0.00039 - 14 -0.01193 -0.01192 -0.03625 0.03639 0.00026 -0.00034 - 15 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 16 0.01905 -0.01827 0.04224 0.04265 -0.00032 -0.00039 - 17 -0.01193 0.01192 -0.03625 -0.03639 0.00026 0.00034 - 18 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 19 0.58122 0.58280 -0.24596 0.24135 0.00016 -0.00055 - 20 0.21355 0.21455 -0.09210 0.08970 -0.00005 -0.00023 - 21 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 22 0.58121 -0.58281 -0.24596 -0.24135 0.00016 0.00055 - 23 0.21354 -0.21456 -0.09210 -0.08970 -0.00005 0.00023 - 24 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 25 -0.20621 -0.20211 -0.47830 0.47989 0.00500 -0.00580 - 26 0.16674 0.16447 0.39212 -0.39313 -0.00366 0.00433 - 27 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 28 -0.20621 0.20212 -0.47831 -0.47989 0.00500 0.00579 - 29 0.16673 -0.16447 0.39212 0.39313 -0.00366 -0.00433 - 30 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 31 0.00191 -0.00209 0.00005 -0.00069 -0.00316 0.00316 - 32 0.00028 -0.00041 -0.00015 -0.00003 -0.00067 0.00067 - 33 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 34 0.00191 0.00209 0.00005 0.00069 -0.00316 -0.00316 - 35 0.00028 0.00041 -0.00015 0.00003 -0.00067 -0.00067 - 36 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 37 -0.02033 0.02367 0.00258 0.00518 0.03651 -0.03649 - 38 -0.00348 0.00486 0.00116 -0.00009 0.00653 -0.00653 - 39 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 40 -0.02033 -0.02367 0.00258 -0.00518 0.03653 0.03647 - 41 -0.00348 -0.00486 0.00116 0.00009 0.00653 0.00653 - 42 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 43 -0.00005 0.00030 -0.00022 0.00039 -0.05033 0.05035 - 44 -0.00053 -0.00071 -0.00095 0.00089 -0.04414 0.04415 - 45 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 46 -0.00005 -0.00030 -0.00022 -0.00039 -0.05035 -0.05033 - 47 -0.00053 0.00071 -0.00095 -0.00089 -0.04416 -0.04413 - 48 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 49 -0.00363 -0.00514 -0.00291 0.00074 0.46688 -0.46724 - 50 -0.00087 -0.00110 -0.00091 0.00053 0.07796 -0.07802 - 51 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 52 -0.00363 0.00514 -0.00291 -0.00074 0.46712 0.46700 - 53 -0.00087 0.00110 -0.00091 -0.00053 0.07800 0.07798 - 54 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 55 0.00232 0.00193 0.00303 -0.00291 0.13348 -0.13350 - 56 0.00824 0.00589 0.00989 -0.01015 0.44620 -0.44631 - 57 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 58 0.00232 -0.00193 0.00303 0.00291 0.13355 0.13344 - 59 0.00824 -0.00589 0.00989 0.01015 0.44643 0.44608 - 60 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 1 -0.00118 0.00257 -0.00372 -0.00145 -0.00015 -0.00016 + 2 0.00216 -0.00161 0.00002 -0.00203 0.00032 0.00032 + 3 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 4 -0.00118 -0.00257 -0.00372 0.00145 -0.00015 0.00016 + 5 0.00216 0.00161 0.00002 0.00203 0.00032 -0.00032 + 6 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 7 0.05177 -0.05188 0.02225 -0.02230 0.00003 0.00008 + 8 0.01792 -0.01832 0.01128 -0.01081 -0.00003 0.00007 + 9 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 10 0.05177 0.05188 0.02225 0.02230 0.00003 -0.00008 + 11 0.01792 0.01832 0.01128 0.01081 -0.00003 -0.00007 + 12 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 13 -0.01905 0.01826 0.04224 -0.04266 -0.00032 0.00039 + 14 0.01193 -0.01192 -0.03625 0.03639 0.00026 -0.00034 + 15 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 16 -0.01905 -0.01826 0.04224 0.04266 -0.00032 -0.00039 + 17 0.01193 0.01192 -0.03625 -0.03639 0.00026 0.00034 + 18 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 19 -0.58121 0.58284 -0.24595 0.24125 0.00016 -0.00055 + 20 -0.21355 0.21457 -0.09209 0.08967 -0.00005 -0.00023 + 21 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 22 -0.58121 -0.58284 -0.24595 -0.24125 0.00016 0.00055 + 23 -0.21355 -0.21457 -0.09209 -0.08967 -0.00005 0.00023 + 24 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 25 0.20621 -0.20204 -0.47831 0.47992 0.00500 -0.00579 + 26 -0.16673 0.16441 0.39212 -0.39316 -0.00366 0.00433 + 27 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 28 0.20621 0.20204 -0.47831 -0.47992 0.00500 0.00579 + 29 -0.16673 -0.16441 0.39212 0.39316 -0.00366 -0.00433 + 30 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 31 -0.00192 -0.00209 0.00005 -0.00069 -0.00316 0.00316 + 32 -0.00028 -0.00041 -0.00015 -0.00003 -0.00067 0.00067 + 33 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 34 -0.00192 0.00209 0.00005 0.00069 -0.00316 -0.00316 + 35 -0.00028 0.00041 -0.00015 0.00003 -0.00067 -0.00067 + 36 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 37 0.02039 0.02368 0.00257 0.00520 0.03652 -0.03648 + 38 0.00350 0.00486 0.00116 -0.00008 0.00653 -0.00653 + 39 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 40 0.02039 -0.02368 0.00257 -0.00520 0.03652 0.03648 + 41 0.00350 -0.00486 0.00116 0.00008 0.00653 0.00653 + 42 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 43 0.00006 0.00030 -0.00022 0.00039 -0.05034 0.05034 + 44 0.00053 -0.00071 -0.00095 0.00089 -0.04415 0.04414 + 45 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 46 0.00006 -0.00030 -0.00022 -0.00039 -0.05034 -0.05034 + 47 0.00053 0.00071 -0.00095 -0.00089 -0.04415 -0.04414 + 48 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 49 0.00360 -0.00515 -0.00291 0.00074 0.46698 -0.46713 + 50 0.00087 -0.00110 -0.00091 0.00053 0.07798 -0.07800 + 51 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.00360 0.00515 -0.00291 -0.00074 0.46701 0.46710 + 53 0.00087 0.00110 -0.00091 -0.00053 0.07798 0.07800 + 54 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 55 -0.00232 0.00193 0.00304 -0.00291 0.13352 -0.13348 + 56 -0.00822 0.00589 0.00990 -0.01015 0.44631 -0.44621 + 57 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 58 -0.00232 -0.00193 0.00304 0.00291 0.13352 0.13347 + 59 -0.00822 -0.00589 0.00990 0.01015 0.44633 0.44619 + 60 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 @@ -2668,66 +2665,66 @@ Iterative solution of linear equations Normal Eigenvalue || Projected Derivative Dipole Moments (debye/angs) Mode [cm**-1] || [d/dqX] [d/dqY] [d/dqZ] ------ ---------- || ------------------ ------------------ ----------------- - 1 -0.000 || 0.000 -0.000 -0.000 - 2 0.000 || 0.000 -0.000 0.000 - 3 0.000 || 0.000 0.000 0.000 - 4 0.000 || -0.000 -0.000 0.000 - 5 0.000 || -0.000 0.000 -0.000 - 6 0.000 || 0.000 0.000 0.000 - 7 48.959 || 0.000 0.000 0.026 - 8 81.538 || -0.000 -0.000 0.000 - 9 151.678 || -0.000 0.000 -0.091 - 10 181.035 || 0.031 -0.073 -0.000 - 11 265.730 || -0.000 -0.000 -0.000 - 12 300.962 || 0.000 -0.000 -0.000 - 13 407.914 || 0.000 -0.000 -0.000 - 14 424.393 || 0.000 -0.000 0.049 - 15 468.981 || 0.000 -0.000 0.372 - 16 487.911 || -0.018 0.214 -0.000 - 17 578.834 || -0.000 -0.000 -0.000 - 18 657.318 || -0.000 -0.000 -0.000 - 19 673.472 || -0.000 0.000 0.000 - 20 707.323 || -0.000 0.000 -0.105 - 21 735.107 || 0.024 -0.318 0.000 - 22 810.711 || -0.000 0.000 0.000 - 23 862.516 || -0.000 -0.000 -0.000 - 24 895.306 || 0.000 0.000 -0.000 - 25 896.448 || -0.000 -0.000 0.788 - 26 980.828 || -0.000 0.000 0.000 - 27 980.897 || 0.000 -0.000 0.931 - 28 1017.725 || 0.000 0.000 0.000 - 29 1036.477 || -0.000 0.000 0.013 - 30 1073.559 || -0.014 0.107 -0.000 - 31 1102.038 || 0.034 0.456 0.000 - 32 1107.666 || -0.000 -0.000 -0.000 - 33 1107.689 || 0.000 -0.000 -0.558 - 34 1110.616 || -0.000 0.000 0.000 - 35 1203.736 || 0.090 -0.165 0.000 - 36 1260.965 || -0.000 -0.000 0.000 - 37 1284.275 || -0.024 -0.026 -0.000 - 38 1296.189 || 0.000 -0.000 -0.000 - 39 1350.023 || 0.050 0.459 0.000 - 40 1398.543 || -0.000 -0.000 0.000 - 41 1422.117 || -0.086 0.439 -0.000 - 42 1427.488 || 0.000 -0.000 -0.000 - 43 1514.545 || -0.648 -0.166 0.000 - 44 1565.407 || 0.000 0.000 0.000 - 45 1575.245 || -0.082 -0.083 0.000 - 46 1639.656 || -0.039 0.600 -0.000 - 47 1690.934 || -0.000 0.000 0.000 - 48 1738.521 || 0.000 0.000 -0.000 - 49 1814.823 || -0.000 0.000 0.000 - 50 1815.793 || -0.188 -0.009 -0.000 - 51 3394.024 || -0.361 1.489 0.000 - 52 3394.756 || -0.000 0.000 0.000 - 53 3432.817 || 0.067 -0.289 -0.000 - 54 3432.821 || -0.000 0.000 -0.000 - 55 3447.865 || 0.172 0.028 0.000 - 56 3451.333 || -0.000 -0.000 0.000 - 57 3471.309 || -0.346 0.112 0.000 - 58 3474.273 || 0.000 -0.000 -0.000 - 59 3546.597 || 0.012 -0.020 0.000 - 60 3546.642 || -0.000 0.000 -0.000 + 1 -0.000 || -0.000 0.000 -0.000 + 2 -0.000 || 0.000 -0.000 -0.000 + 3 -0.000 || 0.000 0.000 -0.000 + 4 0.000 || 0.000 -0.000 0.000 + 5 0.000 || 0.000 -0.000 0.000 + 6 0.000 || 0.000 0.000 -0.000 + 7 49.010 || -0.000 0.000 0.027 + 8 81.563 || -0.000 0.000 -0.000 + 9 151.698 || 0.000 -0.000 -0.091 + 10 181.038 || 0.031 -0.073 0.000 + 11 265.733 || 0.000 -0.000 0.000 + 12 300.969 || 0.000 -0.000 -0.000 + 13 407.917 || 0.000 -0.000 -0.000 + 14 424.393 || 0.000 -0.000 -0.049 + 15 468.977 || -0.000 0.000 0.372 + 16 487.917 || -0.018 0.214 0.000 + 17 578.842 || -0.000 0.000 0.000 + 18 657.328 || 0.000 -0.000 -0.000 + 19 673.470 || 0.000 -0.000 0.000 + 20 707.330 || 0.000 -0.000 -0.105 + 21 735.110 || -0.024 0.319 -0.000 + 22 810.677 || -0.000 0.000 0.000 + 23 862.518 || -0.000 0.000 0.000 + 24 895.309 || -0.000 0.000 -0.000 + 25 896.429 || 0.000 -0.000 0.788 + 26 980.901 || -0.000 0.000 0.000 + 27 980.975 || -0.000 0.000 0.930 + 28 1017.729 || -0.000 0.000 -0.000 + 29 1036.478 || -0.000 0.000 -0.013 + 30 1073.558 || 0.014 -0.107 -0.000 + 31 1102.043 || 0.034 0.456 -0.000 + 32 1107.662 || 0.000 -0.000 0.000 + 33 1107.685 || 0.000 -0.000 -0.558 + 34 1110.621 || -0.000 -0.000 0.000 + 35 1203.737 || 0.090 -0.165 0.000 + 36 1260.965 || 0.000 0.000 0.000 + 37 1284.270 || 0.024 0.025 -0.000 + 38 1296.189 || 0.000 0.000 0.000 + 39 1350.007 || -0.050 -0.460 -0.000 + 40 1398.542 || 0.000 0.000 -0.000 + 41 1422.113 || -0.086 0.440 -0.000 + 42 1427.487 || 0.000 -0.000 0.000 + 43 1514.545 || -0.648 -0.167 0.000 + 44 1565.407 || 0.000 -0.000 -0.000 + 45 1575.243 || 0.082 0.084 0.000 + 46 1639.653 || -0.039 0.601 0.000 + 47 1690.932 || -0.000 -0.000 0.000 + 48 1738.513 || -0.000 -0.000 -0.000 + 49 1814.826 || -0.000 -0.000 0.000 + 50 1815.798 || 0.188 0.009 -0.000 + 51 3394.043 || -0.362 1.486 -0.000 + 52 3394.772 || 0.000 -0.000 -0.000 + 53 3432.831 || -0.068 0.287 0.000 + 54 3432.835 || 0.000 -0.000 0.000 + 55 3447.881 || -0.173 -0.028 0.000 + 56 3451.354 || -0.000 0.000 0.000 + 57 3471.324 || -0.347 0.112 0.000 + 58 3474.287 || 0.000 -0.000 -0.000 + 59 3546.602 || 0.012 -0.020 -0.000 + 60 3546.649 || -0.000 0.000 0.000 ---------------------------------------------------------------------------- @@ -2739,72 +2736,78 @@ Iterative solution of linear equations Mode [cm**-1] || [atomic units] [(debye/angs)**2] [(KM/mol)] [arbitrary] ------ ---------- || -------------- ----------------- ---------- ----------- 1 -0.000 || 0.000000 0.000 0.000 0.000 - 2 0.000 || 0.000000 0.000 0.000 0.000 - 3 0.000 || 0.000000 0.000 0.000 0.000 + 2 -0.000 || 0.000000 0.000 0.000 0.000 + 3 -0.000 || 0.000000 0.000 0.000 0.000 4 0.000 || 0.000000 0.000 0.000 0.000 5 0.000 || 0.000000 0.000 0.000 0.000 6 0.000 || 0.000000 0.000 0.000 0.000 - 7 48.959 || 0.000030 0.001 0.029 0.066 - 8 81.538 || 0.000000 0.000 0.000 0.000 - 9 151.678 || 0.000361 0.008 0.352 0.801 - 10 181.035 || 0.000273 0.006 0.266 0.606 - 11 265.730 || 0.000000 0.000 0.000 0.000 - 12 300.962 || 0.000000 0.000 0.000 0.000 - 13 407.914 || 0.000000 0.000 0.000 0.000 - 14 424.393 || 0.000104 0.002 0.102 0.231 - 15 468.981 || 0.006007 0.139 5.856 13.320 - 16 487.911 || 0.001998 0.046 1.948 4.431 - 17 578.834 || 0.000000 0.000 0.000 0.000 - 18 657.318 || 0.000000 0.000 0.000 0.000 - 19 673.472 || 0.000000 0.000 0.000 0.000 - 20 707.323 || 0.000480 0.011 0.468 1.064 - 21 735.107 || 0.004420 0.102 4.309 9.802 - 22 810.711 || 0.000000 0.000 0.000 0.000 - 23 862.516 || 0.000000 0.000 0.000 0.000 - 24 895.306 || 0.000000 0.000 0.000 0.000 - 25 896.448 || 0.026921 0.621 26.244 59.697 - 26 980.828 || 0.000000 0.000 0.000 0.000 - 27 980.897 || 0.037599 0.867 36.653 83.373 - 28 1017.725 || 0.000000 0.000 0.000 0.000 - 29 1036.477 || 0.000007 0.000 0.007 0.016 - 30 1073.559 || 0.000505 0.012 0.492 1.119 - 31 1102.038 || 0.009064 0.209 8.836 20.100 - 32 1107.666 || 0.000000 0.000 0.000 0.000 - 33 1107.689 || 0.013480 0.311 13.141 29.891 - 34 1110.616 || 0.000000 0.000 0.000 0.000 - 35 1203.736 || 0.001536 0.035 1.497 3.406 + 7 49.010 || 0.000030 0.001 0.030 0.068 + 8 81.563 || 0.000000 0.000 0.000 0.000 + 9 151.698 || 0.000359 0.008 0.350 0.797 + 10 181.038 || 0.000273 0.006 0.266 0.607 + 11 265.733 || 0.000000 0.000 0.000 0.000 + 12 300.969 || 0.000000 0.000 0.000 0.000 + 13 407.917 || 0.000000 0.000 0.000 0.000 + 14 424.393 || 0.000104 0.002 0.101 0.230 + 15 468.977 || 0.006013 0.139 5.862 13.348 + 16 487.917 || 0.001992 0.046 1.941 4.421 + 17 578.842 || 0.000000 0.000 0.000 0.000 + 18 657.328 || 0.000000 0.000 0.000 0.000 + 19 673.470 || 0.000000 0.000 0.000 0.000 + 20 707.330 || 0.000476 0.011 0.464 1.058 + 21 735.110 || 0.004426 0.102 4.315 9.826 + 22 810.677 || 0.000000 0.000 0.000 0.000 + 23 862.518 || 0.000000 0.000 0.000 0.000 + 24 895.309 || 0.000000 0.000 0.000 0.000 + 25 896.429 || 0.026919 0.621 26.242 59.756 + 26 980.901 || 0.000000 0.000 0.000 0.000 + 27 980.975 || 0.037514 0.865 36.571 83.276 + 28 1017.729 || 0.000000 0.000 0.000 0.000 + 29 1036.478 || 0.000007 0.000 0.007 0.016 + 30 1073.558 || 0.000500 0.012 0.487 1.110 + 31 1102.043 || 0.009063 0.209 8.835 20.119 + 32 1107.662 || 0.000000 0.000 0.000 0.000 + 33 1107.685 || 0.013502 0.311 13.162 29.972 + 34 1110.621 || 0.000000 0.000 0.000 0.000 + 35 1203.737 || 0.001529 0.035 1.490 3.394 36 1260.965 || 0.000000 0.000 0.000 0.000 - 37 1284.275 || 0.000056 0.001 0.054 0.124 + 37 1284.270 || 0.000053 0.001 0.052 0.118 38 1296.189 || 0.000000 0.000 0.000 0.000 - 39 1350.023 || 0.009256 0.214 9.023 20.525 - 40 1398.543 || 0.000000 0.000 0.000 0.000 - 41 1422.117 || 0.008675 0.200 8.456 19.235 - 42 1427.488 || 0.000000 0.000 0.000 0.000 - 43 1514.545 || 0.019376 0.447 18.889 42.965 + 39 1350.007 || 0.009261 0.214 9.028 20.557 + 40 1398.542 || 0.000000 0.000 0.000 0.000 + 41 1422.113 || 0.008710 0.201 8.491 19.335 + 42 1427.487 || 0.000000 0.000 0.000 0.000 + 43 1514.545 || 0.019393 0.447 18.905 43.050 44 1565.407 || 0.000000 0.000 0.000 0.000 - 45 1575.245 || 0.000588 0.014 0.573 1.304 - 46 1639.656 || 0.015691 0.362 15.296 34.793 - 47 1690.934 || 0.000000 0.000 0.000 0.000 - 48 1738.521 || 0.000000 0.000 0.000 0.000 - 49 1814.823 || 0.000000 0.000 0.000 0.000 - 50 1815.793 || 0.001535 0.035 1.497 3.404 - 51 3394.024 || 0.101752 2.348 99.193 225.630 - 52 3394.756 || 0.000000 0.000 0.000 0.000 - 53 3432.817 || 0.003802 0.088 3.706 8.430 - 54 3432.821 || 0.000000 0.000 0.000 0.000 - 55 3447.865 || 0.001314 0.030 1.281 2.913 - 56 3451.333 || 0.000000 0.000 0.000 0.000 - 57 3471.309 || 0.005728 0.132 5.584 12.701 - 58 3474.273 || 0.000000 0.000 0.000 0.000 - 59 3546.597 || 0.000024 0.001 0.023 0.053 - 60 3546.642 || 0.000000 0.000 0.000 0.000 + 45 1575.243 || 0.000596 0.014 0.581 1.323 + 46 1639.653 || 0.015696 0.362 15.302 34.843 + 47 1690.932 || 0.000000 0.000 0.000 0.000 + 48 1738.513 || 0.000000 0.000 0.000 0.000 + 49 1814.826 || 0.000000 0.000 0.000 0.000 + 50 1815.798 || 0.001539 0.036 1.500 3.416 + 51 3394.043 || 0.101447 2.340 98.896 225.197 + 52 3394.772 || 0.000000 0.000 0.000 0.000 + 53 3432.831 || 0.003773 0.087 3.678 8.376 + 54 3432.835 || 0.000000 0.000 0.000 0.000 + 55 3447.881 || 0.001330 0.031 1.297 2.952 + 56 3451.354 || 0.000000 0.000 0.000 0.000 + 57 3471.324 || 0.005760 0.133 5.615 12.786 + 58 3474.287 || 0.000000 0.000 0.000 0.000 + 59 3546.602 || 0.000023 0.001 0.023 0.052 + 60 3546.649 || 0.000000 0.000 0.000 0.000 ---------------------------------------------------------------------------- vib:animation F - Task times cpu: 304.5s wall: 304.9s + Task times cpu: 212.5s wall: 223.5s + + + NWChem Input Module + ------------------- + + Summary of allocated global arrays ----------------------------------- No active global arrays @@ -2815,70 +2818,40 @@ Iterative solution of linear equations ------------------------------ create destroy get put acc scatter gather read&inc -calls: 6378 6378 1.36e+07 2.40e+05 1.03e+07 1262 0 6912 -number of processes/call 1.69e+11 -3.80e+13 -8.61e+11 0.00e+00 0.00e+00 -bytes total: 1.41e+09 1.68e+08 1.25e+09 7.00e+03 0.00e+00 5.53e+04 -bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 19036800 bytes +calls: 6378 6378 2.98e+06 6.22e+04 2.58e+06 1262 0 1622 +number of processes/call 1.21e+12 5.10e+13 8.50e+10 0.00e+00 0.00e+00 +bytes total: 3.87e+08 4.85e+07 3.49e+08 0.00e+00 0.00e+00 1.30e+04 +bytes remote: 2.61e+08 1.83e+07 2.57e+08 -3.00e+03 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 4761304 bytes + MA_summarize_allocated_blocks: starting scan ... -heap block 'gridpts', handle 103, address 0x56043b181718: - type of elements: double precision - number of elements: 53628253 - address of client space: 0x56043b181780 - index for client space: 9382713 - total number of bytes: 429026136 -MA_summarize_allocated_blocks: scan completed: 1 heap block, 0 stack blocks +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: allocation statistics: heap stack ---- ----- - current number of blocks 1 0 - maximum number of blocks 26 54 - current total bytes 429026136 0 - maximum total bytes 456188312 67349688 - maximum total K-bytes 456189 67350 - maximum total M-bytes 457 68 - - - NWChem Input Module - ------------------- - - - - - + current number of blocks 0 0 + maximum number of blocks 25 54 + current total bytes 0 0 + maximum total bytes 6909864 67349688 + maximum total K-bytes 6910 67350 + maximum total M-bytes 7 68 + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, - V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, - J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, - J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, - C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, - K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, - J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, - V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, - B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, - S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, - A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, - D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, - J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, - A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, - R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, - D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, - V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, - Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, - D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, - A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, - and R. J. Harrison - "NWChem: Past, present, and future - J. Chem. Phys. 152, 184102 (2020) - doi:10.1063/5.0004997 - + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -2901,4 +2874,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 304.6s wall: 304.9s + Total times cpu: 212.5s wall: 223.6s diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_hf.out b/data/NWChem/basicNWChem7.0/dvb_sp_hf.out index 6394be36e..02109aaa5 100644 --- a/data/NWChem/basicNWChem7.0/dvb_sp_hf.out +++ b/data/NWChem/basicNWChem7.0/dvb_sp_hf.out @@ -1,26 +1,26 @@ argument 1 = dvb_sp_hf.in - - - Northwest Computational Chemistry Package (NWChem) 7.0.2 + + + Northwest Computational Chemistry Package (NWChem) 7.0.0 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2020 + + Copyright (c) 1994-2019 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = osmium - program = nwchem - date = Sat Jun 4 13:33:11 2022 + hostname = smp-n17.sam.pitt.edu + program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem + date = Tue Sep 20 18:25:05 2022 - compiled = Fri_Jul_02_16:33:00_2021 - source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src - nwchem branch = 7.0.2 - nwchem revision = b9985dfa - ga revision = 5.7.2 - use scalapack = T + compiled = Wed_May_13_13:33:26_2020 + source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 + nwchem branch = 7.0.0 + nwchem revision = N/A + ga revision = 5.7.1 + use scalapack = F input = dvb_sp_hf.in prefix = dvb. data base = ./dvb.db status = startup - nproc = 1 + nproc = 4 time left = -1s @@ -68,17 +68,17 @@ Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + Divinylbenzene in STO-3G basis set ---------------------------------- @@ -90,15 +90,15 @@ ------ auto-z ------ - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - - + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 C 6.0000 0.23680554 1.41416660 0.00000000 @@ -121,13 +121,13 @@ 18 H 1.0000 -1.44522900 3.70144241 0.00000000 19 H 1.0000 0.04815351 -4.93192286 0.00000000 20 H 1.0000 -0.04815351 4.93192286 0.00000000 - + Atomic Mass ----------- - + C 12.000000 H 1.007825 - + Effective nuclear repulsion energy (a.u.) 445.9370121674 @@ -136,26 +136,26 @@ X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - + Z-matrix (autoz) -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value ----------- -------- ----- ----- ----- ----- ----- ---------- 1 Stretch 1 3 1.42204 @@ -228,7 +228,7 @@ 68 Torsion 4 2 11 13 0.00000 69 Torsion 4 2 11 15 180.00000 70 Torsion 4 6 1 12 180.00000 - 71 Torsion 5 2 4 6 -0.00000 + 71 Torsion 5 2 4 6 0.00000 72 Torsion 5 2 4 8 180.00000 73 Torsion 5 2 11 13 180.00000 74 Torsion 5 2 11 15 0.00000 @@ -238,18 +238,18 @@ 78 Torsion 6 1 12 14 180.00000 79 Torsion 6 1 12 16 0.00000 80 Torsion 6 4 2 11 180.00000 - 81 Torsion 7 3 1 12 -0.00000 + 81 Torsion 7 3 1 12 0.00000 82 Torsion 7 3 5 9 0.00000 - 83 Torsion 8 4 2 11 -0.00000 + 83 Torsion 8 4 2 11 0.00000 84 Torsion 8 4 6 10 0.00000 85 Torsion 9 5 2 11 0.00000 86 Torsion 10 6 1 12 0.00000 87 Torsion 13 11 15 17 180.00000 - 88 Torsion 13 11 15 19 -0.00000 + 88 Torsion 13 11 15 19 0.00000 89 Torsion 14 12 16 18 180.00000 - 90 Torsion 14 12 16 20 -0.00000 - - + 90 Torsion 14 12 16 20 0.00000 + + XYZ format geometry ------------------- 20 @@ -274,7 +274,7 @@ H -1.44522900 3.70144241 0.00000000 H 0.04815351 -4.93192286 0.00000000 H -0.04815351 4.93192286 0.00000000 - + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -347,9 +347,6 @@ - library name resolved from: environment - library file name is: - Summary of "ao basis" -> "" (cartesian) @@ -361,10 +358,10 @@ NWChem Property Module ---------------------- - - + + Divinylbenzene in STO-3G basis set - + Basis "ao basis" -> "ao basis" (cartesian) ----- C (Carbon) @@ -374,15 +371,15 @@ 1 S 7.16168370E+01 0.154329 1 S 1.30450960E+01 0.535328 1 S 3.53051220E+00 0.444635 - + 2 S 2.94124940E+00 -0.099967 2 S 6.83483100E-01 0.399513 2 S 2.22289900E-01 0.700115 - + 3 P 2.94124940E+00 0.155916 3 P 6.83483100E-01 0.607684 3 P 2.22289900E-01 0.391957 - + H (Hydrogen) ------------ Exponent Coefficients @@ -390,7 +387,7 @@ 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + Summary of "ao basis" -> "ao basis" (cartesian) @@ -403,11 +400,11 @@ NWChem SCF Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + ao basis = "ao basis" functions = 60 @@ -432,26 +429,29 @@ Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 + + + Forming initial guess at 0.1s global array: Temp Over[1:60,1:60], handle: -996 1 2 3 4 5 6 ----------- ----------- ----------- ----------- ----------- ----------- - 1 1.00000 0.24836 -0.00000 -0.00000 0.00000 0.00000 - 2 0.24836 1.00000 0.00000 -0.00000 0.00000 0.00030 - 3 0.00000 0.00000 1.00000 0.00000 0.00000 -0.00014 - 4 -0.00000 -0.00000 0.00000 1.00000 0.00000 -0.00081 + 1 1.00000 0.24836 -0.00000 0.00000 0.00000 0.00000 + 2 0.24836 1.00000 -0.00000 0.00000 0.00000 0.00030 + 3 -0.00000 -0.00000 1.00000 -0.00000 0.00000 -0.00014 + 4 0.00000 0.00000 -0.00000 1.00000 0.00000 -0.00081 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 6 0.00000 0.00030 -0.00014 -0.00081 0.00000 1.00000 7 0.00030 0.02187 -0.00590 -0.03524 0.00000 0.24836 - 8 0.00014 0.00590 0.00661 -0.01021 0.00000 -0.00000 - 9 0.00081 0.03524 -0.01021 -0.05268 0.00000 0.00000 + 8 0.00014 0.00590 0.00661 -0.01021 0.00000 0.00000 + 9 0.00081 0.03524 -0.01021 -0.05268 0.00000 -0.00000 10 0.00000 0.00000 0.00000 0.00000 0.00832 0.00000 11 0.00000 0.03557 0.04482 -0.03839 0.00000 0.00000 12 0.03557 0.35371 0.28849 -0.24714 0.00000 0.00159 @@ -511,15 +511,15 @@ 3 -0.00590 0.00661 -0.01021 0.00000 0.04482 0.28849 4 -0.03524 -0.01021 -0.05268 0.00000 -0.03839 -0.24714 5 0.00000 0.00000 0.00000 0.00832 0.00000 0.00000 - 6 0.24836 0.00000 0.00000 0.00000 0.00000 0.00159 - 7 1.00000 -0.00000 0.00000 0.00000 0.00159 0.05619 - 8 -0.00000 1.00000 0.00000 0.00000 0.00235 0.05280 - 9 0.00000 0.00000 1.00000 0.00000 0.00288 0.06468 + 6 0.24836 0.00000 -0.00000 0.00000 0.00000 0.00159 + 7 1.00000 0.00000 -0.00000 0.00000 0.00159 0.05619 + 8 0.00000 1.00000 -0.00000 0.00000 0.00235 0.05280 + 9 -0.00000 -0.00000 1.00000 0.00000 0.00288 0.06468 10 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 11 0.00159 0.00235 0.00288 0.00000 1.00000 0.24836 12 0.05619 0.05280 0.06468 0.00000 0.24836 1.00000 - 13 -0.05280 -0.03131 -0.06691 0.00000 0.00000 0.00000 - 14 -0.06468 -0.06691 -0.05866 0.00000 -0.00000 -0.00000 + 13 -0.05280 -0.03131 -0.06691 0.00000 -0.00000 -0.00000 + 14 -0.06468 -0.06691 -0.05866 0.00000 -0.00000 0.00000 15 0.00000 0.00000 0.00000 0.02331 0.00000 0.00000 16 0.03557 -0.04482 0.03839 0.00000 0.00000 0.00039 17 0.35371 -0.28849 0.24714 0.00000 0.00039 0.02519 @@ -579,15 +579,15 @@ 8 -0.03131 -0.06691 0.00000 -0.04482 -0.28849 -0.10190 9 -0.06691 -0.05866 0.00000 0.03839 0.24714 0.26261 10 0.00000 0.00000 0.02331 0.00000 0.00000 0.00000 - 11 0.00000 -0.00000 0.00000 0.00000 0.00039 0.00097 - 12 0.00000 -0.00000 0.00000 0.00039 0.02519 0.03810 + 11 -0.00000 -0.00000 0.00000 0.00000 0.00039 0.00097 + 12 -0.00000 0.00000 0.00000 0.00039 0.02519 0.03810 13 1.00000 0.00000 0.00000 -0.00097 -0.03810 -0.05238 14 0.00000 1.00000 0.00000 -0.00036 -0.01415 -0.02305 15 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 16 -0.00097 -0.00036 0.00000 1.00000 0.24836 -0.00000 - 17 -0.03810 -0.01415 0.00000 0.24836 1.00000 -0.00000 - 18 -0.05238 -0.02305 0.00000 -0.00000 -0.00000 1.00000 - 19 -0.02305 0.00113 0.00000 0.00000 0.00000 0.00000 + 16 -0.00097 -0.00036 0.00000 1.00000 0.24836 0.00000 + 17 -0.03810 -0.01415 0.00000 0.24836 1.00000 0.00000 + 18 -0.05238 -0.02305 0.00000 0.00000 0.00000 1.00000 + 19 -0.02305 0.00113 0.00000 0.00000 -0.00000 0.00000 20 0.00000 0.00000 0.00969 0.00000 0.00000 0.00000 21 -0.01014 -0.06099 0.00000 0.00000 0.00170 0.00390 22 -0.06345 -0.38176 0.00000 0.00170 0.05856 0.08539 @@ -648,14 +648,14 @@ 14 0.00113 0.00000 -0.06099 -0.38176 -0.08733 -0.31332 15 0.00000 0.00969 0.00000 0.00000 0.00000 0.00000 16 0.00000 0.00000 0.00000 0.00170 -0.00390 0.00066 - 17 0.00000 0.00000 0.00170 0.05856 -0.08539 0.01441 + 17 -0.00000 0.00000 0.00170 0.05856 -0.08539 0.01441 18 0.00000 0.00000 0.00390 0.08539 -0.11288 0.02316 19 1.00000 0.00000 -0.00066 -0.01441 0.02316 0.02049 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 21 -0.00066 0.00000 1.00000 0.24836 -0.00000 0.00000 22 -0.01441 0.00000 0.24836 1.00000 0.00000 -0.00000 23 0.02316 0.00000 -0.00000 0.00000 1.00000 0.00000 - 24 0.02049 0.00000 -0.00000 -0.00000 0.00000 1.00000 + 24 0.02049 0.00000 0.00000 -0.00000 0.00000 1.00000 25 0.00000 0.02440 0.00000 0.00000 0.00000 0.00000 26 0.06099 0.00000 0.00000 0.00038 -0.00078 0.00065 27 0.38176 0.00000 0.00038 0.02484 -0.03098 0.02550 @@ -721,9 +721,9 @@ 24 0.00000 0.00065 0.02550 0.03425 -0.01864 0.00000 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.00954 26 0.00000 1.00000 0.24836 0.00000 -0.00000 0.00000 - 27 0.00000 0.24836 1.00000 0.00000 0.00000 0.00000 - 28 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 - 29 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 27 0.00000 0.24836 1.00000 -0.00000 0.00000 0.00000 + 28 0.00000 0.00000 -0.00000 1.00000 0.00000 0.00000 + 29 0.00000 -0.00000 0.00000 0.00000 1.00000 0.00000 30 0.00954 0.00000 0.00000 0.00000 0.00000 1.00000 31 0.00000 0.00008 0.00611 0.01016 -0.00008 0.00000 32 0.00000 0.00526 0.09520 -0.07165 -0.10018 0.00000 @@ -794,7 +794,7 @@ 34 0.00071 0.05049 0.00010 1.00000 0.00000 0.00017 35 0.00000 0.00113 0.00087 0.00000 1.00000 0.24836 36 0.00015 0.03262 0.02741 0.00017 0.24836 1.00000 - 37 0.00019 -0.03181 0.03596 -0.00011 -0.00000 -0.00000 + 37 0.00019 -0.03181 0.03596 -0.00011 -0.00000 0.00000 38 0.00024 0.03532 0.01884 0.00034 -0.00000 -0.00000 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 40 0.00113 0.00000 0.00000 0.00087 0.00000 0.00000 @@ -855,12 +855,12 @@ 32 -0.03181 0.03532 0.00000 0.00000 0.00015 -0.00019 33 0.03596 0.01884 0.00000 0.00000 0.00017 0.00011 34 -0.00011 0.00034 0.00000 0.00087 0.02741 -0.03596 - 35 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 36 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 35 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 36 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 37 1.00000 0.00000 0.00000 0.00000 0.00000 0.00000 38 0.00000 1.00000 0.00000 0.00000 0.00000 -0.00000 39 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 40 0.00000 0.00000 0.00000 1.00000 0.24836 -0.00000 + 40 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 41 0.00000 0.00000 0.00000 0.24836 1.00000 0.00000 42 0.00000 -0.00000 0.00000 0.00000 0.00000 1.00000 43 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 @@ -923,7 +923,7 @@ 37 -0.00000 0.00000 -0.45129 0.00000 0.04749 0.27266 38 -0.00000 0.00000 -0.10556 0.00000 -0.05283 -0.30328 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 40 -0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 41 0.00000 0.00000 0.00000 0.48445 0.00000 0.00000 42 0.00000 0.00000 -0.00000 0.45129 -0.00000 -0.00000 43 1.00000 0.00000 -0.00000 0.10556 -0.00000 -0.00000 @@ -932,7 +932,7 @@ 46 0.10556 0.00000 0.00000 1.00000 0.00000 0.00000 47 -0.00000 0.00000 0.00611 0.00000 1.00000 0.24836 48 -0.00000 0.00000 0.10604 0.00000 0.24836 1.00000 - 49 -0.00000 0.00000 -0.12645 0.00000 -0.00000 0.00000 + 49 -0.00000 0.00000 -0.12645 0.00000 -0.00000 -0.00000 50 -0.00000 0.00000 0.04805 0.00000 -0.00000 -0.00000 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 52 0.05283 0.00000 0.00000 0.00611 0.00000 0.00000 @@ -993,14 +993,14 @@ 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 45 -0.12645 0.04805 0.00000 0.00000 0.00000 -0.00000 46 0.00000 0.00000 0.00000 0.00611 0.10604 0.12645 - 47 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 48 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 47 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 48 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 49 1.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 50 -0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 51 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 52 0.00000 0.00000 0.00000 1.00000 0.24836 -0.00000 - 53 -0.00000 0.00000 0.00000 0.24836 1.00000 -0.00000 - 54 0.00000 0.00000 0.00000 0.00000 -0.00000 1.00000 + 52 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 53 -0.00000 0.00000 0.00000 0.24836 1.00000 0.00000 + 54 0.00000 0.00000 0.00000 0.00000 0.00000 1.00000 55 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 57 0.45887 0.07655 0.00000 0.00000 0.00000 0.00000 @@ -1061,7 +1061,7 @@ 49 0.00000 0.00000 0.45887 -0.00000 -0.13400 -0.00000 50 -0.00000 0.00000 0.07655 0.00000 -0.44525 0.00000 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 52 -0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 + 52 0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 53 0.00000 0.00000 0.00000 0.48732 0.00000 0.48692 54 -0.00000 0.00000 0.00000 -0.45887 0.00000 0.13400 55 1.00000 0.00000 -0.00000 -0.07655 -0.00000 0.44525 @@ -1070,28 +1070,25 @@ 58 -0.07655 0.00000 0.00000 1.00000 0.00000 0.14897 59 -0.00000 0.00000 0.14897 0.00000 1.00000 0.00000 60 0.44525 0.00000 0.00000 0.14897 0.00000 1.00000 - - Forming initial guess at 0.0s - - + Superposition of Atomic Density Guess ------------------------------------- - + Sum of atomic energies: -376.44825176 global array: Temp HCore[1:60,1:60], handle: -994 1 2 3 4 5 6 ----------- ----------- ----------- ----------- ----------- ----------- - 1 1.00000 0.24836 -0.00000 -0.00000 0.00000 0.00000 - 2 0.24836 1.00000 0.00000 -0.00000 0.00000 0.00030 - 3 0.00000 0.00000 1.00000 0.00000 0.00000 -0.00014 - 4 -0.00000 -0.00000 0.00000 1.00000 0.00000 -0.00081 + 1 1.00000 0.24836 -0.00000 0.00000 0.00000 0.00000 + 2 0.24836 1.00000 -0.00000 0.00000 0.00000 0.00030 + 3 -0.00000 -0.00000 1.00000 -0.00000 0.00000 -0.00014 + 4 0.00000 0.00000 -0.00000 1.00000 0.00000 -0.00081 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 6 0.00000 0.00030 -0.00014 -0.00081 0.00000 1.00000 7 0.00030 0.02187 -0.00590 -0.03524 0.00000 0.24836 - 8 0.00014 0.00590 0.00661 -0.01021 0.00000 -0.00000 - 9 0.00081 0.03524 -0.01021 -0.05268 0.00000 0.00000 + 8 0.00014 0.00590 0.00661 -0.01021 0.00000 0.00000 + 9 0.00081 0.03524 -0.01021 -0.05268 0.00000 -0.00000 10 0.00000 0.00000 0.00000 0.00000 0.00832 0.00000 11 0.00000 0.03557 0.04482 -0.03839 0.00000 0.00000 12 0.03557 0.35371 0.28849 -0.24714 0.00000 0.00159 @@ -1151,15 +1148,15 @@ 3 -0.00590 0.00661 -0.01021 0.00000 0.04482 0.28849 4 -0.03524 -0.01021 -0.05268 0.00000 -0.03839 -0.24714 5 0.00000 0.00000 0.00000 0.00832 0.00000 0.00000 - 6 0.24836 0.00000 0.00000 0.00000 0.00000 0.00159 - 7 1.00000 -0.00000 0.00000 0.00000 0.00159 0.05619 - 8 -0.00000 1.00000 0.00000 0.00000 0.00235 0.05280 - 9 0.00000 0.00000 1.00000 0.00000 0.00288 0.06468 + 6 0.24836 0.00000 -0.00000 0.00000 0.00000 0.00159 + 7 1.00000 0.00000 -0.00000 0.00000 0.00159 0.05619 + 8 0.00000 1.00000 -0.00000 0.00000 0.00235 0.05280 + 9 -0.00000 -0.00000 1.00000 0.00000 0.00288 0.06468 10 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 11 0.00159 0.00235 0.00288 0.00000 1.00000 0.24836 12 0.05619 0.05280 0.06468 0.00000 0.24836 1.00000 - 13 -0.05280 -0.03131 -0.06691 0.00000 0.00000 0.00000 - 14 -0.06468 -0.06691 -0.05866 0.00000 -0.00000 -0.00000 + 13 -0.05280 -0.03131 -0.06691 0.00000 -0.00000 -0.00000 + 14 -0.06468 -0.06691 -0.05866 0.00000 -0.00000 0.00000 15 0.00000 0.00000 0.00000 0.02331 0.00000 0.00000 16 0.03557 -0.04482 0.03839 0.00000 0.00000 0.00039 17 0.35371 -0.28849 0.24714 0.00000 0.00039 0.02519 @@ -1219,15 +1216,15 @@ 8 -0.03131 -0.06691 0.00000 -0.04482 -0.28849 -0.10190 9 -0.06691 -0.05866 0.00000 0.03839 0.24714 0.26261 10 0.00000 0.00000 0.02331 0.00000 0.00000 0.00000 - 11 0.00000 -0.00000 0.00000 0.00000 0.00039 0.00097 - 12 0.00000 -0.00000 0.00000 0.00039 0.02519 0.03810 + 11 -0.00000 -0.00000 0.00000 0.00000 0.00039 0.00097 + 12 -0.00000 0.00000 0.00000 0.00039 0.02519 0.03810 13 1.00000 0.00000 0.00000 -0.00097 -0.03810 -0.05238 14 0.00000 1.00000 0.00000 -0.00036 -0.01415 -0.02305 15 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 16 -0.00097 -0.00036 0.00000 1.00000 0.24836 -0.00000 - 17 -0.03810 -0.01415 0.00000 0.24836 1.00000 -0.00000 - 18 -0.05238 -0.02305 0.00000 -0.00000 -0.00000 1.00000 - 19 -0.02305 0.00113 0.00000 0.00000 0.00000 0.00000 + 16 -0.00097 -0.00036 0.00000 1.00000 0.24836 0.00000 + 17 -0.03810 -0.01415 0.00000 0.24836 1.00000 0.00000 + 18 -0.05238 -0.02305 0.00000 0.00000 0.00000 1.00000 + 19 -0.02305 0.00113 0.00000 0.00000 -0.00000 0.00000 20 0.00000 0.00000 0.00969 0.00000 0.00000 0.00000 21 -0.01014 -0.06099 0.00000 0.00000 0.00170 0.00390 22 -0.06345 -0.38176 0.00000 0.00170 0.05856 0.08539 @@ -1288,14 +1285,14 @@ 14 0.00113 0.00000 -0.06099 -0.38176 -0.08733 -0.31332 15 0.00000 0.00969 0.00000 0.00000 0.00000 0.00000 16 0.00000 0.00000 0.00000 0.00170 -0.00390 0.00066 - 17 0.00000 0.00000 0.00170 0.05856 -0.08539 0.01441 + 17 -0.00000 0.00000 0.00170 0.05856 -0.08539 0.01441 18 0.00000 0.00000 0.00390 0.08539 -0.11288 0.02316 19 1.00000 0.00000 -0.00066 -0.01441 0.02316 0.02049 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 21 -0.00066 0.00000 1.00000 0.24836 -0.00000 0.00000 22 -0.01441 0.00000 0.24836 1.00000 0.00000 -0.00000 23 0.02316 0.00000 -0.00000 0.00000 1.00000 0.00000 - 24 0.02049 0.00000 -0.00000 -0.00000 0.00000 1.00000 + 24 0.02049 0.00000 0.00000 -0.00000 0.00000 1.00000 25 0.00000 0.02440 0.00000 0.00000 0.00000 0.00000 26 0.06099 0.00000 0.00000 0.00038 -0.00078 0.00065 27 0.38176 0.00000 0.00038 0.02484 -0.03098 0.02550 @@ -1361,9 +1358,9 @@ 24 0.00000 0.00065 0.02550 0.03425 -0.01864 0.00000 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.00954 26 0.00000 1.00000 0.24836 0.00000 -0.00000 0.00000 - 27 0.00000 0.24836 1.00000 0.00000 0.00000 0.00000 - 28 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 - 29 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 27 0.00000 0.24836 1.00000 -0.00000 0.00000 0.00000 + 28 0.00000 0.00000 -0.00000 1.00000 0.00000 0.00000 + 29 0.00000 -0.00000 0.00000 0.00000 1.00000 0.00000 30 0.00954 0.00000 0.00000 0.00000 0.00000 1.00000 31 0.00000 0.00008 0.00611 0.01016 -0.00008 0.00000 32 0.00000 0.00526 0.09520 -0.07165 -0.10018 0.00000 @@ -1434,7 +1431,7 @@ 34 0.00071 0.05049 0.00010 1.00000 0.00000 0.00017 35 0.00000 0.00113 0.00087 0.00000 1.00000 0.24836 36 0.00015 0.03262 0.02741 0.00017 0.24836 1.00000 - 37 0.00019 -0.03181 0.03596 -0.00011 -0.00000 -0.00000 + 37 0.00019 -0.03181 0.03596 -0.00011 -0.00000 0.00000 38 0.00024 0.03532 0.01884 0.00034 -0.00000 -0.00000 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 40 0.00113 0.00000 0.00000 0.00087 0.00000 0.00000 @@ -1495,12 +1492,12 @@ 32 -0.03181 0.03532 0.00000 0.00000 0.00015 -0.00019 33 0.03596 0.01884 0.00000 0.00000 0.00017 0.00011 34 -0.00011 0.00034 0.00000 0.00087 0.02741 -0.03596 - 35 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 36 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 35 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 36 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 37 1.00000 0.00000 0.00000 0.00000 0.00000 0.00000 38 0.00000 1.00000 0.00000 0.00000 0.00000 -0.00000 39 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 40 0.00000 0.00000 0.00000 1.00000 0.24836 -0.00000 + 40 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 41 0.00000 0.00000 0.00000 0.24836 1.00000 0.00000 42 0.00000 -0.00000 0.00000 0.00000 0.00000 1.00000 43 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 @@ -1563,7 +1560,7 @@ 37 -0.00000 0.00000 -0.45129 0.00000 0.04749 0.27266 38 -0.00000 0.00000 -0.10556 0.00000 -0.05283 -0.30328 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 40 -0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 41 0.00000 0.00000 0.00000 0.48445 0.00000 0.00000 42 0.00000 0.00000 -0.00000 0.45129 -0.00000 -0.00000 43 1.00000 0.00000 -0.00000 0.10556 -0.00000 -0.00000 @@ -1572,7 +1569,7 @@ 46 0.10556 0.00000 0.00000 1.00000 0.00000 0.00000 47 -0.00000 0.00000 0.00611 0.00000 1.00000 0.24836 48 -0.00000 0.00000 0.10604 0.00000 0.24836 1.00000 - 49 -0.00000 0.00000 -0.12645 0.00000 -0.00000 0.00000 + 49 -0.00000 0.00000 -0.12645 0.00000 -0.00000 -0.00000 50 -0.00000 0.00000 0.04805 0.00000 -0.00000 -0.00000 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 52 0.05283 0.00000 0.00000 0.00611 0.00000 0.00000 @@ -1633,14 +1630,14 @@ 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 45 -0.12645 0.04805 0.00000 0.00000 0.00000 -0.00000 46 0.00000 0.00000 0.00000 0.00611 0.10604 0.12645 - 47 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 48 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 47 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 48 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 49 1.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 50 -0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 51 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 52 0.00000 0.00000 0.00000 1.00000 0.24836 -0.00000 - 53 -0.00000 0.00000 0.00000 0.24836 1.00000 -0.00000 - 54 0.00000 0.00000 0.00000 0.00000 -0.00000 1.00000 + 52 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 53 -0.00000 0.00000 0.00000 0.24836 1.00000 0.00000 + 54 0.00000 0.00000 0.00000 0.00000 0.00000 1.00000 55 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 57 0.45887 0.07655 0.00000 0.00000 0.00000 0.00000 @@ -1701,7 +1698,7 @@ 49 0.00000 0.00000 0.45887 -0.00000 -0.13400 -0.00000 50 -0.00000 0.00000 0.07655 0.00000 -0.44525 0.00000 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 52 -0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 + 52 0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 53 0.00000 0.00000 0.00000 0.48732 0.00000 0.48692 54 -0.00000 0.00000 0.00000 -0.45887 0.00000 0.13400 55 1.00000 0.00000 -0.00000 -0.07655 -0.00000 0.44525 @@ -1710,7 +1707,7 @@ 58 -0.07655 0.00000 0.00000 1.00000 0.00000 0.14897 59 -0.00000 0.00000 0.14897 0.00000 1.00000 0.00000 60 0.44525 0.00000 0.00000 0.14897 0.00000 1.00000 - + Non-variational initial energy ------------------------------ @@ -1719,17 +1716,17 @@ 2-e energy = 576.084617 HOMO = -0.037645 LUMO = 0.163723 - - + + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 ag 2 bu 3 ag 4 bu 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -1739,7 +1736,7 @@ 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 bu - + Starting SCF solution at 0.2s @@ -1754,35 +1751,47 @@ ---------------------------------------------- + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507871 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 + + iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7024485570 7.56D-01 1.81D-01 0.5 - 2 -379.7670205711 1.53D-01 4.40D-02 1.3 - 3 -379.7689540267 6.43D-03 2.31D-03 2.2 - 4 -379.7689610929 3.38D-05 9.25D-06 3.8 + 1 -379.7024515658 7.56D-01 1.81D-01 0.4 + 2 -379.7670218883 1.53D-01 4.40D-02 0.4 + 3 -379.7689554257 6.43D-03 2.31D-03 0.5 + 4 -379.7689624910 3.37D-05 9.25D-06 0.6 Final RHF results ------------------ - Total SCF energy = -379.768961092935 - One-electron energy = -1400.222176091991 - Two-electron energy = 574.516202831610 + Total SCF energy = -379.768962491014 + One-electron energy = -1400.222183962420 + Two-electron energy = 574.516209303959 Nuclear repulsion energy = 445.937012167446 - Time for solution = 3.6s - + Time for solution = 0.5s + Symmetry analysis of molecular orbitals - final ----------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -1792,7 +1801,7 @@ 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 ag 44 bu 45 ag - + Final eigenvalues ----------------- @@ -1842,340 +1851,340 @@ 43 0.6216 44 0.6258 45 0.6582 - + ROHF Final Molecular Orbital Analysis ------------------------------------- - + Vector 1 Occ=2.000000D+00 E=-1.104059D+01 Symmetry=bu - MO Center= 9.7D-12, 5.8D-11, 2.4D-21, r^2= 2.1D+00 + MO Center= 9.1D-18, -2.0D-16, 0.0D+00, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 1 0.701484 1 C s 6 -0.701484 2 C s - + 1 0.701483 1 C s 6 -0.701483 2 C s + Vector 2 Occ=2.000000D+00 E=-1.104052D+01 Symmetry=ag - MO Center= -9.7D-12, -5.8D-11, -8.1D-19, r^2= 2.1D+00 + MO Center= 1.8D-15, 9.4D-15, -2.7D-20, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.701542 1 C s 6 0.701542 2 C s - + Vector 3 Occ=2.000000D+00 E=-1.103159D+01 Symmetry=bu - MO Center= -3.8D-12, -2.3D-11, -7.1D-21, r^2= 8.6D+00 + MO Center= -2.4D-11, -1.5D-10, 1.6D-21, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.701358 11 C s 40 -0.701358 12 C s - + 35 0.701357 11 C s 40 -0.701357 12 C s + Vector 4 Occ=2.000000D+00 E=-1.103159D+01 Symmetry=ag - MO Center= 4.2D-12, 2.3D-11, -6.0D-32, r^2= 8.6D+00 + MO Center= 2.7D-11, 1.4D-10, 2.1D-18, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.701320 11 C s 40 0.701320 12 C s - + Vector 5 Occ=2.000000D+00 E=-1.102896D+01 Symmetry=bu - MO Center= -2.1D-13, -3.4D-14, -1.8D-22, r^2= 2.0D+00 + MO Center= 1.9D-12, -7.5D-13, 4.0D-21, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.594536 5 C s 26 -0.594536 6 C s - 11 0.372948 3 C s 16 -0.372948 4 C s - + 21 0.594681 5 C s 26 -0.594681 6 C s + 11 0.372717 3 C s 16 -0.372717 4 C s + Vector 6 Occ=2.000000D+00 E=-1.102883D+01 Symmetry=ag - MO Center= 1.1D-13, -6.0D-14, -2.6D-34, r^2= 2.0D+00 + MO Center= -1.8D-12, 1.1D-12, 3.4D-32, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.635983 5 C s 26 0.635983 6 C s - 11 0.296780 3 C s 16 0.296780 4 C s - + 21 0.636098 5 C s 26 0.636098 6 C s + 11 0.296533 3 C s 16 0.296533 4 C s + Vector 7 Occ=2.000000D+00 E=-1.102861D+01 Symmetry=bu - MO Center= 1.3D-16, 9.6D-15, -5.5D-31, r^2= 2.0D+00 + MO Center= 5.4D-12, 7.1D-13, -5.7D-21, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.594220 3 C s 16 -0.594220 4 C s - 21 -0.372451 5 C s 26 0.372451 6 C s - + 11 0.594365 3 C s 16 -0.594365 4 C s + 21 -0.372219 5 C s 26 0.372219 6 C s + Vector 8 Occ=2.000000D+00 E=-1.102859D+01 Symmetry=ag - MO Center= 1.1D-13, 1.0D-13, -5.5D-18, r^2= 2.0D+00 + MO Center= -5.5D-12, -8.2D-13, -2.0D-20, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.635745 3 C s 16 0.635745 4 C s - 21 -0.296283 5 C s 26 -0.296283 6 C s - + 11 0.635860 3 C s 16 0.635860 4 C s + 21 -0.296035 5 C s 26 -0.296035 6 C s + Vector 9 Occ=2.000000D+00 E=-1.101748D+01 Symmetry=bu - MO Center= -1.8D-17, 9.0D-17, -9.4D-33, r^2= 1.5D+01 + MO Center= -1.6D-12, 1.6D-11, -3.4D-22, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.701435 15 C s 52 -0.701435 16 C s - + Vector 10 Occ=2.000000D+00 E=-1.101748D+01 Symmetry=ag - MO Center= -4.5D-13, 4.9D-13, 1.3D-31, r^2= 1.5D+01 + MO Center= -8.7D-13, -1.3D-11, -1.7D-31, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.701435 15 C s 52 0.701435 16 C s - + Vector 11 Occ=2.000000D+00 E=-1.090299D+00 Symmetry=ag - MO Center= 2.4D-17, -4.4D-17, 2.8D-18, r^2= 3.0D+00 + MO Center= 4.0D-15, 4.2D-15, -3.5D-18, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.275368 1 C s 7 0.275368 2 C s 12 0.247273 3 C s 17 0.247273 4 C s - 22 0.247125 5 C s 27 0.247125 6 C s - + 22 0.247126 5 C s 27 0.247126 6 C s + Vector 12 Occ=2.000000D+00 E=-1.020254D+00 Symmetry=bu - MO Center= 1.6D-16, 7.1D-16, -8.2D-20, r^2= 7.9D+00 + MO Center= 1.4D-15, -4.5D-15, -1.1D-20, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.298699 11 C s 41 -0.298699 12 C s - 2 -0.270807 1 C s 7 0.270807 2 C s + 2 -0.270806 1 C s 7 0.270806 2 C s 48 0.213652 15 C s 53 -0.213652 16 C s - - Vector 13 Occ=2.000000D+00 E=-9.749253D-01 Symmetry=ag - MO Center= -3.8D-16, 4.5D-16, -4.9D-34, r^2= 1.1D+01 + + Vector 13 Occ=2.000000D+00 E=-9.749254D-01 Symmetry=ag + MO Center= -2.6D-15, 9.1D-15, 3.1D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.314473 11 C s 41 0.314473 12 C s 48 0.310076 15 C s 53 0.310076 16 C s - - Vector 14 Occ=2.000000D+00 E=-9.503037D-01 Symmetry=bu - MO Center= -9.2D-17, -1.3D-17, -6.8D-34, r^2= 3.1D+00 + + Vector 14 Occ=2.000000D+00 E=-9.503033D-01 Symmetry=bu + MO Center= -4.6D-15, 2.7D-16, 3.1D-19, r^2= 3.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.357133 3 C s 17 -0.357133 4 C s - 22 0.325009 5 C s 27 -0.325009 6 C s - - Vector 15 Occ=2.000000D+00 E=-9.096351D-01 Symmetry=bu - MO Center= 2.1D-17, 3.0D-17, -7.7D-32, r^2= 8.8D+00 + 22 0.325008 5 C s 27 -0.325008 6 C s + + Vector 15 Occ=2.000000D+00 E=-9.096345D-01 Symmetry=bu + MO Center= 1.4D-15, -1.0D-14, 1.1D-29, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.292220 15 C s 53 -0.292220 16 C s - 2 0.279080 1 C s 7 -0.279080 2 C s + 2 0.279079 1 C s 7 -0.279079 2 C s 22 -0.200698 5 C s 27 0.200698 6 C s - - Vector 16 Occ=2.000000D+00 E=-7.998827D-01 Symmetry=ag - MO Center= -4.5D-16, -3.0D-16, -1.8D-33, r^2= 8.5D+00 + + Vector 16 Occ=2.000000D+00 E=-7.998830D-01 Symmetry=ag + MO Center= -6.3D-16, 4.8D-16, -3.8D-17, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.239928 15 C s 53 0.239928 16 C s - 22 0.229428 5 C s 27 0.229428 6 C s - 2 -0.212931 1 C s 7 -0.212931 2 C s + 48 0.239926 15 C s 53 0.239926 16 C s + 22 0.229429 5 C s 27 0.229429 6 C s + 2 -0.212930 1 C s 7 -0.212930 2 C s 14 -0.159170 3 C py 19 0.159170 4 C py 36 -0.159504 11 C s 41 -0.159504 12 C s - - Vector 17 Occ=2.000000D+00 E=-7.628266D-01 Symmetry=ag - MO Center= 5.0D-16, 9.4D-17, 3.7D-33, r^2= 5.0D+00 + + Vector 17 Occ=2.000000D+00 E=-7.628268D-01 Symmetry=ag + MO Center= 1.9D-16, 3.3D-16, -3.3D-18, r^2= 5.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.324855 3 C s 17 0.324855 4 C s - 3 0.189937 1 C px 8 -0.189937 2 C px - 22 -0.180806 5 C s 27 -0.180806 6 C s + 3 0.189935 1 C px 8 -0.189935 2 C px + 22 -0.180804 5 C s 27 -0.180804 6 C s 31 0.173636 7 H s 32 0.173636 8 H s 24 0.169743 5 C py 29 -0.169743 6 C py - + Vector 18 Occ=2.000000D+00 E=-7.276317D-01 Symmetry=bu - MO Center= -7.2D-17, 4.9D-17, 1.3D-32, r^2= 1.2D+01 + MO Center= 1.4D-15, 6.1D-15, -3.2D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.297522 11 C s 41 -0.297522 12 C s - 48 -0.248205 15 C s 53 0.248205 16 C s + 48 -0.248206 15 C s 53 0.248206 16 C s 45 0.174840 13 H s 46 -0.174840 14 H s 57 -0.163892 17 H s 58 0.163892 18 H s - + Vector 19 Occ=2.000000D+00 E=-6.967772D-01 Symmetry=ag - MO Center= 1.8D-16, 1.9D-16, -4.1D-34, r^2= 7.9D+00 + MO Center= -3.2D-16, -5.6D-15, 1.8D-16, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.194626 5 C px 28 -0.194626 6 C px - 36 0.187352 11 C s 41 0.187352 12 C s - 13 0.174309 3 C px 18 -0.174309 4 C px + 36 0.187351 11 C s 41 0.187351 12 C s + 13 0.174310 3 C px 18 -0.174310 4 C px 2 -0.170808 1 C s 7 -0.170808 2 C s - 33 0.168855 9 H s 34 0.168855 10 H s - - Vector 20 Occ=2.000000D+00 E=-6.280524D-01 Symmetry=ag - MO Center= 3.0D-16, -2.2D-15, 5.5D-18, r^2= 9.3D+00 + 33 0.168856 9 H s 34 0.168856 10 H s + + Vector 20 Occ=2.000000D+00 E=-6.280522D-01 Symmetry=ag + MO Center= 6.0D-17, 1.4D-18, 7.4D-34, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.204699 15 C px 54 -0.204699 16 C px - 38 0.183206 11 C py 43 -0.183206 12 C py - 57 0.178851 17 H s 58 0.178851 18 H s + 49 0.204700 15 C px 54 -0.204700 16 C px + 38 0.183205 11 C py 43 -0.183205 12 C py + 57 0.178852 17 H s 58 0.178852 18 H s 45 -0.152733 13 H s 46 -0.152733 14 H s - - Vector 21 Occ=2.000000D+00 E=-6.056785D-01 Symmetry=bu - MO Center= -1.6D-16, 5.0D-15, -6.5D-19, r^2= 1.0D+01 + + Vector 21 Occ=2.000000D+00 E=-6.056780D-01 Symmetry=bu + MO Center= 9.0D-17, 2.8D-16, -5.1D-18, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.215047 11 C px 42 0.215047 12 C px - 50 0.201796 15 C py 55 0.201796 16 C py + 37 0.215048 11 C px 42 0.215048 12 C px + 50 0.201798 15 C py 55 0.201798 16 C py 14 0.181913 3 C py 19 0.181913 4 C py - 59 -0.179093 19 H s 60 0.179093 20 H s - 45 -0.165300 13 H s 46 0.165300 14 H s - - Vector 22 Occ=2.000000D+00 E=-5.729431D-01 Symmetry=bu - MO Center= -2.1D-16, 3.2D-16, 4.7D-32, r^2= 7.0D+00 + 59 -0.179094 19 H s 60 0.179094 20 H s + 45 -0.165299 13 H s 46 0.165299 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.729426D-01 Symmetry=bu + MO Center= 5.0D-16, -3.1D-16, 9.5D-18, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.234898 9 H s 34 -0.234898 10 H s + 33 0.234899 9 H s 34 -0.234899 10 H s 31 -0.225759 7 H s 32 0.225759 8 H s - 2 0.223487 1 C s 7 -0.223487 2 C s - 13 -0.220803 3 C px 18 -0.220803 4 C px - 24 -0.179466 5 C py 29 -0.179466 6 C py - + 2 0.223491 1 C s 7 -0.223491 2 C s + 13 -0.220802 3 C px 18 -0.220802 4 C px + 24 -0.179464 5 C py 29 -0.179464 6 C py + Vector 23 Occ=2.000000D+00 E=-5.536035D-01 Symmetry=bu - MO Center= 4.0D-16, -2.8D-15, 2.2D-32, r^2= 8.9D+00 + MO Center= -2.4D-16, -7.3D-16, 3.6D-32, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.252836 15 C px 54 0.252836 16 C px - 23 0.248954 5 C px 28 0.248954 6 C px + 49 0.252837 15 C px 54 0.252837 16 C px + 23 0.248952 5 C px 28 0.248952 6 C px 3 -0.221990 1 C px 8 -0.221990 2 C px - 57 0.222771 17 H s 58 -0.222771 18 H s - 38 0.178894 11 C py 43 0.178894 12 C py - - Vector 24 Occ=2.000000D+00 E=-5.531660D-01 Symmetry=ag - MO Center= -1.1D-16, -9.9D-17, -2.5D-33, r^2= 1.5D+01 + 57 0.222772 17 H s 58 -0.222772 18 H s + 38 0.178895 11 C py 43 0.178895 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.531658D-01 Symmetry=ag + MO Center= -7.3D-16, -1.0D-15, 3.9D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.336239 15 C py 55 -0.336239 16 C py - 59 -0.268358 19 H s 60 -0.268358 20 H s + 59 -0.268357 19 H s 60 -0.268357 20 H s 37 0.248998 11 C px 42 -0.248998 12 C px 45 -0.151363 13 H s 46 -0.151363 14 H s - - Vector 25 Occ=2.000000D+00 E=-5.253611D-01 Symmetry=bu - MO Center= 3.8D-16, -4.8D-16, -1.3D-18, r^2= 4.4D+00 + + Vector 25 Occ=2.000000D+00 E=-5.253606D-01 Symmetry=bu + MO Center= 1.7D-15, -2.9D-16, 4.8D-18, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.299403 3 C px 18 0.299403 4 C px + 13 0.299404 3 C px 18 0.299404 4 C px 31 0.258504 7 H s 32 -0.258504 8 H s 24 -0.232845 5 C py 29 -0.232845 6 C py - 33 0.223597 9 H s 34 -0.223597 10 H s - 23 0.179045 5 C px 28 0.179045 6 C px - + 33 0.223596 9 H s 34 -0.223596 10 H s + 23 0.179046 5 C px 28 0.179046 6 C px + Vector 26 Occ=2.000000D+00 E=-4.966990D-01 Symmetry=bu - MO Center= 3.5D-16, -5.2D-16, 3.0D-33, r^2= 8.9D+00 + MO Center= 1.0D-15, -5.2D-16, 8.5D-18, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 -0.238943 15 C py 55 -0.238943 16 C py - 14 0.222971 3 C py 19 0.222971 4 C py - 37 -0.201997 11 C px 42 -0.201997 12 C px - 38 0.188761 11 C py 43 0.188761 12 C py + 50 -0.238942 15 C py 55 -0.238942 16 C py + 14 0.222972 3 C py 19 0.222972 4 C py + 37 -0.201999 11 C px 42 -0.201999 12 C px + 38 0.188759 11 C py 43 0.188759 12 C py 24 -0.184876 5 C py 29 -0.184876 6 C py - - Vector 27 Occ=2.000000D+00 E=-4.925284D-01 Symmetry=ag - MO Center= -7.3D-16, 1.5D-16, 2.0D-36, r^2= 1.2D+01 + + Vector 27 Occ=2.000000D+00 E=-4.925280D-01 Symmetry=ag + MO Center= -3.2D-15, 6.4D-16, -7.0D-20, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.296132 15 C px 54 -0.296132 16 C px + 49 0.296131 15 C px 54 -0.296131 16 C px 57 0.273185 17 H s 58 0.273185 18 H s 37 -0.209362 11 C px 42 0.209362 12 C px 45 0.202959 13 H s 46 0.202959 14 H s - 31 -0.156849 7 H s 32 -0.156849 8 H s - - Vector 28 Occ=2.000000D+00 E=-4.637309D-01 Symmetry=au - MO Center= -9.0D-16, 3.1D-15, -7.2D-17, r^2= 3.6D+00 + 31 -0.156851 7 H s 32 -0.156851 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.637308D-01 Symmetry=au + MO Center= 2.0D-17, -2.0D-16, 2.9D-18, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.331504 1 C pz 10 0.331504 2 C pz 15 0.302831 3 C pz 20 0.302831 4 C pz 25 0.301868 5 C pz 30 0.301868 6 C pz 39 0.165577 11 C pz 44 0.165577 12 C pz - - Vector 29 Occ=2.000000D+00 E=-4.464301D-01 Symmetry=bu - MO Center= -2.5D-16, -4.6D-18, 4.0D-34, r^2= 1.2D+01 + + Vector 29 Occ=2.000000D+00 E=-4.464302D-01 Symmetry=bu + MO Center= 4.0D-16, -1.4D-17, -1.5D-33, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.257253 13 H s 46 -0.257253 14 H s - 4 0.243717 1 C py 9 0.243717 2 C py - 57 0.226299 17 H s 58 -0.226299 18 H s - 37 -0.214535 11 C px 42 -0.214535 12 C px + 45 0.257252 13 H s 46 -0.257252 14 H s + 4 0.243719 1 C py 9 0.243719 2 C py + 57 0.226298 17 H s 58 -0.226298 18 H s + 37 -0.214534 11 C px 42 -0.214534 12 C px 59 -0.211967 19 H s 60 0.211967 20 H s - - Vector 30 Occ=2.000000D+00 E=-4.216541D-01 Symmetry=ag - MO Center= 2.3D-16, -4.0D-16, -1.8D-16, r^2= 5.7D+00 + + Vector 30 Occ=2.000000D+00 E=-4.216550D-01 Symmetry=ag + MO Center= 1.3D-16, -4.1D-16, -2.0D-19, r^2= 5.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 -0.268211 3 C py 19 0.268211 4 C py - 4 0.260254 1 C py 9 -0.260254 2 C py - 33 -0.253901 9 H s 34 -0.253901 10 H s - 38 0.232931 11 C py 43 -0.232931 12 C py - 24 0.223472 5 C py 29 -0.223472 6 C py - - Vector 31 Occ=2.000000D+00 E=-4.156211D-01 Symmetry=ag - MO Center= 1.5D-16, 1.9D-16, 1.4D-16, r^2= 6.3D+00 + 14 -0.268212 3 C py 19 0.268212 4 C py + 4 0.260257 1 C py 9 -0.260257 2 C py + 33 -0.253899 9 H s 34 -0.253899 10 H s + 38 0.232935 11 C py 43 -0.232935 12 C py + 24 0.223473 5 C py 29 -0.223473 6 C py + + Vector 31 Occ=2.000000D+00 E=-4.156220D-01 Symmetry=ag + MO Center= 3.9D-16, 5.3D-16, -2.1D-18, r^2= 6.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 3 0.278851 1 C px 8 -0.278851 2 C px - 23 0.269036 5 C px 28 -0.269036 6 C px + 3 0.278853 1 C px 8 -0.278853 2 C px + 23 0.269038 5 C px 28 -0.269038 6 C px 31 -0.251625 7 H s 32 -0.251625 8 H s - 13 -0.210354 3 C px 18 0.210354 4 C px + 13 -0.210356 3 C px 18 0.210356 4 C px 45 -0.183775 13 H s 46 -0.183775 14 H s - - Vector 32 Occ=2.000000D+00 E=-3.769632D-01 Symmetry=bg - MO Center= -3.3D-16, -2.9D-15, 1.7D-19, r^2= 8.6D+00 + + Vector 32 Occ=2.000000D+00 E=-3.769631D-01 Symmetry=bg + MO Center= 1.4D-17, 5.2D-15, 4.0D-18, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.383213 11 C pz 44 -0.383213 12 C pz - 5 -0.318676 1 C pz 10 0.318676 2 C pz - 51 0.306665 15 C pz 56 -0.306665 16 C pz - - Vector 33 Occ=2.000000D+00 E=-3.151269D-01 Symmetry=au - MO Center= -2.9D-16, 7.9D-16, 3.7D-17, r^2= 1.1D+01 + 5 -0.318675 1 C pz 10 0.318675 2 C pz + 51 0.306666 15 C pz 56 -0.306666 16 C pz + + Vector 33 Occ=2.000000D+00 E=-3.151268D-01 Symmetry=au + MO Center= 1.0D-15, -4.1D-15, 3.8D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.426295 15 C pz 56 0.426295 16 C pz 39 0.415175 11 C pz 44 0.415175 12 C pz 15 -0.164508 3 C pz 20 -0.164508 4 C pz 25 -0.164934 5 C pz 30 -0.164934 6 C pz - - Vector 34 Occ=2.000000D+00 E=-2.783652D-01 Symmetry=bg - MO Center= 1.3D-15, -2.5D-16, -3.1D-19, r^2= 2.7D+00 + + Vector 34 Occ=2.000000D+00 E=-2.783651D-01 Symmetry=bg + MO Center= -1.2D-15, 1.9D-16, -6.0D-18, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.459817 3 C pz 20 -0.459817 4 C pz + 15 0.459816 3 C pz 20 -0.459816 4 C pz 25 0.461493 5 C pz 30 -0.461493 6 C pz - - Vector 35 Occ=2.000000D+00 E=-2.221905D-01 Symmetry=bg - MO Center= -2.0D-17, -6.3D-16, 1.2D-18, r^2= 7.2D+00 + + Vector 35 Occ=2.000000D+00 E=-2.221904D-01 Symmetry=bg + MO Center= 2.8D-17, -1.0D-15, 3.7D-19, r^2= 7.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.417993 1 C pz 10 -0.417993 2 C pz 51 0.358184 15 C pz 56 -0.358184 16 C pz - 15 0.231888 3 C pz 20 -0.231888 4 C pz + 15 0.231889 3 C pz 20 -0.231889 4 C pz 25 -0.232000 5 C pz 30 0.232000 6 C pz - 39 0.218350 11 C pz 44 -0.218350 12 C pz - - Vector 36 Occ=0.000000D+00 E= 1.989923D-01 Symmetry=au - MO Center= -8.2D-17, 2.3D-14, 1.9D-17, r^2= 7.3D+00 + 39 0.218349 11 C pz 44 -0.218349 12 C pz + + Vector 36 Occ=0.000000D+00 E= 1.989924D-01 Symmetry=au + MO Center= -3.6D-16, -4.8D-15, -7.3D-16, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.471534 1 C pz 10 0.471534 2 C pz 51 -0.414928 15 C pz 56 -0.414928 16 C pz 25 -0.278569 5 C pz 30 -0.278569 6 C pz - 15 -0.249974 3 C pz 20 -0.249974 4 C pz + 15 -0.249973 3 C pz 20 -0.249973 4 C pz 39 0.246934 11 C pz 44 0.246934 12 C pz - - Vector 37 Occ=0.000000D+00 E= 2.685137D-01 Symmetry=au - MO Center= -8.1D-17, -1.6D-16, 2.2D-17, r^2= 2.7D+00 + + Vector 37 Occ=0.000000D+00 E= 2.685138D-01 Symmetry=au + MO Center= -3.1D-17, -3.9D-17, -1.6D-18, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.578558 3 C pz 20 0.578558 4 C pz - 25 -0.558107 5 C pz 30 -0.558107 6 C pz - - Vector 38 Occ=0.000000D+00 E= 3.088251D-01 Symmetry=bg - MO Center= 1.4D-16, -2.4D-14, -5.4D-19, r^2= 1.1D+01 + 25 -0.558106 5 C pz 30 -0.558106 6 C pz + + Vector 38 Occ=0.000000D+00 E= 3.088252D-01 Symmetry=bg + MO Center= 2.1D-17, 4.5D-15, -7.2D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.531237 15 C pz 56 0.531237 16 C pz - 39 0.524390 11 C pz 44 -0.524390 12 C pz + 39 0.524391 11 C pz 44 -0.524391 12 C pz 15 0.225543 3 C pz 20 -0.225543 4 C pz 25 -0.220434 5 C pz 30 0.220434 6 C pz - - Vector 39 Occ=0.000000D+00 E= 3.970769D-01 Symmetry=au - MO Center= -7.1D-16, -7.5D-15, 1.1D-15, r^2= 8.4D+00 + + Vector 39 Occ=0.000000D+00 E= 3.970770D-01 Symmetry=au + MO Center= -8.8D-16, -9.7D-15, -9.6D-16, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.535070 11 C pz 44 0.535070 12 C pz 5 -0.473494 1 C pz 10 -0.473494 2 C pz 51 -0.407351 15 C pz 56 -0.407351 16 C pz 25 0.186775 5 C pz 30 0.186775 6 C pz - 15 0.161861 3 C pz 20 0.161861 4 C pz - - Vector 40 Occ=0.000000D+00 E= 5.217565D-01 Symmetry=bg - MO Center= 8.0D-16, 7.0D-15, -2.6D-19, r^2= 3.8D+00 + 15 0.161862 3 C pz 20 0.161862 4 C pz + + Vector 40 Occ=0.000000D+00 E= 5.217566D-01 Symmetry=bg + MO Center= 1.5D-15, 1.1D-14, -1.1D-17, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.538711 1 C pz 10 -0.538711 2 C pz @@ -2183,272 +2192,272 @@ 25 0.471487 5 C pz 30 -0.471487 6 C pz 39 0.278750 11 C pz 44 -0.278750 12 C pz 51 -0.158475 15 C pz 56 0.158475 16 C pz - - Vector 41 Occ=0.000000D+00 E= 5.650142D-01 Symmetry=ag - MO Center= 3.9D-17, -4.0D-16, -4.7D-16, r^2= 8.7D+00 + + Vector 41 Occ=0.000000D+00 E= 5.650160D-01 Symmetry=ag + MO Center= -1.2D-16, -6.5D-17, 3.5D-16, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.434809 9 H s 34 0.434809 10 H s - 31 0.420950 7 H s 32 0.420950 8 H s - 2 -0.380042 1 C s 7 -0.380042 2 C s - 59 0.353825 19 H s 60 0.353825 20 H s - 38 0.323933 11 C py 43 -0.323933 12 C py - - Vector 42 Occ=0.000000D+00 E= 5.755623D-01 Symmetry=bu - MO Center= -1.1D-15, -2.4D-14, 3.6D-20, r^2= 1.0D+01 + 33 0.434798 9 H s 34 0.434798 10 H s + 31 0.420942 7 H s 32 0.420942 8 H s + 2 -0.380055 1 C s 7 -0.380055 2 C s + 59 0.353828 19 H s 60 0.353828 20 H s + 38 0.323940 11 C py 43 -0.323940 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.755620D-01 Symmetry=bu + MO Center= -6.6D-15, 6.0D-14, 1.6D-18, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.448708 13 H s 46 -0.448708 14 H s - 13 0.355539 3 C px 18 0.355539 4 C px - 37 0.350908 11 C px 42 0.350908 12 C px - 57 -0.321571 17 H s 58 0.321571 18 H s - 31 -0.318891 7 H s 32 0.318891 8 H s - - Vector 43 Occ=0.000000D+00 E= 6.215603D-01 Symmetry=ag - MO Center= -1.4D-14, -5.6D-16, 5.2D-16, r^2= 1.2D+01 + 45 0.448702 13 H s 46 -0.448702 14 H s + 13 0.355546 3 C px 18 0.355546 4 C px + 37 0.350909 11 C px 42 0.350909 12 C px + 57 -0.321562 17 H s 58 0.321562 18 H s + 31 -0.318904 7 H s 32 0.318904 8 H s + + Vector 43 Occ=0.000000D+00 E= 6.215596D-01 Symmetry=ag + MO Center= 2.0D-14, -6.1D-14, 6.3D-17, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.589566 13 H s 46 0.589566 14 H s - 12 0.397895 3 C s 17 0.397895 4 C s - 36 -0.394565 11 C s 41 -0.394565 12 C s - 57 -0.381368 17 H s 58 -0.381368 18 H s - 37 0.350696 11 C px 42 -0.350696 12 C px - - Vector 44 Occ=0.000000D+00 E= 6.258005D-01 Symmetry=bu - MO Center= 4.6D-16, -3.9D-17, 2.0D-19, r^2= 8.4D+00 + 12 0.397886 3 C s 17 0.397886 4 C s + 36 -0.394579 11 C s 41 -0.394579 12 C s + 57 -0.381363 17 H s 58 -0.381363 18 H s + 37 0.350692 11 C px 42 -0.350692 12 C px + + Vector 44 Occ=0.000000D+00 E= 6.258003D-01 Symmetry=bu + MO Center= -1.1D-16, -6.7D-17, 4.7D-17, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.529790 11 C s 41 -0.529790 12 C s - 4 0.453569 1 C py 9 0.453569 2 C py - 33 0.408877 9 H s 34 -0.408877 10 H s - 59 0.389453 19 H s 60 -0.389453 20 H s - 48 -0.337623 15 C s 53 0.337623 16 C s - - Vector 45 Occ=0.000000D+00 E= 6.582334D-01 Symmetry=ag - MO Center= -1.2D-15, 1.6D-15, -4.0D-17, r^2= 1.2D+01 + 36 0.529760 11 C s 41 -0.529760 12 C s + 4 0.453566 1 C py 9 0.453566 2 C py + 33 0.408895 9 H s 34 -0.408895 10 H s + 59 0.389457 19 H s 60 -0.389457 20 H s + 48 -0.337620 15 C s 53 0.337620 16 C s + + Vector 45 Occ=0.000000D+00 E= 6.582325D-01 Symmetry=ag + MO Center= 2.4D-15, 1.6D-14, 4.8D-17, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.683572 15 C s 53 0.683572 16 C s - 22 0.582873 5 C s 27 0.582873 6 C s - 57 -0.541817 17 H s 58 -0.541817 18 H s - 12 -0.457375 3 C s 17 -0.457375 4 C s - 59 -0.330802 19 H s 60 -0.330802 20 H s - - Vector 46 Occ=0.000000D+00 E= 6.593933D-01 Symmetry=bu - MO Center= 3.9D-15, 8.2D-16, 7.5D-19, r^2= 1.0D+01 + 48 0.683576 15 C s 53 0.683576 16 C s + 22 0.582877 5 C s 27 0.582877 6 C s + 57 -0.541814 17 H s 58 -0.541814 18 H s + 12 -0.457382 3 C s 17 -0.457382 4 C s + 59 -0.330810 19 H s 60 -0.330810 20 H s + + Vector 46 Occ=0.000000D+00 E= 6.593956D-01 Symmetry=bu + MO Center= -1.1D-15, -1.1D-15, -8.8D-17, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.611134 5 C s 27 -0.611134 6 C s - 48 0.533491 15 C s 53 -0.533491 16 C s - 2 0.492298 1 C s 7 -0.492298 2 C s - 12 -0.461405 3 C s 17 0.461405 4 C s - 57 -0.460423 17 H s 58 0.460423 18 H s - - Vector 47 Occ=0.000000D+00 E= 6.771759D-01 Symmetry=bu - MO Center= 8.0D-15, 1.8D-14, -6.7D-20, r^2= 9.1D+00 + 22 0.611116 5 C s 27 -0.611116 6 C s + 48 0.533506 15 C s 53 -0.533506 16 C s + 2 0.492301 1 C s 7 -0.492301 2 C s + 12 -0.461393 3 C s 17 0.461393 4 C s + 57 -0.460445 17 H s 58 0.460445 18 H s + + Vector 47 Occ=0.000000D+00 E= 6.771779D-01 Symmetry=bu + MO Center= -3.7D-14, -7.1D-14, -8.6D-18, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 0.598273 7 H s 32 -0.598273 8 H s - 36 -0.467284 11 C s 41 0.467284 12 C s - 45 0.438024 13 H s 46 -0.438024 14 H s + 31 0.598268 7 H s 32 -0.598268 8 H s + 36 -0.467282 11 C s 41 0.467282 12 C s + 45 0.438025 13 H s 46 -0.438025 14 H s 12 -0.361066 3 C s 17 0.361066 4 C s - 59 0.328675 19 H s 60 -0.328675 20 H s - - Vector 48 Occ=0.000000D+00 E= 6.941884D-01 Symmetry=ag - MO Center= 4.6D-15, 2.6D-15, -8.6D-16, r^2= 7.3D+00 + 59 0.328681 19 H s 60 -0.328681 20 H s + + Vector 48 Occ=0.000000D+00 E= 6.941860D-01 Symmetry=ag + MO Center= -7.8D-16, -5.9D-15, 7.5D-16, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.796666 1 C s 7 0.796666 2 C s - 36 -0.570540 11 C s 41 -0.570540 12 C s - 22 -0.469181 5 C s 27 -0.469181 6 C s - 12 -0.444282 3 C s 17 -0.444282 4 C s - 48 0.390419 15 C s 53 0.390419 16 C s - - Vector 49 Occ=0.000000D+00 E= 7.067053D-01 Symmetry=bu - MO Center= 1.3D-14, -1.5D-14, 4.4D-19, r^2= 1.1D+01 + 2 0.796664 1 C s 7 0.796664 2 C s + 36 -0.570541 11 C s 41 -0.570541 12 C s + 22 -0.469182 5 C s 27 -0.469182 6 C s + 12 -0.444286 3 C s 17 -0.444286 4 C s + 48 0.390409 15 C s 53 0.390409 16 C s + + Vector 49 Occ=0.000000D+00 E= 7.067096D-01 Symmetry=bu + MO Center= 1.9D-14, 6.4D-14, 5.5D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.702342 15 C s 53 -0.702342 16 C s - 57 -0.514873 17 H s 58 0.514873 18 H s - 33 0.488189 9 H s 34 -0.488189 10 H s - 36 -0.430439 11 C s 41 0.430439 12 C s - 22 -0.425186 5 C s 27 0.425186 6 C s - - Vector 50 Occ=0.000000D+00 E= 7.401383D-01 Symmetry=ag - MO Center= -1.1D-14, 1.4D-14, -2.7D-17, r^2= 1.0D+01 + 48 0.702329 15 C s 53 -0.702329 16 C s + 57 -0.514860 17 H s 58 0.514860 18 H s + 33 0.488194 9 H s 34 -0.488194 10 H s + 36 -0.430466 11 C s 41 0.430466 12 C s + 22 -0.425207 5 C s 27 0.425207 6 C s + + Vector 50 Occ=0.000000D+00 E= 7.401371D-01 Symmetry=ag + MO Center= 2.6D-16, -1.2D-15, 4.3D-17, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.727766 3 C s 17 0.727766 4 C s - 22 -0.614467 5 C s 27 -0.614467 6 C s - 59 -0.456854 19 H s 60 -0.456854 20 H s - 48 0.397618 15 C s 53 0.397618 16 C s - 50 -0.372518 15 C py 55 0.372518 16 C py - - Vector 51 Occ=0.000000D+00 E= 8.022234D-01 Symmetry=ag - MO Center= -1.1D-15, -3.8D-16, -2.2D-16, r^2= 6.8D+00 + 12 0.727765 3 C s 17 0.727765 4 C s + 22 -0.614468 5 C s 27 -0.614468 6 C s + 59 -0.456852 19 H s 60 -0.456852 20 H s + 48 0.397621 15 C s 53 0.397621 16 C s + 50 -0.372517 15 C py 55 0.372517 16 C py + + Vector 51 Occ=0.000000D+00 E= 8.022252D-01 Symmetry=ag + MO Center= 1.4D-15, -1.1D-15, 2.4D-16, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.586840 1 C py 9 -0.586840 2 C py - 36 -0.486011 11 C s 41 -0.486011 12 C s - 2 -0.462710 1 C s 7 -0.462710 2 C s - 13 -0.446667 3 C px 18 0.446667 4 C px - 49 -0.358156 15 C px 54 0.358156 16 C px - - Vector 52 Occ=0.000000D+00 E= 8.256536D-01 Symmetry=bu - MO Center= 2.5D-15, 1.2D-15, -6.9D-20, r^2= 7.8D+00 + 4 0.586839 1 C py 9 -0.586839 2 C py + 36 -0.485996 11 C s 41 -0.485996 12 C s + 2 -0.462721 1 C s 7 -0.462721 2 C s + 13 -0.446670 3 C px 18 0.446670 4 C px + 49 -0.358149 15 C px 54 0.358149 16 C px + + Vector 52 Occ=0.000000D+00 E= 8.256549D-01 Symmetry=bu + MO Center= -4.8D-15, 1.3D-15, -4.8D-18, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.642780 3 C s 17 -0.642780 4 C s - 3 -0.555350 1 C px 8 -0.555350 2 C px - 50 0.490161 15 C py 55 0.490161 16 C py - 24 -0.479534 5 C py 29 -0.479534 6 C py - 59 0.356457 19 H s 60 -0.356457 20 H s - - Vector 53 Occ=0.000000D+00 E= 8.606141D-01 Symmetry=ag - MO Center= -2.2D-15, 3.2D-15, -7.8D-17, r^2= 5.6D+00 + 12 0.642782 3 C s 17 -0.642782 4 C s + 3 -0.555346 1 C px 8 -0.555346 2 C px + 50 0.490164 15 C py 55 0.490164 16 C py + 24 -0.479529 5 C py 29 -0.479529 6 C py + 59 0.356459 19 H s 60 -0.356459 20 H s + + Vector 53 Occ=0.000000D+00 E= 8.606143D-01 Symmetry=ag + MO Center= 1.5D-15, -9.7D-17, -6.8D-17, r^2= 5.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.531365 3 C px 18 -0.531365 4 C px - 23 -0.518377 5 C px 28 0.518377 6 C px - 33 0.509445 9 H s 34 0.509445 10 H s - 31 -0.441685 7 H s 32 -0.441685 8 H s - 24 0.395280 5 C py 29 -0.395280 6 C py - - Vector 54 Occ=0.000000D+00 E= 8.877581D-01 Symmetry=bu - MO Center= -1.4D-15, -2.0D-15, 1.3D-20, r^2= 5.2D+00 + 13 0.531368 3 C px 18 -0.531368 4 C px + 23 -0.518376 5 C px 28 0.518376 6 C px + 33 0.509444 9 H s 34 0.509444 10 H s + 31 -0.441690 7 H s 32 -0.441690 8 H s + 24 0.395281 5 C py 29 -0.395281 6 C py + + Vector 54 Occ=0.000000D+00 E= 8.877568D-01 Symmetry=bu + MO Center= 2.0D-15, 1.2D-15, 7.1D-18, r^2= 5.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 0.716782 3 C py 19 0.716782 4 C py - 22 0.610585 5 C s 27 -0.610585 6 C s - 36 -0.434038 11 C s 41 0.434038 12 C s - 24 0.382165 5 C py 29 0.382165 6 C py - 2 -0.361723 1 C s 7 0.361723 2 C s - - Vector 55 Occ=0.000000D+00 E= 9.210115D-01 Symmetry=bu - MO Center= -3.9D-16, 8.1D-16, 2.4D-19, r^2= 1.0D+01 + 14 0.716776 3 C py 19 0.716776 4 C py + 22 0.610590 5 C s 27 -0.610590 6 C s + 36 -0.434047 11 C s 41 0.434047 12 C s + 24 0.382161 5 C py 29 0.382161 6 C py + 2 -0.361718 1 C s 7 0.361718 2 C s + + Vector 55 Occ=0.000000D+00 E= 9.210085D-01 Symmetry=bu + MO Center= 3.0D-15, -2.7D-15, -1.2D-17, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.648634 1 C s 7 -0.648634 2 C s + 2 0.648636 1 C s 7 -0.648636 2 C s 49 -0.507370 15 C px 54 -0.507370 16 C px - 38 0.482571 11 C py 43 0.482571 12 C py - 23 -0.393556 5 C px 28 -0.393556 6 C px - 57 0.345392 17 H s 58 -0.345392 18 H s - - Vector 56 Occ=0.000000D+00 E= 9.399484D-01 Symmetry=ag - MO Center= 5.7D-18, -2.3D-15, -1.6D-18, r^2= 9.1D+00 + 38 0.482570 11 C py 43 0.482570 12 C py + 23 -0.393564 5 C px 28 -0.393564 6 C px + 57 0.345389 17 H s 58 -0.345389 18 H s + + Vector 56 Occ=0.000000D+00 E= 9.399496D-01 Symmetry=ag + MO Center= 5.7D-16, -6.5D-15, 8.8D-17, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.556683 11 C px 42 -0.556683 12 C px + 37 0.556681 11 C px 42 -0.556681 12 C px 50 -0.539847 15 C py 55 0.539847 16 C py - 14 0.392204 3 C py 19 -0.392204 4 C py - 4 -0.359940 1 C py 9 0.359940 2 C py - 24 0.326787 5 C py 29 -0.326787 6 C py - - Vector 57 Occ=0.000000D+00 E= 9.902841D-01 Symmetry=ag - MO Center= -1.2D-15, 4.5D-15, 1.0D-16, r^2= 9.4D+00 + 14 0.392199 3 C py 19 -0.392199 4 C py + 4 -0.359948 1 C py 9 0.359948 2 C py + 24 0.326779 5 C py 29 -0.326779 6 C py + + Vector 57 Occ=0.000000D+00 E= 9.902851D-01 Symmetry=ag + MO Center= -4.2D-17, -9.0D-17, -3.0D-17, r^2= 9.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 38 0.680163 11 C py 43 -0.680163 12 C py + 38 0.680160 11 C py 43 -0.680160 12 C py 49 -0.583682 15 C px 54 0.583682 16 C px - 24 -0.429944 5 C py 29 0.429944 6 C py - 4 -0.411901 1 C py 9 0.411901 2 C py - 14 -0.365141 3 C py 19 0.365141 4 C py - + 24 -0.429950 5 C py 29 0.429950 6 C py + 4 -0.411894 1 C py 9 0.411894 2 C py + 14 -0.365147 3 C py 19 0.365147 4 C py + Vector 58 Occ=0.000000D+00 E= 1.027265D+00 Symmetry=bu - MO Center= -2.1D-16, 5.3D-16, -3.3D-21, r^2= 9.5D+00 + MO Center= 5.1D-16, 6.0D-15, -1.0D-18, r^2= 9.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.608349 11 C px 42 0.608349 12 C px + 37 0.608350 11 C px 42 0.608350 12 C px 50 -0.536814 15 C py 55 -0.536814 16 C py - 48 -0.526963 15 C s 53 0.526963 16 C s - 3 -0.468609 1 C px 8 -0.468609 2 C px - 38 -0.458231 11 C py 43 -0.458231 12 C py - - Vector 59 Occ=0.000000D+00 E= 1.107699D+00 Symmetry=ag - MO Center= 8.5D-17, -2.4D-16, -1.4D-17, r^2= 5.1D+00 + 48 -0.526962 15 C s 53 0.526962 16 C s + 3 -0.468612 1 C px 8 -0.468612 2 C px + 38 -0.458225 11 C py 43 -0.458225 12 C py + + Vector 59 Occ=0.000000D+00 E= 1.107700D+00 Symmetry=ag + MO Center= 5.6D-17, -4.9D-15, -5.6D-18, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.712025 1 C px 8 -0.712025 2 C px - 14 -0.548010 3 C py 19 0.548010 4 C py - 23 -0.444244 5 C px 28 0.444244 6 C px - 24 -0.423225 5 C py 29 0.423225 6 C py - 37 0.414787 11 C px 42 -0.414787 12 C px - - Vector 60 Occ=0.000000D+00 E= 1.124938D+00 Symmetry=bu - MO Center= 3.9D-16, -4.4D-15, 2.6D-19, r^2= 3.4D+00 + 14 -0.548009 3 C py 19 0.548009 4 C py + 23 -0.444243 5 C px 28 0.444243 6 C px + 24 -0.423224 5 C py 29 0.423224 6 C py + 37 0.414788 11 C px 42 -0.414788 12 C px + + Vector 60 Occ=0.000000D+00 E= 1.124935D+00 Symmetry=bu + MO Center= -2.5D-16, 3.2D-15, 7.9D-18, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.662429 1 C py 9 0.662429 2 C py - 13 -0.566303 3 C px 18 -0.566303 4 C px - 23 0.494108 5 C px 28 0.494108 6 C px - 22 -0.411544 5 C s 27 0.411544 6 C s - 24 -0.394347 5 C py 29 -0.394347 6 C py - - + 4 0.662430 1 C py 9 0.662430 2 C py + 13 -0.566300 3 C px 18 -0.566300 4 C px + 23 0.494107 5 C px 28 0.494107 6 C px + 22 -0.411545 5 C s 27 0.411545 6 C s + 24 -0.394345 5 C py 29 -0.394345 6 C py + + Final MO vectors ---------------- - + global array: scf_init: MOs[1:60,1:60], handle: -1000 1 2 3 4 5 6 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.70148 0.70154 -0.00960 0.00993 0.00164 -0.00337 - 2 0.02526 0.02518 0.00379 -0.00374 0.00164 -0.00633 + 1 0.70148 0.70154 -0.00965 0.00998 0.00164 -0.00338 + 2 0.02526 0.02518 0.00379 -0.00374 0.00165 -0.00632 3 -0.00000 0.00004 0.00047 -0.00047 -0.00361 0.00164 4 -0.00066 -0.00045 0.00294 -0.00293 0.00008 0.00193 - 5 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 6 -0.70148 0.70154 0.00960 0.00993 -0.00164 -0.00337 - 7 -0.02526 0.02518 -0.00379 -0.00374 -0.00164 -0.00633 + 5 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 6 -0.70148 0.70154 0.00965 0.00998 -0.00164 -0.00338 + 7 -0.02526 0.02518 -0.00379 -0.00374 -0.00165 -0.00632 8 -0.00000 -0.00004 0.00047 0.00047 -0.00361 -0.00164 9 -0.00066 0.00045 0.00294 0.00293 0.00008 -0.00193 - 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 11 0.00581 0.00321 0.00369 -0.00630 0.37295 0.29678 - 12 -0.00477 -0.00461 0.00007 -0.00019 0.00916 0.00634 + 10 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 11 0.00581 0.00321 0.00369 -0.00628 0.37272 0.29653 + 12 -0.00477 -0.00461 0.00007 -0.00019 0.00915 0.00633 13 0.00242 0.00243 -0.00000 0.00006 0.00007 0.00034 14 -0.00200 -0.00203 0.00003 -0.00001 0.00237 0.00275 - 15 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 16 -0.00581 0.00321 -0.00369 -0.00630 -0.37295 0.29678 - 17 0.00477 -0.00461 -0.00007 -0.00019 -0.00916 0.00634 + 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 16 -0.00581 0.00321 -0.00369 -0.00628 -0.37272 0.29653 + 17 0.00477 -0.00461 -0.00007 -0.00019 -0.00915 0.00633 18 0.00242 -0.00243 -0.00000 -0.00006 0.00007 -0.00034 19 -0.00200 0.00203 0.00003 0.00001 0.00237 -0.00275 - 20 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 21 -0.00579 0.00327 -0.00243 -0.00517 0.59454 0.63598 - 22 0.00473 -0.00456 0.00002 -0.00009 0.01884 0.02090 - 23 -0.00291 0.00292 0.00002 0.00006 -0.00077 -0.00054 + 20 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 21 -0.00580 0.00327 -0.00243 -0.00515 0.59468 0.63610 + 22 0.00473 -0.00456 0.00002 -0.00009 0.01884 0.02091 + 23 -0.00291 0.00292 0.00002 0.00007 -0.00077 -0.00054 24 -0.00110 0.00113 -0.00000 -0.00002 -0.00110 -0.00094 - 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 26 0.00579 0.00327 0.00243 -0.00517 -0.59454 0.63598 - 27 -0.00473 -0.00456 -0.00002 -0.00009 -0.01884 0.02090 - 28 -0.00291 -0.00292 0.00002 -0.00006 -0.00077 0.00054 + 25 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 26 0.00580 0.00327 0.00243 -0.00515 -0.59468 0.63610 + 27 -0.00473 -0.00456 -0.00002 -0.00009 -0.01884 0.02091 + 28 -0.00291 -0.00292 0.00002 -0.00007 -0.00077 0.00054 29 -0.00110 -0.00113 -0.00000 0.00002 -0.00110 0.00094 - 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 30 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 31 0.00006 -0.00002 -0.00001 0.00001 -0.00239 -0.00203 32 -0.00006 -0.00002 0.00001 0.00001 0.00239 -0.00203 33 -0.00005 -0.00003 -0.00009 -0.00009 -0.00393 -0.00436 34 0.00005 -0.00003 0.00009 -0.00009 0.00393 -0.00436 - 35 0.00886 -0.00919 0.70136 0.70132 0.00014 0.00746 - 36 0.00449 -0.00455 0.02501 0.02499 0.00007 0.00041 + 35 0.00891 -0.00924 0.70136 0.70132 0.00014 0.00744 + 36 0.00449 -0.00455 0.02500 0.02499 0.00007 0.00041 37 0.00063 -0.00064 0.00051 0.00051 -0.00003 0.00004 - 38 0.00289 -0.00292 -0.00064 -0.00065 0.00005 -0.00002 - 39 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 40 -0.00886 -0.00919 -0.70136 0.70132 -0.00014 0.00746 - 41 -0.00449 -0.00455 -0.02501 0.02499 -0.00007 0.00041 + 38 0.00288 -0.00292 -0.00065 -0.00065 0.00005 -0.00002 + 39 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 40 -0.00891 -0.00924 -0.70136 0.70132 -0.00014 0.00744 + 41 -0.00449 -0.00455 -0.02500 0.02499 -0.00007 0.00041 42 0.00063 0.00064 0.00051 -0.00051 -0.00003 -0.00004 - 43 0.00289 0.00292 -0.00064 0.00065 0.00005 0.00002 - 44 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 43 0.00288 0.00292 -0.00065 0.00065 0.00005 0.00002 + 44 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 45 -0.00009 0.00009 -0.00478 -0.00478 -0.00000 -0.00013 46 0.00009 0.00009 0.00478 -0.00478 0.00000 -0.00013 - 47 0.00051 -0.00049 0.01783 0.01783 -0.00075 -0.00094 + 47 0.00052 -0.00049 0.01784 0.01784 -0.00075 -0.00094 48 -0.00018 0.00019 -0.00474 -0.00474 -0.00004 -0.00017 49 -0.00004 0.00004 0.00211 0.00211 -0.00004 -0.00001 50 -0.00010 0.00010 -0.00239 -0.00239 -0.00003 -0.00011 - 51 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 52 -0.00051 -0.00049 -0.01783 0.01783 0.00075 -0.00094 + 51 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 52 -0.00052 -0.00049 -0.01784 0.01784 0.00075 -0.00094 53 0.00018 0.00019 0.00474 -0.00474 0.00004 -0.00017 54 -0.00004 -0.00004 0.00211 -0.00211 -0.00004 0.00001 55 -0.00010 -0.00010 -0.00239 0.00239 -0.00003 0.00011 - 56 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 57 0.00010 -0.00010 -0.00006 -0.00006 0.00009 0.00010 58 -0.00010 -0.00010 0.00006 -0.00006 -0.00009 0.00010 59 0.00002 -0.00002 -0.00004 -0.00004 -0.00001 -0.00001 @@ -2456,62 +2465,62 @@ 7 8 9 10 11 12 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00715 -0.00117 -0.00027 0.00024 -0.10669 0.10127 + 1 -0.00716 -0.00117 -0.00027 0.00024 -0.10669 0.10127 2 -0.00713 -0.00230 -0.00027 0.00027 0.27537 -0.27081 - 3 -0.00042 -0.00337 -0.00005 0.00005 -0.00529 -0.00407 + 3 -0.00043 -0.00336 -0.00005 0.00005 -0.00529 -0.00407 4 0.00237 0.00137 -0.00012 0.00012 -0.03821 -0.03177 - 5 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 6 0.00715 -0.00117 0.00027 0.00024 -0.10669 -0.10127 + 5 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 6 0.00716 -0.00117 0.00027 0.00024 -0.10669 -0.10127 7 0.00713 -0.00230 0.00027 0.00027 0.27537 0.27081 - 8 -0.00042 0.00337 -0.00005 -0.00005 0.00529 -0.00407 + 8 -0.00043 0.00336 -0.00005 -0.00005 0.00529 -0.00407 9 0.00237 -0.00137 -0.00012 -0.00012 0.03821 -0.03177 - 10 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 11 0.59422 0.63574 -0.00027 0.00041 -0.09665 0.03774 + 10 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 11 0.59436 0.63586 -0.00026 0.00041 -0.09665 0.03774 12 0.02429 0.02493 0.00001 -0.00007 0.24727 -0.10004 13 -0.00099 -0.00071 -0.00001 0.00002 -0.05226 0.02862 14 -0.00193 -0.00161 0.00006 -0.00002 -0.01452 -0.05673 - 15 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 16 -0.59422 0.63574 0.00027 0.00041 -0.09665 -0.03774 + 15 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 16 -0.59436 0.63586 0.00026 0.00041 -0.09665 -0.03774 17 -0.02429 0.02493 -0.00001 -0.00007 0.24727 0.10004 18 -0.00099 0.00071 -0.00001 -0.00002 0.05226 0.02862 19 -0.00193 0.00161 0.00006 0.00002 0.01452 -0.05673 - 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 21 -0.37245 -0.29628 0.00107 0.00108 -0.09646 -0.04167 - 22 -0.01788 -0.01503 0.00000 -0.00001 0.24713 0.11107 + 20 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 21 -0.37222 -0.29604 0.00107 0.00108 -0.09646 -0.04167 + 22 -0.01788 -0.01502 0.00000 -0.00001 0.24713 0.11107 23 -0.00002 -0.00025 0.00001 0.00000 -0.04467 -0.04526 24 -0.00292 -0.00308 0.00009 0.00008 0.03103 -0.04400 - 25 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 26 0.37245 -0.29628 -0.00107 0.00108 -0.09646 0.04167 - 27 0.01788 -0.01503 -0.00000 -0.00001 0.24713 -0.11107 + 25 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 26 0.37222 -0.29604 -0.00107 0.00108 -0.09646 0.04167 + 27 0.01788 -0.01502 -0.00000 -0.00001 0.24713 -0.11107 28 -0.00002 0.00025 0.00001 -0.00000 0.04467 -0.04526 29 -0.00292 0.00308 0.00009 -0.00008 -0.03103 -0.04400 - 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 31 -0.00404 -0.00433 0.00000 -0.00000 0.04417 -0.02580 - 32 0.00404 -0.00433 -0.00000 -0.00000 0.04417 0.02580 + 30 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 31 -0.00405 -0.00433 0.00000 -0.00000 0.04417 -0.02580 + 32 0.00405 -0.00433 -0.00000 -0.00000 0.04417 0.02580 33 0.00261 0.00202 0.00005 0.00006 0.04439 0.02948 34 -0.00261 0.00202 -0.00005 0.00006 0.04439 -0.02948 - 35 -0.00456 0.00356 -0.01739 -0.01739 -0.04969 -0.11307 + 35 -0.00456 0.00356 -0.01740 -0.01739 -0.04969 -0.11307 36 -0.00046 0.00018 -0.00604 -0.00604 0.12875 0.29870 37 -0.00007 0.00001 -0.00218 -0.00218 0.01431 0.03768 38 -0.00009 -0.00002 0.00239 0.00239 0.02732 0.00637 - 39 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 40 0.00456 0.00356 0.01739 -0.01739 -0.04969 0.11307 + 39 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 40 0.00456 0.00356 0.01740 -0.01739 -0.04969 0.11307 41 0.00046 0.00018 0.00604 -0.00604 0.12875 -0.29870 42 -0.00007 -0.00001 -0.00218 0.00218 -0.01431 0.03768 43 -0.00009 0.00002 0.00239 -0.00239 -0.02732 0.00637 - 44 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 44 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 45 0.00010 -0.00006 0.00017 0.00017 0.02537 0.06663 46 -0.00010 -0.00006 -0.00017 0.00017 0.02537 -0.06663 47 0.00066 0.00018 0.70143 0.70143 -0.02518 -0.08141 48 0.00014 -0.00004 0.02536 0.02536 0.06484 0.21365 49 0.00000 0.00003 -0.00077 -0.00077 -0.01330 -0.03922 - 50 0.00008 -0.00003 0.00082 0.00082 0.02041 0.05117 - 51 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 50 0.00008 -0.00003 0.00082 0.00082 0.02040 0.05117 + 51 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 52 -0.00066 0.00018 -0.70143 0.70143 -0.02518 0.08141 53 -0.00014 -0.00004 -0.02536 0.02536 0.06484 -0.21365 54 0.00000 -0.00003 -0.00077 0.00077 0.01330 -0.03922 - 55 0.00008 0.00003 0.00082 -0.00082 -0.02041 0.05117 - 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 55 0.00008 0.00003 0.00082 -0.00082 -0.02040 0.05117 + 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 57 -0.00007 -0.00006 -0.00473 -0.00473 0.01401 0.04892 58 0.00007 -0.00006 0.00473 -0.00473 0.01401 -0.04892 59 0.00001 -0.00000 -0.00475 -0.00475 0.01084 0.04446 @@ -2519,36 +2528,36 @@ 13 14 15 16 17 18 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00297 -0.01206 -0.10028 0.07233 0.05042 -0.01130 - 2 0.01021 0.03299 0.27908 -0.21293 -0.15130 0.03251 + 1 -0.00297 -0.01206 -0.10028 0.07233 0.05043 -0.01130 + 2 0.01021 0.03299 0.27908 -0.21293 -0.15131 0.03251 3 0.01072 0.12512 -0.01858 -0.11392 0.18994 -0.05062 4 0.09341 -0.02334 -0.05879 -0.07380 -0.06338 -0.13855 - 5 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 6 -0.00297 0.01206 0.10028 0.07233 0.05042 0.01130 - 7 0.01021 -0.03299 -0.27908 -0.21293 -0.15130 -0.03251 + 5 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 6 -0.00297 0.01206 0.10028 0.07233 0.05043 0.01130 + 7 0.01021 -0.03299 -0.27908 -0.21293 -0.15131 -0.03251 8 -0.01072 0.12512 -0.01858 0.11392 -0.18994 -0.05062 9 -0.09341 -0.02334 -0.05879 0.07380 0.06338 -0.13855 - 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 10 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 11 0.04598 -0.13091 -0.04228 -0.00068 -0.10905 -0.04827 12 -0.12241 0.35713 0.11798 0.00038 0.32485 0.14794 13 0.01557 -0.00206 -0.03981 0.03447 0.07474 -0.00499 14 0.03503 -0.05907 0.09190 -0.15917 0.04222 0.00882 - 15 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 15 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 16 0.04598 0.13091 0.04228 -0.00068 -0.10905 0.04827 17 -0.12241 -0.35713 -0.11798 0.00038 0.32485 -0.14794 18 -0.01557 -0.00206 -0.03981 -0.03447 -0.07474 -0.00499 19 -0.03503 -0.05907 0.09190 0.15917 -0.04222 0.00882 - 20 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 20 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 21 0.04178 -0.11920 0.07212 -0.07935 0.06026 0.03028 - 22 -0.11048 0.32501 -0.20070 0.22943 -0.18081 -0.09235 + 22 -0.11047 0.32501 -0.20070 0.22943 -0.18080 -0.09235 23 0.00187 0.03044 0.05768 0.06813 0.08309 0.03409 24 -0.04440 0.06952 0.04833 0.03027 0.16974 0.07638 - 25 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 25 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 26 0.04178 0.11920 -0.07212 -0.07935 0.06026 -0.03028 - 27 -0.11048 -0.32501 0.20070 0.22943 -0.18081 0.09235 + 27 -0.11047 -0.32501 0.20070 0.22943 -0.18080 0.09235 28 -0.00187 0.03044 0.05768 -0.06813 -0.08309 0.03409 29 0.04440 0.06952 0.04833 -0.03027 -0.16974 0.07638 - 30 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 30 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 31 -0.02382 0.09808 0.03404 -0.01381 0.17364 0.05184 32 -0.02382 -0.09808 -0.03404 -0.01381 0.17364 -0.05184 33 -0.01812 0.08988 -0.05447 0.10625 -0.09277 -0.05588 @@ -2557,26 +2566,26 @@ 36 0.31447 -0.00141 0.13620 -0.15950 -0.02294 0.29752 37 0.04856 0.01960 0.04017 0.07656 -0.04227 -0.11268 38 -0.05856 -0.01676 -0.12811 -0.13284 -0.07422 0.04537 - 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 39 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 40 -0.11765 -0.00033 0.05074 0.05255 0.00696 0.09654 41 0.31447 0.00141 -0.13620 -0.15950 -0.02294 -0.29752 42 -0.04856 0.01960 0.04017 -0.07656 0.04227 -0.11268 43 0.05856 -0.01676 -0.12811 0.13284 0.07422 0.04537 - 44 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 44 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 45 0.07614 -0.00904 0.03781 -0.08110 0.03153 0.17484 46 0.07614 0.00904 -0.03781 -0.08110 0.03153 -0.17484 47 -0.11635 -0.01271 -0.10674 -0.08250 -0.03462 0.08032 48 0.31008 0.03382 0.29222 0.23993 0.10374 -0.24821 49 -0.05070 0.00083 -0.03515 0.03354 -0.01185 -0.11853 50 0.05563 0.00584 0.02111 -0.03806 -0.04423 0.09244 - 51 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 51 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 52 -0.11635 0.01271 0.10674 -0.08250 -0.03462 -0.08032 53 0.31008 -0.03382 -0.29222 0.23993 0.10374 0.24821 54 0.05070 0.00083 -0.03515 -0.03354 0.01185 -0.11853 55 -0.05563 0.00584 0.02111 0.03806 0.04423 0.09244 56 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 57 0.07436 0.01269 0.07688 0.10484 0.02248 -0.16389 - 58 0.07436 -0.01269 -0.07688 0.10484 0.02248 0.16389 + 57 0.07436 0.01269 0.07688 0.10484 0.02247 -0.16389 + 58 0.07436 -0.01269 -0.07688 0.10484 0.02247 0.16389 59 0.07480 0.00781 0.08811 0.10145 0.06533 -0.13085 60 0.07480 -0.00781 -0.08811 0.10145 0.06533 0.13085 @@ -2584,442 +2593,442 @@ ----------- ----------- ----------- ----------- ----------- ----------- 1 0.05635 -0.02870 0.02569 -0.06597 -0.01971 0.01990 2 -0.17081 0.09582 -0.08867 0.22349 0.06676 -0.06515 - 3 -0.01908 0.04971 0.11788 0.10051 -0.22199 -0.01364 + 3 -0.01908 0.04971 0.11788 0.10050 -0.22199 -0.01364 4 0.13510 0.13632 -0.13269 -0.03061 -0.13927 -0.00811 - 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 5 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 6 0.05635 -0.02870 -0.02569 0.06597 0.01971 0.01990 7 -0.17081 0.09582 0.08867 -0.22349 -0.06676 -0.06515 - 8 0.01908 -0.04971 0.11788 0.10051 -0.22199 0.01364 + 8 0.01908 -0.04971 0.11788 0.10050 -0.22199 0.01364 9 -0.13510 -0.13632 -0.13269 -0.03061 -0.13927 0.00811 - 10 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 10 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 11 -0.00739 -0.01171 -0.02327 0.04508 -0.00178 -0.02313 12 0.02548 0.04483 0.07841 -0.15396 0.00340 0.07690 13 0.17431 0.14312 0.02854 -0.22080 0.00235 -0.00636 - 14 -0.09611 0.13702 0.18191 0.06810 -0.11757 -0.08071 - 15 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 14 -0.09610 0.13702 0.18191 0.06810 -0.11758 -0.08071 + 15 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 16 -0.00739 -0.01171 0.02327 -0.04508 0.00178 -0.02313 17 0.02548 0.04483 -0.07841 0.15396 -0.00340 0.07690 18 -0.17431 -0.14312 0.02854 -0.22080 0.00235 0.00636 - 19 0.09611 -0.13702 0.18191 0.06810 -0.11757 0.08071 - 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 19 0.09610 -0.13702 0.18191 0.06810 -0.11758 0.08071 + 20 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 21 -0.04991 0.01688 0.04175 -0.04083 0.01136 0.01619 - 22 0.15823 -0.04801 -0.13643 0.14101 -0.03587 -0.05945 + 22 0.15823 -0.04801 -0.13643 0.14102 -0.03587 -0.05945 23 0.19463 0.09267 -0.10371 0.11539 0.24895 -0.03894 - 24 -0.02349 -0.13872 -0.09327 -0.17947 0.06138 0.13432 - 25 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 24 -0.02349 -0.13871 -0.09327 -0.17946 0.06138 0.13432 + 25 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 26 -0.04991 0.01688 -0.04175 0.04083 -0.01136 0.01619 - 27 0.15823 -0.04801 0.13643 -0.14101 0.03587 -0.05945 + 27 0.15823 -0.04801 0.13643 -0.14102 0.03587 -0.05945 28 -0.19463 -0.09267 -0.10371 0.11539 0.24895 0.03894 - 29 0.02349 0.13872 -0.09327 -0.17947 0.06138 -0.13432 - 30 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 29 0.02349 0.13871 -0.09327 -0.17946 0.06138 -0.13432 + 30 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 31 0.09884 0.14691 0.11132 -0.22576 -0.03144 0.00351 32 0.09884 0.14691 -0.11132 0.22576 0.03144 0.00351 - 33 0.16886 0.10361 -0.07136 0.23490 0.12913 -0.11659 - 34 0.16886 0.10361 0.07136 -0.23490 -0.12913 -0.11659 + 33 0.16886 0.10361 -0.07136 0.23490 0.12912 -0.11659 + 34 0.16886 0.10361 0.07136 -0.23490 -0.12912 -0.11659 35 -0.06065 0.03501 -0.01410 -0.01560 -0.00245 -0.02553 - 36 0.18735 -0.11049 0.04410 0.04397 0.01483 0.07452 + 36 0.18735 -0.11049 0.04410 0.04398 0.01483 0.07453 37 -0.07122 0.11003 0.21505 0.04703 -0.04675 0.24900 - 38 -0.01009 0.18321 0.10305 -0.11921 0.17889 -0.08633 - 39 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 38 -0.01009 0.18321 0.10305 -0.11921 0.17890 -0.08633 + 39 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 40 -0.06065 0.03501 0.01410 0.01560 0.00245 -0.02553 - 41 0.18735 -0.11049 -0.04410 -0.04397 -0.01483 0.07452 + 41 0.18735 -0.11049 -0.04410 -0.04398 -0.01483 0.07453 42 0.07122 -0.11003 0.21505 0.04703 -0.04675 -0.24900 - 43 0.01009 -0.18321 0.10305 -0.11921 0.17889 0.08633 - 44 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 43 0.01009 -0.18321 0.10305 -0.11921 0.17890 0.08633 + 44 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 45 0.12516 -0.15273 -0.16530 0.01754 0.01423 -0.15136 46 0.12516 -0.15273 0.16530 -0.01754 -0.01423 -0.15136 - 47 0.05078 -0.01416 0.00664 0.01166 0.00119 -0.00365 - 48 -0.16147 0.05373 -0.02492 -0.04743 0.00610 -0.00094 + 47 0.05078 -0.01416 0.00664 0.01166 0.00119 -0.00364 + 48 -0.16147 0.05373 -0.02492 -0.04742 0.00610 -0.00095 49 -0.08644 0.20470 0.09073 -0.06668 0.25284 -0.01509 50 0.08198 0.01235 0.20180 0.14421 0.03561 0.33624 - 51 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 52 0.05078 -0.01416 -0.00664 -0.01166 -0.00119 -0.00365 - 53 -0.16147 0.05373 0.02492 0.04743 -0.00610 -0.00094 + 51 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 52 0.05078 -0.01416 -0.00664 -0.01166 -0.00119 -0.00364 + 53 -0.16147 0.05373 0.02492 0.04742 -0.00610 -0.00095 54 0.08644 -0.20470 0.09073 -0.06668 0.25284 0.01509 55 -0.08198 -0.01235 0.20180 0.14421 0.03561 -0.33624 - 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 56 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 57 -0.10616 0.17885 0.08017 -0.03906 0.22277 0.02576 58 -0.10616 0.17885 -0.08017 0.03906 -0.22277 0.02576 - 59 -0.10015 -0.02919 -0.17909 -0.11802 -0.09032 -0.26836 - 60 -0.10015 -0.02919 0.17909 0.11802 0.09032 -0.26836 + 59 -0.10015 -0.02920 -0.17909 -0.11802 -0.09032 -0.26836 + 60 -0.10015 -0.02920 0.17909 0.11802 0.09032 -0.26836 25 26 27 28 29 30 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00257 0.00260 0.02328 -0.00000 -0.00983 -0.00210 - 2 -0.00864 -0.00952 -0.08354 0.00000 0.04304 0.01635 - 3 -0.08356 0.17615 0.08391 -0.00000 0.09381 -0.16360 - 4 0.07383 -0.17697 0.00418 0.00000 0.24372 0.26025 - 5 -0.00000 0.00000 0.00000 0.33150 0.00000 -0.00000 - 6 -0.00257 -0.00260 0.02328 -0.00000 0.00983 -0.00210 - 7 0.00864 0.00952 -0.08354 0.00000 -0.04304 0.01635 - 8 -0.08356 0.17615 -0.08391 0.00000 0.09381 0.16360 - 9 0.07383 -0.17697 -0.00418 -0.00000 0.24372 -0.26025 - 10 -0.00000 -0.00000 0.00000 0.33150 0.00000 0.00000 - 11 0.02569 -0.01703 0.00423 0.00000 0.00744 0.00407 - 12 -0.08248 0.06113 -0.02149 -0.00000 -0.02348 -0.01323 - 13 0.29940 -0.11128 -0.12658 0.00000 0.06660 0.15890 + 1 0.00257 0.00260 0.02328 0.00000 -0.00983 -0.00210 + 2 -0.00864 -0.00952 -0.08354 -0.00000 0.04304 0.01635 + 3 -0.08356 0.17616 0.08391 0.00000 0.09381 -0.16359 + 4 0.07383 -0.17697 0.00418 -0.00000 0.24372 0.26026 + 5 0.00000 0.00000 -0.00000 0.33150 -0.00000 -0.00000 + 6 -0.00257 -0.00260 0.02328 0.00000 0.00983 -0.00210 + 7 0.00864 0.00952 -0.08354 -0.00000 -0.04304 0.01635 + 8 -0.08356 0.17616 -0.08391 -0.00000 0.09381 0.16359 + 9 0.07383 -0.17697 -0.00418 0.00000 0.24372 -0.26026 + 10 0.00000 0.00000 0.00000 0.33150 -0.00000 -0.00000 + 11 0.02569 -0.01703 0.00423 -0.00000 0.00744 0.00407 + 12 -0.08248 0.06113 -0.02149 0.00000 -0.02348 -0.01323 + 13 0.29940 -0.11128 -0.12658 -0.00000 0.06660 0.15890 14 0.15374 0.22297 -0.13207 -0.00000 0.03473 -0.26821 - 15 0.00000 0.00000 0.00000 0.30283 0.00000 0.00000 - 16 -0.02569 0.01703 0.00423 0.00000 -0.00744 0.00407 - 17 0.08248 -0.06113 -0.02149 -0.00000 0.02348 -0.01323 - 18 0.29940 -0.11128 0.12658 -0.00000 0.06660 -0.15890 + 15 -0.00000 0.00000 0.00000 0.30283 -0.00000 -0.00000 + 16 -0.02569 0.01703 0.00423 -0.00000 -0.00744 0.00407 + 17 0.08248 -0.06113 -0.02149 0.00000 0.02348 -0.01323 + 18 0.29940 -0.11128 0.12658 0.00000 0.06660 -0.15890 19 0.15374 0.22297 0.13207 0.00000 0.03473 0.26821 - 20 -0.00000 0.00000 0.00000 0.30283 0.00000 -0.00000 + 20 -0.00000 -0.00000 -0.00000 0.30283 -0.00000 -0.00000 21 0.01847 0.00605 -0.00713 -0.00000 -0.01378 -0.00966 - 22 -0.05932 -0.01702 0.02414 0.00000 0.04752 0.02840 - 23 0.17905 -0.07790 0.06229 -0.00000 -0.14407 -0.11753 - 24 -0.23285 -0.18488 0.13677 -0.00000 -0.01059 0.22347 - 25 -0.00000 0.00000 -0.00000 0.30187 0.00000 0.00000 + 22 -0.05932 -0.01702 0.02414 0.00000 0.04753 0.02840 + 23 0.17905 -0.07790 0.06229 0.00000 -0.14407 -0.11753 + 24 -0.23285 -0.18488 0.13677 0.00000 -0.01059 0.22347 + 25 -0.00000 -0.00000 -0.00000 0.30187 -0.00000 -0.00000 26 -0.01847 -0.00605 -0.00713 -0.00000 0.01378 -0.00966 - 27 0.05932 0.01702 0.02414 0.00000 -0.04752 0.02840 - 28 0.17905 -0.07790 -0.06229 0.00000 -0.14407 0.11753 - 29 -0.23285 -0.18488 -0.13677 0.00000 -0.01059 -0.22347 - 30 0.00000 0.00000 -0.00000 0.30187 0.00000 -0.00000 - 31 0.25850 -0.00250 -0.15685 0.00000 0.04885 0.05278 - 32 -0.25850 0.00250 -0.15685 0.00000 -0.04885 0.05278 - 33 0.22360 0.03999 -0.00010 -0.00000 -0.05941 -0.25390 - 34 -0.22360 -0.03999 -0.00010 -0.00000 0.05941 -0.25390 + 27 0.05932 0.01702 0.02414 0.00000 -0.04753 0.02840 + 28 0.17905 -0.07790 -0.06229 -0.00000 -0.14407 0.11753 + 29 -0.23285 -0.18488 -0.13677 -0.00000 -0.01059 -0.22347 + 30 0.00000 -0.00000 0.00000 0.30187 -0.00000 -0.00000 + 31 0.25850 -0.00250 -0.15685 -0.00000 0.04885 0.05277 + 32 -0.25850 0.00250 -0.15685 -0.00000 -0.04885 0.05277 + 33 0.22360 0.03999 -0.00010 0.00000 -0.05941 -0.25390 + 34 -0.22360 -0.03999 -0.00010 0.00000 0.05941 -0.25390 35 -0.00158 0.00086 -0.01510 0.00000 0.00351 -0.01752 - 36 0.00361 0.01230 0.06315 -0.00000 -0.01123 0.07387 - 37 -0.02371 -0.20200 -0.20936 -0.00000 -0.21453 0.02592 - 38 -0.05915 0.18876 0.08025 -0.00000 -0.17918 0.23293 - 39 0.00000 0.00000 0.00000 0.16558 0.00000 0.00000 + 36 0.00361 0.01230 0.06315 0.00000 -0.01123 0.07388 + 37 -0.02371 -0.20200 -0.20936 0.00000 -0.21453 0.02592 + 38 -0.05915 0.18876 0.08025 0.00000 -0.17918 0.23293 + 39 -0.00000 0.00000 -0.00000 0.16558 -0.00000 -0.00000 40 0.00158 -0.00086 -0.01510 0.00000 -0.00351 -0.01752 - 41 -0.00361 -0.01230 0.06315 -0.00000 0.01123 0.07387 - 42 -0.02371 -0.20200 0.20936 0.00000 -0.21453 -0.02592 - 43 -0.05915 0.18876 -0.08025 0.00000 -0.17918 -0.23293 - 44 0.00000 -0.00000 0.00000 0.16558 0.00000 -0.00000 - 45 0.02240 0.14844 0.20296 0.00000 0.25725 -0.04644 - 46 -0.02240 -0.14844 0.20296 0.00000 -0.25725 -0.04644 + 41 -0.00361 -0.01230 0.06315 0.00000 0.01123 0.07388 + 42 -0.02371 -0.20200 0.20936 -0.00000 -0.21453 -0.02592 + 43 -0.05915 0.18876 -0.08025 -0.00000 -0.17918 -0.23293 + 44 -0.00000 -0.00000 0.00000 0.16558 -0.00000 -0.00000 + 45 0.02240 0.14844 0.20296 -0.00000 0.25725 -0.04644 + 46 -0.02240 -0.14844 0.20296 -0.00000 -0.25725 -0.04644 47 0.00434 0.01891 0.00989 0.00000 0.00268 0.00872 48 -0.01686 -0.05201 -0.02602 -0.00000 -0.01229 -0.02347 - 49 -0.07124 0.12590 0.29613 0.00000 0.19454 0.03662 + 49 -0.07124 0.12590 0.29613 -0.00000 0.19454 0.03662 50 -0.01404 -0.23894 0.05034 -0.00000 0.14136 -0.13811 - 51 -0.00000 -0.00000 0.00000 0.09914 0.00000 -0.00000 + 51 0.00000 -0.00000 0.00000 0.09914 -0.00000 -0.00000 52 -0.00434 -0.01891 0.00989 0.00000 -0.00268 0.00872 53 0.01686 0.05201 -0.02602 -0.00000 0.01229 -0.02347 - 54 -0.07124 0.12590 -0.29613 -0.00000 0.19454 -0.03662 + 54 -0.07124 0.12590 -0.29613 0.00000 0.19454 -0.03662 55 -0.01404 -0.23894 -0.05034 0.00000 0.14136 0.13811 - 56 -0.00000 -0.00000 0.00000 0.09914 0.00000 -0.00000 - 57 -0.05652 0.05847 0.27319 0.00000 0.22630 -0.03215 - 58 0.05652 -0.05847 0.27319 0.00000 -0.22630 -0.03215 - 59 0.02227 0.15355 -0.14587 -0.00000 -0.21197 0.12146 - 60 -0.02227 -0.15355 -0.14587 -0.00000 0.21197 0.12146 + 56 0.00000 0.00000 -0.00000 0.09914 -0.00000 -0.00000 + 57 -0.05652 0.05847 0.27318 0.00000 0.22630 -0.03215 + 58 0.05652 -0.05847 0.27318 0.00000 -0.22630 -0.03215 + 59 0.02227 0.15354 -0.14587 0.00000 -0.21197 0.12146 + 60 -0.02227 -0.15354 -0.14587 0.00000 0.21197 0.12146 31 32 33 34 35 36 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00629 0.00000 -0.00000 0.00000 0.00000 0.00000 - 2 0.03168 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 3 0.27885 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 4 0.12973 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 5 0.00000 -0.31868 -0.03965 -0.00225 0.41799 0.47153 - 6 -0.00629 0.00000 -0.00000 0.00000 0.00000 0.00000 - 7 0.03168 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 8 -0.27885 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 9 -0.12973 0.00000 -0.00000 0.00000 0.00000 0.00000 - 10 0.00000 0.31868 -0.03965 0.00225 -0.41799 0.47153 - 11 -0.01149 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 12 0.03512 0.00000 0.00000 0.00000 0.00000 0.00000 - 13 -0.21035 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 14 -0.08520 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 15 0.00000 -0.12429 -0.16451 0.45982 0.23189 -0.24997 - 16 -0.01149 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 17 0.03512 0.00000 0.00000 0.00000 -0.00000 0.00000 - 18 0.21035 0.00000 -0.00000 0.00000 0.00000 0.00000 - 19 0.08520 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 20 0.00000 0.12429 -0.16451 -0.45982 -0.23189 -0.24997 - 21 0.00666 0.00000 -0.00000 0.00000 0.00000 0.00000 - 22 -0.02026 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 23 0.26904 0.00000 -0.00000 0.00000 0.00000 0.00000 - 24 0.12358 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 25 0.00000 0.11940 -0.16493 0.46149 -0.23200 -0.27857 - 26 0.00666 0.00000 -0.00000 0.00000 0.00000 0.00000 - 27 -0.02026 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 28 -0.26904 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 29 -0.12358 0.00000 -0.00000 0.00000 0.00000 0.00000 - 30 0.00000 -0.11940 -0.16493 -0.46149 0.23200 -0.27857 - 31 -0.25162 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 32 -0.25162 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 33 0.12318 0.00000 -0.00000 0.00000 0.00000 0.00000 - 34 0.12318 0.00000 -0.00000 0.00000 0.00000 0.00000 - 35 -0.01308 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 36 0.04729 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 37 0.14120 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 38 0.14327 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 39 0.00000 0.38321 0.41518 0.00019 0.21835 0.24693 - 40 -0.01308 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 41 0.04729 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 42 -0.14120 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 43 -0.14327 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 44 0.00000 -0.38321 0.41518 -0.00019 -0.21835 0.24693 - 45 -0.18377 0.00000 -0.00000 0.00000 0.00000 0.00000 - 46 -0.18377 0.00000 -0.00000 0.00000 0.00000 0.00000 - 47 -0.00303 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 48 0.01380 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 49 -0.10128 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 1 -0.00629 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 2 0.03168 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 3 0.27885 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 4 0.12972 0.00000 -0.00000 0.00000 0.00000 0.00000 + 5 -0.00000 -0.31868 -0.03965 -0.00225 0.41799 0.47153 + 6 -0.00629 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 7 0.03168 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 8 -0.27885 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 9 -0.12972 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 10 -0.00000 0.31868 -0.03965 0.00225 -0.41799 0.47153 + 11 -0.01149 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 12 0.03512 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 13 -0.21036 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 14 -0.08519 0.00000 0.00000 0.00000 -0.00000 0.00000 + 15 -0.00000 -0.12429 -0.16451 0.45982 0.23189 -0.24997 + 16 -0.01149 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 17 0.03512 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 18 0.21036 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 19 0.08519 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 20 -0.00000 0.12429 -0.16451 -0.45982 -0.23189 -0.24997 + 21 0.00666 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 22 -0.02027 0.00000 0.00000 -0.00000 0.00000 0.00000 + 23 0.26904 0.00000 0.00000 0.00000 0.00000 -0.00000 + 24 0.12357 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 25 -0.00000 0.11940 -0.16493 0.46149 -0.23200 -0.27857 + 26 0.00666 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 27 -0.02027 0.00000 0.00000 0.00000 0.00000 0.00000 + 28 -0.26904 0.00000 0.00000 0.00000 -0.00000 0.00000 + 29 -0.12357 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 30 -0.00000 -0.11940 -0.16493 -0.46149 0.23200 -0.27857 + 31 -0.25163 0.00000 0.00000 0.00000 0.00000 -0.00000 + 32 -0.25163 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 33 0.12318 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 34 0.12318 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 35 -0.01308 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 36 0.04729 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 37 0.14120 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 38 0.14327 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 39 -0.00000 0.38321 0.41518 0.00019 0.21835 0.24693 + 40 -0.01308 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 41 0.04729 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 42 -0.14120 0.00000 0.00000 0.00000 0.00000 -0.00000 + 43 -0.14327 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 44 -0.00000 -0.38321 0.41518 -0.00019 -0.21835 0.24693 + 45 -0.18377 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 46 -0.18377 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 47 -0.00303 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 48 0.01380 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 49 -0.10128 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 50 -0.05574 0.00000 -0.00000 0.00000 0.00000 0.00000 - 51 0.00000 0.30667 0.42629 0.00262 0.35818 -0.41493 - 52 -0.00303 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 53 0.01380 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 54 0.10128 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 55 0.05574 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 56 0.00000 -0.30667 0.42629 -0.00262 -0.35818 -0.41493 - 57 -0.11731 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 51 -0.00000 0.30667 0.42629 0.00262 0.35818 -0.41493 + 52 -0.00303 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 53 0.01380 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 54 0.10128 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 55 0.05574 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 56 -0.00000 -0.30667 0.42629 -0.00262 -0.35818 -0.41493 + 57 -0.11731 0.00000 0.00000 -0.00000 -0.00000 -0.00000 58 -0.11731 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 59 0.10240 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 60 0.10240 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 59 0.10240 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 60 0.10240 0.00000 -0.00000 0.00000 -0.00000 0.00000 37 38 39 40 41 42 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 0.00000 0.00000 0.00000 0.06347 -0.02959 - 2 0.00000 -0.00000 -0.00000 -0.00000 -0.38004 0.17692 - 3 0.00000 0.00000 -0.00000 -0.00000 -0.08842 0.28349 - 4 0.00000 -0.00000 -0.00000 0.00000 -0.26801 0.11184 - 5 -0.02229 -0.03791 -0.47349 0.53871 -0.00000 -0.00000 - 6 -0.00000 0.00000 0.00000 0.00000 0.06347 0.02959 - 7 0.00000 -0.00000 -0.00000 -0.00000 -0.38004 -0.17692 - 8 -0.00000 -0.00000 0.00000 0.00000 0.08842 0.28349 - 9 -0.00000 0.00000 -0.00000 -0.00000 0.26801 0.11184 + 1 -0.00000 0.00000 -0.00000 -0.00000 0.06347 -0.02959 + 2 0.00000 -0.00000 0.00000 0.00000 -0.38006 0.17692 + 3 0.00000 -0.00000 0.00000 0.00000 -0.08842 0.28350 + 4 0.00000 0.00000 0.00000 0.00000 -0.26802 0.11184 + 5 -0.02229 -0.03791 -0.47349 0.53871 0.00000 -0.00000 + 6 -0.00000 0.00000 -0.00000 -0.00000 0.06347 0.02959 + 7 0.00000 -0.00000 0.00000 0.00000 -0.38006 -0.17692 + 8 -0.00000 -0.00000 -0.00000 -0.00000 0.08842 0.28350 + 9 -0.00000 0.00000 0.00000 -0.00000 0.26802 0.11184 10 -0.02229 0.03791 -0.47349 -0.53871 -0.00000 -0.00000 - 11 0.00000 0.00000 -0.00000 -0.00000 0.02915 0.00433 - 12 0.00000 0.00000 0.00000 -0.00000 -0.18292 -0.02044 - 13 0.00000 -0.00000 -0.00000 0.00000 -0.30919 0.35554 - 14 0.00000 0.00000 0.00000 -0.00000 -0.06526 0.00144 - 15 0.57856 0.22554 0.16186 -0.46948 0.00000 -0.00000 - 16 0.00000 0.00000 -0.00000 -0.00000 0.02915 -0.00433 - 17 0.00000 -0.00000 0.00000 -0.00000 -0.18292 0.02044 - 18 -0.00000 0.00000 0.00000 -0.00000 0.30919 0.35554 - 19 -0.00000 -0.00000 -0.00000 0.00000 0.06526 0.00144 - 20 0.57856 -0.22554 0.16186 0.46948 0.00000 -0.00000 - 21 -0.00000 -0.00000 -0.00000 0.00000 0.04840 -0.01440 - 22 -0.00000 -0.00000 0.00000 0.00000 -0.29830 0.08934 - 23 0.00000 0.00000 -0.00000 -0.00000 -0.20794 0.29129 - 24 -0.00000 -0.00000 -0.00000 0.00000 0.13599 -0.00661 - 25 -0.55811 -0.22043 0.18678 0.47149 0.00000 -0.00000 - 26 -0.00000 -0.00000 -0.00000 0.00000 0.04840 0.01440 - 27 -0.00000 -0.00000 0.00000 0.00000 -0.29830 -0.08934 - 28 -0.00000 -0.00000 -0.00000 0.00000 0.20794 0.29129 - 29 0.00000 0.00000 0.00000 -0.00000 -0.13599 -0.00661 - 30 -0.55811 0.22043 0.18678 -0.47149 0.00000 -0.00000 - 31 0.00000 -0.00000 -0.00000 0.00000 0.42095 -0.31889 - 32 0.00000 -0.00000 -0.00000 -0.00000 0.42095 0.31889 - 33 0.00000 0.00000 -0.00000 -0.00000 0.43481 -0.27655 - 34 0.00000 0.00000 -0.00000 -0.00000 0.43481 0.27655 - 35 0.00000 0.00000 0.00000 -0.00000 -0.04826 0.01372 - 36 -0.00000 -0.00000 -0.00000 0.00000 0.27669 -0.08346 - 37 0.00000 -0.00000 0.00000 0.00000 0.23991 0.35091 - 38 0.00000 -0.00000 0.00000 0.00000 0.32393 0.19910 - 39 0.00330 0.52439 0.53507 0.27875 -0.00000 0.00000 - 40 0.00000 0.00000 -0.00000 -0.00000 -0.04826 -0.01372 - 41 -0.00000 -0.00000 0.00000 0.00000 0.27669 0.08346 - 42 -0.00000 0.00000 -0.00000 -0.00000 -0.23991 0.35091 - 43 -0.00000 0.00000 -0.00000 -0.00000 -0.32393 0.19910 + 11 0.00000 -0.00000 0.00000 0.00000 0.02915 0.00433 + 12 -0.00000 0.00000 -0.00000 -0.00000 -0.18291 -0.02043 + 13 -0.00000 0.00000 0.00000 0.00000 -0.30919 0.35555 + 14 0.00000 -0.00000 -0.00000 -0.00000 -0.06525 0.00144 + 15 0.57856 0.22554 0.16186 -0.46948 -0.00000 0.00000 + 16 0.00000 -0.00000 0.00000 0.00000 0.02915 -0.00433 + 17 -0.00000 0.00000 -0.00000 -0.00000 -0.18291 0.02043 + 18 -0.00000 -0.00000 -0.00000 -0.00000 0.30919 0.35555 + 19 -0.00000 -0.00000 0.00000 0.00000 0.06525 0.00144 + 20 0.57856 -0.22554 0.16186 0.46948 0.00000 0.00000 + 21 0.00000 -0.00000 0.00000 0.00000 0.04839 -0.01440 + 22 -0.00000 0.00000 -0.00000 -0.00000 -0.29828 0.08933 + 23 -0.00000 0.00000 0.00000 0.00000 -0.20794 0.29130 + 24 -0.00000 0.00000 -0.00000 -0.00000 0.13598 -0.00660 + 25 -0.55811 -0.22043 0.18678 0.47149 0.00000 0.00000 + 26 0.00000 -0.00000 -0.00000 0.00000 0.04839 0.01440 + 27 -0.00000 0.00000 0.00000 0.00000 -0.29828 -0.08933 + 28 0.00000 -0.00000 -0.00000 -0.00000 0.20794 0.29130 + 29 0.00000 0.00000 0.00000 -0.00000 -0.13598 -0.00660 + 30 -0.55811 0.22043 0.18678 -0.47149 -0.00000 0.00000 + 31 -0.00000 0.00000 0.00000 -0.00000 0.42094 -0.31890 + 32 -0.00000 0.00000 0.00000 -0.00000 0.42094 0.31890 + 33 -0.00000 0.00000 -0.00000 -0.00000 0.43480 -0.27655 + 34 -0.00000 0.00000 -0.00000 -0.00000 0.43480 0.27655 + 35 0.00000 -0.00000 -0.00000 0.00000 -0.04826 0.01371 + 36 0.00000 -0.00000 0.00000 -0.00000 0.27669 -0.08345 + 37 0.00000 -0.00000 -0.00000 -0.00000 0.23991 0.35091 + 38 -0.00000 0.00000 -0.00000 -0.00000 0.32394 0.19909 + 39 0.00330 0.52439 0.53507 0.27875 0.00000 0.00000 + 40 0.00000 -0.00000 0.00000 0.00000 -0.04826 -0.01371 + 41 0.00000 -0.00000 0.00000 -0.00000 0.27669 0.08345 + 42 -0.00000 0.00000 0.00000 0.00000 -0.23991 0.35091 + 43 0.00000 -0.00000 0.00000 0.00000 -0.32394 0.19909 44 0.00330 -0.52439 0.53507 -0.27875 -0.00000 0.00000 - 45 -0.00000 0.00000 0.00000 0.00000 0.14038 0.44871 - 46 -0.00000 0.00000 0.00000 0.00000 0.14038 -0.44871 - 47 -0.00000 -0.00000 0.00000 0.00000 0.04113 0.00135 - 48 0.00000 0.00000 -0.00000 -0.00000 -0.24263 -0.01355 - 49 0.00000 -0.00000 0.00000 -0.00000 0.13844 0.30202 - 50 0.00000 0.00000 0.00000 -0.00000 0.15018 0.17217 - 51 0.00408 -0.53124 -0.40735 -0.15847 0.00000 -0.00000 - 52 -0.00000 -0.00000 0.00000 0.00000 0.04113 -0.00135 - 53 0.00000 0.00000 -0.00000 -0.00000 -0.24263 0.01355 - 54 -0.00000 0.00000 -0.00000 0.00000 -0.13844 0.30202 - 55 -0.00000 -0.00000 -0.00000 0.00000 -0.15018 0.17217 + 45 0.00000 -0.00000 -0.00000 -0.00000 0.14038 0.44870 + 46 0.00000 0.00000 -0.00000 -0.00000 0.14038 -0.44870 + 47 -0.00000 0.00000 -0.00000 -0.00000 0.04112 0.00135 + 48 0.00000 -0.00000 0.00000 0.00000 -0.24262 -0.01356 + 49 -0.00000 -0.00000 -0.00000 -0.00000 0.13846 0.30201 + 50 0.00000 0.00000 -0.00000 -0.00000 0.15018 0.17216 + 51 0.00408 -0.53124 -0.40735 -0.15847 -0.00000 -0.00000 + 52 -0.00000 0.00000 -0.00000 -0.00000 0.04112 -0.00135 + 53 0.00000 -0.00000 0.00000 0.00000 -0.24262 0.01356 + 54 0.00000 -0.00000 -0.00000 0.00000 -0.13846 0.30201 + 55 -0.00000 0.00000 0.00000 0.00000 -0.15018 0.17216 56 0.00408 0.53124 -0.40735 0.15847 0.00000 -0.00000 - 57 0.00000 -0.00000 -0.00000 -0.00000 -0.09876 -0.32157 - 58 0.00000 -0.00000 -0.00000 -0.00000 -0.09876 0.32157 - 59 -0.00000 -0.00000 0.00000 0.00000 0.35383 0.27912 - 60 -0.00000 -0.00000 0.00000 0.00000 0.35383 -0.27912 + 57 0.00000 -0.00000 -0.00000 0.00000 -0.09878 -0.32156 + 58 0.00000 -0.00000 -0.00000 0.00000 -0.09878 0.32156 + 59 0.00000 -0.00000 -0.00000 -0.00000 0.35383 0.27911 + 60 0.00000 -0.00000 -0.00000 -0.00000 0.35383 -0.27911 43 44 45 46 47 48 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.02013 -0.05521 0.04545 -0.08266 -0.01775 -0.12947 - 2 -0.12343 0.32510 -0.27867 0.49230 0.11409 0.79667 - 3 -0.11293 -0.08096 0.24740 -0.11636 -0.10658 -0.04376 - 4 0.07805 0.45357 -0.15053 0.03227 -0.25761 -0.01346 - 5 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 6 0.02013 0.05521 0.04545 0.08266 0.01775 -0.12947 - 7 -0.12343 -0.32510 -0.27867 -0.49230 -0.11409 0.79667 - 8 0.11293 -0.08096 -0.24740 -0.11636 -0.10658 0.04376 - 9 -0.07805 0.45357 0.15053 0.03227 -0.25761 0.01346 - 10 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 1 0.02013 -0.05520 0.04545 -0.08266 -0.01775 -0.12947 + 2 -0.12342 0.32508 -0.27865 0.49230 0.11409 0.79666 + 3 -0.11292 -0.08096 0.24740 -0.11636 -0.10657 -0.04376 + 4 0.07806 0.45357 -0.15053 0.03228 -0.25761 -0.01346 + 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 6 0.02013 0.05520 0.04545 0.08266 0.01775 -0.12947 + 7 -0.12342 -0.32508 -0.27865 -0.49230 -0.11409 0.79666 + 8 0.11292 -0.08096 -0.24740 -0.11636 -0.10657 0.04376 + 9 -0.07806 0.45357 0.15053 0.03228 -0.25761 0.01346 + 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 11 -0.06409 0.02329 0.07352 0.07623 0.05737 0.07005 - 12 0.39790 -0.14491 -0.45737 -0.46141 -0.36107 -0.44428 - 13 0.00441 -0.11705 -0.06013 -0.11270 -0.32214 -0.01333 - 14 0.11326 0.22045 0.14682 0.02798 -0.31926 -0.29602 - 15 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 12 0.39789 -0.14490 -0.45738 -0.46139 -0.36107 -0.44429 + 13 0.00442 -0.11705 -0.06012 -0.11270 -0.32214 -0.01333 + 14 0.11326 0.22045 0.14682 0.02798 -0.31927 -0.29602 + 15 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 16 -0.06409 -0.02329 0.07352 -0.07623 -0.05737 0.07005 - 17 0.39790 0.14491 -0.45737 0.46141 0.36107 -0.44428 - 18 -0.00441 -0.11705 0.06013 -0.11270 -0.32214 0.01333 - 19 -0.11326 0.22045 -0.14682 0.02798 -0.31926 0.29602 - 20 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 21 -0.01478 -0.00096 -0.09399 -0.09961 -0.00456 0.07402 - 22 0.09708 -0.00077 0.58287 0.61113 0.01636 -0.46918 - 23 0.17067 -0.26070 -0.02470 -0.00943 -0.20447 0.22673 - 24 -0.20090 0.32796 0.02348 -0.11110 -0.10992 0.23945 - 25 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 26 -0.01478 0.00096 -0.09399 0.09961 0.00456 0.07402 - 27 0.09708 0.00077 0.58287 -0.61113 -0.01636 -0.46918 - 28 -0.17067 -0.26070 0.02470 -0.00943 -0.20447 -0.22673 - 29 0.20090 0.32796 -0.02348 -0.11110 -0.10992 -0.23945 - 30 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 31 -0.28652 0.10132 0.24361 0.33817 0.59827 0.29547 - 32 -0.28652 -0.10132 0.24361 -0.33817 -0.59827 0.29547 - 33 -0.27461 0.40888 -0.20615 -0.32761 0.04963 0.22014 - 34 -0.27461 -0.40888 -0.20615 0.32761 -0.04963 0.22014 - 35 0.06458 -0.08932 -0.01632 -0.04073 0.07342 0.09307 - 36 -0.39457 0.52979 0.10815 0.26016 -0.46728 -0.57054 - 37 0.35070 0.07785 -0.12426 -0.14865 0.22392 0.11487 - 38 0.07394 0.31854 0.23556 0.19088 -0.06187 -0.09824 - 39 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 40 0.06458 0.08932 -0.01632 0.04073 -0.07342 0.09307 - 41 -0.39457 -0.52979 0.10815 -0.26016 0.46728 -0.57054 - 42 -0.35070 0.07785 0.12426 -0.14865 0.22392 -0.11487 - 43 -0.07394 0.31854 -0.23556 0.19088 -0.06187 0.09824 - 44 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 45 0.58957 -0.13079 -0.12647 -0.19586 0.43802 0.36479 - 46 0.58957 0.13079 -0.12647 0.19586 -0.43802 0.36479 - 47 -0.01775 0.05639 -0.10758 -0.08348 0.02086 -0.06337 - 48 0.09879 -0.33762 0.68357 0.53349 -0.14155 0.39042 - 49 0.29962 0.11192 0.24914 0.26318 0.03160 -0.02921 - 50 0.24406 0.16611 -0.07396 -0.11940 0.29094 -0.06523 - 51 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 52 -0.01775 -0.05639 -0.10758 0.08348 -0.02086 -0.06337 - 53 0.09879 0.33762 0.68357 -0.53349 0.14155 0.39042 - 54 -0.29962 0.11192 -0.24914 0.26318 0.03160 0.02921 - 55 -0.24406 0.16611 0.07396 -0.11940 0.29094 0.06523 - 56 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 57 -0.38137 -0.00206 -0.54182 -0.46042 -0.02784 -0.17333 - 58 -0.38137 0.00206 -0.54182 0.46042 0.02784 -0.17333 - 59 0.26202 0.38945 -0.33080 -0.29263 0.32867 -0.26737 - 60 0.26202 -0.38945 -0.33080 0.29263 -0.32867 -0.26737 + 17 0.39789 0.14490 -0.45738 0.46139 0.36107 -0.44429 + 18 -0.00442 -0.11705 0.06012 -0.11270 -0.32214 0.01333 + 19 -0.11326 0.22045 -0.14682 0.02798 -0.31927 0.29602 + 20 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 21 -0.01478 -0.00096 -0.09399 -0.09960 -0.00456 0.07402 + 22 0.09710 -0.00079 0.58288 0.61112 0.01637 -0.46918 + 23 0.17068 -0.26071 -0.02469 -0.00945 -0.20446 0.22673 + 24 -0.20090 0.32797 0.02348 -0.11109 -0.10993 0.23946 + 25 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 26 -0.01478 0.00096 -0.09399 0.09960 0.00456 0.07402 + 27 0.09710 0.00079 0.58288 -0.61112 -0.01637 -0.46918 + 28 -0.17068 -0.26071 0.02469 -0.00945 -0.20446 -0.22673 + 29 0.20090 0.32797 -0.02348 -0.11109 -0.10993 -0.23946 + 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 31 -0.28653 0.10132 0.24361 0.33817 0.59827 0.29547 + 32 -0.28653 -0.10132 0.24361 -0.33817 -0.59827 0.29547 + 33 -0.27463 0.40890 -0.20615 -0.32759 0.04960 0.22015 + 34 -0.27463 -0.40890 -0.20615 0.32759 -0.04960 0.22015 + 35 0.06458 -0.08931 -0.01632 -0.04073 0.07342 0.09307 + 36 -0.39458 0.52976 0.10814 0.26016 -0.46728 -0.57054 + 37 0.35069 0.07786 -0.12426 -0.14864 0.22392 0.11487 + 38 0.07394 0.31854 0.23556 0.19090 -0.06187 -0.09824 + 39 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 40 0.06458 0.08931 -0.01632 0.04073 -0.07342 0.09307 + 41 -0.39458 -0.52976 0.10814 -0.26016 0.46728 -0.57054 + 42 -0.35069 0.07786 0.12426 -0.14864 0.22392 -0.11487 + 43 -0.07394 0.31854 -0.23556 0.19090 -0.06187 0.09824 + 44 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 45 0.58957 -0.13077 -0.12647 -0.19585 0.43802 0.36479 + 46 0.58957 0.13077 -0.12647 0.19585 -0.43802 0.36479 + 47 -0.01775 0.05639 -0.10758 -0.08349 0.02086 -0.06336 + 48 0.09880 -0.33762 0.68358 0.53351 -0.14155 0.39041 + 49 0.29962 0.11191 0.24914 0.26319 0.03161 -0.02922 + 50 0.24406 0.16612 -0.07396 -0.11940 0.29095 -0.06522 + 51 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 52 -0.01775 -0.05639 -0.10758 0.08349 -0.02086 -0.06336 + 53 0.09880 0.33762 0.68358 -0.53351 0.14155 0.39041 + 54 -0.29962 0.11191 -0.24914 0.26319 0.03161 0.02922 + 55 -0.24406 0.16612 0.07396 -0.11940 0.29095 0.06522 + 56 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 57 -0.38136 -0.00205 -0.54181 -0.46045 -0.02785 -0.17333 + 58 -0.38136 0.00205 -0.54181 0.46045 0.02785 -0.17333 + 59 0.26202 0.38946 -0.33081 -0.29263 0.32868 -0.26736 + 60 0.26202 -0.38946 -0.33081 0.29263 -0.32868 -0.26736 49 50 51 52 53 54 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.06032 0.04020 0.06828 0.00273 -0.00046 0.05152 - 2 -0.36325 -0.25412 -0.46271 -0.00820 -0.00319 -0.36172 - 3 -0.13937 -0.34437 0.12169 -0.55535 0.21367 -0.26311 - 4 0.11476 0.04818 0.58684 0.05618 0.04559 0.00402 - 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 6 -0.06032 0.04020 0.06828 -0.00273 -0.00046 -0.05152 - 7 0.36325 -0.25412 -0.46271 0.00820 -0.00319 0.36172 - 8 -0.13937 0.34437 -0.12169 -0.55535 -0.21367 -0.26311 - 9 0.11476 -0.04818 -0.58684 0.05618 -0.04559 0.00402 - 10 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 1 0.06033 0.04020 0.06829 0.00273 -0.00046 0.05152 + 2 -0.36327 -0.25411 -0.46272 -0.00821 -0.00320 -0.36172 + 3 -0.13936 -0.34438 0.12169 -0.55535 0.21367 -0.26311 + 4 0.11475 0.04817 0.58684 0.05618 0.04558 0.00401 + 5 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 6 -0.06033 0.04020 0.06829 -0.00273 -0.00046 -0.05152 + 7 0.36327 -0.25411 -0.46272 0.00821 -0.00320 0.36172 + 8 -0.13936 0.34438 -0.12169 -0.55535 -0.21367 -0.26311 + 9 0.11475 -0.04817 -0.58684 0.05618 -0.04558 0.00401 + 10 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 11 -0.05816 -0.11353 -0.01377 -0.09440 0.00433 0.03473 - 12 0.35719 0.72777 0.09181 0.64278 -0.03563 -0.23914 - 13 -0.14747 -0.07673 -0.44667 0.01638 0.53136 -0.19353 - 14 0.12249 -0.10733 0.16074 0.09830 0.19720 0.71678 - 15 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 12 0.35719 0.72776 0.09182 0.64278 -0.03563 -0.23914 + 13 -0.14747 -0.07672 -0.44667 0.01637 0.53137 -0.19353 + 14 0.12248 -0.10733 0.16074 0.09831 0.19721 0.71678 + 15 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 16 0.05816 -0.11353 -0.01377 0.09440 0.00433 -0.03473 - 17 -0.35719 0.72777 0.09181 -0.64278 -0.03563 0.23914 - 18 -0.14747 0.07673 0.44667 0.01638 -0.53136 -0.19353 - 19 0.12249 0.10733 -0.16074 0.09830 -0.19720 0.71678 - 20 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 17 -0.35719 0.72776 0.09182 -0.64278 -0.03563 0.23914 + 18 -0.14747 0.07672 0.44667 0.01637 -0.53137 -0.19353 + 19 0.12248 0.10733 -0.16074 0.09831 -0.19721 0.71678 + 20 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 21 0.06824 0.09547 -0.04797 -0.03443 -0.00315 -0.08760 - 22 -0.42519 -0.61447 0.31578 0.24291 0.02893 0.61058 - 23 -0.18152 -0.15948 -0.32474 -0.19598 -0.51838 0.30197 + 22 -0.42521 -0.61447 0.31578 0.24290 0.02893 0.61059 + 23 -0.18151 -0.15947 -0.32475 -0.19597 -0.51838 0.30197 24 0.14947 -0.17955 0.01505 -0.47953 0.39528 0.38216 - 25 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 25 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 26 -0.06824 0.09547 -0.04797 0.03443 -0.00315 0.08760 - 27 0.42519 -0.61447 0.31578 -0.24291 0.02893 -0.61058 - 28 -0.18152 0.15948 0.32474 -0.19598 0.51838 0.30197 + 27 0.42521 -0.61447 0.31578 -0.24290 0.02893 -0.61059 + 28 -0.18151 0.15947 0.32475 -0.19597 0.51838 0.30197 29 0.14947 0.17955 -0.01505 -0.47953 -0.39528 0.38216 - 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 31 -0.07755 -0.24355 0.24171 -0.29864 -0.44168 0.06169 - 32 0.07755 -0.24355 0.24171 0.29864 -0.44168 -0.06169 - 33 0.48819 0.33971 0.05276 -0.20881 0.50945 -0.25390 - 34 -0.48819 0.33971 0.05276 0.20881 0.50945 0.25390 - 35 0.07001 -0.03282 0.07316 0.02688 0.05205 0.06209 - 36 -0.43044 0.23057 -0.48601 -0.19861 -0.36325 -0.43404 - 37 0.05929 -0.03730 0.15697 -0.27580 -0.14090 0.07787 - 38 0.12368 0.07467 0.02313 0.04919 0.16297 0.10502 - 39 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 40 -0.07001 -0.03282 0.07316 -0.02688 0.05205 -0.06209 - 41 0.43044 0.23057 -0.48601 0.19861 -0.36325 0.43404 - 42 0.05929 0.03730 -0.15697 -0.27580 0.14090 0.07787 - 43 0.12368 -0.07467 -0.02313 0.04919 -0.16297 0.10502 - 44 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 45 0.29660 -0.08717 0.31098 -0.15158 0.08063 0.25884 - 46 -0.29660 -0.08717 0.31098 0.15158 0.08063 -0.25884 + 30 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 31 -0.07756 -0.24355 0.24171 -0.29864 -0.44169 0.06170 + 32 0.07756 -0.24355 0.24171 0.29864 -0.44169 -0.06170 + 33 0.48819 0.33971 0.05277 -0.20881 0.50944 -0.25391 + 34 -0.48819 0.33971 0.05277 0.20881 0.50944 0.25391 + 35 0.07002 -0.03282 0.07315 0.02688 0.05204 0.06209 + 36 -0.43047 0.23057 -0.48600 -0.19861 -0.36324 -0.43405 + 37 0.05929 -0.03730 0.15697 -0.27581 -0.14090 0.07786 + 38 0.12366 0.07466 0.02314 0.04918 0.16297 0.10502 + 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 40 -0.07002 -0.03282 0.07315 -0.02688 0.05204 -0.06209 + 41 0.43047 0.23057 -0.48600 0.19861 -0.36324 0.43405 + 42 0.05929 0.03730 -0.15697 -0.27581 0.14090 0.07786 + 43 0.12366 -0.07466 -0.02314 0.04918 -0.16297 0.10502 + 44 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 45 0.29662 -0.08716 0.31097 -0.15158 0.08064 0.25884 + 46 -0.29662 -0.08716 0.31097 0.15158 0.08064 -0.25884 47 -0.11043 -0.06100 -0.01913 -0.00996 -0.04167 -0.00937 - 48 0.70234 0.39762 0.12122 0.07892 0.29027 0.06215 - 49 0.14092 0.13474 -0.35816 0.02242 -0.09607 -0.30665 - 50 -0.01940 -0.37252 -0.13205 0.49016 0.29205 0.09798 - 51 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 48 0.70233 0.39762 0.12122 0.07893 0.29027 0.06216 + 49 0.14091 0.13476 -0.35815 0.02242 -0.09607 -0.30666 + 50 -0.01939 -0.37252 -0.13206 0.49016 0.29204 0.09797 + 51 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 52 0.11043 -0.06100 -0.01913 0.00996 -0.04167 0.00937 - 53 -0.70234 0.39762 0.12122 -0.07892 0.29027 -0.06215 - 54 0.14092 -0.13474 0.35816 0.02242 0.09607 -0.30665 - 55 -0.01940 0.37252 0.13205 0.49016 -0.29205 0.09798 - 56 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 57 -0.51487 -0.28602 0.24499 -0.10534 -0.12844 0.22847 - 58 0.51487 -0.28602 0.24499 0.10534 -0.12844 -0.22847 - 59 -0.31646 -0.45685 -0.25487 0.35646 0.08062 -0.02830 - 60 0.31646 -0.45685 -0.25487 -0.35646 0.08062 0.02830 + 53 -0.70233 0.39762 0.12122 -0.07893 0.29027 -0.06216 + 54 0.14091 -0.13476 0.35815 0.02242 0.09607 -0.30666 + 55 -0.01939 0.37252 0.13206 0.49016 -0.29204 0.09797 + 56 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 57 -0.51486 -0.28603 0.24499 -0.10535 -0.12843 0.22847 + 58 0.51486 -0.28603 0.24499 0.10535 -0.12843 -0.22847 + 59 -0.31645 -0.45685 -0.25488 0.35646 0.08062 -0.02831 + 60 0.31645 -0.45685 -0.25488 -0.35646 0.08062 0.02831 55 56 57 58 59 60 ----------- ----------- ----------- ----------- ----------- ----------- 1 -0.09450 0.01420 0.01758 0.01953 -0.00474 0.04242 - 2 0.64863 -0.08483 -0.11210 -0.13942 0.03202 -0.32154 - 3 -0.18965 -0.10985 0.10062 -0.46861 0.71203 0.16190 - 4 0.05545 -0.35994 -0.41190 0.13349 -0.05426 0.66243 - 5 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 2 0.64864 -0.08483 -0.11210 -0.13942 0.03202 -0.32153 + 3 -0.18965 -0.10986 0.10062 -0.46861 0.71202 0.16190 + 4 0.05544 -0.35995 -0.41189 0.13349 -0.05426 0.66243 + 5 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 6 0.09450 0.01420 0.01758 -0.01953 -0.00474 -0.04242 - 7 -0.64863 -0.08483 -0.11210 0.13942 0.03202 0.32154 - 8 -0.18965 0.10985 -0.10062 -0.46861 -0.71203 0.16190 - 9 0.05545 0.35994 0.41190 0.13349 0.05426 0.66243 - 10 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 7 -0.64864 -0.08483 -0.11210 0.13942 0.03202 0.32153 + 8 -0.18965 0.10986 -0.10062 -0.46861 -0.71202 0.16190 + 9 0.05544 0.35995 0.41189 0.13349 0.05426 0.66243 + 10 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 11 -0.00878 0.02820 -0.01808 -0.04629 0.00719 -0.05089 - 12 0.07503 -0.20151 0.13188 0.33903 -0.04976 0.37542 - 13 0.27125 0.26938 0.11483 -0.19548 0.24459 -0.56630 - 14 -0.13845 0.39220 -0.36514 0.13846 -0.54801 -0.23999 - 15 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 12 0.07504 -0.20151 0.13189 0.33903 -0.04976 0.37542 + 13 0.27126 0.26937 0.11482 -0.19548 0.24459 -0.56630 + 14 -0.13846 0.39220 -0.36515 0.13846 -0.54801 -0.23999 + 15 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 16 0.00878 0.02820 -0.01808 0.04629 0.00719 0.05089 - 17 -0.07503 -0.20151 0.13188 -0.33903 -0.04976 -0.37542 - 18 0.27125 -0.26938 -0.11483 -0.19548 -0.24459 -0.56630 - 19 -0.13845 -0.39220 0.36514 0.13846 0.54801 -0.23999 - 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 17 -0.07504 -0.20151 0.13189 -0.33903 -0.04976 -0.37542 + 18 0.27126 -0.26937 -0.11482 -0.19548 -0.24459 -0.56630 + 19 -0.13846 -0.39220 0.36515 0.13846 0.54801 -0.23999 + 20 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 21 -0.02893 -0.03159 0.01601 -0.02227 -0.00734 0.05551 - 22 0.19142 0.22096 -0.11841 0.16775 0.04971 -0.41154 - 23 -0.39356 0.15679 0.05191 -0.05616 -0.44424 0.49411 - 24 -0.20792 0.32679 -0.42994 -0.21552 -0.42323 -0.39435 - 25 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 22 0.19142 0.22096 -0.11842 0.16775 0.04971 -0.41154 + 23 -0.39356 0.15680 0.05191 -0.05616 -0.44424 0.49411 + 24 -0.20793 0.32678 -0.42995 -0.21552 -0.42322 -0.39434 + 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 26 0.02893 -0.03159 0.01601 0.02227 -0.00734 -0.05551 - 27 -0.19142 0.22096 -0.11841 -0.16775 0.04971 0.41154 - 28 -0.39356 -0.15679 -0.05191 -0.05616 0.44424 0.49411 - 29 -0.20792 -0.32679 0.42994 -0.21552 0.42323 -0.39435 - 30 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 31 -0.14981 -0.21765 -0.04767 -0.02392 -0.00844 0.26961 - 32 0.14981 -0.21765 -0.04767 0.02392 -0.00844 -0.26961 - 33 0.02253 -0.03522 -0.20429 -0.10576 0.03848 -0.27726 - 34 -0.02253 -0.03522 -0.20429 0.10576 0.03848 0.27726 + 27 -0.19142 0.22096 -0.11842 -0.16775 0.04971 0.41154 + 28 -0.39356 -0.15680 -0.05191 -0.05616 0.44424 0.49411 + 29 -0.20793 -0.32678 0.42995 -0.21552 0.42322 -0.39434 + 30 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 31 -0.14981 -0.21765 -0.04766 -0.02392 -0.00844 0.26961 + 32 0.14981 -0.21765 -0.04766 0.02392 -0.00844 -0.26961 + 33 0.02254 -0.03523 -0.20429 -0.10576 0.03848 -0.27726 + 34 -0.02254 -0.03523 -0.20429 0.10576 0.03848 0.27726 35 0.01769 -0.04334 0.03640 -0.05834 -0.02416 -0.01409 - 36 -0.14422 0.30720 -0.29712 0.45190 0.19749 0.08798 - 37 0.29736 0.55668 -0.09969 0.60835 0.41479 0.02777 + 36 -0.14423 0.30721 -0.29712 0.45190 0.19749 0.08798 + 37 0.29735 0.55668 -0.09970 0.60835 0.41479 0.02777 38 0.48257 0.14504 0.68016 -0.45823 -0.30091 0.36504 - 39 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 39 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 40 -0.01769 -0.04334 0.03640 0.05834 -0.02416 0.01409 - 41 0.14422 0.30720 -0.29712 -0.45190 0.19749 -0.08798 - 42 0.29736 -0.55668 0.09969 0.60835 -0.41479 0.02777 + 41 0.14423 0.30721 -0.29712 -0.45190 0.19749 -0.08798 + 42 0.29735 -0.55668 0.09970 0.60835 -0.41479 0.02777 43 0.48257 -0.14504 -0.68016 -0.45823 0.30091 0.36504 - 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 45 0.32793 0.30837 0.14608 0.17886 0.15782 0.04879 - 46 -0.32793 0.30837 0.14608 -0.17886 0.15782 -0.04879 + 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 0.32793 0.30837 0.14608 0.17887 0.15782 0.04879 + 46 -0.32793 0.30837 0.14608 -0.17887 0.15782 -0.04879 47 -0.01772 0.03266 -0.04635 0.06846 0.03822 -0.00886 - 48 0.12954 -0.24177 0.35554 -0.52696 -0.30561 0.07837 - 49 -0.50737 -0.13251 -0.58368 0.38884 0.24000 -0.21692 - 50 -0.23525 -0.53985 0.18340 -0.53681 -0.30264 -0.00326 - 51 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 48 0.12954 -0.24177 0.35554 -0.52696 -0.30561 0.07838 + 49 -0.50737 -0.13252 -0.58368 0.38883 0.24000 -0.21693 + 50 -0.23524 -0.53985 0.18340 -0.53681 -0.30265 -0.00326 + 51 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 52 0.01772 0.03266 -0.04635 -0.06846 0.03822 0.00886 - 53 -0.12954 -0.24177 0.35554 0.52696 -0.30561 -0.07837 - 54 -0.50737 0.13251 0.58368 0.38884 -0.24000 -0.21692 - 55 -0.23525 0.53985 -0.18340 -0.53681 0.30264 -0.00326 - 56 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 57 0.34539 0.26547 0.27254 -0.01145 -0.03139 0.13677 - 58 -0.34539 0.26547 0.27254 0.01145 -0.03139 -0.13677 - 59 -0.33103 -0.32049 -0.12287 -0.09633 -0.04651 -0.06632 - 60 0.33103 -0.32049 -0.12287 0.09633 -0.04651 0.06632 + 53 -0.12954 -0.24177 0.35554 0.52696 -0.30561 -0.07838 + 54 -0.50737 0.13252 0.58368 0.38883 -0.24000 -0.21693 + 55 -0.23524 0.53985 -0.18340 -0.53681 0.30265 -0.00326 + 56 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 57 0.34539 0.26547 0.27254 -0.01144 -0.03139 0.13677 + 58 -0.34539 0.26547 0.27254 0.01144 -0.03139 -0.13677 + 59 -0.33103 -0.32048 -0.12287 -0.09634 -0.04651 -0.06633 + 60 0.33103 -0.32048 -0.12287 0.09634 -0.04651 0.06633 center of mass -------------- @@ -3027,10 +3036,10 @@ moments of inertia (a.u.) ------------------ - 2631.731379210404 0.000000000000 0.000000000000 - 0.000000000000 390.819001468288 0.000000000000 - 0.000000000000 0.000000000000 3022.550380678692 - + 2631.731379210398 -0.000000000000 0.000000000000 + -0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678686 + Mulliken analysis of the total density -------------------------------------- @@ -3056,24 +3065,27 @@ 18 H 1 0.94 0.94 19 H 1 0.94 0.94 20 H 1 0.94 0.94 - + Multipole analysis of the density wrt the origin ------------------------------------------------ - + L x y z total open nuclear - - - - ----- ---- ------- 0 0 0 0 -0.000000 0.000000 70.000000 - - 1 1 0 0 -0.000000 0.000000 0.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 1 0 1 0 -0.000000 0.000000 0.000000 - 1 0 0 1 0.000000 0.000000 0.000000 + 1 0 0 1 -0.000000 0.000000 0.000000 + + 2 2 0 0 -38.360869 0.000000 244.795872 + 2 1 1 0 0.065434 0.000000 -5.631027 + 2 1 0 1 0.000000 0.000000 0.000000 + 2 0 2 0 -39.006221 0.000000 1496.963300 + 2 0 1 1 -0.000000 0.000000 0.000000 + 2 0 0 2 -43.564269 0.000000 0.000000 + - 2 2 0 0 -38.360884 0.000000 244.795872 - 2 1 1 0 0.065438 0.000000 -5.631027 - 2 1 0 1 -0.000000 0.000000 0.000000 - 2 0 2 0 -39.006243 0.000000 1496.963300 - 2 0 1 1 0.000000 0.000000 0.000000 - 2 0 0 2 -43.564268 0.000000 0.000000 + Parallel integral file used 9 records with 0 large values ------------- @@ -3084,16 +3096,16 @@ X = 0.0000000 Y = 0.0000000 Z = 0.0000000 Dipole moment 0.0000000000 A.U. - DMX -0.0000000000 DMXEFC 0.0000000000 - DMY -0.0000000000 DMYEFC 0.0000000000 - DMZ 0.0000000000 DMZEFC 0.0000000000 + DMX 0.0000000000 DMXEFC 0.0000000000 + DMY 0.0000000000 DMYEFC 0.0000000000 + DMZ -0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 A.U. Total dipole 0.0000000000 A.U. Dipole moment 0.0000000000 Debye(s) - DMX -0.0000000000 DMXEFC 0.0000000000 - DMY -0.0000000000 DMYEFC 0.0000000000 - DMZ 0.0000000000 DMZEFC 0.0000000000 + DMX 0.0000000000 DMXEFC 0.0000000000 + DMY 0.0000000000 DMYEFC 0.0000000000 + DMZ -0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 DEBYE(S) Total dipole 0.0000000000 DEBYE(S) @@ -3113,45 +3125,45 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -38.3608840749 0.0000000000 -38.3608840749 - YY -39.0062425075 0.0000000000 -39.0062425075 - ZZ -43.5642675472 0.0000000000 -43.5642675472 - XY 0.0654382568 0.0000000000 0.0654382568 - XZ -0.0000000000 0.0000000000 -0.0000000000 - YZ 0.0000000000 0.0000000000 0.0000000000 + XX -38.3608685339 0.0000000000 -38.3608685339 + YY -39.0062210270 0.0000000000 -39.0062210270 + ZZ -43.5642691494 0.0000000000 -43.5642691494 + XY 0.0654337039 0.0000000000 0.0654337039 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ -0.0000000000 0.0000000000 -0.0000000000 Second moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -51.5919749620 0.0000000000 -51.5919749620 - YY -52.4599246170 0.0000000000 -52.4599246170 - ZZ -58.5900626312 0.0000000000 -58.5900626312 - XY 0.0880086313 0.0000000000 0.0880086313 - XZ -0.0000000000 0.0000000000 -0.0000000000 - YZ 0.0000000000 0.0000000000 0.0000000000 + XX -51.5919540608 0.0000000000 -51.5919540608 + YY -52.4598957276 0.0000000000 -52.4598957276 + ZZ -58.5900647860 0.0000000000 -58.5900647860 + XY 0.0880025081 0.0000000000 0.0880025081 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ -0.0000000000 0.0000000000 -0.0000000000 Quadrupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 2.9243709525 0.0000000000 2.9243709525 - YY 1.9563333035 0.0000000000 1.9563333035 - ZZ -4.8807042560 0.0000000000 -4.8807042560 - XY 0.0981573851 0.0000000000 0.0981573851 - XZ -0.0000000000 0.0000000000 -0.0000000000 - YZ 0.0000000000 0.0000000000 0.0000000000 + XX 2.9243765543 0.0000000000 2.9243765543 + YY 1.9563478146 0.0000000000 1.9563478146 + ZZ -4.8807243690 0.0000000000 -4.8807243690 + XY 0.0981505558 0.0000000000 0.0981505558 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ -0.0000000000 0.0000000000 -0.0000000000 Quadrupole moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 3.9330186621 0.0000000000 3.9330186621 - YY 2.6310941796 0.0000000000 2.6310941796 - ZZ -6.5641128417 0.0000000000 -6.5641128417 - XY 0.1320129470 0.0000000000 0.1320129470 - XZ -0.0000000000 0.0000000000 -0.0000000000 - YZ 0.0000000000 0.0000000000 0.0000000000 + XX 3.9330261961 0.0000000000 3.9330261961 + YY 2.6311136957 0.0000000000 2.6311136957 + ZZ -6.5641398918 0.0000000000 -6.5641398918 + XY 0.1320037622 0.0000000000 0.1320037622 + XZ 0.0000000000 0.0000000000 0.0000000000 + YZ -0.0000000000 0.0000000000 -0.0000000000 1 a.u. = 1.344911 Buckinghams = 1.344911 10**(-26) esu*cm**2 @@ -3167,60 +3179,60 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XXX -0.0000000000 0.0000000000 -0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 - YYX -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 YYZ 0.0000000000 0.0000000000 0.0000000000 ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY -0.0000000000 0.0000000000 -0.0000000000 - XYZ 0.0000000000 0.0000000000 0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 Third moments in 10**(-34) esu*cm**3 Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XXX -0.0000000000 0.0000000000 -0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 - YYX -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 YYZ 0.0000000000 0.0000000000 0.0000000000 ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY -0.0000000000 0.0000000000 -0.0000000000 - XYZ 0.0000000000 0.0000000000 0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 Octupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX 0.0000000000 0.0000000000 0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 ZZZ -0.0000000000 0.0000000000 -0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 - YYX -0.0000000000 0.0000000000 -0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 YYZ 0.0000000000 0.0000000000 0.0000000000 - ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY 0.0000000000 0.0000000000 0.0000000000 - XYZ 0.0000000000 0.0000000000 0.0000000000 + ZZX -0.0000000000 0.0000000000 -0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 Octupole moments in 10**(-34) esu*cm**3 Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX 0.0000000000 0.0000000000 0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 + XXX -0.0000000000 0.0000000000 -0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 ZZZ -0.0000000000 0.0000000000 -0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 - YYX -0.0000000000 0.0000000000 -0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 YYZ 0.0000000000 0.0000000000 0.0000000000 - ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY 0.0000000000 0.0000000000 0.0000000000 - XYZ 0.0000000000 0.0000000000 0.0000000000 + ZZX -0.0000000000 0.0000000000 -0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 1 a.u. = 0.711688 10**(-34) esu*cm**3 @@ -3233,8 +3245,8 @@ -------------------------------- Atom S P -------------------------------------------------------------------------------------- - 1 C 3.13046 2.86773 - 2 C 3.13046 2.86773 + 1 C 3.13046 2.86772 + 2 C 3.13046 2.86772 3 C 3.14136 2.91829 4 C 3.14136 2.91829 5 C 3.13936 2.92108 @@ -3370,16 +3382,16 @@ Valency Free electrons Bond indices =Mulliken charge = Net spin population 1 C 3.97499 2.02320 3.97499 5.99819 -0.00000 2 C 3.97499 2.02320 3.97499 5.99819 -0.00000 - 3 C 3.97333 2.08631 3.97333 6.05964 -0.00000 - 4 C 3.97333 2.08631 3.97333 6.05964 -0.00000 + 3 C 3.97333 2.08632 3.97333 6.05964 -0.00000 + 4 C 3.97333 2.08632 3.97333 6.05964 -0.00000 5 C 3.97410 2.08634 3.97410 6.06044 -0.00000 - 6 C 3.97410 2.08634 3.97410 6.06044 0.00000 - 7 H 0.99655 -0.05526 0.99655 0.94130 -0.00000 - 8 H 0.99655 -0.05526 0.99655 0.94130 -0.00000 + 6 C 3.97410 2.08634 3.97410 6.06044 -0.00000 + 7 H 0.99655 -0.05526 0.99655 0.94130 0.00000 + 8 H 0.99655 -0.05526 0.99655 0.94130 0.00000 9 H 0.99633 -0.05693 0.99633 0.93940 -0.00000 - 10 H 0.99633 -0.05693 0.99633 0.93940 -0.00000 + 10 H 0.99633 -0.05693 0.99633 0.93940 0.00000 11 C 3.97218 2.08307 3.97218 6.05525 -0.00000 - 12 C 3.97218 2.08307 3.97218 6.05525 0.00000 + 12 C 3.97218 2.08307 3.97218 6.05525 -0.00000 13 H 0.99668 -0.05431 0.99668 0.94236 -0.00000 14 H 0.99668 -0.05431 0.99668 0.94236 -0.00000 15 C 3.97069 2.15320 3.97069 6.12388 -0.00000 @@ -3387,9 +3399,15 @@ 17 H 0.99652 -0.05553 0.99652 0.94099 -0.00000 18 H 0.99652 -0.05553 0.99652 0.94099 -0.00000 19 H 0.99622 -0.05768 0.99622 0.93855 -0.00000 - 20 H 0.99622 -0.05768 0.99622 0.93855 -0.00000 + 20 H 0.99622 -0.05768 0.99622 0.93855 0.00000 - Task times cpu: 3.8s wall: 3.8s + Task times cpu: 0.8s wall: 0.9s + + + NWChem Input Module + ------------------- + + Summary of allocated global arrays ----------------------------------- No active global arrays @@ -3400,11 +3418,12 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 759 759 3.08e+04 6122 3.18e+04 420 0 8387 -number of processes/call -1.46e+14 6.48e+13 3.59e+12 0.00e+00 0.00e+00 -bytes total: 1.26e+07 7.31e+06 3.97e+06 8.00e+00 0.00e+00 6.71e+04 -bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 427200 bytes +calls: 749 749 8441 2009 7935 42 0 1927 +number of processes/call 6.27e+14 2.83e+13 1.44e+12 0.00e+00 0.00e+00 +bytes total: 7.20e+06 2.34e+06 2.20e+06 2.00e+02 0.00e+00 1.54e+04 +bytes remote: 4.49e+06 6.83e+05 1.62e+06 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 108832 bytes + MA_summarize_allocated_blocks: starting scan ... MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: @@ -3413,51 +3432,26 @@ MA usage statistics: heap stack ---- ----- current number of blocks 0 0 - maximum number of blocks 17 14 + maximum number of blocks 18 14 current total bytes 0 0 - maximum total bytes 80152 22510808 - maximum total K-bytes 81 22511 - maximum total M-bytes 1 23 - - - NWChem Input Module - ------------------- - - - - - + maximum total bytes 3170776 22510808 + maximum total K-bytes 3171 22511 + maximum total M-bytes 4 23 + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, - V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, - J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, - J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, - C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, - K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, - J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, - V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, - B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, - S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, - A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, - D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, - J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, - A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, - R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, - D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, - V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, - Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, - D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, - A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, - and R. J. Harrison - "NWChem: Past, present, and future - J. Chem. Phys. 152, 184102 (2020) - doi:10.1063/5.0004997 - + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -3480,4 +3474,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 3.8s wall: 3.8s + Total times cpu: 0.8s wall: 0.9s diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.out b/data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.out index 010c2d545..de7a17aa2 100644 --- a/data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.out +++ b/data/NWChem/basicNWChem7.0/dvb_sp_hf_overlaps.out @@ -1,26 +1,26 @@ argument 1 = dvb_sp_hf_overlaps.in - - - Northwest Computational Chemistry Package (NWChem) 7.0.2 + + + Northwest Computational Chemistry Package (NWChem) 7.0.0 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2020 + + Copyright (c) 1994-2019 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = osmium - program = nwchem - date = Sat Jun 4 13:33:16 2022 + hostname = smp-n17.sam.pitt.edu + program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem + date = Tue Sep 20 18:25:06 2022 - compiled = Fri_Jul_02_16:33:00_2021 - source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src - nwchem branch = 7.0.2 - nwchem revision = b9985dfa - ga revision = 5.7.2 - use scalapack = T + compiled = Wed_May_13_13:33:26_2020 + source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 + nwchem branch = 7.0.0 + nwchem revision = N/A + ga revision = 5.7.1 + use scalapack = F input = dvb_sp_hf_overlaps.in prefix = dvb. data base = ./dvb.db status = startup - nproc = 1 + nproc = 4 time left = -1s @@ -58,27 +58,27 @@ Memory information ------------------ - heap = 13107194 doubles = 100.0 Mbytes - stack = 13107199 doubles = 100.0 Mbytes + heap = 13107196 doubles = 100.0 Mbytes + stack = 13107201 doubles = 100.0 Mbytes global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) - total = 52428793 doubles = 400.0 Mbytes + total = 52428797 doubles = 400.0 Mbytes verify = yes hardfail = no Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + Divinylbenzene in STO-3G basis set ---------------------------------- @@ -90,15 +90,15 @@ ------ auto-z ------ - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - - + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 C 6.0000 0.23680554 1.41416660 0.00000000 @@ -121,13 +121,13 @@ 18 H 1.0000 -1.44522900 3.70144241 0.00000000 19 H 1.0000 0.04815351 -4.93192286 0.00000000 20 H 1.0000 -0.04815351 4.93192286 0.00000000 - + Atomic Mass ----------- - + C 12.000000 H 1.007825 - + Effective nuclear repulsion energy (a.u.) 445.9370121674 @@ -136,26 +136,26 @@ X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - + Z-matrix (autoz) -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value ----------- -------- ----- ----- ----- ----- ----- ---------- 1 Stretch 1 3 1.42204 @@ -228,7 +228,7 @@ 68 Torsion 4 2 11 13 0.00000 69 Torsion 4 2 11 15 180.00000 70 Torsion 4 6 1 12 180.00000 - 71 Torsion 5 2 4 6 -0.00000 + 71 Torsion 5 2 4 6 0.00000 72 Torsion 5 2 4 8 180.00000 73 Torsion 5 2 11 13 180.00000 74 Torsion 5 2 11 15 0.00000 @@ -238,18 +238,18 @@ 78 Torsion 6 1 12 14 180.00000 79 Torsion 6 1 12 16 0.00000 80 Torsion 6 4 2 11 180.00000 - 81 Torsion 7 3 1 12 -0.00000 + 81 Torsion 7 3 1 12 0.00000 82 Torsion 7 3 5 9 0.00000 - 83 Torsion 8 4 2 11 -0.00000 + 83 Torsion 8 4 2 11 0.00000 84 Torsion 8 4 6 10 0.00000 85 Torsion 9 5 2 11 0.00000 86 Torsion 10 6 1 12 0.00000 87 Torsion 13 11 15 17 180.00000 - 88 Torsion 13 11 15 19 -0.00000 + 88 Torsion 13 11 15 19 0.00000 89 Torsion 14 12 16 18 180.00000 - 90 Torsion 14 12 16 20 -0.00000 - - + 90 Torsion 14 12 16 20 0.00000 + + XYZ format geometry ------------------- 20 @@ -274,7 +274,7 @@ H -1.44522900 3.70144241 0.00000000 H 0.04815351 -4.93192286 0.00000000 H -0.04815351 4.93192286 0.00000000 - + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -347,9 +347,6 @@ - library name resolved from: environment - library file name is: - Summary of "ao basis" -> "" (cartesian) @@ -361,10 +358,10 @@ NWChem Property Module ---------------------- - - + + Divinylbenzene in STO-3G basis set - + Basis "ao basis" -> "ao basis" (cartesian) ----- C (Carbon) @@ -374,15 +371,15 @@ 1 S 7.16168370E+01 0.154329 1 S 1.30450960E+01 0.535328 1 S 3.53051220E+00 0.444635 - + 2 S 2.94124940E+00 -0.099967 2 S 6.83483100E-01 0.399513 2 S 2.22289900E-01 0.700115 - + 3 P 2.94124940E+00 0.155916 3 P 6.83483100E-01 0.607684 3 P 2.22289900E-01 0.391957 - + H (Hydrogen) ------------ Exponent Coefficients @@ -390,7 +387,7 @@ 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + Summary of "ao basis" -> "ao basis" (cartesian) @@ -403,11 +400,11 @@ NWChem SCF Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + ao basis = "ao basis" functions = 60 @@ -432,12 +429,12 @@ Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 - + ==================================== Begin overlap 1-e integrals ==================================== @@ -2627,14 +2624,14 @@ End overlap 1-e integrals ==================================== - Forming initial guess at 0.0s - + Forming initial guess at 0.1s + Superposition of Atomic Density Guess ------------------------------------- - + Sum of atomic energies: -376.44825176 - + Non-variational initial energy ------------------------------ @@ -2643,17 +2640,17 @@ 2-e energy = 576.084617 HOMO = -0.037645 LUMO = 0.163723 - - + + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 ag 2 bu 3 ag 4 bu 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -2663,7 +2660,7 @@ 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 bu - + Starting SCF solution at 0.2s @@ -2678,35 +2675,47 @@ ---------------------------------------------- + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507871 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 + + iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -379.7024485570 7.56D-01 1.81D-01 0.6 - 2 -379.7670205711 1.53D-01 4.40D-02 1.3 - 3 -379.7689540267 6.43D-03 2.31D-03 2.2 - 4 -379.7689610929 3.38D-05 9.25D-06 3.8 + 1 -379.7024515658 7.56D-01 1.81D-01 0.4 + 2 -379.7670218883 1.53D-01 4.40D-02 0.4 + 3 -379.7689554257 6.43D-03 2.31D-03 0.5 + 4 -379.7689624910 3.37D-05 9.25D-06 0.6 Final RHF results ------------------ - Total SCF energy = -379.768961092935 - One-electron energy = -1400.222176091991 - Two-electron energy = 574.516202831610 + Total SCF energy = -379.768962491014 + One-electron energy = -1400.222183962420 + Two-electron energy = 574.516209303959 Nuclear repulsion energy = 445.937012167446 - Time for solution = 3.6s - + Time for solution = 0.5s + Symmetry analysis of molecular orbitals - final ----------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 bu 2 ag 3 bu 4 ag 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -2716,7 +2725,7 @@ 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 ag 44 bu 45 ag - + Final eigenvalues ----------------- @@ -2766,340 +2775,340 @@ 43 0.6216 44 0.6258 45 0.6582 - + ROHF Final Molecular Orbital Analysis ------------------------------------- - + Vector 1 Occ=2.000000D+00 E=-1.104059D+01 Symmetry=bu - MO Center= 9.7D-12, 5.8D-11, 2.4D-21, r^2= 2.1D+00 + MO Center= -4.6D-12, -2.8D-11, 1.1D-21, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 1 0.701484 1 C s 6 -0.701484 2 C s - + 1 0.701483 1 C s 6 -0.701483 2 C s + Vector 2 Occ=2.000000D+00 E=-1.104052D+01 Symmetry=ag - MO Center= -9.7D-12, -5.8D-11, -8.1D-19, r^2= 2.1D+00 + MO Center= 4.6D-12, 2.8D-11, 5.9D-32, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.701542 1 C s 6 0.701542 2 C s - + Vector 3 Occ=2.000000D+00 E=-1.103159D+01 Symmetry=bu - MO Center= -3.8D-12, -2.3D-11, -7.1D-21, r^2= 8.6D+00 + MO Center= -2.4D-11, -1.5D-10, -8.4D-22, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.701358 11 C s 40 -0.701358 12 C s - + 35 0.701357 11 C s 40 -0.701357 12 C s + Vector 4 Occ=2.000000D+00 E=-1.103159D+01 Symmetry=ag - MO Center= 4.2D-12, 2.3D-11, -6.0D-32, r^2= 8.6D+00 + MO Center= 2.7D-11, 1.4D-10, 2.1D-18, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.701320 11 C s 40 0.701320 12 C s - + Vector 5 Occ=2.000000D+00 E=-1.102896D+01 Symmetry=bu - MO Center= -2.1D-13, -3.4D-14, -1.8D-22, r^2= 2.0D+00 + MO Center= -8.4D-13, -1.7D-12, 3.4D-21, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.594536 5 C s 26 -0.594536 6 C s - 11 0.372948 3 C s 16 -0.372948 4 C s - + 21 0.594681 5 C s 26 -0.594681 6 C s + 11 0.372717 3 C s 16 -0.372717 4 C s + Vector 6 Occ=2.000000D+00 E=-1.102883D+01 Symmetry=ag - MO Center= 1.1D-13, -6.0D-14, -2.6D-34, r^2= 2.0D+00 + MO Center= 8.4D-14, 7.6D-14, 1.9D-32, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.635983 5 C s 26 0.635983 6 C s - 11 0.296780 3 C s 16 0.296780 4 C s - + 21 0.636098 5 C s 26 0.636098 6 C s + 11 0.296533 3 C s 16 0.296533 4 C s + Vector 7 Occ=2.000000D+00 E=-1.102861D+01 Symmetry=bu - MO Center= 1.3D-16, 9.6D-15, -5.5D-31, r^2= 2.0D+00 + MO Center= 3.8D-15, -1.8D-14, -1.5D-29, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.594220 3 C s 16 -0.594220 4 C s - 21 -0.372451 5 C s 26 0.372451 6 C s - + 11 0.594365 3 C s 16 -0.594365 4 C s + 21 -0.372219 5 C s 26 0.372219 6 C s + Vector 8 Occ=2.000000D+00 E=-1.102859D+01 Symmetry=ag - MO Center= 1.1D-13, 1.0D-13, -5.5D-18, r^2= 2.0D+00 + MO Center= 7.8D-13, 1.7D-12, -3.8D-18, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.635745 3 C s 16 0.635745 4 C s - 21 -0.296283 5 C s 26 -0.296283 6 C s - + 11 0.635860 3 C s 16 0.635860 4 C s + 21 -0.296035 5 C s 26 -0.296035 6 C s + Vector 9 Occ=2.000000D+00 E=-1.101748D+01 Symmetry=bu - MO Center= -1.8D-17, 9.0D-17, -9.4D-33, r^2= 1.5D+01 + MO Center= -1.5D-12, 1.6D-11, 5.0D-23, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.701435 15 C s 52 -0.701435 16 C s - + Vector 10 Occ=2.000000D+00 E=-1.101748D+01 Symmetry=ag - MO Center= -4.5D-13, 4.9D-13, 1.3D-31, r^2= 1.5D+01 + MO Center= -8.7D-13, -1.3D-11, 7.1D-19, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.701435 15 C s 52 0.701435 16 C s - + Vector 11 Occ=2.000000D+00 E=-1.090299D+00 Symmetry=ag - MO Center= 2.4D-17, -4.4D-17, 2.8D-18, r^2= 3.0D+00 + MO Center= 3.7D-15, 3.7D-15, -1.3D-18, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.275368 1 C s 7 0.275368 2 C s 12 0.247273 3 C s 17 0.247273 4 C s - 22 0.247125 5 C s 27 0.247125 6 C s - + 22 0.247126 5 C s 27 0.247126 6 C s + Vector 12 Occ=2.000000D+00 E=-1.020254D+00 Symmetry=bu - MO Center= 1.6D-16, 7.1D-16, -8.2D-20, r^2= 7.9D+00 + MO Center= -3.3D-15, 1.0D-15, -3.8D-31, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.298699 11 C s 41 -0.298699 12 C s - 2 -0.270807 1 C s 7 0.270807 2 C s + 2 -0.270806 1 C s 7 0.270806 2 C s 48 0.213652 15 C s 53 -0.213652 16 C s - - Vector 13 Occ=2.000000D+00 E=-9.749253D-01 Symmetry=ag - MO Center= -3.8D-16, 4.5D-16, -4.9D-34, r^2= 1.1D+01 + + Vector 13 Occ=2.000000D+00 E=-9.749254D-01 Symmetry=ag + MO Center= -2.3D-15, 1.0D-14, 3.0D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.314473 11 C s 41 0.314473 12 C s 48 0.310076 15 C s 53 0.310076 16 C s - - Vector 14 Occ=2.000000D+00 E=-9.503037D-01 Symmetry=bu - MO Center= -9.2D-17, -1.3D-17, -6.8D-34, r^2= 3.1D+00 + + Vector 14 Occ=2.000000D+00 E=-9.503033D-01 Symmetry=bu + MO Center= -4.2D-15, 1.2D-16, -3.4D-32, r^2= 3.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.357133 3 C s 17 -0.357133 4 C s - 22 0.325009 5 C s 27 -0.325009 6 C s - - Vector 15 Occ=2.000000D+00 E=-9.096351D-01 Symmetry=bu - MO Center= 2.1D-17, 3.0D-17, -7.7D-32, r^2= 8.8D+00 + 22 0.325008 5 C s 27 -0.325008 6 C s + + Vector 15 Occ=2.000000D+00 E=-9.096345D-01 Symmetry=bu + MO Center= -1.7D-15, -8.5D-15, -6.9D-20, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.292220 15 C s 53 -0.292220 16 C s - 2 0.279080 1 C s 7 -0.279080 2 C s + 2 0.279079 1 C s 7 -0.279079 2 C s 22 -0.200698 5 C s 27 0.200698 6 C s - - Vector 16 Occ=2.000000D+00 E=-7.998827D-01 Symmetry=ag - MO Center= -4.5D-16, -3.0D-16, -1.8D-33, r^2= 8.5D+00 + + Vector 16 Occ=2.000000D+00 E=-7.998830D-01 Symmetry=ag + MO Center= -1.0D-15, 1.8D-15, 2.1D-16, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.239928 15 C s 53 0.239928 16 C s - 22 0.229428 5 C s 27 0.229428 6 C s - 2 -0.212931 1 C s 7 -0.212931 2 C s + 48 0.239926 15 C s 53 0.239926 16 C s + 22 0.229429 5 C s 27 0.229429 6 C s + 2 -0.212930 1 C s 7 -0.212930 2 C s 14 -0.159170 3 C py 19 0.159170 4 C py 36 -0.159504 11 C s 41 -0.159504 12 C s - - Vector 17 Occ=2.000000D+00 E=-7.628266D-01 Symmetry=ag - MO Center= 5.0D-16, 9.4D-17, 3.7D-33, r^2= 5.0D+00 + + Vector 17 Occ=2.000000D+00 E=-7.628268D-01 Symmetry=ag + MO Center= 1.1D-15, 6.5D-16, -5.9D-17, r^2= 5.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.324855 3 C s 17 0.324855 4 C s - 3 0.189937 1 C px 8 -0.189937 2 C px - 22 -0.180806 5 C s 27 -0.180806 6 C s + 3 0.189935 1 C px 8 -0.189935 2 C px + 22 -0.180804 5 C s 27 -0.180804 6 C s 31 0.173636 7 H s 32 0.173636 8 H s 24 0.169743 5 C py 29 -0.169743 6 C py - + Vector 18 Occ=2.000000D+00 E=-7.276317D-01 Symmetry=bu - MO Center= -7.2D-17, 4.9D-17, 1.3D-32, r^2= 1.2D+01 + MO Center= 1.7D-15, -1.3D-15, -1.2D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.297522 11 C s 41 -0.297522 12 C s - 48 -0.248205 15 C s 53 0.248205 16 C s + 48 -0.248206 15 C s 53 0.248206 16 C s 45 0.174840 13 H s 46 -0.174840 14 H s 57 -0.163892 17 H s 58 0.163892 18 H s - + Vector 19 Occ=2.000000D+00 E=-6.967772D-01 Symmetry=ag - MO Center= 1.8D-16, 1.9D-16, -4.1D-34, r^2= 7.9D+00 + MO Center= 2.5D-16, 3.2D-16, 1.9D-16, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.194626 5 C px 28 -0.194626 6 C px - 36 0.187352 11 C s 41 0.187352 12 C s - 13 0.174309 3 C px 18 -0.174309 4 C px + 36 0.187351 11 C s 41 0.187351 12 C s + 13 0.174310 3 C px 18 -0.174310 4 C px 2 -0.170808 1 C s 7 -0.170808 2 C s - 33 0.168855 9 H s 34 0.168855 10 H s - - Vector 20 Occ=2.000000D+00 E=-6.280524D-01 Symmetry=ag - MO Center= 3.0D-16, -2.2D-15, 5.5D-18, r^2= 9.3D+00 + 33 0.168856 9 H s 34 0.168856 10 H s + + Vector 20 Occ=2.000000D+00 E=-6.280522D-01 Symmetry=ag + MO Center= 1.5D-16, 4.4D-16, -1.2D-34, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.204699 15 C px 54 -0.204699 16 C px - 38 0.183206 11 C py 43 -0.183206 12 C py - 57 0.178851 17 H s 58 0.178851 18 H s + 49 0.204700 15 C px 54 -0.204700 16 C px + 38 0.183205 11 C py 43 -0.183205 12 C py + 57 0.178852 17 H s 58 0.178852 18 H s 45 -0.152733 13 H s 46 -0.152733 14 H s - - Vector 21 Occ=2.000000D+00 E=-6.056785D-01 Symmetry=bu - MO Center= -1.6D-16, 5.0D-15, -6.5D-19, r^2= 1.0D+01 + + Vector 21 Occ=2.000000D+00 E=-6.056780D-01 Symmetry=bu + MO Center= 1.0D-16, -1.1D-15, -3.7D-18, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.215047 11 C px 42 0.215047 12 C px - 50 0.201796 15 C py 55 0.201796 16 C py + 37 0.215048 11 C px 42 0.215048 12 C px + 50 0.201798 15 C py 55 0.201798 16 C py 14 0.181913 3 C py 19 0.181913 4 C py - 59 -0.179093 19 H s 60 0.179093 20 H s - 45 -0.165300 13 H s 46 0.165300 14 H s - - Vector 22 Occ=2.000000D+00 E=-5.729431D-01 Symmetry=bu - MO Center= -2.1D-16, 3.2D-16, 4.7D-32, r^2= 7.0D+00 + 59 -0.179094 19 H s 60 0.179094 20 H s + 45 -0.165299 13 H s 46 0.165299 14 H s + + Vector 22 Occ=2.000000D+00 E=-5.729426D-01 Symmetry=bu + MO Center= -7.4D-16, -6.0D-16, 6.9D-19, r^2= 7.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.234898 9 H s 34 -0.234898 10 H s + 33 0.234899 9 H s 34 -0.234899 10 H s 31 -0.225759 7 H s 32 0.225759 8 H s - 2 0.223487 1 C s 7 -0.223487 2 C s - 13 -0.220803 3 C px 18 -0.220803 4 C px - 24 -0.179466 5 C py 29 -0.179466 6 C py - + 2 0.223491 1 C s 7 -0.223491 2 C s + 13 -0.220802 3 C px 18 -0.220802 4 C px + 24 -0.179464 5 C py 29 -0.179464 6 C py + Vector 23 Occ=2.000000D+00 E=-5.536035D-01 Symmetry=bu - MO Center= 4.0D-16, -2.8D-15, 2.2D-32, r^2= 8.9D+00 + MO Center= -6.8D-16, -6.8D-16, 7.3D-32, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.252836 15 C px 54 0.252836 16 C px - 23 0.248954 5 C px 28 0.248954 6 C px + 49 0.252837 15 C px 54 0.252837 16 C px + 23 0.248952 5 C px 28 0.248952 6 C px 3 -0.221990 1 C px 8 -0.221990 2 C px - 57 0.222771 17 H s 58 -0.222771 18 H s - 38 0.178894 11 C py 43 0.178894 12 C py - - Vector 24 Occ=2.000000D+00 E=-5.531660D-01 Symmetry=ag - MO Center= -1.1D-16, -9.9D-17, -2.5D-33, r^2= 1.5D+01 + 57 0.222772 17 H s 58 -0.222772 18 H s + 38 0.178895 11 C py 43 0.178895 12 C py + + Vector 24 Occ=2.000000D+00 E=-5.531658D-01 Symmetry=ag + MO Center= -2.4D-16, 2.6D-15, -2.2D-18, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.336239 15 C py 55 -0.336239 16 C py - 59 -0.268358 19 H s 60 -0.268358 20 H s + 59 -0.268357 19 H s 60 -0.268357 20 H s 37 0.248998 11 C px 42 -0.248998 12 C px 45 -0.151363 13 H s 46 -0.151363 14 H s - - Vector 25 Occ=2.000000D+00 E=-5.253611D-01 Symmetry=bu - MO Center= 3.8D-16, -4.8D-16, -1.3D-18, r^2= 4.4D+00 + + Vector 25 Occ=2.000000D+00 E=-5.253606D-01 Symmetry=bu + MO Center= -4.6D-16, 3.1D-16, -5.2D-33, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.299403 3 C px 18 0.299403 4 C px + 13 0.299404 3 C px 18 0.299404 4 C px 31 0.258504 7 H s 32 -0.258504 8 H s 24 -0.232845 5 C py 29 -0.232845 6 C py - 33 0.223597 9 H s 34 -0.223597 10 H s - 23 0.179045 5 C px 28 0.179045 6 C px - + 33 0.223596 9 H s 34 -0.223596 10 H s + 23 0.179046 5 C px 28 0.179046 6 C px + Vector 26 Occ=2.000000D+00 E=-4.966990D-01 Symmetry=bu - MO Center= 3.5D-16, -5.2D-16, 3.0D-33, r^2= 8.9D+00 + MO Center= -9.4D-17, -1.1D-15, -1.9D-19, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 50 -0.238943 15 C py 55 -0.238943 16 C py - 14 0.222971 3 C py 19 0.222971 4 C py - 37 -0.201997 11 C px 42 -0.201997 12 C px - 38 0.188761 11 C py 43 0.188761 12 C py + 50 -0.238942 15 C py 55 -0.238942 16 C py + 14 0.222972 3 C py 19 0.222972 4 C py + 37 -0.201999 11 C px 42 -0.201999 12 C px + 38 0.188759 11 C py 43 0.188759 12 C py 24 -0.184876 5 C py 29 -0.184876 6 C py - - Vector 27 Occ=2.000000D+00 E=-4.925284D-01 Symmetry=ag - MO Center= -7.3D-16, 1.5D-16, 2.0D-36, r^2= 1.2D+01 + + Vector 27 Occ=2.000000D+00 E=-4.925280D-01 Symmetry=ag + MO Center= -1.3D-16, 5.4D-16, -7.6D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 0.296132 15 C px 54 -0.296132 16 C px + 49 0.296131 15 C px 54 -0.296131 16 C px 57 0.273185 17 H s 58 0.273185 18 H s 37 -0.209362 11 C px 42 0.209362 12 C px 45 0.202959 13 H s 46 0.202959 14 H s - 31 -0.156849 7 H s 32 -0.156849 8 H s - - Vector 28 Occ=2.000000D+00 E=-4.637309D-01 Symmetry=au - MO Center= -9.0D-16, 3.1D-15, -7.2D-17, r^2= 3.6D+00 + 31 -0.156851 7 H s 32 -0.156851 8 H s + + Vector 28 Occ=2.000000D+00 E=-4.637308D-01 Symmetry=au + MO Center= 7.1D-17, 2.2D-16, 4.5D-18, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.331504 1 C pz 10 0.331504 2 C pz 15 0.302831 3 C pz 20 0.302831 4 C pz 25 0.301868 5 C pz 30 0.301868 6 C pz 39 0.165577 11 C pz 44 0.165577 12 C pz - - Vector 29 Occ=2.000000D+00 E=-4.464301D-01 Symmetry=bu - MO Center= -2.5D-16, -4.6D-18, 4.0D-34, r^2= 1.2D+01 + + Vector 29 Occ=2.000000D+00 E=-4.464302D-01 Symmetry=bu + MO Center= 4.2D-16, 4.0D-16, -2.5D-32, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.257253 13 H s 46 -0.257253 14 H s - 4 0.243717 1 C py 9 0.243717 2 C py - 57 0.226299 17 H s 58 -0.226299 18 H s - 37 -0.214535 11 C px 42 -0.214535 12 C px + 45 0.257252 13 H s 46 -0.257252 14 H s + 4 0.243719 1 C py 9 0.243719 2 C py + 57 0.226298 17 H s 58 -0.226298 18 H s + 37 -0.214534 11 C px 42 -0.214534 12 C px 59 -0.211967 19 H s 60 0.211967 20 H s - - Vector 30 Occ=2.000000D+00 E=-4.216541D-01 Symmetry=ag - MO Center= 2.3D-16, -4.0D-16, -1.8D-16, r^2= 5.7D+00 + + Vector 30 Occ=2.000000D+00 E=-4.216550D-01 Symmetry=ag + MO Center= -5.5D-17, 3.7D-18, -8.1D-20, r^2= 5.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 -0.268211 3 C py 19 0.268211 4 C py - 4 0.260254 1 C py 9 -0.260254 2 C py - 33 -0.253901 9 H s 34 -0.253901 10 H s - 38 0.232931 11 C py 43 -0.232931 12 C py - 24 0.223472 5 C py 29 -0.223472 6 C py - - Vector 31 Occ=2.000000D+00 E=-4.156211D-01 Symmetry=ag - MO Center= 1.5D-16, 1.9D-16, 1.4D-16, r^2= 6.3D+00 + 14 -0.268212 3 C py 19 0.268212 4 C py + 4 0.260257 1 C py 9 -0.260257 2 C py + 33 -0.253899 9 H s 34 -0.253899 10 H s + 38 0.232935 11 C py 43 -0.232935 12 C py + 24 0.223473 5 C py 29 -0.223473 6 C py + + Vector 31 Occ=2.000000D+00 E=-4.156220D-01 Symmetry=ag + MO Center= -5.6D-17, 1.1D-16, 5.7D-18, r^2= 6.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 3 0.278851 1 C px 8 -0.278851 2 C px - 23 0.269036 5 C px 28 -0.269036 6 C px + 3 0.278853 1 C px 8 -0.278853 2 C px + 23 0.269038 5 C px 28 -0.269038 6 C px 31 -0.251625 7 H s 32 -0.251625 8 H s - 13 -0.210354 3 C px 18 0.210354 4 C px + 13 -0.210356 3 C px 18 0.210356 4 C px 45 -0.183775 13 H s 46 -0.183775 14 H s - - Vector 32 Occ=2.000000D+00 E=-3.769632D-01 Symmetry=bg - MO Center= -3.3D-16, -2.9D-15, 1.7D-19, r^2= 8.6D+00 + + Vector 32 Occ=2.000000D+00 E=-3.769631D-01 Symmetry=bg + MO Center= 4.2D-17, 5.3D-15, 3.9D-18, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.383213 11 C pz 44 -0.383213 12 C pz - 5 -0.318676 1 C pz 10 0.318676 2 C pz - 51 0.306665 15 C pz 56 -0.306665 16 C pz - - Vector 33 Occ=2.000000D+00 E=-3.151269D-01 Symmetry=au - MO Center= -2.9D-16, 7.9D-16, 3.7D-17, r^2= 1.1D+01 + 5 -0.318675 1 C pz 10 0.318675 2 C pz + 51 0.306666 15 C pz 56 -0.306666 16 C pz + + Vector 33 Occ=2.000000D+00 E=-3.151268D-01 Symmetry=au + MO Center= -2.1D-16, -5.4D-15, -1.0D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.426295 15 C pz 56 0.426295 16 C pz 39 0.415175 11 C pz 44 0.415175 12 C pz 15 -0.164508 3 C pz 20 -0.164508 4 C pz 25 -0.164934 5 C pz 30 -0.164934 6 C pz - - Vector 34 Occ=2.000000D+00 E=-2.783652D-01 Symmetry=bg - MO Center= 1.3D-15, -2.5D-16, -3.1D-19, r^2= 2.7D+00 + + Vector 34 Occ=2.000000D+00 E=-2.783651D-01 Symmetry=bg + MO Center= -2.7D-17, 5.2D-17, 4.0D-20, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 15 0.459817 3 C pz 20 -0.459817 4 C pz + 15 0.459816 3 C pz 20 -0.459816 4 C pz 25 0.461493 5 C pz 30 -0.461493 6 C pz - - Vector 35 Occ=2.000000D+00 E=-2.221905D-01 Symmetry=bg - MO Center= -2.0D-17, -6.3D-16, 1.2D-18, r^2= 7.2D+00 + + Vector 35 Occ=2.000000D+00 E=-2.221904D-01 Symmetry=bg + MO Center= 6.4D-16, 2.8D-17, 3.8D-19, r^2= 7.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.417993 1 C pz 10 -0.417993 2 C pz 51 0.358184 15 C pz 56 -0.358184 16 C pz - 15 0.231888 3 C pz 20 -0.231888 4 C pz + 15 0.231889 3 C pz 20 -0.231889 4 C pz 25 -0.232000 5 C pz 30 0.232000 6 C pz - 39 0.218350 11 C pz 44 -0.218350 12 C pz - - Vector 36 Occ=0.000000D+00 E= 1.989923D-01 Symmetry=au - MO Center= -8.2D-17, 2.3D-14, 1.9D-17, r^2= 7.3D+00 + 39 0.218349 11 C pz 44 -0.218349 12 C pz + + Vector 36 Occ=0.000000D+00 E= 1.989924D-01 Symmetry=au + MO Center= 3.8D-17, 6.7D-17, -1.8D-16, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.471534 1 C pz 10 0.471534 2 C pz 51 -0.414928 15 C pz 56 -0.414928 16 C pz 25 -0.278569 5 C pz 30 -0.278569 6 C pz - 15 -0.249974 3 C pz 20 -0.249974 4 C pz + 15 -0.249973 3 C pz 20 -0.249973 4 C pz 39 0.246934 11 C pz 44 0.246934 12 C pz - - Vector 37 Occ=0.000000D+00 E= 2.685137D-01 Symmetry=au - MO Center= -8.1D-17, -1.6D-16, 2.2D-17, r^2= 2.7D+00 + + Vector 37 Occ=0.000000D+00 E= 2.685138D-01 Symmetry=au + MO Center= -5.3D-16, 5.1D-17, -3.9D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.578558 3 C pz 20 0.578558 4 C pz - 25 -0.558107 5 C pz 30 -0.558107 6 C pz - - Vector 38 Occ=0.000000D+00 E= 3.088251D-01 Symmetry=bg - MO Center= 1.4D-16, -2.4D-14, -5.4D-19, r^2= 1.1D+01 + 25 -0.558106 5 C pz 30 -0.558106 6 C pz + + Vector 38 Occ=0.000000D+00 E= 3.088252D-01 Symmetry=bg + MO Center= -3.0D-17, -8.7D-16, 1.2D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.531237 15 C pz 56 0.531237 16 C pz - 39 0.524390 11 C pz 44 -0.524390 12 C pz + 39 0.524391 11 C pz 44 -0.524391 12 C pz 15 0.225543 3 C pz 20 -0.225543 4 C pz 25 -0.220434 5 C pz 30 0.220434 6 C pz - - Vector 39 Occ=0.000000D+00 E= 3.970769D-01 Symmetry=au - MO Center= -7.1D-16, -7.5D-15, 1.1D-15, r^2= 8.4D+00 + + Vector 39 Occ=0.000000D+00 E= 3.970770D-01 Symmetry=au + MO Center= 7.9D-17, 4.6D-16, -1.5D-16, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.535070 11 C pz 44 0.535070 12 C pz 5 -0.473494 1 C pz 10 -0.473494 2 C pz 51 -0.407351 15 C pz 56 -0.407351 16 C pz 25 0.186775 5 C pz 30 0.186775 6 C pz - 15 0.161861 3 C pz 20 0.161861 4 C pz - - Vector 40 Occ=0.000000D+00 E= 5.217565D-01 Symmetry=bg - MO Center= 8.0D-16, 7.0D-15, -2.6D-19, r^2= 3.8D+00 + 15 0.161862 3 C pz 20 0.161862 4 C pz + + Vector 40 Occ=0.000000D+00 E= 5.217566D-01 Symmetry=bg + MO Center= 7.8D-17, 8.1D-17, 5.3D-18, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.538711 1 C pz 10 -0.538711 2 C pz @@ -3107,272 +3116,272 @@ 25 0.471487 5 C pz 30 -0.471487 6 C pz 39 0.278750 11 C pz 44 -0.278750 12 C pz 51 -0.158475 15 C pz 56 0.158475 16 C pz - - Vector 41 Occ=0.000000D+00 E= 5.650142D-01 Symmetry=ag - MO Center= 3.9D-17, -4.0D-16, -4.7D-16, r^2= 8.7D+00 + + Vector 41 Occ=0.000000D+00 E= 5.650160D-01 Symmetry=ag + MO Center= 1.3D-15, -5.9D-15, 2.3D-19, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.434809 9 H s 34 0.434809 10 H s - 31 0.420950 7 H s 32 0.420950 8 H s - 2 -0.380042 1 C s 7 -0.380042 2 C s - 59 0.353825 19 H s 60 0.353825 20 H s - 38 0.323933 11 C py 43 -0.323933 12 C py - - Vector 42 Occ=0.000000D+00 E= 5.755623D-01 Symmetry=bu - MO Center= -1.1D-15, -2.4D-14, 3.6D-20, r^2= 1.0D+01 + 33 0.434798 9 H s 34 0.434798 10 H s + 31 0.420942 7 H s 32 0.420942 8 H s + 2 -0.380055 1 C s 7 -0.380055 2 C s + 59 0.353828 19 H s 60 0.353828 20 H s + 38 0.323940 11 C py 43 -0.323940 12 C py + + Vector 42 Occ=0.000000D+00 E= 5.755620D-01 Symmetry=bu + MO Center= 7.3D-18, -1.2D-16, 8.4D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.448708 13 H s 46 -0.448708 14 H s - 13 0.355539 3 C px 18 0.355539 4 C px - 37 0.350908 11 C px 42 0.350908 12 C px - 57 -0.321571 17 H s 58 0.321571 18 H s - 31 -0.318891 7 H s 32 0.318891 8 H s - - Vector 43 Occ=0.000000D+00 E= 6.215603D-01 Symmetry=ag - MO Center= -1.4D-14, -5.6D-16, 5.2D-16, r^2= 1.2D+01 + 45 0.448702 13 H s 46 -0.448702 14 H s + 13 0.355546 3 C px 18 0.355546 4 C px + 37 0.350909 11 C px 42 0.350909 12 C px + 57 -0.321562 17 H s 58 0.321562 18 H s + 31 -0.318904 7 H s 32 0.318904 8 H s + + Vector 43 Occ=0.000000D+00 E= 6.215596D-01 Symmetry=ag + MO Center= 1.4D-14, -1.9D-14, 6.6D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.589566 13 H s 46 0.589566 14 H s - 12 0.397895 3 C s 17 0.397895 4 C s - 36 -0.394565 11 C s 41 -0.394565 12 C s - 57 -0.381368 17 H s 58 -0.381368 18 H s - 37 0.350696 11 C px 42 -0.350696 12 C px - - Vector 44 Occ=0.000000D+00 E= 6.258005D-01 Symmetry=bu - MO Center= 4.6D-16, -3.9D-17, 2.0D-19, r^2= 8.4D+00 + 12 0.397886 3 C s 17 0.397886 4 C s + 36 -0.394579 11 C s 41 -0.394579 12 C s + 57 -0.381363 17 H s 58 -0.381363 18 H s + 37 0.350692 11 C px 42 -0.350692 12 C px + + Vector 44 Occ=0.000000D+00 E= 6.258003D-01 Symmetry=bu + MO Center= -4.3D-14, -5.9D-16, -1.2D-19, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.529790 11 C s 41 -0.529790 12 C s - 4 0.453569 1 C py 9 0.453569 2 C py - 33 0.408877 9 H s 34 -0.408877 10 H s - 59 0.389453 19 H s 60 -0.389453 20 H s - 48 -0.337623 15 C s 53 0.337623 16 C s - - Vector 45 Occ=0.000000D+00 E= 6.582334D-01 Symmetry=ag - MO Center= -1.2D-15, 1.6D-15, -4.0D-17, r^2= 1.2D+01 + 36 0.529760 11 C s 41 -0.529760 12 C s + 4 0.453566 1 C py 9 0.453566 2 C py + 33 0.408895 9 H s 34 -0.408895 10 H s + 59 0.389457 19 H s 60 -0.389457 20 H s + 48 -0.337620 15 C s 53 0.337620 16 C s + + Vector 45 Occ=0.000000D+00 E= 6.582325D-01 Symmetry=ag + MO Center= 4.9D-15, -2.6D-14, 1.5D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.683572 15 C s 53 0.683572 16 C s - 22 0.582873 5 C s 27 0.582873 6 C s - 57 -0.541817 17 H s 58 -0.541817 18 H s - 12 -0.457375 3 C s 17 -0.457375 4 C s - 59 -0.330802 19 H s 60 -0.330802 20 H s - - Vector 46 Occ=0.000000D+00 E= 6.593933D-01 Symmetry=bu - MO Center= 3.9D-15, 8.2D-16, 7.5D-19, r^2= 1.0D+01 + 48 0.683576 15 C s 53 0.683576 16 C s + 22 0.582877 5 C s 27 0.582877 6 C s + 57 -0.541814 17 H s 58 -0.541814 18 H s + 12 -0.457382 3 C s 17 -0.457382 4 C s + 59 -0.330810 19 H s 60 -0.330810 20 H s + + Vector 46 Occ=0.000000D+00 E= 6.593956D-01 Symmetry=bu + MO Center= 1.3D-14, -6.6D-15, -7.8D-18, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.611134 5 C s 27 -0.611134 6 C s - 48 0.533491 15 C s 53 -0.533491 16 C s - 2 0.492298 1 C s 7 -0.492298 2 C s - 12 -0.461405 3 C s 17 0.461405 4 C s - 57 -0.460423 17 H s 58 0.460423 18 H s - - Vector 47 Occ=0.000000D+00 E= 6.771759D-01 Symmetry=bu - MO Center= 8.0D-15, 1.8D-14, -6.7D-20, r^2= 9.1D+00 + 22 0.611116 5 C s 27 -0.611116 6 C s + 48 0.533506 15 C s 53 -0.533506 16 C s + 2 0.492301 1 C s 7 -0.492301 2 C s + 12 -0.461393 3 C s 17 0.461393 4 C s + 57 -0.460445 17 H s 58 0.460445 18 H s + + Vector 47 Occ=0.000000D+00 E= 6.771779D-01 Symmetry=bu + MO Center= 2.0D-14, 3.0D-14, 3.0D-18, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 0.598273 7 H s 32 -0.598273 8 H s - 36 -0.467284 11 C s 41 0.467284 12 C s - 45 0.438024 13 H s 46 -0.438024 14 H s + 31 0.598268 7 H s 32 -0.598268 8 H s + 36 -0.467282 11 C s 41 0.467282 12 C s + 45 0.438025 13 H s 46 -0.438025 14 H s 12 -0.361066 3 C s 17 0.361066 4 C s - 59 0.328675 19 H s 60 -0.328675 20 H s - - Vector 48 Occ=0.000000D+00 E= 6.941884D-01 Symmetry=ag - MO Center= 4.6D-15, 2.6D-15, -8.6D-16, r^2= 7.3D+00 + 59 0.328681 19 H s 60 -0.328681 20 H s + + Vector 48 Occ=0.000000D+00 E= 6.941860D-01 Symmetry=ag + MO Center= -1.5D-15, -4.9D-15, 2.6D-20, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.796666 1 C s 7 0.796666 2 C s - 36 -0.570540 11 C s 41 -0.570540 12 C s - 22 -0.469181 5 C s 27 -0.469181 6 C s - 12 -0.444282 3 C s 17 -0.444282 4 C s - 48 0.390419 15 C s 53 0.390419 16 C s - - Vector 49 Occ=0.000000D+00 E= 7.067053D-01 Symmetry=bu - MO Center= 1.3D-14, -1.5D-14, 4.4D-19, r^2= 1.1D+01 + 2 0.796664 1 C s 7 0.796664 2 C s + 36 -0.570541 11 C s 41 -0.570541 12 C s + 22 -0.469182 5 C s 27 -0.469182 6 C s + 12 -0.444286 3 C s 17 -0.444286 4 C s + 48 0.390409 15 C s 53 0.390409 16 C s + + Vector 49 Occ=0.000000D+00 E= 7.067096D-01 Symmetry=bu + MO Center= -8.6D-16, 3.7D-14, 9.7D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.702342 15 C s 53 -0.702342 16 C s - 57 -0.514873 17 H s 58 0.514873 18 H s - 33 0.488189 9 H s 34 -0.488189 10 H s - 36 -0.430439 11 C s 41 0.430439 12 C s - 22 -0.425186 5 C s 27 0.425186 6 C s - - Vector 50 Occ=0.000000D+00 E= 7.401383D-01 Symmetry=ag - MO Center= -1.1D-14, 1.4D-14, -2.7D-17, r^2= 1.0D+01 + 48 0.702329 15 C s 53 -0.702329 16 C s + 57 -0.514860 17 H s 58 0.514860 18 H s + 33 0.488194 9 H s 34 -0.488194 10 H s + 36 -0.430466 11 C s 41 0.430466 12 C s + 22 -0.425207 5 C s 27 0.425207 6 C s + + Vector 50 Occ=0.000000D+00 E= 7.401371D-01 Symmetry=ag + MO Center= 1.9D-16, 1.2D-16, -6.6D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.727766 3 C s 17 0.727766 4 C s - 22 -0.614467 5 C s 27 -0.614467 6 C s - 59 -0.456854 19 H s 60 -0.456854 20 H s - 48 0.397618 15 C s 53 0.397618 16 C s - 50 -0.372518 15 C py 55 0.372518 16 C py - - Vector 51 Occ=0.000000D+00 E= 8.022234D-01 Symmetry=ag - MO Center= -1.1D-15, -3.8D-16, -2.2D-16, r^2= 6.8D+00 + 12 0.727765 3 C s 17 0.727765 4 C s + 22 -0.614468 5 C s 27 -0.614468 6 C s + 59 -0.456852 19 H s 60 -0.456852 20 H s + 48 0.397621 15 C s 53 0.397621 16 C s + 50 -0.372517 15 C py 55 0.372517 16 C py + + Vector 51 Occ=0.000000D+00 E= 8.022252D-01 Symmetry=ag + MO Center= -3.5D-15, -1.1D-14, -1.6D-19, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.586840 1 C py 9 -0.586840 2 C py - 36 -0.486011 11 C s 41 -0.486011 12 C s - 2 -0.462710 1 C s 7 -0.462710 2 C s - 13 -0.446667 3 C px 18 0.446667 4 C px - 49 -0.358156 15 C px 54 0.358156 16 C px - - Vector 52 Occ=0.000000D+00 E= 8.256536D-01 Symmetry=bu - MO Center= 2.5D-15, 1.2D-15, -6.9D-20, r^2= 7.8D+00 + 4 0.586839 1 C py 9 -0.586839 2 C py + 36 -0.485996 11 C s 41 -0.485996 12 C s + 2 -0.462721 1 C s 7 -0.462721 2 C s + 13 -0.446670 3 C px 18 0.446670 4 C px + 49 -0.358149 15 C px 54 0.358149 16 C px + + Vector 52 Occ=0.000000D+00 E= 8.256549D-01 Symmetry=bu + MO Center= -1.1D-15, 2.3D-15, -2.3D-18, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.642780 3 C s 17 -0.642780 4 C s - 3 -0.555350 1 C px 8 -0.555350 2 C px - 50 0.490161 15 C py 55 0.490161 16 C py - 24 -0.479534 5 C py 29 -0.479534 6 C py - 59 0.356457 19 H s 60 -0.356457 20 H s - - Vector 53 Occ=0.000000D+00 E= 8.606141D-01 Symmetry=ag - MO Center= -2.2D-15, 3.2D-15, -7.8D-17, r^2= 5.6D+00 + 12 0.642782 3 C s 17 -0.642782 4 C s + 3 -0.555346 1 C px 8 -0.555346 2 C px + 50 0.490164 15 C py 55 0.490164 16 C py + 24 -0.479529 5 C py 29 -0.479529 6 C py + 59 0.356459 19 H s 60 -0.356459 20 H s + + Vector 53 Occ=0.000000D+00 E= 8.606143D-01 Symmetry=ag + MO Center= -7.6D-15, 6.4D-15, -2.5D-20, r^2= 5.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.531365 3 C px 18 -0.531365 4 C px - 23 -0.518377 5 C px 28 0.518377 6 C px - 33 0.509445 9 H s 34 0.509445 10 H s - 31 -0.441685 7 H s 32 -0.441685 8 H s - 24 0.395280 5 C py 29 -0.395280 6 C py - - Vector 54 Occ=0.000000D+00 E= 8.877581D-01 Symmetry=bu - MO Center= -1.4D-15, -2.0D-15, 1.3D-20, r^2= 5.2D+00 + 13 0.531368 3 C px 18 -0.531368 4 C px + 23 -0.518376 5 C px 28 0.518376 6 C px + 33 0.509444 9 H s 34 0.509444 10 H s + 31 -0.441690 7 H s 32 -0.441690 8 H s + 24 0.395281 5 C py 29 -0.395281 6 C py + + Vector 54 Occ=0.000000D+00 E= 8.877568D-01 Symmetry=bu + MO Center= 1.0D-14, 1.3D-15, 1.3D-18, r^2= 5.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 0.716782 3 C py 19 0.716782 4 C py - 22 0.610585 5 C s 27 -0.610585 6 C s - 36 -0.434038 11 C s 41 0.434038 12 C s - 24 0.382165 5 C py 29 0.382165 6 C py - 2 -0.361723 1 C s 7 0.361723 2 C s - - Vector 55 Occ=0.000000D+00 E= 9.210115D-01 Symmetry=bu - MO Center= -3.9D-16, 8.1D-16, 2.4D-19, r^2= 1.0D+01 + 14 0.716776 3 C py 19 0.716776 4 C py + 22 0.610590 5 C s 27 -0.610590 6 C s + 36 -0.434047 11 C s 41 0.434047 12 C s + 24 0.382161 5 C py 29 0.382161 6 C py + 2 -0.361718 1 C s 7 0.361718 2 C s + + Vector 55 Occ=0.000000D+00 E= 9.210085D-01 Symmetry=bu + MO Center= -2.4D-16, 8.6D-15, 5.9D-19, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.648634 1 C s 7 -0.648634 2 C s + 2 0.648636 1 C s 7 -0.648636 2 C s 49 -0.507370 15 C px 54 -0.507370 16 C px - 38 0.482571 11 C py 43 0.482571 12 C py - 23 -0.393556 5 C px 28 -0.393556 6 C px - 57 0.345392 17 H s 58 -0.345392 18 H s - - Vector 56 Occ=0.000000D+00 E= 9.399484D-01 Symmetry=ag - MO Center= 5.7D-18, -2.3D-15, -1.6D-18, r^2= 9.1D+00 + 38 0.482570 11 C py 43 0.482570 12 C py + 23 -0.393564 5 C px 28 -0.393564 6 C px + 57 0.345389 17 H s 58 -0.345389 18 H s + + Vector 56 Occ=0.000000D+00 E= 9.399496D-01 Symmetry=ag + MO Center= -8.5D-15, -1.1D-14, -2.6D-19, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.556683 11 C px 42 -0.556683 12 C px + 37 0.556681 11 C px 42 -0.556681 12 C px 50 -0.539847 15 C py 55 0.539847 16 C py - 14 0.392204 3 C py 19 -0.392204 4 C py - 4 -0.359940 1 C py 9 0.359940 2 C py - 24 0.326787 5 C py 29 -0.326787 6 C py - - Vector 57 Occ=0.000000D+00 E= 9.902841D-01 Symmetry=ag - MO Center= -1.2D-15, 4.5D-15, 1.0D-16, r^2= 9.4D+00 + 14 0.392199 3 C py 19 -0.392199 4 C py + 4 -0.359948 1 C py 9 0.359948 2 C py + 24 0.326779 5 C py 29 -0.326779 6 C py + + Vector 57 Occ=0.000000D+00 E= 9.902851D-01 Symmetry=ag + MO Center= 4.7D-16, 5.0D-15, 1.1D-19, r^2= 9.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 38 0.680163 11 C py 43 -0.680163 12 C py + 38 0.680160 11 C py 43 -0.680160 12 C py 49 -0.583682 15 C px 54 0.583682 16 C px - 24 -0.429944 5 C py 29 0.429944 6 C py - 4 -0.411901 1 C py 9 0.411901 2 C py - 14 -0.365141 3 C py 19 0.365141 4 C py - + 24 -0.429950 5 C py 29 0.429950 6 C py + 4 -0.411894 1 C py 9 0.411894 2 C py + 14 -0.365147 3 C py 19 0.365147 4 C py + Vector 58 Occ=0.000000D+00 E= 1.027265D+00 Symmetry=bu - MO Center= -2.1D-16, 5.3D-16, -3.3D-21, r^2= 9.5D+00 + MO Center= 2.9D-15, -7.4D-15, -9.5D-19, r^2= 9.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.608349 11 C px 42 0.608349 12 C px + 37 0.608350 11 C px 42 0.608350 12 C px 50 -0.536814 15 C py 55 -0.536814 16 C py - 48 -0.526963 15 C s 53 0.526963 16 C s - 3 -0.468609 1 C px 8 -0.468609 2 C px - 38 -0.458231 11 C py 43 -0.458231 12 C py - - Vector 59 Occ=0.000000D+00 E= 1.107699D+00 Symmetry=ag - MO Center= 8.5D-17, -2.4D-16, -1.4D-17, r^2= 5.1D+00 + 48 -0.526962 15 C s 53 0.526962 16 C s + 3 -0.468612 1 C px 8 -0.468612 2 C px + 38 -0.458225 11 C py 43 -0.458225 12 C py + + Vector 59 Occ=0.000000D+00 E= 1.107700D+00 Symmetry=ag + MO Center= -1.7D-15, 9.2D-16, 5.4D-21, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.712025 1 C px 8 -0.712025 2 C px - 14 -0.548010 3 C py 19 0.548010 4 C py - 23 -0.444244 5 C px 28 0.444244 6 C px - 24 -0.423225 5 C py 29 0.423225 6 C py - 37 0.414787 11 C px 42 -0.414787 12 C px - - Vector 60 Occ=0.000000D+00 E= 1.124938D+00 Symmetry=bu - MO Center= 3.9D-16, -4.4D-15, 2.6D-19, r^2= 3.4D+00 + 14 -0.548009 3 C py 19 0.548009 4 C py + 23 -0.444243 5 C px 28 0.444243 6 C px + 24 -0.423224 5 C py 29 0.423224 6 C py + 37 0.414788 11 C px 42 -0.414788 12 C px + + Vector 60 Occ=0.000000D+00 E= 1.124935D+00 Symmetry=bu + MO Center= 1.4D-15, -8.6D-16, -1.6D-18, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.662429 1 C py 9 0.662429 2 C py - 13 -0.566303 3 C px 18 -0.566303 4 C px - 23 0.494108 5 C px 28 0.494108 6 C px - 22 -0.411544 5 C s 27 0.411544 6 C s - 24 -0.394347 5 C py 29 -0.394347 6 C py - - + 4 0.662430 1 C py 9 0.662430 2 C py + 13 -0.566300 3 C px 18 -0.566300 4 C px + 23 0.494107 5 C px 28 0.494107 6 C px + 22 -0.411545 5 C s 27 0.411545 6 C s + 24 -0.394345 5 C py 29 -0.394345 6 C py + + Final MO vectors ---------------- - + global array: scf_init: MOs[1:60,1:60], handle: -1000 1 2 3 4 5 6 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.70148 0.70154 -0.00960 0.00993 0.00164 -0.00337 - 2 0.02526 0.02518 0.00379 -0.00374 0.00164 -0.00633 + 1 0.70148 0.70154 -0.00965 0.00998 0.00164 -0.00338 + 2 0.02526 0.02518 0.00379 -0.00374 0.00165 -0.00632 3 -0.00000 0.00004 0.00047 -0.00047 -0.00361 0.00164 4 -0.00066 -0.00045 0.00294 -0.00293 0.00008 0.00193 - 5 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 6 -0.70148 0.70154 0.00960 0.00993 -0.00164 -0.00337 - 7 -0.02526 0.02518 -0.00379 -0.00374 -0.00164 -0.00633 + 5 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 6 -0.70148 0.70154 0.00965 0.00998 -0.00164 -0.00338 + 7 -0.02526 0.02518 -0.00379 -0.00374 -0.00165 -0.00632 8 -0.00000 -0.00004 0.00047 0.00047 -0.00361 -0.00164 9 -0.00066 0.00045 0.00294 0.00293 0.00008 -0.00193 - 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 11 0.00581 0.00321 0.00369 -0.00630 0.37295 0.29678 - 12 -0.00477 -0.00461 0.00007 -0.00019 0.00916 0.00634 + 10 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 11 0.00581 0.00321 0.00369 -0.00628 0.37272 0.29653 + 12 -0.00477 -0.00461 0.00007 -0.00019 0.00915 0.00633 13 0.00242 0.00243 -0.00000 0.00006 0.00007 0.00034 14 -0.00200 -0.00203 0.00003 -0.00001 0.00237 0.00275 - 15 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 16 -0.00581 0.00321 -0.00369 -0.00630 -0.37295 0.29678 - 17 0.00477 -0.00461 -0.00007 -0.00019 -0.00916 0.00634 + 15 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 16 -0.00581 0.00321 -0.00369 -0.00628 -0.37272 0.29653 + 17 0.00477 -0.00461 -0.00007 -0.00019 -0.00915 0.00633 18 0.00242 -0.00243 -0.00000 -0.00006 0.00007 -0.00034 19 -0.00200 0.00203 0.00003 0.00001 0.00237 -0.00275 - 20 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 21 -0.00579 0.00327 -0.00243 -0.00517 0.59454 0.63598 - 22 0.00473 -0.00456 0.00002 -0.00009 0.01884 0.02090 - 23 -0.00291 0.00292 0.00002 0.00006 -0.00077 -0.00054 + 20 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 21 -0.00580 0.00327 -0.00243 -0.00515 0.59468 0.63610 + 22 0.00473 -0.00456 0.00002 -0.00009 0.01884 0.02091 + 23 -0.00291 0.00292 0.00002 0.00007 -0.00077 -0.00054 24 -0.00110 0.00113 -0.00000 -0.00002 -0.00110 -0.00094 - 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 26 0.00579 0.00327 0.00243 -0.00517 -0.59454 0.63598 - 27 -0.00473 -0.00456 -0.00002 -0.00009 -0.01884 0.02090 - 28 -0.00291 -0.00292 0.00002 -0.00006 -0.00077 0.00054 + 25 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 26 0.00580 0.00327 0.00243 -0.00515 -0.59468 0.63610 + 27 -0.00473 -0.00456 -0.00002 -0.00009 -0.01884 0.02091 + 28 -0.00291 -0.00292 0.00002 -0.00007 -0.00077 0.00054 29 -0.00110 -0.00113 -0.00000 0.00002 -0.00110 0.00094 - 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 30 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 31 0.00006 -0.00002 -0.00001 0.00001 -0.00239 -0.00203 32 -0.00006 -0.00002 0.00001 0.00001 0.00239 -0.00203 33 -0.00005 -0.00003 -0.00009 -0.00009 -0.00393 -0.00436 34 0.00005 -0.00003 0.00009 -0.00009 0.00393 -0.00436 - 35 0.00886 -0.00919 0.70136 0.70132 0.00014 0.00746 - 36 0.00449 -0.00455 0.02501 0.02499 0.00007 0.00041 + 35 0.00891 -0.00924 0.70136 0.70132 0.00014 0.00744 + 36 0.00449 -0.00455 0.02500 0.02499 0.00007 0.00041 37 0.00063 -0.00064 0.00051 0.00051 -0.00003 0.00004 - 38 0.00289 -0.00292 -0.00064 -0.00065 0.00005 -0.00002 - 39 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 40 -0.00886 -0.00919 -0.70136 0.70132 -0.00014 0.00746 - 41 -0.00449 -0.00455 -0.02501 0.02499 -0.00007 0.00041 + 38 0.00288 -0.00292 -0.00065 -0.00065 0.00005 -0.00002 + 39 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 40 -0.00891 -0.00924 -0.70136 0.70132 -0.00014 0.00744 + 41 -0.00449 -0.00455 -0.02500 0.02499 -0.00007 0.00041 42 0.00063 0.00064 0.00051 -0.00051 -0.00003 -0.00004 - 43 0.00289 0.00292 -0.00064 0.00065 0.00005 0.00002 - 44 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 43 0.00288 0.00292 -0.00065 0.00065 0.00005 0.00002 + 44 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 45 -0.00009 0.00009 -0.00478 -0.00478 -0.00000 -0.00013 46 0.00009 0.00009 0.00478 -0.00478 0.00000 -0.00013 - 47 0.00051 -0.00049 0.01783 0.01783 -0.00075 -0.00094 + 47 0.00052 -0.00049 0.01784 0.01784 -0.00075 -0.00094 48 -0.00018 0.00019 -0.00474 -0.00474 -0.00004 -0.00017 49 -0.00004 0.00004 0.00211 0.00211 -0.00004 -0.00001 50 -0.00010 0.00010 -0.00239 -0.00239 -0.00003 -0.00011 - 51 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 52 -0.00051 -0.00049 -0.01783 0.01783 0.00075 -0.00094 + 51 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 52 -0.00052 -0.00049 -0.01784 0.01784 0.00075 -0.00094 53 0.00018 0.00019 0.00474 -0.00474 0.00004 -0.00017 54 -0.00004 -0.00004 0.00211 -0.00211 -0.00004 0.00001 55 -0.00010 -0.00010 -0.00239 0.00239 -0.00003 0.00011 - 56 0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 56 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 57 0.00010 -0.00010 -0.00006 -0.00006 0.00009 0.00010 58 -0.00010 -0.00010 0.00006 -0.00006 -0.00009 0.00010 59 0.00002 -0.00002 -0.00004 -0.00004 -0.00001 -0.00001 @@ -3380,62 +3389,62 @@ 7 8 9 10 11 12 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00715 -0.00117 -0.00027 0.00024 -0.10669 0.10127 + 1 -0.00716 -0.00117 -0.00027 0.00024 -0.10669 0.10127 2 -0.00713 -0.00230 -0.00027 0.00027 0.27537 -0.27081 - 3 -0.00042 -0.00337 -0.00005 0.00005 -0.00529 -0.00407 + 3 -0.00043 -0.00336 -0.00005 0.00005 -0.00529 -0.00407 4 0.00237 0.00137 -0.00012 0.00012 -0.03821 -0.03177 - 5 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 6 0.00715 -0.00117 0.00027 0.00024 -0.10669 -0.10127 + 5 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 6 0.00716 -0.00117 0.00027 0.00024 -0.10669 -0.10127 7 0.00713 -0.00230 0.00027 0.00027 0.27537 0.27081 - 8 -0.00042 0.00337 -0.00005 -0.00005 0.00529 -0.00407 + 8 -0.00043 0.00336 -0.00005 -0.00005 0.00529 -0.00407 9 0.00237 -0.00137 -0.00012 -0.00012 0.03821 -0.03177 - 10 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 11 0.59422 0.63574 -0.00027 0.00041 -0.09665 0.03774 + 10 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 11 0.59436 0.63586 -0.00026 0.00041 -0.09665 0.03774 12 0.02429 0.02493 0.00001 -0.00007 0.24727 -0.10004 13 -0.00099 -0.00071 -0.00001 0.00002 -0.05226 0.02862 14 -0.00193 -0.00161 0.00006 -0.00002 -0.01452 -0.05673 - 15 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 16 -0.59422 0.63574 0.00027 0.00041 -0.09665 -0.03774 + 15 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 16 -0.59436 0.63586 0.00026 0.00041 -0.09665 -0.03774 17 -0.02429 0.02493 -0.00001 -0.00007 0.24727 0.10004 18 -0.00099 0.00071 -0.00001 -0.00002 0.05226 0.02862 19 -0.00193 0.00161 0.00006 0.00002 0.01452 -0.05673 - 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 21 -0.37245 -0.29628 0.00107 0.00108 -0.09646 -0.04167 - 22 -0.01788 -0.01503 0.00000 -0.00001 0.24713 0.11107 + 20 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 21 -0.37222 -0.29604 0.00107 0.00108 -0.09646 -0.04167 + 22 -0.01788 -0.01502 0.00000 -0.00001 0.24713 0.11107 23 -0.00002 -0.00025 0.00001 0.00000 -0.04467 -0.04526 24 -0.00292 -0.00308 0.00009 0.00008 0.03103 -0.04400 - 25 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 26 0.37245 -0.29628 -0.00107 0.00108 -0.09646 0.04167 - 27 0.01788 -0.01503 -0.00000 -0.00001 0.24713 -0.11107 + 25 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 26 0.37222 -0.29604 -0.00107 0.00108 -0.09646 0.04167 + 27 0.01788 -0.01502 -0.00000 -0.00001 0.24713 -0.11107 28 -0.00002 0.00025 0.00001 -0.00000 0.04467 -0.04526 29 -0.00292 0.00308 0.00009 -0.00008 -0.03103 -0.04400 - 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 31 -0.00404 -0.00433 0.00000 -0.00000 0.04417 -0.02580 - 32 0.00404 -0.00433 -0.00000 -0.00000 0.04417 0.02580 + 30 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 31 -0.00405 -0.00433 0.00000 -0.00000 0.04417 -0.02580 + 32 0.00405 -0.00433 -0.00000 -0.00000 0.04417 0.02580 33 0.00261 0.00202 0.00005 0.00006 0.04439 0.02948 34 -0.00261 0.00202 -0.00005 0.00006 0.04439 -0.02948 - 35 -0.00456 0.00356 -0.01739 -0.01739 -0.04969 -0.11307 + 35 -0.00456 0.00356 -0.01740 -0.01739 -0.04969 -0.11307 36 -0.00046 0.00018 -0.00604 -0.00604 0.12875 0.29870 37 -0.00007 0.00001 -0.00218 -0.00218 0.01431 0.03768 38 -0.00009 -0.00002 0.00239 0.00239 0.02732 0.00637 - 39 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 40 0.00456 0.00356 0.01739 -0.01739 -0.04969 0.11307 + 39 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 40 0.00456 0.00356 0.01740 -0.01739 -0.04969 0.11307 41 0.00046 0.00018 0.00604 -0.00604 0.12875 -0.29870 42 -0.00007 -0.00001 -0.00218 0.00218 -0.01431 0.03768 43 -0.00009 0.00002 0.00239 -0.00239 -0.02732 0.00637 - 44 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 44 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 45 0.00010 -0.00006 0.00017 0.00017 0.02537 0.06663 46 -0.00010 -0.00006 -0.00017 0.00017 0.02537 -0.06663 47 0.00066 0.00018 0.70143 0.70143 -0.02518 -0.08141 48 0.00014 -0.00004 0.02536 0.02536 0.06484 0.21365 49 0.00000 0.00003 -0.00077 -0.00077 -0.01330 -0.03922 - 50 0.00008 -0.00003 0.00082 0.00082 0.02041 0.05117 - 51 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 50 0.00008 -0.00003 0.00082 0.00082 0.02040 0.05117 + 51 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 52 -0.00066 0.00018 -0.70143 0.70143 -0.02518 0.08141 53 -0.00014 -0.00004 -0.02536 0.02536 0.06484 -0.21365 54 0.00000 -0.00003 -0.00077 0.00077 0.01330 -0.03922 - 55 0.00008 0.00003 0.00082 -0.00082 -0.02041 0.05117 - 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 55 0.00008 0.00003 0.00082 -0.00082 -0.02040 0.05117 + 56 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 57 -0.00007 -0.00006 -0.00473 -0.00473 0.01401 0.04892 58 0.00007 -0.00006 0.00473 -0.00473 0.01401 -0.04892 59 0.00001 -0.00000 -0.00475 -0.00475 0.01084 0.04446 @@ -3443,36 +3452,36 @@ 13 14 15 16 17 18 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00297 -0.01206 -0.10028 0.07233 0.05042 -0.01130 - 2 0.01021 0.03299 0.27908 -0.21293 -0.15130 0.03251 + 1 -0.00297 -0.01206 -0.10028 0.07233 0.05043 -0.01130 + 2 0.01021 0.03299 0.27908 -0.21293 -0.15131 0.03251 3 0.01072 0.12512 -0.01858 -0.11392 0.18994 -0.05062 4 0.09341 -0.02334 -0.05879 -0.07380 -0.06338 -0.13855 - 5 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 6 -0.00297 0.01206 0.10028 0.07233 0.05042 0.01130 - 7 0.01021 -0.03299 -0.27908 -0.21293 -0.15130 -0.03251 + 5 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 6 -0.00297 0.01206 0.10028 0.07233 0.05043 0.01130 + 7 0.01021 -0.03299 -0.27908 -0.21293 -0.15131 -0.03251 8 -0.01072 0.12512 -0.01858 0.11392 -0.18994 -0.05062 9 -0.09341 -0.02334 -0.05879 0.07380 0.06338 -0.13855 - 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 10 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 11 0.04598 -0.13091 -0.04228 -0.00068 -0.10905 -0.04827 12 -0.12241 0.35713 0.11798 0.00038 0.32485 0.14794 13 0.01557 -0.00206 -0.03981 0.03447 0.07474 -0.00499 14 0.03503 -0.05907 0.09190 -0.15917 0.04222 0.00882 - 15 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 15 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 16 0.04598 0.13091 0.04228 -0.00068 -0.10905 0.04827 17 -0.12241 -0.35713 -0.11798 0.00038 0.32485 -0.14794 18 -0.01557 -0.00206 -0.03981 -0.03447 -0.07474 -0.00499 19 -0.03503 -0.05907 0.09190 0.15917 -0.04222 0.00882 - 20 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 21 0.04178 -0.11920 0.07212 -0.07935 0.06026 0.03028 - 22 -0.11048 0.32501 -0.20070 0.22943 -0.18081 -0.09235 + 22 -0.11047 0.32501 -0.20070 0.22943 -0.18080 -0.09235 23 0.00187 0.03044 0.05768 0.06813 0.08309 0.03409 24 -0.04440 0.06952 0.04833 0.03027 0.16974 0.07638 - 25 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 25 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 26 0.04178 0.11920 -0.07212 -0.07935 0.06026 -0.03028 - 27 -0.11048 -0.32501 0.20070 0.22943 -0.18081 0.09235 + 27 -0.11047 -0.32501 0.20070 0.22943 -0.18080 0.09235 28 -0.00187 0.03044 0.05768 -0.06813 -0.08309 0.03409 29 0.04440 0.06952 0.04833 -0.03027 -0.16974 0.07638 - 30 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 30 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 31 -0.02382 0.09808 0.03404 -0.01381 0.17364 0.05184 32 -0.02382 -0.09808 -0.03404 -0.01381 0.17364 -0.05184 33 -0.01812 0.08988 -0.05447 0.10625 -0.09277 -0.05588 @@ -3481,26 +3490,26 @@ 36 0.31447 -0.00141 0.13620 -0.15950 -0.02294 0.29752 37 0.04856 0.01960 0.04017 0.07656 -0.04227 -0.11268 38 -0.05856 -0.01676 -0.12811 -0.13284 -0.07422 0.04537 - 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 40 -0.11765 -0.00033 0.05074 0.05255 0.00696 0.09654 41 0.31447 0.00141 -0.13620 -0.15950 -0.02294 -0.29752 42 -0.04856 0.01960 0.04017 -0.07656 0.04227 -0.11268 43 0.05856 -0.01676 -0.12811 0.13284 0.07422 0.04537 - 44 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 44 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 45 0.07614 -0.00904 0.03781 -0.08110 0.03153 0.17484 46 0.07614 0.00904 -0.03781 -0.08110 0.03153 -0.17484 47 -0.11635 -0.01271 -0.10674 -0.08250 -0.03462 0.08032 48 0.31008 0.03382 0.29222 0.23993 0.10374 -0.24821 49 -0.05070 0.00083 -0.03515 0.03354 -0.01185 -0.11853 50 0.05563 0.00584 0.02111 -0.03806 -0.04423 0.09244 - 51 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 51 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 52 -0.11635 0.01271 0.10674 -0.08250 -0.03462 -0.08032 53 0.31008 -0.03382 -0.29222 0.23993 0.10374 0.24821 54 0.05070 0.00083 -0.03515 -0.03354 0.01185 -0.11853 55 -0.05563 0.00584 0.02111 0.03806 0.04423 0.09244 - 56 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 57 0.07436 0.01269 0.07688 0.10484 0.02248 -0.16389 - 58 0.07436 -0.01269 -0.07688 0.10484 0.02248 0.16389 + 56 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 57 0.07436 0.01269 0.07688 0.10484 0.02247 -0.16389 + 58 0.07436 -0.01269 -0.07688 0.10484 0.02247 0.16389 59 0.07480 0.00781 0.08811 0.10145 0.06533 -0.13085 60 0.07480 -0.00781 -0.08811 0.10145 0.06533 0.13085 @@ -3508,442 +3517,442 @@ ----------- ----------- ----------- ----------- ----------- ----------- 1 0.05635 -0.02870 0.02569 -0.06597 -0.01971 0.01990 2 -0.17081 0.09582 -0.08867 0.22349 0.06676 -0.06515 - 3 -0.01908 0.04971 0.11788 0.10051 -0.22199 -0.01364 + 3 -0.01908 0.04971 0.11788 0.10050 -0.22199 -0.01364 4 0.13510 0.13632 -0.13269 -0.03061 -0.13927 -0.00811 - 5 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 5 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 6 0.05635 -0.02870 -0.02569 0.06597 0.01971 0.01990 7 -0.17081 0.09582 0.08867 -0.22349 -0.06676 -0.06515 - 8 0.01908 -0.04971 0.11788 0.10051 -0.22199 0.01364 + 8 0.01908 -0.04971 0.11788 0.10050 -0.22199 0.01364 9 -0.13510 -0.13632 -0.13269 -0.03061 -0.13927 0.00811 - 10 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 10 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 11 -0.00739 -0.01171 -0.02327 0.04508 -0.00178 -0.02313 12 0.02548 0.04483 0.07841 -0.15396 0.00340 0.07690 13 0.17431 0.14312 0.02854 -0.22080 0.00235 -0.00636 - 14 -0.09611 0.13702 0.18191 0.06810 -0.11757 -0.08071 - 15 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 14 -0.09610 0.13702 0.18191 0.06810 -0.11758 -0.08071 + 15 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 16 -0.00739 -0.01171 0.02327 -0.04508 0.00178 -0.02313 17 0.02548 0.04483 -0.07841 0.15396 -0.00340 0.07690 18 -0.17431 -0.14312 0.02854 -0.22080 0.00235 0.00636 - 19 0.09611 -0.13702 0.18191 0.06810 -0.11757 0.08071 - 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 19 0.09610 -0.13702 0.18191 0.06810 -0.11758 0.08071 + 20 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 21 -0.04991 0.01688 0.04175 -0.04083 0.01136 0.01619 - 22 0.15823 -0.04801 -0.13643 0.14101 -0.03587 -0.05945 + 22 0.15823 -0.04801 -0.13643 0.14102 -0.03587 -0.05945 23 0.19463 0.09267 -0.10371 0.11539 0.24895 -0.03894 - 24 -0.02349 -0.13872 -0.09327 -0.17947 0.06138 0.13432 - 25 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 24 -0.02349 -0.13871 -0.09327 -0.17946 0.06138 0.13432 + 25 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 26 -0.04991 0.01688 -0.04175 0.04083 -0.01136 0.01619 - 27 0.15823 -0.04801 0.13643 -0.14101 0.03587 -0.05945 + 27 0.15823 -0.04801 0.13643 -0.14102 0.03587 -0.05945 28 -0.19463 -0.09267 -0.10371 0.11539 0.24895 0.03894 - 29 0.02349 0.13872 -0.09327 -0.17947 0.06138 -0.13432 - 30 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 29 0.02349 0.13871 -0.09327 -0.17946 0.06138 -0.13432 + 30 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 31 0.09884 0.14691 0.11132 -0.22576 -0.03144 0.00351 32 0.09884 0.14691 -0.11132 0.22576 0.03144 0.00351 - 33 0.16886 0.10361 -0.07136 0.23490 0.12913 -0.11659 - 34 0.16886 0.10361 0.07136 -0.23490 -0.12913 -0.11659 + 33 0.16886 0.10361 -0.07136 0.23490 0.12912 -0.11659 + 34 0.16886 0.10361 0.07136 -0.23490 -0.12912 -0.11659 35 -0.06065 0.03501 -0.01410 -0.01560 -0.00245 -0.02553 - 36 0.18735 -0.11049 0.04410 0.04397 0.01483 0.07452 + 36 0.18735 -0.11049 0.04410 0.04398 0.01483 0.07453 37 -0.07122 0.11003 0.21505 0.04703 -0.04675 0.24900 - 38 -0.01009 0.18321 0.10305 -0.11921 0.17889 -0.08633 - 39 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 38 -0.01009 0.18321 0.10305 -0.11921 0.17890 -0.08633 + 39 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 40 -0.06065 0.03501 0.01410 0.01560 0.00245 -0.02553 - 41 0.18735 -0.11049 -0.04410 -0.04397 -0.01483 0.07452 + 41 0.18735 -0.11049 -0.04410 -0.04398 -0.01483 0.07453 42 0.07122 -0.11003 0.21505 0.04703 -0.04675 -0.24900 - 43 0.01009 -0.18321 0.10305 -0.11921 0.17889 0.08633 - 44 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 43 0.01009 -0.18321 0.10305 -0.11921 0.17890 0.08633 + 44 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 45 0.12516 -0.15273 -0.16530 0.01754 0.01423 -0.15136 46 0.12516 -0.15273 0.16530 -0.01754 -0.01423 -0.15136 - 47 0.05078 -0.01416 0.00664 0.01166 0.00119 -0.00365 - 48 -0.16147 0.05373 -0.02492 -0.04743 0.00610 -0.00094 + 47 0.05078 -0.01416 0.00664 0.01166 0.00119 -0.00364 + 48 -0.16147 0.05373 -0.02492 -0.04742 0.00610 -0.00095 49 -0.08644 0.20470 0.09073 -0.06668 0.25284 -0.01509 50 0.08198 0.01235 0.20180 0.14421 0.03561 0.33624 - 51 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 52 0.05078 -0.01416 -0.00664 -0.01166 -0.00119 -0.00365 - 53 -0.16147 0.05373 0.02492 0.04743 -0.00610 -0.00094 + 51 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 52 0.05078 -0.01416 -0.00664 -0.01166 -0.00119 -0.00364 + 53 -0.16147 0.05373 0.02492 0.04742 -0.00610 -0.00095 54 0.08644 -0.20470 0.09073 -0.06668 0.25284 0.01509 55 -0.08198 -0.01235 0.20180 0.14421 0.03561 -0.33624 - 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 56 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 57 -0.10616 0.17885 0.08017 -0.03906 0.22277 0.02576 58 -0.10616 0.17885 -0.08017 0.03906 -0.22277 0.02576 - 59 -0.10015 -0.02919 -0.17909 -0.11802 -0.09032 -0.26836 - 60 -0.10015 -0.02919 0.17909 0.11802 0.09032 -0.26836 + 59 -0.10015 -0.02920 -0.17909 -0.11802 -0.09032 -0.26836 + 60 -0.10015 -0.02920 0.17909 0.11802 0.09032 -0.26836 25 26 27 28 29 30 ----------- ----------- ----------- ----------- ----------- ----------- 1 0.00257 0.00260 0.02328 -0.00000 -0.00983 -0.00210 2 -0.00864 -0.00952 -0.08354 0.00000 0.04304 0.01635 - 3 -0.08356 0.17615 0.08391 -0.00000 0.09381 -0.16360 - 4 0.07383 -0.17697 0.00418 0.00000 0.24372 0.26025 - 5 -0.00000 0.00000 0.00000 0.33150 0.00000 -0.00000 + 3 -0.08356 0.17616 0.08391 0.00000 0.09381 -0.16359 + 4 0.07383 -0.17697 0.00418 -0.00000 0.24372 0.26026 + 5 0.00000 -0.00000 0.00000 0.33150 -0.00000 -0.00000 6 -0.00257 -0.00260 0.02328 -0.00000 0.00983 -0.00210 7 0.00864 0.00952 -0.08354 0.00000 -0.04304 0.01635 - 8 -0.08356 0.17615 -0.08391 0.00000 0.09381 0.16360 - 9 0.07383 -0.17697 -0.00418 -0.00000 0.24372 -0.26025 - 10 -0.00000 -0.00000 0.00000 0.33150 0.00000 0.00000 - 11 0.02569 -0.01703 0.00423 0.00000 0.00744 0.00407 - 12 -0.08248 0.06113 -0.02149 -0.00000 -0.02348 -0.01323 + 8 -0.08356 0.17616 -0.08391 -0.00000 0.09381 0.16359 + 9 0.07383 -0.17697 -0.00418 0.00000 0.24372 -0.26026 + 10 0.00000 -0.00000 0.00000 0.33150 -0.00000 -0.00000 + 11 0.02569 -0.01703 0.00423 -0.00000 0.00744 0.00407 + 12 -0.08248 0.06113 -0.02149 0.00000 -0.02348 -0.01323 13 0.29940 -0.11128 -0.12658 0.00000 0.06660 0.15890 - 14 0.15374 0.22297 -0.13207 -0.00000 0.03473 -0.26821 - 15 0.00000 0.00000 0.00000 0.30283 0.00000 0.00000 - 16 -0.02569 0.01703 0.00423 0.00000 -0.00744 0.00407 - 17 0.08248 -0.06113 -0.02149 -0.00000 0.02348 -0.01323 + 14 0.15374 0.22297 -0.13207 0.00000 0.03473 -0.26821 + 15 0.00000 -0.00000 -0.00000 0.30283 -0.00000 -0.00000 + 16 -0.02569 0.01703 0.00423 -0.00000 -0.00744 0.00407 + 17 0.08248 -0.06113 -0.02149 0.00000 0.02348 -0.01323 18 0.29940 -0.11128 0.12658 -0.00000 0.06660 -0.15890 - 19 0.15374 0.22297 0.13207 0.00000 0.03473 0.26821 - 20 -0.00000 0.00000 0.00000 0.30283 0.00000 -0.00000 + 19 0.15374 0.22297 0.13207 -0.00000 0.03473 0.26821 + 20 -0.00000 0.00000 0.00000 0.30283 -0.00000 -0.00000 21 0.01847 0.00605 -0.00713 -0.00000 -0.01378 -0.00966 - 22 -0.05932 -0.01702 0.02414 0.00000 0.04752 0.02840 - 23 0.17905 -0.07790 0.06229 -0.00000 -0.14407 -0.11753 + 22 -0.05932 -0.01702 0.02414 0.00000 0.04753 0.02840 + 23 0.17905 -0.07790 0.06229 0.00000 -0.14407 -0.11753 24 -0.23285 -0.18488 0.13677 -0.00000 -0.01059 0.22347 - 25 -0.00000 0.00000 -0.00000 0.30187 0.00000 0.00000 + 25 -0.00000 0.00000 0.00000 0.30187 -0.00000 -0.00000 26 -0.01847 -0.00605 -0.00713 -0.00000 0.01378 -0.00966 - 27 0.05932 0.01702 0.02414 0.00000 -0.04752 0.02840 - 28 0.17905 -0.07790 -0.06229 0.00000 -0.14407 0.11753 + 27 0.05932 0.01702 0.02414 0.00000 -0.04753 0.02840 + 28 0.17905 -0.07790 -0.06229 -0.00000 -0.14407 0.11753 29 -0.23285 -0.18488 -0.13677 0.00000 -0.01059 -0.22347 - 30 0.00000 0.00000 -0.00000 0.30187 0.00000 -0.00000 - 31 0.25850 -0.00250 -0.15685 0.00000 0.04885 0.05278 - 32 -0.25850 0.00250 -0.15685 0.00000 -0.04885 0.05278 - 33 0.22360 0.03999 -0.00010 -0.00000 -0.05941 -0.25390 - 34 -0.22360 -0.03999 -0.00010 -0.00000 0.05941 -0.25390 + 30 -0.00000 -0.00000 -0.00000 0.30187 -0.00000 -0.00000 + 31 0.25850 -0.00250 -0.15685 0.00000 0.04885 0.05277 + 32 -0.25850 0.00250 -0.15685 0.00000 -0.04885 0.05277 + 33 0.22360 0.03999 -0.00010 0.00000 -0.05941 -0.25390 + 34 -0.22360 -0.03999 -0.00010 0.00000 0.05941 -0.25390 35 -0.00158 0.00086 -0.01510 0.00000 0.00351 -0.01752 - 36 0.00361 0.01230 0.06315 -0.00000 -0.01123 0.07387 + 36 0.00361 0.01230 0.06315 -0.00000 -0.01123 0.07388 37 -0.02371 -0.20200 -0.20936 -0.00000 -0.21453 0.02592 - 38 -0.05915 0.18876 0.08025 -0.00000 -0.17918 0.23293 - 39 0.00000 0.00000 0.00000 0.16558 0.00000 0.00000 + 38 -0.05915 0.18876 0.08025 0.00000 -0.17918 0.23293 + 39 0.00000 0.00000 -0.00000 0.16558 -0.00000 -0.00000 40 0.00158 -0.00086 -0.01510 0.00000 -0.00351 -0.01752 - 41 -0.00361 -0.01230 0.06315 -0.00000 0.01123 0.07387 + 41 -0.00361 -0.01230 0.06315 -0.00000 0.01123 0.07388 42 -0.02371 -0.20200 0.20936 0.00000 -0.21453 -0.02592 - 43 -0.05915 0.18876 -0.08025 0.00000 -0.17918 -0.23293 - 44 0.00000 -0.00000 0.00000 0.16558 0.00000 -0.00000 + 43 -0.05915 0.18876 -0.08025 -0.00000 -0.17918 -0.23293 + 44 -0.00000 0.00000 -0.00000 0.16558 -0.00000 -0.00000 45 0.02240 0.14844 0.20296 0.00000 0.25725 -0.04644 46 -0.02240 -0.14844 0.20296 0.00000 -0.25725 -0.04644 47 0.00434 0.01891 0.00989 0.00000 0.00268 0.00872 48 -0.01686 -0.05201 -0.02602 -0.00000 -0.01229 -0.02347 49 -0.07124 0.12590 0.29613 0.00000 0.19454 0.03662 50 -0.01404 -0.23894 0.05034 -0.00000 0.14136 -0.13811 - 51 -0.00000 -0.00000 0.00000 0.09914 0.00000 -0.00000 + 51 -0.00000 -0.00000 0.00000 0.09914 -0.00000 -0.00000 52 -0.00434 -0.01891 0.00989 0.00000 -0.00268 0.00872 53 0.01686 0.05201 -0.02602 -0.00000 0.01229 -0.02347 54 -0.07124 0.12590 -0.29613 -0.00000 0.19454 -0.03662 55 -0.01404 -0.23894 -0.05034 0.00000 0.14136 0.13811 - 56 -0.00000 -0.00000 0.00000 0.09914 0.00000 -0.00000 - 57 -0.05652 0.05847 0.27319 0.00000 0.22630 -0.03215 - 58 0.05652 -0.05847 0.27319 0.00000 -0.22630 -0.03215 - 59 0.02227 0.15355 -0.14587 -0.00000 -0.21197 0.12146 - 60 -0.02227 -0.15355 -0.14587 -0.00000 0.21197 0.12146 + 56 -0.00000 -0.00000 0.00000 0.09914 -0.00000 -0.00000 + 57 -0.05652 0.05847 0.27318 -0.00000 0.22630 -0.03215 + 58 0.05652 -0.05847 0.27318 -0.00000 -0.22630 -0.03215 + 59 0.02227 0.15354 -0.14587 0.00000 -0.21197 0.12146 + 60 -0.02227 -0.15354 -0.14587 0.00000 0.21197 0.12146 31 32 33 34 35 36 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00629 0.00000 -0.00000 0.00000 0.00000 0.00000 - 2 0.03168 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 1 -0.00629 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 2 0.03168 0.00000 0.00000 0.00000 -0.00000 -0.00000 3 0.27885 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 4 0.12973 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 4 0.12972 0.00000 -0.00000 0.00000 0.00000 -0.00000 5 0.00000 -0.31868 -0.03965 -0.00225 0.41799 0.47153 - 6 -0.00629 0.00000 -0.00000 0.00000 0.00000 0.00000 - 7 0.03168 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 6 -0.00629 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 7 0.03168 0.00000 0.00000 0.00000 -0.00000 -0.00000 8 -0.27885 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 9 -0.12973 0.00000 -0.00000 0.00000 0.00000 0.00000 + 9 -0.12972 -0.00000 0.00000 -0.00000 -0.00000 0.00000 10 0.00000 0.31868 -0.03965 0.00225 -0.41799 0.47153 - 11 -0.01149 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 12 0.03512 0.00000 0.00000 0.00000 0.00000 0.00000 - 13 -0.21035 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 14 -0.08520 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 15 0.00000 -0.12429 -0.16451 0.45982 0.23189 -0.24997 - 16 -0.01149 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 17 0.03512 0.00000 0.00000 0.00000 -0.00000 0.00000 - 18 0.21035 0.00000 -0.00000 0.00000 0.00000 0.00000 - 19 0.08520 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 20 0.00000 0.12429 -0.16451 -0.45982 -0.23189 -0.24997 - 21 0.00666 0.00000 -0.00000 0.00000 0.00000 0.00000 - 22 -0.02026 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 23 0.26904 0.00000 -0.00000 0.00000 0.00000 0.00000 - 24 0.12358 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 25 0.00000 0.11940 -0.16493 0.46149 -0.23200 -0.27857 - 26 0.00666 0.00000 -0.00000 0.00000 0.00000 0.00000 - 27 -0.02026 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 28 -0.26904 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 29 -0.12358 0.00000 -0.00000 0.00000 0.00000 0.00000 + 11 -0.01149 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 12 0.03512 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 13 -0.21036 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 14 -0.08519 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 15 -0.00000 -0.12429 -0.16451 0.45982 0.23189 -0.24997 + 16 -0.01149 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 17 0.03512 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 18 0.21036 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 19 0.08519 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 20 -0.00000 0.12429 -0.16451 -0.45982 -0.23189 -0.24997 + 21 0.00666 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 22 -0.02027 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 23 0.26904 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 24 0.12357 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 25 -0.00000 0.11940 -0.16493 0.46149 -0.23200 -0.27857 + 26 0.00666 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 27 -0.02027 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 28 -0.26904 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 29 -0.12357 -0.00000 0.00000 -0.00000 -0.00000 0.00000 30 0.00000 -0.11940 -0.16493 -0.46149 0.23200 -0.27857 - 31 -0.25162 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 32 -0.25162 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 33 0.12318 0.00000 -0.00000 0.00000 0.00000 0.00000 + 31 -0.25163 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 32 -0.25163 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 33 0.12318 -0.00000 -0.00000 0.00000 0.00000 0.00000 34 0.12318 0.00000 -0.00000 0.00000 0.00000 0.00000 - 35 -0.01308 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 36 0.04729 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 37 0.14120 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 38 0.14327 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 39 0.00000 0.38321 0.41518 0.00019 0.21835 0.24693 - 40 -0.01308 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 41 0.04729 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 42 -0.14120 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 43 -0.14327 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 35 -0.01308 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 36 0.04729 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 37 0.14120 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 38 0.14327 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 39 -0.00000 0.38321 0.41518 0.00019 0.21835 0.24693 + 40 -0.01308 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 41 0.04729 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 42 -0.14120 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 43 -0.14327 -0.00000 0.00000 -0.00000 0.00000 0.00000 44 0.00000 -0.38321 0.41518 -0.00019 -0.21835 0.24693 - 45 -0.18377 0.00000 -0.00000 0.00000 0.00000 0.00000 - 46 -0.18377 0.00000 -0.00000 0.00000 0.00000 0.00000 - 47 -0.00303 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 48 0.01380 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 45 -0.18377 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 46 -0.18377 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 47 -0.00303 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 48 0.01380 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 49 -0.10128 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 50 -0.05574 0.00000 -0.00000 0.00000 0.00000 0.00000 - 51 0.00000 0.30667 0.42629 0.00262 0.35818 -0.41493 - 52 -0.00303 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 53 0.01380 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 50 -0.05574 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 51 -0.00000 0.30667 0.42629 0.00262 0.35818 -0.41493 + 52 -0.00303 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 53 0.01380 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 54 0.10128 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 55 0.05574 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 55 0.05574 -0.00000 0.00000 0.00000 -0.00000 -0.00000 56 0.00000 -0.30667 0.42629 -0.00262 -0.35818 -0.41493 - 57 -0.11731 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 58 -0.11731 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 59 0.10240 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 60 0.10240 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 57 -0.11731 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 58 -0.11731 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 59 0.10240 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 60 0.10240 0.00000 0.00000 0.00000 -0.00000 -0.00000 37 38 39 40 41 42 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00000 0.00000 0.00000 0.00000 0.06347 -0.02959 - 2 0.00000 -0.00000 -0.00000 -0.00000 -0.38004 0.17692 - 3 0.00000 0.00000 -0.00000 -0.00000 -0.08842 0.28349 - 4 0.00000 -0.00000 -0.00000 0.00000 -0.26801 0.11184 - 5 -0.02229 -0.03791 -0.47349 0.53871 -0.00000 -0.00000 - 6 -0.00000 0.00000 0.00000 0.00000 0.06347 0.02959 - 7 0.00000 -0.00000 -0.00000 -0.00000 -0.38004 -0.17692 - 8 -0.00000 -0.00000 0.00000 0.00000 0.08842 0.28349 - 9 -0.00000 0.00000 -0.00000 -0.00000 0.26801 0.11184 - 10 -0.02229 0.03791 -0.47349 -0.53871 -0.00000 -0.00000 - 11 0.00000 0.00000 -0.00000 -0.00000 0.02915 0.00433 - 12 0.00000 0.00000 0.00000 -0.00000 -0.18292 -0.02044 - 13 0.00000 -0.00000 -0.00000 0.00000 -0.30919 0.35554 - 14 0.00000 0.00000 0.00000 -0.00000 -0.06526 0.00144 - 15 0.57856 0.22554 0.16186 -0.46948 0.00000 -0.00000 - 16 0.00000 0.00000 -0.00000 -0.00000 0.02915 -0.00433 - 17 0.00000 -0.00000 0.00000 -0.00000 -0.18292 0.02044 - 18 -0.00000 0.00000 0.00000 -0.00000 0.30919 0.35554 - 19 -0.00000 -0.00000 -0.00000 0.00000 0.06526 0.00144 + 1 0.00000 0.00000 -0.00000 0.00000 0.06347 -0.02959 + 2 -0.00000 -0.00000 0.00000 -0.00000 -0.38006 0.17692 + 3 0.00000 -0.00000 0.00000 0.00000 -0.08842 0.28350 + 4 0.00000 -0.00000 -0.00000 0.00000 -0.26802 0.11184 + 5 -0.02229 -0.03791 -0.47349 0.53871 -0.00000 0.00000 + 6 0.00000 0.00000 -0.00000 0.00000 0.06347 0.02959 + 7 -0.00000 -0.00000 0.00000 -0.00000 -0.38006 -0.17692 + 8 -0.00000 0.00000 -0.00000 -0.00000 0.08842 0.28350 + 9 -0.00000 0.00000 0.00000 -0.00000 0.26802 0.11184 + 10 -0.02229 0.03791 -0.47349 -0.53871 0.00000 -0.00000 + 11 0.00000 -0.00000 0.00000 0.00000 0.02915 0.00433 + 12 -0.00000 0.00000 -0.00000 -0.00000 -0.18291 -0.02043 + 13 -0.00000 -0.00000 -0.00000 -0.00000 -0.30919 0.35555 + 14 -0.00000 -0.00000 0.00000 -0.00000 -0.06525 0.00144 + 15 0.57856 0.22554 0.16186 -0.46948 -0.00000 0.00000 + 16 0.00000 -0.00000 0.00000 0.00000 0.02915 -0.00433 + 17 -0.00000 0.00000 -0.00000 -0.00000 -0.18291 0.02043 + 18 0.00000 0.00000 0.00000 0.00000 0.30919 0.35555 + 19 0.00000 0.00000 -0.00000 0.00000 0.06525 0.00144 20 0.57856 -0.22554 0.16186 0.46948 0.00000 -0.00000 - 21 -0.00000 -0.00000 -0.00000 0.00000 0.04840 -0.01440 - 22 -0.00000 -0.00000 0.00000 0.00000 -0.29830 0.08934 - 23 0.00000 0.00000 -0.00000 -0.00000 -0.20794 0.29129 - 24 -0.00000 -0.00000 -0.00000 0.00000 0.13599 -0.00661 + 21 -0.00000 -0.00000 0.00000 -0.00000 0.04839 -0.01440 + 22 0.00000 0.00000 -0.00000 0.00000 -0.29828 0.08933 + 23 0.00000 -0.00000 -0.00000 0.00000 -0.20794 0.29130 + 24 0.00000 -0.00000 0.00000 0.00000 0.13598 -0.00660 25 -0.55811 -0.22043 0.18678 0.47149 0.00000 -0.00000 - 26 -0.00000 -0.00000 -0.00000 0.00000 0.04840 0.01440 - 27 -0.00000 -0.00000 0.00000 0.00000 -0.29830 -0.08934 - 28 -0.00000 -0.00000 -0.00000 0.00000 0.20794 0.29129 - 29 0.00000 0.00000 0.00000 -0.00000 -0.13599 -0.00661 - 30 -0.55811 0.22043 0.18678 -0.47149 0.00000 -0.00000 - 31 0.00000 -0.00000 -0.00000 0.00000 0.42095 -0.31889 - 32 0.00000 -0.00000 -0.00000 -0.00000 0.42095 0.31889 - 33 0.00000 0.00000 -0.00000 -0.00000 0.43481 -0.27655 - 34 0.00000 0.00000 -0.00000 -0.00000 0.43481 0.27655 - 35 0.00000 0.00000 0.00000 -0.00000 -0.04826 0.01372 - 36 -0.00000 -0.00000 -0.00000 0.00000 0.27669 -0.08346 - 37 0.00000 -0.00000 0.00000 0.00000 0.23991 0.35091 - 38 0.00000 -0.00000 0.00000 0.00000 0.32393 0.19910 - 39 0.00330 0.52439 0.53507 0.27875 -0.00000 0.00000 - 40 0.00000 0.00000 -0.00000 -0.00000 -0.04826 -0.01372 - 41 -0.00000 -0.00000 0.00000 0.00000 0.27669 0.08346 - 42 -0.00000 0.00000 -0.00000 -0.00000 -0.23991 0.35091 - 43 -0.00000 0.00000 -0.00000 -0.00000 -0.32393 0.19910 - 44 0.00330 -0.52439 0.53507 -0.27875 -0.00000 0.00000 - 45 -0.00000 0.00000 0.00000 0.00000 0.14038 0.44871 - 46 -0.00000 0.00000 0.00000 0.00000 0.14038 -0.44871 - 47 -0.00000 -0.00000 0.00000 0.00000 0.04113 0.00135 - 48 0.00000 0.00000 -0.00000 -0.00000 -0.24263 -0.01355 - 49 0.00000 -0.00000 0.00000 -0.00000 0.13844 0.30202 - 50 0.00000 0.00000 0.00000 -0.00000 0.15018 0.17217 + 26 -0.00000 -0.00000 0.00000 -0.00000 0.04839 0.01440 + 27 0.00000 0.00000 -0.00000 0.00000 -0.29828 -0.08933 + 28 -0.00000 0.00000 0.00000 -0.00000 0.20794 0.29130 + 29 -0.00000 0.00000 -0.00000 -0.00000 -0.13598 -0.00660 + 30 -0.55811 0.22043 0.18678 -0.47149 -0.00000 0.00000 + 31 -0.00000 0.00000 -0.00000 -0.00000 0.42094 -0.31890 + 32 -0.00000 0.00000 -0.00000 -0.00000 0.42094 0.31890 + 33 0.00000 0.00000 -0.00000 0.00000 0.43480 -0.27655 + 34 0.00000 0.00000 -0.00000 0.00000 0.43480 0.27655 + 35 0.00000 -0.00000 0.00000 0.00000 -0.04826 0.01371 + 36 0.00000 -0.00000 -0.00000 0.00000 0.27669 -0.08345 + 37 0.00000 0.00000 0.00000 0.00000 0.23991 0.35091 + 38 -0.00000 0.00000 0.00000 -0.00000 0.32394 0.19909 + 39 0.00330 0.52439 0.53507 0.27875 -0.00000 -0.00000 + 40 0.00000 -0.00000 0.00000 0.00000 -0.04826 -0.01371 + 41 0.00000 -0.00000 -0.00000 0.00000 0.27669 0.08345 + 42 -0.00000 -0.00000 -0.00000 -0.00000 -0.23991 0.35091 + 43 0.00000 -0.00000 -0.00000 0.00000 -0.32394 0.19909 + 44 0.00330 -0.52439 0.53507 -0.27875 0.00000 0.00000 + 45 -0.00000 0.00000 -0.00000 -0.00000 0.14038 0.44870 + 46 -0.00000 0.00000 -0.00000 -0.00000 0.14038 -0.44870 + 47 -0.00000 0.00000 -0.00000 -0.00000 0.04112 0.00135 + 48 0.00000 -0.00000 0.00000 0.00000 -0.24262 -0.01356 + 49 -0.00000 0.00000 0.00000 -0.00000 0.13846 0.30201 + 50 -0.00000 0.00000 -0.00000 -0.00000 0.15018 0.17216 51 0.00408 -0.53124 -0.40735 -0.15847 0.00000 -0.00000 - 52 -0.00000 -0.00000 0.00000 0.00000 0.04113 -0.00135 - 53 0.00000 0.00000 -0.00000 -0.00000 -0.24263 0.01355 - 54 -0.00000 0.00000 -0.00000 0.00000 -0.13844 0.30202 - 55 -0.00000 -0.00000 -0.00000 0.00000 -0.15018 0.17217 - 56 0.00408 0.53124 -0.40735 0.15847 0.00000 -0.00000 - 57 0.00000 -0.00000 -0.00000 -0.00000 -0.09876 -0.32157 - 58 0.00000 -0.00000 -0.00000 -0.00000 -0.09876 0.32157 - 59 -0.00000 -0.00000 0.00000 0.00000 0.35383 0.27912 - 60 -0.00000 -0.00000 0.00000 0.00000 0.35383 -0.27912 + 52 -0.00000 0.00000 -0.00000 -0.00000 0.04112 -0.00135 + 53 0.00000 -0.00000 0.00000 0.00000 -0.24262 0.01356 + 54 0.00000 -0.00000 -0.00000 0.00000 -0.13846 0.30201 + 55 0.00000 -0.00000 0.00000 0.00000 -0.15018 0.17216 + 56 0.00408 0.53124 -0.40735 0.15847 -0.00000 0.00000 + 57 0.00000 -0.00000 0.00000 0.00000 -0.09878 -0.32156 + 58 0.00000 -0.00000 0.00000 0.00000 -0.09878 0.32156 + 59 0.00000 0.00000 0.00000 0.00000 0.35383 0.27911 + 60 0.00000 0.00000 0.00000 0.00000 0.35383 -0.27911 43 44 45 46 47 48 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.02013 -0.05521 0.04545 -0.08266 -0.01775 -0.12947 - 2 -0.12343 0.32510 -0.27867 0.49230 0.11409 0.79667 - 3 -0.11293 -0.08096 0.24740 -0.11636 -0.10658 -0.04376 - 4 0.07805 0.45357 -0.15053 0.03227 -0.25761 -0.01346 - 5 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 6 0.02013 0.05521 0.04545 0.08266 0.01775 -0.12947 - 7 -0.12343 -0.32510 -0.27867 -0.49230 -0.11409 0.79667 - 8 0.11293 -0.08096 -0.24740 -0.11636 -0.10658 0.04376 - 9 -0.07805 0.45357 0.15053 0.03227 -0.25761 0.01346 - 10 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 1 0.02013 -0.05520 0.04545 -0.08266 -0.01775 -0.12947 + 2 -0.12342 0.32508 -0.27865 0.49230 0.11409 0.79666 + 3 -0.11292 -0.08096 0.24740 -0.11636 -0.10657 -0.04376 + 4 0.07806 0.45357 -0.15053 0.03228 -0.25761 -0.01346 + 5 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 6 0.02013 0.05520 0.04545 0.08266 0.01775 -0.12947 + 7 -0.12342 -0.32508 -0.27865 -0.49230 -0.11409 0.79666 + 8 0.11292 -0.08096 -0.24740 -0.11636 -0.10657 0.04376 + 9 -0.07806 0.45357 0.15053 0.03228 -0.25761 0.01346 + 10 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 11 -0.06409 0.02329 0.07352 0.07623 0.05737 0.07005 - 12 0.39790 -0.14491 -0.45737 -0.46141 -0.36107 -0.44428 - 13 0.00441 -0.11705 -0.06013 -0.11270 -0.32214 -0.01333 - 14 0.11326 0.22045 0.14682 0.02798 -0.31926 -0.29602 - 15 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 12 0.39789 -0.14490 -0.45738 -0.46139 -0.36107 -0.44429 + 13 0.00442 -0.11705 -0.06012 -0.11270 -0.32214 -0.01333 + 14 0.11326 0.22045 0.14682 0.02798 -0.31927 -0.29602 + 15 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 16 -0.06409 -0.02329 0.07352 -0.07623 -0.05737 0.07005 - 17 0.39790 0.14491 -0.45737 0.46141 0.36107 -0.44428 - 18 -0.00441 -0.11705 0.06013 -0.11270 -0.32214 0.01333 - 19 -0.11326 0.22045 -0.14682 0.02798 -0.31926 0.29602 - 20 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 21 -0.01478 -0.00096 -0.09399 -0.09961 -0.00456 0.07402 - 22 0.09708 -0.00077 0.58287 0.61113 0.01636 -0.46918 - 23 0.17067 -0.26070 -0.02470 -0.00943 -0.20447 0.22673 - 24 -0.20090 0.32796 0.02348 -0.11110 -0.10992 0.23945 - 25 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 26 -0.01478 0.00096 -0.09399 0.09961 0.00456 0.07402 - 27 0.09708 0.00077 0.58287 -0.61113 -0.01636 -0.46918 - 28 -0.17067 -0.26070 0.02470 -0.00943 -0.20447 -0.22673 - 29 0.20090 0.32796 -0.02348 -0.11110 -0.10992 -0.23945 - 30 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 31 -0.28652 0.10132 0.24361 0.33817 0.59827 0.29547 - 32 -0.28652 -0.10132 0.24361 -0.33817 -0.59827 0.29547 - 33 -0.27461 0.40888 -0.20615 -0.32761 0.04963 0.22014 - 34 -0.27461 -0.40888 -0.20615 0.32761 -0.04963 0.22014 - 35 0.06458 -0.08932 -0.01632 -0.04073 0.07342 0.09307 - 36 -0.39457 0.52979 0.10815 0.26016 -0.46728 -0.57054 - 37 0.35070 0.07785 -0.12426 -0.14865 0.22392 0.11487 - 38 0.07394 0.31854 0.23556 0.19088 -0.06187 -0.09824 - 39 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 40 0.06458 0.08932 -0.01632 0.04073 -0.07342 0.09307 - 41 -0.39457 -0.52979 0.10815 -0.26016 0.46728 -0.57054 - 42 -0.35070 0.07785 0.12426 -0.14865 0.22392 -0.11487 - 43 -0.07394 0.31854 -0.23556 0.19088 -0.06187 0.09824 - 44 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 45 0.58957 -0.13079 -0.12647 -0.19586 0.43802 0.36479 - 46 0.58957 0.13079 -0.12647 0.19586 -0.43802 0.36479 - 47 -0.01775 0.05639 -0.10758 -0.08348 0.02086 -0.06337 - 48 0.09879 -0.33762 0.68357 0.53349 -0.14155 0.39042 - 49 0.29962 0.11192 0.24914 0.26318 0.03160 -0.02921 - 50 0.24406 0.16611 -0.07396 -0.11940 0.29094 -0.06523 - 51 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 52 -0.01775 -0.05639 -0.10758 0.08348 -0.02086 -0.06337 - 53 0.09879 0.33762 0.68357 -0.53349 0.14155 0.39042 - 54 -0.29962 0.11192 -0.24914 0.26318 0.03160 0.02921 - 55 -0.24406 0.16611 0.07396 -0.11940 0.29094 0.06523 - 56 0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 57 -0.38137 -0.00206 -0.54182 -0.46042 -0.02784 -0.17333 - 58 -0.38137 0.00206 -0.54182 0.46042 0.02784 -0.17333 - 59 0.26202 0.38945 -0.33080 -0.29263 0.32867 -0.26737 - 60 0.26202 -0.38945 -0.33080 0.29263 -0.32867 -0.26737 + 17 0.39789 0.14490 -0.45738 0.46139 0.36107 -0.44429 + 18 -0.00442 -0.11705 0.06012 -0.11270 -0.32214 0.01333 + 19 -0.11326 0.22045 -0.14682 0.02798 -0.31927 0.29602 + 20 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 21 -0.01478 -0.00096 -0.09399 -0.09960 -0.00456 0.07402 + 22 0.09710 -0.00079 0.58288 0.61112 0.01637 -0.46918 + 23 0.17068 -0.26071 -0.02469 -0.00945 -0.20446 0.22673 + 24 -0.20090 0.32797 0.02348 -0.11109 -0.10993 0.23946 + 25 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 26 -0.01478 0.00096 -0.09399 0.09960 0.00456 0.07402 + 27 0.09710 0.00079 0.58288 -0.61112 -0.01637 -0.46918 + 28 -0.17068 -0.26071 0.02469 -0.00945 -0.20446 -0.22673 + 29 0.20090 0.32797 -0.02348 -0.11109 -0.10993 -0.23946 + 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 31 -0.28653 0.10132 0.24361 0.33817 0.59827 0.29547 + 32 -0.28653 -0.10132 0.24361 -0.33817 -0.59827 0.29547 + 33 -0.27463 0.40890 -0.20615 -0.32759 0.04960 0.22015 + 34 -0.27463 -0.40890 -0.20615 0.32759 -0.04960 0.22015 + 35 0.06458 -0.08931 -0.01632 -0.04073 0.07342 0.09307 + 36 -0.39458 0.52976 0.10814 0.26016 -0.46728 -0.57054 + 37 0.35069 0.07786 -0.12426 -0.14864 0.22392 0.11487 + 38 0.07394 0.31854 0.23556 0.19090 -0.06187 -0.09824 + 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 40 0.06458 0.08931 -0.01632 0.04073 -0.07342 0.09307 + 41 -0.39458 -0.52976 0.10814 -0.26016 0.46728 -0.57054 + 42 -0.35069 0.07786 0.12426 -0.14864 0.22392 -0.11487 + 43 -0.07394 0.31854 -0.23556 0.19090 -0.06187 0.09824 + 44 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 45 0.58957 -0.13077 -0.12647 -0.19585 0.43802 0.36479 + 46 0.58957 0.13077 -0.12647 0.19585 -0.43802 0.36479 + 47 -0.01775 0.05639 -0.10758 -0.08349 0.02086 -0.06336 + 48 0.09880 -0.33762 0.68358 0.53351 -0.14155 0.39041 + 49 0.29962 0.11191 0.24914 0.26319 0.03161 -0.02922 + 50 0.24406 0.16612 -0.07396 -0.11940 0.29095 -0.06522 + 51 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 52 -0.01775 -0.05639 -0.10758 0.08349 -0.02086 -0.06336 + 53 0.09880 0.33762 0.68358 -0.53351 0.14155 0.39041 + 54 -0.29962 0.11191 -0.24914 0.26319 0.03161 0.02922 + 55 -0.24406 0.16612 0.07396 -0.11940 0.29095 0.06522 + 56 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 57 -0.38136 -0.00205 -0.54181 -0.46045 -0.02785 -0.17333 + 58 -0.38136 0.00205 -0.54181 0.46045 0.02785 -0.17333 + 59 0.26202 0.38946 -0.33081 -0.29263 0.32868 -0.26736 + 60 0.26202 -0.38946 -0.33081 0.29263 -0.32868 -0.26736 49 50 51 52 53 54 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.06032 0.04020 0.06828 0.00273 -0.00046 0.05152 - 2 -0.36325 -0.25412 -0.46271 -0.00820 -0.00319 -0.36172 - 3 -0.13937 -0.34437 0.12169 -0.55535 0.21367 -0.26311 - 4 0.11476 0.04818 0.58684 0.05618 0.04559 0.00402 - 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 6 -0.06032 0.04020 0.06828 -0.00273 -0.00046 -0.05152 - 7 0.36325 -0.25412 -0.46271 0.00820 -0.00319 0.36172 - 8 -0.13937 0.34437 -0.12169 -0.55535 -0.21367 -0.26311 - 9 0.11476 -0.04818 -0.58684 0.05618 -0.04559 0.00402 - 10 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 1 0.06033 0.04020 0.06829 0.00273 -0.00046 0.05152 + 2 -0.36327 -0.25411 -0.46272 -0.00821 -0.00320 -0.36172 + 3 -0.13936 -0.34438 0.12169 -0.55535 0.21367 -0.26311 + 4 0.11475 0.04817 0.58684 0.05618 0.04558 0.00401 + 5 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 6 -0.06033 0.04020 0.06829 -0.00273 -0.00046 -0.05152 + 7 0.36327 -0.25411 -0.46272 0.00821 -0.00320 0.36172 + 8 -0.13936 0.34438 -0.12169 -0.55535 -0.21367 -0.26311 + 9 0.11475 -0.04817 -0.58684 0.05618 -0.04558 0.00401 + 10 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 11 -0.05816 -0.11353 -0.01377 -0.09440 0.00433 0.03473 - 12 0.35719 0.72777 0.09181 0.64278 -0.03563 -0.23914 - 13 -0.14747 -0.07673 -0.44667 0.01638 0.53136 -0.19353 - 14 0.12249 -0.10733 0.16074 0.09830 0.19720 0.71678 - 15 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 12 0.35719 0.72776 0.09182 0.64278 -0.03563 -0.23914 + 13 -0.14747 -0.07672 -0.44667 0.01637 0.53137 -0.19353 + 14 0.12248 -0.10733 0.16074 0.09831 0.19721 0.71678 + 15 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 16 0.05816 -0.11353 -0.01377 0.09440 0.00433 -0.03473 - 17 -0.35719 0.72777 0.09181 -0.64278 -0.03563 0.23914 - 18 -0.14747 0.07673 0.44667 0.01638 -0.53136 -0.19353 - 19 0.12249 0.10733 -0.16074 0.09830 -0.19720 0.71678 - 20 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 17 -0.35719 0.72776 0.09182 -0.64278 -0.03563 0.23914 + 18 -0.14747 0.07672 0.44667 0.01637 -0.53137 -0.19353 + 19 0.12248 0.10733 -0.16074 0.09831 -0.19721 0.71678 + 20 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 21 0.06824 0.09547 -0.04797 -0.03443 -0.00315 -0.08760 - 22 -0.42519 -0.61447 0.31578 0.24291 0.02893 0.61058 - 23 -0.18152 -0.15948 -0.32474 -0.19598 -0.51838 0.30197 + 22 -0.42521 -0.61447 0.31578 0.24290 0.02893 0.61059 + 23 -0.18151 -0.15947 -0.32475 -0.19597 -0.51838 0.30197 24 0.14947 -0.17955 0.01505 -0.47953 0.39528 0.38216 - 25 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 25 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 26 -0.06824 0.09547 -0.04797 0.03443 -0.00315 0.08760 - 27 0.42519 -0.61447 0.31578 -0.24291 0.02893 -0.61058 - 28 -0.18152 0.15948 0.32474 -0.19598 0.51838 0.30197 + 27 0.42521 -0.61447 0.31578 -0.24290 0.02893 -0.61059 + 28 -0.18151 0.15947 0.32475 -0.19597 0.51838 0.30197 29 0.14947 0.17955 -0.01505 -0.47953 -0.39528 0.38216 - 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 31 -0.07755 -0.24355 0.24171 -0.29864 -0.44168 0.06169 - 32 0.07755 -0.24355 0.24171 0.29864 -0.44168 -0.06169 - 33 0.48819 0.33971 0.05276 -0.20881 0.50945 -0.25390 - 34 -0.48819 0.33971 0.05276 0.20881 0.50945 0.25390 - 35 0.07001 -0.03282 0.07316 0.02688 0.05205 0.06209 - 36 -0.43044 0.23057 -0.48601 -0.19861 -0.36325 -0.43404 - 37 0.05929 -0.03730 0.15697 -0.27580 -0.14090 0.07787 - 38 0.12368 0.07467 0.02313 0.04919 0.16297 0.10502 - 39 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 40 -0.07001 -0.03282 0.07316 -0.02688 0.05205 -0.06209 - 41 0.43044 0.23057 -0.48601 0.19861 -0.36325 0.43404 - 42 0.05929 0.03730 -0.15697 -0.27580 0.14090 0.07787 - 43 0.12368 -0.07467 -0.02313 0.04919 -0.16297 0.10502 - 44 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 45 0.29660 -0.08717 0.31098 -0.15158 0.08063 0.25884 - 46 -0.29660 -0.08717 0.31098 0.15158 0.08063 -0.25884 + 30 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 31 -0.07756 -0.24355 0.24171 -0.29864 -0.44169 0.06170 + 32 0.07756 -0.24355 0.24171 0.29864 -0.44169 -0.06170 + 33 0.48819 0.33971 0.05277 -0.20881 0.50944 -0.25391 + 34 -0.48819 0.33971 0.05277 0.20881 0.50944 0.25391 + 35 0.07002 -0.03282 0.07315 0.02688 0.05204 0.06209 + 36 -0.43047 0.23057 -0.48600 -0.19861 -0.36324 -0.43405 + 37 0.05929 -0.03730 0.15697 -0.27581 -0.14090 0.07786 + 38 0.12366 0.07466 0.02314 0.04918 0.16297 0.10502 + 39 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 40 -0.07002 -0.03282 0.07315 -0.02688 0.05204 -0.06209 + 41 0.43047 0.23057 -0.48600 0.19861 -0.36324 0.43405 + 42 0.05929 0.03730 -0.15697 -0.27581 0.14090 0.07786 + 43 0.12366 -0.07466 -0.02314 0.04918 -0.16297 0.10502 + 44 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 45 0.29662 -0.08716 0.31097 -0.15158 0.08064 0.25884 + 46 -0.29662 -0.08716 0.31097 0.15158 0.08064 -0.25884 47 -0.11043 -0.06100 -0.01913 -0.00996 -0.04167 -0.00937 - 48 0.70234 0.39762 0.12122 0.07892 0.29027 0.06215 - 49 0.14092 0.13474 -0.35816 0.02242 -0.09607 -0.30665 - 50 -0.01940 -0.37252 -0.13205 0.49016 0.29205 0.09798 - 51 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 48 0.70233 0.39762 0.12122 0.07893 0.29027 0.06216 + 49 0.14091 0.13476 -0.35815 0.02242 -0.09607 -0.30666 + 50 -0.01939 -0.37252 -0.13206 0.49016 0.29204 0.09797 + 51 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 52 0.11043 -0.06100 -0.01913 0.00996 -0.04167 0.00937 - 53 -0.70234 0.39762 0.12122 -0.07892 0.29027 -0.06215 - 54 0.14092 -0.13474 0.35816 0.02242 0.09607 -0.30665 - 55 -0.01940 0.37252 0.13205 0.49016 -0.29205 0.09798 - 56 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 57 -0.51487 -0.28602 0.24499 -0.10534 -0.12844 0.22847 - 58 0.51487 -0.28602 0.24499 0.10534 -0.12844 -0.22847 - 59 -0.31646 -0.45685 -0.25487 0.35646 0.08062 -0.02830 - 60 0.31646 -0.45685 -0.25487 -0.35646 0.08062 0.02830 + 53 -0.70233 0.39762 0.12122 -0.07893 0.29027 -0.06216 + 54 0.14091 -0.13476 0.35815 0.02242 0.09607 -0.30666 + 55 -0.01939 0.37252 0.13206 0.49016 -0.29204 0.09797 + 56 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 57 -0.51486 -0.28603 0.24499 -0.10535 -0.12843 0.22847 + 58 0.51486 -0.28603 0.24499 0.10535 -0.12843 -0.22847 + 59 -0.31645 -0.45685 -0.25488 0.35646 0.08062 -0.02831 + 60 0.31645 -0.45685 -0.25488 -0.35646 0.08062 0.02831 55 56 57 58 59 60 ----------- ----------- ----------- ----------- ----------- ----------- 1 -0.09450 0.01420 0.01758 0.01953 -0.00474 0.04242 - 2 0.64863 -0.08483 -0.11210 -0.13942 0.03202 -0.32154 - 3 -0.18965 -0.10985 0.10062 -0.46861 0.71203 0.16190 - 4 0.05545 -0.35994 -0.41190 0.13349 -0.05426 0.66243 - 5 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 2 0.64864 -0.08483 -0.11210 -0.13942 0.03202 -0.32153 + 3 -0.18965 -0.10986 0.10062 -0.46861 0.71202 0.16190 + 4 0.05544 -0.35995 -0.41189 0.13349 -0.05426 0.66243 + 5 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 6 0.09450 0.01420 0.01758 -0.01953 -0.00474 -0.04242 - 7 -0.64863 -0.08483 -0.11210 0.13942 0.03202 0.32154 - 8 -0.18965 0.10985 -0.10062 -0.46861 -0.71203 0.16190 - 9 0.05545 0.35994 0.41190 0.13349 0.05426 0.66243 - 10 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 7 -0.64864 -0.08483 -0.11210 0.13942 0.03202 0.32153 + 8 -0.18965 0.10986 -0.10062 -0.46861 -0.71202 0.16190 + 9 0.05544 0.35995 0.41189 0.13349 0.05426 0.66243 + 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 11 -0.00878 0.02820 -0.01808 -0.04629 0.00719 -0.05089 - 12 0.07503 -0.20151 0.13188 0.33903 -0.04976 0.37542 - 13 0.27125 0.26938 0.11483 -0.19548 0.24459 -0.56630 - 14 -0.13845 0.39220 -0.36514 0.13846 -0.54801 -0.23999 - 15 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 12 0.07504 -0.20151 0.13189 0.33903 -0.04976 0.37542 + 13 0.27126 0.26937 0.11482 -0.19548 0.24459 -0.56630 + 14 -0.13846 0.39220 -0.36515 0.13846 -0.54801 -0.23999 + 15 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 16 0.00878 0.02820 -0.01808 0.04629 0.00719 0.05089 - 17 -0.07503 -0.20151 0.13188 -0.33903 -0.04976 -0.37542 - 18 0.27125 -0.26938 -0.11483 -0.19548 -0.24459 -0.56630 - 19 -0.13845 -0.39220 0.36514 0.13846 0.54801 -0.23999 - 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 17 -0.07504 -0.20151 0.13189 -0.33903 -0.04976 -0.37542 + 18 0.27126 -0.26937 -0.11482 -0.19548 -0.24459 -0.56630 + 19 -0.13846 -0.39220 0.36515 0.13846 0.54801 -0.23999 + 20 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 21 -0.02893 -0.03159 0.01601 -0.02227 -0.00734 0.05551 - 22 0.19142 0.22096 -0.11841 0.16775 0.04971 -0.41154 - 23 -0.39356 0.15679 0.05191 -0.05616 -0.44424 0.49411 - 24 -0.20792 0.32679 -0.42994 -0.21552 -0.42323 -0.39435 - 25 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 22 0.19142 0.22096 -0.11842 0.16775 0.04971 -0.41154 + 23 -0.39356 0.15680 0.05191 -0.05616 -0.44424 0.49411 + 24 -0.20793 0.32678 -0.42995 -0.21552 -0.42322 -0.39434 + 25 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 26 0.02893 -0.03159 0.01601 0.02227 -0.00734 -0.05551 - 27 -0.19142 0.22096 -0.11841 -0.16775 0.04971 0.41154 - 28 -0.39356 -0.15679 -0.05191 -0.05616 0.44424 0.49411 - 29 -0.20792 -0.32679 0.42994 -0.21552 0.42323 -0.39435 - 30 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 31 -0.14981 -0.21765 -0.04767 -0.02392 -0.00844 0.26961 - 32 0.14981 -0.21765 -0.04767 0.02392 -0.00844 -0.26961 - 33 0.02253 -0.03522 -0.20429 -0.10576 0.03848 -0.27726 - 34 -0.02253 -0.03522 -0.20429 0.10576 0.03848 0.27726 + 27 -0.19142 0.22096 -0.11842 -0.16775 0.04971 0.41154 + 28 -0.39356 -0.15680 -0.05191 -0.05616 0.44424 0.49411 + 29 -0.20793 -0.32678 0.42995 -0.21552 0.42322 -0.39434 + 30 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 31 -0.14981 -0.21765 -0.04766 -0.02392 -0.00844 0.26961 + 32 0.14981 -0.21765 -0.04766 0.02392 -0.00844 -0.26961 + 33 0.02254 -0.03523 -0.20429 -0.10576 0.03848 -0.27726 + 34 -0.02254 -0.03523 -0.20429 0.10576 0.03848 0.27726 35 0.01769 -0.04334 0.03640 -0.05834 -0.02416 -0.01409 - 36 -0.14422 0.30720 -0.29712 0.45190 0.19749 0.08798 - 37 0.29736 0.55668 -0.09969 0.60835 0.41479 0.02777 + 36 -0.14423 0.30721 -0.29712 0.45190 0.19749 0.08798 + 37 0.29735 0.55668 -0.09970 0.60835 0.41479 0.02777 38 0.48257 0.14504 0.68016 -0.45823 -0.30091 0.36504 - 39 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 39 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 40 -0.01769 -0.04334 0.03640 0.05834 -0.02416 0.01409 - 41 0.14422 0.30720 -0.29712 -0.45190 0.19749 -0.08798 - 42 0.29736 -0.55668 0.09969 0.60835 -0.41479 0.02777 + 41 0.14423 0.30721 -0.29712 -0.45190 0.19749 -0.08798 + 42 0.29735 -0.55668 0.09970 0.60835 -0.41479 0.02777 43 0.48257 -0.14504 -0.68016 -0.45823 0.30091 0.36504 - 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 45 0.32793 0.30837 0.14608 0.17886 0.15782 0.04879 - 46 -0.32793 0.30837 0.14608 -0.17886 0.15782 -0.04879 + 44 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 45 0.32793 0.30837 0.14608 0.17887 0.15782 0.04879 + 46 -0.32793 0.30837 0.14608 -0.17887 0.15782 -0.04879 47 -0.01772 0.03266 -0.04635 0.06846 0.03822 -0.00886 - 48 0.12954 -0.24177 0.35554 -0.52696 -0.30561 0.07837 - 49 -0.50737 -0.13251 -0.58368 0.38884 0.24000 -0.21692 - 50 -0.23525 -0.53985 0.18340 -0.53681 -0.30264 -0.00326 - 51 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 48 0.12954 -0.24177 0.35554 -0.52696 -0.30561 0.07838 + 49 -0.50737 -0.13252 -0.58368 0.38883 0.24000 -0.21693 + 50 -0.23524 -0.53985 0.18340 -0.53681 -0.30265 -0.00326 + 51 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 52 0.01772 0.03266 -0.04635 -0.06846 0.03822 0.00886 - 53 -0.12954 -0.24177 0.35554 0.52696 -0.30561 -0.07837 - 54 -0.50737 0.13251 0.58368 0.38884 -0.24000 -0.21692 - 55 -0.23525 0.53985 -0.18340 -0.53681 0.30264 -0.00326 - 56 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 - 57 0.34539 0.26547 0.27254 -0.01145 -0.03139 0.13677 - 58 -0.34539 0.26547 0.27254 0.01145 -0.03139 -0.13677 - 59 -0.33103 -0.32049 -0.12287 -0.09633 -0.04651 -0.06632 - 60 0.33103 -0.32049 -0.12287 0.09633 -0.04651 0.06632 + 53 -0.12954 -0.24177 0.35554 0.52696 -0.30561 -0.07838 + 54 -0.50737 0.13252 0.58368 0.38883 -0.24000 -0.21693 + 55 -0.23524 0.53985 -0.18340 -0.53681 0.30265 -0.00326 + 56 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 57 0.34539 0.26547 0.27254 -0.01144 -0.03139 0.13677 + 58 -0.34539 0.26547 0.27254 0.01144 -0.03139 -0.13677 + 59 -0.33103 -0.32048 -0.12287 -0.09634 -0.04651 -0.06633 + 60 0.33103 -0.32048 -0.12287 0.09634 -0.04651 0.06633 center of mass -------------- @@ -3951,10 +3960,10 @@ moments of inertia (a.u.) ------------------ - 2631.731379210404 0.000000000000 0.000000000000 - 0.000000000000 390.819001468288 0.000000000000 - 0.000000000000 0.000000000000 3022.550380678692 - + 2631.731379210398 -0.000000000000 0.000000000000 + -0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678686 + Mulliken analysis of the total density -------------------------------------- @@ -3980,24 +3989,27 @@ 18 H 1 0.94 0.94 19 H 1 0.94 0.94 20 H 1 0.94 0.94 - + Multipole analysis of the density wrt the origin ------------------------------------------------ - + L x y z total open nuclear - - - - ----- ---- ------- 0 0 0 0 -0.000000 0.000000 70.000000 - + 1 1 0 0 -0.000000 0.000000 0.000000 1 0 1 0 -0.000000 0.000000 0.000000 - 1 0 0 1 0.000000 0.000000 0.000000 - - 2 2 0 0 -38.360884 0.000000 244.795872 - 2 1 1 0 0.065438 0.000000 -5.631027 - 2 1 0 1 -0.000000 0.000000 0.000000 - 2 0 2 0 -39.006243 0.000000 1496.963300 + 1 0 0 1 -0.000000 0.000000 0.000000 + + 2 2 0 0 -38.360869 0.000000 244.795872 + 2 1 1 0 0.065434 0.000000 -5.631027 + 2 1 0 1 0.000000 0.000000 0.000000 + 2 0 2 0 -39.006221 0.000000 1496.963300 2 0 1 1 0.000000 0.000000 0.000000 - 2 0 0 2 -43.564268 0.000000 0.000000 + 2 0 0 2 -43.564269 0.000000 0.000000 + + + Parallel integral file used 10 records with 0 large values ------------- @@ -4010,14 +4022,14 @@ Dipole moment 0.0000000000 A.U. DMX -0.0000000000 DMXEFC 0.0000000000 DMY -0.0000000000 DMYEFC 0.0000000000 - DMZ 0.0000000000 DMZEFC 0.0000000000 + DMZ -0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 A.U. Total dipole 0.0000000000 A.U. Dipole moment 0.0000000000 Debye(s) DMX -0.0000000000 DMXEFC 0.0000000000 DMY -0.0000000000 DMYEFC 0.0000000000 - DMZ 0.0000000000 DMZEFC 0.0000000000 + DMZ -0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 DEBYE(S) Total dipole 0.0000000000 DEBYE(S) @@ -4037,44 +4049,44 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -38.3608840749 0.0000000000 -38.3608840749 - YY -39.0062425075 0.0000000000 -39.0062425075 - ZZ -43.5642675472 0.0000000000 -43.5642675472 - XY 0.0654382568 0.0000000000 0.0654382568 - XZ -0.0000000000 0.0000000000 -0.0000000000 + XX -38.3608685339 0.0000000000 -38.3608685339 + YY -39.0062210270 0.0000000000 -39.0062210270 + ZZ -43.5642691494 0.0000000000 -43.5642691494 + XY 0.0654337039 0.0000000000 0.0654337039 + XZ 0.0000000000 0.0000000000 0.0000000000 YZ 0.0000000000 0.0000000000 0.0000000000 Second moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -51.5919749620 0.0000000000 -51.5919749620 - YY -52.4599246170 0.0000000000 -52.4599246170 - ZZ -58.5900626312 0.0000000000 -58.5900626312 - XY 0.0880086313 0.0000000000 0.0880086313 - XZ -0.0000000000 0.0000000000 -0.0000000000 + XX -51.5919540608 0.0000000000 -51.5919540608 + YY -52.4598957276 0.0000000000 -52.4598957276 + ZZ -58.5900647860 0.0000000000 -58.5900647860 + XY 0.0880025081 0.0000000000 0.0880025081 + XZ 0.0000000000 0.0000000000 0.0000000000 YZ 0.0000000000 0.0000000000 0.0000000000 Quadrupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 2.9243709525 0.0000000000 2.9243709525 - YY 1.9563333035 0.0000000000 1.9563333035 - ZZ -4.8807042560 0.0000000000 -4.8807042560 - XY 0.0981573851 0.0000000000 0.0981573851 - XZ -0.0000000000 0.0000000000 -0.0000000000 + XX 2.9243765543 0.0000000000 2.9243765543 + YY 1.9563478146 0.0000000000 1.9563478146 + ZZ -4.8807243690 0.0000000000 -4.8807243690 + XY 0.0981505558 0.0000000000 0.0981505558 + XZ 0.0000000000 0.0000000000 0.0000000000 YZ 0.0000000000 0.0000000000 0.0000000000 Quadrupole moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 3.9330186621 0.0000000000 3.9330186621 - YY 2.6310941796 0.0000000000 2.6310941796 - ZZ -6.5641128417 0.0000000000 -6.5641128417 - XY 0.1320129470 0.0000000000 0.1320129470 - XZ -0.0000000000 0.0000000000 -0.0000000000 + XX 3.9330261961 0.0000000000 3.9330261961 + YY 2.6311136957 0.0000000000 2.6311136957 + ZZ -6.5641398918 0.0000000000 -6.5641398918 + XY 0.1320037622 0.0000000000 0.1320037622 + XZ 0.0000000000 0.0000000000 0.0000000000 YZ 0.0000000000 0.0000000000 0.0000000000 1 a.u. = 1.344911 Buckinghams = 1.344911 10**(-26) esu*cm**2 @@ -4091,60 +4103,60 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XXX -0.0000000000 0.0000000000 -0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 YYZ 0.0000000000 0.0000000000 0.0000000000 - ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY -0.0000000000 0.0000000000 -0.0000000000 - XYZ 0.0000000000 0.0000000000 0.0000000000 + ZZX -0.0000000000 0.0000000000 -0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 Third moments in 10**(-34) esu*cm**3 Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XXX -0.0000000000 0.0000000000 -0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 - XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 YYZ 0.0000000000 0.0000000000 0.0000000000 - ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY -0.0000000000 0.0000000000 -0.0000000000 - XYZ 0.0000000000 0.0000000000 0.0000000000 + ZZX -0.0000000000 0.0000000000 -0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 Octupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XXX 0.0000000000 0.0000000000 0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 - ZZZ -0.0000000000 0.0000000000 -0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 YYZ 0.0000000000 0.0000000000 0.0000000000 ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY 0.0000000000 0.0000000000 0.0000000000 - XYZ 0.0000000000 0.0000000000 0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 Octupole moments in 10**(-34) esu*cm**3 Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- XXX 0.0000000000 0.0000000000 0.0000000000 - YYY -0.0000000000 0.0000000000 -0.0000000000 - ZZZ -0.0000000000 0.0000000000 -0.0000000000 - XXY 0.0000000000 0.0000000000 0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 + YYY 0.0000000000 0.0000000000 0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY -0.0000000000 0.0000000000 -0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 YYZ 0.0000000000 0.0000000000 0.0000000000 ZZX 0.0000000000 0.0000000000 0.0000000000 - ZZY 0.0000000000 0.0000000000 0.0000000000 - XYZ 0.0000000000 0.0000000000 0.0000000000 + ZZY -0.0000000000 0.0000000000 -0.0000000000 + XYZ -0.0000000000 0.0000000000 -0.0000000000 1 a.u. = 0.711688 10**(-34) esu*cm**3 @@ -4157,8 +4169,8 @@ -------------------------------- Atom S P -------------------------------------------------------------------------------------- - 1 C 3.13046 2.86773 - 2 C 3.13046 2.86773 + 1 C 3.13046 2.86772 + 2 C 3.13046 2.86772 3 C 3.14136 2.91829 4 C 3.14136 2.91829 5 C 3.13936 2.92108 @@ -4294,13 +4306,13 @@ Valency Free electrons Bond indices =Mulliken charge = Net spin population 1 C 3.97499 2.02320 3.97499 5.99819 -0.00000 2 C 3.97499 2.02320 3.97499 5.99819 -0.00000 - 3 C 3.97333 2.08631 3.97333 6.05964 -0.00000 - 4 C 3.97333 2.08631 3.97333 6.05964 -0.00000 + 3 C 3.97333 2.08632 3.97333 6.05964 0.00000 + 4 C 3.97333 2.08632 3.97333 6.05964 -0.00000 5 C 3.97410 2.08634 3.97410 6.06044 -0.00000 - 6 C 3.97410 2.08634 3.97410 6.06044 0.00000 + 6 C 3.97410 2.08634 3.97410 6.06044 -0.00000 7 H 0.99655 -0.05526 0.99655 0.94130 -0.00000 8 H 0.99655 -0.05526 0.99655 0.94130 -0.00000 - 9 H 0.99633 -0.05693 0.99633 0.93940 -0.00000 + 9 H 0.99633 -0.05693 0.99633 0.93940 0.00000 10 H 0.99633 -0.05693 0.99633 0.93940 -0.00000 11 C 3.97218 2.08307 3.97218 6.05525 -0.00000 12 C 3.97218 2.08307 3.97218 6.05525 0.00000 @@ -4313,7 +4325,13 @@ 19 H 0.99622 -0.05768 0.99622 0.93855 -0.00000 20 H 0.99622 -0.05768 0.99622 0.93855 -0.00000 - Task times cpu: 3.8s wall: 3.8s + Task times cpu: 0.8s wall: 0.9s + + + NWChem Input Module + ------------------- + + Summary of allocated global arrays ----------------------------------- No active global arrays @@ -4324,11 +4342,12 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 759 759 3.06e+04 6122 3.18e+04 420 0 8387 -number of processes/call -1.47e+14 6.43e+13 1.07e+14 0.00e+00 0.00e+00 -bytes total: 1.25e+07 7.31e+06 3.97e+06 8.00e+00 0.00e+00 6.71e+04 -bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 427200 bytes +calls: 749 749 8359 2005 8171 42 0 1987 +number of processes/call 3.42e+14 2.81e+13 1.40e+12 0.00e+00 0.00e+00 +bytes total: 7.16e+06 2.34e+06 2.23e+06 2.00e+02 0.00e+00 1.59e+04 +bytes remote: 4.46e+06 6.82e+05 1.63e+06 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 108832 bytes + MA_summarize_allocated_blocks: starting scan ... MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: @@ -4337,51 +4356,26 @@ MA usage statistics: heap stack ---- ----- current number of blocks 0 0 - maximum number of blocks 17 14 + maximum number of blocks 18 14 current total bytes 0 0 - maximum total bytes 80152 22510808 - maximum total K-bytes 81 22511 - maximum total M-bytes 1 23 - - - NWChem Input Module - ------------------- - - - - - + maximum total bytes 3170760 22510824 + maximum total K-bytes 3171 22511 + maximum total M-bytes 4 23 + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, - V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, - J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, - J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, - C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, - K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, - J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, - V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, - B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, - S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, - A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, - D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, - J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, - A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, - R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, - D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, - V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, - Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, - D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, - A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, - and R. J. Harrison - "NWChem: Past, present, and future - J. Chem. Phys. 152, 184102 (2020) - doi:10.1063/5.0004997 - + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -4404,4 +4398,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 3.8s wall: 3.9s + Total times cpu: 0.8s wall: 1.0s diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_ks.out b/data/NWChem/basicNWChem7.0/dvb_sp_ks.out index f3b77be9a..0aa06a2d6 100644 --- a/data/NWChem/basicNWChem7.0/dvb_sp_ks.out +++ b/data/NWChem/basicNWChem7.0/dvb_sp_ks.out @@ -1,26 +1,26 @@ argument 1 = dvb_sp_ks.in - - - Northwest Computational Chemistry Package (NWChem) 7.0.2 + + + Northwest Computational Chemistry Package (NWChem) 7.0.0 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2020 + + Copyright (c) 1994-2019 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = osmium - program = nwchem - date = Sat Jun 4 13:33:20 2022 + hostname = smp-n17.sam.pitt.edu + program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem + date = Tue Sep 20 18:25:07 2022 - compiled = Fri_Jul_02_16:33:00_2021 - source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src - nwchem branch = 7.0.2 - nwchem revision = b9985dfa - ga revision = 5.7.2 - use scalapack = T + compiled = Wed_May_13_13:33:26_2020 + source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 + nwchem branch = 7.0.0 + nwchem revision = N/A + ga revision = 5.7.1 + use scalapack = F input = dvb_sp_ks.in prefix = dvb. data base = ./dvb.db status = startup - nproc = 1 + nproc = 4 time left = -1s @@ -58,27 +58,27 @@ Memory information ------------------ - heap = 13107198 doubles = 100.0 Mbytes - stack = 13107195 doubles = 100.0 Mbytes + heap = 13107196 doubles = 100.0 Mbytes + stack = 13107201 doubles = 100.0 Mbytes global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) - total = 52428793 doubles = 400.0 Mbytes + total = 52428797 doubles = 400.0 Mbytes verify = yes hardfail = no Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + Divinylbenzene in STO-3G basis set ---------------------------------- @@ -90,15 +90,15 @@ ------ auto-z ------ - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - - + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 C 6.0000 0.23680554 1.41416660 0.00000000 @@ -121,13 +121,13 @@ 18 H 1.0000 -1.44522900 3.70144241 0.00000000 19 H 1.0000 0.04815351 -4.93192286 0.00000000 20 H 1.0000 -0.04815351 4.93192286 0.00000000 - + Atomic Mass ----------- - + C 12.000000 H 1.007825 - + Effective nuclear repulsion energy (a.u.) 445.9370121674 @@ -136,26 +136,26 @@ X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - + Z-matrix (autoz) -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value ----------- -------- ----- ----- ----- ----- ----- ---------- 1 Stretch 1 3 1.42204 @@ -228,7 +228,7 @@ 68 Torsion 4 2 11 13 0.00000 69 Torsion 4 2 11 15 180.00000 70 Torsion 4 6 1 12 180.00000 - 71 Torsion 5 2 4 6 -0.00000 + 71 Torsion 5 2 4 6 0.00000 72 Torsion 5 2 4 8 180.00000 73 Torsion 5 2 11 13 180.00000 74 Torsion 5 2 11 15 0.00000 @@ -238,18 +238,18 @@ 78 Torsion 6 1 12 14 180.00000 79 Torsion 6 1 12 16 0.00000 80 Torsion 6 4 2 11 180.00000 - 81 Torsion 7 3 1 12 -0.00000 + 81 Torsion 7 3 1 12 0.00000 82 Torsion 7 3 5 9 0.00000 - 83 Torsion 8 4 2 11 -0.00000 + 83 Torsion 8 4 2 11 0.00000 84 Torsion 8 4 6 10 0.00000 85 Torsion 9 5 2 11 0.00000 86 Torsion 10 6 1 12 0.00000 87 Torsion 13 11 15 17 180.00000 - 88 Torsion 13 11 15 19 -0.00000 + 88 Torsion 13 11 15 19 0.00000 89 Torsion 14 12 16 18 180.00000 - 90 Torsion 14 12 16 20 -0.00000 - - + 90 Torsion 14 12 16 20 0.00000 + + XYZ format geometry ------------------- 20 @@ -274,7 +274,7 @@ H -1.44522900 3.70144241 0.00000000 H 0.04815351 -4.93192286 0.00000000 H -0.04815351 4.93192286 0.00000000 - + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -347,9 +347,6 @@ - library name resolved from: environment - library file name is: - Summary of "ao basis" -> "" (cartesian) @@ -361,20 +358,18 @@ NWChem Property Module ---------------------- - - + + Divinylbenzene in STO-3G basis set - - itol2e modified to match energy - convergence criterion. - + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + Basis "ao basis" -> "ao basis" (cartesian) ----- C (Carbon) @@ -384,15 +379,15 @@ 1 S 7.16168370E+01 0.154329 1 S 1.30450960E+01 0.535328 1 S 3.53051220E+00 0.444635 - + 2 S 2.94124940E+00 -0.099967 2 S 6.83483100E-01 0.399513 2 S 2.22289900E-01 0.700115 - + 3 P 2.94124940E+00 0.155916 3 P 6.83483100E-01 0.607684 3 P 2.22289900E-01 0.391957 - + H (Hydrogen) ------------ Exponent Coefficients @@ -400,7 +395,7 @@ 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + Summary of "ao basis" -> "ao basis" (cartesian) @@ -423,16 +418,14 @@ Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 - + Caching 1-el integrals - itol2e modified to match energy - convergence criterion. - + General Information ------------------- SCF calculation type: DFT @@ -450,7 +443,7 @@ Convergence on energy requested: 1.00D-07 Convergence on density requested: 1.00D-05 Convergence on gradient requested: 5.00D-04 - + XC Information -------------- B3LYP Method XC Potential @@ -459,7 +452,7 @@ Becke 1988 Exchange Functional 0.720 non-local Lee-Yang-Parr Correlation Functional 0.810 VWN I RPA Correlation Functional 0.190 local - + Grid Information ---------------- Grid used for XC integration: xfine @@ -472,7 +465,7 @@ Grid pruning is: on Number of quadrature shells: 1000 Spatial weights used: Erf1 - + Convergence Information ----------------------- Convergence aids based upon iterative change in @@ -487,7 +480,7 @@ dE on: start ASAP start dE off: 2 iters 30 iters 30 iters - + Screening Tolerance Information ------------------------------- Density screening/tol_rho: 1.00D-11 @@ -501,15 +494,15 @@ 1 2 3 4 5 6 ----------- ----------- ----------- ----------- ----------- ----------- - 1 1.00000 0.24836 -0.00000 -0.00000 0.00000 0.00000 - 2 0.24836 1.00000 0.00000 -0.00000 0.00000 0.00030 - 3 0.00000 0.00000 1.00000 0.00000 0.00000 -0.00014 - 4 -0.00000 -0.00000 0.00000 1.00000 0.00000 -0.00081 + 1 1.00000 0.24836 -0.00000 0.00000 0.00000 0.00000 + 2 0.24836 1.00000 -0.00000 0.00000 0.00000 0.00030 + 3 -0.00000 -0.00000 1.00000 -0.00000 0.00000 -0.00014 + 4 0.00000 0.00000 -0.00000 1.00000 0.00000 -0.00081 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 6 0.00000 0.00030 -0.00014 -0.00081 0.00000 1.00000 7 0.00030 0.02187 -0.00590 -0.03524 0.00000 0.24836 - 8 0.00014 0.00590 0.00661 -0.01021 0.00000 -0.00000 - 9 0.00081 0.03524 -0.01021 -0.05268 0.00000 0.00000 + 8 0.00014 0.00590 0.00661 -0.01021 0.00000 0.00000 + 9 0.00081 0.03524 -0.01021 -0.05268 0.00000 -0.00000 10 0.00000 0.00000 0.00000 0.00000 0.00832 0.00000 11 0.00000 0.03557 0.04482 -0.03839 0.00000 0.00000 12 0.03557 0.35371 0.28849 -0.24714 0.00000 0.00159 @@ -569,15 +562,15 @@ 3 -0.00590 0.00661 -0.01021 0.00000 0.04482 0.28849 4 -0.03524 -0.01021 -0.05268 0.00000 -0.03839 -0.24714 5 0.00000 0.00000 0.00000 0.00832 0.00000 0.00000 - 6 0.24836 0.00000 0.00000 0.00000 0.00000 0.00159 - 7 1.00000 -0.00000 0.00000 0.00000 0.00159 0.05619 - 8 -0.00000 1.00000 0.00000 0.00000 0.00235 0.05280 - 9 0.00000 0.00000 1.00000 0.00000 0.00288 0.06468 + 6 0.24836 0.00000 -0.00000 0.00000 0.00000 0.00159 + 7 1.00000 0.00000 -0.00000 0.00000 0.00159 0.05619 + 8 0.00000 1.00000 -0.00000 0.00000 0.00235 0.05280 + 9 -0.00000 -0.00000 1.00000 0.00000 0.00288 0.06468 10 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 11 0.00159 0.00235 0.00288 0.00000 1.00000 0.24836 12 0.05619 0.05280 0.06468 0.00000 0.24836 1.00000 - 13 -0.05280 -0.03131 -0.06691 0.00000 0.00000 0.00000 - 14 -0.06468 -0.06691 -0.05866 0.00000 -0.00000 -0.00000 + 13 -0.05280 -0.03131 -0.06691 0.00000 -0.00000 -0.00000 + 14 -0.06468 -0.06691 -0.05866 0.00000 -0.00000 0.00000 15 0.00000 0.00000 0.00000 0.02331 0.00000 0.00000 16 0.03557 -0.04482 0.03839 0.00000 0.00000 0.00039 17 0.35371 -0.28849 0.24714 0.00000 0.00039 0.02519 @@ -637,15 +630,15 @@ 8 -0.03131 -0.06691 0.00000 -0.04482 -0.28849 -0.10190 9 -0.06691 -0.05866 0.00000 0.03839 0.24714 0.26261 10 0.00000 0.00000 0.02331 0.00000 0.00000 0.00000 - 11 0.00000 -0.00000 0.00000 0.00000 0.00039 0.00097 - 12 0.00000 -0.00000 0.00000 0.00039 0.02519 0.03810 + 11 -0.00000 -0.00000 0.00000 0.00000 0.00039 0.00097 + 12 -0.00000 0.00000 0.00000 0.00039 0.02519 0.03810 13 1.00000 0.00000 0.00000 -0.00097 -0.03810 -0.05238 14 0.00000 1.00000 0.00000 -0.00036 -0.01415 -0.02305 15 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 16 -0.00097 -0.00036 0.00000 1.00000 0.24836 -0.00000 - 17 -0.03810 -0.01415 0.00000 0.24836 1.00000 -0.00000 - 18 -0.05238 -0.02305 0.00000 -0.00000 -0.00000 1.00000 - 19 -0.02305 0.00113 0.00000 0.00000 0.00000 0.00000 + 16 -0.00097 -0.00036 0.00000 1.00000 0.24836 0.00000 + 17 -0.03810 -0.01415 0.00000 0.24836 1.00000 0.00000 + 18 -0.05238 -0.02305 0.00000 0.00000 0.00000 1.00000 + 19 -0.02305 0.00113 0.00000 0.00000 -0.00000 0.00000 20 0.00000 0.00000 0.00969 0.00000 0.00000 0.00000 21 -0.01014 -0.06099 0.00000 0.00000 0.00170 0.00390 22 -0.06345 -0.38176 0.00000 0.00170 0.05856 0.08539 @@ -706,14 +699,14 @@ 14 0.00113 0.00000 -0.06099 -0.38176 -0.08733 -0.31332 15 0.00000 0.00969 0.00000 0.00000 0.00000 0.00000 16 0.00000 0.00000 0.00000 0.00170 -0.00390 0.00066 - 17 0.00000 0.00000 0.00170 0.05856 -0.08539 0.01441 + 17 -0.00000 0.00000 0.00170 0.05856 -0.08539 0.01441 18 0.00000 0.00000 0.00390 0.08539 -0.11288 0.02316 19 1.00000 0.00000 -0.00066 -0.01441 0.02316 0.02049 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 21 -0.00066 0.00000 1.00000 0.24836 -0.00000 0.00000 22 -0.01441 0.00000 0.24836 1.00000 0.00000 -0.00000 23 0.02316 0.00000 -0.00000 0.00000 1.00000 0.00000 - 24 0.02049 0.00000 -0.00000 -0.00000 0.00000 1.00000 + 24 0.02049 0.00000 0.00000 -0.00000 0.00000 1.00000 25 0.00000 0.02440 0.00000 0.00000 0.00000 0.00000 26 0.06099 0.00000 0.00000 0.00038 -0.00078 0.00065 27 0.38176 0.00000 0.00038 0.02484 -0.03098 0.02550 @@ -779,9 +772,9 @@ 24 0.00000 0.00065 0.02550 0.03425 -0.01864 0.00000 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.00954 26 0.00000 1.00000 0.24836 0.00000 -0.00000 0.00000 - 27 0.00000 0.24836 1.00000 0.00000 0.00000 0.00000 - 28 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 - 29 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 27 0.00000 0.24836 1.00000 -0.00000 0.00000 0.00000 + 28 0.00000 0.00000 -0.00000 1.00000 0.00000 0.00000 + 29 0.00000 -0.00000 0.00000 0.00000 1.00000 0.00000 30 0.00954 0.00000 0.00000 0.00000 0.00000 1.00000 31 0.00000 0.00008 0.00611 0.01016 -0.00008 0.00000 32 0.00000 0.00526 0.09520 -0.07165 -0.10018 0.00000 @@ -852,7 +845,7 @@ 34 0.00071 0.05049 0.00010 1.00000 0.00000 0.00017 35 0.00000 0.00113 0.00087 0.00000 1.00000 0.24836 36 0.00015 0.03262 0.02741 0.00017 0.24836 1.00000 - 37 0.00019 -0.03181 0.03596 -0.00011 -0.00000 -0.00000 + 37 0.00019 -0.03181 0.03596 -0.00011 -0.00000 0.00000 38 0.00024 0.03532 0.01884 0.00034 -0.00000 -0.00000 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 40 0.00113 0.00000 0.00000 0.00087 0.00000 0.00000 @@ -913,12 +906,12 @@ 32 -0.03181 0.03532 0.00000 0.00000 0.00015 -0.00019 33 0.03596 0.01884 0.00000 0.00000 0.00017 0.00011 34 -0.00011 0.00034 0.00000 0.00087 0.02741 -0.03596 - 35 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 36 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 35 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 36 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 37 1.00000 0.00000 0.00000 0.00000 0.00000 0.00000 38 0.00000 1.00000 0.00000 0.00000 0.00000 -0.00000 39 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 40 0.00000 0.00000 0.00000 1.00000 0.24836 -0.00000 + 40 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 41 0.00000 0.00000 0.00000 0.24836 1.00000 0.00000 42 0.00000 -0.00000 0.00000 0.00000 0.00000 1.00000 43 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 @@ -981,7 +974,7 @@ 37 -0.00000 0.00000 -0.45129 0.00000 0.04749 0.27266 38 -0.00000 0.00000 -0.10556 0.00000 -0.05283 -0.30328 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 40 -0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 41 0.00000 0.00000 0.00000 0.48445 0.00000 0.00000 42 0.00000 0.00000 -0.00000 0.45129 -0.00000 -0.00000 43 1.00000 0.00000 -0.00000 0.10556 -0.00000 -0.00000 @@ -990,7 +983,7 @@ 46 0.10556 0.00000 0.00000 1.00000 0.00000 0.00000 47 -0.00000 0.00000 0.00611 0.00000 1.00000 0.24836 48 -0.00000 0.00000 0.10604 0.00000 0.24836 1.00000 - 49 -0.00000 0.00000 -0.12645 0.00000 -0.00000 0.00000 + 49 -0.00000 0.00000 -0.12645 0.00000 -0.00000 -0.00000 50 -0.00000 0.00000 0.04805 0.00000 -0.00000 -0.00000 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 52 0.05283 0.00000 0.00000 0.00611 0.00000 0.00000 @@ -1051,14 +1044,14 @@ 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 45 -0.12645 0.04805 0.00000 0.00000 0.00000 -0.00000 46 0.00000 0.00000 0.00000 0.00611 0.10604 0.12645 - 47 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 48 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 47 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 48 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 49 1.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 50 -0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 51 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 52 0.00000 0.00000 0.00000 1.00000 0.24836 -0.00000 - 53 -0.00000 0.00000 0.00000 0.24836 1.00000 -0.00000 - 54 0.00000 0.00000 0.00000 0.00000 -0.00000 1.00000 + 52 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 53 -0.00000 0.00000 0.00000 0.24836 1.00000 0.00000 + 54 0.00000 0.00000 0.00000 0.00000 0.00000 1.00000 55 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 57 0.45887 0.07655 0.00000 0.00000 0.00000 0.00000 @@ -1119,7 +1112,7 @@ 49 0.00000 0.00000 0.45887 -0.00000 -0.13400 -0.00000 50 -0.00000 0.00000 0.07655 0.00000 -0.44525 0.00000 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 52 -0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 + 52 0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 53 0.00000 0.00000 0.00000 0.48732 0.00000 0.48692 54 -0.00000 0.00000 0.00000 -0.45887 0.00000 0.13400 55 1.00000 0.00000 -0.00000 -0.07655 -0.00000 0.44525 @@ -1128,25 +1121,25 @@ 58 -0.07655 0.00000 0.00000 1.00000 0.00000 0.14897 59 -0.00000 0.00000 0.14897 0.00000 1.00000 0.00000 60 0.44525 0.00000 0.00000 0.14897 0.00000 1.00000 - + Superposition of Atomic Density Guess ------------------------------------- - + Sum of atomic energies: -376.44825176 global array: Temp HCore[1:60,1:60], handle: -988 1 2 3 4 5 6 ----------- ----------- ----------- ----------- ----------- ----------- - 1 1.00000 0.24836 -0.00000 -0.00000 0.00000 0.00000 - 2 0.24836 1.00000 0.00000 -0.00000 0.00000 0.00030 - 3 0.00000 0.00000 1.00000 0.00000 0.00000 -0.00014 - 4 -0.00000 -0.00000 0.00000 1.00000 0.00000 -0.00081 + 1 1.00000 0.24836 -0.00000 0.00000 0.00000 0.00000 + 2 0.24836 1.00000 -0.00000 0.00000 0.00000 0.00030 + 3 -0.00000 -0.00000 1.00000 -0.00000 0.00000 -0.00014 + 4 0.00000 0.00000 -0.00000 1.00000 0.00000 -0.00081 5 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 6 0.00000 0.00030 -0.00014 -0.00081 0.00000 1.00000 7 0.00030 0.02187 -0.00590 -0.03524 0.00000 0.24836 - 8 0.00014 0.00590 0.00661 -0.01021 0.00000 -0.00000 - 9 0.00081 0.03524 -0.01021 -0.05268 0.00000 0.00000 + 8 0.00014 0.00590 0.00661 -0.01021 0.00000 0.00000 + 9 0.00081 0.03524 -0.01021 -0.05268 0.00000 -0.00000 10 0.00000 0.00000 0.00000 0.00000 0.00832 0.00000 11 0.00000 0.03557 0.04482 -0.03839 0.00000 0.00000 12 0.03557 0.35371 0.28849 -0.24714 0.00000 0.00159 @@ -1206,15 +1199,15 @@ 3 -0.00590 0.00661 -0.01021 0.00000 0.04482 0.28849 4 -0.03524 -0.01021 -0.05268 0.00000 -0.03839 -0.24714 5 0.00000 0.00000 0.00000 0.00832 0.00000 0.00000 - 6 0.24836 0.00000 0.00000 0.00000 0.00000 0.00159 - 7 1.00000 -0.00000 0.00000 0.00000 0.00159 0.05619 - 8 -0.00000 1.00000 0.00000 0.00000 0.00235 0.05280 - 9 0.00000 0.00000 1.00000 0.00000 0.00288 0.06468 + 6 0.24836 0.00000 -0.00000 0.00000 0.00000 0.00159 + 7 1.00000 0.00000 -0.00000 0.00000 0.00159 0.05619 + 8 0.00000 1.00000 -0.00000 0.00000 0.00235 0.05280 + 9 -0.00000 -0.00000 1.00000 0.00000 0.00288 0.06468 10 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 11 0.00159 0.00235 0.00288 0.00000 1.00000 0.24836 12 0.05619 0.05280 0.06468 0.00000 0.24836 1.00000 - 13 -0.05280 -0.03131 -0.06691 0.00000 0.00000 0.00000 - 14 -0.06468 -0.06691 -0.05866 0.00000 -0.00000 -0.00000 + 13 -0.05280 -0.03131 -0.06691 0.00000 -0.00000 -0.00000 + 14 -0.06468 -0.06691 -0.05866 0.00000 -0.00000 0.00000 15 0.00000 0.00000 0.00000 0.02331 0.00000 0.00000 16 0.03557 -0.04482 0.03839 0.00000 0.00000 0.00039 17 0.35371 -0.28849 0.24714 0.00000 0.00039 0.02519 @@ -1274,15 +1267,15 @@ 8 -0.03131 -0.06691 0.00000 -0.04482 -0.28849 -0.10190 9 -0.06691 -0.05866 0.00000 0.03839 0.24714 0.26261 10 0.00000 0.00000 0.02331 0.00000 0.00000 0.00000 - 11 0.00000 -0.00000 0.00000 0.00000 0.00039 0.00097 - 12 0.00000 -0.00000 0.00000 0.00039 0.02519 0.03810 + 11 -0.00000 -0.00000 0.00000 0.00000 0.00039 0.00097 + 12 -0.00000 0.00000 0.00000 0.00039 0.02519 0.03810 13 1.00000 0.00000 0.00000 -0.00097 -0.03810 -0.05238 14 0.00000 1.00000 0.00000 -0.00036 -0.01415 -0.02305 15 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 16 -0.00097 -0.00036 0.00000 1.00000 0.24836 -0.00000 - 17 -0.03810 -0.01415 0.00000 0.24836 1.00000 -0.00000 - 18 -0.05238 -0.02305 0.00000 -0.00000 -0.00000 1.00000 - 19 -0.02305 0.00113 0.00000 0.00000 0.00000 0.00000 + 16 -0.00097 -0.00036 0.00000 1.00000 0.24836 0.00000 + 17 -0.03810 -0.01415 0.00000 0.24836 1.00000 0.00000 + 18 -0.05238 -0.02305 0.00000 0.00000 0.00000 1.00000 + 19 -0.02305 0.00113 0.00000 0.00000 -0.00000 0.00000 20 0.00000 0.00000 0.00969 0.00000 0.00000 0.00000 21 -0.01014 -0.06099 0.00000 0.00000 0.00170 0.00390 22 -0.06345 -0.38176 0.00000 0.00170 0.05856 0.08539 @@ -1343,14 +1336,14 @@ 14 0.00113 0.00000 -0.06099 -0.38176 -0.08733 -0.31332 15 0.00000 0.00969 0.00000 0.00000 0.00000 0.00000 16 0.00000 0.00000 0.00000 0.00170 -0.00390 0.00066 - 17 0.00000 0.00000 0.00170 0.05856 -0.08539 0.01441 + 17 -0.00000 0.00000 0.00170 0.05856 -0.08539 0.01441 18 0.00000 0.00000 0.00390 0.08539 -0.11288 0.02316 19 1.00000 0.00000 -0.00066 -0.01441 0.02316 0.02049 20 0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 21 -0.00066 0.00000 1.00000 0.24836 -0.00000 0.00000 22 -0.01441 0.00000 0.24836 1.00000 0.00000 -0.00000 23 0.02316 0.00000 -0.00000 0.00000 1.00000 0.00000 - 24 0.02049 0.00000 -0.00000 -0.00000 0.00000 1.00000 + 24 0.02049 0.00000 0.00000 -0.00000 0.00000 1.00000 25 0.00000 0.02440 0.00000 0.00000 0.00000 0.00000 26 0.06099 0.00000 0.00000 0.00038 -0.00078 0.00065 27 0.38176 0.00000 0.00038 0.02484 -0.03098 0.02550 @@ -1416,9 +1409,9 @@ 24 0.00000 0.00065 0.02550 0.03425 -0.01864 0.00000 25 1.00000 0.00000 0.00000 0.00000 0.00000 0.00954 26 0.00000 1.00000 0.24836 0.00000 -0.00000 0.00000 - 27 0.00000 0.24836 1.00000 0.00000 0.00000 0.00000 - 28 0.00000 0.00000 0.00000 1.00000 0.00000 0.00000 - 29 0.00000 0.00000 0.00000 0.00000 1.00000 0.00000 + 27 0.00000 0.24836 1.00000 -0.00000 0.00000 0.00000 + 28 0.00000 0.00000 -0.00000 1.00000 0.00000 0.00000 + 29 0.00000 -0.00000 0.00000 0.00000 1.00000 0.00000 30 0.00954 0.00000 0.00000 0.00000 0.00000 1.00000 31 0.00000 0.00008 0.00611 0.01016 -0.00008 0.00000 32 0.00000 0.00526 0.09520 -0.07165 -0.10018 0.00000 @@ -1489,7 +1482,7 @@ 34 0.00071 0.05049 0.00010 1.00000 0.00000 0.00017 35 0.00000 0.00113 0.00087 0.00000 1.00000 0.24836 36 0.00015 0.03262 0.02741 0.00017 0.24836 1.00000 - 37 0.00019 -0.03181 0.03596 -0.00011 -0.00000 -0.00000 + 37 0.00019 -0.03181 0.03596 -0.00011 -0.00000 0.00000 38 0.00024 0.03532 0.01884 0.00034 -0.00000 -0.00000 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 40 0.00113 0.00000 0.00000 0.00087 0.00000 0.00000 @@ -1550,12 +1543,12 @@ 32 -0.03181 0.03532 0.00000 0.00000 0.00015 -0.00019 33 0.03596 0.01884 0.00000 0.00000 0.00017 0.00011 34 -0.00011 0.00034 0.00000 0.00087 0.02741 -0.03596 - 35 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 36 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 35 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 36 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 37 1.00000 0.00000 0.00000 0.00000 0.00000 0.00000 38 0.00000 1.00000 0.00000 0.00000 0.00000 -0.00000 39 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 40 0.00000 0.00000 0.00000 1.00000 0.24836 -0.00000 + 40 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 41 0.00000 0.00000 0.00000 0.24836 1.00000 0.00000 42 0.00000 -0.00000 0.00000 0.00000 0.00000 1.00000 43 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 @@ -1618,7 +1611,7 @@ 37 -0.00000 0.00000 -0.45129 0.00000 0.04749 0.27266 38 -0.00000 0.00000 -0.10556 0.00000 -0.05283 -0.30328 39 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 40 -0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 + 40 0.00000 0.00000 0.00000 0.06070 0.00000 0.00000 41 0.00000 0.00000 0.00000 0.48445 0.00000 0.00000 42 0.00000 0.00000 -0.00000 0.45129 -0.00000 -0.00000 43 1.00000 0.00000 -0.00000 0.10556 -0.00000 -0.00000 @@ -1627,7 +1620,7 @@ 46 0.10556 0.00000 0.00000 1.00000 0.00000 0.00000 47 -0.00000 0.00000 0.00611 0.00000 1.00000 0.24836 48 -0.00000 0.00000 0.10604 0.00000 0.24836 1.00000 - 49 -0.00000 0.00000 -0.12645 0.00000 -0.00000 0.00000 + 49 -0.00000 0.00000 -0.12645 0.00000 -0.00000 -0.00000 50 -0.00000 0.00000 0.04805 0.00000 -0.00000 -0.00000 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 52 0.05283 0.00000 0.00000 0.00611 0.00000 0.00000 @@ -1688,14 +1681,14 @@ 44 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 45 -0.12645 0.04805 0.00000 0.00000 0.00000 -0.00000 46 0.00000 0.00000 0.00000 0.00611 0.10604 0.12645 - 47 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 48 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 47 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 48 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 49 1.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 50 -0.00000 1.00000 0.00000 0.00000 0.00000 0.00000 51 0.00000 0.00000 1.00000 0.00000 0.00000 0.00000 - 52 0.00000 0.00000 0.00000 1.00000 0.24836 -0.00000 - 53 -0.00000 0.00000 0.00000 0.24836 1.00000 -0.00000 - 54 0.00000 0.00000 0.00000 0.00000 -0.00000 1.00000 + 52 0.00000 0.00000 0.00000 1.00000 0.24836 0.00000 + 53 -0.00000 0.00000 0.00000 0.24836 1.00000 0.00000 + 54 0.00000 0.00000 0.00000 0.00000 0.00000 1.00000 55 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 56 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 57 0.45887 0.07655 0.00000 0.00000 0.00000 0.00000 @@ -1756,7 +1749,7 @@ 49 0.00000 0.00000 0.45887 -0.00000 -0.13400 -0.00000 50 -0.00000 0.00000 0.07655 0.00000 -0.44525 0.00000 51 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 52 -0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 + 52 0.00000 0.00000 0.00000 0.06141 0.00000 0.06131 53 0.00000 0.00000 0.00000 0.48732 0.00000 0.48692 54 -0.00000 0.00000 0.00000 -0.45887 0.00000 0.13400 55 1.00000 0.00000 -0.00000 -0.07655 -0.00000 0.44525 @@ -1765,7 +1758,7 @@ 58 -0.07655 0.00000 0.00000 1.00000 0.00000 0.14897 59 -0.00000 0.00000 0.14897 0.00000 1.00000 0.00000 60 0.44525 0.00000 0.00000 0.14897 0.00000 1.00000 - + Non-variational initial energy ------------------------------ @@ -1774,17 +1767,17 @@ 2-e energy = 576.084617 HOMO = -0.037645 LUMO = 0.163723 - - + + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 ag 2 bu 3 ag 4 bu 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -1794,138 +1787,150 @@ 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 bu - + Time after variat. SCF: 0.2 Time prior to 1st pass: 0.2 + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507871 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 + + Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 - Max. records in memory = 522 Max. recs in file = ********* + Max. records in memory = 132 Max. recs in file = 2708430 Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 0.00 242 - Stack Space remaining (MW): 13.11 13106276 + Heap Space remaining (MW): 11.09 11088324 + Stack Space remaining (MW): 13.11 13106284 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.2544333294 -8.28D+02 1.42D-02 3.78D-01 2.2 - d= 0,ls=0.0,diis 2 -382.3017297979 -4.73D-02 6.99D-03 3.82D-02 3.3 - d= 0,ls=0.0,diis 3 -382.2954334686 6.30D-03 4.21D-03 7.95D-02 4.7 - d= 0,ls=0.0,diis 4 -382.3080988923 -1.27D-02 5.17D-04 8.80D-04 6.2 - d= 0,ls=0.0,diis 5 -382.3082352456 -1.36D-04 1.18D-04 4.46D-05 7.7 + d= 0,ls=0.0,diis 1 -382.2544336214 -8.28D+02 1.42D-02 3.78D-01 1.4 + d= 0,ls=0.0,diis 2 -382.3017302191 -4.73D-02 6.99D-03 3.82D-02 1.9 + d= 0,ls=0.0,diis 3 -382.2954335879 6.30D-03 4.21D-03 7.95D-02 2.5 + d= 0,ls=0.0,diis 4 -382.3080990419 -1.27D-02 5.17D-04 8.80D-04 3.1 + d= 0,ls=0.0,diis 5 -382.3082353955 -1.36D-04 1.18D-04 4.46D-05 3.7 Resetting Diis - d= 0,ls=0.0,diis 6 -382.3082413843 -6.14D-06 3.19D-05 3.09D-06 9.1 - d= 0,ls=0.0,diis 7 -382.3082418611 -4.77D-07 1.42D-05 1.61D-07 10.6 - d= 0,ls=0.0,diis 8 -382.3082418585 2.53D-09 7.54D-06 1.77D-07 12.1 + d= 0,ls=0.0,diis 6 -382.3082415336 -6.14D-06 3.18D-05 3.09D-06 4.3 + d= 0,ls=0.0,diis 7 -382.3082420104 -4.77D-07 1.42D-05 1.61D-07 5.0 + d= 0,ls=0.0,diis 8 -382.3082420079 2.54D-09 7.54D-06 1.77D-07 5.6 - Total DFT energy = -382.308241858533 - One electron energy = -1400.645115531840 - Coulomb energy = 630.242755452145 - Exchange-Corr. energy = -57.842893946284 + Total DFT energy = -382.308242007863 + One electron energy = -1400.645114742865 + Coulomb energy = 630.242754519037 + Exchange-Corr. energy = -57.842893951481 Nuclear repulsion energy = 445.937012167446 - Numeric. integr. density = 70.000000232069 - - Total iterative time = 11.9s + Numeric. integr. density = 70.000000239452 + Total iterative time = 5.4s + Occupations of the irreducible representations ---------------------------------------------- - + irrep alpha beta -------- -------- -------- ag 15.0 15.0 au 2.0 2.0 bg 3.0 3.0 bu 15.0 15.0 - - + + DFT Final Molecular Orbital Analysis ------------------------------------ - + Vector 1 Occ=2.000000D+00 E=-1.002024D+01 Symmetry=bu - MO Center= 2.0D-11, 1.2D-10, -2.6D-34, r^2= 2.1D+00 + MO Center= -2.1D-17, -1.0D-16, 3.8D-51, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.699304 1 C s 6 -0.699304 2 C s 2 0.031560 1 C s 7 -0.031560 2 C s - 35 0.026964 11 C s 40 -0.026964 12 C s - + 35 0.026965 11 C s 40 -0.026965 12 C s + Vector 2 Occ=2.000000D+00 E=-1.002019D+01 Symmetry=ag - MO Center= -2.0D-11, -1.2D-10, 2.3D-23, r^2= 2.1D+00 + MO Center= 1.4D-15, 1.8D-14, -1.9D-24, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.699301 1 C s 6 0.699301 2 C s 2 0.031352 1 C s 7 0.031352 2 C s - 35 -0.027327 11 C s 40 -0.027327 12 C s - + 35 -0.027329 11 C s 40 -0.027329 12 C s + Vector 3 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=bu - MO Center= -4.6D-11, -2.5D-10, 9.8D-33, r^2= 8.6D+00 + MO Center= -2.8D-09, -1.5D-08, 6.0D-30, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.699780 11 C s 40 -0.699780 12 C s 36 0.030781 11 C s 41 -0.030781 12 C s - 1 -0.027417 1 C s 6 0.027417 2 C s - + 1 -0.027419 1 C s 6 0.027419 2 C s + Vector 4 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=ag - MO Center= 4.6D-11, 2.5D-10, 2.8D-18, r^2= 8.6D+00 + MO Center= 2.8D-09, 1.5D-08, -2.9D-35, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.699695 11 C s 40 0.699695 12 C s 36 0.030762 11 C s 41 0.030762 12 C s - 1 0.027650 1 C s 6 0.027650 2 C s - + 1 0.027651 1 C s 6 0.027651 2 C s + Vector 5 Occ=2.000000D+00 E=-1.000689D+01 Symmetry=ag - MO Center= -5.9D-09, 1.9D-09, 1.8D-18, r^2= 2.0D+00 + MO Center= -1.5D-09, 4.9D-10, -8.6D-19, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.546406 5 C s 26 0.546406 6 C s - 11 -0.437520 3 C s 16 -0.437520 4 C s + 21 0.546412 5 C s 26 0.546412 6 C s + 11 -0.437513 3 C s 16 -0.437513 4 C s 22 0.028151 5 C s 27 0.028151 6 C s - + Vector 6 Occ=2.000000D+00 E=-1.000688D+01 Symmetry=bu - MO Center= 5.9D-09, -1.9D-09, -6.5D-27, r^2= 2.0D+00 + MO Center= 1.5D-09, -4.8D-10, 5.5D-29, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.555875 5 C s 26 -0.555875 6 C s - 11 -0.424325 3 C s 16 0.424325 4 C s + 21 0.555878 5 C s 26 -0.555878 6 C s + 11 -0.424322 3 C s 16 0.424322 4 C s 1 -0.028677 1 C s 6 0.028677 2 C s 22 0.028651 5 C s 27 -0.028651 6 C s - + Vector 7 Occ=2.000000D+00 E=-1.000624D+01 Symmetry=bu - MO Center= 1.4D-11, -3.8D-12, 5.0D-30, r^2= 2.0D+00 + MO Center= -6.9D-12, -6.5D-12, 2.1D-30, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.556847 3 C s 16 -0.556847 4 C s - 21 0.425636 5 C s 26 -0.425636 6 C s - + 11 0.556850 3 C s 16 -0.556850 4 C s + 21 0.425632 5 C s 26 -0.425632 6 C s + Vector 8 Occ=2.000000D+00 E=-1.000609D+01 Symmetry=ag - MO Center= -1.5D-11, 4.0D-13, 5.2D-33, r^2= 2.0D+00 + MO Center= 5.3D-12, -1.9D-12, -1.3D-18, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.546516 3 C s 16 0.546516 4 C s - 21 0.437754 5 C s 26 0.437754 6 C s - 1 0.029442 1 C s 6 0.029442 2 C s - + 11 0.546522 3 C s 16 0.546522 4 C s + 21 0.437747 5 C s 26 0.437747 6 C s + 1 0.029441 1 C s 6 0.029441 2 C s + Vector 9 Occ=2.000000D+00 E=-9.992163D+00 Symmetry=bu - MO Center= 1.2D-10, -1.2D-09, -4.8D-33, r^2= 1.5D+01 + MO Center= 6.0D-18, 8.2D-16, 3.6D-34, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700479 15 C s 52 -0.700479 16 C s 48 0.030860 15 C s 53 -0.030860 16 C s - + Vector 10 Occ=2.000000D+00 E=-9.992163D+00 Symmetry=ag - MO Center= -1.2D-10, 1.2D-09, 6.8D-18, r^2= 1.5D+01 + MO Center= 1.6D-15, -2.3D-15, 2.4D-34, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700478 15 C s 52 0.700478 16 C s 48 0.030860 15 C s 53 0.030860 16 C s - - Vector 11 Occ=2.000000D+00 E=-8.094669D-01 Symmetry=ag - MO Center= 2.3D-17, 5.4D-18, -3.4D-32, r^2= 3.0D+00 + + Vector 11 Occ=2.000000D+00 E=-8.094667D-01 Symmetry=ag + MO Center= 3.0D-18, -5.0D-17, 9.5D-33, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.274702 1 C s 7 0.274702 2 C s @@ -1933,9 +1938,9 @@ 22 0.246689 5 C s 27 0.246689 6 C s 36 0.127806 11 C s 41 0.127806 12 C s 1 -0.107859 1 C s 6 -0.107859 2 C s - - Vector 12 Occ=2.000000D+00 E=-7.539346D-01 Symmetry=bu - MO Center= 5.6D-15, 1.0D-13, -1.3D-25, r^2= 7.8D+00 + + Vector 12 Occ=2.000000D+00 E=-7.539347D-01 Symmetry=bu + MO Center= 1.4D-15, -1.5D-14, -1.4D-25, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 -0.297169 11 C s 41 0.297169 12 C s @@ -1943,9 +1948,9 @@ 48 -0.209313 15 C s 53 0.209313 16 C s 35 0.113817 11 C s 40 -0.113817 12 C s 22 -0.112555 5 C s 27 0.112555 6 C s - - Vector 13 Occ=2.000000D+00 E=-7.178615D-01 Symmetry=ag - MO Center= 2.5D-14, -1.8D-13, -3.2D-16, r^2= 1.1D+01 + + Vector 13 Occ=2.000000D+00 E=-7.178616D-01 Symmetry=ag + MO Center= 6.2D-16, 1.5D-14, -1.2D-32, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.314817 11 C s 41 0.314817 12 C s @@ -1953,9 +1958,9 @@ 12 -0.121455 3 C s 17 -0.121455 4 C s 35 -0.119239 11 C s 40 -0.119239 12 C s 47 -0.117464 15 C s 52 -0.117464 16 C s - + Vector 14 Occ=2.000000D+00 E=-6.999224D-01 Symmetry=bu - MO Center= -2.5D-14, -1.4D-14, 9.4D-30, r^2= 3.2D+00 + MO Center= 1.0D-15, -1.6D-15, 5.7D-27, r^2= 3.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.357134 3 C s 17 -0.357134 4 C s @@ -1963,9 +1968,9 @@ 11 -0.132324 3 C s 16 0.132324 4 C s 3 0.124986 1 C px 8 0.124986 2 C px 21 -0.120093 5 C s 26 0.120093 6 C s - + Vector 15 Occ=2.000000D+00 E=-6.673150D-01 Symmetry=bu - MO Center= -1.9D-15, 8.4D-14, -2.0D-25, r^2= 9.1D+00 + MO Center= -3.7D-16, 3.3D-15, -3.2D-26, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.299508 15 C s 53 -0.299508 16 C s @@ -1973,29 +1978,29 @@ 22 -0.202279 5 C s 27 0.202279 6 C s 36 0.136845 11 C s 41 -0.136845 12 C s 38 -0.129054 11 C py 43 -0.129054 12 C py - + Vector 16 Occ=2.000000D+00 E=-5.885094D-01 Symmetry=ag - MO Center= 7.8D-16, -1.3D-16, 4.0D-17, r^2= 8.4D+00 + MO Center= -3.7D-15, -2.0D-16, -1.1D-32, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.241407 15 C s 53 0.241407 16 C s + 48 0.241406 15 C s 53 0.241406 16 C s 22 0.233815 5 C s 27 0.233815 6 C s 2 -0.206378 1 C s 7 -0.206378 2 C s 14 -0.160007 3 C py 19 0.160007 4 C py 36 -0.159613 11 C s 41 -0.159613 12 C s - + Vector 17 Occ=2.000000D+00 E=-5.591516D-01 Symmetry=ag - MO Center= 2.2D-15, 5.1D-15, -4.8D-17, r^2= 5.1D+00 + MO Center= 8.2D-16, -5.3D-15, -5.6D-17, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.326033 3 C s 17 0.326033 4 C s - 3 0.184865 1 C px 8 -0.184865 2 C px + 3 0.184864 1 C px 8 -0.184864 2 C px 22 -0.170744 5 C s 24 0.170444 5 C py 27 -0.170744 6 C s 29 -0.170444 6 C py 31 0.169234 7 H s 32 0.169234 8 H s - - Vector 18 Occ=2.000000D+00 E=-5.314209D-01 Symmetry=bu - MO Center= -3.7D-17, 2.7D-15, -9.3D-24, r^2= 1.2D+01 + + Vector 18 Occ=2.000000D+00 E=-5.314208D-01 Symmetry=bu + MO Center= -2.7D-15, 5.1D-15, 3.9D-27, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.302767 11 C s 41 -0.302767 12 C s @@ -2003,19 +2008,19 @@ 45 0.170519 13 H s 46 -0.170519 14 H s 57 -0.160626 17 H s 58 0.160626 18 H s 12 0.154466 3 C s 17 -0.154466 4 C s - + Vector 19 Occ=2.000000D+00 E=-5.099375D-01 Symmetry=ag - MO Center= 1.7D-15, -7.5D-16, -2.7D-19, r^2= 7.5D+00 + MO Center= -2.2D-15, -5.0D-15, -7.3D-18, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.201895 5 C px 28 -0.201895 6 C px - 13 0.184493 3 C px 18 -0.184493 4 C px + 13 0.184492 3 C px 18 -0.184492 4 C px 36 0.180759 11 C s 41 0.180759 12 C s 33 0.169279 9 H s 34 0.169279 10 H s 22 0.166024 5 C s 27 0.166024 6 C s - - Vector 20 Occ=2.000000D+00 E=-4.575997D-01 Symmetry=ag - MO Center= 1.5D-14, -2.0D-14, -5.2D-17, r^2= 9.5D+00 + + Vector 20 Occ=2.000000D+00 E=-4.575996D-01 Symmetry=ag + MO Center= -2.0D-14, 4.2D-14, -9.6D-18, r^2= 9.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.212730 15 C px 54 -0.212730 16 C px @@ -2023,39 +2028,39 @@ 57 0.179111 17 H s 58 0.179111 18 H s 45 -0.153094 13 H s 46 -0.153094 14 H s 14 0.141385 3 C py 19 -0.141385 4 C py - - Vector 21 Occ=2.000000D+00 E=-4.391972D-01 Symmetry=bu - MO Center= -2.7D-15, 6.2D-15, 1.1D-22, r^2= 1.0D+01 + + Vector 21 Occ=2.000000D+00 E=-4.391971D-01 Symmetry=bu + MO Center= 5.9D-15, -4.1D-14, -1.8D-31, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.219233 11 C px 42 0.219233 12 C px 50 0.210291 15 C py 55 0.210291 16 C py - 14 0.184961 3 C py 19 0.184961 4 C py + 14 0.184960 3 C py 19 0.184960 4 C py 59 -0.178127 19 H s 60 0.178127 20 H s 45 -0.155495 13 H s 46 0.155495 14 H s - + Vector 22 Occ=2.000000D+00 E=-4.110182D-01 Symmetry=bu - MO Center= 3.9D-15, 2.4D-14, 4.2D-22, r^2= 6.8D+00 + MO Center= 1.3D-14, 2.2D-14, -2.9D-23, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.235310 1 C s 7 -0.235310 2 C s - 33 0.230466 9 H s 34 -0.230466 10 H s - 31 -0.226657 7 H s 32 0.226657 8 H s - 13 -0.222260 3 C px 18 -0.222260 4 C px + 33 0.230467 9 H s 34 -0.230467 10 H s + 31 -0.226658 7 H s 32 0.226658 8 H s + 13 -0.222261 3 C px 18 -0.222261 4 C px 24 -0.177972 5 C py 29 -0.177972 6 C py - - Vector 23 Occ=2.000000D+00 E=-3.976932D-01 Symmetry=bu - MO Center= 1.5D-14, -1.1D-13, 2.7D-22, r^2= 8.7D+00 + + Vector 23 Occ=2.000000D+00 E=-3.976933D-01 Symmetry=bu + MO Center= 8.7D-15, -6.1D-14, 3.4D-23, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.251236 5 C px 28 0.251236 6 C px 49 0.250511 15 C px 54 0.250511 16 C px - 3 -0.220826 1 C px 8 -0.220826 2 C px + 3 -0.220827 1 C px 8 -0.220827 2 C px 57 0.215415 17 H s 58 -0.215415 18 H s 38 0.181486 11 C py 43 0.181486 12 C py - + Vector 24 Occ=2.000000D+00 E=-3.959385D-01 Symmetry=ag - MO Center= -2.4D-14, 1.0D-13, 4.1D-30, r^2= 1.5D+01 + MO Center= -1.7D-14, 3.6D-14, 9.6D-31, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.338998 15 C py 55 -0.338998 16 C py @@ -2063,29 +2068,29 @@ 37 0.251492 11 C px 42 -0.251492 12 C px 45 -0.145063 13 H s 46 -0.145063 14 H s 24 0.136713 5 C py 29 -0.136713 6 C py - - Vector 25 Occ=2.000000D+00 E=-3.744295D-01 Symmetry=bu - MO Center= -1.3D-14, -7.4D-15, 6.0D-23, r^2= 4.4D+00 + + Vector 25 Occ=2.000000D+00 E=-3.744297D-01 Symmetry=bu + MO Center= 1.2D-14, 6.1D-15, -1.0D-25, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 13 0.307585 3 C px 18 0.307585 4 C px 31 0.252268 7 H s 32 -0.252268 8 H s - 24 -0.226087 5 C py 29 -0.226087 6 C py - 33 0.218182 9 H s 34 -0.218182 10 H s - 23 0.188063 5 C px 28 0.188063 6 C px - - Vector 26 Occ=2.000000D+00 E=-3.509366D-01 Symmetry=bu - MO Center= -2.2D-15, -1.2D-15, 7.0D-23, r^2= 9.0D+00 + 24 -0.226088 5 C py 29 -0.226088 6 C py + 33 0.218183 9 H s 34 -0.218183 10 H s + 23 0.188062 5 C px 28 0.188062 6 C px + + Vector 26 Occ=2.000000D+00 E=-3.509367D-01 Symmetry=bu + MO Center= 2.3D-15, -1.2D-16, 1.0D-24, r^2= 9.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.245677 15 C py 55 -0.245677 16 C py - 14 0.224345 3 C py 19 0.224345 4 C py - 37 -0.201679 11 C px 42 -0.201679 12 C px - 24 -0.193258 5 C py 29 -0.193258 6 C py - 38 0.187744 11 C py 43 0.187744 12 C py - + 14 0.224344 3 C py 19 0.224344 4 C py + 37 -0.201678 11 C px 42 -0.201678 12 C px + 24 -0.193257 5 C py 29 -0.193257 6 C py + 38 0.187745 11 C py 43 0.187745 12 C py + Vector 27 Occ=2.000000D+00 E=-3.470152D-01 Symmetry=ag - MO Center= 8.8D-17, 7.5D-15, -2.4D-16, r^2= 1.2D+01 + MO Center= 4.9D-17, 9.0D-16, 1.9D-16, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.295189 15 C px 54 -0.295189 16 C px @@ -2093,9 +2098,9 @@ 37 -0.208878 11 C px 42 0.208878 12 C px 45 0.200233 13 H s 46 0.200233 14 H s 31 -0.156471 7 H s 32 -0.156471 8 H s - + Vector 28 Occ=2.000000D+00 E=-3.244706D-01 Symmetry=au - MO Center= -1.7D-15, 4.4D-15, 1.5D-15, r^2= 3.6D+00 + MO Center= -3.0D-16, 1.4D-15, -2.4D-17, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.337608 1 C pz 10 0.337608 2 C pz @@ -2103,29 +2108,29 @@ 25 0.297170 5 C pz 30 0.297170 6 C pz 39 0.173946 11 C pz 44 0.173946 12 C pz 51 0.092442 15 C pz 56 0.092442 16 C pz - - Vector 29 Occ=2.000000D+00 E=-3.110644D-01 Symmetry=bu - MO Center= -4.1D-16, 5.9D-15, -1.5D-24, r^2= 1.2D+01 + + Vector 29 Occ=2.000000D+00 E=-3.110645D-01 Symmetry=bu + MO Center= 1.2D-15, -3.7D-16, 1.0D-32, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.259102 13 H s 46 -0.259102 14 H s - 4 0.241974 1 C py 9 0.241974 2 C py + 4 0.241973 1 C py 9 0.241973 2 C py 57 0.231029 17 H s 58 -0.231029 18 H s 37 -0.217251 11 C px 42 -0.217251 12 C px 59 -0.212334 19 H s 60 0.212334 20 H s - + Vector 30 Occ=2.000000D+00 E=-2.929833D-01 Symmetry=ag - MO Center= -7.3D-17, -3.4D-15, -1.1D-15, r^2= 6.1D+00 + MO Center= 4.8D-16, 8.2D-16, -2.1D-16, r^2= 6.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 -0.278184 3 C py 19 0.278184 4 C py 4 0.268398 1 C py 9 -0.268398 2 C py - 38 0.248141 11 C py 43 -0.248141 12 C py + 38 0.248142 11 C py 43 -0.248142 12 C py 33 -0.240411 9 H s 34 -0.240411 10 H s 24 0.234450 5 C py 29 -0.234450 6 C py - + Vector 31 Occ=2.000000D+00 E=-2.874966D-01 Symmetry=ag - MO Center= 8.4D-16, -3.6D-15, 4.6D-17, r^2= 6.2D+00 + MO Center= 2.0D-17, -1.9D-16, 4.5D-18, r^2= 6.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.295855 1 C px 8 -0.295855 2 C px @@ -2133,9 +2138,9 @@ 31 -0.258071 7 H s 32 -0.258071 8 H s 13 -0.222116 3 C px 18 0.222116 4 C px 45 -0.182739 13 H s 46 -0.182739 14 H s - + Vector 32 Occ=2.000000D+00 E=-2.634557D-01 Symmetry=bg - MO Center= -4.7D-16, -3.7D-15, 7.3D-25, r^2= 7.8D+00 + MO Center= -1.8D-16, -1.6D-15, -4.4D-25, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.376480 11 C pz 44 0.376480 12 C pz @@ -2143,25 +2148,25 @@ 51 -0.271399 15 C pz 56 0.271399 16 C pz 15 0.131646 3 C pz 20 -0.131646 4 C pz 25 -0.132107 5 C pz 30 0.132107 6 C pz - + Vector 33 Occ=2.000000D+00 E=-2.123365D-01 Symmetry=au - MO Center= -1.8D-14, 8.3D-15, 2.2D-16, r^2= 1.1D+01 + MO Center= 2.1D-15, 3.0D-15, 1.1D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.417961 15 C pz 56 0.417961 16 C pz 39 0.413781 11 C pz 44 0.413781 12 C pz 15 -0.179204 3 C pz 20 -0.179204 4 C pz 25 -0.176633 5 C pz 30 -0.176633 6 C pz - + Vector 34 Occ=2.000000D+00 E=-1.951682D-01 Symmetry=bg - MO Center= 2.1D-14, -2.6D-15, -2.8D-22, r^2= 2.7D+00 + MO Center= -1.5D-15, 9.8D-17, 3.6D-18, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.463626 3 C pz 20 -0.463626 4 C pz 25 0.457537 5 C pz 30 -0.457537 6 C pz - + Vector 35 Occ=2.000000D+00 E=-1.529965D-01 Symmetry=bg - MO Center= -9.8D-17, -7.2D-15, 5.5D-23, r^2= 8.1D+00 + MO Center= -1.5D-16, -3.7D-15, -9.7D-19, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.397371 15 C pz 56 -0.397371 16 C pz @@ -2169,9 +2174,9 @@ 25 -0.230743 5 C pz 30 0.230743 6 C pz 39 0.223675 11 C pz 44 -0.223675 12 C pz 15 0.215069 3 C pz 20 -0.215069 4 C pz - - Vector 36 Occ=0.000000D+00 E= 3.750921D-02 Symmetry=au - MO Center= -1.1D-15, 8.1D-15, 5.0D-17, r^2= 8.0D+00 + + Vector 36 Occ=0.000000D+00 E= 3.750920D-02 Symmetry=au + MO Center= -6.9D-17, 2.0D-15, -4.1D-17, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.449614 15 C pz 56 -0.449614 16 C pz @@ -2179,26 +2184,26 @@ 25 -0.277553 5 C pz 30 -0.277553 6 C pz 39 0.256133 11 C pz 44 0.256133 12 C pz 15 -0.232265 3 C pz 20 -0.232265 4 C pz - - Vector 37 Occ=0.000000D+00 E= 9.011735D-02 Symmetry=au - MO Center= -1.2D-16, 6.0D-16, -2.1D-17, r^2= 2.7D+00 + + Vector 37 Occ=0.000000D+00 E= 9.011734D-02 Symmetry=au + MO Center= -6.8D-16, 2.5D-16, -5.3D-18, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.582692 3 C pz 20 0.582692 4 C pz 25 -0.553237 5 C pz 30 -0.553237 6 C pz 5 -0.031922 1 C pz 10 -0.031922 2 C pz - + Vector 38 Occ=0.000000D+00 E= 1.107280D-01 Symmetry=bg - MO Center= -1.0D-15, -1.4D-14, -1.2D-22, r^2= 1.1D+01 + MO Center= 2.6D-16, -3.8D-16, -1.3D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.522167 11 C pz 44 -0.522167 12 C pz 51 -0.523103 15 C pz 56 0.523103 16 C pz 15 0.240693 3 C pz 20 -0.240693 4 C pz 25 -0.232246 5 C pz 30 0.232246 6 C pz - + Vector 39 Occ=0.000000D+00 E= 1.822016D-01 Symmetry=au - MO Center= 4.3D-16, 6.8D-15, -9.1D-17, r^2= 7.9D+00 + MO Center= -2.2D-16, -4.6D-15, 5.9D-18, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.529134 11 C pz 44 -0.529134 12 C pz @@ -2206,9 +2211,9 @@ 51 0.379694 15 C pz 56 0.379694 16 C pz 25 -0.199198 5 C pz 30 -0.199198 6 C pz 15 -0.166739 3 C pz 20 -0.166739 4 C pz - + Vector 40 Occ=0.000000D+00 E= 2.723015D-01 Symmetry=bg - MO Center= 9.1D-16, -1.2D-15, -2.7D-23, r^2= 3.8D+00 + MO Center= 9.7D-16, 3.0D-15, 1.9D-18, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.543477 1 C pz 10 -0.543477 2 C pz @@ -2216,210 +2221,210 @@ 15 -0.464184 3 C pz 20 0.464184 4 C pz 39 0.287731 11 C pz 44 -0.287731 12 C pz 51 -0.156154 15 C pz 56 0.156154 16 C pz - - Vector 41 Occ=0.000000D+00 E= 3.324845D-01 Symmetry=ag - MO Center= -3.8D-15, -3.3D-15, -1.5D-18, r^2= 8.8D+00 + + Vector 41 Occ=0.000000D+00 E= 3.324847D-01 Symmetry=ag + MO Center= 3.4D-14, 6.8D-14, -3.5D-17, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 -0.423791 9 H s 34 -0.423791 10 H s + 33 -0.423790 9 H s 34 -0.423790 10 H s 31 -0.413781 7 H s 32 -0.413781 8 H s - 2 0.401567 1 C s 7 0.401567 2 C s + 2 0.401569 1 C s 7 0.401569 2 C s 59 -0.358542 19 H s 60 -0.358542 20 H s - 38 -0.338104 11 C py 43 0.338104 12 C py - - Vector 42 Occ=0.000000D+00 E= 3.406449D-01 Symmetry=bu - MO Center= -3.3D-16, 7.8D-15, -2.2D-23, r^2= 1.0D+01 + 38 -0.338105 11 C py 43 0.338105 12 C py + + Vector 42 Occ=0.000000D+00 E= 3.406450D-01 Symmetry=bu + MO Center= -3.4D-14, -5.6D-14, 8.4D-20, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.433826 13 H s 46 -0.433826 14 H s + 45 0.433827 13 H s 46 -0.433827 14 H s 13 0.355437 3 C px 18 0.355437 4 C px - 37 0.344558 11 C px 42 0.344558 12 C px + 37 0.344559 11 C px 42 0.344559 12 C px 31 -0.321888 7 H s 32 0.321888 8 H s - 57 -0.323132 17 H s 58 0.323132 18 H s - - Vector 43 Occ=0.000000D+00 E= 3.795217D-01 Symmetry=bu - MO Center= 6.0D-15, 1.9D-15, -1.2D-23, r^2= 7.8D+00 + 57 -0.323133 17 H s 58 0.323133 18 H s + + Vector 43 Occ=0.000000D+00 E= 3.795219D-01 Symmetry=bu + MO Center= -6.2D-15, -1.0D-14, -5.0D-19, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.546122 11 C s 41 -0.546122 12 C s - 4 0.461528 1 C py 9 0.461528 2 C py - 33 0.405565 9 H s 34 -0.405565 10 H s - 59 0.351695 19 H s 60 -0.351695 20 H s - 2 0.338384 1 C s 7 -0.338384 2 C s - - Vector 44 Occ=0.000000D+00 E= 3.812896D-01 Symmetry=ag - MO Center= -6.9D-15, -5.1D-15, -8.5D-17, r^2= 1.2D+01 + 36 0.546115 11 C s 41 -0.546115 12 C s + 4 0.461529 1 C py 9 0.461529 2 C py + 33 0.405572 9 H s 34 -0.405572 10 H s + 59 0.351697 19 H s 60 -0.351697 20 H s + 2 0.338376 1 C s 7 -0.338376 2 C s + + Vector 44 Occ=0.000000D+00 E= 3.812902D-01 Symmetry=ag + MO Center= 6.2D-15, -8.1D-15, -1.5D-17, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.579606 13 H s 46 0.579606 14 H s - 12 0.393532 3 C s 17 0.393532 4 C s - 57 -0.391438 17 H s 58 -0.391438 18 H s + 12 0.393525 3 C s 17 0.393525 4 C s + 57 -0.391441 17 H s 58 -0.391441 18 H s 36 -0.382166 11 C s 41 -0.382166 12 C s 37 0.338369 11 C px 42 -0.338369 12 C px - - Vector 45 Occ=0.000000D+00 E= 4.103422D-01 Symmetry=ag - MO Center= -2.9D-13, 8.4D-13, -3.5D-17, r^2= 1.1D+01 + + Vector 45 Occ=0.000000D+00 E= 4.103420D-01 Symmetry=ag + MO Center= -2.6D-13, 7.2D-13, -1.7D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.647347 15 C s 53 0.647347 16 C s - 22 0.620081 5 C s 27 0.620081 6 C s - 57 -0.513316 17 H s 58 -0.513316 18 H s - 12 -0.443647 3 C s 17 -0.443647 4 C s - 59 -0.320790 19 H s 60 -0.320790 20 H s - - Vector 46 Occ=0.000000D+00 E= 4.112340D-01 Symmetry=bu - MO Center= 3.0D-13, -8.5D-13, -5.9D-22, r^2= 1.1D+01 + 48 0.647348 15 C s 53 0.647348 16 C s + 22 0.620079 5 C s 27 0.620079 6 C s + 57 -0.513314 17 H s 58 -0.513314 18 H s + 12 -0.443652 3 C s 17 -0.443652 4 C s + 59 -0.320794 19 H s 60 -0.320794 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.112339D-01 Symmetry=bu + MO Center= 2.6D-13, -7.2D-13, -6.7D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.613159 5 C s 27 -0.613159 6 C s - 48 0.539736 15 C s 53 -0.539736 16 C s - 2 0.476219 1 C s 7 -0.476219 2 C s - 57 -0.447812 17 H s 58 0.447812 18 H s - 12 -0.440664 3 C s 17 0.440664 4 C s - - Vector 47 Occ=0.000000D+00 E= 4.258028D-01 Symmetry=bu - MO Center= 6.5D-15, 4.1D-15, 6.1D-23, r^2= 9.2D+00 + 22 0.613158 5 C s 27 -0.613158 6 C s + 48 0.539738 15 C s 53 -0.539738 16 C s + 2 0.476220 1 C s 7 -0.476220 2 C s + 57 -0.447816 17 H s 58 0.447816 18 H s + 12 -0.440665 3 C s 17 0.440665 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.258026D-01 Symmetry=bu + MO Center= 2.7D-15, 1.7D-15, 6.5D-19, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 0.603109 7 H s 32 -0.603109 8 H s - 36 -0.446799 11 C s 41 0.446799 12 C s + 31 0.603108 7 H s 32 -0.603108 8 H s + 36 -0.446800 11 C s 41 0.446800 12 C s 45 0.437140 13 H s 46 -0.437140 14 H s 12 -0.368677 3 C s 17 0.368677 4 C s - 59 0.337700 19 H s 60 -0.337700 20 H s - - Vector 48 Occ=0.000000D+00 E= 4.393598D-01 Symmetry=ag - MO Center= -5.4D-15, 1.2D-14, 1.1D-16, r^2= 7.5D+00 + 59 0.337702 19 H s 60 -0.337702 20 H s + + Vector 48 Occ=0.000000D+00 E= 4.393595D-01 Symmetry=ag + MO Center= -5.5D-16, -3.0D-15, 5.5D-18, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.782303 1 C s 7 0.782303 2 C s - 36 -0.556788 11 C s 41 -0.556788 12 C s - 12 -0.499654 3 C s 17 -0.499654 4 C s - 22 -0.411571 5 C s 27 -0.411571 6 C s - 48 0.409893 15 C s 53 0.409893 16 C s - - Vector 49 Occ=0.000000D+00 E= 4.537210D-01 Symmetry=bu - MO Center= -5.0D-15, -9.1D-16, -2.3D-23, r^2= 1.2D+01 + 2 0.782305 1 C s 7 0.782305 2 C s + 36 -0.556792 11 C s 41 -0.556792 12 C s + 12 -0.499660 3 C s 17 -0.499660 4 C s + 22 -0.411568 5 C s 27 -0.411568 6 C s + 48 0.409886 15 C s 53 0.409886 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.537212D-01 Symmetry=bu + MO Center= -7.6D-16, 6.6D-15, 3.4D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.706723 15 C s 53 -0.706723 16 C s - 57 -0.525560 17 H s 58 0.525560 18 H s - 33 0.477112 9 H s 34 -0.477112 10 H s - 36 -0.428994 11 C s 41 0.428994 12 C s - 22 -0.407164 5 C s 27 0.407164 6 C s - - Vector 50 Occ=0.000000D+00 E= 4.783352D-01 Symmetry=ag - MO Center= 3.9D-15, -9.1D-15, 3.0D-18, r^2= 1.1D+01 + 48 0.706721 15 C s 53 -0.706721 16 C s + 57 -0.525555 17 H s 58 0.525555 18 H s + 33 0.477113 9 H s 34 -0.477113 10 H s + 36 -0.429001 11 C s 41 0.429001 12 C s + 22 -0.407169 5 C s 27 0.407169 6 C s + + Vector 50 Occ=0.000000D+00 E= 4.783353D-01 Symmetry=ag + MO Center= -1.3D-15, 3.2D-15, 2.3D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.706221 3 C s 17 0.706221 4 C s - 22 -0.619400 5 C s 27 -0.619400 6 C s - 59 -0.475184 19 H s 60 -0.475184 20 H s - 48 0.415039 15 C s 53 0.415039 16 C s - 50 -0.382619 15 C py 55 0.382619 16 C py - - Vector 51 Occ=0.000000D+00 E= 5.255621D-01 Symmetry=ag - MO Center= 3.6D-16, 1.0D-15, 1.6D-17, r^2= 6.5D+00 + 12 0.706217 3 C s 17 0.706217 4 C s + 22 -0.619402 5 C s 27 -0.619402 6 C s + 59 -0.475187 19 H s 60 -0.475187 20 H s + 48 0.415042 15 C s 53 0.415042 16 C s + 50 -0.382621 15 C py 55 0.382621 16 C py + + Vector 51 Occ=0.000000D+00 E= 5.255619D-01 Symmetry=ag + MO Center= -9.8D-16, -2.2D-15, 5.3D-17, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.601872 1 C py 9 -0.601872 2 C py - 36 -0.491670 11 C s 41 -0.491670 12 C s + 4 0.601873 1 C py 9 -0.601873 2 C py + 36 -0.491669 11 C s 41 -0.491669 12 C s 13 -0.452502 3 C px 18 0.452502 4 C px - 2 -0.448701 1 C s 7 -0.448701 2 C s + 2 -0.448702 1 C s 7 -0.448702 2 C s 49 -0.342028 15 C px 54 0.342028 16 C px - - Vector 52 Occ=0.000000D+00 E= 5.463505D-01 Symmetry=bu - MO Center= 1.9D-15, -3.3D-15, 1.3D-22, r^2= 7.7D+00 + + Vector 52 Occ=0.000000D+00 E= 5.463507D-01 Symmetry=bu + MO Center= 2.2D-15, -1.1D-15, -1.1D-18, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.647799 3 C s 17 -0.647799 4 C s - 3 -0.560730 1 C px 8 -0.560730 2 C px - 50 0.483440 15 C py 55 0.483440 16 C py + 12 0.647801 3 C s 17 -0.647801 4 C s + 3 -0.560732 1 C px 8 -0.560732 2 C px + 50 0.483439 15 C py 55 0.483439 16 C py 24 -0.478220 5 C py 29 -0.478220 6 C py - 59 0.356006 19 H s 60 -0.356006 20 H s - - Vector 53 Occ=0.000000D+00 E= 5.764362D-01 Symmetry=ag - MO Center= -1.2D-15, -3.8D-15, 2.4D-17, r^2= 5.4D+00 + 59 0.356004 19 H s 60 -0.356004 20 H s + + Vector 53 Occ=0.000000D+00 E= 5.764358D-01 Symmetry=ag + MO Center= -1.7D-15, -7.8D-16, 1.2D-17, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.537124 3 C px 18 -0.537124 4 C px + 13 0.537125 3 C px 18 -0.537125 4 C px 23 -0.522141 5 C px 28 0.522141 6 C px - 33 0.519103 9 H s 34 0.519103 10 H s - 31 -0.448310 7 H s 32 -0.448310 8 H s - 24 0.400193 5 C py 29 -0.400193 6 C py - - Vector 54 Occ=0.000000D+00 E= 5.984383D-01 Symmetry=bu - MO Center= -2.9D-15, 2.5D-15, -1.3D-22, r^2= 4.8D+00 + 33 0.519104 9 H s 34 0.519104 10 H s + 31 -0.448313 7 H s 32 -0.448313 8 H s + 24 0.400194 5 C py 29 -0.400194 6 C py + + Vector 54 Occ=0.000000D+00 E= 5.984380D-01 Symmetry=bu + MO Center= 2.9D-15, -5.5D-16, 1.5D-18, r^2= 4.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 0.723029 3 C py 19 0.723029 4 C py - 22 0.599921 5 C s 27 -0.599921 6 C s + 22 0.599919 5 C s 27 -0.599919 6 C s 36 -0.415408 11 C s 41 0.415408 12 C s - 2 -0.405910 1 C s 7 0.405910 2 C s - 24 0.394225 5 C py 29 0.394225 6 C py - - Vector 55 Occ=0.000000D+00 E= 6.248975D-01 Symmetry=bu - MO Center= 1.8D-15, 1.3D-14, 3.0D-23, r^2= 1.1D+01 + 2 -0.405912 1 C s 7 0.405912 2 C s + 24 0.394227 5 C py 29 0.394227 6 C py + + Vector 55 Occ=0.000000D+00 E= 6.248973D-01 Symmetry=bu + MO Center= 7.5D-17, -2.1D-14, -4.8D-19, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.608534 1 C s 7 -0.608534 2 C s - 49 -0.528890 15 C px 54 -0.528890 16 C px - 38 0.480660 11 C py 43 0.480660 12 C py - 23 -0.365995 5 C px 28 -0.365995 6 C px - 57 0.363288 17 H s 58 -0.363288 18 H s - - Vector 56 Occ=0.000000D+00 E= 6.398339D-01 Symmetry=ag - MO Center= 2.5D-15, -1.8D-14, 1.3D-17, r^2= 9.4D+00 + 49 -0.528892 15 C px 54 -0.528892 16 C px + 38 0.480661 11 C py 43 0.480661 12 C py + 23 -0.365994 5 C px 28 -0.365994 6 C px + 57 0.363289 17 H s 58 -0.363289 18 H s + + Vector 56 Occ=0.000000D+00 E= 6.398334D-01 Symmetry=ag + MO Center= 1.2D-15, 2.3D-14, 1.3D-17, r^2= 9.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.549269 11 C px 42 -0.549269 12 C px 50 -0.534300 15 C py 55 0.534300 16 C py - 14 0.383479 3 C py 19 -0.383479 4 C py - 4 -0.364575 1 C py 9 0.364575 2 C py + 14 0.383477 3 C py 19 -0.383477 4 C py + 4 -0.364576 1 C py 9 0.364576 2 C py 59 -0.330751 19 H s 60 -0.330751 20 H s - + Vector 57 Occ=0.000000D+00 E= 6.828368D-01 Symmetry=ag - MO Center= -3.8D-16, 7.8D-15, -7.3D-18, r^2= 9.3D+00 + MO Center= 6.7D-16, -1.2D-15, 1.4D-17, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 38 0.663092 11 C py 43 -0.663092 12 C py - 49 -0.580411 15 C px 54 0.580411 16 C px - 24 -0.449232 5 C py 29 0.449232 6 C py + 38 0.663093 11 C py 43 -0.663093 12 C py + 49 -0.580412 15 C px 54 0.580412 16 C px + 24 -0.449231 5 C py 29 0.449231 6 C py 14 -0.392088 3 C py 19 0.392088 4 C py - 4 -0.381671 1 C py 9 0.381671 2 C py - - Vector 58 Occ=0.000000D+00 E= 7.173572D-01 Symmetry=bu - MO Center= 5.5D-17, -5.0D-16, 3.2D-24, r^2= 9.6D+00 + 4 -0.381669 1 C py 9 0.381669 2 C py + + Vector 58 Occ=0.000000D+00 E= 7.173570D-01 Symmetry=bu + MO Center= -1.0D-15, -1.7D-14, 3.1D-20, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.608023 11 C px 42 0.608023 12 C px - 48 -0.538019 15 C s 50 -0.540483 15 C py - 53 0.538019 16 C s 55 -0.540483 16 C py - 36 0.466541 11 C s 38 -0.464871 11 C py - 41 -0.466541 12 C s 43 -0.464871 12 C py - - Vector 59 Occ=0.000000D+00 E= 7.790414D-01 Symmetry=ag - MO Center= 1.9D-16, 1.3D-15, 1.7D-17, r^2= 5.4D+00 + 37 0.608025 11 C px 42 0.608025 12 C px + 48 -0.538017 15 C s 50 -0.540484 15 C py + 53 0.538017 16 C s 55 -0.540484 16 C py + 36 0.466540 11 C s 38 -0.464867 11 C py + 41 -0.466540 12 C s 43 -0.464867 12 C py + + Vector 59 Occ=0.000000D+00 E= 7.790413D-01 Symmetry=ag + MO Center= -6.0D-16, 1.7D-14, -1.9D-18, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.702431 1 C px 8 -0.702431 2 C px - 14 -0.534058 3 C py 19 0.534058 4 C py - 23 -0.435987 5 C px 28 0.435987 6 C px + 14 -0.534059 3 C py 19 0.534059 4 C py + 23 -0.435986 5 C px 28 0.435986 6 C px 37 0.429836 11 C px 42 -0.429836 12 C px 24 -0.411037 5 C py 29 0.411037 6 C py - - Vector 60 Occ=0.000000D+00 E= 7.942619D-01 Symmetry=bu - MO Center= -5.9D-16, 5.5D-16, -1.8D-26, r^2= 3.4D+00 + + Vector 60 Occ=0.000000D+00 E= 7.942624D-01 Symmetry=bu + MO Center= -3.5D-16, -3.4D-16, 8.0D-23, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.657694 1 C py 9 0.657694 2 C py - 13 -0.568326 3 C px 18 -0.568326 4 C px + 4 0.657693 1 C py 9 0.657693 2 C py + 13 -0.568325 3 C px 18 -0.568325 4 C px 23 0.496519 5 C px 28 0.496519 6 C px 22 -0.413797 5 C s 27 0.413797 6 C s 24 -0.395895 5 C py 29 -0.395895 6 C py - + Final MO vectors ---------------- - + global array: alpha evecs[1:60,1:60], handle: -995 @@ -2429,58 +2434,58 @@ 2 0.03156 0.03135 0.00410 -0.00406 -0.00081 0.00816 3 -0.00002 0.00003 0.00067 -0.00065 0.00525 -0.00123 4 -0.00091 -0.00063 0.00416 -0.00413 -0.00054 -0.00308 - 5 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 5 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 6 -0.69930 0.69930 0.02742 0.02765 0.00327 0.02868 7 -0.03156 0.03135 -0.00410 -0.00406 -0.00081 -0.00816 8 -0.00002 -0.00003 0.00067 0.00065 -0.00525 -0.00123 9 -0.00091 0.00063 0.00416 0.00413 0.00054 -0.00308 - 10 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 11 -0.01887 -0.01934 0.01179 -0.01473 -0.43752 -0.42433 + 10 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 11 -0.01887 -0.01934 0.01179 -0.01473 -0.43751 -0.42432 12 -0.00774 -0.00693 0.00068 -0.00068 -0.02438 -0.02407 13 0.00353 0.00332 -0.00013 0.00019 0.00102 0.00115 14 -0.00263 -0.00300 -0.00002 -0.00006 0.00367 0.00385 - 15 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 16 0.01887 -0.01934 -0.01179 -0.01473 -0.43752 0.42433 + 15 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 16 0.01887 -0.01934 -0.01179 -0.01473 -0.43751 0.42432 17 0.00774 -0.00693 -0.00068 -0.00068 -0.02438 0.02407 18 0.00353 -0.00332 -0.00013 -0.00019 -0.00102 0.00115 19 -0.00263 0.00300 -0.00002 0.00006 -0.00367 0.00385 - 20 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 20 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 21 0.01918 -0.01952 -0.00968 -0.01107 0.54641 0.55588 22 0.00771 -0.00687 -0.00055 -0.00042 0.02815 0.02865 23 -0.00417 0.00407 0.00013 0.00021 0.00007 -0.00009 24 -0.00132 0.00175 -0.00010 0.00001 0.00323 0.00334 - 25 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 25 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 26 -0.01918 -0.01952 0.00968 -0.01107 0.54641 -0.55588 27 -0.00771 -0.00687 0.00055 -0.00042 0.02815 -0.02865 28 -0.00417 -0.00407 0.00013 -0.00021 -0.00007 -0.00009 29 -0.00132 -0.00175 -0.00010 -0.00001 -0.00323 0.00334 - 30 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 30 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 31 0.00034 0.00022 -0.00010 0.00011 0.00405 0.00398 32 -0.00034 0.00022 0.00010 0.00011 0.00405 -0.00398 33 -0.00033 0.00022 -0.00004 -0.00006 -0.00506 -0.00515 34 0.00033 0.00022 0.00004 -0.00006 -0.00506 0.00515 - 35 0.02696 -0.02733 0.69978 0.69970 -0.00070 0.01382 + 35 0.02697 -0.02733 0.69978 0.69970 -0.00070 0.01381 36 0.00670 -0.00677 0.03078 0.03076 -0.00004 0.00073 37 0.00090 -0.00091 0.00075 0.00075 0.00011 0.00006 38 0.00397 -0.00401 -0.00108 -0.00109 -0.00003 -0.00005 - 39 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 40 -0.02696 -0.02733 -0.69978 0.69970 -0.00070 -0.01382 + 39 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 40 -0.02697 -0.02733 -0.69978 0.69970 -0.00070 -0.01381 41 -0.00670 -0.00677 -0.03078 0.03076 -0.00004 -0.00073 42 0.00090 0.00091 0.00075 -0.00075 -0.00011 0.00006 43 0.00397 0.00401 -0.00108 0.00109 0.00003 -0.00005 - 44 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 44 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 45 -0.00032 0.00033 -0.00642 -0.00642 -0.00001 -0.00018 46 0.00032 0.00033 0.00642 -0.00642 -0.00001 0.00018 47 -0.00018 0.00019 -0.00811 -0.00810 -0.00029 -0.00093 48 -0.00047 0.00047 -0.00762 -0.00762 -0.00005 -0.00028 49 -0.00001 0.00001 0.00305 0.00305 -0.00003 0.00003 50 -0.00028 0.00029 -0.00344 -0.00344 -0.00001 -0.00014 - 51 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 51 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 52 0.00018 0.00019 0.00811 -0.00810 -0.00029 0.00093 53 0.00047 0.00047 0.00762 -0.00762 -0.00005 0.00028 54 -0.00001 -0.00001 0.00305 -0.00305 0.00003 0.00003 55 -0.00028 -0.00029 -0.00344 0.00344 0.00001 -0.00014 - 56 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 56 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 57 0.00015 -0.00014 0.00019 0.00019 0.00016 0.00015 58 -0.00015 -0.00014 -0.00019 0.00019 0.00016 -0.00015 59 0.00003 -0.00003 0.00022 0.00022 -0.00000 -0.00001 @@ -2492,58 +2497,58 @@ 2 -0.00110 -0.00749 -0.00016 0.00016 0.27470 0.27379 3 -0.00500 -0.00006 0.00002 -0.00002 -0.00550 0.00446 4 0.00128 0.00308 -0.00005 0.00005 -0.04073 0.03298 - 5 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 5 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 6 -0.00367 0.02944 0.00018 0.00018 -0.10786 0.10355 7 0.00110 -0.00749 0.00016 0.00016 0.27470 -0.27379 8 -0.00500 0.00006 0.00002 0.00002 0.00550 0.00446 9 0.00128 -0.00308 -0.00005 -0.00005 0.04073 0.03298 - 10 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 10 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 11 0.55685 0.54652 -0.00028 0.00057 -0.09784 -0.03906 12 0.02059 0.01990 0.00000 -0.00006 0.24702 0.10222 13 -0.00024 0.00013 -0.00001 0.00002 -0.05337 -0.02738 14 0.00222 0.00233 0.00008 -0.00003 -0.01450 0.05896 - 15 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 15 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 16 -0.55685 0.54652 0.00028 0.00057 -0.09784 0.03906 17 -0.02059 0.01990 -0.00000 -0.00006 0.24702 -0.10222 18 -0.00024 -0.00013 -0.00001 -0.00002 0.05337 -0.02738 19 0.00222 -0.00233 0.00008 0.00003 0.01450 0.05896 - 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 21 0.42564 0.43775 0.00079 0.00085 -0.09757 0.04279 + 20 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 21 0.42563 0.43775 0.00079 0.00085 -0.09757 0.04279 22 0.01354 0.01412 -0.00002 -0.00004 0.24669 -0.11256 23 -0.00095 -0.00067 0.00001 0.00000 -0.04576 0.04462 24 -0.00301 -0.00302 0.00011 0.00009 0.03144 0.04668 - 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 26 -0.42564 0.43775 -0.00079 0.00085 -0.09757 -0.04279 + 25 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 26 -0.42563 0.43775 -0.00079 0.00085 -0.09757 -0.04279 27 -0.01354 0.01412 0.00002 -0.00004 0.24669 0.11256 28 -0.00095 0.00067 0.00001 -0.00000 0.04576 0.04462 29 -0.00301 0.00302 0.00011 -0.00009 -0.03144 0.04668 - 30 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 30 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 31 -0.00491 -0.00498 0.00001 -0.00002 0.04495 0.02686 32 0.00491 -0.00498 -0.00001 -0.00002 0.04495 -0.02686 33 -0.00371 -0.00400 0.00010 0.00010 0.04519 -0.03076 34 0.00371 -0.00400 -0.00010 0.00010 0.04519 0.03076 - 35 -0.00337 0.01736 0.00900 0.00901 -0.04972 0.11382 + 35 -0.00338 0.01736 0.00900 0.00901 -0.04972 0.11382 36 -0.00018 0.00075 -0.00689 -0.00689 0.12781 -0.29717 37 0.00001 0.00002 -0.00308 -0.00308 0.01290 -0.03419 38 0.00002 -0.00019 0.00338 0.00338 0.02845 -0.00850 - 39 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 40 0.00337 0.01736 -0.00900 0.00901 -0.04972 -0.11382 + 39 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 40 0.00338 0.01736 -0.00900 0.00901 -0.04972 -0.11382 41 0.00018 0.00075 0.00689 -0.00689 0.12781 0.29717 42 0.00001 -0.00002 -0.00308 0.00308 -0.01290 -0.03419 43 0.00002 0.00019 0.00338 -0.00338 -0.02845 -0.00850 - 44 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 44 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 45 0.00005 -0.00025 0.00004 0.00004 0.02560 -0.06702 46 -0.00005 -0.00025 -0.00004 0.00004 0.02560 0.06702 47 -0.00021 -0.00115 0.70048 0.70048 -0.02467 0.08073 48 0.00003 -0.00033 0.03086 0.03086 0.06268 -0.20931 49 -0.00005 0.00005 -0.00089 -0.00089 -0.01240 0.03729 50 0.00001 -0.00018 0.00094 0.00094 0.02035 -0.04990 - 51 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 51 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 52 0.00021 -0.00115 -0.70048 0.70048 -0.02467 -0.08073 53 -0.00003 -0.00033 -0.03086 0.03086 0.06268 0.20931 54 -0.00005 -0.00005 -0.00089 0.00089 0.01240 0.03729 55 0.00001 0.00018 0.00094 -0.00094 -0.02035 -0.04990 - 56 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 56 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 57 0.00009 0.00010 -0.00636 -0.00636 0.01412 -0.04858 58 -0.00009 0.00010 0.00636 -0.00636 0.01412 0.04858 59 -0.00001 -0.00001 -0.00637 -0.00637 0.01058 -0.04369 @@ -2555,27 +2560,27 @@ 2 0.01483 0.03409 0.27407 -0.20638 -0.16079 0.03709 3 0.01037 0.12499 -0.01781 -0.12106 0.18486 -0.05359 4 0.09615 -0.02299 -0.05622 -0.07212 -0.06394 -0.13493 - 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 5 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 6 -0.00453 0.01260 0.09965 0.07098 0.05432 0.01303 7 0.01483 -0.03409 -0.27407 -0.20638 -0.16079 -0.03709 8 -0.01037 0.12499 -0.01781 0.12106 -0.18486 -0.05359 9 -0.09615 -0.02299 -0.05622 0.07212 0.06394 -0.13493 - 10 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 10 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 11 0.04631 -0.13232 -0.04077 0.00302 -0.11045 -0.05067 12 -0.12146 0.35713 0.11268 -0.01004 0.32603 0.15447 13 0.01614 0.00350 -0.03788 0.02993 0.08167 -0.00524 14 0.03704 -0.05621 0.09142 -0.16001 0.03652 0.00483 - 15 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 15 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 16 0.04631 0.13232 0.04077 0.00302 -0.11045 0.05067 17 -0.12146 -0.35713 -0.11268 -0.01004 0.32603 -0.15447 18 -0.01614 0.00350 -0.03788 -0.02993 -0.08167 -0.00524 19 -0.03704 -0.05621 0.09142 0.16001 -0.03652 0.00483 - 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 20 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 21 0.04173 -0.12009 0.07330 -0.08191 0.05747 0.03036 22 -0.10894 0.32390 -0.20228 0.23381 -0.17074 -0.09205 23 0.00204 0.03465 0.05406 0.06548 0.08653 0.03583 24 -0.04735 0.06563 0.04697 0.02290 0.17044 0.07857 - 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 25 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 26 0.04173 0.12009 -0.07330 -0.08191 0.05747 -0.03036 27 -0.10894 -0.32390 0.20228 0.23381 -0.17074 0.09205 28 -0.00204 0.03465 0.05406 -0.06548 -0.08653 0.03583 @@ -2594,19 +2599,19 @@ 41 0.31482 0.00128 -0.13685 -0.15961 -0.02451 -0.30277 42 -0.04535 0.02295 0.03919 -0.08128 0.04660 -0.11605 43 0.05748 -0.01848 -0.12905 0.12925 0.07792 0.04107 - 44 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 44 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 45 0.07653 -0.00984 0.03763 -0.08003 0.03216 0.17052 46 0.07653 0.00984 -0.03763 -0.08003 0.03216 -0.17052 47 -0.11746 -0.01450 -0.11027 -0.08371 -0.03787 0.08074 48 0.30977 0.03791 0.29951 0.24141 0.11347 -0.24917 49 -0.04908 0.00157 -0.03453 0.03560 -0.01390 -0.12315 50 0.05279 0.00637 0.01637 -0.03827 -0.04943 0.09128 - 51 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 51 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 52 -0.11746 0.01450 0.11027 -0.08371 -0.03787 -0.08074 53 0.30977 -0.03791 -0.29951 0.24141 0.11347 0.24917 54 0.04908 0.00157 -0.03453 -0.03560 0.01390 -0.12315 55 -0.05279 0.00637 0.01637 0.03827 0.04943 0.09128 - 56 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 56 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 57 0.07420 0.01478 0.07740 0.10354 0.02278 -0.16063 58 0.07420 -0.01478 -0.07740 0.10354 0.02278 0.16063 59 0.07484 0.00894 0.08996 0.09775 0.06787 -0.12474 @@ -2614,36 +2619,36 @@ 19 20 21 22 23 24 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.05454 -0.03229 0.02275 -0.06946 -0.02278 0.02167 + 1 0.05454 -0.03229 0.02275 -0.06946 -0.02277 0.02167 2 -0.16217 0.10634 -0.07804 0.23531 0.07752 -0.07158 3 -0.01948 0.05143 0.12484 0.10107 -0.22083 -0.01574 4 0.14256 0.13227 -0.13509 -0.02739 -0.14330 -0.01021 - 5 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 6 0.05454 -0.03229 -0.02275 0.06946 0.02278 0.02167 + 5 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 6 0.05454 -0.03229 -0.02275 0.06946 0.02277 0.02167 7 -0.16217 0.10634 0.07804 -0.23531 -0.07752 -0.07158 8 0.01948 -0.05143 0.12484 0.10107 -0.22083 0.01574 9 -0.14256 -0.13227 -0.13509 -0.02739 -0.14330 0.01021 - 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 10 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 11 -0.00697 -0.01336 -0.02216 0.04738 -0.00126 -0.02514 - 12 0.02556 0.05157 0.07459 -0.16297 0.00150 0.08397 + 12 0.02556 0.05158 0.07459 -0.16297 0.00150 0.08397 13 0.18449 0.13690 0.01857 -0.22226 -0.00314 -0.00635 - 14 -0.08790 0.14139 0.18496 0.06158 -0.12066 -0.08210 - 15 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 14 -0.08790 0.14138 0.18496 0.06158 -0.12066 -0.08210 + 15 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 16 -0.00697 -0.01336 0.02216 -0.04738 0.00126 -0.02514 - 17 0.02556 0.05157 -0.07459 0.16297 -0.00150 0.08397 + 17 0.02556 0.05158 -0.07459 0.16297 -0.00150 0.08397 18 -0.18449 -0.13690 0.01857 -0.22226 -0.00314 0.00635 - 19 0.08790 -0.14139 0.18496 0.06158 -0.12066 0.08210 - 20 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 19 0.08790 -0.14138 0.18496 0.06158 -0.12066 0.08210 + 20 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 21 -0.05224 0.01978 0.04259 -0.04406 0.01174 0.01824 22 0.16602 -0.05620 -0.13897 0.15292 -0.03666 -0.06801 23 0.20190 0.08463 -0.09670 0.11282 0.25124 -0.03712 24 -0.03731 -0.13600 -0.10148 -0.17797 0.05674 0.13671 - 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 25 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 26 -0.05224 0.01978 -0.04259 0.04406 -0.01174 0.01824 27 0.16602 -0.05620 0.13897 -0.15292 0.03666 -0.06801 28 -0.20190 -0.08463 -0.09670 0.11282 0.25124 0.03712 29 0.03731 0.13600 -0.10148 -0.17797 0.05674 -0.13671 - 30 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 31 0.09946 0.13601 0.10020 -0.22666 -0.03672 0.00607 32 0.09946 0.13601 -0.10020 0.22666 0.03672 0.00607 33 0.16928 0.09041 -0.05988 0.23047 0.13275 -0.11408 @@ -2652,24 +2657,24 @@ 36 0.18076 -0.12770 0.05160 0.04227 0.01492 0.08059 37 -0.06455 0.11482 0.21923 0.03807 -0.04290 0.25149 38 -0.00149 0.18465 0.10104 -0.12528 0.18149 -0.08173 - 39 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 39 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 40 -0.05912 0.04018 0.01690 0.01529 0.00257 -0.02765 41 0.18076 -0.12770 -0.05160 -0.04227 -0.01492 0.08059 42 0.06455 -0.11482 0.21923 0.03807 -0.04290 -0.25149 43 0.00149 -0.18465 0.10104 -0.12528 0.18149 0.08173 - 44 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 44 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 45 0.11251 -0.15309 -0.15549 0.02806 0.01234 -0.14506 46 0.11251 -0.15309 0.15549 -0.02806 -0.01234 -0.14506 47 0.05155 -0.01689 0.00814 0.01223 0.00106 -0.00444 48 -0.16347 0.06337 -0.03136 -0.05077 0.00750 -0.00010 49 -0.07915 0.21273 0.09058 -0.07563 0.25051 -0.01131 50 0.08165 0.00913 0.21029 0.13356 0.03810 0.33900 - 51 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 51 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 52 0.05155 -0.01689 -0.00814 -0.01223 -0.00106 -0.00444 53 -0.16347 0.06337 0.03136 0.05077 -0.00750 -0.00010 54 0.07915 -0.21273 0.09058 -0.07563 0.25051 0.01131 55 -0.08165 -0.00913 0.21029 0.13356 0.03810 -0.33900 - 56 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 56 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 57 -0.09475 0.17911 0.07306 -0.04231 0.21542 0.02497 58 -0.09475 0.17911 -0.07306 0.04231 -0.21542 0.02497 59 -0.09719 -0.02141 -0.17813 -0.10503 -0.08716 -0.26260 @@ -2677,377 +2682,377 @@ 25 26 27 28 29 30 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00257 0.00315 0.02505 -0.00000 -0.01028 -0.00342 - 2 -0.00882 -0.01168 -0.09024 0.00000 0.04486 0.02281 - 3 -0.08497 0.16711 0.08893 -0.00000 0.09215 -0.13094 + 1 0.00257 0.00315 0.02506 0.00000 -0.01028 -0.00342 + 2 -0.00882 -0.01168 -0.09024 -0.00000 0.04486 0.02281 + 3 -0.08496 0.16711 0.08893 -0.00000 0.09215 -0.13094 4 0.07881 -0.17820 0.00082 0.00000 0.24197 0.26840 - 5 0.00000 0.00000 0.00000 0.33761 0.00000 -0.00000 - 6 -0.00257 -0.00315 0.02505 -0.00000 0.01028 -0.00342 - 7 0.00882 0.01168 -0.09024 0.00000 -0.04486 0.02281 - 8 -0.08497 0.16711 -0.08893 0.00000 0.09215 0.13094 + 5 0.00000 0.00000 -0.00000 0.33761 -0.00000 -0.00000 + 6 -0.00257 -0.00315 0.02506 0.00000 0.01028 -0.00342 + 7 0.00882 0.01168 -0.09024 -0.00000 -0.04486 0.02281 + 8 -0.08496 0.16711 -0.08893 0.00000 0.09215 0.13094 9 0.07881 -0.17820 -0.00082 -0.00000 0.24197 -0.26840 - 10 0.00000 0.00000 0.00000 0.33761 0.00000 -0.00000 - 11 0.02849 -0.01759 0.00530 -0.00000 0.00685 0.00271 - 12 -0.09067 0.06357 -0.02695 0.00000 -0.02118 -0.00884 - 13 0.30759 -0.10066 -0.12838 0.00000 0.06490 0.13268 + 10 0.00000 0.00000 -0.00000 0.33761 -0.00000 0.00000 + 11 0.02849 -0.01759 0.00530 0.00000 0.00685 0.00271 + 12 -0.09067 0.06357 -0.02695 -0.00000 -0.02118 -0.00884 + 13 0.30758 -0.10066 -0.12838 -0.00000 0.06490 0.13268 14 0.14541 0.22434 -0.13363 -0.00000 0.04102 -0.27818 - 15 0.00000 0.00000 0.00000 0.29798 0.00000 -0.00000 - 16 -0.02849 0.01759 0.00530 -0.00000 -0.00685 0.00271 - 17 0.09067 -0.06357 -0.02695 0.00000 0.02118 -0.00884 - 18 0.30759 -0.10066 0.12838 -0.00000 0.06490 -0.13268 + 15 0.00000 0.00000 -0.00000 0.29798 -0.00000 -0.00000 + 16 -0.02849 0.01759 0.00530 0.00000 -0.00685 0.00271 + 17 0.09067 -0.06357 -0.02695 -0.00000 0.02118 -0.00884 + 18 0.30758 -0.10066 0.12838 -0.00000 0.06490 -0.13268 19 0.14541 0.22434 0.13363 0.00000 0.04102 0.27818 - 20 0.00000 0.00000 0.00000 0.29798 0.00000 -0.00000 + 20 0.00000 0.00000 -0.00000 0.29798 -0.00000 -0.00000 21 0.01970 0.00712 -0.00754 -0.00000 -0.01375 -0.00888 - 22 -0.06220 -0.02043 0.02537 0.00000 0.04725 0.02465 + 22 -0.06220 -0.02043 0.02538 0.00000 0.04725 0.02465 23 0.18806 -0.07066 0.06386 -0.00000 -0.14449 -0.08055 - 24 -0.22609 -0.19326 0.13980 0.00000 -0.00790 0.23445 - 25 0.00000 0.00000 0.00000 0.29717 0.00000 -0.00000 + 24 -0.22609 -0.19326 0.13981 0.00000 -0.00790 0.23445 + 25 0.00000 0.00000 -0.00000 0.29717 -0.00000 -0.00000 26 -0.01970 -0.00712 -0.00754 -0.00000 0.01375 -0.00888 - 27 0.06220 0.02043 0.02537 0.00000 -0.04725 0.02465 + 27 0.06220 0.02043 0.02538 0.00000 -0.04725 0.02465 28 0.18806 -0.07066 -0.06386 0.00000 -0.14449 0.08055 - 29 -0.22609 -0.19326 -0.13980 -0.00000 -0.00790 -0.23445 - 30 0.00000 0.00000 0.00000 0.29717 0.00000 -0.00000 - 31 0.25227 0.00752 -0.15647 0.00000 0.04671 0.02034 - 32 -0.25227 -0.00752 -0.15647 0.00000 -0.04671 0.02034 + 29 -0.22609 -0.19326 -0.13981 -0.00000 -0.00790 -0.23445 + 30 0.00000 0.00000 -0.00000 0.29717 -0.00000 -0.00000 + 31 0.25227 0.00752 -0.15647 -0.00000 0.04671 0.02034 + 32 -0.25227 -0.00752 -0.15647 -0.00000 -0.04671 0.02034 33 0.21818 0.04690 0.00782 -0.00000 -0.05383 -0.24041 34 -0.21818 -0.04690 0.00782 -0.00000 0.05383 -0.24041 35 -0.00193 0.00109 -0.01690 -0.00000 0.00273 -0.01988 36 0.00461 0.01245 0.07134 0.00000 -0.00655 0.08279 - 37 -0.01859 -0.20168 -0.20888 0.00000 -0.21725 0.04337 + 37 -0.01859 -0.20168 -0.20888 -0.00000 -0.21725 0.04337 38 -0.06686 0.18774 0.08750 0.00000 -0.16914 0.24814 - 39 0.00000 0.00000 0.00000 0.17395 0.00000 -0.00000 + 39 0.00000 0.00000 -0.00000 0.17395 -0.00000 0.00000 40 0.00193 -0.00109 -0.01690 -0.00000 -0.00273 -0.01988 41 -0.00461 -0.01245 0.07134 0.00000 0.00655 0.08279 - 42 -0.01859 -0.20168 0.20888 -0.00000 -0.21725 -0.04337 + 42 -0.01859 -0.20168 0.20888 0.00000 -0.21725 -0.04337 43 -0.06686 0.18774 -0.08750 -0.00000 -0.16914 -0.24814 - 44 0.00000 0.00000 0.00000 0.17395 0.00000 -0.00000 - 45 0.01673 0.14559 0.20023 -0.00000 0.25910 -0.06640 - 46 -0.01673 -0.14559 0.20023 -0.00000 -0.25910 -0.06640 - 47 0.00445 0.02052 0.01051 -0.00000 0.00350 0.00833 - 48 -0.01850 -0.05651 -0.02704 0.00000 -0.01441 -0.02127 - 49 -0.07653 0.12000 0.29519 -0.00000 0.19964 0.02772 + 44 0.00000 0.00000 -0.00000 0.17395 -0.00000 -0.00000 + 45 0.01673 0.14559 0.20023 0.00000 0.25910 -0.06640 + 46 -0.01673 -0.14559 0.20023 0.00000 -0.25910 -0.06640 + 47 0.00445 0.02052 0.01051 0.00000 0.00350 0.00833 + 48 -0.01850 -0.05651 -0.02704 -0.00000 -0.01441 -0.02127 + 49 -0.07653 0.12000 0.29519 0.00000 0.19964 0.02772 50 -0.00552 -0.24568 0.04849 -0.00000 0.13688 -0.14507 - 51 0.00000 0.00000 0.00000 0.09244 0.00000 -0.00000 - 52 -0.00445 -0.02052 0.01051 -0.00000 -0.00350 0.00833 - 53 0.01850 0.05651 -0.02704 0.00000 0.01441 -0.02127 - 54 -0.07653 0.12000 -0.29519 0.00000 0.19964 -0.02772 + 51 0.00000 0.00000 -0.00000 0.09244 -0.00000 0.00000 + 52 -0.00445 -0.02052 0.01051 0.00000 -0.00350 0.00833 + 53 0.01850 0.05651 -0.02704 -0.00000 0.01441 -0.02127 + 54 -0.07653 0.12000 -0.29519 -0.00000 0.19964 -0.02772 55 -0.00552 -0.24568 -0.04849 0.00000 0.13688 0.14507 - 56 0.00000 0.00000 0.00000 0.09244 0.00000 -0.00000 - 57 -0.05395 0.05142 0.26801 -0.00000 0.23103 -0.05231 - 58 0.05395 -0.05142 0.26801 -0.00000 -0.23103 -0.05231 + 56 0.00000 0.00000 -0.00000 0.09244 -0.00000 -0.00000 + 57 -0.05395 0.05142 0.26801 0.00000 0.23103 -0.05231 + 58 0.05395 -0.05142 0.26801 0.00000 -0.23103 -0.05231 59 0.01519 0.15786 -0.14304 0.00000 -0.21233 0.13552 60 -0.01519 -0.15786 -0.14304 0.00000 0.21233 0.13552 31 32 33 34 35 36 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00699 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 2 0.03378 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 3 0.29585 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 4 0.09493 -0.00000 0.00000 0.00000 0.00000 0.00000 - 5 0.00000 0.34896 -0.01801 0.00575 0.38755 0.44267 - 6 -0.00699 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 7 0.03378 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 8 -0.29585 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 9 -0.09493 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 10 0.00000 -0.34896 -0.01801 -0.00575 -0.38755 0.44267 - 11 -0.01201 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 12 0.03558 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 13 -0.22212 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 14 -0.04919 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 1 -0.00699 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 2 0.03378 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 3 0.29586 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 4 0.09493 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 5 -0.00000 0.34896 -0.01801 0.00575 0.38755 0.44267 + 6 -0.00699 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 7 0.03378 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 8 -0.29586 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 9 -0.09493 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 10 -0.00000 -0.34896 -0.01801 -0.00575 -0.38755 0.44267 + 11 -0.01201 0.00000 0.00000 0.00000 -0.00000 0.00000 + 12 0.03558 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 13 -0.22212 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 14 -0.04919 -0.00000 0.00000 0.00000 -0.00000 0.00000 15 0.00000 0.13165 -0.17920 0.46363 0.21507 -0.23227 - 16 -0.01201 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 17 0.03558 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 18 0.22212 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 19 0.04919 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 20 0.00000 -0.13165 -0.17920 -0.46363 -0.21507 -0.23227 - 21 0.00761 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 22 -0.02194 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 23 0.28060 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 24 0.09600 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 25 0.00000 -0.13211 -0.17663 0.45754 -0.23074 -0.27755 - 26 0.00761 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 27 -0.02194 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 28 -0.28060 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 29 -0.09600 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 30 0.00000 0.13211 -0.17663 -0.45754 0.23074 -0.27755 - 31 -0.25807 -0.00000 0.00000 0.00000 0.00000 0.00000 - 32 -0.25807 -0.00000 0.00000 0.00000 0.00000 0.00000 - 33 0.15131 0.00000 -0.00000 0.00000 0.00000 0.00000 - 34 0.15131 0.00000 -0.00000 0.00000 0.00000 0.00000 - 35 -0.01113 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 36 0.03843 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 37 0.13689 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 38 0.11202 0.00000 0.00000 0.00000 0.00000 0.00000 + 16 -0.01201 0.00000 0.00000 0.00000 -0.00000 0.00000 + 17 0.03558 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 18 0.22212 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 19 0.04919 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 20 -0.00000 -0.13165 -0.17920 -0.46363 -0.21507 -0.23227 + 21 0.00761 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 22 -0.02194 0.00000 -0.00000 0.00000 0.00000 0.00000 + 23 0.28060 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 24 0.09600 0.00000 0.00000 0.00000 0.00000 0.00000 + 25 -0.00000 -0.13211 -0.17663 0.45754 -0.23074 -0.27755 + 26 0.00761 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 27 -0.02194 0.00000 -0.00000 0.00000 0.00000 0.00000 + 28 -0.28060 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 29 -0.09600 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 30 -0.00000 0.13211 -0.17663 -0.45754 0.23074 -0.27755 + 31 -0.25807 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 32 -0.25807 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 33 0.15131 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 34 0.15131 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 35 -0.01113 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 36 0.03843 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 37 0.13689 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 38 0.11202 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 39 0.00000 -0.37648 0.41378 -0.00037 0.22367 0.25613 - 40 -0.01113 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 41 0.03843 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 42 -0.13689 0.00000 -0.00000 0.00000 0.00000 0.00000 - 43 -0.11202 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 44 0.00000 0.37648 0.41378 0.00037 -0.22367 0.25613 - 45 -0.18274 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 46 -0.18274 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 47 -0.00467 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 48 0.01837 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 49 -0.10958 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 50 -0.03768 0.00000 0.00000 0.00000 0.00000 -0.00000 + 40 -0.01113 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 41 0.03843 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 42 -0.13689 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 43 -0.11202 -0.00000 0.00000 0.00000 0.00000 0.00000 + 44 -0.00000 0.37648 0.41378 0.00037 -0.22367 0.25613 + 45 -0.18274 -0.00000 0.00000 0.00000 0.00000 0.00000 + 46 -0.18274 -0.00000 0.00000 0.00000 0.00000 0.00000 + 47 -0.00467 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 48 0.01837 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 49 -0.10958 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 50 -0.03768 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 51 0.00000 -0.27140 0.41796 0.00954 0.39737 -0.44961 - 52 -0.00467 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 53 0.01837 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 54 0.10958 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 55 0.03768 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 56 0.00000 0.27140 0.41796 -0.00954 -0.39737 -0.44961 - 57 -0.11595 0.00000 -0.00000 0.00000 0.00000 0.00000 - 58 -0.11595 0.00000 -0.00000 0.00000 0.00000 0.00000 - 59 0.08985 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 60 0.08985 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 52 -0.00467 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 53 0.01837 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 54 0.10958 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 55 0.03768 0.00000 0.00000 0.00000 0.00000 -0.00000 + 56 -0.00000 0.27140 0.41796 -0.00954 -0.39737 -0.44961 + 57 -0.11595 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 58 -0.11595 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 59 0.08985 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 60 0.08985 0.00000 0.00000 -0.00000 -0.00000 -0.00000 37 38 39 40 41 42 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 0.00000 0.00000 0.00000 -0.06824 -0.03375 - 2 0.00000 -0.00000 -0.00000 -0.00000 0.40157 0.19824 - 3 0.00000 -0.00000 -0.00000 -0.00000 0.08710 0.28506 - 4 -0.00000 0.00000 0.00000 0.00000 0.27371 0.13577 - 5 -0.03192 -0.02345 0.49722 0.54348 0.00000 -0.00000 - 6 0.00000 0.00000 0.00000 0.00000 -0.06824 0.03375 - 7 0.00000 -0.00000 -0.00000 -0.00000 0.40157 -0.19824 - 8 -0.00000 0.00000 0.00000 0.00000 -0.08710 0.28506 - 9 0.00000 -0.00000 -0.00000 -0.00000 -0.27371 0.13577 - 10 -0.03192 0.02345 0.49722 -0.54348 0.00000 -0.00000 - 11 -0.00000 -0.00000 -0.00000 -0.00000 -0.02814 0.00595 - 12 -0.00000 0.00000 0.00000 0.00000 0.17347 -0.02878 - 13 0.00000 0.00000 -0.00000 0.00000 0.30451 0.35544 - 14 -0.00000 0.00000 0.00000 0.00000 0.05353 0.01074 - 15 0.58269 0.24069 -0.16674 -0.46418 0.00000 0.00000 - 16 -0.00000 -0.00000 -0.00000 -0.00000 -0.02814 -0.00595 - 17 -0.00000 0.00000 0.00000 0.00000 0.17347 0.02878 - 18 -0.00000 -0.00000 0.00000 -0.00000 -0.30451 0.35544 - 19 0.00000 -0.00000 -0.00000 -0.00000 -0.05353 0.01074 - 20 0.58269 -0.24069 -0.16674 0.46418 -0.00000 0.00000 - 21 0.00000 -0.00000 -0.00000 -0.00000 -0.04649 -0.01586 - 22 -0.00000 -0.00000 0.00000 0.00000 0.28090 0.09658 - 23 0.00000 -0.00000 0.00000 0.00000 0.20264 0.28597 - 24 -0.00000 0.00000 -0.00000 -0.00000 -0.12426 0.00564 - 25 -0.55324 -0.23225 -0.19920 0.46688 -0.00000 0.00000 - 26 0.00000 -0.00000 -0.00000 -0.00000 -0.04649 0.01586 - 27 -0.00000 -0.00000 0.00000 0.00000 0.28090 -0.09658 - 28 -0.00000 0.00000 -0.00000 -0.00000 -0.20264 0.28597 - 29 0.00000 -0.00000 0.00000 0.00000 0.12426 0.00564 + 1 0.00000 -0.00000 -0.00000 0.00000 -0.06824 -0.03374 + 2 -0.00000 0.00000 0.00000 -0.00000 0.40157 0.19824 + 3 -0.00000 0.00000 -0.00000 0.00000 0.08710 0.28506 + 4 -0.00000 -0.00000 -0.00000 -0.00000 0.27371 0.13577 + 5 -0.03192 -0.02345 0.49722 0.54348 -0.00000 0.00000 + 6 0.00000 -0.00000 -0.00000 0.00000 -0.06824 0.03374 + 7 -0.00000 0.00000 0.00000 -0.00000 0.40157 -0.19824 + 8 0.00000 -0.00000 0.00000 -0.00000 -0.08710 0.28506 + 9 0.00000 0.00000 0.00000 0.00000 -0.27371 0.13577 + 10 -0.03192 0.02345 0.49722 -0.54348 -0.00000 0.00000 + 11 0.00000 -0.00000 -0.00000 0.00000 -0.02814 0.00595 + 12 -0.00000 0.00000 0.00000 -0.00000 0.17347 -0.02878 + 13 0.00000 0.00000 0.00000 -0.00000 0.30451 0.35544 + 14 0.00000 -0.00000 0.00000 0.00000 0.05353 0.01074 + 15 0.58269 0.24069 -0.16674 -0.46418 -0.00000 0.00000 + 16 0.00000 -0.00000 -0.00000 0.00000 -0.02814 -0.00595 + 17 -0.00000 0.00000 0.00000 -0.00000 0.17347 0.02878 + 18 -0.00000 -0.00000 -0.00000 0.00000 -0.30451 0.35544 + 19 -0.00000 0.00000 -0.00000 -0.00000 -0.05353 0.01074 + 20 0.58269 -0.24069 -0.16674 0.46418 0.00000 -0.00000 + 21 -0.00000 -0.00000 -0.00000 -0.00000 -0.04649 -0.01586 + 22 0.00000 0.00000 0.00000 0.00000 0.28090 0.09658 + 23 -0.00000 0.00000 0.00000 -0.00000 0.20264 0.28597 + 24 0.00000 -0.00000 -0.00000 0.00000 -0.12426 0.00564 + 25 -0.55324 -0.23225 -0.19920 0.46688 0.00000 0.00000 + 26 -0.00000 -0.00000 -0.00000 -0.00000 -0.04649 0.01586 + 27 0.00000 0.00000 0.00000 0.00000 0.28090 -0.09658 + 28 0.00000 -0.00000 -0.00000 0.00000 -0.20264 0.28597 + 29 -0.00000 0.00000 0.00000 -0.00000 0.12426 0.00564 30 -0.55324 0.23225 -0.19920 -0.46688 -0.00000 0.00000 - 31 -0.00000 -0.00000 -0.00000 -0.00000 -0.41378 -0.32189 - 32 -0.00000 -0.00000 -0.00000 -0.00000 -0.41378 0.32189 - 33 0.00000 0.00000 -0.00000 -0.00000 -0.42379 -0.27080 - 34 0.00000 0.00000 -0.00000 -0.00000 -0.42379 0.27080 + 31 0.00000 -0.00000 -0.00000 0.00000 -0.41378 -0.32189 + 32 0.00000 -0.00000 -0.00000 -0.00000 -0.41378 0.32189 + 33 0.00000 -0.00000 -0.00000 0.00000 -0.42379 -0.27080 + 34 -0.00000 -0.00000 -0.00000 0.00000 -0.42379 0.27080 35 -0.00000 -0.00000 0.00000 0.00000 0.05002 0.00767 - 36 0.00000 -0.00000 -0.00000 -0.00000 -0.28213 -0.04685 - 37 0.00000 0.00000 0.00000 0.00000 -0.24477 0.34456 - 38 -0.00000 0.00000 0.00000 0.00000 -0.33810 0.21676 - 39 0.00380 0.52217 -0.52913 0.28773 0.00000 -0.00000 + 36 0.00000 0.00000 -0.00000 -0.00000 -0.28213 -0.04685 + 37 0.00000 -0.00000 0.00000 0.00000 -0.24477 0.34456 + 38 -0.00000 -0.00000 -0.00000 0.00000 -0.33810 0.21676 + 39 0.00380 0.52217 -0.52913 0.28773 0.00000 0.00000 40 -0.00000 -0.00000 0.00000 0.00000 0.05002 -0.00767 - 41 0.00000 -0.00000 -0.00000 -0.00000 -0.28213 0.04685 - 42 -0.00000 -0.00000 -0.00000 -0.00000 0.24477 0.34456 - 43 0.00000 -0.00000 -0.00000 -0.00000 0.33810 0.21676 - 44 0.00380 -0.52217 -0.52913 -0.28773 -0.00000 -0.00000 - 45 0.00000 0.00000 0.00000 0.00000 -0.14441 0.43383 - 46 0.00000 0.00000 0.00000 0.00000 -0.14441 -0.43383 - 47 0.00000 -0.00000 0.00000 0.00000 -0.04092 0.00256 - 48 -0.00000 0.00000 -0.00000 -0.00000 0.23693 -0.01935 - 49 0.00000 0.00000 0.00000 0.00000 -0.13832 0.30324 - 50 -0.00000 0.00000 0.00000 0.00000 -0.14825 0.16644 - 51 0.01077 -0.52310 0.37969 -0.15615 -0.00000 -0.00000 - 52 0.00000 -0.00000 0.00000 0.00000 -0.04092 -0.00256 - 53 -0.00000 0.00000 -0.00000 -0.00000 0.23693 0.01935 - 54 -0.00000 -0.00000 -0.00000 -0.00000 0.13832 0.30324 - 55 0.00000 -0.00000 -0.00000 -0.00000 0.14825 0.16644 - 56 0.01077 0.52310 0.37969 0.15615 -0.00000 -0.00000 - 57 0.00000 -0.00000 -0.00000 -0.00000 0.10790 -0.32313 - 58 0.00000 -0.00000 -0.00000 -0.00000 0.10790 0.32313 - 59 -0.00000 0.00000 0.00000 0.00000 -0.35854 0.28381 - 60 -0.00000 0.00000 0.00000 0.00000 -0.35854 -0.28381 + 41 0.00000 0.00000 -0.00000 -0.00000 -0.28213 0.04685 + 42 -0.00000 0.00000 -0.00000 -0.00000 0.24477 0.34456 + 43 0.00000 0.00000 0.00000 -0.00000 0.33810 0.21676 + 44 0.00380 -0.52217 -0.52913 -0.28773 0.00000 -0.00000 + 45 0.00000 -0.00000 0.00000 0.00000 -0.14441 0.43383 + 46 0.00000 -0.00000 0.00000 0.00000 -0.14441 -0.43383 + 47 0.00000 0.00000 0.00000 -0.00000 -0.04092 0.00256 + 48 -0.00000 -0.00000 -0.00000 0.00000 0.23693 -0.01934 + 49 -0.00000 0.00000 0.00000 0.00000 -0.13832 0.30324 + 50 0.00000 0.00000 0.00000 0.00000 -0.14825 0.16644 + 51 0.01077 -0.52310 0.37969 -0.15615 -0.00000 0.00000 + 52 0.00000 0.00000 0.00000 -0.00000 -0.04092 -0.00256 + 53 -0.00000 -0.00000 -0.00000 0.00000 0.23693 0.01934 + 54 0.00000 -0.00000 -0.00000 -0.00000 0.13832 0.30324 + 55 -0.00000 -0.00000 -0.00000 -0.00000 0.14825 0.16644 + 56 0.01077 0.52310 0.37969 0.15615 -0.00000 0.00000 + 57 0.00000 0.00000 -0.00000 -0.00000 0.10790 -0.32313 + 58 0.00000 0.00000 -0.00000 -0.00000 0.10790 0.32313 + 59 0.00000 0.00000 0.00000 0.00000 -0.35854 0.28381 + 60 0.00000 0.00000 0.00000 0.00000 -0.35854 -0.28381 43 44 45 46 47 48 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.05834 0.02268 0.05279 -0.08118 -0.02216 -0.12893 - 2 0.33838 -0.13703 -0.31848 0.47622 0.13840 0.78230 - 3 -0.09823 -0.10366 0.25896 -0.11473 -0.11098 -0.01962 + 1 -0.05834 0.02268 0.05278 -0.08118 -0.02216 -0.12893 + 2 0.33838 -0.13703 -0.31847 0.47622 0.13839 0.78231 + 3 -0.09823 -0.10366 0.25896 -0.11474 -0.11098 -0.01962 4 0.46153 0.07568 -0.15525 0.01704 -0.24323 -0.03427 - 5 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 6 0.05834 0.02268 0.05279 0.08118 0.02216 -0.12893 - 7 -0.33838 -0.13703 -0.31848 -0.47622 -0.13840 0.78230 - 8 -0.09823 0.10366 -0.25896 -0.11473 -0.11098 0.01962 + 5 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 6 0.05834 0.02268 0.05278 0.08118 0.02216 -0.12893 + 7 -0.33838 -0.13703 -0.31847 -0.47622 -0.13839 0.78231 + 8 -0.09823 0.10366 -0.25896 -0.11474 -0.11098 0.01962 9 0.46153 -0.07568 0.15525 0.01704 -0.24323 0.03427 - 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 10 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 11 0.02504 -0.06444 0.07255 0.07415 0.05951 0.08004 - 12 -0.15223 0.39353 -0.44365 -0.44066 -0.36868 -0.49965 + 12 -0.15222 0.39352 -0.44365 -0.44067 -0.36868 -0.49966 13 -0.13061 0.00225 -0.04821 -0.10021 -0.31643 -0.01875 - 14 0.22995 0.12424 0.16486 0.02279 -0.31506 -0.28291 - 15 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 14 0.22995 0.12425 0.16486 0.02279 -0.31506 -0.28291 + 15 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 16 -0.02504 -0.06444 0.07255 -0.07415 -0.05951 0.08004 - 17 0.15223 0.39353 -0.44365 0.44066 0.36868 -0.49965 + 17 0.15222 0.39352 -0.44365 0.44067 0.36868 -0.49966 18 -0.13061 -0.00225 0.04821 -0.10021 -0.31643 0.01875 - 19 0.22995 -0.12424 -0.16486 0.02279 -0.31506 0.28291 - 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 19 0.22995 -0.12425 -0.16486 0.02279 -0.31506 0.28291 + 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 21 -0.00510 -0.01994 -0.10148 -0.10140 -0.00736 0.06591 - 22 0.02330 0.12751 0.62008 0.61316 0.03300 -0.41157 - 23 -0.26631 0.17399 -0.03870 0.00524 -0.20946 0.23962 + 22 0.02329 0.12752 0.62008 0.61316 0.03300 -0.41157 + 23 -0.26631 0.17399 -0.03870 0.00523 -0.20946 0.23962 24 0.32178 -0.20676 0.01016 -0.13338 -0.11033 0.24482 - 25 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 25 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 26 0.00510 -0.01994 -0.10148 0.10140 0.00736 0.06591 - 27 -0.02330 0.12751 0.62008 -0.61316 -0.03300 -0.41157 - 28 -0.26631 -0.17399 0.03870 0.00524 -0.20946 -0.23962 + 27 -0.02329 0.12752 0.62008 -0.61316 -0.03300 -0.41157 + 28 -0.26631 -0.17399 0.03870 0.00523 -0.20946 -0.23962 29 0.32178 0.20676 -0.01016 -0.13338 -0.11033 -0.24482 - 30 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 31 0.11582 -0.29164 0.22670 0.32243 0.60311 0.32408 - 32 -0.11582 -0.29164 0.22670 -0.32243 -0.60311 0.32408 - 33 0.40556 -0.29496 -0.22356 -0.35430 0.04475 0.19253 - 34 -0.40556 -0.29496 -0.22356 0.35430 -0.04475 0.19253 + 30 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 31 0.11582 -0.29164 0.22670 0.32244 0.60311 0.32408 + 32 -0.11582 -0.29164 0.22670 -0.32244 -0.60311 0.32408 + 33 0.40557 -0.29497 -0.22356 -0.35429 0.04475 0.19253 + 34 -0.40557 -0.29497 -0.22356 0.35429 -0.04475 0.19253 35 -0.09347 0.06358 -0.02475 -0.04071 0.07124 0.09223 - 36 0.54612 -0.38217 0.15743 0.25682 -0.44680 -0.55679 + 36 0.54611 -0.38217 0.15743 0.25682 -0.44680 -0.55679 37 0.05807 0.33837 -0.13928 -0.16191 0.22490 0.11605 - 38 0.33241 0.07222 0.23435 0.17328 -0.05088 -0.08498 - 39 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 38 0.33241 0.07223 0.23434 0.17329 -0.05088 -0.08498 + 39 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 40 0.09347 0.06358 -0.02475 0.04071 -0.07124 0.09223 - 41 -0.54612 -0.38217 0.15743 -0.25682 0.44680 -0.55679 + 41 -0.54611 -0.38217 0.15743 -0.25682 0.44680 -0.55679 42 0.05807 -0.33837 0.13928 -0.16191 0.22490 -0.11605 - 43 0.33241 -0.07222 -0.23435 0.17328 -0.05088 0.08498 + 43 0.33241 -0.07223 -0.23434 0.17329 -0.05088 0.08498 44 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 45 -0.15904 0.57961 -0.16935 -0.21129 0.43714 0.36453 46 0.15904 0.57961 -0.16935 0.21129 -0.43714 0.36453 - 47 0.05085 -0.01992 -0.10343 -0.08588 0.02024 -0.06749 - 48 -0.29723 0.11077 0.64735 0.53974 -0.13544 0.40989 - 49 0.10140 0.30436 0.23779 0.25100 0.05171 -0.00023 - 50 0.14225 0.23774 -0.07679 -0.13571 0.29542 -0.05131 - 51 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 52 -0.05085 -0.01992 -0.10343 0.08588 -0.02024 -0.06749 - 53 0.29723 0.11077 0.64735 -0.53974 0.13544 0.40989 - 54 0.10140 -0.30436 -0.23779 0.25100 0.05171 0.00023 - 55 0.14225 -0.23774 0.07679 -0.13571 0.29542 0.05131 - 56 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 57 -0.01079 -0.39144 -0.51332 -0.44781 -0.05131 -0.21180 - 58 0.01079 -0.39144 -0.51332 0.44781 0.05131 -0.21180 - 59 0.35169 0.25249 -0.32079 -0.31773 0.33770 -0.25942 - 60 -0.35169 0.25249 -0.32079 0.31773 -0.33770 -0.25942 + 47 0.05085 -0.01992 -0.10343 -0.08588 0.02025 -0.06749 + 48 -0.29723 0.11077 0.64735 0.53974 -0.13545 0.40989 + 49 0.10140 0.30436 0.23779 0.25100 0.05170 -0.00024 + 50 0.14226 0.23774 -0.07679 -0.13570 0.29542 -0.05131 + 51 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 52 -0.05085 -0.01992 -0.10343 0.08588 -0.02025 -0.06749 + 53 0.29723 0.11077 0.64735 -0.53974 0.13545 0.40989 + 54 0.10140 -0.30436 -0.23779 0.25100 0.05170 0.00024 + 55 0.14226 -0.23774 0.07679 -0.13570 0.29542 0.05131 + 56 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 57 -0.01079 -0.39144 -0.51331 -0.44782 -0.05131 -0.21179 + 58 0.01079 -0.39144 -0.51331 0.44782 0.05131 -0.21179 + 59 0.35170 0.25248 -0.32079 -0.31773 0.33770 -0.25941 + 60 -0.35170 0.25248 -0.32079 0.31773 -0.33770 -0.25941 49 50 51 52 53 54 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.06085 0.03722 0.06722 0.00317 -0.00053 0.05880 - 2 -0.36183 -0.23260 -0.44870 -0.01124 -0.00248 -0.40591 + 1 0.06085 0.03721 0.06722 0.00317 -0.00053 0.05880 + 2 -0.36184 -0.23260 -0.44870 -0.01124 -0.00248 -0.40591 3 -0.14570 -0.34787 0.12771 -0.56073 0.20695 -0.24957 - 4 0.11217 0.04892 0.60187 0.05942 0.04403 -0.00632 - 5 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 6 -0.06085 0.03722 0.06722 -0.00317 -0.00053 -0.05880 - 7 0.36183 -0.23260 -0.44870 0.01124 -0.00248 0.40591 + 4 0.11217 0.04893 0.60187 0.05941 0.04403 -0.00633 + 5 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 6 -0.06085 0.03721 0.06722 -0.00317 -0.00053 -0.05880 + 7 0.36184 -0.23260 -0.44870 0.01124 -0.00248 0.40591 8 -0.14570 0.34787 -0.12771 -0.56073 -0.20695 -0.24957 - 9 0.11217 -0.04892 -0.60187 0.05942 -0.04403 -0.00632 - 10 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 9 0.11217 -0.04893 -0.60187 0.05941 -0.04403 -0.00633 + 10 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 11 -0.05838 -0.11175 -0.01185 -0.09661 0.00390 0.03680 - 12 0.35368 0.70622 0.07742 0.64780 -0.03141 -0.25015 - 13 -0.14824 -0.09323 -0.45250 0.02122 0.53712 -0.21473 - 14 0.12936 -0.11736 0.15653 0.10781 0.19812 0.72303 - 15 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 12 0.35368 0.70622 0.07742 0.64780 -0.03140 -0.25015 + 13 -0.14824 -0.09324 -0.45250 0.02122 0.53712 -0.21473 + 14 0.12936 -0.11737 0.15653 0.10781 0.19812 0.72303 + 15 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 16 0.05838 -0.11175 -0.01185 0.09661 0.00390 -0.03680 - 17 -0.35368 0.70622 0.07742 -0.64780 -0.03141 0.25015 - 18 -0.14824 0.09323 0.45250 0.02122 -0.53712 -0.21473 - 19 0.12936 0.11736 -0.15653 0.10781 -0.19812 0.72303 - 20 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 17 -0.35368 0.70622 0.07742 -0.64780 -0.03140 0.25015 + 18 -0.14824 0.09324 0.45250 0.02122 -0.53712 -0.21473 + 19 0.12936 0.11737 -0.15653 0.10781 -0.19812 0.72303 + 20 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 21 0.06637 0.09765 -0.04908 -0.03554 -0.00213 -0.08728 - 22 -0.40716 -0.61940 0.31761 0.24771 0.02086 0.59992 - 23 -0.17253 -0.13924 -0.32414 -0.19436 -0.52214 0.33345 - 24 0.14290 -0.18027 0.02622 -0.47822 0.40019 0.39422 - 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 22 -0.40717 -0.61940 0.31762 0.24771 0.02086 0.59992 + 23 -0.17253 -0.13923 -0.32414 -0.19436 -0.52214 0.33345 + 24 0.14290 -0.18027 0.02623 -0.47822 0.40019 0.39423 + 25 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 26 -0.06637 0.09765 -0.04908 0.03554 -0.00213 0.08728 - 27 0.40716 -0.61940 0.31761 -0.24771 0.02086 -0.59992 - 28 -0.17253 0.13924 0.32414 -0.19436 0.52214 0.33345 - 29 0.14290 0.18027 -0.02622 -0.47822 -0.40019 0.39422 - 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 27 0.40717 -0.61940 0.31762 -0.24771 0.02086 -0.59992 + 28 -0.17253 0.13923 0.32414 -0.19436 0.52214 0.33345 + 29 0.14290 0.18027 -0.02623 -0.47822 -0.40019 0.39423 + 30 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 31 -0.07743 -0.21967 0.25325 -0.30688 -0.44831 0.07820 32 0.07743 -0.21967 0.25325 0.30688 -0.44831 -0.07820 - 33 0.47711 0.33385 0.05619 -0.21014 0.51910 -0.26111 - 34 -0.47711 0.33385 0.05619 0.21014 0.51910 0.26111 + 33 0.47711 0.33385 0.05619 -0.21014 0.51910 -0.26110 + 34 -0.47711 0.33385 0.05619 0.21014 0.51910 0.26110 35 0.07086 -0.03056 0.07526 0.02689 0.05143 0.06052 - 36 -0.42899 0.21352 -0.49167 -0.19439 -0.35148 -0.41541 - 37 0.06306 -0.03075 0.15321 -0.26590 -0.12018 0.06499 - 38 0.11911 0.07453 0.00857 0.04267 0.15465 0.06260 - 39 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 36 -0.42900 0.21351 -0.49167 -0.19440 -0.35148 -0.41541 + 37 0.06306 -0.03074 0.15321 -0.26589 -0.12018 0.06499 + 38 0.11911 0.07453 0.00857 0.04267 0.15464 0.06260 + 39 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 40 -0.07086 -0.03056 0.07526 -0.02689 0.05143 -0.06052 - 41 0.42899 0.21352 -0.49167 0.19439 -0.35148 0.41541 - 42 0.06306 0.03075 -0.15321 -0.26590 0.12018 0.06499 - 43 0.11911 -0.07453 -0.00857 0.04267 -0.15465 0.06260 - 44 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 45 0.30081 -0.07193 0.30774 -0.14863 0.09225 0.23757 - 46 -0.30081 -0.07193 0.30774 0.14863 0.09225 -0.23757 + 41 0.42900 0.21351 -0.49167 0.19440 -0.35148 0.41541 + 42 0.06306 0.03074 -0.15321 -0.26589 0.12018 0.06499 + 43 0.11911 -0.07453 -0.00857 0.04267 -0.15464 0.06260 + 44 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 45 0.30082 -0.07193 0.30774 -0.14862 0.09225 0.23756 + 46 -0.30082 -0.07193 0.30774 0.14862 0.09225 -0.23756 47 -0.11287 -0.06460 -0.01973 -0.00897 -0.04267 -0.00685 48 0.70672 0.41504 0.12260 0.06945 0.29014 0.04268 - 49 0.14599 0.13302 -0.34203 0.02326 -0.08284 -0.26189 - 50 -0.02460 -0.38262 -0.12479 0.48344 0.26719 0.10775 - 51 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 49 0.14598 0.13302 -0.34203 0.02326 -0.08284 -0.26189 + 50 -0.02460 -0.38262 -0.12479 0.48344 0.26719 0.10776 + 51 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 52 0.11287 -0.06460 -0.01973 0.00897 -0.04267 0.00685 53 -0.70672 0.41504 0.12260 -0.06945 0.29014 -0.04268 - 54 0.14599 -0.13302 0.34203 0.02326 0.08284 -0.26189 - 55 -0.02460 0.38262 0.12479 0.48344 -0.26719 0.10775 - 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 57 -0.52556 -0.29507 0.23009 -0.10029 -0.14003 0.20420 - 58 0.52556 -0.29507 0.23009 0.10029 -0.14003 -0.20420 - 59 -0.32347 -0.47518 -0.24776 0.35601 0.06441 -0.00414 - 60 0.32347 -0.47518 -0.24776 -0.35601 0.06441 0.00414 + 54 0.14598 -0.13302 0.34203 0.02326 0.08284 -0.26189 + 55 -0.02460 0.38262 0.12479 0.48344 -0.26719 0.10776 + 56 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 57 -0.52556 -0.29507 0.23009 -0.10029 -0.14004 0.20420 + 58 0.52556 -0.29507 0.23009 0.10029 -0.14004 -0.20420 + 59 -0.32347 -0.47519 -0.24776 0.35600 0.06441 -0.00414 + 60 0.32347 -0.47519 -0.24776 -0.35600 0.06441 0.00414 55 56 57 58 59 60 ----------- ----------- ----------- ----------- ----------- ----------- 1 -0.08989 0.01510 0.01661 0.02005 -0.00499 0.04414 2 0.60853 -0.09062 -0.10600 -0.14140 0.03340 -0.32847 3 -0.21224 -0.11872 0.13200 -0.45433 0.70243 0.16278 - 4 0.05257 -0.36457 -0.38167 0.13629 -0.05065 0.65769 - 5 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 4 0.05256 -0.36458 -0.38167 0.13629 -0.05065 0.65769 + 5 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 6 0.08989 0.01510 0.01661 -0.02005 -0.00499 -0.04414 7 -0.60853 -0.09062 -0.10600 0.14140 0.03340 0.32847 8 -0.21224 0.11872 -0.13200 -0.45433 -0.70243 0.16278 - 9 0.05257 0.36457 0.38167 0.13629 0.05065 0.65769 - 10 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 11 -0.00731 0.02725 -0.01909 -0.04610 0.00745 -0.05196 - 12 0.06374 -0.19115 0.13760 0.33350 -0.05183 0.37682 + 9 0.05256 0.36458 0.38167 0.13629 0.05065 0.65769 + 10 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 11 -0.00731 0.02725 -0.01909 -0.04609 0.00745 -0.05196 + 12 0.06373 -0.19115 0.13760 0.33349 -0.05183 0.37682 13 0.25124 0.25479 0.11127 -0.19457 0.23943 -0.56833 - 14 -0.08785 0.38348 -0.39209 0.12835 -0.53406 -0.24121 - 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 16 0.00731 0.02725 -0.01909 0.04610 0.00745 0.05196 - 17 -0.06374 -0.19115 0.13760 -0.33350 -0.05183 -0.37682 + 14 -0.08785 0.38348 -0.39209 0.12836 -0.53406 -0.24121 + 15 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 16 0.00731 0.02725 -0.01909 0.04609 0.00745 0.05196 + 17 -0.06373 -0.19115 0.13760 -0.33349 -0.05183 -0.37682 18 0.25124 -0.25479 -0.11127 -0.19457 -0.23943 -0.56833 - 19 -0.08785 -0.38348 0.39209 0.12835 0.53406 -0.24121 - 20 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 19 -0.08785 -0.38348 0.39209 0.12836 0.53406 -0.24121 + 20 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 21 -0.03521 -0.03182 0.01657 -0.02074 -0.00758 0.05675 22 0.23245 0.21889 -0.12012 0.15486 0.05144 -0.41380 - 23 -0.36600 0.17276 0.02185 -0.04663 -0.43599 0.49652 - 24 -0.18562 0.30524 -0.44923 -0.21409 -0.41104 -0.39590 - 25 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 23 -0.36599 0.17276 0.02185 -0.04663 -0.43599 0.49652 + 24 -0.18562 0.30524 -0.44923 -0.21409 -0.41104 -0.39589 + 25 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 26 0.03521 -0.03182 0.01657 0.02074 -0.00758 -0.05675 27 -0.23245 0.21889 -0.12012 -0.15486 0.05144 0.41380 - 28 -0.36600 -0.17276 -0.02185 -0.04663 0.43599 0.49652 - 29 -0.18562 -0.30524 0.44923 -0.21409 0.41104 -0.39590 - 30 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 31 -0.14094 -0.20985 -0.04154 -0.02084 -0.00735 0.26969 - 32 0.14094 -0.20985 -0.04154 0.02084 -0.00735 -0.26969 - 33 -0.00222 -0.05707 -0.19612 -0.10449 0.03922 -0.27789 - 34 0.00222 -0.05707 -0.19612 0.10449 0.03922 0.27789 + 28 -0.36599 -0.17276 -0.02185 -0.04663 0.43599 0.49652 + 29 -0.18562 -0.30524 0.44923 -0.21409 0.41104 -0.39589 + 30 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 31 -0.14093 -0.20985 -0.04154 -0.02084 -0.00735 0.26969 + 32 0.14093 -0.20985 -0.04154 0.02084 -0.00735 -0.26969 + 33 -0.00222 -0.05708 -0.19612 -0.10449 0.03922 -0.27789 + 34 0.00222 -0.05708 -0.19612 0.10449 0.03922 0.27789 35 0.02328 -0.04109 0.04186 -0.06153 -0.02738 -0.01273 - 36 -0.17901 0.28523 -0.32807 0.46654 0.21757 0.07838 + 36 -0.17902 0.28523 -0.32807 0.46654 0.21757 0.07838 37 0.31030 0.54927 -0.11106 0.60802 0.42984 0.02170 38 0.48066 0.17254 0.66309 -0.46487 -0.31930 0.36053 - 39 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 39 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 40 -0.02328 -0.04109 0.04186 0.06153 -0.02738 0.01273 - 41 0.17901 0.28523 -0.32807 -0.46654 0.21757 -0.07838 + 41 0.17902 0.28523 -0.32807 -0.46654 0.21757 -0.07838 42 0.31030 -0.54927 0.11106 0.60802 -0.42984 0.02170 43 0.48066 -0.17254 -0.66309 -0.46487 0.31930 0.36053 - 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 44 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 45 0.35066 0.31504 0.14736 0.17100 0.15757 0.04812 46 -0.35066 0.31504 0.14736 -0.17100 0.15757 -0.04812 47 -0.01851 0.03133 -0.04902 0.07130 0.04167 -0.00960 48 0.13135 -0.22709 0.36667 -0.53802 -0.32571 0.08189 - 49 -0.52889 -0.17005 -0.58041 0.39453 0.25502 -0.21909 - 50 -0.23694 -0.53430 0.19950 -0.54048 -0.31984 0.00186 - 51 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 49 -0.52889 -0.17006 -0.58041 0.39452 0.25502 -0.21909 + 50 -0.23694 -0.53430 0.19950 -0.54048 -0.31984 0.00187 + 51 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 52 0.01851 0.03133 -0.04902 -0.07130 0.04167 0.00960 53 -0.13135 -0.22709 0.36667 0.53802 -0.32571 -0.08189 - 54 -0.52889 0.17005 0.58041 0.39453 -0.25502 -0.21909 - 55 -0.23694 0.53430 -0.19950 -0.54048 0.31984 0.00186 - 56 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 54 -0.52889 0.17006 0.58041 0.39452 -0.25502 -0.21909 + 55 -0.23694 0.53430 -0.19950 -0.54048 0.31984 0.00187 + 56 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 57 0.36329 0.28938 0.26297 -0.01006 -0.03248 0.13722 58 -0.36329 0.28938 0.26297 0.01006 -0.03248 -0.13722 59 -0.33886 -0.33075 -0.11581 -0.09330 -0.04790 -0.06477 @@ -3059,27 +3064,30 @@ moments of inertia (a.u.) ------------------ - 2631.731379210404 0.000000000000 0.000000000000 - 0.000000000000 390.819001468288 0.000000000000 - 0.000000000000 0.000000000000 3022.550380678692 - + 2631.731379210398 -0.000000000000 0.000000000000 + -0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678686 + Multipole analysis of the density --------------------------------- - + L x y z total alpha beta nuclear - - - - ----- ----- ---- ------- 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 - + 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 1 0 1 0 0.000000 0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - - 2 2 0 0 -37.347169 -141.071520 -141.071520 244.795872 - 2 1 1 0 0.066524 2.848776 2.848776 -5.631027 + + 2 2 0 0 -37.347168 -141.071520 -141.071520 244.795872 + 2 1 1 0 0.066521 2.848774 2.848774 -5.631027 2 1 0 1 0.000000 0.000000 0.000000 0.000000 2 0 2 0 -37.714760 -767.339030 -767.339030 1496.963300 2 0 1 1 0.000000 0.000000 0.000000 0.000000 - 2 0 0 2 -43.587344 -21.793672 -21.793672 0.000000 + 2 0 0 2 -43.587345 -21.793672 -21.793672 0.000000 + + + Parallel integral file used 9 records with 0 large values ------------- @@ -3092,14 +3100,14 @@ Dipole moment 0.0000000000 A.U. DMX -0.0000000000 DMXEFC 0.0000000000 DMY 0.0000000000 DMYEFC 0.0000000000 - DMZ -0.0000000000 DMZEFC 0.0000000000 + DMZ 0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 A.U. Total dipole 0.0000000000 A.U. Dipole moment 0.0000000000 Debye(s) DMX -0.0000000000 DMXEFC 0.0000000000 DMY 0.0000000000 DMYEFC 0.0000000000 - DMZ -0.0000000000 DMZEFC 0.0000000000 + DMZ 0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 DEBYE(S) Total dipole 0.0000000000 DEBYE(S) @@ -3119,45 +3127,45 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -37.3471685931 0.0000000000 -37.3471685931 - YY -37.7147598234 0.0000000000 -37.7147598234 - ZZ -43.5873441825 0.0000000000 -43.5873441825 - XY 0.0665237349 0.0000000000 0.0665237349 + XX -37.3471683758 0.0000000000 -37.3471683758 + YY -37.7147598437 0.0000000000 -37.7147598437 + ZZ -43.5873445793 0.0000000000 -43.5873445793 + XY 0.0665209395 0.0000000000 0.0665209395 XZ 0.0000000000 0.0000000000 0.0000000000 - YZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 Second moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -50.2286178597 0.0000000000 -50.2286178597 - YY -50.7229953489 0.0000000000 -50.7229953489 - ZZ -58.6210986518 0.0000000000 -58.6210986518 - XY 0.0894685028 0.0000000000 0.0894685028 + XX -50.2286175675 0.0000000000 -50.2286175675 + YY -50.7229953761 0.0000000000 -50.7229953761 + ZZ -58.6210991855 0.0000000000 -58.6210991855 + XY 0.0894647432 0.0000000000 0.0894647432 XZ 0.0000000000 0.0000000000 0.0000000000 - YZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 Quadrupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 3.3038834099 0.0000000000 3.3038834099 - YY 2.7524965643 0.0000000000 2.7524965643 - ZZ -6.0563799742 0.0000000000 -6.0563799742 - XY 0.0997856024 0.0000000000 0.0997856024 + XX 3.3038838356 0.0000000000 3.3038838356 + YY 2.7524966339 0.0000000000 2.7524966339 + ZZ -6.0563804695 0.0000000000 -6.0563804695 + XY 0.0997814092 0.0000000000 0.0997814092 XZ 0.0000000000 0.0000000000 0.0000000000 - YZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 Quadrupole moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 4.4434291406 0.0000000000 4.4434291406 - YY 3.7018629068 0.0000000000 3.7018629068 - ZZ -8.1452920475 0.0000000000 -8.1452920475 - XY 0.1342027543 0.0000000000 0.1342027543 + XX 4.4434297133 0.0000000000 4.4434297133 + YY 3.7018630004 0.0000000000 3.7018630004 + ZZ -8.1452927137 0.0000000000 -8.1452927137 + XY 0.1341971148 0.0000000000 0.1341971148 XZ 0.0000000000 0.0000000000 0.0000000000 - YZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 1 a.u. = 1.344911 Buckinghams = 1.344911 10**(-26) esu*cm**2 @@ -3174,13 +3182,13 @@ -------------------------------------------------------------------------- XXX -0.0000000000 0.0000000000 -0.0000000000 YYY 0.0000000000 0.0000000000 0.0000000000 - ZZZ -0.0000000000 0.0000000000 -0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ -0.0000000000 0.0000000000 -0.0000000000 - YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 ZZX -0.0000000000 0.0000000000 -0.0000000000 - ZZY -0.0000000000 0.0000000000 -0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 XYZ 0.0000000000 0.0000000000 0.0000000000 Third moments in 10**(-34) esu*cm**3 @@ -3189,27 +3197,27 @@ -------------------------------------------------------------------------- XXX -0.0000000000 0.0000000000 -0.0000000000 YYY 0.0000000000 0.0000000000 0.0000000000 - ZZZ -0.0000000000 0.0000000000 -0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ -0.0000000000 0.0000000000 -0.0000000000 - YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 ZZX -0.0000000000 0.0000000000 -0.0000000000 - ZZY -0.0000000000 0.0000000000 -0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 XYZ 0.0000000000 0.0000000000 0.0000000000 Octupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX 0.0000000000 0.0000000000 0.0000000000 + XXX -0.0000000000 0.0000000000 -0.0000000000 YYY 0.0000000000 0.0000000000 0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 XXY -0.0000000000 0.0000000000 -0.0000000000 XXZ 0.0000000000 0.0000000000 0.0000000000 - YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 - ZZX 0.0000000000 0.0000000000 0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 + ZZX -0.0000000000 0.0000000000 -0.0000000000 ZZY -0.0000000000 0.0000000000 -0.0000000000 XYZ 0.0000000000 0.0000000000 0.0000000000 @@ -3217,14 +3225,14 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX 0.0000000000 0.0000000000 0.0000000000 + XXX -0.0000000000 0.0000000000 -0.0000000000 YYY 0.0000000000 0.0000000000 0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 XXY -0.0000000000 0.0000000000 -0.0000000000 XXZ 0.0000000000 0.0000000000 0.0000000000 - YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 - ZZX 0.0000000000 0.0000000000 0.0000000000 + YYX 0.0000000000 0.0000000000 0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 + ZZX -0.0000000000 0.0000000000 -0.0000000000 ZZY -0.0000000000 0.0000000000 -0.0000000000 XYZ 0.0000000000 0.0000000000 0.0000000000 @@ -3372,28 +3380,34 @@ Free electrons Valency Number of Sum of + Bond indices - Bond indices Valency Free electrons Bond indices =Mulliken charge = Net spin population - 1 C 3.97306 2.03135 3.97306 6.00441 -0.00000 - 2 C 3.97306 2.03135 3.97306 6.00441 -0.00000 + 1 C 3.97306 2.03135 3.97306 6.00441 0.00000 + 2 C 3.97306 2.03135 3.97306 6.00441 0.00000 3 C 3.96923 2.10747 3.96923 6.07670 -0.00000 - 4 C 3.96923 2.10747 3.96923 6.07670 -0.00000 - 5 C 3.97007 2.10706 3.97007 6.07713 -0.00000 + 4 C 3.96923 2.10747 3.96923 6.07670 0.00000 + 5 C 3.97007 2.10706 3.97007 6.07713 0.00000 6 C 3.97007 2.10706 3.97007 6.07713 -0.00000 7 H 0.99392 -0.07191 0.99392 0.92201 0.00000 - 8 H 0.99392 -0.07191 0.99392 0.92201 -0.00000 - 9 H 0.99371 -0.07303 0.99371 0.92068 -0.00000 - 10 H 0.99371 -0.07303 0.99371 0.92068 -0.00000 - 11 C 3.96810 2.10823 3.96810 6.07634 -0.00000 - 12 C 3.96810 2.10823 3.96810 6.07634 -0.00000 + 8 H 0.99392 -0.07191 0.99392 0.92201 0.00000 + 9 H 0.99371 -0.07303 0.99371 0.92068 0.00000 + 10 H 0.99371 -0.07303 0.99371 0.92068 0.00000 + 11 C 3.96810 2.10823 3.96810 6.07634 0.00000 + 12 C 3.96810 2.10823 3.96810 6.07634 0.00000 13 H 0.99412 -0.07081 0.99412 0.92331 -0.00000 14 H 0.99412 -0.07081 0.99412 0.92331 -0.00000 - 15 C 3.96478 2.19006 3.96478 6.15483 -0.00000 - 16 C 3.96478 2.19006 3.96478 6.15483 -0.00000 - 17 H 0.99421 -0.07032 0.99421 0.92389 -0.00000 - 18 H 0.99421 -0.07032 0.99421 0.92389 0.00000 + 15 C 3.96478 2.19006 3.96478 6.15483 0.00000 + 16 C 3.96478 2.19006 3.96478 6.15483 0.00000 + 17 H 0.99421 -0.07032 0.99421 0.92389 0.00000 + 18 H 0.99421 -0.07032 0.99421 0.92389 -0.00000 19 H 0.99371 -0.07301 0.99371 0.92070 -0.00000 - 20 H 0.99371 -0.07301 0.99371 0.92070 0.00000 + 20 H 0.99371 -0.07301 0.99371 0.92070 -0.00000 - Task times cpu: 12.1s wall: 12.1s + Task times cpu: 5.4s wall: 5.8s + + + NWChem Input Module + ------------------- + + Summary of allocated global arrays ----------------------------------- No active global arrays @@ -3404,70 +3418,40 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 691 691 2.22e+05 4999 1.73e+05 420 0 1.18e+04 -number of processes/call 9.73e+12 4.44e+13 2.92e+13 0.00e+00 0.00e+00 -bytes total: 3.11e+07 7.08e+06 1.76e+07 8.00e+00 0.00e+00 9.40e+04 -bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 1123200 bytes +calls: 684 684 4.57e+04 1678 3.79e+04 42 0 2410 +number of processes/call -1.94e+14 3.51e+13 4.79e+11 0.00e+00 0.00e+00 +bytes total: 1.32e+07 2.46e+06 6.71e+06 2.00e+02 0.00e+00 1.93e+04 +bytes remote: 9.13e+06 1.09e+06 4.82e+06 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 288736 bytes + MA_summarize_allocated_blocks: starting scan ... -heap block 'gridpts', handle 96, address 0x559ba62c16d8: - type of elements: double precision - number of elements: 17448000 - address of client space: 0x559ba62c1740 - index for client space: 8972081 - total number of bytes: 139584112 -MA_summarize_allocated_blocks: scan completed: 1 heap block, 0 stack blocks +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: allocation statistics: heap stack ---- ----- - current number of blocks 1 0 + current number of blocks 0 0 maximum number of blocks 22 57 - current total bytes 139584112 0 - maximum total bytes 190930952 22516408 - maximum total K-bytes 190931 22517 - maximum total M-bytes 191 23 - - - NWChem Input Module - ------------------- - - - - - + current total bytes 0 0 + maximum total bytes 16151016 22516392 + maximum total K-bytes 16152 22517 + maximum total M-bytes 17 23 + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, - V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, - J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, - J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, - C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, - K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, - J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, - V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, - B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, - S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, - A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, - D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, - J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, - A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, - R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, - D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, - V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, - Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, - D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, - A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, - and R. J. Harrison - "NWChem: Past, present, and future - J. Chem. Phys. 152, 184102 (2020) - doi:10.1063/5.0004997 - + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -3490,4 +3474,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 12.1s wall: 12.1s + Total times cpu: 5.4s wall: 5.8s diff --git a/data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.out b/data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.out index f544a306c..090084cb6 100644 --- a/data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.out +++ b/data/NWChem/basicNWChem7.0/dvb_sp_ks_overlaps.out @@ -1,26 +1,26 @@ argument 1 = dvb_sp_ks_overlaps.in - - - Northwest Computational Chemistry Package (NWChem) 7.0.2 + + + Northwest Computational Chemistry Package (NWChem) 7.0.0 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2020 + + Copyright (c) 1994-2019 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = osmium - program = nwchem - date = Sat Jun 4 13:33:32 2022 + hostname = smp-n17.sam.pitt.edu + program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem + date = Tue Sep 20 18:25:13 2022 - compiled = Fri_Jul_02_16:33:00_2021 - source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src - nwchem branch = 7.0.2 - nwchem revision = b9985dfa - ga revision = 5.7.2 - use scalapack = T + compiled = Wed_May_13_13:33:26_2020 + source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 + nwchem branch = 7.0.0 + nwchem revision = N/A + ga revision = 5.7.1 + use scalapack = F input = dvb_sp_ks_overlaps.in prefix = dvb. data base = ./dvb.db status = startup - nproc = 1 + nproc = 4 time left = -1s @@ -58,27 +58,27 @@ Memory information ------------------ - heap = 13107198 doubles = 100.0 Mbytes - stack = 13107195 doubles = 100.0 Mbytes + heap = 13107196 doubles = 100.0 Mbytes + stack = 13107201 doubles = 100.0 Mbytes global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) - total = 52428793 doubles = 400.0 Mbytes + total = 52428797 doubles = 400.0 Mbytes verify = yes hardfail = no Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + Divinylbenzene in STO-3G basis set ---------------------------------- @@ -90,15 +90,15 @@ ------ auto-z ------ - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - - + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 C 6.0000 0.23680554 1.41416660 0.00000000 @@ -121,13 +121,13 @@ 18 H 1.0000 -1.44522900 3.70144241 0.00000000 19 H 1.0000 0.04815351 -4.93192286 0.00000000 20 H 1.0000 -0.04815351 4.93192286 0.00000000 - + Atomic Mass ----------- - + C 12.000000 H 1.007825 - + Effective nuclear repulsion energy (a.u.) 445.9370121674 @@ -136,26 +136,26 @@ X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - + Z-matrix (autoz) -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value ----------- -------- ----- ----- ----- ----- ----- ---------- 1 Stretch 1 3 1.42204 @@ -228,7 +228,7 @@ 68 Torsion 4 2 11 13 0.00000 69 Torsion 4 2 11 15 180.00000 70 Torsion 4 6 1 12 180.00000 - 71 Torsion 5 2 4 6 -0.00000 + 71 Torsion 5 2 4 6 0.00000 72 Torsion 5 2 4 8 180.00000 73 Torsion 5 2 11 13 180.00000 74 Torsion 5 2 11 15 0.00000 @@ -238,18 +238,18 @@ 78 Torsion 6 1 12 14 180.00000 79 Torsion 6 1 12 16 0.00000 80 Torsion 6 4 2 11 180.00000 - 81 Torsion 7 3 1 12 -0.00000 + 81 Torsion 7 3 1 12 0.00000 82 Torsion 7 3 5 9 0.00000 - 83 Torsion 8 4 2 11 -0.00000 + 83 Torsion 8 4 2 11 0.00000 84 Torsion 8 4 6 10 0.00000 85 Torsion 9 5 2 11 0.00000 86 Torsion 10 6 1 12 0.00000 87 Torsion 13 11 15 17 180.00000 - 88 Torsion 13 11 15 19 -0.00000 + 88 Torsion 13 11 15 19 0.00000 89 Torsion 14 12 16 18 180.00000 - 90 Torsion 14 12 16 20 -0.00000 - - + 90 Torsion 14 12 16 20 0.00000 + + XYZ format geometry ------------------- 20 @@ -274,7 +274,7 @@ H -1.44522900 3.70144241 0.00000000 H 0.04815351 -4.93192286 0.00000000 H -0.04815351 4.93192286 0.00000000 - + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -347,9 +347,6 @@ - library name resolved from: environment - library file name is: - Summary of "ao basis" -> "" (cartesian) @@ -361,20 +358,18 @@ NWChem Property Module ---------------------- - - + + Divinylbenzene in STO-3G basis set - - itol2e modified to match energy - convergence criterion. - + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + Basis "ao basis" -> "ao basis" (cartesian) ----- C (Carbon) @@ -384,15 +379,15 @@ 1 S 7.16168370E+01 0.154329 1 S 1.30450960E+01 0.535328 1 S 3.53051220E+00 0.444635 - + 2 S 2.94124940E+00 -0.099967 2 S 6.83483100E-01 0.399513 2 S 2.22289900E-01 0.700115 - + 3 P 2.94124940E+00 0.155916 3 P 6.83483100E-01 0.607684 3 P 2.22289900E-01 0.391957 - + H (Hydrogen) ------------ Exponent Coefficients @@ -400,7 +395,7 @@ 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + Summary of "ao basis" -> "ao basis" (cartesian) @@ -423,12 +418,12 @@ Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 - + ==================================== Begin overlap 1-e integrals ==================================== @@ -2618,9 +2613,7 @@ End overlap 1-e integrals ==================================== Caching 1-el integrals - itol2e modified to match energy - convergence criterion. - + General Information ------------------- SCF calculation type: DFT @@ -2638,7 +2631,7 @@ Convergence on energy requested: 1.00D-07 Convergence on density requested: 1.00D-05 Convergence on gradient requested: 5.00D-04 - + XC Information -------------- B3LYP Method XC Potential @@ -2647,7 +2640,7 @@ Becke 1988 Exchange Functional 0.720 non-local Lee-Yang-Parr Correlation Functional 0.810 VWN I RPA Correlation Functional 0.190 local - + Grid Information ---------------- Grid used for XC integration: xfine @@ -2660,7 +2653,7 @@ Grid pruning is: on Number of quadrature shells: 1000 Spatial weights used: Erf1 - + Convergence Information ----------------------- Convergence aids based upon iterative change in @@ -2675,7 +2668,7 @@ dE on: start ASAP start dE off: 2 iters 30 iters 30 iters - + Screening Tolerance Information ------------------------------- Density screening/tol_rho: 1.00D-11 @@ -2684,12 +2677,12 @@ XC Gaussian exp screening on grid/accXCfunc: 20 Schwarz screening/accCoul: 1.00D-08 - + Superposition of Atomic Density Guess ------------------------------------- - + Sum of atomic energies: -376.44825176 - + Non-variational initial energy ------------------------------ @@ -2698,17 +2691,17 @@ 2-e energy = 576.084617 HOMO = -0.037645 LUMO = 0.163723 - - + + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 ag 2 bu 3 ag 4 bu 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -2718,138 +2711,150 @@ 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 bu - + Time after variat. SCF: 0.2 Time prior to 1st pass: 0.2 + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507871 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.167D+05 #integrals = 3.473D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 + + Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 - Max. records in memory = 522 Max. recs in file = ********* + Max. records in memory = 132 Max. recs in file = 2708430 Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 0.00 242 - Stack Space remaining (MW): 13.11 13106276 + Heap Space remaining (MW): 11.09 11088324 + Stack Space remaining (MW): 13.11 13106284 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.2544333294 -8.28D+02 1.42D-02 3.78D-01 2.2 - d= 0,ls=0.0,diis 2 -382.3017297979 -4.73D-02 6.99D-03 3.82D-02 3.3 - d= 0,ls=0.0,diis 3 -382.2954334686 6.30D-03 4.21D-03 7.95D-02 4.8 - d= 0,ls=0.0,diis 4 -382.3080988923 -1.27D-02 5.17D-04 8.80D-04 6.2 - d= 0,ls=0.0,diis 5 -382.3082352456 -1.36D-04 1.18D-04 4.46D-05 7.7 + d= 0,ls=0.0,diis 1 -382.2544334915 -8.28D+02 1.42D-02 3.78D-01 1.5 + d= 0,ls=0.0,diis 2 -382.3017300675 -4.73D-02 6.99D-03 3.82D-02 1.9 + d= 0,ls=0.0,diis 3 -382.2954335899 6.30D-03 4.21D-03 7.95D-02 2.5 + d= 0,ls=0.0,diis 4 -382.3080990417 -1.27D-02 5.17D-04 8.80D-04 3.1 + d= 0,ls=0.0,diis 5 -382.3082353945 -1.36D-04 1.18D-04 4.46D-05 3.7 Resetting Diis - d= 0,ls=0.0,diis 6 -382.3082413843 -6.14D-06 3.19D-05 3.09D-06 9.1 - d= 0,ls=0.0,diis 7 -382.3082418611 -4.77D-07 1.42D-05 1.61D-07 10.6 - d= 0,ls=0.0,diis 8 -382.3082418585 2.53D-09 7.54D-06 1.77D-07 12.1 + d= 0,ls=0.0,diis 6 -382.3082415325 -6.14D-06 3.18D-05 3.09D-06 4.3 + d= 0,ls=0.0,diis 7 -382.3082420093 -4.77D-07 1.42D-05 1.61D-07 4.9 + d= 0,ls=0.0,diis 8 -382.3082420068 2.54D-09 7.54D-06 1.77D-07 5.5 - Total DFT energy = -382.308241858533 - One electron energy = -1400.645115531840 - Coulomb energy = 630.242755452145 - Exchange-Corr. energy = -57.842893946284 + Total DFT energy = -382.308242006751 + One electron energy = -1400.645115007806 + Coulomb energy = 630.242754784208 + Exchange-Corr. energy = -57.842893950599 Nuclear repulsion energy = 445.937012167446 - Numeric. integr. density = 70.000000232069 - - Total iterative time = 11.9s + Numeric. integr. density = 70.000000237252 + Total iterative time = 5.3s + Occupations of the irreducible representations ---------------------------------------------- - + irrep alpha beta -------- -------- -------- ag 15.0 15.0 au 2.0 2.0 bg 3.0 3.0 bu 15.0 15.0 - - + + DFT Final Molecular Orbital Analysis ------------------------------------ - + Vector 1 Occ=2.000000D+00 E=-1.002024D+01 Symmetry=bu - MO Center= 2.0D-11, 1.2D-10, -2.6D-34, r^2= 2.1D+00 + MO Center= -2.1D-17, -6.8D-17, 6.7D-53, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.699304 1 C s 6 -0.699304 2 C s 2 0.031560 1 C s 7 -0.031560 2 C s - 35 0.026964 11 C s 40 -0.026964 12 C s - + 35 0.026965 11 C s 40 -0.026965 12 C s + Vector 2 Occ=2.000000D+00 E=-1.002019D+01 Symmetry=ag - MO Center= -2.0D-11, -1.2D-10, 2.3D-23, r^2= 2.1D+00 + MO Center= 5.6D-15, 8.4D-15, 7.1D-24, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.699301 1 C s 6 0.699301 2 C s 2 0.031352 1 C s 7 0.031352 2 C s - 35 -0.027327 11 C s 40 -0.027327 12 C s - + 35 -0.027329 11 C s 40 -0.027329 12 C s + Vector 3 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=bu - MO Center= -4.6D-11, -2.5D-10, 9.8D-33, r^2= 8.6D+00 + MO Center= -3.7D-09, -2.0D-08, -5.2D-28, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.699780 11 C s 40 -0.699780 12 C s 36 0.030781 11 C s 41 -0.030781 12 C s - 1 -0.027417 1 C s 6 0.027417 2 C s - + 1 -0.027419 1 C s 6 0.027419 2 C s + Vector 4 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=ag - MO Center= 4.6D-11, 2.5D-10, 2.8D-18, r^2= 8.6D+00 + MO Center= 3.7D-09, 2.0D-08, -4.0D-18, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.699695 11 C s 40 0.699695 12 C s 36 0.030762 11 C s 41 0.030762 12 C s - 1 0.027650 1 C s 6 0.027650 2 C s - + 1 0.027651 1 C s 6 0.027651 2 C s + Vector 5 Occ=2.000000D+00 E=-1.000689D+01 Symmetry=ag - MO Center= -5.9D-09, 1.9D-09, 1.8D-18, r^2= 2.0D+00 + MO Center= 2.1D-09, -6.4D-10, -2.6D-19, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.546406 5 C s 26 0.546406 6 C s - 11 -0.437520 3 C s 16 -0.437520 4 C s + 21 0.546412 5 C s 26 0.546412 6 C s + 11 -0.437513 3 C s 16 -0.437513 4 C s 22 0.028151 5 C s 27 0.028151 6 C s - + Vector 6 Occ=2.000000D+00 E=-1.000688D+01 Symmetry=bu - MO Center= 5.9D-09, -1.9D-09, -6.5D-27, r^2= 2.0D+00 + MO Center= -2.1D-09, 6.5D-10, -1.3D-27, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.555875 5 C s 26 -0.555875 6 C s - 11 -0.424325 3 C s 16 0.424325 4 C s + 21 0.555878 5 C s 26 -0.555878 6 C s + 11 -0.424322 3 C s 16 0.424322 4 C s 1 -0.028677 1 C s 6 0.028677 2 C s 22 0.028651 5 C s 27 -0.028651 6 C s - + Vector 7 Occ=2.000000D+00 E=-1.000624D+01 Symmetry=bu - MO Center= 1.4D-11, -3.8D-12, 5.0D-30, r^2= 2.0D+00 + MO Center= -5.2D-13, -2.5D-12, -4.5D-30, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.556847 3 C s 16 -0.556847 4 C s - 21 0.425636 5 C s 26 -0.425636 6 C s - + 11 0.556850 3 C s 16 -0.556850 4 C s + 21 0.425633 5 C s 26 -0.425633 6 C s + Vector 8 Occ=2.000000D+00 E=-1.000609D+01 Symmetry=ag - MO Center= -1.5D-11, 4.0D-13, 5.2D-33, r^2= 2.0D+00 + MO Center= 1.0D-13, 8.3D-13, 6.8D-18, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.546516 3 C s 16 0.546516 4 C s - 21 0.437754 5 C s 26 0.437754 6 C s - 1 0.029442 1 C s 6 0.029442 2 C s - + 11 0.546522 3 C s 16 0.546522 4 C s + 21 0.437747 5 C s 26 0.437747 6 C s + 1 0.029441 1 C s 6 0.029441 2 C s + Vector 9 Occ=2.000000D+00 E=-9.992163D+00 Symmetry=bu - MO Center= 1.2D-10, -1.2D-09, -4.8D-33, r^2= 1.5D+01 + MO Center= -2.8D-16, 4.8D-16, 6.2D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700479 15 C s 52 -0.700479 16 C s 48 0.030860 15 C s 53 -0.030860 16 C s - + Vector 10 Occ=2.000000D+00 E=-9.992163D+00 Symmetry=ag - MO Center= -1.2D-10, 1.2D-09, 6.8D-18, r^2= 1.5D+01 + MO Center= 1.3D-15, -6.9D-16, -1.2D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700478 15 C s 52 0.700478 16 C s 48 0.030860 15 C s 53 0.030860 16 C s - - Vector 11 Occ=2.000000D+00 E=-8.094669D-01 Symmetry=ag - MO Center= 2.3D-17, 5.4D-18, -3.4D-32, r^2= 3.0D+00 + + Vector 11 Occ=2.000000D+00 E=-8.094667D-01 Symmetry=ag + MO Center= 4.1D-15, -3.1D-15, 1.2D-15, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.274702 1 C s 7 0.274702 2 C s @@ -2857,9 +2862,9 @@ 22 0.246689 5 C s 27 0.246689 6 C s 36 0.127806 11 C s 41 0.127806 12 C s 1 -0.107859 1 C s 6 -0.107859 2 C s - - Vector 12 Occ=2.000000D+00 E=-7.539346D-01 Symmetry=bu - MO Center= 5.6D-15, 1.0D-13, -1.3D-25, r^2= 7.8D+00 + + Vector 12 Occ=2.000000D+00 E=-7.539347D-01 Symmetry=bu + MO Center= -1.8D-15, -1.5D-14, 1.6D-25, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 -0.297169 11 C s 41 0.297169 12 C s @@ -2867,9 +2872,9 @@ 48 -0.209313 15 C s 53 0.209313 16 C s 35 0.113817 11 C s 40 -0.113817 12 C s 22 -0.112555 5 C s 27 0.112555 6 C s - - Vector 13 Occ=2.000000D+00 E=-7.178615D-01 Symmetry=ag - MO Center= 2.5D-14, -1.8D-13, -3.2D-16, r^2= 1.1D+01 + + Vector 13 Occ=2.000000D+00 E=-7.178616D-01 Symmetry=ag + MO Center= -8.8D-15, 4.4D-14, 7.5D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.314817 11 C s 41 0.314817 12 C s @@ -2877,9 +2882,9 @@ 12 -0.121455 3 C s 17 -0.121455 4 C s 35 -0.119239 11 C s 40 -0.119239 12 C s 47 -0.117464 15 C s 52 -0.117464 16 C s - + Vector 14 Occ=2.000000D+00 E=-6.999224D-01 Symmetry=bu - MO Center= -2.5D-14, -1.4D-14, 9.4D-30, r^2= 3.2D+00 + MO Center= 2.5D-15, 4.5D-15, 8.7D-26, r^2= 3.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.357134 3 C s 17 -0.357134 4 C s @@ -2887,9 +2892,9 @@ 11 -0.132324 3 C s 16 0.132324 4 C s 3 0.124986 1 C px 8 0.124986 2 C px 21 -0.120093 5 C s 26 0.120093 6 C s - + Vector 15 Occ=2.000000D+00 E=-6.673150D-01 Symmetry=bu - MO Center= -1.9D-15, 8.4D-14, -2.0D-25, r^2= 9.1D+00 + MO Center= -1.1D-16, -3.1D-14, -1.0D-26, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.299508 15 C s 53 -0.299508 16 C s @@ -2897,29 +2902,29 @@ 22 -0.202279 5 C s 27 0.202279 6 C s 36 0.136845 11 C s 41 -0.136845 12 C s 38 -0.129054 11 C py 43 -0.129054 12 C py - + Vector 16 Occ=2.000000D+00 E=-5.885094D-01 Symmetry=ag - MO Center= 7.8D-16, -1.3D-16, 4.0D-17, r^2= 8.4D+00 + MO Center= -1.6D-15, -4.4D-15, -1.8D-17, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.241407 15 C s 53 0.241407 16 C s + 48 0.241406 15 C s 53 0.241406 16 C s 22 0.233815 5 C s 27 0.233815 6 C s 2 -0.206378 1 C s 7 -0.206378 2 C s 14 -0.160007 3 C py 19 0.160007 4 C py 36 -0.159613 11 C s 41 -0.159613 12 C s - + Vector 17 Occ=2.000000D+00 E=-5.591516D-01 Symmetry=ag - MO Center= 2.2D-15, 5.1D-15, -4.8D-17, r^2= 5.1D+00 + MO Center= 3.3D-15, -2.5D-15, 9.4D-18, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.326033 3 C s 17 0.326033 4 C s - 3 0.184865 1 C px 8 -0.184865 2 C px + 3 0.184864 1 C px 8 -0.184864 2 C px 22 -0.170744 5 C s 24 0.170444 5 C py 27 -0.170744 6 C s 29 -0.170444 6 C py 31 0.169234 7 H s 32 0.169234 8 H s - - Vector 18 Occ=2.000000D+00 E=-5.314209D-01 Symmetry=bu - MO Center= -3.7D-17, 2.7D-15, -9.3D-24, r^2= 1.2D+01 + + Vector 18 Occ=2.000000D+00 E=-5.314208D-01 Symmetry=bu + MO Center= 1.0D-15, 9.5D-15, -8.1D-27, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.302767 11 C s 41 -0.302767 12 C s @@ -2927,19 +2932,19 @@ 45 0.170519 13 H s 46 -0.170519 14 H s 57 -0.160626 17 H s 58 0.160626 18 H s 12 0.154466 3 C s 17 -0.154466 4 C s - + Vector 19 Occ=2.000000D+00 E=-5.099375D-01 Symmetry=ag - MO Center= 1.7D-15, -7.5D-16, -2.7D-19, r^2= 7.5D+00 + MO Center= -8.9D-16, 1.4D-16, -1.6D-16, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.201895 5 C px 28 -0.201895 6 C px - 13 0.184493 3 C px 18 -0.184493 4 C px + 13 0.184492 3 C px 18 -0.184492 4 C px 36 0.180759 11 C s 41 0.180759 12 C s 33 0.169279 9 H s 34 0.169279 10 H s 22 0.166024 5 C s 27 0.166024 6 C s - - Vector 20 Occ=2.000000D+00 E=-4.575997D-01 Symmetry=ag - MO Center= 1.5D-14, -2.0D-14, -5.2D-17, r^2= 9.5D+00 + + Vector 20 Occ=2.000000D+00 E=-4.575996D-01 Symmetry=ag + MO Center= 9.8D-15, -4.0D-14, 1.4D-16, r^2= 9.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.212730 15 C px 54 -0.212730 16 C px @@ -2947,39 +2952,39 @@ 57 0.179111 17 H s 58 0.179111 18 H s 45 -0.153094 13 H s 46 -0.153094 14 H s 14 0.141385 3 C py 19 -0.141385 4 C py - - Vector 21 Occ=2.000000D+00 E=-4.391972D-01 Symmetry=bu - MO Center= -2.7D-15, 6.2D-15, 1.1D-22, r^2= 1.0D+01 + + Vector 21 Occ=2.000000D+00 E=-4.391971D-01 Symmetry=bu + MO Center= -1.6D-15, 3.8D-14, 5.2D-25, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.219233 11 C px 42 0.219233 12 C px 50 0.210291 15 C py 55 0.210291 16 C py - 14 0.184961 3 C py 19 0.184961 4 C py + 14 0.184960 3 C py 19 0.184960 4 C py 59 -0.178127 19 H s 60 0.178127 20 H s 45 -0.155495 13 H s 46 0.155495 14 H s - + Vector 22 Occ=2.000000D+00 E=-4.110182D-01 Symmetry=bu - MO Center= 3.9D-15, 2.4D-14, 4.2D-22, r^2= 6.8D+00 + MO Center= 1.3D-16, 1.7D-14, 7.6D-24, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.235310 1 C s 7 -0.235310 2 C s - 33 0.230466 9 H s 34 -0.230466 10 H s - 31 -0.226657 7 H s 32 0.226657 8 H s - 13 -0.222260 3 C px 18 -0.222260 4 C px + 33 0.230467 9 H s 34 -0.230467 10 H s + 31 -0.226658 7 H s 32 0.226658 8 H s + 13 -0.222261 3 C px 18 -0.222261 4 C px 24 -0.177972 5 C py 29 -0.177972 6 C py - - Vector 23 Occ=2.000000D+00 E=-3.976932D-01 Symmetry=bu - MO Center= 1.5D-14, -1.1D-13, 2.7D-22, r^2= 8.7D+00 + + Vector 23 Occ=2.000000D+00 E=-3.976933D-01 Symmetry=bu + MO Center= 1.4D-14, -8.3D-14, 1.0D-24, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.251236 5 C px 28 0.251236 6 C px 49 0.250511 15 C px 54 0.250511 16 C px - 3 -0.220826 1 C px 8 -0.220826 2 C px + 3 -0.220827 1 C px 8 -0.220827 2 C px 57 0.215415 17 H s 58 -0.215415 18 H s 38 0.181486 11 C py 43 0.181486 12 C py - + Vector 24 Occ=2.000000D+00 E=-3.959385D-01 Symmetry=ag - MO Center= -2.4D-14, 1.0D-13, 4.1D-30, r^2= 1.5D+01 + MO Center= -1.4D-14, 5.3D-14, 2.4D-30, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.338998 15 C py 55 -0.338998 16 C py @@ -2987,29 +2992,29 @@ 37 0.251492 11 C px 42 -0.251492 12 C px 45 -0.145063 13 H s 46 -0.145063 14 H s 24 0.136713 5 C py 29 -0.136713 6 C py - - Vector 25 Occ=2.000000D+00 E=-3.744295D-01 Symmetry=bu - MO Center= -1.3D-14, -7.4D-15, 6.0D-23, r^2= 4.4D+00 + + Vector 25 Occ=2.000000D+00 E=-3.744297D-01 Symmetry=bu + MO Center= -3.5D-15, -1.8D-15, 2.9D-32, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 13 0.307585 3 C px 18 0.307585 4 C px 31 0.252268 7 H s 32 -0.252268 8 H s - 24 -0.226087 5 C py 29 -0.226087 6 C py - 33 0.218182 9 H s 34 -0.218182 10 H s - 23 0.188063 5 C px 28 0.188063 6 C px - - Vector 26 Occ=2.000000D+00 E=-3.509366D-01 Symmetry=bu - MO Center= -2.2D-15, -1.2D-15, 7.0D-23, r^2= 9.0D+00 + 24 -0.226088 5 C py 29 -0.226088 6 C py + 33 0.218183 9 H s 34 -0.218183 10 H s + 23 0.188062 5 C px 28 0.188062 6 C px + + Vector 26 Occ=2.000000D+00 E=-3.509367D-01 Symmetry=bu + MO Center= 6.5D-16, 1.1D-15, -1.2D-24, r^2= 9.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.245677 15 C py 55 -0.245677 16 C py - 14 0.224345 3 C py 19 0.224345 4 C py - 37 -0.201679 11 C px 42 -0.201679 12 C px - 24 -0.193258 5 C py 29 -0.193258 6 C py - 38 0.187744 11 C py 43 0.187744 12 C py - + 14 0.224344 3 C py 19 0.224344 4 C py + 37 -0.201678 11 C px 42 -0.201678 12 C px + 24 -0.193257 5 C py 29 -0.193257 6 C py + 38 0.187745 11 C py 43 0.187745 12 C py + Vector 27 Occ=2.000000D+00 E=-3.470152D-01 Symmetry=ag - MO Center= 8.8D-17, 7.5D-15, -2.4D-16, r^2= 1.2D+01 + MO Center= -3.2D-15, 1.8D-14, 1.1D-16, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.295189 15 C px 54 -0.295189 16 C px @@ -3017,9 +3022,9 @@ 37 -0.208878 11 C px 42 0.208878 12 C px 45 0.200233 13 H s 46 0.200233 14 H s 31 -0.156471 7 H s 32 -0.156471 8 H s - + Vector 28 Occ=2.000000D+00 E=-3.244706D-01 Symmetry=au - MO Center= -1.7D-15, 4.4D-15, 1.5D-15, r^2= 3.6D+00 + MO Center= 2.2D-16, 3.1D-15, -5.4D-16, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.337608 1 C pz 10 0.337608 2 C pz @@ -3027,29 +3032,29 @@ 25 0.297170 5 C pz 30 0.297170 6 C pz 39 0.173946 11 C pz 44 0.173946 12 C pz 51 0.092442 15 C pz 56 0.092442 16 C pz - - Vector 29 Occ=2.000000D+00 E=-3.110644D-01 Symmetry=bu - MO Center= -4.1D-16, 5.9D-15, -1.5D-24, r^2= 1.2D+01 + + Vector 29 Occ=2.000000D+00 E=-3.110645D-01 Symmetry=bu + MO Center= 8.7D-17, -3.5D-15, -9.7D-32, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.259102 13 H s 46 -0.259102 14 H s - 4 0.241974 1 C py 9 0.241974 2 C py + 4 0.241973 1 C py 9 0.241973 2 C py 57 0.231029 17 H s 58 -0.231029 18 H s 37 -0.217251 11 C px 42 -0.217251 12 C px 59 -0.212334 19 H s 60 0.212334 20 H s - + Vector 30 Occ=2.000000D+00 E=-2.929833D-01 Symmetry=ag - MO Center= -7.3D-17, -3.4D-15, -1.1D-15, r^2= 6.1D+00 + MO Center= 3.0D-16, -1.3D-16, -6.6D-16, r^2= 6.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 -0.278184 3 C py 19 0.278184 4 C py 4 0.268398 1 C py 9 -0.268398 2 C py - 38 0.248141 11 C py 43 -0.248141 12 C py + 38 0.248142 11 C py 43 -0.248142 12 C py 33 -0.240411 9 H s 34 -0.240411 10 H s 24 0.234450 5 C py 29 -0.234450 6 C py - + Vector 31 Occ=2.000000D+00 E=-2.874966D-01 Symmetry=ag - MO Center= 8.4D-16, -3.6D-15, 4.6D-17, r^2= 6.2D+00 + MO Center= -2.7D-16, 1.4D-16, 9.1D-18, r^2= 6.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.295855 1 C px 8 -0.295855 2 C px @@ -3057,9 +3062,9 @@ 31 -0.258071 7 H s 32 -0.258071 8 H s 13 -0.222116 3 C px 18 0.222116 4 C px 45 -0.182739 13 H s 46 -0.182739 14 H s - + Vector 32 Occ=2.000000D+00 E=-2.634557D-01 Symmetry=bg - MO Center= -4.7D-16, -3.7D-15, 7.3D-25, r^2= 7.8D+00 + MO Center= -4.0D-16, -4.9D-15, -6.7D-18, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.376480 11 C pz 44 0.376480 12 C pz @@ -3067,25 +3072,25 @@ 51 -0.271399 15 C pz 56 0.271399 16 C pz 15 0.131646 3 C pz 20 -0.131646 4 C pz 25 -0.132107 5 C pz 30 0.132107 6 C pz - + Vector 33 Occ=2.000000D+00 E=-2.123365D-01 Symmetry=au - MO Center= -1.8D-14, 8.3D-15, 2.2D-16, r^2= 1.1D+01 + MO Center= 5.2D-18, 1.9D-15, -1.7D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.417961 15 C pz 56 0.417961 16 C pz 39 0.413781 11 C pz 44 0.413781 12 C pz 15 -0.179204 3 C pz 20 -0.179204 4 C pz 25 -0.176633 5 C pz 30 -0.176633 6 C pz - + Vector 34 Occ=2.000000D+00 E=-1.951682D-01 Symmetry=bg - MO Center= 2.1D-14, -2.6D-15, -2.8D-22, r^2= 2.7D+00 + MO Center= 2.0D-16, -5.4D-16, 9.5D-20, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.463626 3 C pz 20 -0.463626 4 C pz 25 0.457537 5 C pz 30 -0.457537 6 C pz - + Vector 35 Occ=2.000000D+00 E=-1.529965D-01 Symmetry=bg - MO Center= -9.8D-17, -7.2D-15, 5.5D-23, r^2= 8.1D+00 + MO Center= -4.5D-17, -3.7D-16, -3.6D-20, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.397371 15 C pz 56 -0.397371 16 C pz @@ -3093,9 +3098,9 @@ 25 -0.230743 5 C pz 30 0.230743 6 C pz 39 0.223675 11 C pz 44 -0.223675 12 C pz 15 0.215069 3 C pz 20 -0.215069 4 C pz - - Vector 36 Occ=0.000000D+00 E= 3.750921D-02 Symmetry=au - MO Center= -1.1D-15, 8.1D-15, 5.0D-17, r^2= 8.0D+00 + + Vector 36 Occ=0.000000D+00 E= 3.750920D-02 Symmetry=au + MO Center= -1.7D-16, -2.8D-15, 7.6D-17, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.449614 15 C pz 56 -0.449614 16 C pz @@ -3103,26 +3108,26 @@ 25 -0.277553 5 C pz 30 -0.277553 6 C pz 39 0.256133 11 C pz 44 0.256133 12 C pz 15 -0.232265 3 C pz 20 -0.232265 4 C pz - - Vector 37 Occ=0.000000D+00 E= 9.011735D-02 Symmetry=au - MO Center= -1.2D-16, 6.0D-16, -2.1D-17, r^2= 2.7D+00 + + Vector 37 Occ=0.000000D+00 E= 9.011734D-02 Symmetry=au + MO Center= -8.8D-16, 3.3D-16, -5.7D-17, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.582692 3 C pz 20 0.582692 4 C pz 25 -0.553237 5 C pz 30 -0.553237 6 C pz 5 -0.031922 1 C pz 10 -0.031922 2 C pz - + Vector 38 Occ=0.000000D+00 E= 1.107280D-01 Symmetry=bg - MO Center= -1.0D-15, -1.4D-14, -1.2D-22, r^2= 1.1D+01 + MO Center= 6.0D-16, 1.7D-15, 3.4D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.522167 11 C pz 44 -0.522167 12 C pz 51 -0.523103 15 C pz 56 0.523103 16 C pz 15 0.240693 3 C pz 20 -0.240693 4 C pz 25 -0.232246 5 C pz 30 0.232246 6 C pz - + Vector 39 Occ=0.000000D+00 E= 1.822016D-01 Symmetry=au - MO Center= 4.3D-16, 6.8D-15, -9.1D-17, r^2= 7.9D+00 + MO Center= 9.2D-18, 1.6D-15, 3.0D-17, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.529134 11 C pz 44 -0.529134 12 C pz @@ -3130,9 +3135,9 @@ 51 0.379694 15 C pz 56 0.379694 16 C pz 25 -0.199198 5 C pz 30 -0.199198 6 C pz 15 -0.166739 3 C pz 20 -0.166739 4 C pz - + Vector 40 Occ=0.000000D+00 E= 2.723015D-01 Symmetry=bg - MO Center= 9.1D-16, -1.2D-15, -2.7D-23, r^2= 3.8D+00 + MO Center= 6.0D-16, -5.9D-16, -2.9D-19, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.543477 1 C pz 10 -0.543477 2 C pz @@ -3140,210 +3145,210 @@ 15 -0.464184 3 C pz 20 0.464184 4 C pz 39 0.287731 11 C pz 44 -0.287731 12 C pz 51 -0.156154 15 C pz 56 0.156154 16 C pz - - Vector 41 Occ=0.000000D+00 E= 3.324845D-01 Symmetry=ag - MO Center= -3.8D-15, -3.3D-15, -1.5D-18, r^2= 8.8D+00 + + Vector 41 Occ=0.000000D+00 E= 3.324847D-01 Symmetry=ag + MO Center= -2.8D-14, -4.1D-14, -6.0D-17, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 -0.423791 9 H s 34 -0.423791 10 H s + 33 -0.423790 9 H s 34 -0.423790 10 H s 31 -0.413781 7 H s 32 -0.413781 8 H s - 2 0.401567 1 C s 7 0.401567 2 C s + 2 0.401569 1 C s 7 0.401569 2 C s 59 -0.358542 19 H s 60 -0.358542 20 H s - 38 -0.338104 11 C py 43 0.338104 12 C py - - Vector 42 Occ=0.000000D+00 E= 3.406449D-01 Symmetry=bu - MO Center= -3.3D-16, 7.8D-15, -2.2D-23, r^2= 1.0D+01 + 38 -0.338105 11 C py 43 0.338105 12 C py + + Vector 42 Occ=0.000000D+00 E= 3.406450D-01 Symmetry=bu + MO Center= 2.6D-14, 4.5D-14, -2.0D-18, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.433826 13 H s 46 -0.433826 14 H s + 45 0.433827 13 H s 46 -0.433827 14 H s 13 0.355437 3 C px 18 0.355437 4 C px - 37 0.344558 11 C px 42 0.344558 12 C px + 37 0.344559 11 C px 42 0.344559 12 C px 31 -0.321888 7 H s 32 0.321888 8 H s - 57 -0.323132 17 H s 58 0.323132 18 H s - - Vector 43 Occ=0.000000D+00 E= 3.795217D-01 Symmetry=bu - MO Center= 6.0D-15, 1.9D-15, -1.2D-23, r^2= 7.8D+00 + 57 -0.323133 17 H s 58 0.323133 18 H s + + Vector 43 Occ=0.000000D+00 E= 3.795219D-01 Symmetry=bu + MO Center= 1.3D-16, -9.0D-16, -3.9D-19, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.546122 11 C s 41 -0.546122 12 C s - 4 0.461528 1 C py 9 0.461528 2 C py - 33 0.405565 9 H s 34 -0.405565 10 H s - 59 0.351695 19 H s 60 -0.351695 20 H s - 2 0.338384 1 C s 7 -0.338384 2 C s - - Vector 44 Occ=0.000000D+00 E= 3.812896D-01 Symmetry=ag - MO Center= -6.9D-15, -5.1D-15, -8.5D-17, r^2= 1.2D+01 + 36 0.546115 11 C s 41 -0.546115 12 C s + 4 0.461529 1 C py 9 0.461529 2 C py + 33 0.405572 9 H s 34 -0.405572 10 H s + 59 0.351697 19 H s 60 -0.351697 20 H s + 2 0.338376 1 C s 7 -0.338376 2 C s + + Vector 44 Occ=0.000000D+00 E= 3.812902D-01 Symmetry=ag + MO Center= 2.0D-16, -1.5D-15, 5.1D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.579606 13 H s 46 0.579606 14 H s - 12 0.393532 3 C s 17 0.393532 4 C s - 57 -0.391438 17 H s 58 -0.391438 18 H s + 12 0.393525 3 C s 17 0.393525 4 C s + 57 -0.391441 17 H s 58 -0.391441 18 H s 36 -0.382166 11 C s 41 -0.382166 12 C s 37 0.338369 11 C px 42 -0.338369 12 C px - - Vector 45 Occ=0.000000D+00 E= 4.103422D-01 Symmetry=ag - MO Center= -2.9D-13, 8.4D-13, -3.5D-17, r^2= 1.1D+01 + + Vector 45 Occ=0.000000D+00 E= 4.103420D-01 Symmetry=ag + MO Center= -1.1D-13, 2.8D-13, -2.5D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.647347 15 C s 53 0.647347 16 C s - 22 0.620081 5 C s 27 0.620081 6 C s - 57 -0.513316 17 H s 58 -0.513316 18 H s - 12 -0.443647 3 C s 17 -0.443647 4 C s - 59 -0.320790 19 H s 60 -0.320790 20 H s - - Vector 46 Occ=0.000000D+00 E= 4.112340D-01 Symmetry=bu - MO Center= 3.0D-13, -8.5D-13, -5.9D-22, r^2= 1.1D+01 + 48 0.647348 15 C s 53 0.647348 16 C s + 22 0.620079 5 C s 27 0.620079 6 C s + 57 -0.513314 17 H s 58 -0.513314 18 H s + 12 -0.443652 3 C s 17 -0.443652 4 C s + 59 -0.320794 19 H s 60 -0.320794 20 H s + + Vector 46 Occ=0.000000D+00 E= 4.112339D-01 Symmetry=bu + MO Center= 1.0D-13, -3.0D-13, 1.7D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.613159 5 C s 27 -0.613159 6 C s - 48 0.539736 15 C s 53 -0.539736 16 C s - 2 0.476219 1 C s 7 -0.476219 2 C s - 57 -0.447812 17 H s 58 0.447812 18 H s - 12 -0.440664 3 C s 17 0.440664 4 C s - - Vector 47 Occ=0.000000D+00 E= 4.258028D-01 Symmetry=bu - MO Center= 6.5D-15, 4.1D-15, 6.1D-23, r^2= 9.2D+00 + 22 0.613158 5 C s 27 -0.613158 6 C s + 48 0.539738 15 C s 53 -0.539738 16 C s + 2 0.476220 1 C s 7 -0.476220 2 C s + 57 -0.447816 17 H s 58 0.447816 18 H s + 12 -0.440665 3 C s 17 0.440665 4 C s + + Vector 47 Occ=0.000000D+00 E= 4.258026D-01 Symmetry=bu + MO Center= 4.3D-15, 4.8D-15, -3.1D-18, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 31 0.603109 7 H s 32 -0.603109 8 H s - 36 -0.446799 11 C s 41 0.446799 12 C s + 31 0.603108 7 H s 32 -0.603108 8 H s + 36 -0.446800 11 C s 41 0.446800 12 C s 45 0.437140 13 H s 46 -0.437140 14 H s 12 -0.368677 3 C s 17 0.368677 4 C s - 59 0.337700 19 H s 60 -0.337700 20 H s - - Vector 48 Occ=0.000000D+00 E= 4.393598D-01 Symmetry=ag - MO Center= -5.4D-15, 1.2D-14, 1.1D-16, r^2= 7.5D+00 + 59 0.337702 19 H s 60 -0.337702 20 H s + + Vector 48 Occ=0.000000D+00 E= 4.393595D-01 Symmetry=ag + MO Center= 3.0D-15, -1.4D-15, -1.5D-17, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.782303 1 C s 7 0.782303 2 C s - 36 -0.556788 11 C s 41 -0.556788 12 C s - 12 -0.499654 3 C s 17 -0.499654 4 C s - 22 -0.411571 5 C s 27 -0.411571 6 C s - 48 0.409893 15 C s 53 0.409893 16 C s - - Vector 49 Occ=0.000000D+00 E= 4.537210D-01 Symmetry=bu - MO Center= -5.0D-15, -9.1D-16, -2.3D-23, r^2= 1.2D+01 + 2 0.782305 1 C s 7 0.782305 2 C s + 36 -0.556792 11 C s 41 -0.556792 12 C s + 12 -0.499660 3 C s 17 -0.499660 4 C s + 22 -0.411568 5 C s 27 -0.411568 6 C s + 48 0.409886 15 C s 53 0.409886 16 C s + + Vector 49 Occ=0.000000D+00 E= 4.537212D-01 Symmetry=bu + MO Center= 5.6D-15, -5.1D-15, 2.4D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.706723 15 C s 53 -0.706723 16 C s - 57 -0.525560 17 H s 58 0.525560 18 H s - 33 0.477112 9 H s 34 -0.477112 10 H s - 36 -0.428994 11 C s 41 0.428994 12 C s - 22 -0.407164 5 C s 27 0.407164 6 C s - - Vector 50 Occ=0.000000D+00 E= 4.783352D-01 Symmetry=ag - MO Center= 3.9D-15, -9.1D-15, 3.0D-18, r^2= 1.1D+01 + 48 0.706721 15 C s 53 -0.706721 16 C s + 57 -0.525555 17 H s 58 0.525555 18 H s + 33 0.477113 9 H s 34 -0.477113 10 H s + 36 -0.429001 11 C s 41 0.429001 12 C s + 22 -0.407169 5 C s 27 0.407169 6 C s + + Vector 50 Occ=0.000000D+00 E= 4.783353D-01 Symmetry=ag + MO Center= -7.7D-15, 1.3D-14, 2.8D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.706221 3 C s 17 0.706221 4 C s - 22 -0.619400 5 C s 27 -0.619400 6 C s - 59 -0.475184 19 H s 60 -0.475184 20 H s - 48 0.415039 15 C s 53 0.415039 16 C s - 50 -0.382619 15 C py 55 0.382619 16 C py - - Vector 51 Occ=0.000000D+00 E= 5.255621D-01 Symmetry=ag - MO Center= 3.6D-16, 1.0D-15, 1.6D-17, r^2= 6.5D+00 + 12 0.706217 3 C s 17 0.706217 4 C s + 22 -0.619402 5 C s 27 -0.619402 6 C s + 59 -0.475187 19 H s 60 -0.475187 20 H s + 48 0.415042 15 C s 53 0.415042 16 C s + 50 -0.382621 15 C py 55 0.382621 16 C py + + Vector 51 Occ=0.000000D+00 E= 5.255619D-01 Symmetry=ag + MO Center= -2.1D-16, 5.8D-15, 3.1D-18, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.601872 1 C py 9 -0.601872 2 C py - 36 -0.491670 11 C s 41 -0.491670 12 C s + 4 0.601873 1 C py 9 -0.601873 2 C py + 36 -0.491669 11 C s 41 -0.491669 12 C s 13 -0.452502 3 C px 18 0.452502 4 C px - 2 -0.448701 1 C s 7 -0.448701 2 C s + 2 -0.448702 1 C s 7 -0.448702 2 C s 49 -0.342028 15 C px 54 0.342028 16 C px - - Vector 52 Occ=0.000000D+00 E= 5.463505D-01 Symmetry=bu - MO Center= 1.9D-15, -3.3D-15, 1.3D-22, r^2= 7.7D+00 + + Vector 52 Occ=0.000000D+00 E= 5.463507D-01 Symmetry=bu + MO Center= 8.4D-16, -4.0D-15, 1.1D-18, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.647799 3 C s 17 -0.647799 4 C s - 3 -0.560730 1 C px 8 -0.560730 2 C px - 50 0.483440 15 C py 55 0.483440 16 C py + 12 0.647801 3 C s 17 -0.647801 4 C s + 3 -0.560732 1 C px 8 -0.560732 2 C px + 50 0.483439 15 C py 55 0.483439 16 C py 24 -0.478220 5 C py 29 -0.478220 6 C py - 59 0.356006 19 H s 60 -0.356006 20 H s - - Vector 53 Occ=0.000000D+00 E= 5.764362D-01 Symmetry=ag - MO Center= -1.2D-15, -3.8D-15, 2.4D-17, r^2= 5.4D+00 + 59 0.356004 19 H s 60 -0.356004 20 H s + + Vector 53 Occ=0.000000D+00 E= 5.764358D-01 Symmetry=ag + MO Center= 1.1D-15, 3.9D-15, -2.1D-17, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.537124 3 C px 18 -0.537124 4 C px + 13 0.537125 3 C px 18 -0.537125 4 C px 23 -0.522141 5 C px 28 0.522141 6 C px - 33 0.519103 9 H s 34 0.519103 10 H s - 31 -0.448310 7 H s 32 -0.448310 8 H s - 24 0.400193 5 C py 29 -0.400193 6 C py - - Vector 54 Occ=0.000000D+00 E= 5.984383D-01 Symmetry=bu - MO Center= -2.9D-15, 2.5D-15, -1.3D-22, r^2= 4.8D+00 + 33 0.519104 9 H s 34 0.519104 10 H s + 31 -0.448313 7 H s 32 -0.448313 8 H s + 24 0.400194 5 C py 29 -0.400194 6 C py + + Vector 54 Occ=0.000000D+00 E= 5.984380D-01 Symmetry=bu + MO Center= -4.9D-15, -4.2D-16, -3.9D-18, r^2= 4.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 0.723029 3 C py 19 0.723029 4 C py - 22 0.599921 5 C s 27 -0.599921 6 C s + 22 0.599919 5 C s 27 -0.599919 6 C s 36 -0.415408 11 C s 41 0.415408 12 C s - 2 -0.405910 1 C s 7 0.405910 2 C s - 24 0.394225 5 C py 29 0.394225 6 C py - - Vector 55 Occ=0.000000D+00 E= 6.248975D-01 Symmetry=bu - MO Center= 1.8D-15, 1.3D-14, 3.0D-23, r^2= 1.1D+01 + 2 -0.405912 1 C s 7 0.405912 2 C s + 24 0.394227 5 C py 29 0.394227 6 C py + + Vector 55 Occ=0.000000D+00 E= 6.248973D-01 Symmetry=bu + MO Center= -6.9D-16, -2.9D-14, 7.5D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.608534 1 C s 7 -0.608534 2 C s - 49 -0.528890 15 C px 54 -0.528890 16 C px - 38 0.480660 11 C py 43 0.480660 12 C py - 23 -0.365995 5 C px 28 -0.365995 6 C px - 57 0.363288 17 H s 58 -0.363288 18 H s - - Vector 56 Occ=0.000000D+00 E= 6.398339D-01 Symmetry=ag - MO Center= 2.5D-15, -1.8D-14, 1.3D-17, r^2= 9.4D+00 + 49 -0.528892 15 C px 54 -0.528892 16 C px + 38 0.480661 11 C py 43 0.480661 12 C py + 23 -0.365994 5 C px 28 -0.365994 6 C px + 57 0.363289 17 H s 58 -0.363289 18 H s + + Vector 56 Occ=0.000000D+00 E= 6.398334D-01 Symmetry=ag + MO Center= 2.8D-15, 3.0D-14, 5.1D-17, r^2= 9.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.549269 11 C px 42 -0.549269 12 C px 50 -0.534300 15 C py 55 0.534300 16 C py - 14 0.383479 3 C py 19 -0.383479 4 C py - 4 -0.364575 1 C py 9 0.364575 2 C py + 14 0.383477 3 C py 19 -0.383477 4 C py + 4 -0.364576 1 C py 9 0.364576 2 C py 59 -0.330751 19 H s 60 -0.330751 20 H s - + Vector 57 Occ=0.000000D+00 E= 6.828368D-01 Symmetry=ag - MO Center= -3.8D-16, 7.8D-15, -7.3D-18, r^2= 9.3D+00 + MO Center= 3.8D-16, 7.6D-15, -3.8D-18, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 38 0.663092 11 C py 43 -0.663092 12 C py - 49 -0.580411 15 C px 54 0.580411 16 C px - 24 -0.449232 5 C py 29 0.449232 6 C py + 38 0.663093 11 C py 43 -0.663093 12 C py + 49 -0.580412 15 C px 54 0.580412 16 C px + 24 -0.449231 5 C py 29 0.449231 6 C py 14 -0.392088 3 C py 19 0.392088 4 C py - 4 -0.381671 1 C py 9 0.381671 2 C py - - Vector 58 Occ=0.000000D+00 E= 7.173572D-01 Symmetry=bu - MO Center= 5.5D-17, -5.0D-16, 3.2D-24, r^2= 9.6D+00 + 4 -0.381669 1 C py 9 0.381669 2 C py + + Vector 58 Occ=0.000000D+00 E= 7.173570D-01 Symmetry=bu + MO Center= -1.6D-15, -2.3D-14, 1.8D-19, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.608023 11 C px 42 0.608023 12 C px - 48 -0.538019 15 C s 50 -0.540483 15 C py - 53 0.538019 16 C s 55 -0.540483 16 C py - 36 0.466541 11 C s 38 -0.464871 11 C py - 41 -0.466541 12 C s 43 -0.464871 12 C py - - Vector 59 Occ=0.000000D+00 E= 7.790414D-01 Symmetry=ag - MO Center= 1.9D-16, 1.3D-15, 1.7D-17, r^2= 5.4D+00 + 37 0.608025 11 C px 42 0.608025 12 C px + 48 -0.538017 15 C s 50 -0.540484 15 C py + 53 0.538017 16 C s 55 -0.540484 16 C py + 36 0.466540 11 C s 38 -0.464867 11 C py + 41 -0.466540 12 C s 43 -0.464867 12 C py + + Vector 59 Occ=0.000000D+00 E= 7.790413D-01 Symmetry=ag + MO Center= 2.2D-15, 1.1D-14, 2.0D-18, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.702431 1 C px 8 -0.702431 2 C px - 14 -0.534058 3 C py 19 0.534058 4 C py - 23 -0.435987 5 C px 28 0.435987 6 C px + 14 -0.534059 3 C py 19 0.534059 4 C py + 23 -0.435986 5 C px 28 0.435986 6 C px 37 0.429836 11 C px 42 -0.429836 12 C px 24 -0.411037 5 C py 29 0.411037 6 C py - - Vector 60 Occ=0.000000D+00 E= 7.942619D-01 Symmetry=bu - MO Center= -5.9D-16, 5.5D-16, -1.8D-26, r^2= 3.4D+00 + + Vector 60 Occ=0.000000D+00 E= 7.942624D-01 Symmetry=bu + MO Center= -6.5D-16, 2.9D-15, -4.4D-21, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.657694 1 C py 9 0.657694 2 C py - 13 -0.568326 3 C px 18 -0.568326 4 C px + 4 0.657693 1 C py 9 0.657693 2 C py + 13 -0.568325 3 C px 18 -0.568325 4 C px 23 0.496519 5 C px 28 0.496519 6 C px 22 -0.413797 5 C s 27 0.413797 6 C s 24 -0.395895 5 C py 29 -0.395895 6 C py - + Final MO vectors ---------------- - + global array: alpha evecs[1:60,1:60], handle: -995 @@ -3353,58 +3358,58 @@ 2 0.03156 0.03135 0.00410 -0.00406 -0.00081 0.00816 3 -0.00002 0.00003 0.00067 -0.00065 0.00525 -0.00123 4 -0.00091 -0.00063 0.00416 -0.00413 -0.00054 -0.00308 - 5 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 5 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 6 -0.69930 0.69930 0.02742 0.02765 0.00327 0.02868 7 -0.03156 0.03135 -0.00410 -0.00406 -0.00081 -0.00816 8 -0.00002 -0.00003 0.00067 0.00065 -0.00525 -0.00123 9 -0.00091 0.00063 0.00416 0.00413 0.00054 -0.00308 - 10 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 11 -0.01887 -0.01934 0.01179 -0.01473 -0.43752 -0.42433 + 10 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 11 -0.01887 -0.01934 0.01179 -0.01473 -0.43751 -0.42432 12 -0.00774 -0.00693 0.00068 -0.00068 -0.02438 -0.02407 13 0.00353 0.00332 -0.00013 0.00019 0.00102 0.00115 14 -0.00263 -0.00300 -0.00002 -0.00006 0.00367 0.00385 - 15 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 - 16 0.01887 -0.01934 -0.01179 -0.01473 -0.43752 0.42433 + 15 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 16 0.01887 -0.01934 -0.01179 -0.01473 -0.43751 0.42432 17 0.00774 -0.00693 -0.00068 -0.00068 -0.02438 0.02407 18 0.00353 -0.00332 -0.00013 -0.00019 -0.00102 0.00115 19 -0.00263 0.00300 -0.00002 0.00006 -0.00367 0.00385 - 20 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 20 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 21 0.01918 -0.01952 -0.00968 -0.01107 0.54641 0.55588 22 0.00771 -0.00687 -0.00055 -0.00042 0.02815 0.02865 23 -0.00417 0.00407 0.00013 0.00021 0.00007 -0.00009 24 -0.00132 0.00175 -0.00010 0.00001 0.00323 0.00334 - 25 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 25 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 26 -0.01918 -0.01952 0.00968 -0.01107 0.54641 -0.55588 27 -0.00771 -0.00687 0.00055 -0.00042 0.02815 -0.02865 28 -0.00417 -0.00407 0.00013 -0.00021 -0.00007 -0.00009 29 -0.00132 -0.00175 -0.00010 -0.00001 -0.00323 0.00334 - 30 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 30 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 31 0.00034 0.00022 -0.00010 0.00011 0.00405 0.00398 32 -0.00034 0.00022 0.00010 0.00011 0.00405 -0.00398 33 -0.00033 0.00022 -0.00004 -0.00006 -0.00506 -0.00515 34 0.00033 0.00022 0.00004 -0.00006 -0.00506 0.00515 - 35 0.02696 -0.02733 0.69978 0.69970 -0.00070 0.01382 + 35 0.02696 -0.02733 0.69978 0.69970 -0.00070 0.01381 36 0.00670 -0.00677 0.03078 0.03076 -0.00004 0.00073 37 0.00090 -0.00091 0.00075 0.00075 0.00011 0.00006 38 0.00397 -0.00401 -0.00108 -0.00109 -0.00003 -0.00005 - 39 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 40 -0.02696 -0.02733 -0.69978 0.69970 -0.00070 -0.01382 + 39 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 40 -0.02696 -0.02733 -0.69978 0.69970 -0.00070 -0.01381 41 -0.00670 -0.00677 -0.03078 0.03076 -0.00004 -0.00073 42 0.00090 0.00091 0.00075 -0.00075 -0.00011 0.00006 43 0.00397 0.00401 -0.00108 0.00109 0.00003 -0.00005 - 44 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 45 -0.00032 0.00033 -0.00642 -0.00642 -0.00001 -0.00018 46 0.00032 0.00033 0.00642 -0.00642 -0.00001 0.00018 47 -0.00018 0.00019 -0.00811 -0.00810 -0.00029 -0.00093 48 -0.00047 0.00047 -0.00762 -0.00762 -0.00005 -0.00028 49 -0.00001 0.00001 0.00305 0.00305 -0.00003 0.00003 50 -0.00028 0.00029 -0.00344 -0.00344 -0.00001 -0.00014 - 51 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 51 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 52 0.00018 0.00019 0.00811 -0.00810 -0.00029 0.00093 53 0.00047 0.00047 0.00762 -0.00762 -0.00005 0.00028 54 -0.00001 -0.00001 0.00305 -0.00305 0.00003 0.00003 55 -0.00028 -0.00029 -0.00344 0.00344 0.00001 -0.00014 - 56 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 56 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 57 0.00015 -0.00014 0.00019 0.00019 0.00016 0.00015 58 -0.00015 -0.00014 -0.00019 0.00019 0.00016 -0.00015 59 0.00003 -0.00003 0.00022 0.00022 -0.00000 -0.00001 @@ -3416,58 +3421,58 @@ 2 -0.00110 -0.00749 -0.00016 0.00016 0.27470 0.27379 3 -0.00500 -0.00006 0.00002 -0.00002 -0.00550 0.00446 4 0.00128 0.00308 -0.00005 0.00005 -0.04073 0.03298 - 5 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 5 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 6 -0.00367 0.02944 0.00018 0.00018 -0.10786 0.10355 7 0.00110 -0.00749 0.00016 0.00016 0.27470 -0.27379 8 -0.00500 0.00006 0.00002 0.00002 0.00550 0.00446 9 0.00128 -0.00308 -0.00005 -0.00005 0.04073 0.03298 - 10 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 10 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 11 0.55685 0.54652 -0.00028 0.00057 -0.09784 -0.03906 12 0.02059 0.01990 0.00000 -0.00006 0.24702 0.10222 13 -0.00024 0.00013 -0.00001 0.00002 -0.05337 -0.02738 14 0.00222 0.00233 0.00008 -0.00003 -0.01450 0.05896 - 15 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 15 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 16 -0.55685 0.54652 0.00028 0.00057 -0.09784 0.03906 17 -0.02059 0.01990 -0.00000 -0.00006 0.24702 -0.10222 18 -0.00024 -0.00013 -0.00001 -0.00002 0.05337 -0.02738 19 0.00222 -0.00233 0.00008 0.00003 0.01450 0.05896 - 20 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 21 0.42564 0.43775 0.00079 0.00085 -0.09757 0.04279 + 20 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 21 0.42563 0.43775 0.00079 0.00085 -0.09757 0.04279 22 0.01354 0.01412 -0.00002 -0.00004 0.24669 -0.11256 23 -0.00095 -0.00067 0.00001 0.00000 -0.04576 0.04462 24 -0.00301 -0.00302 0.00011 0.00009 0.03144 0.04668 - 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 26 -0.42564 0.43775 -0.00079 0.00085 -0.09757 -0.04279 + 25 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 26 -0.42563 0.43775 -0.00079 0.00085 -0.09757 -0.04279 27 -0.01354 0.01412 0.00002 -0.00004 0.24669 0.11256 28 -0.00095 0.00067 0.00001 -0.00000 0.04576 0.04462 29 -0.00301 0.00302 0.00011 -0.00009 -0.03144 0.04668 - 30 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 31 -0.00491 -0.00498 0.00001 -0.00002 0.04495 0.02686 32 0.00491 -0.00498 -0.00001 -0.00002 0.04495 -0.02686 33 -0.00371 -0.00400 0.00010 0.00010 0.04519 -0.03076 34 0.00371 -0.00400 -0.00010 0.00010 0.04519 0.03076 - 35 -0.00337 0.01736 0.00900 0.00901 -0.04972 0.11382 + 35 -0.00338 0.01736 0.00900 0.00901 -0.04972 0.11382 36 -0.00018 0.00075 -0.00689 -0.00689 0.12781 -0.29717 37 0.00001 0.00002 -0.00308 -0.00308 0.01290 -0.03419 38 0.00002 -0.00019 0.00338 0.00338 0.02845 -0.00850 - 39 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 40 0.00337 0.01736 -0.00900 0.00901 -0.04972 -0.11382 + 39 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 40 0.00338 0.01736 -0.00900 0.00901 -0.04972 -0.11382 41 0.00018 0.00075 0.00689 -0.00689 0.12781 0.29717 42 0.00001 -0.00002 -0.00308 0.00308 -0.01290 -0.03419 43 0.00002 0.00019 0.00338 -0.00338 -0.02845 -0.00850 - 44 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 44 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 45 0.00005 -0.00025 0.00004 0.00004 0.02560 -0.06702 46 -0.00005 -0.00025 -0.00004 0.00004 0.02560 0.06702 47 -0.00021 -0.00115 0.70048 0.70048 -0.02467 0.08073 48 0.00003 -0.00033 0.03086 0.03086 0.06268 -0.20931 49 -0.00005 0.00005 -0.00089 -0.00089 -0.01240 0.03729 50 0.00001 -0.00018 0.00094 0.00094 0.02035 -0.04990 - 51 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 51 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 52 0.00021 -0.00115 -0.70048 0.70048 -0.02467 -0.08073 53 -0.00003 -0.00033 -0.03086 0.03086 0.06268 0.20931 54 -0.00005 -0.00005 -0.00089 0.00089 0.01240 0.03729 55 0.00001 0.00018 0.00094 -0.00094 -0.02035 -0.04990 - 56 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 56 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 57 0.00009 0.00010 -0.00636 -0.00636 0.01412 -0.04858 58 -0.00009 0.00010 0.00636 -0.00636 0.01412 0.04858 59 -0.00001 -0.00001 -0.00637 -0.00637 0.01058 -0.04369 @@ -3479,7 +3484,7 @@ 2 0.01483 0.03409 0.27407 -0.20638 -0.16079 0.03709 3 0.01037 0.12499 -0.01781 -0.12106 0.18486 -0.05359 4 0.09615 -0.02299 -0.05622 -0.07212 -0.06394 -0.13493 - 5 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 5 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 6 -0.00453 0.01260 0.09965 0.07098 0.05432 0.01303 7 0.01483 -0.03409 -0.27407 -0.20638 -0.16079 -0.03709 8 -0.01037 0.12499 -0.01781 0.12106 -0.18486 -0.05359 @@ -3489,7 +3494,7 @@ 12 -0.12146 0.35713 0.11268 -0.01004 0.32603 0.15447 13 0.01614 0.00350 -0.03788 0.02993 0.08167 -0.00524 14 0.03704 -0.05621 0.09142 -0.16001 0.03652 0.00483 - 15 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 15 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 16 0.04631 0.13232 0.04077 0.00302 -0.11045 0.05067 17 -0.12146 -0.35713 -0.11268 -0.01004 0.32603 -0.15447 18 -0.01614 0.00350 -0.03788 -0.02993 -0.08167 -0.00524 @@ -3513,24 +3518,24 @@ 36 0.31482 -0.00128 0.13685 -0.15961 -0.02451 0.30277 37 0.04535 0.02295 0.03919 0.08128 -0.04660 -0.11605 38 -0.05748 -0.01848 -0.12905 -0.12925 -0.07792 0.04107 - 39 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 40 -0.11924 -0.00020 0.05162 0.05306 0.00758 0.09885 41 0.31482 0.00128 -0.13685 -0.15961 -0.02451 -0.30277 42 -0.04535 0.02295 0.03919 -0.08128 0.04660 -0.11605 43 0.05748 -0.01848 -0.12905 0.12925 0.07792 0.04107 - 44 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 44 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 45 0.07653 -0.00984 0.03763 -0.08003 0.03216 0.17052 46 0.07653 0.00984 -0.03763 -0.08003 0.03216 -0.17052 47 -0.11746 -0.01450 -0.11027 -0.08371 -0.03787 0.08074 48 0.30977 0.03791 0.29951 0.24141 0.11347 -0.24917 49 -0.04908 0.00157 -0.03453 0.03560 -0.01390 -0.12315 50 0.05279 0.00637 0.01637 -0.03827 -0.04943 0.09128 - 51 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 51 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 52 -0.11746 0.01450 0.11027 -0.08371 -0.03787 -0.08074 53 0.30977 -0.03791 -0.29951 0.24141 0.11347 0.24917 54 0.04908 0.00157 -0.03453 -0.03560 0.01390 -0.12315 55 -0.05279 0.00637 0.01637 0.03827 0.04943 0.09128 - 56 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 56 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 57 0.07420 0.01478 0.07740 0.10354 0.02278 -0.16063 58 0.07420 -0.01478 -0.07740 0.10354 0.02278 0.16063 59 0.07484 0.00894 0.08996 0.09775 0.06787 -0.12474 @@ -3538,36 +3543,36 @@ 19 20 21 22 23 24 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.05454 -0.03229 0.02275 -0.06946 -0.02278 0.02167 + 1 0.05454 -0.03229 0.02275 -0.06946 -0.02277 0.02167 2 -0.16217 0.10634 -0.07804 0.23531 0.07752 -0.07158 3 -0.01948 0.05143 0.12484 0.10107 -0.22083 -0.01574 4 0.14256 0.13227 -0.13509 -0.02739 -0.14330 -0.01021 - 5 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 6 0.05454 -0.03229 -0.02275 0.06946 0.02278 0.02167 + 5 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 6 0.05454 -0.03229 -0.02275 0.06946 0.02277 0.02167 7 -0.16217 0.10634 0.07804 -0.23531 -0.07752 -0.07158 8 0.01948 -0.05143 0.12484 0.10107 -0.22083 0.01574 9 -0.14256 -0.13227 -0.13509 -0.02739 -0.14330 0.01021 - 10 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 10 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 11 -0.00697 -0.01336 -0.02216 0.04738 -0.00126 -0.02514 - 12 0.02556 0.05157 0.07459 -0.16297 0.00150 0.08397 + 12 0.02556 0.05158 0.07459 -0.16297 0.00150 0.08397 13 0.18449 0.13690 0.01857 -0.22226 -0.00314 -0.00635 - 14 -0.08790 0.14139 0.18496 0.06158 -0.12066 -0.08210 - 15 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 14 -0.08790 0.14138 0.18496 0.06158 -0.12066 -0.08210 + 15 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 16 -0.00697 -0.01336 0.02216 -0.04738 0.00126 -0.02514 - 17 0.02556 0.05157 -0.07459 0.16297 -0.00150 0.08397 + 17 0.02556 0.05158 -0.07459 0.16297 -0.00150 0.08397 18 -0.18449 -0.13690 0.01857 -0.22226 -0.00314 0.00635 - 19 0.08790 -0.14139 0.18496 0.06158 -0.12066 0.08210 - 20 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 19 0.08790 -0.14138 0.18496 0.06158 -0.12066 0.08210 + 20 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 21 -0.05224 0.01978 0.04259 -0.04406 0.01174 0.01824 22 0.16602 -0.05620 -0.13897 0.15292 -0.03666 -0.06801 23 0.20190 0.08463 -0.09670 0.11282 0.25124 -0.03712 24 -0.03731 -0.13600 -0.10148 -0.17797 0.05674 0.13671 - 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 25 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 26 -0.05224 0.01978 -0.04259 0.04406 -0.01174 0.01824 27 0.16602 -0.05620 0.13897 -0.15292 0.03666 -0.06801 28 -0.20190 -0.08463 -0.09670 0.11282 0.25124 0.03712 29 0.03731 0.13600 -0.10148 -0.17797 0.05674 -0.13671 - 30 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 31 0.09946 0.13601 0.10020 -0.22666 -0.03672 0.00607 32 0.09946 0.13601 -0.10020 0.22666 0.03672 0.00607 33 0.16928 0.09041 -0.05988 0.23047 0.13275 -0.11408 @@ -3576,24 +3581,24 @@ 36 0.18076 -0.12770 0.05160 0.04227 0.01492 0.08059 37 -0.06455 0.11482 0.21923 0.03807 -0.04290 0.25149 38 -0.00149 0.18465 0.10104 -0.12528 0.18149 -0.08173 - 39 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 39 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 40 -0.05912 0.04018 0.01690 0.01529 0.00257 -0.02765 41 0.18076 -0.12770 -0.05160 -0.04227 -0.01492 0.08059 42 0.06455 -0.11482 0.21923 0.03807 -0.04290 -0.25149 43 0.00149 -0.18465 0.10104 -0.12528 0.18149 0.08173 - 44 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 44 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 45 0.11251 -0.15309 -0.15549 0.02806 0.01234 -0.14506 46 0.11251 -0.15309 0.15549 -0.02806 -0.01234 -0.14506 47 0.05155 -0.01689 0.00814 0.01223 0.00106 -0.00444 48 -0.16347 0.06337 -0.03136 -0.05077 0.00750 -0.00010 49 -0.07915 0.21273 0.09058 -0.07563 0.25051 -0.01131 50 0.08165 0.00913 0.21029 0.13356 0.03810 0.33900 - 51 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 51 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 52 0.05155 -0.01689 -0.00814 -0.01223 -0.00106 -0.00444 53 -0.16347 0.06337 0.03136 0.05077 -0.00750 -0.00010 54 0.07915 -0.21273 0.09058 -0.07563 0.25051 0.01131 55 -0.08165 -0.00913 0.21029 0.13356 0.03810 -0.33900 - 56 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 56 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 57 -0.09475 0.17911 0.07306 -0.04231 0.21542 0.02497 58 -0.09475 0.17911 -0.07306 0.04231 -0.21542 0.02497 59 -0.09719 -0.02141 -0.17813 -0.10503 -0.08716 -0.26260 @@ -3601,36 +3606,36 @@ 25 26 27 28 29 30 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00257 0.00315 0.02505 -0.00000 -0.01028 -0.00342 - 2 -0.00882 -0.01168 -0.09024 0.00000 0.04486 0.02281 - 3 -0.08497 0.16711 0.08893 -0.00000 0.09215 -0.13094 + 1 0.00257 0.00315 0.02506 0.00000 -0.01028 -0.00342 + 2 -0.00882 -0.01168 -0.09024 -0.00000 0.04486 0.02281 + 3 -0.08496 0.16711 0.08893 -0.00000 0.09215 -0.13094 4 0.07881 -0.17820 0.00082 0.00000 0.24197 0.26840 - 5 0.00000 0.00000 0.00000 0.33761 0.00000 -0.00000 - 6 -0.00257 -0.00315 0.02505 -0.00000 0.01028 -0.00342 - 7 0.00882 0.01168 -0.09024 0.00000 -0.04486 0.02281 - 8 -0.08497 0.16711 -0.08893 0.00000 0.09215 0.13094 + 5 -0.00000 0.00000 -0.00000 0.33761 -0.00000 -0.00000 + 6 -0.00257 -0.00315 0.02506 0.00000 0.01028 -0.00342 + 7 0.00882 0.01168 -0.09024 -0.00000 -0.04486 0.02281 + 8 -0.08496 0.16711 -0.08893 0.00000 0.09215 0.13094 9 0.07881 -0.17820 -0.00082 -0.00000 0.24197 -0.26840 - 10 0.00000 0.00000 0.00000 0.33761 0.00000 -0.00000 + 10 -0.00000 0.00000 -0.00000 0.33761 -0.00000 -0.00000 11 0.02849 -0.01759 0.00530 -0.00000 0.00685 0.00271 - 12 -0.09067 0.06357 -0.02695 0.00000 -0.02118 -0.00884 - 13 0.30759 -0.10066 -0.12838 0.00000 0.06490 0.13268 + 12 -0.09067 0.06357 -0.02695 -0.00000 -0.02118 -0.00884 + 13 0.30758 -0.10066 -0.12838 0.00000 0.06490 0.13268 14 0.14541 0.22434 -0.13363 -0.00000 0.04102 -0.27818 - 15 0.00000 0.00000 0.00000 0.29798 0.00000 -0.00000 + 15 -0.00000 0.00000 -0.00000 0.29798 -0.00000 -0.00000 16 -0.02849 0.01759 0.00530 -0.00000 -0.00685 0.00271 - 17 0.09067 -0.06357 -0.02695 0.00000 0.02118 -0.00884 - 18 0.30759 -0.10066 0.12838 -0.00000 0.06490 -0.13268 + 17 0.09067 -0.06357 -0.02695 -0.00000 0.02118 -0.00884 + 18 0.30758 -0.10066 0.12838 -0.00000 0.06490 -0.13268 19 0.14541 0.22434 0.13363 0.00000 0.04102 0.27818 - 20 0.00000 0.00000 0.00000 0.29798 0.00000 -0.00000 + 20 -0.00000 0.00000 -0.00000 0.29798 -0.00000 -0.00000 21 0.01970 0.00712 -0.00754 -0.00000 -0.01375 -0.00888 - 22 -0.06220 -0.02043 0.02537 0.00000 0.04725 0.02465 + 22 -0.06220 -0.02043 0.02538 0.00000 0.04725 0.02465 23 0.18806 -0.07066 0.06386 -0.00000 -0.14449 -0.08055 - 24 -0.22609 -0.19326 0.13980 0.00000 -0.00790 0.23445 - 25 0.00000 0.00000 0.00000 0.29717 0.00000 -0.00000 + 24 -0.22609 -0.19326 0.13981 0.00000 -0.00790 0.23445 + 25 -0.00000 0.00000 -0.00000 0.29717 -0.00000 -0.00000 26 -0.01970 -0.00712 -0.00754 -0.00000 0.01375 -0.00888 - 27 0.06220 0.02043 0.02537 0.00000 -0.04725 0.02465 + 27 0.06220 0.02043 0.02538 0.00000 -0.04725 0.02465 28 0.18806 -0.07066 -0.06386 0.00000 -0.14449 0.08055 - 29 -0.22609 -0.19326 -0.13980 -0.00000 -0.00790 -0.23445 - 30 0.00000 0.00000 0.00000 0.29717 0.00000 -0.00000 + 29 -0.22609 -0.19326 -0.13981 -0.00000 -0.00790 -0.23445 + 30 -0.00000 0.00000 -0.00000 0.29717 -0.00000 -0.00000 31 0.25227 0.00752 -0.15647 0.00000 0.04671 0.02034 32 -0.25227 -0.00752 -0.15647 0.00000 -0.04671 0.02034 33 0.21818 0.04690 0.00782 -0.00000 -0.05383 -0.24041 @@ -3639,24 +3644,24 @@ 36 0.00461 0.01245 0.07134 0.00000 -0.00655 0.08279 37 -0.01859 -0.20168 -0.20888 0.00000 -0.21725 0.04337 38 -0.06686 0.18774 0.08750 0.00000 -0.16914 0.24814 - 39 0.00000 0.00000 0.00000 0.17395 0.00000 -0.00000 + 39 0.00000 0.00000 0.00000 0.17395 -0.00000 -0.00000 40 0.00193 -0.00109 -0.01690 -0.00000 -0.00273 -0.01988 41 -0.00461 -0.01245 0.07134 0.00000 0.00655 0.08279 - 42 -0.01859 -0.20168 0.20888 -0.00000 -0.21725 -0.04337 + 42 -0.01859 -0.20168 0.20888 0.00000 -0.21725 -0.04337 43 -0.06686 0.18774 -0.08750 -0.00000 -0.16914 -0.24814 - 44 0.00000 0.00000 0.00000 0.17395 0.00000 -0.00000 + 44 -0.00000 0.00000 -0.00000 0.17395 -0.00000 -0.00000 45 0.01673 0.14559 0.20023 -0.00000 0.25910 -0.06640 46 -0.01673 -0.14559 0.20023 -0.00000 -0.25910 -0.06640 - 47 0.00445 0.02052 0.01051 -0.00000 0.00350 0.00833 - 48 -0.01850 -0.05651 -0.02704 0.00000 -0.01441 -0.02127 - 49 -0.07653 0.12000 0.29519 -0.00000 0.19964 0.02772 + 47 0.00445 0.02052 0.01051 0.00000 0.00350 0.00833 + 48 -0.01850 -0.05651 -0.02704 -0.00000 -0.01441 -0.02127 + 49 -0.07653 0.12000 0.29519 0.00000 0.19964 0.02772 50 -0.00552 -0.24568 0.04849 -0.00000 0.13688 -0.14507 - 51 0.00000 0.00000 0.00000 0.09244 0.00000 -0.00000 - 52 -0.00445 -0.02052 0.01051 -0.00000 -0.00350 0.00833 - 53 0.01850 0.05651 -0.02704 0.00000 0.01441 -0.02127 - 54 -0.07653 0.12000 -0.29519 0.00000 0.19964 -0.02772 + 51 0.00000 0.00000 0.00000 0.09244 -0.00000 -0.00000 + 52 -0.00445 -0.02052 0.01051 0.00000 -0.00350 0.00833 + 53 0.01850 0.05651 -0.02704 -0.00000 0.01441 -0.02127 + 54 -0.07653 0.12000 -0.29519 -0.00000 0.19964 -0.02772 55 -0.00552 -0.24568 -0.04849 0.00000 0.13688 0.14507 - 56 0.00000 0.00000 0.00000 0.09244 0.00000 -0.00000 + 56 0.00000 0.00000 -0.00000 0.09244 -0.00000 -0.00000 57 -0.05395 0.05142 0.26801 -0.00000 0.23103 -0.05231 58 0.05395 -0.05142 0.26801 -0.00000 -0.23103 -0.05231 59 0.01519 0.15786 -0.14304 0.00000 -0.21233 0.13552 @@ -3664,314 +3669,314 @@ 31 32 33 34 35 36 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.00699 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 2 0.03378 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 3 0.29585 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 4 0.09493 -0.00000 0.00000 0.00000 0.00000 0.00000 - 5 0.00000 0.34896 -0.01801 0.00575 0.38755 0.44267 - 6 -0.00699 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 7 0.03378 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 8 -0.29585 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 1 -0.00699 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 2 0.03378 -0.00000 0.00000 0.00000 0.00000 0.00000 + 3 0.29586 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 4 0.09493 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 5 -0.00000 0.34896 -0.01801 0.00575 0.38755 0.44267 + 6 -0.00699 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 7 0.03378 -0.00000 0.00000 0.00000 0.00000 0.00000 + 8 -0.29586 -0.00000 0.00000 0.00000 0.00000 -0.00000 9 -0.09493 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 10 0.00000 -0.34896 -0.01801 -0.00575 -0.38755 0.44267 - 11 -0.01201 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 12 0.03558 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 13 -0.22212 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 14 -0.04919 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 11 -0.01201 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 12 0.03558 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 13 -0.22212 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 14 -0.04919 0.00000 -0.00000 -0.00000 0.00000 -0.00000 15 0.00000 0.13165 -0.17920 0.46363 0.21507 -0.23227 - 16 -0.01201 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 17 0.03558 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 18 0.22212 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 19 0.04919 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 16 -0.01201 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 17 0.03558 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 18 0.22212 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 19 0.04919 -0.00000 0.00000 0.00000 -0.00000 0.00000 20 0.00000 -0.13165 -0.17920 -0.46363 -0.21507 -0.23227 - 21 0.00761 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 22 -0.02194 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 23 0.28060 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 24 0.09600 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 21 0.00761 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 22 -0.02194 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 23 0.28060 0.00000 0.00000 0.00000 0.00000 0.00000 + 24 0.09600 -0.00000 -0.00000 0.00000 -0.00000 0.00000 25 0.00000 -0.13211 -0.17663 0.45754 -0.23074 -0.27755 - 26 0.00761 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 27 -0.02194 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 28 -0.28060 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 29 -0.09600 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 26 0.00761 0.00000 0.00000 -0.00000 0.00000 0.00000 + 27 -0.02194 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 28 -0.28060 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 29 -0.09600 0.00000 0.00000 -0.00000 0.00000 -0.00000 30 0.00000 0.13211 -0.17663 -0.45754 0.23074 -0.27755 - 31 -0.25807 -0.00000 0.00000 0.00000 0.00000 0.00000 - 32 -0.25807 -0.00000 0.00000 0.00000 0.00000 0.00000 - 33 0.15131 0.00000 -0.00000 0.00000 0.00000 0.00000 - 34 0.15131 0.00000 -0.00000 0.00000 0.00000 0.00000 - 35 -0.01113 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 36 0.03843 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 37 0.13689 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 38 0.11202 0.00000 0.00000 0.00000 0.00000 0.00000 + 31 -0.25807 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 32 -0.25807 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 33 0.15131 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 34 0.15131 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 35 -0.01113 0.00000 0.00000 0.00000 0.00000 -0.00000 + 36 0.03843 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 37 0.13689 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 38 0.11202 -0.00000 0.00000 0.00000 0.00000 -0.00000 39 0.00000 -0.37648 0.41378 -0.00037 0.22367 0.25613 - 40 -0.01113 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 41 0.03843 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 42 -0.13689 0.00000 -0.00000 0.00000 0.00000 0.00000 - 43 -0.11202 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 44 0.00000 0.37648 0.41378 0.00037 -0.22367 0.25613 - 45 -0.18274 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 46 -0.18274 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 47 -0.00467 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 48 0.01837 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 49 -0.10958 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 50 -0.03768 0.00000 0.00000 0.00000 0.00000 -0.00000 + 40 -0.01113 0.00000 0.00000 0.00000 0.00000 -0.00000 + 41 0.03843 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 42 -0.13689 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 43 -0.11202 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 44 -0.00000 0.37648 0.41378 0.00037 -0.22367 0.25613 + 45 -0.18274 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 46 -0.18274 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 47 -0.00467 0.00000 0.00000 0.00000 0.00000 0.00000 + 48 0.01837 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 49 -0.10958 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 50 -0.03768 0.00000 -0.00000 0.00000 -0.00000 -0.00000 51 0.00000 -0.27140 0.41796 0.00954 0.39737 -0.44961 - 52 -0.00467 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 53 0.01837 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 54 0.10958 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 55 0.03768 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 56 0.00000 0.27140 0.41796 -0.00954 -0.39737 -0.44961 - 57 -0.11595 0.00000 -0.00000 0.00000 0.00000 0.00000 - 58 -0.11595 0.00000 -0.00000 0.00000 0.00000 0.00000 - 59 0.08985 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 60 0.08985 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 52 -0.00467 0.00000 0.00000 0.00000 0.00000 0.00000 + 53 0.01837 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 54 0.10958 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 55 0.03768 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 56 -0.00000 0.27140 0.41796 -0.00954 -0.39737 -0.44961 + 57 -0.11595 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 58 -0.11595 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 59 0.08985 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 60 0.08985 -0.00000 0.00000 -0.00000 0.00000 -0.00000 37 38 39 40 41 42 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 0.00000 0.00000 0.00000 -0.06824 -0.03375 - 2 0.00000 -0.00000 -0.00000 -0.00000 0.40157 0.19824 - 3 0.00000 -0.00000 -0.00000 -0.00000 0.08710 0.28506 - 4 -0.00000 0.00000 0.00000 0.00000 0.27371 0.13577 - 5 -0.03192 -0.02345 0.49722 0.54348 0.00000 -0.00000 - 6 0.00000 0.00000 0.00000 0.00000 -0.06824 0.03375 - 7 0.00000 -0.00000 -0.00000 -0.00000 0.40157 -0.19824 - 8 -0.00000 0.00000 0.00000 0.00000 -0.08710 0.28506 - 9 0.00000 -0.00000 -0.00000 -0.00000 -0.27371 0.13577 - 10 -0.03192 0.02345 0.49722 -0.54348 0.00000 -0.00000 - 11 -0.00000 -0.00000 -0.00000 -0.00000 -0.02814 0.00595 - 12 -0.00000 0.00000 0.00000 0.00000 0.17347 -0.02878 - 13 0.00000 0.00000 -0.00000 0.00000 0.30451 0.35544 - 14 -0.00000 0.00000 0.00000 0.00000 0.05353 0.01074 - 15 0.58269 0.24069 -0.16674 -0.46418 0.00000 0.00000 - 16 -0.00000 -0.00000 -0.00000 -0.00000 -0.02814 -0.00595 - 17 -0.00000 0.00000 0.00000 0.00000 0.17347 0.02878 - 18 -0.00000 -0.00000 0.00000 -0.00000 -0.30451 0.35544 - 19 0.00000 -0.00000 -0.00000 -0.00000 -0.05353 0.01074 - 20 0.58269 -0.24069 -0.16674 0.46418 -0.00000 0.00000 - 21 0.00000 -0.00000 -0.00000 -0.00000 -0.04649 -0.01586 - 22 -0.00000 -0.00000 0.00000 0.00000 0.28090 0.09658 - 23 0.00000 -0.00000 0.00000 0.00000 0.20264 0.28597 - 24 -0.00000 0.00000 -0.00000 -0.00000 -0.12426 0.00564 - 25 -0.55324 -0.23225 -0.19920 0.46688 -0.00000 0.00000 - 26 0.00000 -0.00000 -0.00000 -0.00000 -0.04649 0.01586 - 27 -0.00000 -0.00000 0.00000 0.00000 0.28090 -0.09658 - 28 -0.00000 0.00000 -0.00000 -0.00000 -0.20264 0.28597 - 29 0.00000 -0.00000 0.00000 0.00000 0.12426 0.00564 - 30 -0.55324 0.23225 -0.19920 -0.46688 -0.00000 0.00000 - 31 -0.00000 -0.00000 -0.00000 -0.00000 -0.41378 -0.32189 - 32 -0.00000 -0.00000 -0.00000 -0.00000 -0.41378 0.32189 - 33 0.00000 0.00000 -0.00000 -0.00000 -0.42379 -0.27080 - 34 0.00000 0.00000 -0.00000 -0.00000 -0.42379 0.27080 - 35 -0.00000 -0.00000 0.00000 0.00000 0.05002 0.00767 - 36 0.00000 -0.00000 -0.00000 -0.00000 -0.28213 -0.04685 - 37 0.00000 0.00000 0.00000 0.00000 -0.24477 0.34456 - 38 -0.00000 0.00000 0.00000 0.00000 -0.33810 0.21676 - 39 0.00380 0.52217 -0.52913 0.28773 0.00000 -0.00000 - 40 -0.00000 -0.00000 0.00000 0.00000 0.05002 -0.00767 - 41 0.00000 -0.00000 -0.00000 -0.00000 -0.28213 0.04685 - 42 -0.00000 -0.00000 -0.00000 -0.00000 0.24477 0.34456 - 43 0.00000 -0.00000 -0.00000 -0.00000 0.33810 0.21676 - 44 0.00380 -0.52217 -0.52913 -0.28773 -0.00000 -0.00000 - 45 0.00000 0.00000 0.00000 0.00000 -0.14441 0.43383 - 46 0.00000 0.00000 0.00000 0.00000 -0.14441 -0.43383 - 47 0.00000 -0.00000 0.00000 0.00000 -0.04092 0.00256 - 48 -0.00000 0.00000 -0.00000 -0.00000 0.23693 -0.01935 - 49 0.00000 0.00000 0.00000 0.00000 -0.13832 0.30324 - 50 -0.00000 0.00000 0.00000 0.00000 -0.14825 0.16644 - 51 0.01077 -0.52310 0.37969 -0.15615 -0.00000 -0.00000 - 52 0.00000 -0.00000 0.00000 0.00000 -0.04092 -0.00256 - 53 -0.00000 0.00000 -0.00000 -0.00000 0.23693 0.01935 - 54 -0.00000 -0.00000 -0.00000 -0.00000 0.13832 0.30324 - 55 0.00000 -0.00000 -0.00000 -0.00000 0.14825 0.16644 + 1 0.00000 -0.00000 -0.00000 -0.00000 -0.06824 -0.03374 + 2 -0.00000 0.00000 0.00000 0.00000 0.40157 0.19824 + 3 0.00000 0.00000 0.00000 0.00000 0.08710 0.28506 + 4 0.00000 -0.00000 -0.00000 -0.00000 0.27371 0.13577 + 5 -0.03192 -0.02345 0.49722 0.54348 -0.00000 -0.00000 + 6 -0.00000 -0.00000 -0.00000 -0.00000 -0.06824 0.03374 + 7 0.00000 0.00000 0.00000 0.00000 0.40157 -0.19824 + 8 -0.00000 -0.00000 -0.00000 -0.00000 -0.08710 0.28506 + 9 -0.00000 0.00000 0.00000 0.00000 -0.27371 0.13577 + 10 -0.03192 0.02345 0.49722 -0.54348 -0.00000 0.00000 + 11 0.00000 0.00000 0.00000 0.00000 -0.02814 0.00595 + 12 -0.00000 -0.00000 -0.00000 -0.00000 0.17347 -0.02878 + 13 0.00000 0.00000 0.00000 0.00000 0.30451 0.35544 + 14 0.00000 -0.00000 0.00000 -0.00000 0.05353 0.01074 + 15 0.58269 0.24069 -0.16674 -0.46418 0.00000 -0.00000 + 16 0.00000 0.00000 0.00000 0.00000 -0.02814 -0.00595 + 17 -0.00000 -0.00000 -0.00000 -0.00000 0.17347 0.02878 + 18 -0.00000 -0.00000 -0.00000 -0.00000 -0.30451 0.35544 + 19 0.00000 0.00000 -0.00000 0.00000 -0.05353 0.01074 + 20 0.58269 -0.24069 -0.16674 0.46418 -0.00000 -0.00000 + 21 -0.00000 0.00000 -0.00000 -0.00000 -0.04649 -0.01586 + 22 0.00000 -0.00000 0.00000 0.00000 0.28090 0.09658 + 23 -0.00000 -0.00000 0.00000 0.00000 0.20264 0.28597 + 24 0.00000 0.00000 0.00000 0.00000 -0.12426 0.00564 + 25 -0.55324 -0.23225 -0.19920 0.46688 0.00000 -0.00000 + 26 -0.00000 -0.00000 -0.00000 -0.00000 -0.04649 0.01586 + 27 0.00000 0.00000 0.00000 0.00000 0.28090 -0.09658 + 28 0.00000 -0.00000 -0.00000 -0.00000 -0.20264 0.28597 + 29 -0.00000 -0.00000 -0.00000 -0.00000 0.12426 0.00564 + 30 -0.55324 0.23225 -0.19920 -0.46688 0.00000 -0.00000 + 31 0.00000 0.00000 -0.00000 0.00000 -0.41378 -0.32189 + 32 0.00000 0.00000 -0.00000 0.00000 -0.41378 0.32189 + 33 -0.00000 -0.00000 -0.00000 -0.00000 -0.42379 -0.27080 + 34 -0.00000 -0.00000 -0.00000 -0.00000 -0.42379 0.27080 + 35 0.00000 -0.00000 -0.00000 -0.00000 0.05002 0.00767 + 36 -0.00000 0.00000 0.00000 0.00000 -0.28213 -0.04685 + 37 -0.00000 -0.00000 0.00000 -0.00000 -0.24477 0.34456 + 38 -0.00000 -0.00000 -0.00000 -0.00000 -0.33810 0.21676 + 39 0.00380 0.52217 -0.52913 0.28773 0.00000 0.00000 + 40 0.00000 -0.00000 -0.00000 -0.00000 0.05002 -0.00767 + 41 -0.00000 0.00000 0.00000 0.00000 -0.28213 0.04685 + 42 0.00000 0.00000 -0.00000 0.00000 0.24477 0.34456 + 43 0.00000 0.00000 -0.00000 0.00000 0.33810 0.21676 + 44 0.00380 -0.52217 -0.52913 -0.28773 0.00000 -0.00000 + 45 0.00000 -0.00000 0.00000 -0.00000 -0.14441 0.43383 + 46 0.00000 -0.00000 0.00000 -0.00000 -0.14441 -0.43383 + 47 -0.00000 -0.00000 0.00000 -0.00000 -0.04092 0.00256 + 48 0.00000 0.00000 -0.00000 0.00000 0.23693 -0.01934 + 49 -0.00000 0.00000 -0.00000 -0.00000 -0.13832 0.30324 + 50 0.00000 0.00000 -0.00000 -0.00000 -0.14825 0.16644 + 51 0.01077 -0.52310 0.37969 -0.15615 0.00000 -0.00000 + 52 -0.00000 -0.00000 0.00000 -0.00000 -0.04092 -0.00256 + 53 0.00000 -0.00000 -0.00000 0.00000 0.23693 0.01934 + 54 0.00000 -0.00000 0.00000 0.00000 0.13832 0.30324 + 55 -0.00000 -0.00000 0.00000 0.00000 0.14825 0.16644 56 0.01077 0.52310 0.37969 0.15615 -0.00000 -0.00000 - 57 0.00000 -0.00000 -0.00000 -0.00000 0.10790 -0.32313 - 58 0.00000 -0.00000 -0.00000 -0.00000 0.10790 0.32313 - 59 -0.00000 0.00000 0.00000 0.00000 -0.35854 0.28381 - 60 -0.00000 0.00000 0.00000 0.00000 -0.35854 -0.28381 + 57 0.00000 0.00000 0.00000 0.00000 0.10790 -0.32313 + 58 0.00000 0.00000 0.00000 0.00000 0.10790 0.32313 + 59 0.00000 0.00000 -0.00000 -0.00000 -0.35854 0.28381 + 60 0.00000 0.00000 -0.00000 -0.00000 -0.35854 -0.28381 43 44 45 46 47 48 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.05834 0.02268 0.05279 -0.08118 -0.02216 -0.12893 - 2 0.33838 -0.13703 -0.31848 0.47622 0.13840 0.78230 - 3 -0.09823 -0.10366 0.25896 -0.11473 -0.11098 -0.01962 + 1 -0.05834 0.02268 0.05278 -0.08118 -0.02216 -0.12893 + 2 0.33838 -0.13703 -0.31847 0.47622 0.13839 0.78231 + 3 -0.09823 -0.10366 0.25896 -0.11474 -0.11098 -0.01962 4 0.46153 0.07568 -0.15525 0.01704 -0.24323 -0.03427 - 5 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 - 6 0.05834 0.02268 0.05279 0.08118 0.02216 -0.12893 - 7 -0.33838 -0.13703 -0.31848 -0.47622 -0.13840 0.78230 - 8 -0.09823 0.10366 -0.25896 -0.11473 -0.11098 0.01962 + 5 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 6 0.05834 0.02268 0.05278 0.08118 0.02216 -0.12893 + 7 -0.33838 -0.13703 -0.31847 -0.47622 -0.13839 0.78231 + 8 -0.09823 0.10366 -0.25896 -0.11474 -0.11098 0.01962 9 0.46153 -0.07568 0.15525 0.01704 -0.24323 0.03427 - 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 10 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 11 0.02504 -0.06444 0.07255 0.07415 0.05951 0.08004 - 12 -0.15223 0.39353 -0.44365 -0.44066 -0.36868 -0.49965 + 12 -0.15222 0.39352 -0.44365 -0.44067 -0.36868 -0.49966 13 -0.13061 0.00225 -0.04821 -0.10021 -0.31643 -0.01875 - 14 0.22995 0.12424 0.16486 0.02279 -0.31506 -0.28291 - 15 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 14 0.22995 0.12425 0.16486 0.02279 -0.31506 -0.28291 + 15 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 16 -0.02504 -0.06444 0.07255 -0.07415 -0.05951 0.08004 - 17 0.15223 0.39353 -0.44365 0.44066 0.36868 -0.49965 + 17 0.15222 0.39352 -0.44365 0.44067 0.36868 -0.49966 18 -0.13061 -0.00225 0.04821 -0.10021 -0.31643 0.01875 - 19 0.22995 -0.12424 -0.16486 0.02279 -0.31506 0.28291 - 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 19 0.22995 -0.12425 -0.16486 0.02279 -0.31506 0.28291 + 20 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 21 -0.00510 -0.01994 -0.10148 -0.10140 -0.00736 0.06591 - 22 0.02330 0.12751 0.62008 0.61316 0.03300 -0.41157 - 23 -0.26631 0.17399 -0.03870 0.00524 -0.20946 0.23962 + 22 0.02329 0.12752 0.62008 0.61316 0.03300 -0.41157 + 23 -0.26631 0.17399 -0.03870 0.00523 -0.20946 0.23962 24 0.32178 -0.20676 0.01016 -0.13338 -0.11033 0.24482 - 25 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 25 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 26 0.00510 -0.01994 -0.10148 0.10140 0.00736 0.06591 - 27 -0.02330 0.12751 0.62008 -0.61316 -0.03300 -0.41157 - 28 -0.26631 -0.17399 0.03870 0.00524 -0.20946 -0.23962 + 27 -0.02329 0.12752 0.62008 -0.61316 -0.03300 -0.41157 + 28 -0.26631 -0.17399 0.03870 0.00523 -0.20946 -0.23962 29 0.32178 0.20676 -0.01016 -0.13338 -0.11033 -0.24482 - 30 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 31 0.11582 -0.29164 0.22670 0.32243 0.60311 0.32408 - 32 -0.11582 -0.29164 0.22670 -0.32243 -0.60311 0.32408 - 33 0.40556 -0.29496 -0.22356 -0.35430 0.04475 0.19253 - 34 -0.40556 -0.29496 -0.22356 0.35430 -0.04475 0.19253 + 30 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 31 0.11582 -0.29164 0.22670 0.32244 0.60311 0.32408 + 32 -0.11582 -0.29164 0.22670 -0.32244 -0.60311 0.32408 + 33 0.40557 -0.29497 -0.22356 -0.35429 0.04475 0.19253 + 34 -0.40557 -0.29497 -0.22356 0.35429 -0.04475 0.19253 35 -0.09347 0.06358 -0.02475 -0.04071 0.07124 0.09223 - 36 0.54612 -0.38217 0.15743 0.25682 -0.44680 -0.55679 + 36 0.54611 -0.38217 0.15743 0.25682 -0.44680 -0.55679 37 0.05807 0.33837 -0.13928 -0.16191 0.22490 0.11605 - 38 0.33241 0.07222 0.23435 0.17328 -0.05088 -0.08498 - 39 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 38 0.33241 0.07223 0.23434 0.17329 -0.05088 -0.08498 + 39 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 40 0.09347 0.06358 -0.02475 0.04071 -0.07124 0.09223 - 41 -0.54612 -0.38217 0.15743 -0.25682 0.44680 -0.55679 + 41 -0.54611 -0.38217 0.15743 -0.25682 0.44680 -0.55679 42 0.05807 -0.33837 0.13928 -0.16191 0.22490 -0.11605 - 43 0.33241 -0.07222 -0.23435 0.17328 -0.05088 0.08498 - 44 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 43 0.33241 -0.07223 -0.23434 0.17329 -0.05088 0.08498 + 44 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 45 -0.15904 0.57961 -0.16935 -0.21129 0.43714 0.36453 46 0.15904 0.57961 -0.16935 0.21129 -0.43714 0.36453 - 47 0.05085 -0.01992 -0.10343 -0.08588 0.02024 -0.06749 - 48 -0.29723 0.11077 0.64735 0.53974 -0.13544 0.40989 - 49 0.10140 0.30436 0.23779 0.25100 0.05171 -0.00023 - 50 0.14225 0.23774 -0.07679 -0.13571 0.29542 -0.05131 - 51 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 52 -0.05085 -0.01992 -0.10343 0.08588 -0.02024 -0.06749 - 53 0.29723 0.11077 0.64735 -0.53974 0.13544 0.40989 - 54 0.10140 -0.30436 -0.23779 0.25100 0.05171 0.00023 - 55 0.14225 -0.23774 0.07679 -0.13571 0.29542 0.05131 - 56 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 57 -0.01079 -0.39144 -0.51332 -0.44781 -0.05131 -0.21180 - 58 0.01079 -0.39144 -0.51332 0.44781 0.05131 -0.21180 - 59 0.35169 0.25249 -0.32079 -0.31773 0.33770 -0.25942 - 60 -0.35169 0.25249 -0.32079 0.31773 -0.33770 -0.25942 + 47 0.05085 -0.01992 -0.10343 -0.08588 0.02025 -0.06749 + 48 -0.29723 0.11077 0.64735 0.53974 -0.13545 0.40989 + 49 0.10140 0.30436 0.23779 0.25100 0.05170 -0.00024 + 50 0.14226 0.23774 -0.07679 -0.13570 0.29542 -0.05131 + 51 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 52 -0.05085 -0.01992 -0.10343 0.08588 -0.02025 -0.06749 + 53 0.29723 0.11077 0.64735 -0.53974 0.13545 0.40989 + 54 0.10140 -0.30436 -0.23779 0.25100 0.05170 0.00024 + 55 0.14226 -0.23774 0.07679 -0.13570 0.29542 0.05131 + 56 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 57 -0.01079 -0.39144 -0.51331 -0.44782 -0.05131 -0.21179 + 58 0.01079 -0.39144 -0.51331 0.44782 0.05131 -0.21179 + 59 0.35170 0.25248 -0.32079 -0.31773 0.33770 -0.25941 + 60 -0.35170 0.25248 -0.32079 0.31773 -0.33770 -0.25941 49 50 51 52 53 54 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.06085 0.03722 0.06722 0.00317 -0.00053 0.05880 - 2 -0.36183 -0.23260 -0.44870 -0.01124 -0.00248 -0.40591 + 1 0.06085 0.03721 0.06722 0.00317 -0.00053 0.05880 + 2 -0.36184 -0.23260 -0.44870 -0.01124 -0.00248 -0.40591 3 -0.14570 -0.34787 0.12771 -0.56073 0.20695 -0.24957 - 4 0.11217 0.04892 0.60187 0.05942 0.04403 -0.00632 - 5 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 6 -0.06085 0.03722 0.06722 -0.00317 -0.00053 -0.05880 - 7 0.36183 -0.23260 -0.44870 0.01124 -0.00248 0.40591 + 4 0.11217 0.04893 0.60187 0.05941 0.04403 -0.00633 + 5 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 -0.06085 0.03721 0.06722 -0.00317 -0.00053 -0.05880 + 7 0.36184 -0.23260 -0.44870 0.01124 -0.00248 0.40591 8 -0.14570 0.34787 -0.12771 -0.56073 -0.20695 -0.24957 - 9 0.11217 -0.04892 -0.60187 0.05942 -0.04403 -0.00632 - 10 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 9 0.11217 -0.04893 -0.60187 0.05941 -0.04403 -0.00633 + 10 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 11 -0.05838 -0.11175 -0.01185 -0.09661 0.00390 0.03680 - 12 0.35368 0.70622 0.07742 0.64780 -0.03141 -0.25015 - 13 -0.14824 -0.09323 -0.45250 0.02122 0.53712 -0.21473 - 14 0.12936 -0.11736 0.15653 0.10781 0.19812 0.72303 - 15 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 12 0.35368 0.70622 0.07742 0.64780 -0.03140 -0.25015 + 13 -0.14824 -0.09324 -0.45250 0.02122 0.53712 -0.21473 + 14 0.12936 -0.11737 0.15653 0.10781 0.19812 0.72303 + 15 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 16 0.05838 -0.11175 -0.01185 0.09661 0.00390 -0.03680 - 17 -0.35368 0.70622 0.07742 -0.64780 -0.03141 0.25015 - 18 -0.14824 0.09323 0.45250 0.02122 -0.53712 -0.21473 - 19 0.12936 0.11736 -0.15653 0.10781 -0.19812 0.72303 - 20 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 17 -0.35368 0.70622 0.07742 -0.64780 -0.03140 0.25015 + 18 -0.14824 0.09324 0.45250 0.02122 -0.53712 -0.21473 + 19 0.12936 0.11737 -0.15653 0.10781 -0.19812 0.72303 + 20 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 21 0.06637 0.09765 -0.04908 -0.03554 -0.00213 -0.08728 - 22 -0.40716 -0.61940 0.31761 0.24771 0.02086 0.59992 - 23 -0.17253 -0.13924 -0.32414 -0.19436 -0.52214 0.33345 - 24 0.14290 -0.18027 0.02622 -0.47822 0.40019 0.39422 - 25 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 22 -0.40717 -0.61940 0.31762 0.24771 0.02086 0.59992 + 23 -0.17253 -0.13923 -0.32414 -0.19436 -0.52214 0.33345 + 24 0.14290 -0.18027 0.02623 -0.47822 0.40019 0.39423 + 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 26 -0.06637 0.09765 -0.04908 0.03554 -0.00213 0.08728 - 27 0.40716 -0.61940 0.31761 -0.24771 0.02086 -0.59992 - 28 -0.17253 0.13924 0.32414 -0.19436 0.52214 0.33345 - 29 0.14290 0.18027 -0.02622 -0.47822 -0.40019 0.39422 - 30 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 27 0.40717 -0.61940 0.31762 -0.24771 0.02086 -0.59992 + 28 -0.17253 0.13923 0.32414 -0.19436 0.52214 0.33345 + 29 0.14290 0.18027 -0.02623 -0.47822 -0.40019 0.39423 + 30 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 31 -0.07743 -0.21967 0.25325 -0.30688 -0.44831 0.07820 32 0.07743 -0.21967 0.25325 0.30688 -0.44831 -0.07820 - 33 0.47711 0.33385 0.05619 -0.21014 0.51910 -0.26111 - 34 -0.47711 0.33385 0.05619 0.21014 0.51910 0.26111 + 33 0.47711 0.33385 0.05619 -0.21014 0.51910 -0.26110 + 34 -0.47711 0.33385 0.05619 0.21014 0.51910 0.26110 35 0.07086 -0.03056 0.07526 0.02689 0.05143 0.06052 - 36 -0.42899 0.21352 -0.49167 -0.19439 -0.35148 -0.41541 - 37 0.06306 -0.03075 0.15321 -0.26590 -0.12018 0.06499 - 38 0.11911 0.07453 0.00857 0.04267 0.15465 0.06260 - 39 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 36 -0.42900 0.21351 -0.49167 -0.19440 -0.35148 -0.41541 + 37 0.06306 -0.03074 0.15321 -0.26589 -0.12018 0.06499 + 38 0.11911 0.07453 0.00857 0.04267 0.15464 0.06260 + 39 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 40 -0.07086 -0.03056 0.07526 -0.02689 0.05143 -0.06052 - 41 0.42899 0.21352 -0.49167 0.19439 -0.35148 0.41541 - 42 0.06306 0.03075 -0.15321 -0.26590 0.12018 0.06499 - 43 0.11911 -0.07453 -0.00857 0.04267 -0.15465 0.06260 - 44 0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 45 0.30081 -0.07193 0.30774 -0.14863 0.09225 0.23757 - 46 -0.30081 -0.07193 0.30774 0.14863 0.09225 -0.23757 + 41 0.42900 0.21351 -0.49167 0.19440 -0.35148 0.41541 + 42 0.06306 0.03074 -0.15321 -0.26589 0.12018 0.06499 + 43 0.11911 -0.07453 -0.00857 0.04267 -0.15464 0.06260 + 44 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 45 0.30082 -0.07193 0.30774 -0.14862 0.09225 0.23756 + 46 -0.30082 -0.07193 0.30774 0.14862 0.09225 -0.23756 47 -0.11287 -0.06460 -0.01973 -0.00897 -0.04267 -0.00685 48 0.70672 0.41504 0.12260 0.06945 0.29014 0.04268 - 49 0.14599 0.13302 -0.34203 0.02326 -0.08284 -0.26189 - 50 -0.02460 -0.38262 -0.12479 0.48344 0.26719 0.10775 - 51 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 49 0.14598 0.13302 -0.34203 0.02326 -0.08284 -0.26189 + 50 -0.02460 -0.38262 -0.12479 0.48344 0.26719 0.10776 + 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 52 0.11287 -0.06460 -0.01973 0.00897 -0.04267 0.00685 53 -0.70672 0.41504 0.12260 -0.06945 0.29014 -0.04268 - 54 0.14599 -0.13302 0.34203 0.02326 0.08284 -0.26189 - 55 -0.02460 0.38262 0.12479 0.48344 -0.26719 0.10775 - 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 - 57 -0.52556 -0.29507 0.23009 -0.10029 -0.14003 0.20420 - 58 0.52556 -0.29507 0.23009 0.10029 -0.14003 -0.20420 - 59 -0.32347 -0.47518 -0.24776 0.35601 0.06441 -0.00414 - 60 0.32347 -0.47518 -0.24776 -0.35601 0.06441 0.00414 + 54 0.14598 -0.13302 0.34203 0.02326 0.08284 -0.26189 + 55 -0.02460 0.38262 0.12479 0.48344 -0.26719 0.10776 + 56 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 + 57 -0.52556 -0.29507 0.23009 -0.10029 -0.14004 0.20420 + 58 0.52556 -0.29507 0.23009 0.10029 -0.14004 -0.20420 + 59 -0.32347 -0.47519 -0.24776 0.35600 0.06441 -0.00414 + 60 0.32347 -0.47519 -0.24776 -0.35600 0.06441 0.00414 55 56 57 58 59 60 ----------- ----------- ----------- ----------- ----------- ----------- 1 -0.08989 0.01510 0.01661 0.02005 -0.00499 0.04414 2 0.60853 -0.09062 -0.10600 -0.14140 0.03340 -0.32847 3 -0.21224 -0.11872 0.13200 -0.45433 0.70243 0.16278 - 4 0.05257 -0.36457 -0.38167 0.13629 -0.05065 0.65769 - 5 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 4 0.05256 -0.36458 -0.38167 0.13629 -0.05065 0.65769 + 5 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 6 0.08989 0.01510 0.01661 -0.02005 -0.00499 -0.04414 7 -0.60853 -0.09062 -0.10600 0.14140 0.03340 0.32847 8 -0.21224 0.11872 -0.13200 -0.45433 -0.70243 0.16278 - 9 0.05257 0.36457 0.38167 0.13629 0.05065 0.65769 - 10 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 11 -0.00731 0.02725 -0.01909 -0.04610 0.00745 -0.05196 - 12 0.06374 -0.19115 0.13760 0.33350 -0.05183 0.37682 + 9 0.05256 0.36458 0.38167 0.13629 0.05065 0.65769 + 10 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 11 -0.00731 0.02725 -0.01909 -0.04609 0.00745 -0.05196 + 12 0.06373 -0.19115 0.13760 0.33349 -0.05183 0.37682 13 0.25124 0.25479 0.11127 -0.19457 0.23943 -0.56833 - 14 -0.08785 0.38348 -0.39209 0.12835 -0.53406 -0.24121 - 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 16 0.00731 0.02725 -0.01909 0.04610 0.00745 0.05196 - 17 -0.06374 -0.19115 0.13760 -0.33350 -0.05183 -0.37682 + 14 -0.08785 0.38348 -0.39209 0.12836 -0.53406 -0.24121 + 15 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 16 0.00731 0.02725 -0.01909 0.04609 0.00745 0.05196 + 17 -0.06373 -0.19115 0.13760 -0.33349 -0.05183 -0.37682 18 0.25124 -0.25479 -0.11127 -0.19457 -0.23943 -0.56833 - 19 -0.08785 -0.38348 0.39209 0.12835 0.53406 -0.24121 - 20 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 19 -0.08785 -0.38348 0.39209 0.12836 0.53406 -0.24121 + 20 -0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 21 -0.03521 -0.03182 0.01657 -0.02074 -0.00758 0.05675 22 0.23245 0.21889 -0.12012 0.15486 0.05144 -0.41380 - 23 -0.36600 0.17276 0.02185 -0.04663 -0.43599 0.49652 - 24 -0.18562 0.30524 -0.44923 -0.21409 -0.41104 -0.39590 - 25 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 23 -0.36599 0.17276 0.02185 -0.04663 -0.43599 0.49652 + 24 -0.18562 0.30524 -0.44923 -0.21409 -0.41104 -0.39589 + 25 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 26 0.03521 -0.03182 0.01657 0.02074 -0.00758 -0.05675 27 -0.23245 0.21889 -0.12012 -0.15486 0.05144 0.41380 - 28 -0.36600 -0.17276 -0.02185 -0.04663 0.43599 0.49652 - 29 -0.18562 -0.30524 0.44923 -0.21409 0.41104 -0.39590 - 30 0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 - 31 -0.14094 -0.20985 -0.04154 -0.02084 -0.00735 0.26969 - 32 0.14094 -0.20985 -0.04154 0.02084 -0.00735 -0.26969 - 33 -0.00222 -0.05707 -0.19612 -0.10449 0.03922 -0.27789 - 34 0.00222 -0.05707 -0.19612 0.10449 0.03922 0.27789 + 28 -0.36599 -0.17276 -0.02185 -0.04663 0.43599 0.49652 + 29 -0.18562 -0.30524 0.44923 -0.21409 0.41104 -0.39589 + 30 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 31 -0.14093 -0.20985 -0.04154 -0.02084 -0.00735 0.26969 + 32 0.14093 -0.20985 -0.04154 0.02084 -0.00735 -0.26969 + 33 -0.00222 -0.05708 -0.19612 -0.10449 0.03922 -0.27789 + 34 0.00222 -0.05708 -0.19612 0.10449 0.03922 0.27789 35 0.02328 -0.04109 0.04186 -0.06153 -0.02738 -0.01273 - 36 -0.17901 0.28523 -0.32807 0.46654 0.21757 0.07838 + 36 -0.17902 0.28523 -0.32807 0.46654 0.21757 0.07838 37 0.31030 0.54927 -0.11106 0.60802 0.42984 0.02170 38 0.48066 0.17254 0.66309 -0.46487 -0.31930 0.36053 - 39 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 39 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 40 -0.02328 -0.04109 0.04186 0.06153 -0.02738 0.01273 - 41 0.17901 0.28523 -0.32807 -0.46654 0.21757 -0.07838 + 41 0.17902 0.28523 -0.32807 -0.46654 0.21757 -0.07838 42 0.31030 -0.54927 0.11106 0.60802 -0.42984 0.02170 43 0.48066 -0.17254 -0.66309 -0.46487 0.31930 0.36053 - 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 44 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 45 0.35066 0.31504 0.14736 0.17100 0.15757 0.04812 46 -0.35066 0.31504 0.14736 -0.17100 0.15757 -0.04812 47 -0.01851 0.03133 -0.04902 0.07130 0.04167 -0.00960 48 0.13135 -0.22709 0.36667 -0.53802 -0.32571 0.08189 - 49 -0.52889 -0.17005 -0.58041 0.39453 0.25502 -0.21909 - 50 -0.23694 -0.53430 0.19950 -0.54048 -0.31984 0.00186 - 51 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 49 -0.52889 -0.17006 -0.58041 0.39452 0.25502 -0.21909 + 50 -0.23694 -0.53430 0.19950 -0.54048 -0.31984 0.00187 + 51 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 52 0.01851 0.03133 -0.04902 -0.07130 0.04167 0.00960 53 -0.13135 -0.22709 0.36667 0.53802 -0.32571 -0.08189 - 54 -0.52889 0.17005 0.58041 0.39453 -0.25502 -0.21909 - 55 -0.23694 0.53430 -0.19950 -0.54048 0.31984 0.00186 - 56 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 54 -0.52889 0.17006 0.58041 0.39452 -0.25502 -0.21909 + 55 -0.23694 0.53430 -0.19950 -0.54048 0.31984 0.00187 + 56 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 57 0.36329 0.28938 0.26297 -0.01006 -0.03248 0.13722 58 -0.36329 0.28938 0.26297 0.01006 -0.03248 -0.13722 59 -0.33886 -0.33075 -0.11581 -0.09330 -0.04790 -0.06477 @@ -3983,27 +3988,30 @@ moments of inertia (a.u.) ------------------ - 2631.731379210404 0.000000000000 0.000000000000 - 0.000000000000 390.819001468288 0.000000000000 - 0.000000000000 0.000000000000 3022.550380678692 - + 2631.731379210398 -0.000000000000 0.000000000000 + -0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678686 + Multipole analysis of the density --------------------------------- - + L x y z total alpha beta nuclear - - - - ----- ----- ---- ------- 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 - - 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 + + 1 1 0 0 0.000000 0.000000 0.000000 0.000000 1 0 1 0 0.000000 0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - - 2 2 0 0 -37.347169 -141.071520 -141.071520 244.795872 - 2 1 1 0 0.066524 2.848776 2.848776 -5.631027 + + 2 2 0 0 -37.347168 -141.071520 -141.071520 244.795872 + 2 1 1 0 0.066521 2.848774 2.848774 -5.631027 2 1 0 1 0.000000 0.000000 0.000000 0.000000 - 2 0 2 0 -37.714760 -767.339030 -767.339030 1496.963300 + 2 0 2 0 -37.714761 -767.339030 -767.339030 1496.963300 2 0 1 1 0.000000 0.000000 0.000000 0.000000 - 2 0 0 2 -43.587344 -21.793672 -21.793672 0.000000 + 2 0 0 2 -43.587345 -21.793672 -21.793672 0.000000 + + + Parallel integral file used 10 records with 0 large values ------------- @@ -4014,16 +4022,16 @@ X = 0.0000000 Y = 0.0000000 Z = 0.0000000 Dipole moment 0.0000000000 A.U. - DMX -0.0000000000 DMXEFC 0.0000000000 + DMX 0.0000000000 DMXEFC 0.0000000000 DMY 0.0000000000 DMYEFC 0.0000000000 - DMZ -0.0000000000 DMZEFC 0.0000000000 + DMZ 0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 A.U. Total dipole 0.0000000000 A.U. Dipole moment 0.0000000000 Debye(s) - DMX -0.0000000000 DMXEFC 0.0000000000 + DMX 0.0000000000 DMXEFC 0.0000000000 DMY 0.0000000000 DMYEFC 0.0000000000 - DMZ -0.0000000000 DMZEFC 0.0000000000 + DMZ 0.0000000000 DMZEFC 0.0000000000 -EFC- dipole 0.0000000000 DEBYE(S) Total dipole 0.0000000000 DEBYE(S) @@ -4043,45 +4051,45 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -37.3471685931 0.0000000000 -37.3471685931 - YY -37.7147598234 0.0000000000 -37.7147598234 - ZZ -43.5873441825 0.0000000000 -43.5873441825 - XY 0.0665237349 0.0000000000 0.0665237349 + XX -37.3471684096 0.0000000000 -37.3471684096 + YY -37.7147608683 0.0000000000 -37.7147608683 + ZZ -43.5873445799 0.0000000000 -43.5873445799 + XY 0.0665213556 0.0000000000 0.0665213556 XZ 0.0000000000 0.0000000000 0.0000000000 - YZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 Second moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX -50.2286178597 0.0000000000 -50.2286178597 - YY -50.7229953489 0.0000000000 -50.7229953489 - ZZ -58.6210986518 0.0000000000 -58.6210986518 - XY 0.0894685028 0.0000000000 0.0894685028 + XX -50.2286176129 0.0000000000 -50.2286176129 + YY -50.7229967541 0.0000000000 -50.7229967541 + ZZ -58.6210991862 0.0000000000 -58.6210991862 + XY 0.0894653029 0.0000000000 0.0894653029 XZ 0.0000000000 0.0000000000 0.0000000000 - YZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 Quadrupole moments in atomic units Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 3.3038834099 0.0000000000 3.3038834099 - YY 2.7524965643 0.0000000000 2.7524965643 - ZZ -6.0563799742 0.0000000000 -6.0563799742 - XY 0.0997856024 0.0000000000 0.0997856024 + XX 3.3038843144 0.0000000000 3.3038843144 + YY 2.7524956265 0.0000000000 2.7524956265 + ZZ -6.0563799409 0.0000000000 -6.0563799409 + XY 0.0997820334 0.0000000000 0.0997820334 XZ 0.0000000000 0.0000000000 0.0000000000 - YZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 Quadrupole moments in buckingham(s) Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XX 4.4434291406 0.0000000000 4.4434291406 - YY 3.7018629068 0.0000000000 3.7018629068 - ZZ -8.1452920475 0.0000000000 -8.1452920475 - XY 0.1342027543 0.0000000000 0.1342027543 + XX 4.4434303572 0.0000000000 4.4434303572 + YY 3.7018616455 0.0000000000 3.7018616455 + ZZ -8.1452920027 0.0000000000 -8.1452920027 + XY 0.1341979543 0.0000000000 0.1341979543 XZ 0.0000000000 0.0000000000 0.0000000000 - YZ -0.0000000000 0.0000000000 -0.0000000000 + YZ 0.0000000000 0.0000000000 0.0000000000 1 a.u. = 1.344911 Buckinghams = 1.344911 10**(-26) esu*cm**2 @@ -4096,30 +4104,30 @@ Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX -0.0000000000 0.0000000000 -0.0000000000 + XXX 0.0000000000 0.0000000000 0.0000000000 YYY 0.0000000000 0.0000000000 0.0000000000 - ZZZ -0.0000000000 0.0000000000 -0.0000000000 - XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ -0.0000000000 0.0000000000 -0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 ZZX -0.0000000000 0.0000000000 -0.0000000000 - ZZY -0.0000000000 0.0000000000 -0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 XYZ 0.0000000000 0.0000000000 0.0000000000 Third moments in 10**(-34) esu*cm**3 Component Electronic+nuclear Point charges Total -------------------------------------------------------------------------- - XXX -0.0000000000 0.0000000000 -0.0000000000 + XXX 0.0000000000 0.0000000000 0.0000000000 YYY 0.0000000000 0.0000000000 0.0000000000 - ZZZ -0.0000000000 0.0000000000 -0.0000000000 - XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ -0.0000000000 0.0000000000 -0.0000000000 + ZZZ 0.0000000000 0.0000000000 0.0000000000 + XXY 0.0000000000 0.0000000000 0.0000000000 + XXZ 0.0000000000 0.0000000000 0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 ZZX -0.0000000000 0.0000000000 -0.0000000000 - ZZY -0.0000000000 0.0000000000 -0.0000000000 + ZZY 0.0000000000 0.0000000000 0.0000000000 XYZ 0.0000000000 0.0000000000 0.0000000000 Octupole moments in atomic units @@ -4128,11 +4136,11 @@ -------------------------------------------------------------------------- XXX 0.0000000000 0.0000000000 0.0000000000 YYY 0.0000000000 0.0000000000 0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 ZZX 0.0000000000 0.0000000000 0.0000000000 ZZY -0.0000000000 0.0000000000 -0.0000000000 XYZ 0.0000000000 0.0000000000 0.0000000000 @@ -4143,11 +4151,11 @@ -------------------------------------------------------------------------- XXX 0.0000000000 0.0000000000 0.0000000000 YYY 0.0000000000 0.0000000000 0.0000000000 - ZZZ 0.0000000000 0.0000000000 0.0000000000 + ZZZ -0.0000000000 0.0000000000 -0.0000000000 XXY -0.0000000000 0.0000000000 -0.0000000000 - XXZ 0.0000000000 0.0000000000 0.0000000000 + XXZ -0.0000000000 0.0000000000 -0.0000000000 YYX -0.0000000000 0.0000000000 -0.0000000000 - YYZ -0.0000000000 0.0000000000 -0.0000000000 + YYZ 0.0000000000 0.0000000000 0.0000000000 ZZX 0.0000000000 0.0000000000 0.0000000000 ZZY -0.0000000000 0.0000000000 -0.0000000000 XYZ 0.0000000000 0.0000000000 0.0000000000 @@ -4296,28 +4304,34 @@ Free electrons Valency Number of Sum of + Bond indices - Bond indices Valency Free electrons Bond indices =Mulliken charge = Net spin population - 1 C 3.97306 2.03135 3.97306 6.00441 -0.00000 - 2 C 3.97306 2.03135 3.97306 6.00441 -0.00000 + 1 C 3.97306 2.03135 3.97306 6.00441 0.00000 + 2 C 3.97306 2.03135 3.97306 6.00441 0.00000 3 C 3.96923 2.10747 3.96923 6.07670 -0.00000 4 C 3.96923 2.10747 3.96923 6.07670 -0.00000 - 5 C 3.97007 2.10706 3.97007 6.07713 -0.00000 + 5 C 3.97007 2.10706 3.97007 6.07713 0.00000 6 C 3.97007 2.10706 3.97007 6.07713 -0.00000 - 7 H 0.99392 -0.07191 0.99392 0.92201 0.00000 + 7 H 0.99392 -0.07191 0.99392 0.92201 -0.00000 8 H 0.99392 -0.07191 0.99392 0.92201 -0.00000 9 H 0.99371 -0.07303 0.99371 0.92068 -0.00000 - 10 H 0.99371 -0.07303 0.99371 0.92068 -0.00000 - 11 C 3.96810 2.10823 3.96810 6.07634 -0.00000 - 12 C 3.96810 2.10823 3.96810 6.07634 -0.00000 - 13 H 0.99412 -0.07081 0.99412 0.92331 -0.00000 + 10 H 0.99371 -0.07303 0.99371 0.92068 0.00000 + 11 C 3.96810 2.10823 3.96810 6.07634 0.00000 + 12 C 3.96810 2.10823 3.96810 6.07634 0.00000 + 13 H 0.99412 -0.07081 0.99412 0.92331 0.00000 14 H 0.99412 -0.07081 0.99412 0.92331 -0.00000 15 C 3.96478 2.19006 3.96478 6.15483 -0.00000 16 C 3.96478 2.19006 3.96478 6.15483 -0.00000 17 H 0.99421 -0.07032 0.99421 0.92389 -0.00000 - 18 H 0.99421 -0.07032 0.99421 0.92389 0.00000 + 18 H 0.99421 -0.07032 0.99421 0.92389 -0.00000 19 H 0.99371 -0.07301 0.99371 0.92070 -0.00000 - 20 H 0.99371 -0.07301 0.99371 0.92070 0.00000 + 20 H 0.99371 -0.07301 0.99371 0.92070 -0.00000 - Task times cpu: 12.1s wall: 12.1s + Task times cpu: 5.4s wall: 5.7s + + + NWChem Input Module + ------------------- + + Summary of allocated global arrays ----------------------------------- No active global arrays @@ -4328,70 +4342,40 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 691 691 2.22e+05 4999 1.73e+05 420 0 1.18e+04 -number of processes/call 2.13e+13 4.49e+13 -1.16e+13 0.00e+00 0.00e+00 -bytes total: 3.11e+07 7.08e+06 1.76e+07 8.00e+00 0.00e+00 9.40e+04 -bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 1123200 bytes +calls: 684 684 4.84e+04 1675 3.97e+04 42 0 2444 +number of processes/call -2.54e+12 3.52e+13 4.58e+11 0.00e+00 0.00e+00 +bytes total: 1.34e+07 2.46e+06 6.83e+06 2.00e+02 0.00e+00 1.96e+04 +bytes remote: 9.26e+06 1.09e+06 4.93e+06 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 288736 bytes + MA_summarize_allocated_blocks: starting scan ... -heap block 'gridpts', handle 96, address 0x55e612dab6d8: - type of elements: double precision - number of elements: 17448000 - address of client space: 0x55e612dab740 - index for client space: 9758001 - total number of bytes: 139584112 -MA_summarize_allocated_blocks: scan completed: 1 heap block, 0 stack blocks +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: allocation statistics: heap stack ---- ----- - current number of blocks 1 0 + current number of blocks 0 0 maximum number of blocks 22 57 - current total bytes 139584112 0 - maximum total bytes 190930952 22516408 - maximum total K-bytes 190931 22517 - maximum total M-bytes 191 23 - - - NWChem Input Module - ------------------- - - - - - + current total bytes 0 0 + maximum total bytes 16151016 22516392 + maximum total K-bytes 16152 22517 + maximum total M-bytes 17 23 + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, - V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, - J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, - J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, - C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, - K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, - J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, - V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, - B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, - S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, - A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, - D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, - J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, - A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, - R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, - D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, - V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, - Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, - D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, - A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, - and R. J. Harrison - "NWChem: Past, present, and future - J. Chem. Phys. 152, 184102 (2020) - doi:10.1063/5.0004997 - + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -4414,4 +4398,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 12.1s wall: 12.1s + Total times cpu: 5.4s wall: 5.8s diff --git a/data/NWChem/basicNWChem7.0/dvb_td.out b/data/NWChem/basicNWChem7.0/dvb_td.out index 967b91daf..a0c308f25 100644 --- a/data/NWChem/basicNWChem7.0/dvb_td.out +++ b/data/NWChem/basicNWChem7.0/dvb_td.out @@ -1,26 +1,26 @@ argument 1 = dvb_td.in - - - Northwest Computational Chemistry Package (NWChem) 7.0.2 + + + Northwest Computational Chemistry Package (NWChem) 7.0.0 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2020 + + Copyright (c) 1994-2019 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = osmium - program = nwchem - date = Sat Jun 4 13:56:21 2022 + hostname = smp-n17.sam.pitt.edu + program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem + date = Tue Sep 20 18:25:19 2022 - compiled = Fri_Jul_02_16:33:00_2021 - source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src - nwchem branch = 7.0.2 - nwchem revision = b9985dfa - ga revision = 5.7.2 - use scalapack = T + compiled = Wed_May_13_13:33:26_2020 + source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 + nwchem branch = 7.0.0 + nwchem revision = N/A + ga revision = 5.7.1 + use scalapack = F input = dvb_td.in prefix = dvb. data base = ./dvb.db status = startup - nproc = 1 + nproc = 4 time left = -1s @@ -58,8 +58,8 @@ Memory information ------------------ - heap = 134217726 doubles = 1024.0 Mbytes - stack = 134217723 doubles = 1024.0 Mbytes + heap = 134217722 doubles = 1024.0 Mbytes + stack = 134217727 doubles = 1024.0 Mbytes global = 268435456 doubles = 2048.0 Mbytes (distinct from heap & stack) total = 536870905 doubles = 4096.0 Mbytes verify = yes @@ -68,17 +68,17 @@ Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + Divinylbenzene in STO-3G basis set ---------------------------------- @@ -90,15 +90,15 @@ ------ auto-z ------ - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - - + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 C 6.0000 0.23680554 1.41416660 0.00000000 @@ -121,13 +121,13 @@ 18 H 1.0000 -1.44522900 3.70144241 0.00000000 19 H 1.0000 0.04815351 -4.93192286 0.00000000 20 H 1.0000 -0.04815351 4.93192286 0.00000000 - + Atomic Mass ----------- - + C 12.000000 H 1.007825 - + Effective nuclear repulsion energy (a.u.) 445.9370121674 @@ -136,26 +136,26 @@ X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - + Z-matrix (autoz) -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value ----------- -------- ----- ----- ----- ----- ----- ---------- 1 Stretch 1 3 1.42204 @@ -228,7 +228,7 @@ 68 Torsion 4 2 11 13 0.00000 69 Torsion 4 2 11 15 180.00000 70 Torsion 4 6 1 12 180.00000 - 71 Torsion 5 2 4 6 -0.00000 + 71 Torsion 5 2 4 6 0.00000 72 Torsion 5 2 4 8 180.00000 73 Torsion 5 2 11 13 180.00000 74 Torsion 5 2 11 15 0.00000 @@ -238,18 +238,18 @@ 78 Torsion 6 1 12 14 180.00000 79 Torsion 6 1 12 16 0.00000 80 Torsion 6 4 2 11 180.00000 - 81 Torsion 7 3 1 12 -0.00000 + 81 Torsion 7 3 1 12 0.00000 82 Torsion 7 3 5 9 0.00000 - 83 Torsion 8 4 2 11 -0.00000 + 83 Torsion 8 4 2 11 0.00000 84 Torsion 8 4 6 10 0.00000 85 Torsion 9 5 2 11 0.00000 86 Torsion 10 6 1 12 0.00000 87 Torsion 13 11 15 17 180.00000 - 88 Torsion 13 11 15 19 -0.00000 + 88 Torsion 13 11 15 19 0.00000 89 Torsion 14 12 16 18 180.00000 - 90 Torsion 14 12 16 20 -0.00000 - - + 90 Torsion 14 12 16 20 0.00000 + + XYZ format geometry ------------------- 20 @@ -274,7 +274,7 @@ H -1.44522900 3.70144241 0.00000000 H 0.04815351 -4.93192286 0.00000000 H -0.04815351 4.93192286 0.00000000 - + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -347,9 +347,6 @@ - library name resolved from: environment - library file name is: - Summary of "ao basis" -> "" (cartesian) @@ -359,14 +356,14 @@ * sto-3g on all atoms - + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + Basis "ao basis" -> "ao basis" (cartesian) ----- C (Carbon) @@ -376,15 +373,15 @@ 1 S 7.16168370E+01 0.154329 1 S 1.30450960E+01 0.535328 1 S 3.53051220E+00 0.444635 - + 2 S 2.94124940E+00 -0.099967 2 S 6.83483100E-01 0.399513 2 S 2.22289900E-01 0.700115 - + 3 P 2.94124940E+00 0.155916 3 P 6.83483100E-01 0.607684 3 P 2.22289900E-01 0.391957 - + H (Hydrogen) ------------ Exponent Coefficients @@ -392,7 +389,7 @@ 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + Summary of "ao basis" -> "ao basis" (cartesian) @@ -415,14 +412,14 @@ Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 - + Caching 1-el integrals - + General Information ------------------- SCF calculation type: DFT @@ -441,7 +438,7 @@ Convergence on energy requested: 1.00D-06 Convergence on density requested: 1.00D-05 Convergence on gradient requested: 5.00D-04 - + XC Information -------------- B3LYP Method XC Potential @@ -450,7 +447,7 @@ Becke 1988 Exchange Functional 0.720 non-local Lee-Yang-Parr Correlation Functional 0.810 VWN I RPA Correlation Functional 0.190 local - + Grid Information ---------------- Grid used for XC integration: fine @@ -463,7 +460,7 @@ Grid pruning is: on Number of quadrature shells: 1300 Spatial weights used: Erf1 - + Convergence Information ----------------------- Convergence aids based upon iterative change in @@ -478,7 +475,7 @@ dE on: start ASAP start dE off: 2 iters 120 iters 120 iters - + Screening Tolerance Information ------------------------------- Density screening/tol_rho: 1.00D-10 @@ -487,12 +484,12 @@ XC Gaussian exp screening on grid/accXCfunc: 20 Schwarz screening/accCoul: 1.00D-08 - + Superposition of Atomic Density Guess ------------------------------------- - + Sum of atomic energies: -376.44825176 - + Non-variational initial energy ------------------------------ @@ -501,17 +498,17 @@ 2-e energy = 576.084617 HOMO = -0.037644 LUMO = 0.163723 - - + + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 ag 2 bu 3 ag 4 bu 5 bu 6 ag 7 bu 8 ag 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -521,192 +518,182 @@ 31 ag 32 bg 33 au 34 bg 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 bu - - Time after variat. SCF: 0.3 - Time prior to 1st pass: 0.3 + + Time after variat. SCF: 0.2 + Time prior to 1st pass: 0.2 Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 - Max. records in memory = 276 Max. recs in file = ********* + Max. records in memory = 70 Max. recs in file = 2708430 - Grid integrated density: 69.999985751215 + Grid integrated density: 69.999985729485 Requested integration accuracy: 0.10E-06 !! scf_movecs_sym_adapt: 4 vectors were symmetry contaminated Symmetry fudging - !! scf_movecs_sym_adapt: 2 vectors were symmetry contaminated - - Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 77.19 77194198 - Stack Space remaining (MW): 134.22 134216804 + Heap Space remaining (MW): 133.35 133353994 + Stack Space remaining (MW): 134.22 134216812 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.2544158248 -8.28D+02 1.42D-02 3.78D-01 2.9 - Grid integrated density: 69.999985700462 + d= 0,ls=0.0,diis 1 -382.2544158242 -8.28D+02 1.42D-02 3.78D-01 1.6 + Grid integrated density: 69.999985541775 Requested integration accuracy: 0.10E-06 - - !! scf_movecs_sym_adapt: 6 vectors were symmetry contaminated - - Symmetry fudging - - !! scf_movecs_sym_adapt: 2 vectors were symmetry contaminated - - d= 0,ls=0.0,diis 2 -382.3017145178 -4.73D-02 6.99D-03 3.82D-02 4.4 - Grid integrated density: 69.999985777698 + d= 0,ls=0.0,diis 2 -382.3017143574 -4.73D-02 6.99D-03 3.82D-02 2.4 + Grid integrated density: 69.999985779130 Requested integration accuracy: 0.10E-06 - !! scf_movecs_sym_adapt: 10 vectors were symmetry contaminated + !! scf_movecs_sym_adapt: 4 vectors were symmetry contaminated Symmetry fudging - d= 0,ls=0.0,diis 3 -382.2954321414 6.28D-03 4.21D-03 7.96D-02 6.3 - Grid integrated density: 69.999985849043 + d= 0,ls=0.0,diis 3 -382.2954321282 6.28D-03 4.21D-03 7.96D-02 3.4 + Grid integrated density: 69.999985850458 Requested integration accuracy: 0.10E-06 - !! scf_movecs_sym_adapt: 4 vectors were symmetry contaminated + !! scf_movecs_sym_adapt: 2 vectors were symmetry contaminated Symmetry fudging - d= 0,ls=0.0,diis 4 -382.3080978098 -1.27D-02 5.18D-04 8.80D-04 8.3 - Grid integrated density: 69.999985851411 + d= 0,ls=0.0,diis 4 -382.3080978121 -1.27D-02 5.18D-04 8.80D-04 4.4 + Grid integrated density: 69.999985852820 Requested integration accuracy: 0.10E-06 !! scf_movecs_sym_adapt: 4 vectors were symmetry contaminated Symmetry fudging - d= 0,ls=0.0,diis 5 -382.3082341544 -1.36D-04 1.18D-04 4.46D-05 10.2 - Grid integrated density: 69.999985847947 + d= 0,ls=0.0,diis 5 -382.3082341548 -1.36D-04 1.18D-04 4.46D-05 5.4 + Grid integrated density: 69.999985849353 Requested integration accuracy: 0.10E-06 - !! scf_movecs_sym_adapt: 2 vectors were symmetry contaminated + !! scf_movecs_sym_adapt: 4 vectors were symmetry contaminated Symmetry fudging Resetting Diis - d= 0,ls=0.0,diis 6 -382.3082402919 -6.14D-06 3.19D-05 3.09D-06 12.1 - Grid integrated density: 69.999985848368 + d= 0,ls=0.0,diis 6 -382.3082402926 -6.14D-06 3.19D-05 3.10D-06 6.4 + Grid integrated density: 69.999985849774 Requested integration accuracy: 0.10E-06 - !! scf_movecs_sym_adapt: 2 vectors were symmetry contaminated + !! scf_movecs_sym_adapt: 4 vectors were symmetry contaminated Symmetry fudging - d= 0,ls=0.0,diis 7 -382.3082407689 -4.77D-07 1.42D-05 1.61D-07 14.0 - Grid integrated density: 69.999985848469 + d= 0,ls=0.0,diis 7 -382.3082407698 -4.77D-07 1.42D-05 1.61D-07 7.4 + Grid integrated density: 69.999985849875 Requested integration accuracy: 0.10E-06 - !! scf_movecs_sym_adapt: 4 vectors were symmetry contaminated + !! scf_movecs_sym_adapt: 2 vectors were symmetry contaminated Symmetry fudging - d= 0,ls=0.0,diis 8 -382.3082407664 2.58D-09 7.55D-06 1.77D-07 16.0 + d= 0,ls=0.0,diis 8 -382.3082407672 2.57D-09 7.55D-06 1.77D-07 8.3 - Total DFT energy = -382.308240766357 - One electron energy = -1400.645116381690 - Coulomb energy = 630.242756473936 - Exchange-Corr. energy = -57.842893026049 + Total DFT energy = -382.308240767193 + One electron energy = -1400.645116307314 + Coulomb energy = 630.242756399751 + Exchange-Corr. energy = -57.842893027076 Nuclear repulsion energy = 445.937012167446 - Numeric. integr. density = 69.999985848469 - - Total iterative time = 15.7s + Numeric. integr. density = 69.999985849875 + Total iterative time = 8.1s + Occupations of the irreducible representations ---------------------------------------------- - + irrep alpha beta -------- -------- -------- ag 15.0 15.0 au 2.0 2.0 bg 3.0 3.0 bu 15.0 15.0 - - + + DFT Final Molecular Orbital Analysis ------------------------------------ - + Vector 1 Occ=2.000000D+00 E=-1.002024D+01 Symmetry=bu - MO Center= -9.3D-18, -2.9D-17, 7.0D-33, r^2= 2.1D+00 + MO Center= 1.4D-17, -1.1D-16, 7.6D-35, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.699304 1 C s 6 -0.699304 2 C s 2 0.031560 1 C s 7 -0.031560 2 C s 35 0.026964 11 C s 40 -0.026964 12 C s - + Vector 2 Occ=2.000000D+00 E=-1.002019D+01 Symmetry=ag - MO Center= 8.8D-17, 4.8D-16, 1.4D-32, r^2= 2.1D+00 + MO Center= 1.6D-17, -3.3D-17, -1.3D-32, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.699301 1 C s 6 0.699301 2 C s 2 0.031352 1 C s 7 0.031352 2 C s 35 -0.027327 11 C s 40 -0.027327 12 C s - + Vector 3 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=bu - MO Center= 3.5D-17, -1.9D-16, -6.1D-33, r^2= 8.6D+00 + MO Center= 1.1D-16, 4.6D-16, -1.7D-32, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.699780 11 C s 40 -0.699780 12 C s 36 0.030781 11 C s 41 -0.030781 12 C s 1 -0.027417 1 C s 6 0.027417 2 C s - + Vector 4 Occ=2.000000D+00 E=-1.000793D+01 Symmetry=ag - MO Center= 1.9D-16, 8.3D-16, -1.3D-32, r^2= 8.6D+00 + MO Center= -2.1D-17, -3.6D-16, 2.5D-32, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.699695 11 C s 40 0.699695 12 C s 36 0.030762 11 C s 41 0.030762 12 C s 1 0.027650 1 C s 6 0.027650 2 C s - + Vector 5 Occ=2.000000D+00 E=-1.000689D+01 Symmetry=ag - MO Center= 2.4D-17, -2.1D-17, -1.2D-31, r^2= 2.0D+00 + MO Center= -1.0D-17, 2.0D-17, 6.6D-32, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 21 0.546480 5 C s 26 0.546480 6 C s 11 -0.437428 3 C s 16 -0.437428 4 C s 22 0.028154 5 C s 27 0.028154 6 C s - + Vector 6 Occ=2.000000D+00 E=-1.000688D+01 Symmetry=bu - MO Center= 1.2D-17, 1.4D-16, -2.4D-32, r^2= 2.0D+00 + MO Center= -7.0D-17, 1.8D-17, 6.0D-32, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.555962 5 C s 26 -0.555962 6 C s - 11 -0.424212 3 C s 16 0.424212 4 C s + 21 0.555963 5 C s 26 -0.555963 6 C s + 11 -0.424211 3 C s 16 0.424211 4 C s 1 -0.028679 1 C s 6 0.028679 2 C s 22 0.028654 5 C s 27 -0.028654 6 C s - + Vector 7 Occ=2.000000D+00 E=-1.000624D+01 Symmetry=bu - MO Center= 4.6D-18, -1.5D-16, 9.4D-32, r^2= 2.0D+00 + MO Center= 1.5D-09, -4.4D-11, -6.9D-15, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.556933 3 C s 16 -0.556933 4 C s - 21 0.425523 5 C s 26 -0.425523 6 C s - + 11 0.556934 3 C s 16 -0.556934 4 C s + 21 0.425522 5 C s 26 -0.425522 6 C s + Vector 8 Occ=2.000000D+00 E=-1.000609D+01 Symmetry=ag - MO Center= -3.5D-14, 2.4D-13, 4.2D-15, r^2= 2.0D+00 + MO Center= -1.5D-09, 4.4D-11, -4.8D-15, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.546589 3 C s 16 0.546589 4 C s - 21 0.437662 5 C s 26 0.437662 6 C s + 11 0.546590 3 C s 16 0.546590 4 C s + 21 0.437661 5 C s 26 0.437661 6 C s 1 0.029445 1 C s 6 0.029445 2 C s - + Vector 9 Occ=2.000000D+00 E=-9.992164D+00 Symmetry=bu - MO Center= 2.0D-14, -2.3D-13, 2.2D-26, r^2= 1.5D+01 + MO Center= 4.4D-15, -5.2D-14, -5.5D-27, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700479 15 C s 52 -0.700479 16 C s 48 0.030860 15 C s 53 -0.030860 16 C s - + Vector 10 Occ=2.000000D+00 E=-9.992164D+00 Symmetry=ag - MO Center= -1.2D-16, 1.2D-15, 1.2D-31, r^2= 1.5D+01 + MO Center= 2.0D-15, 7.9D-16, -3.3D-28, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700478 15 C s 52 0.700478 16 C s 48 0.030860 15 C s 53 0.030860 16 C s - + Vector 11 Occ=2.000000D+00 E=-8.094663D-01 Symmetry=ag - MO Center= -1.4D-09, -5.8D-09, 3.3D-11, r^2= 3.0D+00 + MO Center= -1.0D-09, -2.6D-09, -6.5D-10, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.274703 1 C s 7 0.274703 2 C s @@ -714,9 +701,9 @@ 22 0.246688 5 C s 27 0.246688 6 C s 36 0.127807 11 C s 41 0.127807 12 C s 1 -0.107859 1 C s 6 -0.107859 2 C s - + Vector 12 Occ=2.000000D+00 E=-7.539346D-01 Symmetry=bu - MO Center= 1.7D-09, 1.1D-08, 9.9D-11, r^2= 7.8D+00 + MO Center= 3.6D-10, 3.1D-09, 5.0D-12, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 -0.297168 11 C s 41 0.297168 12 C s @@ -724,9 +711,9 @@ 48 -0.209313 15 C s 53 0.209313 16 C s 35 0.113817 11 C s 40 -0.113817 12 C s 22 -0.112556 5 C s 27 0.112556 6 C s - + Vector 13 Occ=2.000000D+00 E=-7.178615D-01 Symmetry=ag - MO Center= -8.1D-11, -4.8D-09, 1.1D-12, r^2= 1.1D+01 + MO Center= 7.1D-11, -2.2D-10, 1.1D-11, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.314817 11 C s 41 0.314817 12 C s @@ -734,9 +721,9 @@ 12 -0.121456 3 C s 17 -0.121456 4 C s 35 -0.119239 11 C s 40 -0.119239 12 C s 47 -0.117464 15 C s 52 -0.117464 16 C s - + Vector 14 Occ=2.000000D+00 E=-6.999225D-01 Symmetry=bu - MO Center= 4.7D-10, -1.1D-10, -1.3D-13, r^2= 3.2D+00 + MO Center= 5.1D-10, -1.4D-10, 6.8D-13, r^2= 3.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.357134 3 C s 17 -0.357134 4 C s @@ -744,9 +731,9 @@ 11 -0.132324 3 C s 16 0.132324 4 C s 3 0.124986 1 C px 8 0.124986 2 C px 21 -0.120093 5 C s 26 0.120093 6 C s - + Vector 15 Occ=2.000000D+00 E=-6.673151D-01 Symmetry=bu - MO Center= -7.6D-10, -5.8D-09, -3.0D-11, r^2= 9.1D+00 + MO Center= -2.4D-09, -5.7D-10, -6.3D-10, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.299507 15 C s 53 -0.299507 16 C s @@ -754,9 +741,9 @@ 22 -0.202280 5 C s 27 0.202280 6 C s 36 0.136846 11 C s 41 -0.136846 12 C s 38 -0.129054 11 C py 43 -0.129054 12 C py - + Vector 16 Occ=2.000000D+00 E=-5.885092D-01 Symmetry=ag - MO Center= 5.3D-10, 2.8D-09, 3.4D-20, r^2= 8.4D+00 + MO Center= -3.5D-10, 1.4D-08, -4.8D-10, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.241408 15 C s 53 0.241408 16 C s @@ -764,9 +751,9 @@ 2 -0.206379 1 C s 7 -0.206379 2 C s 14 -0.160007 3 C py 19 0.160007 4 C py 36 -0.159613 11 C s 41 -0.159613 12 C s - + Vector 17 Occ=2.000000D+00 E=-5.591515D-01 Symmetry=ag - MO Center= 2.0D-09, -4.9D-10, -1.1D-11, r^2= 5.1D+00 + MO Center= -2.3D-09, -1.4D-08, -2.5D-10, r^2= 5.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.326033 3 C s 17 0.326033 4 C s @@ -774,9 +761,9 @@ 22 -0.170746 5 C s 24 0.170444 5 C py 27 -0.170746 6 C s 29 -0.170444 6 C py 31 0.169234 7 H s 32 0.169234 8 H s - + Vector 18 Occ=2.000000D+00 E=-5.314211D-01 Symmetry=bu - MO Center= -1.5D-09, -2.6D-09, 1.6D-13, r^2= 1.2D+01 + MO Center= 3.8D-09, -4.4D-09, 9.6D-19, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.302767 11 C s 41 -0.302767 12 C s @@ -784,9 +771,9 @@ 45 0.170519 13 H s 46 -0.170519 14 H s 57 -0.160626 17 H s 58 0.160626 18 H s 12 0.154466 3 C s 17 -0.154466 4 C s - + Vector 19 Occ=2.000000D+00 E=-5.099374D-01 Symmetry=ag - MO Center= -6.6D-10, 6.2D-10, 1.0D-20, r^2= 7.5D+00 + MO Center= -4.9D-11, 5.5D-12, 3.1D-12, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.201895 5 C px 28 -0.201895 6 C px @@ -794,9 +781,9 @@ 36 0.180760 11 C s 41 0.180760 12 C s 33 0.169279 9 H s 34 0.169279 10 H s 22 0.166022 5 C s 27 0.166022 6 C s - + Vector 20 Occ=2.000000D+00 E=-4.575995D-01 Symmetry=ag - MO Center= 1.3D-09, 1.6D-09, -5.7D-14, r^2= 9.5D+00 + MO Center= 4.8D-10, 7.2D-10, -8.6D-14, r^2= 9.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.212730 15 C px 54 -0.212730 16 C px @@ -804,9 +791,9 @@ 57 0.179111 17 H s 58 0.179111 18 H s 45 -0.153095 13 H s 46 -0.153095 14 H s 14 0.141384 3 C py 19 -0.141384 4 C py - + Vector 21 Occ=2.000000D+00 E=-4.391975D-01 Symmetry=bu - MO Center= 1.1D-09, 3.9D-09, -1.4D-13, r^2= 1.0D+01 + MO Center= 2.2D-09, 3.1D-09, -8.5D-14, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.219233 11 C px 42 0.219233 12 C px @@ -814,9 +801,9 @@ 14 0.184960 3 C py 19 0.184960 4 C py 59 -0.178126 19 H s 60 0.178126 20 H s 45 -0.155496 13 H s 46 0.155496 14 H s - + Vector 22 Occ=2.000000D+00 E=-4.110180D-01 Symmetry=bu - MO Center= -2.4D-09, 5.3D-10, -1.9D-13, r^2= 6.8D+00 + MO Center= -1.3D-09, 2.4D-10, -1.2D-12, r^2= 6.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.235308 1 C s 7 -0.235308 2 C s @@ -824,9 +811,9 @@ 31 -0.226657 7 H s 32 0.226657 8 H s 13 -0.222260 3 C px 18 -0.222260 4 C px 24 -0.177973 5 C py 29 -0.177973 6 C py - + Vector 23 Occ=2.000000D+00 E=-3.976932D-01 Symmetry=bu - MO Center= 2.0D-11, -6.6D-11, -2.1D-13, r^2= 8.7D+00 + MO Center= -3.3D-10, -5.7D-11, -4.0D-21, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.251236 5 C px 28 0.251236 6 C px @@ -834,9 +821,9 @@ 3 -0.220826 1 C px 8 -0.220826 2 C px 57 0.215415 17 H s 58 -0.215415 18 H s 38 0.181486 11 C py 43 0.181486 12 C py - + Vector 24 Occ=2.000000D+00 E=-3.959386D-01 Symmetry=ag - MO Center= 7.6D-11, -1.7D-10, 3.7D-13, r^2= 1.5D+01 + MO Center= 1.4D-10, 5.1D-10, 3.9D-22, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.338998 15 C py 55 -0.338998 16 C py @@ -844,9 +831,9 @@ 37 0.251492 11 C px 42 -0.251492 12 C px 45 -0.145063 13 H s 46 -0.145063 14 H s 24 0.136713 5 C py 29 -0.136713 6 C py - + Vector 25 Occ=2.000000D+00 E=-3.744295D-01 Symmetry=bu - MO Center= -3.6D-10, -2.8D-10, 8.8D-14, r^2= 4.4D+00 + MO Center= 4.5D-10, 5.0D-10, -4.0D-13, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 13 0.307586 3 C px 18 0.307586 4 C px @@ -854,9 +841,9 @@ 24 -0.226085 5 C py 29 -0.226085 6 C py 33 0.218183 9 H s 34 -0.218183 10 H s 23 0.188064 5 C px 28 0.188064 6 C px - + Vector 26 Occ=2.000000D+00 E=-3.509365D-01 Symmetry=bu - MO Center= 3.0D-10, -1.2D-10, -9.6D-14, r^2= 9.0D+00 + MO Center= 2.2D-10, -3.3D-11, 5.0D-13, r^2= 9.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 -0.245677 15 C py 55 -0.245677 16 C py @@ -864,9 +851,9 @@ 37 -0.201679 11 C px 42 -0.201679 12 C px 24 -0.193259 5 C py 29 -0.193259 6 C py 38 0.187744 11 C py 43 0.187744 12 C py - + Vector 27 Occ=2.000000D+00 E=-3.470152D-01 Symmetry=ag - MO Center= -1.4D-10, -2.2D-10, 3.4D-21, r^2= 1.2D+01 + MO Center= -3.0D-10, -4.3D-10, 1.4D-12, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.295189 15 C px 54 -0.295189 16 C px @@ -874,9 +861,9 @@ 37 -0.208878 11 C px 42 0.208878 12 C px 45 0.200234 13 H s 46 0.200234 14 H s 31 -0.156471 7 H s 32 -0.156471 8 H s - + Vector 28 Occ=2.000000D+00 E=-3.244703D-01 Symmetry=au - MO Center= 4.0D-17, 5.7D-17, -3.3D-11, r^2= 3.6D+00 + MO Center= -1.4D-10, -1.9D-09, 9.7D-10, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.337608 1 C pz 10 0.337608 2 C pz @@ -884,9 +871,9 @@ 25 0.297169 5 C pz 30 0.297169 6 C pz 39 0.173946 11 C pz 44 0.173946 12 C pz 51 0.092442 15 C pz 56 0.092442 16 C pz - + Vector 29 Occ=2.000000D+00 E=-3.110643D-01 Symmetry=bu - MO Center= -9.4D-12, -3.0D-11, 1.5D-21, r^2= 1.2D+01 + MO Center= -1.3D-09, 2.4D-08, -4.7D-11, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.259101 13 H s 46 -0.259101 14 H s @@ -894,9 +881,9 @@ 57 0.231029 17 H s 58 -0.231029 18 H s 37 -0.217250 11 C px 42 -0.217250 12 C px 59 -0.212335 19 H s 60 0.212335 20 H s - + Vector 30 Occ=2.000000D+00 E=-2.929832D-01 Symmetry=ag - MO Center= -2.2D-11, 8.8D-11, -8.4D-14, r^2= 6.1D+00 + MO Center= -9.4D-11, -1.5D-09, -8.6D-11, r^2= 6.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 -0.278184 3 C py 19 0.278184 4 C py @@ -904,9 +891,9 @@ 38 0.248140 11 C py 43 -0.248140 12 C py 33 -0.240413 9 H s 34 -0.240413 10 H s 24 0.234450 5 C py 29 -0.234450 6 C py - + Vector 31 Occ=2.000000D+00 E=-2.874967D-01 Symmetry=ag - MO Center= -1.2D-11, -5.0D-12, 2.5D-22, r^2= 6.2D+00 + MO Center= 1.2D-09, -2.2D-08, -3.9D-11, r^2= 6.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.295853 1 C px 8 -0.295853 2 C px @@ -914,9 +901,9 @@ 31 -0.258071 7 H s 32 -0.258071 8 H s 13 -0.222114 3 C px 18 0.222114 4 C px 45 -0.182740 13 H s 46 -0.182740 14 H s - + Vector 32 Occ=2.000000D+00 E=-2.634558D-01 Symmetry=bg - MO Center= -1.5D-10, -4.9D-09, -1.3D-10, r^2= 7.8D+00 + MO Center= 2.9D-10, 3.7D-09, 2.4D-10, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.376480 11 C pz 44 0.376480 12 C pz @@ -924,25 +911,25 @@ 51 -0.271399 15 C pz 56 0.271399 16 C pz 15 0.131647 3 C pz 20 -0.131647 4 C pz 25 -0.132107 5 C pz 30 0.132107 6 C pz - + Vector 33 Occ=2.000000D+00 E=-2.123364D-01 Symmetry=au - MO Center= 1.3D-10, 5.6D-10, 3.2D-11, r^2= 1.1D+01 + MO Center= -1.7D-11, -2.1D-09, 2.3D-10, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.417961 15 C pz 56 0.417961 16 C pz 39 0.413781 11 C pz 44 0.413781 12 C pz 15 -0.179205 3 C pz 20 -0.179205 4 C pz 25 -0.176633 5 C pz 30 -0.176633 6 C pz - + Vector 34 Occ=2.000000D+00 E=-1.951683D-01 Symmetry=bg - MO Center= 2.7D-11, -7.3D-11, 2.9D-11, r^2= 2.7D+00 + MO Center= -2.0D-10, -2.2D-10, 8.3D-11, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.463626 3 C pz 20 -0.463626 4 C pz 25 0.457537 5 C pz 30 -0.457537 6 C pz - + Vector 35 Occ=2.000000D+00 E=-1.529966D-01 Symmetry=bg - MO Center= -4.3D-11, 4.6D-09, 5.8D-11, r^2= 8.1D+00 + MO Center= 1.2D-10, 3.4D-10, 1.9D-10, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.397372 15 C pz 56 -0.397372 16 C pz @@ -950,9 +937,9 @@ 25 -0.230744 5 C pz 30 0.230744 6 C pz 39 0.223675 11 C pz 44 -0.223675 12 C pz 15 0.215068 3 C pz 20 -0.215068 4 C pz - + Vector 36 Occ=0.000000D+00 E= 3.750915D-02 Symmetry=au - MO Center= -7.3D-11, -1.9D-09, -1.8D-10, r^2= 8.0D+00 + MO Center= -4.0D-11, 4.4D-11, 7.4D-10, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.449614 15 C pz 56 -0.449614 16 C pz @@ -960,26 +947,26 @@ 25 -0.277553 5 C pz 30 -0.277553 6 C pz 39 0.256133 11 C pz 44 0.256133 12 C pz 15 -0.232265 3 C pz 20 -0.232265 4 C pz - + Vector 37 Occ=0.000000D+00 E= 9.011731D-02 Symmetry=au - MO Center= -8.0D-11, 7.5D-11, -1.7D-12, r^2= 2.7D+00 + MO Center= -6.9D-11, 2.6D-10, -4.0D-11, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.582692 3 C pz 20 0.582692 4 C pz 25 -0.553237 5 C pz 30 -0.553237 6 C pz 5 -0.031922 1 C pz 10 -0.031922 2 C pz - + Vector 38 Occ=0.000000D+00 E= 1.107279D-01 Symmetry=bg - MO Center= 8.0D-11, 1.6D-09, -5.6D-12, r^2= 1.1D+01 + MO Center= 5.2D-11, -4.3D-11, -1.1D-11, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.522167 11 C pz 44 -0.522167 12 C pz 51 -0.523103 15 C pz 56 0.523103 16 C pz 15 0.240693 3 C pz 20 -0.240693 4 C pz 25 -0.232246 5 C pz 30 0.232246 6 C pz - + Vector 39 Occ=0.000000D+00 E= 1.822016D-01 Symmetry=au - MO Center= -1.4D-10, -2.2D-09, 7.7D-11, r^2= 7.9D+00 + MO Center= 1.1D-11, -2.6D-12, -3.3D-11, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.529134 11 C pz 44 -0.529134 12 C pz @@ -987,9 +974,9 @@ 51 0.379694 15 C pz 56 0.379694 16 C pz 25 -0.199198 5 C pz 30 -0.199198 6 C pz 15 -0.166739 3 C pz 20 -0.166739 4 C pz - + Vector 40 Occ=0.000000D+00 E= 2.723015D-01 Symmetry=bg - MO Center= 2.4D-10, 2.2D-09, 1.5D-10, r^2= 3.8D+00 + MO Center= -1.1D-11, 5.3D-12, -8.8D-10, r^2= 3.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.543477 1 C pz 10 -0.543477 2 C pz @@ -997,9 +984,9 @@ 15 -0.464184 3 C pz 20 0.464184 4 C pz 39 0.287732 11 C pz 44 -0.287732 12 C pz 51 -0.156154 15 C pz 56 0.156154 16 C pz - + Vector 41 Occ=0.000000D+00 E= 3.324841D-01 Symmetry=ag - MO Center= 1.1D-12, -6.3D-12, 3.3D-11, r^2= 8.8D+00 + MO Center= -6.0D-10, -7.6D-10, -2.1D-10, r^2= 8.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 33 -0.423792 9 H s 34 -0.423792 10 H s @@ -1007,9 +994,9 @@ 2 0.401565 1 C s 7 0.401565 2 C s 59 -0.358543 19 H s 60 -0.358543 20 H s 38 -0.338104 11 C py 43 0.338104 12 C py - + Vector 42 Occ=0.000000D+00 E= 3.406448D-01 Symmetry=bu - MO Center= 4.1D-12, -2.9D-10, 1.7D-11, r^2= 1.0D+01 + MO Center= 6.1D-10, 6.7D-12, -5.6D-10, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.433824 13 H s 46 -0.433824 14 H s @@ -1017,9 +1004,9 @@ 37 0.344558 11 C px 42 0.344558 12 C px 31 -0.321888 7 H s 32 0.321888 8 H s 57 -0.323132 17 H s 58 0.323132 18 H s - + Vector 43 Occ=0.000000D+00 E= 3.795213D-01 Symmetry=bu - MO Center= 8.5D-12, -1.6D-11, 1.4D-10, r^2= 7.8D+00 + MO Center= 8.3D-11, -1.7D-10, -1.1D-10, r^2= 7.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.546135 11 C s 41 -0.546135 12 C s @@ -1027,9 +1014,9 @@ 33 0.405552 9 H s 34 -0.405552 10 H s 59 0.351688 19 H s 60 -0.351688 20 H s 2 0.338399 1 C s 7 -0.338399 2 C s - + Vector 44 Occ=0.000000D+00 E= 3.812886D-01 Symmetry=ag - MO Center= -8.9D-11, 2.1D-10, 2.6D-11, r^2= 1.2D+01 + MO Center= -1.4D-10, 1.3D-09, -4.8D-11, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.579606 13 H s 46 0.579606 14 H s @@ -1037,9 +1024,9 @@ 57 -0.391437 17 H s 58 -0.391437 18 H s 36 -0.382165 11 C s 41 -0.382165 12 C s 37 0.338368 11 C px 42 -0.338368 12 C px - + Vector 45 Occ=0.000000D+00 E= 4.103439D-01 Symmetry=ag - MO Center= 1.2D-08, -3.4D-08, 8.8D-11, r^2= 1.1D+01 + MO Center= -8.7D-09, 2.5D-08, -2.1D-10, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.647345 15 C s 53 0.647345 16 C s @@ -1047,9 +1034,9 @@ 57 -0.513320 17 H s 58 -0.513320 18 H s 12 -0.443645 3 C s 17 -0.443645 4 C s 59 -0.320784 19 H s 60 -0.320784 20 H s - + Vector 46 Occ=0.000000D+00 E= 4.112335D-01 Symmetry=bu - MO Center= -1.2D-08, 3.4D-08, -3.7D-10, r^2= 1.1D+01 + MO Center= 8.8D-09, -2.5D-08, -1.7D-10, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 22 0.613161 5 C s 27 -0.613161 6 C s @@ -1057,9 +1044,9 @@ 2 0.476211 1 C s 7 -0.476211 2 C s 57 -0.447801 17 H s 58 0.447801 18 H s 12 -0.440648 3 C s 17 0.440648 4 C s - + Vector 47 Occ=0.000000D+00 E= 4.258029D-01 Symmetry=bu - MO Center= 2.7D-10, 1.1D-09, -6.9D-11, r^2= 9.2D+00 + MO Center= -6.1D-10, -7.0D-10, -8.7D-11, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 31 0.603123 7 H s 32 -0.603123 8 H s @@ -1067,19 +1054,19 @@ 45 0.437132 13 H s 46 -0.437132 14 H s 12 -0.368693 3 C s 17 0.368693 4 C s 59 0.337686 19 H s 60 -0.337686 20 H s - + Vector 48 Occ=0.000000D+00 E= 4.393602D-01 Symmetry=ag - MO Center= -1.1D-10, -5.0D-11, -1.0D-10, r^2= 7.5D+00 + MO Center= -1.3D-10, -3.7D-12, -3.9D-11, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.782293 1 C s 7 0.782293 2 C s 36 -0.556781 11 C s 41 -0.556781 12 C s 12 -0.499630 3 C s 17 -0.499630 4 C s - 22 -0.411591 5 C s 27 -0.411591 6 C s + 22 -0.411590 5 C s 27 -0.411590 6 C s 48 0.409908 15 C s 53 0.409908 16 C s - + Vector 49 Occ=0.000000D+00 E= 4.537204D-01 Symmetry=bu - MO Center= -2.3D-11, 2.4D-10, 1.3D-11, r^2= 1.2D+01 + MO Center= 6.0D-10, -3.0D-10, 7.2D-10, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.706729 15 C s 53 -0.706729 16 C s @@ -1087,9 +1074,9 @@ 33 0.477108 9 H s 34 -0.477108 10 H s 36 -0.428984 11 C s 41 0.428984 12 C s 22 -0.407156 5 C s 27 0.407156 6 C s - + Vector 50 Occ=0.000000D+00 E= 4.783349D-01 Symmetry=ag - MO Center= 1.0D-10, -2.0D-10, 3.5D-11, r^2= 1.1D+01 + MO Center= 2.7D-10, 1.8D-10, 2.5D-10, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.706236 3 C s 17 0.706236 4 C s @@ -1097,9 +1084,9 @@ 59 -0.475172 19 H s 60 -0.475172 20 H s 48 0.415029 15 C s 53 0.415029 16 C s 50 -0.382611 15 C py 55 0.382611 16 C py - + Vector 51 Occ=0.000000D+00 E= 5.255624D-01 Symmetry=ag - MO Center= -5.4D-11, -2.8D-10, -2.4D-11, r^2= 6.5D+00 + MO Center= -6.0D-11, 3.4D-10, -6.7D-11, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.601873 1 C py 9 -0.601873 2 C py @@ -1107,9 +1094,9 @@ 13 -0.452504 3 C px 18 0.452504 4 C px 2 -0.448703 1 C s 7 -0.448703 2 C s 49 -0.342028 15 C px 54 0.342028 16 C px - + Vector 52 Occ=0.000000D+00 E= 5.463497D-01 Symmetry=bu - MO Center= -1.0D-10, -6.5D-10, 4.2D-11, r^2= 7.7D+00 + MO Center= -1.4D-10, 1.3D-10, 7.6D-10, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.647791 3 C s 17 -0.647791 4 C s @@ -1117,9 +1104,9 @@ 50 0.483445 15 C py 55 0.483445 16 C py 24 -0.478218 5 C py 29 -0.478218 6 C py 59 0.356012 19 H s 60 -0.356012 20 H s - + Vector 53 Occ=0.000000D+00 E= 5.764358D-01 Symmetry=ag - MO Center= 6.0D-11, 2.3D-10, 1.1D-11, r^2= 5.4D+00 + MO Center= 9.4D-11, -8.2D-11, 3.4D-12, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 13 0.537122 3 C px 18 -0.537122 4 C px @@ -1127,9 +1114,9 @@ 33 0.519101 9 H s 34 0.519101 10 H s 31 -0.448305 7 H s 32 -0.448305 8 H s 24 0.400192 5 C py 29 -0.400192 6 C py - + Vector 54 Occ=0.000000D+00 E= 5.984386D-01 Symmetry=bu - MO Center= -1.0D-10, -5.3D-11, -4.1D-11, r^2= 4.8D+00 + MO Center= 2.9D-10, -3.5D-10, 2.7D-10, r^2= 4.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 0.723027 3 C py 19 0.723027 4 C py @@ -1137,9 +1124,9 @@ 36 -0.415409 11 C s 41 0.415409 12 C s 2 -0.405908 1 C s 7 0.405908 2 C s 24 0.394225 5 C py 29 0.394225 6 C py - + Vector 55 Occ=0.000000D+00 E= 6.248977D-01 Symmetry=bu - MO Center= 7.5D-13, 2.3D-10, 2.3D-11, r^2= 1.1D+01 + MO Center= -4.7D-11, -8.8D-11, -5.8D-11, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.608531 1 C s 7 -0.608531 2 C s @@ -1147,9 +1134,9 @@ 38 0.480656 11 C py 43 0.480656 12 C py 23 -0.365997 5 C px 28 -0.365997 6 C px 57 0.363287 17 H s 58 -0.363287 18 H s - + Vector 56 Occ=0.000000D+00 E= 6.398348D-01 Symmetry=ag - MO Center= 2.4D-11, 4.9D-10, 1.4D-11, r^2= 9.4D+00 + MO Center= -2.2D-10, 5.2D-11, -1.2D-11, r^2= 9.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.549269 11 C px 42 -0.549269 12 C px @@ -1157,9 +1144,9 @@ 14 0.383484 3 C py 19 -0.383484 4 C py 4 -0.364568 1 C py 9 0.364568 2 C py 59 -0.330753 19 H s 60 -0.330753 20 H s - + Vector 57 Occ=0.000000D+00 E= 6.828364D-01 Symmetry=ag - MO Center= 1.3D-11, -3.4D-10, 2.5D-12, r^2= 9.3D+00 + MO Center= -6.1D-11, -3.8D-10, -1.1D-11, r^2= 9.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 38 0.663091 11 C py 43 -0.663091 12 C py @@ -1167,9 +1154,9 @@ 24 -0.449233 5 C py 29 0.449233 6 C py 14 -0.392087 3 C py 19 0.392087 4 C py 4 -0.381675 1 C py 9 0.381675 2 C py - + Vector 58 Occ=0.000000D+00 E= 7.173582D-01 Symmetry=bu - MO Center= 2.0D-09, 2.3D-08, 3.7D-11, r^2= 9.6D+00 + MO Center= -2.2D-11, 2.7D-10, 1.2D-10, r^2= 9.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.608018 11 C px 42 0.608018 12 C px @@ -1177,9 +1164,9 @@ 53 0.538021 16 C s 55 -0.540479 16 C py 36 0.466541 11 C s 38 -0.464879 11 C py 41 -0.466541 12 C s 43 -0.464879 12 C py - + Vector 59 Occ=0.000000D+00 E= 7.790413D-01 Symmetry=ag - MO Center= -2.0D-09, -2.4D-08, 4.4D-12, r^2= 5.4D+00 + MO Center= 1.8D-11, 1.0D-09, -2.8D-11, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.702431 1 C px 8 -0.702431 2 C px @@ -1187,9 +1174,9 @@ 23 -0.435988 5 C px 28 0.435988 6 C px 37 0.429836 11 C px 42 -0.429836 12 C px 24 -0.411035 5 C py 29 0.411035 6 C py - + Vector 60 Occ=0.000000D+00 E= 7.942613D-01 Symmetry=bu - MO Center= 4.1D-12, 2.8D-10, 3.8D-11, r^2= 3.4D+00 + MO Center= 8.7D-11, -9.5D-10, 1.6D-10, r^2= 3.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.657696 1 C py 9 0.657696 2 C py @@ -1197,7 +1184,7 @@ 23 0.496519 5 C px 28 0.496519 6 C px 22 -0.413799 5 C s 27 0.413799 6 C s 24 -0.395898 5 C py 29 -0.395898 6 C py - + center of mass -------------- @@ -1205,35 +1192,35 @@ moments of inertia (a.u.) ------------------ - 2631.731379210404 0.000000000000 0.000000000000 - 0.000000000000 390.819001468288 0.000000000000 - 0.000000000000 0.000000000000 3022.550380678692 - + 2631.731379210398 -0.000000000000 0.000000000000 + -0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678686 + Multipole analysis of the density --------------------------------- - + L x y z total alpha beta nuclear - - - - ----- ----- ---- ------- 0 0 0 0 -0.000000 -35.000000 -35.000000 70.000000 - - 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 - 1 0 1 0 -0.000000 -0.000000 -0.000000 0.000000 - 1 0 0 1 -0.000000 -0.000000 -0.000000 0.000000 - + + 1 1 0 0 0.000000 0.000000 0.000000 0.000000 + 1 0 1 0 0.000000 0.000000 0.000000 0.000000 + 1 0 0 1 0.000000 0.000000 0.000000 0.000000 + 2 2 0 0 -37.347178 -141.071525 -141.071525 244.795872 - 2 1 1 0 0.066532 2.848780 2.848780 -5.631027 + 2 1 1 0 0.066531 2.848779 2.848779 -5.631027 2 1 0 1 0.000000 0.000000 0.000000 0.000000 - 2 0 2 0 -37.714771 -767.339036 -767.339036 1496.963300 - 2 0 1 1 -0.000000 -0.000000 -0.000000 0.000000 + 2 0 2 0 -37.714771 -767.339035 -767.339035 1496.963300 + 2 0 1 1 0.000000 0.000000 0.000000 0.000000 2 0 0 2 -43.587344 -21.793672 -21.793672 0.000000 - + NWChem TDDFT Module ------------------- - - + + Divinylbenzene in STO-3G basis set - - + + General Information ------------------- No. of orbitals : 120 @@ -1248,7 +1235,7 @@ Use of symmetry is : off Symmetry adaption is : on Schwarz screening : 0.10D-07 - + XC Information -------------- B3LYP Method XC Potential @@ -1257,7 +1244,7 @@ Becke 1988 Exchange Functional 0.72 non-local Lee-Yang-Parr Correlation Functional 0.81 VWN I RPA Correlation Functional 0.19 local - + TDDFT Information ----------------- Calculation type : TDDFT @@ -1273,16 +1260,16 @@ Symmetry restriction : off Algorithm : Optimal Davidson threshold : 0.10D-03 - + Memory Information ------------------ - Available GA space size is 268431856 doubles - Available MA space size is 214803492 doubles + Available GA space size is 1073738224 doubles + Available MA space size is 268432132 doubles Length of a trial vector is 875 Algorithm : Incore multiple tensor contraction Estimated peak GA usage is 17667150 doubles Estimated peak MA usage is 18000 doubles - + 5 smallest eigenvalue differences (eV) -------------------------------------------------------- No. Spin Occ Vir Irrep E(Occ) E(Vir) E(Diff) @@ -1299,110 +1286,116 @@ Iter NTrls NConv DeltaV DeltaE Time ---- ------ ------ --------- --------- --------- - 1 5 0 0.33E+00 0.10+100 9.0 - 2 15 0 0.17E+00 0.36E-01 19.7 - 3 25 0 0.46E-01 0.11E-01 20.5 - 4 35 0 0.27E-01 0.18E-02 20.5 - 5 45 0 0.73E-02 0.10E-02 20.5 - 6 55 3 0.95E-03 0.45E-04 20.5 - 7 59 3 0.30E-03 0.55E-06 10.1 - 8 63 5 0.89E-04 0.18E-07 10.1 + 1 5 0 0.33E+00 0.10+100 7.4 + 2 15 0 0.17E+00 0.36E-01 14.5 + 3 25 0 0.46E-01 0.11E-01 14.9 + 4 35 0 0.27E-01 0.18E-02 15.0 + 5 45 0 0.73E-02 0.10E-02 15.0 + 6 55 3 0.95E-03 0.45E-04 14.9 + 7 59 3 0.30E-03 0.55E-06 7.4 + 8 63 5 0.89E-04 0.18E-07 7.4 ---- ------ ------ --------- --------- --------- Convergence criterion met - - Ground state ag -382.308240766357 a.u. - + + Ground state ag -382.308240767193 a.u. + ---------------------------------------------------------------------------- Root 1 singlet bu 0.196071264 a.u. 5.3354 eV ---------------------------------------------------------------------------- - Transition Moments X -0.13039 Y 1.10260 Z 0.00000 - Transition Moments XX 0.00000 XY 0.00000 XZ 0.00000 - Transition Moments YY 0.00000 YZ 0.00000 ZZ -0.00000 - Dipole Oscillator Strength 0.1611341267 + Transition Moments X 0.13039 Y -1.10260 Z -0.00000 + Transition Moments XX 0.00000 XY -0.00000 XZ 0.00000 + Transition Moments YY 0.00000 YZ -0.00000 ZZ 0.00000 + Dipole Oscillator Strength 0.1611342389 Electric Quadrupole 0.0000000000 Magnetic Dipole 0.0000000000 - Total Oscillator Strength 0.1611341267 - - Occ. 32 bg --- Virt. 37 au -0.06291 X - Occ. 34 bg --- Virt. 36 au -0.68291 X - Occ. 34 bg --- Virt. 37 au 0.05094 X - Occ. 35 bg --- Virt. 36 au -0.42702 X - Occ. 35 bg --- Virt. 36 au 0.05129 Y - Occ. 35 bg --- Virt. 37 au -0.58684 X + Total Oscillator Strength 0.1611342389 + + Occ. 32 bg --- Virt. 37 au 0.06291 X + Occ. 34 bg --- Virt. 36 au 0.68291 X + Occ. 34 bg --- Virt. 37 au -0.05094 X + Occ. 35 bg --- Virt. 36 au 0.42702 X + Occ. 35 bg --- Virt. 36 au -0.05129 Y + Occ. 35 bg --- Virt. 37 au 0.58684 X ---------------------------------------------------------------------------- - Root 2 singlet bu 0.197401492 a.u. 5.3716 eV + Root 2 singlet bu 0.197401493 a.u. 5.3716 eV ---------------------------------------------------------------------------- - Transition Moments X -0.01643 Y 2.27751 Z -0.00000 - Transition Moments XX -0.00000 XY -0.00000 XZ 0.00000 - Transition Moments YY 0.00000 YZ -0.00000 ZZ 0.00000 - Dipole Oscillator Strength 0.6826581795 + Transition Moments X 0.01643 Y -2.27751 Z 0.00000 + Transition Moments XX 0.00000 XY -0.00000 XZ -0.00000 + Transition Moments YY -0.00000 YZ -0.00000 ZZ 0.00000 + Dipole Oscillator Strength 0.6826580671 Electric Quadrupole 0.0000000000 Magnetic Dipole 0.0000000000 - Total Oscillator Strength 0.6826581795 - - Occ. 33 au --- Virt. 38 bg 0.05681 X - Occ. 34 bg --- Virt. 36 au 0.35724 X - Occ. 34 bg --- Virt. 37 au 0.08539 X - Occ. 35 bg --- Virt. 36 au -0.89990 X - Occ. 35 bg --- Virt. 36 au 0.11195 Y - Occ. 35 bg --- Virt. 37 au 0.23965 X + Total Oscillator Strength 0.6826580671 + + Occ. 33 au --- Virt. 38 bg -0.05681 X + Occ. 34 bg --- Virt. 36 au -0.35724 X + Occ. 34 bg --- Virt. 37 au -0.08539 X + Occ. 35 bg --- Virt. 36 au 0.89990 X + Occ. 35 bg --- Virt. 36 au -0.11195 Y + Occ. 35 bg --- Virt. 37 au -0.23965 X ---------------------------------------------------------------------------- Root 3 singlet ag 0.228384872 a.u. 6.2147 eV ---------------------------------------------------------------------------- - Transition Moments X -0.00000 Y 0.00000 Z -0.00000 - Transition Moments XX 0.37780 XY 0.32829 XZ -0.00000 - Transition Moments YY -2.74412 YZ 0.00000 ZZ 0.01485 + Transition Moments X -0.00000 Y 0.00000 Z 0.00000 + Transition Moments XX 0.37780 XY 0.32829 XZ 0.00000 + Transition Moments YY -2.74411 YZ 0.00000 ZZ 0.01485 Dipole Oscillator Strength 0.0000000000 Electric Quadrupole 0.0000001918 Magnetic Dipole 0.0000000332 Total Oscillator Strength 0.0000002249 - + Occ. 33 au --- Virt. 36 au -0.79844 X Occ. 33 au --- Virt. 39 au -0.06557 X Occ. 35 bg --- Virt. 38 bg 0.59714 X ---------------------------------------------------------------------------- Root 4 singlet bu 0.248809285 a.u. 6.7704 eV ---------------------------------------------------------------------------- - Transition Moments X -0.95961 Y 0.41584 Z -0.00000 - Transition Moments XX -0.00000 XY -0.00000 XZ 0.00000 - Transition Moments YY 0.00000 YZ 0.00000 ZZ -0.00000 - Dipole Oscillator Strength 0.1814287067 + Transition Moments X 0.95961 Y -0.41584 Z 0.00000 + Transition Moments XX 0.00000 XY -0.00000 XZ -0.00000 + Transition Moments YY -0.00000 YZ -0.00000 ZZ 0.00000 + Dipole Oscillator Strength 0.1814287084 Electric Quadrupole 0.0000000000 Magnetic Dipole 0.0000000000 - Total Oscillator Strength 0.1814287067 - - Occ. 32 bg --- Virt. 37 au -0.20772 X - Occ. 34 bg --- Virt. 36 au -0.60664 X - Occ. 34 bg --- Virt. 36 au 0.07805 Y - Occ. 34 bg --- Virt. 39 au 0.16616 X - Occ. 35 bg --- Virt. 37 au 0.75018 X - Occ. 35 bg --- Virt. 37 au -0.07487 Y + Total Oscillator Strength 0.1814287084 + + Occ. 32 bg --- Virt. 37 au 0.20772 X + Occ. 34 bg --- Virt. 36 au 0.60664 X + Occ. 34 bg --- Virt. 36 au -0.07805 Y + Occ. 34 bg --- Virt. 39 au -0.16616 X + Occ. 35 bg --- Virt. 37 au -0.75018 X + Occ. 35 bg --- Virt. 37 au 0.07487 Y ---------------------------------------------------------------------------- Root 5 singlet ag 0.272216910 a.u. 7.4074 eV ---------------------------------------------------------------------------- - Transition Moments X -0.00000 Y 0.00000 Z -0.00000 - Transition Moments XX -0.68297 XY -0.78041 XZ -0.00000 - Transition Moments YY 6.45311 YZ -0.00000 ZZ 0.00806 + Transition Moments X 0.00000 Y 0.00000 Z -0.00000 + Transition Moments XX 0.68297 XY 0.78041 XZ -0.00000 + Transition Moments YY -6.45311 YZ -0.00000 ZZ -0.00806 Dipole Oscillator Strength 0.0000000000 Electric Quadrupole 0.0000017293 Magnetic Dipole 0.0000007104 Total Oscillator Strength 0.0000024397 - - Occ. 32 bg --- Virt. 38 bg 0.06275 X - Occ. 33 au --- Virt. 36 au 0.22049 X - Occ. 33 au --- Virt. 37 au 0.80456 X - Occ. 34 bg --- Virt. 38 bg 0.45998 X - Occ. 35 bg --- Virt. 38 bg 0.29319 X - + + Occ. 32 bg --- Virt. 38 bg -0.06275 X + Occ. 33 au --- Virt. 36 au -0.22049 X + Occ. 33 au --- Virt. 37 au -0.80456 X + Occ. 34 bg --- Virt. 38 bg -0.45998 X + Occ. 35 bg --- Virt. 38 bg -0.29319 X + Target root = 1 Target symmetry = none - Ground state energy = -382.308240766357 - Excitation energy = 0.196071263856 - Excited state energy = -382.112169502501 - - stored tddft:energy -382.11216950250122 - - Task times cpu: 146.8s wall: 147.0s + Ground state energy = -382.308240767193 + Excitation energy = 0.196071263510 + Excited state energy = -382.112169503683 + + stored tddft:energy -382.112169503683 + + Task times cpu: 100.0s wall: 105.3s + + + NWChem Input Module + ------------------- + + Summary of allocated global arrays ----------------------------------- No active global arrays @@ -1413,70 +1406,40 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 986 986 6.38e+06 2.29e+05 4.93e+06 345 0 4439 -number of processes/call 4.27e+11 3.02e+13 -1.80e+11 0.00e+00 0.00e+00 -bytes total: 8.10e+08 1.26e+08 5.19e+08 2.88e+04 0.00e+00 3.55e+04 -bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 107258800 bytes +calls: 982 982 1.46e+06 6.62e+04 1.19e+06 345 0 1030 +number of processes/call -6.02e+11 5.78e+13 1.22e+11 0.00e+00 0.00e+00 +bytes total: 2.19e+08 3.23e+07 1.38e+08 7.20e+03 0.00e+00 8.24e+03 +bytes remote: 1.17e+08 4.49e+06 1.01e+08 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 26844720 bytes + MA_summarize_allocated_blocks: starting scan ... -heap block 'gridpts', handle 104, address 0x557af34316d8: - type of elements: double precision - number of elements: 53628255 - address of client space: 0x557af3431740 - index for client space: 10421041 - total number of bytes: 429026152 -MA_summarize_allocated_blocks: scan completed: 1 heap block, 0 stack blocks +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: allocation statistics: heap stack ---- ----- - current number of blocks 1 0 - maximum number of blocks 22 53 - current total bytes 429026152 0 - maximum total bytes 456188248 22516408 - maximum total K-bytes 456189 22517 - maximum total M-bytes 457 23 - - - NWChem Input Module - ------------------- - - - - - + current number of blocks 0 0 + maximum number of blocks 21 53 + current total bytes 0 0 + maximum total bytes 6909832 22516376 + maximum total K-bytes 6910 22517 + maximum total M-bytes 7 23 + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, - V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, - J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, - J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, - C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, - K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, - J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, - V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, - B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, - S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, - A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, - D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, - J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, - A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, - R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, - D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, - V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, - Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, - D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, - A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, - and R. J. Harrison - "NWChem: Past, present, and future - J. Chem. Phys. 152, 184102 (2020) - doi:10.1063/5.0004997 - + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -1499,4 +1462,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 146.8s wall: 147.0s + Total times cpu: 100.0s wall: 105.4s diff --git a/data/NWChem/basicNWChem7.0/dvb_un_sp_ks.out b/data/NWChem/basicNWChem7.0/dvb_un_sp_ks.out index db39dfbde..688beaebd 100644 --- a/data/NWChem/basicNWChem7.0/dvb_un_sp_ks.out +++ b/data/NWChem/basicNWChem7.0/dvb_un_sp_ks.out @@ -1,26 +1,26 @@ argument 1 = dvb_un_sp_ks.in - - - Northwest Computational Chemistry Package (NWChem) 7.0.2 + + + Northwest Computational Chemistry Package (NWChem) 7.0.0 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2020 + + Copyright (c) 1994-2019 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = osmium - program = nwchem - date = Sat Jun 4 13:33:47 2022 + hostname = smp-n17.sam.pitt.edu + program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem + date = Tue Sep 20 18:27:05 2022 - compiled = Fri_Jul_02_16:33:00_2021 - source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src - nwchem branch = 7.0.2 - nwchem revision = b9985dfa - ga revision = 5.7.2 - use scalapack = T + compiled = Wed_May_13_13:33:26_2020 + source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 + nwchem branch = 7.0.0 + nwchem revision = N/A + ga revision = 5.7.1 + use scalapack = F input = dvb_un_sp_ks.in prefix = dvb. data base = ./dvb.db status = startup - nproc = 1 + nproc = 4 time left = -1s @@ -68,17 +68,17 @@ Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + Divinylbenzene in STO-3G basis set ---------------------------------- @@ -90,15 +90,15 @@ ------ auto-z ------ - no constraints, skipping 0.0000000000000000 - no constraints, skipping 0.0000000000000000 - - + no constraints, skipping 0.000000000000000E+000 + no constraints, skipping 0.000000000000000E+000 + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 C 6.0000 0.23680554 1.41416660 0.00000000 @@ -121,13 +121,13 @@ 18 H 1.0000 -1.44522900 3.70144241 0.00000000 19 H 1.0000 0.04815351 -4.93192286 0.00000000 20 H 1.0000 -0.04815351 4.93192286 0.00000000 - + Atomic Mass ----------- - + C 12.000000 H 1.007825 - + Effective nuclear repulsion energy (a.u.) 445.9370121674 @@ -136,26 +136,26 @@ X Y Z ---------------- ---------------- ---------------- 0.0000000000 0.0000000000 0.0000000000 - + Symmetry information -------------------- - + Group name C2h Group number 21 Group order 4 No. of unique centers 10 - + Symmetry unique atoms - + 1 3 5 7 9 11 13 15 17 19 - + Z-matrix (autoz) -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value ----------- -------- ----- ----- ----- ----- ----- ---------- 1 Stretch 1 3 1.42204 @@ -228,7 +228,7 @@ 68 Torsion 4 2 11 13 0.00000 69 Torsion 4 2 11 15 180.00000 70 Torsion 4 6 1 12 180.00000 - 71 Torsion 5 2 4 6 -0.00000 + 71 Torsion 5 2 4 6 0.00000 72 Torsion 5 2 4 8 180.00000 73 Torsion 5 2 11 13 180.00000 74 Torsion 5 2 11 15 0.00000 @@ -238,18 +238,18 @@ 78 Torsion 6 1 12 14 180.00000 79 Torsion 6 1 12 16 0.00000 80 Torsion 6 4 2 11 180.00000 - 81 Torsion 7 3 1 12 -0.00000 + 81 Torsion 7 3 1 12 0.00000 82 Torsion 7 3 5 9 0.00000 - 83 Torsion 8 4 2 11 -0.00000 + 83 Torsion 8 4 2 11 0.00000 84 Torsion 8 4 6 10 0.00000 85 Torsion 9 5 2 11 0.00000 86 Torsion 10 6 1 12 0.00000 87 Torsion 13 11 15 17 180.00000 - 88 Torsion 13 11 15 19 -0.00000 + 88 Torsion 13 11 15 19 0.00000 89 Torsion 14 12 16 18 180.00000 - 90 Torsion 14 12 16 20 -0.00000 - - + 90 Torsion 14 12 16 20 0.00000 + + XYZ format geometry ------------------- 20 @@ -274,7 +274,7 @@ H -1.44522900 3.70144241 0.00000000 H 0.04815351 -4.93192286 0.00000000 H -0.04815351 4.93192286 0.00000000 - + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -347,9 +347,6 @@ - library name resolved from: environment - library file name is: - Summary of "ao basis" -> "" (cartesian) @@ -361,20 +358,18 @@ NWChem Property Module ---------------------- - - + + Divinylbenzene in STO-3G basis set - - itol2e modified to match energy - convergence criterion. - + + NWChem DFT Module ----------------- - - + + Divinylbenzene in STO-3G basis set - - + + Basis "ao basis" -> "ao basis" (cartesian) ----- C (Carbon) @@ -384,15 +379,15 @@ 1 S 7.16168370E+01 0.154329 1 S 1.30450960E+01 0.535328 1 S 3.53051220E+00 0.444635 - + 2 S 2.94124940E+00 -0.099967 2 S 6.83483100E-01 0.399513 2 S 2.22289900E-01 0.700115 - + 3 P 2.94124940E+00 0.155916 3 P 6.83483100E-01 0.607684 3 P 2.22289900E-01 0.391957 - + H (Hydrogen) ------------ Exponent Coefficients @@ -400,7 +395,7 @@ 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + Summary of "ao basis" -> "ao basis" (cartesian) @@ -423,16 +418,14 @@ Symmetry analysis of basis -------------------------- - + ag 25 au 5 bg 5 bu 25 - + Caching 1-el integrals - itol2e modified to match energy - convergence criterion. - + General Information ------------------- SCF calculation type: DFT @@ -450,7 +443,7 @@ Convergence on energy requested: 1.00D-07 Convergence on density requested: 1.00D-05 Convergence on gradient requested: 5.00D-04 - + XC Information -------------- B3LYP Method XC Potential @@ -459,7 +452,7 @@ Becke 1988 Exchange Functional 0.720 non-local Lee-Yang-Parr Correlation Functional 0.810 VWN I RPA Correlation Functional 0.190 local - + Grid Information ---------------- Grid used for XC integration: xfine @@ -472,7 +465,7 @@ Grid pruning is: on Number of quadrature shells: 1000 Spatial weights used: Erf1 - + Convergence Information ----------------------- Convergence aids based upon iterative change in @@ -487,7 +480,7 @@ dE on: start ASAP start dE off: 2 iters 30 iters 30 iters - + Screening Tolerance Information ------------------------------- Density screening/tol_rho: 1.00D-11 @@ -496,14 +489,14 @@ XC Gaussian exp screening on grid/accXCfunc: 20 Schwarz screening/accCoul: 1.00D-08 - + Superposition of Atomic Density Guess ------------------------------------- - + Sum of atomic energies: -376.44825176 Renormalizing density from 70.00 to 69 - + Non-variational initial energy ------------------------------ @@ -512,17 +505,17 @@ 2-e energy = 559.742625 HOMO = -0.261060 LUMO = -0.063255 - - + + Symmetry analysis of molecular orbitals - initial alpha ------------------------------------------------------- - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 ag 2 bu 3 bu 4 ag 5 bu 6 ag 7 ag 8 bu 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -532,17 +525,17 @@ 31 ag 32 bg 33 bg 34 au 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag - - + + Symmetry analysis of molecular orbitals - initial beta ------------------------------------------------------ - + Numbering of irreducible representations: - + 1 ag 2 au 3 bg 4 bu - + Orbital symmetries: - + 1 ag 2 bu 3 bu 4 ag 5 bu 6 ag 7 ag 8 bu 9 bu 10 ag 11 ag 12 bu 13 ag 14 bu 15 bu @@ -552,174 +545,186 @@ 31 ag 32 bg 33 bg 34 au 35 bg 36 au 37 au 38 bg 39 au 40 bg 41 ag 42 bu 43 bu 44 ag 45 ag - + Time after variat. SCF: 0.2 Time prior to 1st pass: 0.2 + Integral file = ./dvb.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 6 Max. records in file = 507871 + No. of bits per label = 8 No. of bits per value = 64 + + + #quartets = 1.086D+05 #integrals = 3.268D+05 #direct = 0.0% #cached =100.0% + + +File balance: exchanges= 0 moved= 0 time= 0.0 + + Grid_pts file = ./dvb.gridpts.0 Record size in doubles = 12289 No. of grid_pts per rec = 3070 - Max. records in memory = 522 Max. recs in file = ********* + Max. records in memory = 132 Max. recs in file = 2708430 Memory utilization after 1st SCF pass: - Heap Space remaining (MW): 0.00 242 + Heap Space remaining (MW): 11.09 11088302 Stack Space remaining (MW): 13.11 13105684 convergence iter energy DeltaE RMS-Dens Diis-err time ---------------- ----- ----------------- --------- --------- --------- ------ - d= 0,ls=0.0,diis 1 -382.0243205268 -8.28D+02 7.77D-03 1.04D-01 2.7 + d= 0,ls=0.0,diis 1 -382.0243210418 -8.28D+02 7.77D-03 1.04D-01 1.8 7.68D-03 1.02D-01 - d= 0,ls=0.0,diis 2 -382.0647495759 -4.04D-02 4.64D-03 1.95D-02 4.4 + d= 0,ls=0.0,diis 2 -382.0647501912 -4.04D-02 4.64D-03 1.95D-02 2.5 5.39D-03 2.36D-02 - d= 0,ls=0.0,diis 3 -382.0625000284 2.25D-03 2.83D-03 2.67D-02 6.7 + d= 0,ls=0.0,diis 3 -382.0625001506 2.25D-03 2.83D-03 2.67D-02 3.5 2.64D-03 2.26D-02 - d= 0,ls=0.0,diis 4 -382.0809245910 -1.84D-02 3.84D-04 5.13D-04 9.1 + d= 0,ls=0.0,diis 4 -382.0809247661 -1.84D-02 3.84D-04 5.13D-04 4.5 3.93D-04 5.30D-04 - d= 0,ls=0.0,diis 5 -382.0812988451 -3.74D-04 2.64D-04 2.82D-05 11.5 + d= 0,ls=0.0,diis 5 -382.0812990149 -3.74D-04 2.64D-04 2.82D-05 5.6 2.73D-04 3.75D-05 Resetting Diis - d= 0,ls=0.0,diis 6 -382.0813979058 -9.91D-05 1.70D-04 7.53D-06 13.8 + d= 0,ls=0.0,diis 6 -382.0813980750 -9.91D-05 1.70D-04 7.53D-06 6.6 1.78D-04 1.25D-05 - d= 0,ls=0.0,diis 7 -382.0814284117 -3.05D-05 7.49D-05 4.37D-06 16.2 + d= 0,ls=0.0,diis 7 -382.0814285803 -3.05D-05 7.49D-05 4.37D-06 7.6 1.08D-04 5.77D-06 - d= 0,ls=0.0,diis 8 -382.0814299696 -1.56D-06 4.83D-05 1.07D-05 18.6 + d= 0,ls=0.0,diis 8 -382.0814301380 -1.56D-06 4.83D-05 1.07D-05 8.6 5.20D-05 8.93D-06 - d= 0,ls=0.0,diis 9 -382.0814366578 -6.69D-06 6.54D-05 2.84D-07 20.9 + d= 0,ls=0.0,diis 9 -382.0814368265 -6.69D-06 6.54D-05 2.84D-07 9.6 7.05D-05 4.73D-07 - d= 0,ls=0.0,diis 10 -382.0814388867 -2.23D-06 7.30D-06 4.27D-08 23.3 - 3.38D-06 2.29D-08 - d= 0,ls=0.0,diis 11 -382.0814389180 -3.13D-08 6.92D-07 2.68D-09 25.6 + d= 0,ls=0.0,diis 10 -382.0814390556 -2.23D-06 7.30D-06 4.27D-08 10.7 + 3.37D-06 2.29D-08 + d= 0,ls=0.0,diis 11 -382.0814390869 -3.13D-08 6.92D-07 2.68D-09 11.7 1.65D-06 3.12D-09 - Total DFT energy = -382.081438918032 - One electron energy = -1386.634814583803 - Coulomb energy = 615.977983924957 - Exchange-Corr. energy = -57.361620426633 + Total DFT energy = -382.081439086907 + One electron energy = -1386.634813702004 + Coulomb energy = 615.977982938119 + Exchange-Corr. energy = -57.361620490468 Nuclear repulsion energy = 445.937012167446 - Numeric. integr. density = 69.000000234949 - - Total iterative time = 25.4s + Numeric. integr. density = 69.000000237621 + Total iterative time = 11.5s + Occupations of the irreducible representations ---------------------------------------------- - + irrep alpha beta -------- -------- -------- ag 15.0 15.0 au 2.0 2.0 bg 3.0 2.0 bu 15.0 15.0 - - + + DFT Final Alpha Molecular Orbital Analysis ------------------------------------------ - + Vector 1 Occ=1.000000D+00 E=-1.025361D+01 Symmetry=bu - MO Center= -7.6D-12, -4.5D-11, 3.3D-33, r^2= 2.1D+00 + MO Center= -4.8D-17, -2.5D-16, -3.7D-52, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.700267 1 C s 6 -0.700267 2 C s 2 0.031271 1 C s 7 -0.031271 2 C s - + Vector 2 Occ=1.000000D+00 E=-1.025356D+01 Symmetry=ag - MO Center= 7.6D-12, 4.5D-11, 7.4D-29, r^2= 2.1D+00 + MO Center= 2.6D-15, 1.8D-16, 3.5D-28, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.700290 1 C s 6 0.700290 2 C s 2 0.031077 1 C s 7 0.031077 2 C s - + Vector 3 Occ=1.000000D+00 E=-1.021954D+01 Symmetry=bu - MO Center= 3.6D-10, -2.7D-10, 3.1D-33, r^2= 2.0D+00 + MO Center= -4.5D-12, 3.2D-12, -4.5D-31, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.682810 5 C s 26 -0.682810 6 C s - 11 -0.155046 3 C s 16 0.155046 4 C s + 21 0.682809 5 C s 26 -0.682809 6 C s + 11 -0.155053 3 C s 16 0.155053 4 C s 22 0.031787 5 C s 27 -0.031787 6 C s - + Vector 4 Occ=1.000000D+00 E=-1.021949D+01 Symmetry=ag - MO Center= -3.6D-10, 2.7D-10, -1.2D-34, r^2= 2.0D+00 + MO Center= 4.5D-12, -3.4D-12, 3.7D-18, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 21 0.676841 5 C s 26 0.676841 6 C s - 11 -0.179417 3 C s 16 -0.179417 4 C s + 11 -0.179416 3 C s 16 -0.179416 4 C s 22 0.031481 5 C s 27 0.031481 6 C s - + Vector 5 Occ=1.000000D+00 E=-1.021807D+01 Symmetry=bu - MO Center= 1.2D-15, -7.8D-16, -4.7D-44, r^2= 2.0D+00 + MO Center= 2.2D-14, 7.8D-14, 5.8D-34, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.682914 3 C s 16 -0.682914 4 C s - 21 0.156043 5 C s 26 -0.156043 6 C s - 12 0.028759 3 C s 17 -0.028759 4 C s - + 11 0.682912 3 C s 16 -0.682912 4 C s + 21 0.156050 5 C s 26 -0.156050 6 C s + 12 0.028758 3 C s 17 -0.028758 4 C s + Vector 6 Occ=1.000000D+00 E=-1.021797D+01 Symmetry=ag - MO Center= 8.2D-14, 1.7D-12, 8.5D-18, r^2= 2.0D+00 + MO Center= 4.2D-15, 1.2D-13, 1.7D-33, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.674979 3 C s 16 0.674979 4 C s + 11 0.674981 3 C s 16 0.674981 4 C s 21 0.179432 5 C s 26 0.179432 6 C s - 35 -0.056579 11 C s 40 -0.056579 12 C s + 35 -0.056559 11 C s 40 -0.056559 12 C s 12 0.028054 3 C s 17 0.028054 4 C s - + Vector 7 Occ=1.000000D+00 E=-1.021759D+01 Symmetry=bu - MO Center= -9.1D-10, -5.0D-09, -1.1D-28, r^2= 8.7D+00 + MO Center= -2.2D-10, -1.2D-09, 1.4D-29, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.697689 11 C s 40 -0.697689 12 C s - 47 -0.059939 15 C s 52 0.059939 16 C s + 35 0.697690 11 C s 40 -0.697690 12 C s + 47 -0.059936 15 C s 52 0.059936 16 C s 36 0.031277 11 C s 41 -0.031277 12 C s - + Vector 8 Occ=1.000000D+00 E=-1.021759D+01 Symmetry=ag - MO Center= 9.1D-10, 5.0D-09, 3.7D-34, r^2= 8.6D+00 + MO Center= 2.2D-10, 1.2D-09, -4.3D-18, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.695508 11 C s 40 0.695508 12 C s - 47 -0.060206 15 C s 52 -0.060206 16 C s - 11 0.053480 3 C s 16 0.053480 4 C s + 35 0.695510 11 C s 40 0.695510 12 C s + 47 -0.060204 15 C s 52 -0.060204 16 C s + 11 0.053462 3 C s 16 0.053462 4 C s 36 0.031175 11 C s 41 0.031175 12 C s - + Vector 9 Occ=1.000000D+00 E=-1.021526D+01 Symmetry=bu - MO Center= 7.1D-15, 4.4D-14, -1.2D-30, r^2= 1.5D+01 + MO Center= -2.8D-14, 3.7D-14, -1.3D-30, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.697939 15 C s 52 -0.697939 16 C s - 35 0.060809 11 C s 40 -0.060809 12 C s + 35 0.060807 11 C s 40 -0.060807 12 C s 48 0.030282 15 C s 53 -0.030282 16 C s - + Vector 10 Occ=1.000000D+00 E=-1.021526D+01 Symmetry=ag - MO Center= -4.2D-14, 4.3D-14, 1.9D-19, r^2= 1.5D+01 + MO Center= -7.7D-15, -2.7D-16, -2.7D-33, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.697918 15 C s 52 0.697918 16 C s - 35 0.060910 11 C s 40 0.060910 12 C s + 35 0.060907 11 C s 40 0.060907 12 C s 48 0.030280 15 C s 53 0.030280 16 C s - + Vector 11 Occ=1.000000D+00 E=-1.020756D+00 Symmetry=ag - MO Center= 1.4D-14, 1.9D-15, 4.3D-17, r^2= 2.8D+00 + MO Center= 2.7D-17, 4.4D-17, 3.9D-32, r^2= 2.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.290615 1 C s 7 0.290615 2 C s 22 0.241187 5 C s 27 0.241187 6 C s 12 0.239205 3 C s 17 0.239205 4 C s - 36 0.118064 11 C s 41 0.118064 12 C s + 36 0.118063 11 C s 41 0.118063 12 C s 1 -0.112361 1 C s 6 -0.112361 2 C s - + Vector 12 Occ=1.000000D+00 E=-9.619173D-01 Symmetry=bu - MO Center= -1.6D-16, 3.5D-15, 9.2D-27, r^2= 7.1D+00 + MO Center= 2.8D-16, 8.0D-15, 2.0D-26, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.302133 1 C s 7 -0.302133 2 C s + 2 0.302134 1 C s 7 -0.302134 2 C s 36 -0.278925 11 C s 41 0.278925 12 C s - 48 -0.200893 15 C s 53 0.200893 16 C s + 48 -0.200892 15 C s 53 0.200892 16 C s 22 -0.121834 5 C s 27 0.121834 6 C s 1 -0.112295 1 C s 6 0.112295 2 C s - + Vector 13 Occ=1.000000D+00 E=-9.216166D-01 Symmetry=ag - MO Center= -4.1D-15, -1.5D-15, 3.6D-16, r^2= 1.1D+01 + MO Center= -3.0D-16, -7.3D-15, -4.1D-33, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.322501 15 C s 53 0.322501 16 C s @@ -727,29 +732,29 @@ 47 -0.120140 15 C s 52 -0.120140 16 C s 35 -0.119491 11 C s 40 -0.119491 12 C s 12 -0.114765 3 C s 17 -0.114765 4 C s - + Vector 14 Occ=1.000000D+00 E=-8.992434D-01 Symmetry=bu - MO Center= -9.0D-15, 2.7D-16, -4.7D-25, r^2= 3.1D+00 + MO Center= -7.8D-16, 1.7D-15, 2.8D-25, r^2= 3.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.363920 3 C s 17 -0.363920 4 C s - 22 0.320445 5 C s 27 -0.320445 6 C s + 22 0.320446 5 C s 27 -0.320446 6 C s 3 0.135155 1 C px 8 0.135155 2 C px 11 -0.134559 3 C s 16 0.134559 4 C s 21 -0.118283 5 C s 26 0.118283 6 C s - + Vector 15 Occ=1.000000D+00 E=-8.767202D-01 Symmetry=bu - MO Center= 7.4D-16, -8.9D-15, 1.0D-24, r^2= 9.2D+00 + MO Center= -9.2D-16, -2.0D-15, 1.2D-27, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 48 0.313564 15 C s 53 -0.313564 16 C s + 48 0.313565 15 C s 53 -0.313565 16 C s 2 0.266881 1 C s 7 -0.266881 2 C s - 22 -0.205248 5 C s 27 0.205248 6 C s + 22 -0.205247 5 C s 27 0.205247 6 C s 36 0.162233 11 C s 41 -0.162233 12 C s 38 -0.124273 11 C py 43 -0.124273 12 C py - - Vector 16 Occ=1.000000D+00 E=-7.871089D-01 Symmetry=ag - MO Center= -1.1D-15, 8.4D-16, -1.3D-17, r^2= 7.6D+00 + + Vector 16 Occ=1.000000D+00 E=-7.871090D-01 Symmetry=ag + MO Center= 3.0D-15, -5.8D-15, 8.5D-17, r^2= 7.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 22 0.249081 5 C s 27 0.249081 6 C s @@ -757,19 +762,19 @@ 2 -0.224049 1 C s 7 -0.224049 2 C s 14 -0.170958 3 C py 19 0.170958 4 C py 36 -0.148185 11 C s 41 -0.148185 12 C s - + Vector 17 Occ=1.000000D+00 E=-7.598629D-01 Symmetry=ag - MO Center= 2.1D-15, 8.5D-15, -2.2D-16, r^2= 4.9D+00 + MO Center= 6.1D-16, 1.7D-17, 1.4D-16, r^2= 4.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.334339 3 C s 17 0.334339 4 C s 3 0.203987 1 C px 8 -0.203987 2 C px 24 0.178445 5 C py 29 -0.178445 6 C py - 22 -0.169853 5 C s 27 -0.169853 6 C s - 2 -0.160169 1 C s 7 -0.160169 2 C s - + 22 -0.169852 5 C s 27 -0.169852 6 C s + 2 -0.160170 1 C s 7 -0.160170 2 C s + Vector 18 Occ=1.000000D+00 E=-7.224938D-01 Symmetry=bu - MO Center= 2.8D-16, -8.1D-14, 6.4D-23, r^2= 1.2D+01 + MO Center= -3.6D-16, 1.8D-14, 2.7D-25, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.309254 11 C s 41 -0.309254 12 C s @@ -777,19 +782,19 @@ 4 -0.161007 1 C py 9 -0.161007 2 C py 12 0.153598 3 C s 17 -0.153598 4 C s 45 0.152835 13 H s 46 -0.152835 14 H s - - Vector 19 Occ=1.000000D+00 E=-7.035947D-01 Symmetry=ag - MO Center= -7.4D-16, 9.1D-14, -1.2D-16, r^2= 7.3D+00 + + Vector 19 Occ=1.000000D+00 E=-7.035946D-01 Symmetry=ag + MO Center= -2.4D-15, -1.3D-16, 5.4D-18, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 23 0.203403 5 C px 28 -0.203403 6 C px - 13 0.190091 3 C px 18 -0.190091 4 C px + 23 0.203402 5 C px 28 -0.203402 6 C px + 13 0.190090 3 C px 18 -0.190090 4 C px 36 0.185525 11 C s 41 0.185525 12 C s 48 -0.177455 15 C s 53 -0.177455 16 C s 22 0.170730 5 C s 27 0.170730 6 C s - + Vector 20 Occ=1.000000D+00 E=-6.504762D-01 Symmetry=ag - MO Center= -3.3D-15, 1.5D-14, -4.2D-16, r^2= 1.0D+01 + MO Center= -1.3D-14, 1.4D-13, -8.1D-17, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.228211 15 C px 54 -0.228211 16 C px @@ -797,9 +802,9 @@ 57 0.177943 17 H s 58 0.177943 18 H s 36 -0.158069 11 C s 41 -0.158069 12 C s 45 -0.145889 13 H s 46 -0.145889 14 H s - - Vector 21 Occ=1.000000D+00 E=-6.349760D-01 Symmetry=bu - MO Center= -7.2D-15, 5.5D-15, -1.1D-21, r^2= 9.2D+00 + + Vector 21 Occ=1.000000D+00 E=-6.349759D-01 Symmetry=bu + MO Center= 6.3D-15, -8.0D-14, -2.4D-23, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 0.215130 3 C py 19 0.215130 4 C py @@ -807,9 +812,9 @@ 50 0.199161 15 C py 55 0.199161 16 C py 3 0.173226 1 C px 8 0.173226 2 C px 59 -0.151328 19 H s 60 0.151328 20 H s - + Vector 22 Occ=1.000000D+00 E=-6.039889D-01 Symmetry=bu - MO Center= 4.6D-15, -1.9D-14, -1.5D-21, r^2= 7.9D+00 + MO Center= 5.9D-16, -5.4D-14, 1.3D-22, r^2= 7.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 38 0.208675 11 C py 43 0.208675 12 C py @@ -817,19 +822,19 @@ 13 0.183074 3 C px 18 0.183074 4 C px 3 -0.181829 1 C px 8 -0.181829 2 C px 24 0.179965 5 C py 29 0.179965 6 C py - - Vector 23 Occ=1.000000D+00 E=-5.960836D-01 Symmetry=bu - MO Center= 2.3D-15, -2.2D-14, 9.2D-31, r^2= 7.2D+00 + + Vector 23 Occ=1.000000D+00 E=-5.960837D-01 Symmetry=bu + MO Center= 8.3D-16, -1.7D-14, -1.6D-22, r^2= 7.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.283932 5 C px 28 0.283932 6 C px - 33 0.234054 9 H s 34 -0.234054 10 H s + 33 0.234053 9 H s 34 -0.234053 10 H s 49 0.175613 15 C px 54 0.175613 16 C px 2 0.173244 1 C s 7 -0.173244 2 C s 4 -0.154219 1 C py 9 -0.154219 2 C py - - Vector 24 Occ=1.000000D+00 E=-5.878167D-01 Symmetry=ag - MO Center= -6.0D-15, 7.7D-15, -2.7D-16, r^2= 1.5D+01 + + Vector 24 Occ=1.000000D+00 E=-5.878168D-01 Symmetry=ag + MO Center= 2.1D-16, -7.5D-15, 4.8D-32, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.350754 15 C py 55 -0.350754 16 C py @@ -837,29 +842,29 @@ 59 -0.246184 19 H s 60 -0.246184 20 H s 45 -0.150427 13 H s 46 -0.150427 14 H s 24 0.128949 5 C py 29 -0.128949 6 C py - + Vector 25 Occ=1.000000D+00 E=-5.688461D-01 Symmetry=bu - MO Center= 6.6D-15, -1.2D-16, -6.1D-31, r^2= 4.6D+00 + MO Center= -4.0D-16, -1.3D-15, -1.1D-23, r^2= 4.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 13 0.335087 3 C px 18 0.335087 4 C px 31 0.248253 7 H s 32 -0.248253 8 H s 23 0.195219 5 C px 28 0.195219 6 C px - 24 -0.193760 5 C py 29 -0.193760 6 C py - 33 0.190864 9 H s 34 -0.190864 10 H s - - Vector 26 Occ=1.000000D+00 E=-5.522411D-01 Symmetry=bu - MO Center= 5.9D-16, -2.2D-15, -9.0D-22, r^2= 1.0D+01 + 24 -0.193761 5 C py 29 -0.193761 6 C py + 33 0.190865 9 H s 34 -0.190865 10 H s + + Vector 26 Occ=1.000000D+00 E=-5.522412D-01 Symmetry=bu + MO Center= 3.6D-15, 3.6D-15, 3.2D-23, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.283994 15 C py 55 0.283994 16 C py 14 -0.220296 3 C py 19 -0.220296 4 C py 37 0.215469 11 C px 42 0.215469 12 C px - 24 0.210474 5 C py 29 0.210474 6 C py + 24 0.210473 5 C py 29 0.210473 6 C py 59 -0.178274 19 H s 60 0.178274 20 H s - - Vector 27 Occ=1.000000D+00 E=-5.371003D-01 Symmetry=ag - MO Center= -1.1D-15, 1.8D-15, -1.4D-16, r^2= 1.1D+01 + + Vector 27 Occ=1.000000D+00 E=-5.371004D-01 Symmetry=ag + MO Center= -9.7D-16, 3.6D-15, 1.4D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.294646 15 C px 54 -0.294646 16 C px @@ -867,29 +872,29 @@ 37 -0.192640 11 C px 42 0.192640 12 C px 45 0.172738 13 H s 46 0.172738 14 H s 14 -0.170018 3 C py 19 0.170018 4 C py - + Vector 28 Occ=1.000000D+00 E=-5.336331D-01 Symmetry=au - MO Center= -4.7D-17, -2.7D-17, 9.8D-16, r^2= 3.5D+00 + MO Center= 2.1D-15, 3.3D-15, -1.5D-16, r^2= 3.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.362047 1 C pz 10 0.362047 2 C pz 25 0.287484 5 C pz 30 0.287484 6 C pz 15 0.285426 3 C pz 20 0.285426 4 C pz - 39 0.163597 11 C pz 44 0.163597 12 C pz + 39 0.163596 11 C pz 44 0.163596 12 C pz 51 0.092637 15 C pz 56 0.092637 16 C pz - + Vector 29 Occ=1.000000D+00 E=-5.010516D-01 Symmetry=bu - MO Center= 2.0D-15, -4.2D-15, -1.5D-22, r^2= 1.3D+01 + MO Center= 4.6D-15, -2.2D-15, -4.1D-32, r^2= 1.3D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.260437 13 H s 46 -0.260437 14 H s 37 -0.236132 11 C px 42 -0.236132 12 C px 49 0.234565 15 C px 54 0.234565 16 C px - 57 0.235370 17 H s 58 -0.235370 18 H s + 57 0.235371 17 H s 58 -0.235371 18 H s 4 0.218695 1 C py 9 0.218695 2 C py - + Vector 30 Occ=1.000000D+00 E=-4.932961D-01 Symmetry=ag - MO Center= -2.4D-16, 2.9D-15, -1.5D-17, r^2= 6.1D+00 + MO Center= -1.9D-16, -2.3D-15, 7.0D-17, r^2= 6.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 33 -0.259644 9 H s 34 -0.259644 10 H s @@ -897,9 +902,9 @@ 14 -0.245384 3 C py 19 0.245384 4 C py 24 0.218035 5 C py 29 -0.218035 6 C py 38 0.210706 11 C py 43 -0.210706 12 C py - + Vector 31 Occ=1.000000D+00 E=-4.827093D-01 Symmetry=ag - MO Center= 8.1D-16, 7.8D-16, -2.2D-18, r^2= 7.5D+00 + MO Center= 7.8D-16, 2.5D-16, 4.8D-17, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.257457 1 C px 8 -0.257457 2 C px @@ -907,9 +912,9 @@ 31 -0.234505 7 H s 32 -0.234505 8 H s 13 -0.202378 3 C px 18 0.202378 4 C px 45 -0.200740 13 H s 46 -0.200740 14 H s - + Vector 32 Occ=1.000000D+00 E=-4.736159D-01 Symmetry=bg - MO Center= 2.9D-16, 9.6D-15, 1.2D-17, r^2= 7.3D+00 + MO Center= -4.9D-16, -7.1D-15, -6.3D-18, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.383761 1 C pz 10 -0.383761 2 C pz @@ -917,9 +922,9 @@ 51 -0.265433 15 C pz 56 0.265433 16 C pz 25 -0.140191 5 C pz 30 0.140191 6 C pz 15 0.134236 3 C pz 20 -0.134236 4 C pz - + Vector 33 Occ=1.000000D+00 E=-4.179075D-01 Symmetry=au - MO Center= -3.0D-16, -9.8D-15, -3.9D-16, r^2= 1.2D+01 + MO Center= -8.1D-15, 1.8D-14, 2.2D-17, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.447522 15 C pz 56 0.447522 16 C pz @@ -927,16 +932,16 @@ 15 -0.169005 3 C pz 20 -0.169005 4 C pz 25 -0.167861 5 C pz 30 -0.167861 6 C pz 5 -0.028632 1 C pz 10 -0.028632 2 C pz - - Vector 34 Occ=1.000000D+00 E=-3.943441D-01 Symmetry=bg - MO Center= 2.1D-17, 3.8D-18, 7.9D-23, r^2= 2.7D+00 + + Vector 34 Occ=1.000000D+00 E=-3.943442D-01 Symmetry=bg + MO Center= 6.0D-15, -1.7D-15, -1.3D-18, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.460831 3 C pz 20 -0.460831 4 C pz 25 0.460407 5 C pz 30 -0.460407 6 C pz - + Vector 35 Occ=1.000000D+00 E=-3.697074D-01 Symmetry=bg - MO Center= 3.8D-16, -4.5D-17, -9.4D-22, r^2= 8.9D+00 + MO Center= 2.6D-16, -1.3D-14, -8.8D-24, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.429422 15 C pz 56 -0.429422 16 C pz @@ -944,9 +949,9 @@ 39 0.228269 11 C pz 44 -0.228269 12 C pz 25 -0.201114 5 C pz 30 0.201114 6 C pz 15 0.194046 3 C pz 20 -0.194046 4 C pz - + Vector 36 Occ=0.000000D+00 E=-1.774527D-01 Symmetry=au - MO Center= 6.3D-17, -8.8D-15, 4.6D-17, r^2= 7.3D+00 + MO Center= -3.4D-16, 2.9D-16, -8.0D-17, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.454603 1 C pz 10 0.454603 2 C pz @@ -954,26 +959,26 @@ 25 -0.298929 5 C pz 30 -0.298929 6 C pz 15 -0.257054 3 C pz 20 -0.257054 4 C pz 39 0.248042 11 C pz 44 0.248042 12 C pz - + Vector 37 Occ=0.000000D+00 E=-1.115335D-01 Symmetry=au - MO Center= -5.4D-16, 1.7D-16, 8.2D-17, r^2= 2.7D+00 + MO Center= -2.9D-16, 9.0D-16, -1.5D-16, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.583595 3 C pz 20 0.583595 4 C pz 25 -0.552467 5 C pz 30 -0.552467 6 C pz 5 -0.029265 1 C pz 10 -0.029265 2 C pz - - Vector 38 Occ=0.000000D+00 E=-9.436259D-02 Symmetry=bg - MO Center= -8.3D-17, 7.4D-15, 4.0D-21, r^2= 1.1D+01 + + Vector 38 Occ=0.000000D+00 E=-9.436260D-02 Symmetry=bg + MO Center= 6.7D-16, -1.5D-15, 1.5D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.540550 11 C pz 44 -0.540550 12 C pz 51 -0.500547 15 C pz 56 0.500547 16 C pz 15 0.245368 3 C pz 20 -0.245368 4 C pz 25 -0.235394 5 C pz 30 0.235394 6 C pz - - Vector 39 Occ=0.000000D+00 E=-2.962791D-02 Symmetry=au - MO Center= -3.3D-16, -2.1D-15, -1.3D-16, r^2= 8.3D+00 + + Vector 39 Occ=0.000000D+00 E=-2.962792D-02 Symmetry=au + MO Center= -7.0D-17, 1.6D-16, -3.3D-18, r^2= 8.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.553828 11 C pz 44 0.553828 12 C pz @@ -981,9 +986,9 @@ 51 -0.386369 15 C pz 56 -0.386369 16 C pz 25 0.192075 5 C pz 30 0.192075 6 C pz 15 0.159669 3 C pz 20 0.159669 4 C pz - - Vector 40 Occ=0.000000D+00 E= 5.994920D-02 Symmetry=bg - MO Center= 4.2D-16, 4.1D-15, 5.4D-22, r^2= 3.9D+00 + + Vector 40 Occ=0.000000D+00 E= 5.994919D-02 Symmetry=bg + MO Center= 2.0D-16, 3.4D-16, 1.9D-18, r^2= 3.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.526875 1 C pz 10 -0.526875 2 C pz @@ -991,189 +996,189 @@ 25 0.473775 5 C pz 30 -0.473775 6 C pz 39 0.292051 11 C pz 44 -0.292051 12 C pz 51 -0.155709 15 C pz 56 0.155709 16 C pz - + Vector 41 Occ=0.000000D+00 E= 1.397083D-01 Symmetry=ag - MO Center= 5.1D-15, 2.0D-14, 4.1D-18, r^2= 8.7D+00 + MO Center= 5.5D-15, 2.8D-14, -2.2D-18, r^2= 8.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.488092 1 C s 7 0.488092 2 C s - 33 -0.390582 9 H s 34 -0.390582 10 H s - 31 -0.378082 7 H s 32 -0.378082 8 H s - 38 -0.371422 11 C py 43 0.371422 12 C py - 36 -0.347601 11 C s 41 -0.347601 12 C s - - Vector 42 Occ=0.000000D+00 E= 1.490001D-01 Symmetry=bu - MO Center= -7.3D-15, -1.4D-14, -2.6D-19, r^2= 9.8D+00 + 2 0.488096 1 C s 7 0.488096 2 C s + 33 -0.390580 9 H s 34 -0.390580 10 H s + 31 -0.378081 7 H s 32 -0.378081 8 H s + 38 -0.371423 11 C py 43 0.371423 12 C py + 36 -0.347602 11 C s 41 -0.347602 12 C s + + Vector 42 Occ=0.000000D+00 E= 1.490003D-01 Symmetry=bu + MO Center= -8.7D-15, -2.1D-14, 4.9D-19, r^2= 9.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.353759 13 H s 46 -0.353759 14 H s + 45 0.353761 13 H s 46 -0.353761 14 H s 13 0.340063 3 C px 18 0.340063 4 C px - 37 0.328669 11 C px 42 0.328669 12 C px - 57 -0.322956 17 H s 58 0.322956 18 H s + 37 0.328670 11 C px 42 0.328670 12 C px + 57 -0.322957 17 H s 58 0.322957 18 H s 49 0.314370 15 C px 54 0.314370 16 C px - - Vector 43 Occ=0.000000D+00 E= 1.792464D-01 Symmetry=bu - MO Center= 4.5D-16, -8.4D-15, 1.1D-18, r^2= 6.4D+00 + + Vector 43 Occ=0.000000D+00 E= 1.792466D-01 Symmetry=bu + MO Center= 5.3D-15, -1.1D-14, -4.6D-19, r^2= 6.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.587204 11 C s 41 -0.587204 12 C s - 4 0.447576 1 C py 9 0.447576 2 C py - 33 0.400049 9 H s 34 -0.400049 10 H s - 2 0.343320 1 C s 7 -0.343320 2 C s + 36 0.587200 11 C s 41 -0.587200 12 C s + 4 0.447578 1 C py 9 0.447578 2 C py + 33 0.400056 9 H s 34 -0.400056 10 H s + 2 0.343313 1 C s 7 -0.343313 2 C s 38 0.325332 11 C py 43 0.325332 12 C py - - Vector 44 Occ=0.000000D+00 E= 1.964583D-01 Symmetry=ag - MO Center= 1.1D-15, -2.1D-17, -4.2D-17, r^2= 1.1D+01 + + Vector 44 Occ=0.000000D+00 E= 1.964587D-01 Symmetry=ag + MO Center= -3.0D-15, 7.9D-15, -1.2D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.520764 13 H s 46 0.520764 14 H s - 12 0.467462 3 C s 17 0.467462 4 C s - 57 -0.403043 17 H s 58 -0.403043 18 H s - 33 -0.332558 9 H s 34 -0.332558 10 H s + 45 0.520762 13 H s 46 0.520762 14 H s + 12 0.467458 3 C s 17 0.467458 4 C s + 57 -0.403044 17 H s 58 -0.403044 18 H s + 33 -0.332563 9 H s 34 -0.332563 10 H s 31 -0.321891 7 H s 32 -0.321891 8 H s - - Vector 45 Occ=0.000000D+00 E= 2.146796D-01 Symmetry=ag - MO Center= 2.2D-15, 1.2D-15, 1.2D-16, r^2= 8.5D+00 + + Vector 45 Occ=0.000000D+00 E= 2.146793D-01 Symmetry=ag + MO Center= -1.1D-14, 2.8D-14, -1.9D-17, r^2= 8.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.771048 5 C s 27 0.771048 6 C s - 48 0.518813 15 C s 53 0.518813 16 C s - 2 -0.433738 1 C s 7 -0.433738 2 C s - 12 -0.405907 3 C s 17 -0.405907 4 C s - 57 -0.386665 17 H s 58 -0.386665 18 H s - - Vector 46 Occ=0.000000D+00 E= 2.203578D-01 Symmetry=bu - MO Center= -5.3D-15, 1.2D-15, -3.2D-18, r^2= 8.9D+00 + 22 0.771047 5 C s 27 0.771047 6 C s + 48 0.518815 15 C s 53 0.518815 16 C s + 2 -0.433732 1 C s 7 -0.433732 2 C s + 12 -0.405912 3 C s 17 -0.405912 4 C s + 57 -0.386663 17 H s 58 -0.386663 18 H s + + Vector 46 Occ=0.000000D+00 E= 2.203576D-01 Symmetry=bu + MO Center= 3.8D-16, -3.2D-14, 2.0D-18, r^2= 8.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 22 0.643368 5 C s 27 -0.643368 6 C s - 2 0.505154 1 C s 7 -0.505154 2 C s - 12 -0.484303 3 C s 17 0.484303 4 C s - 48 0.481523 15 C s 53 -0.481523 16 C s - 31 0.412725 7 H s 32 -0.412725 8 H s - - Vector 47 Occ=0.000000D+00 E= 2.396762D-01 Symmetry=ag - MO Center= 7.4D-15, 2.4D-15, 1.4D-16, r^2= 7.5D+00 + 2 0.505156 1 C s 7 -0.505156 2 C s + 12 -0.484304 3 C s 17 0.484304 4 C s + 48 0.481526 15 C s 53 -0.481526 16 C s + 31 0.412727 7 H s 32 -0.412727 8 H s + + Vector 47 Occ=0.000000D+00 E= 2.396756D-01 Symmetry=ag + MO Center= -8.8D-15, 9.3D-15, -8.6D-17, r^2= 7.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.724223 1 C s 7 0.724223 2 C s - 12 -0.638841 3 C s 17 -0.638841 4 C s - 36 -0.483204 11 C s 41 -0.483204 12 C s - 48 0.460733 15 C s 53 0.460733 16 C s - 57 -0.356582 17 H s 58 -0.356582 18 H s - - Vector 48 Occ=0.000000D+00 E= 2.405822D-01 Symmetry=bu - MO Center= -3.4D-16, -6.8D-15, -5.6D-18, r^2= 1.2D+01 + 2 0.724224 1 C s 7 0.724224 2 C s + 12 -0.638843 3 C s 17 -0.638843 4 C s + 36 -0.483207 11 C s 41 -0.483207 12 C s + 48 0.460729 15 C s 53 0.460729 16 C s + 57 -0.356579 17 H s 58 -0.356579 18 H s + + Vector 48 Occ=0.000000D+00 E= 2.405820D-01 Symmetry=bu + MO Center= 1.7D-14, 1.5D-14, 4.9D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 31 0.510048 7 H s 32 -0.510048 8 H s - 59 0.462242 19 H s 60 -0.462242 20 H s - 45 0.458355 13 H s 46 -0.458355 14 H s - 36 -0.419595 11 C s 41 0.419595 12 C s - 50 0.340595 15 C py 55 0.340595 16 C py - - Vector 49 Occ=0.000000D+00 E= 2.630183D-01 Symmetry=bu - MO Center= -2.8D-16, 3.2D-15, -1.6D-18, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.738194 15 C s 53 -0.738194 16 C s - 57 -0.576723 17 H s 58 0.576723 18 H s - 36 -0.469356 11 C s 41 0.469356 12 C s - 33 0.400674 9 H s 34 -0.400674 10 H s - 12 0.361311 3 C s 17 -0.361311 4 C s - + 59 0.462241 19 H s 60 -0.462241 20 H s + 45 0.458356 13 H s 46 -0.458356 14 H s + 36 -0.419598 11 C s 41 0.419598 12 C s + 50 0.340596 15 C py 55 0.340596 16 C py + + Vector 49 Occ=0.000000D+00 E= 2.630187D-01 Symmetry=bu + MO Center= 1.0D-15, -3.4D-14, 6.4D-19, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.738193 15 C s 53 -0.738193 16 C s + 57 -0.576719 17 H s 58 0.576719 18 H s + 36 -0.469359 11 C s 41 0.469359 12 C s + 33 0.400675 9 H s 34 -0.400675 10 H s + 12 0.361314 3 C s 17 -0.361314 4 C s + Vector 50 Occ=0.000000D+00 E= 2.853155D-01 Symmetry=ag - MO Center= 4.6D-16, -3.1D-15, 2.1D-17, r^2= 1.3D+01 + MO Center= -3.3D-16, 7.0D-15, 4.1D-17, r^2= 1.3D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.573679 3 C s 17 0.573679 4 C s + 12 0.573676 3 C s 17 0.573676 4 C s 22 -0.574431 5 C s 27 -0.574431 6 C s - 59 -0.569859 19 H s 60 -0.569859 20 H s - 48 0.524628 15 C s 53 0.524628 16 C s - 50 -0.408423 15 C py 55 0.408423 16 C py - - Vector 51 Occ=0.000000D+00 E= 3.197840D-01 Symmetry=ag - MO Center= -1.1D-15, 3.0D-17, -5.7D-18, r^2= 6.7D+00 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 4 0.612786 1 C py 9 -0.612786 2 C py - 36 -0.600274 11 C s 41 -0.600274 12 C s - 13 -0.439478 3 C px 18 0.439478 4 C px - 45 0.343477 13 H s 46 0.343477 14 H s - 23 -0.335428 5 C px 28 0.335428 6 C px - + 59 -0.569861 19 H s 60 -0.569861 20 H s + 48 0.524629 15 C s 53 0.524629 16 C s + 50 -0.408424 15 C py 55 0.408424 16 C py + + Vector 51 Occ=0.000000D+00 E= 3.197839D-01 Symmetry=ag + MO Center= 1.9D-15, 5.9D-15, 1.2D-17, r^2= 6.7D+00 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 4 0.612787 1 C py 9 -0.612787 2 C py + 36 -0.600273 11 C s 41 -0.600273 12 C s + 13 -0.439477 3 C px 18 0.439477 4 C px + 45 0.343476 13 H s 46 0.343476 14 H s + 23 -0.335430 5 C px 28 0.335430 6 C px + Vector 52 Occ=0.000000D+00 E= 3.442773D-01 Symmetry=bu - MO Center= -2.5D-16, 5.7D-15, -1.7D-18, r^2= 8.0D+00 + MO Center= -9.0D-16, -3.3D-15, -5.4D-19, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.640597 3 C s 17 -0.640597 4 C s - 3 -0.549537 1 C px 8 -0.549537 2 C px + 12 0.640599 3 C s 17 -0.640599 4 C s + 3 -0.549538 1 C px 8 -0.549538 2 C px 24 -0.469978 5 C py 29 -0.469978 6 C py 50 0.459269 15 C py 55 0.459269 16 C py - 59 0.377579 19 H s 60 -0.377579 20 H s - - Vector 53 Occ=0.000000D+00 E= 3.799998D-01 Symmetry=ag - MO Center= 4.2D-15, 1.2D-16, -1.2D-17, r^2= 5.8D+00 + 59 0.377578 19 H s 60 -0.377578 20 H s + + Vector 53 Occ=0.000000D+00 E= 3.799999D-01 Symmetry=ag + MO Center= 1.6D-15, 5.7D-16, 6.8D-18, r^2= 5.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.550016 9 H s 34 0.550016 10 H s + 33 0.550017 9 H s 34 0.550017 10 H s 13 0.544691 3 C px 18 -0.544691 4 C px 23 -0.506688 5 C px 28 0.506688 6 C px - 31 -0.498439 7 H s 32 -0.498439 8 H s - 24 0.355720 5 C py 29 -0.355720 6 C py - - Vector 54 Occ=0.000000D+00 E= 3.978256D-01 Symmetry=bu - MO Center= -8.4D-15, 1.6D-16, 2.2D-18, r^2= 4.4D+00 + 31 -0.498441 7 H s 32 -0.498441 8 H s + 24 0.355721 5 C py 29 -0.355721 6 C py + + Vector 54 Occ=0.000000D+00 E= 3.978255D-01 Symmetry=bu + MO Center= -1.8D-15, -1.6D-15, -5.4D-18, r^2= 4.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 0.707963 3 C py 19 0.707963 4 C py - 22 0.585166 5 C s 27 -0.585166 6 C s - 2 -0.439523 1 C s 7 0.439523 2 C s - 24 0.431295 5 C py 29 0.431295 6 C py - 23 0.381886 5 C px 28 0.381886 6 C px - - Vector 55 Occ=0.000000D+00 E= 4.254717D-01 Symmetry=bu - MO Center= -1.2D-16, -1.1D-14, -3.0D-18, r^2= 1.2D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 49 -0.559552 15 C px 54 -0.559552 16 C px - 2 0.529228 1 C s 7 -0.529228 2 C s - 38 0.469561 11 C py 43 0.469561 12 C py + 22 0.585164 5 C s 27 -0.585164 6 C s + 2 -0.439525 1 C s 7 0.439525 2 C s + 24 0.431297 5 C py 29 0.431297 6 C py + 23 0.381887 5 C px 28 0.381887 6 C px + + Vector 55 Occ=0.000000D+00 E= 4.254715D-01 Symmetry=bu + MO Center= -7.4D-16, 7.8D-15, 2.5D-18, r^2= 1.2D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 49 -0.559554 15 C px 54 -0.559554 16 C px + 2 0.529227 1 C s 7 -0.529227 2 C s + 38 0.469562 11 C py 43 0.469562 12 C py 45 0.401483 13 H s 46 -0.401483 14 H s - 57 0.390967 17 H s 58 -0.390967 18 H s - - Vector 56 Occ=0.000000D+00 E= 4.381712D-01 Symmetry=ag - MO Center= 7.5D-16, 7.8D-15, -9.1D-18, r^2= 9.7D+00 + 57 0.390968 17 H s 58 -0.390968 18 H s + + Vector 56 Occ=0.000000D+00 E= 4.381710D-01 Symmetry=ag + MO Center= 1.1D-16, -5.0D-15, 3.3D-18, r^2= 9.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.562812 11 C px 42 -0.562812 12 C px 50 -0.552022 15 C py 55 0.552022 16 C py - 14 0.425469 3 C py 19 -0.425469 4 C py - 24 0.352006 5 C py 29 -0.352006 6 C py + 14 0.425467 3 C py 19 -0.425467 4 C py + 24 0.352005 5 C py 29 -0.352005 6 C py 59 -0.353031 19 H s 60 -0.353031 20 H s - - Vector 57 Occ=0.000000D+00 E= 4.777504D-01 Symmetry=ag - MO Center= 5.5D-16, 6.4D-15, 5.5D-18, r^2= 9.9D+00 + + Vector 57 Occ=0.000000D+00 E= 4.777506D-01 Symmetry=ag + MO Center= 2.3D-16, 4.0D-15, 5.9D-18, r^2= 9.9D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 38 0.670259 11 C py 43 -0.670259 12 C py - 49 -0.605870 15 C px 54 0.605870 16 C px + 49 -0.605869 15 C px 54 0.605869 16 C px 24 -0.424187 5 C py 29 0.424187 6 C py - 4 -0.383779 1 C py 9 0.383779 2 C py - 14 -0.351070 3 C py 19 0.351070 4 C py - - Vector 58 Occ=0.000000D+00 E= 5.060417D-01 Symmetry=bu - MO Center= -5.8D-16, -8.7D-15, 1.4D-19, r^2= 9.7D+00 + 4 -0.383778 1 C py 9 0.383778 2 C py + 14 -0.351071 3 C py 19 0.351071 4 C py + + Vector 58 Occ=0.000000D+00 E= 5.060414D-01 Symmetry=bu + MO Center= -1.4D-15, -1.8D-14, 1.9D-19, r^2= 9.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.622375 11 C px 42 0.622375 12 C px - 50 -0.552726 15 C py 55 -0.552726 16 C py - 48 -0.518286 15 C s 53 0.518286 16 C s - 38 -0.456096 11 C py 43 -0.456096 12 C py - 36 0.447960 11 C s 41 -0.447960 12 C s - - Vector 59 Occ=0.000000D+00 E= 5.676001D-01 Symmetry=ag - MO Center= 1.6D-15, 1.1D-14, -1.8D-17, r^2= 5.4D+00 + 37 0.622376 11 C px 42 0.622376 12 C px + 50 -0.552727 15 C py 55 -0.552727 16 C py + 48 -0.518285 15 C s 53 0.518285 16 C s + 38 -0.456094 11 C py 43 -0.456094 12 C py + 36 0.447959 11 C s 41 -0.447959 12 C s + + Vector 59 Occ=0.000000D+00 E= 5.676000D-01 Symmetry=ag + MO Center= 1.4D-15, 6.4D-15, -7.5D-19, r^2= 5.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.691283 1 C px 8 -0.691283 2 C px @@ -1181,99 +1186,99 @@ 23 -0.437546 5 C px 28 0.437546 6 C px 37 0.433546 11 C px 42 -0.433546 12 C px 24 -0.417703 5 C py 29 0.417703 6 C py - - Vector 60 Occ=0.000000D+00 E= 5.817446D-01 Symmetry=bu - MO Center= 8.0D-16, -5.5D-15, -1.1D-20, r^2= 3.7D+00 + + Vector 60 Occ=0.000000D+00 E= 5.817448D-01 Symmetry=bu + MO Center= -4.8D-16, 3.6D-15, 1.8D-21, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.642938 1 C py 9 0.642938 2 C py 13 -0.568423 3 C px 18 -0.568423 4 C px 23 0.495542 5 C px 28 0.495542 6 C px 24 -0.397652 5 C py 29 -0.397652 6 C py - 22 -0.383110 5 C s 27 0.383110 6 C s - - + 22 -0.383109 5 C s 27 0.383109 6 C s + + DFT Final Beta Molecular Orbital Analysis ----------------------------------------- - + Vector 1 Occ=1.000000D+00 E=-1.025063D+01 Symmetry=bu - MO Center= 2.8D-11, 1.7D-10, 1.1D-33, r^2= 2.1D+00 + MO Center= -3.9D-18, 2.0D-16, 0.0D+00, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.700307 1 C s 6 -0.700307 2 C s 2 0.030969 1 C s 7 -0.030969 2 C s - + Vector 2 Occ=1.000000D+00 E=-1.025058D+01 Symmetry=ag - MO Center= -2.8D-11, -1.7D-10, 4.5D-43, r^2= 2.1D+00 + MO Center= 1.2D-15, 4.5D-17, -7.7D-28, r^2= 2.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 1 0.700330 1 C s 6 0.700330 2 C s 2 0.030779 1 C s 7 0.030779 2 C s - + Vector 3 Occ=1.000000D+00 E=-1.021921D+01 Symmetry=bu - MO Center= 1.6D-10, -1.1D-10, -4.2D-32, r^2= 2.0D+00 + MO Center= -1.0D-10, 7.6D-11, 3.4D-29, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.680257 5 C s 26 -0.680257 6 C s - 11 -0.165802 3 C s 16 0.165802 4 C s + 21 0.680255 5 C s 26 -0.680255 6 C s + 11 -0.165810 3 C s 16 0.165810 4 C s 22 0.031722 5 C s 27 -0.031722 6 C s - + Vector 4 Occ=1.000000D+00 E=-1.021917D+01 Symmetry=ag - MO Center= -1.6D-10, 1.2D-10, 6.0D-36, r^2= 2.0D+00 + MO Center= 1.0D-10, -7.6D-11, 1.2D-34, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 21 0.673246 5 C s 26 0.673246 6 C s - 11 -0.192217 3 C s 16 -0.192217 4 C s + 21 0.673247 5 C s 26 0.673247 6 C s + 11 -0.192216 3 C s 16 -0.192216 4 C s 22 0.031390 5 C s 27 0.031390 6 C s - + Vector 5 Occ=1.000000D+00 E=-1.021844D+01 Symmetry=ag - MO Center= 1.7D-10, 9.4D-10, -1.6D-17, r^2= 8.6D+00 + MO Center= -3.0D-15, -3.4D-15, -6.2D-35, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 35 0.699341 11 C s 40 0.699341 12 C s - 11 -0.034389 3 C s 16 -0.034389 4 C s + 35 0.699342 11 C s 40 0.699342 12 C s + 11 -0.034380 3 C s 16 -0.034380 4 C s 36 0.030948 11 C s 41 0.030948 12 C s - + Vector 6 Occ=1.000000D+00 E=-1.021844D+01 Symmetry=bu - MO Center= -1.7D-10, -9.4D-10, -2.1D-28, r^2= 8.6D+00 + MO Center= 2.7D-16, 1.7D-15, 1.7D-42, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 35 0.700085 11 C s 40 -0.700085 12 C s 36 0.030999 11 C s 41 -0.030999 12 C s - + Vector 7 Occ=1.000000D+00 E=-1.021786D+01 Symmetry=bu - MO Center= 8.5D-12, 2.6D-12, 1.1D-28, r^2= 2.0D+00 + MO Center= 2.9D-11, 8.9D-12, -8.0D-29, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.680450 3 C s 16 -0.680450 4 C s - 21 0.166729 5 C s 26 -0.166729 6 C s + 11 0.680448 3 C s 16 -0.680448 4 C s + 21 0.166736 5 C s 26 -0.166736 6 C s 12 0.028517 3 C s 17 -0.028517 4 C s - + Vector 8 Occ=1.000000D+00 E=-1.021776D+01 Symmetry=ag - MO Center= -8.5D-12, -3.0D-12, 7.3D-18, r^2= 2.0D+00 + MO Center= -2.9D-11, -9.4D-12, -4.4D-19, r^2= 2.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 11 0.672702 3 C s 16 0.672702 4 C s - 21 0.193364 5 C s 26 0.193364 6 C s - 35 0.032702 11 C s 40 0.032702 12 C s + 11 0.672703 3 C s 16 0.672703 4 C s + 21 0.193363 5 C s 26 0.193363 6 C s + 35 0.032694 11 C s 40 0.032694 12 C s 12 0.027795 3 C s 17 0.027795 4 C s - + Vector 9 Occ=1.000000D+00 E=-1.021079D+01 Symmetry=ag - MO Center= -1.8D-10, 1.9D-09, 6.0D-18, r^2= 1.5D+01 + MO Center= 3.1D-16, 1.1D-16, 2.7D-35, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700374 15 C s 52 0.700374 16 C s 48 0.030341 15 C s 53 0.030341 16 C s - + Vector 10 Occ=1.000000D+00 E=-1.021079D+01 Symmetry=bu - MO Center= 1.8D-10, -1.9D-09, -1.7D-33, r^2= 1.5D+01 + MO Center= 2.3D-17, 5.6D-16, 5.1D-34, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 47 0.700375 15 C s 52 -0.700375 16 C s 48 0.030342 15 C s 53 -0.030342 16 C s - + Vector 11 Occ=1.000000D+00 E=-1.014702D+00 Symmetry=ag - MO Center= -1.8D-17, 6.1D-17, 3.5D-33, r^2= 2.8D+00 + MO Center= 3.9D-15, -2.0D-15, -3.6D-16, r^2= 2.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.279929 1 C s 7 0.279929 2 C s @@ -1281,9 +1286,9 @@ 12 0.244408 3 C s 17 0.244408 4 C s 36 0.121458 11 C s 41 0.121458 12 C s 1 -0.109751 1 C s 6 -0.109751 2 C s - + Vector 12 Occ=1.000000D+00 E=-9.544807D-01 Symmetry=bu - MO Center= -5.2D-16, -4.8D-15, 6.9D-26, r^2= 7.1D+00 + MO Center= 4.2D-16, 5.9D-15, -2.8D-26, r^2= 7.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.294364 1 C s 7 -0.294364 2 C s @@ -1291,9 +1296,9 @@ 48 -0.187106 15 C s 53 0.187106 16 C s 22 -0.122021 5 C s 27 0.122021 6 C s 1 -0.110745 1 C s 6 0.110745 2 C s - + Vector 13 Occ=1.000000D+00 E=-9.137413D-01 Symmetry=ag - MO Center= 2.5D-16, 4.9D-15, -6.9D-33, r^2= 1.1D+01 + MO Center= -2.0D-14, -4.3D-15, -2.9D-16, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.329689 11 C s 41 0.329689 12 C s @@ -1301,9 +1306,9 @@ 35 -0.124035 11 C s 40 -0.124035 12 C s 12 -0.118131 3 C s 17 -0.118131 4 C s 47 -0.113224 15 C s 52 -0.113224 16 C s - - Vector 14 Occ=1.000000D+00 E=-8.975951D-01 Symmetry=bu - MO Center= 3.9D-15, 3.4D-15, -4.6D-25, r^2= 3.0D+00 + + Vector 14 Occ=1.000000D+00 E=-8.975952D-01 Symmetry=bu + MO Center= 1.3D-14, 1.1D-14, -1.1D-24, r^2= 3.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.359673 3 C s 17 -0.359673 4 C s @@ -1311,39 +1316,39 @@ 3 0.133580 1 C px 8 0.133580 2 C px 11 -0.132860 3 C s 16 0.132860 4 C s 21 -0.121868 5 C s 26 0.121868 6 C s - - Vector 15 Occ=1.000000D+00 E=-8.645219D-01 Symmetry=bu - MO Center= -5.4D-16, -2.5D-15, 1.7D-24, r^2= 9.1D+00 + + Vector 15 Occ=1.000000D+00 E=-8.645220D-01 Symmetry=bu + MO Center= -6.9D-16, -1.2D-14, -1.0D-25, r^2= 9.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 48 0.299589 15 C s 53 -0.299589 16 C s - 2 0.262763 1 C s 7 -0.262763 2 C s - 22 -0.193860 5 C s 27 0.193860 6 C s + 2 0.262762 1 C s 7 -0.262762 2 C s + 22 -0.193859 5 C s 27 0.193859 6 C s 36 0.173277 11 C s 41 -0.173277 12 C s 38 -0.127957 11 C py 43 -0.127957 12 C py - + Vector 16 Occ=1.000000D+00 E=-7.818207D-01 Symmetry=ag - MO Center= -1.3D-15, -1.6D-15, 7.8D-17, r^2= 7.6D+00 + MO Center= -3.7D-15, 2.8D-15, -7.9D-18, r^2= 7.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 22 0.252823 5 C s 27 0.252823 6 C s - 48 0.235223 15 C s 53 0.235223 16 C s + 48 0.235222 15 C s 53 0.235222 16 C s 2 -0.210254 1 C s 7 -0.210254 2 C s 14 -0.172862 3 C py 19 0.172862 4 C py 3 -0.143054 1 C px 8 0.143054 2 C px - + Vector 17 Occ=1.000000D+00 E=-7.558002D-01 Symmetry=ag - MO Center= 4.8D-15, 1.1D-14, 1.3D-16, r^2= 5.2D+00 + MO Center= 2.3D-15, 3.6D-15, 2.1D-16, r^2= 5.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 12 0.329210 3 C s 17 0.329210 4 C s 3 0.192358 1 C px 8 -0.192358 2 C px 24 0.179530 5 C py 29 -0.179530 6 C py - 2 -0.173326 1 C s 7 -0.173326 2 C s + 2 -0.173327 1 C s 7 -0.173327 2 C s 22 -0.156903 5 C s 27 -0.156903 6 C s - + Vector 18 Occ=1.000000D+00 E=-7.185973D-01 Symmetry=bu - MO Center= -4.2D-15, -1.1D-13, 2.1D-22, r^2= 1.2D+01 + MO Center= 1.2D-15, 1.5D-16, -6.4D-34, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 36 0.298324 11 C s 41 -0.298324 12 C s @@ -1351,9 +1356,9 @@ 4 -0.155566 1 C py 9 -0.155566 2 C py 12 0.154423 3 C s 17 -0.154423 4 C s 57 -0.154081 17 H s 58 0.154081 18 H s - + Vector 19 Occ=1.000000D+00 E=-7.004621D-01 Symmetry=ag - MO Center= -6.8D-15, 1.2D-13, -1.7D-16, r^2= 7.3D+00 + MO Center= 9.5D-16, -5.1D-16, 3.8D-32, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.206098 5 C px 28 -0.206098 6 C px @@ -1361,9 +1366,9 @@ 48 -0.178353 15 C s 53 -0.178353 16 C s 36 0.176046 11 C s 41 0.176046 12 C s 22 0.167712 5 C s 27 0.167712 6 C s - - Vector 20 Occ=1.000000D+00 E=-6.482775D-01 Symmetry=ag - MO Center= 4.5D-17, -1.5D-15, -3.7D-32, r^2= 1.0D+01 + + Vector 20 Occ=1.000000D+00 E=-6.482774D-01 Symmetry=ag + MO Center= -2.5D-14, 4.5D-14, -1.0D-16, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.222212 15 C px 54 -0.222212 16 C px @@ -1371,29 +1376,29 @@ 57 0.181594 17 H s 58 0.181594 18 H s 36 -0.160006 11 C s 41 -0.160006 12 C s 45 -0.150901 13 H s 46 -0.150901 14 H s - - Vector 21 Occ=1.000000D+00 E=-6.329043D-01 Symmetry=bu - MO Center= -3.6D-15, -1.5D-14, 7.4D-32, r^2= 9.2D+00 + + Vector 21 Occ=1.000000D+00 E=-6.329042D-01 Symmetry=bu + MO Center= 1.4D-15, -1.9D-14, 2.0D-23, r^2= 9.2D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 14 0.215331 3 C py 19 0.215331 4 C py 37 0.213660 11 C px 42 0.213660 12 C px 50 0.194026 15 C py 55 0.194026 16 C py - 3 0.168546 1 C px 8 0.168546 2 C px + 3 0.168547 1 C px 8 0.168547 2 C px 59 -0.153677 19 H s 60 0.153677 20 H s - + Vector 22 Occ=1.000000D+00 E=-6.012788D-01 Symmetry=bu - MO Center= 2.8D-15, 1.4D-14, -9.9D-23, r^2= 7.7D+00 + MO Center= -1.3D-15, -9.8D-15, 5.9D-35, r^2= 7.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 38 0.203630 11 C py 43 0.203630 12 C py - 13 0.190531 3 C px 18 0.190531 4 C px - 49 0.190416 15 C px 54 0.190416 16 C px + 13 0.190532 3 C px 18 0.190532 4 C px + 49 0.190415 15 C px 54 0.190415 16 C px 24 0.184533 5 C py 29 0.184533 6 C py 2 -0.180455 1 C s 7 0.180455 2 C s - + Vector 23 Occ=1.000000D+00 E=-5.932512D-01 Symmetry=bu - MO Center= -1.6D-14, -5.8D-14, 7.9D-21, r^2= 7.3D+00 + MO Center= -1.0D-14, -8.1D-14, 3.7D-22, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 23 0.288739 5 C px 28 0.288739 6 C px @@ -1401,9 +1406,9 @@ 49 0.180460 15 C px 54 0.180460 16 C px 2 0.164820 1 C s 7 -0.164820 2 C s 4 -0.158181 1 C py 9 -0.158181 2 C py - + Vector 24 Occ=1.000000D+00 E=-5.849175D-01 Symmetry=ag - MO Center= 7.2D-15, 4.8D-14, 2.3D-16, r^2= 1.5D+01 + MO Center= 7.5D-15, 7.8D-14, 2.1D-16, r^2= 1.5D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.343394 15 C py 55 -0.343394 16 C py @@ -1411,39 +1416,39 @@ 59 -0.248478 19 H s 60 -0.248478 20 H s 45 -0.151276 13 H s 46 -0.151276 14 H s 24 0.132024 5 C py 29 -0.132024 6 C py - - Vector 25 Occ=1.000000D+00 E=-5.681423D-01 Symmetry=bu - MO Center= 1.4D-14, -3.7D-15, -3.4D-31, r^2= 4.5D+00 + + Vector 25 Occ=1.000000D+00 E=-5.681424D-01 Symmetry=bu + MO Center= 2.4D-14, 9.8D-15, -2.1D-23, r^2= 4.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 13 0.334306 3 C px 18 0.334306 4 C px + 13 0.334305 3 C px 18 0.334305 4 C px 31 0.251506 7 H s 32 -0.251506 8 H s - 24 -0.203060 5 C py 29 -0.203060 6 C py - 33 0.192303 9 H s 34 -0.192303 10 H s + 24 -0.203061 5 C py 29 -0.203061 6 C py + 33 0.192304 9 H s 34 -0.192304 10 H s 23 0.190748 5 C px 28 0.190748 6 C px - - Vector 26 Occ=1.000000D+00 E=-5.492918D-01 Symmetry=bu - MO Center= -5.1D-16, 3.3D-18, -2.5D-32, r^2= 1.0D+01 + + Vector 26 Occ=1.000000D+00 E=-5.492919D-01 Symmetry=bu + MO Center= 5.1D-15, -2.5D-14, 1.1D-31, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 50 0.281360 15 C py 55 0.281360 16 C py - 37 0.220772 11 C px 42 0.220772 12 C px + 37 0.220771 11 C px 42 0.220771 12 C px 14 -0.214298 3 C py 19 -0.214298 4 C py 24 0.198267 5 C py 29 0.198267 6 C py 59 -0.180313 19 H s 60 0.180313 20 H s - + Vector 27 Occ=1.000000D+00 E=-5.351484D-01 Symmetry=ag - MO Center= 5.4D-16, -8.7D-16, -7.1D-17, r^2= 1.1D+01 + MO Center= -7.3D-16, -5.3D-15, 1.4D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 49 0.292081 15 C px 54 -0.292081 16 C px 57 0.242951 17 H s 58 0.242951 18 H s 37 -0.189598 11 C px 42 0.189598 12 C px 14 -0.171016 3 C py 19 0.171016 4 C py - 24 0.170662 5 C py 29 -0.170662 6 C py - + 24 0.170663 5 C py 29 -0.170663 6 C py + Vector 28 Occ=1.000000D+00 E=-5.173619D-01 Symmetry=au - MO Center= -6.1D-16, -6.2D-15, 3.5D-16, r^2= 3.6D+00 + MO Center= 1.0D-15, 7.5D-15, 2.5D-16, r^2= 3.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.335760 1 C pz 10 0.335760 2 C pz @@ -1451,19 +1456,19 @@ 25 0.299101 5 C pz 30 0.299101 6 C pz 39 0.178320 11 C pz 44 0.178320 12 C pz 51 0.082253 15 C pz 56 0.082253 16 C pz - - Vector 29 Occ=1.000000D+00 E=-4.994338D-01 Symmetry=bu - MO Center= -1.2D-15, -1.6D-14, 4.1D-22, r^2= 1.3D+01 + + Vector 29 Occ=1.000000D+00 E=-4.994339D-01 Symmetry=bu + MO Center= 1.4D-15, 2.3D-15, -2.4D-31, r^2= 1.3D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 45 0.256239 13 H s 46 -0.256239 14 H s 57 0.240764 17 H s 58 -0.240764 18 H s 37 -0.233080 11 C px 42 -0.233080 12 C px - 49 0.232063 15 C px 54 0.232063 16 C px + 49 0.232064 15 C px 54 0.232064 16 C px 4 0.215955 1 C py 9 0.215955 2 C py - + Vector 30 Occ=1.000000D+00 E=-4.917913D-01 Symmetry=ag - MO Center= 4.8D-16, 5.3D-15, -8.2D-16, r^2= 6.5D+00 + MO Center= 3.5D-17, 2.4D-16, 6.5D-17, r^2= 6.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.254333 1 C py 9 -0.254333 2 C py @@ -1471,9 +1476,9 @@ 33 -0.249495 9 H s 34 -0.249495 10 H s 38 0.223252 11 C py 43 -0.223252 12 C py 24 0.221300 5 C py 29 -0.221300 6 C py - + Vector 31 Occ=1.000000D+00 E=-4.811398D-01 Symmetry=ag - MO Center= 7.5D-17, 9.3D-15, 4.0D-16, r^2= 7.3D+00 + MO Center= -6.2D-18, 3.7D-16, -4.5D-18, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.268469 1 C px 8 -0.268469 2 C px @@ -1481,9 +1486,9 @@ 31 -0.237953 7 H s 32 -0.237953 8 H s 13 -0.213427 3 C px 18 0.213427 4 C px 45 -0.195861 13 H s 46 -0.195861 14 H s - + Vector 32 Occ=1.000000D+00 E=-4.507965D-01 Symmetry=bg - MO Center= -1.4D-15, -1.8D-14, 8.0D-18, r^2= 7.4D+00 + MO Center= -1.1D-15, -1.0D-14, -9.0D-18, r^2= 7.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.390136 11 C pz 44 0.390136 12 C pz @@ -1491,25 +1496,25 @@ 51 -0.236386 15 C pz 56 0.236386 16 C pz 25 -0.132973 5 C pz 30 0.132973 6 C pz 15 0.130020 3 C pz 20 -0.130020 4 C pz - + Vector 33 Occ=1.000000D+00 E=-3.911602D-01 Symmetry=bg - MO Center= -1.2D-14, 2.5D-15, -1.6D-18, r^2= 2.7D+00 + MO Center= -3.3D-16, 1.1D-16, 1.4D-25, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.462059 3 C pz 20 -0.462059 4 C pz 25 0.459179 5 C pz 30 -0.459179 6 C pz - + Vector 34 Occ=1.000000D+00 E=-3.887383D-01 Symmetry=au - MO Center= 1.3D-14, -1.1D-14, 2.9D-16, r^2= 1.0D+01 + MO Center= 2.8D-16, 6.4D-15, 2.4D-16, r^2= 1.0D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 0.446267 11 C pz 44 0.446267 12 C pz 51 0.370089 15 C pz 56 0.370089 16 C pz 15 -0.195216 3 C pz 20 -0.195216 4 C pz 25 -0.192201 5 C pz 30 -0.192201 6 C pz - + Vector 35 Occ=0.000000D+00 E=-3.004760D-01 Symmetry=bg - MO Center= 5.9D-16, 3.5D-14, 3.0D-21, r^2= 8.1D+00 + MO Center= 3.2D-16, -6.2D-15, 7.3D-19, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.382526 15 C pz 56 -0.382526 16 C pz @@ -1517,9 +1522,9 @@ 39 0.258978 11 C pz 44 -0.258978 12 C pz 25 -0.230918 5 C pz 30 0.230918 6 C pz 15 0.221571 3 C pz 20 -0.221571 4 C pz - + Vector 36 Occ=0.000000D+00 E=-1.470203D-01 Symmetry=au - MO Center= 3.8D-16, -1.8D-15, -3.0D-17, r^2= 8.3D+00 + MO Center= -4.0D-16, 5.7D-15, 5.0D-19, r^2= 8.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 -0.465917 15 C pz 56 -0.465917 16 C pz @@ -1527,17 +1532,17 @@ 25 -0.282231 5 C pz 30 -0.282231 6 C pz 15 -0.215524 3 C pz 20 -0.215524 4 C pz 39 0.193667 11 C pz 44 0.193667 12 C pz - + Vector 37 Occ=0.000000D+00 E=-1.034293D-01 Symmetry=au - MO Center= -4.1D-16, -7.4D-16, -1.4D-16, r^2= 2.7D+00 + MO Center= 1.8D-15, 7.2D-17, -1.6D-16, r^2= 2.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 15 0.586902 3 C pz 20 0.586902 4 C pz 25 -0.547895 5 C pz 30 -0.547895 6 C pz 5 -0.041553 1 C pz 10 -0.041553 2 C pz - - Vector 38 Occ=0.000000D+00 E=-7.365341D-02 Symmetry=bg - MO Center= -1.3D-17, 1.3D-16, -6.1D-20, r^2= 1.1D+01 + + Vector 38 Occ=0.000000D+00 E=-7.365342D-02 Symmetry=bg + MO Center= -2.8D-15, -3.0D-16, 1.9D-18, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 51 0.546329 15 C pz 56 -0.546329 16 C pz @@ -1545,19 +1550,19 @@ 15 -0.246423 3 C pz 20 0.246423 4 C pz 25 0.237312 5 C pz 30 -0.237312 6 C pz 5 0.036317 1 C pz 10 -0.036317 2 C pz - - Vector 39 Occ=0.000000D+00 E=-8.263554D-03 Symmetry=au - MO Center= 9.2D-17, -1.9D-15, -2.2D-16, r^2= 8.4D+00 + + Vector 39 Occ=0.000000D+00 E=-8.263563D-03 Symmetry=au + MO Center= 4.1D-16, 8.3D-16, -9.0D-18, r^2= 8.4D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 39 -0.527822 11 C pz 44 -0.527822 12 C pz 5 0.479886 1 C pz 10 0.479886 2 C pz - 51 0.410509 15 C pz 56 0.410509 16 C pz + 51 0.410510 15 C pz 56 0.410510 16 C pz 25 -0.189866 5 C pz 30 -0.189866 6 C pz 15 -0.154920 3 C pz 20 -0.154920 4 C pz - - Vector 40 Occ=0.000000D+00 E= 7.613878D-02 Symmetry=bg - MO Center= 1.8D-16, 9.5D-16, -3.1D-21, r^2= 4.0D+00 + + Vector 40 Occ=0.000000D+00 E= 7.613877D-02 Symmetry=bg + MO Center= 8.4D-16, -4.2D-15, 4.4D-19, r^2= 4.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 0.542343 1 C pz 10 -0.542343 2 C pz @@ -1565,210 +1570,210 @@ 25 0.462364 5 C pz 30 -0.462364 6 C pz 39 0.295326 11 C pz 44 -0.295326 12 C pz 51 -0.170149 15 C pz 56 0.170149 16 C pz - - Vector 41 Occ=0.000000D+00 E= 1.421612D-01 Symmetry=ag - MO Center= 1.1D-14, 3.5D-14, -1.1D-17, r^2= 8.6D+00 + + Vector 41 Occ=0.000000D+00 E= 1.421613D-01 Symmetry=ag + MO Center= 7.6D-15, 3.3D-14, -2.0D-17, r^2= 8.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 2 0.466414 1 C s 7 0.466414 2 C s - 33 -0.401079 9 H s 34 -0.401079 10 H s - 31 -0.391554 7 H s 32 -0.391554 8 H s - 38 -0.369959 11 C py 43 0.369959 12 C py - 36 -0.334156 11 C s 41 -0.334156 12 C s - - Vector 42 Occ=0.000000D+00 E= 1.508755D-01 Symmetry=bu - MO Center= -1.3D-14, -2.7D-14, -2.7D-19, r^2= 9.7D+00 + 2 0.466417 1 C s 7 0.466417 2 C s + 33 -0.401077 9 H s 34 -0.401077 10 H s + 31 -0.391553 7 H s 32 -0.391553 8 H s + 38 -0.369960 11 C py 43 0.369960 12 C py + 36 -0.334157 11 C s 41 -0.334157 12 C s + + Vector 42 Occ=0.000000D+00 E= 1.508757D-01 Symmetry=bu + MO Center= -1.0D-14, -2.0D-14, 3.5D-19, r^2= 9.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.369373 13 H s 46 -0.369373 14 H s + 45 0.369374 13 H s 46 -0.369374 14 H s 13 0.345945 3 C px 18 0.345945 4 C px 37 0.331162 11 C px 42 0.331162 12 C px - 57 -0.318133 17 H s 58 0.318133 18 H s - 31 -0.308968 7 H s 32 0.308968 8 H s - - Vector 43 Occ=0.000000D+00 E= 1.811461D-01 Symmetry=bu - MO Center= 6.8D-16, -7.3D-15, -3.6D-19, r^2= 6.3D+00 + 57 -0.318134 17 H s 58 0.318134 18 H s + 31 -0.308970 7 H s 32 0.308970 8 H s + + Vector 43 Occ=0.000000D+00 E= 1.811463D-01 Symmetry=bu + MO Center= 4.2D-15, -1.2D-14, -2.1D-19, r^2= 6.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 36 0.585785 11 C s 41 -0.585785 12 C s - 4 0.460899 1 C py 9 0.460899 2 C py - 33 0.399998 9 H s 34 -0.399998 10 H s - 2 0.342354 1 C s 7 -0.342354 2 C s + 36 0.585780 11 C s 41 -0.585780 12 C s + 4 0.460901 1 C py 9 0.460901 2 C py + 33 0.400004 9 H s 34 -0.400004 10 H s + 2 0.342347 1 C s 7 -0.342347 2 C s 38 0.336102 11 C py 43 0.336102 12 C py - - Vector 44 Occ=0.000000D+00 E= 1.979354D-01 Symmetry=ag - MO Center= 6.5D-15, 3.6D-15, -1.0D-16, r^2= 1.1D+01 + + Vector 44 Occ=0.000000D+00 E= 1.979357D-01 Symmetry=ag + MO Center= 2.6D-15, -5.6D-15, 2.1D-17, r^2= 1.1D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 45 0.553934 13 H s 46 0.553934 14 H s - 12 0.473530 3 C s 17 0.473530 4 C s - 57 -0.374126 17 H s 58 -0.374126 18 H s + 45 0.553933 13 H s 46 0.553933 14 H s + 12 0.473527 3 C s 17 0.473527 4 C s + 57 -0.374127 17 H s 58 -0.374127 18 H s 36 -0.346216 11 C s 41 -0.346216 12 C s 31 -0.317813 7 H s 32 -0.317813 8 H s - - Vector 45 Occ=0.000000D+00 E= 2.203490D-01 Symmetry=ag - MO Center= 1.1D-15, 1.4D-15, -6.5D-17, r^2= 8.1D+00 + + Vector 45 Occ=0.000000D+00 E= 2.203487D-01 Symmetry=ag + MO Center= -1.3D-14, 1.5D-14, -3.6D-17, r^2= 8.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 22 0.798709 5 C s 27 0.798709 6 C s - 48 0.499360 15 C s 53 0.499360 16 C s - 2 -0.453593 1 C s 7 -0.453593 2 C s - 57 -0.402269 17 H s 58 -0.402269 18 H s - 12 -0.378186 3 C s 17 -0.378186 4 C s - - Vector 46 Occ=0.000000D+00 E= 2.257458D-01 Symmetry=bu - MO Center= 9.7D-15, 7.5D-16, -2.8D-18, r^2= 8.3D+00 + 22 0.798708 5 C s 27 0.798708 6 C s + 48 0.499362 15 C s 53 0.499362 16 C s + 2 -0.453588 1 C s 7 -0.453588 2 C s + 57 -0.402268 17 H s 58 -0.402268 18 H s + 12 -0.378189 3 C s 17 -0.378189 4 C s + + Vector 46 Occ=0.000000D+00 E= 2.257456D-01 Symmetry=bu + MO Center= 2.0D-14, -2.1D-14, 2.9D-18, r^2= 8.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 22 0.657299 5 C s 27 -0.657299 6 C s - 2 0.519661 1 C s 7 -0.519661 2 C s - 12 -0.509278 3 C s 17 0.509278 4 C s - 48 0.437546 15 C s 53 -0.437546 16 C s - 31 0.428912 7 H s 32 -0.428912 8 H s - - Vector 47 Occ=0.000000D+00 E= 2.420309D-01 Symmetry=bu - MO Center= -1.2D-14, -7.2D-15, 4.4D-20, r^2= 1.1D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 31 0.497942 7 H s 32 -0.497942 8 H s - 45 0.490063 13 H s 46 -0.490063 14 H s - 36 -0.454626 11 C s 41 0.454626 12 C s + 2 0.519662 1 C s 7 -0.519662 2 C s + 12 -0.509279 3 C s 17 0.509279 4 C s + 48 0.437550 15 C s 53 -0.437550 16 C s + 31 0.428914 7 H s 32 -0.428914 8 H s + + Vector 47 Occ=0.000000D+00 E= 2.420308D-01 Symmetry=bu + MO Center= -1.1D-14, 9.3D-15, -4.5D-19, r^2= 1.1D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 31 0.497941 7 H s 32 -0.497941 8 H s + 45 0.490064 13 H s 46 -0.490064 14 H s + 36 -0.454628 11 C s 41 0.454628 12 C s 59 0.434459 19 H s 60 -0.434459 20 H s - 50 0.340886 15 C py 55 0.340886 16 C py - - Vector 48 Occ=0.000000D+00 E= 2.463285D-01 Symmetry=ag - MO Center= 8.7D-16, 4.7D-14, -9.7D-17, r^2= 7.3D+00 + 50 0.340887 15 C py 55 0.340887 16 C py + + Vector 48 Occ=0.000000D+00 E= 2.463279D-01 Symmetry=ag + MO Center= 7.8D-15, -1.2D-14, 4.6D-17, r^2= 7.3D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.733977 1 C s 7 0.733977 2 C s - 12 -0.670195 3 C s 17 -0.670195 4 C s - 36 -0.496800 11 C s 41 -0.496800 12 C s - 48 0.458169 15 C s 53 0.458169 16 C s - 31 0.352713 7 H s 32 0.352713 8 H s - - Vector 49 Occ=0.000000D+00 E= 2.700329D-01 Symmetry=bu - MO Center= 3.0D-15, -6.6D-14, -2.0D-18, r^2= 1.3D+01 - Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function - ----- ------------ --------------- ----- ------------ --------------- - 48 0.788399 15 C s 53 -0.788399 16 C s - 57 -0.590012 17 H s 58 0.590012 18 H s - 36 -0.426794 11 C s 41 0.426794 12 C s - 12 0.364523 3 C s 17 -0.364523 4 C s - 33 0.363948 9 H s 34 -0.363948 10 H s - + 12 -0.670197 3 C s 17 -0.670197 4 C s + 36 -0.496803 11 C s 41 -0.496803 12 C s + 48 0.458166 15 C s 53 0.458166 16 C s + 31 0.352715 7 H s 32 0.352715 8 H s + + Vector 49 Occ=0.000000D+00 E= 2.700333D-01 Symmetry=bu + MO Center= 3.9D-15, 5.9D-15, -2.1D-19, r^2= 1.3D+01 + Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function + ----- ------------ --------------- ----- ------------ --------------- + 48 0.788397 15 C s 53 -0.788397 16 C s + 57 -0.590008 17 H s 58 0.590008 18 H s + 36 -0.426799 11 C s 41 0.426799 12 C s + 12 0.364525 3 C s 17 -0.364525 4 C s + 33 0.363951 9 H s 34 -0.363951 10 H s + Vector 50 Occ=0.000000D+00 E= 2.904648D-01 Symmetry=ag - MO Center= -6.6D-15, 2.0D-14, 2.5D-17, r^2= 1.4D+01 + MO Center= -6.1D-15, 7.4D-15, -1.5D-17, r^2= 1.4D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 59 -0.570232 19 H s 60 -0.570232 20 H s + 59 -0.570234 19 H s 60 -0.570234 20 H s 22 -0.562454 5 C s 27 -0.562454 6 C s - 12 0.548634 3 C s 17 0.548634 4 C s - 48 0.548597 15 C s 53 0.548597 16 C s - 50 -0.407961 15 C py 55 0.407961 16 C py - - Vector 51 Occ=0.000000D+00 E= 3.235117D-01 Symmetry=ag - MO Center= 9.2D-16, 1.7D-15, 4.7D-17, r^2= 6.6D+00 + 12 0.548632 3 C s 17 0.548632 4 C s + 48 0.548598 15 C s 53 0.548598 16 C s + 50 -0.407962 15 C py 55 0.407962 16 C py + + Vector 51 Occ=0.000000D+00 E= 3.235116D-01 Symmetry=ag + MO Center= -1.6D-15, 1.4D-15, -8.7D-18, r^2= 6.6D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 4 0.618626 1 C py 9 -0.618626 2 C py - 36 -0.569431 11 C s 41 -0.569431 12 C s + 4 0.618627 1 C py 9 -0.618627 2 C py + 36 -0.569430 11 C s 41 -0.569430 12 C s 13 -0.448367 3 C px 18 0.448367 4 C px - 2 -0.350553 1 C s 7 -0.350553 2 C s - 23 -0.341528 5 C px 28 0.341528 6 C px - + 2 -0.350555 1 C s 7 -0.350555 2 C s + 23 -0.341530 5 C px 28 0.341530 6 C px + Vector 52 Occ=0.000000D+00 E= 3.477299D-01 Symmetry=bu - MO Center= -1.5D-15, 7.8D-16, 1.2D-18, r^2= 8.0D+00 + MO Center= -9.5D-16, -5.4D-15, 1.2D-19, r^2= 8.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 12 0.643809 3 C s 17 -0.643809 4 C s - 3 -0.550306 1 C px 8 -0.550306 2 C px + 12 0.643811 3 C s 17 -0.643811 4 C s + 3 -0.550307 1 C px 8 -0.550307 2 C px 24 -0.475389 5 C py 29 -0.475389 6 C py 50 0.464002 15 C py 55 0.464002 16 C py - 59 0.379364 19 H s 60 -0.379364 20 H s - + 59 0.379363 19 H s 60 -0.379363 20 H s + Vector 53 Occ=0.000000D+00 E= 3.814970D-01 Symmetry=ag - MO Center= 9.1D-16, -7.5D-16, -1.4D-17, r^2= 5.7D+00 + MO Center= -9.1D-16, 5.8D-16, -1.8D-17, r^2= 5.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 33 0.551266 9 H s 34 0.551266 10 H s + 33 0.551267 9 H s 34 0.551267 10 H s 13 0.545245 3 C px 18 -0.545245 4 C px 23 -0.507240 5 C px 28 0.507240 6 C px - 31 -0.496934 7 H s 32 -0.496934 8 H s + 31 -0.496936 7 H s 32 -0.496936 8 H s 24 0.368056 5 C py 29 -0.368056 6 C py - - Vector 54 Occ=0.000000D+00 E= 4.000064D-01 Symmetry=bu - MO Center= -1.1D-15, -2.5D-15, 2.8D-18, r^2= 4.5D+00 + + Vector 54 Occ=0.000000D+00 E= 4.000063D-01 Symmetry=bu + MO Center= -1.5D-15, -2.0D-16, -5.7D-18, r^2= 4.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 14 0.711181 3 C py 19 0.711181 4 C py - 22 0.591265 5 C s 27 -0.591265 6 C s - 2 -0.433873 1 C s 7 0.433873 2 C s - 24 0.422805 5 C py 29 0.422805 6 C py - 36 -0.397283 11 C s 41 0.397283 12 C s - - Vector 55 Occ=0.000000D+00 E= 4.297927D-01 Symmetry=bu - MO Center= -2.1D-16, -2.3D-15, -5.2D-18, r^2= 1.2D+01 + 14 0.711182 3 C py 19 0.711182 4 C py + 22 0.591264 5 C s 27 -0.591264 6 C s + 2 -0.433875 1 C s 7 0.433875 2 C s + 24 0.422807 5 C py 29 0.422807 6 C py + 36 -0.397282 11 C s 41 0.397282 12 C s + + Vector 55 Occ=0.000000D+00 E= 4.297925D-01 Symmetry=bu + MO Center= -6.3D-16, 2.1D-14, 9.5D-18, r^2= 1.2D+01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 49 -0.550854 15 C px 54 -0.550854 16 C px - 2 0.546774 1 C s 7 -0.546774 2 C s - 38 0.463784 11 C py 43 0.463784 12 C py + 49 -0.550856 15 C px 54 -0.550856 16 C px + 2 0.546773 1 C s 7 -0.546773 2 C s + 38 0.463785 11 C py 43 0.463785 12 C py 45 0.391558 13 H s 46 -0.391558 14 H s - 57 0.385222 17 H s 58 -0.385222 18 H s - - Vector 56 Occ=0.000000D+00 E= 4.407381D-01 Symmetry=ag - MO Center= 4.3D-16, 9.9D-15, 1.4D-17, r^2= 9.8D+00 + 57 0.385223 17 H s 58 -0.385223 18 H s + + Vector 56 Occ=0.000000D+00 E= 4.407378D-01 Symmetry=ag + MO Center= -8.2D-16, -2.0D-14, -2.2D-17, r^2= 9.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 37 0.559364 11 C px 42 -0.559364 12 C px - 50 -0.558668 15 C py 55 0.558668 16 C py - 14 0.422106 3 C py 19 -0.422106 4 C py + 50 -0.558669 15 C py 55 0.558669 16 C py + 14 0.422104 3 C py 19 -0.422104 4 C py 59 -0.353220 19 H s 60 -0.353220 20 H s - 24 0.343089 5 C py 29 -0.343089 6 C py - - Vector 57 Occ=0.000000D+00 E= 4.815296D-01 Symmetry=ag - MO Center= 4.3D-16, -2.1D-14, -4.1D-17, r^2= 9.8D+00 + 24 0.343087 5 C py 29 -0.343087 6 C py + + Vector 57 Occ=0.000000D+00 E= 4.815299D-01 Symmetry=ag + MO Center= 2.4D-15, 2.4D-14, 6.7D-18, r^2= 9.8D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 38 0.665726 11 C py 43 -0.665726 12 C py 49 -0.604996 15 C px 54 0.604996 16 C px 24 -0.426644 5 C py 29 0.426644 6 C py - 4 -0.381074 1 C py 9 0.381074 2 C py - 14 -0.358409 3 C py 19 0.358409 4 C py - - Vector 58 Occ=0.000000D+00 E= 5.114577D-01 Symmetry=bu - MO Center= 3.2D-16, 1.5D-14, 2.8D-19, r^2= 9.7D+00 + 4 -0.381073 1 C py 9 0.381073 2 C py + 14 -0.358411 3 C py 19 0.358411 4 C py + + Vector 58 Occ=0.000000D+00 E= 5.114574D-01 Symmetry=bu + MO Center= -1.1D-15, -1.2D-14, -4.0D-19, r^2= 9.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- - 37 0.615896 11 C px 42 0.615896 12 C px - 50 -0.550171 15 C py 55 -0.550171 16 C py - 48 -0.532024 15 C s 53 0.532024 16 C s - 38 -0.460168 11 C py 43 -0.460168 12 C py - 36 0.457097 11 C s 41 -0.457097 12 C s - - Vector 59 Occ=0.000000D+00 E= 5.713392D-01 Symmetry=ag - MO Center= 1.2D-16, -3.2D-16, 2.2D-16, r^2= 5.5D+00 + 37 0.615897 11 C px 42 0.615897 12 C px + 50 -0.550172 15 C py 55 -0.550172 16 C py + 48 -0.532023 15 C s 53 0.532023 16 C s + 38 -0.460166 11 C py 43 -0.460166 12 C py + 36 0.457095 11 C s 41 -0.457095 12 C s + + Vector 59 Occ=0.000000D+00 E= 5.713391D-01 Symmetry=ag + MO Center= -9.2D-16, -9.0D-15, -1.5D-18, r^2= 5.5D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.690790 1 C px 8 -0.690790 2 C px - 14 -0.535772 3 C py 19 0.535772 4 C py + 14 -0.535771 3 C py 19 0.535771 4 C py 23 -0.434504 5 C px 28 0.434504 6 C px 37 0.436310 11 C px 42 -0.436310 12 C px 24 -0.410491 5 C py 29 0.410491 6 C py - - Vector 60 Occ=0.000000D+00 E= 5.848853D-01 Symmetry=bu - MO Center= -9.7D-16, 3.4D-16, -1.5D-20, r^2= 3.7D+00 + + Vector 60 Occ=0.000000D+00 E= 5.848855D-01 Symmetry=bu + MO Center= 6.7D-16, 2.9D-15, 1.9D-20, r^2= 3.7D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.644413 1 C py 9 0.644413 2 C py 13 -0.568080 3 C px 18 -0.568080 4 C px 23 0.497669 5 C px 28 0.497669 6 C px - 24 -0.392914 5 C py 29 -0.392914 6 C py - 22 -0.387323 5 C s 27 0.387323 6 C s - + 24 -0.392913 5 C py 29 -0.392913 6 C py + 22 -0.387322 5 C s 27 0.387322 6 C s + Final MO vectors ---------------- - + global array: alpha evecs[1:60,1:60], handle: -995 @@ -1778,46 +1783,46 @@ 2 0.03127 0.03108 0.00758 -0.00410 -0.00467 -0.00669 3 -0.00005 0.00000 -0.00323 0.00483 -0.00404 -0.00211 4 -0.00102 -0.00075 -0.00239 0.00083 0.00261 0.00349 - 5 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 5 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 6 -0.70027 0.70029 0.00991 0.00623 -0.00578 0.00961 7 -0.03127 0.03108 -0.00758 -0.00410 0.00467 -0.00669 8 -0.00005 -0.00000 -0.00323 -0.00483 -0.00404 0.00211 9 -0.00102 0.00075 -0.00239 -0.00083 0.00261 -0.00349 - 10 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 10 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 11 -0.00703 -0.00745 -0.15505 -0.17942 0.68291 0.67498 12 -0.00713 -0.00653 -0.01347 -0.01415 0.02876 0.02805 13 0.00353 0.00335 0.00108 0.00101 -0.00090 -0.00053 14 -0.00271 -0.00293 0.00435 0.00432 0.00048 0.00073 - 15 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 15 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 16 0.00703 -0.00745 0.15505 -0.17942 -0.68291 0.67498 17 0.00713 -0.00653 0.01347 -0.01415 -0.02876 0.02805 18 0.00353 -0.00335 0.00108 -0.00101 -0.00090 0.00053 19 -0.00271 0.00293 0.00435 -0.00432 0.00048 -0.00073 - 20 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 21 0.00735 -0.00773 0.68281 0.67684 0.15604 0.17943 + 20 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 21 0.00735 -0.00773 0.68281 0.67684 0.15605 0.17943 22 0.00710 -0.00649 0.03179 0.03148 0.00032 0.00167 23 -0.00420 0.00408 -0.00073 -0.00042 -0.00078 -0.00075 24 -0.00141 0.00169 0.00177 0.00172 -0.00410 -0.00407 - 25 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 26 -0.00735 -0.00773 -0.68281 0.67684 -0.15604 0.17943 + 25 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 26 -0.00735 -0.00773 -0.68281 0.67684 -0.15605 0.17943 27 -0.00710 -0.00649 -0.03179 0.03148 -0.00032 0.00167 28 -0.00420 -0.00408 -0.00073 0.00042 -0.00078 0.00075 29 -0.00141 -0.00169 0.00177 -0.00172 -0.00410 0.00407 - 30 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 30 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 31 0.00022 0.00011 0.00156 0.00166 -0.00604 -0.00610 32 -0.00022 0.00011 -0.00156 0.00166 0.00604 -0.00610 33 -0.00022 0.00011 -0.00616 -0.00617 -0.00122 -0.00158 34 0.00022 0.00011 0.00616 -0.00617 0.00122 -0.00158 - 35 0.00884 -0.00895 -0.00172 -0.00404 0.01370 -0.05658 + 35 0.00884 -0.00895 -0.00172 -0.00403 0.01371 -0.05656 36 0.00588 -0.00594 0.00016 -0.00011 0.00046 -0.00239 37 0.00088 -0.00089 0.00007 0.00012 0.00001 -0.00010 38 0.00398 -0.00403 0.00005 -0.00005 -0.00004 0.00003 - 39 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 40 -0.00884 -0.00895 0.00172 -0.00404 -0.01370 -0.05658 + 39 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 40 -0.00884 -0.00895 0.00172 -0.00403 -0.01371 -0.05656 41 -0.00588 -0.00594 -0.00016 -0.00011 -0.00046 -0.00239 42 0.00088 0.00089 0.00007 -0.00012 0.00001 0.00010 43 0.00398 0.00403 0.00005 0.00005 -0.00004 -0.00003 - 44 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 44 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 45 -0.00015 0.00016 -0.00003 -0.00001 -0.00008 0.00043 46 0.00015 0.00016 0.00003 -0.00001 0.00008 0.00043 47 -0.00004 0.00004 -0.00272 -0.00204 -0.00045 0.00041 @@ -1841,54 +1846,54 @@ 2 0.00518 -0.00564 0.00025 -0.00027 0.29061 0.30213 3 0.00072 -0.00078 0.00007 -0.00007 -0.00782 0.00093 4 0.00401 -0.00375 0.00024 -0.00023 -0.04781 0.02549 - 5 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 5 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 6 0.01000 0.01082 0.00086 0.00090 -0.11236 0.11230 7 -0.00518 -0.00564 -0.00025 -0.00027 0.29061 -0.30213 8 0.00072 0.00078 0.00007 0.00007 0.00782 0.00093 9 0.00401 0.00375 0.00024 0.00023 0.04781 0.02549 - 10 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 11 -0.01360 0.05348 -0.00134 0.00371 -0.09563 -0.04081 + 10 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 11 -0.01360 0.05346 -0.00134 0.00371 -0.09563 -0.04081 12 -0.00069 0.00221 -0.00007 0.00006 0.23920 0.10575 - 13 0.00000 0.00007 -0.00000 0.00002 -0.06119 -0.03319 + 13 0.00000 0.00007 -0.00000 0.00002 -0.06120 -0.03319 14 -0.00003 0.00016 0.00009 -0.00001 -0.01194 0.06227 - 15 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 16 0.01360 0.05348 0.00134 0.00371 -0.09563 0.04081 + 15 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 16 0.01360 0.05346 0.00134 0.00371 -0.09563 0.04081 17 0.00069 0.00221 0.00007 0.00006 0.23920 -0.10575 - 18 0.00000 -0.00007 -0.00000 -0.00002 0.06119 -0.03319 + 18 0.00000 -0.00007 -0.00000 -0.00002 0.06120 -0.03319 19 -0.00003 -0.00016 0.00009 0.00001 0.01194 0.06227 - 20 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 21 -0.00171 0.01814 0.00264 0.00346 -0.09616 0.04670 + 20 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 21 -0.00171 0.01813 0.00264 0.00346 -0.09616 0.04670 22 0.00022 0.00040 0.00009 0.00006 0.24119 -0.12183 23 0.00003 0.00002 0.00001 0.00000 -0.05422 0.05174 24 0.00003 -0.00044 0.00011 0.00006 0.03047 0.04807 - 25 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 26 0.00171 0.01814 -0.00264 0.00346 -0.09616 -0.04670 + 25 -0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 26 0.00171 0.01813 -0.00264 0.00346 -0.09616 -0.04670 27 -0.00022 0.00040 -0.00009 0.00006 0.24119 0.12183 28 0.00003 -0.00002 0.00001 -0.00000 0.05422 0.05174 29 0.00003 0.00044 0.00011 -0.00006 -0.03047 0.04807 - 30 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 30 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 31 0.00013 -0.00051 0.00002 -0.00005 0.03738 0.02352 32 -0.00013 -0.00051 -0.00002 -0.00005 0.03738 -0.02352 - 33 -0.00014 -0.00033 0.00007 0.00007 0.03860 -0.02855 - 34 0.00014 -0.00033 -0.00007 0.00007 0.03860 0.02855 + 33 -0.00013 -0.00033 0.00007 0.00007 0.03860 -0.02855 + 34 0.00013 -0.00033 -0.00007 0.00007 0.03860 0.02855 35 0.69769 0.69551 0.06081 0.06091 -0.04655 0.10813 36 0.03128 0.03118 -0.00469 -0.00468 0.11806 -0.27892 37 0.00116 0.00115 -0.00306 -0.00306 0.01486 -0.04006 38 -0.00124 -0.00125 0.00335 0.00334 0.02893 -0.01300 - 39 -0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 39 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 40 -0.69769 0.69551 -0.06081 0.06091 -0.04655 -0.10813 41 -0.03128 0.03118 0.00469 -0.00468 0.11806 0.27892 42 0.00116 -0.00115 -0.00306 0.00306 -0.01486 -0.04006 43 -0.00124 0.00125 0.00335 -0.00334 -0.02893 -0.01300 - 44 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 44 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 45 -0.00632 -0.00631 -0.00042 -0.00043 0.02036 -0.05423 46 0.00632 -0.00631 0.00042 -0.00043 0.02036 0.05423 - 47 -0.05994 -0.06021 0.69794 0.69792 -0.02279 0.07625 + 47 -0.05994 -0.06020 0.69794 0.69792 -0.02279 0.07625 48 -0.00992 -0.00992 0.03028 0.03028 0.05880 -0.20089 49 0.00311 0.00310 -0.00076 -0.00076 -0.01203 0.03716 50 -0.00355 -0.00354 0.00084 0.00084 0.02047 -0.05355 - 51 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 - 52 0.05994 -0.06021 -0.69794 0.69792 -0.02279 -0.07625 + 51 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 52 0.05994 -0.06020 -0.69794 0.69792 -0.02279 -0.07625 53 0.00992 -0.00992 -0.03028 0.03028 0.05880 0.20089 54 0.00311 -0.00310 -0.00076 0.00076 0.01203 0.03716 55 -0.00355 0.00354 0.00084 -0.00084 -0.02047 -0.05355 @@ -1904,32 +1909,32 @@ 2 0.01734 0.04829 0.26688 -0.22405 -0.16017 0.02484 3 0.00948 0.13516 -0.02702 -0.13282 0.20399 -0.06319 4 0.10047 -0.02838 -0.06693 -0.07933 -0.07416 -0.16101 - 5 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 5 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 6 -0.00527 0.01741 0.09541 0.07503 0.05280 0.00878 7 0.01734 -0.04829 -0.26688 -0.22405 -0.16017 -0.02484 8 -0.00948 0.13516 -0.02702 0.13282 -0.20399 -0.06319 9 -0.10047 -0.02838 -0.06693 0.07933 0.07416 -0.16101 - 10 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 10 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 11 0.04392 -0.13456 -0.03234 0.00059 -0.11307 -0.05004 12 -0.11476 0.36392 0.08827 -0.00291 0.33434 0.15360 13 0.02018 -0.01164 -0.04027 0.02991 0.05770 -0.01295 14 0.03445 -0.05118 0.08767 -0.17096 0.03671 -0.00052 - 15 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 16 0.04392 0.13456 0.03234 0.00059 -0.11307 0.05004 17 -0.11476 -0.36392 -0.08827 -0.00291 0.33434 -0.15360 18 -0.02018 -0.01164 -0.04027 -0.02991 -0.05770 -0.01295 19 -0.03445 -0.05118 0.08767 0.17096 -0.03671 -0.00052 - 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 20 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 21 0.03885 -0.11828 0.07489 -0.08665 0.05701 0.02988 - 22 -0.10118 0.32045 -0.20525 0.24908 -0.16985 -0.09148 + 22 -0.10118 0.32045 -0.20525 0.24908 -0.16985 -0.09149 23 0.00586 0.02601 0.05754 0.05761 0.08949 0.04360 24 -0.04691 0.06912 0.03893 0.03189 0.17844 0.07850 - 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 25 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 26 0.03885 0.11828 -0.07489 -0.08665 0.05701 -0.02988 - 27 -0.10118 -0.32045 0.20525 0.24908 -0.16985 0.09148 + 27 -0.10118 -0.32045 0.20525 0.24908 -0.16985 0.09149 28 -0.00586 0.02601 0.05754 -0.05761 -0.08949 0.04360 29 0.04691 0.06912 0.03893 -0.03189 -0.17844 0.07850 - 30 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 30 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 31 -0.01911 0.08699 0.02090 -0.01581 0.14424 0.04207 32 -0.01911 -0.08699 -0.02090 -0.01581 0.14424 -0.04207 33 -0.01299 0.07881 -0.04695 0.09666 -0.07714 -0.04755 @@ -1938,24 +1943,24 @@ 36 0.31236 0.00514 0.16223 -0.14818 -0.01747 0.30925 37 0.05597 0.02457 0.04600 0.07525 -0.04283 -0.10950 38 -0.05817 -0.02337 -0.12427 -0.13724 -0.08097 0.06228 - 39 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 39 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 40 -0.11949 0.00229 0.06156 0.04912 0.00526 0.10004 41 0.31236 -0.00514 -0.16223 -0.14818 -0.01747 -0.30925 42 -0.05597 0.02457 0.04600 -0.07525 0.04283 -0.10950 43 0.05817 -0.02337 -0.12427 0.13724 0.08097 0.06228 - 44 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 44 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 45 0.06568 -0.00705 0.03802 -0.06568 0.02806 0.15284 46 0.06568 0.00705 -0.03802 -0.06568 0.02806 -0.15284 47 -0.12014 -0.01850 -0.11386 -0.08132 -0.04025 0.08497 48 0.32250 0.04960 0.31356 0.23895 0.12255 -0.26836 49 -0.05334 -0.00089 -0.04239 0.02495 -0.01713 -0.11702 50 0.06386 0.00901 0.03327 -0.02656 -0.04155 0.08840 - 51 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 51 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 52 -0.12014 0.01850 0.11386 -0.08132 -0.04025 -0.08497 53 0.32250 -0.04960 -0.31356 0.23895 0.12255 0.26836 54 0.05334 -0.00089 -0.04239 -0.02495 0.01713 -0.11702 55 -0.06386 0.00901 0.03327 0.02656 0.04155 0.08840 - 56 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 56 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 57 0.06692 0.01495 0.06906 0.08613 0.02223 -0.14725 58 0.06692 -0.01495 -0.06906 0.08613 0.02223 0.14725 59 0.06354 0.00999 0.07439 0.07958 0.05739 -0.11450 @@ -1967,58 +1972,58 @@ 2 -0.15079 0.10373 -0.05653 -0.17516 0.17324 -0.06013 3 -0.00915 0.05371 0.17323 -0.18183 -0.14515 -0.01084 4 0.16233 0.12631 -0.14838 -0.07141 -0.15422 -0.00207 - 5 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 5 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 6 0.04941 -0.03074 -0.01605 -0.05016 0.04943 0.01762 7 -0.15079 0.10373 0.05653 0.17516 -0.17324 -0.06013 8 0.00915 -0.05371 0.17323 -0.18183 -0.14515 0.01084 9 -0.16233 -0.12631 -0.14838 -0.07141 -0.15422 0.00207 - 10 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 10 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 11 -0.01586 -0.01651 -0.01592 -0.04851 0.02675 -0.02456 - 12 0.05459 0.06225 0.05440 0.16655 -0.09606 0.08308 + 12 0.05459 0.06225 0.05440 0.16655 -0.09606 0.08309 13 0.19009 0.13276 -0.02291 0.18307 -0.11531 -0.00726 14 -0.08542 0.13516 0.21513 -0.09029 -0.07937 -0.07063 - 15 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 15 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 16 -0.01586 -0.01651 0.01592 0.04851 -0.02675 -0.02456 - 17 0.05459 0.06225 -0.05440 -0.16655 0.09606 0.08308 + 17 0.05459 0.06225 -0.05440 -0.16655 0.09606 0.08309 18 -0.19009 -0.13276 -0.02291 0.18307 -0.11531 0.00726 19 0.08542 -0.13516 0.21513 -0.09029 -0.07937 0.07063 - 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 20 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 21 -0.05288 0.01534 0.03687 0.04863 -0.01828 0.02054 - 22 0.17073 -0.04215 -0.12037 -0.16822 0.06860 -0.07627 + 22 0.17073 -0.04215 -0.12036 -0.16822 0.06860 -0.07627 23 0.20340 0.09105 -0.10515 0.01483 0.28393 -0.03491 24 -0.02973 -0.13194 -0.14106 0.17996 -0.05903 0.12895 - 25 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 25 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 26 -0.05288 0.01534 -0.03687 -0.04863 0.01828 0.02054 - 27 0.17073 -0.04215 0.12037 0.16822 -0.06860 -0.07627 + 27 0.17073 -0.04215 0.12036 0.16822 -0.06860 -0.07627 28 -0.20340 -0.09105 -0.10515 0.01483 0.28393 0.03491 29 0.02973 0.13194 -0.14106 0.17996 -0.05903 -0.12895 - 30 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 30 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 31 0.10239 0.12236 0.06143 0.17430 -0.14024 0.00806 32 0.10239 0.12236 -0.06143 -0.17430 0.14024 0.00806 - 33 0.15481 0.08835 -0.03786 -0.13733 0.23405 -0.10320 - 34 0.15481 0.08835 0.03786 0.13733 -0.23405 -0.10320 + 33 0.15481 0.08835 -0.03786 -0.13734 0.23405 -0.10320 + 34 0.15481 0.08835 0.03786 0.13734 -0.23405 -0.10320 35 -0.06006 0.04912 -0.01220 0.01247 -0.00535 -0.02207 - 36 0.18552 -0.15807 0.03574 -0.03359 0.01882 0.06214 + 36 0.18553 -0.15807 0.03574 -0.03359 0.01882 0.06214 37 -0.06093 0.10901 0.21189 -0.00347 -0.00099 0.26566 38 0.01733 0.18171 0.09557 0.20868 0.10718 -0.05973 - 39 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 39 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 40 -0.06006 0.04912 0.01220 -0.01247 0.00535 -0.02207 - 41 0.18552 -0.15807 -0.03574 0.03359 -0.01882 0.06214 + 41 0.18553 -0.15807 -0.03574 0.03359 -0.01882 0.06214 42 0.06093 -0.10901 0.21189 -0.00347 -0.00099 -0.26566 43 -0.01733 -0.18171 0.09557 0.20868 0.10718 0.05973 - 44 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 44 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 45 0.09990 -0.14589 -0.13652 -0.05392 0.00272 -0.15043 46 0.09990 -0.14589 0.13652 0.05392 -0.00272 -0.15043 47 0.05498 -0.02459 0.01442 -0.01490 0.00497 0.00284 48 -0.17745 0.09124 -0.05335 0.06396 -0.01168 -0.02489 49 -0.07380 0.22821 0.08196 0.20292 0.17561 0.00194 50 0.07802 -0.01439 0.19916 -0.06608 0.08506 0.35075 - 51 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 51 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 52 0.05498 -0.02459 -0.01442 0.01490 -0.00497 0.00284 53 -0.17745 0.09124 0.05335 -0.06396 0.01168 -0.02489 54 0.07380 -0.22821 0.08196 0.20292 0.17561 -0.00194 55 -0.07802 0.01439 0.19916 -0.06608 0.08506 -0.35075 - 56 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 56 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 57 -0.08778 0.17794 0.05131 0.14401 0.14368 0.02154 58 -0.08778 0.17794 -0.05131 -0.14401 -0.14368 0.02154 59 -0.08796 0.00375 -0.15133 0.02776 -0.09551 -0.24618 @@ -2026,377 +2031,377 @@ 25 26 27 28 29 30 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00365 -0.00542 0.02328 -0.00000 -0.01407 -0.00516 - 2 -0.01307 0.02017 -0.08530 0.00000 0.05893 0.02700 + 1 0.00365 -0.00542 0.02328 0.00000 -0.01407 -0.00516 + 2 -0.01307 0.02017 -0.08530 -0.00000 0.05893 0.02700 3 -0.10159 -0.13438 0.09473 0.00000 0.08370 -0.18108 - 4 0.10401 0.16393 0.03656 0.00000 0.21870 0.24799 - 5 -0.00000 -0.00000 0.00000 0.36205 0.00000 -0.00000 - 6 -0.00365 0.00542 0.02328 -0.00000 0.01407 -0.00516 - 7 0.01307 -0.02017 -0.08530 0.00000 -0.05893 0.02700 + 4 0.10401 0.16393 0.03656 -0.00000 0.21869 0.24799 + 5 -0.00000 0.00000 -0.00000 0.36205 -0.00000 0.00000 + 6 -0.00365 0.00542 0.02328 0.00000 0.01407 -0.00516 + 7 0.01307 -0.02017 -0.08530 -0.00000 -0.05893 0.02700 8 -0.10159 -0.13438 -0.09473 -0.00000 0.08370 0.18108 - 9 0.10401 0.16393 -0.03656 -0.00000 0.21870 -0.24799 - 10 -0.00000 -0.00000 0.00000 0.36205 -0.00000 0.00000 - 11 0.02130 0.01217 0.00874 -0.00000 0.00378 -0.00039 - 12 -0.06569 -0.04602 -0.04036 0.00000 -0.01046 0.00381 - 13 0.33509 0.04131 -0.14242 0.00000 0.05454 0.17154 + 9 0.10401 0.16393 -0.03656 0.00000 0.21869 -0.24799 + 10 -0.00000 0.00000 -0.00000 0.36205 -0.00000 0.00000 + 11 0.02130 0.01217 0.00874 0.00000 0.00378 -0.00039 + 12 -0.06569 -0.04602 -0.04036 -0.00000 -0.01046 0.00381 + 13 0.33509 0.04131 -0.14242 -0.00000 0.05454 0.17154 14 0.11820 -0.22030 -0.17002 0.00000 0.04671 -0.24538 - 15 -0.00000 -0.00000 0.00000 0.28543 -0.00000 -0.00000 - 16 -0.02130 -0.01217 0.00874 -0.00000 -0.00378 -0.00039 - 17 0.06569 0.04602 -0.04036 0.00000 0.01046 0.00381 - 18 0.33509 0.04131 0.14242 -0.00000 0.05454 -0.17154 + 15 -0.00000 0.00000 -0.00000 0.28543 -0.00000 0.00000 + 16 -0.02130 -0.01217 0.00874 0.00000 -0.00378 -0.00039 + 17 0.06569 0.04602 -0.04036 -0.00000 0.01046 0.00381 + 18 0.33509 0.04131 0.14242 0.00000 0.05454 -0.17154 19 0.11820 -0.22030 0.17002 -0.00000 0.04671 0.24538 - 20 -0.00000 -0.00000 0.00000 0.28543 -0.00000 0.00000 - 21 0.01638 -0.00903 -0.00919 0.00000 -0.01018 -0.00368 - 22 -0.05156 0.02619 0.03088 -0.00000 0.03583 0.00411 + 20 -0.00000 0.00000 -0.00000 0.28543 -0.00000 0.00000 + 21 0.01638 -0.00903 -0.00919 -0.00000 -0.01018 -0.00368 + 22 -0.05156 0.02619 0.03088 0.00000 0.03583 0.00411 23 0.19522 0.02656 0.06872 0.00000 -0.12660 -0.14232 24 -0.19376 0.21047 0.16890 -0.00000 -0.00925 0.21804 - 25 -0.00000 -0.00000 0.00000 0.28748 0.00000 0.00000 - 26 -0.01638 0.00903 -0.00919 0.00000 0.01018 -0.00368 - 27 0.05156 -0.02619 0.03088 -0.00000 -0.03583 0.00411 + 25 -0.00000 0.00000 -0.00000 0.28748 -0.00000 0.00000 + 26 -0.01638 0.00903 -0.00919 -0.00000 0.01018 -0.00368 + 27 0.05156 -0.02619 0.03088 0.00000 -0.03583 0.00411 28 0.19522 0.02656 -0.06872 -0.00000 -0.12660 0.14232 29 -0.19376 0.21047 -0.16890 0.00000 -0.00925 -0.21804 - 30 -0.00000 -0.00000 0.00000 0.28748 0.00000 -0.00000 - 31 0.24825 -0.04301 -0.17017 0.00000 0.03941 0.07447 - 32 -0.24825 0.04301 -0.17017 0.00000 -0.03941 0.07447 + 30 -0.00000 0.00000 -0.00000 0.28748 -0.00000 0.00000 + 31 0.24825 -0.04301 -0.17017 -0.00000 0.03941 0.07447 + 32 -0.24825 0.04301 -0.17017 -0.00000 -0.03941 0.07447 33 0.19086 -0.07288 -0.00437 0.00000 -0.04045 -0.25964 34 -0.19086 0.07288 -0.00437 0.00000 0.04045 -0.25964 35 -0.00369 -0.00083 -0.02363 0.00000 -0.00528 -0.01392 36 0.00855 -0.01326 0.09675 -0.00000 0.02546 0.05940 - 37 0.01719 0.21547 -0.19264 0.00000 -0.23613 0.04020 - 38 -0.08854 -0.16872 0.11896 0.00000 -0.13816 0.21071 - 39 0.00000 -0.00000 0.00000 0.16360 -0.00000 0.00000 + 37 0.01719 0.21547 -0.19264 -0.00000 -0.23613 0.04020 + 38 -0.08854 -0.16872 0.11896 -0.00000 -0.13816 0.21071 + 39 -0.00000 0.00000 -0.00000 0.16360 -0.00000 0.00000 40 0.00369 0.00083 -0.02363 0.00000 0.00528 -0.01392 41 -0.00855 0.01326 0.09675 -0.00000 -0.02546 0.05940 - 42 0.01719 0.21547 0.19264 -0.00000 -0.23613 -0.04020 - 43 -0.08854 -0.16872 -0.11896 -0.00000 -0.13816 -0.21071 - 44 -0.00000 -0.00000 0.00000 0.16360 0.00000 -0.00000 - 45 -0.00604 -0.13920 0.17274 -0.00000 0.26044 -0.05348 - 46 0.00604 0.13920 0.17274 -0.00000 -0.26044 -0.05348 + 42 0.01719 0.21547 0.19264 0.00000 -0.23613 -0.04020 + 43 -0.08854 -0.16872 -0.11896 0.00000 -0.13816 -0.21071 + 44 -0.00000 0.00000 -0.00000 0.16360 -0.00000 -0.00000 + 45 -0.00604 -0.13920 0.17274 0.00000 0.26044 -0.05348 + 46 0.00604 0.13920 0.17274 0.00000 -0.26044 -0.05348 47 0.00357 -0.01288 0.00970 -0.00000 0.00670 0.00468 48 -0.01812 0.02994 -0.02399 0.00000 -0.02457 -0.00970 - 49 -0.08868 -0.09005 0.29465 -0.00000 0.23457 0.01392 - 50 0.04248 0.28399 0.04103 -0.00000 0.14752 -0.15209 - 51 0.00000 -0.00000 0.00000 0.09264 0.00000 0.00000 + 49 -0.08868 -0.09005 0.29465 0.00000 0.23457 0.01392 + 50 0.04248 0.28399 0.04103 0.00000 0.14752 -0.15209 + 51 -0.00000 0.00000 -0.00000 0.09264 -0.00000 0.00000 52 -0.00357 0.01288 0.00970 -0.00000 -0.00670 0.00468 53 0.01812 -0.02994 -0.02399 0.00000 0.02457 -0.00970 - 54 -0.08868 -0.09005 -0.29465 0.00000 0.23457 -0.01392 - 55 0.04248 0.28399 -0.04103 0.00000 0.14752 0.15209 - 56 -0.00000 -0.00000 0.00000 0.09264 -0.00000 -0.00000 - 57 -0.05386 -0.03163 0.23766 -0.00000 0.23537 -0.05164 - 58 0.05386 0.03163 0.23766 -0.00000 -0.23537 -0.05164 - 59 -0.01882 -0.17827 -0.11462 0.00000 -0.20488 0.12789 - 60 0.01882 0.17827 -0.11462 0.00000 0.20488 0.12789 + 54 -0.08868 -0.09005 -0.29465 -0.00000 0.23457 -0.01392 + 55 0.04248 0.28399 -0.04103 -0.00000 0.14752 0.15209 + 56 -0.00000 0.00000 -0.00000 0.09264 -0.00000 -0.00000 + 57 -0.05386 -0.03163 0.23766 0.00000 0.23537 -0.05164 + 58 0.05386 0.03163 0.23766 0.00000 -0.23537 -0.05164 + 59 -0.01882 -0.17827 -0.11462 -0.00000 -0.20488 0.12789 + 60 0.01882 0.17827 -0.11462 -0.00000 0.20488 0.12789 31 32 33 34 35 36 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.01131 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 2 0.05090 0.00000 0.00000 0.00000 0.00000 0.00000 + 1 -0.01131 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 2 0.05090 0.00000 -0.00000 0.00000 0.00000 -0.00000 3 0.25746 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 4 0.13519 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 4 0.13519 0.00000 -0.00000 0.00000 0.00000 -0.00000 5 0.00000 0.38376 -0.02863 0.00545 0.37782 0.45460 - 6 -0.01131 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 7 0.05090 0.00000 0.00000 0.00000 0.00000 0.00000 + 6 -0.01131 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 7 0.05090 0.00000 -0.00000 0.00000 0.00000 -0.00000 8 -0.25746 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 9 -0.13519 -0.00000 0.00000 0.00000 0.00000 0.00000 - 10 -0.00000 -0.38376 -0.02863 -0.00545 -0.37782 0.45460 - 11 -0.00573 0.00000 -0.00000 0.00000 0.00000 0.00000 - 12 0.01313 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 13 -0.20238 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 14 -0.08769 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 9 -0.13519 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 10 0.00000 -0.38376 -0.02863 -0.00545 -0.37782 0.45460 + 11 -0.00573 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 12 0.01313 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 13 -0.20238 0.00000 0.00000 -0.00000 0.00000 0.00000 + 14 -0.08769 -0.00000 0.00000 0.00000 0.00000 0.00000 15 0.00000 0.13424 -0.16901 0.46083 0.19405 -0.25705 - 16 -0.00573 0.00000 -0.00000 0.00000 0.00000 0.00000 - 17 0.01313 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 18 0.20238 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 19 0.08769 0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 20 -0.00000 -0.13424 -0.16901 -0.46083 -0.19405 -0.25705 - 21 0.00221 -0.00000 0.00000 0.00000 0.00000 0.00000 - 22 -0.00445 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 23 0.25193 -0.00000 -0.00000 -0.00000 0.00000 0.00000 - 24 0.10901 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 25 -0.00000 -0.14019 -0.16786 0.46041 -0.20111 -0.29893 - 26 0.00221 0.00000 0.00000 0.00000 0.00000 0.00000 - 27 -0.00445 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 28 -0.25193 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 29 -0.10901 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 16 -0.00573 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 17 0.01313 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 18 0.20238 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 19 0.08769 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 20 0.00000 -0.13424 -0.16901 -0.46083 -0.19405 -0.25705 + 21 0.00221 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 22 -0.00445 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 23 0.25193 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 24 0.10901 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 25 0.00000 -0.14019 -0.16786 0.46041 -0.20111 -0.29893 + 26 0.00221 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 27 -0.00445 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 28 -0.25193 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 29 -0.10901 -0.00000 -0.00000 -0.00000 0.00000 0.00000 30 0.00000 0.14019 -0.16786 -0.46041 0.20111 -0.29893 - 31 -0.23450 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 32 -0.23450 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 33 0.11057 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 34 0.11057 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 35 -0.00764 -0.00000 0.00000 0.00000 0.00000 0.00000 - 36 0.02488 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 37 0.16612 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 38 0.13719 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 39 -0.00000 -0.34292 0.38991 -0.00493 0.22827 0.24804 - 40 -0.00764 -0.00000 0.00000 0.00000 0.00000 0.00000 - 41 0.02488 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 42 -0.16612 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 43 -0.13719 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 31 -0.23450 0.00000 0.00000 0.00000 0.00000 0.00000 + 32 -0.23450 0.00000 0.00000 0.00000 0.00000 0.00000 + 33 0.11058 -0.00000 0.00000 0.00000 0.00000 0.00000 + 34 0.11058 -0.00000 0.00000 0.00000 0.00000 0.00000 + 35 -0.00764 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 36 0.02488 0.00000 0.00000 0.00000 -0.00000 0.00000 + 37 0.16612 0.00000 0.00000 0.00000 0.00000 -0.00000 + 38 0.13719 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 39 0.00000 -0.34292 0.38991 -0.00493 0.22827 0.24804 + 40 -0.00764 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 41 0.02488 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 42 -0.16612 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 43 -0.13719 -0.00000 0.00000 0.00000 -0.00000 0.00000 44 0.00000 0.34292 0.38991 0.00493 -0.22827 0.24804 - 45 -0.20074 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 46 -0.20074 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 47 -0.00481 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 48 0.01940 -0.00000 0.00000 0.00000 0.00000 0.00000 - 49 -0.13819 0.00000 0.00000 0.00000 -0.00000 0.00000 - 50 -0.07790 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 51 -0.00000 -0.26543 0.44752 0.00480 0.42942 -0.41410 - 52 -0.00481 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 53 0.01940 -0.00000 0.00000 0.00000 0.00000 0.00000 - 54 0.13819 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 - 55 0.07790 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 45 -0.20074 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 46 -0.20074 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 47 -0.00481 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 48 0.01940 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 49 -0.13819 -0.00000 0.00000 0.00000 0.00000 0.00000 + 50 -0.07790 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 51 0.00000 -0.26543 0.44752 0.00480 0.42942 -0.41410 + 52 -0.00481 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 53 0.01940 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 54 0.13819 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 55 0.07790 0.00000 0.00000 0.00000 -0.00000 -0.00000 56 0.00000 0.26543 0.44752 -0.00480 -0.42942 -0.41410 - 57 -0.14119 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 58 -0.14119 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 59 0.12135 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 60 0.12135 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 57 -0.14119 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 58 -0.14119 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 59 0.12135 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 60 0.12135 0.00000 0.00000 0.00000 -0.00000 -0.00000 37 38 39 40 41 42 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00000 0.00000 -0.00000 0.00000 -0.08213 -0.04998 - 2 -0.00000 -0.00000 0.00000 -0.00000 0.48809 0.29399 - 3 -0.00000 -0.00000 0.00000 0.00000 0.09389 0.30043 - 4 -0.00000 0.00000 -0.00000 -0.00000 0.29342 0.22118 - 5 -0.02927 -0.01675 -0.46807 0.52687 0.00000 -0.00000 - 6 0.00000 0.00000 -0.00000 0.00000 -0.08213 0.04998 - 7 -0.00000 -0.00000 0.00000 -0.00000 0.48809 -0.29399 - 8 0.00000 0.00000 -0.00000 -0.00000 -0.09389 0.30043 - 9 0.00000 -0.00000 0.00000 0.00000 -0.29342 0.22118 - 10 -0.02927 0.01675 -0.46807 -0.52687 -0.00000 0.00000 - 11 -0.00000 -0.00000 -0.00000 0.00000 -0.01935 0.01715 - 12 0.00000 0.00000 -0.00000 -0.00000 0.11908 -0.09841 - 13 0.00000 -0.00000 0.00000 -0.00000 0.29526 0.34006 - 14 -0.00000 0.00000 -0.00000 -0.00000 0.01715 0.04222 - 15 0.58359 0.24537 0.15967 -0.47296 -0.00000 -0.00000 - 16 -0.00000 -0.00000 -0.00000 0.00000 -0.01935 -0.01715 - 17 0.00000 0.00000 -0.00000 -0.00000 0.11908 0.09841 - 18 -0.00000 0.00000 -0.00000 0.00000 -0.29526 0.34006 - 19 0.00000 -0.00000 0.00000 0.00000 -0.01715 0.04222 - 20 0.58359 -0.24537 0.15967 0.47296 0.00000 0.00000 - 21 0.00000 -0.00000 0.00000 0.00000 -0.03834 -0.02097 - 22 -0.00000 0.00000 -0.00000 -0.00000 0.23200 0.12333 - 23 -0.00000 0.00000 -0.00000 -0.00000 0.20717 0.25631 - 24 0.00000 0.00000 0.00000 0.00000 -0.08486 0.07153 - 25 -0.55247 -0.23539 0.19207 0.47377 0.00000 0.00000 - 26 0.00000 -0.00000 0.00000 0.00000 -0.03834 0.02097 - 27 -0.00000 0.00000 -0.00000 -0.00000 0.23200 -0.12333 - 28 0.00000 -0.00000 0.00000 0.00000 -0.20717 0.25631 - 29 -0.00000 -0.00000 -0.00000 -0.00000 0.08486 0.07153 + 1 -0.00000 -0.00000 -0.00000 -0.00000 -0.08213 -0.04998 + 2 -0.00000 0.00000 0.00000 0.00000 0.48810 0.29399 + 3 -0.00000 -0.00000 -0.00000 0.00000 0.09388 0.30043 + 4 0.00000 -0.00000 0.00000 0.00000 0.29342 0.22118 + 5 -0.02927 -0.01675 -0.46807 0.52687 -0.00000 0.00000 + 6 -0.00000 -0.00000 -0.00000 -0.00000 -0.08213 0.04998 + 7 -0.00000 0.00000 0.00000 0.00000 0.48810 -0.29399 + 8 0.00000 0.00000 0.00000 -0.00000 -0.09388 0.30043 + 9 -0.00000 0.00000 -0.00000 -0.00000 -0.29342 0.22118 + 10 -0.02927 0.01675 -0.46807 -0.52687 0.00000 0.00000 + 11 0.00000 -0.00000 0.00000 0.00000 -0.01935 0.01715 + 12 0.00000 0.00000 -0.00000 -0.00000 0.11907 -0.09840 + 13 0.00000 0.00000 0.00000 0.00000 0.29526 0.34006 + 14 0.00000 0.00000 0.00000 -0.00000 0.01715 0.04222 + 15 0.58359 0.24537 0.15967 -0.47296 -0.00000 0.00000 + 16 0.00000 -0.00000 0.00000 0.00000 -0.01935 -0.01715 + 17 0.00000 -0.00000 -0.00000 -0.00000 0.11907 0.09840 + 18 -0.00000 -0.00000 -0.00000 -0.00000 -0.29526 0.34006 + 19 -0.00000 -0.00000 -0.00000 0.00000 -0.01715 0.04222 + 20 0.58359 -0.24537 0.15967 0.47296 -0.00000 -0.00000 + 21 -0.00000 0.00000 -0.00000 0.00000 -0.03834 -0.02097 + 22 0.00000 0.00000 0.00000 -0.00000 0.23200 0.12333 + 23 0.00000 0.00000 -0.00000 0.00000 0.20717 0.25631 + 24 -0.00000 -0.00000 0.00000 0.00000 -0.08486 0.07153 + 25 -0.55247 -0.23539 0.19207 0.47377 0.00000 -0.00000 + 26 -0.00000 -0.00000 -0.00000 0.00000 -0.03834 0.02097 + 27 0.00000 0.00000 0.00000 -0.00000 0.23200 -0.12333 + 28 -0.00000 -0.00000 0.00000 -0.00000 -0.20717 0.25631 + 29 0.00000 0.00000 -0.00000 -0.00000 0.08486 0.07153 30 -0.55247 0.23539 0.19207 -0.47377 -0.00000 -0.00000 - 31 0.00000 -0.00000 0.00000 0.00000 -0.37808 -0.29551 - 32 0.00000 -0.00000 0.00000 0.00000 -0.37808 0.29551 - 33 -0.00000 -0.00000 -0.00000 0.00000 -0.39058 -0.22314 - 34 -0.00000 -0.00000 -0.00000 0.00000 -0.39058 0.22314 - 35 0.00000 0.00000 0.00000 -0.00000 0.06050 -0.02027 - 36 -0.00000 -0.00000 -0.00000 0.00000 -0.34760 0.11954 - 37 -0.00000 -0.00000 0.00000 -0.00000 -0.24702 0.32867 - 38 -0.00000 0.00000 -0.00000 0.00000 -0.37142 0.28378 - 39 0.00542 0.54055 0.55383 0.29205 0.00000 0.00000 - 40 0.00000 0.00000 0.00000 -0.00000 0.06050 0.02027 - 41 -0.00000 -0.00000 -0.00000 0.00000 -0.34760 -0.11954 - 42 0.00000 0.00000 -0.00000 0.00000 0.24702 0.32867 - 43 0.00000 -0.00000 0.00000 -0.00000 0.37142 0.28378 - 44 0.00542 -0.54055 0.55383 -0.29205 -0.00000 -0.00000 - 45 0.00000 -0.00000 0.00000 -0.00000 -0.12260 0.35376 - 46 0.00000 -0.00000 0.00000 -0.00000 -0.12260 -0.35376 - 47 -0.00000 0.00000 -0.00000 -0.00000 -0.03836 0.00978 - 48 0.00000 -0.00000 0.00000 0.00000 0.22213 -0.05941 - 49 0.00000 -0.00000 0.00000 0.00000 -0.15556 0.31437 - 50 0.00000 0.00000 -0.00000 -0.00000 -0.11857 0.13819 + 31 -0.00000 -0.00000 0.00000 0.00000 -0.37808 -0.29551 + 32 -0.00000 -0.00000 0.00000 0.00000 -0.37808 0.29551 + 33 0.00000 -0.00000 0.00000 0.00000 -0.39058 -0.22313 + 34 -0.00000 -0.00000 0.00000 0.00000 -0.39058 0.22313 + 35 0.00000 -0.00000 0.00000 0.00000 0.06050 -0.02027 + 36 -0.00000 0.00000 -0.00000 -0.00000 -0.34760 0.11954 + 37 0.00000 0.00000 0.00000 0.00000 -0.24702 0.32867 + 38 -0.00000 0.00000 -0.00000 -0.00000 -0.37142 0.28378 + 39 0.00542 0.54055 0.55383 0.29205 -0.00000 -0.00000 + 40 0.00000 -0.00000 0.00000 0.00000 0.06050 0.02027 + 41 -0.00000 0.00000 -0.00000 -0.00000 -0.34760 -0.11954 + 42 -0.00000 -0.00000 -0.00000 -0.00000 0.24702 0.32867 + 43 -0.00000 -0.00000 0.00000 0.00000 0.37142 0.28378 + 44 0.00542 -0.54055 0.55383 -0.29205 0.00000 -0.00000 + 45 0.00000 0.00000 -0.00000 -0.00000 -0.12260 0.35376 + 46 0.00000 0.00000 -0.00000 0.00000 -0.12260 -0.35376 + 47 0.00000 -0.00000 0.00000 0.00000 -0.03836 0.00978 + 48 -0.00000 0.00000 -0.00000 -0.00000 0.22213 -0.05941 + 49 -0.00000 0.00000 -0.00000 -0.00000 -0.15556 0.31437 + 50 -0.00000 -0.00000 -0.00000 -0.00000 -0.11857 0.13819 51 0.00767 -0.50055 -0.38637 -0.15571 0.00000 0.00000 - 52 -0.00000 0.00000 -0.00000 -0.00000 -0.03836 -0.00978 - 53 0.00000 -0.00000 0.00000 0.00000 0.22213 0.05941 - 54 -0.00000 0.00000 -0.00000 -0.00000 0.15556 0.31437 - 55 -0.00000 -0.00000 0.00000 0.00000 0.11857 0.13819 - 56 0.00767 0.50055 -0.38637 0.15571 0.00000 -0.00000 - 57 0.00000 0.00000 0.00000 -0.00000 0.13244 -0.32296 - 58 0.00000 0.00000 0.00000 -0.00000 0.13244 0.32296 - 59 -0.00000 0.00000 -0.00000 -0.00000 -0.34743 0.30474 - 60 -0.00000 0.00000 -0.00000 -0.00000 -0.34743 -0.30474 + 52 0.00000 -0.00000 0.00000 0.00000 -0.03836 -0.00978 + 53 -0.00000 0.00000 -0.00000 -0.00000 0.22213 0.05941 + 54 0.00000 -0.00000 0.00000 0.00000 0.15556 0.31437 + 55 0.00000 0.00000 0.00000 0.00000 0.11857 0.13819 + 56 0.00767 0.50055 -0.38637 0.15571 0.00000 0.00000 + 57 0.00000 -0.00000 0.00000 0.00000 0.13245 -0.32296 + 58 0.00000 -0.00000 0.00000 0.00000 0.13245 0.32296 + 59 0.00000 -0.00000 0.00000 -0.00000 -0.34743 0.30474 + 60 0.00000 -0.00000 0.00000 -0.00000 -0.34743 -0.30474 43 44 45 46 47 48 ----------- ----------- ----------- ----------- ----------- ----------- 1 -0.05890 0.03827 0.07098 -0.08394 -0.11739 -0.01705 - 2 0.34332 -0.23458 -0.43374 0.50515 0.72422 0.11283 - 3 -0.18170 -0.11013 0.32733 -0.14922 0.04493 -0.09182 - 4 0.44758 0.10801 -0.11576 -0.10778 -0.17319 -0.19632 - 5 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 2 0.34331 -0.23458 -0.43373 0.50516 0.72422 0.11283 + 3 -0.18170 -0.11012 0.32733 -0.14922 0.04493 -0.09182 + 4 0.44758 0.10801 -0.11576 -0.10777 -0.17319 -0.19632 + 5 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 6 0.05890 0.03827 0.07098 0.08394 -0.11739 0.01705 - 7 -0.34332 -0.23458 -0.43374 -0.50515 0.72422 -0.11283 - 8 -0.18170 0.11013 -0.32733 -0.14922 -0.04493 -0.09182 - 9 0.44758 -0.10801 0.11576 -0.10778 0.17319 -0.19632 - 10 0.00000 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 7 -0.34331 -0.23458 -0.43373 -0.50516 0.72422 -0.11283 + 8 -0.18170 0.11012 -0.32733 -0.14922 -0.04493 -0.09182 + 9 0.44758 -0.10801 0.11576 -0.10777 0.17319 -0.19632 + 10 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 11 0.02561 -0.07584 0.06628 0.08109 0.10219 0.04412 - 12 -0.15327 0.46746 -0.40591 -0.48430 -0.63884 -0.27564 - 13 -0.18818 -0.02323 0.00822 -0.11119 0.04374 -0.25818 - 14 0.25975 0.15429 0.23491 -0.08023 -0.23212 -0.30206 - 15 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 12 -0.15326 0.46746 -0.40591 -0.48430 -0.63884 -0.27563 + 13 -0.18818 -0.02323 0.00823 -0.11120 0.04374 -0.25818 + 14 0.25975 0.15429 0.23491 -0.08022 -0.23212 -0.30206 + 15 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 16 -0.02561 -0.07584 0.06628 -0.08109 0.10219 -0.04412 - 17 0.15327 0.46746 -0.40591 0.48430 -0.63884 0.27564 - 18 -0.18818 0.02323 -0.00822 -0.11119 -0.04374 -0.25818 - 19 0.25975 -0.15429 -0.23491 -0.08023 0.23212 -0.30206 - 20 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 21 -0.01554 -0.02864 -0.12523 -0.10583 0.03701 0.00979 - 22 0.08946 0.18053 0.77105 0.64337 -0.23438 -0.07061 - 23 -0.30339 0.14855 -0.12383 -0.04524 0.28055 -0.23825 + 17 0.15326 0.46746 -0.40591 0.48430 -0.63884 0.27563 + 18 -0.18818 0.02323 -0.00823 -0.11120 -0.04374 -0.25818 + 19 0.25975 -0.15429 -0.23491 -0.08022 0.23212 -0.30206 + 20 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 21 -0.01553 -0.02865 -0.12523 -0.10583 0.03701 0.00979 + 22 0.08946 0.18054 0.77105 0.64337 -0.23438 -0.07061 + 23 -0.30339 0.14855 -0.12383 -0.04525 0.28055 -0.23825 24 0.28968 -0.24822 -0.00251 -0.21929 0.24514 -0.07739 - 25 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 26 0.01554 -0.02864 -0.12523 0.10583 0.03701 -0.00979 - 27 -0.08946 0.18053 0.77105 -0.64337 -0.23438 0.07061 - 28 -0.30339 -0.14855 0.12383 -0.04524 -0.28055 -0.23825 + 25 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 26 0.01553 -0.02865 -0.12523 0.10583 0.03701 -0.00979 + 27 -0.08946 0.18054 0.77105 -0.64337 -0.23438 0.07061 + 28 -0.30339 -0.14855 0.12383 -0.04525 -0.28055 -0.23825 29 0.28968 0.24822 0.00251 -0.21929 -0.24514 -0.07739 - 30 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 31 0.16706 -0.32189 0.14727 0.41273 0.34003 0.51005 - 32 -0.16706 -0.32189 0.14727 -0.41273 0.34003 -0.51005 - 33 0.40005 -0.33256 -0.27021 -0.40973 0.09239 0.13145 - 34 -0.40005 -0.33256 -0.27021 0.40973 0.09239 -0.13145 + 30 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 31 0.16705 -0.32189 0.14727 0.41273 0.34003 0.51005 + 32 -0.16705 -0.32189 0.14727 -0.41273 0.34003 -0.51005 + 33 0.40006 -0.33256 -0.27021 -0.40972 0.09239 0.13146 + 34 -0.40006 -0.33256 -0.27021 0.40972 0.09239 -0.13146 35 -0.09990 0.05372 -0.03571 -0.01805 0.07988 0.06611 - 36 0.58720 -0.32288 0.21754 0.11502 -0.48320 -0.41960 + 36 0.58720 -0.32288 0.21753 0.11502 -0.48321 -0.41960 37 -0.01500 0.29450 -0.18171 -0.13468 0.09978 0.25865 - 38 0.32533 0.07476 0.22807 0.11991 0.00048 -0.04562 - 39 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 38 0.32533 0.07476 0.22807 0.11992 0.00048 -0.04562 + 39 0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 40 0.09990 0.05372 -0.03571 0.01805 0.07988 -0.06611 - 41 -0.58720 -0.32288 0.21754 -0.11502 -0.48320 0.41960 + 41 -0.58720 -0.32288 0.21753 -0.11502 -0.48321 0.41960 42 -0.01500 -0.29450 0.18171 -0.13468 -0.09978 0.25865 - 43 0.32533 -0.07476 -0.22807 0.11991 -0.00048 -0.04562 - 44 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 45 -0.26786 0.52076 -0.25865 -0.13180 0.34666 0.45835 - 46 0.26786 0.52076 -0.25865 0.13180 0.34666 -0.45835 + 43 0.32533 -0.07476 -0.22807 0.11992 -0.00048 -0.04562 + 44 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 45 -0.26786 0.52076 -0.25865 -0.13180 0.34666 0.45836 + 46 0.26786 0.52076 -0.25865 0.13180 0.34666 -0.45836 47 0.03527 -0.02222 -0.08171 -0.07626 -0.07467 0.04394 - 48 -0.20157 0.12898 0.51881 0.48152 0.46073 -0.28435 - 49 0.05532 0.30668 0.16114 0.20705 0.11193 0.02643 - 50 0.05558 0.20898 -0.04237 -0.07316 0.05118 0.34060 - 51 0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 48 -0.20157 0.12898 0.51881 0.48153 0.46073 -0.28435 + 49 0.05532 0.30668 0.16114 0.20705 0.11192 0.02643 + 50 0.05559 0.20897 -0.04237 -0.07315 0.05118 0.34060 + 51 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 52 -0.03527 -0.02222 -0.08171 0.07626 -0.07467 -0.04394 - 53 0.20157 0.12898 0.51881 -0.48152 0.46073 0.28435 - 54 0.05532 -0.30668 -0.16114 0.20705 -0.11193 0.02643 - 55 0.05558 -0.20898 0.04237 -0.07316 -0.05118 0.34060 - 56 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 57 0.00235 -0.40304 -0.38667 -0.39553 -0.35658 0.02855 - 58 -0.00235 -0.40304 -0.38667 0.39553 -0.35658 -0.02855 - 59 0.21759 0.22625 -0.25675 -0.25855 -0.16648 0.46224 - 60 -0.21759 0.22625 -0.25675 0.25855 -0.16648 -0.46224 + 53 0.20157 0.12898 0.51881 -0.48153 0.46073 0.28435 + 54 0.05532 -0.30668 -0.16114 0.20705 -0.11192 0.02643 + 55 0.05559 -0.20897 0.04237 -0.07315 -0.05118 0.34060 + 56 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 57 0.00235 -0.40304 -0.38666 -0.39554 -0.35658 0.02855 + 58 -0.00235 -0.40304 -0.38666 0.39554 -0.35658 -0.02855 + 59 0.21759 0.22625 -0.25676 -0.25855 -0.16648 0.46224 + 60 -0.21759 0.22625 -0.25676 0.25855 -0.16648 -0.46224 49 50 51 52 53 54 ----------- ----------- ----------- ----------- ----------- ----------- 1 0.05831 0.02569 0.04558 -0.00034 -0.00169 0.06301 - 2 -0.35376 -0.16335 -0.31752 0.01021 0.00631 -0.43952 + 2 -0.35376 -0.16334 -0.31753 0.01021 0.00631 -0.43953 3 -0.19196 -0.32615 0.14021 -0.54954 0.15495 -0.18441 4 0.11670 0.03797 0.61279 0.07112 0.01701 -0.03904 - 5 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 5 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 6 -0.05831 0.02569 0.04558 0.00034 -0.00169 -0.06301 - 7 0.35376 -0.16335 -0.31752 -0.01021 0.00631 0.43952 + 7 0.35376 -0.16334 -0.31753 -0.01021 0.00631 0.43953 8 -0.19196 0.32615 -0.14021 -0.54954 -0.15495 -0.18441 9 0.11670 -0.03797 -0.61279 0.07112 -0.01701 -0.03904 - 10 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 10 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 11 -0.05864 -0.09014 0.00199 -0.09529 -0.01181 0.04816 - 12 0.36131 0.57368 -0.00944 0.64060 0.06954 -0.32654 - 13 -0.17181 -0.14923 -0.43948 0.06032 0.54469 -0.23101 - 14 0.15234 -0.14224 0.11203 0.14373 0.15727 0.70796 - 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 12 0.36131 0.57368 -0.00944 0.64060 0.06955 -0.32654 + 13 -0.17180 -0.14924 -0.43948 0.06032 0.54469 -0.23101 + 14 0.15234 -0.14224 0.11204 0.14373 0.15727 0.70796 + 15 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 16 0.05864 -0.09014 0.00199 0.09529 -0.01181 -0.04816 - 17 -0.36131 0.57368 -0.00944 -0.64060 0.06954 0.32654 - 18 -0.17181 0.14923 0.43948 0.06032 -0.54469 -0.23101 - 19 0.15234 0.14224 -0.11203 0.14373 -0.15727 0.70796 - 20 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 17 -0.36131 0.57368 -0.00944 -0.64060 0.06955 0.32654 + 18 -0.17180 0.14924 0.43948 0.06032 -0.54469 -0.23101 + 19 0.15234 0.14224 -0.11204 0.14373 -0.15727 0.70796 + 20 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 21 0.05300 0.08993 -0.03636 -0.04413 0.01505 -0.08535 - 22 -0.32368 -0.57443 0.23759 0.30544 -0.09007 0.58517 - 23 -0.14481 -0.06867 -0.33543 -0.15723 -0.50669 0.38189 + 22 -0.32369 -0.57443 0.23759 0.30544 -0.09007 0.58516 + 23 -0.14480 -0.06867 -0.33543 -0.15723 -0.50669 0.38189 24 0.09049 -0.17492 0.08597 -0.46998 0.35572 0.43130 - 25 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 25 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 26 -0.05300 0.08993 -0.03636 0.04413 0.01505 0.08535 - 27 0.32368 -0.57443 0.23759 -0.30544 -0.09007 -0.58517 - 28 -0.14481 0.06867 0.33543 -0.15723 0.50669 0.38189 + 27 0.32369 -0.57443 0.23759 -0.30544 -0.09007 -0.58516 + 28 -0.14480 0.06867 0.33543 -0.15723 0.50669 0.38189 29 0.09049 0.17492 -0.08597 -0.46998 -0.35572 0.43130 - 30 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 31 -0.06619 -0.10721 0.30340 -0.35590 -0.49844 0.12462 - 32 0.06619 -0.10721 0.30340 0.35590 -0.49844 -0.12462 - 33 0.40067 0.27952 0.13808 -0.27116 0.55002 -0.27282 - 34 -0.40067 0.27952 0.13808 0.27116 0.55002 0.27282 + 30 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 + 31 -0.06620 -0.10721 0.30340 -0.35590 -0.49844 0.12462 + 32 0.06620 -0.10721 0.30340 0.35590 -0.49844 -0.12462 + 33 0.40068 0.27951 0.13808 -0.27116 0.55002 -0.27282 + 34 -0.40068 0.27951 0.13808 0.27116 0.55002 0.27282 35 0.07657 -0.02595 0.09257 0.02264 0.04617 0.05615 - 36 -0.46936 0.18631 -0.60027 -0.16972 -0.31718 -0.38313 + 36 -0.46936 0.18631 -0.60027 -0.16972 -0.31717 -0.38313 37 0.03747 -0.06437 0.12428 -0.22424 -0.13694 0.04128 - 38 0.13733 0.07194 -0.01913 0.05946 0.16445 -0.00237 - 39 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 38 0.13732 0.07194 -0.01913 0.05946 0.16445 -0.00237 + 39 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 40 -0.07657 -0.02595 0.09257 -0.02264 0.04617 -0.05615 - 41 0.46936 0.18631 -0.60027 0.16972 -0.31718 0.38313 + 41 0.46936 0.18631 -0.60027 0.16972 -0.31717 0.38313 42 0.03747 0.06437 -0.12428 -0.22424 0.13694 0.04128 - 43 0.13733 -0.07194 0.01913 0.05946 -0.16445 -0.00237 - 44 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 43 0.13732 -0.07194 0.01913 0.05946 -0.16445 -0.00237 + 44 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 45 0.31193 -0.09499 0.34348 -0.13232 0.07474 0.20739 46 -0.31193 -0.09499 0.34348 0.13232 0.07474 -0.20739 47 -0.11650 -0.08147 -0.02906 0.00423 -0.04257 -0.00055 - 48 0.73819 0.52463 0.18354 -0.01526 0.29424 0.00035 - 49 0.16735 0.13581 -0.31700 -0.02902 -0.06230 -0.19487 - 50 0.04715 -0.40842 -0.06063 0.45927 0.26602 0.12481 - 51 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 48 0.73819 0.52463 0.18353 -0.01526 0.29424 0.00035 + 49 0.16734 0.13581 -0.31700 -0.02901 -0.06230 -0.19487 + 50 0.04715 -0.40842 -0.06063 0.45927 0.26601 0.12481 + 51 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 52 0.11650 -0.08147 -0.02906 -0.00423 -0.04257 0.00055 - 53 -0.73819 0.52463 0.18354 0.01526 0.29424 -0.00035 - 54 0.16735 -0.13581 0.31700 -0.02902 0.06230 -0.19487 - 55 0.04715 0.40842 0.06063 0.45927 -0.26602 0.12481 - 56 0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 57 -0.57672 -0.34451 0.17329 -0.01304 -0.16513 0.17493 - 58 0.57672 -0.34451 0.17329 0.01304 -0.16513 -0.17493 - 59 -0.28037 -0.56986 -0.23030 0.37758 0.07035 0.04194 - 60 0.28037 -0.56986 -0.23030 -0.37758 0.07035 -0.04194 + 53 -0.73819 0.52463 0.18353 0.01526 0.29424 -0.00035 + 54 0.16734 -0.13581 0.31700 -0.02901 0.06230 -0.19487 + 55 0.04715 0.40842 0.06063 0.45927 -0.26601 0.12481 + 56 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 57 -0.57672 -0.34451 0.17329 -0.01305 -0.16513 0.17493 + 58 0.57672 -0.34451 0.17329 0.01305 -0.16513 -0.17493 + 59 -0.28037 -0.56986 -0.23030 0.37758 0.07035 0.04195 + 60 0.28037 -0.56986 -0.23030 -0.37758 0.07035 -0.04195 55 56 57 58 59 60 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.07726 0.01472 0.01892 0.01985 -0.00551 0.04011 + 1 -0.07726 0.01471 0.01892 0.01985 -0.00551 0.04011 2 0.52923 -0.09067 -0.12166 -0.14082 0.03670 -0.30348 3 -0.19308 -0.12058 0.11221 -0.44383 0.69128 0.16038 4 0.02006 -0.27775 -0.38378 0.13538 -0.04906 0.64294 - 5 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 6 0.07726 0.01472 0.01892 -0.01985 -0.00551 -0.04011 + 5 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 6 0.07726 0.01471 0.01892 -0.01985 -0.00551 -0.04011 7 -0.52923 -0.09067 -0.12166 0.14082 0.03670 0.30348 8 -0.19308 0.12058 -0.11221 -0.44383 -0.69128 0.16038 9 0.02006 0.27775 0.38378 0.13538 0.04906 0.64294 - 10 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 10 -0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 11 -0.00029 0.02578 -0.01873 -0.04485 0.00481 -0.04736 - 12 0.01196 -0.18288 0.13397 0.32498 -0.03416 0.34585 + 12 0.01196 -0.18288 0.13397 0.32497 -0.03416 0.34585 13 0.24851 0.23313 0.11252 -0.19550 0.23925 -0.56842 14 -0.00850 0.42547 -0.35107 0.12647 -0.54357 -0.24361 - 15 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 15 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 16 0.00029 0.02578 -0.01873 0.04485 0.00481 0.04736 - 17 -0.01196 -0.18288 0.13397 -0.32498 -0.03416 -0.34585 + 17 -0.01196 -0.18288 0.13397 -0.32497 -0.03416 -0.34585 18 0.24851 -0.23313 -0.11252 -0.19550 -0.23925 -0.56842 19 -0.00850 -0.42547 0.35107 0.12647 0.54357 -0.24361 - 20 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 20 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 21 -0.03836 -0.03426 0.01247 -0.02107 -0.00432 0.05217 - 22 0.25820 0.23635 -0.09200 0.15671 0.02976 -0.38311 + 22 0.25820 0.23635 -0.09201 0.15671 0.02976 -0.38311 23 -0.31856 0.14297 0.04138 -0.03754 -0.43755 0.49554 - 24 -0.09578 0.35201 -0.42419 -0.21381 -0.41770 -0.39765 - 25 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 24 -0.09578 0.35200 -0.42419 -0.21381 -0.41770 -0.39765 + 25 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 26 0.03836 -0.03426 0.01247 0.02107 -0.00432 -0.05217 - 27 -0.25820 0.23635 -0.09200 -0.15671 0.02976 0.38311 + 27 -0.25820 0.23635 -0.09201 -0.15671 0.02976 0.38311 28 -0.31856 -0.14297 -0.04138 -0.03754 0.43755 0.49554 - 29 -0.09578 -0.35201 0.42419 -0.21381 0.41770 -0.39765 - 30 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 31 -0.14284 -0.21597 -0.05398 -0.01662 -0.01209 0.29065 - 32 0.14284 -0.21597 -0.05398 0.01662 -0.01209 -0.29065 - 33 0.00032 -0.02343 -0.21481 -0.11392 0.04609 -0.29849 - 34 -0.00032 -0.02343 -0.21481 0.11392 0.04609 0.29849 + 29 -0.09578 -0.35200 0.42419 -0.21381 0.41770 -0.39765 + 30 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 31 -0.14284 -0.21597 -0.05398 -0.01662 -0.01208 0.29065 + 32 0.14284 -0.21597 -0.05398 0.01662 -0.01208 -0.29065 + 33 0.00032 -0.02344 -0.21481 -0.11392 0.04609 -0.29850 + 34 -0.00032 -0.02344 -0.21481 0.11392 0.04609 0.29850 35 0.03549 -0.03476 0.04093 -0.05874 -0.02532 -0.01108 36 -0.25925 0.24848 -0.32043 0.44796 0.20386 0.06537 - 37 0.31971 0.56281 -0.06038 0.62237 0.43355 0.02357 - 38 0.46956 0.10839 0.67026 -0.45610 -0.31475 0.37379 - 39 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 37 0.31971 0.56281 -0.06038 0.62238 0.43355 0.02357 + 38 0.46956 0.10839 0.67026 -0.45609 -0.31475 0.37379 + 39 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 40 -0.03549 -0.03476 0.04093 0.05874 -0.02532 0.01108 41 0.25925 0.24848 -0.32043 -0.44796 0.20386 -0.06537 - 42 0.31971 -0.56281 0.06038 0.62237 -0.43355 0.02357 - 43 0.46956 -0.10839 -0.67026 -0.45610 0.31475 0.37379 - 44 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 42 0.31971 -0.56281 0.06038 0.62238 -0.43355 0.02357 + 43 0.46956 -0.10839 -0.67026 -0.45609 0.31475 0.37379 + 44 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 45 0.40148 0.33902 0.18605 0.19579 0.17140 0.05739 46 -0.40148 0.33902 0.18605 -0.19579 0.17140 -0.05739 47 -0.02121 0.02963 -0.04422 0.06792 0.03939 -0.00990 48 0.14950 -0.22160 0.33503 -0.51829 -0.31147 0.08499 49 -0.55955 -0.13644 -0.60587 0.38397 0.25194 -0.23846 - 50 -0.23760 -0.55202 0.15069 -0.55273 -0.32186 0.00159 + 50 -0.23759 -0.55202 0.15069 -0.55273 -0.32186 0.00159 51 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 52 0.02121 0.02963 -0.04422 -0.06792 0.03939 0.00990 53 -0.14950 -0.22160 0.33503 0.51829 -0.31147 -0.08499 54 -0.55955 0.13644 0.60587 0.38397 -0.25194 -0.23846 - 55 -0.23760 0.55202 -0.15069 -0.55273 0.32186 0.00159 - 56 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 55 -0.23759 0.55202 -0.15069 -0.55273 0.32186 0.00159 + 56 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 57 0.39097 0.26887 0.30933 -0.00831 -0.03714 0.15474 58 -0.39097 0.26887 0.30933 0.00831 -0.03714 -0.15474 59 -0.36799 -0.35303 -0.14874 -0.11604 -0.05708 -0.07237 @@ -2410,58 +2415,58 @@ 2 0.03097 0.03078 0.00759 -0.00390 -0.00475 0.00502 3 -0.00005 0.00000 -0.00316 0.00487 -0.00047 0.00057 4 -0.00101 -0.00074 -0.00244 0.00081 -0.00418 0.00410 - 5 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 5 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 6 -0.70031 0.70033 0.01084 0.00641 0.01038 0.01065 7 -0.03097 0.03078 -0.00759 -0.00390 -0.00475 -0.00502 8 -0.00005 -0.00000 -0.00316 -0.00487 0.00047 0.00057 9 -0.00101 0.00074 -0.00244 -0.00081 0.00418 0.00410 - 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 11 -0.00774 -0.00812 -0.16580 -0.19222 -0.03439 0.00968 + 10 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 11 -0.00774 -0.00812 -0.16581 -0.19222 -0.03438 0.00968 12 -0.00710 -0.00649 -0.01389 -0.01466 -0.00151 0.00027 13 0.00349 0.00331 0.00109 0.00102 0.00015 -0.00003 14 -0.00267 -0.00290 0.00434 0.00429 0.00009 0.00001 - 15 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 16 0.00774 -0.00812 0.16580 -0.19222 -0.03439 -0.00968 + 15 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 16 0.00774 -0.00812 0.16581 -0.19222 -0.03438 -0.00968 17 0.00710 -0.00649 0.01389 -0.01466 -0.00151 -0.00027 18 0.00349 -0.00331 0.00109 -0.00102 -0.00015 -0.00003 19 -0.00267 0.00290 0.00434 -0.00429 -0.00009 0.00001 - 20 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 20 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 21 0.00809 -0.00842 0.68026 0.67325 0.00070 0.00648 22 0.00707 -0.00645 0.03172 0.03139 0.00043 0.00035 23 -0.00414 0.00403 -0.00072 -0.00040 0.00012 0.00001 24 -0.00138 0.00167 0.00184 0.00180 0.00010 -0.00010 - 25 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 25 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 26 -0.00809 -0.00842 -0.68026 0.67325 0.00070 -0.00648 27 -0.00707 -0.00645 -0.03172 0.03139 0.00043 -0.00035 28 -0.00414 -0.00403 -0.00072 0.00040 -0.00012 0.00001 29 -0.00138 -0.00167 0.00184 -0.00180 -0.00010 -0.00010 - 30 0.00000 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 30 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 31 0.00023 0.00012 0.00166 0.00178 0.00028 -0.00007 32 -0.00023 0.00012 -0.00166 0.00178 0.00028 0.00007 33 -0.00023 0.00012 -0.00613 -0.00613 -0.00017 -0.00020 34 0.00023 0.00012 0.00613 -0.00613 -0.00017 0.00020 - 35 0.00965 -0.00978 -0.00417 -0.01026 0.69934 0.70008 + 35 0.00965 -0.00978 -0.00416 -0.01026 0.69934 0.70008 36 0.00585 -0.00592 0.00003 -0.00040 0.03095 0.03100 37 0.00088 -0.00088 0.00006 0.00010 0.00098 0.00098 38 0.00393 -0.00397 0.00006 -0.00004 -0.00104 -0.00104 - 39 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 40 -0.00965 -0.00978 0.00417 -0.01026 0.69934 -0.70008 + 39 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 40 -0.00965 -0.00978 0.00416 -0.01026 0.69934 -0.70008 41 -0.00585 -0.00592 -0.00003 -0.00040 0.03095 -0.03100 42 0.00088 0.00088 0.00006 -0.00010 -0.00098 0.00098 43 0.00393 0.00397 0.00006 0.00004 0.00104 -0.00104 - 44 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 44 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 45 -0.00016 0.00017 -0.00001 0.00005 -0.00634 -0.00635 46 0.00016 0.00017 0.00001 0.00005 -0.00634 0.00635 47 -0.00010 0.00009 -0.00119 -0.00078 -0.01827 -0.01835 - 48 -0.00029 0.00028 -0.00010 -0.00001 -0.00810 -0.00811 + 48 -0.00029 0.00029 -0.00010 -0.00001 -0.00810 -0.00811 49 -0.00008 0.00008 -0.00006 -0.00008 0.00306 0.00306 50 -0.00019 0.00020 -0.00005 -0.00000 -0.00349 -0.00350 - 51 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 51 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 52 0.00010 0.00009 0.00119 -0.00078 -0.01827 0.01835 - 53 0.00029 0.00028 0.00010 -0.00001 -0.00810 0.00811 + 53 0.00029 0.00029 0.00010 -0.00001 -0.00810 0.00811 54 -0.00008 -0.00008 -0.00006 0.00008 -0.00306 0.00306 55 -0.00019 -0.00020 -0.00005 0.00000 0.00349 -0.00350 - 56 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 56 0.00000 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 57 0.00014 -0.00013 0.00018 0.00018 0.00029 0.00029 58 -0.00014 -0.00013 -0.00018 0.00018 0.00029 -0.00029 59 0.00002 -0.00002 -0.00001 -0.00001 0.00030 0.00030 @@ -2473,58 +2478,58 @@ 2 -0.00471 -0.00740 0.00007 -0.00008 0.27993 0.29436 3 -0.00410 -0.00210 -0.00003 0.00003 -0.00759 0.00190 4 0.00243 0.00300 -0.00001 0.00001 -0.04705 0.02922 - 5 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 5 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 6 -0.00650 0.01189 0.00022 0.00020 -0.10975 0.11075 7 0.00471 -0.00740 0.00007 0.00008 0.27993 -0.29436 8 -0.00410 0.00210 0.00003 0.00003 0.00759 0.00190 9 0.00243 -0.00300 0.00001 0.00001 0.04705 0.02922 - 10 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 10 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 11 0.68045 0.67270 0.00117 -0.00047 -0.09705 -0.04082 12 0.02852 0.02779 -0.00004 -0.00001 0.24441 0.10681 13 -0.00089 -0.00050 0.00002 -0.00001 -0.06142 -0.03276 14 0.00054 0.00082 -0.00002 0.00008 -0.01416 0.06295 - 15 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 15 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 16 -0.68045 0.67270 0.00117 0.00047 -0.09705 0.04082 17 -0.02852 0.02779 -0.00004 0.00001 0.24441 -0.10681 18 -0.00089 0.00050 -0.00002 -0.00001 0.06142 -0.03276 19 0.00054 -0.00082 0.00002 0.00008 0.01416 0.06295 - 20 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 21 0.16673 0.19336 0.00144 0.00124 -0.09739 0.04639 + 20 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 21 0.16674 0.19336 0.00144 0.00124 -0.09739 0.04639 22 0.00081 0.00231 -0.00001 0.00001 0.24566 -0.12202 23 -0.00079 -0.00075 0.00000 0.00001 -0.05361 0.05140 24 -0.00406 -0.00405 0.00008 0.00011 0.03271 0.04878 - 25 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 - 26 -0.16673 0.19336 0.00144 -0.00124 -0.09739 -0.04639 + 25 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 26 -0.16674 0.19336 0.00144 -0.00124 -0.09739 -0.04639 27 -0.00081 0.00231 -0.00001 -0.00001 0.24566 0.12202 28 -0.00079 0.00075 -0.00000 0.00001 0.05361 0.05140 29 -0.00406 0.00405 -0.00008 0.00011 -0.03271 0.04878 - 30 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 30 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 31 -0.00601 -0.00607 -0.00002 0.00001 0.03876 0.02439 32 0.00601 -0.00607 -0.00002 -0.00001 0.03876 -0.02439 33 -0.00131 -0.00173 0.00009 0.00009 0.03995 -0.02936 34 0.00131 -0.00173 0.00009 -0.00009 0.03995 0.02936 - 35 -0.01085 0.03270 0.01922 0.01922 -0.04698 0.11129 + 35 -0.01086 0.03269 0.01922 0.01922 -0.04698 0.11129 36 -0.00062 0.00156 -0.00642 -0.00642 0.12146 -0.29208 37 -0.00003 0.00003 -0.00306 -0.00306 0.01460 -0.03927 38 -0.00000 -0.00011 0.00335 0.00335 0.03003 -0.01622 - 39 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 - 40 0.01085 0.03270 0.01922 -0.01922 -0.04698 -0.11129 + 39 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 40 0.01086 0.03269 0.01922 -0.01922 -0.04698 -0.11129 41 0.00062 0.00156 -0.00642 0.00642 0.12146 0.29208 42 -0.00003 -0.00003 0.00306 -0.00306 -0.01460 -0.03927 43 -0.00000 0.00011 -0.00335 0.00335 -0.03003 -0.01622 - 44 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 44 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 45 0.00014 -0.00038 -0.00005 -0.00005 0.02088 -0.05715 46 -0.00014 -0.00038 -0.00005 0.00005 0.02088 0.05715 47 0.00044 -0.00236 0.70037 0.70037 -0.02161 0.07280 48 0.00017 -0.00052 0.03034 0.03034 0.05436 -0.18711 49 -0.00007 0.00013 -0.00092 -0.00092 -0.01184 0.03738 50 0.00008 -0.00025 0.00103 0.00103 0.02024 -0.05396 - 51 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 51 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 52 -0.00044 -0.00236 0.70037 -0.70037 -0.02161 -0.07280 53 -0.00017 -0.00052 0.03034 -0.03034 0.05436 0.18711 54 -0.00007 -0.00013 0.00092 -0.00092 0.01184 0.03738 55 0.00008 0.00025 -0.00103 0.00103 -0.02024 -0.05396 - 56 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 56 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 57 0.00002 0.00005 -0.00624 -0.00624 0.01124 -0.04022 58 -0.00002 0.00005 -0.00624 0.00624 0.01124 0.04022 59 -0.00001 0.00001 -0.00622 -0.00622 0.00793 -0.03379 @@ -2534,34 +2539,34 @@ ----------- ----------- ----------- ----------- ----------- ----------- 1 -0.00908 -0.01204 -0.09487 0.07135 0.05790 -0.00837 2 0.02770 0.03286 0.26276 -0.21025 -0.17333 0.02318 - 3 0.01083 0.13358 -0.01982 -0.14305 0.19236 -0.06490 + 3 0.01083 0.13358 -0.01981 -0.14305 0.19236 -0.06490 4 0.10531 -0.02485 -0.07112 -0.06814 -0.07398 -0.15557 - 5 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 5 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 6 -0.00908 0.01204 0.09487 0.07135 0.05790 0.00837 7 0.02770 -0.03286 -0.26276 -0.21025 -0.17333 -0.02318 - 8 -0.01083 0.13358 -0.01982 0.14305 -0.19236 -0.06490 + 8 -0.01083 0.13358 -0.01981 0.14305 -0.19236 -0.06490 9 -0.10531 -0.02485 -0.07112 0.06814 0.07398 -0.15557 - 10 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 10 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 11 0.04501 -0.13286 -0.04084 0.00993 -0.11128 -0.05019 12 -0.11813 0.35967 0.11294 -0.03021 0.32921 0.15442 13 0.01962 -0.00893 -0.04111 0.02946 0.06473 -0.01113 14 0.03897 -0.05722 0.08797 -0.17286 0.02516 -0.00309 - 15 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 15 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 16 0.04501 0.13286 0.04084 0.00993 -0.11128 0.05019 17 -0.11813 -0.35967 -0.11294 -0.03021 0.32921 -0.15442 18 -0.01962 -0.00893 -0.04111 -0.02946 -0.06473 -0.01113 19 -0.03897 -0.05722 0.08797 0.17286 -0.02516 -0.00309 - 20 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 20 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 21 0.04013 -0.12187 0.07009 -0.08786 0.05246 0.02981 22 -0.10487 0.33000 -0.19386 0.25282 -0.15690 -0.09147 23 0.00398 0.02407 0.05951 0.05584 0.09573 0.04297 24 -0.05068 0.06856 0.04444 0.01848 0.17953 0.08230 - 25 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 25 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 26 0.04013 0.12187 -0.07009 -0.08786 0.05246 -0.02981 27 -0.10487 -0.33000 0.19386 0.25282 -0.15690 0.09147 28 -0.00398 0.02407 0.05951 -0.05584 -0.09573 0.04297 29 0.05068 0.06856 0.04444 -0.01848 -0.17953 0.08230 - 30 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 30 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 31 -0.01985 0.08660 0.02803 -0.02557 0.14536 0.04322 32 -0.01985 -0.08660 -0.02803 -0.02557 0.14536 -0.04322 33 -0.01387 0.08154 -0.04544 0.10274 -0.07145 -0.05023 @@ -2570,24 +2575,24 @@ 36 0.32969 -0.00151 0.17328 -0.13292 -0.01867 0.29832 37 0.05395 0.02244 0.04661 0.08178 -0.03857 -0.11667 38 -0.05243 -0.01737 -0.12796 -0.13892 -0.09348 0.06874 - 39 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 39 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 40 -0.12403 -0.00030 0.06457 0.04348 0.00542 0.09591 41 0.32969 0.00151 -0.17328 -0.13292 -0.01867 -0.29832 42 -0.05395 0.02244 0.04661 -0.08178 0.03857 -0.11667 43 0.05243 -0.01737 -0.12796 0.13892 0.09348 0.06874 - 44 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 44 -0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 45 0.07025 -0.00849 0.04141 -0.06377 0.02743 0.15181 46 0.07025 0.00849 -0.04141 -0.06377 0.02743 -0.15181 47 -0.11322 -0.01257 -0.11106 -0.08193 -0.04588 0.08751 48 0.29672 0.03260 0.29959 0.23522 0.13619 -0.27013 49 -0.05379 0.00093 -0.04390 0.02218 -0.01761 -0.11164 50 0.06472 0.00740 0.03442 -0.02021 -0.04091 0.08150 - 51 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 + 51 -0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 52 -0.11322 0.01257 0.11106 -0.08193 -0.04588 -0.08751 53 0.29672 -0.03260 -0.29959 0.23522 0.13619 0.27013 54 0.05379 0.00093 -0.04390 -0.02218 0.01761 -0.11164 55 -0.06472 0.00740 0.03442 0.02021 0.04091 0.08150 - 56 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 56 -0.00000 0.00000 -0.00000 -0.00000 0.00000 -0.00000 57 0.06605 0.01184 0.07124 0.09046 0.02929 -0.15408 58 0.06605 -0.01184 -0.07124 0.09046 0.02929 0.15408 59 0.06258 0.00661 0.07724 0.08181 0.06526 -0.11963 @@ -2595,36 +2600,36 @@ 19 20 21 22 23 24 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.04802 -0.03184 0.01711 0.05231 -0.04770 0.01801 + 1 0.04802 -0.03184 0.01711 0.05232 -0.04770 0.01801 2 -0.14425 0.10602 -0.05961 -0.18046 0.16482 -0.06045 3 -0.00928 0.05329 0.16855 -0.17693 -0.15263 -0.01264 4 0.16321 0.12113 -0.14936 -0.05852 -0.15818 0.00202 - 5 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 6 0.04802 -0.03184 -0.01711 -0.05231 0.04770 0.01801 + 5 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 6 0.04802 -0.03184 -0.01711 -0.05232 0.04770 0.01801 7 -0.14425 0.10602 0.05961 0.18046 -0.16482 -0.06045 8 0.00928 -0.05329 0.16855 -0.17693 -0.15263 0.01264 9 -0.16321 -0.12113 -0.14936 -0.05852 -0.15818 -0.00202 - 10 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 10 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 11 -0.01393 -0.01692 -0.01757 -0.04764 0.02361 -0.02448 12 0.04834 0.06357 0.05985 0.16345 -0.08486 0.08280 13 0.19351 0.12955 -0.01752 0.19053 -0.10497 -0.00406 14 -0.08238 0.13938 0.21533 -0.09270 -0.07850 -0.07488 - 15 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 15 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 16 -0.01393 -0.01692 0.01757 0.04764 -0.02361 -0.02448 17 0.04834 0.06357 -0.05985 -0.16345 0.08486 0.08280 18 -0.19351 -0.12955 -0.01752 0.19053 -0.10497 0.00406 19 0.08238 -0.13938 0.21533 -0.09270 -0.07850 0.07488 - 20 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 20 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 21 -0.05200 0.01673 0.03742 0.04834 -0.01399 0.02036 - 22 0.16771 -0.04674 -0.12204 -0.16723 0.05338 -0.07580 + 22 0.16771 -0.04674 -0.12204 -0.16723 0.05337 -0.07580 23 0.20610 0.08551 -0.10453 0.00239 0.28874 -0.03405 24 -0.03544 -0.13215 -0.13907 0.18453 -0.05240 0.13202 - 25 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 25 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 26 -0.05200 0.01673 -0.03742 -0.04834 0.01399 0.02036 - 27 0.16771 -0.04674 0.12204 0.16723 -0.05338 -0.07580 + 27 0.16771 -0.04674 0.12204 0.16723 -0.05337 -0.07580 28 -0.20610 -0.08551 -0.10453 0.00239 0.28874 0.03405 29 0.03544 0.13215 -0.13907 0.18453 -0.05240 -0.13202 - 30 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 30 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 31 0.10314 0.12278 0.06778 0.17897 -0.12927 0.00899 32 0.10314 0.12278 -0.06778 -0.17897 0.12927 0.00899 33 0.15818 0.08486 -0.03953 -0.14813 0.22971 -0.10571 @@ -2633,24 +2638,24 @@ 36 0.17605 -0.16001 0.03874 -0.03698 0.01713 0.06739 37 -0.06308 0.11598 0.21366 -0.00322 -0.00060 0.26926 38 0.02487 0.18084 0.10088 0.20363 0.11792 -0.06053 - 39 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 39 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 40 -0.05680 0.04962 0.01287 -0.01359 0.00476 -0.02343 41 0.17605 -0.16001 -0.03874 0.03698 -0.01713 0.06739 42 0.06308 -0.11598 0.21366 -0.00322 -0.00060 -0.26926 43 -0.02487 -0.18084 0.10088 0.20363 0.11792 0.06053 - 44 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 45 0.09671 -0.15090 -0.13798 -0.05563 -0.00089 -0.15128 - 46 0.09671 -0.15090 0.13798 0.05563 0.00089 -0.15128 + 44 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 45 0.09671 -0.15090 -0.13798 -0.05564 -0.00089 -0.15128 + 46 0.09671 -0.15090 0.13798 0.05564 0.00089 -0.15128 47 0.05661 -0.02594 0.01521 -0.01598 0.00460 0.00296 48 -0.17835 0.09374 -0.05480 0.06631 -0.00957 -0.02532 49 -0.06706 0.22221 0.07901 0.19042 0.18046 -0.00402 50 0.07346 -0.01309 0.19403 -0.07165 0.08047 0.34339 - 51 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 51 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 52 0.05661 -0.02594 -0.01521 0.01598 -0.00460 0.00296 53 -0.17835 0.09374 0.05480 -0.06631 0.00957 -0.02532 54 0.06706 -0.22221 0.07901 0.19042 0.18046 0.00402 55 -0.07346 0.01309 0.19403 -0.07165 0.08047 -0.34339 - 56 0.00000 0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 56 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 57 -0.08974 0.18159 0.04894 0.14037 0.15135 0.01653 58 -0.08974 0.18159 -0.04894 -0.14037 -0.15135 0.01653 59 -0.09199 0.00609 -0.15368 0.03650 -0.09603 -0.24848 @@ -2658,377 +2663,377 @@ 25 26 27 28 29 30 ----------- ----------- ----------- ----------- ----------- ----------- - 1 0.00445 -0.00539 0.02328 0.00000 -0.01352 -0.00587 - 2 -0.01559 0.01984 -0.08409 -0.00000 0.05647 0.03014 - 3 -0.09299 -0.13928 0.09578 -0.00000 0.08226 -0.16228 + 1 0.00445 -0.00539 0.02328 -0.00000 -0.01352 -0.00587 + 2 -0.01559 0.01984 -0.08409 0.00000 0.05647 0.03014 + 3 -0.09299 -0.13928 0.09578 0.00000 0.08226 -0.16228 4 0.09741 0.16444 0.03905 0.00000 0.21595 0.25433 - 5 0.00000 -0.00000 0.00000 0.33576 -0.00000 -0.00000 - 6 -0.00445 0.00539 0.02328 0.00000 0.01352 -0.00587 - 7 0.01559 -0.01984 -0.08409 -0.00000 -0.05647 0.03014 - 8 -0.09299 -0.13928 -0.09578 0.00000 0.08226 0.16228 + 5 -0.00000 -0.00000 0.00000 0.33576 -0.00000 0.00000 + 6 -0.00445 0.00539 0.02328 -0.00000 0.01352 -0.00587 + 7 0.01559 -0.01984 -0.08409 0.00000 -0.05647 0.03014 + 8 -0.09299 -0.13928 -0.09578 -0.00000 0.08226 0.16228 9 0.09741 0.16444 -0.03905 -0.00000 0.21595 -0.25433 - 10 0.00000 0.00000 0.00000 0.33576 -0.00000 -0.00000 - 11 0.02081 0.01408 0.00833 -0.00000 0.00369 0.00027 - 12 -0.06411 -0.05242 -0.03887 0.00000 -0.01022 0.00079 - 13 0.33431 0.05832 -0.14050 0.00000 0.05368 0.15870 - 14 0.12863 -0.21430 -0.17102 -0.00000 0.04469 -0.25040 - 15 0.00000 -0.00000 0.00000 0.29861 -0.00000 -0.00000 - 16 -0.02081 -0.01408 0.00833 -0.00000 -0.00369 0.00027 + 10 -0.00000 -0.00000 -0.00000 0.33576 -0.00000 0.00000 + 11 0.02081 0.01408 0.00833 0.00000 0.00369 0.00027 + 12 -0.06411 -0.05242 -0.03887 -0.00000 -0.01022 0.00079 + 13 0.33431 0.05833 -0.14050 -0.00000 0.05368 0.15870 + 14 0.12863 -0.21430 -0.17102 0.00000 0.04469 -0.25040 + 15 -0.00000 -0.00000 0.00000 0.29861 -0.00000 0.00000 + 16 -0.02081 -0.01408 0.00833 0.00000 -0.00369 0.00027 17 0.06411 0.05242 -0.03887 0.00000 0.01022 0.00079 - 18 0.33431 0.05832 0.14050 -0.00000 0.05368 -0.15870 - 19 0.12863 -0.21430 0.17102 0.00000 0.04469 0.25040 - 20 0.00000 0.00000 0.00000 0.29861 -0.00000 -0.00000 - 21 0.01678 -0.00780 -0.00840 -0.00000 -0.01023 -0.00416 + 18 0.33431 0.05833 0.14050 0.00000 0.05368 -0.15870 + 19 0.12863 -0.21430 0.17102 -0.00000 0.04469 0.25040 + 20 -0.00000 -0.00000 -0.00000 0.29861 -0.00000 -0.00000 + 21 0.01678 -0.00780 -0.00840 0.00000 -0.01023 -0.00416 22 -0.05283 0.02225 0.02793 -0.00000 0.03595 0.00642 - 23 0.19075 0.04054 0.07196 -0.00000 -0.12729 -0.12364 - 24 -0.20306 0.19827 0.17066 0.00000 -0.00755 0.22130 - 25 0.00000 0.00000 0.00000 0.29910 -0.00000 -0.00000 - 26 -0.01678 0.00780 -0.00840 -0.00000 0.01023 -0.00416 + 23 0.19075 0.04054 0.07196 0.00000 -0.12729 -0.12364 + 24 -0.20306 0.19827 0.17066 -0.00000 -0.00755 0.22130 + 25 -0.00000 -0.00000 0.00000 0.29910 -0.00000 0.00000 + 26 -0.01678 0.00780 -0.00840 0.00000 0.01023 -0.00416 27 0.05283 -0.02225 0.02793 -0.00000 -0.03595 0.00642 28 0.19075 0.04054 -0.07196 0.00000 -0.12729 0.12364 - 29 -0.20306 0.19827 -0.17066 -0.00000 -0.00755 -0.22130 - 30 0.00000 -0.00000 0.00000 0.29910 -0.00000 -0.00000 - 31 0.25151 -0.03168 -0.17004 0.00000 0.03876 0.05819 - 32 -0.25151 0.03168 -0.17004 0.00000 -0.03876 0.05819 - 33 0.19230 -0.06065 -0.00451 -0.00000 -0.04159 -0.24949 - 34 -0.19230 0.06065 -0.00451 -0.00000 0.04159 -0.24949 + 29 -0.20306 0.19827 -0.17066 0.00000 -0.00755 -0.22130 + 30 -0.00000 -0.00000 -0.00000 0.29910 -0.00000 -0.00000 + 31 0.25151 -0.03168 -0.17004 -0.00000 0.03876 0.05819 + 32 -0.25151 0.03168 -0.17004 -0.00000 -0.03876 0.05819 + 33 0.19230 -0.06065 -0.00451 0.00000 -0.04159 -0.24949 + 34 -0.19230 0.06065 -0.00451 0.00000 0.04159 -0.24949 35 -0.00379 -0.00221 -0.02240 -0.00000 -0.00447 -0.01385 36 0.00980 -0.00854 0.09226 0.00000 0.02157 0.05963 37 0.00209 0.22077 -0.18960 0.00000 -0.23308 0.04933 38 -0.08217 -0.17597 0.12322 0.00000 -0.13942 0.22325 - 39 0.00000 0.00000 0.00000 0.17832 -0.00000 -0.00000 + 39 -0.00000 -0.00000 -0.00000 0.17832 -0.00000 0.00000 40 0.00379 0.00221 -0.02240 -0.00000 0.00447 -0.01385 41 -0.00980 0.00854 0.09226 0.00000 -0.02157 0.05963 42 0.00209 0.22077 0.18960 -0.00000 -0.23308 -0.04933 43 -0.08217 -0.17597 -0.12322 -0.00000 -0.13942 -0.22325 - 44 0.00000 -0.00000 -0.00000 0.17832 -0.00000 -0.00000 - 45 0.00444 -0.14072 0.16692 0.00000 0.25624 -0.06667 + 44 -0.00000 -0.00000 0.00000 0.17832 -0.00000 0.00000 + 45 0.00444 -0.14072 0.16692 -0.00000 0.25624 -0.06667 46 -0.00444 0.14072 0.16692 -0.00000 -0.25624 -0.06667 47 0.00433 -0.01306 0.00959 0.00000 0.00648 0.00452 48 -0.01958 0.02921 -0.02286 -0.00000 -0.02339 -0.00856 49 -0.08439 -0.09741 0.29208 0.00000 0.23206 0.00383 - 50 0.02469 0.28136 0.04144 -0.00000 0.14961 -0.15968 - 51 0.00000 0.00000 -0.00000 0.08225 -0.00000 -0.00000 + 50 0.02469 0.28136 0.04144 0.00000 0.14961 -0.15968 + 51 -0.00000 -0.00000 -0.00000 0.08225 -0.00000 0.00000 52 -0.00433 0.01306 0.00959 0.00000 -0.00648 0.00452 53 0.01958 -0.02921 -0.02286 -0.00000 0.02339 -0.00856 54 -0.08439 -0.09741 -0.29208 -0.00000 0.23206 -0.00383 - 55 0.02469 0.28136 -0.04144 0.00000 0.14961 0.15968 - 56 0.00000 -0.00000 -0.00000 0.08225 -0.00000 -0.00000 + 55 0.02469 0.28136 -0.04144 -0.00000 0.14961 0.15968 + 56 -0.00000 -0.00000 0.00000 0.08225 -0.00000 0.00000 57 -0.05497 -0.03747 0.24295 0.00000 0.24076 -0.06353 - 58 0.05497 0.03747 0.24295 -0.00000 -0.24076 -0.06353 - 59 -0.00815 -0.18031 -0.11801 0.00000 -0.21235 0.14208 - 60 0.00815 0.18031 -0.11801 0.00000 0.21235 0.14208 + 58 0.05497 0.03747 0.24295 0.00000 -0.24076 -0.06353 + 59 -0.00815 -0.18031 -0.11801 -0.00000 -0.21235 0.14208 + 60 0.00815 0.18031 -0.11801 -0.00000 0.21235 0.14208 31 32 33 34 35 36 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.01067 0.00000 0.00000 -0.00000 0.00000 0.00000 - 2 0.04755 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 3 0.26847 0.00000 0.00000 0.00000 0.00000 0.00000 - 4 0.11497 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 5 0.00000 0.36053 0.00438 0.01239 0.37745 0.46217 - 6 -0.01067 0.00000 0.00000 -0.00000 0.00000 0.00000 - 7 0.04755 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 8 -0.26847 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 - 9 -0.11497 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 10 0.00000 -0.36053 -0.00438 0.01239 -0.37745 0.46217 - 11 -0.00633 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 12 0.01543 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 13 -0.21343 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 14 -0.06710 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 15 0.00000 0.13002 0.46206 -0.19522 0.22157 -0.21552 - 16 -0.00633 -0.00000 -0.00000 0.00000 -0.00000 0.00000 - 17 0.01543 0.00000 0.00000 -0.00000 0.00000 -0.00000 - 18 0.21343 0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 19 0.06710 -0.00000 -0.00000 0.00000 0.00000 0.00000 - 20 0.00000 -0.13002 -0.46206 -0.19522 -0.22157 -0.21552 - 21 0.00326 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 22 -0.00767 0.00000 -0.00000 0.00000 0.00000 0.00000 - 23 0.26225 0.00000 0.00000 -0.00000 -0.00000 0.00000 - 24 0.09272 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 25 0.00000 -0.13297 0.45918 -0.19220 -0.23092 -0.28223 - 26 0.00326 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 27 -0.00767 0.00000 -0.00000 0.00000 0.00000 0.00000 - 28 -0.26225 -0.00000 -0.00000 0.00000 0.00000 -0.00000 - 29 -0.09272 0.00000 0.00000 -0.00000 0.00000 0.00000 - 30 0.00000 0.13297 -0.45918 -0.19220 0.23092 -0.28223 - 31 -0.23795 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 32 -0.23795 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 33 0.12909 0.00000 0.00000 -0.00000 0.00000 0.00000 - 34 0.12909 0.00000 0.00000 -0.00000 0.00000 0.00000 - 35 -0.00695 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 36 0.02252 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 37 0.16303 -0.00000 0.00000 -0.00000 0.00000 -0.00000 - 38 0.12220 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 1 -0.01067 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 2 0.04755 0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 3 0.26847 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 4 0.11497 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 5 -0.00000 0.36053 0.00438 0.01239 0.37745 0.46217 + 6 -0.01067 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 7 0.04755 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 8 -0.26847 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 9 -0.11497 0.00000 0.00000 0.00000 -0.00000 0.00000 + 10 -0.00000 -0.36053 -0.00438 0.01239 -0.37745 0.46217 + 11 -0.00633 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 12 0.01543 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 13 -0.21343 0.00000 0.00000 0.00000 0.00000 -0.00000 + 14 -0.06710 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 15 -0.00000 0.13002 0.46206 -0.19522 0.22157 -0.21552 + 16 -0.00633 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 17 0.01543 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 18 0.21343 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 19 0.06710 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 20 -0.00000 -0.13002 -0.46206 -0.19522 -0.22157 -0.21552 + 21 0.00326 -0.00000 0.00000 0.00000 0.00000 0.00000 + 22 -0.00767 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 23 0.26225 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 24 0.09272 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 25 -0.00000 -0.13297 0.45918 -0.19220 -0.23092 -0.28223 + 26 0.00326 -0.00000 0.00000 0.00000 0.00000 0.00000 + 27 -0.00767 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 28 -0.26225 0.00000 0.00000 0.00000 0.00000 -0.00000 + 29 -0.09272 0.00000 0.00000 0.00000 -0.00000 0.00000 + 30 -0.00000 0.13297 -0.45918 -0.19220 0.23092 -0.28223 + 31 -0.23795 0.00000 0.00000 0.00000 -0.00000 0.00000 + 32 -0.23795 0.00000 0.00000 0.00000 -0.00000 0.00000 + 33 0.12909 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 34 0.12909 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 35 -0.00695 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 36 0.02252 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 + 37 0.16303 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 38 0.12220 -0.00000 -0.00000 0.00000 0.00000 0.00000 39 0.00000 -0.39014 -0.00255 0.44627 0.25898 0.19367 - 40 -0.00695 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 41 0.02252 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 42 -0.16303 0.00000 -0.00000 0.00000 -0.00000 0.00000 - 43 -0.12220 0.00000 0.00000 -0.00000 0.00000 -0.00000 + 40 -0.00695 0.00000 0.00000 0.00000 -0.00000 0.00000 + 41 0.02252 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 42 -0.16303 -0.00000 -0.00000 0.00000 0.00000 -0.00000 + 43 -0.12220 0.00000 0.00000 -0.00000 -0.00000 -0.00000 44 0.00000 0.39014 0.00255 0.44627 -0.25898 0.19367 - 45 -0.19586 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 46 -0.19586 0.00000 -0.00000 -0.00000 0.00000 0.00000 - 47 -0.00520 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 48 0.01990 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 49 -0.13861 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 50 -0.06792 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 45 -0.19586 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 46 -0.19586 -0.00000 -0.00000 0.00000 0.00000 0.00000 + 47 -0.00520 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 48 0.01990 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 49 -0.13861 -0.00000 -0.00000 -0.00000 0.00000 0.00000 + 50 -0.06792 -0.00000 0.00000 0.00000 -0.00000 -0.00000 51 0.00000 -0.23639 0.00660 0.37009 0.38253 -0.46592 - 52 -0.00520 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 53 0.01990 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 54 0.13861 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 55 0.06792 0.00000 -0.00000 0.00000 0.00000 0.00000 + 52 -0.00520 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 53 0.01990 0.00000 -0.00000 0.00000 0.00000 -0.00000 + 54 0.13861 0.00000 0.00000 0.00000 0.00000 -0.00000 + 55 0.06792 0.00000 -0.00000 -0.00000 0.00000 0.00000 56 0.00000 0.23639 -0.00660 0.37009 -0.38253 -0.46592 - 57 -0.14106 0.00000 0.00000 0.00000 0.00000 0.00000 - 58 -0.14106 0.00000 0.00000 0.00000 0.00000 0.00000 + 57 -0.14106 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 58 -0.14106 -0.00000 -0.00000 0.00000 0.00000 -0.00000 59 0.11639 0.00000 -0.00000 -0.00000 0.00000 0.00000 60 0.11639 0.00000 -0.00000 -0.00000 0.00000 0.00000 37 38 39 40 41 42 ----------- ----------- ----------- ----------- ----------- ----------- 1 -0.00000 0.00000 0.00000 -0.00000 -0.07895 -0.04667 - 2 0.00000 -0.00000 0.00000 0.00000 0.46641 0.27307 - 3 -0.00000 0.00000 0.00000 -0.00000 0.09304 0.30472 - 4 -0.00000 -0.00000 -0.00000 -0.00000 0.29930 0.21038 - 5 -0.04155 0.03632 0.47989 0.54234 0.00000 -0.00000 + 2 0.00000 -0.00000 -0.00000 -0.00000 0.46642 0.27307 + 3 -0.00000 -0.00000 -0.00000 0.00000 0.09304 0.30472 + 4 0.00000 -0.00000 0.00000 -0.00000 0.29930 0.21038 + 5 -0.04155 0.03632 0.47989 0.54234 -0.00000 0.00000 6 -0.00000 0.00000 0.00000 -0.00000 -0.07895 0.04667 - 7 0.00000 -0.00000 0.00000 0.00000 0.46641 -0.27307 - 8 0.00000 -0.00000 -0.00000 0.00000 -0.09304 0.30472 - 9 0.00000 0.00000 0.00000 0.00000 -0.29930 0.21038 - 10 -0.04155 -0.03632 0.47989 -0.54234 -0.00000 0.00000 + 7 0.00000 -0.00000 -0.00000 -0.00000 0.46642 -0.27307 + 8 0.00000 0.00000 0.00000 -0.00000 -0.09304 0.30472 + 9 -0.00000 0.00000 -0.00000 0.00000 -0.29930 0.21038 + 10 -0.04155 -0.03632 0.47989 -0.54234 0.00000 -0.00000 11 0.00000 -0.00000 -0.00000 0.00000 -0.02282 0.01451 12 -0.00000 0.00000 0.00000 -0.00000 0.14030 -0.08274 - 13 -0.00000 0.00000 0.00000 0.00000 0.29415 0.34594 - 14 -0.00000 -0.00000 -0.00000 0.00000 0.02776 0.04082 - 15 0.58690 -0.24642 -0.15492 -0.46012 0.00000 -0.00000 + 13 -0.00000 0.00000 -0.00000 0.00000 0.29415 0.34594 + 14 -0.00000 0.00000 -0.00000 0.00000 0.02776 0.04082 + 15 0.58690 -0.24642 -0.15492 -0.46012 -0.00000 0.00000 16 0.00000 -0.00000 -0.00000 0.00000 -0.02282 -0.01451 17 -0.00000 0.00000 0.00000 -0.00000 0.14030 0.08274 - 18 0.00000 -0.00000 -0.00000 -0.00000 -0.29415 0.34594 - 19 0.00000 0.00000 0.00000 -0.00000 -0.02776 0.04082 + 18 0.00000 -0.00000 0.00000 -0.00000 -0.29415 0.34594 + 19 0.00000 -0.00000 0.00000 -0.00000 -0.02776 0.04082 20 0.58690 0.24642 -0.15492 0.46012 -0.00000 -0.00000 - 21 -0.00000 -0.00000 0.00000 -0.00000 -0.04060 -0.01934 - 22 0.00000 0.00000 -0.00000 0.00000 0.24602 0.11403 - 23 -0.00000 -0.00000 -0.00000 0.00000 0.20276 0.26717 - 24 -0.00000 -0.00000 -0.00000 0.00000 -0.09531 0.06571 - 25 -0.54790 0.23731 -0.18987 0.46236 -0.00000 0.00000 - 26 -0.00000 -0.00000 0.00000 -0.00000 -0.04060 0.01934 - 27 0.00000 0.00000 -0.00000 0.00000 0.24602 -0.11403 - 28 0.00000 0.00000 0.00000 -0.00000 -0.20276 0.26717 - 29 0.00000 0.00000 0.00000 -0.00000 0.09531 0.06571 - 30 -0.54790 -0.23731 -0.18987 -0.46236 0.00000 -0.00000 + 21 -0.00000 0.00000 0.00000 -0.00000 -0.04060 -0.01934 + 22 0.00000 -0.00000 -0.00000 0.00000 0.24602 0.11403 + 23 -0.00000 -0.00000 -0.00000 -0.00000 0.20276 0.26717 + 24 -0.00000 0.00000 -0.00000 0.00000 -0.09531 0.06571 + 25 -0.54790 0.23731 -0.18987 0.46236 0.00000 -0.00000 + 26 -0.00000 0.00000 0.00000 -0.00000 -0.04060 0.01934 + 27 0.00000 -0.00000 -0.00000 0.00000 0.24602 -0.11403 + 28 0.00000 0.00000 0.00000 0.00000 -0.20276 0.26717 + 29 0.00000 -0.00000 0.00000 -0.00000 0.09531 0.06571 + 30 -0.54790 -0.23731 -0.18987 -0.46236 0.00000 0.00000 31 -0.00000 -0.00000 -0.00000 0.00000 -0.39155 -0.30897 32 -0.00000 -0.00000 -0.00000 0.00000 -0.39155 0.30897 - 33 -0.00000 -0.00000 0.00000 -0.00000 -0.40108 -0.23050 - 34 -0.00000 -0.00000 0.00000 -0.00000 -0.40108 0.23050 - 35 0.00000 -0.00000 -0.00000 0.00000 0.05809 -0.01552 - 36 -0.00000 0.00000 0.00000 -0.00000 -0.33416 0.09189 - 37 0.00000 0.00000 0.00000 0.00000 -0.24389 0.33116 - 38 -0.00000 -0.00000 -0.00000 0.00000 -0.36996 0.27297 - 39 0.00421 -0.49063 -0.52782 0.29533 -0.00000 0.00000 - 40 0.00000 -0.00000 -0.00000 0.00000 0.05809 0.01552 - 41 -0.00000 0.00000 0.00000 -0.00000 -0.33416 -0.09189 - 42 -0.00000 -0.00000 -0.00000 -0.00000 0.24389 0.33116 - 43 0.00000 0.00000 0.00000 -0.00000 0.36996 0.27297 - 44 0.00421 0.49063 -0.52782 -0.29533 0.00000 -0.00000 - 45 -0.00000 0.00000 0.00000 0.00000 -0.12733 0.36937 - 46 -0.00000 0.00000 0.00000 0.00000 -0.12733 -0.36937 - 47 -0.00000 0.00000 0.00000 -0.00000 -0.03649 0.00857 - 48 0.00000 -0.00000 -0.00000 0.00000 0.20887 -0.05219 - 49 -0.00000 0.00000 0.00000 0.00000 -0.15353 0.30964 - 50 -0.00000 -0.00000 -0.00000 0.00000 -0.11806 0.13760 - 51 0.01858 0.54633 0.41051 -0.17015 -0.00000 0.00000 - 52 -0.00000 0.00000 0.00000 -0.00000 -0.03649 -0.00857 - 53 0.00000 -0.00000 -0.00000 0.00000 0.20887 0.05219 - 54 0.00000 -0.00000 -0.00000 -0.00000 0.15353 0.30964 - 55 0.00000 0.00000 0.00000 -0.00000 0.11806 0.13760 - 56 0.01858 -0.54633 0.41051 0.17015 -0.00000 -0.00000 - 57 -0.00000 0.00000 -0.00000 -0.00000 0.13627 -0.31813 - 58 -0.00000 0.00000 -0.00000 -0.00000 0.13627 0.31813 - 59 0.00000 -0.00000 -0.00000 -0.00000 -0.33511 0.29438 - 60 0.00000 -0.00000 -0.00000 -0.00000 -0.33511 -0.29438 + 33 -0.00000 0.00000 -0.00000 0.00000 -0.40108 -0.23050 + 34 -0.00000 0.00000 -0.00000 0.00000 -0.40108 0.23050 + 35 -0.00000 -0.00000 0.00000 -0.00000 0.05809 -0.01552 + 36 -0.00000 0.00000 -0.00000 0.00000 -0.33416 0.09189 + 37 -0.00000 0.00000 -0.00000 -0.00000 -0.24389 0.33116 + 38 -0.00000 0.00000 -0.00000 -0.00000 -0.36996 0.27297 + 39 0.00421 -0.49063 -0.52782 0.29533 0.00000 -0.00000 + 40 -0.00000 -0.00000 -0.00000 -0.00000 0.05809 0.01552 + 41 -0.00000 0.00000 0.00000 0.00000 -0.33416 -0.09189 + 42 0.00000 -0.00000 0.00000 0.00000 0.24389 0.33116 + 43 0.00000 -0.00000 0.00000 0.00000 0.36996 0.27297 + 44 0.00421 0.49063 -0.52782 -0.29533 0.00000 0.00000 + 45 0.00000 0.00000 -0.00000 -0.00000 -0.12733 0.36937 + 46 0.00000 0.00000 -0.00000 -0.00000 -0.12733 -0.36937 + 47 -0.00000 0.00000 -0.00000 0.00000 -0.03649 0.00857 + 48 0.00000 -0.00000 0.00000 -0.00000 0.20887 -0.05219 + 49 0.00000 -0.00000 0.00000 -0.00000 -0.15353 0.30964 + 50 -0.00000 -0.00000 0.00000 -0.00000 -0.11806 0.13760 + 51 0.01858 0.54633 0.41051 -0.17015 -0.00000 -0.00000 + 52 -0.00000 0.00000 -0.00000 0.00000 -0.03649 -0.00857 + 53 0.00000 -0.00000 0.00000 -0.00000 0.20887 0.05219 + 54 -0.00000 0.00000 -0.00000 0.00000 0.15353 0.30964 + 55 0.00000 0.00000 -0.00000 0.00000 0.11806 0.13760 + 56 0.01858 -0.54633 0.41051 0.17015 -0.00000 0.00000 + 57 -0.00000 0.00000 -0.00000 0.00000 0.13628 -0.31813 + 58 -0.00000 0.00000 -0.00000 0.00000 0.13628 0.31813 + 59 -0.00000 -0.00000 -0.00000 -0.00000 -0.33511 0.29438 + 60 -0.00000 -0.00000 -0.00000 -0.00000 -0.33511 -0.29438 43 44 45 46 47 48 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.05912 0.03107 0.07466 -0.08689 -0.01068 -0.11957 + 1 -0.05912 0.03107 0.07466 -0.08689 -0.01067 -0.11957 2 0.34235 -0.18965 -0.45359 0.51966 0.07378 0.73398 - 3 -0.16823 -0.13099 0.32112 -0.13953 -0.10301 0.06772 - 4 0.46090 0.10603 -0.11826 -0.10947 -0.17476 -0.15323 - 5 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 - 6 0.05912 0.03107 0.07466 0.08689 0.01068 -0.11957 + 3 -0.16822 -0.13099 0.32112 -0.13953 -0.10301 0.06772 + 4 0.46090 0.10603 -0.11826 -0.10946 -0.17476 -0.15322 + 5 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 6 0.05912 0.03107 0.07466 0.08689 0.01067 -0.11957 7 -0.34235 -0.18965 -0.45359 -0.51966 -0.07378 0.73398 - 8 -0.16823 0.13099 -0.32112 -0.13953 -0.10301 -0.06772 - 9 0.46090 -0.10603 0.11826 -0.10947 -0.17476 0.15323 - 10 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 8 -0.16822 0.13099 -0.32112 -0.13953 -0.10301 -0.06772 + 9 0.46090 -0.10603 0.11826 -0.10946 -0.17476 0.15322 + 10 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 11 0.02505 -0.07692 0.06167 0.08510 0.03787 0.10710 - 12 -0.15002 0.47353 -0.37819 -0.50928 -0.23783 -0.67019 + 12 -0.15001 0.47353 -0.37819 -0.50928 -0.23783 -0.67020 13 -0.17610 -0.02401 0.01192 -0.11554 -0.27443 0.04051 - 14 0.26919 0.13100 0.25304 -0.08854 -0.28244 -0.22157 - 15 0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 + 14 0.26919 0.13100 0.25304 -0.08853 -0.28244 -0.22157 + 15 0.00000 -0.00000 0.00000 -0.00000 0.00000 -0.00000 16 -0.02505 -0.07692 0.06167 -0.08510 -0.03787 0.10710 - 17 0.15002 0.47353 -0.37819 0.50928 0.23783 -0.67019 + 17 0.15001 0.47353 -0.37819 0.50928 0.23783 -0.67020 18 -0.17610 0.02401 -0.01192 -0.11554 -0.27443 -0.04051 - 19 0.26919 -0.13100 -0.25304 -0.08854 -0.28244 0.22157 - 20 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 19 0.26919 -0.13100 -0.25304 -0.08853 -0.28244 0.22157 + 20 0.00000 0.00000 -0.00000 0.00000 0.00000 0.00000 21 -0.01485 -0.01858 -0.12951 -0.10810 0.01737 0.03053 - 22 0.08525 0.11885 0.79871 0.65730 -0.11696 -0.19368 - 23 -0.28980 0.16266 -0.10239 -0.03248 -0.25092 0.27695 - 24 0.30068 -0.23862 -0.02059 -0.22081 -0.05532 0.25449 - 25 0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 + 22 0.08524 0.11886 0.79871 0.65730 -0.11696 -0.19368 + 23 -0.28980 0.16266 -0.10239 -0.03249 -0.25092 0.27695 + 24 0.30068 -0.23862 -0.02058 -0.22081 -0.05532 0.25449 + 25 0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 26 0.01485 -0.01858 -0.12951 0.10810 -0.01737 0.03053 - 27 -0.08525 0.11885 0.79871 -0.65730 0.11696 -0.19368 - 28 -0.28980 -0.16266 0.10239 -0.03248 -0.25092 -0.27695 - 29 0.30068 0.23862 0.02059 -0.22081 -0.05532 -0.25449 - 30 -0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 - 31 0.14897 -0.31781 0.12022 0.42891 0.49794 0.35271 - 32 -0.14897 -0.31781 0.12022 -0.42891 -0.49794 0.35271 - 33 0.40000 -0.30708 -0.30878 -0.42843 0.18498 0.07581 - 34 -0.40000 -0.30708 -0.30878 0.42843 -0.18498 0.07581 + 27 -0.08524 0.11886 0.79871 -0.65730 0.11696 -0.19368 + 28 -0.28980 -0.16266 0.10239 -0.03249 -0.25092 -0.27695 + 29 0.30068 0.23862 0.02058 -0.22081 -0.05532 -0.25449 + 30 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 31 0.14896 -0.31781 0.12023 0.42891 0.49794 0.35272 + 32 -0.14896 -0.31781 0.12023 -0.42891 -0.49794 0.35272 + 33 0.40000 -0.30708 -0.30878 -0.42842 0.18498 0.07581 + 34 -0.40000 -0.30708 -0.30878 0.42842 -0.18498 0.07581 35 -0.09943 0.05744 -0.03439 -0.02074 0.07170 0.08184 36 0.58578 -0.34622 0.21034 0.13167 -0.45463 -0.49680 37 -0.00933 0.31828 -0.15556 -0.12426 0.26895 0.09540 - 38 0.33610 0.06246 0.22740 0.11142 -0.02791 -0.01503 - 39 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 + 38 0.33610 0.06246 0.22740 0.11143 -0.02791 -0.01503 + 39 -0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 40 0.09943 0.05744 -0.03439 0.02074 -0.07170 0.08184 41 -0.58578 -0.34622 0.21034 -0.13167 0.45463 -0.49680 42 -0.00933 -0.31828 0.15556 -0.12426 0.26895 -0.09540 - 43 0.33610 -0.06246 -0.22740 0.11142 -0.02791 0.01503 - 44 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 - 45 -0.25673 0.55393 -0.22589 -0.13131 0.49006 0.33992 - 46 0.25673 0.55393 -0.22589 0.13131 -0.49006 0.33992 - 47 0.03316 -0.01628 -0.07943 -0.06990 0.03517 -0.07492 + 43 0.33610 -0.06246 -0.22740 0.11143 -0.02791 0.01503 + 44 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 + 45 -0.25672 0.55393 -0.22589 -0.13131 0.49006 0.33992 + 46 0.25672 0.55393 -0.22589 0.13131 -0.49006 0.33992 + 47 0.03316 -0.01629 -0.07943 -0.06990 0.03517 -0.07492 48 -0.18680 0.09039 0.49936 0.43755 -0.22692 0.45817 - 49 0.06781 0.29619 0.18916 0.21051 0.03744 0.09301 - 50 0.05796 0.21542 -0.01774 -0.06425 0.34089 0.04390 - 51 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 52 -0.03316 -0.01628 -0.07943 0.06990 -0.03517 -0.07492 + 49 0.06781 0.29619 0.18916 0.21051 0.03743 0.09301 + 50 0.05796 0.21542 -0.01774 -0.06424 0.34089 0.04390 + 51 0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 + 52 -0.03316 -0.01629 -0.07943 0.06990 -0.03517 -0.07492 53 0.18680 0.09039 0.49936 -0.43755 0.22692 0.45817 - 54 0.06781 -0.29619 -0.18916 0.21051 0.03744 -0.09301 - 55 0.05796 -0.21542 0.01774 -0.06425 0.34089 -0.04390 - 56 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 54 0.06781 -0.29619 -0.18916 0.21051 0.03743 -0.09301 + 55 0.05796 -0.21542 0.01774 -0.06424 0.34089 -0.04390 + 56 0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 57 -0.01828 -0.37413 -0.40227 -0.37268 -0.01664 -0.33080 58 0.01828 -0.37413 -0.40227 0.37268 0.01664 -0.33080 - 59 0.21499 0.24743 -0.21368 -0.22470 0.43446 -0.17764 - 60 -0.21499 0.24743 -0.21368 0.22470 -0.43446 -0.17764 + 59 0.21500 0.24742 -0.21369 -0.22470 0.43446 -0.17764 + 60 -0.21500 0.24742 -0.21369 0.22470 -0.43446 -0.17764 49 50 51 52 53 54 ----------- ----------- ----------- ----------- ----------- ----------- 1 0.05669 0.02296 0.05109 -0.00141 -0.00151 0.06265 - 2 -0.34302 -0.14465 -0.35055 0.01740 0.00496 -0.43387 - 3 -0.18987 -0.31777 0.13407 -0.55031 0.15748 -0.20117 + 2 -0.34303 -0.14465 -0.35055 0.01740 0.00496 -0.43387 + 3 -0.18986 -0.31777 0.13407 -0.55031 0.15748 -0.20117 4 0.11767 0.01443 0.61863 0.07288 0.01967 -0.03991 - 5 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 5 -0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 6 -0.05669 0.02296 0.05109 0.00141 -0.00151 -0.06265 - 7 0.34302 -0.14465 -0.35055 -0.01740 0.00496 0.43387 - 8 -0.18987 0.31777 -0.13407 -0.55031 -0.15748 -0.20117 + 7 0.34303 -0.14465 -0.35055 -0.01740 0.00496 0.43387 + 8 -0.18986 0.31777 -0.13407 -0.55031 -0.15748 -0.20117 9 0.11767 -0.01443 -0.61863 0.07288 -0.01967 -0.03991 - 10 -0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 + 10 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 11 -0.05892 -0.08610 -0.00214 -0.09572 -0.01017 0.04562 - 12 0.36452 0.54863 0.01709 0.64381 0.05848 -0.30950 - 13 -0.14726 -0.13430 -0.44837 0.05813 0.54524 -0.22223 + 12 0.36453 0.54863 0.01709 0.64381 0.05848 -0.30950 + 13 -0.14726 -0.13430 -0.44837 0.05813 0.54525 -0.22223 14 0.16724 -0.14752 0.11844 0.13042 0.16929 0.71118 - 15 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 15 -0.00000 -0.00000 0.00000 0.00000 -0.00000 0.00000 16 0.05892 -0.08610 -0.00214 0.09572 -0.01017 -0.04562 - 17 -0.36452 0.54863 0.01709 -0.64381 0.05848 0.30950 - 18 -0.14726 0.13430 0.44837 0.05813 -0.54524 -0.22223 + 17 -0.36453 0.54863 0.01709 -0.64381 0.05848 0.30950 + 18 -0.14726 0.13430 0.44837 0.05813 -0.54525 -0.22223 19 0.16724 0.14752 -0.11844 0.13042 -0.16929 0.71118 - 20 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 20 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 21 0.04740 0.08791 -0.03727 -0.04223 0.01331 -0.08617 - 22 -0.28839 -0.56245 0.24327 0.29275 -0.07833 0.59127 + 22 -0.28840 -0.56245 0.24328 0.29275 -0.07833 0.59126 23 -0.12595 -0.05138 -0.34153 -0.16778 -0.50724 0.36764 24 0.08126 -0.17703 0.07284 -0.47539 0.36806 0.42281 - 25 -0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 + 25 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 26 -0.04740 0.08791 -0.03727 0.04223 0.01331 0.08617 - 27 0.28839 -0.56245 0.24327 -0.29275 -0.07833 -0.59127 + 27 0.28840 -0.56245 0.24328 -0.29275 -0.07833 -0.59126 28 -0.12595 0.05138 0.34153 -0.16778 0.50724 0.36764 29 0.08126 0.17703 -0.07284 -0.47539 -0.36806 0.42281 - 30 0.00000 -0.00000 0.00000 0.00000 0.00000 -0.00000 - 31 -0.09495 -0.10484 0.29620 -0.35020 -0.49693 0.11116 - 32 0.09495 -0.10484 0.29620 0.35020 -0.49693 -0.11116 - 33 0.36395 0.26186 0.13358 -0.26006 0.55127 -0.27099 - 34 -0.36395 0.26186 0.13358 0.26006 0.55127 0.27099 + 30 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 31 -0.09496 -0.10483 0.29620 -0.35020 -0.49694 0.11116 + 32 0.09496 -0.10483 0.29620 0.35020 -0.49694 -0.11116 + 33 0.36395 0.26185 0.13358 -0.26005 0.55127 -0.27099 + 34 -0.36395 0.26185 0.13358 0.26005 0.55127 0.27099 35 0.06992 -0.02689 0.08763 0.02227 0.04597 0.05809 - 36 -0.42679 0.19423 -0.56943 -0.16778 -0.31512 -0.39728 + 36 -0.42680 0.19422 -0.56943 -0.16778 -0.31511 -0.39728 37 0.01336 -0.06614 0.12132 -0.22316 -0.12106 0.04644 - 38 0.13328 0.07280 -0.01885 0.06096 0.15838 0.00738 - 39 -0.00000 0.00000 -0.00000 0.00000 -0.00000 0.00000 + 38 0.13327 0.07280 -0.01885 0.06096 0.15838 0.00738 + 39 0.00000 0.00000 0.00000 -0.00000 0.00000 -0.00000 40 -0.06992 -0.02689 0.08763 -0.02227 0.04597 -0.05809 - 41 0.42679 0.19423 -0.56943 0.16778 -0.31512 0.39728 + 41 0.42680 0.19422 -0.56943 0.16778 -0.31511 0.39728 42 0.01336 0.06614 -0.12132 -0.22316 0.12106 0.04644 - 43 0.13328 -0.07280 0.01885 0.06096 -0.15838 0.00738 - 44 0.00000 0.00000 -0.00000 0.00000 0.00000 -0.00000 - 45 0.26533 -0.09841 0.32565 -0.13156 0.08489 0.21688 - 46 -0.26533 -0.09841 0.32565 0.13156 0.08489 -0.21688 + 43 0.13327 -0.07280 0.01885 0.06096 -0.15838 0.00738 + 44 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 45 0.26533 -0.09841 0.32565 -0.13155 0.08489 0.21688 + 46 -0.26533 -0.09841 0.32565 0.13155 0.08489 -0.21688 47 -0.12533 -0.08598 -0.03056 0.00387 -0.04390 -0.00128 48 0.78840 0.54860 0.19172 -0.01271 0.29934 0.00550 - 49 0.17470 0.16067 -0.30921 -0.02338 -0.05668 -0.21232 + 49 0.17469 0.16067 -0.30921 -0.02338 -0.05668 -0.21232 50 -0.00162 -0.40796 -0.08294 0.46400 0.24904 0.12473 - 51 -0.00000 -0.00000 -0.00000 0.00000 -0.00000 0.00000 + 51 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 52 0.12533 -0.08598 -0.03056 -0.00387 -0.04390 0.00128 53 -0.78840 0.54860 0.19172 0.01271 0.29934 -0.00550 - 54 0.17470 -0.16067 0.30921 -0.02338 0.05668 -0.21232 + 54 0.17469 -0.16067 0.30921 -0.02338 0.05668 -0.21232 55 -0.00162 0.40796 0.08294 0.46400 -0.24904 0.12473 - 56 0.00000 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 - 57 -0.59001 -0.37429 0.16475 -0.02079 -0.16964 0.18513 - 58 0.59001 -0.37429 0.16475 0.02079 -0.16964 -0.18513 - 59 -0.34518 -0.57023 -0.24898 0.37936 0.05481 0.03538 - 60 0.34518 -0.57023 -0.24898 -0.37936 0.05481 -0.03538 + 56 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 + 57 -0.59001 -0.37429 0.16475 -0.02079 -0.16965 0.18513 + 58 0.59001 -0.37429 0.16475 0.02079 -0.16965 -0.18513 + 59 -0.34519 -0.57023 -0.24898 0.37936 0.05481 0.03538 + 60 0.34519 -0.57023 -0.24898 -0.37936 0.05481 -0.03538 55 56 57 58 59 60 ----------- ----------- ----------- ----------- ----------- ----------- - 1 -0.08025 0.01525 0.01897 0.02108 -0.00570 0.04148 + 1 -0.08025 0.01525 0.01897 0.02107 -0.00570 0.04148 2 0.54677 -0.09361 -0.12172 -0.14885 0.03784 -0.31154 3 -0.19672 -0.12952 0.12700 -0.43949 0.69079 0.16309 4 0.02494 -0.28225 -0.38107 0.13957 -0.04690 0.64441 - 5 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 6 0.08025 0.01525 0.01897 -0.02108 -0.00570 -0.04148 + 5 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 6 0.08025 0.01525 0.01897 -0.02107 -0.00570 -0.04148 7 -0.54677 -0.09361 -0.12172 0.14885 0.03784 0.31154 8 -0.19672 0.12952 -0.12700 -0.43949 -0.69079 0.16309 9 0.02494 0.28225 0.38107 0.13957 0.04690 0.64441 - 10 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.00000 - 11 -0.00154 0.02528 -0.01839 -0.04504 0.00563 -0.04761 - 12 0.02119 -0.17944 0.13173 0.32652 -0.04001 0.34748 - 13 0.24845 0.22178 0.11856 -0.20031 0.23764 -0.56808 - 14 -0.02656 0.42211 -0.35841 0.12487 -0.53577 -0.24010 - 15 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 - 16 0.00154 0.02528 -0.01839 0.04504 0.00563 0.04761 - 17 -0.02119 -0.17944 0.13173 -0.32652 -0.04001 -0.34748 - 18 0.24845 -0.22178 -0.11856 -0.20031 -0.23764 -0.56808 - 19 -0.02656 -0.42211 0.35841 0.12487 0.53577 -0.24010 - 20 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 10 -0.00000 0.00000 0.00000 -0.00000 -0.00000 0.00000 + 11 -0.00153 0.02528 -0.01839 -0.04504 0.00563 -0.04761 + 12 0.02119 -0.17944 0.13173 0.32652 -0.04002 0.34748 + 13 0.24845 0.22177 0.11856 -0.20031 0.23764 -0.56808 + 14 -0.02656 0.42210 -0.35841 0.12487 -0.53577 -0.24010 + 15 0.00000 0.00000 0.00000 0.00000 -0.00000 -0.00000 + 16 0.00153 0.02528 -0.01839 0.04504 0.00563 0.04761 + 17 -0.02119 -0.17944 0.13173 -0.32652 -0.04002 -0.34748 + 18 0.24845 -0.22177 -0.11856 -0.20031 -0.23764 -0.56808 + 19 -0.02656 -0.42210 0.35841 0.12487 0.53577 -0.24010 + 20 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 21 -0.03757 -0.03388 0.01232 -0.02016 -0.00515 0.05278 22 0.25226 0.23346 -0.09102 0.15041 0.03565 -0.38732 23 -0.32791 0.15496 0.02682 -0.03057 -0.43450 0.49767 24 -0.11443 0.34309 -0.42664 -0.21385 -0.41049 -0.39291 - 25 -0.00000 -0.00000 0.00000 -0.00000 0.00000 0.00000 + 25 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 0.00000 26 0.03757 -0.03388 0.01232 0.02016 -0.00515 -0.05278 27 -0.25226 0.23346 -0.09102 -0.15041 0.03565 0.38732 28 -0.32791 -0.15496 -0.02682 -0.03057 0.43450 0.49767 29 -0.11443 -0.34309 0.42664 -0.21385 0.41049 -0.39291 - 30 -0.00000 0.00000 0.00000 -0.00000 0.00000 0.00000 + 30 0.00000 -0.00000 0.00000 0.00000 -0.00000 -0.00000 31 -0.14147 -0.20731 -0.05529 -0.01417 -0.01057 0.28810 32 0.14147 -0.20731 -0.05529 0.01417 -0.01057 -0.28810 - 33 0.00011 -0.03410 -0.20663 -0.11500 0.04545 -0.29513 - 34 -0.00011 -0.03410 -0.20663 0.11500 0.04545 0.29513 + 33 0.00011 -0.03411 -0.20663 -0.11500 0.04545 -0.29513 + 34 -0.00011 -0.03411 -0.20663 0.11500 0.04545 0.29513 35 0.03194 -0.03636 0.04163 -0.05991 -0.02661 -0.01036 - 36 -0.23532 0.25961 -0.32547 0.45710 0.21378 0.06061 + 36 -0.23533 0.25961 -0.32547 0.45710 0.21378 0.06060 37 0.32338 0.55936 -0.05909 0.61590 0.43631 0.01940 - 38 0.46378 0.10984 0.66573 -0.46017 -0.32364 0.37370 - 39 0.00000 0.00000 0.00000 0.00000 0.00000 -0.00000 + 38 0.46379 0.10984 0.66573 -0.46017 -0.32364 0.37370 + 39 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 40 -0.03194 -0.03636 0.04163 0.05991 -0.02661 0.01036 - 41 0.23532 0.25961 -0.32547 -0.45710 0.21378 -0.06061 + 41 0.23533 0.25961 -0.32547 -0.45710 0.21378 -0.06060 42 0.32338 -0.55936 0.05909 0.61590 -0.43631 0.01940 - 43 0.46378 -0.10984 -0.66573 -0.46017 0.32364 0.37370 - 44 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 43 0.46379 -0.10984 -0.66573 -0.46017 0.32364 0.37370 + 44 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 45 0.39156 0.33133 0.18744 0.18679 0.16786 0.05627 46 -0.39156 0.33133 0.18744 -0.18679 0.16786 -0.05627 47 -0.02068 0.03125 -0.04593 0.07045 0.04153 -0.01064 48 0.14430 -0.23060 0.34380 -0.53202 -0.32480 0.08974 - 49 -0.55085 -0.14181 -0.60500 0.38891 0.25982 -0.24067 + 49 -0.55086 -0.14182 -0.60500 0.38891 0.25982 -0.24067 50 -0.25138 -0.55867 0.15010 -0.55017 -0.32711 0.00482 - 51 0.00000 -0.00000 -0.00000 0.00000 -0.00000 -0.00000 + 51 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.00000 52 0.02068 0.03125 -0.04593 -0.07045 0.04153 0.01064 53 -0.14430 -0.23060 0.34380 0.53202 -0.32480 -0.08974 - 54 -0.55085 0.14181 0.60500 0.38891 -0.25982 -0.24067 + 54 -0.55086 0.14182 0.60500 0.38891 -0.25982 -0.24067 55 -0.25138 0.55867 -0.15010 -0.55017 0.32711 0.00482 - 56 -0.00000 0.00000 -0.00000 -0.00000 0.00000 0.00000 + 56 0.00000 0.00000 -0.00000 0.00000 -0.00000 -0.00000 57 0.38522 0.27781 0.30222 -0.00557 -0.03612 0.15326 58 -0.38522 0.27781 0.30222 0.00557 -0.03612 -0.15326 59 -0.37195 -0.35322 -0.15246 -0.10611 -0.05337 -0.07228 @@ -3072,7 +3077,7 @@ Expectation value of S2: -------------------------- = 0.7778 (Exact = 0.7500) - + center of mass -------------- @@ -3080,27 +3085,30 @@ moments of inertia (a.u.) ------------------ - 2631.731379210404 0.000000000000 0.000000000000 - 0.000000000000 390.819001468288 0.000000000000 - 0.000000000000 0.000000000000 3022.550380678692 - + 2631.731379210398 -0.000000000000 0.000000000000 + -0.000000000000 390.819001468288 0.000000000000 + 0.000000000000 0.000000000000 3022.550380678686 + Multipole analysis of the density --------------------------------- - + L x y z total alpha beta nuclear - - - - ----- ----- ---- ------- 0 0 0 0 1.000000 -35.000000 -34.000000 70.000000 - - 1 1 0 0 -0.000000 -0.000000 -0.000000 0.000000 - 1 0 1 0 -0.000000 -0.000000 0.000000 0.000000 + + 1 1 0 0 -0.000000 0.000000 -0.000000 0.000000 + 1 0 1 0 -0.000000 -0.000000 -0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 0.000000 - - 2 2 0 0 -32.088305 -138.903463 -137.980714 244.795872 - 2 1 1 0 -0.672811 3.818259 1.139958 -5.631027 + + 2 2 0 0 -32.088307 -138.903464 -137.980714 244.795872 + 2 1 1 0 -0.672812 3.818258 1.139957 -5.631027 2 1 0 1 0.000000 0.000000 0.000000 0.000000 - 2 0 2 0 -6.463658 -767.762439 -735.664519 1496.963300 + 2 0 2 0 -6.463658 -767.762440 -735.664518 1496.963300 2 0 1 1 0.000000 0.000000 0.000000 0.000000 2 0 0 2 -42.019876 -21.786617 -20.233259 0.000000 + + + Parallel integral file used 9 records with 0 large values @@ -3384,7 +3392,13 @@ 19 H 0.97992 -0.12140 0.97970 0.85830 0.00022 20 H 0.97992 -0.12140 0.97970 0.85830 0.00022 - Task times cpu: 25.6s wall: 25.7s + Task times cpu: 11.4s wall: 12.1s + + + NWChem Input Module + ------------------- + + Summary of allocated global arrays ----------------------------------- No active global arrays @@ -3395,70 +3409,40 @@ ------------------------------ create destroy get put acc scatter gather read&inc -calls: 1441 1441 5.91e+05 1.08e+04 4.80e+05 840 0 2.34e+04 -number of processes/call 1.04e+11 4.21e+13 1.89e+13 0.00e+00 0.00e+00 -bytes total: 8.26e+07 1.83e+07 4.99e+07 8.00e+00 0.00e+00 1.87e+05 -bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 1872000 bytes +calls: 1431 1431 1.23e+05 3243 1.03e+05 84 0 5254 +number of processes/call -6.27e+13 4.82e+13 5.45e+11 0.00e+00 0.00e+00 +bytes total: 3.48e+07 6.14e+06 1.96e+07 2.00e+02 0.00e+00 4.20e+04 +bytes remote: 2.39e+07 2.55e+06 1.41e+07 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 475936 bytes + MA_summarize_allocated_blocks: starting scan ... -heap block 'gridpts', handle 96, address 0x55a35b946798: - type of elements: double precision - number of elements: 17448000 - address of client space: 0x55a35b946800 - index for client space: 12015945 - total number of bytes: 139584112 -MA_summarize_allocated_blocks: scan completed: 1 heap block, 0 stack blocks +MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: allocation statistics: heap stack ---- ----- - current number of blocks 1 0 + current number of blocks 0 0 maximum number of blocks 22 57 - current total bytes 139584112 0 - maximum total bytes 190931144 22521144 - maximum total K-bytes 190932 22522 - maximum total M-bytes 191 23 - - - NWChem Input Module - ------------------- - - - - - + current total bytes 0 0 + maximum total bytes 16151192 22521144 + maximum total K-bytes 16152 22522 + maximum total M-bytes 17 23 + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, - V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, - J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, - J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, - C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, - K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, - J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, - V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, - B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, - S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, - A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, - D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, - J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, - A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, - R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, - D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, - V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, - Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, - D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, - A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, - and R. J. Harrison - "NWChem: Past, present, and future - J. Chem. Phys. 152, 184102 (2020) - doi:10.1063/5.0004997 - + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -3481,4 +3465,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 25.6s wall: 25.7s + Total times cpu: 11.5s wall: 12.1s diff --git a/data/NWChem/basicNWChem7.0/water_ccsd(t).out b/data/NWChem/basicNWChem7.0/water_ccsd(t).out index 1bd1049dc..9ed88e933 100644 --- a/data/NWChem/basicNWChem7.0/water_ccsd(t).out +++ b/data/NWChem/basicNWChem7.0/water_ccsd(t).out @@ -1,26 +1,26 @@ argument 1 = water_ccsd(t).in - - - Northwest Computational Chemistry Package (NWChem) 7.0.2 + + + Northwest Computational Chemistry Package (NWChem) 7.0.0 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2020 + + Copyright (c) 1994-2019 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = osmium - program = nwchem - date = Sat Jun 4 13:36:23 2022 + hostname = smp-n17.sam.pitt.edu + program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem + date = Tue Sep 20 18:28:22 2022 - compiled = Fri_Jul_02_16:33:00_2021 - source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src - nwchem branch = 7.0.2 - nwchem revision = b9985dfa - ga revision = 5.7.2 - use scalapack = T + compiled = Wed_May_13_13:33:26_2020 + source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 + nwchem branch = 7.0.0 + nwchem revision = N/A + ga revision = 5.7.1 + use scalapack = F input = water_ccsd(t).in prefix = water. data base = ./water.db status = startup - nproc = 1 + nproc = 4 time left = -1s @@ -58,27 +58,27 @@ Memory information ------------------ - heap = 13107198 doubles = 100.0 Mbytes - stack = 13107195 doubles = 100.0 Mbytes + heap = 13107196 doubles = 100.0 Mbytes + stack = 13107201 doubles = 100.0 Mbytes global = 26214400 doubles = 200.0 Mbytes (distinct from heap & stack) - total = 52428793 doubles = 400.0 Mbytes + total = 52428797 doubles = 400.0 Mbytes verify = yes hardfail = no Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + water ----- @@ -86,26 +86,26 @@ (inverse scale = 0.529177249) CS symmetry detected - - + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 O 8.0000 -0.11915937 0.00000000 0.00000000 2 H1 1.0000 0.47663750 -0.79064915 0.00000000 3 H2 1.0000 0.47663750 0.79064915 0.00000000 - + Atomic Mass ----------- - + O 15.994910 H1 1.007825 H2 1.007825 - + Effective nuclear repulsion energy (a.u.) 8.8870069045 @@ -113,34 +113,34 @@ ---------------------------- X Y Z ---------------- ---------------- ---------------- - 0.0000000000 0.0000000000 0.0000000000 - + -0.0000000000 0.0000000000 0.0000000000 + Symmetry information -------------------- - + Group name Cs Group number 2 Group order 2 No. of unique centers 3 - + Symmetry unique atoms - + 1 2 3 - + Z-matrix (user) -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value ----------- -------- ----- ----- ----- ----- ----- ---------- 1 Stretch 2 1 0.99000 2 Stretch 3 1 0.99000 3 Bend 3 1 2 106.00000 - - + + XYZ format geometry ------------------- 3 @@ -148,7 +148,7 @@ O -0.11915937 0.00000000 0.00000000 H1 0.47663750 -0.79064915 0.00000000 H2 0.47663750 0.79064915 0.00000000 - + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -174,9 +174,6 @@ - library name resolved from: environment - library file name is: - Summary of "ao basis" -> "" (cartesian) @@ -195,15 +192,15 @@ 1 S 1.30709320E+02 0.154329 1 S 2.38088610E+01 0.535328 1 S 6.44360830E+00 0.444635 - + 2 S 5.03315130E+00 -0.099967 2 S 1.16959610E+00 0.399513 2 S 3.80389000E-01 0.700115 - + 3 P 5.03315130E+00 0.155916 3 P 1.16959610E+00 0.607684 3 P 3.80389000E-01 0.391957 - + H1 (Hydrogen) ------------- Exponent Coefficients @@ -211,7 +208,7 @@ 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + H2 (Hydrogen) ------------- Exponent Coefficients @@ -219,7 +216,7 @@ 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + Summary of "ao basis" -> "ao basis" (cartesian) @@ -233,11 +230,11 @@ NWChem SCF Module ----------------- - - + + water - - + + ao basis = "ao basis" functions = 7 @@ -263,19 +260,19 @@ Symmetry analysis of basis -------------------------- - + a' 6 a" 1 - + Forming initial guess at 0.0s - + Superposition of Atomic Density Guess ------------------------------------- - + Sum of atomic energies: -74.71095592 - + Non-variational initial energy ------------------------------ @@ -284,22 +281,22 @@ 2-e energy = 37.750235 HOMO = -0.250874 LUMO = 0.465222 - - + + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 a' 2 a" - + Orbital symmetries: - + 1 a' 2 a' 3 a' 4 a' 5 a" 6 a' 7 a' + - - Starting SCF solution at 0.0s + Starting SCF solution at 0.1s @@ -312,38 +309,50 @@ ---------------------------------------------- + #quartets = 1.200D+02 #integrals = 2.560D+02 #direct = 0.0% #cached =100.0% + + + Integral file = ./water.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 2 Max. records in file = 507871 + No. of bits per label = 8 No. of bits per value = 64 + + +File balance: exchanges= 0 moved= 0 time= 0.0 + + iter energy gnorm gmax time ----- ------------------- --------- --------- -------- - 1 -74.9231294979 6.62D-01 5.58D-01 0.0 - 2 -74.9634153745 1.36D-01 9.86D-02 0.0 - 3 -74.9643271715 3.30D-03 3.07D-03 0.0 - 4 -74.9643287681 1.06D-05 9.13D-06 0.0 + 1 -74.9231294979 6.62D-01 5.58D-01 0.1 + 2 -74.9634153745 1.36D-01 9.86D-02 0.1 + 3 -74.9643271715 3.30D-03 3.07D-03 0.1 + 4 -74.9643287681 1.06D-05 9.13D-06 0.1 Final RHF results ------------------ - Total SCF energy = -74.964328768144 - One-electron energy = -121.840171203717 - Two-electron energy = 37.988835531054 + Total SCF energy = -74.964328768121 + One-electron energy = -121.840171203716 + Two-electron energy = 37.988835531076 Nuclear repulsion energy = 8.887006904519 - Time for solution = 0.0s - + Time for solution = 0.1s + Symmetry analysis of molecular orbitals - final ----------------------------------------------- - + Numbering of irreducible representations: - + 1 a' 2 a" - + Orbital symmetries: - + 1 a' 2 a' 3 a' 4 a' 5 a" 6 a' 7 a' - + Final eigenvalues ----------------- @@ -355,51 +364,51 @@ 5 -0.3882 6 0.5707 7 0.7086 - + ROHF Final Molecular Orbital Analysis ------------------------------------- - + Vector 2 Occ=2.000000D+00 E=-1.250645D+00 Symmetry=a' - MO Center= 5.9D-02, -9.2D-14, 3.7D-17, r^2= 5.4D-01 + MO Center= 5.9D-02, 1.4D-13, 1.2D-17, r^2= 5.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.845881 1 O s 1 -0.234218 1 O s 6 0.156450 2 H s 7 0.156450 3 H s - + Vector 3 Occ=2.000000D+00 E=-6.031664D-01 Symmetry=a' - MO Center= 1.5D-01, 3.8D-13, -4.6D-31, r^2= 8.6D-01 + MO Center= 1.5D-01, -6.0D-13, 1.5D-30, r^2= 8.6D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.603305 1 O py 6 -0.446376 2 H s 7 0.446376 3 H s - + Vector 4 Occ=2.000000D+00 E=-4.454698D-01 Symmetry=a' - MO Center= -1.4D-01, 2.9D-13, -2.1D-16, r^2= 6.4D-01 + MO Center= -1.4D-01, -4.5D-13, -6.1D-17, r^2= 6.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.774267 1 O px 2 -0.521395 1 O s 6 0.289063 2 H s 7 0.289063 3 H s - + Vector 5 Occ=2.000000D+00 E=-3.882145D-01 Symmetry=a" - MO Center= -1.2D-01, 7.3D-18, 1.7D-16, r^2= 4.2D-01 + MO Center= -1.2D-01, 1.1D-17, 4.7D-17, r^2= 4.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 1.000000 1 O pz - + Vector 6 Occ=0.000000D+00 E= 5.707483D-01 Symmetry=a' - MO Center= 3.9D-01, 3.2D-12, 3.2D-18, r^2= 1.1D+00 + MO Center= 3.9D-01, -5.0D-12, 2.2D-18, r^2= 1.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.832527 1 O s 6 -0.775801 2 H s 7 -0.775801 3 H s 3 0.732626 1 O px - + Vector 7 Occ=0.000000D+00 E= 7.085917D-01 Symmetry=a' - MO Center= 2.3D-01, -3.8D-12, -1.6D-29, r^2= 1.0D+00 + MO Center= 2.3D-01, 5.9D-12, 6.0D-29, r^2= 1.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.976484 1 O py 6 0.808916 2 H s 7 -0.808916 3 H s - + center of mass -------------- @@ -410,7 +419,7 @@ 4.499667433282 -0.000000000000 0.000000000000 -0.000000000000 2.269153198409 0.000000000000 0.000000000000 0.000000000000 6.768820631691 - + Mulliken analysis of the total density -------------------------------------- @@ -419,28 +428,31 @@ 1 O 8 8.34 2.00 1.84 4.51 2 H 1 0.83 0.83 3 H 1 0.83 0.83 - + Multipole analysis of the density wrt the origin ------------------------------------------------ - + L x y z total open nuclear - - - - ----- ---- ------- 0 0 0 0 -0.000000 0.000000 10.000000 - - 1 1 0 0 0.658406 0.000000 0.000000 - 1 0 1 0 -0.000000 0.000000 0.000000 + + 1 1 0 0 0.658406 0.000000 -0.000000 + 1 0 1 0 0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 - + 2 2 0 0 -4.027790 0.000000 2.028215 - 2 1 1 0 -0.000000 0.000000 0.000000 + 2 1 1 0 0.000000 0.000000 0.000000 2 1 0 1 0.000000 0.000000 0.000000 2 0 2 0 -3.193229 0.000000 4.464731 2 0 1 1 0.000000 0.000000 0.000000 2 0 0 2 -4.551067 0.000000 0.000000 + + + Parallel integral file used 4 records with 0 large values NWChem Extensible Many-Electron Theory Module --------------------------------------------- - + ====================================================== This portion of the program was automatically generated by a Tensor Contraction Engine (TCE). @@ -450,13 +462,13 @@ TCE is a product of Battelle and PNNL. Please cite: S.Hirata, J.Phys.Chem.A 107, 9887 (2003). ====================================================== - + water - - + + General Information ------------------- - Number of processors : 1 + Number of processors : 4 Wavefunction type : Restricted Hartree-Fock No. of electrons : 10 Alpha electrons : 5 @@ -474,7 +486,7 @@ Use of symmetry is : on Symmetry adaption is : on Schwarz screening : 0.10D-09 - + Correlation Information ----------------------- Calculation type : Coupled-cluster singles & doubles w/ perturbation @@ -507,15 +519,15 @@ qrotation: F pwtce: F qducc: F - nacto: 0 - nrotv: 0 - nrot: 0 - + nacto: 0 + nrotv: 0 + nrot: 0 + Memory Information ------------------ - Available GA space size is 26214351 doubles + Available GA space size is 104857551 doubles Available MA space size is 26213660 doubles - + Maximum block size 24 doubles tile_dim = 4 @@ -533,31 +545,43 @@ Parallel file system coherency ......... OK + #quartets = 1.200D+02 #integrals = 2.560D+02 #direct = 0.0% #cached =100.0% + + + Integral file = ./water.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 2 Max. records in file = 507871 + No. of bits per label = 8 No. of bits per value = 64 + + +File balance: exchanges= 0 moved= 0 time= 0.0 + + Fock matrix recomputed 1-e file size = 37 1-e file name = ./water.f1 Cpu & wall time / sec 0.0 0.0 - + tce_ao2e: fast2e=1 half-transformed integrals in memory - + 2-e (intermediate) file size = 5831 2-e (intermediate) file name = ./water.v2i Cpu & wall time / sec 0.0 0.0 - + tce_mo2e: fast2e=1 2-e integrals stored in memory - + 2-e file size = 2390 2-e file name = ./water.v2 Cpu & wall time / sec 0.0 0.0 - T1-number-of-tasks 1 - + T1-number-of-tasks 1 + t1 file size = 8 t1 file name = ./water.t1 t1 file handle = -999 - T2-number-of-boxes 4 - + T2-number-of-boxes 4 + t2 file size = 136 t2 file name = ./water.t2 t2 file handle = -996 @@ -568,24 +592,24 @@ CCSD iterations NEW TASK SCHEDULING CCSD_T1_NTS --- OK CCSD_T2_NTS --- OK - 1 0.0920495746757 -0.0380400906890 0.0 0.0 - 2 0.0327809448015 -0.0483582016484 0.0 0.0 - 3 0.0130397422561 -0.0515376251747 0.0 0.0 - 4 0.0055100075130 -0.0526698899683 0.0 0.0 - 5 0.0024425799129 -0.0531093782104 0.0 0.0 - MICROCYCLE DIIS UPDATE: 5 5 - 6 0.0000746366811 -0.0534292411169 0.0 0.0 - 7 0.0000248085446 -0.0534287715877 0.0 0.0 - 8 0.0000119958916 -0.0534290587488 0.0 0.0 - 9 0.0000060344303 -0.0534292081296 0.0 0.0 - 10 0.0000030784218 -0.0534292874616 0.0 0.0 - MICROCYCLE DIIS UPDATE: 10 5 - 11 0.0000002285216 -0.0534293712901 0.0 0.0 - 12 0.0000000797694 -0.0534293880035 0.0 0.0 + 1 0.0920495746755 -0.0380400906888 0.0 0.0 + 2 0.0327809448014 -0.0483582016482 0.0 0.0 + 3 0.0130397422560 -0.0515376251745 0.0 0.0 + 4 0.0055100075130 -0.0526698899680 0.0 0.0 + 5 0.0024425799129 -0.0531093782101 0.0 0.0 + MICROCYCLE DIIS UPDATE: 5 5 + 6 0.0000746366811 -0.0534292411166 0.0 0.0 + 7 0.0000248085446 -0.0534287715874 0.0 0.0 + 8 0.0000119958916 -0.0534290587485 0.0 0.0 + 9 0.0000060344303 -0.0534292081293 0.0 0.0 + 10 0.0000030784218 -0.0534292874613 0.0 0.0 + MICROCYCLE DIIS UPDATE: 10 5 + 11 0.0000002285216 -0.0534293712898 0.0 0.0 + 12 0.0000000797694 -0.0534293880032 0.0 0.0 ----------------------------------------------------------------- Iterations converged - CCSD correlation energy / hartree = -0.053429388003519 - CCSD total energy / hartree = -75.017758156147252 + CCSD correlation energy / hartree = -0.053429388003235 + CCSD total energy / hartree = -75.017758156124472 Singles contributions @@ -593,20 +617,30 @@ CCSD_T2_NTS --- OK CCSD(T) Using plain CCSD(T) code total no. of tasks 5 - total no. of tasks / no. procs 5 + total no. of tasks / no. procs 1 wl_min 32 1.8 wl_max 512 2.8 thresh for no. of tasks 5 - - CCSD[T] correction energy / hartree = -0.000088830388399 - CCSD[T] correlation energy / hartree = -0.053518218391919 - CCSD[T] total energy / hartree = -75.017846986535645 - CCSD(T) correction energy / hartree = -0.000076702788769 - CCSD(T) correlation energy / hartree = -0.053506090792288 - CCSD(T) total energy / hartree = -75.017834858936027 +0task 2 done 40% at 0.0 sec, (size)^1/6= 2.8 + + CCSD[T] correction energy / hartree = -0.000088830388400 + CCSD[T] correlation energy / hartree = -0.053518218391636 + CCSD[T] total energy / hartree = -75.017846986512879 + CCSD(T) correction energy / hartree = -0.000076702788770 + CCSD(T) correlation energy / hartree = -0.053506090792006 + CCSD(T) total energy / hartree = -75.017834858913247 Cpu & wall time / sec 0.0 0.0 - Task times cpu: 0.1s wall: 0.1s + Parallel integral file used 4 records with 0 large values + + + Task times cpu: 0.3s wall: 0.5s + + + NWChem Input Module + ------------------- + + Summary of allocated global arrays ----------------------------------- No active global arrays @@ -617,11 +651,12 @@ CCSD_T2_NTS --- OK ------------------------------ create destroy get put acc scatter gather read&inc -calls: 849 849 8931 1188 5808 0 0 7188 -number of processes/call 2.77e+14 4.02e+13 -7.77e+14 0.00e+00 0.00e+00 -bytes total: 2.23e+06 2.18e+05 1.59e+06 0.00e+00 0.00e+00 5.75e+04 -bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 66520 bytes +calls: 840 840 2996 832 1726 0 0 2417 +number of processes/call 2.83e+14 2.89e+13 4.98e+12 0.00e+00 0.00e+00 +bytes total: 7.75e+05 1.53e+05 4.37e+05 0.00e+00 0.00e+00 1.93e+04 +bytes remote: 4.52e+05 5.66e+04 2.80e+05 0.00e+00 0.00e+00 1.14e+04 +Max memory consumed for GA by this process: 16960 bytes + MA_summarize_allocated_blocks: starting scan ... MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: @@ -630,51 +665,26 @@ MA usage statistics: heap stack ---- ----- current number of blocks 0 0 - maximum number of blocks 17 36 + maximum number of blocks 18 36 current total bytes 0 0 - maximum total bytes 80120 22509240 - maximum total K-bytes 81 22510 - maximum total M-bytes 1 23 - - - NWChem Input Module - ------------------- - - - - - + maximum total bytes 1054152 22509224 + maximum total K-bytes 1055 22510 + maximum total M-bytes 2 23 + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, - V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, - J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, - J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, - C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, - K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, - J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, - V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, - B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, - S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, - A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, - D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, - J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, - A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, - R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, - D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, - V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, - Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, - D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, - A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, - and R. J. Harrison - "NWChem: Past, present, and future - J. Chem. Phys. 152, 184102 (2020) - doi:10.1063/5.0004997 - + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -697,4 +707,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 0.1s wall: 0.1s + Total times cpu: 0.3s wall: 0.5s diff --git a/data/NWChem/basicNWChem7.0/water_mp2.out b/data/NWChem/basicNWChem7.0/water_mp2.out index 047964607..fdf4c1e6f 100644 --- a/data/NWChem/basicNWChem7.0/water_mp2.out +++ b/data/NWChem/basicNWChem7.0/water_mp2.out @@ -1,26 +1,26 @@ argument 1 = water_mp2.in - - - Northwest Computational Chemistry Package (NWChem) 7.0.2 + + + Northwest Computational Chemistry Package (NWChem) 7.0.0 -------------------------------------------------------- - - + + Environmental Molecular Sciences Laboratory Pacific Northwest National Laboratory Richland, WA 99352 - - Copyright (c) 1994-2020 + + Copyright (c) 1994-2019 Pacific Northwest National Laboratory Battelle Memorial Institute - + NWChem is an open-source computational chemistry package distributed under the terms of the Educational Community License (ECL) 2.0 A copy of the license is included with this distribution in the LICENSE.TXT file - + ACKNOWLEDGMENT -------------- @@ -36,21 +36,21 @@ Job information --------------- - hostname = osmium - program = nwchem - date = Sat Jun 4 13:36:23 2022 + hostname = smp-n17.sam.pitt.edu + program = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0/bin/LINUX64/nwchem + date = Tue Sep 20 18:28:23 2022 - compiled = Fri_Jul_02_16:33:00_2021 - source = /tmp/eric/spack-stage/spack-stage-nwchem-7.0.2-ooqysy46k2ki4umav4357wohumino4rf/spack-src - nwchem branch = 7.0.2 - nwchem revision = b9985dfa - ga revision = 5.7.2 - use scalapack = T + compiled = Wed_May_13_13:33:26_2020 + source = /ihome/kjordan/shu8/software/source/nwchem/nwchem-7.0.0 + nwchem branch = 7.0.0 + nwchem revision = N/A + ga revision = 5.7.1 + use scalapack = F input = water_mp2.in prefix = water. data base = ./water.db status = startup - nproc = 1 + nproc = 4 time left = -1s @@ -68,17 +68,17 @@ Directory information --------------------- - + 0 permanent = . 0 scratch = . - - - - + + + + NWChem Input Module ------------------- - - + + water ----- @@ -86,26 +86,26 @@ (inverse scale = 0.529177249) CS symmetry detected - - + + Geometry "geometry" -> "" ------------------------- - + Output coordinates in angstroms (scale by 1.889725989 to convert to a.u.) - + No. Tag Charge X Y Z ---- ---------------- ---------- -------------- -------------- -------------- 1 O 8.0000 -0.11915937 0.00000000 0.00000000 2 H1 1.0000 0.47663750 -0.79064915 0.00000000 3 H2 1.0000 0.47663750 0.79064915 0.00000000 - + Atomic Mass ----------- - + O 15.994910 H1 1.007825 H2 1.007825 - + Effective nuclear repulsion energy (a.u.) 8.8870069045 @@ -113,34 +113,34 @@ ---------------------------- X Y Z ---------------- ---------------- ---------------- - 0.0000000000 0.0000000000 0.0000000000 - + -0.0000000000 0.0000000000 0.0000000000 + Symmetry information -------------------- - + Group name Cs Group number 2 Group order 2 No. of unique centers 3 - + Symmetry unique atoms - + 1 2 3 - + Z-matrix (user) -------- Units are Angstrom for bonds and degrees for angles - + Type Name I J K L M Value ----------- -------- ----- ----- ----- ----- ----- ---------- 1 Stretch 2 1 0.99000 2 Stretch 3 1 0.99000 3 Bend 3 1 2 106.00000 - - + + XYZ format geometry ------------------- 3 @@ -148,7 +148,7 @@ O -0.11915937 0.00000000 0.00000000 H1 0.47663750 -0.79064915 0.00000000 H2 0.47663750 0.79064915 0.00000000 - + ============================================================================== internuclear distances ------------------------------------------------------------------------------ @@ -174,9 +174,6 @@ - library name resolved from: environment - library file name is: - Summary of "ao basis" -> "" (cartesian) @@ -195,15 +192,15 @@ 1 S 1.30709320E+02 0.154329 1 S 2.38088610E+01 0.535328 1 S 6.44360830E+00 0.444635 - + 2 S 5.03315130E+00 -0.099967 2 S 1.16959610E+00 0.399513 2 S 3.80389000E-01 0.700115 - + 3 P 5.03315130E+00 0.155916 3 P 1.16959610E+00 0.607684 3 P 3.80389000E-01 0.391957 - + H1 (Hydrogen) ------------- Exponent Coefficients @@ -211,7 +208,7 @@ 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + H2 (Hydrogen) ------------- Exponent Coefficients @@ -219,7 +216,7 @@ 1 S 3.42525091E+00 0.154329 1 S 6.23913730E-01 0.535328 1 S 1.68855400E-01 0.444635 - + Summary of "ao basis" -> "ao basis" (cartesian) @@ -233,11 +230,11 @@ NWChem SCF Module ----------------- - - + + water - - + + ao basis = "ao basis" functions = 7 @@ -263,19 +260,19 @@ Symmetry analysis of basis -------------------------- - + a' 6 a" 1 - + Forming initial guess at 0.0s - + Superposition of Atomic Density Guess ------------------------------------- - + Sum of atomic energies: -74.71095592 - + Non-variational initial energy ------------------------------ @@ -284,22 +281,22 @@ 2-e energy = 37.750235 HOMO = -0.250874 LUMO = 0.465222 - - + + Symmetry analysis of molecular orbitals - initial ------------------------------------------------- - + Numbering of irreducible representations: - + 1 a' 2 a" - + Orbital symmetries: - + 1 a' 2 a' 3 a' 4 a' 5 a" 6 a' 7 a' + - - Starting SCF solution at 0.0s + Starting SCF solution at 0.1s @@ -312,39 +309,51 @@ ---------------------------------------------- + #quartets = 1.200D+02 #integrals = 2.560D+02 #direct = 0.0% #cached =100.0% + + + Integral file = ./water.aoints.0 + Record size in doubles = 65536 No. of integs per rec = 43688 + Max. records in memory = 2 Max. records in file = 507871 + No. of bits per label = 8 No. of bits per value = 64 + + +File balance: exchanges= 0 moved= 0 time= 0.0 + + iter energy gnorm gmax time ----- ------------------- --------- --------- -------- 1 -74.9231294979 6.62D-01 5.58D-01 0.0 - 2 -74.9634153745 1.36D-01 9.86D-02 0.0 - 3 -74.9643271715 3.30D-03 3.07D-03 0.0 - 4 -74.9643287681 1.06D-05 9.13D-06 0.0 - 5 -74.9643287681 1.42D-08 1.22D-08 0.0 + 2 -74.9634153745 1.36D-01 9.86D-02 0.1 + 3 -74.9643271715 3.30D-03 3.07D-03 0.1 + 4 -74.9643287681 1.06D-05 9.13D-06 0.1 + 5 -74.9643287681 1.42D-08 1.22D-08 0.1 Final RHF results ------------------ - Total SCF energy = -74.964328768148 - One-electron energy = -121.840170361013 - Two-electron energy = 37.988834688346 + Total SCF energy = -74.964328768125 + One-electron energy = -121.840170361012 + Two-electron energy = 37.988834688368 Nuclear repulsion energy = 8.887006904519 - Time for solution = 0.0s - + Time for solution = 0.1s + Symmetry analysis of molecular orbitals - final ----------------------------------------------- - + Numbering of irreducible representations: - + 1 a' 2 a" - + Orbital symmetries: - + 1 a' 2 a' 3 a' 4 a' 5 a" 6 a' 7 a' - + Final eigenvalues ----------------- @@ -356,51 +365,51 @@ 5 -0.3882 6 0.5707 7 0.7086 - + ROHF Final Molecular Orbital Analysis ------------------------------------- - + Vector 2 Occ=2.000000D+00 E=-1.250645D+00 Symmetry=a' - MO Center= 5.9D-02, -9.2D-14, 3.7D-17, r^2= 5.4D-01 + MO Center= 5.9D-02, 1.4D-13, 1.2D-17, r^2= 5.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.845882 1 O s 1 -0.234218 1 O s 6 0.156449 2 H s 7 0.156449 3 H s - + Vector 3 Occ=2.000000D+00 E=-6.031663D-01 Symmetry=a' - MO Center= 1.5D-01, 3.8D-13, -4.6D-31, r^2= 8.6D-01 + MO Center= 1.5D-01, -6.0D-13, 1.5D-30, r^2= 8.6D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.603305 1 O py 6 -0.446377 2 H s 7 0.446377 3 H s - + Vector 4 Occ=2.000000D+00 E=-4.454699D-01 Symmetry=a' - MO Center= -1.4D-01, 2.9D-13, -2.1D-16, r^2= 6.4D-01 + MO Center= -1.4D-01, -4.5D-13, -6.1D-17, r^2= 6.4D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 3 0.774267 1 O px 2 -0.521395 1 O s 6 0.289064 2 H s 7 0.289064 3 H s - + Vector 5 Occ=2.000000D+00 E=-3.882146D-01 Symmetry=a" - MO Center= -1.2D-01, 7.3D-18, 1.7D-16, r^2= 4.2D-01 + MO Center= -1.2D-01, 1.1D-17, 4.7D-17, r^2= 4.2D-01 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 5 1.000000 1 O pz - + Vector 6 Occ=0.000000D+00 E= 5.707483D-01 Symmetry=a' - MO Center= 3.9D-01, 3.2D-12, 3.2D-18, r^2= 1.1D+00 + MO Center= 3.9D-01, -5.0D-12, 2.2D-18, r^2= 1.1D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 2 0.832525 1 O s 6 -0.775801 2 H s 7 -0.775801 3 H s 3 0.732626 1 O px - + Vector 7 Occ=0.000000D+00 E= 7.085916D-01 Symmetry=a' - MO Center= 2.3D-01, -3.8D-12, -1.6D-29, r^2= 1.0D+00 + MO Center= 2.3D-01, 5.9D-12, 6.0D-29, r^2= 1.0D+00 Bfn. Coefficient Atom+Function Bfn. Coefficient Atom+Function ----- ------------ --------------- ----- ------------ --------------- 4 0.976485 1 O py 6 0.808916 2 H s 7 -0.808916 3 H s - + center of mass -------------- @@ -411,7 +420,7 @@ 4.499667433282 -0.000000000000 0.000000000000 -0.000000000000 2.269153198409 0.000000000000 0.000000000000 0.000000000000 6.768820631691 - + Mulliken analysis of the total density -------------------------------------- @@ -420,32 +429,35 @@ 1 O 8 8.34 2.00 1.84 4.51 2 H 1 0.83 0.83 3 H 1 0.83 0.83 - + Multipole analysis of the density wrt the origin ------------------------------------------------ - + L x y z total open nuclear - - - - ----- ---- ------- 0 0 0 0 -0.000000 0.000000 10.000000 - - 1 1 0 0 0.658404 0.000000 0.000000 - 1 0 1 0 -0.000000 0.000000 0.000000 + + 1 1 0 0 0.658404 0.000000 -0.000000 + 1 0 1 0 0.000000 0.000000 0.000000 1 0 0 1 0.000000 0.000000 0.000000 - + 2 2 0 0 -4.027790 0.000000 2.028215 - 2 1 1 0 -0.000000 0.000000 0.000000 + 2 1 1 0 0.000000 0.000000 0.000000 2 1 0 1 0.000000 0.000000 0.000000 2 0 2 0 -3.193231 0.000000 4.464731 2 0 1 1 0.000000 0.000000 0.000000 2 0 0 2 -4.551067 0.000000 0.000000 + + + Parallel integral file used 4 records with 0 large values NWChem MP2 Semi-direct Energy/Gradient Module --------------------------------------------- - - + + water - - + + Basis functions = 7 Molecular orbitals = 7 Frozen core = 0 @@ -462,34 +474,27 @@ GA uses MA = F GA memory limited = T Available: - local mem= 2.29D+07 + local mem= 2.62D+07 global mem= 2.62D+07 - local disk= 0.00D+00 - mp2_memr nvloc 2 - nvloc new 2 - 1 passes of 5: 2097152 191 1054. - 1 passes of 5: M 22936854 G 26214302 F 20839702. - - Semi-direct pass number 1 of 1 for RHF alpha+beta at 0.0s - vrange nnbf 28 - mp2_eaftype 10 avail_ma_in_mb 199 - EAF : mp2_eaftype filesize 10 527. - mp2_eaf for mointskh 10 -Node 0 wrote 0.0 Mb in 0.0 s Agg I/O rate: 203.6 Mb/s - Done moints_semi at 0.0s - mp2_eaftype 10 avail_ma_in_mb 189 - EAF : mp2_eaftype filesize 10 527. - mp2_eaf for kh 10 - Done maket at 0.0s - Done multipass loop at 0.0s + local disk= 3.50D+10 + mp2_memr nvloc 1 + nvloc new 1 + 1 passes of 5: 142678 116 578. + + Semi-direct pass number 1 of 1 for RHF alpha+beta at 0.2s + vrange nnbf 28 +Node 0 wrote 0.0 Mb in 0.0 s Agg I/O rate: 35.9 Mb/s + Done moints_semi at 0.2s + Done maket at 0.2s + Done multipass loop at 0.2s ------------------------------------------- - SCF energy -74.964328768148 + SCF energy -74.964328768125 Correlation energy -0.038049932200 Singlet pairs -0.034770106144 Triplet pairs -0.003279826056 - Total MP2 energy -75.002378700347 + Total MP2 energy -75.002378700325 ------------------------------------------- @@ -501,27 +506,33 @@ Node 0 wrote 0.0 Mb in 0.0 s Agg I/O rate: 203.6 Mb/s Opposite spin pairs -0.035863381496 Opposite spin scaling fact. 1.200000000000 SCS-MP2 correlation energy -0.043764908030 - Total SCS-MP2 energy -75.008093676177 + Total SCS-MP2 energy -75.008093676155 --------------------------------------------------- ----------------------- Performance information ----------------------- - Timer overhead = 2.80D-07 seconds/call + Timer overhead = 1.73D-07 seconds/call Nr. of calls CPU time (s) Wall time (s) GFlops --------------- ------------------- ------------------------------ ------------------- Name Min Avg Max Min Avg Max Min Avg Max Mx/calls Min Max Sum -mp2: moin 1 1 1 3.46E-3 3.46E-3 3.46E-3 3.69E-3 3.69E-3 3.69E-3 3.69E-3 0.0 0.0 0.0 -mp2: make 1 1 1 7.30E-5 7.30E-5 7.30E-5 7.29E-5 7.29E-5 7.29E-5 7.29E-5 0.0 0.0 0.0 -mp2: tota 1 1 1 6.68E-3 6.68E-3 6.68E-3 6.91E-3 6.91E-3 6.91E-3 6.91E-3 0.0 0.0 0.0 +mp2: moin 1 1 1 3.65E-3 3.68E-3 3.70E-3 3.94E-3 3.95E-3 3.95E-3 3.95E-3 0.0 0.0 0.0 +mp2: make 1 1 1 9.83E-4 9.84E-4 9.85E-4 9.83E-4 9.84E-4 9.85E-4 9.85E-4 0.0 0.0 0.0 +mp2: tota 1 1 1 2.11E-2 2.29E-2 2.56E-2 4.87E-2 4.88E-2 4.91E-2 4.91E-2 0.0 0.0 0.0 The average no. of pstat calls per process was 3.00D+00 - with a timing overhead of 8.39D-07s + with a timing overhead of 5.18D-07s - Task times cpu: 0.0s wall: 0.0s + Task times cpu: 0.1s wall: 0.2s + + + NWChem Input Module + ------------------- + + Summary of allocated global arrays ----------------------------------- No active global arrays @@ -532,11 +543,12 @@ mp2: tota 1 1 1 6.68E-3 6.68E-3 6.68E-3 6.91E-3 6.91E-3 6.91E-3 6 ------------------------------ create destroy get put acc scatter gather read&inc -calls: 352 352 1698 912 900 0 0 352 -number of processes/call 2.78e+15 6.12e+13 5.17e+15 0.00e+00 0.00e+00 -bytes total: 1.71e+05 1.14e+05 4.58e+04 0.00e+00 0.00e+00 2.82e+03 -bytes remote: 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 0.00e+00 -Max memory consumed for GA by this process: 82704 bytes +calls: 339 339 889 565 503 0 0 66 +number of processes/call 4.29e+15 2.34e+13 2.52e+13 0.00e+00 0.00e+00 +bytes total: 1.44e+05 9.22e+04 3.60e+04 0.00e+00 0.00e+00 5.28e+02 +bytes remote: 7.50e+03 4.31e+03 5.01e+03 0.00e+00 0.00e+00 0.00e+00 +Max memory consumed for GA by this process: 41184 bytes + MA_summarize_allocated_blocks: starting scan ... MA_summarize_allocated_blocks: scan completed: 0 heap blocks, 0 stack blocks MA usage statistics: @@ -547,49 +559,24 @@ MA usage statistics: current number of blocks 0 0 maximum number of blocks 18 22 current total bytes 0 0 - maximum total bytes 10491320 22509240 - maximum total K-bytes 10492 22510 - maximum total M-bytes 11 23 - - - NWChem Input Module - ------------------- - - - - - + maximum total bytes 1054136 22509240 + maximum total K-bytes 1055 22510 + maximum total M-bytes 2 23 + + CITATION -------- Please cite the following reference when publishing results obtained with NWChem: - - E. Aprà, E. J. Bylaska, W. A. de Jong, N. Govind, K. Kowalski, - T. P. Straatsma, M. Valiev, H. J. J. van Dam, Y. Alexeev, J. Anchell, - V. Anisimov, F. W. Aquino, R. Atta-Fynn, J. Autschbach, N. P. Bauman, - J. C. Becca, D. E. Bernholdt, K. Bhaskaran-Nair, S. Bogatko, P. Borowski, - J. Boschen, J. Brabec, A. Bruner, E. Cauët, Y. Chen, G. N. Chuev, - C. J. Cramer, J. Daily, M. J. O. Deegan, T. H. Dunning Jr., M. Dupuis, - K. G. Dyall, G. I. Fann, S. A. Fischer, A. Fonari, H. Früchtl, L. Gagliardi, - J. Garza, N. Gawande, S. Ghosh, K. Glaesemann, A. W. Götz, J. Hammond, - V. Helms, E. D. Hermes, K. Hirao, S. Hirata, M. Jacquelin, L. Jensen, - B. G. Johnson, H. Jónsson, R. A. Kendall, M. Klemm, R. Kobayashi, V. Konkov, - S. Krishnamoorthy, M. Krishnan, Z. Lin, R. D. Lins, R. J. Littlefield, - A. J. Logsdail, K. Lopata, W. Ma, A. V. Marenich, J. Martin del Campo, - D. Mejia-Rodriguez, J. E. Moore, J. M. Mullin, T. Nakajima, D. R. Nascimento, - J. A. Nichols, P. J. Nichols, J. Nieplocha, A. Otero-de-la-Roza, B. Palmer, - A. Panyala, T. Pirojsirikul, B. Peng, R. Peverati, J. Pittner, L. Pollack, - R. M. Richard, P. Sadayappan, G. C. Schatz, W. A. Shelton, D. W. Silverstein, - D. M. A. Smith, T. A. Soares, D. Song, M. Swart, H. L. Taylor, G. S. Thomas, - V. Tipparaju, D. G. Truhlar, K. Tsemekhman, T. Van Voorhis, - Á. Vázquez-Mayagoitia, P. Verma, O. Villa, A. Vishnu, K. D. Vogiatzis, - D. Wang, J. H. Weare, M. J. Williamson, T. L. Windus, K. Woliński, - A. T. Wong, Q. Wu, C. Yang, Q. Yu, M. Zacharias, Z. Zhang, Y. Zhao, - and R. J. Harrison - "NWChem: Past, present, and future - J. Chem. Phys. 152, 184102 (2020) - doi:10.1063/5.0004997 - + + M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, + T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, + E. Apra, T.L. Windus, W.A. de Jong + "NWChem: a comprehensive and scalable open-source + solution for large scale molecular simulations" + Comput. Phys. Commun. 181, 1477 (2010) + doi:10.1016/j.cpc.2010.04.018 + AUTHORS ------- E. Apra, E. J. Bylaska, N. Govind, K. Kowalski, M. Valiev, W. A. de Jong, @@ -612,4 +599,4 @@ MA usage statistics: T. Nakajima, S. Niu, L. Pollack, M. Rosing, K. Glaesemann, G. Sandrone, M. Stave, H. Taylor, G. Thomas, J. H. van Lenthe, A. T. Wong, Z. Zhang. - Total times cpu: 0.0s wall: 0.1s + Total times cpu: 0.1s wall: 0.3s From f9a0cfac7850197a7bad61aa8b2df71f7541438c Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Mon, 6 Jun 2022 10:37:06 -0400 Subject: [PATCH 035/103] Tests: graduate atomic charge tests for all SPun --- test/data/testSPun.py | 40 +++++++++++++++++++++++++++++++++------- 1 file changed, 33 insertions(+), 7 deletions(-) diff --git a/test/data/testSPun.py b/test/data/testSPun.py index 2c31e841f..5f6cec445 100644 --- a/test/data/testSPun.py +++ b/test/data/testSPun.py @@ -33,6 +33,36 @@ def testatomnos(self): self.assertEqual(self.data.atomnos.shape, (20,) ) self.assertEqual(sum(self.data.atomnos==6) + sum(self.data.atomnos==1), 20) + @skipForParser('ADF', '???') + @skipForParser('DALTON', 'DALTON has a very low accuracy for the printed values of all populations (2 decimals rounded in a weird way), so let it slide for now') + @skipForParser('FChk', 'The parser is still being developed so we skip this test') + @skipForParser('Jaguar', '???') + @skipForParser('Molcas', 'Length is zero for some reason') + @skipForParser('Molpro', '???') + @skipForParser('Turbomole', '???') + def testatomcharges(self): + """Are atomic charges consistent with natom?""" + for atomcharge_type in self.data.atomcharges: + charges = self.data.atomcharges[atomcharge_type] + natom = self.data.natom + self.assertEqual( + len(charges), + natom, + msg=f"len(atomcharges['{atomcharge_type}']) = {len(charges)}, natom = {natom}" + ) + + @skipForParser('ADF', '???') + @skipForParser('DALTON', 'DALTON has a very low accuracy for the printed values of all populations (2 decimals rounded in a weird way), so let it slide for now') + @skipForParser('FChk', 'The parser is still being developed so we skip this test') + @skipForParser('Jaguar', '???') + @skipForParser('Molcas', 'Length is zero for some reason') + @skipForParser('Molpro', '???') + @skipForParser('Turbomole', '???') + def testatomcharges_mulliken(self): + """Do Mulliken atomic charges sum to positive one?""" + charges = self.data.atomcharges["mulliken"] + self.assertAlmostEqual(sum(charges), 1.0, delta=1.0e-2) + def testatomcoords(self): """Are the dimensions of atomcoords 1 x natom x 3?""" self.assertEqual(self.data.atomcoords.shape,(1,self.data.natom,3)) @@ -174,14 +204,10 @@ def testnooccnos(self): class GaussianSPunTest(GenericSPunTest): """Customized unrestricted single point unittest""" - def testatomcharges(self): - """Are atomcharges (at least Mulliken) consistent with natom and sum to one?""" - for type_ in set(['mulliken'] + list(self.data.atomcharges.keys())): - charges = self.data.atomcharges[type_] - self.assertEqual(len(charges), self.data.natom) - self.assertAlmostEqual(sum(charges), 1.0, delta=0.001) - def testatomspins(self): + """Are atomic spins from Mulliken population analysis consistent with + natom and sum to one (doublet)? + """ spins = self.data.atomspins['mulliken'] self.assertEqual(len(spins), self.data.natom) self.assertAlmostEqual(sum(spins), 1.0, delta=0.001) From 6ff9ae6014b4af522902841b091e48e07381f11a Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Mon, 6 Jun 2022 10:37:28 -0400 Subject: [PATCH 036/103] NWChem: fix atomcharges flipped sign --- cclib/parser/nwchemparser.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cclib/parser/nwchemparser.py b/cclib/parser/nwchemparser.py index 19fbea35d..35fa86179 100644 --- a/cclib/parser/nwchemparser.py +++ b/cclib/parser/nwchemparser.py @@ -806,11 +806,11 @@ def extract(self, inputfile, line): while line.strip(): index, atomname, nuclear, atom = line.split()[:4] shells = line.split()[4:] - charges.append(float(atom)-float(nuclear)) + charges.append(float(nuclear)-float(atom)) line = next(inputfile) self.atomcharges['mulliken'] = charges - # Not the the 'overlap population' as printed in the Mulliken population analysis, + # Note the 'overlap population' as printed in the Mulliken population analysis # is not the same thing as the 'overlap matrix'. In fact, it is the overlap matrix # multiplied elementwise times the density matrix. # @@ -872,15 +872,15 @@ def extract(self, inputfile, line): ncharge = float(ncharge) epop = float(epop) assert iatom == (i+1) - charges.append(epop-ncharge) + charges.append(ncharge-epop) if not hasattr(self, 'atomcharges'): self.atomcharges = {} - if not "mulliken" in self.atomcharges: - self.atomcharges['mulliken'] = charges - else: + if "mulliken" in self.atomcharges: assert max(self.atomcharges['mulliken'] - numpy.array(charges)) < 0.01 - self.atomcharges['mulliken'] = charges + # This is going to be higher precision than "Mulliken analysis of + # the total density". + self.atomcharges['mulliken'] = charges # NWChem prints the dipole moment in atomic units first, and we could just fast forward # to the values in Debye, which are also printed. But we can also just convert them From 00288764642320e5e307d4457c66f5897fd50f06 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sat, 24 Sep 2022 14:48:39 -0400 Subject: [PATCH 037/103] Tests: fix regressions broken by testing atomic charges for all SPun --- test/regression.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/test/regression.py b/test/regression.py index 80728f47b..e070944b0 100644 --- a/test/regression.py +++ b/test/regression.py @@ -2912,6 +2912,12 @@ class GAMESSUSSPunTest_charge0(GenericSPunTest): def testcharge_and_mult(self): """The charge in the input was wrong.""" self.assertEqual(self.data.charge, 0) + + def testatomcharges_mulliken(self): + """The charge in the input was wrong.""" + charges = self.data.atomcharges["mulliken"] + self.assertAlmostEqual(sum(charges), 0.0, delta=0.001) + @unittest.skip('HOMOs were incorrect due to charge being wrong') def testhomos(self): """HOMOs were incorrect due to charge being wrong.""" @@ -3148,9 +3154,16 @@ class OrcaSPunTest_charge0(GenericSPunTest): def testcharge_and_mult(self): """The charge in the input was wrong.""" self.assertEqual(self.data.charge, 0) + + def testatomcharges_mulliken(self): + """The charge in the input was wrong.""" + charges = self.data.atomcharges["mulliken"] + self.assertAlmostEqual(sum(charges), 0.0, delta=0.001) + @unittest.skip('HOMOs were incorrect due to charge being wrong.') def testhomos(self): """HOMOs were incorrect due to charge being wrong.""" + def testorbitals(self): """Closed-shell calculation run as open-shell.""" self.assertTrue(self.data.closed_shell) From 41bc6098c9f16bf1ead022040ae02f8aa236e7af Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sun, 23 Oct 2022 11:44:47 -0400 Subject: [PATCH 038/103] Stop testing Python 3.6 --- .github/workflows/cclib_pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cclib_pytest.yml b/.github/workflows/cclib_pytest.yml index 0d8a0d2e5..d6f91141d 100644 --- a/.github/workflows/cclib_pytest.yml +++ b/.github/workflows/cclib_pytest.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - container: ['shivupa/cclib-ci:py36', 'shivupa/cclib-ci:py37', 'shivupa/cclib-ci:py38'] + container: ['shivupa/cclib-ci:py37', 'shivupa/cclib-ci:py38'] container: image: ${{ matrix.container }} defaults: From 0a4b4be4d4a097ee27a7268d6b24c3a968d622ff Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Tue, 25 Oct 2022 14:16:10 -0400 Subject: [PATCH 039/103] install pyquante2 with Python 3 fixes --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 453e4c7a2..aec0c1331 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,7 @@ periodictable # bridges biopython==1.76 ase>=3.21 ; python_version >= '3.5' -git+https://github.com/rpmuller/pyquante2.git ; python_version > '3.0' +git+https://github.com/berquist/pyquante2.git@py37 ; python_version > '3.0' # For building the documentation sphinx From b610f67fde11092aefa4717adf98b8d9f3844fa4 Mon Sep 17 00:00:00 2001 From: Shiv Upadhyay Date: Tue, 25 Oct 2022 15:13:21 -0400 Subject: [PATCH 040/103] Test new image --- .github/workflows/cclib_pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cclib_pytest.yml b/.github/workflows/cclib_pytest.yml index d6f91141d..85c17eb59 100644 --- a/.github/workflows/cclib_pytest.yml +++ b/.github/workflows/cclib_pytest.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - container: ['shivupa/cclib-ci:py37', 'shivupa/cclib-ci:py38'] + container: ['shivupa/cclib-ci:py37-edge', 'shivupa/cclib-ci:py38'] container: image: ${{ matrix.container }} defaults: From bbcc367f8f10e8d0f4dfda282e437e80bed6eab8 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Tue, 25 Oct 2022 15:25:43 -0400 Subject: [PATCH 041/103] install iodata when using requirements.txt --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index aec0c1331..00aa664f5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,8 @@ periodictable # bridges biopython==1.76 ase>=3.21 ; python_version >= '3.5' -git+https://github.com/berquist/pyquante2.git@py37 ; python_version > '3.0' +git+https://github.com/berquist/pyquante2.git@py37 +git+https://github.com/theochem/iodata.git@1.0.0a2 # For building the documentation sphinx From cc8958a161c9903a542190e4a91c1d7ca63fda85 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sun, 23 Oct 2022 12:04:11 -0400 Subject: [PATCH 042/103] docs: update minimum recommended version of Python from 3.4 to 3.7 --- doc/sphinx/how_to_install.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/sphinx/how_to_install.rst b/doc/sphinx/how_to_install.rst index a56932375..d55456b3d 100644 --- a/doc/sphinx/how_to_install.rst +++ b/doc/sphinx/how_to_install.rst @@ -7,7 +7,7 @@ Requirements ------------ Before you install cclib, you need to make sure that you have the following: - * Python (at least version 3.4 is recommended, although 2.7 is still tested) + * Python (at least version 3.7 is recommended) * NumPy (at least version 1.15 is recommended) Python is an open-source programming language available from https://www.python.org. It is available for Windows as well as being included in most Linux distributions. In Debian/Ubuntu it is installed as follows (as root): From 40b04608b07f14e9c555bf3f2317418ae84671a1 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sun, 23 Oct 2022 12:04:42 -0400 Subject: [PATCH 043/103] docs: update release version links from 1.7 to 1.7.2 --- doc/sphinx/how_to_install.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/sphinx/how_to_install.rst b/doc/sphinx/how_to_install.rst index d55456b3d..187f063a8 100644 --- a/doc/sphinx/how_to_install.rst +++ b/doc/sphinx/how_to_install.rst @@ -88,8 +88,8 @@ Manual download and install --------------------------- The source code of the newest release of cclib (version |release|) is distributed as: - * A .zip file: https://github.com/cclib/cclib/releases/download/v1.7/cclib-1.7.zip - * A .tar.gz file: https://github.com/cclib/cclib/releases/download/v1.7/cclib-1.7.tar.gz + * A .zip file: https://github.com/cclib/cclib/releases/download/v1.7.2/cclib-1.7.2.zip + * A .tar.gz file: https://github.com/cclib/cclib/releases/download/v1.7.2/cclib-1.7.2.tar.gz * Windows binary installers (see the `newest release page`_) On Windows, if you choose to download the .exe files instead, you can install simply by double-clicking on the file. To uninstall, use the "Add and Remove Programs" menu in the Control Panel. From df990e5934617577e98d5a667379c19e20eafda7 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sun, 23 Oct 2022 12:05:05 -0400 Subject: [PATCH 044/103] docs: update system package manager installation instructions --- doc/sphinx/how_to_install.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/sphinx/how_to_install.rst b/doc/sphinx/how_to_install.rst index 187f063a8..5daa4cecf 100644 --- a/doc/sphinx/how_to_install.rst +++ b/doc/sphinx/how_to_install.rst @@ -69,20 +69,20 @@ or to your home directory using:: Installing using a system package manager ----------------------------------------- -If you're using `Debian GNU/Linux`_, `Ubuntu`_, or a similar distribution, there are official `cclib packages`_ that you can install in any package manager (should as synaptic) or with one simple command: +If you're using `Debian GNU/Linux`_, `Ubuntu`_, or a similar distribution, there are official `cclib packages`_ that you can install via your package manager: .. code-block:: bash - aptitude install cclib + apt install cclib -There are in fact two packages, `python-cclib`_ containing the Python module, and `cclib`_ which installs just the user scripts. If you also need to also install the unittests and logfiles we distribute, you will need to install the `cclib-data`_ package from the non-free repositories (due to license issues). Because of distribution release cycles, package manager versions of cclib may be out of date compared to the PyPI version. +There are in fact multiple packages, `python3-cclib`_ containing the Python module, and `cclib`_ which installs the user scripts and depends on the Python module. If you also need to also install the unittests and logfiles we distribute, you will need to install the `cclib-data`_ package from the non-free repositories (due to license issues). Because of distribution release cycles, package manager versions of cclib may be out of date compared to the PyPI version. .. _`Debian GNU/Linux`: https://www.debian.org .. _`Ubuntu`: https://ubuntu.com/ .. _`cclib packages`: https://packages.debian.org/search?searchon=sourcenames&keywords=cclib -.. _`python-cclib`: https://packages.debian.org/stretch/python-cclib -.. _`cclib`: https://packages.debian.org/stretch/cclib -.. _`cclib-data`: https://packages.debian.org/stretch/cclib-data +.. _`python3-cclib`: https://packages.debian.org/bullseye/python3-cclib +.. _`cclib`: https://packages.debian.org/bullseye/cclib +.. _`cclib-data`: https://packages.debian.org/bullseye/cclib-data Manual download and install --------------------------- From e3783507275da6086d3f644cdc8417ecbdbe6db9 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sun, 23 Oct 2022 12:06:14 -0400 Subject: [PATCH 045/103] Remove INSTALL that duplicates docs/sphinx/how_to_install.rst --- INSTALL | 73 ----------------------------------------------------- manifest.py | 2 +- 2 files changed, 1 insertion(+), 74 deletions(-) delete mode 100644 INSTALL diff --git a/INSTALL b/INSTALL deleted file mode 100644 index 867732a18..000000000 --- a/INSTALL +++ /dev/null @@ -1,73 +0,0 @@ -== cclib installation instructions == - -=== Requirements === - -Before you install cclib, you need to make sure that you have the following: -* Python (version 3.0 and up, although 2.7 will still work) -* NumPy (at least version 1.5 is recommended). - -Python is an open-source programming language available from http://www.python.org and it is included in many Linux distributions. In Debian it is installed as follows: (as root) - - apt-get install python python-dev - -NumPy (Numerical Python) adds a fast array facility to Python and is available from http://www.numpy.org. Windows users should use the most recent NumPy installation for the Python version they have (2.4, 2.5). Linux users are recommended to find a binary package for their distribution. In Debian it is installed as follows: (as root) - - apt-get install python-numpy - -Note: Numeric (the old version of Numerical Python) is not supported by the Numerical Python developers and is not supported by cclib. - -To test whether Python is on the PATH, open a command prompt window and type: - - python - -If Python is not on the PATH and you use Windows, add the full path to the directory containing it to the end of the PATH variable under Control Panel/System/Advanced Settings/Environment Variables. If you use Linux and Python is not on the PATH, put/edit the appropriate line in your .bashrc or similar startup file. - -To test, try importing NumPy at the Python prompt. You should see something similar to the following: - - $ python3 - Python 3.8.2 (default, Apr 27 2020, 21:31:18) - [GCC 9.3.0] on linux - Type "help", "copyright", "credits" or "license" for more information. - >>> import numpy - >>> numpy.__version__ - '1.7.2' - -(To exit, press CTRL+Z in Windows or CTRL+D in Linux) - -=== Installing cclib === - -On Debian, Ubuntu and other derived Linux distribution, cclib can be quickly installed with the command: - - aptitude install cclib - -The version installed from a distribuion might not be the most recent one. To install the most recent version, first download the source code of cclib. Extract the cclib tar file or zip file at an appropriate location, which we will call INSTALLDIR. Open a command prompt and change directory to INSTALLDIR. Next, run the following commands: - - python setup.py build - python setup.py install (as root) - -To test, trying importing cclib at the Python prompt. You should see something similar to the following: - - $ python3 - Python 3.8.2 (default, Apr 27 2020, 21:31:18) - [GCC 9.3.0] on linux - Type "help", "copyright", "credits" or "license" for more information. - Press ESC for command-line completion (twice for guesses). - History is saved to ~/.pyhistory. - >>> import cclib - >>> cclib.__version__ - '1.7.2' - -To run the unit tests, change directory into INSTALLDIR/test and run the following command: - - python testall.py - -This tests the program using the example data files included in the INSTALLDIR/data directory. - -=== What next? === - -* Read the documentation at: - http://cclib.github.io -* Read the list and specifications of the extracted data at: - http://cclib.github.io/data.html -* Send any questions to the cclib-users mailing list at: - https://lists.sourceforge.net/lists/listinfo/cclib-users. diff --git a/manifest.py b/manifest.py index 5a03bcb1f..8b79d8840 100644 --- a/manifest.py +++ b/manifest.py @@ -11,7 +11,7 @@ import os -files = ['ANNOUNCE', 'CHANGELOG', 'INSTALL', 'LICENSE', 'README.md','THANKS',] +files = ['ANNOUNCE', 'CHANGELOG', 'LICENSE', 'README.md', 'THANKS'] files += ['setup.py'] source = 'cclib' From a44ad2190d7c2bab4fc3dadb4a308c0f8fda52b9 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sat, 1 Oct 2022 16:31:54 -0400 Subject: [PATCH 046/103] documentation build fixes --- doc/sphinx/bridge.rst | 1 + doc/sphinx/data_notes.rst | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/sphinx/bridge.rst b/doc/sphinx/bridge.rst index b57885130..6189c388a 100644 --- a/doc/sphinx/bridge.rst +++ b/doc/sphinx/bridge.rst @@ -75,6 +75,7 @@ To calculate partial charges that require pro-atomic densities, follow the steps Then read in the densities as below to calculate Hirshfeld or Hirshfeld-like charges: .. _`Python interface`: https://theochem.github.io/horton/2.1.0/user_postproc_aim.html#python-interface-to-the-partitioning-code +.. _`Building proatomic database`: https://theochem.github.io/horton/2.1.0/user_postproc_aim.html#horton-atomdb-py-build-a-pro-atom-database .. code-block:: python diff --git a/doc/sphinx/data_notes.rst b/doc/sphinx/data_notes.rst index d0049f321..2f961a96b 100644 --- a/doc/sphinx/data_notes.rst +++ b/doc/sphinx/data_notes.rst @@ -341,7 +341,7 @@ A dictionary containing metadata_ (data about data) for the calculation. Current * ``wall_time``: A list of datetime.timedeltas containing the wall time of each calculation in the output. * ``warnings``: A list of strings, each of which is a warning produced during a calculation. -The implementation and coverage of metadata is currently inconsistent. In the future, metadata may receive its own page similar to `extracted data`_. +The implementation and coverage of metadata is currently inconsistent. In the future, metadata may receive its own page similar to :doc:`extracted data `. .. _metadata: https://en.wikipedia.org/wiki/Metadata @@ -417,7 +417,7 @@ The symmetry labels are normalised and cclib reports standard symmetry names: sigma.g Sigma.g SGG ======= ======= ======= ========== ================== ====== -* ADF - the full list can be found `here http://www.scm.com/Doc/Doc2005.01/ADF/ADFUsersGuide/page339.html`_. +* ADF - the full list can be found `here `_. * GAMESS-UK - to get the list, ``grep "data yr" input.m`` if you have access to the source. Note that for E, it's split into "e1+" and "e1-" for instance. * Jaguar - to get the list, look at the examples in ``schrodinger/jaguar-whatever/samples`` if you have access to Jaguar. Note that for E, it's written as E1pp/Ap, for instance. * NWChem - if molecular symmetry is turned off or set to C1, symmetry adaption for orbitals is also deactivated, and can be explicitly turned on with `adapt on` in the SCF block @@ -425,7 +425,7 @@ The symmetry labels are normalised and cclib reports standard symmetry names: Developers: * The tests for these functions live in ``test/parser/testspecficparser.py``. -* The character tables `here `_ may be useful in determining the correspondence between the labels used by the comp chem package and the commonly-used symbols. +* `These `_ character tables may be useful in determining the correspondence between the labels used by the comp chem package and the commonly-used symbols. .. index:: single: energy; mpenergies (attribute) From 25cc53959727f5e24277ee4715d750e6a666affd Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sun, 25 Sep 2022 16:00:13 -0400 Subject: [PATCH 047/103] Test: remove Python 2 leftovers --- test/bridge/testhorton.py | 124 +----------------------------------- test/bridge/testpyquante.py | 28 -------- test/test_bridge.py | 24 +++---- 3 files changed, 12 insertions(+), 164 deletions(-) diff --git a/test/bridge/testhorton.py b/test/bridge/testhorton.py index e16d736ed..e6d73c912 100644 --- a/test/bridge/testhorton.py +++ b/test/bridge/testhorton.py @@ -16,133 +16,15 @@ from numpy.testing import assert_array_almost_equal -class Horton2Test(unittest.TestCase): - """ Tests for the horton 2 bridge in cclib """ +class HortonTest(unittest.TestCase): + """Tests for the Horton bridge in cclib""" # Both horton and cclib can read in fchk files. The test routine utilizes this fact # and compares the attributes that were directly loaded from each package # and the attributes that were converted. def setUp(self): - super(Horton2Test, self).setUp() - - self.data, self.logfile = getdatafile( - "Gaussian", "basicGaussian16", ["dvb_un_sp.fchk"] - ) - datadir = os.path.abspath( - os.path.join(os.path.dirname(__file__), "..", "..", "data") - ) - inputfile = os.path.join( - datadir, "Gaussian", "basicGaussian16", "dvb_un_sp.fchk" - ) - - self._old_horton = False - self._found_horton = find_package("horton") - - if self._found_horton: - try: - from horton import __version__ - except: - self._old_horton = ( - True # Old horton versions do not have this __version__ attribute - ) - else: - if __version__[0] == "2": - from horton.io.iodata import IOData - from horton import log - - log.set_level( - 0 - ) # This suppresses horton outputs so that they do not flood the test log. - self._hortonver = 2 - self.iodat = IOData.from_file(inputfile) - - def test_makehorton(self): - """ Check that the bridge from cclib to horton works correctly """ - # First use `makehorton` function to generate IOData object converted from cclib ccData - hortonequiv = cclib2horton.makehorton(self.data) - - # Identify attributes that should be verified - check = ["pseudo_numbers", "ms2"] # float or int - checkArr = [ - "coordinates", - "numbers", - "orb_alpha", - "orb_beta", - "mulliken_charges", - "npa_charges", - ] # one dimensional arrays - checkArrArr = ["polar"] # two dimensional arrays - - for attr in check: - if hasattr(self.iodat, attr) and hasattr(hortonequiv, attr): - self.assertAlmostEqual( - getattr(self.iodat, attr), - getattr(hortonequiv, attr), - delta=1.0e-3, - ) - - for attr in checkArr: - if hasattr(self.iodat, attr) and hasattr(hortonequiv, attr): - assert_array_almost_equal( - getattr(self.iodat, attr), getattr(hortonequiv, attr), decimal=3 - ) - - for attr in checkArrArr: - if hasattr(self.iodat, attr) and hasattr(hortonequiv, attr): - assert_array_almost_equal( - getattr(self.iodat, attr)[0], - getattr(hortonequiv, attr)[0], - decimal=3, - ) - - def test_makecclib(self): - """ Check that the bridge from horton to cclib works correctly """ - # First use `makecclib` function to generate ccData object converted from horton IOData - cclibequiv = cclib2horton.makecclib(self.iodat) - - # Identify attributes that should be verified - check = ["mult", "coreelectrons"] # float or int - checkArr = ["atomcoords", "atomnos", "mocoeffs"] # one dimensional arrays - checkArrArr = ["polarizability"] # two dimensional arrays - checkChg = ["mulliken", "natural"] # partial charges - - for attr in check: - if hasattr(self.data, attr) and hasattr(cclibequiv, attr): - self.assertAlmostEqual( - getattr(self.data, attr), getattr(cclibequiv, attr), delta=1.0e-3 - ) - - for attr in checkArr: - if hasattr(self.data, attr) and hasattr(cclibequiv, attr): - assert_array_almost_equal( - getattr(self.data, attr), getattr(cclibequiv, attr), decimal=3 - ) - - for attr in checkArrArr: - if hasattr(self.data, attr) and hasattr(cclibequiv, attr): - assert_array_almost_equal( - getattr(self.data, attr)[0], getattr(cclibequiv, attr)[0], decimal=3 - ) - - if hasattr(self.data, "atomcharges") and hasattr(cclibequiv, "atcomcharges"): - for chg in checkChg: - if chg in self.data.atomcharges and chg in cclibequiv.atomcharges: - assert_array_almost_equal( - self.data.atomcharges[chg][0], - cclibequiv.atomcharges[chg][0], - decimal=3, - ) - -class Horton3Test(unittest.TestCase): - """ Tests for the horton 3 bridge in cclib """ - - # Both horton and cclib can read in fchk files. The test routine utilizes this fact - # and compares the attributes that were directly loaded from each package - # and the attributes that were converted. - - def setUp(self): - super(Horton3Test, self).setUp() + super().setUp() self.data, self.logfile = getdatafile( "Gaussian", "basicGaussian16", ["dvb_un_sp.fchk"] diff --git a/test/bridge/testpyquante.py b/test/bridge/testpyquante.py index fb8287bdb..54cab72ac 100644 --- a/test/bridge/testpyquante.py +++ b/test/bridge/testpyquante.py @@ -16,34 +16,6 @@ from numpy.testing import assert_array_almost_equal -class PyquanteTest(unittest.TestCase): - """Tests for the cclib2pyquante bridge in cclib.""" - - def setUp(self): - super(PyquanteTest, self).setUp() - if not find_package("PyQuante"): - raise ImportError("Must install PyQuante to run this test") - - self.data, self.logfile = getdatafile("Gaussian", "basicGaussian16", ["water_ccsd.log"]) - - def test_makepyquante(self): - """Test older PyQuante bridge.""" - from PyQuante.hartree_fock import hf - from PyQuante.Molecule import Molecule - - reference = Molecule( - "h2o", - [(8, (0, 0, 0.119159)), (1, (0, 0.790649, -0.476637)), (1, (0, -0.790649, -0.476637)),], - units="Angstroms", - ) - refen, reforbe, reforbs = hf(reference) - - pyqmol = cclib2pyquante.makepyquante(self.data) - en, orbe, orbs = hf(pyqmol) - - self.assertAlmostEqual(en, refen, delta=1.0e-6) - - class pyquante2Test(unittest.TestCase): """Tests for the cclib2pyquante bridge in cclib.""" diff --git a/test/test_bridge.py b/test/test_bridge.py index 33599ef43..0836628ce 100644 --- a/test/test_bridge.py +++ b/test/test_bridge.py @@ -12,22 +12,16 @@ sys.path.insert(1, "bridge") -if sys.version_info[0] == 3: - if sys.version_info[1] >= 6: - from .bridge.testpsi4 import * - from .bridge.testpyscf import * - from .bridge.testhorton import Horton3Test - if sys.version_info[1] >= 5: - from .bridge.testase import * - if sys.version_info[1] >= 4: - from .bridge.testbiopython import * - from .bridge.testpyquante import pyquante2Test - +if sys.version_info[1] >= 6: + from .bridge.testpsi4 import * + from .bridge.testpyscf import * + from .bridge.testhorton import HortonTest +if sys.version_info[1] >= 5: + from .bridge.testase import * +if sys.version_info[1] >= 4: + from .bridge.testbiopython import * from .bridge.testopenbabel import * - -if sys.version_info[0] == 2: - from .bridge.testhorton import Horton2Test - from .bridge.testpyquante import PyquanteTest +from .bridge.testpyquante import pyquante2Test if __name__ == "__main__": unittest.main() From bd2894a9e39c0d7f5b714649a572ca6c83039346 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Thu, 3 Nov 2022 15:14:14 +0000 Subject: [PATCH 048/103] Fixed Gaussian sometimes incorrectly recognising that a calulation does not have full mocoeffs printed --- cclib/parser/gaussianparser.py | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index 529d482d3..a26a9e1af 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -1720,18 +1720,26 @@ def extract(self, inputfile, line): self.updateprogress(inputfile, "Coefficients", self.fupdate) colmNames = next(inputfile) + + if "Density Matrix:" in colmNames: + # Reached end of mocoeff section early, this implies pop was not full. + self.popregular = True + # We can stop processing. + break if not colmNames.split(): self.logger.warning("Molecular coefficients header found but no coefficients.") break - if base == 0 and int(colmNames.split()[0]) != 1: - # Implies that this is a POP=REGULAR calculation - # and so, only aonames (not mocoeffs) will be extracted - self.popregular = True + # This check does not work if the five highest occupied MOs happen to 1 through 5. +# if base == 0 and int(colmNames.split()[0]) != 1: +# # Implies that this is a POP=REGULAR calculation +# # and so, only aonames (not mocoeffs) will be extracted +# self.popregular = True symmetries = next(inputfile) eigenvalues = next(inputfile) for i in range(self.nbasis): + line = next(inputfile) if i == 0: @@ -1759,9 +1767,9 @@ def extract(self, inputfile, line): if base == 0 and not beta: # Do the last update of atombasis self.atombasis.append(atombasis) - if self.popregular: - # We now have aonames, so no need to continue - break +# if self.popregular: +# # We now have aonames, so no need to continue +# break if not self.popregular and not beta: self.mocoeffs = mocoeffs From fd82ffdea832057e8945fa17b5959b01dd30cfa0 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Thu, 3 Nov 2022 16:09:53 +0000 Subject: [PATCH 049/103] Removed old code --- cclib/parser/gaussianparser.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index a26a9e1af..4bc283941 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -1731,15 +1731,9 @@ def extract(self, inputfile, line): self.logger.warning("Molecular coefficients header found but no coefficients.") break - # This check does not work if the five highest occupied MOs happen to 1 through 5. -# if base == 0 and int(colmNames.split()[0]) != 1: -# # Implies that this is a POP=REGULAR calculation -# # and so, only aonames (not mocoeffs) will be extracted -# self.popregular = True symmetries = next(inputfile) eigenvalues = next(inputfile) for i in range(self.nbasis): - line = next(inputfile) if i == 0: @@ -1767,9 +1761,6 @@ def extract(self, inputfile, line): if base == 0 and not beta: # Do the last update of atombasis self.atombasis.append(atombasis) -# if self.popregular: -# # We now have aonames, so no need to continue -# break if not self.popregular and not beta: self.mocoeffs = mocoeffs From f4a7612fd7132ffbe6f72e0efe8b928e68b43880 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Thu, 3 Nov 2022 17:04:32 +0000 Subject: [PATCH 050/103] Added check for old Gaussian version --- cclib/parser/gaussianparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index 4bc283941..f58f49755 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -1721,7 +1721,7 @@ def extract(self, inputfile, line): colmNames = next(inputfile) - if "Density Matrix:" in colmNames: + if "Density Matrix:" in colmNames or "DENSITY MATRIX." in colmNames: # Reached end of mocoeff section early, this implies pop was not full. self.popregular = True # We can stop processing. From 805befb63b5b4d4be379641a79f218af00b71978 Mon Sep 17 00:00:00 2001 From: Shiv Upadhyay Date: Tue, 15 Nov 2022 18:56:05 -0500 Subject: [PATCH 051/103] Possible infinite loop? --- cclib/method/ddec.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cclib/method/ddec.py b/cclib/method/ddec.py index bd786d780..4caa7a412 100644 --- a/cclib/method/ddec.py +++ b/cclib/method/ddec.py @@ -712,7 +712,11 @@ def _converge_phi(self, phiA, superscript, atomi): candidates_phi = [phiA] candidates_bigphi = [bigphiA] - while phiA <= 0: + it_max = 200 + curr_it = 0 + + while phiA <= 0 and curr_it < it_max: + curr_it += 1 # Iterative algorithm until convergence # Refer to S101 in doi: 10.1039/c6ra04656h if superscript == 1: @@ -736,6 +740,8 @@ def _converge_phi(self, phiA, superscript, atomi): candidates_phi.append(phiA) candidates_bigphi.append(bigphiA) + if curr_it == it_max: + self.logger.info("Hit iteration max") return candidates_phi, candidates_bigphi def _parabolic_fit(self, pseudodensity, superscript, atomi): From d361e61bcde55afb4a0597533e9488f552fe86fc Mon Sep 17 00:00:00 2001 From: Shiv Upadhyay Date: Tue, 29 Nov 2022 19:38:55 -0500 Subject: [PATCH 052/103] Restructure loop --- cclib/method/ddec.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cclib/method/ddec.py b/cclib/method/ddec.py index 4caa7a412..085033768 100644 --- a/cclib/method/ddec.py +++ b/cclib/method/ddec.py @@ -715,7 +715,7 @@ def _converge_phi(self, phiA, superscript, atomi): it_max = 200 curr_it = 0 - while phiA <= 0 and curr_it < it_max: + while phiA <= 0: curr_it += 1 # Iterative algorithm until convergence # Refer to S101 in doi: 10.1039/c6ra04656h @@ -740,8 +740,10 @@ def _converge_phi(self, phiA, superscript, atomi): candidates_phi.append(phiA) candidates_bigphi.append(bigphiA) - if curr_it == it_max: - self.logger.info("Hit iteration max") + if curr_it == it_max: + self.logger.info("Hit iteration max") + break + return candidates_phi, candidates_bigphi def _parabolic_fit(self, pseudodensity, superscript, atomi): From cf5a344fa691931c6da924b3b54efc74fbfdbdd8 Mon Sep 17 00:00:00 2001 From: Shiv Upadhyay Date: Tue, 29 Nov 2022 19:52:07 -0500 Subject: [PATCH 053/103] add test decorator --- test/data/skip.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/test/data/skip.py b/test/data/skip.py index 2d5982ea7..6ab021ae6 100644 --- a/test/data/skip.py +++ b/test/data/skip.py @@ -5,6 +5,8 @@ # This file is part of cclib (http://cclib.github.io) and is distributed under # the terms of the BSD 3-Clause License. +import sys + """Tools for skipping data tests in cclib.""" @@ -31,3 +33,27 @@ def testwrapper(self, *args, **kwargs): testfunc(self, *args, **kwargs) return testwrapper return testdecorator + +def skipForVersion(version, msg): + """Return a decorator that skips the test for specified python version.""" + def testdecorator(testfunc): + def testwrapper(self, *args, **kwargs): + curr_ver = sys.version_info + skip_test = True + if "major" in version: + if version["major"] != curr_ver.major: + skip_test = False + if "minor" in version: + if version["minor"] != curr_ver.minor: + skip_test = False + if "micro" in version: + if version["micro"] != curr_ver.micro: + skip_test = False + if skip_test: + self.skipTest(msg) + else: + testfunc(self, *args, **kwargs) + return testwrapper + return testdecorator + + From 8f2a40dcceecdfa860d0c322e39c40fbe0504206 Mon Sep 17 00:00:00 2001 From: Shiv Upadhyay Date: Tue, 29 Nov 2022 19:58:12 -0500 Subject: [PATCH 054/103] Skip problematic test for version --- test/method/testddec.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/method/testddec.py b/test/method/testddec.py index df9dd2114..f6638f1ba 100644 --- a/test/method/testddec.py +++ b/test/method/testddec.py @@ -21,6 +21,7 @@ from ..test_data import getdatafile +from skip import skipForVersion class DDEC6Test(unittest.TestCase): """DDEC6 method tests.""" @@ -167,6 +168,7 @@ def test_water_charges(self): # Check assigned charges assert_allclose(analysis.fragcharges, [-0.757097, 0.378410, 0.378687], atol=0.2) + @skipForVersion({"major" : 3, "minor" : 8}, "This test doesn't converge with newer psi4 versions >3.8") def test_chgsum_h2(self): """ Are DDEC6 charges for hydrogen atoms in nonpolar H2 small as expected? From e29cc477559ce2d9ba6af8c5a2e22d7ac0b5e2e5 Mon Sep 17 00:00:00 2001 From: Shiv Upadhyay Date: Sun, 11 Dec 2022 16:24:55 -0500 Subject: [PATCH 055/103] Use pytest skip --- test/data/skip.py | 22 ---------------------- test/method/testddec.py | 5 ++--- 2 files changed, 2 insertions(+), 25 deletions(-) diff --git a/test/data/skip.py b/test/data/skip.py index 6ab021ae6..1996e758b 100644 --- a/test/data/skip.py +++ b/test/data/skip.py @@ -34,26 +34,4 @@ def testwrapper(self, *args, **kwargs): return testwrapper return testdecorator -def skipForVersion(version, msg): - """Return a decorator that skips the test for specified python version.""" - def testdecorator(testfunc): - def testwrapper(self, *args, **kwargs): - curr_ver = sys.version_info - skip_test = True - if "major" in version: - if version["major"] != curr_ver.major: - skip_test = False - if "minor" in version: - if version["minor"] != curr_ver.minor: - skip_test = False - if "micro" in version: - if version["micro"] != curr_ver.micro: - skip_test = False - if skip_test: - self.skipTest(msg) - else: - testfunc(self, *args, **kwargs) - return testwrapper - return testdecorator - diff --git a/test/method/testddec.py b/test/method/testddec.py index f6638f1ba..5367e7cd8 100644 --- a/test/method/testddec.py +++ b/test/method/testddec.py @@ -8,6 +8,7 @@ """Test the DDEC6 in cclib""" import os +import sys import unittest import numpy @@ -21,8 +22,6 @@ from ..test_data import getdatafile -from skip import skipForVersion - class DDEC6Test(unittest.TestCase): """DDEC6 method tests.""" @@ -168,7 +167,7 @@ def test_water_charges(self): # Check assigned charges assert_allclose(analysis.fragcharges, [-0.757097, 0.378410, 0.378687], atol=0.2) - @skipForVersion({"major" : 3, "minor" : 8}, "This test doesn't converge with newer psi4 versions >3.8") + @pytest.mark.skipif(sys.version_info > (3, 8), reason="This test doesn't converge with newer psi4 versions availiable with python >3.8") def test_chgsum_h2(self): """ Are DDEC6 charges for hydrogen atoms in nonpolar H2 small as expected? From d68c626daa030a031e863de556adb9bbd8c8dab6 Mon Sep 17 00:00:00 2001 From: Shiv Upadhyay Date: Sun, 11 Dec 2022 17:55:45 -0500 Subject: [PATCH 056/103] Forgotten import --- test/method/testddec.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/method/testddec.py b/test/method/testddec.py index 5367e7cd8..9ee6a6d94 100644 --- a/test/method/testddec.py +++ b/test/method/testddec.py @@ -10,6 +10,7 @@ import os import sys import unittest +import pytest import numpy From 73b0769af6b77f3529e762af454dacba550b2d7c Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Thu, 19 Jan 2023 10:24:46 -0500 Subject: [PATCH 057/103] Fix CI and increase Python version usage (#1175) Closes https://github.com/shivupa/cclib-ci/issues/12 --- .github/workflows/cclib_pytest.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cclib_pytest.yml b/.github/workflows/cclib_pytest.yml index 85c17eb59..6c407df8e 100644 --- a/.github/workflows/cclib_pytest.yml +++ b/.github/workflows/cclib_pytest.yml @@ -10,7 +10,11 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - container: ['shivupa/cclib-ci:py37-edge', 'shivupa/cclib-ci:py38'] + container: + - 'shivupa/cclib-ci:py37-edge' + - 'shivupa/cclib-ci:py38-edge' + - 'shivupa/cclib-ci:py39-edge' + - 'shivupa/cclib-ci:py310-edge' container: image: ${{ matrix.container }} defaults: @@ -24,7 +28,7 @@ jobs: git config --global --add safe.directory /__w/cclib/cclib - name: Prepare conda environment run: | - echo "/env/bin" >> $GITHUB_PATH + echo "/opt/conda/envs/cclib/bin" >> $GITHUB_PATH - name: Install cclib run: | python -m pip install . From 544347ce77affd3cc81624639e2f9695e3635d92 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Fri, 6 Jan 2023 10:57:06 +0000 Subject: [PATCH 058/103] Added basis set parsing for ORCA --- cclib/parser/orcaparser.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index 37d2246fe..5f645bb17 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -88,6 +88,13 @@ def extract(self, inputfile, line): if "SVN: $Rev" in possible_revision_line: version = re.search(r'\d+', possible_revision_line).group() self.metadata["package_version"] += f"+{version}" + + # Extract basis-set info. + # ----- Orbital basis set information ----- + # Your calculation utilizes the basis: cc-pVDZ + if "Your calculation utilizes the basis:" == line[:36]: + self.metadata['basis_set'] = line[37:].strip() + # ================================================================================ # WARNINGS From 0c97a5730f5e6b51e3cfc41e2ec1e17de1e9be56 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Fri, 6 Jan 2023 13:31:54 +0000 Subject: [PATCH 059/103] Added metadata method for HF and DFT for ORCA --- cclib/parser/orcaparser.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index 5f645bb17..22ae075d0 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -46,6 +46,9 @@ def before_parsing(self): # Keep track of whether this is a relaxed scan calculation self.is_relaxed_scan = False + + # Flag for whether this calc is DFT. + self.is_DFT = False def after_parsing(self): # ORCA doesn't add the dispersion energy to the "Total energy" (which @@ -333,7 +336,13 @@ def splitter(line): self.metadata['symmetry_detected'] = point_group_full self.metadata['symmetry_used'] = point_group_abelian - + + if "Density Functional" == line[1:19]: + self.is_DFT = True + # In theory we could also parse the functional from this section, + # but sadly ORCA doesn't print simple functional names. + + # SCF convergence output begins with: # # -------------- @@ -394,6 +403,7 @@ def splitter(line): line = next(inputfile) energy = utils.convertor(float(line.split()[3]), "hartree", "eV") self.scfenergies.append(energy) + self.metadata['methods'].append('HF' if not self.is_DFT else 'DFT') self._append_scfvalues_scftargets(inputfile, line) @@ -417,6 +427,7 @@ def splitter(line): energy = utils.convertor(self.scfvalues[-1][-1][0], "hartree", "eV") self.scfenergies.append(energy) + self.metadata['methods'].append('HF' if not self.is_DFT else 'DFT') self._append_scfvalues_scftargets(inputfile, line) From 95d016fd0f277c204fbfd1130ed2351b428f01e9 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Fri, 6 Jan 2023 13:32:08 +0000 Subject: [PATCH 060/103] Added metadata CCSD method for ORCA --- cclib/parser/orcaparser.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index 22ae075d0..21d07d4e6 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -629,6 +629,7 @@ def splitter(line): 'ccenergies', utils.convertor(utils.float(line.split()[-1]), 'hartree', 'eV') ) + self.metadata['methods'].append('CCSD') line = next(inputfile) assert line[:23] == 'Singles Norm **1/2' line = next(inputfile) From 49c1473496844d56c445c04de96fc101e6781465 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Thu, 5 Jan 2023 16:56:32 +0000 Subject: [PATCH 061/103] Fixed another bug parsing mocoefficients with alpha/beta orbitals and pop=reg --- cclib/parser/gaussianparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index f58f49755..54c2812e2 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -1721,7 +1721,7 @@ def extract(self, inputfile, line): colmNames = next(inputfile) - if "Density Matrix:" in colmNames or "DENSITY MATRIX." in colmNames: + if "Density Matrix:" in colmNames or "DENSITY MATRIX." in colmNames or "Beta Molecular Orbital Coefficients" in colmNames: # Reached end of mocoeff section early, this implies pop was not full. self.popregular = True # We can stop processing. From c7c55366d934c2931fc79ae4fa6d4716fdc97ebb Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 11 Jan 2023 08:20:32 +0000 Subject: [PATCH 062/103] Changed style of comparison line --- cclib/parser/gaussianparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index 54c2812e2..1aab79759 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -1721,7 +1721,7 @@ def extract(self, inputfile, line): colmNames = next(inputfile) - if "Density Matrix:" in colmNames or "DENSITY MATRIX." in colmNames or "Beta Molecular Orbital Coefficients" in colmNames: + if any(name in colmNames for name in ["Density Matrix:", "DENSITY MATRIX.", "Beta Molecular Orbital Coefficients"]): # Reached end of mocoeff section early, this implies pop was not full. self.popregular = True # We can stop processing. From 0a2553724a42c6bb744029c3d88d6217329c7472 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Thu, 12 Jan 2023 14:47:06 +0000 Subject: [PATCH 063/103] Find-and-replaced all instaces of inputfile.next() to next(inputfile) --- cclib/parser/adfparser.py | 28 ++++----- cclib/parser/daltonparser.py | 6 +- cclib/parser/gamessukparser.py | 4 +- cclib/parser/gaussianparser.py | 34 +++++----- cclib/parser/mopacparser.py | 22 +++---- cclib/parser/nwchemparser.py | 4 +- cclib/parser/qchemparser.py | 16 ++--- cclib/parser/turbomoleparser.py | 108 ++++++++++++++++---------------- 8 files changed, 111 insertions(+), 111 deletions(-) diff --git a/cclib/parser/adfparser.py b/cclib/parser/adfparser.py index a5f9f1224..1bc10692f 100644 --- a/cclib/parser/adfparser.py +++ b/cclib/parser/adfparser.py @@ -166,7 +166,7 @@ def extract(self, inputfile, line): # this with the previous block, if possible. if line[:6] == "Create": while line[:5] != "title" and "NO TITLE" not in line: - line = inputfile.next() + line = next(inputfile) if line[1:10] == "Symmetry:": info = line.split() @@ -322,17 +322,17 @@ def extract(self, inputfile, line): self.skip_line(inputfile, 'blank') - line = inputfile.next() + line = next(inputfile) while line.strip(): colline = line assert colline.split()[0] == "column" columns = [int(i) for i in colline.split()[1:]] - rowline = inputfile.next() + rowline = next(inputfile) assert rowline.strip() == "row" - line = inputfile.next() + line = next(inputfile) while line.strip(): i = int(line.split()[0]) @@ -342,9 +342,9 @@ def extract(self, inputfile, line): overlaps[k-1][i-1] = o overlaps[i-1][k-1] = o - line = inputfile.next() + line = next(inputfile) - line = inputfile.next() + line = next(inputfile) # Now all values should be parsed, and so no Nones remaining. assert all([all([x is not None for x in ao]) for ao in overlaps]) @@ -954,23 +954,23 @@ def extract(self, inputfile, line): # # There will be some text, followed by a line: # # (power of) X Y Z R Alpha on Atom # while not line[1:11] == "(power of)": -# line = inputfile.next() -# dashes = inputfile.next() -# blank = inputfile.next() -# line = inputfile.next() +# line = next(inputfile) +# dashes = next(inputfile) +# blank = next(inputfile) +# line = next(inputfile) # # There will be two blank lines when there are no more atom types. # while line.strip() != "": # atoms = [int(i)-1 for i in line.split()[1:]] # for n in range(len(atoms)): # self.atombasis.append([]) -# dashes = inputfile.next() -# line = inputfile.next() +# dashes = next(inputfile) +# line = next(inputfile) # while line.strip() != "": # indices = [int(i)-1 for i in line.split()[5:]] # for i in range(len(indices)): # self.atombasis[atoms[i]].append(indices[i]) -# line = inputfile.next() -# line = inputfile.next() +# line = next(inputfile) +# line = next(inputfile) if line[48:67] == "SFO MO coefficients": diff --git a/cclib/parser/daltonparser.py b/cclib/parser/daltonparser.py index 7f19063ae..f842aaee3 100644 --- a/cclib/parser/daltonparser.py +++ b/cclib/parser/daltonparser.py @@ -530,7 +530,7 @@ def extract(self, inputfile, line): self.skip_lines(inputfile, ['d', 'b']) - line = inputfile.next() + line = next(inputfile) self.symcounts = [int(c) for c in line.split(':')[1].split()] self.symlabels = [] @@ -540,7 +540,7 @@ def extract(self, inputfile, line): # If the number of orbitals for a symmetry is zero, the printout # is different (see MP2 unittest logfile for an example). - line = inputfile.next() + line = next(inputfile) if sc == 0: assert "No orbitals in symmetry" in line @@ -549,7 +549,7 @@ def extract(self, inputfile, line): self.symlabels.append(line.split()[1]) self.skip_line(inputfile, 'blank') for i in range(sc): - orbital = inputfile.next() + orbital = next(inputfile) if "Starting in Wave Function Section (SIRIUS)" in line: self.section = "SIRIUS" diff --git a/cclib/parser/gamessukparser.py b/cclib/parser/gamessukparser.py index 2fade3d29..5814eac80 100644 --- a/cclib/parser/gamessukparser.py +++ b/cclib/parser/gamessukparser.py @@ -721,13 +721,13 @@ def extract(self, inputfile, line): occupations = [] self.skip_line(inputfile, "blank") - line = inputfile.next() + line = next(inputfile) while line.strip(): occupations += map(float, line.split()) self.skip_line(inputfile, "blank") - line = inputfile.next() + line = next(inputfile) self.set_attribute('nooccnos', occupations) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index f58f49755..bba79a541 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -228,7 +228,7 @@ def extract(self, inputfile, line): self.updateprogress(inputfile, "Symbolic Z-matrix", self.fupdate) - line = inputfile.next() + line = next(inputfile) while line.split()[0] == 'Charge': # For the supermolecule, we can parse the charge and multicplicity. @@ -245,7 +245,7 @@ def extract(self, inputfile, line): if line.strip()[-13:] == "model system.": self.nmodels = getattr(self, 'nmodels', 0) + 1 - line = inputfile.next() + line = next(inputfile) # The remaining part will allow us to get the atom count. # When coordinates are given, there is a blank line at the end, but if @@ -256,7 +256,7 @@ def extract(self, inputfile, line): natom = 0 while line.split() and not "Variables" in line and not "Leave Link" in line: natom += 1 - line = inputfile.next() + line = next(inputfile) self.set_attribute('natom', natom) # Continuing from above, there is not always a symbolic matrix, for example @@ -319,7 +319,7 @@ def extract(self, inputfile, line): self.reference = [0.0, 0.0, 0.0] self.moments = [self.reference] - tokens = inputfile.next().split() + tokens = next(inputfile).split() # split - dipole would need to be *huge* to fail a split # and G03 and G09 use different spacing if len(tokens) >= 6: @@ -339,7 +339,7 @@ def extract(self, inputfile, line): # XX= -6.1213 YY= -4.2950 ZZ= -5.4175 quadrupole = {} for j in range(2): # two rows - line = inputfile.next() + line = next(inputfile) if line[22] == '=': # g03 file for i in (1, 18, 35): quadrupole[line[i:i+4]] = float(line[i+5:i+16]) @@ -368,7 +368,7 @@ def extract(self, inputfile, line): # YYZ= -0.5848 XYZ= 0.0000 octapole = {} for j in range(2): # two rows - line = inputfile.next() + line = next(inputfile) if line[22] == '=': # g03 file for i in (1, 18, 35, 52): octapole[line[i:i+4]] = float(line[i+5:i+16]) @@ -377,7 +377,7 @@ def extract(self, inputfile, line): octapole[line[i:i+4]] = float(line[i+5:i+25]) # last line only 2 moments - line = inputfile.next() + line = next(inputfile) if line[22] == '=': # g03 file for i in (1, 18): octapole[line[i:i+4]] = float(line[i+5:i+16]) @@ -408,7 +408,7 @@ def extract(self, inputfile, line): hexadecapole = {} # read three lines worth of 4 moments per line for j in range(3): - line = inputfile.next() + line = next(inputfile) if line[22] == '=': # g03 file for i in (1, 18, 35, 52): hexadecapole[line[i:i+4]] = float(line[i+5:i+16]) @@ -417,7 +417,7 @@ def extract(self, inputfile, line): hexadecapole[line[i:i+4]] = float(line[i+5:i+25]) # last line only 3 moments - line = inputfile.next() + line = next(inputfile) if line[22] == '=': # g03 file for i in (1, 18, 35): hexadecapole[line[i:i+4]] = float(line[i+5:i+16]) @@ -642,7 +642,7 @@ def extract(self, inputfile, line): # we will want to parse the model systems, too, and that is what nmodels could track. if "ONIOM: generating point" in line and line.strip()[-13:] == 'model system.' and getattr(self, 'nmodels', 0) > 0: while not line[1:30] == 'ONIOM: Integrating ONIOM file': - line = inputfile.next() + line = next(inputfile) # With the gfinput keyword, the atomic basis set functions are: # @@ -683,14 +683,14 @@ def extract(self, inputfile, line): if self.counterpoise != 0: return - atom_line = inputfile.next() + atom_line = next(inputfile) self.gfprint = atom_line.split()[0] == "Atom" self.gfinput = not self.gfprint # Note how the shell information is on a separate line for gfinput, # whereas for gfprint it is on the same line as atom information. if self.gfinput: - shell_line = inputfile.next() + shell_line = next(inputfile) shell = [] while len(self.gbasis) < self.natom: @@ -706,7 +706,7 @@ def extract(self, inputfile, line): parameters = [] for ig in range(ngauss): - line = inputfile.next() + line = next(inputfile) parameters.append(list(map(utils.float, line.split()))) for iss, ss in enumerate(subshells): contractions = [] @@ -718,7 +718,7 @@ def extract(self, inputfile, line): shell.append(subshell) if self.gfprint: - line = inputfile.next() + line = next(inputfile) if line.split()[0] == "Atom": atomnum = int(re.sub(r"\D", "", line.split()[1])) if atomnum == len(self.gbasis) + 2: @@ -728,12 +728,12 @@ def extract(self, inputfile, line): else: self.gbasis.append(shell) else: - line = inputfile.next() + line = next(inputfile) if line.strip() == "****": self.gbasis.append(shell) shell = [] - atom_line = inputfile.next() - shell_line = inputfile.next() + atom_line = next(inputfile) + shell_line = next(inputfile) else: shell_line = line diff --git a/cclib/parser/mopacparser.py b/cclib/parser/mopacparser.py index 80a89493c..cc05b1595 100644 --- a/cclib/parser/mopacparser.py +++ b/cclib/parser/mopacparser.py @@ -117,10 +117,10 @@ def extract(self, inputfile, line): self.inputcoords = [] self.inputatoms = [] - blankline = inputfile.next() + blankline = next(inputfile) atomcoords = [] - line = inputfile.next() + line = next(inputfile) while len(line.split()) > 6: # MOPAC Version 14.019L 64BITS suddenly appends this block with # "CARTESIAN COORDINATES" block with no blank line. @@ -130,7 +130,7 @@ def extract(self, inputfile, line): yc = float(tokens[4]) zc = float(tokens[6]) atomcoords.append([xc, yc, zc]) - line = inputfile.next() + line = next(inputfile) self.inputcoords.append(atomcoords) @@ -170,8 +170,8 @@ def extract(self, inputfile, line): # note that the last occurence of this in the thermochemistry section has reduced precision, # so we will want to use the 2nd to last instance if line[0:40] == ' ROTATIONAL CONSTANTS IN CM(-1)': - blankline = inputfile.next() - rotinfo = inputfile.next() + blankline = next(inputfile) + rotinfo = next(inputfile) if not hasattr(self, "rotconsts"): self.rotconsts = [] broken = rotinfo.split() @@ -206,14 +206,14 @@ def extract(self, inputfile, line): self.vibsyms = [] self.vibsyms.append(sym) - line = inputfile.next() + line = next(inputfile) if 'FREQ' in line: if not hasattr(self, 'vibfreqs'): self.vibfreqs = [] freq = float(line.split()[1]) self.vibfreqs.append(freq) - line = inputfile.next() + line = next(inputfile) if 'T-DIPOLE' in line: if not hasattr(self, 'vibirs'): self.vibirs = [] @@ -221,11 +221,11 @@ def extract(self, inputfile, line): # transform to km/mol self.vibirs.append(math.sqrt(tdipole)) - line = inputfile.next() + line = next(inputfile) if 'TRAVEL' in line: pass - line = inputfile.next() + line = next(inputfile) if 'RED. MASS' in line: if not hasattr(self, 'vibrmasses'): self.vibrmasses = [] @@ -241,10 +241,10 @@ def extract(self, inputfile, line): self.moenergies = [] # list of arrays energies = [] - line = inputfile.next() + line = next(inputfile) while len(line.split()) > 0: energies.extend([float(i) for i in line.split()]) - line = inputfile.next() + line = next(inputfile) self.moenergies.append(energies) # todo: diff --git a/cclib/parser/nwchemparser.py b/cclib/parser/nwchemparser.py index 35fa86179..05ad52460 100644 --- a/cclib/parser/nwchemparser.py +++ b/cclib/parser/nwchemparser.py @@ -361,11 +361,11 @@ def extract(self, inputfile, line): self.skip_line(inputfile, 'blank') - indices = [int(i) for i in inputfile.next().split()] + indices = [int(i) for i in next(inputfile).split()] assert indices[0] == len(aooverlaps) + 1 self.skip_line(inputfile, "dashes") - data = [inputfile.next().split() for i in range(self.nbasis)] + data = [next(inputfile).split() for i in range(self.nbasis)] indices = [int(d[0]) for d in data] assert indices == list(range(1, self.nbasis+1)) diff --git a/cclib/parser/qchemparser.py b/cclib/parser/qchemparser.py index 9a2db3ba9..7078a2adf 100644 --- a/cclib/parser/qchemparser.py +++ b/cclib/parser/qchemparser.py @@ -1404,9 +1404,9 @@ def extract(self, inputfile, line): # This line appears not by default, but only when # `multipole_order` > 4: - line = inputfile.next() + line = next(inputfile) if 'LMN = < X^L Y^M Z^N >' in line: - line = inputfile.next() + line = next(inputfile) # The reference point is always the origin, although normally the molecule # is moved so that the center of charge is at the origin. @@ -1416,15 +1416,15 @@ def extract(self, inputfile, line): # Watch out! This charge is in statcoulombs without the exponent! # We should expect very good agreement, however Q-Chem prints # the charge only with 5 digits, so expect 1e-4 accuracy. - charge_header = inputfile.next() + charge_header = next(inputfile) assert charge_header.split()[0] == "Charge" - charge = float(inputfile.next().strip()) + charge = float(next(inputfile).strip()) charge = utils.convertor(charge, 'statcoulomb', 'e') * 1e-10 # Allow this to change until fragment jobs are properly implemented. # assert abs(charge - self.charge) < 1e-4 # This will make sure Debyes are used (not sure if it can be changed). - line = inputfile.next() + line = next(inputfile) assert line.strip() == "Dipole Moment (Debye)" while "-----" not in line: @@ -1432,14 +1432,14 @@ def extract(self, inputfile, line): # The current multipole element will be gathered here. multipole = [] - line = inputfile.next() + line = next(inputfile) while ("-----" not in line) and ("Moment" not in line): cols = line.split() # The total (norm) is printed for dipole but not other multipoles. if cols[0] == 'Tot': - line = inputfile.next() + line = next(inputfile) continue # Find and replace any 'stars' with NaN before moving on. @@ -1468,7 +1468,7 @@ def extract(self, inputfile, line): m = cols[4*i + 3] multipole.append([lbl, m]) - line = inputfile.next() + line = next(inputfile) # Sort should use the first element when sorting lists, # so this should simply work, and afterwards we just need diff --git a/cclib/parser/turbomoleparser.py b/cclib/parser/turbomoleparser.py index 02618b469..e2f6f9a8d 100644 --- a/cclib/parser/turbomoleparser.py +++ b/cclib/parser/turbomoleparser.py @@ -28,7 +28,7 @@ def __init__(self, atname, basis_name, inputfile): def parse_basis(self, inputfile): i=0 - line=inputfile.next() + line=next(inputfile) while(line[0]!="*"): (nbasis_text, symm)=line.split() @@ -38,13 +38,13 @@ def parse_basis(self, inputfile): coeff_arr=numpy.zeros((nbasis, 2), float) for j in range(0, nbasis, 1): - line=inputfile.next() + line=next(inputfile) (e1_text, e2_text)=line.split() coeff_arr[j][0]=float(e1_text) coeff_arr[j][1]=float(e2_text) self.coefficients.append(coeff_arr) - line=inputfile.next() + line=next(inputfile) class Turbomole(logfileparser.Logfile): """A Turbomole log file.""" @@ -1404,33 +1404,33 @@ def extract(self, inputfile, line): if line[0:6] == "$basis": print("Found basis") self.basis_lib=[] - line = inputfile.next() - line = inputfile.next() + line = next(inputfile) + line = next(inputfile) while line[0] != '*' and line[0] != '$': temp=line.split() - line = inputfile.next() + line = next(inputfile) while line[0]=="#": - line = inputfile.next() + line = next(inputfile) self.basis_lib.append(AtomBasis(temp[0], temp[1], inputfile)) - line = inputfile.next() + line = next(inputfile) if line == "$ecp\n": self.ecp_lib=[] - line = inputfile.next() - line = inputfile.next() + line = next(inputfile) + line = next(inputfile) while line[0] != '*' and line[0] != '$': fields=line.split() atname=fields[0] ecpname=fields[1] - line = inputfile.next() - line = inputfile.next() + line = next(inputfile) + line = next(inputfile) fields=line.split() ncore = int(fields[2]) while line[0] != '*': - line = inputfile.next() + line = next(inputfile) self.ecp_lib.append([atname, ecpname, ncore]) if line[0:6] == "$coord": @@ -1444,7 +1444,7 @@ def extract(self, inputfile, line): atomcoords = [] atomnos = [] - line = inputfile.next() + line = next(inputfile) if line[0:5] == "$user": # print "Breaking" return @@ -1455,7 +1455,7 @@ def extract(self, inputfile, line): atomnos.append(self.table.number[atsym]) atomcoords.append([utils.convertor(float(x), "bohr", "Angstrom") for x in temp[0:3]]) - line = inputfile.next() + line = next(inputfile) self.atomcoords.append(atomcoords) self.atomnos = numpy.array(atomnos, "i") @@ -1463,7 +1463,7 @@ def extract(self, inputfile, line): atomcoords = [] atomnos = [] - line = inputfile.next() + line = next(inputfile) while len(line) > 2: temp = line.split() @@ -1471,7 +1471,7 @@ def extract(self, inputfile, line): atomnos.append(self.table.number[atsym]) atomcoords.append([utils.convertor(float(x), "bohr", "Angstrom") for x in temp[0:3]]) - line = inputfile.next() + line = next(inputfile) if not hasattr(self,"atomcoords"): self.atomcoords = [] @@ -1481,32 +1481,32 @@ def extract(self, inputfile, line): if line[0:6] == "$atoms": print("parsing atoms") - line = inputfile.next() + line = next(inputfile) self.atomlist=[] while line[0]!="$": temp=line.split() at=temp[0] atnosstr=temp[1] while atnosstr[-1] == ",": - line = inputfile.next() + line = next(inputfile) temp=line.split() atnosstr=atnosstr+temp[0] # print "Debug:", atnosstr atlist=self.atlist(atnosstr) - line = inputfile.next() + line = next(inputfile) temp=line.split() # print "Debug basisname (temp):",temp basisname=temp[2] ecpname='' - line = inputfile.next() + line = next(inputfile) while(line.find('jbas')!=-1 or line.find('ecp')!=-1 or line.find('jkbas')!=-1): if line.find('ecp')!=-1: temp=line.split() ecpname=temp[2] - line = inputfile.next() + line = next(inputfile) self.atomlist.append( (at, basisname, ecpname, atlist)) @@ -1656,30 +1656,30 @@ def extract(self, inputfile, line): counter=counter+1 if line=="$closed shells\n": - line = inputfile.next() + line = next(inputfile) temp = line.split() occs = int(temp[1][2:]) self.homos = numpy.array([occs-1], "i") if line == "$alpha shells\n": - line = inputfile.next() + line = next(inputfile) temp = line.split() occ_a = int(temp[1][2:]) - line = inputfile.next() # should be $beta shells - line = inputfile.next() # the beta occs + line = next(inputfile) # should be $beta shells + line = next(inputfile) # the beta occs temp = line.split() occ_b = int(temp[1][2:]) self.homos = numpy.array([occ_a-1,occ_b-1], "i") if line[12:24]=="OVERLAP(CAO)": - line = inputfile.next() - line = inputfile.next() + line = next(inputfile) + line = next(inputfile) overlaparray=[] self.aooverlaps=numpy.zeros( (self.nbasis, self.nbasis), "d") while line != " ----------------------\n": temp=line.split() overlaparray.extend(map(float, temp)) - line = inputfile.next() + line = next(inputfile) counter=0 for i in range(0, self.nbasis, 1): @@ -1704,18 +1704,18 @@ def extract(self, inputfile, line): self.mocoeffs=[] for spin in range(unrestricted + 1): # make sure we cover all instances - title = inputfile.next() + title = next(inputfile) while(title[0] == "#"): - title = inputfile.next() + title = next(inputfile) # mocoeffs = numpy.zeros((self.nbasis, self.nbasis), "d") moenergies = [] moarray=[] if spin == 1 and title[0:11] == "$uhfmo_beta": - title = inputfile.next() + title = next(inputfile) while title[0] == "#": - title = inputfile.next() + title = next(inputfile) while(title[0] != '$'): temp=title.split() @@ -1734,12 +1734,12 @@ def extract(self, inputfile, line): while(len(single_mo) 0): self.vibmasses.append(float(temp[2])) - line=inputfile.next() + line=next(inputfile) temp=line.split() if line[5:14] == "frequency": @@ -1786,43 +1786,43 @@ def extract(self, inputfile, line): freqs = [utils.float(f) for f in temp[1:]] self.vibfreqs.extend(freqs) - line=inputfile.next() - line=inputfile.next() + line=next(inputfile) + line=next(inputfile) syms=line.split() self.vibsyms.extend(syms[1:]) - line=inputfile.next() - line=inputfile.next() - line=inputfile.next() - line=inputfile.next() + line=next(inputfile) + line=next(inputfile) + line=next(inputfile) + line=next(inputfile) temp=line.split() irs = [utils.float(f) for f in temp[2:]] self.vibirs.extend(irs) - line=inputfile.next() - line=inputfile.next() - line=inputfile.next() - line=inputfile.next() + line=next(inputfile) + line=next(inputfile) + line=next(inputfile) + line=next(inputfile) x=[] y=[] z=[] - line=inputfile.next() + line=next(inputfile) while len(line) > 1: temp=line.split() x.append(map(float, temp[3:])) - line=inputfile.next() + line=next(inputfile) temp=line.split() y.append(map(float, temp[1:])) - line=inputfile.next() + line=next(inputfile) temp=line.split() z.append(map(float, temp[1:])) - line=inputfile.next() + line=next(inputfile) # build xyz vectors for each mode @@ -1832,7 +1832,7 @@ def extract(self, inputfile, line): disp.append( [x[j][i], y[j][i], z[j][i]]) self.vibdisps.append(disp) -# line=inputfile.next() +# line=next(inputfile) def after_parsing(self): From 04da33f0019ee72d979a8f76907a6889fdbb1a6b Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Thu, 12 Jan 2023 15:02:02 +0000 Subject: [PATCH 064/103] fileinput is now wrapped in a FileWrapper object --- cclib/parser/logfileparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cclib/parser/logfileparser.py b/cclib/parser/logfileparser.py index dcdf725cf..decdf1df3 100644 --- a/cclib/parser/logfileparser.py +++ b/cclib/parser/logfileparser.py @@ -165,7 +165,7 @@ def openlogfile(filename, object=None): if len(filename) == 0: return None - return fileinput.input(filename, openhook=fileinput.hook_compressed) + return FileWrapper(fileinput.input(filename, openhook=fileinput.hook_compressed)) class Logfile(ABC): From ec3aee6712b7e953d9616414b637fcdcf85dc0ea Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sun, 29 Jan 2023 21:43:39 -0500 Subject: [PATCH 065/103] ORCA: test for basis set presence in metadata --- test/data/testSP.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/data/testSP.py b/test/data/testSP.py index 3fbe1be30..168bc5add 100644 --- a/test/data/testSP.py +++ b/test/data/testSP.py @@ -356,7 +356,6 @@ def testmoments(self): @skipForParser('ADF', 'reading basis set names is not implemented') @skipForParser('GAMESSUK', 'reading basis set names is not implemented') @skipForParser('Molcas', 'reading basis set names is not implemented') - @skipForParser('ORCA', 'reading basis set names is not implemented') @skipForParser('Psi4', 'reading basis set names is not implemented') def testmetadata_basis_set(self): """Does metadata have expected keys and values?""" From 63bda1f3cd3f3b049f20789cfe10aecefdc9354d Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Mon, 30 Jan 2023 21:57:38 -0500 Subject: [PATCH 066/103] ORCA: older versions don't print basis sets used --- test/regression.py | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/test/regression.py b/test/regression.py index e070944b0..c926d6f0a 100644 --- a/test/regression.py +++ b/test/regression.py @@ -3126,6 +3126,15 @@ class MolproBigBasisTest_cart(MolproBigBasisTest): # ORCA # +class OrcaSPTest_nobasis(OrcaSPTest): + """Versions pre-4.0 do not concretely print the basis set(s) used aside + from repeating the input file. + """ + + def testmetadata_basis_set(self): + self.assertNotIn("basis_set", self.data.metadata) + + class OrcaSPTest_3_21g(OrcaSPTest): nbasisdict = {1: 2, 6: 9} b3lyp_energy = -10460 @@ -3400,7 +3409,7 @@ def testatommasses(self): "ORCA/ORCA2.8/dvb_gopt.out": OrcaGeoOptTest, "ORCA/ORCA2.8/dvb_sp.out": GenericBasisTest, - "ORCA/ORCA2.8/dvb_sp.out": OrcaSPTest, + "ORCA/ORCA2.8/dvb_sp.out": OrcaSPTest_nobasis, "ORCA/ORCA2.8/dvb_sp_un.out": OrcaSPunTest_charge0, "ORCA/ORCA2.8/dvb_td.out": OrcaTDDFTTest_pre1085, "ORCA/ORCA2.8/dvb_ir.out": OrcaIRTest_old, @@ -3410,7 +3419,7 @@ def testatommasses(self): "ORCA/ORCA2.9/dvb_raman.out": GenericRamanTest, "ORCA/ORCA2.9/dvb_scan.out": OrcaRelaxedScanTest, "ORCA/ORCA2.9/dvb_sp.out": GenericBasisTest, - "ORCA/ORCA2.9/dvb_sp.out": OrcaSPTest, + "ORCA/ORCA2.9/dvb_sp.out": OrcaSPTest_nobasis, "ORCA/ORCA2.9/dvb_sp_un.out": GenericSPunTest, "ORCA/ORCA2.9/dvb_td.out": OrcaTDDFTTest_pre1085, @@ -3421,7 +3430,7 @@ def testatommasses(self): "ORCA/ORCA3.0/dvb_scan.out": OrcaRelaxedScanTest, "ORCA/ORCA3.0/dvb_sp_un.out": GenericSPunTest, "ORCA/ORCA3.0/dvb_sp.out": GenericBasisTest, - "ORCA/ORCA3.0/dvb_sp.out": OrcaSPTest, + "ORCA/ORCA3.0/dvb_sp.out": OrcaSPTest_nobasis, "ORCA/ORCA3.0/dvb_td.out": OrcaTDDFTTest_pre1085, "ORCA/ORCA3.0/Trp_polar.out": ReferencePolarTest, "ORCA/ORCA3.0/trithiolane_polar.out": GaussianPolarTest, From f29e4cb01bb410e6b9a27dbb6cfbc9fc2a97890f Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Tue, 15 Nov 2022 17:31:22 -0500 Subject: [PATCH 067/103] Added excited state symmetry to etsyms param for Orca TD-DFT (previously only contained mult) --- cclib/parser/orcaparser.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index 21d07d4e6..f5cc6f136 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -1089,11 +1089,11 @@ def splitter(line): if any(x in line for x in ("TD-DFT/TDA EXCITED", "TD-DFT EXCITED")): # Could be singlets or triplets if line.find("SINGLETS") >= 0: - sym = "Singlet" + mult = "Singlet" elif line.find("TRIPLETS") >= 0: - sym = "Triplet" + mult = "Triplet" else: - sym = "Not specified" + mult = "Not specified" etsecs = [] etenergies = [] @@ -1107,7 +1107,6 @@ def splitter(line): while line.find("STATE") >= 0: broken = line.split() etenergies.append(float(broken[7])) - etsyms.append(sym) line = next(inputfile) sec = [] # Contains SEC or is blank @@ -1127,8 +1126,12 @@ def splitter(line): line = next(inputfile) # ORCA 5.0 seems to print symmetry at end of block listing transitions if 'Symmetry' in line: + symm = "-" + line.split()[-1] line = next(inputfile) + else: + symm = "" etsecs.append(sec) + etsyms.append(mult + symm) line = next(inputfile) self.extend_attribute('etenergies', etenergies) From 1f995359833114bd2f809a499f75c6ce105d7037 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 16 Nov 2022 10:29:47 -0500 Subject: [PATCH 068/103] Fixed ordering of parsed ORCA excited states --- cclib/parser/orcaparser.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index f5cc6f136..366a58e7c 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -78,6 +78,20 @@ def after_parsing(self): ) break self.scfenergies[i] += dispersionenergy + + # ORCA prints singlet and triplet excited states separately, so the energies are out of order. + if hasattr(self, "etenergies"): + # Sort them properly. + prop_names = ("etenergies", "etsyms", "etoscs", "etsecs", "etrotats") + #zipped_props = [zipped_state for zipped_state in sorted(zip_longest(getattr(self, 'etenergies', []), getattr(self, 'etsyms', []), getattr(self, 'etoscs', []), getattr(self, 'etsecs', []), getattr(self, 'etrotats', [])), key = lambda state: state[0])] + zipped_props = [zipped_state for zipped_state in sorted(zip_longest(*[getattr(self, prop_name, []) for prop_name in prop_names]), key = lambda state: state[0])] + etprops = list(zip(*zipped_props)) + + for index, prop_name in enumerate(prop_names): + # Ignore empty properties. + if etprops[index] != (None,) * len(etprops[index]): + setattr(self, prop_name, list(etprops[index])) + def extract(self, inputfile, line): """Extract information from the file object inputfile.""" From 9718827735f4ea522f99cc36bad434e2318bdd1f Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 16 Nov 2022 13:29:55 -0500 Subject: [PATCH 069/103] Fixed not normalising etsysms with gaussian --- cclib/parser/gaussianparser.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index 2e0687102..6345f1697 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -1458,7 +1458,9 @@ def extract(self, inputfile, line): groups = p.search(line).groups() self.etenergies.append(utils.convertor(utils.float(groups[1]), "eV", "wavenumber")) self.etoscs.append(utils.float(line.split("f=")[-1].split()[0])) - self.etsyms.append(groups[0].strip()) + # Fix Gaussian's weird capitalisation. + mult, symm = groups[0].strip().split("-") + self.etsyms.append("{}-{}".format(mult, self.normalisesym(symm))) line = next(inputfile) From 1ea87313e1c3b6faababfb848d504ed0e788ae03 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 16 Nov 2022 13:30:34 -0500 Subject: [PATCH 070/103] Added generic test for etsyms --- test/data/testTD.py | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/test/data/testTD.py b/test/data/testTD.py index e67011cbf..1fdacb1a1 100644 --- a/test/data/testTD.py +++ b/test/data/testTD.py @@ -24,6 +24,13 @@ class GenericTDTest(unittest.TestCase): number = 5 expected_l_max = 41000 + symmetries = [ + "Singlet-Bu", + "Singlet-Bu", + "Singlet-Ag", + "Singlet-Bu", + "Singlet-Ag", + ] @skipForParser('Molcas','The parser is still being developed so we skip this test') @skipForLogfile('Turbomole/basicTurbomole7.4/CO_cc2_TD_trip', 'Oscillator strengths are not available for Turbomole triplets using ricc2 but are required for testenergies()') @@ -67,6 +74,22 @@ def testsecs_transition(self): def testsymsnumber(self): """Is the length of etsyms correct?""" self.assertEqual(len(self.data.etsyms), self.number) + + + @skipForParser('ADF', 'etrotats are not yet implemented') + @skipForParser('DALTON', 'etrotats are not yet implemented') + @skipForParser('FChk', 'etrotats are not yet implemented') + @skipForParser('GAMESS', 'etrotats are not yet implemented') + @skipForParser('GAMESSUK', 'etrotats are not yet implemented') + @skipForParser('Jaguar', 'etrotats are not yet implemented') + @skipForParser('NWChem', 'etrotats are not yet implemented') + @skipForParser('QChem', 'Q-Chem cannot calculate rotatory strengths') + @skipForLogfile("ORCA/basicORCA4.2", "etsyms are only available in ORCA >= 5.0") + @skipForLogfile("ORCA/basicORCA4.1", "etsyms are only available in ORCA >= 5.0") + @skipForLogfile("Gaussian/basicGaussian09", "symmetry is missing for this log file") + def testsyms(self): + """Are the values of etsyms correct?""" + self.assertListEqual(self.data.etsyms, self.symmetries) @skipForParser('ADF', 'etrotats are not yet implemented') @skipForParser('DALTON', 'etrotats are not yet implemented') @@ -158,13 +181,24 @@ class OrcaTDDFTTest(GenericTDTest): number = 10 expected_l_max = 48000 + symmetries = [ + "Triplet-Bu", + "Triplet-Ag", + "Triplet-Bu", + "Triplet-Bu", + "Triplet-Bu", + "Singlet-Bu", + "Singlet-Bu", + "Singlet-Ag", + "Singlet-Bu", + "Singlet-Ag", + ] def testoscs(self): """Is the maximum of etoscs in the right range?""" self.assertEqual(len(self.data.etoscs), self.number) self.assertAlmostEqual(max(self.data.etoscs), 1.17, delta=0.01) - class QChemTDDFTTest(GenericTDTest): """Customized time-dependent HF/DFT unittest""" From 78c363a87c04906c30e84e795f44cc0a8db4b8c2 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 16 Nov 2022 13:30:53 -0500 Subject: [PATCH 071/103] Added ORCA specific etsyms test --- test/data/testTD.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/data/testTD.py b/test/data/testTD.py index 1fdacb1a1..314ff372c 100644 --- a/test/data/testTD.py +++ b/test/data/testTD.py @@ -256,6 +256,10 @@ def testsecs_transition(self): def testrotatsnumber(self): """ROCIS does not calculate rotatory strengths""" pass + + def testsyms(self): + """ROCIS does not show symmetries""" + pass class OrcaROCIS40Test(OrcaROCISTest): From 0f43bc7bd9a20e67d3f3348bf8b250c06d98b0eb Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 16 Nov 2022 13:31:13 -0500 Subject: [PATCH 072/103] Added Turbomole specific etsyms test --- test/data/testTD.py | 48 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/test/data/testTD.py b/test/data/testTD.py index 314ff372c..c3ebf719c 100644 --- a/test/data/testTD.py +++ b/test/data/testTD.py @@ -276,6 +276,18 @@ class TurbomoleTDTest(GenericTDTest): number = 10 expected_l_max = 91432 + symmetries = [ + "Singlet-A", + "Singlet-A", + "Singlet-A", + "Singlet-A", + "Singlet-A", + "Singlet-A", + "Singlet-A", + "Singlet-A", + "Singlet-A", + "Singlet-A", + ] def testoscs(self): """Is the maximum of etoscs in the right range?""" @@ -292,6 +304,18 @@ class TurbomoleTDADC2Test(GenericTDTest): number = 10 expected_l_max = 136329 + symmetries = [ + "Singlet-A", + "Singlet-A", + "Singlet-A", + "Singlet-A", + "Singlet-A", + "Singlet-A", + "Singlet-A", + "Singlet-A", + "Singlet-A", + "Singlet-A", + ] def testoscs(self): """Is the maximum of etoscs in the right range?""" @@ -303,6 +327,18 @@ class TurbomoleTDTripTest(GenericTDTest): number = 10 expected_l_max = 51530 + symmetries = [ + "Triplet-A", + "Triplet-A", + "Triplet-A", + "Triplet-A", + "Triplet-A", + "Triplet-A", + "Triplet-A", + "Triplet-A", + "Triplet-A", + "Triplet-A", + ] def testoscs(self): """Is the maximum of etoscs in the right range?""" @@ -314,6 +350,18 @@ class TurbomoleTDCC2TripTest(GenericTDTest): # This test is for triplets with ricc2, which does not support oscillator strengths. number = 10 + symmetries = [ + "Triplet-A", + "Triplet-A", + "Triplet-A", + "Triplet-A", + "Triplet-A", + "Triplet-A", + "Triplet-A", + "Triplet-A", + "Triplet-A", + "Triplet-A", + ] def testenergies(self): """Is the l_max reasonable?""" From c20cb00811adf0a051264ab2169716205b577d27 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Fri, 20 Jan 2023 10:18:52 +0000 Subject: [PATCH 073/103] Improved behaviour of Orca parser when encountering missing multiplicities --- cclib/parser/orcaparser.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index 366a58e7c..5957a67aa 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -1107,7 +1107,8 @@ def splitter(line): elif line.find("TRIPLETS") >= 0: mult = "Triplet" else: - mult = "Not specified" + # This behaviour matches the output Gaussian produces when it encounters an unfamiliar multiplicity. + mult = "???" etsecs = [] etenergies = [] @@ -1140,12 +1141,15 @@ def splitter(line): line = next(inputfile) # ORCA 5.0 seems to print symmetry at end of block listing transitions if 'Symmetry' in line: - symm = "-" + line.split()[-1] + symm = line.split()[-1] line = next(inputfile) else: symm = "" etsecs.append(sec) - etsyms.append(mult + symm) + if mult != "" and symm != "": + etsyms.append(mult + "-" + symm) + elif mult != "" or symm != "": + etsyms.append(mult + symm) line = next(inputfile) self.extend_attribute('etenergies', etenergies) From e2fda70974872afc819c76e72e3ce419d7729a65 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Tue, 15 Nov 2022 20:39:07 -0500 Subject: [PATCH 074/103] Added parsing of Orca wall time and estimation of CPU time --- cclib/parser/orcaparser.py | 43 ++++++++++++++++++++++++++++++++++++++ test/data/testSP.py | 3 +-- 2 files changed, 44 insertions(+), 2 deletions(-) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index 21d07d4e6..e60a2cc8d 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -10,6 +10,7 @@ import re from itertools import zip_longest +import datetime import numpy from packaging.version import parse as parse_version @@ -49,6 +50,9 @@ def before_parsing(self): # Flag for whether this calc is DFT. self.is_DFT = False + + # Used to estimate CPU time from wall time. + self.num_cpu = 1 def after_parsing(self): # ORCA doesn't add the dispersion energy to the "Total energy" (which @@ -1900,9 +1904,48 @@ def energy_intensity(line): energy = float(next(inputfile).strip()) self.skip_line(inputfile, 'blank') core_energy = float(next(inputfile).split()[3]) + + if "* Program running with" in line and "parallel MPI-processes *" in line: + # ************************************************************ + # * Program running with 4 parallel MPI-processes * + # * working on a common directory * + # ************************************************************ + self.num_cpu = int(line.split()[4]) if line[:15] == 'TOTAL RUN TIME:': + # TOTAL RUN TIME: 0 days 0 hours 0 minutes 11 seconds 901 msec self.metadata['success'] = True + + # Parse timings. + # We also have timings for individual modules (SCF, MDCI etc) which we could use instead? + time_split = line.split() + days = int(time_split[3]) + hours = int(time_split[5]) + minutes = int(time_split[7]) + seconds = int(time_split[9]) + milliseconds = int(time_split[11]) + + if "wall_time" not in self.metadata: + self.metadata['wall_time'] = [] + if "cpu_time" not in self.metadata: + self.metadata['cpu_time'] = [] + + self.metadata['wall_time'].append(datetime.timedelta( + days = days, + hours = hours, + minutes = minutes, + seconds = seconds, + milliseconds = milliseconds + )) + + self.metadata['cpu_time'].append(datetime.timedelta( + days = days, + hours = hours, + minutes = minutes, + seconds = seconds, + milliseconds = milliseconds + ) * self.num_cpu) + def parse_charge_section(self, line, inputfile, chargestype): """Parse a charge section, modifies class in place diff --git a/test/data/testSP.py b/test/data/testSP.py index 168bc5add..73ba8ebbd 100644 --- a/test/data/testSP.py +++ b/test/data/testSP.py @@ -434,8 +434,7 @@ def testmetadata_symmetry_used(self): @skipForParser('Jaguar', 'reading cpu/wall time is not implemented for this parser') @skipForParser('Molcas', ' reading cpu/wall time is not implemented for this parser') @skipForParser('Molpro', 'reading cpu/wall time is not implemented for this parser') - @skipForParser('NWChem', 'reading cpu/wall time is not implemented for this parser') - @skipForParser('ORCA', 'reading cpu not implemented for this parser, wall time not available') + @skipForParser('NWChem', 'reading cpu/wall time is not implemented for this parser') @skipForParser('Psi3', 'reading cpu/wall time is not implemented for this parser') @skipForParser('Psi4', 'reading cpu/wall time is not implemented for this parser') @skipForParser('Turbomole', 'reading cpu/wall time is not implemented for this parser') From b039c2952b5864ede9a155d4ab9557b548495f0d Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Tue, 15 Nov 2022 20:50:00 -0500 Subject: [PATCH 075/103] Added parsing of Turbomole wall and CPU times --- cclib/parser/turbomoleparser.py | 36 ++++++++++++++++++++++++++++++++- test/data/testSP.py | 3 +-- 2 files changed, 36 insertions(+), 3 deletions(-) diff --git a/cclib/parser/turbomoleparser.py b/cclib/parser/turbomoleparser.py index e2f6f9a8d..7d705362e 100644 --- a/cclib/parser/turbomoleparser.py +++ b/cclib/parser/turbomoleparser.py @@ -6,6 +6,7 @@ # the terms of the BSD 3-Clause License. import collections import scipy.constants +from datetime import timedelta """Parser for Turbomole output files.""" @@ -57,6 +58,12 @@ def __init__(self, *args, **kwargs): # A Regex that we use to extract version info. self.version_regex = re.compile(r"TURBOMOLE(?: rev\.)? V([\d]+)[.-]([\d]+)(?:[.-]([\d]))?(?: \( ?([0-9A-z]+) ?\))?") + + # Regexes for parsing timings. + self.days_regex = re.compile(r"([0-9.]*) days") + self.hours_regex = re.compile(r"([0-9.]*) hours") + self.minutes_regex = re.compile(r"([0-9.]*) minutes") + self.seconds_regex = re.compile(r"([0-9.]*) seconds") # A list of previous lines to allow look-behind functionality. self.last_lines = collections.deque([""] * 10, 10) @@ -1156,7 +1163,17 @@ def extract(self, inputfile, line): # if "oscillator strength (length gauge) :" in line: self.append_attribute("etoscs", utils.float(line.split()[-1])) + + # Parse timings. + if "total cpu-time :" in line: + if "cpu_time" not in self.metadata: + self.metadata['cpu_time'] = [] + self.metadata['cpu_time'].append(self.duration_to_timedelta(line)) + if "total wall-time :" in line: + if "wall_time" not in self.metadata: + self.metadata['wall_time'] = [] + self.metadata['wall_time'].append(self.duration_to_timedelta(line)) # All done for this loop. # Keep track of last lines. @@ -1165,7 +1182,24 @@ def extract(self, inputfile, line): if ": all done ****" in line: # End of module, set success flag. self.metadata['success'] = True - + + def duration_to_timedelta(self, duration_str): + """ + Convert a Turbomole duration string into an equivalent timedelta object. + """ + time_parts = {'days': 0, 'hours': 0, 'minutes': 0, 'seconds': 0} + + for time_part in time_parts: + # Use regex to look for each part in the string. + match = getattr(self, time_part + '_regex').search(duration_str) + if match: + time_parts[time_part] = float(match.group(1)) + + # Build a timedelta from our parts. + duration = timedelta(days = time_parts['days'], hours = time_parts['hours'], minutes = time_parts['minutes'], milliseconds = time_parts['seconds'] * 1000) + + # All done. + return duration def split_irrep(self, irrep): diff --git a/test/data/testSP.py b/test/data/testSP.py index 73ba8ebbd..1199fa18f 100644 --- a/test/data/testSP.py +++ b/test/data/testSP.py @@ -436,8 +436,7 @@ def testmetadata_symmetry_used(self): @skipForParser('Molpro', 'reading cpu/wall time is not implemented for this parser') @skipForParser('NWChem', 'reading cpu/wall time is not implemented for this parser') @skipForParser('Psi3', 'reading cpu/wall time is not implemented for this parser') - @skipForParser('Psi4', 'reading cpu/wall time is not implemented for this parser') - @skipForParser('Turbomole', 'reading cpu/wall time is not implemented for this parser') + @skipForParser('Psi4', 'reading cpu/wall time is not implemented for this parser') def testmetadata_times(self): """Does metadata have expected keys and values of correct types?""" if "wall_time" in self.data.metadata: From 5fe2a8bd79905ddd131e3e77b296721fb0191fa2 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Tue, 15 Nov 2022 21:01:05 -0500 Subject: [PATCH 076/103] Added ability to estimate wall-times in Gaussian when they are unavailable naturally --- cclib/parser/gaussianparser.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index 2e0687102..4a173f474 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -99,6 +99,9 @@ def before_parsing(self): # Do we have high-precision polarizabilities printed from a # dedicated `polar` job? If so, avoid duplicate parsing. self.hp_polarizabilities = False + + # Used to estimate wall times from CPU times. + self.num_cpu = 1 def after_parsing(self): # atomcoords are parsed as a list of lists but it should be an array @@ -168,6 +171,13 @@ def after_parsing(self): if hasattr(self, "ccenergy"): self.append_attribute("ccenergies", utils.convertor(self.ccenergy, "hartree", "eV")) del self.ccenergy + + # If we have cpu times but no wall-times, we can calculate the later based on the number of CPUs used. + if "cpu_time" in self.metadata and "wall_time" not in self.metadata: + self.metadata['wall_time'] = [] + for cpu_time in self.metadata['cpu_time']: + self.metadata['wall_time'].append(cpu_time / self.num_cpu) + def extract(self, inputfile, line): """Extract information from the file object inputfile.""" @@ -2236,6 +2246,10 @@ def extract_charges_spins(line,prop): if not hasattr(self, 'optdone'): self.optdone = [] self.optdone.append(len(self.optstatus) - 1) + + # Save num CPUs incase we have an old version of Gaussian which doesn't print wall times. + if "Will use up to" in line: + self.num_cpu = int(line.split()[4]) # Extract total elapsed (wall) and CPU job times if line[:14] == ' Elapsed time:' or line[:14] == ' Job cpu time:': From 796616ad0522981a50ecb6b818c5a982988a6fbd Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 16 Nov 2022 09:51:33 -0500 Subject: [PATCH 077/103] Split long line --- cclib/parser/turbomoleparser.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cclib/parser/turbomoleparser.py b/cclib/parser/turbomoleparser.py index 7d705362e..b202f9a01 100644 --- a/cclib/parser/turbomoleparser.py +++ b/cclib/parser/turbomoleparser.py @@ -1196,7 +1196,11 @@ def duration_to_timedelta(self, duration_str): time_parts[time_part] = float(match.group(1)) # Build a timedelta from our parts. - duration = timedelta(days = time_parts['days'], hours = time_parts['hours'], minutes = time_parts['minutes'], milliseconds = time_parts['seconds'] * 1000) + duration = timedelta( + days = time_parts['days'], + hours = time_parts['hours'], + minutes = time_parts['minutes'], + milliseconds = time_parts['seconds'] * 1000) # All done. return duration From 46c6e7f8bd880eb782ca778a1c25d282651d70ed Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Mon, 7 Nov 2022 16:07:05 -0500 Subject: [PATCH 078/103] Increased the specificity of Gaussian MP checks as a partial workaround for #1163 --- cclib/parser/gaussianparser.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index 2e0687102..189c09d72 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -881,7 +881,7 @@ def extract(self, inputfile, line): # Example MP2 output line: # E2 = -0.9505918144D+00 EUMP2 = -0.28670924198852D+03 # Warning! this output line is subtly different for MP3/4/5 runs - if "EUMP2" in line[27:34]: + if "EUMP2 =" in line[27:36]: self.metadata["methods"].append("MP2") if not hasattr(self, "mpenergies"): @@ -892,7 +892,7 @@ def extract(self, inputfile, line): # Example MP3 output line: # E3= -0.10518801D-01 EUMP3= -0.75012800924D+02 - if line[34:39] == "EUMP3": + if line[34:40] == "EUMP3=": self.metadata["methods"].append("MP3") mp3energy = utils.float(line.split("=")[2]) @@ -903,21 +903,21 @@ def extract(self, inputfile, line): # E4(SDQ)= -0.32127241D-02 UMP4(SDQ)= -0.75016013648D+02 # E4(SDTQ)= -0.32671209D-02 UMP4(SDTQ)= -0.75016068045D+02 # Energy for most substitutions is used only (SDTQ by default) - if line[34:42] == "UMP4(DQ)": + if line[34:43] == "UMP4(DQ)=": self.metadata["methods"].append("MP4") mp4energy = utils.float(line.split("=")[2]) line = next(inputfile) - if line[34:43] == "UMP4(SDQ)": + if line[34:44] == "UMP4(SDQ)=": mp4energy = utils.float(line.split("=")[2]) line = next(inputfile) - if line[34:44] == "UMP4(SDTQ)": + if line[34:45] == "UMP4(SDTQ)=": mp4energy = utils.float(line.split("=")[2]) self.mpenergies[-1].append(utils.convertor(mp4energy, "hartree", "eV")) # Example MP5 output line: # DEMP5 = -0.11048812312D-02 MP5 = -0.75017172926D+02 - if line[29:32] == "MP5": + if line[29:34] == "MP5 =": self.metadata["methods"].append("MP5") mp5energy = utils.float(line.split("=")[2]) self.mpenergies[-1].append(utils.convertor(mp5energy, "hartree", "eV")) From 705dc127a700c6fd9a7ce858524d9ec5ab549999 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 8 Feb 2023 20:17:17 +0000 Subject: [PATCH 079/103] Added regression test for Ethane MP5 --- test/regression.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/regression.py b/test/regression.py index c926d6f0a..9a42676f2 100644 --- a/test/regression.py +++ b/test/regression.py @@ -1223,6 +1223,15 @@ def testGaussian_Gaussian16_C01_CC_log(logfile): """For issue 1110, check parsing of ccenergies in newer Gaussian version""" assert hasattr(logfile.data, "ccenergies") + +def testGaussian_Gaussian16_Ethane_mp5_log(logfile): + """For issue 1163, check we can parse a log file that has MPn in its description.""" + + # This issue is about failing to parse if certain strings are present in the Gaussian log file description section. + # Check we can still parse MP energies up to MP5 + assert hasattr(logfile.data, "mpenergies") + assert len(logfile.data.mpenergies) == 4 + # Jaguar # From 4563175d889b471f83cdcbf983044fd6e62cc6c5 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 8 Feb 2023 20:26:55 +0000 Subject: [PATCH 080/103] Added fix for parsing MP2 energies from older Gaussian versions --- cclib/parser/gaussianparser.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index 189c09d72..f55932ec7 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -881,7 +881,8 @@ def extract(self, inputfile, line): # Example MP2 output line: # E2 = -0.9505918144D+00 EUMP2 = -0.28670924198852D+03 # Warning! this output line is subtly different for MP3/4/5 runs - if "EUMP2 =" in line[27:36]: + # Newer versions of gausian introduced a space between 'EUMP2' and '='... + if "EUMP2 =" in line[27:36] or "EUMP2=" in line[27:35]: self.metadata["methods"].append("MP2") if not hasattr(self, "mpenergies"): From a3da5a655631043befb5a49010c680e8a691e738 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 8 Feb 2023 20:38:53 +0000 Subject: [PATCH 081/103] Relaxed test for etsyms in older Orca versions where symmetry is not available --- test/regression.py | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/test/regression.py b/test/regression.py index c926d6f0a..b423b02be 100644 --- a/test/regression.py +++ b/test/regression.py @@ -3183,9 +3183,25 @@ def testoscs(self): """These values used to be less accurate, probably due to wrong coordinates.""" self.assertEqual(len(self.data.etoscs), self.number) self.assertAlmostEqual(max(self.data.etoscs), 1.0, delta=0.2) - - -class OrcaTDDFTTest_pre1085(OrcaTDDFTTest): + +class OrcaTDDFTTest_pre5(OrcaTDDFTTest): + + symmetries = [ + "Triplet", + "Triplet", + "Triplet", + "Triplet", + "Triplet", + "Singlet", + "Singlet", + "Singlet", + "Singlet", + "Singlet", + ] + + +class OrcaTDDFTTest_pre1085(OrcaTDDFTTest_pre5): + def testoscs(self): """These values changed in the electric dipole osc strengths prior to Orca 4.0. See PR1085""" self.assertEqual(len(self.data.etoscs), self.number) @@ -3440,7 +3456,7 @@ def testatommasses(self): "ORCA/ORCA4.0/Trp_polar.out": ReferencePolarTest, "ORCA/ORCA4.0/dvb_sp.out": OrcaSPTest, "ORCA/ORCA4.0/dvb_sp_un.out": GenericSPunTest, - "ORCA/ORCA4.0/dvb_td.out": OrcaTDDFTTest, + "ORCA/ORCA4.0/dvb_td.out": OrcaTDDFTTest_pre5, "ORCA/ORCA4.0/dvb_rocis.out": OrcaROCIS40Test, "ORCA/ORCA4.0/dvb_ir.out": GenericIRTest, "ORCA/ORCA4.0/dvb_raman.out": OrcaRamanTest, From 4b8b8f5539b6b6a58db4c6f3bd496401304b5600 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 8 Feb 2023 21:04:35 +0000 Subject: [PATCH 082/103] Fixed parsing multiple exited states from optimised excited state calculations --- cclib/parser/orcaparser.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index 5957a67aa..4fcd15b05 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -1093,11 +1093,18 @@ def splitter(line): self.skip_lines(inputfile, ['dashes']) - # ORCA prints -inf for sinle atom free energy. + # ORCA prints -inf for single atom free energy. if self.natom > 1: self.freeenergy = float(line.split()[5]) else: self.freeenergy = self.enthalpy - self.temperature * self.entropy + + if "ORCA TD-DFT/TDA CALCULATION" in line: + # Start of excited states, reset our attributes in case this is an optimised excited state calc + # (or another type of calc where excited states are calculated multiple times). + for attr in ("etenergies", "etsyms", "etoscs", "etsecs", "etrotats"): + if hasattr(self, attr): + delattr(self, attr) # Read TDDFT information if any(x in line for x in ("TD-DFT/TDA EXCITED", "TD-DFT EXCITED")): From 4bd2085d217f51c775c6ec240ad8b7eff61f220a Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 8 Feb 2023 21:08:58 +0000 Subject: [PATCH 083/103] Forgot to add new test to unittests --- test/regression.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/regression.py b/test/regression.py index 9a42676f2..ea5f6489a 100644 --- a/test/regression.py +++ b/test/regression.py @@ -3390,6 +3390,8 @@ def testatommasses(self): "Gaussian/Gaussian09/dvb_un_sp_revA.02.log": GaussianSPunTest_nomosyms, "Gaussian/Gaussian09/dvb_un_sp_b_revA.02.log": GaussianSPunTest, "Gaussian/Gaussian09/trithiolane_polar.log": GaussianPolarTest, + + "Gaussian/Gaussian16/Ethane.mp5.log": testGaussian_Gaussian16_Ethane_mp5_log, "Jaguar/Jaguar4.2/dvb_gopt.out": JaguarGeoOptTest_nmo45, "Jaguar/Jaguar4.2/dvb_gopt_b.out": GenericGeoOptTest, From f0ca744537fdb53cfbcab99e81dc1e70bc702728 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Thu, 9 Feb 2023 09:42:25 +0000 Subject: [PATCH 084/103] Fixed regression tests for wall_time --- test/regression.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/test/regression.py b/test/regression.py index c926d6f0a..9120d8b03 100644 --- a/test/regression.py +++ b/test/regression.py @@ -770,8 +770,7 @@ def testGaussian_Gaussian98_test_Cu2_log(logfile): """An example of the number of basis set function changing.""" assert logfile.data.nbasis == 38 - assert logfile.data.metadata["cpu_time"] == [datetime.timedelta(seconds=25, microseconds=800000)] - assert "wall_time" not in logfile.data.metadata + assert logfile.data.metadata["cpu_time"] == logfile.data.metadata["wall_time"] == [datetime.timedelta(seconds=25, microseconds=800000)] assert logfile.data.metadata["legacy_package_version"] == "98revisionA.11.4" assert logfile.data.metadata["package_version"] == "1998+A.11.4" assert isinstance( @@ -882,8 +881,8 @@ def testGaussian_Gaussian03_dvb_gopt_symmfollow_log(logfile): """ assert len(logfile.data.atomcoords) == len(logfile.data.geovalues) - assert logfile.data.metadata["cpu_time"] == [datetime.timedelta(seconds=99)] - assert "wall_time" not in logfile.data.metadata + # This calc only uses one CPU, so wall_time == cpu_time. + assert logfile.data.metadata["cpu_time"] == logfile.data.metadata["wall_time"]== [datetime.timedelta(seconds=99)] assert logfile.data.metadata["legacy_package_version"] == "03revisionC.01" assert logfile.data.metadata["package_version"] == "2003+C.01" assert isinstance( @@ -1000,8 +999,7 @@ def testGaussian_Gaussian09_dvb_gopt_unconverged_log(logfile): assert hasattr(logfile.data, 'optdone') and not logfile.data.optdone assert logfile.data.optstatus[-1] == logfile.data.OPT_UNCONVERGED - assert logfile.data.metadata["cpu_time"] == [datetime.timedelta(seconds=27, microseconds=700000)] - assert "wall_time" not in logfile.data.metadata + assert logfile.data.metadata["cpu_time"] == logfile.data.metadata["wall_time"] == [datetime.timedelta(seconds=27, microseconds=700000)] assert logfile.data.metadata["package_version"] == "2009+D.01" From c37bf86a4c8768b0545fa29ae72cbe4c2df13e9e Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sun, 12 Feb 2023 23:33:49 -0500 Subject: [PATCH 085/103] switch to our fork of pyquante2 --- requirements.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 00aa664f5..21da3e5db 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,9 @@ periodictable # bridges biopython==1.76 ase>=3.21 ; python_version >= '3.5' -git+https://github.com/berquist/pyquante2.git@py37 +# for pyquante2 +cython +git+https://github.com/cclib/pyquante2.git@py37 git+https://github.com/theochem/iodata.git@1.0.0a2 # For building the documentation From e9ef81aa7a7a348c787ecb78d6328f409b5b85bf Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Mon, 13 Feb 2023 23:39:25 -0500 Subject: [PATCH 086/103] pyquante2 fork now brings in Cython properly --- requirements.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 21da3e5db..7566a1e42 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,8 +8,6 @@ periodictable # bridges biopython==1.76 ase>=3.21 ; python_version >= '3.5' -# for pyquante2 -cython git+https://github.com/cclib/pyquante2.git@py37 git+https://github.com/theochem/iodata.git@1.0.0a2 From 3033cdb750b50c81f07e2028796bd1de687703ff Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Mon, 27 Feb 2023 08:42:54 +0000 Subject: [PATCH 087/103] Replaced 'attr'.append() with append_attribute() --- cclib/parser/gaussianparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cclib/parser/gaussianparser.py b/cclib/parser/gaussianparser.py index 6345f1697..a64e3c5ab 100644 --- a/cclib/parser/gaussianparser.py +++ b/cclib/parser/gaussianparser.py @@ -1460,7 +1460,7 @@ def extract(self, inputfile, line): self.etoscs.append(utils.float(line.split("f=")[-1].split()[0])) # Fix Gaussian's weird capitalisation. mult, symm = groups[0].strip().split("-") - self.etsyms.append("{}-{}".format(mult, self.normalisesym(symm))) + self.append_attribute("etsyms", "{}-{}".format(mult, self.normalisesym(symm))) line = next(inputfile) From d70c1039b7b923ea872794646702b4759744d865 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Mon, 27 Feb 2023 08:43:48 +0000 Subject: [PATCH 088/103] Removed old, unused line --- cclib/parser/orcaparser.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index 4fcd15b05..b46cf6b65 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -83,7 +83,6 @@ def after_parsing(self): if hasattr(self, "etenergies"): # Sort them properly. prop_names = ("etenergies", "etsyms", "etoscs", "etsecs", "etrotats") - #zipped_props = [zipped_state for zipped_state in sorted(zip_longest(getattr(self, 'etenergies', []), getattr(self, 'etsyms', []), getattr(self, 'etoscs', []), getattr(self, 'etsecs', []), getattr(self, 'etrotats', [])), key = lambda state: state[0])] zipped_props = [zipped_state for zipped_state in sorted(zip_longest(*[getattr(self, prop_name, []) for prop_name in prop_names]), key = lambda state: state[0])] etprops = list(zip(*zipped_props)) From 9b8c6cb281fadd394b8d2a442a0c723e7c4e021d Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Mon, 27 Feb 2023 08:46:17 +0000 Subject: [PATCH 089/103] Broke up long line --- cclib/parser/orcaparser.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index b46cf6b65..f7a938172 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -83,7 +83,12 @@ def after_parsing(self): if hasattr(self, "etenergies"): # Sort them properly. prop_names = ("etenergies", "etsyms", "etoscs", "etsecs", "etrotats") - zipped_props = [zipped_state for zipped_state in sorted(zip_longest(*[getattr(self, prop_name, []) for prop_name in prop_names]), key = lambda state: state[0])] + zipped_props = [zipped_state for zipped_state in + sorted( + zip_longest(*[getattr(self, prop_name, []) for prop_name in prop_names]), + key = lambda state: state[0] + ) + ] etprops = list(zip(*zipped_props)) for index, prop_name in enumerate(prop_names): From 6a9129001bd2c9fed0d946ee4c14b207c25e84c7 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 21 Dec 2022 10:51:00 +0000 Subject: [PATCH 090/103] Improved re-ording of ORCA excited states --- cclib/parser/orcaparser.py | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index f7a938172..c441de08f 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -83,18 +83,23 @@ def after_parsing(self): if hasattr(self, "etenergies"): # Sort them properly. prop_names = ("etenergies", "etsyms", "etoscs", "etsecs", "etrotats") - zipped_props = [zipped_state for zipped_state in - sorted( - zip_longest(*[getattr(self, prop_name, []) for prop_name in prop_names]), - key = lambda state: state[0] - ) - ] - etprops = list(zip(*zipped_props)) - for index, prop_name in enumerate(prop_names): - # Ignore empty properties. - if etprops[index] != (None,) * len(etprops[index]): - setattr(self, prop_name, list(etprops[index])) + # First, set energies properly, keeping track of each energy's old index. + energy_index = sorted([(energy, index) for index, energy in enumerate(self.etenergies)], key = lambda energy_index: energy_index[0]) + + props = {} + for prop_name in prop_names: + if hasattr(self, prop_name): + # Check this property and etenergies are the same length (otherwise we can accidentally and silently truncate a list that's too long). + if len(getattr(self, prop_name)) != len(self.etenergies): + raise Exception("Parsed different number of {} ({}) than etenergies ({})".format(prop_name, len(getattr(self, prop_name)), len(self.etenergies))) + + # Reorder based on our mapping. + props[prop_name] = [getattr(self, prop_name)[old_index] for energy, old_index in energy_index] + + # Assign back again + for prop_name in props: + setattr(self, prop_name, props[prop_name]) def extract(self, inputfile, line): From decd096ca7ac15ad6dd638e46a3f089c8c5dc0aa Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Mon, 27 Feb 2023 08:51:15 +0000 Subject: [PATCH 091/103] Removed comment --- cclib/parser/orcaparser.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index c441de08f..9d70d2d09 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -81,7 +81,6 @@ def after_parsing(self): # ORCA prints singlet and triplet excited states separately, so the energies are out of order. if hasattr(self, "etenergies"): - # Sort them properly. prop_names = ("etenergies", "etsyms", "etoscs", "etsecs", "etrotats") # First, set energies properly, keeping track of each energy's old index. From 07e47f189185a86afc94d17bdcbf3062346eb383 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 11 Jan 2023 15:33:12 +0000 Subject: [PATCH 092/103] Changed parsing of excited states in ORCA so spectrum data no-longer overwrites excited state data that has been previously parsed (previously broke SOC calcs) --- cclib/parser/orcaparser.py | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index 9fec983c3..1373ef6c9 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -1339,9 +1339,26 @@ def energy_intensity(line): etoscs.append(float(intensity)) line = next(inputfile) - - self.set_attribute('etenergies', etenergies) - self.set_attribute('etoscs', etoscs) + + # Some of these sections contain data that we probably do not want to be populating etenergies + # and/or etoscs with. For example, the SOC corrected spectra are for mixed singlet/triplet states, + # so they do not correspond to the symmetries given in etsyms, and the energy values given are + # probably not what the user would expect to find in etenergies anyway? + # Also, there are twice as many SOC states as true spin states, so half of the etenergies wouldn't + # have a symmetry in etsyms at all... + # + # Only keep etosc given by the normal electric TDM. + if name == "ABSORPTION SPECTRUM VIA TRANSITION ELECTRIC DIPOLE MOMENTS": + # There's no point overwriting the etenergies we've already parsed, + # especially because the previously parsed values are probably more accurate. + # We could do a check to make sure the energies match, but we will fall foul + # of rounding errors. + if not hasattr(self, "etenergies"): + self.set_attribute("etenergies", etenergies) + + self.set_attribute('etoscs', etoscs) + + # Save everything to transprop. self.transprop[name] = (numpy.asarray(etenergies), numpy.asarray(etoscs)) if line.strip() == "CD SPECTRUM": From 5f5c574ed8267917823347a2287eecb09a64586b Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 11 Jan 2023 16:09:13 +0000 Subject: [PATCH 093/103] Changed number of parsed excited states in Orca ROCIS to correct number --- test/data/testTD.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/data/testTD.py b/test/data/testTD.py index c3ebf719c..db3ab7cee 100644 --- a/test/data/testTD.py +++ b/test/data/testTD.py @@ -226,6 +226,7 @@ def testoscs(self): class OrcaROCISTest(GenericTDTest): """Customized test for ROCIS""" number = 57 + number = 4 expected_l_max = 2316970.8 # per 1085, no VELOCITY DIPOLE MOMENTS are parsed n_spectra = 7 From c2621a395f08833ffd4aebe8caa5431fe4581da6 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Thu, 2 Mar 2023 13:41:39 +0000 Subject: [PATCH 094/103] Updated logic for parsing absorption spectra from ORCA. SOC-related spectra is now ignored for etenergies and etoscs (as these are spin-mixed states). Other spectra are parsed as normal --- cclib/parser/orcaparser.py | 46 +++++++++++++++++++++++++++++++++----- 1 file changed, 40 insertions(+), 6 deletions(-) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index 1373ef6c9..0e1ebcf3e 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -1347,15 +1347,49 @@ def energy_intensity(line): # Also, there are twice as many SOC states as true spin states, so half of the etenergies wouldn't # have a symmetry in etsyms at all... # - # Only keep etosc given by the normal electric TDM. - if name == "ABSORPTION SPECTRUM VIA TRANSITION ELECTRIC DIPOLE MOMENTS": - # There's no point overwriting the etenergies we've already parsed, - # especially because the previously parsed values are probably more accurate. - # We could do a check to make sure the energies match, but we will fall foul - # of rounding errors. + # Don't parse from SOC sections. + # ROCIS COMBINED is combination of SOC and ROCIS (we still parse the normal ROCIS section). + if not any([soc_header in name for soc_header in ["SPIN ORBIT CORRECTED", "SOC CORRECTED", "ROCIS COMBINED"]]): + # We need to be careful about how we parse etenergies from these spectrum sections. + # First, and in most cases, energies printed here will be the same as those printed in + # previous sections, except to fewer decimal places. It would be disadvantageous to + # lose this extra precision that's already been parsed. + # Secondly, it is challenging to determine exactly whether the energies printed here have already + # been parsed, due to this aforementioned rounding. + # Thirdly, some methods (ROCIS, CASSCF, SOC to name a few) may only print their final excited state + # energies in this spectrum section, in which case the energies will not match those previously parsed + # (which will be from lower levels of theory that we're not interested in). This means we cannot simply + # ignore the energies printed. Also, in this case we must decide whether to discard other previously + # parsed etdata (etsyms, etsecs etc). + + # If we have no previously parsed etnergies, there's nothing to worry about. if not hasattr(self, "etenergies"): self.set_attribute("etenergies", etenergies) + # Determine if these energies are ~same as those previously parsed. + elif len(etenergies) == len(self.etenergies) and all([self.etenergies[index] == etenergy for index, etenergy in enumerate(etenergies)]): + pass + + # New energies. + else: + # Because these energies are new, we do not know if they correspond to the same level of theory + # as the previously parsed etsyms etc. + self.logger.warning("New excited state energies encountered in spectrum section, resetting excited state attributes") + + for attr in ("etenergies", "etsyms", "etoscs", "etsecs", "etrotats"): + if hasattr(self, attr): + delattr(self, attr) + + self.set_attribute("etenergies", etenergies) + +# # There's no point overwriting the etenergies we've already parsed, +# # especially because the previously parsed values normally have greater precision. +# # We could do a check to make sure the energies match, but we will fall foul +# # of rounding errors. +# #if not hasattr(self, "etenergies"): +# if True: +# self.set_attribute("etenergies", etenergies) + self.set_attribute('etoscs', etoscs) # Save everything to transprop. From ee64a2691eb77c4fac3ae8ce10dbd15acab224eb Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Thu, 2 Mar 2023 13:50:30 +0000 Subject: [PATCH 095/103] Updated comment before spectrum parsing section --- cclib/parser/orcaparser.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index 0e1ebcf3e..ad2b76789 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -1352,21 +1352,22 @@ def energy_intensity(line): if not any([soc_header in name for soc_header in ["SPIN ORBIT CORRECTED", "SOC CORRECTED", "ROCIS COMBINED"]]): # We need to be careful about how we parse etenergies from these spectrum sections. # First, and in most cases, energies printed here will be the same as those printed in - # previous sections, except to fewer decimal places. It would be disadvantageous to - # lose this extra precision that's already been parsed. - # Secondly, it is challenging to determine exactly whether the energies printed here have already - # been parsed, due to this aforementioned rounding. - # Thirdly, some methods (ROCIS, CASSCF, SOC to name a few) may only print their final excited state + # previous sections. The energies in cm-1 aught to match exactly to those parsed previously, + # but other units may have rounding errors. + # Secondly, some methods (ROCIS, CASSCF, SOC to name a few) may only print their final excited state # energies in this spectrum section, in which case the energies will not match those previously parsed # (which will be from lower levels of theory that we're not interested in). This means we cannot simply # ignore the energies printed. Also, in this case we must decide whether to discard other previously # parsed etdata (etsyms, etsecs etc). + # Thirdly, SOC prints spin-mixed excited state spectra. This is interesting, but does not match the + # number of states or symmetry of data parsed in previous sections, so is not used to overwrite etenergies. # If we have no previously parsed etnergies, there's nothing to worry about. if not hasattr(self, "etenergies"): self.set_attribute("etenergies", etenergies) - # Determine if these energies are ~same as those previously parsed. + # Determine if these energies are same as those previously parsed. + # May want to use a smarter comparison? elif len(etenergies) == len(self.etenergies) and all([self.etenergies[index] == etenergy for index, etenergy in enumerate(etenergies)]): pass From f0ab763b2272d36aa6d5e6d775adb40417d12ebd Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Fri, 3 Mar 2023 18:08:40 -0500 Subject: [PATCH 096/103] Gaussian: regressions don't need to go in old_unittests in order to run --- test/regression.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/regression.py b/test/regression.py index ea5f6489a..9a42676f2 100644 --- a/test/regression.py +++ b/test/regression.py @@ -3390,8 +3390,6 @@ def testatommasses(self): "Gaussian/Gaussian09/dvb_un_sp_revA.02.log": GaussianSPunTest_nomosyms, "Gaussian/Gaussian09/dvb_un_sp_b_revA.02.log": GaussianSPunTest, "Gaussian/Gaussian09/trithiolane_polar.log": GaussianPolarTest, - - "Gaussian/Gaussian16/Ethane.mp5.log": testGaussian_Gaussian16_Ethane_mp5_log, "Jaguar/Jaguar4.2/dvb_gopt.out": JaguarGeoOptTest_nmo45, "Jaguar/Jaguar4.2/dvb_gopt_b.out": GenericGeoOptTest, From 408be0f36b50c88bad0d7256af10d68f54eb99f6 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Fri, 3 Mar 2023 18:09:49 -0500 Subject: [PATCH 097/103] Gaussian: fix G16 MP5 test --- test/regression.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/regression.py b/test/regression.py index 9a42676f2..6e28a03b5 100644 --- a/test/regression.py +++ b/test/regression.py @@ -1230,7 +1230,8 @@ def testGaussian_Gaussian16_Ethane_mp5_log(logfile): # This issue is about failing to parse if certain strings are present in the Gaussian log file description section. # Check we can still parse MP energies up to MP5 assert hasattr(logfile.data, "mpenergies") - assert len(logfile.data.mpenergies) == 4 + assert len(logfile.data.mpenergies) == 1 + assert len(logfile.data.mpenergies[0]) == 4 # Jaguar # From fdd3cce09cfc4962d34f9acf6466c939acd445a5 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Sat, 4 Mar 2023 16:36:42 -0500 Subject: [PATCH 098/103] use 'is not None' instead of '!= None' --- test/bridge/testhorton.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/bridge/testhorton.py b/test/bridge/testhorton.py index e6d73c912..732824b1f 100644 --- a/test/bridge/testhorton.py +++ b/test/bridge/testhorton.py @@ -62,8 +62,8 @@ def test_makehorton(self): if ( hasattr(self.iodat, attr) and hasattr(hortonequiv, attr) - and getattr(self.iodat, attr) != None - and getattr(hortonequiv, attr) != None + and getattr(self.iodat, attr) is not None + and getattr(hortonequiv, attr) is not None ): self.assertAlmostEqual( getattr(self.iodat, attr), From eb699bb1e856602406f35c977cca42f5cdf91cbc Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 8 Mar 2023 08:26:43 +0000 Subject: [PATCH 099/103] Removed duplicate line in testing --- test/data/testTD.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/data/testTD.py b/test/data/testTD.py index db3ab7cee..698bbab28 100644 --- a/test/data/testTD.py +++ b/test/data/testTD.py @@ -225,7 +225,6 @@ def testoscs(self): class OrcaROCISTest(GenericTDTest): """Customized test for ROCIS""" - number = 57 number = 4 expected_l_max = 2316970.8 # per 1085, no VELOCITY DIPOLE MOMENTS are parsed From 7941c3917a5d7c2eb1d458421a107ccef6a1b5de Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 8 Mar 2023 12:49:40 +0000 Subject: [PATCH 100/103] Split long line --- cclib/parser/orcaparser.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index ad2b76789..fc7807942 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -1368,7 +1368,11 @@ def energy_intensity(line): # Determine if these energies are same as those previously parsed. # May want to use a smarter comparison? - elif len(etenergies) == len(self.etenergies) and all([self.etenergies[index] == etenergy for index, etenergy in enumerate(etenergies)]): + elif len(etenergies) == len(self.etenergies) and \ + all( + [self.etenergies[index] == etenergy for + index, etenergy in enumerate(etenergies)] + ): pass # New energies. From d529405fa7bab9952346a1734dfbacf6a67462f5 Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 8 Mar 2023 12:59:35 +0000 Subject: [PATCH 101/103] Removed old code --- cclib/parser/orcaparser.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index fc7807942..c2142b631 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -1387,14 +1387,6 @@ def energy_intensity(line): self.set_attribute("etenergies", etenergies) -# # There's no point overwriting the etenergies we've already parsed, -# # especially because the previously parsed values normally have greater precision. -# # We could do a check to make sure the energies match, but we will fall foul -# # of rounding errors. -# #if not hasattr(self, "etenergies"): -# if True: -# self.set_attribute("etenergies", etenergies) - self.set_attribute('etoscs', etoscs) # Save everything to transprop. From 93b1226c4ecf323aee301a2d043f9c220d603e4f Mon Sep 17 00:00:00 2001 From: oliver-s-lee Date: Wed, 8 Mar 2023 13:06:20 +0000 Subject: [PATCH 102/103] Split long line --- cclib/parser/orcaparser.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cclib/parser/orcaparser.py b/cclib/parser/orcaparser.py index c2142b631..77d1c3695 100644 --- a/cclib/parser/orcaparser.py +++ b/cclib/parser/orcaparser.py @@ -1379,7 +1379,8 @@ def energy_intensity(line): else: # Because these energies are new, we do not know if they correspond to the same level of theory # as the previously parsed etsyms etc. - self.logger.warning("New excited state energies encountered in spectrum section, resetting excited state attributes") + self.logger.warning( + "New excited state energies encountered in spectrum section, resetting excited state attributes") for attr in ("etenergies", "etsyms", "etoscs", "etsecs", "etrotats"): if hasattr(self, attr): From ee740487d69cc766d4af4cfbd363a132bafe5c4f Mon Sep 17 00:00:00 2001 From: amandadumi Date: Sun, 12 Mar 2023 16:22:42 -0400 Subject: [PATCH 103/103] uniform treatment for rotational attributes --- cclib/parser/data.py | 2 +- cclib/parser/nwchemparser.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cclib/parser/data.py b/cclib/parser/data.py index b5d02ad1b..6f0b4447f 100644 --- a/cclib/parser/data.py +++ b/cclib/parser/data.py @@ -168,7 +168,7 @@ class ccData: "polarizabilities": Attribute(list, 'polarizabilities', 'N/A'), "pressure": Attribute(float, 'pressure', 'properties'), "rotconsts": Attribute(numpy.ndarray, 'rotational constants', 'atoms:coords:rotconsts'), - "rotemp": Attribute(numpy.ndarray, 'rotational temperatures', 'properties:rotational'), + "rottemp": Attribute(numpy.ndarray, 'rotational temperatures', 'properties:rotational'), "s2_after_anni": Attribute(numpy.ndarray, 'S2 after annihilation', 'optimization'), "s2_after_anni_fin": Attribute(float, 'S2 after annihilation', 'properties'), "s2_before_anni": Attribute(numpy.ndarray, 'S2 before annihilation', 'optimization'), diff --git a/cclib/parser/nwchemparser.py b/cclib/parser/nwchemparser.py index 3e2186b51..f1c173b3c 100644 --- a/cclib/parser/nwchemparser.py +++ b/cclib/parser/nwchemparser.py @@ -1208,8 +1208,8 @@ def extract(self, inputfile, line): while line.strip().startswith('B=') or line.strip().startswith('C='): roconst.append(float(line.strip().split()[1])*29.9792458) rotemp.append(float(line.strip().split()[4])) - self.set_attribute('roconst', roconst) - self.set_attribute('rotemp', rotemp) + self.set_attribute('rotconsts', roconst) + self.set_attribute('rottemp', rotemp) # NWChem TD-DFT excited states transitions #